content stringlengths 7 1.05M | fixed_cases stringlengths 1 1.28M |
|---|---|
number = input('Enter a number: ')
number = int(number)
if number % 2 == 0:
print('The number is even')
else:
print('The number is odd') | number = input('Enter a number: ')
number = int(number)
if number % 2 == 0:
print('The number is even')
else:
print('The number is odd') |
print("input 5 decimals")
values = []
for i in range(5):
values.append(float(input("demical #"+str(i+1)+": ")))
cnt = 0
for i in values:
if i >= 10 and i <= 100:
cnt += 1
print(cnt)
| print('input 5 decimals')
values = []
for i in range(5):
values.append(float(input('demical #' + str(i + 1) + ': ')))
cnt = 0
for i in values:
if i >= 10 and i <= 100:
cnt += 1
print(cnt) |
# 3. n children have got m pieces of candy. They want to eat as much candy as they can, but each child must eat exactly the same amount of candy as any other child. Determine how many pieces of candy will be eaten by all the children together. Individual pieces of candy cannot be split.
# Example
# For n = 3 and m = 10, the output should be
# candies(n, m) = 9.
# Each child will eat 3 pieces. So the answer is 9.
def candies(n, m):
result = m - (m % n)
return result
print(candies(4, 25))
| def candies(n, m):
result = m - m % n
return result
print(candies(4, 25)) |
'''error pattern'''
class A:
def __init__(self, text):
print('a')
print(text)
class B(A):
def __init__(self, text):
print('b')
super(B, self).__init__(text)
class C:
def __init__(self, **kwargs):
print('c')
super(C, self).__init__()
class D(C, B):
def __init__(self, text):
print('d')
super(D, self).__init__(text=text)
D('aaa') | """error pattern"""
class A:
def __init__(self, text):
print('a')
print(text)
class B(A):
def __init__(self, text):
print('b')
super(B, self).__init__(text)
class C:
def __init__(self, **kwargs):
print('c')
super(C, self).__init__()
class D(C, B):
def __init__(self, text):
print('d')
super(D, self).__init__(text=text)
d('aaa') |
def test_restart_opencart_mysql_service(restart_mysql):
assert "active (running)" in restart_mysql
print(restart_mysql)
def test_restart_opencart_apache_service(restart_apache):
assert "active (running)" in restart_apache
print(restart_apache)
def test_opencart_is_active(request_opencart):
print(request_opencart.status_code)
assert request_opencart.status_code == 200
| def test_restart_opencart_mysql_service(restart_mysql):
assert 'active (running)' in restart_mysql
print(restart_mysql)
def test_restart_opencart_apache_service(restart_apache):
assert 'active (running)' in restart_apache
print(restart_apache)
def test_opencart_is_active(request_opencart):
print(request_opencart.status_code)
assert request_opencart.status_code == 200 |
def fatorial(n):
nFatorial=n
for i in range(1,n):
nFatorial=nFatorial*(n-i)
return nFatorial
| def fatorial(n):
n_fatorial = n
for i in range(1, n):
n_fatorial = nFatorial * (n - i)
return nFatorial |
class Solution:
def dayOfTheWeek(self, day: int, month: int, year: int) -> str:
num2day = ['Thursday', 'Friday', 'Saturday', 'Sunday', 'Monday', 'Tuesday', 'Wednesday']
mon2num = [0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31]
count = 0
for i in range(1971, year):
if i % 400 == 0 or (i % 4 == 0 and i % 100 != 0):
count += 366
else:
count += 365
if year % 400 == 0 or (year % 4 == 0 and year % 100 != 0): mon2num[2] += 1
return num2day[(count + sum(mon2num[:month]) + day) % 7]
| class Solution:
def day_of_the_week(self, day: int, month: int, year: int) -> str:
num2day = ['Thursday', 'Friday', 'Saturday', 'Sunday', 'Monday', 'Tuesday', 'Wednesday']
mon2num = [0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31]
count = 0
for i in range(1971, year):
if i % 400 == 0 or (i % 4 == 0 and i % 100 != 0):
count += 366
else:
count += 365
if year % 400 == 0 or (year % 4 == 0 and year % 100 != 0):
mon2num[2] += 1
return num2day[(count + sum(mon2num[:month]) + day) % 7] |
def preenchimento_de_vetor_iv():
n = 0
par = list()
impar = list()
while n < 15:
numero = int(input())
if numero % 2 == 0:
par.append(numero)
else:
impar.append(numero)
if len(par) == 5:
for i in range(5):
print(f'par[{i}] = {par[i]}')
par = list()
elif len(impar) == 5:
for j in range(5):
print(f'impar[{j}] = {impar[j]}')
impar = list()
n += 1
for k in range(len(impar)):
print(f'impar[{k}] = {impar[k]}')
for t in range(len(par)):
print(f'par[{t}] = {par[t]}')
preenchimento_de_vetor_iv()
| def preenchimento_de_vetor_iv():
n = 0
par = list()
impar = list()
while n < 15:
numero = int(input())
if numero % 2 == 0:
par.append(numero)
else:
impar.append(numero)
if len(par) == 5:
for i in range(5):
print(f'par[{i}] = {par[i]}')
par = list()
elif len(impar) == 5:
for j in range(5):
print(f'impar[{j}] = {impar[j]}')
impar = list()
n += 1
for k in range(len(impar)):
print(f'impar[{k}] = {impar[k]}')
for t in range(len(par)):
print(f'par[{t}] = {par[t]}')
preenchimento_de_vetor_iv() |
# -*- coding: utf-8 -*-
# @Time : 2018/4/12 20:16
# @Author : ddvv
# @Site : http://ddvv.life
# @File : __init__.py.py
# @Software: PyCharm
def main():
pass
if __name__ == "__main__":
main() | def main():
pass
if __name__ == '__main__':
main() |
n= int(input())
alfabeto = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
for i in range(n):
letras=input()
pulos=int(input())
novaPalavra=""
for j in range(len(letras)):
posicao=alfabeto.find(letras[j])
numeroPosicao=posicao-pulos
if numeroPosicao<0:
novaPosicao=len(alfabeto)+numeroPosicao
novaPalavra = novaPalavra + alfabeto[novaPosicao]
else:
novaPosicao=numeroPosicao
novaPalavra=novaPalavra+alfabeto[novaPosicao]
print(novaPalavra)
| n = int(input())
alfabeto = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'
for i in range(n):
letras = input()
pulos = int(input())
nova_palavra = ''
for j in range(len(letras)):
posicao = alfabeto.find(letras[j])
numero_posicao = posicao - pulos
if numeroPosicao < 0:
nova_posicao = len(alfabeto) + numeroPosicao
nova_palavra = novaPalavra + alfabeto[novaPosicao]
else:
nova_posicao = numeroPosicao
nova_palavra = novaPalavra + alfabeto[novaPosicao]
print(novaPalavra) |
sec = { # Security
1102: {"Descr": "The audit log was cleared",
"Provider": "Microsoft-Windows-Eventlog",
"SubjectUserSid": "SID",
"SubjectUserName": "Username",
"SubjectDomainName": "Domain",
"SubjectLogonId": "LogonId"},
4616: {"Descr": "The system time was changed",
"Provider": "Microsoft-Windows-Security-Auditing",
"SubjectUserSid": "SID",
"SubjectUserName": "Username",
"SubjectDomainName": "Domain",
"SubjectLogonId": "LogonId",
"PreviousTime": "PreviousTime",
"NewTime": "NewTime",
"ProcessId": "ProcessId", # Win 7+
"ProcessName": "ProcessPath"}, # Win 7+
4624: {"Descr": "An account was successfully logged on",
"Provider": "Microsoft-Windows-Security-Auditing",
"SubjectUserSid": "SID",
"SubjectUserName": "Username",
"SubjectDomainName": "Domain",
"SubjectLogonId": "LogonId",
"TargetUserSid": "TargetSID",
"TargetUserName": "TargetUsername",
"TargetDomainName": "TargetDomain",
"TargetLogonId": "TargetLogonId",
"LogonType": "+LogonType",
"WorkstationName": "WorkstationName",
"LogonGuid": "LogonGUID",
"TransmittedServices": "TransmittedServices",
"IpAddress": "IP",
"IpPort": "Port",
"ProcessId": "ProcessId",
"ProcessName": "ProcessPath",
"AuthenticationPackageName": "AuthenticationPackage",
"LogonProcessName": "LogonProcess",
"KeyLength": "KeyLength",
"RestrictedAdminMode": "RestrictedAdminMode", # Win 10+
"ElevatedToken": "ElevatedToken", # Win 10+
"TargetOutboundUserName": "TargetOutboundUsername",
"TargetOutboundDomainName": "TargetOutboundDomain"},
4625: {"Descr": "An account failed to log on",
"Provider": "Microsoft-Windows-Security-Auditing",
"SubjectUserSid": "SID",
"SubjectUserName": "Username",
"SubjectDomainName": "Domain",
"SubjectLogonId": "LogonId",
"TargetUserSid": "TargetSID",
"TargetUserName": "TargetUsername",
"TargetDomainName": "TargetDomain",
"LogonType": "+LogonType",
"WorkstationName": "WorkstationName",
"IpAddress": "IP",
"IpPort": "Port",
"LogonProcessName": "LogonProcessName",
"Status": "+Status",
"FailureReason": "FailureReason", # %% format
"SubStatus": "SubStatus",
"ProcessId": "ProcessId",
"ProcessName": "ProcessPath"},
4627: {"Descr": "Group membership information",
"Provider": "Microsoft-Windows-Security-Auditing",
"SubjectUserSid": "SID",
"SubjectUserName": "Username",
"SubjectDomainName": "Domain",
"SubjectLogonId": "LogonId",
"TargetUserSid": "TargetSID",
"TargetUserName": "TargetUsername",
"TargetDomainName": "TargetDomain",
"LogonType": "+LogonType",
"GroupMembership": "GroupMembership"}, # to convert
4634: {"Descr": "An account was logged off",
"Provider": "Microsoft-Windows-Security-Auditing",
"TargetUserSid": "TargetSID",
"TargetUserName": "TargetUsername",
"TargetDomainName": "TargetDomain",
"TargetLogonId": "TargetLogonId",
"LogonType": "+LogonType"},
4647: {"Descr": "User initiated logoff",
"Provider": "Microsoft-Windows-Security-Auditing",
"TargetUserSid": "TargetSID",
"TargetUserName": "TargetUsername",
"TargetDomainName": "TargetDomain",
"TargetLogonId": "TargetLogonId"},
4648: {"Descr": "A logon was attempted using explicit credentials",
"Provider": "Microsoft-Windows-Security-Auditing",
"SubjectUserSid": "SID",
"SubjectUserName": "Username",
"SubjectDomainName": "Domain",
"SubjectLogonId": "LogonId",
"LogonGuid": "LogonGUID",
"TargetUserName": "TargetUsername",
"TargetDomainName": "TargetDomain",
"TargetLogonGuid": "TargetLogonGuid",
"TargetServerName": "TargetServerName",
"TargetInfo": "TargetInfo",
"IpAddress": "IP",
"IpPort": "Port",
"ProcessId": "ProcessId",
"ProcessName": "ProcessPath"},
4657: {"Descr": "A registry value was modified",
"Provider": "Microsoft-Windows-Security-Auditing",
"SubjectUserSid": "SID",
"SubjectUserName": "Username",
"SubjectDomainName": "Domain",
"SubjectLogonId": "LogonId",
"ObjectName": "RegKey",
"ObjectValueName": "RegValue",
"OperationType": "OperationType",
"OldValueType": "OldValueType",
"OldValue": "OldValue",
"NewValueType": "NewValueType",
"NewValue": "NewValue",
"ProcessId": "ProcessId",
"ProcessName": "ProcessPath"},
4661: {"Descr": "A handle to an object was requested",
"Provider": "Microsoft-Windows-Security-Auditing",
"SubjectUserSid": "SID",
"SubjectUserName": "Username",
"SubjectDomainName": "Domain",
"SubjectLogonId": "LogonId",
"ObjectServer": "ObjectServer",
"ObjectType": "ObjectType",
"ObjectName": "ObjectName",
"HandleId": "HandleId",
"TransactionId": "TransactionId",
"AccessList": "AccessList", # %% format
"AccessMask": "AccessMask", # alternate representation of AccessList
"PrivilegeList": "PrivilegeList",
"Properties": "Properties",
"RestrictedSidCount": "RestrictedSidCount",
"ProcessId": "ProcessId",
"ProcessName": "ProcessPath"},
4662: {"Descr": "An operation was performed on an object",
"Provider": "Microsoft-Windows-Security-Auditing",
"SubjectUserSid": "SID",
"SubjectUserName": "Username",
"SubjectDomainName": "Domain",
"SubjectLogonId": "LogonId",
"ObjectServer": "ObjectServer",
"ObjectType": "ObjectType",
"ObjectName": "ObjectName",
"OperationType": "OperationType",
"HandleId": "HandleId",
"AccessList": "AccessList", # %% format
"AccessMask": "AccessMask", # alternate representation of AccessList
"Properties": "Properties"},
4663: {"Descr": "An attempt was made to access an object",
"Provider": "Microsoft-Windows-Security-Auditing",
"SubjectUserSid": "SID",
"SubjectUserName": "Username",
"SubjectDomainName": "Domain",
"SubjectLogonId": "LogonId",
"ObjectServer": "ObjectServer",
"ObjectType": "ObjectType",
"ObjectName": "ObjectName",
"HandleId": "HandleId",
"AccessList": "AccessList", # %% format
"AccessMask": "AccessMask", # alternate representation of AccessList
"ProcessId": "ProcessId",
"ProcessName": "ProcessPath",
"ResourceAttributes": "ResourceAttributes"},
4672: {"Descr": "Special privileges assigned to new logon",
"Provider": "Microsoft-Windows-Security-Auditing",
"SubjectUserSid": "TargetSID",
"SubjectUserName": "TargetUsername",
"SubjectDomainName": "TargetDomain",
"SubjectLogonId": "TargetLogonId",
"PrivilegeList": "PrivilegeList"},
4673: {"Descr": "A privileged service was called",
"Provider": "Microsoft-Windows-Security-Auditing",
"SubjectUserSid": "SID",
"SubjectUserName": "Username",
"SubjectDomainName": "Domain",
"SubjectLogonId": "LogonId",
"ObjectServer": "ObjectServer",
"Service": "Service",
"PrivilegeList": "PrivilegeList",
"ProcessId": "ProcessId",
"ProcessName": "ProcessPath"},
4688: {"Descr": "A new process has been created",
"Provider": "Microsoft-Windows-Security-Auditing",
"SubjectUserSid": "SID",
"SubjectUserName": "Username",
"SubjectDomainName": "Domain",
"SubjectLogonId": "LogonId",
"NewProcessId": "NewProcessId",
"NewProcessName": "NewProcessPath",
"TokenElevationType": "TokenElevationType", # %% format
"CommandLine": "Command", # Win 8.1+
"ProcessId": "ProcessId",
# Win 10+
"ParentProcessName": "ProcessPath",
"MandatoryLabel": "+MandatoryLabel",
"TargetUserSid": "TargetSID",
"TargetUserName": "TargetUsername",
"TargetDomainName": "TargetDomain",
"TargetLogonId": "TargetLogonId"},
4697: {"Descr": "A service was installed in the system",
"Provider": "Microsoft-Windows-Security-Auditing",
"SubjectUserSid": "SID",
"SubjectUserName": "Username",
"SubjectDomainName": "Domain",
"SubjectLogonId": "LogonId",
"ServiceName": "ServiceName",
"ServiceFileName": "ServicePath",
"ServiceType": "+ServiceType",
"ServiceStartType": "+ServiceStartType",
"ServiceAccount": "ServiceAccount"},
4698: {"Descr": "A scheduled task was created",
"Provider": "Microsoft-Windows-Security-Auditing",
"SubjectUserSid": "SID",
"SubjectUserName": "Username",
"SubjectDomainName": "Domain",
"SubjectLogonId": "LogonId",
"TaskName": "TaskName",
"TaskContent": "TaskContent"},
4699: {"Descr": "A scheduled task was deleted",
"Provider": "Microsoft-Windows-Security-Auditing",
"SubjectUserSid": "SID",
"SubjectUserName": "Username",
"SubjectDomainName": "Domain",
"SubjectLogonId": "LogonId",
"TaskName": "TaskName",
"TaskContent": "TaskContent"},
4700: {"Descr": "A scheduled task was enabled",
"Provider": "Microsoft-Windows-Security-Auditing",
"SubjectUserSid": "SID",
"SubjectUserName": "Username",
"SubjectDomainName": "Domain",
"SubjectLogonId": "LogonId",
"TaskName": "TaskName",
"TaskContent": "TaskContent"},
4701: {"Descr": "A scheduled task was disabled",
"Provider": "Microsoft-Windows-Security-Auditing",
"SubjectUserSid": "SID",
"SubjectUserName": "Username",
"SubjectDomainName": "Domain",
"SubjectLogonId": "LogonId",
"TaskName": "TaskName",
"TaskContent": "TaskContent"},
4702: {"Descr": "A scheduled task was updated",
"Provider": "Microsoft-Windows-Security-Auditing",
"SubjectUserSid": "SID",
"SubjectUserName": "Username",
"SubjectDomainName": "Domain",
"SubjectLogonId": "LogonId",
"TaskName": "TaskName",
"TaskContentNew": "TaskContent"},
4717: {"Descr": "System security access was granted to an account",
"Provider": "Microsoft-Windows-Security-Auditing",
"SubjectUserSid": "SID",
"SubjectUserName": "Username",
"SubjectDomainName": "Domain",
"SubjectLogonId": "LogonId",
"TargetSid": "TargetSid",
"AccessGranted": "AccessGranted"},
4719: {"Descr": "System audit policy was changed",
"Provider": "Microsoft-Windows-Security-Auditing",
"SubjectUserSid": "SID",
"SubjectUserName": "Username",
"SubjectDomainName": "Domain",
"SubjectLogonId": "LogonId",
"CategoryId": "CategoryId", # %% format
"SubcategoryId": "SubcategoryId", # %% format
"SubcategoryGuid": "SubcategoryGuid", # %% format
"AuditPolicyChanges": "AuditPolicyChanges"}, # %% format (multiple, joined with ', ')
4720: {"Descr": "A user account was created",
"Provider": "Microsoft-Windows-Security-Auditing",
"SubjectUserSid": "SID",
"SubjectUserName": "Username",
"SubjectDomainName": "Domain",
"SubjectLogonId": "LogonId",
"TargetUserSid": "TargetSID",
"TargetUserName": "TargetUsername",
"TargetDomainName": "TargetDomain",
"PrivilegeList": "PrivilegeList",
"SamAccountName": "SamAccountName",
"DisplayName": "DisplayName",
"UserPrincipalName": "UserPrincipalName",
"HomeDirectory": "HomeDirectory",
"HomePath": "HomePath",
"ScriptPath": "ScriptPath",
"ProfilePath": "ProfilePath",
"UserWorkstations": "UserWorkstations",
"PasswordLastSet": "PasswordLastSet",
"AccountExpires": "AccountExpires",
"PrimaryGroupId": "PrimaryGroupId",
"AllowedToDelegateTo": "AllowedToDelegateTo",
"OldUacValue": "+OldUacFlags",
"SidHistory": "SIDHistory",
"LogonHours": "LogonHours",
"UserAccountControl": "UserAccountControl"}, # %% format (multiple, joined with ' ')
4722: {"Descr": "A user account was enabled",
"Provider": "Microsoft-Windows-Security-Auditing",
"SubjectUserSid": "SID",
"SubjectUserName": "Username",
"SubjectDomainName": "Domain",
"SubjectLogonId": "LogonId",
"TargetSid": "TargetSID",
"TargetUserName": "TargetUsername",
"TargetDomainName": "TargetDomain"},
4723: {"Descr": "An attempt was made to change an account's password",
"Provider": "Microsoft-Windows-Security-Auditing",
"SubjectUserSid": "SID",
"SubjectUserName": "Username",
"SubjectDomainName": "Domain",
"SubjectLogonId": "LogonId",
"TargetSid": "TargetSID",
"TargetUserName": "TargetUsername",
"TargetDomainName": "TargetDomain",
"PrivilegeList": "PrivilegeList"},
4724: {"Descr": "An attempt to was made to reset an account's password",
"Provider": "Microsoft-Windows-Security-Auditing",
"SubjectUserSid": "SID",
"SubjectUserName": "Username",
"SubjectDomainName": "Domain",
"SubjectLogonId": "LogonId",
"TargetSid": "TargetSID",
"TargetUserName": "TargetUsername",
"TargetDomainName": "TargetDomain"},
4725: {"Descr": "A user account was disabled",
"Provider": "Microsoft-Windows-Security-Auditing",
"SubjectUserSid": "SID",
"SubjectUserName": "Username",
"SubjectDomainName": "Domain",
"SubjectLogonId": "LogonId",
"TargetSid": "TargetSID",
"TargetUserName": "TargetUsername",
"TargetDomainName": "TargetDomain"},
4726: {"Descr": "A user account was deleted",
"Provider": "Microsoft-Windows-Security-Auditing",
"SubjectUserSid": "SID",
"SubjectUserName": "Username",
"SubjectDomainName": "Domain",
"SubjectLogonId": "LogonId",
"TargetSid": "TargetSID",
"TargetUserName": "TargetUsername",
"TargetDomainName": "TargetDomain"},
4728: {"Descr": "A member was added to a security-enabled global group",
"Provider": "Microsoft-Windows-Security-Auditing",
"SubjectUserSid": "SID",
"SubjectUserName": "Username",
"SubjectDomainName": "Domain",
"SubjectLogonId": "LogonId",
"MemberSid": "TargetSID",
"MemberName": "TargetUsername",
"TargetSid": "TargetGroupSID",
"TargetUserName": "TargetGroup",
"TargetDomainName": "TargetDomain",
"PrivilegeList": "PrivilegeList"},
4732: {"Descr": "A member was added to a security-enabled local group",
"Provider": "Microsoft-Windows-Security-Auditing",
"SubjectUserSid": "SID",
"SubjectUserName": "Username",
"SubjectDomainName": "Domain",
"SubjectLogonId": "LogonId",
"MemberSid": "TargetSID",
"MemberName": "TargetUsername",
"TargetSid": "TargetGroupSID",
"TargetUserName": "TargetGroup",
"TargetDomainName": "TargetDomain",
"PrivilegeList": "PrivilegeList"},
4738: {"Descr": "A user account was changed", # non-changed values are -
"Provider": "Microsoft-Windows-Security-Auditing",
"SubjectUserSid": "SID",
"SubjectUserName": "Username",
"SubjectDomainName": "Domain",
"SubjectLogonId": "LogonId",
"TargetSid": "TargetSID",
"TargetUserName": "TargetUsername",
"TargetDomainName": "TargetDomain",
"PrivilegeList": "PrivilegeList",
"SamAccountName": "SamAccountName",
"DisplayName": "DisplayName",
"UserPrincipalName": "UserPrincipalName",
"HomeDirectory": "HomeDirectory",
"HomePath": "HomePath",
"ScriptPath": "ScriptPath",
"ProfilePath": "ProfilePath",
"UserWorkstations": "UserWorkstations",
"PasswordLastSet": "PasswordLastSet",
"AccountExpires": "AccountExpires",
"PrimaryGroupId": "PrimaryGroupId",
"AllowedToDelegateTo": "AllowedToDelegateTo",
"OldUacValue": "+OldUacFlags",
"NewUacValue": "+NewUacFlags",
"UserParameters": "UserParameters",
"SidHistory": "SIDHistory",
"LogonHours": "LogonHours",
"UserAccountControl": "UserAccountControl"}, # %% format
4740: {"Descr": "A user account was locked out",
"Provider": "Microsoft-Windows-Security-Auditing",
"SubjectUserSid": "SID",
"SubjectUserName": "Username",
"SubjectDomainName": "Domain",
"SubjectLogonId": "LogonId",
"TargetSid": "TargetSID",
"TargetUserName": "TargetUsername",
"TargetDomainName": "TargetDomain"},
4741: {"Descr": "A computer account was created",
"Provider": "Microsoft-Windows-Security-Auditing",
"SubjectUserSid": "SID",
"SubjectUserName": "Username",
"SubjectDomainName": "Domain",
"SubjectLogonId": "LogonId",
"TargetSid": "TargetSID",
"TargetUserName": "TargetUsername",
"TargetDomainName": "TargetDomain",
"PrivilegeList": "PrivilegeList",
"SamAccountName": "SamAccountName",
"DisplayName": "DisplayName",
"UserPrincipalName": "UserPrincipalName",
"HomeDirectory": "HomeDirectory",
"HomePath": "HomePath",
"ScriptPath": "ScriptPath",
"ProfilePath": "ProfilePath",
"UserWorkstations": "UserWorkstations",
"PasswordLastSet": "PasswordLastSet",
"AccountExpires": "AccountExpires",
"PrimaryGroupId": "PrimaryGroupId",
"AllowedToDelegateTo": "AllowedToDelegateTo",
"OldUacValue": "+OldUacFlags",
"NewUacValue": "+NewUacFlags",
"UserParameters": "UserParameters",
"SidHistory": "SIDHistory",
"LogonHours": "LogonHours",
"UserAccountControl": "UserAccountControl", # %% format
"DnsHostName": "Hostname",
"ServicePrincipalNames": "SPNs"},
4742: {"Descr": "A computer account was changed",
"Provider": "Microsoft-Windows-Security-Auditing",
"ComputerAccountChange": "ComputerAccountChange",
"SubjectUserSid": "SID",
"SubjectUserName": "Username",
"SubjectDomainName": "Domain",
"SubjectLogonId": "LogonId",
"TargetSid": "TargetSID",
"TargetUserName": "TargetUsername",
"TargetDomainName": "TargetDomain",
"PrivilegeList": "PrivilegeList",
"SamAccountName": "SamAccountName",
"DisplayName": "DisplayName",
"UserPrincipalName": "UserPrincipalName",
"HomeDirectory": "HomeDirectory",
"HomePath": "HomePath",
"ScriptPath": "ScriptPath",
"ProfilePath": "ProfilePath",
"UserWorkstations": "UserWorkstations",
"PasswordLastSet": "PasswordLastSet",
"AccountExpires": "AccountExpires",
"PrimaryGroupId": "PrimaryGroupId",
"AllowedToDelegateTo": "AllowedToDelegateTo",
"OldUacValue": "+OldUacFlags",
"NewUacValue": "+NewUacFlags",
"UserParameters": "UserParameters",
"SidHistory": "SIDHistory",
"LogonHours": "LogonHours",
"UserAccountControl": "UserAccountControl", # %% format
"DnsHostName": "Hostname",
"ServicePrincipalNames": "SPNs"},
4743: {"Descr": "A computer account was deleted",
"Provider": "Microsoft-Windows-Security-Auditing",
"SubjectUserSid": "SID",
"SubjectUserName": "Username",
"SubjectDomainName": "Domain",
"SubjectLogonId": "LogonId",
"TargetSid": "TargetSID",
"TargetUserName": "TargetUsername",
"TargetDomainName": "TargetDomain",
"PrivilegeList": "PrivilegeList"},
4746: {"Descr": "A member was added to a security-disabled local group",
"Provider": "Microsoft-Windows-Security-Auditing",
"SubjectUserSid": "SID",
"SubjectUserName": "Username",
"SubjectDomainName": "Domain",
"SubjectLogonId": "LogonId",
"MemberSid": "TargetSID",
"MemberName": "TargetUsername",
"TargetSid": "TargetGroupSID",
"TargetUserName": "TargetGroup",
"TargetDomainName": "TargetDomain",
"PrivilegeList": "PrivilegeList"},
4756: {"Descr": "A member was added to a security-enabled universal group",
"Provider": "Microsoft-Windows-Security-Auditing",
"SubjectUserSid": "SID",
"SubjectUserName": "Username",
"SubjectDomainName": "Domain",
"SubjectLogonId": "LogonId",
"MemberSid": "TargetSID",
"MemberName": "TargetUsername",
"TargetSid": "TargetGroupSID",
"TargetUserName": "TargetGroup",
"TargetDomainName": "TargetDomain",
"PrivilegeList": "PrivilegeList"},
4761: {"Descr": "A member was added to a security-disabled universal group",
"Provider": "Microsoft-Windows-Security-Auditing",
"SubjectUserSid": "SID",
"SubjectUserName": "Username",
"SubjectDomainName": "Domain",
"SubjectLogonId": "LogonId",
"MemberSid": "TargetSID",
"MemberName": "TargetUsername",
"TargetSid": "TargetGroupSID",
"TargetUserName": "TargetGroup",
"TargetDomainName": "TargetDomain",
"PrivilegeList": "PrivilegeList"},
4767: {"Descr": "A user account was unlocked",
"Provider": "Microsoft-Windows-Security-Auditing",
"SubjectUserSid": "SID",
"SubjectUserName": "Username",
"SubjectDomainName": "Domain",
"SubjectLogonId": "LogonId",
"TargetSid": "TargetGroupSID",
"TargetUserName": "TargetGroup",
"TargetDomainName": "TargetDomain"},
4768: {"Descr": "A Kerberos authentication ticket (TGT) was requested",
"Provider": "Microsoft-Windows-Security-Auditing",
"TargetUserSid": "TargetSID",
"TargetUserName": "TargetUsername",
"TargetDomainName": "TargetDomain",
"ServiceSid": "ServiceSID",
"ServiceName": "ServiceName",
"TicketOptions": "+TicketOptions",
"Status": "+ResultCode",
"TicketEncryptionType": "+TicketEncryptionType",
"PreAuthType": "+PreAuthType",
"IpAddress": "IP",
"IpPort": "Port",
"CertIssuerName": "CertIssuer",
"CertSerialNumber": "CertSerialNumber",
"CertThumbprint": "CertThumbprint"},
4769: {"Descr": "A Kerberos service ticket was requested",
"Provider": "Microsoft-Windows-Security-Auditing",
"TargetUserName": "TargetUsername",
"TargetDomainName": "TargetDomain",
"ServiceSid": "ServiceSID",
"ServiceName": "ServiceName",
"TicketOptions": "+TicketOptions",
"Status": "+ResultCode",
"TicketEncryptionType": "+TicketEncryptionType",
"PreAuthType": "+PreAuthType",
"IpAddress": "IP",
"IpPort": "Port",
"LogonGuid": "LogonGUID",
"TransmittedServices": "TransmittedServices"},
4771: {"Descr": "Kerberos pre-authentication failed",
"Provider": "Microsoft-Windows-Security-Auditing",
"TargetUserName": "TargetUsername",
"TargetSid": "TargetSID",
"ServiceName": "ServiceName",
"TicketOptions": "+TicketOptions",
"Status": "+ResultCode",
"PreAuthType": "+PreAuthType",
"IpAddress": "IP",
"IpPort": "Port"},
4776: {"Descr": "The computer attempted to validate the credentials for an account",
"Provider": "Microsoft-Windows-Security-Auditing",
"TargetUserName": "TargetUsername",
"Workstation": "WorkstationName",
"PackageName": "AuthenticationPackage",
"Status": "+ResultCode"},
4778: {"Descr": "A session was reconnected to a Window Station",
"Provider": "Microsoft-Windows-Security-Auditing",
"AccountName": "TargetUsername",
"AccountDomain": "TargetDomain",
"LogonID": "TargetLogonId",
"SessionName": "SessionName",
"ClientName": "WorkstationName",
"ClientAddress": "IP",
"PackageName": "AuthenticationPackage"},
4779: {"Descr": "A session was disconnected from a Window Station",
"Provider": "Microsoft-Windows-Security-Auditing",
"AccountName": "TargetUsername",
"AccountDomain": "TargetDomain",
"LogonID": "TargetLogonId",
"SessionName": "SessionName",
"ClientName": "WorkstationName",
"ClientAddress": "IP"},
4781: {"Descr": "The name of an account was changed",
"Provider": "Microsoft-Windows-Security-Auditing",
"SubjectUserSid": "SID",
"SubjectUserName": "Username",
"SubjectDomainName": "Domain",
"SubjectLogonId": "LogonId",
"OldTargetUserName": "OldTargetUsername",
"NewTargetUserName": "NewTargetUsername",
"TargetDomainName": "TargetDomain",
"TargetSid": "TargetSID",
"PrivilegeList": "PrivilegeList"},
4798: {"Descr": "A user's local group membership was enumerated",
"Provider": "Microsoft-Windows-Security-Auditing",
"SubjectUserSid": "SID",
"SubjectUserName": "Username",
"SubjectDomainName": "Domain",
"SubjectLogonId": "LogonId",
"TargetUserName": "TargetUsername",
"TargetDomainName": "TargetDomain",
"TargetSid": "TargetSID",
"CallerProcessId": "ProcessId",
"CallerProcessName": "ProcessPath"},
4799: {"Descr": "A security-enabled local group membership was enumerated",
"Provider": "Microsoft-Windows-Security-Auditing",
"SubjectUserSid": "SID",
"SubjectUserName": "Username",
"SubjectDomainName": "Domain",
"SubjectLogonId": "LogonId",
"TargetUserName": "TargetUsername",
"TargetDomainName": "TargetDomain",
"TargetSid": "TargetSID",
"CallerProcessId": "ProcessId",
"CallerProcessName": "ProcessPath"},
4825: {"Descr": "A user was denied the access to Remote Desktop. By default, users are allowed to connect only "
"if they are members of the Remote Desktop Users group or Administrators group",
"Provider": "Microsoft-Windows-Security-Auditing",
"AccountName": "TargetUsername",
"AccountDomain": "TargetDomain",
"LogonID": "TargetLogonId",
"ClientAddress": "IP"},
4912: {"Descr": "Per User Audit Policy was changed",
"Provider": "Microsoft-Windows-Security-Auditing",
"SubjectUserSid": "SID",
"SubjectUserName": "Username",
"SubjectDomainName": "Domain",
"SubjectLogonId": "LogonId",
"TargetUserSid": "TargetSID",
"CategoryId": "CategoryId", # %% format
"SubcategoryId": "SubcategoryId", # %% format
"SubcategoryGuid": "SubcategoryGuid", # %% format
"AuditPolicyChanges": "AuditPolicyChanges"}, # %% format (multiple, joined with ', ')
4964: {"Descr": "Special groups have been assigned to a new logon",
"Provider": "Microsoft-Windows-Security-Auditing",
"SubjectUserSid": "SID",
"SubjectUserName": "Username",
"SubjectDomainName": "Domain",
"SubjectLogonId": "LogonId",
"LogonGuid": "LogonGuid",
"TargetUserName": "TargetUsername",
"TargetDomainName": "TargetDomain",
"TargetUserSid": "TargetSID",
"TargetLogonId": "TargetLogonId",
"TargetLogonGuid": "TargetLogonGuid",
"SidList": "SidList"},
5059: {"Descr": "Key migration operation",
"Provider": "Microsoft-Windows-Security-Auditing",
"SubjectUserSid": "SID",
"SubjectUserName": "Username",
"SubjectDomainName": "Domain",
"SubjectLogonId": "LogonId",
"ProviderName": "ProviderName",
"AlgorithmName": "AlgorithmName",
"KeyName": "KeyName",
"KeyType": "KeyType",
"Operation": "OperationType",
"ReturnCode": "ResultCode"},
5140: {"Descr": "A network share object was accessed",
"Provider": "Microsoft-Windows-Security-Auditing",
"SubjectUserSid": "SID",
"SubjectUserName": "Username",
"SubjectDomainName": "Domain",
"SubjectLogonId": "LogonId",
"ObjectType": "ObjectType",
"ShareName": "ShareName",
"ShareLocalPath": "ShareLocalPath",
"IpAddress": "IP",
"IpPort": "Port",
"AccessList": "AccessList"}, # %% format
5142: {"Descr": "A network share object was added",
"Provider": "Microsoft-Windows-Security-Auditing",
"SubjectUserSid": "SID",
"SubjectUserName": "Username",
"SubjectDomainName": "Domain",
"SubjectLogonId": "LogonId",
"ShareName": "ShareName",
"ShareLocalPath": "ShareLocalPath"},
5144: {"Descr": "A network share object was deleted",
"Provider": "Microsoft-Windows-Security-Auditing",
"SubjectUserSid": "SID",
"SubjectUserName": "Username",
"SubjectDomainName": "Domain",
"SubjectLogonId": "LogonId",
"ShareName": "ShareName",
"ShareLocalPath": "ShareLocalPath"},
5145: {"Descr": "A network share object was checked to see whether client can be granted desired access",
"Provider": "Microsoft-Windows-Security-Auditing",
"SubjectUserSid": "SID",
"SubjectUserName": "Username",
"SubjectDomainName": "Domain",
"SubjectLogonId": "LogonId",
"ObjectType": "ObjectType",
"ShareName": "ShareName",
"ShareLocalPath": "ShareLocalPath",
"RelativeTargetName": "RelativeTargetName",
"IpAddress": "IP",
"IpPort": "Port",
"AccessList": "AccessList", # %% format
"AccessMask": "AccessMask", # alternate representation of AccessList
"AccessReason": "AccessReason"},
5152: {"Descr": "The Windows Filtering Platform has blocked a packet",
"Provider": "Microsoft-Windows-Security-Auditing",
"ProcessId": "ProcessId",
"Application": "ProcessPath",
"Direction": "Direction", # %% format
"SourceAddress": "IP",
"SourcePort": "Port",
"DestAddress": "TargetIP",
"DestPort": "TargetPort",
"Protocol": "+Protocol"},
5156: {"Descr": "The Windows Filtering Platform has permitted a connection",
"Provider": "Microsoft-Windows-Security-Auditing",
"ProcessId": "ProcessId",
"Application": "ProcessPath",
"Direction": "Direction", # %% format
"IpAddress": "IP",
"IpPort": "Port",
"DestAddress": "TargetIP",
"DestPort": "TargetPort",
"Protocol": "+Protocol",
"RemoteUserID": "TargetSID",
"RemoteMachineID": "TargetMachineSID"},
5158: {"Descr": "The Windows Filtering Platform has permitted a bind to a local port",
"Provider": "Microsoft-Windows-Security-Auditing",
"ProcessId": "ProcessId",
"Application": "ProcessPath",
"Direction": "Direction", # %% format
"SourceAddress": "IP",
"SourcePort": "Port",
"Protocol": "+Protocol"},
6279: {"Descr": "Network Policy Server locked the user account due to repeated failed authentication attempts",
"Provider": "Microsoft-Windows-Security-Auditing",
"SubjectUserSid": "SID",
"SubjectUserName": "Username",
"SubjectDomainName": "Domain",
"FullyQualifiedSubjectUserName": "UsernameFQN"},
6280: {"Descr": "Network Policy Server unlocked the user account",
"Provider": "Microsoft-Windows-Security-Auditing",
"SubjectUserSid": "SID",
"SubjectUserName": "Username",
"SubjectDomainName": "Domain",
"FullyQualifiedSubjectUserName": "UsernameFQN"},
6416: {"Descr": "A new external device was recognized by the System",
"Provider": "Microsoft-Windows-Security-Auditing",
"SubjectUserSid": "SID",
"SubjectUserName": "Username",
"SubjectDomainName": "Domain",
"SubjectLogonId": "LogonId",
"DeviceId": "DeviceName", # Win10 v1511+
"DeviceDescription": "DeviceDescr", # Win10 v1511+
"ClassId": "ClassId", # Win10 v1511+
"ClassName": "ClassName", # Win10 v1511+
"VendorIds": "VendorId",
"CompatibleIds": "CompatibleId",
"LocationInformation": "Location"}
}
sys = { # System
2: {"Descr": "Possible detection of CVE: <CVEId>. This event is raised by a kernel mode driver",
"Provider": "Microsoft-Windows-Audit-CVE",
"CVEID": "CVEID",
"AdditionalDetails": "AdditionalDetails"},
104: {"Descr": "The <EventLogName> log file was cleared",
"Provider": "Microsoft-Windows-Eventlog",
"SubjectUserName": "Username",
"SubjectDomainName": "Domain",
"Channel": "EventLogName",
"BackupPath": "BackupPath"},
1014: {"Descr": "Name resolution for the <QueryName> timed out after none of the configured DNS servers responded",
"Provider": "Microsoft-Windows-DNS-Client",
"QueryName": "QueryName",
"Address": "Address"},
1074: {"Descr": "<ProcessPath> has initiated the <ShutdownType> of <Hostname> on behalf of <Username> for the "
"following <Reason>",
"Provider": "User32",
"param1": "ProcessPath",
"param2": "Hostname",
"param3": "Reason",
"param4": "ReasonCode",
"param5": "ShutdownType",
"param6": "Comment",
"param7": "Username"},
1076: {"Descr": "The reason supplied by <Username> for the last unexpected shutdown of this computer is <Reason>",
"Provider": "User32",
"param1": "Reason",
"param2": "ReasonCode",
"param5": "Comment",
"param6": "Username"},
6005: {"Descr": "The Event Log service was started",
"Provider": "EventLog"},
6006: {"Descr": "The Event Log service was stopped",
"Provider": "EventLog"},
6008: {"Descr": "The previous system shutdown at %1 on %2 was unexpected",
"Provider": "EventLog"},
6009: {"Descr": "Microsoft (R) Windows (R) %1 %2 %3 %4",
"Provider": "EventLog"},
6013: {"Descr": "The system uptime is %5 seconds",
"Provider": "EventLog"},
6100: {"Descr": "Details about Networking <HelperClassName> diagnosis:",
"Provider": "Microsoft-Windows-Diagnostics-Networking",
"HelperClassName": "HelperClassName",
"EventDescription": "EventDescr",
"EventVerbosity": "EventVerbosity"},
7034: {"Descr": "The <ServiceName> terminated unexpectedly. It has done this <Count> time(s)",
"Provider": "Service Control Manager",
"param1": "ServiceName",
"param2": "Count"},
7035: {"Descr": "The <ServiceName> was successfully sent a <Control>",
"Provider": "Service Control Manager",
"param1": "ServiceName",
"param2": "Control"},
7036: {"Descr": "The <ServiceName> entered the <StatusAfter> state",
"Provider": "Service Control Manager",
"param1": "ServiceName",
"param2": "StatusAfter"},
7040: {"Descr": "The start type of <ServiceName> was changed from <StatusBefore> to <StatusAfter>",
"Provider": "Service Control Manager",
"param1": "ServiceName",
"param2": "StatusBefore",
"param3": "StatusAfter"},
7045: {"Descr": "A service was installed on the system",
"Provider": "Service Control Manager",
"ServiceName": "ServiceName",
"ImagePath": "ServicePath",
"ServiceType": "ServiceType",
"StartType": "ServiceStartType",
"AccountName": "ServiceAccount"},
9009: {"Descr": "The Desktop Window Manager has exited with code <ExitCode>", # classic event, incorrect channel?
"Param1": "ExitCode"},
10000: {"Descr": "A driver package which uses user-mode driver framework version <FrameworkVersion> is being "
"installed on device <DeviceId>",
"Provider": "Microsoft-Windows-DriverFrameworks-UserMode",
"DeviceId": "DeviceId",
"FrameworkVersion": "FrameworkVersion"},
20001: {"Descr": "Driver Management concluded the process to install <DriverName> for <DeviceInstanceId> "
"with <Status>",
"Provider": "Microsoft-Windows-UserPnp",
"DriverName": "DriverName",
"DriverVersion": "DriverVersion",
"DriverProvider": "DriverProvider",
"DeviceInstanceID": "DeviceInstanceID",
"DriverDescription": "DriverDescr",
"SetupClass": "SetupClass",
"RebootOption": "RebootOption",
"UpgradeDevice": "UpgradeDevice",
"IsDriverOEM": "IsDriverOEM",
"InstallStatus": "Status"},
20002: {"Descr": "Driver Management concluded the process to remove <DriverName> from <DeviceInstanceId> "
"with <Status>",
"Provider": "Microsoft-Windows-UserPnp",
"DriverName": "DriverName",
"DriverVersion": "DriverVersion",
"DriverProvider": "DriverProvider",
"DeviceInstanceID": "DeviceInstanceID",
"DriverDescription": "DriverDescr",
"SetupClass": "SetupClass",
"RebootOption": "RebootOption",
"UpgradeDevice": "UpgradeDevice",
"IsDriverOEM": "IsDriverOEM",
"InstallStatus": "Status"},
20003: {"Descr": "Driver Management has concluded the process to add <ServiceName>> for <DeviceInstanceID> "
"with <Status>",
"Provider": "Microsoft-Windows-UserPnp",
"ServiceName": "DriverName",
"DriverFileName": "DriverPath",
"DeviceInstanceID": "DeviceInstanceID",
"PrimaryService": "IsPrimaryService",
"UpdateService": "IsUpdateService",
"AddServiceStatus": "AddServiceStatus"}
}
app = { # Application
1: {"Descr": "Possible detection of CVE: <CVEId>. This event is raised by a User mode process",
"Provider": "Microsoft-Windows-Audit-CVE",
"CVEID": "CVEID",
"AdditionalDetails": "AdditionalDetails"},
216: {"Descr": "%1 (%2) %3 A database location change was detected from %4 to %5",
"Provider": "ESENT"}, # removed in Win10 v2004
325: {"Descr": "%1 (%2) %3 The database engine created a new database (%4, %5). (Time=%6 seconds)",
"Provider": "ESENT"}, # removed in Win10 v2004
326: {"Descr": "%1 (%2) %3 The database engine attached a database (%4, %5). (Time=%6 seconds)",
"Provider": "ESENT"}, # removed in Win10 v2004
327: {"Descr": "%1 (%2) %3 The database engine detached a database (%4, %5). (Time=%6 seconds)",
"Provider": "ESENT"}, # removed in Win10 v2004
1001: {"Descr": "Fault bucket: %1, Type: %2. Event Name: %3, Response: %4, Cab Id: %5. Problem signature: %rest",
"Provider": "Windows Error Reporting"},
1033: {"Descr": "Windows Installer installed the product. Product Name: %1. Product Version: %2. "
"Product Language: %3. Manufacturer: %5. Installation success or error status: %4.",
"Provider": "MsiInstaller"},
1034: {"Descr": "Windows Installer removed the product. Product Name: %1. Product Version: %2. "
"Product Language: %3. Manufacturer: %5. Removal success or error status: %4.",
"Provider": "MsiInstaller"},
11707: {"Descr": "Installation completed successfully",
"Provider": "MsiInstaller"},
11708: {"Descr": "Installation operation failed",
"Provider": "MsiInstaller"},
11724: {"Descr": "Application removal completed successfully",
"Provider": "MsiInstaller"},
}
appexp1 = { # Microsoft-Windows-Application-Experience/Program-Inventory
800: {"Descr": "An instance of Program Data Updater (PDU) ran with the following information...", # Win7 - 8.1
"Provider": "Microsoft-Windows-Application-Experience",
"StartTime": "StartTime",
"StopTime": "StopTime",
"ExitCode": "ExitCode",
"NumNewPrograms": "NumNewPrograms",
"NumRemovedPrograms": "NumRemovedPrograms",
"NumUpdatedPrograms": "NumUpdatedPrograms",
"NumInstalledPrograms": "NumInstalledPrograms",
"NumNewOrphans": "NumNewOrphans",
"NumNewAddOns": "NumNewAddOns",
"NumRemovedAddOns": "NumRemovedAddOns",
"NumUpdatedAddOns": "NumUpdatedAddOns",
"NumInstalledAddOns": "NumInstalledAddOns",
"NumNewInstallations": "NumNewInstallations"},
903: {"Descr": "A program was installed on the system",
"Provider": "Microsoft-Windows-Application-Experience",
"Name": "AppName",
"Version": "AppVersion",
"Publisher": "AppPublisher",
"Language": "Language",
"Source": "Source",
"ProgramID": "ProgramId",
"FileInstanceID": "FileInstanceId"},
904: {"Descr": "A program was installed on the system (MSI)",
"Provider": "Microsoft-Windows-Application-Experience",
"Name": "AppName",
"Version": "AppVersion",
"Publisher": "AppPublisher",
"Language": "Language",
"Source": "Source",
"ProgramID": "ProgramId",
"FileInstanceID": "FileInstanceId",
"MsiProductCode": "MsiProductCode",
"MsiPackageCode": "MsiPackageCode"},
905: {"Descr": "A program was updated on the system",
"Provider": "Microsoft-Windows-Application-Experience",
"Name": "AppName",
"Version": "AppVersion",
"Publisher": "AppPublisher",
"Language": "Language",
"Source": "Source",
"ProgramID": "ProgramId",
"FileInstanceID": "FileInstanceId",
"OldFileInstanceID": "OldFileInstanceId"},
906: {"Descr": "A program was updated on the system (MSI)",
"Provider": "Microsoft-Windows-Application-Experience",
"Name": "AppName",
"Version": "AppVersion",
"Publisher": "AppPublisher",
"Language": "Language",
"Source": "Source",
"ProgramID": "ProgramId",
"FileInstanceID": "FileInstanceId",
"OldFileInstanceID": "OldFileInstanceId",
"MsiProductCode": "MsiProductCode",
"OldMsiProductCode": "OldMsiProductCode",
"MsiPackageCode": "MsiPackageCode",
"OldMsiPackageCode": "OldMsiPackageCode"},
907: {"Descr": "A program was removed on the system",
"Provider": "Microsoft-Windows-Application-Experience",
"Name": "AppName",
"Version": "AppVersion",
"Publisher": "AppPublisher",
"Language": "Language",
"Source": "Source",
"ProgramID": "ProgramId",
"FileInstanceID": "FileInstanceId"},
908: {"Descr": "A program was removed on the system (MSI)",
"Provider": "Microsoft-Windows-Application-Experience",
"Name": "AppName",
"Version": "AppVersion",
"Publisher": "AppPublisher",
"Language": "Language",
"Source": "Source",
"ProgramID": "ProgramId",
"FileInstanceID": "FileInstanceId",
"MsiProductCode": "MsiProductCode",
"MsiPackageCode": "MsiPackageCode"}
}
appexp2 = { # Microsoft-Windows-Application-Experience/Program-Telemetry
500: {"Descr": "Compatibility fix applied to <ProcessPath>. Fix information: <FixName>, <FixId>, <Flags>",
"Provider": "Microsoft-Windows-Application-Experience",
"ProcessId": "ProcessId",
"ExePath": "ProcessPath",
"StartTime": "StartTime",
"FixID": "FixId",
"FixName": "FixName",
"Flags": "Flags"},
501: {"Descr": "Compatibility fix applied to <ProcessPath>. Fix information: <FixName>, <FixId>, <Flags>",
"Provider": "Microsoft-Windows-Application-Experience",
"ProcessId": "ProcessId",
"ExePath": "ProcessPath",
"StartTime": "StartTime",
"FixID": "FixId",
"FixName": "FixName",
"Flags": "Flags"},
502: {"Descr": "Compatibility fix applied to <MsiPath>. Fix information: <FixName>, <FixId>, <Flags>",
"Provider": "Microsoft-Windows-Application-Experience",
"ClientProcessId": "ProcessId",
"ClientStartTime": "StartTime",
"FixID": "FixId",
"FixName": "FixName",
"Flags": "Flags",
"ProductCode": "ProductCode",
"PackageCode": "PackageCode",
"MsiPath": "MsiPath"},
503: {"Descr": "Compatibility fix applied to <MsiPath>. Fix information: <FixName>, <FixId>, <Flags>",
"Provider": "Microsoft-Windows-Application-Experience",
"ClientProcessId": "ProcessId",
"ClientStartTime": "StartTime",
"FixID": "FixId",
"FixName": "FixName",
"Flags": "Flags",
"ProductCode": "ProductCode",
"PackageCode": "PackageCode",
"MsiPath": "MsiPath"}
}
applocker = { # Microsoft-Windows-AppLocker/EXE and DLL
8004: {"Descr": "<FilePath> was prevented from running",
"Provider": "Microsoft-Windows-AppLocker",
"PolicyNameBuffer": "Policy",
"RuleId": "RuleId",
"RuleNameBuffer": "RuleName",
"RuleSddlBuffer": "RuleSddl",
"TargetUser": "TargetUsername",
"TargetLogonId": "TargetLogonId",
"TargetProcessId": "TargetProcessId",
"FilePathBuffer": "FilePath",
"FileHash": "FileHash",
"Fqbn": "Fqbn"}
}
bits = { # Microsoft-Windows-Bits-Client/Operational
3: {"Descr": "The BITS service created a new job",
"Provider": "Microsoft-Windows-Bits-Client",
"jobTitle": "JobTitle",
"jobId": "JobId",
"jobOwner": "JobOwner",
"processPath": "ProcessPath",
"processId": "ProcessId"},
4: {"Descr": "The transfer job is complete",
"Provider": "Microsoft-Windows-Bits-Client",
"User": "Username",
"jobTitle": "JobTitle",
"jobId": "JobId",
"jobOwner": "JobOwner",
"fileCount": "FileCount"},
5: {"Descr": "Job cancelled",
"Provider": "Microsoft-Windows-Bits-Client",
"User": "Username",
"jobTitle": "JobTitle",
"jobId": "JobId",
"jobOwner": "JobOwner",
"fileCount": "FileCount"},
59: {"Descr": "BITS started the <Name> transfer job that is associated with the <URL>",
"Provider": "Microsoft-Windows-Bits-Client",
"transferId": "TransferId",
"name": "Name",
"Id": "JobId",
"url": "URL",
"peer": "Peer",
"fileTime": "FileTime",
"fileLength": "FileSize"},
60: {"Descr": "BITS stopped transferring the <Name> transfer job that is associated with the <URL>",
"Provider": "Microsoft-Windows-Bits-Client",
"transferId": "TransferId",
"name": "Name",
"Id": "JobId",
"url": "URL",
"peer": "Peer",
"fileTime": "FileTime",
"fileLength": "FileSize",
"bytesTotal": "BytesTotal",
"bytesTransferred": "BytesTransferred",
"bytesTransferredFromPeer": "BytesTransferredFromPeer"}
}
codeinteg = { # Microsoft-Windows-CodeIntegrity/Operational
3001: {"Descr": "Code Integrity determined an unsigned kernel module <FileName> is loaded into the system",
"Provider": "Microsoft-Windows-CodeIntegrity",
"FileNameBuffer": "FileName"}
}
diag = { # Microsoft-Windows-Diagnostics-Performance/Operational
100: {"Descr": "Windows has started up",
"Provider": "Microsoft-Windows-Diagnostics-Performance",
"BootStartTime": "BootStartTime",
"BootEndTime": "BootEndTime",
"SystemBootInstance": "SystemBootInstance",
"UserBootInstance": "UserBootInstance",
"BootTime": "BootTime", # in milliseconds
"UserLogonWaitDuration": "UserLogonWaitDuration"},
200: {"Descr": "Windows has shutdown",
"Provider": "Microsoft-Windows-Diagnostics-Performance",
"ShutdownStartTime": "ShutdownStartTime",
"ShutdownEndTime": "ShutdownEndTime",
"ShutdownTime": "ShutdownTime"} # in milliseconds
}
dnsclient = { # Microsoft-Windows-DNS-Client/Operational (disabled by default)
1014: {"Descr": "Name resolution for the <QueryName> timed out after none of the configured "
"DNS servers responded",
"Provider": "Microsoft-Windows-DNS-Client",
"QueryName": "QueryName",
"Address": "Address"},
3006: {"Descr": "DNS query is called for the <QueryName>, <QueryType>",
"Provider": "Microsoft-Windows-DNS-Client",
"QueryName": "QueryName",
"QueryType": "+QueryType",
"QueryOptions": "QueryOptions",
"ServerList": "ServerList",
"IsNetworkQuery": "IsNetworkQuery",
"NetworkQueryIndex": "NetworkIndex",
"InterfaceIndex": "InterfaceIndex",
"IsAsyncQuery": "IsAsyncQuery"},
3008: {"Descr": "DNS query is completed for the <QueryName>, <QueryType> with <ResponseCode> <QueryResults>",
"Provider": "Microsoft-Windows-DNS-Client",
"QueryName": "QueryName",
"QueryType": "+QueryType",
"QueryOptions": "QueryOptions",
"QueryStatus": "ResponseCode",
"QueryResults": "QueryResults"},
3011: {"Descr": "Received response from <DnsServerIP> for <QueryName> and <QueryType> with <ResponseCode>",
"Provider": "Microsoft-Windows-DNS-Client",
"QueryName": "QueryName",
"QueryType": "+QueryType",
"DnsServerIpAddress": "DnsServerIP",
"ResponseStatus": "Status"},
3016: {"Descr": "Cache lookup called for <QueryName>, <QueryType>",
"Provider": "Microsoft-Windows-DNS-Client",
"QueryName": "QueryName",
"QueryType": "+QueryType",
"QueryOptions": "QueryOptions",
"InterfaceIndex": "InterfaceIndex"},
3018: {"Descr": "Cache lookup for <QueryName>, <QueryType> returned <ResponseCode> with <QueryResults>",
"Provider": "Microsoft-Windows-DNS-Client",
"QueryName": "QueryName",
"QueryType": "+QueryType",
"QueryOptions": "QueryOptions",
"Status": "ResponseCode",
"QueryResults": "QueryResults"},
3019: {"Descr": "Query wire called for name <QueryName>, <QueryType>",
"Provider": "Microsoft-Windows-DNS-Client",
"QueryName": "QueryName",
"QueryType": "+QueryType",
"NetworkIndex": "NetworkIndex",
"InterfaceIndex": "InterfaceIndex"},
3020: {"Descr": "Query response for name <QueryName>, <QueryType> returned <ResponseCode> with <QueryResults>",
"Provider": "Microsoft-Windows-DNS-Client",
"QueryName": "QueryName",
"QueryType": "+QueryType",
"NetworkIndex": "NetworkIndex",
"InterfaceIndex": "InterfaceIndex",
"Status": "ResponseCode",
"QueryResults": "QueryResults"}
}
dnsserver = { # Microsoft-Windows-DNSServer/Analytical (Windows Server 2016+)
256: {"Descr": "Query received",
"Provider": "Microsoft-Windows-DNSServer",
"TCP": "TCP",
"InterfaceIP": "InterfaceIP",
"Source": "Source",
"RD": "RD",
"QNAME": "QueryName",
"QTYPE": "QueryType",
"XID": "XID",
"Port": "Port",
"Flags": "Flags",
"PacketData": "PacketData",
"AdditionalInfo": "AdditionalInfo"},
257: {"Descr": "Response success",
"Provider": "Microsoft-Windows-DNSServer",
"TCP": "TCP",
"InterfaceIP": "InterfaceIP",
"Destination": "Destination",
"AA": "AA",
"AD": "AD",
"QNAME": "QueryName",
"QTYPE": "QueryType",
"XID": "XID",
"DNSSEC": "DNSSEC",
"RCODE": "RCode",
"Port": "Port",
"Flags": "Flags",
"Scope": "Scope",
"Zone": "Zone",
"PolicyName": "Policy",
"PacketData": "PacketData",
"AdditionalInfo": "AdditionalInfo"},
258: {"Descr": "Response failure",
"Provider": "Microsoft-Windows-DNSServer",
"TCP": "TCP",
"InterfaceIP": "InterfaceIP",
"Reason": "Reason",
"Destination": "Destination",
"QNAME": "QueryName",
"QTYPE": "QueryType",
"XID": "XID",
"RCODE": "RCode",
"Port": "Port",
"Flags": "Flags",
"Zone": "Zone",
"PolicyName": "Policy",
"PacketData": "PacketData",
"AdditionalInfo": "AdditionalInfo"},
259: {"Descr": "Ignored query",
"Provider": "Microsoft-Windows-DNSServer",
"TCP": "TCP",
"InterfaceIP": "InterfaceIP",
"Source": "Source",
"Reason": "Reason",
"QNAME": "QueryName",
"QTYPE": "QueryType",
"XID": "XID",
"Zone": "Zone",
"PolicyName": "Policy",
"AdditionalInfo": "AdditionalInfo"},
260: {"Descr": "Recurse query out",
"Provider": "Microsoft-Windows-DNSServer",
"TCP": "TCP",
"InterfaceIP": "InterfaceIP",
"Destination": "Destination",
"RD": "RD",
"QNAME": "QueryName",
"QTYPE": "QueryType",
"XID": "XID",
"Port": "Port",
"Flags": "Flags",
"RecursionScope": "RecursionScope",
"CacheScope": "CacheScope",
"PolicyName": "Policy",
"PacketData": "PacketData",
"AdditionalInfo": "AdditionalInfo"},
261: {"Descr": "Recurse response in",
"Provider": "Microsoft-Windows-DNSServer",
"TCP": "TCP",
"InterfaceIP": "InterfaceIP",
"Source": "Source",
"AA": "AA",
"AD": "AD",
"QNAME": "QueryName",
"QTYPE": "QueryType",
"XID": "XID",
"Port": "Port",
"Flags": "Flags",
"RecursionScope": "RecursionScope",
"CacheScope": "CacheScope",
"PacketData": "PacketData",
"AdditionalInfo": "AdditionalInfo"},
262: {"Descr": "Recurse query timeout",
"Provider": "Microsoft-Windows-DNSServer",
"TCP": "TCP",
"InterfaceIP": "InterfaceIP",
"Destination": "Destination",
"QNAME": "QueryName",
"QTYPE": "QueryType",
"XID": "XID",
"Port": "Port",
"Flags": "Flags",
"RecursionScope": "RecursionScope",
"CacheScope": "CacheScope",
"AdditionalInfo": "AdditionalInfo"}
}
driverfw = { # Microsoft-Windows-DriverFrameworks-UserMode/Operational
2003: {"Descr": "The UMDF Host Process (<HostProcessId>) has been asked to load drivers for device <DeviceId>",
"Provider": "Microsoft-Windows-DriverFrameworks-UserMode",
"LifetimeId": "HostProcessId",
"InstanceId": "DeviceId"},
2004: {"Descr": "The UMDF Host is loading <Driver> at <Level> for device <DeviceId>",
"Provider": "Microsoft-Windows-DriverFrameworks-UserMode",
"LifetimeId": "HostProcessId",
"InstanceId": "DeviceId",
"Level": "Level",
"Service": "Driver",
"ClsId": "DriverClassId"},
2005: {"Descr": "The UMDF Host Process (<HostProcessId>) has loaded <ModulePath> while loading drivers for device "
"<DeviceId>",
"Provider": "Microsoft-Windows-DriverFrameworks-UserMode",
"LifetimeId": "HostProcessId",
"InstanceId": "DeviceId",
"ModulePath": "ModulePath",
"CompanyName": "CompanyName",
"FileDescription": "FileDescr",
"FileVersion": "FileVersion"},
2010: {"Descr": "The UMDF Host Process (<HostProcessId>) has successfully loaded drivers for device <DeviceId>",
"Provider": "Microsoft-Windows-DriverFrameworks-UserMode",
"LifetimeId": "HostProcessId",
"InstanceId": "DeviceId",
"FinalStatus": "FinalStatus"},
2100: {"Descr": "Received a Pnp or Power operation (<MajorCode>, <MinorCode>) for device <DeviceId>",
"Provider": "Microsoft-Windows-DriverFrameworks-UserMode",
"LifetimeId": "HostProcessId",
"InstanceId": "DeviceId",
"MajorCode": "MajorCode",
"MinorCode": "MinorCode",
"Status": "Status"},
2102: {"Descr": "Forwarded a finished Pnp or Power operation (<MajorCode>, <MinorCode>) to the lower driver "
"for device <DeviceId> with <Status>",
"Provider": "Microsoft-Windows-DriverFrameworks-UserMode",
"LifetimeId": "HostProcessId",
"InstanceId": "DeviceId",
"MajorCode": "MajorCode",
"MinorCode": "MinorCode",
"Status": "Status"},
2105: {"Descr": "Forwarded a Pnp or Power operation (<MajorCode>, <MinorCode>) for device <DeviceId> to the "
"lower driver with <Status>",
"Provider": "Microsoft-Windows-DriverFrameworks-UserMode",
"LifetimeId": "HostProcessId",
"InstanceId": "DeviceId",
"MajorCode": "MajorCode",
"MinorCode": "MinorCode",
"Status": "Status"}
}
fwall = { # Microsoft-Windows-Windows Firewall With Advanced Security/Firewall
2004: {"Descr": "A rule has been added to the Windows Firewall exception list",
"Provider": "Microsoft-Windows-Windows Firewall With Advanced Security",
"RuleId": "RuleId",
"RuleName": "RuleName",
"Origin": "+Origin",
"ApplicationPath": "AppPath",
"ServiceName": "ServiceName",
"Direction": "+Direction",
"Protocol": "+Protocol",
"LocalPorts": "TargetPort",
"RemotePorts": "RemotePorts",
"Action": "+Action",
"Profiles": "+Profiles",
"LocalAddresses": "TargetIP",
"EmbeddedContext": "EmbeddedContext",
"Active": "+Active",
"ModifyingUser": "SID",
"ModifyingApplication": "ProcessPath"},
2005: {"Descr": "A rule has been modified in the Windows Firewall exception list",
"Provider": "Microsoft-Windows-Windows Firewall With Advanced Security",
"RuleId": "RuleId",
"RuleName": "RuleName",
"Origin": "+Origin",
"ApplicationPath": "AppPath",
"ServiceName": "ServiceName",
"Direction": "+Direction",
"Protocol": "+Protocol",
"LocalPorts": "TargetPort",
"RemotePorts": "RemotePorts",
"Action": "+Action",
"Profiles": "+Profiles",
"LocalAddresses": "TargetIP",
"EmbeddedContext": "EmbeddedContext",
"Active": "+Active",
"ModifyingUser": "SID",
"ModifyingApplication": "ProcessPath"},
2006: {"Descr": "A rule has been deleted in the Windows Firewall exception list",
"Provider": "Microsoft-Windows-Windows Firewall With Advanced Security",
"RuleId": "RuleId",
"RuleName": "RuleName",
"ModifyingUser": "SID",
"ModifyingApplication": "ProcessPath"}
}
kernelpnp = { # Microsoft-Windows-Kernel-PnP/Configuration
400: {"Descr": "<DeviceInstanceId> was configured",
"Provider": "Microsoft-Windows-Kernel-PnP",
"DeviceInstanceId": "DeviceInstanceId",
"DriverName": "DriverName",
"ClassGuid": "+ClassGuid",
"DriverDate": "DriverDate",
"DriverVersion": "DriverVersion",
"DriverProvider": "DriverProvider",
"DriverInbox": "IsDriverInbox",
"DriverSection": "DriverSection",
"DeviceId": "DeviceId",
"OutrankedDrivers": "OutrankedDrivers",
"DeviceUpdated": "IsDeviceUpdated",
"Status": "Status",
"ParentDeviceInstanceId": "ParentDeviceInstanceId"},
410: {"Descr": "<DeviceInstanceId> was started",
"Provider": "Microsoft-Windows-Kernel-PnP",
"DeviceInstanceId": "DeviceInstanceId",
"DriverName": "DriverName",
"ClassGuid": "+ClassGuid",
"ServiceName": "ServiceName",
"LowerFilters": "LowerFilters",
"UpperFilters": "UpperFilters",
"Problem": "Problem",
"Status": "Status"},
430: {"Descr": "<DeviceInstanceId> requires further installation",
"Provider": "Microsoft-Windows-Kernel-PnP",
"DeviceInstanceId": "DeviceInstanceId"}
}
lsm = { # Microsoft-Windows-TerminalServices-LocalSessionManager/Operational
21: {"Descr": "Remote Desktop Services: Session logon succeeded",
"Provider": "Microsoft-Windows-TerminalServices-LocalSessionManager",
"User": "TargetUsername",
"SessionID": "TargetSessionId",
"Address": "IP"},
22: {"Descr": "Remote Desktop Services: Shell start notification received",
"Provider": "Microsoft-Windows-TerminalServices-LocalSessionManager",
"User": "TargetUsername",
"SessionID": "TargetSessionId",
"Address": "IP"},
23: {"Descr": "Remote Desktop Services: Session logoff succeeded",
"Provider": "Microsoft-Windows-TerminalServices-LocalSessionManager",
"User": "TargetUsername",
"SessionID": "TargetSessionId"},
24: {"Descr": "Remote Desktop Services: Session has been disconnected",
"Provider": "Microsoft-Windows-TerminalServices-LocalSessionManager",
"User": "TargetUsername",
"SessionID": "TargetSessionId",
"Address": "IP"},
25: {"Descr": "Remote Desktop Services: Session reconnection succeeded",
"Provider": "Microsoft-Windows-TerminalServices-LocalSessionManager",
"User": "TargetUsername",
"SessionID": "TargetSessionId",
"Address": "IP"},
39: {"Descr": "<TargetSessionId> has been disconnected by session <SessionId>",
"Provider": "Microsoft-Windows-TerminalServices-LocalSessionManager",
"TargetSession": "TargetSessionId",
"Source": "SessionId"},
40: {"Descr": "<TargetSessionId> has been disconnected, <Reason>",
"Provider": "Microsoft-Windows-TerminalServices-LocalSessionManager",
"Session": "TargetSessionId",
"Reason": "+Reason"},
41: {"Descr": "Begin session arbitration", # Win8.1+
"Provider": "Microsoft-Windows-TerminalServices-LocalSessionManager",
"User": "TargetUsername",
"SessionID": "TargetSessionId"}
}
networkp = { # Microsoft-Windows-NetworkProfile/Operational
10000: {"Descr": "Network connected",
"Provider": "Microsoft-Windows-NetworkProfile",
"Name": "ProfileName",
"Guid": "Guid",
"Type": "+Type",
"State": "State",
"Category": "Category"},
10001: {"Descr": "Network disconnected",
"Provider": "Microsoft-Windows-NetworkProfile",
"Name": "ProfileName",
"Guid": "Guid",
"Type": "+Type",
"State": "State",
"Category": "Category"},
10002: {"Descr": "Network category changed",
"Provider": "Microsoft-Windows-NetworkProfile",
"Name": "ProfileName",
"Guid": "Guid",
"Type": "+Type",
"State": "State",
"Category": "Category"},
}
ntfs = { # Microsoft-Windows-Ntfs/Operational
142: {"Descr": "Summary of disk space usage, since last event",
"Provider": "Microsoft-Windows-Ntfs",
"VolumeGuid": "VolumeGuid",
"VolumeName": "VolumeName",
"LowestFreeSpaceInBytes": "LowestFreeSpaceInBytes",
"HighestFreeSpaceInBytes": "HighestFreeSpaceInBytes",
"IsBootVolume": "IsBootVolume"},
145: {"Descr": "IO latency summary common data for volume",
"Provider": "Microsoft-Windows-Ntfs",
"VolumeCorrelationId": "VolumeGuid",
"VolumeName": "VolumeName",
"IsBootVolume": "IsBootVolume"},
151: {"Descr": "In the past <SecondsElapsed> seconds <TotalCountDeleteFile> files were deleted", # Win10 v2004+
"Provider": "Microsoft-Windows-Ntfs",
"VolumeCorrelationId": "VolumeGuid",
"VolumeName": "VolumeName",
"IsBootVolume": "IsBootVolume",
"SecondsElapsed": "SecondsElapsed",
"TotalCountDeleteFile": "TotalCountDeleteFile",
"TotalCountDeleteFileLogged": "TotalCountDeleteFileLogged",
"ProcessName": "ProcessName",
"CountDeleteFile": "CountDeleteFile"},
158: {"Descr": "IO latency summary common data for volume", # Win10 v2004+
"Provider": "Microsoft-Windows-Ntfs",
"VolumeCorrelationId": "VolumeGuid",
"VolumeName": "VolumeName",
"UserFileReads": "UserFileReads",
"UserFileReadBytes": "UserFileReadBytes",
"UserDiskReads": "UserDiskReads",
"UserFileWrites": "UserFileWrites",
"UserFileWriteBytes": "UserFileWriteBytes",
"UserDiskWrites": "UserDiskWrites"}
}
offlinef = { # Microsoft-Windows-OfflineFiles/Operational
7: {"Descr": "User logon detected: <Username> <Session>",
"Provider": "Microsoft-Windows-OfflineFiles",
"Account": "TargetUsername",
"Session": "TargetSessionId"},
8: {"Descr": "User logoff detected: <Username> <Session>",
"Provider": "Microsoft-Windows-OfflineFiles",
"Account": "TargetUsername",
"Session": "TargetSessionId"}
}
oalerts = { # OAlerts
300: {"Descr": "Microsoft Office Alert"}
}
partition = { # Microsoft-Windows-Partition/Diagnostic; Win10 v1709+
1006: {"Descr": "A device is connected or disconnected from the system",
"Provider": "Microsoft-Windows-Partition",
"Version": "Version", # removed in Win 10 v2004
"DiskNumber": "DiskNumber",
"Flags": "Flags",
"Characteristics": "Characteristics",
"BytesPerSector": "BytesPerSector",
"BytesPerLogicalSector": "BytesPerLogicalSector",
"BytesPerPhysicalSector": "BytesPerPhysicalSector",
"BytesOffsetForSectorAlignment": "BytesOffsetForSectorAlignment",
"Capacity": "Capacity",
"BusType": "+BusType",
"Manufacturer": "Vendor",
"Model": "Product",
"Revision": "ProductRevision",
"SerialNumber": "SerialNumber",
"Location": "Location",
"ParentId": "ParentId",
"DiskId": "DiskId",
"AdapterId": "AdapterId",
"RegistryId": "RegistryId",
"PoolId": "PoolId",
"StorageIdType": "+StorageIdType",
"StorageIdAssociation": "+StorageIdAssoc",
"StorageId": "StorageId",
"IsTrimSupported": "IsTrimSupported",
"IsThinProvisioned": "IsThinProvisioned",
"HybridSupported": "HybridSupported",
"HybridCacheBytes": "HybridCacheBytes",
"AdapterSerialNumber": "AdapterSerialNumber",
"UserRemovalPolicy": "UserRemovalPolicy",
"PartitionStyle": "+PartitionStyle",
"PartitionCount": "PartitionCount",
"PartitionTableBytes": "PartitionTableBytes",
"MbrBytes": "MbrBytes",
"Vbr0Bytes": "Vbr0Bytes",
"Vbr1Bytes": "Vbr1Bytes",
"Vbr2Bytes": "Vbr2Bytes",
"Vbr3Size": "Vbr3Bytes"}
}
printsvc = { # Microsoft-Windows-PrintService/Operational
307: {"Descr": "Spooler operation succeeded",
"Provider": "Microsoft-Windows-PrintService",
"param1": "JobId",
"param2": "JobName",
"param3": "DocumentOwner",
"param4": "Host",
"param5": "PrinterName",
"param6": "PrinterPort",
"param7": "Size",
"param8": "Pages"}
}
pshell1 = { # Windows PowerShell
400: {"Descr": "Engine state is changed from <PreviousEngineState> to <NewEngineState>"}, # start of session
403: {"Descr": "Engine state is changed from <PreviousEngineState> to <NewEngineState>"}, # end of session
500: {"Descr": "Command <CommandName> is <NewCommandState>"}, # start of execution
501: {"Descr": "Command <CommandName> is <NewCommandState>"}, # end of execution
600: {"Descr": "Provider <ProviderName> is <NewProviderState>"},
800: {"Descr": "Pipeline execution details for command line: <CommandLine>"}
}
pshell2 = { # Microsoft-Windows-PowerShell/Operational
4100: {"Descr": "<Payload> Context: <ContextInfo>", # Error executing script
"Provider": "Microsoft-Windows-PowerShell",
"ContextInfo": "ContextInfo",
"UserData": "UserData",
"Payload": "Payload"},
4103: {"Descr": "<Payload> Context: <ContextInfo>", # Module logging
"Provider": "Microsoft-Windows-PowerShell",
"ContextInfo": "ContextInfo",
"UserData": "UserData",
"Payload": "Payload"},
4104: {"Descr": "Creating Scriptblock text (<MessageNumber> of <MessageTotal>)", # Scriptblock module logging
"Provider": "Microsoft-Windows-PowerShell",
"MessageNumber": "MessageNumber",
"MessageTotal": "MessageTotal",
"ScriptBlockText": "ScriptBlockText",
"ScriptBlockId": "ScriptBlockId",
"Path": "Path"},
8193: {"Descr": "Creating Runspace object", # Session created
"Provider": "Microsoft-Windows-PowerShell",
"param1": "InstanceId"},
8194: {"Descr": "Creating RunspacePool object", # Session created
"Provider": "Microsoft-Windows-PowerShell",
"InstanceId": "InstanceId",
"MaxRunspaces": "MaxRunspaces",
"MinRunspaces": "MinRunspaces"},
8197: {"Descr": "Runspace state changed to <Status>", # Session status
"Provider": "Microsoft-Windows-PowerShell",
"param1": "Status"},
24577: {"Descr": "Windows PowerShell ISE has started to run script file %1",
"Provider": "Microsoft-Windows-PowerShell",
"FileName": "FileName"},
24578: {"Descr": "Windows PowerShell ISE has started to run a user-selected script from file %1",
"Provider": "Microsoft-Windows-PowerShell",
"FileName": "FileName"},
40961: {"Descr": "PowerShell console is starting up",
"Provider": "Microsoft-Windows-PowerShell"}, # empty
40962: {"Descr": "PowerShell console is ready for user input",
"Provider": "Microsoft-Windows-PowerShell"}, # empty
53504: {"Descr": "Windows PowerShell has started an IPC listening thread on <ProcessPath> in <AppDomain>",
"Provider": "Microsoft-Windows-PowerShell",
"param1": "ProcessId",
"param2": "AppDomain"}
}
rcm = { # Microsoft-Windows-TerminalServices-RemoteConnectionManager/Operational
261: {"Descr": "Listener <ListenerName> received a connection",
"Provider": "Microsoft-Windows-TerminalServices-RemoteConnectionManager",
"listenerName": "ListenerName"},
1149: {"Descr": "Remote Desktop Services: User authentication established",
"Provider": "Microsoft-Windows-TerminalServices-RemoteConnectionManager",
"Param1": "TargetUsername",
"Param2": "TargetDomain",
"Param3": "IP"}
}
rdpclient = { # Microsoft-Windows-TerminalServices-RDPClient/Operational
1024: {"Descr": "RDP ClientActiveX is trying to connect to <TargetHost>",
"Provider": "Microsoft-Windows-TerminalServices-ClientActiveXCore",
"Value": "TargetHost"},
1026: {"Descr": "RDP ClientActiveX has been disconnected: <Reason>",
"Provider": "Microsoft-Windows-TerminalServices-ClientActiveXCore",
"Value": "Reason"},
1027: {"Descr": "Connected to <TargetDomain> with <TargetSessionId>",
"Provider": "Microsoft-Windows-TerminalServices-ClientActiveXCore",
"DomainName": "TargetDomain",
"SessionID": "TargetSessionId"},
1029: {"Descr": "This event is raised during the connection process: Base64(SHA256(<TargetUsername))",
"Provider": "Microsoft-Windows-TerminalServices-ClientActiveXCore",
"TraceMessage": "TargetUsername"},
1102: {"Descr": "This event is raised during the connection process",
"Provider": "Microsoft-Windows-TerminalServices-ClientActiveXCore",
"Value": "TargetIP"}
}
rdpcorets = { # Microsoft-Windows-RemoteDesktopServices-RdpCoreTS/Operational
98: {"Descr": "A TCP connection has been successfully established",
"Provider": "Microsoft-Windows-RemoteDesktopServices-RdpCoreTS"},
131: {"Descr": "The server accepted a new <Protocol> connection from <IPPort>",
"Provider": "Microsoft-Windows-RemoteDesktopServices-RdpCoreTS",
"ConnType": "Protocol",
"ClientIP": "IPPort"},
148: {"Descr": "<ChannelName> has been closed between the server and the client on transport tunnel <TunnelID>",
"Provider": "Microsoft-Windows-RemoteDesktopServices-RdpCoreTS",
"ChannelName": "ChannelName",
"TunnelID": "TunnelID"}
}
scpnp = { # Microsoft-Windows-Storage-ClassPnP/Operational
507: {"Descr": "Completing a failed non-ReadWrite SCSI SRB request",
"Provider": "Microsoft-Windows-StorDiag",
"DeviceGUID": "DeviceGuid",
"DeviceNumber": "DeviceNumber",
"Vendor": "Vendor",
"Model": "Product",
"FirmwareVersion": "ProductRevision",
"SerialNumber": "SerialNumber"}
}
sch = { # Microsoft-Windows-TaskScheduler/Operational
100: {"Descr": "Task Scheduler started <TaskInstanceId> of the <TaskName> task for user <Username>",
"Provider": "Microsoft-Windows-TaskScheduler",
"TaskName": "TaskName",
"UserContext": "Username",
"InstanceId": "TaskInstanceId"},
101: {"Descr": "Task Scheduler failed to start <TaskName> task for user <Username>",
"Provider": "Microsoft-Windows-TaskScheduler",
"TaskName": "TaskName",
"UserContext": "Username",
"ResultCode": "ResultCode"},
102: {"Descr": "Task Scheduler successfully finished <TaskInstanceId> of the <TaskName> task for user <Username>",
"Provider": "Microsoft-Windows-TaskScheduler",
"TaskName": "TaskName",
"UserContext": "Username",
"InstanceId": "TaskInstanceId"},
106: {"Descr": "<Username> registered Task Scheduler <TaskName>",
"Provider": "Microsoft-Windows-TaskScheduler",
"TaskName": "TaskName",
"UserContext": "Username"},
118: {"Descr": "Task Scheduler launched <TaskInstanceId> of <TaskName> due to system startup",
"Provider": "Microsoft-Windows-TaskScheduler",
"TaskName": "TaskName",
"InstanceId": "TaskInstanceId"},
119: {"Descr": "Task Scheduler launched <TaskInstanceId of <TaskName> due to <Username> logon",
"Provider": "Microsoft-Windows-TaskScheduler",
"TaskName": "TaskName",
"UserName": "Username",
"InstanceId": "TaskInstanceId"},
129: {"Descr": "Task Scheduler launch task <TaskName>, instance <ProcessPath> with process ID <ProcessId>",
"Provider": "Microsoft-Windows-TaskScheduler",
"TaskName": "TaskName",
"Path": "ProcessPath",
"ProcessID": "ProcessId",
"Priority": "ProcessPriority"},
140: {"Descr": "<Username> updated Task Scheduler <TaskName>",
"Provider": "Microsoft-Windows-TaskScheduler",
"TaskName": "TaskName",
"UserName": "Username"},
141: {"Descr": "<Username> deleted Task Scheduler <TaskName>",
"Provider": "Microsoft-Windows-TaskScheduler",
"TaskName": "TaskName",
"UserName": "Username"},
}
shell = { # Microsoft-Windows-Shell-Core/Operational
9707: {"Descr": "Started execution of <Command>", # from Run/RunOnce
"Provider": "Microsoft-Windows-Shell-Core",
"Command": "Command"},
9708: {"Descr": "Finished execution of <Command> (PID <ProcessPid>)", # from Run/RunOnce
"Provider": "Microsoft-Windows-Shell-Core",
"Command": "Command",
"PID": "ProcessId"},
28115: {"Descr": "Shortcut for <AppName> with <AppID> and <Flags> is added to app resolver cache",
"Provider": "Microsoft-Windows-Shell-Core",
"Name": "AppName",
"AppID": "AppID",
"Flags": "Flags"}
}
smbclient = { # Microsoft-Windows-SmbClient/Security
31001: {"Descr": "Failed logon to <ServerName>",
"Provider": "Microsoft-Windows-SmbClient",
"Reason": "Reason",
"Status": "Status",
"SecurityStatus": "SecurityStatus",
"TargetLogonId": "TargetLogonId",
"UserName": "TargetUsername",
"ServerName": "TargetHost",
"PrincipalName": "PrincipalName"}, # TODO - change to SPN?
31010: {"Descr": "The SMB client failed to connect to the share.",
"Provider": "Microsoft-Windows-SmbClient",
"Reason": "Reason",
"Status": "Status",
"ShareName": "ShareName",
"ObjectName": "ObjectName"}
}
smbserver1 = { # Microsoft-Windows-SMBServer/Analytic
551: {"Descr": "Smb Session Authentication Failure",
"Provider": "Microsoft-Windows-SMBServer",
"SessionGUID": "SessionGuid",
"ConnectionGUID": "ConnectionGuid",
"Status": "Status"},
552: {"Descr": "SMB2 Session Authentication Success",
"Provider": "Microsoft-Windows-SMBServer",
"SessionGUID": "SessionGuid",
"ConnectionGUID": "ConnectionGuid",
"UserName": "TargetUsername",
"DomainName": "TargetDomain"},
553: {"Descr": "SMB2 Session Bound to Connection",
"Provider": "Microsoft-Windows-SMBServer",
"SessionGUID": "SessionGuid",
"ConnectionGUID": "ConnectionGuid",
"BindingSessionGUID": "BindingSessionGuid"},
554: {"Descr": "Session Terminated",
"Provider": "Microsoft-Windows-SMBServer",
"SessionGUID": "SessionGuid",
"Reason": "Reason"},
600: {"Descr": "SMB2 TreeConnect Allocated",
"Provider": "Microsoft-Windows-SMBServer",
"TreeConnectGUID": "TreeConnectGuid",
"SessionGUID": "SessionGuid",
"ConnectionGUID": "ConnectionGuid",
"ShareGUID": "ShareGuid",
"ShareName": "ShareName",
"ScopeName": "ScopeName",
"ShareProperties": "ShareProperties"},
601: {"Descr": "SMB2 TreeConnect Disconnected",
"Provider": "Microsoft-Windows-SMBServer",
"TreeConnectGUID": "TreeConnectGuid",
"SessionGUID": "SessionGuid",
"ConnectionGUID": "ConnectionGuid"},
602: {"Descr": "SMB2 TreeConnect Terminated",
"Provider": "Microsoft-Windows-SMBServer",
"TreeConnectGUID": "TreeConnectGuid",
"SessionGUID": "SessionGuid"},
700: {"Descr": "SMB2 Share Added",
"Provider": "Microsoft-Windows-SMBServer",
"ShareName": "ShareName",
"ServerName": "ServerName",
"PathName": "PathName",
"CSCState": "CSCState",
"ClusterShareType": "ClusterShareType",
"ShareProperties": "ShareProperties",
"CaTimeOut": "CaTimeOut",
"ShareState": "ShareState"},
701: {"Descr": "SMB2 Share Modified",
"Provider": "Microsoft-Windows-SMBServer",
"ShareName": "ShareName",
"ServerName": "ServerName",
"PathName": "PathName",
"CSCState": "CSCState",
"ClusterShareType": "ClusterShareType",
"ShareProperties": "ShareProperties",
"CaTimeOut": "CaTimeOut",
"ShareState": "ShareState"},
702: {"Descr": "SMB2 Share Deleted",
"Provider": "Microsoft-Windows-SMBServer",
"ShareName": "ShareName",
"ServerName": "ServerName"}
}
smbserver2 = { # Microsoft-Windows-SMBServer/Auditr
3000: {"Descr": "SMB1 access",
"Provider": "Microsoft-Windows-SMBServer",
"ClientName": "ClientName"}
}
smbserver3 = { # Microsoft-Windows-SMBServer/Connectivity
1022: {"Descr": "File and printer sharing firewall rule enabled",
"Provider": "Microsoft-Windows-SMBServer"}
}
smbserver4 = { # Microsoft-Windows-SMBServer/Operational
1023: {"Descr": "One or more shares present on this server have access based enumeration enabled",
"Provider": "Microsoft-Windows-SMBServer"},
1024: {"Descr": "SMB2 and SMB3 have been disabled on this server",
"Provider": "Microsoft-Windows-SMBServer"},
1025: {"Descr": "One or more named pipes or shares have been marked for access by anonymous users",
"Provider": "Microsoft-Windows-SMBServer"}
}
smbserver5 = { # Microsoft-Windows-SMBServer/Security
551: {"Descr": "SMB session authentication failure",
"Provider": "Microsoft-Windows-SMBServer",
"SessionGUID": "SessionGuid",
"ConnectionGUID": "ConnectionGuid",
"Status": "Status",
"TranslatedStatus": "TranslatedStatus",
"ClientAddress": "ClientAddress",
"SessionId": "SessionId",
"UserName": "Username",
"ClientName": "ClientName"},
1006: {"Descr": "The share denied access to the client",
"Provider": "Microsoft-Windows-SMBServer",
"ShareName": "ShareName",
"SharePath": "SharePath",
"ClientAddress": "ClientAddress",
"UserName": "Username",
"ClientName": "ClientName",
"MappedAccess": "MappedAccess",
"GrantedAccess": "GrantedAccess",
"ShareSecurityDescriptor": "ShareSecurityDescriptor",
"Status": "Status",
"TranslatedStatus": "TranslatedStatus",
"SessionID": "SessionID"},
1007: {"Descr": "The share denied anonymous access to the client",
"Provider": "Microsoft-Windows-SMBServer",
"ShareName": "ShareName",
"SharePath": "SharePath",
"ClientAddress": "ClientAddress",
"ClientName": "ClientName"},
1009: {"Descr": "The share denied anonymous access to the client",
"Provider": "Microsoft-Windows-SMBServer",
"ClientAddress": "ClientAddress",
"ClientName": "ClientName",
"SessionID": "SessionId",
"SessionGUID": "SessionGuid",
"ConnectionGUID": "ConnectionGuid"},
1021: {"Descr": "LmCompatibilityLevel value is different from the default",
"Provider": "Microsoft-Windows-SMBServer",
"ConfiguredLmCompatibilityLevel": "+ConfiguredLmCompatibilityLevel",
"DefaultLmCompatibilityLevel": "+DefaultLmCompatibilityLevel"}
}
storspaces = { # Microsoft-Windows-StorageSpaces-Driver/Operational
207: {"Descr": "Physical disk <DriveId> arrived", # Win 10 v2004+
"Provider": "Microsoft-Windows-StorageSpaces-Driver",
"DriveId": "DiskId",
"PoolId": "PoolId",
"DeviceNumber": "DiskNumber",
"DriveManufacturer": "Vendor",
"DriveModel": "Product",
"DriveSerial": "SerialNumber"}
}
storsvc = { # Microsoft-Windows-Storsvc/Diagnostic
1001: {"Descr": "NIL",
"Provider": "Microsoft-Windows-Storsvc",
"Version": "Version",
"DiskNumber": "DiskNumber",
"VendorId": "Vendor",
"ProductId": "Product",
"ProductRevision": "ProductRevision",
"SerialNumber": "SerialNumber",
"ParentId": "ParentId",
"FileSystem": "FileSystem",
"BusType": "+BusType",
"PartitionStyle": "+PartitionStyle",
"VolumeCount": "VolumeCount",
"ContainsRawVolumes": "ContainsRawVolumes",
"Size": "Capacity"},
# Provider: Microsoft-Windows-Storsvc
1002: {"Descr": "NIL",
"Provider": "Microsoft-Windows-Storsvc",
"Version": "Version",
"Epoch": "Epoch",
"DiskIndex": "DiskIndex",
"TotalDisks": "TotalDisks",
"DiskNumber": "DiskNumber",
"VendorId": "Vendor",
"ProductId": "Product",
"ProductRevision": "ProductRevision",
"SerialNumber": "SerialNumber",
"ParentId": "ParentId",
"FileSystem": "FileSystem",
"BusType": "+BusType",
"PartitionStyle": "+PartitionStyle",
"VolumeCount": "VolumeCount",
"ContainsRawVolumes": "ContainsRawVolumes",
"Size": "Capacity"}
}
symantec = { # Symantec Endpoint Protection Client
51: {"Descr": "Detection Finish"} # TODO
}
wdef = { # Microsoft-Windows-Windows Defender/Operational
1006: {"Descr": "<ProductName> has detected malware or other potentially unwanted software",
"Provider": "Microsoft-Windows-Windows Defender",
"Product Name": "ProductName",
"Product Version": "ProductVersion",
"Detection ID": "DetectionId",
"Detection Source": "Source",
"Process Name": "ProcessPath",
"Domain": "Domain",
"User": "Username",
"SID": "SID",
"Threat ID": "ThreatId",
"Threat Name": "Threat",
"Severity Name": "Severity",
"Category Name": "Category",
"FWLink": "Link",
"Path Found": "Path",
"Detection Origin": "Origin",
"Execution Status": "ExecutionStatus",
"Detection Type": "Type",
"Signature Version": "SignatureVersion",
"Engine Version": "EngineVersion"},
1007: {"Descr": "<ProductName> has taken action to protect this machine from malware or "
"other potentially unwanted software",
"Provider": "Microsoft-Windows-Windows Defender",
"Product Name": "ProductName",
"Product Version": "ProductVersion",
"Detection ID": "DetectionId",
"Status Description": "Status",
"Domain": "Domain",
"User": "Username",
"SID": "SID",
"Threat ID": "ThreatId",
"Threat Name": "Threat",
"Severity Name": "Severity",
"Category Name": "Category",
"FWLink": "Link",
"Path": "Path",
"Cleaning Action": "Cleaning Action",
"Signature Version": "SignatureVersion",
"Engine Version": "EngineVersion"},
1008: {"Descr": "<ProductName> has encountered an error when taking action on malware or "
"other potentially unwanted software",
"Provider": "Microsoft-Windows-Windows Defender",
"Product Name": "ProductName",
"Product Version": "ProductVersion",
"Detection ID": "DetectionId",
"Status Description": "Status",
"Domain": "Domain",
"User": "Username",
"SID": "SID",
"Threat ID": "ThreatId",
"Threat Name": "Threat",
"Severity Name": "Severity",
"Category Name": "Category",
"FWLink": "Link",
"Path": "Path",
"Error Code": "ErrorCode",
"Error Description": "Error",
"Signature Version": "SignatureVersion",
"Engine Version": "EngineVersion"},
1009: {"Descr": "<ProductName> has restored an item from quarantine",
"Provider": "Microsoft-Windows-Windows Defender",
"Product Name": "ProductName",
"Product Version": "ProductVersion",
"Domain": "Domain",
"User": "Username",
"SID": "SID",
"Threat ID": "ThreatId",
"Threat Name": "Threat",
"Severity Name": "Severity",
"Category Name": "Category",
"FWLink": "Link",
"Path": "Path",
"Signature Version": "SignatureVersion",
"Engine Version": "EngineVersion"},
1010: {"Descr": "<ProductName> has encountered an error trying to restore an item from quarantine",
"Provider": "Microsoft-Windows-Windows Defender",
"Product Name": "ProductName",
"Product Version": "ProductVersion",
"Error Code": "ErrorCode",
"Error Description": "Error",
"Domain": "Domain",
"User": "Username",
"SID": "SID",
"Threat ID": "ThreatId",
"Threat Name": "Threat",
"Severity Name": "Severity",
"Category Name": "Category",
"FWLink": "Link",
"Path": "Path",
"Signature Version": "SignatureVersion",
"Engine Version": "EngineVersion"},
1011: {"Descr": "<ProductName> has deleted an item from quarantine",
"Provider": "Microsoft-Windows-Windows Defender",
"Product Name": "ProductName",
"Product Version": "ProductVersion",
"Domain": "Domain",
"User": "Username",
"SID": "SID",
"Threat ID": "ThreatId",
"Threat Name": "Threat",
"Severity Name": "Severity",
"Category Name": "Category",
"FWLink": "Link",
"Path": "Path",
"Signature Version": "SignatureVersion",
"Engine Version": "EngineVersion"},
1012: {"Descr": "<ProductName> has encountered an error trying to restore an item from quarantine",
"Provider": "Microsoft-Windows-Windows Defender",
"Product Name": "ProductName",
"Product Version": "ProductVersion",
"Error Code": "ErrorCode",
"Error Description": "Error",
"Domain": "Domain",
"User": "Username",
"SID": "SID",
"Threat ID": "ThreatId",
"Threat Name": "Threat",
"Severity Name": "Severity",
"Category Name": "Category",
"FWLink": "Link",
"Path": "Path",
"Signature Version": "SignatureVersion",
"Engine Version": "EngineVersion"},
1015: {"Descr": "<ProductName> has detected a suspicious behavior",
"Provider": "Microsoft-Windows-Windows Defender",
"Product Name": "ProductName",
"Product Version": "ProductVersion",
"Detection ID": "DetectionId",
"Detection Source": "Source",
"Process Name": "ProcessPath",
"Domain": "Domain",
"User": "Username",
"SID": "SID",
"Threat ID": "ThreatId",
"Threat Name": "Threat",
"Severity Name": "Severity",
"Category Name": "Category",
"FWLink": "Link",
"Path Found": "Path",
"Detection Origin": "Origin",
"Execution Status": "ExecutionStatus",
"Detection Type": "Type",
"Signature Version": "SignatureVersion",
"Engine Version": "EngineVersion",
"Process ID": "ProcessId",
"Signature ID": "SignatureId",
"FidelityValue": "FidelityValue",
"FidelityLabel": "FidelityLabel",
"Image File Hash": "ImageFileHash",
"TargetFileName": "TargetFileName",
"TargetFileHash": "TargetFileHash"},
1116: {"Descr": "<ProductName> has detected malware or other potentially unwanted software",
"Provider": "Microsoft-Windows-Windows Defender",
"Product Name": "ProductName",
"Product Version": "ProductVersion",
"Detection ID": "DetectionId",
"Detection Time": "DetectionTime",
"Threat Name": "Threat",
"Severity Name": "Severity",
"Category Name": "Category",
"FWLink": "Link",
"Status Description": "Status",
"Source Name": "Source",
"Process Name": "ProcessPath",
"Detection User": "DetectionUser",
"Path": "Path",
"Origin Name": "Origin",
"Execution Name": "Execution",
"Type Name": "Type",
"Action Name": "Action",
"Error Code": "ErrorCode",
"Error Description": "Error",
"Post Clean Status": "PostCleanStatus",
"Additional Actions String": "AdditionalActions",
"Remediation User": "RemediationUser",
"Signature Version": "SignatureVersion",
"Engine Version": "EngineVersion"},
1117: {"Descr": "<ProductName> has taken action to protect this machine from malware or "
"other potentially unwanted software",
"Provider": "Microsoft-Windows-Windows Defender",
"Product Name": "ProductName",
"Product Version": "ProductVersion",
"Detection ID": "DetectionId",
"Detection Time": "DetectionTime",
"Threat Name": "Threat",
"Severity Name": "Severity",
"Category Name": "Category",
"FWLink": "Link",
"Status Description": "Status",
"Source Name": "Source",
"Process Name": "ProcessPath",
"Detection User": "DetectionUser",
"Path": "Path",
"Origin Name": "Origin",
"Execution Name": "Execution",
"Type Name": "Type",
"Action Name": "Action",
"Error Code": "ErrorCode",
"Error Description": "Error",
"Post Clean Status": "PostCleanStatus",
"Additional Actions String": "AdditionalActions",
"Remediation User": "RemediationUser",
"Signature Version": "SignatureVersion",
"Engine Version": "EngineVersion"},
1118: {"Descr": "<ProductName> has encountered a non-critical error when taking action on malware or "
"other potentially unwanted software",
"Provider": "Microsoft-Windows-Windows Defender",
"Product Name": "ProductName",
"Product Version": "ProductVersion",
"Detection ID": "DetectionId",
"Detection Time": "DetectionTime",
"Threat Name": "Threat",
"Severity Name": "Severity",
"Category Name": "Category",
"FWLink": "Link",
"Status Description": "Status",
"Source Name": "Source",
"Process Name": "ProcessPath",
"Detection User": "DetectionUser",
"Path": "Path",
"Origin Name": "Origin",
"Execution Name": "Execution",
"Type Name": "Type",
"Action Name": "Action",
"Error Code": "ErrorCode",
"Error Description": "Error",
"Post Clean Status": "PostCleanStatus",
"Additional Actions String": "AdditionalActions",
"Remediation User": "RemediationUser",
"Signature Version": "SignatureVersion",
"Engine Version": "EngineVersion"},
1119: {"Descr": "<ProductName> has encountered a critical error when taking action on malware or "
"other potentially unwanted software",
"Provider": "Microsoft-Windows-Windows Defender",
"Product Name": "ProductName",
"Product Version": "ProductVersion",
"Detection ID": "DetectionId",
"Detection Time": "DetectionTime",
"Threat Name": "Threat",
"Severity Name": "Severity",
"Category Name": "Category",
"FWLink": "Link",
"Status Description": "Status",
"Source Name": "Source",
"Process Name": "ProcessPath",
"Detection User": "DetectionUser",
"Path": "Path",
"Origin Name": "Origin",
"Execution Name": "Execution",
"Type Name": "Type",
"Action Name": "Action",
"Error Code": "ErrorCode",
"Error Description": "Error",
"Post Clean Status": "PostCleanStatus",
"Additional Actions String": "AdditionalActions",
"Remediation User": "RemediationUser",
"Signature Version": "SignatureVersion",
"Engine Version": "EngineVersion"},
1160: {"Descr": "<ProductName has detected potentially unwanted application (PUA)",
"Provider": "Microsoft-Windows-Windows Defender",
"Product Name": "ProductName",
"Product Version": "ProductVersion",
"Detection ID": "DetectionId",
"Detection Time": "DetectionTime",
"Threat Name": "Threat",
"Severity Name": "Severity",
"Category Name": "Category",
"FWLink": "Link",
"Status Description": "Status",
"Source Name": "Source",
"Process Name": "ProcessPath",
"Detection User": "DetectionUser",
"Path": "Path",
"Origin Name": "Origin",
"Execution Name": "Execution",
"Type Name": "Type",
"Action Name": "Action",
"Error Code": "ErrorCode",
"Error Description": "Error",
"Post Clean Status": "PostCleanStatus",
"Additional Actions String": "AdditionalActions",
"Remediation User": "RemediationUser",
"Signature Version": "SignatureVersion",
"Engine Version": "EngineVersion"},
2050: {"Descr": "<ProductName> has uploaded a file for further analysis",
"Provider": "Microsoft-Windows-Windows Defender",
"Product Name": "ProductName",
"Product Version": "ProductVersion",
"Filename": "FileName",
"Sha256": "FileHash"},
2051: {"Descr": "<ProductName> has encountered an error trying to upload a suspicious file for further analysis",
"Provider": "Microsoft-Windows-Windows Defender",
"Product Name": "ProductName",
"Product Version": "ProductVersion",
"Filename": "FileName",
"Sha256": "FileHash",
"Signature Version": "SignatureVersion",
"Engine Version": "EngineVersion",
"Error Code": "ErrorCode"},
3002: {"Descr": "<ProductName> Real-Time Protection feature has encountered an error and failed",
"Provider": "Microsoft-Windows-Windows Defender",
"Product Name": "ProductName",
"Product Version": "ProductVersion",
"Feature Name": "Feature",
"Reason": "Reason",
"Error Code": "ErrorCode",
"Error Description": "ErrorDescr",
"Feature ID": "FeatureId"},
3007: {"Descr": "<ProductName> Real-time Protection feature has restarted",
"Provider": "Microsoft-Windows-Windows Defender",
"Product Name": "ProductName",
"Product Version": "ProductVersion",
"Feature Name": "Feature",
"Reason": "Reason",
"Feature ID": "FeatureId"},
5000: {"Descr": "<ProductName> Real-time Protection scanning for malware and "
"other potentially unwanted software was enabled",
"Provider": "Microsoft-Windows-Windows Defender",
"Product Name": "ProductName",
"Product Version": "ProductVersion"},
5001: {"Descr": "<ProductName> Real-time Protection scanning for malware and "
"other potentially unwanted software was disabled",
"Provider": "Microsoft-Windows-Windows Defender",
"Product Name": "ProductName",
"Product Version": "ProductVersion"},
5004: {"Descr": "<ProductName> Real-time Protection feature configuration has changed",
"Provider": "Microsoft-Windows-Windows Defender",
"Product Name": "ProductName",
"Product Version": "ProductVersion",
"Feature Name": "Feature",
"Feature ID": "FeatureId"},
5007: {"Descr": "<ProductName> Configuration has changed. "
"If this is unexpected, you should review the settings as this may be the result of malware",
"Provider": "Microsoft-Windows-Windows Defender",
"Product Name": "ProductName",
"Product Version": "ProductVersion",
"Old Value": "OldValue",
"New Value": "NewValue"},
5008: {"Descr": "<ProductName> engine has been terminated due to an unexpected error",
"Provider": "Microsoft-Windows-Windows Defender",
"Product Name": "ProductName",
"Product Version": "ProductVersion",
"Resource": "Resource",
"Failure Type": "FailureType",
"Exception Code": "ExceptionCode"},
5009: {"Descr": "<ProductName> scanning for spyware and other potentially unwanted software has been enabled",
"Provider": "Microsoft-Windows-Windows Defender",
"Product Name": "ProductName",
"Product Version": "ProductVersion"},
5010: {"Descr": "<ProductName> scanning for spyware and other potentially unwanted software is disabled",
"Provider": "Microsoft-Windows-Windows Defender",
"Product Name": "ProductName",
"Product Version": "ProductVersion"},
5011: {"Descr": "<ProductName> scanning for viruses has been enabled",
"Provider": "Microsoft-Windows-Windows Defender",
"Product Name": "ProductName",
"Product Version": "ProductVersion"},
5012: {"Descr": "<ProductName> scanning for viruses is disabled",
"Provider": "Microsoft-Windows-Windows Defender",
"Product Name": "ProductName",
"Product Version": "ProductVersion"},
5013: {"Descr": "Tamper Protection <ChangedType> to <Value>", # Win10 v2004+
"Provider": "Microsoft-Windows-Windows Defender",
"Product Name": "ProductName",
"Product Version": "ProductVersion",
"Changed Type": "ChangedType",
"Value": "Value"}
}
winrm = { # Microsoft-Windows-WinRM/Operational
6: {"Descr": "Creating WSMan session. The connection string is <Connection>",
"Provider": "Microsoft-Windows-WinRM",
"connection": "Connection"},
8: {"Descr": "Closing WSMan session",
"Provider": "Microsoft-Windows-WinRM"}, # empty
15: {"Descr": "Closing WSMan command",
"Provider": "Microsoft-Windows-WinRM"}, # empty
16: {"Descr": "Closing WSMan shell",
"Provider": "Microsoft-Windows-WinRM"}, # empty
33: {"Descr": "Closing WSMan session completed successfully",
"Provider": "Microsoft-Windows-WinRM"}, # empty
91: {"Descr": "Creating WSMan shell on server with <ResourceUri>",
"Provider": "Microsoft-Windows-WinRM",
"resourceUri": "ResourceUri",
"shellId": "ShellId"},
169: {"Descr": "<TargetUsername> authenticated successfully using <AuthMechanism>", # Win7 only?
"Provider": "Microsoft-Windows-WinRM",
"username": "TargetUsername",
"authenticationMechanism": "AuthMechanism"}
}
wlan = { # Microsoft-Windows-WLAN-AutoConfig/Operational
8001: {"Descr": "WLAN AutoConfig service has successfully connected to a wireless network",
"Provider": "Microsoft-Windows-WLAN-AutoConfig",
"InterfaceGuid": "InterfaceGuid",
"InterfaceDescription": "InterfaceDescr",
"ConnectionMode": "ConnectionMode",
"ProfileName": "ProfileName",
"SSID": "SSID",
"BSSType": "BSSType",
"PHYType": "PHYType",
"AuthenticationAlgorithm": "AuthAlgo",
"CipherAlgorithm": "CipherAlgo",
"OnexEnabled": "IsOnexEnabled",
"ConnectionId": "ConnectionId",
"NonBroadcast": "IsNonBroadcast"},
8002: {"Descr": "WLAN AutoConfig service failed to connect to a wireless network",
"Provider": "Microsoft-Windows-WLAN-AutoConfig",
"InterfaceGuid": "InterfaceGuid",
"InterfaceDescription": "InterfaceDescr",
"ConnectionMode": "ConnectionMode",
"ProfileName": "ProfileName",
"SSID": "SSID",
"BSSType": "BSSType",
"FailureReason": "FailureReason",
"ReasonCode": "ReasonCode",
"ConnectionId": "ConnectionId",
"RSSI": "RSSI"},
8003: {"Descr": "WLAN AutoConfig service has successfully disconnected from a wireless network",
"Provider": "Microsoft-Windows-WLAN-AutoConfig",
"InterfaceGuid": "InterfaceGuid",
"InterfaceDescription": "InterfaceDescr",
"ConnectionMode": "ConnectionMode",
"ProfileName": "ProfileName",
"SSID": "SSID",
"BSSType": "BSSType",
"Reason": "Reason",
"ConnectionId": "ConnectionId",
"ReasonCode": "ReasonCode"},
11000: {"Descr": "Wireless network association started",
"Provider": "Microsoft-Windows-WLAN-AutoConfig",
"DeviceGuid": "InterfaceGuid",
"Adapter": "InterfaceDescr",
"LocalMac": "LocalMac",
"SSID": "SSID",
"BSSType": "BSSType",
"Auth": "AuthAlgo",
"Cipher": "CipherAlgo",
"OnexEnabled": "IsOnexEnabled",
"ConnectionId": "ConnectionId",
"IhvConnectivitySetting": "IhvConnectivitySetting"},
11001: {"Descr": "Wireless network association succeeded",
"Provider": "Microsoft-Windows-WLAN-AutoConfig",
"DeviceGuid": "InterfaceGuid",
"Adapter": "InterfaceDescr",
"LocalMac": "LocalMac",
"SSID": "SSID",
"BSSType": "BSSType",
"ConnectionId": "ConnectionId",
"MgmtFrameProtection": "MgmtFrameProtection"},
11002: {"Descr": "Wireless network association failed",
"Provider": "Microsoft-Windows-WLAN-AutoConfig",
"DeviceGuid": "InterfaceGuid",
"Adapter": "InterfaceDescr",
"LocalMac": "LocalMac",
"SSID": "SSID",
"BSSType": "BSSType",
"FailureReason": "FailureReason",
"ReasonCode": "ReasonCode",
"Dot11StatusCode": "Dot11StatusCode",
"ConnectionId": "ConnectionId",
"RSSI": "RSSI"}
}
wmi = { # Microsoft-Windows-WMI-Activity/Operational (Win8+)
5857: {"Descr": "<ProviderName> started with <ResultCode>", # wmiprvse execution
"ProviderName": "ProviderName",
"Code": "ResultCode",
"HostProcess": "ProcessName",
"ProcessID": "ProcessID",
"ProviderPath": "ProviderPath"},
5858: {"Descr": "WMI execution error",
"Provider": "Microsoft-Windows-WMI-Activity",
"ClientMachine": "Hostname",
"User": "Username",
"ClientProcessId": "ProcessId",
"Component": "Component",
"Operation": "Operation",
"ResultCode": "ResultCode",
"PossibleCause": "PossibleCause"},
5860: {"Descr": "Registration of temporary event consumer", # Win10 v1511+
"Provider": "Microsoft-Windows-WMI-Activity",
"NamespaceName": "Namespace",
"Query": "Query",
"User": "Username",
"processid": "ProcessId", # < Win10 v1803
"Processid": "ProcessId", # Win10 v1803+
"MachineName": "Hostname", # < Win10 v1803
"ClientMachine": "Hostname", # Win10 v1803+
"PossibleCause": "PossibleCause"},
5861: {"Descr": "Registration of permanent event consumer", # Win10 v1607+
"Provider": "Microsoft-Windows-WMI-Activity",
"Namespace": "Namespace",
"ESS": "ESS",
"CONSUMER": "Consumer",
"PossibleCause": "PossibleCause"}
}
| sec = {1102: {'Descr': 'The audit log was cleared', 'Provider': 'Microsoft-Windows-Eventlog', 'SubjectUserSid': 'SID', 'SubjectUserName': 'Username', 'SubjectDomainName': 'Domain', 'SubjectLogonId': 'LogonId'}, 4616: {'Descr': 'The system time was changed', 'Provider': 'Microsoft-Windows-Security-Auditing', 'SubjectUserSid': 'SID', 'SubjectUserName': 'Username', 'SubjectDomainName': 'Domain', 'SubjectLogonId': 'LogonId', 'PreviousTime': 'PreviousTime', 'NewTime': 'NewTime', 'ProcessId': 'ProcessId', 'ProcessName': 'ProcessPath'}, 4624: {'Descr': 'An account was successfully logged on', 'Provider': 'Microsoft-Windows-Security-Auditing', 'SubjectUserSid': 'SID', 'SubjectUserName': 'Username', 'SubjectDomainName': 'Domain', 'SubjectLogonId': 'LogonId', 'TargetUserSid': 'TargetSID', 'TargetUserName': 'TargetUsername', 'TargetDomainName': 'TargetDomain', 'TargetLogonId': 'TargetLogonId', 'LogonType': '+LogonType', 'WorkstationName': 'WorkstationName', 'LogonGuid': 'LogonGUID', 'TransmittedServices': 'TransmittedServices', 'IpAddress': 'IP', 'IpPort': 'Port', 'ProcessId': 'ProcessId', 'ProcessName': 'ProcessPath', 'AuthenticationPackageName': 'AuthenticationPackage', 'LogonProcessName': 'LogonProcess', 'KeyLength': 'KeyLength', 'RestrictedAdminMode': 'RestrictedAdminMode', 'ElevatedToken': 'ElevatedToken', 'TargetOutboundUserName': 'TargetOutboundUsername', 'TargetOutboundDomainName': 'TargetOutboundDomain'}, 4625: {'Descr': 'An account failed to log on', 'Provider': 'Microsoft-Windows-Security-Auditing', 'SubjectUserSid': 'SID', 'SubjectUserName': 'Username', 'SubjectDomainName': 'Domain', 'SubjectLogonId': 'LogonId', 'TargetUserSid': 'TargetSID', 'TargetUserName': 'TargetUsername', 'TargetDomainName': 'TargetDomain', 'LogonType': '+LogonType', 'WorkstationName': 'WorkstationName', 'IpAddress': 'IP', 'IpPort': 'Port', 'LogonProcessName': 'LogonProcessName', 'Status': '+Status', 'FailureReason': 'FailureReason', 'SubStatus': 'SubStatus', 'ProcessId': 'ProcessId', 'ProcessName': 'ProcessPath'}, 4627: {'Descr': 'Group membership information', 'Provider': 'Microsoft-Windows-Security-Auditing', 'SubjectUserSid': 'SID', 'SubjectUserName': 'Username', 'SubjectDomainName': 'Domain', 'SubjectLogonId': 'LogonId', 'TargetUserSid': 'TargetSID', 'TargetUserName': 'TargetUsername', 'TargetDomainName': 'TargetDomain', 'LogonType': '+LogonType', 'GroupMembership': 'GroupMembership'}, 4634: {'Descr': 'An account was logged off', 'Provider': 'Microsoft-Windows-Security-Auditing', 'TargetUserSid': 'TargetSID', 'TargetUserName': 'TargetUsername', 'TargetDomainName': 'TargetDomain', 'TargetLogonId': 'TargetLogonId', 'LogonType': '+LogonType'}, 4647: {'Descr': 'User initiated logoff', 'Provider': 'Microsoft-Windows-Security-Auditing', 'TargetUserSid': 'TargetSID', 'TargetUserName': 'TargetUsername', 'TargetDomainName': 'TargetDomain', 'TargetLogonId': 'TargetLogonId'}, 4648: {'Descr': 'A logon was attempted using explicit credentials', 'Provider': 'Microsoft-Windows-Security-Auditing', 'SubjectUserSid': 'SID', 'SubjectUserName': 'Username', 'SubjectDomainName': 'Domain', 'SubjectLogonId': 'LogonId', 'LogonGuid': 'LogonGUID', 'TargetUserName': 'TargetUsername', 'TargetDomainName': 'TargetDomain', 'TargetLogonGuid': 'TargetLogonGuid', 'TargetServerName': 'TargetServerName', 'TargetInfo': 'TargetInfo', 'IpAddress': 'IP', 'IpPort': 'Port', 'ProcessId': 'ProcessId', 'ProcessName': 'ProcessPath'}, 4657: {'Descr': 'A registry value was modified', 'Provider': 'Microsoft-Windows-Security-Auditing', 'SubjectUserSid': 'SID', 'SubjectUserName': 'Username', 'SubjectDomainName': 'Domain', 'SubjectLogonId': 'LogonId', 'ObjectName': 'RegKey', 'ObjectValueName': 'RegValue', 'OperationType': 'OperationType', 'OldValueType': 'OldValueType', 'OldValue': 'OldValue', 'NewValueType': 'NewValueType', 'NewValue': 'NewValue', 'ProcessId': 'ProcessId', 'ProcessName': 'ProcessPath'}, 4661: {'Descr': 'A handle to an object was requested', 'Provider': 'Microsoft-Windows-Security-Auditing', 'SubjectUserSid': 'SID', 'SubjectUserName': 'Username', 'SubjectDomainName': 'Domain', 'SubjectLogonId': 'LogonId', 'ObjectServer': 'ObjectServer', 'ObjectType': 'ObjectType', 'ObjectName': 'ObjectName', 'HandleId': 'HandleId', 'TransactionId': 'TransactionId', 'AccessList': 'AccessList', 'AccessMask': 'AccessMask', 'PrivilegeList': 'PrivilegeList', 'Properties': 'Properties', 'RestrictedSidCount': 'RestrictedSidCount', 'ProcessId': 'ProcessId', 'ProcessName': 'ProcessPath'}, 4662: {'Descr': 'An operation was performed on an object', 'Provider': 'Microsoft-Windows-Security-Auditing', 'SubjectUserSid': 'SID', 'SubjectUserName': 'Username', 'SubjectDomainName': 'Domain', 'SubjectLogonId': 'LogonId', 'ObjectServer': 'ObjectServer', 'ObjectType': 'ObjectType', 'ObjectName': 'ObjectName', 'OperationType': 'OperationType', 'HandleId': 'HandleId', 'AccessList': 'AccessList', 'AccessMask': 'AccessMask', 'Properties': 'Properties'}, 4663: {'Descr': 'An attempt was made to access an object', 'Provider': 'Microsoft-Windows-Security-Auditing', 'SubjectUserSid': 'SID', 'SubjectUserName': 'Username', 'SubjectDomainName': 'Domain', 'SubjectLogonId': 'LogonId', 'ObjectServer': 'ObjectServer', 'ObjectType': 'ObjectType', 'ObjectName': 'ObjectName', 'HandleId': 'HandleId', 'AccessList': 'AccessList', 'AccessMask': 'AccessMask', 'ProcessId': 'ProcessId', 'ProcessName': 'ProcessPath', 'ResourceAttributes': 'ResourceAttributes'}, 4672: {'Descr': 'Special privileges assigned to new logon', 'Provider': 'Microsoft-Windows-Security-Auditing', 'SubjectUserSid': 'TargetSID', 'SubjectUserName': 'TargetUsername', 'SubjectDomainName': 'TargetDomain', 'SubjectLogonId': 'TargetLogonId', 'PrivilegeList': 'PrivilegeList'}, 4673: {'Descr': 'A privileged service was called', 'Provider': 'Microsoft-Windows-Security-Auditing', 'SubjectUserSid': 'SID', 'SubjectUserName': 'Username', 'SubjectDomainName': 'Domain', 'SubjectLogonId': 'LogonId', 'ObjectServer': 'ObjectServer', 'Service': 'Service', 'PrivilegeList': 'PrivilegeList', 'ProcessId': 'ProcessId', 'ProcessName': 'ProcessPath'}, 4688: {'Descr': 'A new process has been created', 'Provider': 'Microsoft-Windows-Security-Auditing', 'SubjectUserSid': 'SID', 'SubjectUserName': 'Username', 'SubjectDomainName': 'Domain', 'SubjectLogonId': 'LogonId', 'NewProcessId': 'NewProcessId', 'NewProcessName': 'NewProcessPath', 'TokenElevationType': 'TokenElevationType', 'CommandLine': 'Command', 'ProcessId': 'ProcessId', 'ParentProcessName': 'ProcessPath', 'MandatoryLabel': '+MandatoryLabel', 'TargetUserSid': 'TargetSID', 'TargetUserName': 'TargetUsername', 'TargetDomainName': 'TargetDomain', 'TargetLogonId': 'TargetLogonId'}, 4697: {'Descr': 'A service was installed in the system', 'Provider': 'Microsoft-Windows-Security-Auditing', 'SubjectUserSid': 'SID', 'SubjectUserName': 'Username', 'SubjectDomainName': 'Domain', 'SubjectLogonId': 'LogonId', 'ServiceName': 'ServiceName', 'ServiceFileName': 'ServicePath', 'ServiceType': '+ServiceType', 'ServiceStartType': '+ServiceStartType', 'ServiceAccount': 'ServiceAccount'}, 4698: {'Descr': 'A scheduled task was created', 'Provider': 'Microsoft-Windows-Security-Auditing', 'SubjectUserSid': 'SID', 'SubjectUserName': 'Username', 'SubjectDomainName': 'Domain', 'SubjectLogonId': 'LogonId', 'TaskName': 'TaskName', 'TaskContent': 'TaskContent'}, 4699: {'Descr': 'A scheduled task was deleted', 'Provider': 'Microsoft-Windows-Security-Auditing', 'SubjectUserSid': 'SID', 'SubjectUserName': 'Username', 'SubjectDomainName': 'Domain', 'SubjectLogonId': 'LogonId', 'TaskName': 'TaskName', 'TaskContent': 'TaskContent'}, 4700: {'Descr': 'A scheduled task was enabled', 'Provider': 'Microsoft-Windows-Security-Auditing', 'SubjectUserSid': 'SID', 'SubjectUserName': 'Username', 'SubjectDomainName': 'Domain', 'SubjectLogonId': 'LogonId', 'TaskName': 'TaskName', 'TaskContent': 'TaskContent'}, 4701: {'Descr': 'A scheduled task was disabled', 'Provider': 'Microsoft-Windows-Security-Auditing', 'SubjectUserSid': 'SID', 'SubjectUserName': 'Username', 'SubjectDomainName': 'Domain', 'SubjectLogonId': 'LogonId', 'TaskName': 'TaskName', 'TaskContent': 'TaskContent'}, 4702: {'Descr': 'A scheduled task was updated', 'Provider': 'Microsoft-Windows-Security-Auditing', 'SubjectUserSid': 'SID', 'SubjectUserName': 'Username', 'SubjectDomainName': 'Domain', 'SubjectLogonId': 'LogonId', 'TaskName': 'TaskName', 'TaskContentNew': 'TaskContent'}, 4717: {'Descr': 'System security access was granted to an account', 'Provider': 'Microsoft-Windows-Security-Auditing', 'SubjectUserSid': 'SID', 'SubjectUserName': 'Username', 'SubjectDomainName': 'Domain', 'SubjectLogonId': 'LogonId', 'TargetSid': 'TargetSid', 'AccessGranted': 'AccessGranted'}, 4719: {'Descr': 'System audit policy was changed', 'Provider': 'Microsoft-Windows-Security-Auditing', 'SubjectUserSid': 'SID', 'SubjectUserName': 'Username', 'SubjectDomainName': 'Domain', 'SubjectLogonId': 'LogonId', 'CategoryId': 'CategoryId', 'SubcategoryId': 'SubcategoryId', 'SubcategoryGuid': 'SubcategoryGuid', 'AuditPolicyChanges': 'AuditPolicyChanges'}, 4720: {'Descr': 'A user account was created', 'Provider': 'Microsoft-Windows-Security-Auditing', 'SubjectUserSid': 'SID', 'SubjectUserName': 'Username', 'SubjectDomainName': 'Domain', 'SubjectLogonId': 'LogonId', 'TargetUserSid': 'TargetSID', 'TargetUserName': 'TargetUsername', 'TargetDomainName': 'TargetDomain', 'PrivilegeList': 'PrivilegeList', 'SamAccountName': 'SamAccountName', 'DisplayName': 'DisplayName', 'UserPrincipalName': 'UserPrincipalName', 'HomeDirectory': 'HomeDirectory', 'HomePath': 'HomePath', 'ScriptPath': 'ScriptPath', 'ProfilePath': 'ProfilePath', 'UserWorkstations': 'UserWorkstations', 'PasswordLastSet': 'PasswordLastSet', 'AccountExpires': 'AccountExpires', 'PrimaryGroupId': 'PrimaryGroupId', 'AllowedToDelegateTo': 'AllowedToDelegateTo', 'OldUacValue': '+OldUacFlags', 'SidHistory': 'SIDHistory', 'LogonHours': 'LogonHours', 'UserAccountControl': 'UserAccountControl'}, 4722: {'Descr': 'A user account was enabled', 'Provider': 'Microsoft-Windows-Security-Auditing', 'SubjectUserSid': 'SID', 'SubjectUserName': 'Username', 'SubjectDomainName': 'Domain', 'SubjectLogonId': 'LogonId', 'TargetSid': 'TargetSID', 'TargetUserName': 'TargetUsername', 'TargetDomainName': 'TargetDomain'}, 4723: {'Descr': "An attempt was made to change an account's password", 'Provider': 'Microsoft-Windows-Security-Auditing', 'SubjectUserSid': 'SID', 'SubjectUserName': 'Username', 'SubjectDomainName': 'Domain', 'SubjectLogonId': 'LogonId', 'TargetSid': 'TargetSID', 'TargetUserName': 'TargetUsername', 'TargetDomainName': 'TargetDomain', 'PrivilegeList': 'PrivilegeList'}, 4724: {'Descr': "An attempt to was made to reset an account's password", 'Provider': 'Microsoft-Windows-Security-Auditing', 'SubjectUserSid': 'SID', 'SubjectUserName': 'Username', 'SubjectDomainName': 'Domain', 'SubjectLogonId': 'LogonId', 'TargetSid': 'TargetSID', 'TargetUserName': 'TargetUsername', 'TargetDomainName': 'TargetDomain'}, 4725: {'Descr': 'A user account was disabled', 'Provider': 'Microsoft-Windows-Security-Auditing', 'SubjectUserSid': 'SID', 'SubjectUserName': 'Username', 'SubjectDomainName': 'Domain', 'SubjectLogonId': 'LogonId', 'TargetSid': 'TargetSID', 'TargetUserName': 'TargetUsername', 'TargetDomainName': 'TargetDomain'}, 4726: {'Descr': 'A user account was deleted', 'Provider': 'Microsoft-Windows-Security-Auditing', 'SubjectUserSid': 'SID', 'SubjectUserName': 'Username', 'SubjectDomainName': 'Domain', 'SubjectLogonId': 'LogonId', 'TargetSid': 'TargetSID', 'TargetUserName': 'TargetUsername', 'TargetDomainName': 'TargetDomain'}, 4728: {'Descr': 'A member was added to a security-enabled global group', 'Provider': 'Microsoft-Windows-Security-Auditing', 'SubjectUserSid': 'SID', 'SubjectUserName': 'Username', 'SubjectDomainName': 'Domain', 'SubjectLogonId': 'LogonId', 'MemberSid': 'TargetSID', 'MemberName': 'TargetUsername', 'TargetSid': 'TargetGroupSID', 'TargetUserName': 'TargetGroup', 'TargetDomainName': 'TargetDomain', 'PrivilegeList': 'PrivilegeList'}, 4732: {'Descr': 'A member was added to a security-enabled local group', 'Provider': 'Microsoft-Windows-Security-Auditing', 'SubjectUserSid': 'SID', 'SubjectUserName': 'Username', 'SubjectDomainName': 'Domain', 'SubjectLogonId': 'LogonId', 'MemberSid': 'TargetSID', 'MemberName': 'TargetUsername', 'TargetSid': 'TargetGroupSID', 'TargetUserName': 'TargetGroup', 'TargetDomainName': 'TargetDomain', 'PrivilegeList': 'PrivilegeList'}, 4738: {'Descr': 'A user account was changed', 'Provider': 'Microsoft-Windows-Security-Auditing', 'SubjectUserSid': 'SID', 'SubjectUserName': 'Username', 'SubjectDomainName': 'Domain', 'SubjectLogonId': 'LogonId', 'TargetSid': 'TargetSID', 'TargetUserName': 'TargetUsername', 'TargetDomainName': 'TargetDomain', 'PrivilegeList': 'PrivilegeList', 'SamAccountName': 'SamAccountName', 'DisplayName': 'DisplayName', 'UserPrincipalName': 'UserPrincipalName', 'HomeDirectory': 'HomeDirectory', 'HomePath': 'HomePath', 'ScriptPath': 'ScriptPath', 'ProfilePath': 'ProfilePath', 'UserWorkstations': 'UserWorkstations', 'PasswordLastSet': 'PasswordLastSet', 'AccountExpires': 'AccountExpires', 'PrimaryGroupId': 'PrimaryGroupId', 'AllowedToDelegateTo': 'AllowedToDelegateTo', 'OldUacValue': '+OldUacFlags', 'NewUacValue': '+NewUacFlags', 'UserParameters': 'UserParameters', 'SidHistory': 'SIDHistory', 'LogonHours': 'LogonHours', 'UserAccountControl': 'UserAccountControl'}, 4740: {'Descr': 'A user account was locked out', 'Provider': 'Microsoft-Windows-Security-Auditing', 'SubjectUserSid': 'SID', 'SubjectUserName': 'Username', 'SubjectDomainName': 'Domain', 'SubjectLogonId': 'LogonId', 'TargetSid': 'TargetSID', 'TargetUserName': 'TargetUsername', 'TargetDomainName': 'TargetDomain'}, 4741: {'Descr': 'A computer account was created', 'Provider': 'Microsoft-Windows-Security-Auditing', 'SubjectUserSid': 'SID', 'SubjectUserName': 'Username', 'SubjectDomainName': 'Domain', 'SubjectLogonId': 'LogonId', 'TargetSid': 'TargetSID', 'TargetUserName': 'TargetUsername', 'TargetDomainName': 'TargetDomain', 'PrivilegeList': 'PrivilegeList', 'SamAccountName': 'SamAccountName', 'DisplayName': 'DisplayName', 'UserPrincipalName': 'UserPrincipalName', 'HomeDirectory': 'HomeDirectory', 'HomePath': 'HomePath', 'ScriptPath': 'ScriptPath', 'ProfilePath': 'ProfilePath', 'UserWorkstations': 'UserWorkstations', 'PasswordLastSet': 'PasswordLastSet', 'AccountExpires': 'AccountExpires', 'PrimaryGroupId': 'PrimaryGroupId', 'AllowedToDelegateTo': 'AllowedToDelegateTo', 'OldUacValue': '+OldUacFlags', 'NewUacValue': '+NewUacFlags', 'UserParameters': 'UserParameters', 'SidHistory': 'SIDHistory', 'LogonHours': 'LogonHours', 'UserAccountControl': 'UserAccountControl', 'DnsHostName': 'Hostname', 'ServicePrincipalNames': 'SPNs'}, 4742: {'Descr': 'A computer account was changed', 'Provider': 'Microsoft-Windows-Security-Auditing', 'ComputerAccountChange': 'ComputerAccountChange', 'SubjectUserSid': 'SID', 'SubjectUserName': 'Username', 'SubjectDomainName': 'Domain', 'SubjectLogonId': 'LogonId', 'TargetSid': 'TargetSID', 'TargetUserName': 'TargetUsername', 'TargetDomainName': 'TargetDomain', 'PrivilegeList': 'PrivilegeList', 'SamAccountName': 'SamAccountName', 'DisplayName': 'DisplayName', 'UserPrincipalName': 'UserPrincipalName', 'HomeDirectory': 'HomeDirectory', 'HomePath': 'HomePath', 'ScriptPath': 'ScriptPath', 'ProfilePath': 'ProfilePath', 'UserWorkstations': 'UserWorkstations', 'PasswordLastSet': 'PasswordLastSet', 'AccountExpires': 'AccountExpires', 'PrimaryGroupId': 'PrimaryGroupId', 'AllowedToDelegateTo': 'AllowedToDelegateTo', 'OldUacValue': '+OldUacFlags', 'NewUacValue': '+NewUacFlags', 'UserParameters': 'UserParameters', 'SidHistory': 'SIDHistory', 'LogonHours': 'LogonHours', 'UserAccountControl': 'UserAccountControl', 'DnsHostName': 'Hostname', 'ServicePrincipalNames': 'SPNs'}, 4743: {'Descr': 'A computer account was deleted', 'Provider': 'Microsoft-Windows-Security-Auditing', 'SubjectUserSid': 'SID', 'SubjectUserName': 'Username', 'SubjectDomainName': 'Domain', 'SubjectLogonId': 'LogonId', 'TargetSid': 'TargetSID', 'TargetUserName': 'TargetUsername', 'TargetDomainName': 'TargetDomain', 'PrivilegeList': 'PrivilegeList'}, 4746: {'Descr': 'A member was added to a security-disabled local group', 'Provider': 'Microsoft-Windows-Security-Auditing', 'SubjectUserSid': 'SID', 'SubjectUserName': 'Username', 'SubjectDomainName': 'Domain', 'SubjectLogonId': 'LogonId', 'MemberSid': 'TargetSID', 'MemberName': 'TargetUsername', 'TargetSid': 'TargetGroupSID', 'TargetUserName': 'TargetGroup', 'TargetDomainName': 'TargetDomain', 'PrivilegeList': 'PrivilegeList'}, 4756: {'Descr': 'A member was added to a security-enabled universal group', 'Provider': 'Microsoft-Windows-Security-Auditing', 'SubjectUserSid': 'SID', 'SubjectUserName': 'Username', 'SubjectDomainName': 'Domain', 'SubjectLogonId': 'LogonId', 'MemberSid': 'TargetSID', 'MemberName': 'TargetUsername', 'TargetSid': 'TargetGroupSID', 'TargetUserName': 'TargetGroup', 'TargetDomainName': 'TargetDomain', 'PrivilegeList': 'PrivilegeList'}, 4761: {'Descr': 'A member was added to a security-disabled universal group', 'Provider': 'Microsoft-Windows-Security-Auditing', 'SubjectUserSid': 'SID', 'SubjectUserName': 'Username', 'SubjectDomainName': 'Domain', 'SubjectLogonId': 'LogonId', 'MemberSid': 'TargetSID', 'MemberName': 'TargetUsername', 'TargetSid': 'TargetGroupSID', 'TargetUserName': 'TargetGroup', 'TargetDomainName': 'TargetDomain', 'PrivilegeList': 'PrivilegeList'}, 4767: {'Descr': 'A user account was unlocked', 'Provider': 'Microsoft-Windows-Security-Auditing', 'SubjectUserSid': 'SID', 'SubjectUserName': 'Username', 'SubjectDomainName': 'Domain', 'SubjectLogonId': 'LogonId', 'TargetSid': 'TargetGroupSID', 'TargetUserName': 'TargetGroup', 'TargetDomainName': 'TargetDomain'}, 4768: {'Descr': 'A Kerberos authentication ticket (TGT) was requested', 'Provider': 'Microsoft-Windows-Security-Auditing', 'TargetUserSid': 'TargetSID', 'TargetUserName': 'TargetUsername', 'TargetDomainName': 'TargetDomain', 'ServiceSid': 'ServiceSID', 'ServiceName': 'ServiceName', 'TicketOptions': '+TicketOptions', 'Status': '+ResultCode', 'TicketEncryptionType': '+TicketEncryptionType', 'PreAuthType': '+PreAuthType', 'IpAddress': 'IP', 'IpPort': 'Port', 'CertIssuerName': 'CertIssuer', 'CertSerialNumber': 'CertSerialNumber', 'CertThumbprint': 'CertThumbprint'}, 4769: {'Descr': 'A Kerberos service ticket was requested', 'Provider': 'Microsoft-Windows-Security-Auditing', 'TargetUserName': 'TargetUsername', 'TargetDomainName': 'TargetDomain', 'ServiceSid': 'ServiceSID', 'ServiceName': 'ServiceName', 'TicketOptions': '+TicketOptions', 'Status': '+ResultCode', 'TicketEncryptionType': '+TicketEncryptionType', 'PreAuthType': '+PreAuthType', 'IpAddress': 'IP', 'IpPort': 'Port', 'LogonGuid': 'LogonGUID', 'TransmittedServices': 'TransmittedServices'}, 4771: {'Descr': 'Kerberos pre-authentication failed', 'Provider': 'Microsoft-Windows-Security-Auditing', 'TargetUserName': 'TargetUsername', 'TargetSid': 'TargetSID', 'ServiceName': 'ServiceName', 'TicketOptions': '+TicketOptions', 'Status': '+ResultCode', 'PreAuthType': '+PreAuthType', 'IpAddress': 'IP', 'IpPort': 'Port'}, 4776: {'Descr': 'The computer attempted to validate the credentials for an account', 'Provider': 'Microsoft-Windows-Security-Auditing', 'TargetUserName': 'TargetUsername', 'Workstation': 'WorkstationName', 'PackageName': 'AuthenticationPackage', 'Status': '+ResultCode'}, 4778: {'Descr': 'A session was reconnected to a Window Station', 'Provider': 'Microsoft-Windows-Security-Auditing', 'AccountName': 'TargetUsername', 'AccountDomain': 'TargetDomain', 'LogonID': 'TargetLogonId', 'SessionName': 'SessionName', 'ClientName': 'WorkstationName', 'ClientAddress': 'IP', 'PackageName': 'AuthenticationPackage'}, 4779: {'Descr': 'A session was disconnected from a Window Station', 'Provider': 'Microsoft-Windows-Security-Auditing', 'AccountName': 'TargetUsername', 'AccountDomain': 'TargetDomain', 'LogonID': 'TargetLogonId', 'SessionName': 'SessionName', 'ClientName': 'WorkstationName', 'ClientAddress': 'IP'}, 4781: {'Descr': 'The name of an account was changed', 'Provider': 'Microsoft-Windows-Security-Auditing', 'SubjectUserSid': 'SID', 'SubjectUserName': 'Username', 'SubjectDomainName': 'Domain', 'SubjectLogonId': 'LogonId', 'OldTargetUserName': 'OldTargetUsername', 'NewTargetUserName': 'NewTargetUsername', 'TargetDomainName': 'TargetDomain', 'TargetSid': 'TargetSID', 'PrivilegeList': 'PrivilegeList'}, 4798: {'Descr': "A user's local group membership was enumerated", 'Provider': 'Microsoft-Windows-Security-Auditing', 'SubjectUserSid': 'SID', 'SubjectUserName': 'Username', 'SubjectDomainName': 'Domain', 'SubjectLogonId': 'LogonId', 'TargetUserName': 'TargetUsername', 'TargetDomainName': 'TargetDomain', 'TargetSid': 'TargetSID', 'CallerProcessId': 'ProcessId', 'CallerProcessName': 'ProcessPath'}, 4799: {'Descr': 'A security-enabled local group membership was enumerated', 'Provider': 'Microsoft-Windows-Security-Auditing', 'SubjectUserSid': 'SID', 'SubjectUserName': 'Username', 'SubjectDomainName': 'Domain', 'SubjectLogonId': 'LogonId', 'TargetUserName': 'TargetUsername', 'TargetDomainName': 'TargetDomain', 'TargetSid': 'TargetSID', 'CallerProcessId': 'ProcessId', 'CallerProcessName': 'ProcessPath'}, 4825: {'Descr': 'A user was denied the access to Remote Desktop. By default, users are allowed to connect only if they are members of the Remote Desktop Users group or Administrators group', 'Provider': 'Microsoft-Windows-Security-Auditing', 'AccountName': 'TargetUsername', 'AccountDomain': 'TargetDomain', 'LogonID': 'TargetLogonId', 'ClientAddress': 'IP'}, 4912: {'Descr': 'Per User Audit Policy was changed', 'Provider': 'Microsoft-Windows-Security-Auditing', 'SubjectUserSid': 'SID', 'SubjectUserName': 'Username', 'SubjectDomainName': 'Domain', 'SubjectLogonId': 'LogonId', 'TargetUserSid': 'TargetSID', 'CategoryId': 'CategoryId', 'SubcategoryId': 'SubcategoryId', 'SubcategoryGuid': 'SubcategoryGuid', 'AuditPolicyChanges': 'AuditPolicyChanges'}, 4964: {'Descr': 'Special groups have been assigned to a new logon', 'Provider': 'Microsoft-Windows-Security-Auditing', 'SubjectUserSid': 'SID', 'SubjectUserName': 'Username', 'SubjectDomainName': 'Domain', 'SubjectLogonId': 'LogonId', 'LogonGuid': 'LogonGuid', 'TargetUserName': 'TargetUsername', 'TargetDomainName': 'TargetDomain', 'TargetUserSid': 'TargetSID', 'TargetLogonId': 'TargetLogonId', 'TargetLogonGuid': 'TargetLogonGuid', 'SidList': 'SidList'}, 5059: {'Descr': 'Key migration operation', 'Provider': 'Microsoft-Windows-Security-Auditing', 'SubjectUserSid': 'SID', 'SubjectUserName': 'Username', 'SubjectDomainName': 'Domain', 'SubjectLogonId': 'LogonId', 'ProviderName': 'ProviderName', 'AlgorithmName': 'AlgorithmName', 'KeyName': 'KeyName', 'KeyType': 'KeyType', 'Operation': 'OperationType', 'ReturnCode': 'ResultCode'}, 5140: {'Descr': 'A network share object was accessed', 'Provider': 'Microsoft-Windows-Security-Auditing', 'SubjectUserSid': 'SID', 'SubjectUserName': 'Username', 'SubjectDomainName': 'Domain', 'SubjectLogonId': 'LogonId', 'ObjectType': 'ObjectType', 'ShareName': 'ShareName', 'ShareLocalPath': 'ShareLocalPath', 'IpAddress': 'IP', 'IpPort': 'Port', 'AccessList': 'AccessList'}, 5142: {'Descr': 'A network share object was added', 'Provider': 'Microsoft-Windows-Security-Auditing', 'SubjectUserSid': 'SID', 'SubjectUserName': 'Username', 'SubjectDomainName': 'Domain', 'SubjectLogonId': 'LogonId', 'ShareName': 'ShareName', 'ShareLocalPath': 'ShareLocalPath'}, 5144: {'Descr': 'A network share object was deleted', 'Provider': 'Microsoft-Windows-Security-Auditing', 'SubjectUserSid': 'SID', 'SubjectUserName': 'Username', 'SubjectDomainName': 'Domain', 'SubjectLogonId': 'LogonId', 'ShareName': 'ShareName', 'ShareLocalPath': 'ShareLocalPath'}, 5145: {'Descr': 'A network share object was checked to see whether client can be granted desired access', 'Provider': 'Microsoft-Windows-Security-Auditing', 'SubjectUserSid': 'SID', 'SubjectUserName': 'Username', 'SubjectDomainName': 'Domain', 'SubjectLogonId': 'LogonId', 'ObjectType': 'ObjectType', 'ShareName': 'ShareName', 'ShareLocalPath': 'ShareLocalPath', 'RelativeTargetName': 'RelativeTargetName', 'IpAddress': 'IP', 'IpPort': 'Port', 'AccessList': 'AccessList', 'AccessMask': 'AccessMask', 'AccessReason': 'AccessReason'}, 5152: {'Descr': 'The Windows Filtering Platform has blocked a packet', 'Provider': 'Microsoft-Windows-Security-Auditing', 'ProcessId': 'ProcessId', 'Application': 'ProcessPath', 'Direction': 'Direction', 'SourceAddress': 'IP', 'SourcePort': 'Port', 'DestAddress': 'TargetIP', 'DestPort': 'TargetPort', 'Protocol': '+Protocol'}, 5156: {'Descr': 'The Windows Filtering Platform has permitted a connection', 'Provider': 'Microsoft-Windows-Security-Auditing', 'ProcessId': 'ProcessId', 'Application': 'ProcessPath', 'Direction': 'Direction', 'IpAddress': 'IP', 'IpPort': 'Port', 'DestAddress': 'TargetIP', 'DestPort': 'TargetPort', 'Protocol': '+Protocol', 'RemoteUserID': 'TargetSID', 'RemoteMachineID': 'TargetMachineSID'}, 5158: {'Descr': 'The Windows Filtering Platform has permitted a bind to a local port', 'Provider': 'Microsoft-Windows-Security-Auditing', 'ProcessId': 'ProcessId', 'Application': 'ProcessPath', 'Direction': 'Direction', 'SourceAddress': 'IP', 'SourcePort': 'Port', 'Protocol': '+Protocol'}, 6279: {'Descr': 'Network Policy Server locked the user account due to repeated failed authentication attempts', 'Provider': 'Microsoft-Windows-Security-Auditing', 'SubjectUserSid': 'SID', 'SubjectUserName': 'Username', 'SubjectDomainName': 'Domain', 'FullyQualifiedSubjectUserName': 'UsernameFQN'}, 6280: {'Descr': 'Network Policy Server unlocked the user account', 'Provider': 'Microsoft-Windows-Security-Auditing', 'SubjectUserSid': 'SID', 'SubjectUserName': 'Username', 'SubjectDomainName': 'Domain', 'FullyQualifiedSubjectUserName': 'UsernameFQN'}, 6416: {'Descr': 'A new external device was recognized by the System', 'Provider': 'Microsoft-Windows-Security-Auditing', 'SubjectUserSid': 'SID', 'SubjectUserName': 'Username', 'SubjectDomainName': 'Domain', 'SubjectLogonId': 'LogonId', 'DeviceId': 'DeviceName', 'DeviceDescription': 'DeviceDescr', 'ClassId': 'ClassId', 'ClassName': 'ClassName', 'VendorIds': 'VendorId', 'CompatibleIds': 'CompatibleId', 'LocationInformation': 'Location'}}
sys = {2: {'Descr': 'Possible detection of CVE: <CVEId>. This event is raised by a kernel mode driver', 'Provider': 'Microsoft-Windows-Audit-CVE', 'CVEID': 'CVEID', 'AdditionalDetails': 'AdditionalDetails'}, 104: {'Descr': 'The <EventLogName> log file was cleared', 'Provider': 'Microsoft-Windows-Eventlog', 'SubjectUserName': 'Username', 'SubjectDomainName': 'Domain', 'Channel': 'EventLogName', 'BackupPath': 'BackupPath'}, 1014: {'Descr': 'Name resolution for the <QueryName> timed out after none of the configured DNS servers responded', 'Provider': 'Microsoft-Windows-DNS-Client', 'QueryName': 'QueryName', 'Address': 'Address'}, 1074: {'Descr': '<ProcessPath> has initiated the <ShutdownType> of <Hostname> on behalf of <Username> for the following <Reason>', 'Provider': 'User32', 'param1': 'ProcessPath', 'param2': 'Hostname', 'param3': 'Reason', 'param4': 'ReasonCode', 'param5': 'ShutdownType', 'param6': 'Comment', 'param7': 'Username'}, 1076: {'Descr': 'The reason supplied by <Username> for the last unexpected shutdown of this computer is <Reason>', 'Provider': 'User32', 'param1': 'Reason', 'param2': 'ReasonCode', 'param5': 'Comment', 'param6': 'Username'}, 6005: {'Descr': 'The Event Log service was started', 'Provider': 'EventLog'}, 6006: {'Descr': 'The Event Log service was stopped', 'Provider': 'EventLog'}, 6008: {'Descr': 'The previous system shutdown at %1 on %2 was unexpected', 'Provider': 'EventLog'}, 6009: {'Descr': 'Microsoft (R) Windows (R) %1 %2 %3 %4', 'Provider': 'EventLog'}, 6013: {'Descr': 'The system uptime is %5 seconds', 'Provider': 'EventLog'}, 6100: {'Descr': 'Details about Networking <HelperClassName> diagnosis:', 'Provider': 'Microsoft-Windows-Diagnostics-Networking', 'HelperClassName': 'HelperClassName', 'EventDescription': 'EventDescr', 'EventVerbosity': 'EventVerbosity'}, 7034: {'Descr': 'The <ServiceName> terminated unexpectedly. It has done this <Count> time(s)', 'Provider': 'Service Control Manager', 'param1': 'ServiceName', 'param2': 'Count'}, 7035: {'Descr': 'The <ServiceName> was successfully sent a <Control>', 'Provider': 'Service Control Manager', 'param1': 'ServiceName', 'param2': 'Control'}, 7036: {'Descr': 'The <ServiceName> entered the <StatusAfter> state', 'Provider': 'Service Control Manager', 'param1': 'ServiceName', 'param2': 'StatusAfter'}, 7040: {'Descr': 'The start type of <ServiceName> was changed from <StatusBefore> to <StatusAfter>', 'Provider': 'Service Control Manager', 'param1': 'ServiceName', 'param2': 'StatusBefore', 'param3': 'StatusAfter'}, 7045: {'Descr': 'A service was installed on the system', 'Provider': 'Service Control Manager', 'ServiceName': 'ServiceName', 'ImagePath': 'ServicePath', 'ServiceType': 'ServiceType', 'StartType': 'ServiceStartType', 'AccountName': 'ServiceAccount'}, 9009: {'Descr': 'The Desktop Window Manager has exited with code <ExitCode>', 'Param1': 'ExitCode'}, 10000: {'Descr': 'A driver package which uses user-mode driver framework version <FrameworkVersion> is being installed on device <DeviceId>', 'Provider': 'Microsoft-Windows-DriverFrameworks-UserMode', 'DeviceId': 'DeviceId', 'FrameworkVersion': 'FrameworkVersion'}, 20001: {'Descr': 'Driver Management concluded the process to install <DriverName> for <DeviceInstanceId> with <Status>', 'Provider': 'Microsoft-Windows-UserPnp', 'DriverName': 'DriverName', 'DriverVersion': 'DriverVersion', 'DriverProvider': 'DriverProvider', 'DeviceInstanceID': 'DeviceInstanceID', 'DriverDescription': 'DriverDescr', 'SetupClass': 'SetupClass', 'RebootOption': 'RebootOption', 'UpgradeDevice': 'UpgradeDevice', 'IsDriverOEM': 'IsDriverOEM', 'InstallStatus': 'Status'}, 20002: {'Descr': 'Driver Management concluded the process to remove <DriverName> from <DeviceInstanceId> with <Status>', 'Provider': 'Microsoft-Windows-UserPnp', 'DriverName': 'DriverName', 'DriverVersion': 'DriverVersion', 'DriverProvider': 'DriverProvider', 'DeviceInstanceID': 'DeviceInstanceID', 'DriverDescription': 'DriverDescr', 'SetupClass': 'SetupClass', 'RebootOption': 'RebootOption', 'UpgradeDevice': 'UpgradeDevice', 'IsDriverOEM': 'IsDriverOEM', 'InstallStatus': 'Status'}, 20003: {'Descr': 'Driver Management has concluded the process to add <ServiceName>> for <DeviceInstanceID> with <Status>', 'Provider': 'Microsoft-Windows-UserPnp', 'ServiceName': 'DriverName', 'DriverFileName': 'DriverPath', 'DeviceInstanceID': 'DeviceInstanceID', 'PrimaryService': 'IsPrimaryService', 'UpdateService': 'IsUpdateService', 'AddServiceStatus': 'AddServiceStatus'}}
app = {1: {'Descr': 'Possible detection of CVE: <CVEId>. This event is raised by a User mode process', 'Provider': 'Microsoft-Windows-Audit-CVE', 'CVEID': 'CVEID', 'AdditionalDetails': 'AdditionalDetails'}, 216: {'Descr': '%1 (%2) %3 A database location change was detected from %4 to %5', 'Provider': 'ESENT'}, 325: {'Descr': '%1 (%2) %3 The database engine created a new database (%4, %5). (Time=%6 seconds)', 'Provider': 'ESENT'}, 326: {'Descr': '%1 (%2) %3 The database engine attached a database (%4, %5). (Time=%6 seconds)', 'Provider': 'ESENT'}, 327: {'Descr': '%1 (%2) %3 The database engine detached a database (%4, %5). (Time=%6 seconds)', 'Provider': 'ESENT'}, 1001: {'Descr': 'Fault bucket: %1, Type: %2. Event Name: %3, Response: %4, Cab Id: %5. Problem signature: %rest', 'Provider': 'Windows Error Reporting'}, 1033: {'Descr': 'Windows Installer installed the product. Product Name: %1. Product Version: %2. Product Language: %3. Manufacturer: %5. Installation success or error status: %4.', 'Provider': 'MsiInstaller'}, 1034: {'Descr': 'Windows Installer removed the product. Product Name: %1. Product Version: %2. Product Language: %3. Manufacturer: %5. Removal success or error status: %4.', 'Provider': 'MsiInstaller'}, 11707: {'Descr': 'Installation completed successfully', 'Provider': 'MsiInstaller'}, 11708: {'Descr': 'Installation operation failed', 'Provider': 'MsiInstaller'}, 11724: {'Descr': 'Application removal completed successfully', 'Provider': 'MsiInstaller'}}
appexp1 = {800: {'Descr': 'An instance of Program Data Updater (PDU) ran with the following information...', 'Provider': 'Microsoft-Windows-Application-Experience', 'StartTime': 'StartTime', 'StopTime': 'StopTime', 'ExitCode': 'ExitCode', 'NumNewPrograms': 'NumNewPrograms', 'NumRemovedPrograms': 'NumRemovedPrograms', 'NumUpdatedPrograms': 'NumUpdatedPrograms', 'NumInstalledPrograms': 'NumInstalledPrograms', 'NumNewOrphans': 'NumNewOrphans', 'NumNewAddOns': 'NumNewAddOns', 'NumRemovedAddOns': 'NumRemovedAddOns', 'NumUpdatedAddOns': 'NumUpdatedAddOns', 'NumInstalledAddOns': 'NumInstalledAddOns', 'NumNewInstallations': 'NumNewInstallations'}, 903: {'Descr': 'A program was installed on the system', 'Provider': 'Microsoft-Windows-Application-Experience', 'Name': 'AppName', 'Version': 'AppVersion', 'Publisher': 'AppPublisher', 'Language': 'Language', 'Source': 'Source', 'ProgramID': 'ProgramId', 'FileInstanceID': 'FileInstanceId'}, 904: {'Descr': 'A program was installed on the system (MSI)', 'Provider': 'Microsoft-Windows-Application-Experience', 'Name': 'AppName', 'Version': 'AppVersion', 'Publisher': 'AppPublisher', 'Language': 'Language', 'Source': 'Source', 'ProgramID': 'ProgramId', 'FileInstanceID': 'FileInstanceId', 'MsiProductCode': 'MsiProductCode', 'MsiPackageCode': 'MsiPackageCode'}, 905: {'Descr': 'A program was updated on the system', 'Provider': 'Microsoft-Windows-Application-Experience', 'Name': 'AppName', 'Version': 'AppVersion', 'Publisher': 'AppPublisher', 'Language': 'Language', 'Source': 'Source', 'ProgramID': 'ProgramId', 'FileInstanceID': 'FileInstanceId', 'OldFileInstanceID': 'OldFileInstanceId'}, 906: {'Descr': 'A program was updated on the system (MSI)', 'Provider': 'Microsoft-Windows-Application-Experience', 'Name': 'AppName', 'Version': 'AppVersion', 'Publisher': 'AppPublisher', 'Language': 'Language', 'Source': 'Source', 'ProgramID': 'ProgramId', 'FileInstanceID': 'FileInstanceId', 'OldFileInstanceID': 'OldFileInstanceId', 'MsiProductCode': 'MsiProductCode', 'OldMsiProductCode': 'OldMsiProductCode', 'MsiPackageCode': 'MsiPackageCode', 'OldMsiPackageCode': 'OldMsiPackageCode'}, 907: {'Descr': 'A program was removed on the system', 'Provider': 'Microsoft-Windows-Application-Experience', 'Name': 'AppName', 'Version': 'AppVersion', 'Publisher': 'AppPublisher', 'Language': 'Language', 'Source': 'Source', 'ProgramID': 'ProgramId', 'FileInstanceID': 'FileInstanceId'}, 908: {'Descr': 'A program was removed on the system (MSI)', 'Provider': 'Microsoft-Windows-Application-Experience', 'Name': 'AppName', 'Version': 'AppVersion', 'Publisher': 'AppPublisher', 'Language': 'Language', 'Source': 'Source', 'ProgramID': 'ProgramId', 'FileInstanceID': 'FileInstanceId', 'MsiProductCode': 'MsiProductCode', 'MsiPackageCode': 'MsiPackageCode'}}
appexp2 = {500: {'Descr': 'Compatibility fix applied to <ProcessPath>. Fix information: <FixName>, <FixId>, <Flags>', 'Provider': 'Microsoft-Windows-Application-Experience', 'ProcessId': 'ProcessId', 'ExePath': 'ProcessPath', 'StartTime': 'StartTime', 'FixID': 'FixId', 'FixName': 'FixName', 'Flags': 'Flags'}, 501: {'Descr': 'Compatibility fix applied to <ProcessPath>. Fix information: <FixName>, <FixId>, <Flags>', 'Provider': 'Microsoft-Windows-Application-Experience', 'ProcessId': 'ProcessId', 'ExePath': 'ProcessPath', 'StartTime': 'StartTime', 'FixID': 'FixId', 'FixName': 'FixName', 'Flags': 'Flags'}, 502: {'Descr': 'Compatibility fix applied to <MsiPath>. Fix information: <FixName>, <FixId>, <Flags>', 'Provider': 'Microsoft-Windows-Application-Experience', 'ClientProcessId': 'ProcessId', 'ClientStartTime': 'StartTime', 'FixID': 'FixId', 'FixName': 'FixName', 'Flags': 'Flags', 'ProductCode': 'ProductCode', 'PackageCode': 'PackageCode', 'MsiPath': 'MsiPath'}, 503: {'Descr': 'Compatibility fix applied to <MsiPath>. Fix information: <FixName>, <FixId>, <Flags>', 'Provider': 'Microsoft-Windows-Application-Experience', 'ClientProcessId': 'ProcessId', 'ClientStartTime': 'StartTime', 'FixID': 'FixId', 'FixName': 'FixName', 'Flags': 'Flags', 'ProductCode': 'ProductCode', 'PackageCode': 'PackageCode', 'MsiPath': 'MsiPath'}}
applocker = {8004: {'Descr': '<FilePath> was prevented from running', 'Provider': 'Microsoft-Windows-AppLocker', 'PolicyNameBuffer': 'Policy', 'RuleId': 'RuleId', 'RuleNameBuffer': 'RuleName', 'RuleSddlBuffer': 'RuleSddl', 'TargetUser': 'TargetUsername', 'TargetLogonId': 'TargetLogonId', 'TargetProcessId': 'TargetProcessId', 'FilePathBuffer': 'FilePath', 'FileHash': 'FileHash', 'Fqbn': 'Fqbn'}}
bits = {3: {'Descr': 'The BITS service created a new job', 'Provider': 'Microsoft-Windows-Bits-Client', 'jobTitle': 'JobTitle', 'jobId': 'JobId', 'jobOwner': 'JobOwner', 'processPath': 'ProcessPath', 'processId': 'ProcessId'}, 4: {'Descr': 'The transfer job is complete', 'Provider': 'Microsoft-Windows-Bits-Client', 'User': 'Username', 'jobTitle': 'JobTitle', 'jobId': 'JobId', 'jobOwner': 'JobOwner', 'fileCount': 'FileCount'}, 5: {'Descr': 'Job cancelled', 'Provider': 'Microsoft-Windows-Bits-Client', 'User': 'Username', 'jobTitle': 'JobTitle', 'jobId': 'JobId', 'jobOwner': 'JobOwner', 'fileCount': 'FileCount'}, 59: {'Descr': 'BITS started the <Name> transfer job that is associated with the <URL>', 'Provider': 'Microsoft-Windows-Bits-Client', 'transferId': 'TransferId', 'name': 'Name', 'Id': 'JobId', 'url': 'URL', 'peer': 'Peer', 'fileTime': 'FileTime', 'fileLength': 'FileSize'}, 60: {'Descr': 'BITS stopped transferring the <Name> transfer job that is associated with the <URL>', 'Provider': 'Microsoft-Windows-Bits-Client', 'transferId': 'TransferId', 'name': 'Name', 'Id': 'JobId', 'url': 'URL', 'peer': 'Peer', 'fileTime': 'FileTime', 'fileLength': 'FileSize', 'bytesTotal': 'BytesTotal', 'bytesTransferred': 'BytesTransferred', 'bytesTransferredFromPeer': 'BytesTransferredFromPeer'}}
codeinteg = {3001: {'Descr': 'Code Integrity determined an unsigned kernel module <FileName> is loaded into the system', 'Provider': 'Microsoft-Windows-CodeIntegrity', 'FileNameBuffer': 'FileName'}}
diag = {100: {'Descr': 'Windows has started up', 'Provider': 'Microsoft-Windows-Diagnostics-Performance', 'BootStartTime': 'BootStartTime', 'BootEndTime': 'BootEndTime', 'SystemBootInstance': 'SystemBootInstance', 'UserBootInstance': 'UserBootInstance', 'BootTime': 'BootTime', 'UserLogonWaitDuration': 'UserLogonWaitDuration'}, 200: {'Descr': 'Windows has shutdown', 'Provider': 'Microsoft-Windows-Diagnostics-Performance', 'ShutdownStartTime': 'ShutdownStartTime', 'ShutdownEndTime': 'ShutdownEndTime', 'ShutdownTime': 'ShutdownTime'}}
dnsclient = {1014: {'Descr': 'Name resolution for the <QueryName> timed out after none of the configured DNS servers responded', 'Provider': 'Microsoft-Windows-DNS-Client', 'QueryName': 'QueryName', 'Address': 'Address'}, 3006: {'Descr': 'DNS query is called for the <QueryName>, <QueryType>', 'Provider': 'Microsoft-Windows-DNS-Client', 'QueryName': 'QueryName', 'QueryType': '+QueryType', 'QueryOptions': 'QueryOptions', 'ServerList': 'ServerList', 'IsNetworkQuery': 'IsNetworkQuery', 'NetworkQueryIndex': 'NetworkIndex', 'InterfaceIndex': 'InterfaceIndex', 'IsAsyncQuery': 'IsAsyncQuery'}, 3008: {'Descr': 'DNS query is completed for the <QueryName>, <QueryType> with <ResponseCode> <QueryResults>', 'Provider': 'Microsoft-Windows-DNS-Client', 'QueryName': 'QueryName', 'QueryType': '+QueryType', 'QueryOptions': 'QueryOptions', 'QueryStatus': 'ResponseCode', 'QueryResults': 'QueryResults'}, 3011: {'Descr': 'Received response from <DnsServerIP> for <QueryName> and <QueryType> with <ResponseCode>', 'Provider': 'Microsoft-Windows-DNS-Client', 'QueryName': 'QueryName', 'QueryType': '+QueryType', 'DnsServerIpAddress': 'DnsServerIP', 'ResponseStatus': 'Status'}, 3016: {'Descr': 'Cache lookup called for <QueryName>, <QueryType>', 'Provider': 'Microsoft-Windows-DNS-Client', 'QueryName': 'QueryName', 'QueryType': '+QueryType', 'QueryOptions': 'QueryOptions', 'InterfaceIndex': 'InterfaceIndex'}, 3018: {'Descr': 'Cache lookup for <QueryName>, <QueryType> returned <ResponseCode> with <QueryResults>', 'Provider': 'Microsoft-Windows-DNS-Client', 'QueryName': 'QueryName', 'QueryType': '+QueryType', 'QueryOptions': 'QueryOptions', 'Status': 'ResponseCode', 'QueryResults': 'QueryResults'}, 3019: {'Descr': 'Query wire called for name <QueryName>, <QueryType>', 'Provider': 'Microsoft-Windows-DNS-Client', 'QueryName': 'QueryName', 'QueryType': '+QueryType', 'NetworkIndex': 'NetworkIndex', 'InterfaceIndex': 'InterfaceIndex'}, 3020: {'Descr': 'Query response for name <QueryName>, <QueryType> returned <ResponseCode> with <QueryResults>', 'Provider': 'Microsoft-Windows-DNS-Client', 'QueryName': 'QueryName', 'QueryType': '+QueryType', 'NetworkIndex': 'NetworkIndex', 'InterfaceIndex': 'InterfaceIndex', 'Status': 'ResponseCode', 'QueryResults': 'QueryResults'}}
dnsserver = {256: {'Descr': 'Query received', 'Provider': 'Microsoft-Windows-DNSServer', 'TCP': 'TCP', 'InterfaceIP': 'InterfaceIP', 'Source': 'Source', 'RD': 'RD', 'QNAME': 'QueryName', 'QTYPE': 'QueryType', 'XID': 'XID', 'Port': 'Port', 'Flags': 'Flags', 'PacketData': 'PacketData', 'AdditionalInfo': 'AdditionalInfo'}, 257: {'Descr': 'Response success', 'Provider': 'Microsoft-Windows-DNSServer', 'TCP': 'TCP', 'InterfaceIP': 'InterfaceIP', 'Destination': 'Destination', 'AA': 'AA', 'AD': 'AD', 'QNAME': 'QueryName', 'QTYPE': 'QueryType', 'XID': 'XID', 'DNSSEC': 'DNSSEC', 'RCODE': 'RCode', 'Port': 'Port', 'Flags': 'Flags', 'Scope': 'Scope', 'Zone': 'Zone', 'PolicyName': 'Policy', 'PacketData': 'PacketData', 'AdditionalInfo': 'AdditionalInfo'}, 258: {'Descr': 'Response failure', 'Provider': 'Microsoft-Windows-DNSServer', 'TCP': 'TCP', 'InterfaceIP': 'InterfaceIP', 'Reason': 'Reason', 'Destination': 'Destination', 'QNAME': 'QueryName', 'QTYPE': 'QueryType', 'XID': 'XID', 'RCODE': 'RCode', 'Port': 'Port', 'Flags': 'Flags', 'Zone': 'Zone', 'PolicyName': 'Policy', 'PacketData': 'PacketData', 'AdditionalInfo': 'AdditionalInfo'}, 259: {'Descr': 'Ignored query', 'Provider': 'Microsoft-Windows-DNSServer', 'TCP': 'TCP', 'InterfaceIP': 'InterfaceIP', 'Source': 'Source', 'Reason': 'Reason', 'QNAME': 'QueryName', 'QTYPE': 'QueryType', 'XID': 'XID', 'Zone': 'Zone', 'PolicyName': 'Policy', 'AdditionalInfo': 'AdditionalInfo'}, 260: {'Descr': 'Recurse query out', 'Provider': 'Microsoft-Windows-DNSServer', 'TCP': 'TCP', 'InterfaceIP': 'InterfaceIP', 'Destination': 'Destination', 'RD': 'RD', 'QNAME': 'QueryName', 'QTYPE': 'QueryType', 'XID': 'XID', 'Port': 'Port', 'Flags': 'Flags', 'RecursionScope': 'RecursionScope', 'CacheScope': 'CacheScope', 'PolicyName': 'Policy', 'PacketData': 'PacketData', 'AdditionalInfo': 'AdditionalInfo'}, 261: {'Descr': 'Recurse response in', 'Provider': 'Microsoft-Windows-DNSServer', 'TCP': 'TCP', 'InterfaceIP': 'InterfaceIP', 'Source': 'Source', 'AA': 'AA', 'AD': 'AD', 'QNAME': 'QueryName', 'QTYPE': 'QueryType', 'XID': 'XID', 'Port': 'Port', 'Flags': 'Flags', 'RecursionScope': 'RecursionScope', 'CacheScope': 'CacheScope', 'PacketData': 'PacketData', 'AdditionalInfo': 'AdditionalInfo'}, 262: {'Descr': 'Recurse query timeout', 'Provider': 'Microsoft-Windows-DNSServer', 'TCP': 'TCP', 'InterfaceIP': 'InterfaceIP', 'Destination': 'Destination', 'QNAME': 'QueryName', 'QTYPE': 'QueryType', 'XID': 'XID', 'Port': 'Port', 'Flags': 'Flags', 'RecursionScope': 'RecursionScope', 'CacheScope': 'CacheScope', 'AdditionalInfo': 'AdditionalInfo'}}
driverfw = {2003: {'Descr': 'The UMDF Host Process (<HostProcessId>) has been asked to load drivers for device <DeviceId>', 'Provider': 'Microsoft-Windows-DriverFrameworks-UserMode', 'LifetimeId': 'HostProcessId', 'InstanceId': 'DeviceId'}, 2004: {'Descr': 'The UMDF Host is loading <Driver> at <Level> for device <DeviceId>', 'Provider': 'Microsoft-Windows-DriverFrameworks-UserMode', 'LifetimeId': 'HostProcessId', 'InstanceId': 'DeviceId', 'Level': 'Level', 'Service': 'Driver', 'ClsId': 'DriverClassId'}, 2005: {'Descr': 'The UMDF Host Process (<HostProcessId>) has loaded <ModulePath> while loading drivers for device <DeviceId>', 'Provider': 'Microsoft-Windows-DriverFrameworks-UserMode', 'LifetimeId': 'HostProcessId', 'InstanceId': 'DeviceId', 'ModulePath': 'ModulePath', 'CompanyName': 'CompanyName', 'FileDescription': 'FileDescr', 'FileVersion': 'FileVersion'}, 2010: {'Descr': 'The UMDF Host Process (<HostProcessId>) has successfully loaded drivers for device <DeviceId>', 'Provider': 'Microsoft-Windows-DriverFrameworks-UserMode', 'LifetimeId': 'HostProcessId', 'InstanceId': 'DeviceId', 'FinalStatus': 'FinalStatus'}, 2100: {'Descr': 'Received a Pnp or Power operation (<MajorCode>, <MinorCode>) for device <DeviceId>', 'Provider': 'Microsoft-Windows-DriverFrameworks-UserMode', 'LifetimeId': 'HostProcessId', 'InstanceId': 'DeviceId', 'MajorCode': 'MajorCode', 'MinorCode': 'MinorCode', 'Status': 'Status'}, 2102: {'Descr': 'Forwarded a finished Pnp or Power operation (<MajorCode>, <MinorCode>) to the lower driver for device <DeviceId> with <Status>', 'Provider': 'Microsoft-Windows-DriverFrameworks-UserMode', 'LifetimeId': 'HostProcessId', 'InstanceId': 'DeviceId', 'MajorCode': 'MajorCode', 'MinorCode': 'MinorCode', 'Status': 'Status'}, 2105: {'Descr': 'Forwarded a Pnp or Power operation (<MajorCode>, <MinorCode>) for device <DeviceId> to the lower driver with <Status>', 'Provider': 'Microsoft-Windows-DriverFrameworks-UserMode', 'LifetimeId': 'HostProcessId', 'InstanceId': 'DeviceId', 'MajorCode': 'MajorCode', 'MinorCode': 'MinorCode', 'Status': 'Status'}}
fwall = {2004: {'Descr': 'A rule has been added to the Windows Firewall exception list', 'Provider': 'Microsoft-Windows-Windows Firewall With Advanced Security', 'RuleId': 'RuleId', 'RuleName': 'RuleName', 'Origin': '+Origin', 'ApplicationPath': 'AppPath', 'ServiceName': 'ServiceName', 'Direction': '+Direction', 'Protocol': '+Protocol', 'LocalPorts': 'TargetPort', 'RemotePorts': 'RemotePorts', 'Action': '+Action', 'Profiles': '+Profiles', 'LocalAddresses': 'TargetIP', 'EmbeddedContext': 'EmbeddedContext', 'Active': '+Active', 'ModifyingUser': 'SID', 'ModifyingApplication': 'ProcessPath'}, 2005: {'Descr': 'A rule has been modified in the Windows Firewall exception list', 'Provider': 'Microsoft-Windows-Windows Firewall With Advanced Security', 'RuleId': 'RuleId', 'RuleName': 'RuleName', 'Origin': '+Origin', 'ApplicationPath': 'AppPath', 'ServiceName': 'ServiceName', 'Direction': '+Direction', 'Protocol': '+Protocol', 'LocalPorts': 'TargetPort', 'RemotePorts': 'RemotePorts', 'Action': '+Action', 'Profiles': '+Profiles', 'LocalAddresses': 'TargetIP', 'EmbeddedContext': 'EmbeddedContext', 'Active': '+Active', 'ModifyingUser': 'SID', 'ModifyingApplication': 'ProcessPath'}, 2006: {'Descr': 'A rule has been deleted in the Windows Firewall exception list', 'Provider': 'Microsoft-Windows-Windows Firewall With Advanced Security', 'RuleId': 'RuleId', 'RuleName': 'RuleName', 'ModifyingUser': 'SID', 'ModifyingApplication': 'ProcessPath'}}
kernelpnp = {400: {'Descr': '<DeviceInstanceId> was configured', 'Provider': 'Microsoft-Windows-Kernel-PnP', 'DeviceInstanceId': 'DeviceInstanceId', 'DriverName': 'DriverName', 'ClassGuid': '+ClassGuid', 'DriverDate': 'DriverDate', 'DriverVersion': 'DriverVersion', 'DriverProvider': 'DriverProvider', 'DriverInbox': 'IsDriverInbox', 'DriverSection': 'DriverSection', 'DeviceId': 'DeviceId', 'OutrankedDrivers': 'OutrankedDrivers', 'DeviceUpdated': 'IsDeviceUpdated', 'Status': 'Status', 'ParentDeviceInstanceId': 'ParentDeviceInstanceId'}, 410: {'Descr': '<DeviceInstanceId> was started', 'Provider': 'Microsoft-Windows-Kernel-PnP', 'DeviceInstanceId': 'DeviceInstanceId', 'DriverName': 'DriverName', 'ClassGuid': '+ClassGuid', 'ServiceName': 'ServiceName', 'LowerFilters': 'LowerFilters', 'UpperFilters': 'UpperFilters', 'Problem': 'Problem', 'Status': 'Status'}, 430: {'Descr': '<DeviceInstanceId> requires further installation', 'Provider': 'Microsoft-Windows-Kernel-PnP', 'DeviceInstanceId': 'DeviceInstanceId'}}
lsm = {21: {'Descr': 'Remote Desktop Services: Session logon succeeded', 'Provider': 'Microsoft-Windows-TerminalServices-LocalSessionManager', 'User': 'TargetUsername', 'SessionID': 'TargetSessionId', 'Address': 'IP'}, 22: {'Descr': 'Remote Desktop Services: Shell start notification received', 'Provider': 'Microsoft-Windows-TerminalServices-LocalSessionManager', 'User': 'TargetUsername', 'SessionID': 'TargetSessionId', 'Address': 'IP'}, 23: {'Descr': 'Remote Desktop Services: Session logoff succeeded', 'Provider': 'Microsoft-Windows-TerminalServices-LocalSessionManager', 'User': 'TargetUsername', 'SessionID': 'TargetSessionId'}, 24: {'Descr': 'Remote Desktop Services: Session has been disconnected', 'Provider': 'Microsoft-Windows-TerminalServices-LocalSessionManager', 'User': 'TargetUsername', 'SessionID': 'TargetSessionId', 'Address': 'IP'}, 25: {'Descr': 'Remote Desktop Services: Session reconnection succeeded', 'Provider': 'Microsoft-Windows-TerminalServices-LocalSessionManager', 'User': 'TargetUsername', 'SessionID': 'TargetSessionId', 'Address': 'IP'}, 39: {'Descr': '<TargetSessionId> has been disconnected by session <SessionId>', 'Provider': 'Microsoft-Windows-TerminalServices-LocalSessionManager', 'TargetSession': 'TargetSessionId', 'Source': 'SessionId'}, 40: {'Descr': '<TargetSessionId> has been disconnected, <Reason>', 'Provider': 'Microsoft-Windows-TerminalServices-LocalSessionManager', 'Session': 'TargetSessionId', 'Reason': '+Reason'}, 41: {'Descr': 'Begin session arbitration', 'Provider': 'Microsoft-Windows-TerminalServices-LocalSessionManager', 'User': 'TargetUsername', 'SessionID': 'TargetSessionId'}}
networkp = {10000: {'Descr': 'Network connected', 'Provider': 'Microsoft-Windows-NetworkProfile', 'Name': 'ProfileName', 'Guid': 'Guid', 'Type': '+Type', 'State': 'State', 'Category': 'Category'}, 10001: {'Descr': 'Network disconnected', 'Provider': 'Microsoft-Windows-NetworkProfile', 'Name': 'ProfileName', 'Guid': 'Guid', 'Type': '+Type', 'State': 'State', 'Category': 'Category'}, 10002: {'Descr': 'Network category changed', 'Provider': 'Microsoft-Windows-NetworkProfile', 'Name': 'ProfileName', 'Guid': 'Guid', 'Type': '+Type', 'State': 'State', 'Category': 'Category'}}
ntfs = {142: {'Descr': 'Summary of disk space usage, since last event', 'Provider': 'Microsoft-Windows-Ntfs', 'VolumeGuid': 'VolumeGuid', 'VolumeName': 'VolumeName', 'LowestFreeSpaceInBytes': 'LowestFreeSpaceInBytes', 'HighestFreeSpaceInBytes': 'HighestFreeSpaceInBytes', 'IsBootVolume': 'IsBootVolume'}, 145: {'Descr': 'IO latency summary common data for volume', 'Provider': 'Microsoft-Windows-Ntfs', 'VolumeCorrelationId': 'VolumeGuid', 'VolumeName': 'VolumeName', 'IsBootVolume': 'IsBootVolume'}, 151: {'Descr': 'In the past <SecondsElapsed> seconds <TotalCountDeleteFile> files were deleted', 'Provider': 'Microsoft-Windows-Ntfs', 'VolumeCorrelationId': 'VolumeGuid', 'VolumeName': 'VolumeName', 'IsBootVolume': 'IsBootVolume', 'SecondsElapsed': 'SecondsElapsed', 'TotalCountDeleteFile': 'TotalCountDeleteFile', 'TotalCountDeleteFileLogged': 'TotalCountDeleteFileLogged', 'ProcessName': 'ProcessName', 'CountDeleteFile': 'CountDeleteFile'}, 158: {'Descr': 'IO latency summary common data for volume', 'Provider': 'Microsoft-Windows-Ntfs', 'VolumeCorrelationId': 'VolumeGuid', 'VolumeName': 'VolumeName', 'UserFileReads': 'UserFileReads', 'UserFileReadBytes': 'UserFileReadBytes', 'UserDiskReads': 'UserDiskReads', 'UserFileWrites': 'UserFileWrites', 'UserFileWriteBytes': 'UserFileWriteBytes', 'UserDiskWrites': 'UserDiskWrites'}}
offlinef = {7: {'Descr': 'User logon detected: <Username> <Session>', 'Provider': 'Microsoft-Windows-OfflineFiles', 'Account': 'TargetUsername', 'Session': 'TargetSessionId'}, 8: {'Descr': 'User logoff detected: <Username> <Session>', 'Provider': 'Microsoft-Windows-OfflineFiles', 'Account': 'TargetUsername', 'Session': 'TargetSessionId'}}
oalerts = {300: {'Descr': 'Microsoft Office Alert'}}
partition = {1006: {'Descr': 'A device is connected or disconnected from the system', 'Provider': 'Microsoft-Windows-Partition', 'Version': 'Version', 'DiskNumber': 'DiskNumber', 'Flags': 'Flags', 'Characteristics': 'Characteristics', 'BytesPerSector': 'BytesPerSector', 'BytesPerLogicalSector': 'BytesPerLogicalSector', 'BytesPerPhysicalSector': 'BytesPerPhysicalSector', 'BytesOffsetForSectorAlignment': 'BytesOffsetForSectorAlignment', 'Capacity': 'Capacity', 'BusType': '+BusType', 'Manufacturer': 'Vendor', 'Model': 'Product', 'Revision': 'ProductRevision', 'SerialNumber': 'SerialNumber', 'Location': 'Location', 'ParentId': 'ParentId', 'DiskId': 'DiskId', 'AdapterId': 'AdapterId', 'RegistryId': 'RegistryId', 'PoolId': 'PoolId', 'StorageIdType': '+StorageIdType', 'StorageIdAssociation': '+StorageIdAssoc', 'StorageId': 'StorageId', 'IsTrimSupported': 'IsTrimSupported', 'IsThinProvisioned': 'IsThinProvisioned', 'HybridSupported': 'HybridSupported', 'HybridCacheBytes': 'HybridCacheBytes', 'AdapterSerialNumber': 'AdapterSerialNumber', 'UserRemovalPolicy': 'UserRemovalPolicy', 'PartitionStyle': '+PartitionStyle', 'PartitionCount': 'PartitionCount', 'PartitionTableBytes': 'PartitionTableBytes', 'MbrBytes': 'MbrBytes', 'Vbr0Bytes': 'Vbr0Bytes', 'Vbr1Bytes': 'Vbr1Bytes', 'Vbr2Bytes': 'Vbr2Bytes', 'Vbr3Size': 'Vbr3Bytes'}}
printsvc = {307: {'Descr': 'Spooler operation succeeded', 'Provider': 'Microsoft-Windows-PrintService', 'param1': 'JobId', 'param2': 'JobName', 'param3': 'DocumentOwner', 'param4': 'Host', 'param5': 'PrinterName', 'param6': 'PrinterPort', 'param7': 'Size', 'param8': 'Pages'}}
pshell1 = {400: {'Descr': 'Engine state is changed from <PreviousEngineState> to <NewEngineState>'}, 403: {'Descr': 'Engine state is changed from <PreviousEngineState> to <NewEngineState>'}, 500: {'Descr': 'Command <CommandName> is <NewCommandState>'}, 501: {'Descr': 'Command <CommandName> is <NewCommandState>'}, 600: {'Descr': 'Provider <ProviderName> is <NewProviderState>'}, 800: {'Descr': 'Pipeline execution details for command line: <CommandLine>'}}
pshell2 = {4100: {'Descr': '<Payload> Context: <ContextInfo>', 'Provider': 'Microsoft-Windows-PowerShell', 'ContextInfo': 'ContextInfo', 'UserData': 'UserData', 'Payload': 'Payload'}, 4103: {'Descr': '<Payload> Context: <ContextInfo>', 'Provider': 'Microsoft-Windows-PowerShell', 'ContextInfo': 'ContextInfo', 'UserData': 'UserData', 'Payload': 'Payload'}, 4104: {'Descr': 'Creating Scriptblock text (<MessageNumber> of <MessageTotal>)', 'Provider': 'Microsoft-Windows-PowerShell', 'MessageNumber': 'MessageNumber', 'MessageTotal': 'MessageTotal', 'ScriptBlockText': 'ScriptBlockText', 'ScriptBlockId': 'ScriptBlockId', 'Path': 'Path'}, 8193: {'Descr': 'Creating Runspace object', 'Provider': 'Microsoft-Windows-PowerShell', 'param1': 'InstanceId'}, 8194: {'Descr': 'Creating RunspacePool object', 'Provider': 'Microsoft-Windows-PowerShell', 'InstanceId': 'InstanceId', 'MaxRunspaces': 'MaxRunspaces', 'MinRunspaces': 'MinRunspaces'}, 8197: {'Descr': 'Runspace state changed to <Status>', 'Provider': 'Microsoft-Windows-PowerShell', 'param1': 'Status'}, 24577: {'Descr': 'Windows PowerShell ISE has started to run script file %1', 'Provider': 'Microsoft-Windows-PowerShell', 'FileName': 'FileName'}, 24578: {'Descr': 'Windows PowerShell ISE has started to run a user-selected script from file %1', 'Provider': 'Microsoft-Windows-PowerShell', 'FileName': 'FileName'}, 40961: {'Descr': 'PowerShell console is starting up', 'Provider': 'Microsoft-Windows-PowerShell'}, 40962: {'Descr': 'PowerShell console is ready for user input', 'Provider': 'Microsoft-Windows-PowerShell'}, 53504: {'Descr': 'Windows PowerShell has started an IPC listening thread on <ProcessPath> in <AppDomain>', 'Provider': 'Microsoft-Windows-PowerShell', 'param1': 'ProcessId', 'param2': 'AppDomain'}}
rcm = {261: {'Descr': 'Listener <ListenerName> received a connection', 'Provider': 'Microsoft-Windows-TerminalServices-RemoteConnectionManager', 'listenerName': 'ListenerName'}, 1149: {'Descr': 'Remote Desktop Services: User authentication established', 'Provider': 'Microsoft-Windows-TerminalServices-RemoteConnectionManager', 'Param1': 'TargetUsername', 'Param2': 'TargetDomain', 'Param3': 'IP'}}
rdpclient = {1024: {'Descr': 'RDP ClientActiveX is trying to connect to <TargetHost>', 'Provider': 'Microsoft-Windows-TerminalServices-ClientActiveXCore', 'Value': 'TargetHost'}, 1026: {'Descr': 'RDP ClientActiveX has been disconnected: <Reason>', 'Provider': 'Microsoft-Windows-TerminalServices-ClientActiveXCore', 'Value': 'Reason'}, 1027: {'Descr': 'Connected to <TargetDomain> with <TargetSessionId>', 'Provider': 'Microsoft-Windows-TerminalServices-ClientActiveXCore', 'DomainName': 'TargetDomain', 'SessionID': 'TargetSessionId'}, 1029: {'Descr': 'This event is raised during the connection process: Base64(SHA256(<TargetUsername))', 'Provider': 'Microsoft-Windows-TerminalServices-ClientActiveXCore', 'TraceMessage': 'TargetUsername'}, 1102: {'Descr': 'This event is raised during the connection process', 'Provider': 'Microsoft-Windows-TerminalServices-ClientActiveXCore', 'Value': 'TargetIP'}}
rdpcorets = {98: {'Descr': 'A TCP connection has been successfully established', 'Provider': 'Microsoft-Windows-RemoteDesktopServices-RdpCoreTS'}, 131: {'Descr': 'The server accepted a new <Protocol> connection from <IPPort>', 'Provider': 'Microsoft-Windows-RemoteDesktopServices-RdpCoreTS', 'ConnType': 'Protocol', 'ClientIP': 'IPPort'}, 148: {'Descr': '<ChannelName> has been closed between the server and the client on transport tunnel <TunnelID>', 'Provider': 'Microsoft-Windows-RemoteDesktopServices-RdpCoreTS', 'ChannelName': 'ChannelName', 'TunnelID': 'TunnelID'}}
scpnp = {507: {'Descr': 'Completing a failed non-ReadWrite SCSI SRB request', 'Provider': 'Microsoft-Windows-StorDiag', 'DeviceGUID': 'DeviceGuid', 'DeviceNumber': 'DeviceNumber', 'Vendor': 'Vendor', 'Model': 'Product', 'FirmwareVersion': 'ProductRevision', 'SerialNumber': 'SerialNumber'}}
sch = {100: {'Descr': 'Task Scheduler started <TaskInstanceId> of the <TaskName> task for user <Username>', 'Provider': 'Microsoft-Windows-TaskScheduler', 'TaskName': 'TaskName', 'UserContext': 'Username', 'InstanceId': 'TaskInstanceId'}, 101: {'Descr': 'Task Scheduler failed to start <TaskName> task for user <Username>', 'Provider': 'Microsoft-Windows-TaskScheduler', 'TaskName': 'TaskName', 'UserContext': 'Username', 'ResultCode': 'ResultCode'}, 102: {'Descr': 'Task Scheduler successfully finished <TaskInstanceId> of the <TaskName> task for user <Username>', 'Provider': 'Microsoft-Windows-TaskScheduler', 'TaskName': 'TaskName', 'UserContext': 'Username', 'InstanceId': 'TaskInstanceId'}, 106: {'Descr': '<Username> registered Task Scheduler <TaskName>', 'Provider': 'Microsoft-Windows-TaskScheduler', 'TaskName': 'TaskName', 'UserContext': 'Username'}, 118: {'Descr': 'Task Scheduler launched <TaskInstanceId> of <TaskName> due to system startup', 'Provider': 'Microsoft-Windows-TaskScheduler', 'TaskName': 'TaskName', 'InstanceId': 'TaskInstanceId'}, 119: {'Descr': 'Task Scheduler launched <TaskInstanceId of <TaskName> due to <Username> logon', 'Provider': 'Microsoft-Windows-TaskScheduler', 'TaskName': 'TaskName', 'UserName': 'Username', 'InstanceId': 'TaskInstanceId'}, 129: {'Descr': 'Task Scheduler launch task <TaskName>, instance <ProcessPath> with process ID <ProcessId>', 'Provider': 'Microsoft-Windows-TaskScheduler', 'TaskName': 'TaskName', 'Path': 'ProcessPath', 'ProcessID': 'ProcessId', 'Priority': 'ProcessPriority'}, 140: {'Descr': '<Username> updated Task Scheduler <TaskName>', 'Provider': 'Microsoft-Windows-TaskScheduler', 'TaskName': 'TaskName', 'UserName': 'Username'}, 141: {'Descr': '<Username> deleted Task Scheduler <TaskName>', 'Provider': 'Microsoft-Windows-TaskScheduler', 'TaskName': 'TaskName', 'UserName': 'Username'}}
shell = {9707: {'Descr': 'Started execution of <Command>', 'Provider': 'Microsoft-Windows-Shell-Core', 'Command': 'Command'}, 9708: {'Descr': 'Finished execution of <Command> (PID <ProcessPid>)', 'Provider': 'Microsoft-Windows-Shell-Core', 'Command': 'Command', 'PID': 'ProcessId'}, 28115: {'Descr': 'Shortcut for <AppName> with <AppID> and <Flags> is added to app resolver cache', 'Provider': 'Microsoft-Windows-Shell-Core', 'Name': 'AppName', 'AppID': 'AppID', 'Flags': 'Flags'}}
smbclient = {31001: {'Descr': 'Failed logon to <ServerName>', 'Provider': 'Microsoft-Windows-SmbClient', 'Reason': 'Reason', 'Status': 'Status', 'SecurityStatus': 'SecurityStatus', 'TargetLogonId': 'TargetLogonId', 'UserName': 'TargetUsername', 'ServerName': 'TargetHost', 'PrincipalName': 'PrincipalName'}, 31010: {'Descr': 'The SMB client failed to connect to the share.', 'Provider': 'Microsoft-Windows-SmbClient', 'Reason': 'Reason', 'Status': 'Status', 'ShareName': 'ShareName', 'ObjectName': 'ObjectName'}}
smbserver1 = {551: {'Descr': 'Smb Session Authentication Failure', 'Provider': 'Microsoft-Windows-SMBServer', 'SessionGUID': 'SessionGuid', 'ConnectionGUID': 'ConnectionGuid', 'Status': 'Status'}, 552: {'Descr': 'SMB2 Session Authentication Success', 'Provider': 'Microsoft-Windows-SMBServer', 'SessionGUID': 'SessionGuid', 'ConnectionGUID': 'ConnectionGuid', 'UserName': 'TargetUsername', 'DomainName': 'TargetDomain'}, 553: {'Descr': 'SMB2 Session Bound to Connection', 'Provider': 'Microsoft-Windows-SMBServer', 'SessionGUID': 'SessionGuid', 'ConnectionGUID': 'ConnectionGuid', 'BindingSessionGUID': 'BindingSessionGuid'}, 554: {'Descr': 'Session Terminated', 'Provider': 'Microsoft-Windows-SMBServer', 'SessionGUID': 'SessionGuid', 'Reason': 'Reason'}, 600: {'Descr': 'SMB2 TreeConnect Allocated', 'Provider': 'Microsoft-Windows-SMBServer', 'TreeConnectGUID': 'TreeConnectGuid', 'SessionGUID': 'SessionGuid', 'ConnectionGUID': 'ConnectionGuid', 'ShareGUID': 'ShareGuid', 'ShareName': 'ShareName', 'ScopeName': 'ScopeName', 'ShareProperties': 'ShareProperties'}, 601: {'Descr': 'SMB2 TreeConnect Disconnected', 'Provider': 'Microsoft-Windows-SMBServer', 'TreeConnectGUID': 'TreeConnectGuid', 'SessionGUID': 'SessionGuid', 'ConnectionGUID': 'ConnectionGuid'}, 602: {'Descr': 'SMB2 TreeConnect Terminated', 'Provider': 'Microsoft-Windows-SMBServer', 'TreeConnectGUID': 'TreeConnectGuid', 'SessionGUID': 'SessionGuid'}, 700: {'Descr': 'SMB2 Share Added', 'Provider': 'Microsoft-Windows-SMBServer', 'ShareName': 'ShareName', 'ServerName': 'ServerName', 'PathName': 'PathName', 'CSCState': 'CSCState', 'ClusterShareType': 'ClusterShareType', 'ShareProperties': 'ShareProperties', 'CaTimeOut': 'CaTimeOut', 'ShareState': 'ShareState'}, 701: {'Descr': 'SMB2 Share Modified', 'Provider': 'Microsoft-Windows-SMBServer', 'ShareName': 'ShareName', 'ServerName': 'ServerName', 'PathName': 'PathName', 'CSCState': 'CSCState', 'ClusterShareType': 'ClusterShareType', 'ShareProperties': 'ShareProperties', 'CaTimeOut': 'CaTimeOut', 'ShareState': 'ShareState'}, 702: {'Descr': 'SMB2 Share Deleted', 'Provider': 'Microsoft-Windows-SMBServer', 'ShareName': 'ShareName', 'ServerName': 'ServerName'}}
smbserver2 = {3000: {'Descr': 'SMB1 access', 'Provider': 'Microsoft-Windows-SMBServer', 'ClientName': 'ClientName'}}
smbserver3 = {1022: {'Descr': 'File and printer sharing firewall rule enabled', 'Provider': 'Microsoft-Windows-SMBServer'}}
smbserver4 = {1023: {'Descr': 'One or more shares present on this server have access based enumeration enabled', 'Provider': 'Microsoft-Windows-SMBServer'}, 1024: {'Descr': 'SMB2 and SMB3 have been disabled on this server', 'Provider': 'Microsoft-Windows-SMBServer'}, 1025: {'Descr': 'One or more named pipes or shares have been marked for access by anonymous users', 'Provider': 'Microsoft-Windows-SMBServer'}}
smbserver5 = {551: {'Descr': 'SMB session authentication failure', 'Provider': 'Microsoft-Windows-SMBServer', 'SessionGUID': 'SessionGuid', 'ConnectionGUID': 'ConnectionGuid', 'Status': 'Status', 'TranslatedStatus': 'TranslatedStatus', 'ClientAddress': 'ClientAddress', 'SessionId': 'SessionId', 'UserName': 'Username', 'ClientName': 'ClientName'}, 1006: {'Descr': 'The share denied access to the client', 'Provider': 'Microsoft-Windows-SMBServer', 'ShareName': 'ShareName', 'SharePath': 'SharePath', 'ClientAddress': 'ClientAddress', 'UserName': 'Username', 'ClientName': 'ClientName', 'MappedAccess': 'MappedAccess', 'GrantedAccess': 'GrantedAccess', 'ShareSecurityDescriptor': 'ShareSecurityDescriptor', 'Status': 'Status', 'TranslatedStatus': 'TranslatedStatus', 'SessionID': 'SessionID'}, 1007: {'Descr': 'The share denied anonymous access to the client', 'Provider': 'Microsoft-Windows-SMBServer', 'ShareName': 'ShareName', 'SharePath': 'SharePath', 'ClientAddress': 'ClientAddress', 'ClientName': 'ClientName'}, 1009: {'Descr': 'The share denied anonymous access to the client', 'Provider': 'Microsoft-Windows-SMBServer', 'ClientAddress': 'ClientAddress', 'ClientName': 'ClientName', 'SessionID': 'SessionId', 'SessionGUID': 'SessionGuid', 'ConnectionGUID': 'ConnectionGuid'}, 1021: {'Descr': 'LmCompatibilityLevel value is different from the default', 'Provider': 'Microsoft-Windows-SMBServer', 'ConfiguredLmCompatibilityLevel': '+ConfiguredLmCompatibilityLevel', 'DefaultLmCompatibilityLevel': '+DefaultLmCompatibilityLevel'}}
storspaces = {207: {'Descr': 'Physical disk <DriveId> arrived', 'Provider': 'Microsoft-Windows-StorageSpaces-Driver', 'DriveId': 'DiskId', 'PoolId': 'PoolId', 'DeviceNumber': 'DiskNumber', 'DriveManufacturer': 'Vendor', 'DriveModel': 'Product', 'DriveSerial': 'SerialNumber'}}
storsvc = {1001: {'Descr': 'NIL', 'Provider': 'Microsoft-Windows-Storsvc', 'Version': 'Version', 'DiskNumber': 'DiskNumber', 'VendorId': 'Vendor', 'ProductId': 'Product', 'ProductRevision': 'ProductRevision', 'SerialNumber': 'SerialNumber', 'ParentId': 'ParentId', 'FileSystem': 'FileSystem', 'BusType': '+BusType', 'PartitionStyle': '+PartitionStyle', 'VolumeCount': 'VolumeCount', 'ContainsRawVolumes': 'ContainsRawVolumes', 'Size': 'Capacity'}, 1002: {'Descr': 'NIL', 'Provider': 'Microsoft-Windows-Storsvc', 'Version': 'Version', 'Epoch': 'Epoch', 'DiskIndex': 'DiskIndex', 'TotalDisks': 'TotalDisks', 'DiskNumber': 'DiskNumber', 'VendorId': 'Vendor', 'ProductId': 'Product', 'ProductRevision': 'ProductRevision', 'SerialNumber': 'SerialNumber', 'ParentId': 'ParentId', 'FileSystem': 'FileSystem', 'BusType': '+BusType', 'PartitionStyle': '+PartitionStyle', 'VolumeCount': 'VolumeCount', 'ContainsRawVolumes': 'ContainsRawVolumes', 'Size': 'Capacity'}}
symantec = {51: {'Descr': 'Detection Finish'}}
wdef = {1006: {'Descr': '<ProductName> has detected malware or other potentially unwanted software', 'Provider': 'Microsoft-Windows-Windows Defender', 'Product Name': 'ProductName', 'Product Version': 'ProductVersion', 'Detection ID': 'DetectionId', 'Detection Source': 'Source', 'Process Name': 'ProcessPath', 'Domain': 'Domain', 'User': 'Username', 'SID': 'SID', 'Threat ID': 'ThreatId', 'Threat Name': 'Threat', 'Severity Name': 'Severity', 'Category Name': 'Category', 'FWLink': 'Link', 'Path Found': 'Path', 'Detection Origin': 'Origin', 'Execution Status': 'ExecutionStatus', 'Detection Type': 'Type', 'Signature Version': 'SignatureVersion', 'Engine Version': 'EngineVersion'}, 1007: {'Descr': '<ProductName> has taken action to protect this machine from malware or other potentially unwanted software', 'Provider': 'Microsoft-Windows-Windows Defender', 'Product Name': 'ProductName', 'Product Version': 'ProductVersion', 'Detection ID': 'DetectionId', 'Status Description': 'Status', 'Domain': 'Domain', 'User': 'Username', 'SID': 'SID', 'Threat ID': 'ThreatId', 'Threat Name': 'Threat', 'Severity Name': 'Severity', 'Category Name': 'Category', 'FWLink': 'Link', 'Path': 'Path', 'Cleaning Action': 'Cleaning Action', 'Signature Version': 'SignatureVersion', 'Engine Version': 'EngineVersion'}, 1008: {'Descr': '<ProductName> has encountered an error when taking action on malware or other potentially unwanted software', 'Provider': 'Microsoft-Windows-Windows Defender', 'Product Name': 'ProductName', 'Product Version': 'ProductVersion', 'Detection ID': 'DetectionId', 'Status Description': 'Status', 'Domain': 'Domain', 'User': 'Username', 'SID': 'SID', 'Threat ID': 'ThreatId', 'Threat Name': 'Threat', 'Severity Name': 'Severity', 'Category Name': 'Category', 'FWLink': 'Link', 'Path': 'Path', 'Error Code': 'ErrorCode', 'Error Description': 'Error', 'Signature Version': 'SignatureVersion', 'Engine Version': 'EngineVersion'}, 1009: {'Descr': '<ProductName> has restored an item from quarantine', 'Provider': 'Microsoft-Windows-Windows Defender', 'Product Name': 'ProductName', 'Product Version': 'ProductVersion', 'Domain': 'Domain', 'User': 'Username', 'SID': 'SID', 'Threat ID': 'ThreatId', 'Threat Name': 'Threat', 'Severity Name': 'Severity', 'Category Name': 'Category', 'FWLink': 'Link', 'Path': 'Path', 'Signature Version': 'SignatureVersion', 'Engine Version': 'EngineVersion'}, 1010: {'Descr': '<ProductName> has encountered an error trying to restore an item from quarantine', 'Provider': 'Microsoft-Windows-Windows Defender', 'Product Name': 'ProductName', 'Product Version': 'ProductVersion', 'Error Code': 'ErrorCode', 'Error Description': 'Error', 'Domain': 'Domain', 'User': 'Username', 'SID': 'SID', 'Threat ID': 'ThreatId', 'Threat Name': 'Threat', 'Severity Name': 'Severity', 'Category Name': 'Category', 'FWLink': 'Link', 'Path': 'Path', 'Signature Version': 'SignatureVersion', 'Engine Version': 'EngineVersion'}, 1011: {'Descr': '<ProductName> has deleted an item from quarantine', 'Provider': 'Microsoft-Windows-Windows Defender', 'Product Name': 'ProductName', 'Product Version': 'ProductVersion', 'Domain': 'Domain', 'User': 'Username', 'SID': 'SID', 'Threat ID': 'ThreatId', 'Threat Name': 'Threat', 'Severity Name': 'Severity', 'Category Name': 'Category', 'FWLink': 'Link', 'Path': 'Path', 'Signature Version': 'SignatureVersion', 'Engine Version': 'EngineVersion'}, 1012: {'Descr': '<ProductName> has encountered an error trying to restore an item from quarantine', 'Provider': 'Microsoft-Windows-Windows Defender', 'Product Name': 'ProductName', 'Product Version': 'ProductVersion', 'Error Code': 'ErrorCode', 'Error Description': 'Error', 'Domain': 'Domain', 'User': 'Username', 'SID': 'SID', 'Threat ID': 'ThreatId', 'Threat Name': 'Threat', 'Severity Name': 'Severity', 'Category Name': 'Category', 'FWLink': 'Link', 'Path': 'Path', 'Signature Version': 'SignatureVersion', 'Engine Version': 'EngineVersion'}, 1015: {'Descr': '<ProductName> has detected a suspicious behavior', 'Provider': 'Microsoft-Windows-Windows Defender', 'Product Name': 'ProductName', 'Product Version': 'ProductVersion', 'Detection ID': 'DetectionId', 'Detection Source': 'Source', 'Process Name': 'ProcessPath', 'Domain': 'Domain', 'User': 'Username', 'SID': 'SID', 'Threat ID': 'ThreatId', 'Threat Name': 'Threat', 'Severity Name': 'Severity', 'Category Name': 'Category', 'FWLink': 'Link', 'Path Found': 'Path', 'Detection Origin': 'Origin', 'Execution Status': 'ExecutionStatus', 'Detection Type': 'Type', 'Signature Version': 'SignatureVersion', 'Engine Version': 'EngineVersion', 'Process ID': 'ProcessId', 'Signature ID': 'SignatureId', 'FidelityValue': 'FidelityValue', 'FidelityLabel': 'FidelityLabel', 'Image File Hash': 'ImageFileHash', 'TargetFileName': 'TargetFileName', 'TargetFileHash': 'TargetFileHash'}, 1116: {'Descr': '<ProductName> has detected malware or other potentially unwanted software', 'Provider': 'Microsoft-Windows-Windows Defender', 'Product Name': 'ProductName', 'Product Version': 'ProductVersion', 'Detection ID': 'DetectionId', 'Detection Time': 'DetectionTime', 'Threat Name': 'Threat', 'Severity Name': 'Severity', 'Category Name': 'Category', 'FWLink': 'Link', 'Status Description': 'Status', 'Source Name': 'Source', 'Process Name': 'ProcessPath', 'Detection User': 'DetectionUser', 'Path': 'Path', 'Origin Name': 'Origin', 'Execution Name': 'Execution', 'Type Name': 'Type', 'Action Name': 'Action', 'Error Code': 'ErrorCode', 'Error Description': 'Error', 'Post Clean Status': 'PostCleanStatus', 'Additional Actions String': 'AdditionalActions', 'Remediation User': 'RemediationUser', 'Signature Version': 'SignatureVersion', 'Engine Version': 'EngineVersion'}, 1117: {'Descr': '<ProductName> has taken action to protect this machine from malware or other potentially unwanted software', 'Provider': 'Microsoft-Windows-Windows Defender', 'Product Name': 'ProductName', 'Product Version': 'ProductVersion', 'Detection ID': 'DetectionId', 'Detection Time': 'DetectionTime', 'Threat Name': 'Threat', 'Severity Name': 'Severity', 'Category Name': 'Category', 'FWLink': 'Link', 'Status Description': 'Status', 'Source Name': 'Source', 'Process Name': 'ProcessPath', 'Detection User': 'DetectionUser', 'Path': 'Path', 'Origin Name': 'Origin', 'Execution Name': 'Execution', 'Type Name': 'Type', 'Action Name': 'Action', 'Error Code': 'ErrorCode', 'Error Description': 'Error', 'Post Clean Status': 'PostCleanStatus', 'Additional Actions String': 'AdditionalActions', 'Remediation User': 'RemediationUser', 'Signature Version': 'SignatureVersion', 'Engine Version': 'EngineVersion'}, 1118: {'Descr': '<ProductName> has encountered a non-critical error when taking action on malware or other potentially unwanted software', 'Provider': 'Microsoft-Windows-Windows Defender', 'Product Name': 'ProductName', 'Product Version': 'ProductVersion', 'Detection ID': 'DetectionId', 'Detection Time': 'DetectionTime', 'Threat Name': 'Threat', 'Severity Name': 'Severity', 'Category Name': 'Category', 'FWLink': 'Link', 'Status Description': 'Status', 'Source Name': 'Source', 'Process Name': 'ProcessPath', 'Detection User': 'DetectionUser', 'Path': 'Path', 'Origin Name': 'Origin', 'Execution Name': 'Execution', 'Type Name': 'Type', 'Action Name': 'Action', 'Error Code': 'ErrorCode', 'Error Description': 'Error', 'Post Clean Status': 'PostCleanStatus', 'Additional Actions String': 'AdditionalActions', 'Remediation User': 'RemediationUser', 'Signature Version': 'SignatureVersion', 'Engine Version': 'EngineVersion'}, 1119: {'Descr': '<ProductName> has encountered a critical error when taking action on malware or other potentially unwanted software', 'Provider': 'Microsoft-Windows-Windows Defender', 'Product Name': 'ProductName', 'Product Version': 'ProductVersion', 'Detection ID': 'DetectionId', 'Detection Time': 'DetectionTime', 'Threat Name': 'Threat', 'Severity Name': 'Severity', 'Category Name': 'Category', 'FWLink': 'Link', 'Status Description': 'Status', 'Source Name': 'Source', 'Process Name': 'ProcessPath', 'Detection User': 'DetectionUser', 'Path': 'Path', 'Origin Name': 'Origin', 'Execution Name': 'Execution', 'Type Name': 'Type', 'Action Name': 'Action', 'Error Code': 'ErrorCode', 'Error Description': 'Error', 'Post Clean Status': 'PostCleanStatus', 'Additional Actions String': 'AdditionalActions', 'Remediation User': 'RemediationUser', 'Signature Version': 'SignatureVersion', 'Engine Version': 'EngineVersion'}, 1160: {'Descr': '<ProductName has detected potentially unwanted application (PUA)', 'Provider': 'Microsoft-Windows-Windows Defender', 'Product Name': 'ProductName', 'Product Version': 'ProductVersion', 'Detection ID': 'DetectionId', 'Detection Time': 'DetectionTime', 'Threat Name': 'Threat', 'Severity Name': 'Severity', 'Category Name': 'Category', 'FWLink': 'Link', 'Status Description': 'Status', 'Source Name': 'Source', 'Process Name': 'ProcessPath', 'Detection User': 'DetectionUser', 'Path': 'Path', 'Origin Name': 'Origin', 'Execution Name': 'Execution', 'Type Name': 'Type', 'Action Name': 'Action', 'Error Code': 'ErrorCode', 'Error Description': 'Error', 'Post Clean Status': 'PostCleanStatus', 'Additional Actions String': 'AdditionalActions', 'Remediation User': 'RemediationUser', 'Signature Version': 'SignatureVersion', 'Engine Version': 'EngineVersion'}, 2050: {'Descr': '<ProductName> has uploaded a file for further analysis', 'Provider': 'Microsoft-Windows-Windows Defender', 'Product Name': 'ProductName', 'Product Version': 'ProductVersion', 'Filename': 'FileName', 'Sha256': 'FileHash'}, 2051: {'Descr': '<ProductName> has encountered an error trying to upload a suspicious file for further analysis', 'Provider': 'Microsoft-Windows-Windows Defender', 'Product Name': 'ProductName', 'Product Version': 'ProductVersion', 'Filename': 'FileName', 'Sha256': 'FileHash', 'Signature Version': 'SignatureVersion', 'Engine Version': 'EngineVersion', 'Error Code': 'ErrorCode'}, 3002: {'Descr': '<ProductName> Real-Time Protection feature has encountered an error and failed', 'Provider': 'Microsoft-Windows-Windows Defender', 'Product Name': 'ProductName', 'Product Version': 'ProductVersion', 'Feature Name': 'Feature', 'Reason': 'Reason', 'Error Code': 'ErrorCode', 'Error Description': 'ErrorDescr', 'Feature ID': 'FeatureId'}, 3007: {'Descr': '<ProductName> Real-time Protection feature has restarted', 'Provider': 'Microsoft-Windows-Windows Defender', 'Product Name': 'ProductName', 'Product Version': 'ProductVersion', 'Feature Name': 'Feature', 'Reason': 'Reason', 'Feature ID': 'FeatureId'}, 5000: {'Descr': '<ProductName> Real-time Protection scanning for malware and other potentially unwanted software was enabled', 'Provider': 'Microsoft-Windows-Windows Defender', 'Product Name': 'ProductName', 'Product Version': 'ProductVersion'}, 5001: {'Descr': '<ProductName> Real-time Protection scanning for malware and other potentially unwanted software was disabled', 'Provider': 'Microsoft-Windows-Windows Defender', 'Product Name': 'ProductName', 'Product Version': 'ProductVersion'}, 5004: {'Descr': '<ProductName> Real-time Protection feature configuration has changed', 'Provider': 'Microsoft-Windows-Windows Defender', 'Product Name': 'ProductName', 'Product Version': 'ProductVersion', 'Feature Name': 'Feature', 'Feature ID': 'FeatureId'}, 5007: {'Descr': '<ProductName> Configuration has changed. If this is unexpected, you should review the settings as this may be the result of malware', 'Provider': 'Microsoft-Windows-Windows Defender', 'Product Name': 'ProductName', 'Product Version': 'ProductVersion', 'Old Value': 'OldValue', 'New Value': 'NewValue'}, 5008: {'Descr': '<ProductName> engine has been terminated due to an unexpected error', 'Provider': 'Microsoft-Windows-Windows Defender', 'Product Name': 'ProductName', 'Product Version': 'ProductVersion', 'Resource': 'Resource', 'Failure Type': 'FailureType', 'Exception Code': 'ExceptionCode'}, 5009: {'Descr': '<ProductName> scanning for spyware and other potentially unwanted software has been enabled', 'Provider': 'Microsoft-Windows-Windows Defender', 'Product Name': 'ProductName', 'Product Version': 'ProductVersion'}, 5010: {'Descr': '<ProductName> scanning for spyware and other potentially unwanted software is disabled', 'Provider': 'Microsoft-Windows-Windows Defender', 'Product Name': 'ProductName', 'Product Version': 'ProductVersion'}, 5011: {'Descr': '<ProductName> scanning for viruses has been enabled', 'Provider': 'Microsoft-Windows-Windows Defender', 'Product Name': 'ProductName', 'Product Version': 'ProductVersion'}, 5012: {'Descr': '<ProductName> scanning for viruses is disabled', 'Provider': 'Microsoft-Windows-Windows Defender', 'Product Name': 'ProductName', 'Product Version': 'ProductVersion'}, 5013: {'Descr': 'Tamper Protection <ChangedType> to <Value>', 'Provider': 'Microsoft-Windows-Windows Defender', 'Product Name': 'ProductName', 'Product Version': 'ProductVersion', 'Changed Type': 'ChangedType', 'Value': 'Value'}}
winrm = {6: {'Descr': 'Creating WSMan session. The connection string is <Connection>', 'Provider': 'Microsoft-Windows-WinRM', 'connection': 'Connection'}, 8: {'Descr': 'Closing WSMan session', 'Provider': 'Microsoft-Windows-WinRM'}, 15: {'Descr': 'Closing WSMan command', 'Provider': 'Microsoft-Windows-WinRM'}, 16: {'Descr': 'Closing WSMan shell', 'Provider': 'Microsoft-Windows-WinRM'}, 33: {'Descr': 'Closing WSMan session completed successfully', 'Provider': 'Microsoft-Windows-WinRM'}, 91: {'Descr': 'Creating WSMan shell on server with <ResourceUri>', 'Provider': 'Microsoft-Windows-WinRM', 'resourceUri': 'ResourceUri', 'shellId': 'ShellId'}, 169: {'Descr': '<TargetUsername> authenticated successfully using <AuthMechanism>', 'Provider': 'Microsoft-Windows-WinRM', 'username': 'TargetUsername', 'authenticationMechanism': 'AuthMechanism'}}
wlan = {8001: {'Descr': 'WLAN AutoConfig service has successfully connected to a wireless network', 'Provider': 'Microsoft-Windows-WLAN-AutoConfig', 'InterfaceGuid': 'InterfaceGuid', 'InterfaceDescription': 'InterfaceDescr', 'ConnectionMode': 'ConnectionMode', 'ProfileName': 'ProfileName', 'SSID': 'SSID', 'BSSType': 'BSSType', 'PHYType': 'PHYType', 'AuthenticationAlgorithm': 'AuthAlgo', 'CipherAlgorithm': 'CipherAlgo', 'OnexEnabled': 'IsOnexEnabled', 'ConnectionId': 'ConnectionId', 'NonBroadcast': 'IsNonBroadcast'}, 8002: {'Descr': 'WLAN AutoConfig service failed to connect to a wireless network', 'Provider': 'Microsoft-Windows-WLAN-AutoConfig', 'InterfaceGuid': 'InterfaceGuid', 'InterfaceDescription': 'InterfaceDescr', 'ConnectionMode': 'ConnectionMode', 'ProfileName': 'ProfileName', 'SSID': 'SSID', 'BSSType': 'BSSType', 'FailureReason': 'FailureReason', 'ReasonCode': 'ReasonCode', 'ConnectionId': 'ConnectionId', 'RSSI': 'RSSI'}, 8003: {'Descr': 'WLAN AutoConfig service has successfully disconnected from a wireless network', 'Provider': 'Microsoft-Windows-WLAN-AutoConfig', 'InterfaceGuid': 'InterfaceGuid', 'InterfaceDescription': 'InterfaceDescr', 'ConnectionMode': 'ConnectionMode', 'ProfileName': 'ProfileName', 'SSID': 'SSID', 'BSSType': 'BSSType', 'Reason': 'Reason', 'ConnectionId': 'ConnectionId', 'ReasonCode': 'ReasonCode'}, 11000: {'Descr': 'Wireless network association started', 'Provider': 'Microsoft-Windows-WLAN-AutoConfig', 'DeviceGuid': 'InterfaceGuid', 'Adapter': 'InterfaceDescr', 'LocalMac': 'LocalMac', 'SSID': 'SSID', 'BSSType': 'BSSType', 'Auth': 'AuthAlgo', 'Cipher': 'CipherAlgo', 'OnexEnabled': 'IsOnexEnabled', 'ConnectionId': 'ConnectionId', 'IhvConnectivitySetting': 'IhvConnectivitySetting'}, 11001: {'Descr': 'Wireless network association succeeded', 'Provider': 'Microsoft-Windows-WLAN-AutoConfig', 'DeviceGuid': 'InterfaceGuid', 'Adapter': 'InterfaceDescr', 'LocalMac': 'LocalMac', 'SSID': 'SSID', 'BSSType': 'BSSType', 'ConnectionId': 'ConnectionId', 'MgmtFrameProtection': 'MgmtFrameProtection'}, 11002: {'Descr': 'Wireless network association failed', 'Provider': 'Microsoft-Windows-WLAN-AutoConfig', 'DeviceGuid': 'InterfaceGuid', 'Adapter': 'InterfaceDescr', 'LocalMac': 'LocalMac', 'SSID': 'SSID', 'BSSType': 'BSSType', 'FailureReason': 'FailureReason', 'ReasonCode': 'ReasonCode', 'Dot11StatusCode': 'Dot11StatusCode', 'ConnectionId': 'ConnectionId', 'RSSI': 'RSSI'}}
wmi = {5857: {'Descr': '<ProviderName> started with <ResultCode>', 'ProviderName': 'ProviderName', 'Code': 'ResultCode', 'HostProcess': 'ProcessName', 'ProcessID': 'ProcessID', 'ProviderPath': 'ProviderPath'}, 5858: {'Descr': 'WMI execution error', 'Provider': 'Microsoft-Windows-WMI-Activity', 'ClientMachine': 'Hostname', 'User': 'Username', 'ClientProcessId': 'ProcessId', 'Component': 'Component', 'Operation': 'Operation', 'ResultCode': 'ResultCode', 'PossibleCause': 'PossibleCause'}, 5860: {'Descr': 'Registration of temporary event consumer', 'Provider': 'Microsoft-Windows-WMI-Activity', 'NamespaceName': 'Namespace', 'Query': 'Query', 'User': 'Username', 'processid': 'ProcessId', 'Processid': 'ProcessId', 'MachineName': 'Hostname', 'ClientMachine': 'Hostname', 'PossibleCause': 'PossibleCause'}, 5861: {'Descr': 'Registration of permanent event consumer', 'Provider': 'Microsoft-Windows-WMI-Activity', 'Namespace': 'Namespace', 'ESS': 'ESS', 'CONSUMER': 'Consumer', 'PossibleCause': 'PossibleCause'}} |
class Solution:
def arrayRankTransform(self, arr2: List[int]) -> List[int]:
d = {}
if len(arr2)==0: return []
ct = 1
arr = sorted(arr2)
d[arr[0]] = 1
for i in range(1,len(arr)):
if arr[i]>arr[i-1]:
ct+=1
d[arr[i]] = ct
res = [1] *len(arr)
for ind,i in enumerate(arr2):
if i in d:
res[ind] = d[i]
return res
| class Solution:
def array_rank_transform(self, arr2: List[int]) -> List[int]:
d = {}
if len(arr2) == 0:
return []
ct = 1
arr = sorted(arr2)
d[arr[0]] = 1
for i in range(1, len(arr)):
if arr[i] > arr[i - 1]:
ct += 1
d[arr[i]] = ct
res = [1] * len(arr)
for (ind, i) in enumerate(arr2):
if i in d:
res[ind] = d[i]
return res |
# Our server roles:
config.rdbms = ['127.0.0.1']
config.httpd = ['localhost']
def production():
# this would set `rdbms` and `httpd` to prod. values.
# for now we just switch them around in order to observe the effect
config.rdbms, config.httpd = config.httpd, config.rdbms
def build():
local('echo Building project')
@roles('rdbms')
def prepare_db():
run("echo Preparing database for deployment")
@roles('httpd')
def prepare_web():
run("echo Preparing web servers for deployment")
@depends(prepare_db, prepare_web)
@roles('httpd')
def deploy():
run("echo Doing final deployment things to $(fab_host)")
| config.rdbms = ['127.0.0.1']
config.httpd = ['localhost']
def production():
(config.rdbms, config.httpd) = (config.httpd, config.rdbms)
def build():
local('echo Building project')
@roles('rdbms')
def prepare_db():
run('echo Preparing database for deployment')
@roles('httpd')
def prepare_web():
run('echo Preparing web servers for deployment')
@depends(prepare_db, prepare_web)
@roles('httpd')
def deploy():
run('echo Doing final deployment things to $(fab_host)') |
# --------------
##File path for the file
file_path
#Code starts here
#Function to read file
def read_file(path):
#Opening of the file located in the path in 'read' mode
file = open(path, 'r')
#Reading of the first line of the file and storing it in a variable
sentence=file.readline()
#Closing of the file
file.close()
#Returning the first line of the file
return sentence
#Calling the function to read file
sample_message=read_file(file_path)
#Printing the line of the file
print(sample_message)
#Code ends here
#Code starts here
# --------------
#Code starts here
##File path for the file
file_path_1, file_path_2
#Code starts here
#Function to read file
def read_file1(file1):
#Opening of the file located in the path in 'read' mode
file1 = open(file_path_1, 'r')
#Reading of the first line of the file and storing it in a variable
sentence1=file1.readline()
#Closing of the file
file1.close()
#Returning the first line of the file
return sentence1
def read_file2(file2):
file2 = open(file_path_2,'r')
sentence2=file2.readline()
file2.close()
return sentence2
#Calling the function to read file
message_1=str(read_file1(file_path_1))
message_2=str(read_file2(file_path_2))
#Code ends here
def fuse_msg(message_a,message_b):
quotient=(int(message_b)//int(message_a))
return str(quotient)
secret_msg_1=fuse_msg(message_1,message_2)
#Code starts here
# --------------
#Code starts here
file_path_3
#Code starts here
#Function to read file
def read_file(file3):
#Opening of the file located in the path in 'read' mode
file3 = open(file_path_3, 'r')
#Reading of the first line of the file and storing it in a variable
sentence3=file3.readline()
#Closing of the file
file3.close()
#Returning the first line of the file
return sentence3
#Calling the function to read file
message_3=read_file(file_path_3)
#Printing the line of the file
print(message_3)
def substitute_msg(message_c):
if message_c =='Red':
sub=('Army General')
elif message_c == 'Green':
sub=('Data Scientist')
elif message_c == 'Blue':
sub=('Marine Biologist')
return sub
secret_msg_2=substitute_msg(message_3)
# --------------
# File path for message 4 and message 5
file_path_4
file_path_5
def compare_msg(message_d,message_e):
a_list=message_d.split(' ')
b_list=message_e.split(' ')
c_list=[i for i in a_list if i not in b_list]
final_msg=" ".join(c_list)
return final_msg
#Code starts here
message_4='I hope you are good now'
message_5='I hope good things happen in your life.'
print(message_4)
print(message_5)
secret_msg_3='you are now'
# --------------
#Code starts here
file_path_6
file6= open(file_path_6,'r')
message_6= file6.readline()
print(message_6)
def extract_msg(message_f):
a_list= message_f.split()
even_word = lambda message_f: len(message_f)%2==0
b_list=filter(even_word,a_list)
final_msg=' '.join(b_list)
return final_msg
secret_msg_4=extract_msg(message_6)
secret_msg_4 = str(secret_msg_4)
secret_msg_4
# --------------
#Secret message parts in the correct order
message_parts=[secret_msg_3, secret_msg_1, secret_msg_4, secret_msg_2]
secret_msg = ' '.join(message_parts)
print(secret_msg)
final_path= user_data_dir + '/secret_message.txt'
#Code starts here
def write_file(secret_msg,path):
g = open(final_path,'a+')
g.write(secret_msg)
g.close()
write_file(secret_msg,final_path)
| file_path
def read_file(path):
file = open(path, 'r')
sentence = file.readline()
file.close()
return sentence
sample_message = read_file(file_path)
print(sample_message)
(file_path_1, file_path_2)
def read_file1(file1):
file1 = open(file_path_1, 'r')
sentence1 = file1.readline()
file1.close()
return sentence1
def read_file2(file2):
file2 = open(file_path_2, 'r')
sentence2 = file2.readline()
file2.close()
return sentence2
message_1 = str(read_file1(file_path_1))
message_2 = str(read_file2(file_path_2))
def fuse_msg(message_a, message_b):
quotient = int(message_b) // int(message_a)
return str(quotient)
secret_msg_1 = fuse_msg(message_1, message_2)
file_path_3
def read_file(file3):
file3 = open(file_path_3, 'r')
sentence3 = file3.readline()
file3.close()
return sentence3
message_3 = read_file(file_path_3)
print(message_3)
def substitute_msg(message_c):
if message_c == 'Red':
sub = 'Army General'
elif message_c == 'Green':
sub = 'Data Scientist'
elif message_c == 'Blue':
sub = 'Marine Biologist'
return sub
secret_msg_2 = substitute_msg(message_3)
file_path_4
file_path_5
def compare_msg(message_d, message_e):
a_list = message_d.split(' ')
b_list = message_e.split(' ')
c_list = [i for i in a_list if i not in b_list]
final_msg = ' '.join(c_list)
return final_msg
message_4 = 'I hope you are good now'
message_5 = 'I hope good things happen in your life.'
print(message_4)
print(message_5)
secret_msg_3 = 'you are now'
file_path_6
file6 = open(file_path_6, 'r')
message_6 = file6.readline()
print(message_6)
def extract_msg(message_f):
a_list = message_f.split()
even_word = lambda message_f: len(message_f) % 2 == 0
b_list = filter(even_word, a_list)
final_msg = ' '.join(b_list)
return final_msg
secret_msg_4 = extract_msg(message_6)
secret_msg_4 = str(secret_msg_4)
secret_msg_4
message_parts = [secret_msg_3, secret_msg_1, secret_msg_4, secret_msg_2]
secret_msg = ' '.join(message_parts)
print(secret_msg)
final_path = user_data_dir + '/secret_message.txt'
def write_file(secret_msg, path):
g = open(final_path, 'a+')
g.write(secret_msg)
g.close()
write_file(secret_msg, final_path) |
def decompose(n):
return helper(n, n**2)
def helper(n, sum, arr=[]):
if sum==0:
return arr[::-1]
for i in range(n-1, -1, -1):
if i**2<=sum:
return helper(i, sum-i**2, arr+[i]) or helper(i, sum, arr) | def decompose(n):
return helper(n, n ** 2)
def helper(n, sum, arr=[]):
if sum == 0:
return arr[::-1]
for i in range(n - 1, -1, -1):
if i ** 2 <= sum:
return helper(i, sum - i ** 2, arr + [i]) or helper(i, sum, arr) |
class person:
def __init__(self, first_name, last_name):
self.first_name = first_name
self.last_name = last_name
def fullname(self):
return f"{self.first_name} {self.last_name}"
def email(self):
return f"{self.first_name}{self.last_name}@gmail.com"
| class Person:
def __init__(self, first_name, last_name):
self.first_name = first_name
self.last_name = last_name
def fullname(self):
return f'{self.first_name} {self.last_name}'
def email(self):
return f'{self.first_name}{self.last_name}@gmail.com' |
'''
Set Matrix Zeros
Asked in: Oracle, Amazon
https://www.interviewbit.com/problems/set-matrix-zeros/
Given a matrix, A of size M x N of 0s and 1s. If an element is 0, set its entire row and column to 0.
Note: This will be evaluated on the extra memory used. Try to minimize the space and time complexity.
Input Format:
The first and the only argument of input contains a 2-d integer matrix, A, of size M x N.
Output Format:
Return a 2-d matrix that satisfies the given conditions.
Constraints:
1 <= N, M <= 1000
0 <= A[i][j] <= 1
Examples:
Input 1:
[ [1, 0, 1],
[1, 1, 1],
[1, 1, 1] ]
Output 1:
[ [0, 0, 0],
[1, 0, 1],
[1, 0, 1] ]
Input 2:
[ [1, 0, 1],
[1, 1, 1],
[1, 0, 1] ]
Output 2:
[ [0, 0, 0],
[1, 0, 1],
[0, 0, 0] ]
'''
# @param A : list of list of integers
# @return the same list modified
def setZeroes(A):
if not A: return A
m = len(A)
n = len(A[0])
rows = [False] * m
cols = [False] * n
for i in range(m):
for j in range(n):
if A[i][j]==0:
rows[i] = True
cols[j] = True
for i in range(m):
for j in range(n):
if rows[i] or cols[j]:
A[i][j] = 0
return A
if __name__ == "__main__":
data = [
[
[[1, 0, 1],
[1, 1, 1],
[1, 1, 1]],
[[0, 0, 0],
[1, 0, 1],
[1, 0, 1]]
]
]
for d in data:
print('input', d[0], 'output', setZeroes(d[0])) | """
Set Matrix Zeros
Asked in: Oracle, Amazon
https://www.interviewbit.com/problems/set-matrix-zeros/
Given a matrix, A of size M x N of 0s and 1s. If an element is 0, set its entire row and column to 0.
Note: This will be evaluated on the extra memory used. Try to minimize the space and time complexity.
Input Format:
The first and the only argument of input contains a 2-d integer matrix, A, of size M x N.
Output Format:
Return a 2-d matrix that satisfies the given conditions.
Constraints:
1 <= N, M <= 1000
0 <= A[i][j] <= 1
Examples:
Input 1:
[ [1, 0, 1],
[1, 1, 1],
[1, 1, 1] ]
Output 1:
[ [0, 0, 0],
[1, 0, 1],
[1, 0, 1] ]
Input 2:
[ [1, 0, 1],
[1, 1, 1],
[1, 0, 1] ]
Output 2:
[ [0, 0, 0],
[1, 0, 1],
[0, 0, 0] ]
"""
def set_zeroes(A):
if not A:
return A
m = len(A)
n = len(A[0])
rows = [False] * m
cols = [False] * n
for i in range(m):
for j in range(n):
if A[i][j] == 0:
rows[i] = True
cols[j] = True
for i in range(m):
for j in range(n):
if rows[i] or cols[j]:
A[i][j] = 0
return A
if __name__ == '__main__':
data = [[[[1, 0, 1], [1, 1, 1], [1, 1, 1]], [[0, 0, 0], [1, 0, 1], [1, 0, 1]]]]
for d in data:
print('input', d[0], 'output', set_zeroes(d[0])) |
# -*- coding: utf-8 -*-
# Define your item pipelines here
#
# Don't forget to add your pipeline to the ITEM_PIPELINES setting
# See: https://doc.scrapy.org/en/latest/topics/item-pipeline.html
class MoviePipeline(object):
def process_item(self, item, spider):
with open('out/my_meiju.txt', 'a', encoding='UTF-8') as fp:
fp.write(str(item['name'].strip()) + '\n')
| class Moviepipeline(object):
def process_item(self, item, spider):
with open('out/my_meiju.txt', 'a', encoding='UTF-8') as fp:
fp.write(str(item['name'].strip()) + '\n') |
number = int(input())
synonyms_dict = dict()
for num in range (number):
word = input()
synonym = input()
if word not in synonyms_dict.keys():
synonyms_dict[word] = list()
synonyms_dict[word].append(synonym)
for word in synonyms_dict:
synonyms = ", ".join(synonyms_dict[word])
print(f"{word} - {synonyms}") | number = int(input())
synonyms_dict = dict()
for num in range(number):
word = input()
synonym = input()
if word not in synonyms_dict.keys():
synonyms_dict[word] = list()
synonyms_dict[word].append(synonym)
for word in synonyms_dict:
synonyms = ', '.join(synonyms_dict[word])
print(f'{word} - {synonyms}') |
class Person:
# allocate space for only these attributes so we don't need to create a __dict__ property in the class and we save space when parsing large files
__slots__ = ["lastName", "firstName", "middleInitial",
"gender", "favoriteColor", "dateOfBirth"]
def __init__(self, lastName, firstName, middleInitial, gender, favoriteColor, dateOfBirth):
self.lastName = lastName
self.firstName = firstName
self.middleInitial = middleInitial
self.gender = gender
self.favoriteColor = favoriteColor
self.dateOfBirth = dateOfBirth
def getGenderString(self):
if self.gender == "M" or self.gender == "Male":
return "Male"
elif self.gender == "F" or self.gender == "Female":
return "Female"
| class Person:
__slots__ = ['lastName', 'firstName', 'middleInitial', 'gender', 'favoriteColor', 'dateOfBirth']
def __init__(self, lastName, firstName, middleInitial, gender, favoriteColor, dateOfBirth):
self.lastName = lastName
self.firstName = firstName
self.middleInitial = middleInitial
self.gender = gender
self.favoriteColor = favoriteColor
self.dateOfBirth = dateOfBirth
def get_gender_string(self):
if self.gender == 'M' or self.gender == 'Male':
return 'Male'
elif self.gender == 'F' or self.gender == 'Female':
return 'Female' |
expected_output = {
'10.1.1.2': {
'conn_capability': 'IPv4-IPv6-Subnet',
'conn_inst': 1,
'conn_status': 'On (Speaker) :: On (Listener)',
'conn_version': 5,
'duration': '0:00:00:57 (dd:hr:mm:sec) :: 0:00:00:55 (dd:hr:mm:sec)',
'local_mode': 'Both',
'peer_ip': '10.1.1.2',
'source_ip': '10.1.1.1',
'tcp_conn_fd': '1(Speaker) 2(Listener)',
'speaker_conn_hold_time': 120,
'listener_conn_hold_time': 120,
'tcp_conn_pwd': 'default SXP password'
},
'default_key_chain': 'Not Set',
'default_key_chain_name': 'Not Applicable',
'default_pwd': 'Set',
'default_source_ip': 'Not Set',
'export_traverse_limit': 'Not Set',
'highest_version': 5,
'import_traverse_limit': 'Not Set',
'reconcile_period': 120,
'retry_period': 120,
'retry_timer': 'not running',
'sxp_status': 'Enabled',
'total_sxp_connections': 1
} | expected_output = {'10.1.1.2': {'conn_capability': 'IPv4-IPv6-Subnet', 'conn_inst': 1, 'conn_status': 'On (Speaker) :: On (Listener)', 'conn_version': 5, 'duration': '0:00:00:57 (dd:hr:mm:sec) :: 0:00:00:55 (dd:hr:mm:sec)', 'local_mode': 'Both', 'peer_ip': '10.1.1.2', 'source_ip': '10.1.1.1', 'tcp_conn_fd': '1(Speaker) 2(Listener)', 'speaker_conn_hold_time': 120, 'listener_conn_hold_time': 120, 'tcp_conn_pwd': 'default SXP password'}, 'default_key_chain': 'Not Set', 'default_key_chain_name': 'Not Applicable', 'default_pwd': 'Set', 'default_source_ip': 'Not Set', 'export_traverse_limit': 'Not Set', 'highest_version': 5, 'import_traverse_limit': 'Not Set', 'reconcile_period': 120, 'retry_period': 120, 'retry_timer': 'not running', 'sxp_status': 'Enabled', 'total_sxp_connections': 1} |
class Stack:
def __init__(self):
self.list = []
def push(self, element):
self.list.append(element)
def pop(self):
assert len(self.list) > 0, "Stack is empty"
return self.list.pop()
def isEmpty(self):
return len(self.list) == 0
| class Stack:
def __init__(self):
self.list = []
def push(self, element):
self.list.append(element)
def pop(self):
assert len(self.list) > 0, 'Stack is empty'
return self.list.pop()
def is_empty(self):
return len(self.list) == 0 |
#!/usr/bin/python
# Calculer la somme des valeurs du tableau
def somme_tab(tab):
somme = 0
for i in range(len(tab)):
somme += tab[i]
return somme
tab = [5, 18.5, 13.2, 8.75, 2, 15, 13.5, 6, 17]
print(somme_tab(tab))
| def somme_tab(tab):
somme = 0
for i in range(len(tab)):
somme += tab[i]
return somme
tab = [5, 18.5, 13.2, 8.75, 2, 15, 13.5, 6, 17]
print(somme_tab(tab)) |
# Creating a Dictionary
# with Integer Keys
Dict = {1: 'Geeks', 2: 'For', 3: 'Geeks'}
print("\nDictionary with the use of Integer Keys: ")
print(Dict)
# Creating a Dictionary
# with Mixed keys
Dict = {'Name': 'Geeks', 1: [1, 2, 3, 4]}
print("\nDictionary with the use of Mixed Keys: ")
print(Dict)
# Creating an empty Dictionary
Dict = {}
print("Empty Dictionary: ")
print(Dict)
# Creating a Dictionary
# with dict() method
Dict = dict({1: 'Geeks', 2: 'For', 3: 'Geeks'})
print("\nDictionary with the use of dict(): ")
print(Dict)
# Creating a Dictionary
# with each item as a Pair
Dict = dict([(1, 'Geeks'), (2, 'For')])
print("\nDictionary with each item as a pair: ")
print(Dict)
# Creating a Nested Dictionary
# as shown in the below image
Dict = {1: 'Geeks', 2: 'For',
3: {'A': 'Welcome', 'B': 'To', 'C': 'Geeks'}}
print(Dict)
# Creating an empty Dictionary
Dict = {}
print("Empty Dictionary: ")
print(Dict)
# Adding elements one at a time
Dict[0] = 'Geeks'
Dict[2] = 'For'
Dict[3] = 1
print("\nDictionary after adding 3 elements: ")
print(Dict)
# Adding set of values
# to a single Key
Dict['Value_set'] = 2, 3, 4
print("\nDictionary after adding 3 elements: ")
print(Dict)
# Updating existing Key's Value
Dict[2] = 'Welcome'
print("\nUpdated key value: ")
print(Dict)
# Adding Nested Key value to Dictionary
Dict[5] = {'Nested': {'1': 'Life', '2': 'Geeks'}}
print("\nAdding a Nested Key: ")
print(Dict)
# Python program to demonstrate
# accessing a element from a Dictionary
# Creating a Dictionary
Dict = {1: 'Geeks', 'name': 'For', 3: 'Geeks'}
# accessing a element using key
print("Accessing a element using key:")
print(Dict['name'])
# accessing a element using key
print("Accessing a element using key:")
print(Dict[1])
# Creating a Dictionary
Dict = {1: 'Geeks', 'name': 'For', 3: 'Geeks'}
# accessing a element using get()
# method
print("Accessing a element using get:")
print(Dict.get(3))
# Creating a Dictionary
Dict = {'Dict1': {1: 'Geeks'},
'Dict2': {'Name': 'For'}}
# Accessing element using key
print(Dict['Dict1'])
print(Dict['Dict1'][1])
print(Dict['Dict2']['Name'])
# Initial Dictionary
Dict = {5: 'Welcome', 6: 'To', 7: 'Geeks',
'A': {1: 'Geeks', 2: 'For', 3: 'Geeks'},
'B': {1: 'Geeks', 2: 'Life'}}
print("Initial Dictionary: ")
print(Dict)
# Deleting a Key value
del Dict[6]
print("\nDeleting a specific key: ")
print(Dict)
# Deleting a Key from
# Nested Dictionary
del Dict['A'][2]
print("\nDeleting a key from Nested Dictionary: ")
print(Dict)
# Creating a Dictionary
Dict = {1: 'Geeks', 'name': 'For', 3: 'Geeks'}
# Deleting a key
# using pop() method
pop_ele = Dict.pop(1)
print('\nDictionary after deletion: ' + str(Dict))
print('Value associated to poped key is: ' + str(pop_ele))
# Creating Dictionary
Dict = {1: 'Geeks', 'name': 'For', 3: 'Geeks'}
# Deleting an arbitrary key
# using popitem() function
pop_ele = Dict.popitem()
print("\nDictionary after deletion: " + str(Dict))
print("The arbitrary pair returned is: " + str(pop_ele))
# Creating a Dictionary
Dict = {1: 'Geeks', 'name': 'For', 3: 'Geeks'}
# Deleting entire Dictionary
Dict.clear()
print("\nDeleting Entire Dictionary: ")
print(Dict)
| dict = {1: 'Geeks', 2: 'For', 3: 'Geeks'}
print('\nDictionary with the use of Integer Keys: ')
print(Dict)
dict = {'Name': 'Geeks', 1: [1, 2, 3, 4]}
print('\nDictionary with the use of Mixed Keys: ')
print(Dict)
dict = {}
print('Empty Dictionary: ')
print(Dict)
dict = dict({1: 'Geeks', 2: 'For', 3: 'Geeks'})
print('\nDictionary with the use of dict(): ')
print(Dict)
dict = dict([(1, 'Geeks'), (2, 'For')])
print('\nDictionary with each item as a pair: ')
print(Dict)
dict = {1: 'Geeks', 2: 'For', 3: {'A': 'Welcome', 'B': 'To', 'C': 'Geeks'}}
print(Dict)
dict = {}
print('Empty Dictionary: ')
print(Dict)
Dict[0] = 'Geeks'
Dict[2] = 'For'
Dict[3] = 1
print('\nDictionary after adding 3 elements: ')
print(Dict)
Dict['Value_set'] = (2, 3, 4)
print('\nDictionary after adding 3 elements: ')
print(Dict)
Dict[2] = 'Welcome'
print('\nUpdated key value: ')
print(Dict)
Dict[5] = {'Nested': {'1': 'Life', '2': 'Geeks'}}
print('\nAdding a Nested Key: ')
print(Dict)
dict = {1: 'Geeks', 'name': 'For', 3: 'Geeks'}
print('Accessing a element using key:')
print(Dict['name'])
print('Accessing a element using key:')
print(Dict[1])
dict = {1: 'Geeks', 'name': 'For', 3: 'Geeks'}
print('Accessing a element using get:')
print(Dict.get(3))
dict = {'Dict1': {1: 'Geeks'}, 'Dict2': {'Name': 'For'}}
print(Dict['Dict1'])
print(Dict['Dict1'][1])
print(Dict['Dict2']['Name'])
dict = {5: 'Welcome', 6: 'To', 7: 'Geeks', 'A': {1: 'Geeks', 2: 'For', 3: 'Geeks'}, 'B': {1: 'Geeks', 2: 'Life'}}
print('Initial Dictionary: ')
print(Dict)
del Dict[6]
print('\nDeleting a specific key: ')
print(Dict)
del Dict['A'][2]
print('\nDeleting a key from Nested Dictionary: ')
print(Dict)
dict = {1: 'Geeks', 'name': 'For', 3: 'Geeks'}
pop_ele = Dict.pop(1)
print('\nDictionary after deletion: ' + str(Dict))
print('Value associated to poped key is: ' + str(pop_ele))
dict = {1: 'Geeks', 'name': 'For', 3: 'Geeks'}
pop_ele = Dict.popitem()
print('\nDictionary after deletion: ' + str(Dict))
print('The arbitrary pair returned is: ' + str(pop_ele))
dict = {1: 'Geeks', 'name': 'For', 3: 'Geeks'}
Dict.clear()
print('\nDeleting Entire Dictionary: ')
print(Dict) |
def threeSum(nums):
s = set()
nums.sort()
for i in range(len(nums)):
m = {}
for j in range(i+1, len(nums)):
x = -nums[i] - nums[j]
if x not in m:
m[nums[j]] = j
else:
s.add((x,nums[i],nums[j]))
return list(s) | def three_sum(nums):
s = set()
nums.sort()
for i in range(len(nums)):
m = {}
for j in range(i + 1, len(nums)):
x = -nums[i] - nums[j]
if x not in m:
m[nums[j]] = j
else:
s.add((x, nums[i], nums[j]))
return list(s) |
array = [54, 26, 93, 17, 77, 31, 44, 55, 20]
def bubble_sort(nums: list):
for i in range(len(nums)):
for j in range(len(nums) - 1, i, -1):
if nums[j - 1] > nums[j]:
nums[j - 1], nums[j] = nums[j], nums[j - 1]
print(array)
bubble_sort(array)
print(array)
| array = [54, 26, 93, 17, 77, 31, 44, 55, 20]
def bubble_sort(nums: list):
for i in range(len(nums)):
for j in range(len(nums) - 1, i, -1):
if nums[j - 1] > nums[j]:
(nums[j - 1], nums[j]) = (nums[j], nums[j - 1])
print(array)
bubble_sort(array)
print(array) |
BLKNUM_OFFSET = 1000000000
TXINDEX_OFFSET = 10000
def decode_utxo_id(utxo_id):
blknum = utxo_id // BLKNUM_OFFSET
txindex = (utxo_id % BLKNUM_OFFSET) // TXINDEX_OFFSET
oindex = utxo_id % TXINDEX_OFFSET
return blknum, txindex, oindex
def encode_utxo_id(blknum, txindex, oindex):
return (blknum * BLKNUM_OFFSET) + (txindex * TXINDEX_OFFSET) + (oindex * 1)
def decode_tx_id(utxo_id):
(blknum, txindex, _) = decode_utxo_id(utxo_id)
return encode_utxo_id(blknum, txindex, 0)
| blknum_offset = 1000000000
txindex_offset = 10000
def decode_utxo_id(utxo_id):
blknum = utxo_id // BLKNUM_OFFSET
txindex = utxo_id % BLKNUM_OFFSET // TXINDEX_OFFSET
oindex = utxo_id % TXINDEX_OFFSET
return (blknum, txindex, oindex)
def encode_utxo_id(blknum, txindex, oindex):
return blknum * BLKNUM_OFFSET + txindex * TXINDEX_OFFSET + oindex * 1
def decode_tx_id(utxo_id):
(blknum, txindex, _) = decode_utxo_id(utxo_id)
return encode_utxo_id(blknum, txindex, 0) |
# OAuth app keys
DROPBOX_KEY = None
DROPBOX_SECRET = None
DROPBOX_AUTH_CSRF_TOKEN = 'dropbox-auth-csrf-token'
# Max file size permitted by frontend in megabytes
MAX_UPLOAD_SIZE = 150
| dropbox_key = None
dropbox_secret = None
dropbox_auth_csrf_token = 'dropbox-auth-csrf-token'
max_upload_size = 150 |
ALLOWED_HOSTS = ['localhost', '127.0.0.1', '[::1]', 'jobs.harenconstruction.com', 'www.harenconstruction.com', 'harenconstruction.com' '104.236.59.248']
# Build paths inside the project like this: os.path.join(BASE_DIR, ...)
BASE_DIR = '/home/applicant/' #os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
# SECURITY WARNING: don't run with debug turned on in production!
DEBUG = False
# Database
# https://docs.djangoproject.com/en/1.9/ref/settings/#databases
# 'ENGINE': 'django.db.backends.sqlite3',
# 'NAME': os.path.join(BASE_DIR, 'db.sqlite3'),
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.postgresql_psycopg2',
'NAME': 'applicant',
'USER': 'applicant',
'PASSWORD': 's34vZuhX&ChX@Lre0%kL',
'HOST': 'localhost',
'PORT': '',
}
}
TEMPLATE_PATH = os.path.join('/home/applicant/applicant/applicant/', 'templates')
TEMPLATES = [
{
'BACKEND': 'django.template.backends.django.DjangoTemplates',
'DIRS': [TEMPLATE_PATH],
'APP_DIRS': True,
'OPTIONS': {
'context_processors': [
'django.template.context_processors.debug',
'django.template.context_processors.request',
'django.contrib.auth.context_processors.auth',
'django.contrib.messages.context_processors.messages',
'django.template.context_processors.media',
],
},
},
]
# Media (user uploaded files)
MEDIA_ROOT = os.path.join('/home/applicant/', 'media')
MEDIA_URL = '/media/'
# Static files (CSS, JavaScript, Images)
# https://docs.djangoproject.com/en/1.9/howto/static-files/
STATIC_PATH = os.path.join('/home/applicant/', 'static')
STATIC_ROOT = STATIC_PATH
STATICFILES_DIRS = [
os.path.join('/home/applicant/applicant/applicant/', "static"),
]
STATIC_URL = '/static/'
# Fixtures for developer data.
FIXTURE_DIRS = [
os.path.join('/home/applicant/applicant/applicant/', "fixtures"),
]
# temporary path for wizard assisted file uploads
TEMP_PATH = os.path.join('/home/applicant/', 'tmp')
# logging
LOGGING = {
'version': 1,
'disable_existing_loggers': False,
'handlers': {
'file': {
'level': 'ERROR',
'class': 'logging.FileHandler',
'filename': '/home/applicant/applicant.log',
},
},
'loggers': {
'django': {
'handlers': ['file'],
'level': 'ERROR',
'propagate': True,
},
},
}
| allowed_hosts = ['localhost', '127.0.0.1', '[::1]', 'jobs.harenconstruction.com', 'www.harenconstruction.com', 'harenconstruction.com104.236.59.248']
base_dir = '/home/applicant/'
debug = False
databases = {'default': {'ENGINE': 'django.db.backends.postgresql_psycopg2', 'NAME': 'applicant', 'USER': 'applicant', 'PASSWORD': 's34vZuhX&ChX@Lre0%kL', 'HOST': 'localhost', 'PORT': ''}}
template_path = os.path.join('/home/applicant/applicant/applicant/', 'templates')
templates = [{'BACKEND': 'django.template.backends.django.DjangoTemplates', 'DIRS': [TEMPLATE_PATH], 'APP_DIRS': True, 'OPTIONS': {'context_processors': ['django.template.context_processors.debug', 'django.template.context_processors.request', 'django.contrib.auth.context_processors.auth', 'django.contrib.messages.context_processors.messages', 'django.template.context_processors.media']}}]
media_root = os.path.join('/home/applicant/', 'media')
media_url = '/media/'
static_path = os.path.join('/home/applicant/', 'static')
static_root = STATIC_PATH
staticfiles_dirs = [os.path.join('/home/applicant/applicant/applicant/', 'static')]
static_url = '/static/'
fixture_dirs = [os.path.join('/home/applicant/applicant/applicant/', 'fixtures')]
temp_path = os.path.join('/home/applicant/', 'tmp')
logging = {'version': 1, 'disable_existing_loggers': False, 'handlers': {'file': {'level': 'ERROR', 'class': 'logging.FileHandler', 'filename': '/home/applicant/applicant.log'}}, 'loggers': {'django': {'handlers': ['file'], 'level': 'ERROR', 'propagate': True}}} |
#
# PySNMP MIB module ZhoneDsl-MIB (http://snmplabs.com/pysmi)
# ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/ZhoneDsl-MIB
# Produced by pysmi-0.3.4 at Wed May 1 15:52:33 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)
#
OctetString, Integer, ObjectIdentifier = mibBuilder.importSymbols("ASN1", "OctetString", "Integer", "ObjectIdentifier")
NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues")
ConstraintsUnion, ValueSizeConstraint, ValueRangeConstraint, ConstraintsIntersection, SingleValueConstraint = mibBuilder.importSymbols("ASN1-REFINEMENT", "ConstraintsUnion", "ValueSizeConstraint", "ValueRangeConstraint", "ConstraintsIntersection", "SingleValueConstraint")
ifIndex, = mibBuilder.importSymbols("IF-MIB", "ifIndex")
SnmpAdminString, = mibBuilder.importSymbols("SNMP-FRAMEWORK-MIB", "SnmpAdminString")
ModuleCompliance, NotificationGroup = mibBuilder.importSymbols("SNMPv2-CONF", "ModuleCompliance", "NotificationGroup")
Counter64, Gauge32, IpAddress, NotificationType, Integer32, Counter32, MibScalar, MibTable, MibTableRow, MibTableColumn, Unsigned32, Bits, ObjectIdentity, iso, ModuleIdentity, TimeTicks, MibIdentifier = mibBuilder.importSymbols("SNMPv2-SMI", "Counter64", "Gauge32", "IpAddress", "NotificationType", "Integer32", "Counter32", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "Unsigned32", "Bits", "ObjectIdentity", "iso", "ModuleIdentity", "TimeTicks", "MibIdentifier")
VariablePointer, TextualConvention, DisplayString = mibBuilder.importSymbols("SNMPv2-TC", "VariablePointer", "TextualConvention", "DisplayString")
zhoneDsl, zhoneModules = mibBuilder.importSymbols("Zhone", "zhoneDsl", "zhoneModules")
ZhoneRowStatus, ZhoneAdminString = mibBuilder.importSymbols("Zhone-TC", "ZhoneRowStatus", "ZhoneAdminString")
zhoneDsl_MIB = ModuleIdentity((1, 3, 6, 1, 4, 1, 5504, 6, 3)).setLabel("zhoneDsl-MIB")
zhoneDsl_MIB.setRevisions(('2000-04-26 17:53',))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
if mibBuilder.loadTexts: zhoneDsl_MIB.setRevisionsDescriptions(('strawman structure',))
if mibBuilder.loadTexts: zhoneDsl_MIB.setLastUpdated('200005111753Z')
if mibBuilder.loadTexts: zhoneDsl_MIB.setOrganization('Zhone')
if mibBuilder.loadTexts: zhoneDsl_MIB.setContactInfo(' Postal: xxx Zhone Technologies, Inc. xxx address. Fremont, Ca. Toll-Free: 877-ZHONE20 (+1 877-946-6320) Tel: +1 978-452-0571 Fax: +1 978-xxx-xxxx E-mail: xxx@zhone.com ')
if mibBuilder.loadTexts: zhoneDsl_MIB.setDescription('The MIB module to describe the Zhone specific implementation of HDSL, HDSL2, SDSL and G.SHDSL')
zhoneDslLineTable = MibTable((1, 3, 6, 1, 4, 1, 5504, 5, 4, 1), )
if mibBuilder.loadTexts: zhoneDslLineTable.setStatus('current')
if mibBuilder.loadTexts: zhoneDslLineTable.setDescription('This table contains common attributes describing DSL physical line interfaces for DSLs without a MIB standard.')
zhoneDslLineEntry = MibTableRow((1, 3, 6, 1, 4, 1, 5504, 5, 4, 1, 1), ).setIndexNames((0, "IF-MIB", "ifIndex"))
if mibBuilder.loadTexts: zhoneDslLineEntry.setStatus('current')
if mibBuilder.loadTexts: zhoneDslLineEntry.setDescription('An entry in the zhoneDslLine Table.')
zhoneDslLineType = MibTableColumn((1, 3, 6, 1, 4, 1, 5504, 5, 4, 1, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 96))).clone(namedValues=NamedValues(("hdsl", 1), ("hdsl2", 2), ("shdsl", 3), ("sdsl", 96))).clone('hdsl2')).setMaxAccess("readcreate")
if mibBuilder.loadTexts: zhoneDslLineType.setStatus('current')
if mibBuilder.loadTexts: zhoneDslLineType.setDescription('The DSL type. Many modem vendors allow software selection between HDSL, HDSL2, SDSL and SHDSL. Using zhoneDslLineTypeSupported the user can see what dsl option is available on this interface.')
zhoneDslLineCapabilities = MibTableColumn((1, 3, 6, 1, 4, 1, 5504, 5, 4, 1, 1, 2), Bits().clone(namedValues=NamedValues(("hdsl", 1), ("hdsl2", 2), ("shdsl", 4), ("sdsl", 8)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: zhoneDslLineCapabilities.setStatus('current')
if mibBuilder.loadTexts: zhoneDslLineCapabilities.setDescription('The DSL types supported on this interface. This is a bit-map of possible types. This variable can be used to determine zhoneDslLineType.')
zhoneDslLineStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 5504, 5, 4, 1, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5))).clone(namedValues=NamedValues(("down", 1), ("downloading", 2), ("activated", 3), ("training", 4), ("up", 5)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: zhoneDslLineStatus.setStatus('current')
if mibBuilder.loadTexts: zhoneDslLineStatus.setDescription('The DSL modem status. Detailed modem state maybe available in the status table. ')
zhoneDslUpLineRate = MibTableColumn((1, 3, 6, 1, 4, 1, 5504, 5, 4, 1, 1, 4), Gauge32()).setUnits('bps').setMaxAccess("readonly")
if mibBuilder.loadTexts: zhoneDslUpLineRate.setStatus('current')
if mibBuilder.loadTexts: zhoneDslUpLineRate.setDescription('The DSL upstream (cpe->co) line rate on this interface.')
zhoneDslDownLineRate = MibTableColumn((1, 3, 6, 1, 4, 1, 5504, 5, 4, 1, 1, 5), Gauge32()).setUnits('bps').setMaxAccess("readonly")
if mibBuilder.loadTexts: zhoneDslDownLineRate.setStatus('current')
if mibBuilder.loadTexts: zhoneDslDownLineRate.setDescription('The DSL downstream (co->cpe) line rate on this interface.')
zhoneDslLineConfigProfile = MibTableColumn((1, 3, 6, 1, 4, 1, 5504, 5, 4, 1, 1, 6), ZhoneAdminString()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: zhoneDslLineConfigProfile.setStatus('current')
if mibBuilder.loadTexts: zhoneDslLineConfigProfile.setDescription("The value of this object identifies the row in the respective dsl configuration profile table. (Ex: if zhoneDslLineType is HDSL2, then the profile identifies an HDSL2 configuration profile.) It is assumed that all profile names are unique to the system. In the case which the configuration profile has not been set, the value will be set to `ZhoneDefault'. This is a profile (by type) which will be persisted and then able to be modified by a management station in order to modify the DEFAULT values. ")
zhoneDslLineAlarmProfile = MibTableColumn((1, 3, 6, 1, 4, 1, 5504, 5, 4, 1, 1, 7), ZhoneAdminString()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: zhoneDslLineAlarmProfile.setStatus('current')
if mibBuilder.loadTexts: zhoneDslLineAlarmProfile.setDescription("The value of this object identifies the row in the respective dsl alarm profile table. (Ex: if zhoneDslLineType is HDSL2 then the profile identifies an HDSL2 alarm profile.) It is assumed that all profile names are unique to the system. In the case where the configuration profile has not been set, the value will be set to `ZhoneDefault'. ")
zhoneDslLineRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 5504, 5, 4, 1, 1, 8), ZhoneRowStatus()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: zhoneDslLineRowStatus.setStatus('current')
if mibBuilder.loadTexts: zhoneDslLineRowStatus.setDescription('Row status in order to add an entry in this table. The required fields to be added are: (ARE ALL THE DEFAULTS OKAY) ')
zhoneHdsl2ConfigProfileTable = MibTable((1, 3, 6, 1, 4, 1, 5504, 5, 4, 3), )
if mibBuilder.loadTexts: zhoneHdsl2ConfigProfileTable.setStatus('current')
if mibBuilder.loadTexts: zhoneHdsl2ConfigProfileTable.setDescription('This table contains information for HDSL2 configuration.')
zhoneHdsl2ConfigProfileEntry = MibTableRow((1, 3, 6, 1, 4, 1, 5504, 5, 4, 3, 1), ).setIndexNames((1, "ZhoneDsl-MIB", "zhoneHdsl2ConfigProfileName"))
if mibBuilder.loadTexts: zhoneHdsl2ConfigProfileEntry.setStatus('current')
if mibBuilder.loadTexts: zhoneHdsl2ConfigProfileEntry.setDescription('An entry in the zhoneHdsl2ConfigProfile Table.')
zhoneHdsl2ConfigProfileName = MibTableColumn((1, 3, 6, 1, 4, 1, 5504, 5, 4, 3, 1, 1), ZhoneAdminString())
if mibBuilder.loadTexts: zhoneHdsl2ConfigProfileName.setStatus('current')
if mibBuilder.loadTexts: zhoneHdsl2ConfigProfileName.setDescription("Configuration profile name. Used by the zhoneHdsl2LineConfigProfile entry to map zhoneDslLine Entry to the appropriate profile. When `dynamic' profiles are implemented, the profile name is user specified. Also, the system will always provide a default profile whose name is `DEFVAL'. When `static' profiles are implemented, there is an one-to-one relationship between each line and its profile. In which case, the profile name will need to algorithmically represent the Line's ifIndex. Therefore, the profile's name is a decimal zed string of the ifIndex that is fixed-length (i.e., 10) with leading zero(s). For example, the profile name for ifIndex which equals '15' will be '0000000015'.")
zhoneHdsl2ConfigUnitMode = MibTableColumn((1, 3, 6, 1, 4, 1, 5504, 5, 4, 3, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("co", 1), ("cpe", 2))).clone('co')).setMaxAccess("readcreate")
if mibBuilder.loadTexts: zhoneHdsl2ConfigUnitMode.setStatus('current')
if mibBuilder.loadTexts: zhoneHdsl2ConfigUnitMode.setDescription('Unit is configured as the CO(central office)or CPE (customer premise)side.')
zhoneHdsl2ConfigTransmitPowerbackoffMode = MibTableColumn((1, 3, 6, 1, 4, 1, 5504, 5, 4, 3, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("backoff-disable", 1), ("backoff-enable", 2), ("no-change-backoff", 3))).clone('backoff-disable')).setMaxAccess("readcreate")
if mibBuilder.loadTexts: zhoneHdsl2ConfigTransmitPowerbackoffMode.setStatus('current')
if mibBuilder.loadTexts: zhoneHdsl2ConfigTransmitPowerbackoffMode.setDescription('Determines if the transmit power backoff defined in HDSL2 standard is used.')
zhoneHdsl2ConfigDecoderCoeffA = MibTableColumn((1, 3, 6, 1, 4, 1, 5504, 5, 4, 3, 1, 4), Integer32().clone(970752)).setMaxAccess("readcreate")
if mibBuilder.loadTexts: zhoneHdsl2ConfigDecoderCoeffA.setStatus('current')
if mibBuilder.loadTexts: zhoneHdsl2ConfigDecoderCoeffA.setDescription('21 bit value corresponding to the decoder coefficient A. The default is the ANSI HDSL2 default.')
zhoneHdsl2ConfigDecoderCoeffB = MibTableColumn((1, 3, 6, 1, 4, 1, 5504, 5, 4, 3, 1, 5), Integer32().clone(970752)).setMaxAccess("readcreate")
if mibBuilder.loadTexts: zhoneHdsl2ConfigDecoderCoeffB.setStatus('current')
if mibBuilder.loadTexts: zhoneHdsl2ConfigDecoderCoeffB.setDescription('21 bit value corresponding to the decoder coefficient A. The default is the ANSI HDSL2 default.')
zhoneHdsl2ConfigFrameSyncWord = MibTableColumn((1, 3, 6, 1, 4, 1, 5504, 5, 4, 3, 1, 6), Integer32().clone(45)).setMaxAccess("readcreate")
if mibBuilder.loadTexts: zhoneHdsl2ConfigFrameSyncWord.setStatus('current')
if mibBuilder.loadTexts: zhoneHdsl2ConfigFrameSyncWord.setDescription('10 bit frame sync word. The default is the HDSL2 standard.')
zhoneHdsl2ConfigStuffBits = MibTableColumn((1, 3, 6, 1, 4, 1, 5504, 5, 4, 3, 1, 7), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 15)).clone(15)).setMaxAccess("readcreate")
if mibBuilder.loadTexts: zhoneHdsl2ConfigStuffBits.setStatus('current')
if mibBuilder.loadTexts: zhoneHdsl2ConfigStuffBits.setDescription('4 bit stuff pattern. The default is the HDSL2 standard.')
zhoneHdsl2ConfigRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 5504, 5, 4, 3, 1, 8), ZhoneRowStatus()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: zhoneHdsl2ConfigRowStatus.setStatus('current')
if mibBuilder.loadTexts: zhoneHdsl2ConfigRowStatus.setDescription('Status in order to create/delete rows. For creation the following fields are required:')
zhoneHdsl2StatusTable = MibTable((1, 3, 6, 1, 4, 1, 5504, 5, 4, 4), )
if mibBuilder.loadTexts: zhoneHdsl2StatusTable.setStatus('current')
if mibBuilder.loadTexts: zhoneHdsl2StatusTable.setDescription('This table contains HDSL2 specific line status information. An entry into this table is automatically created whenever a zhoneDslLineEntry is created and the type is HDSL2.')
zhoneHdsl2StatusEntry = MibTableRow((1, 3, 6, 1, 4, 1, 5504, 5, 4, 4, 1), )
ifIndex.registerAugmentions(("ZhoneDsl-MIB", "zhoneHdsl2StatusEntry"))
zhoneHdsl2StatusEntry.setIndexNames(*ifIndex.getIndexNames())
if mibBuilder.loadTexts: zhoneHdsl2StatusEntry.setStatus('current')
if mibBuilder.loadTexts: zhoneHdsl2StatusEntry.setDescription('An entry in the zhoneHdsl2Status Table.')
zhoneHdsl2DriftAlarm = MibTableColumn((1, 3, 6, 1, 4, 1, 5504, 5, 4, 4, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5))).clone(namedValues=NamedValues(("rx-clk-alarm", 1), ("tx-clk-alarm", 2), ("tx-rx-clk-alarm", 3), ("no-drift-alarm", 4), ("not-applicable", 5)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: zhoneHdsl2DriftAlarm.setStatus('current')
if mibBuilder.loadTexts: zhoneHdsl2DriftAlarm.setDescription(' Indicates that the framer automatically attempted to adjust for clock drift. This is not applicable for ATM.')
zhoneHdsl2FramerIBStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 5504, 5, 4, 4, 1, 2), OctetString().subtype(subtypeSpec=ValueSizeConstraint(1, 1)).setFixedLength(1)).setMaxAccess("readonly")
if mibBuilder.loadTexts: zhoneHdsl2FramerIBStatus.setStatus('current')
if mibBuilder.loadTexts: zhoneHdsl2FramerIBStatus.setDescription('Returns the segd,sega,uib and losd bits. The format of the octet is: x x x x segd sega uib losd.')
zhoneHdsl2LocalPSDMaskStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 5504, 5, 4, 4, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: zhoneHdsl2LocalPSDMaskStatus.setStatus('current')
if mibBuilder.loadTexts: zhoneHdsl2LocalPSDMaskStatus.setDescription('Returns a number corresponding to the transmit power backoff requested by the local unit.')
zhoneHdsl2LoopAttenuation = MibTableColumn((1, 3, 6, 1, 4, 1, 5504, 5, 4, 4, 1, 4), Integer32()).setUnits('tenth DB').setMaxAccess("readonly")
if mibBuilder.loadTexts: zhoneHdsl2LoopAttenuation.setStatus('current')
if mibBuilder.loadTexts: zhoneHdsl2LoopAttenuation.setDescription('Estimation of the loop attenuation in tenths of a DB. by the local unit.')
zhoneHdsl2LossWordStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 5504, 5, 4, 4, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("no-lossw-defect", 1), ("lossw-defect", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: zhoneHdsl2LossWordStatus.setStatus('current')
if mibBuilder.loadTexts: zhoneHdsl2LossWordStatus.setDescription('This indicates loss of sync.')
zhoneHdsl2RmtPSDMaskStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 5504, 5, 4, 4, 1, 6), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: zhoneHdsl2RmtPSDMaskStatus.setStatus('current')
if mibBuilder.loadTexts: zhoneHdsl2RmtPSDMaskStatus.setDescription('Returns a number corresponding to the transmit power backoff requested by the remote unit.')
zhoneHdsl2RmtCountryCode = MibTableColumn((1, 3, 6, 1, 4, 1, 5504, 5, 4, 4, 1, 7), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: zhoneHdsl2RmtCountryCode.setStatus('current')
if mibBuilder.loadTexts: zhoneHdsl2RmtCountryCode.setDescription('ANSI HDSL2 Country code of the remote unit.')
zhoneHdsl2RmtVersion = MibTableColumn((1, 3, 6, 1, 4, 1, 5504, 5, 4, 4, 1, 8), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: zhoneHdsl2RmtVersion.setStatus('current')
if mibBuilder.loadTexts: zhoneHdsl2RmtVersion.setDescription('HDSL2 version of the remote unit.')
zhoneHdsl2RmtProviderCode = MibTableColumn((1, 3, 6, 1, 4, 1, 5504, 5, 4, 4, 1, 9), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: zhoneHdsl2RmtProviderCode.setStatus('current')
if mibBuilder.loadTexts: zhoneHdsl2RmtProviderCode.setDescription('Provider word of the remote unit.')
zhoneHdsl2RmtVendorData = MibTableColumn((1, 3, 6, 1, 4, 1, 5504, 5, 4, 4, 1, 10), OctetString().subtype(subtypeSpec=ValueSizeConstraint(8, 8)).setFixedLength(8)).setMaxAccess("readonly")
if mibBuilder.loadTexts: zhoneHdsl2RmtVendorData.setStatus('current')
if mibBuilder.loadTexts: zhoneHdsl2RmtVendorData.setDescription("The remote unit's vendor-provided data.")
zhoneHdsl2RmtTxEncoderA = MibTableColumn((1, 3, 6, 1, 4, 1, 5504, 5, 4, 4, 1, 11), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: zhoneHdsl2RmtTxEncoderA.setStatus('current')
if mibBuilder.loadTexts: zhoneHdsl2RmtTxEncoderA.setDescription("The remote unit's 21 bit encoder coefficient A")
zhoneHdsl2RmtTxEncoderB = MibTableColumn((1, 3, 6, 1, 4, 1, 5504, 5, 4, 4, 1, 12), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: zhoneHdsl2RmtTxEncoderB.setStatus('current')
if mibBuilder.loadTexts: zhoneHdsl2RmtTxEncoderB.setDescription("The remote unit's 21 bit encoder coefficient B")
zhoneHdsl2TipRingStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 5504, 5, 4, 4, 1, 13), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("normal", 1), ("reverse", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: zhoneHdsl2TipRingStatus.setStatus('current')
if mibBuilder.loadTexts: zhoneHdsl2TipRingStatus.setDescription('Indicates whether the tip and ring points from the local unit match the tip and ring points of the remote.')
zhoneHdsl2FrameSyncWord = MibTableColumn((1, 3, 6, 1, 4, 1, 5504, 5, 4, 4, 1, 14), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: zhoneHdsl2FrameSyncWord.setStatus('current')
if mibBuilder.loadTexts: zhoneHdsl2FrameSyncWord.setDescription('A 10 bit number indicating the frame sync word used. LSB justified')
zhoneHdsl2StuffBits = MibTableColumn((1, 3, 6, 1, 4, 1, 5504, 5, 4, 4, 1, 15), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: zhoneHdsl2StuffBits.setStatus('current')
if mibBuilder.loadTexts: zhoneHdsl2StuffBits.setDescription('A 4 bit number for the stuff bits. LSB justified.')
zhoneDslPerfDataTable = MibTable((1, 3, 6, 1, 4, 1, 5504, 5, 4, 5), )
if mibBuilder.loadTexts: zhoneDslPerfDataTable.setStatus('current')
if mibBuilder.loadTexts: zhoneDslPerfDataTable.setDescription('This table provides one row for each modem interface.')
zhoneDslPerfDataEntry = MibTableRow((1, 3, 6, 1, 4, 1, 5504, 5, 4, 5, 1), )
zhoneDslLineEntry.registerAugmentions(("ZhoneDsl-MIB", "zhoneDslPerfDataEntry"))
zhoneDslPerfDataEntry.setIndexNames(*zhoneDslLineEntry.getIndexNames())
if mibBuilder.loadTexts: zhoneDslPerfDataEntry.setStatus('current')
if mibBuilder.loadTexts: zhoneDslPerfDataEntry.setDescription('An entry in zhoneDslPerfDataTable.')
zhoneDslPerfLofs = MibTableColumn((1, 3, 6, 1, 4, 1, 5504, 5, 4, 5, 1, 1), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: zhoneDslPerfLofs.setStatus('current')
if mibBuilder.loadTexts: zhoneDslPerfLofs.setDescription('Count of the number of Loss of Framing failures since agent reset.')
zhoneDslPerfLoss = MibTableColumn((1, 3, 6, 1, 4, 1, 5504, 5, 4, 5, 1, 2), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: zhoneDslPerfLoss.setStatus('current')
if mibBuilder.loadTexts: zhoneDslPerfLoss.setDescription('Count of the number of Loss of Signal failures since agent reset.')
zhoneDslPerfLols = MibTableColumn((1, 3, 6, 1, 4, 1, 5504, 5, 4, 5, 1, 3), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: zhoneDslPerfLols.setStatus('current')
if mibBuilder.loadTexts: zhoneDslPerfLols.setDescription('Count of the number of Loss of Link failures since agent reset.')
zhoneDslPerfInits = MibTableColumn((1, 3, 6, 1, 4, 1, 5504, 5, 4, 5, 1, 4), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: zhoneDslPerfInits.setStatus('current')
if mibBuilder.loadTexts: zhoneDslPerfInits.setDescription('Count of the line initialization attempts since agent reset. Includes both successful and failed attempts.')
zhoneDslPerfCur15MinTimeElapsed = MibTableColumn((1, 3, 6, 1, 4, 1, 5504, 5, 4, 5, 1, 5), Gauge32()).setUnits('seconds').setMaxAccess("readonly")
if mibBuilder.loadTexts: zhoneDslPerfCur15MinTimeElapsed.setStatus('current')
if mibBuilder.loadTexts: zhoneDslPerfCur15MinTimeElapsed.setDescription('The number of seconds elapsed since the start of the current measurement period.')
zhoneDslPerfCur15MinLofs = MibTableColumn((1, 3, 6, 1, 4, 1, 5504, 5, 4, 5, 1, 6), Gauge32()).setUnits('seconds').setMaxAccess("readonly")
if mibBuilder.loadTexts: zhoneDslPerfCur15MinLofs.setStatus('current')
if mibBuilder.loadTexts: zhoneDslPerfCur15MinLofs.setDescription('Count of the number of Loss of Framing failures in the current 15 minute interval.')
zhoneDslPerfCur15MinLoss = MibTableColumn((1, 3, 6, 1, 4, 1, 5504, 5, 4, 5, 1, 7), Gauge32()).setUnits('seconds').setMaxAccess("readonly")
if mibBuilder.loadTexts: zhoneDslPerfCur15MinLoss.setStatus('current')
if mibBuilder.loadTexts: zhoneDslPerfCur15MinLoss.setDescription('Count of seconds in the current 15 minute interval when there was a Loss of Signal.')
zhoneDslPerfCur15MinLols = MibTableColumn((1, 3, 6, 1, 4, 1, 5504, 5, 4, 5, 1, 8), Gauge32()).setUnits('seconds').setMaxAccess("readonly")
if mibBuilder.loadTexts: zhoneDslPerfCur15MinLols.setStatus('current')
if mibBuilder.loadTexts: zhoneDslPerfCur15MinLols.setDescription('Count of seconds in the current 15 minute interval when there was of Loss of Link.')
zhoneDslPerfCur15MinInits = MibTableColumn((1, 3, 6, 1, 4, 1, 5504, 5, 4, 5, 1, 9), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: zhoneDslPerfCur15MinInits.setStatus('current')
if mibBuilder.loadTexts: zhoneDslPerfCur15MinInits.setDescription('Count of the line initialization attempts in the current 15 minute interval. Includes both successful and failed attempts.')
zhoneDslAlarmProfileTable = MibTable((1, 3, 6, 1, 4, 1, 5504, 5, 4, 6), )
if mibBuilder.loadTexts: zhoneDslAlarmProfileTable.setStatus('current')
if mibBuilder.loadTexts: zhoneDslAlarmProfileTable.setDescription('This table contains information for Alarm conditions. One entry in this table reflects a profile defined by a manager which can be used to define alarm conditions for a modem.')
zhoneDslAlarmProfileEntry = MibTableRow((1, 3, 6, 1, 4, 1, 5504, 5, 4, 6, 1), ).setIndexNames((1, "ZhoneDsl-MIB", "zhoneDslAlarmProfileName"))
if mibBuilder.loadTexts: zhoneDslAlarmProfileEntry.setStatus('current')
if mibBuilder.loadTexts: zhoneDslAlarmProfileEntry.setDescription('An entry in the zhoneDslAlarmProfile Table.')
zhoneDslAlarmProfileName = MibTableColumn((1, 3, 6, 1, 4, 1, 5504, 5, 4, 6, 1, 1), ZhoneAdminString())
if mibBuilder.loadTexts: zhoneDslAlarmProfileName.setStatus('current')
if mibBuilder.loadTexts: zhoneDslAlarmProfileName.setDescription("Configuration profile name. Used by the zhoneDslLineConfigProfile entry to map zhoneDslLine Entry to the appropriate profile. When `dynamic' profiles are implemented, the profile name is user specified. Also, the system will always provide a default profile whose name is `DEFVAL'. When `static' profiles are implemented, there is an one-to-one relationship between each line and its profile. In which case, the profile name will need to algorithmically represent the Line's ifIndex. Therefore, the profile's name is a decimal zed string of the ifIndex that is fixed-length (i.e., 10) with leading zero(s). For example, the profile name for ifIndex which equals '15' will be '0000000015'.")
zhoneDslThreshold15MinLoss = MibTableColumn((1, 3, 6, 1, 4, 1, 5504, 5, 4, 6, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 900))).setUnits('seconds').setMaxAccess("readcreate")
if mibBuilder.loadTexts: zhoneDslThreshold15MinLoss.setStatus('current')
if mibBuilder.loadTexts: zhoneDslThreshold15MinLoss.setDescription('The number of Loss of signal seconds on a DSL interface within any given 15 minutes performance data collection period, which causes the SNMP agent to send a TRAP. 0 will disable the trap.')
zhoneDslThreshold15MinLols = MibTableColumn((1, 3, 6, 1, 4, 1, 5504, 5, 4, 6, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 900))).setUnits('seconds').setMaxAccess("readcreate")
if mibBuilder.loadTexts: zhoneDslThreshold15MinLols.setStatus('current')
if mibBuilder.loadTexts: zhoneDslThreshold15MinLols.setDescription('The number of Loss of link seconds on a DSL interface within any given 15 minutes performance data collection period, which causes the SNMP agent to send a TRAP. 0 will disable the trap.')
zhoneDslThreshold15MinLofs = MibTableColumn((1, 3, 6, 1, 4, 1, 5504, 5, 4, 6, 1, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 900))).setUnits('seconds').setMaxAccess("readcreate")
if mibBuilder.loadTexts: zhoneDslThreshold15MinLofs.setStatus('current')
if mibBuilder.loadTexts: zhoneDslThreshold15MinLofs.setDescription('The number of Loss of framing seconds on a DSL interface within any given 15 minutes performance data collection period, which causes the SNMP agent to send a TRAP. 0 will disable the trap.')
zhoneDslAlarmProfileRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 5504, 5, 4, 6, 1, 5), ZhoneAdminString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: zhoneDslAlarmProfileRowStatus.setStatus('current')
if mibBuilder.loadTexts: zhoneDslAlarmProfileRowStatus.setDescription("RowStatus field to control deletion/addition of entries in this table. Minimal fields to be 'set' for a creation is:")
mibBuilder.exportSymbols("ZhoneDsl-MIB", zhoneDslLineType=zhoneDslLineType, zhoneDslPerfCur15MinLoss=zhoneDslPerfCur15MinLoss, zhoneHdsl2LocalPSDMaskStatus=zhoneHdsl2LocalPSDMaskStatus, zhoneDslThreshold15MinLofs=zhoneDslThreshold15MinLofs, zhoneHdsl2ConfigProfileName=zhoneHdsl2ConfigProfileName, zhoneDslLineRowStatus=zhoneDslLineRowStatus, zhoneDslLineConfigProfile=zhoneDslLineConfigProfile, zhoneDslPerfCur15MinLofs=zhoneDslPerfCur15MinLofs, zhoneHdsl2RmtProviderCode=zhoneHdsl2RmtProviderCode, zhoneHdsl2ConfigDecoderCoeffA=zhoneHdsl2ConfigDecoderCoeffA, zhoneDslPerfLoss=zhoneDslPerfLoss, zhoneDslPerfLols=zhoneDslPerfLols, zhoneDslAlarmProfileEntry=zhoneDslAlarmProfileEntry, zhoneHdsl2RmtTxEncoderA=zhoneHdsl2RmtTxEncoderA, PYSNMP_MODULE_ID=zhoneDsl_MIB, zhoneDslPerfCur15MinLols=zhoneDslPerfCur15MinLols, zhoneHdsl2StatusTable=zhoneHdsl2StatusTable, zhoneDslPerfLofs=zhoneDslPerfLofs, zhoneDslPerfCur15MinTimeElapsed=zhoneDslPerfCur15MinTimeElapsed, zhoneHdsl2ConfigProfileEntry=zhoneHdsl2ConfigProfileEntry, zhoneHdsl2ConfigFrameSyncWord=zhoneHdsl2ConfigFrameSyncWord, zhoneDslPerfDataEntry=zhoneDslPerfDataEntry, zhoneDslPerfCur15MinInits=zhoneDslPerfCur15MinInits, zhoneDslAlarmProfileTable=zhoneDslAlarmProfileTable, zhoneHdsl2ConfigRowStatus=zhoneHdsl2ConfigRowStatus, zhoneDslLineTable=zhoneDslLineTable, zhoneHdsl2ConfigUnitMode=zhoneHdsl2ConfigUnitMode, zhoneDslPerfInits=zhoneDslPerfInits, zhoneHdsl2FramerIBStatus=zhoneHdsl2FramerIBStatus, zhoneHdsl2DriftAlarm=zhoneHdsl2DriftAlarm, zhoneHdsl2RmtPSDMaskStatus=zhoneHdsl2RmtPSDMaskStatus, zhoneDslLineEntry=zhoneDslLineEntry, zhoneHdsl2ConfigTransmitPowerbackoffMode=zhoneHdsl2ConfigTransmitPowerbackoffMode, zhoneHdsl2RmtCountryCode=zhoneHdsl2RmtCountryCode, zhoneHdsl2RmtVersion=zhoneHdsl2RmtVersion, zhoneDslDownLineRate=zhoneDslDownLineRate, zhoneHdsl2ConfigProfileTable=zhoneHdsl2ConfigProfileTable, zhoneDslAlarmProfileRowStatus=zhoneDslAlarmProfileRowStatus, zhoneHdsl2StuffBits=zhoneHdsl2StuffBits, zhoneHdsl2ConfigStuffBits=zhoneHdsl2ConfigStuffBits, zhoneDsl_MIB=zhoneDsl_MIB, zhoneDslPerfDataTable=zhoneDslPerfDataTable, zhoneDslLineStatus=zhoneDslLineStatus, zhoneHdsl2RmtVendorData=zhoneHdsl2RmtVendorData, zhoneHdsl2RmtTxEncoderB=zhoneHdsl2RmtTxEncoderB, zhoneHdsl2LossWordStatus=zhoneHdsl2LossWordStatus, zhoneDslLineCapabilities=zhoneDslLineCapabilities, zhoneDslUpLineRate=zhoneDslUpLineRate, zhoneHdsl2LoopAttenuation=zhoneHdsl2LoopAttenuation, zhoneHdsl2StatusEntry=zhoneHdsl2StatusEntry, zhoneHdsl2FrameSyncWord=zhoneHdsl2FrameSyncWord, zhoneDslLineAlarmProfile=zhoneDslLineAlarmProfile, zhoneDslThreshold15MinLoss=zhoneDslThreshold15MinLoss, zhoneHdsl2TipRingStatus=zhoneHdsl2TipRingStatus, zhoneHdsl2ConfigDecoderCoeffB=zhoneHdsl2ConfigDecoderCoeffB, zhoneDslAlarmProfileName=zhoneDslAlarmProfileName, zhoneDslThreshold15MinLols=zhoneDslThreshold15MinLols)
| (octet_string, integer, object_identifier) = mibBuilder.importSymbols('ASN1', 'OctetString', 'Integer', 'ObjectIdentifier')
(named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues')
(constraints_union, value_size_constraint, value_range_constraint, constraints_intersection, single_value_constraint) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'ConstraintsUnion', 'ValueSizeConstraint', 'ValueRangeConstraint', 'ConstraintsIntersection', 'SingleValueConstraint')
(if_index,) = mibBuilder.importSymbols('IF-MIB', 'ifIndex')
(snmp_admin_string,) = mibBuilder.importSymbols('SNMP-FRAMEWORK-MIB', 'SnmpAdminString')
(module_compliance, notification_group) = mibBuilder.importSymbols('SNMPv2-CONF', 'ModuleCompliance', 'NotificationGroup')
(counter64, gauge32, ip_address, notification_type, integer32, counter32, mib_scalar, mib_table, mib_table_row, mib_table_column, unsigned32, bits, object_identity, iso, module_identity, time_ticks, mib_identifier) = mibBuilder.importSymbols('SNMPv2-SMI', 'Counter64', 'Gauge32', 'IpAddress', 'NotificationType', 'Integer32', 'Counter32', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn', 'Unsigned32', 'Bits', 'ObjectIdentity', 'iso', 'ModuleIdentity', 'TimeTicks', 'MibIdentifier')
(variable_pointer, textual_convention, display_string) = mibBuilder.importSymbols('SNMPv2-TC', 'VariablePointer', 'TextualConvention', 'DisplayString')
(zhone_dsl, zhone_modules) = mibBuilder.importSymbols('Zhone', 'zhoneDsl', 'zhoneModules')
(zhone_row_status, zhone_admin_string) = mibBuilder.importSymbols('Zhone-TC', 'ZhoneRowStatus', 'ZhoneAdminString')
zhone_dsl_mib = module_identity((1, 3, 6, 1, 4, 1, 5504, 6, 3)).setLabel('zhoneDsl-MIB')
zhoneDsl_MIB.setRevisions(('2000-04-26 17:53',))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
if mibBuilder.loadTexts:
zhoneDsl_MIB.setRevisionsDescriptions(('strawman structure',))
if mibBuilder.loadTexts:
zhoneDsl_MIB.setLastUpdated('200005111753Z')
if mibBuilder.loadTexts:
zhoneDsl_MIB.setOrganization('Zhone')
if mibBuilder.loadTexts:
zhoneDsl_MIB.setContactInfo(' Postal: xxx Zhone Technologies, Inc. xxx address. Fremont, Ca. Toll-Free: 877-ZHONE20 (+1 877-946-6320) Tel: +1 978-452-0571 Fax: +1 978-xxx-xxxx E-mail: xxx@zhone.com ')
if mibBuilder.loadTexts:
zhoneDsl_MIB.setDescription('The MIB module to describe the Zhone specific implementation of HDSL, HDSL2, SDSL and G.SHDSL')
zhone_dsl_line_table = mib_table((1, 3, 6, 1, 4, 1, 5504, 5, 4, 1))
if mibBuilder.loadTexts:
zhoneDslLineTable.setStatus('current')
if mibBuilder.loadTexts:
zhoneDslLineTable.setDescription('This table contains common attributes describing DSL physical line interfaces for DSLs without a MIB standard.')
zhone_dsl_line_entry = mib_table_row((1, 3, 6, 1, 4, 1, 5504, 5, 4, 1, 1)).setIndexNames((0, 'IF-MIB', 'ifIndex'))
if mibBuilder.loadTexts:
zhoneDslLineEntry.setStatus('current')
if mibBuilder.loadTexts:
zhoneDslLineEntry.setDescription('An entry in the zhoneDslLine Table.')
zhone_dsl_line_type = mib_table_column((1, 3, 6, 1, 4, 1, 5504, 5, 4, 1, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 96))).clone(namedValues=named_values(('hdsl', 1), ('hdsl2', 2), ('shdsl', 3), ('sdsl', 96))).clone('hdsl2')).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
zhoneDslLineType.setStatus('current')
if mibBuilder.loadTexts:
zhoneDslLineType.setDescription('The DSL type. Many modem vendors allow software selection between HDSL, HDSL2, SDSL and SHDSL. Using zhoneDslLineTypeSupported the user can see what dsl option is available on this interface.')
zhone_dsl_line_capabilities = mib_table_column((1, 3, 6, 1, 4, 1, 5504, 5, 4, 1, 1, 2), bits().clone(namedValues=named_values(('hdsl', 1), ('hdsl2', 2), ('shdsl', 4), ('sdsl', 8)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
zhoneDslLineCapabilities.setStatus('current')
if mibBuilder.loadTexts:
zhoneDslLineCapabilities.setDescription('The DSL types supported on this interface. This is a bit-map of possible types. This variable can be used to determine zhoneDslLineType.')
zhone_dsl_line_status = mib_table_column((1, 3, 6, 1, 4, 1, 5504, 5, 4, 1, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5))).clone(namedValues=named_values(('down', 1), ('downloading', 2), ('activated', 3), ('training', 4), ('up', 5)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
zhoneDslLineStatus.setStatus('current')
if mibBuilder.loadTexts:
zhoneDslLineStatus.setDescription('The DSL modem status. Detailed modem state maybe available in the status table. ')
zhone_dsl_up_line_rate = mib_table_column((1, 3, 6, 1, 4, 1, 5504, 5, 4, 1, 1, 4), gauge32()).setUnits('bps').setMaxAccess('readonly')
if mibBuilder.loadTexts:
zhoneDslUpLineRate.setStatus('current')
if mibBuilder.loadTexts:
zhoneDslUpLineRate.setDescription('The DSL upstream (cpe->co) line rate on this interface.')
zhone_dsl_down_line_rate = mib_table_column((1, 3, 6, 1, 4, 1, 5504, 5, 4, 1, 1, 5), gauge32()).setUnits('bps').setMaxAccess('readonly')
if mibBuilder.loadTexts:
zhoneDslDownLineRate.setStatus('current')
if mibBuilder.loadTexts:
zhoneDslDownLineRate.setDescription('The DSL downstream (co->cpe) line rate on this interface.')
zhone_dsl_line_config_profile = mib_table_column((1, 3, 6, 1, 4, 1, 5504, 5, 4, 1, 1, 6), zhone_admin_string()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
zhoneDslLineConfigProfile.setStatus('current')
if mibBuilder.loadTexts:
zhoneDslLineConfigProfile.setDescription("The value of this object identifies the row in the respective dsl configuration profile table. (Ex: if zhoneDslLineType is HDSL2, then the profile identifies an HDSL2 configuration profile.) It is assumed that all profile names are unique to the system. In the case which the configuration profile has not been set, the value will be set to `ZhoneDefault'. This is a profile (by type) which will be persisted and then able to be modified by a management station in order to modify the DEFAULT values. ")
zhone_dsl_line_alarm_profile = mib_table_column((1, 3, 6, 1, 4, 1, 5504, 5, 4, 1, 1, 7), zhone_admin_string()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
zhoneDslLineAlarmProfile.setStatus('current')
if mibBuilder.loadTexts:
zhoneDslLineAlarmProfile.setDescription("The value of this object identifies the row in the respective dsl alarm profile table. (Ex: if zhoneDslLineType is HDSL2 then the profile identifies an HDSL2 alarm profile.) It is assumed that all profile names are unique to the system. In the case where the configuration profile has not been set, the value will be set to `ZhoneDefault'. ")
zhone_dsl_line_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 5504, 5, 4, 1, 1, 8), zhone_row_status()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
zhoneDslLineRowStatus.setStatus('current')
if mibBuilder.loadTexts:
zhoneDslLineRowStatus.setDescription('Row status in order to add an entry in this table. The required fields to be added are: (ARE ALL THE DEFAULTS OKAY) ')
zhone_hdsl2_config_profile_table = mib_table((1, 3, 6, 1, 4, 1, 5504, 5, 4, 3))
if mibBuilder.loadTexts:
zhoneHdsl2ConfigProfileTable.setStatus('current')
if mibBuilder.loadTexts:
zhoneHdsl2ConfigProfileTable.setDescription('This table contains information for HDSL2 configuration.')
zhone_hdsl2_config_profile_entry = mib_table_row((1, 3, 6, 1, 4, 1, 5504, 5, 4, 3, 1)).setIndexNames((1, 'ZhoneDsl-MIB', 'zhoneHdsl2ConfigProfileName'))
if mibBuilder.loadTexts:
zhoneHdsl2ConfigProfileEntry.setStatus('current')
if mibBuilder.loadTexts:
zhoneHdsl2ConfigProfileEntry.setDescription('An entry in the zhoneHdsl2ConfigProfile Table.')
zhone_hdsl2_config_profile_name = mib_table_column((1, 3, 6, 1, 4, 1, 5504, 5, 4, 3, 1, 1), zhone_admin_string())
if mibBuilder.loadTexts:
zhoneHdsl2ConfigProfileName.setStatus('current')
if mibBuilder.loadTexts:
zhoneHdsl2ConfigProfileName.setDescription("Configuration profile name. Used by the zhoneHdsl2LineConfigProfile entry to map zhoneDslLine Entry to the appropriate profile. When `dynamic' profiles are implemented, the profile name is user specified. Also, the system will always provide a default profile whose name is `DEFVAL'. When `static' profiles are implemented, there is an one-to-one relationship between each line and its profile. In which case, the profile name will need to algorithmically represent the Line's ifIndex. Therefore, the profile's name is a decimal zed string of the ifIndex that is fixed-length (i.e., 10) with leading zero(s). For example, the profile name for ifIndex which equals '15' will be '0000000015'.")
zhone_hdsl2_config_unit_mode = mib_table_column((1, 3, 6, 1, 4, 1, 5504, 5, 4, 3, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('co', 1), ('cpe', 2))).clone('co')).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
zhoneHdsl2ConfigUnitMode.setStatus('current')
if mibBuilder.loadTexts:
zhoneHdsl2ConfigUnitMode.setDescription('Unit is configured as the CO(central office)or CPE (customer premise)side.')
zhone_hdsl2_config_transmit_powerbackoff_mode = mib_table_column((1, 3, 6, 1, 4, 1, 5504, 5, 4, 3, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('backoff-disable', 1), ('backoff-enable', 2), ('no-change-backoff', 3))).clone('backoff-disable')).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
zhoneHdsl2ConfigTransmitPowerbackoffMode.setStatus('current')
if mibBuilder.loadTexts:
zhoneHdsl2ConfigTransmitPowerbackoffMode.setDescription('Determines if the transmit power backoff defined in HDSL2 standard is used.')
zhone_hdsl2_config_decoder_coeff_a = mib_table_column((1, 3, 6, 1, 4, 1, 5504, 5, 4, 3, 1, 4), integer32().clone(970752)).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
zhoneHdsl2ConfigDecoderCoeffA.setStatus('current')
if mibBuilder.loadTexts:
zhoneHdsl2ConfigDecoderCoeffA.setDescription('21 bit value corresponding to the decoder coefficient A. The default is the ANSI HDSL2 default.')
zhone_hdsl2_config_decoder_coeff_b = mib_table_column((1, 3, 6, 1, 4, 1, 5504, 5, 4, 3, 1, 5), integer32().clone(970752)).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
zhoneHdsl2ConfigDecoderCoeffB.setStatus('current')
if mibBuilder.loadTexts:
zhoneHdsl2ConfigDecoderCoeffB.setDescription('21 bit value corresponding to the decoder coefficient A. The default is the ANSI HDSL2 default.')
zhone_hdsl2_config_frame_sync_word = mib_table_column((1, 3, 6, 1, 4, 1, 5504, 5, 4, 3, 1, 6), integer32().clone(45)).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
zhoneHdsl2ConfigFrameSyncWord.setStatus('current')
if mibBuilder.loadTexts:
zhoneHdsl2ConfigFrameSyncWord.setDescription('10 bit frame sync word. The default is the HDSL2 standard.')
zhone_hdsl2_config_stuff_bits = mib_table_column((1, 3, 6, 1, 4, 1, 5504, 5, 4, 3, 1, 7), integer32().subtype(subtypeSpec=value_range_constraint(0, 15)).clone(15)).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
zhoneHdsl2ConfigStuffBits.setStatus('current')
if mibBuilder.loadTexts:
zhoneHdsl2ConfigStuffBits.setDescription('4 bit stuff pattern. The default is the HDSL2 standard.')
zhone_hdsl2_config_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 5504, 5, 4, 3, 1, 8), zhone_row_status()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
zhoneHdsl2ConfigRowStatus.setStatus('current')
if mibBuilder.loadTexts:
zhoneHdsl2ConfigRowStatus.setDescription('Status in order to create/delete rows. For creation the following fields are required:')
zhone_hdsl2_status_table = mib_table((1, 3, 6, 1, 4, 1, 5504, 5, 4, 4))
if mibBuilder.loadTexts:
zhoneHdsl2StatusTable.setStatus('current')
if mibBuilder.loadTexts:
zhoneHdsl2StatusTable.setDescription('This table contains HDSL2 specific line status information. An entry into this table is automatically created whenever a zhoneDslLineEntry is created and the type is HDSL2.')
zhone_hdsl2_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 5504, 5, 4, 4, 1))
ifIndex.registerAugmentions(('ZhoneDsl-MIB', 'zhoneHdsl2StatusEntry'))
zhoneHdsl2StatusEntry.setIndexNames(*ifIndex.getIndexNames())
if mibBuilder.loadTexts:
zhoneHdsl2StatusEntry.setStatus('current')
if mibBuilder.loadTexts:
zhoneHdsl2StatusEntry.setDescription('An entry in the zhoneHdsl2Status Table.')
zhone_hdsl2_drift_alarm = mib_table_column((1, 3, 6, 1, 4, 1, 5504, 5, 4, 4, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5))).clone(namedValues=named_values(('rx-clk-alarm', 1), ('tx-clk-alarm', 2), ('tx-rx-clk-alarm', 3), ('no-drift-alarm', 4), ('not-applicable', 5)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
zhoneHdsl2DriftAlarm.setStatus('current')
if mibBuilder.loadTexts:
zhoneHdsl2DriftAlarm.setDescription(' Indicates that the framer automatically attempted to adjust for clock drift. This is not applicable for ATM.')
zhone_hdsl2_framer_ib_status = mib_table_column((1, 3, 6, 1, 4, 1, 5504, 5, 4, 4, 1, 2), octet_string().subtype(subtypeSpec=value_size_constraint(1, 1)).setFixedLength(1)).setMaxAccess('readonly')
if mibBuilder.loadTexts:
zhoneHdsl2FramerIBStatus.setStatus('current')
if mibBuilder.loadTexts:
zhoneHdsl2FramerIBStatus.setDescription('Returns the segd,sega,uib and losd bits. The format of the octet is: x x x x segd sega uib losd.')
zhone_hdsl2_local_psd_mask_status = mib_table_column((1, 3, 6, 1, 4, 1, 5504, 5, 4, 4, 1, 3), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
zhoneHdsl2LocalPSDMaskStatus.setStatus('current')
if mibBuilder.loadTexts:
zhoneHdsl2LocalPSDMaskStatus.setDescription('Returns a number corresponding to the transmit power backoff requested by the local unit.')
zhone_hdsl2_loop_attenuation = mib_table_column((1, 3, 6, 1, 4, 1, 5504, 5, 4, 4, 1, 4), integer32()).setUnits('tenth DB').setMaxAccess('readonly')
if mibBuilder.loadTexts:
zhoneHdsl2LoopAttenuation.setStatus('current')
if mibBuilder.loadTexts:
zhoneHdsl2LoopAttenuation.setDescription('Estimation of the loop attenuation in tenths of a DB. by the local unit.')
zhone_hdsl2_loss_word_status = mib_table_column((1, 3, 6, 1, 4, 1, 5504, 5, 4, 4, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('no-lossw-defect', 1), ('lossw-defect', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
zhoneHdsl2LossWordStatus.setStatus('current')
if mibBuilder.loadTexts:
zhoneHdsl2LossWordStatus.setDescription('This indicates loss of sync.')
zhone_hdsl2_rmt_psd_mask_status = mib_table_column((1, 3, 6, 1, 4, 1, 5504, 5, 4, 4, 1, 6), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
zhoneHdsl2RmtPSDMaskStatus.setStatus('current')
if mibBuilder.loadTexts:
zhoneHdsl2RmtPSDMaskStatus.setDescription('Returns a number corresponding to the transmit power backoff requested by the remote unit.')
zhone_hdsl2_rmt_country_code = mib_table_column((1, 3, 6, 1, 4, 1, 5504, 5, 4, 4, 1, 7), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
zhoneHdsl2RmtCountryCode.setStatus('current')
if mibBuilder.loadTexts:
zhoneHdsl2RmtCountryCode.setDescription('ANSI HDSL2 Country code of the remote unit.')
zhone_hdsl2_rmt_version = mib_table_column((1, 3, 6, 1, 4, 1, 5504, 5, 4, 4, 1, 8), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
zhoneHdsl2RmtVersion.setStatus('current')
if mibBuilder.loadTexts:
zhoneHdsl2RmtVersion.setDescription('HDSL2 version of the remote unit.')
zhone_hdsl2_rmt_provider_code = mib_table_column((1, 3, 6, 1, 4, 1, 5504, 5, 4, 4, 1, 9), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
zhoneHdsl2RmtProviderCode.setStatus('current')
if mibBuilder.loadTexts:
zhoneHdsl2RmtProviderCode.setDescription('Provider word of the remote unit.')
zhone_hdsl2_rmt_vendor_data = mib_table_column((1, 3, 6, 1, 4, 1, 5504, 5, 4, 4, 1, 10), octet_string().subtype(subtypeSpec=value_size_constraint(8, 8)).setFixedLength(8)).setMaxAccess('readonly')
if mibBuilder.loadTexts:
zhoneHdsl2RmtVendorData.setStatus('current')
if mibBuilder.loadTexts:
zhoneHdsl2RmtVendorData.setDescription("The remote unit's vendor-provided data.")
zhone_hdsl2_rmt_tx_encoder_a = mib_table_column((1, 3, 6, 1, 4, 1, 5504, 5, 4, 4, 1, 11), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
zhoneHdsl2RmtTxEncoderA.setStatus('current')
if mibBuilder.loadTexts:
zhoneHdsl2RmtTxEncoderA.setDescription("The remote unit's 21 bit encoder coefficient A")
zhone_hdsl2_rmt_tx_encoder_b = mib_table_column((1, 3, 6, 1, 4, 1, 5504, 5, 4, 4, 1, 12), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
zhoneHdsl2RmtTxEncoderB.setStatus('current')
if mibBuilder.loadTexts:
zhoneHdsl2RmtTxEncoderB.setDescription("The remote unit's 21 bit encoder coefficient B")
zhone_hdsl2_tip_ring_status = mib_table_column((1, 3, 6, 1, 4, 1, 5504, 5, 4, 4, 1, 13), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('normal', 1), ('reverse', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
zhoneHdsl2TipRingStatus.setStatus('current')
if mibBuilder.loadTexts:
zhoneHdsl2TipRingStatus.setDescription('Indicates whether the tip and ring points from the local unit match the tip and ring points of the remote.')
zhone_hdsl2_frame_sync_word = mib_table_column((1, 3, 6, 1, 4, 1, 5504, 5, 4, 4, 1, 14), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
zhoneHdsl2FrameSyncWord.setStatus('current')
if mibBuilder.loadTexts:
zhoneHdsl2FrameSyncWord.setDescription('A 10 bit number indicating the frame sync word used. LSB justified')
zhone_hdsl2_stuff_bits = mib_table_column((1, 3, 6, 1, 4, 1, 5504, 5, 4, 4, 1, 15), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
zhoneHdsl2StuffBits.setStatus('current')
if mibBuilder.loadTexts:
zhoneHdsl2StuffBits.setDescription('A 4 bit number for the stuff bits. LSB justified.')
zhone_dsl_perf_data_table = mib_table((1, 3, 6, 1, 4, 1, 5504, 5, 4, 5))
if mibBuilder.loadTexts:
zhoneDslPerfDataTable.setStatus('current')
if mibBuilder.loadTexts:
zhoneDslPerfDataTable.setDescription('This table provides one row for each modem interface.')
zhone_dsl_perf_data_entry = mib_table_row((1, 3, 6, 1, 4, 1, 5504, 5, 4, 5, 1))
zhoneDslLineEntry.registerAugmentions(('ZhoneDsl-MIB', 'zhoneDslPerfDataEntry'))
zhoneDslPerfDataEntry.setIndexNames(*zhoneDslLineEntry.getIndexNames())
if mibBuilder.loadTexts:
zhoneDslPerfDataEntry.setStatus('current')
if mibBuilder.loadTexts:
zhoneDslPerfDataEntry.setDescription('An entry in zhoneDslPerfDataTable.')
zhone_dsl_perf_lofs = mib_table_column((1, 3, 6, 1, 4, 1, 5504, 5, 4, 5, 1, 1), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
zhoneDslPerfLofs.setStatus('current')
if mibBuilder.loadTexts:
zhoneDslPerfLofs.setDescription('Count of the number of Loss of Framing failures since agent reset.')
zhone_dsl_perf_loss = mib_table_column((1, 3, 6, 1, 4, 1, 5504, 5, 4, 5, 1, 2), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
zhoneDslPerfLoss.setStatus('current')
if mibBuilder.loadTexts:
zhoneDslPerfLoss.setDescription('Count of the number of Loss of Signal failures since agent reset.')
zhone_dsl_perf_lols = mib_table_column((1, 3, 6, 1, 4, 1, 5504, 5, 4, 5, 1, 3), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
zhoneDslPerfLols.setStatus('current')
if mibBuilder.loadTexts:
zhoneDslPerfLols.setDescription('Count of the number of Loss of Link failures since agent reset.')
zhone_dsl_perf_inits = mib_table_column((1, 3, 6, 1, 4, 1, 5504, 5, 4, 5, 1, 4), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
zhoneDslPerfInits.setStatus('current')
if mibBuilder.loadTexts:
zhoneDslPerfInits.setDescription('Count of the line initialization attempts since agent reset. Includes both successful and failed attempts.')
zhone_dsl_perf_cur15_min_time_elapsed = mib_table_column((1, 3, 6, 1, 4, 1, 5504, 5, 4, 5, 1, 5), gauge32()).setUnits('seconds').setMaxAccess('readonly')
if mibBuilder.loadTexts:
zhoneDslPerfCur15MinTimeElapsed.setStatus('current')
if mibBuilder.loadTexts:
zhoneDslPerfCur15MinTimeElapsed.setDescription('The number of seconds elapsed since the start of the current measurement period.')
zhone_dsl_perf_cur15_min_lofs = mib_table_column((1, 3, 6, 1, 4, 1, 5504, 5, 4, 5, 1, 6), gauge32()).setUnits('seconds').setMaxAccess('readonly')
if mibBuilder.loadTexts:
zhoneDslPerfCur15MinLofs.setStatus('current')
if mibBuilder.loadTexts:
zhoneDslPerfCur15MinLofs.setDescription('Count of the number of Loss of Framing failures in the current 15 minute interval.')
zhone_dsl_perf_cur15_min_loss = mib_table_column((1, 3, 6, 1, 4, 1, 5504, 5, 4, 5, 1, 7), gauge32()).setUnits('seconds').setMaxAccess('readonly')
if mibBuilder.loadTexts:
zhoneDslPerfCur15MinLoss.setStatus('current')
if mibBuilder.loadTexts:
zhoneDslPerfCur15MinLoss.setDescription('Count of seconds in the current 15 minute interval when there was a Loss of Signal.')
zhone_dsl_perf_cur15_min_lols = mib_table_column((1, 3, 6, 1, 4, 1, 5504, 5, 4, 5, 1, 8), gauge32()).setUnits('seconds').setMaxAccess('readonly')
if mibBuilder.loadTexts:
zhoneDslPerfCur15MinLols.setStatus('current')
if mibBuilder.loadTexts:
zhoneDslPerfCur15MinLols.setDescription('Count of seconds in the current 15 minute interval when there was of Loss of Link.')
zhone_dsl_perf_cur15_min_inits = mib_table_column((1, 3, 6, 1, 4, 1, 5504, 5, 4, 5, 1, 9), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
zhoneDslPerfCur15MinInits.setStatus('current')
if mibBuilder.loadTexts:
zhoneDslPerfCur15MinInits.setDescription('Count of the line initialization attempts in the current 15 minute interval. Includes both successful and failed attempts.')
zhone_dsl_alarm_profile_table = mib_table((1, 3, 6, 1, 4, 1, 5504, 5, 4, 6))
if mibBuilder.loadTexts:
zhoneDslAlarmProfileTable.setStatus('current')
if mibBuilder.loadTexts:
zhoneDslAlarmProfileTable.setDescription('This table contains information for Alarm conditions. One entry in this table reflects a profile defined by a manager which can be used to define alarm conditions for a modem.')
zhone_dsl_alarm_profile_entry = mib_table_row((1, 3, 6, 1, 4, 1, 5504, 5, 4, 6, 1)).setIndexNames((1, 'ZhoneDsl-MIB', 'zhoneDslAlarmProfileName'))
if mibBuilder.loadTexts:
zhoneDslAlarmProfileEntry.setStatus('current')
if mibBuilder.loadTexts:
zhoneDslAlarmProfileEntry.setDescription('An entry in the zhoneDslAlarmProfile Table.')
zhone_dsl_alarm_profile_name = mib_table_column((1, 3, 6, 1, 4, 1, 5504, 5, 4, 6, 1, 1), zhone_admin_string())
if mibBuilder.loadTexts:
zhoneDslAlarmProfileName.setStatus('current')
if mibBuilder.loadTexts:
zhoneDslAlarmProfileName.setDescription("Configuration profile name. Used by the zhoneDslLineConfigProfile entry to map zhoneDslLine Entry to the appropriate profile. When `dynamic' profiles are implemented, the profile name is user specified. Also, the system will always provide a default profile whose name is `DEFVAL'. When `static' profiles are implemented, there is an one-to-one relationship between each line and its profile. In which case, the profile name will need to algorithmically represent the Line's ifIndex. Therefore, the profile's name is a decimal zed string of the ifIndex that is fixed-length (i.e., 10) with leading zero(s). For example, the profile name for ifIndex which equals '15' will be '0000000015'.")
zhone_dsl_threshold15_min_loss = mib_table_column((1, 3, 6, 1, 4, 1, 5504, 5, 4, 6, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 900))).setUnits('seconds').setMaxAccess('readcreate')
if mibBuilder.loadTexts:
zhoneDslThreshold15MinLoss.setStatus('current')
if mibBuilder.loadTexts:
zhoneDslThreshold15MinLoss.setDescription('The number of Loss of signal seconds on a DSL interface within any given 15 minutes performance data collection period, which causes the SNMP agent to send a TRAP. 0 will disable the trap.')
zhone_dsl_threshold15_min_lols = mib_table_column((1, 3, 6, 1, 4, 1, 5504, 5, 4, 6, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(0, 900))).setUnits('seconds').setMaxAccess('readcreate')
if mibBuilder.loadTexts:
zhoneDslThreshold15MinLols.setStatus('current')
if mibBuilder.loadTexts:
zhoneDslThreshold15MinLols.setDescription('The number of Loss of link seconds on a DSL interface within any given 15 minutes performance data collection period, which causes the SNMP agent to send a TRAP. 0 will disable the trap.')
zhone_dsl_threshold15_min_lofs = mib_table_column((1, 3, 6, 1, 4, 1, 5504, 5, 4, 6, 1, 4), integer32().subtype(subtypeSpec=value_range_constraint(0, 900))).setUnits('seconds').setMaxAccess('readcreate')
if mibBuilder.loadTexts:
zhoneDslThreshold15MinLofs.setStatus('current')
if mibBuilder.loadTexts:
zhoneDslThreshold15MinLofs.setDescription('The number of Loss of framing seconds on a DSL interface within any given 15 minutes performance data collection period, which causes the SNMP agent to send a TRAP. 0 will disable the trap.')
zhone_dsl_alarm_profile_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 5504, 5, 4, 6, 1, 5), zhone_admin_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
zhoneDslAlarmProfileRowStatus.setStatus('current')
if mibBuilder.loadTexts:
zhoneDslAlarmProfileRowStatus.setDescription("RowStatus field to control deletion/addition of entries in this table. Minimal fields to be 'set' for a creation is:")
mibBuilder.exportSymbols('ZhoneDsl-MIB', zhoneDslLineType=zhoneDslLineType, zhoneDslPerfCur15MinLoss=zhoneDslPerfCur15MinLoss, zhoneHdsl2LocalPSDMaskStatus=zhoneHdsl2LocalPSDMaskStatus, zhoneDslThreshold15MinLofs=zhoneDslThreshold15MinLofs, zhoneHdsl2ConfigProfileName=zhoneHdsl2ConfigProfileName, zhoneDslLineRowStatus=zhoneDslLineRowStatus, zhoneDslLineConfigProfile=zhoneDslLineConfigProfile, zhoneDslPerfCur15MinLofs=zhoneDslPerfCur15MinLofs, zhoneHdsl2RmtProviderCode=zhoneHdsl2RmtProviderCode, zhoneHdsl2ConfigDecoderCoeffA=zhoneHdsl2ConfigDecoderCoeffA, zhoneDslPerfLoss=zhoneDslPerfLoss, zhoneDslPerfLols=zhoneDslPerfLols, zhoneDslAlarmProfileEntry=zhoneDslAlarmProfileEntry, zhoneHdsl2RmtTxEncoderA=zhoneHdsl2RmtTxEncoderA, PYSNMP_MODULE_ID=zhoneDsl_MIB, zhoneDslPerfCur15MinLols=zhoneDslPerfCur15MinLols, zhoneHdsl2StatusTable=zhoneHdsl2StatusTable, zhoneDslPerfLofs=zhoneDslPerfLofs, zhoneDslPerfCur15MinTimeElapsed=zhoneDslPerfCur15MinTimeElapsed, zhoneHdsl2ConfigProfileEntry=zhoneHdsl2ConfigProfileEntry, zhoneHdsl2ConfigFrameSyncWord=zhoneHdsl2ConfigFrameSyncWord, zhoneDslPerfDataEntry=zhoneDslPerfDataEntry, zhoneDslPerfCur15MinInits=zhoneDslPerfCur15MinInits, zhoneDslAlarmProfileTable=zhoneDslAlarmProfileTable, zhoneHdsl2ConfigRowStatus=zhoneHdsl2ConfigRowStatus, zhoneDslLineTable=zhoneDslLineTable, zhoneHdsl2ConfigUnitMode=zhoneHdsl2ConfigUnitMode, zhoneDslPerfInits=zhoneDslPerfInits, zhoneHdsl2FramerIBStatus=zhoneHdsl2FramerIBStatus, zhoneHdsl2DriftAlarm=zhoneHdsl2DriftAlarm, zhoneHdsl2RmtPSDMaskStatus=zhoneHdsl2RmtPSDMaskStatus, zhoneDslLineEntry=zhoneDslLineEntry, zhoneHdsl2ConfigTransmitPowerbackoffMode=zhoneHdsl2ConfigTransmitPowerbackoffMode, zhoneHdsl2RmtCountryCode=zhoneHdsl2RmtCountryCode, zhoneHdsl2RmtVersion=zhoneHdsl2RmtVersion, zhoneDslDownLineRate=zhoneDslDownLineRate, zhoneHdsl2ConfigProfileTable=zhoneHdsl2ConfigProfileTable, zhoneDslAlarmProfileRowStatus=zhoneDslAlarmProfileRowStatus, zhoneHdsl2StuffBits=zhoneHdsl2StuffBits, zhoneHdsl2ConfigStuffBits=zhoneHdsl2ConfigStuffBits, zhoneDsl_MIB=zhoneDsl_MIB, zhoneDslPerfDataTable=zhoneDslPerfDataTable, zhoneDslLineStatus=zhoneDslLineStatus, zhoneHdsl2RmtVendorData=zhoneHdsl2RmtVendorData, zhoneHdsl2RmtTxEncoderB=zhoneHdsl2RmtTxEncoderB, zhoneHdsl2LossWordStatus=zhoneHdsl2LossWordStatus, zhoneDslLineCapabilities=zhoneDslLineCapabilities, zhoneDslUpLineRate=zhoneDslUpLineRate, zhoneHdsl2LoopAttenuation=zhoneHdsl2LoopAttenuation, zhoneHdsl2StatusEntry=zhoneHdsl2StatusEntry, zhoneHdsl2FrameSyncWord=zhoneHdsl2FrameSyncWord, zhoneDslLineAlarmProfile=zhoneDslLineAlarmProfile, zhoneDslThreshold15MinLoss=zhoneDslThreshold15MinLoss, zhoneHdsl2TipRingStatus=zhoneHdsl2TipRingStatus, zhoneHdsl2ConfigDecoderCoeffB=zhoneHdsl2ConfigDecoderCoeffB, zhoneDslAlarmProfileName=zhoneDslAlarmProfileName, zhoneDslThreshold15MinLols=zhoneDslThreshold15MinLols) |
def is_on(S, j):
return (S & (1 << j)) >> j
def set_all(n):
return (1 << n) - 1
def low_bit(S):
return (S & (-S)).bit_length() - 1
def clear_bit(S, j):
return S & ~(1 << j)
| def is_on(S, j):
return (S & 1 << j) >> j
def set_all(n):
return (1 << n) - 1
def low_bit(S):
return (S & -S).bit_length() - 1
def clear_bit(S, j):
return S & ~(1 << j) |
class core50():
def __init__(self, paradigm, run):
self.batch_num = 5
self.rootdir = '/home/rushikesh/code/core50_dataloaders/dataloaders/task_filelists/'
self.train_data = []
self.train_labels = []
self.train_groups = [[],[],[],[],[]]
for b in range(self.batch_num):
with open( self.rootdir + paradigm + '/run' + str(run) + '/stream/train_task_' + str(b).zfill(2) + '_filelist.txt','r') as f:
for i, line in enumerate(f):
if line.strip():
path, label = line.split()
self.train_groups[b].append((path, int(label)))
self.train_data.append(path)
self.train_labels.append(int(label))
self.train = {'data': self.train_data,'fine_labels': self.train_labels}
self.val_groups = self.train_groups.copy()
self.test_data = []
self.test_labels = []
self.test_groups = [[],[],[],[],[]]
groupsid = {'0':0,'1':0,
'2':1,'3':1,
'4':2,'5':2,
'6':3,'7':3,
'8':4,'9':4}
with open( self.rootdir + paradigm + '/run' + str(run) + '/stream/test_filelist.txt','r') as f:
for i, line in enumerate(f):
if line.strip():
path, label = line.split()
gp = groupsid[label]
#print("label, gp")
#print(label, gp)
self.test_groups[gp].append((path, int(label)))
self.test_data.append(path)
self.test_labels.append(int(label))
self.test = {'data': self.test_data,'fine_labels': self.test_labels}
def getNextClasses(self, test_id):
return self.train_groups[test_id], self.val_groups[test_id], self.test_groups[test_id] #self.test_grps #
| class Core50:
def __init__(self, paradigm, run):
self.batch_num = 5
self.rootdir = '/home/rushikesh/code/core50_dataloaders/dataloaders/task_filelists/'
self.train_data = []
self.train_labels = []
self.train_groups = [[], [], [], [], []]
for b in range(self.batch_num):
with open(self.rootdir + paradigm + '/run' + str(run) + '/stream/train_task_' + str(b).zfill(2) + '_filelist.txt', 'r') as f:
for (i, line) in enumerate(f):
if line.strip():
(path, label) = line.split()
self.train_groups[b].append((path, int(label)))
self.train_data.append(path)
self.train_labels.append(int(label))
self.train = {'data': self.train_data, 'fine_labels': self.train_labels}
self.val_groups = self.train_groups.copy()
self.test_data = []
self.test_labels = []
self.test_groups = [[], [], [], [], []]
groupsid = {'0': 0, '1': 0, '2': 1, '3': 1, '4': 2, '5': 2, '6': 3, '7': 3, '8': 4, '9': 4}
with open(self.rootdir + paradigm + '/run' + str(run) + '/stream/test_filelist.txt', 'r') as f:
for (i, line) in enumerate(f):
if line.strip():
(path, label) = line.split()
gp = groupsid[label]
self.test_groups[gp].append((path, int(label)))
self.test_data.append(path)
self.test_labels.append(int(label))
self.test = {'data': self.test_data, 'fine_labels': self.test_labels}
def get_next_classes(self, test_id):
return (self.train_groups[test_id], self.val_groups[test_id], self.test_groups[test_id]) |
User_name = input("What is your name? ")
User_age = input("How old are you? ")
User_liveplace = input("Where are you live? ")
print ( "This is", User_name)
print ( "It is" , User_age)
print ( "(S)he live in", User_liveplace) | user_name = input('What is your name? ')
user_age = input('How old are you? ')
user_liveplace = input('Where are you live? ')
print('This is', User_name)
print('It is', User_age)
print('(S)he live in', User_liveplace) |
def includes(doc, path, title=3, **args):
j = doc.docsite._j
spath = j.sal.fs.processPathForDoubleDots(j.sal.fs.joinPaths(j.sal.fs.getDirName(doc.path), path))
if not j.sal.fs.exists(spath, followlinks=True):
doc.raiseError("Cannot find path for macro includes:%s" % spath)
docNames = [j.sal.fs.getBaseName(item)[:-3] for item in j.sal.fs.listFilesInDir(spath, filter="*.md")]
docNames = [j.sal.fs.joinPaths(path, name) for name in docNames]
docNames.sort()
titleprefix = "#" * title
out = ""
for docName in docNames:
doc2 = doc.docsite.doc_get(docName, die=False)
if doc2 is None:
msg = "cannot execute macro includes, could not find doc:\n%s" % docName
doc.raiseError(msg)
return "```\n%s\n```\n" % msg
out += "%s %s\n\n" % (titleprefix, docName)
out += "%s\n\n" % doc2.markdown_source.rstrip("\n")
return out
| def includes(doc, path, title=3, **args):
j = doc.docsite._j
spath = j.sal.fs.processPathForDoubleDots(j.sal.fs.joinPaths(j.sal.fs.getDirName(doc.path), path))
if not j.sal.fs.exists(spath, followlinks=True):
doc.raiseError('Cannot find path for macro includes:%s' % spath)
doc_names = [j.sal.fs.getBaseName(item)[:-3] for item in j.sal.fs.listFilesInDir(spath, filter='*.md')]
doc_names = [j.sal.fs.joinPaths(path, name) for name in docNames]
docNames.sort()
titleprefix = '#' * title
out = ''
for doc_name in docNames:
doc2 = doc.docsite.doc_get(docName, die=False)
if doc2 is None:
msg = 'cannot execute macro includes, could not find doc:\n%s' % docName
doc.raiseError(msg)
return '```\n%s\n```\n' % msg
out += '%s %s\n\n' % (titleprefix, docName)
out += '%s\n\n' % doc2.markdown_source.rstrip('\n')
return out |
#!/usr/bin/env python
lista=[2,3,4,1]
lista2=lista[:] #Copia
lista.sort()
if lista == lista2:
print("Lista ordenada")
else:
print("Lista no ordenada") | lista = [2, 3, 4, 1]
lista2 = lista[:]
lista.sort()
if lista == lista2:
print('Lista ordenada')
else:
print('Lista no ordenada') |
__author__ = "Andre Merzky"
__copyright__ = "Copyright 2012-2013, The SAGA Project"
__license__ = "MIT"
# ------------------------------------------------------------------------------
# FIXME: OS enums, ARCH enums
# resource type enum
COMPUTE = 1 # resource accepting jobs
STORAGE = 2 # storage resource (duh)
NETWORK = 4 # connects compute and storage resources
# resource state enum
UNKNOWN = None # wut?
NEW = 1 # requsted, not accepting jobs, yet;
# initial state
PENDING = 2 # accepting jobs, will become active eventually
ACTIVE = 4 # accepting jobs, jobs can run
CANCELED = 8 # released by user; final state
EXPIRED = 16 # released by system; final state
DONE = EXPIRED # alias
FAILED = 32 # released unexpectedly by system or internally;
# final state
FINAL = CANCELED | DONE | FAILED
# resource attributes
ID = 'Id' # url identifying a resource instance
RTYPE = 'Rtype' # type enum, identifying the resource type
STATE = 'State' # state enum, identifying the rsource state
STATE_DETAIL = 'StateDetail' # string, representing the native backend state
MANAGER = 'Manager' # url, pointing to the resource's manager
DESCRIPTION = 'Description' # dict, containing resource attributes
# generic resource description attributes
TEMPLATE = 'Template' # string, template to which the resource
# was created
IMAGE = 'Image' # FIXME:
# resource lifetime attributes
DYNAMIC = 'Dynamic' # bool, enables/disables on-demand
# resource
# resizing
START = 'Start' # time, expected time at which resource
# becomes ACTIVE
END = 'End' # time, expected time at which resource
# will EXPIRE
DURATION = 'Duration' # time, expected time span between ACTIVE
# and EXPIRED
# resource type specific (non-generic) attributes
MACHINE_OS = 'MachineOS' # enum, identifying the resource's operating
# system
MACHINE_ARCH = 'MachineArch' # enum, identifying the machine architecture
SIZE = 'Size' # int, identifying No. of slots / size in
# MB / No. of IPs
MEMORY = 'Memory' # int, identifying memory size in MegaByte
ACCESS = 'Access' # string, identifying the hostname/ip, mount
# point or provisioning URL to access the
# resource
# ------------------------------------------------------------------------------
| __author__ = 'Andre Merzky'
__copyright__ = 'Copyright 2012-2013, The SAGA Project'
__license__ = 'MIT'
compute = 1
storage = 2
network = 4
unknown = None
new = 1
pending = 2
active = 4
canceled = 8
expired = 16
done = EXPIRED
failed = 32
final = CANCELED | DONE | FAILED
id = 'Id'
rtype = 'Rtype'
state = 'State'
state_detail = 'StateDetail'
manager = 'Manager'
description = 'Description'
template = 'Template'
image = 'Image'
dynamic = 'Dynamic'
start = 'Start'
end = 'End'
duration = 'Duration'
machine_os = 'MachineOS'
machine_arch = 'MachineArch'
size = 'Size'
memory = 'Memory'
access = 'Access' |
def is_zigzag(numbers: list):
if len(numbers) != 3:
raise ValueError('must be 3 elements {}'.format(numbers))
return 1 if (numbers[0] < numbers[1] > numbers[2]) or (numbers[0] > numbers[1] < numbers[2]) else 0
if __name__ == "__main__":
#numbers = [1, 2, 1]
numbers = [1, 2, 1, 3, 4]
numbers = [1, 3, 4, 5, 6, 14, 14]
result = list()
for i in range(len(numbers)):
if i + 2 < len(numbers):
result.append( is_zigzag(numbers[i: i + 3]) )
print(result)
| def is_zigzag(numbers: list):
if len(numbers) != 3:
raise value_error('must be 3 elements {}'.format(numbers))
return 1 if numbers[0] < numbers[1] > numbers[2] or numbers[0] > numbers[1] < numbers[2] else 0
if __name__ == '__main__':
numbers = [1, 2, 1, 3, 4]
numbers = [1, 3, 4, 5, 6, 14, 14]
result = list()
for i in range(len(numbers)):
if i + 2 < len(numbers):
result.append(is_zigzag(numbers[i:i + 3]))
print(result) |
def ext_here(props):
props['ext_ui']['filedir2']=props['ext_ui']['filedir']
props['music'].clickSon()
#print(filedir2)
decomp(props)
def ext_to(props):
filedir=props['ext_ui']['filedir']
root=props['root']
filedialog=props['filedialog']
props['music'].clickSon()
root.filename =filedialog.askdirectory(title="select folder")
filedir2=root.filename
if filedir2=='':
return 0
#print(filedir2)
props['ext_ui']['filedir2']=filedir2
decomp(props)
def decomp(props):
p1open=props['env']['main']['p1open']
music=props['music']
not_err=0
finish=props['finish']
try:
myzip=props['zipfile'].PyZipFile(props['ext_ui']['filedir'])
myzip.extractall(path=props['ext_ui']['filedir2'])
except none:
not_err=1
if not_err==0:
finish(1,props)
music.sucSon()
else:
finish(0,props)
music.errorSon()
p1open+=1
if p1open>=3:
#lab2.destroy()
pass
| def ext_here(props):
props['ext_ui']['filedir2'] = props['ext_ui']['filedir']
props['music'].clickSon()
decomp(props)
def ext_to(props):
filedir = props['ext_ui']['filedir']
root = props['root']
filedialog = props['filedialog']
props['music'].clickSon()
root.filename = filedialog.askdirectory(title='select folder')
filedir2 = root.filename
if filedir2 == '':
return 0
props['ext_ui']['filedir2'] = filedir2
decomp(props)
def decomp(props):
p1open = props['env']['main']['p1open']
music = props['music']
not_err = 0
finish = props['finish']
try:
myzip = props['zipfile'].PyZipFile(props['ext_ui']['filedir'])
myzip.extractall(path=props['ext_ui']['filedir2'])
except none:
not_err = 1
if not_err == 0:
finish(1, props)
music.sucSon()
else:
finish(0, props)
music.errorSon()
p1open += 1
if p1open >= 3:
pass |
class UserDoesNotExist(Exception):
pass
class PasswordDoesNotMatch(Exception):
pass
class EmailAlreadyRegistered(Exception):
pass
| class Userdoesnotexist(Exception):
pass
class Passworddoesnotmatch(Exception):
pass
class Emailalreadyregistered(Exception):
pass |
class TestData():
BROWSER_PATH="C:/Python/Python37-32/chromedriver.exe"
BASE_URL = "https://www.amazon.com"
SEARCH_TERM = "adidas backpack men"
HOME_PAGE_TITLE = "Amazon.com"
NO_RESULTS_TEXT = "No results found." | class Testdata:
browser_path = 'C:/Python/Python37-32/chromedriver.exe'
base_url = 'https://www.amazon.com'
search_term = 'adidas backpack men'
home_page_title = 'Amazon.com'
no_results_text = 'No results found.' |
class Vec3():
def __init__(self, x=0, y=0, z=0):
self.x = x
self.y = y
self.z = z
def length(self):
return (self.x * self.x + self.y * self.y + self.z * self.z)**0.5
def __add__(self, other):
return Vec3(self.x + other.x, self.y + other.y, self.z + other.z)
def __sub__(self, other):
return Vec3(self.x - other.x, self.y - other.y, self.z - other.z)
def __mul__(self, other):
return Vec3(self.x * other.x, self.y * other.y, self.z * other.z)
def __truediv__(self, other):
return Vec3(self.x / other.x, self.y / other.y, self.z / other.z)
def __neg__(self):
return Vec3(-self.x, -self.y, -self.z)
def __gt__(self, other):
return self.length() > other.length()
def __lt__(self, other):
return self.length() < other.length()
def normalized(self):
if self.length() == 0:
return Vec3(0, 0, 0)
return self / toVec3(self.length())
def toVec2(x):
return Vec3(x, x, 0)
def toVec3(x):
return Vec3(x, x, x)
| class Vec3:
def __init__(self, x=0, y=0, z=0):
self.x = x
self.y = y
self.z = z
def length(self):
return (self.x * self.x + self.y * self.y + self.z * self.z) ** 0.5
def __add__(self, other):
return vec3(self.x + other.x, self.y + other.y, self.z + other.z)
def __sub__(self, other):
return vec3(self.x - other.x, self.y - other.y, self.z - other.z)
def __mul__(self, other):
return vec3(self.x * other.x, self.y * other.y, self.z * other.z)
def __truediv__(self, other):
return vec3(self.x / other.x, self.y / other.y, self.z / other.z)
def __neg__(self):
return vec3(-self.x, -self.y, -self.z)
def __gt__(self, other):
return self.length() > other.length()
def __lt__(self, other):
return self.length() < other.length()
def normalized(self):
if self.length() == 0:
return vec3(0, 0, 0)
return self / to_vec3(self.length())
def to_vec2(x):
return vec3(x, x, 0)
def to_vec3(x):
return vec3(x, x, x) |
def dp(height, max_steps, memo):
if height == 0:
return 1
if memo[height] > 0:
return memo[height]
ways = 0
for i in range(max(height - max_steps, 0), height):
ways += dp(i, max_steps, memo)
memo[height] = ways
return ways
def staircaseTraversal(height, maxSteps):
memo = [-1] * (height + 1)
dp(height, maxSteps, memo)
return memo[height]
| def dp(height, max_steps, memo):
if height == 0:
return 1
if memo[height] > 0:
return memo[height]
ways = 0
for i in range(max(height - max_steps, 0), height):
ways += dp(i, max_steps, memo)
memo[height] = ways
return ways
def staircase_traversal(height, maxSteps):
memo = [-1] * (height + 1)
dp(height, maxSteps, memo)
return memo[height] |
#Question 1342:
#Given a non-negative integer num, return the number of steps to reduce it to zero.
# If the current number is even, you have to divide it by 2, otherwise, you have to subtract 1 from it.
#Example:
#Input: num = 14
#Output: 6
#Explanation:
#Step 1) 14 is even; divide by 2 and obtain 7.
#Step 2) 7 is odd; subtract 1 and obtain 6.
#Step 3) 6 is even; divide by 2 and obtain 3.
#Step 4) 3 is odd; subtract 1 and obtain 2.
#Step 5) 2 is even; divide by 2 and obtain 1.
#Step 6) 1 is odd; subtract 1 and obtain 0.
#Solution:
def numberOfSteps(num):
no_of_steps=0 #Counter for tracking the number of steps required to perform the operation
while num>0: #Perform computation till we reduce num to zero
if num & 1 == 0: #Check if num is an odd number
#Performing And Operation of the number and one in 1 binary form
# 101 (say number is 3)
# 001 (1 in binary form)
# +
# ------
# 001(This is 1 in binary form)
# -------
# On similar computation with other numbers we can conclude that on Performing And Operation of any number with 1
# If the result is 1->It is an odd number
# Otherwise it is an even number
num-=1 #Reduce it by one
else: #If num is an even number
num//=2 #Divide it by 2
no_of_steps += 1
return(no_of_steps)
num = int(input("Enter a number: "))
print("Number of steps required to reduce: {}".format(numberOfSteps(num)))
| def number_of_steps(num):
no_of_steps = 0
while num > 0:
if num & 1 == 0:
num -= 1
else:
num //= 2
no_of_steps += 1
return no_of_steps
num = int(input('Enter a number: '))
print('Number of steps required to reduce: {}'.format(number_of_steps(num))) |
class Variable(object):
BOOLEAN = 1
def __init__(self, name, type, value):
self.name = name
self.type = type
self.value = value
def __repr__(self):
return "Variable(%s, %s, %s)" % (self.name, self.type, self.value)
| class Variable(object):
boolean = 1
def __init__(self, name, type, value):
self.name = name
self.type = type
self.value = value
def __repr__(self):
return 'Variable(%s, %s, %s)' % (self.name, self.type, self.value) |
# Copyright 2016 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.
load(":common.bzl", "make_dart_context", "package_spec_action")
load(":dart_vm_snapshot.bzl", "dart_vm_snapshot_action")
def _dart_vm_binary_action(
ctx,
script_file,
srcs,
deps,
data = [],
snapshot = True,
script_args = [],
generated_srcs = [],
vm_flags = [],
pub_pkg_name = ""):
dart_ctx = make_dart_context(
ctx,
srcs = srcs,
generated_srcs = generated_srcs,
data = data,
deps = deps,
package = pub_pkg_name,
)
if snapshot:
out_snapshot = ctx.actions.declare_file(ctx.label.name + ".snapshot")
dart_vm_snapshot_action(
ctx = ctx,
dart_ctx = dart_ctx,
output = out_snapshot,
vm_flags = vm_flags,
script_file = script_file,
script_args = script_args,
)
script_file = out_snapshot
# Emit package spec.
package_spec = ctx.actions.declare_file(ctx.label.name + ".packages")
package_spec_action(
ctx = ctx,
dart_ctx = dart_ctx,
output = package_spec,
)
# Emit entrypoint script.
ctx.template_action(
output = ctx.outputs.executable,
template = ctx.file._entrypoint_template,
executable = True,
substitutions = {
"%workspace%": ctx.workspace_name,
"%dart_vm%": ctx.executable._dart_vm.short_path,
"%package_spec%": package_spec.short_path,
"%vm_flags%": " ".join(vm_flags),
"%script_file%": script_file.short_path,
"%script_args%": " ".join(script_args),
},
)
# Compute runfiles.
runfiles_files = dart_ctx.transitive_data.files + [
ctx.executable._dart_vm,
ctx.outputs.executable,
package_spec,
]
if snapshot:
runfiles_files += [out_snapshot]
else:
runfiles_files += dart_ctx.transitive_srcs.files
return ctx.runfiles(
files = list(runfiles_files),
collect_data = True,
)
_default_binary_attrs = {
"_dart_vm": attr.label(
allow_files = True,
single_file = True,
executable = True,
cfg = "host",
default = Label("@dart_sdk//:dart_vm"),
),
"_entrypoint_template": attr.label(
single_file = True,
default = Label("//dart/build_rules/templates:dart_vm_binary"),
),
}
internal_dart_vm = struct(
binary_action = _dart_vm_binary_action,
common_attrs = _default_binary_attrs,
)
| load(':common.bzl', 'make_dart_context', 'package_spec_action')
load(':dart_vm_snapshot.bzl', 'dart_vm_snapshot_action')
def _dart_vm_binary_action(ctx, script_file, srcs, deps, data=[], snapshot=True, script_args=[], generated_srcs=[], vm_flags=[], pub_pkg_name=''):
dart_ctx = make_dart_context(ctx, srcs=srcs, generated_srcs=generated_srcs, data=data, deps=deps, package=pub_pkg_name)
if snapshot:
out_snapshot = ctx.actions.declare_file(ctx.label.name + '.snapshot')
dart_vm_snapshot_action(ctx=ctx, dart_ctx=dart_ctx, output=out_snapshot, vm_flags=vm_flags, script_file=script_file, script_args=script_args)
script_file = out_snapshot
package_spec = ctx.actions.declare_file(ctx.label.name + '.packages')
package_spec_action(ctx=ctx, dart_ctx=dart_ctx, output=package_spec)
ctx.template_action(output=ctx.outputs.executable, template=ctx.file._entrypoint_template, executable=True, substitutions={'%workspace%': ctx.workspace_name, '%dart_vm%': ctx.executable._dart_vm.short_path, '%package_spec%': package_spec.short_path, '%vm_flags%': ' '.join(vm_flags), '%script_file%': script_file.short_path, '%script_args%': ' '.join(script_args)})
runfiles_files = dart_ctx.transitive_data.files + [ctx.executable._dart_vm, ctx.outputs.executable, package_spec]
if snapshot:
runfiles_files += [out_snapshot]
else:
runfiles_files += dart_ctx.transitive_srcs.files
return ctx.runfiles(files=list(runfiles_files), collect_data=True)
_default_binary_attrs = {'_dart_vm': attr.label(allow_files=True, single_file=True, executable=True, cfg='host', default=label('@dart_sdk//:dart_vm')), '_entrypoint_template': attr.label(single_file=True, default=label('//dart/build_rules/templates:dart_vm_binary'))}
internal_dart_vm = struct(binary_action=_dart_vm_binary_action, common_attrs=_default_binary_attrs) |
print("CONVERSOR DE DECIMALES A OTRA BASE")
number = input("Ingresa un numero de base decimal: ")
base = input("Ingresa la base: ")
numbers = []
def residuo(number, base, iteration = 0):
cociente = number // base
res = number % base
print(" " * iteration, res, cociente)
numbers.append(res)
if (cociente < base):
numbers.append(cociente)
return
else:
return residuo(cociente, base, iteration + 1)
base = int(base)
residuo(int(number), base)
print("El resultante base", base, "es: ", end='')
for i in range(len(numbers) - 1, -1, -1):
print(numbers[i], end='')
print() | print('CONVERSOR DE DECIMALES A OTRA BASE')
number = input('Ingresa un numero de base decimal: ')
base = input('Ingresa la base: ')
numbers = []
def residuo(number, base, iteration=0):
cociente = number // base
res = number % base
print(' ' * iteration, res, cociente)
numbers.append(res)
if cociente < base:
numbers.append(cociente)
return
else:
return residuo(cociente, base, iteration + 1)
base = int(base)
residuo(int(number), base)
print('El resultante base', base, 'es: ', end='')
for i in range(len(numbers) - 1, -1, -1):
print(numbers[i], end='')
print() |
def draw(n):
for i in range(1, n+1):
for k in range(0,n-i):
print(" ", end=" ")
for j in range(0,i):
print("*", end=" ")
print("\n")
draw(4) | def draw(n):
for i in range(1, n + 1):
for k in range(0, n - i):
print(' ', end=' ')
for j in range(0, i):
print('*', end=' ')
print('\n')
draw(4) |
i = 0
while i < 10:
print(i)
i = i + 1
i = 1
while i <= 2 ** 32:
print(i)
i *= 2
done = False
while not done:
quit = input("Do you want to quit? ")
if quit == "y":
done = True
attack = input("Does your elf attack the dragon? ")
if attack == "y":
print("Bad choice, you died.")
done = True
value = 0
increment = 0.5
while value < 0.999:
value += increment
increment *= 0.5
print(value)
| i = 0
while i < 10:
print(i)
i = i + 1
i = 1
while i <= 2 ** 32:
print(i)
i *= 2
done = False
while not done:
quit = input('Do you want to quit? ')
if quit == 'y':
done = True
attack = input('Does your elf attack the dragon? ')
if attack == 'y':
print('Bad choice, you died.')
done = True
value = 0
increment = 0.5
while value < 0.999:
value += increment
increment *= 0.5
print(value) |
class Solution:
def reformatDate(self, date: str) -> str:
clean = date.split()
month = [
"Jan",
"Feb",
"Mar",
"Apr",
"May",
"Jun",
"Jul",
"Aug",
"Sep",
"Oct",
"Nov",
"Dec",
]
day, month, year = str(clean[0])[:-2], month.index(clean[1]) + 1, clean[2]
if len(day) == 1:
day = f"0{day}"
if len(str(month)) == 1:
month = f"0{month}"
return f"{year}-{month}-{day}"
| class Solution:
def reformat_date(self, date: str) -> str:
clean = date.split()
month = ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec']
(day, month, year) = (str(clean[0])[:-2], month.index(clean[1]) + 1, clean[2])
if len(day) == 1:
day = f'0{day}'
if len(str(month)) == 1:
month = f'0{month}'
return f'{year}-{month}-{day}' |
# Copyright (c) 2020 Digital Asset (Switzerland) GmbH and/or its affiliates. All rights reserved.
# SPDX-License-Identifier: Apache-2.0
# This is a mixture of the javadoc_library rule in
# https://github.com/google/bazel-common and the one in
# https://github.com/stackb/rules_proto.
# The main two factors for why we need this are
# 1. We only have a source jar for java_proto_library.
# The rules in bazel-common do not support this.
# 2. We need to get the source jar via the JavaInfo provider.
# The rules in rules_proto do not support this.
# We probably want to clean this up and upstream it at some point.
def _javadoc_library(ctx):
transitive_deps = []
for dep in ctx.attr.deps:
if JavaInfo in dep:
transitive_deps.append(dep[JavaInfo].transitive_deps)
elif hasattr(dep, "java"):
transitive_deps.append(dep.java.transitive_deps)
classpath = depset([], transitive = transitive_deps).to_list()
java_home = str(ctx.attr._jdk[java_common.JavaRuntimeInfo].java_home)
javadoc_command = [
java_home + "/bin/javadoc",
# this is an ugly hack to provide all directories ending with `java` as a "source root"
'-sourcepath $(find . -type d -name "*java" -printf "%P:").',
" ".join(ctx.attr.root_packages),
"-use",
"-subpackages",
":".join(ctx.attr.root_packages),
"-encoding UTF8",
"-classpath",
":".join([jar.path for jar in classpath]),
"-notimestamp",
"-d tmp",
"-Xdoclint:-missing",
"-quiet",
]
if ctx.attr.doctitle:
javadoc_command.append('-doctitle "%s"' % ctx.attr.doctitle)
if ctx.attr.exclude_packages:
javadoc_command.append("-exclude %s" % ":".join(ctx.attr.exclude_packages))
for link in ctx.attr.external_javadoc_links:
javadoc_command.append("-linkoffline {0} {0}".format(link))
if ctx.attr.bottom_text:
javadoc_command.append("-bottom '%s'" % ctx.attr.bottom_text)
jar_command = "%s/bin/jar cf %s -C tmp ." % (java_home, ctx.outputs.jar.path)
unjar_params = []
srcs = []
for src in ctx.attr.srcs:
# this is for when the provided src is a java_library target
if JavaInfo in src:
for jar in src[JavaInfo].source_jars:
unjar_params.append(jar.path)
srcs.append(jar)
elif DefaultInfo in src:
srcs.extend(src[DefaultInfo].files.to_list())
unjar_command = "%s/bin/jar xf %s" % (java_home, " ".join(unjar_params))
ctx.actions.run_shell(
inputs = srcs + classpath + ctx.files._jdk,
command = "%s && %s && %s" % (unjar_command, " ".join(javadoc_command), jar_command),
outputs = [ctx.outputs.jar],
)
javadoc_library = rule(
attrs = {
"srcs": attr.label_list(
allow_empty = False,
allow_files = True,
),
"deps": attr.label_list(),
"doctitle": attr.string(default = ""),
"root_packages": attr.string_list(),
"exclude_packages": attr.string_list(),
"android_api_level": attr.int(default = -1),
"bottom_text": attr.string(default = ""),
"external_javadoc_links": attr.string_list(),
"_jdk": attr.label(
default = Label("@bazel_tools//tools/jdk:current_java_runtime"),
providers = [java_common.JavaRuntimeInfo],
),
},
outputs = {"jar": "%{name}.jar"},
implementation = _javadoc_library,
)
| def _javadoc_library(ctx):
transitive_deps = []
for dep in ctx.attr.deps:
if JavaInfo in dep:
transitive_deps.append(dep[JavaInfo].transitive_deps)
elif hasattr(dep, 'java'):
transitive_deps.append(dep.java.transitive_deps)
classpath = depset([], transitive=transitive_deps).to_list()
java_home = str(ctx.attr._jdk[java_common.JavaRuntimeInfo].java_home)
javadoc_command = [java_home + '/bin/javadoc', '-sourcepath $(find . -type d -name "*java" -printf "%P:").', ' '.join(ctx.attr.root_packages), '-use', '-subpackages', ':'.join(ctx.attr.root_packages), '-encoding UTF8', '-classpath', ':'.join([jar.path for jar in classpath]), '-notimestamp', '-d tmp', '-Xdoclint:-missing', '-quiet']
if ctx.attr.doctitle:
javadoc_command.append('-doctitle "%s"' % ctx.attr.doctitle)
if ctx.attr.exclude_packages:
javadoc_command.append('-exclude %s' % ':'.join(ctx.attr.exclude_packages))
for link in ctx.attr.external_javadoc_links:
javadoc_command.append('-linkoffline {0} {0}'.format(link))
if ctx.attr.bottom_text:
javadoc_command.append("-bottom '%s'" % ctx.attr.bottom_text)
jar_command = '%s/bin/jar cf %s -C tmp .' % (java_home, ctx.outputs.jar.path)
unjar_params = []
srcs = []
for src in ctx.attr.srcs:
if JavaInfo in src:
for jar in src[JavaInfo].source_jars:
unjar_params.append(jar.path)
srcs.append(jar)
elif DefaultInfo in src:
srcs.extend(src[DefaultInfo].files.to_list())
unjar_command = '%s/bin/jar xf %s' % (java_home, ' '.join(unjar_params))
ctx.actions.run_shell(inputs=srcs + classpath + ctx.files._jdk, command='%s && %s && %s' % (unjar_command, ' '.join(javadoc_command), jar_command), outputs=[ctx.outputs.jar])
javadoc_library = rule(attrs={'srcs': attr.label_list(allow_empty=False, allow_files=True), 'deps': attr.label_list(), 'doctitle': attr.string(default=''), 'root_packages': attr.string_list(), 'exclude_packages': attr.string_list(), 'android_api_level': attr.int(default=-1), 'bottom_text': attr.string(default=''), 'external_javadoc_links': attr.string_list(), '_jdk': attr.label(default=label('@bazel_tools//tools/jdk:current_java_runtime'), providers=[java_common.JavaRuntimeInfo])}, outputs={'jar': '%{name}.jar'}, implementation=_javadoc_library) |
# Notation for direction will be as follows:
# 0
# 3 1
# 2
# Turning to the rights = (d+1)%4
# Turning to the left = (d-1)%4
def move(d, cX, cY):
if (d == 0):
cX = cX-1
if (d == 1):
cY = cY+1
if (d == 2):
cX = cX+1
if (d == 3):
cY = cY-1
return cX, cY
def work(mp, d, x, y):
#print("Current Pos = ", mp[x][y])
if (mp[x][y] == '#'):
d = (d+1)%4
mp[x][y] = '.'
else:
d = (d-1)%4
global becameInfected
becameInfected += 1
mp[x][y] = '#'
return mp, d
def expandMap(mp, cX, cY):
# If they are at the top of the map
if (cX == 0):
# Generate a new top line of clean nodes.
topLine = []
for i in range(len(mp[0])):
topLine.append('.')
mp.insert(0, topLine)
cX = 1
# If they are at the bottom of the map
if (cX == len(mp)):
# Generate a new bottom line of clean nodes.
bottomLine = []
for i in range(len(mp[0])):
bottomLine.append('.')
mp.insert(0, bottomLine)
# cX stays the same.
# If they are at the left of the map
if (cY == 0):
# Add a clean node to the start every line.
for i in range(len(mp)):
mp[i].insert(0, '.')
cY = 1
# If they are at the right of the map
if (cY == len(mp[0])):
# Add a clean node to the end every line
for i in range(len(mp)):
mp[i].append('.')
# cY stays in the same place.
return mp, cX, cY
def mapPrint(mp, cX, cY):
outStr = ""
for i in range(len(mp)):
for j in range(len(mp[0])):
if (i == cX and j == cY):
outStr += "@"
else:
outStr += mp[i][j]
outStr += "\n"
print(outStr)
mp = [\
[".",".",".","#","#",".","#",".","#",".","#","#","#","#",".",".",".","#","#","#",".",".",".",".","."],\
[".",".","#",".",".","#","#",".","#",".",".",".","#",".","#","#",".","#","#",".","#",".",".","#","."],\
[".","#",".","#",".","#",".","#","#","#",".",".",".",".","#",".",".",".","#","#","#",".",".",".","."],\
[".","#",".",".",".",".","#",".",".","#","#","#","#",".",".",".",".",".","#","#",".","#",".",".","#"],\
["#","#",".","#",".","#",".","#",".","#",".",".","#",".",".","#",".",".",".",".",".","#","#","#","."],\
["#",".",".",".","#","#",".",".",".",".","#","#",".","#","#",".","#",".","#","#",".","#","#",".","."],\
[".",".",".",".",".","#","#","#",".",".","#","#","#",".","#","#","#",".",".",".","#","#","#","#","#"],\
["#","#","#","#","#","#",".","#","#","#","#",".",".","#",".","#",".",".",".",".",".",".","#","#","."],\
["#",".",".","#","#","#",".","#","#","#","#",".",".","#","#","#","#",".",".",".",".",".",".",".","."],\
["#",".",".","#","#","#","#","#","#",".","#","#",".",".",".",".","#","#","#","#",".",".",".","#","#"],\
[".",".",".","#",".","#","#",".","#",".",".",".","#",".","#",".","#",".","#",".",".","#","#",".","#"],\
["#","#","#","#",".","#","#","#",".",".","#","#","#","#","#",".",".",".",".",".","#","#","#","#","."],\
["#",".","#",".","#",".",".",".",".","#",".","#","#","#","#",".",".",".","#","#","#","#",".",".","."],\
["#","#",".",".",".","#",".",".","#","#",".","#","#",".",".",".",".","#",".",".",".","#",".",".","."],\
[".",".",".",".",".",".","#","#",".",".","#","#",".",".","#",".",".","#",".",".","#","#","#","#","."],\
[".","#","#",".",".","#","#",".","#","#",".",".","#","#","#","#",".",".","#","#",".",".",".",".","#"],\
[".","#",".",".","#",".",".","#","#",".","#",".",".","#","#",".",".","#",".",".",".","#",".",".","."],\
["#",".","#",".","#","#",".",".",".",".",".","#","#",".",".","#","#",".","#","#","#","#","#",".","."],\
["#","#",".","#",".",".",".",".",".",".",".","#",".",".",".",".","#",".",".","#","#","#",".","#","."],\
["#","#",".",".",".","#",".",".",".","#",".",".",".",".","#","#","#",".",".","#",".","#",".","#","."],\
["#",".",".",".",".","#","#",".",".",".","#",".","#",".","#",".","#","#",".",".","#",".",".","#","#"],\
["#",".",".","#",".",".",".",".","#","#","#","#","#",".",".",".",".",".","#",".","#","#",".","#","."],\
[".","#",".",".",".","#",".",".","#",".",".","#","#","#",".",".",".",".","#","#","#",".",".","#","."],\
[".",".","#","#",".","#","#","#",".","#",".","#",".",".",".",".",".","#","#","#",".",".",".",".","."],\
["#",".","#",".","#",".","#",".","#",".","#","#",".","#","#",".",".",".","#","#",".","#","#",".","#"]]
#mp = [[".", ".", "#"], ["#", ".", "."], [".", ".", "."]]
direction = 0
becameInfected = 0
cX = len(mp)//2
cY = len(mp[0])//2
for i in range(10001):
mapPrint(mp, cX, cY)
if (i % 100 == 0):
print("Tick", i)
mp, direction = work(mp, direction, cX, cY)
cX, cY = move(direction, cX, cY)
mp, cX, cY = expandMap(mp, cX, cY)
print("Total nodes that became infected =", becameInfected-1)
# 5069 is too low...
| def move(d, cX, cY):
if d == 0:
c_x = cX - 1
if d == 1:
c_y = cY + 1
if d == 2:
c_x = cX + 1
if d == 3:
c_y = cY - 1
return (cX, cY)
def work(mp, d, x, y):
if mp[x][y] == '#':
d = (d + 1) % 4
mp[x][y] = '.'
else:
d = (d - 1) % 4
global becameInfected
became_infected += 1
mp[x][y] = '#'
return (mp, d)
def expand_map(mp, cX, cY):
if cX == 0:
top_line = []
for i in range(len(mp[0])):
topLine.append('.')
mp.insert(0, topLine)
c_x = 1
if cX == len(mp):
bottom_line = []
for i in range(len(mp[0])):
bottomLine.append('.')
mp.insert(0, bottomLine)
if cY == 0:
for i in range(len(mp)):
mp[i].insert(0, '.')
c_y = 1
if cY == len(mp[0]):
for i in range(len(mp)):
mp[i].append('.')
return (mp, cX, cY)
def map_print(mp, cX, cY):
out_str = ''
for i in range(len(mp)):
for j in range(len(mp[0])):
if i == cX and j == cY:
out_str += '@'
else:
out_str += mp[i][j]
out_str += '\n'
print(outStr)
mp = [['.', '.', '.', '#', '#', '.', '#', '.', '#', '.', '#', '#', '#', '#', '.', '.', '.', '#', '#', '#', '.', '.', '.', '.', '.'], ['.', '.', '#', '.', '.', '#', '#', '.', '#', '.', '.', '.', '#', '.', '#', '#', '.', '#', '#', '.', '#', '.', '.', '#', '.'], ['.', '#', '.', '#', '.', '#', '.', '#', '#', '#', '.', '.', '.', '.', '#', '.', '.', '.', '#', '#', '#', '.', '.', '.', '.'], ['.', '#', '.', '.', '.', '.', '#', '.', '.', '#', '#', '#', '#', '.', '.', '.', '.', '.', '#', '#', '.', '#', '.', '.', '#'], ['#', '#', '.', '#', '.', '#', '.', '#', '.', '#', '.', '.', '#', '.', '.', '#', '.', '.', '.', '.', '.', '#', '#', '#', '.'], ['#', '.', '.', '.', '#', '#', '.', '.', '.', '.', '#', '#', '.', '#', '#', '.', '#', '.', '#', '#', '.', '#', '#', '.', '.'], ['.', '.', '.', '.', '.', '#', '#', '#', '.', '.', '#', '#', '#', '.', '#', '#', '#', '.', '.', '.', '#', '#', '#', '#', '#'], ['#', '#', '#', '#', '#', '#', '.', '#', '#', '#', '#', '.', '.', '#', '.', '#', '.', '.', '.', '.', '.', '.', '#', '#', '.'], ['#', '.', '.', '#', '#', '#', '.', '#', '#', '#', '#', '.', '.', '#', '#', '#', '#', '.', '.', '.', '.', '.', '.', '.', '.'], ['#', '.', '.', '#', '#', '#', '#', '#', '#', '.', '#', '#', '.', '.', '.', '.', '#', '#', '#', '#', '.', '.', '.', '#', '#'], ['.', '.', '.', '#', '.', '#', '#', '.', '#', '.', '.', '.', '#', '.', '#', '.', '#', '.', '#', '.', '.', '#', '#', '.', '#'], ['#', '#', '#', '#', '.', '#', '#', '#', '.', '.', '#', '#', '#', '#', '#', '.', '.', '.', '.', '.', '#', '#', '#', '#', '.'], ['#', '.', '#', '.', '#', '.', '.', '.', '.', '#', '.', '#', '#', '#', '#', '.', '.', '.', '#', '#', '#', '#', '.', '.', '.'], ['#', '#', '.', '.', '.', '#', '.', '.', '#', '#', '.', '#', '#', '.', '.', '.', '.', '#', '.', '.', '.', '#', '.', '.', '.'], ['.', '.', '.', '.', '.', '.', '#', '#', '.', '.', '#', '#', '.', '.', '#', '.', '.', '#', '.', '.', '#', '#', '#', '#', '.'], ['.', '#', '#', '.', '.', '#', '#', '.', '#', '#', '.', '.', '#', '#', '#', '#', '.', '.', '#', '#', '.', '.', '.', '.', '#'], ['.', '#', '.', '.', '#', '.', '.', '#', '#', '.', '#', '.', '.', '#', '#', '.', '.', '#', '.', '.', '.', '#', '.', '.', '.'], ['#', '.', '#', '.', '#', '#', '.', '.', '.', '.', '.', '#', '#', '.', '.', '#', '#', '.', '#', '#', '#', '#', '#', '.', '.'], ['#', '#', '.', '#', '.', '.', '.', '.', '.', '.', '.', '#', '.', '.', '.', '.', '#', '.', '.', '#', '#', '#', '.', '#', '.'], ['#', '#', '.', '.', '.', '#', '.', '.', '.', '#', '.', '.', '.', '.', '#', '#', '#', '.', '.', '#', '.', '#', '.', '#', '.'], ['#', '.', '.', '.', '.', '#', '#', '.', '.', '.', '#', '.', '#', '.', '#', '.', '#', '#', '.', '.', '#', '.', '.', '#', '#'], ['#', '.', '.', '#', '.', '.', '.', '.', '#', '#', '#', '#', '#', '.', '.', '.', '.', '.', '#', '.', '#', '#', '.', '#', '.'], ['.', '#', '.', '.', '.', '#', '.', '.', '#', '.', '.', '#', '#', '#', '.', '.', '.', '.', '#', '#', '#', '.', '.', '#', '.'], ['.', '.', '#', '#', '.', '#', '#', '#', '.', '#', '.', '#', '.', '.', '.', '.', '.', '#', '#', '#', '.', '.', '.', '.', '.'], ['#', '.', '#', '.', '#', '.', '#', '.', '#', '.', '#', '#', '.', '#', '#', '.', '.', '.', '#', '#', '.', '#', '#', '.', '#']]
direction = 0
became_infected = 0
c_x = len(mp) // 2
c_y = len(mp[0]) // 2
for i in range(10001):
map_print(mp, cX, cY)
if i % 100 == 0:
print('Tick', i)
(mp, direction) = work(mp, direction, cX, cY)
(c_x, c_y) = move(direction, cX, cY)
(mp, c_x, c_y) = expand_map(mp, cX, cY)
print('Total nodes that became infected =', becameInfected - 1) |
class Constants:
# Common Constants
mail: str = "prodcube@prodcube.dev"
version: str = "1.0.0"
# Production Constants
productionDescription: str = "Handles the ProDCube Backend Server. Currently in Production. " \
"Please change to development mode while development."
productionTitle: str = "ProDCube Backend Server - Production"
# Development Constants
developmentDescription: str = "Handles the ProDCube Backend Server. Currently in Development. " \
"Please change to production mode while hosting."
developmentTitle: str = "ProDCube Backend Server - Development"
# Testing Constants
testingTitle: str = "ProDCube Backend Server - Testing"
testingDescription: str = "Handles the ProDCube Backend Server. Currently in Testing. " \
"Please change to development or production mode when needed."
| class Constants:
mail: str = 'prodcube@prodcube.dev'
version: str = '1.0.0'
production_description: str = 'Handles the ProDCube Backend Server. Currently in Production. Please change to development mode while development.'
production_title: str = 'ProDCube Backend Server - Production'
development_description: str = 'Handles the ProDCube Backend Server. Currently in Development. Please change to production mode while hosting.'
development_title: str = 'ProDCube Backend Server - Development'
testing_title: str = 'ProDCube Backend Server - Testing'
testing_description: str = 'Handles the ProDCube Backend Server. Currently in Testing. Please change to development or production mode when needed.' |
def mergeSort(arr:[int]):
mid:int = 0
L:[int] = None
R:[int] = None
i:int = 0
j:int = 0
k:int = 0
if len(arr) > 1:
# Finding the mid of the array
mid = len(arr)//2
# Dividing the array elements
L=[]
while (i<mid):
L = L + [arr[i]]
i = i + 1
# into 2 halves
R = []
while (i<len(arr)):
R = R + [arr[i]]
i = i + 1
# Sorting the first half
mergeSort(L)
# Sorting the second half
mergeSort(R)
i = 0
j = 0
k = 0
# Copy data to temp arrays L[] and R[]
while(i < len(L) and j < len(R)):
if L[i] < R[j]:
arr[k] = L[i]
i = i+ 1
else:
arr[k] = R[j]
j = j+ 1
k = k+ 1
# Checking if any element was left
while i < len(L):
arr[k] = L[i]
i = i+ 1
k = k+ 1
while j < len(R):
arr[k] = R[j]
j =j + 1
k =k + 1
# Code to print the list
def printList(arr:[int]):
x:int = 0
for x in arr:
print(x)
# Driver Code
arr:[int] = None
arr = [12, 11, 13, 5, 6, 7]
print("Given array is")
printList(arr)
mergeSort(arr)
print("Sorted array is: ")
printList(arr)
# This code is contributed by Mayank Khanna | def merge_sort(arr: [int]):
mid: int = 0
l: [int] = None
r: [int] = None
i: int = 0
j: int = 0
k: int = 0
if len(arr) > 1:
mid = len(arr) // 2
l = []
while i < mid:
l = L + [arr[i]]
i = i + 1
r = []
while i < len(arr):
r = R + [arr[i]]
i = i + 1
merge_sort(L)
merge_sort(R)
i = 0
j = 0
k = 0
while i < len(L) and j < len(R):
if L[i] < R[j]:
arr[k] = L[i]
i = i + 1
else:
arr[k] = R[j]
j = j + 1
k = k + 1
while i < len(L):
arr[k] = L[i]
i = i + 1
k = k + 1
while j < len(R):
arr[k] = R[j]
j = j + 1
k = k + 1
def print_list(arr: [int]):
x: int = 0
for x in arr:
print(x)
arr: [int] = None
arr = [12, 11, 13, 5, 6, 7]
print('Given array is')
print_list(arr)
merge_sort(arr)
print('Sorted array is: ')
print_list(arr) |
n=int(input())
arr=[]
c=0
for _ in range(n):
arr.append(list(map(int,input().split())))
for i in range(len(arr)):
co=0
for j in range(len(arr[i])):
if(arr[i][j]==1):
co+=1
if(co>=2):
c+=1
print(c) | n = int(input())
arr = []
c = 0
for _ in range(n):
arr.append(list(map(int, input().split())))
for i in range(len(arr)):
co = 0
for j in range(len(arr[i])):
if arr[i][j] == 1:
co += 1
if co >= 2:
c += 1
print(c) |
# 21302 - [Job Adv] (Lv.60) Aran
sm.setSpeakerID(1201002)
sm.sendNext("Oh, isn't that... Hey, did you remember how to make the Red Jade? You may be a dummy who has amnesia, but this is why I can't leave you. Now hurry, give me the gem!")
if sm.sendAskYesNo("Okay, now that I have the power of Red Jade, I'll restore more of your abilities. Your level has gotten much higher since the last time we met, so I'm sure I can work my magic a bit more this time!"):
if not sm.canHold(1142131):
sm.sendSayOkay("Please make some space in your equipment inventory.")
sm.dispose()
sm.completeQuest(parentID)
sm.giveItem(1142131)
sm.jobAdvance(2111)
sm.consumeItem(4032312)
sm.sendNext("Please get back all of your abilities soon. I want to explore with you like we did in the good old days.")
| sm.setSpeakerID(1201002)
sm.sendNext("Oh, isn't that... Hey, did you remember how to make the Red Jade? You may be a dummy who has amnesia, but this is why I can't leave you. Now hurry, give me the gem!")
if sm.sendAskYesNo("Okay, now that I have the power of Red Jade, I'll restore more of your abilities. Your level has gotten much higher since the last time we met, so I'm sure I can work my magic a bit more this time!"):
if not sm.canHold(1142131):
sm.sendSayOkay('Please make some space in your equipment inventory.')
sm.dispose()
sm.completeQuest(parentID)
sm.giveItem(1142131)
sm.jobAdvance(2111)
sm.consumeItem(4032312)
sm.sendNext('Please get back all of your abilities soon. I want to explore with you like we did in the good old days.') |
class Prunner(object):
def __init__(self):
pass
def fit(self, ensemble, X, y):
return self
def get(self, p=0.1):
return self.ensemble[:int(p * len(self.ensemble))]
| class Prunner(object):
def __init__(self):
pass
def fit(self, ensemble, X, y):
return self
def get(self, p=0.1):
return self.ensemble[:int(p * len(self.ensemble))] |
# -*- coding: utf-8 -*-
'''
Author: Hannibal
Data:
Desc: local data config
NOTE: Don't modify this file, it's build by xml-to-python!!!
'''
simpleskillpassive_map = {};
simpleskillpassive_map[2001] = {"id":2001,"skilldata":[{"lv":1,"effect":"actor['atk']*=1.2","group":1,},{"lv":2,"effect":"actor['atk']*=1.3","group":1,},{"lv":3,"effect":"actor['atk']*=1.4","group":1,},],};
simpleskillpassive_map[2002] = {"id":2002,"skilldata":[{"lv":1,"effect":"actor['spd']+=20","group":1,},{"lv":2,"effect":"actor['spd']+=30","group":1,},],};
simpleskillpassive_map[2003] = {"id":2003,"skilldata":[{"lv":1,"effect":"actor['hpmax']*=1.2","group":1,},],};
class Simpleskillpassive:
def __init__(self, key):
config = simpleskillpassive_map.get(key);
for k, v in config.items():
setattr(self, k, v);
return
def create_Simpleskillpassive(key):
config = simpleskillpassive_map.get(key);
if not config:
return
return Simpleskillpassive(key)
| """
Author: Hannibal
Data:
Desc: local data config
NOTE: Don't modify this file, it's build by xml-to-python!!!
"""
simpleskillpassive_map = {}
simpleskillpassive_map[2001] = {'id': 2001, 'skilldata': [{'lv': 1, 'effect': "actor['atk']*=1.2", 'group': 1}, {'lv': 2, 'effect': "actor['atk']*=1.3", 'group': 1}, {'lv': 3, 'effect': "actor['atk']*=1.4", 'group': 1}]}
simpleskillpassive_map[2002] = {'id': 2002, 'skilldata': [{'lv': 1, 'effect': "actor['spd']+=20", 'group': 1}, {'lv': 2, 'effect': "actor['spd']+=30", 'group': 1}]}
simpleskillpassive_map[2003] = {'id': 2003, 'skilldata': [{'lv': 1, 'effect': "actor['hpmax']*=1.2", 'group': 1}]}
class Simpleskillpassive:
def __init__(self, key):
config = simpleskillpassive_map.get(key)
for (k, v) in config.items():
setattr(self, k, v)
return
def create__simpleskillpassive(key):
config = simpleskillpassive_map.get(key)
if not config:
return
return simpleskillpassive(key) |
class TreeNode:
def __init__(self, val=0, left=None, right=None):
self.val = val
self.left = left
self.right = right
class Mytree:
def maketree(self, arr: list):
root = TreeNode(arr[0])
mystack = []
mystack.append(root)
nl = []
i = 0
while len(mystack) > 0:
node = mystack.pop(0)
i += 1
if i < len(arr):
if arr[i] != "null":
node.left = TreeNode(arr[i])
mystack.append(node.left)
else:
break
i += 1
if i < len(arr):
if arr[i] != "null":
node.right = TreeNode(arr[i])
mystack.append(node.right)
else:
break
# print(root.left.val)
return root
arr = [20, 8, 22, 4, 12, "null", "null", "null", "null", 10, 14]
s = Mytree()
root = s.maketree(arr)
print(root.val)
| class Treenode:
def __init__(self, val=0, left=None, right=None):
self.val = val
self.left = left
self.right = right
class Mytree:
def maketree(self, arr: list):
root = tree_node(arr[0])
mystack = []
mystack.append(root)
nl = []
i = 0
while len(mystack) > 0:
node = mystack.pop(0)
i += 1
if i < len(arr):
if arr[i] != 'null':
node.left = tree_node(arr[i])
mystack.append(node.left)
else:
break
i += 1
if i < len(arr):
if arr[i] != 'null':
node.right = tree_node(arr[i])
mystack.append(node.right)
else:
break
return root
arr = [20, 8, 22, 4, 12, 'null', 'null', 'null', 'null', 10, 14]
s = mytree()
root = s.maketree(arr)
print(root.val) |
asdasdfgs = 1
def add(x, y):
return x + y
print(add(asdasdfgs, 2))
print(add(asdasdfgs, 3))
print(add(asdasdfgs, 5))
| asdasdfgs = 1
def add(x, y):
return x + y
print(add(asdasdfgs, 2))
print(add(asdasdfgs, 3))
print(add(asdasdfgs, 5)) |
#!/usr/bin/python
#coding=utf-8
class List(list):
def __getattr__(self, attr):
tmp = List()
for l in self:
tmp.append(l.__getattr__(attr))
return tmp
def equal(self, value, attr='class'):
tmp = List()
for l in self:
if hasattr(l, 'equal'):
flag = l.equal(value, attr)
if flag: tmp.append(l)
return tmp
def contains(self, value, attr='html'):
tmp = List()
for l in self:
if hasattr(l, 'contains'):
flag = l.contains(value, attr)
if flag: tmp.append(l)
return tmp
def containsOr(self, value, attr='html'):
tmp = List()
for l in self:
if hasattr(l, 'containsOr'):
flag = l.containsOr(value, attr)
if flag: tmp.append(l)
return tmp
def notContains(self, value, attr='html'):
tmp = List()
for l in self:
if hasattr(l, 'notContains'):
flag = l.notContains(value, attr)
if flag: tmp.append(l)
return tmp
def containsReg(self, value, attr='html'):
tmp = []
for l in self:
if hasattr(l, 'containsReg'):
flag = l.containsReg(value, attr)
if flag: tmp.append(l)
return tmp
def nextText(self, end=None):
tmp = List()
for l in self:
tmp.append(l.nextText(end))
return tmp
def previousText(self):
tmp = List()
for l in self:
tmp.append(l.previousText())
return tmp
def select(self, value, start=None, end=None, before=None):
tmp = List()
for l in self:
tmp.append(l.select(value, start, end, before))
return tmp
def selects(self, value, start=None, end=None, before=None):
tmp = List()
for l in self:
tmp.append(l.selects(value, start, end, before))
return tmp
def getElement(self,
tag,
attr='class',
value=None,
start=None,
end=None,
before=None):
tmp = List()
for l in self:
tmp.append(l.getElement(tag, attr, value, start, end, before))
return tmp
def getElements(self,
tag,
attr='class',
value=None,
start=None,
end=None,
before=None):
tmp = List()
for l in self:
tmp.append(l.getElements(tag, attr, value, start, end, before))
return tmp
def getTable(self,
body='tbody',
columns=None,
rowReg=None,
colReg=None,
start=None,
end=None,
before=None):
tmp = List()
for l in self:
tmp.append(
l.getTable(body,
columns,
rowReg,
colReg,
start=start,
end=end,
before=before))
return tmp
def getNext(self, tag=None):
tmp = List()
for l in self:
tmp.append(l.getNext(tag))
return tmp
| class List(list):
def __getattr__(self, attr):
tmp = list()
for l in self:
tmp.append(l.__getattr__(attr))
return tmp
def equal(self, value, attr='class'):
tmp = list()
for l in self:
if hasattr(l, 'equal'):
flag = l.equal(value, attr)
if flag:
tmp.append(l)
return tmp
def contains(self, value, attr='html'):
tmp = list()
for l in self:
if hasattr(l, 'contains'):
flag = l.contains(value, attr)
if flag:
tmp.append(l)
return tmp
def contains_or(self, value, attr='html'):
tmp = list()
for l in self:
if hasattr(l, 'containsOr'):
flag = l.containsOr(value, attr)
if flag:
tmp.append(l)
return tmp
def not_contains(self, value, attr='html'):
tmp = list()
for l in self:
if hasattr(l, 'notContains'):
flag = l.notContains(value, attr)
if flag:
tmp.append(l)
return tmp
def contains_reg(self, value, attr='html'):
tmp = []
for l in self:
if hasattr(l, 'containsReg'):
flag = l.containsReg(value, attr)
if flag:
tmp.append(l)
return tmp
def next_text(self, end=None):
tmp = list()
for l in self:
tmp.append(l.nextText(end))
return tmp
def previous_text(self):
tmp = list()
for l in self:
tmp.append(l.previousText())
return tmp
def select(self, value, start=None, end=None, before=None):
tmp = list()
for l in self:
tmp.append(l.select(value, start, end, before))
return tmp
def selects(self, value, start=None, end=None, before=None):
tmp = list()
for l in self:
tmp.append(l.selects(value, start, end, before))
return tmp
def get_element(self, tag, attr='class', value=None, start=None, end=None, before=None):
tmp = list()
for l in self:
tmp.append(l.getElement(tag, attr, value, start, end, before))
return tmp
def get_elements(self, tag, attr='class', value=None, start=None, end=None, before=None):
tmp = list()
for l in self:
tmp.append(l.getElements(tag, attr, value, start, end, before))
return tmp
def get_table(self, body='tbody', columns=None, rowReg=None, colReg=None, start=None, end=None, before=None):
tmp = list()
for l in self:
tmp.append(l.getTable(body, columns, rowReg, colReg, start=start, end=end, before=before))
return tmp
def get_next(self, tag=None):
tmp = list()
for l in self:
tmp.append(l.getNext(tag))
return tmp |
def add(x, y):
total = x + y
return total
print(add(5, 10))
def add(x, y=3):
total = x + y
return total
print(add(5))
print(add(5, 7))
print(add(x=2))
print(add(x=8, y=4))
print(1, 2, 3, 4, 5)
print(1, 2, 3, 4, 5, sep=' - ')
# The default value is stored at the definition of the function
# as shown in the following example
default_y = 3
def add(x, y=default_y):
total = x + y
print(total)
add(6)
# When the value of the variable is changed, the output is the same
default_y = 25
add(6)
| def add(x, y):
total = x + y
return total
print(add(5, 10))
def add(x, y=3):
total = x + y
return total
print(add(5))
print(add(5, 7))
print(add(x=2))
print(add(x=8, y=4))
print(1, 2, 3, 4, 5)
print(1, 2, 3, 4, 5, sep=' - ')
default_y = 3
def add(x, y=default_y):
total = x + y
print(total)
add(6)
default_y = 25
add(6) |
a=int(input("Enter the first term of the GP: "))
r=int(input("Enter the common ratio: "))
n=int(input("Enter the number of terms: "))
sum=0
product=1
for i in range(n):
term=a*pow(r,i)
sum=sum+term
product=product*term
print("Sum of",n,"terms=",sum)
print("Product of",n,"terms=",product)
| a = int(input('Enter the first term of the GP: '))
r = int(input('Enter the common ratio: '))
n = int(input('Enter the number of terms: '))
sum = 0
product = 1
for i in range(n):
term = a * pow(r, i)
sum = sum + term
product = product * term
print('Sum of', n, 'terms=', sum)
print('Product of', n, 'terms=', product) |
def get_starting_params():
num_players = int(input("Enter Number of Players : ")) # it takes user input
deck_size = 48
if num_players == 2:
hand_size = 10
points_threshold = 5
number_starting_common_cards = 8
elif num_players == 3:
hand_size = 8
points_threshold = 3
number_starting_common_cards = 6
elif num_players == 4:
hand_size = 5
points_threshold = 3
number_starting_common_cards = 8
else:
print("Unacceptable number of players")
get_starting_params() | def get_starting_params():
num_players = int(input('Enter Number of Players : '))
deck_size = 48
if num_players == 2:
hand_size = 10
points_threshold = 5
number_starting_common_cards = 8
elif num_players == 3:
hand_size = 8
points_threshold = 3
number_starting_common_cards = 6
elif num_players == 4:
hand_size = 5
points_threshold = 3
number_starting_common_cards = 8
else:
print('Unacceptable number of players')
get_starting_params() |
class Benchmark:
@classmethod
def get_train_tasks(cls, sample_all=False):
return cls(env_type='train', sample_all=sample_all)
@classmethod
def get_test_tasks(cls, sample_all=False):
return cls(env_type='test', sample_all=sample_all)
| class Benchmark:
@classmethod
def get_train_tasks(cls, sample_all=False):
return cls(env_type='train', sample_all=sample_all)
@classmethod
def get_test_tasks(cls, sample_all=False):
return cls(env_type='test', sample_all=sample_all) |
def includeme(config):
# settings = config.registry.settings
config.add_route('processes', '/processes')
config.add_route('processes_list', '/processes/list')
config.add_route('processes_execute', '/processes/execute')
config.include('phoenix.processes.views.actions')
| def includeme(config):
config.add_route('processes', '/processes')
config.add_route('processes_list', '/processes/list')
config.add_route('processes_execute', '/processes/execute')
config.include('phoenix.processes.views.actions') |
special_sum = 0
n_minus_1 = n_minus_2 = 1
fib_n = 0
while fib_n < 1000000:
fib_n, n_minus_1, n_minus_2 = n_minus_1, n_minus_2, n_minus_1 + n_minus_2
if fib_n % 2 == 0: special_sum += fib_n
print(special_sum)
| special_sum = 0
n_minus_1 = n_minus_2 = 1
fib_n = 0
while fib_n < 1000000:
(fib_n, n_minus_1, n_minus_2) = (n_minus_1, n_minus_2, n_minus_1 + n_minus_2)
if fib_n % 2 == 0:
special_sum += fib_n
print(special_sum) |
test = { 'name': 'q0_1',
'points': 1,
'suites': [ { 'cases': [ {'code': ">>> flavor_count.labels == ('Flavor', 'count')\nTrue", 'hidden': False, 'locked': False},
{'code': '>>> flavor_count.take(0).column("count").item(0) == 4\nTrue', 'hidden': False, 'locked': False},
{'code': '>>> flavor_count.take(1).column("count").item(0) == flavor_count.take(2).column("count").item(0)\nTrue', 'hidden': False, 'locked': False}],
'scored': True,
'setup': '',
'teardown': '',
'type': 'doctest'}]}
| test = {'name': 'q0_1', 'points': 1, 'suites': [{'cases': [{'code': ">>> flavor_count.labels == ('Flavor', 'count')\nTrue", 'hidden': False, 'locked': False}, {'code': '>>> flavor_count.take(0).column("count").item(0) == 4\nTrue', 'hidden': False, 'locked': False}, {'code': '>>> flavor_count.take(1).column("count").item(0) == flavor_count.take(2).column("count").item(0)\nTrue', 'hidden': False, 'locked': False}], 'scored': True, 'setup': '', 'teardown': '', 'type': 'doctest'}]} |
EXPECTED_TOKEN = "eyJhbGciOiJSUzI1NiIsImtpZCI6Ijk0OTRhZDc1LTNmNTQtNDE1NS04NGZhLWMxYTE3ZGEyMmIzNSIsInR5cCI6IkpXVCJ9.eyJhbGxvdyI6eyIqIjoiKiJ9LCJkZW55Ijp7fX0.nDqCxO2Q1iXpxzbH7syxuyqw7kCY0sDfi9RX-VSUMTRN5aWTLt1bcPw4oN_jx89-YHBzDwnwBc07RsMgpFuo4zz2LU9PF0ciYxMNX-atTNsaIn05NkXT08au2AYb0DRCDS76MZ4QNi-4mRpLrj1SD4mSCwGtc2WNw9f0J0Vm4ZCYPVW6BqpcHcaFXzcFZ6EIoooaK6GvdTOjy498lWsAXjAen2U6Jles_BwFjqW1lW_ky4WV4J9NnK3v5wWKgR1Pg4R4LpnhIXe0dU_l64JHoJA3YcYxl-qilHfoBduc3La4kRKk7FAQDIqbOv4uN03BIoDXLH5t2uJ1Sm79Pe0ngGd5pSBmfUDKOGsHtx_3_9ZKfp-E2IVS0C7r36p4Ue0gKQzn0pXxa591bxm_puJAQ399SdbmlOJsM2cVFYAtlUQvWgErc57WcUJ0Qe4jEycury7hagNbP2fLn-7Gg4gZHiZ_Ul7L6GukbDfCHnhxSS4P3t3cVtWuslZi16hDhNbOTKD95y7PXvHePvI57ALV2v0RecQ5Blwurt1OuDRSjCYXyO6U4Y9MBHcd1wMtDoVW0jjvjXvqkEhuB52Zajh_yTNnJo0OAHpuK5wldVpECGFVx1rkW1ypKqlukGIgD--m6ElKnl6jw5VWSbdh2TJsZHnzjovbQUeqZOeMxwX6SE8"
SAMPLE_PRIVATE_KEY = {
"p": "5Cwk4zIvta07E37iZVlnzqeQX2jV1GaHKSUFtUVeaMVY_FBQ5Yr5ux7bxTKrikSs22QI8z1x6GVuEH3MGeh3qjOyUTfJJyOcS_RVmQxdYwjkxOsN953SWMvPRhkLd-svB8LI4Ylwo1NrlSBJOQqM2xvtoQ7KkEAJquvX_UHkTuMuSCcpuDyp-qUkvgfbSUgvCacmwNf-bXh2kKVM14YKt3el4vYITetyy96jzSLKf6V36AX8PFbSOS7oZbeO3dgfGp0MDcpF0flu8McaSipBXoHbrjtxx0MOJjpU3Fhpy6Q7o7TX3-OC7fKplseHol4dxkRCsiDoyCxjhUzPHShy8Q",
"kty": "RSA",
"q": "1PdEoZDjRNefrOxin6a4HEMnooopdLLbNrTmFcd3k3vIiKKK"
"--8eg0zMQMYNe5QXDsiDuly3GTZkptDC93CxWQfjRftmC9gaz_pmdMhOPncgMfGfJAt0Ic57d023rmoZzBQecGKr_3lFxV29cs8bB1ppGxdIlweCXfvvbTubcU3CUyZrAjZqfXqxj4B78PQ96BIbFBTgtCpvSW0YhaswMMFpRnb8grMDQzkB0pXnq-GiBGc3wWKrWWrQjW5sLklwZUsQJz0GdZbLkHiq2nSM_wera6FgshyHvJFHSa9gpREq5rZdMsERp1C2Dd5h8W2cwohpuWqjQQVYGqSXgbN30Q",
"d": "eYbYTGZ5uklUa2c2LUvbWyRLe8fL3fjFVG87xV76AwxkJZXmn_Mzv0c2F3rbiFjAL"
"-BAWRwK2hrojzWMAztN0u3o13rQh4LasNrz9nPA"
"-jCzIu1JnmBwwNBfY6x2LOOQPlrXI9SBbe94gB4xQUkb8yhzIlWk7jpPzbcKxi19r0SG06UVOEpB6z06cPGOEFrpKpgEaOulYx0H2G1s4vBADQaEFvamN94-sE_PhNjve-HjS3Lz3lhnm0ajFjpLsUqE0dIpeLWmEM3jMU7Zz6c9mI3V2aBUiuNYi9MeUvs9usmbX5krvijfJxDJsxmt1OK3EJSW_kju00hQYRi3jvmKqKnId7bHQSEaXa3FX5FTaardaaCUZSoEl6_WiypxyYg4PHp37HbXnZClBKWZot5lPWHn-Uf-2E2TXdqvysZRfc8NiBVrvVOzQDAkndR-wU3QgL5Efi6vrAFGkb5Ra7WvZ5fjkbQvb5VjKj0kKjJS3__CzLfAp_mQymy6U2wJE_YRxwwavFfaa53YhUdhiYM5P83Tj1UNG48ilVEFIzXWjgjfBMyNsgGF70mINJcc47GUXXh49GeWsHB9DqUMqyEbcVlEr_7tgkVHI7Dko8QlFjlLZRRa-JZApYlcRhaQGni0oUOMELP9ZRtArP3ib8hfdqqcBratNM_BB0bczBAJRQE",
"e": "AQAB",
"kid": "9494ad75-3f54-4155-84fa-c1a17da22b35",
"qi": "znwFS129727wjq6Whq6wfD1cxkLs9hnS7"
"-cEbZ8k_p7gE2vXucaK_AN1hIeU6HAGHgoP1RH7rUMN8"
"-YzxfAsj8X0g0u8Qte7evf7jaj4YqPDGy7dTTA2ALLcWAD"
"-djrDAU40ZJXnzM6hIIPbn_uMXAB5W0q_icV5xoIwxJog4ReUle0qMRS0iQCNocPBHydWt0zP"
"-Cqz9MIPd0ctNEf8E55Go90_yAWibQlo4PgLF48UI5BG0NhmPa1nI9Kpt36TwAoyKwscGysSgPGNxgzj4t2PxatXO7Xm47dfNi_yhBSHq9TNcw2laMs9e77G9gluTAOPqYC06zRC7Rr3m9lXOA",
"dp": "Z_3KjhW4ctfR_e"
"-tZT2bNy9deG6CTjywS0tJT7We8qdHCC_evs9ZRDQrO7P9RJZKJe9wuNN_T8iyoieDVyeBKnxHQAbp0cHEIUXpoUhmY5WRFkJ-6iTu0nOJM0yE0pHIrIPVJB2MzZNei-fcF3g8fDw9UFM6dQYKofC9TvqyAFZAKLhYplRXsBmGJmnUQpD4hzC8U9Xdaq0ldIUyAWRhC_8nBsrVPBYcCtic1QiPPCABByl7LVDwnQlI99rx7R_sBSggb0SKD8ncCzbjP3wEsPsEUWNcVtGz6C5bsNVG2n4uhE0OukapzKL1MfgcVB8K-Orxbtfa4CiC7yTznDlsMQ",
"dq": "Pl5f-hUNiea_"
"-4uK4oiX2KcOH3ro4yVSL7ZQv8YXzdhthR5dJ6UCwZ8nHj0iS7O2AP1WHqjycm7MkVIIFyEovxMhSyhx3TwfthL2GHNk_sQyaI4DdjHog9INtIXNKkYmYe7ubylmh74DYeavCcV_e-rNZ0KtXpWzZ0TV_J59SnRkWaehpRc8npzlDUqqgYl169YJmhr3J6xZxR4vFU5qIY0zAJDuKHS2muRCFWMTYvIEWdfEq1zzI4-1ngXdpryZLwEJrQQhNSTBXwEHwExr0nBzkmTDhcX3NpExWHIFErJxZvm3V5rVSbPIbU1YT7UzOIFsvQFu6Cbhg4P6XuCpUQ",
"n": "vdDyT3d33_NmNKBsF4OjIjtOsyOMrH8xhL9C8Jx6yvPcHNWkBHorIEyp7CcKp2gCo7jch6TlkH483cEwhw1GyyfrMPKh4P1uwNHpFI2eEDPqw_wyORVIIT8FPb_QhDxV5GFiWWecr_0DWNf9murqa_T7p5YUK3XVIhewFPDf0iHsV87OJLB8AoIsUfOCym5tvskTuxsMaIpYJZETe7upE_Xg-nVhyXhpFAJEw7RlYebrSEtoFpN6TwYuxutocZ4jNLn1x5t-YHWnyLYUIxN5_fuuzVGIAleY9T3WJXurYGnCUwQjgT7OvqM2K_xej0vFOp_P5C2YSxBX0SZG2322gDQiEqz7G2BCZ7I3PA4XVWV0KENwhxgz5GS7zjuZPIWm4oKwBRlYluTdWpc7A9w7LRs3tCJl6t_ReTlblnT9Dq7l5Na36IBOpesY77apE4BFlFdJZvhF_qrkHEQwo4ckOGrFlG8M3iV8UclHvVzBOPTi-sZoOOiytuSKbn5HikB2CV7k0GIfAJS6Q-RUHSYVFEH7IfmbvE0YkwglDggJWIfwtZG8IVuOFZunmWrYaKdMAvIJQjjv7oAwqrRD6HlXAPGHiTb_BRVaYqOD8ugjZ9ZO2tags12QyMOJq8XQ1mjegp0F-MNKlp_zff5xJbKETu2VUDFQmBqU6gLw_2r23cE",
}
SAMPLE_PUBLIC_KEY = {
"kty": "RSA",
"e": "AQAB",
"kid": "9494ad75-3f54-4155-84fa-c1a17da22b35",
"n": "vdDyT3d33_NmNKBsF4OjIjtOsyOMrH8xhL9C8Jx6yvPcHNWkBHorIEyp7CcKp2gCo7jch6TlkH483cEwhw1GyyfrMPKh4P1uwNHpFI2eEDPqw_wyORVIIT8FPb_QhDxV5GFiWWecr_0DWNf9murqa_T7p5YUK3XVIhewFPDf0iHsV87OJLB8AoIsUfOCym5tvskTuxsMaIpYJZETe7upE_Xg-nVhyXhpFAJEw7RlYebrSEtoFpN6TwYuxutocZ4jNLn1x5t-YHWnyLYUIxN5_fuuzVGIAleY9T3WJXurYGnCUwQjgT7OvqM2K_xej0vFOp_P5C2YSxBX0SZG2322gDQiEqz7G2BCZ7I3PA4XVWV0KENwhxgz5GS7zjuZPIWm4oKwBRlYluTdWpc7A9w7LRs3tCJl6t_ReTlblnT9Dq7l5Na36IBOpesY77apE4BFlFdJZvhF_qrkHEQwo4ckOGrFlG8M3iV8UclHvVzBOPTi-sZoOOiytuSKbn5HikB2CV7k0GIfAJS6Q-RUHSYVFEH7IfmbvE0YkwglDggJWIfwtZG8IVuOFZunmWrYaKdMAvIJQjjv7oAwqrRD6HlXAPGHiTb_BRVaYqOD8ugjZ9ZO2tags12QyMOJq8XQ1mjegp0F-MNKlp_zff5xJbKETu2VUDFQmBqU6gLw_2r23cE",
}
| expected_token = 'eyJhbGciOiJSUzI1NiIsImtpZCI6Ijk0OTRhZDc1LTNmNTQtNDE1NS04NGZhLWMxYTE3ZGEyMmIzNSIsInR5cCI6IkpXVCJ9.eyJhbGxvdyI6eyIqIjoiKiJ9LCJkZW55Ijp7fX0.nDqCxO2Q1iXpxzbH7syxuyqw7kCY0sDfi9RX-VSUMTRN5aWTLt1bcPw4oN_jx89-YHBzDwnwBc07RsMgpFuo4zz2LU9PF0ciYxMNX-atTNsaIn05NkXT08au2AYb0DRCDS76MZ4QNi-4mRpLrj1SD4mSCwGtc2WNw9f0J0Vm4ZCYPVW6BqpcHcaFXzcFZ6EIoooaK6GvdTOjy498lWsAXjAen2U6Jles_BwFjqW1lW_ky4WV4J9NnK3v5wWKgR1Pg4R4LpnhIXe0dU_l64JHoJA3YcYxl-qilHfoBduc3La4kRKk7FAQDIqbOv4uN03BIoDXLH5t2uJ1Sm79Pe0ngGd5pSBmfUDKOGsHtx_3_9ZKfp-E2IVS0C7r36p4Ue0gKQzn0pXxa591bxm_puJAQ399SdbmlOJsM2cVFYAtlUQvWgErc57WcUJ0Qe4jEycury7hagNbP2fLn-7Gg4gZHiZ_Ul7L6GukbDfCHnhxSS4P3t3cVtWuslZi16hDhNbOTKD95y7PXvHePvI57ALV2v0RecQ5Blwurt1OuDRSjCYXyO6U4Y9MBHcd1wMtDoVW0jjvjXvqkEhuB52Zajh_yTNnJo0OAHpuK5wldVpECGFVx1rkW1ypKqlukGIgD--m6ElKnl6jw5VWSbdh2TJsZHnzjovbQUeqZOeMxwX6SE8'
sample_private_key = {'p': '5Cwk4zIvta07E37iZVlnzqeQX2jV1GaHKSUFtUVeaMVY_FBQ5Yr5ux7bxTKrikSs22QI8z1x6GVuEH3MGeh3qjOyUTfJJyOcS_RVmQxdYwjkxOsN953SWMvPRhkLd-svB8LI4Ylwo1NrlSBJOQqM2xvtoQ7KkEAJquvX_UHkTuMuSCcpuDyp-qUkvgfbSUgvCacmwNf-bXh2kKVM14YKt3el4vYITetyy96jzSLKf6V36AX8PFbSOS7oZbeO3dgfGp0MDcpF0flu8McaSipBXoHbrjtxx0MOJjpU3Fhpy6Q7o7TX3-OC7fKplseHol4dxkRCsiDoyCxjhUzPHShy8Q', 'kty': 'RSA', 'q': '1PdEoZDjRNefrOxin6a4HEMnooopdLLbNrTmFcd3k3vIiKKK--8eg0zMQMYNe5QXDsiDuly3GTZkptDC93CxWQfjRftmC9gaz_pmdMhOPncgMfGfJAt0Ic57d023rmoZzBQecGKr_3lFxV29cs8bB1ppGxdIlweCXfvvbTubcU3CUyZrAjZqfXqxj4B78PQ96BIbFBTgtCpvSW0YhaswMMFpRnb8grMDQzkB0pXnq-GiBGc3wWKrWWrQjW5sLklwZUsQJz0GdZbLkHiq2nSM_wera6FgshyHvJFHSa9gpREq5rZdMsERp1C2Dd5h8W2cwohpuWqjQQVYGqSXgbN30Q', 'd': 'eYbYTGZ5uklUa2c2LUvbWyRLe8fL3fjFVG87xV76AwxkJZXmn_Mzv0c2F3rbiFjAL-BAWRwK2hrojzWMAztN0u3o13rQh4LasNrz9nPA-jCzIu1JnmBwwNBfY6x2LOOQPlrXI9SBbe94gB4xQUkb8yhzIlWk7jpPzbcKxi19r0SG06UVOEpB6z06cPGOEFrpKpgEaOulYx0H2G1s4vBADQaEFvamN94-sE_PhNjve-HjS3Lz3lhnm0ajFjpLsUqE0dIpeLWmEM3jMU7Zz6c9mI3V2aBUiuNYi9MeUvs9usmbX5krvijfJxDJsxmt1OK3EJSW_kju00hQYRi3jvmKqKnId7bHQSEaXa3FX5FTaardaaCUZSoEl6_WiypxyYg4PHp37HbXnZClBKWZot5lPWHn-Uf-2E2TXdqvysZRfc8NiBVrvVOzQDAkndR-wU3QgL5Efi6vrAFGkb5Ra7WvZ5fjkbQvb5VjKj0kKjJS3__CzLfAp_mQymy6U2wJE_YRxwwavFfaa53YhUdhiYM5P83Tj1UNG48ilVEFIzXWjgjfBMyNsgGF70mINJcc47GUXXh49GeWsHB9DqUMqyEbcVlEr_7tgkVHI7Dko8QlFjlLZRRa-JZApYlcRhaQGni0oUOMELP9ZRtArP3ib8hfdqqcBratNM_BB0bczBAJRQE', 'e': 'AQAB', 'kid': '9494ad75-3f54-4155-84fa-c1a17da22b35', 'qi': 'znwFS129727wjq6Whq6wfD1cxkLs9hnS7-cEbZ8k_p7gE2vXucaK_AN1hIeU6HAGHgoP1RH7rUMN8-YzxfAsj8X0g0u8Qte7evf7jaj4YqPDGy7dTTA2ALLcWAD-djrDAU40ZJXnzM6hIIPbn_uMXAB5W0q_icV5xoIwxJog4ReUle0qMRS0iQCNocPBHydWt0zP-Cqz9MIPd0ctNEf8E55Go90_yAWibQlo4PgLF48UI5BG0NhmPa1nI9Kpt36TwAoyKwscGysSgPGNxgzj4t2PxatXO7Xm47dfNi_yhBSHq9TNcw2laMs9e77G9gluTAOPqYC06zRC7Rr3m9lXOA', 'dp': 'Z_3KjhW4ctfR_e-tZT2bNy9deG6CTjywS0tJT7We8qdHCC_evs9ZRDQrO7P9RJZKJe9wuNN_T8iyoieDVyeBKnxHQAbp0cHEIUXpoUhmY5WRFkJ-6iTu0nOJM0yE0pHIrIPVJB2MzZNei-fcF3g8fDw9UFM6dQYKofC9TvqyAFZAKLhYplRXsBmGJmnUQpD4hzC8U9Xdaq0ldIUyAWRhC_8nBsrVPBYcCtic1QiPPCABByl7LVDwnQlI99rx7R_sBSggb0SKD8ncCzbjP3wEsPsEUWNcVtGz6C5bsNVG2n4uhE0OukapzKL1MfgcVB8K-Orxbtfa4CiC7yTznDlsMQ', 'dq': 'Pl5f-hUNiea_-4uK4oiX2KcOH3ro4yVSL7ZQv8YXzdhthR5dJ6UCwZ8nHj0iS7O2AP1WHqjycm7MkVIIFyEovxMhSyhx3TwfthL2GHNk_sQyaI4DdjHog9INtIXNKkYmYe7ubylmh74DYeavCcV_e-rNZ0KtXpWzZ0TV_J59SnRkWaehpRc8npzlDUqqgYl169YJmhr3J6xZxR4vFU5qIY0zAJDuKHS2muRCFWMTYvIEWdfEq1zzI4-1ngXdpryZLwEJrQQhNSTBXwEHwExr0nBzkmTDhcX3NpExWHIFErJxZvm3V5rVSbPIbU1YT7UzOIFsvQFu6Cbhg4P6XuCpUQ', 'n': 'vdDyT3d33_NmNKBsF4OjIjtOsyOMrH8xhL9C8Jx6yvPcHNWkBHorIEyp7CcKp2gCo7jch6TlkH483cEwhw1GyyfrMPKh4P1uwNHpFI2eEDPqw_wyORVIIT8FPb_QhDxV5GFiWWecr_0DWNf9murqa_T7p5YUK3XVIhewFPDf0iHsV87OJLB8AoIsUfOCym5tvskTuxsMaIpYJZETe7upE_Xg-nVhyXhpFAJEw7RlYebrSEtoFpN6TwYuxutocZ4jNLn1x5t-YHWnyLYUIxN5_fuuzVGIAleY9T3WJXurYGnCUwQjgT7OvqM2K_xej0vFOp_P5C2YSxBX0SZG2322gDQiEqz7G2BCZ7I3PA4XVWV0KENwhxgz5GS7zjuZPIWm4oKwBRlYluTdWpc7A9w7LRs3tCJl6t_ReTlblnT9Dq7l5Na36IBOpesY77apE4BFlFdJZvhF_qrkHEQwo4ckOGrFlG8M3iV8UclHvVzBOPTi-sZoOOiytuSKbn5HikB2CV7k0GIfAJS6Q-RUHSYVFEH7IfmbvE0YkwglDggJWIfwtZG8IVuOFZunmWrYaKdMAvIJQjjv7oAwqrRD6HlXAPGHiTb_BRVaYqOD8ugjZ9ZO2tags12QyMOJq8XQ1mjegp0F-MNKlp_zff5xJbKETu2VUDFQmBqU6gLw_2r23cE'}
sample_public_key = {'kty': 'RSA', 'e': 'AQAB', 'kid': '9494ad75-3f54-4155-84fa-c1a17da22b35', 'n': 'vdDyT3d33_NmNKBsF4OjIjtOsyOMrH8xhL9C8Jx6yvPcHNWkBHorIEyp7CcKp2gCo7jch6TlkH483cEwhw1GyyfrMPKh4P1uwNHpFI2eEDPqw_wyORVIIT8FPb_QhDxV5GFiWWecr_0DWNf9murqa_T7p5YUK3XVIhewFPDf0iHsV87OJLB8AoIsUfOCym5tvskTuxsMaIpYJZETe7upE_Xg-nVhyXhpFAJEw7RlYebrSEtoFpN6TwYuxutocZ4jNLn1x5t-YHWnyLYUIxN5_fuuzVGIAleY9T3WJXurYGnCUwQjgT7OvqM2K_xej0vFOp_P5C2YSxBX0SZG2322gDQiEqz7G2BCZ7I3PA4XVWV0KENwhxgz5GS7zjuZPIWm4oKwBRlYluTdWpc7A9w7LRs3tCJl6t_ReTlblnT9Dq7l5Na36IBOpesY77apE4BFlFdJZvhF_qrkHEQwo4ckOGrFlG8M3iV8UclHvVzBOPTi-sZoOOiytuSKbn5HikB2CV7k0GIfAJS6Q-RUHSYVFEH7IfmbvE0YkwglDggJWIfwtZG8IVuOFZunmWrYaKdMAvIJQjjv7oAwqrRD6HlXAPGHiTb_BRVaYqOD8ugjZ9ZO2tags12QyMOJq8XQ1mjegp0F-MNKlp_zff5xJbKETu2VUDFQmBqU6gLw_2r23cE'} |
# Floyed Loop
# Double linked List definition
class DListNode(object):
def __init__(self):
# self.value = x
self.next = None
self.prev = None
class Floyed(object):
def __init__(self):
self.head = None
# super(Floyed, self).__init__()
self.slow = DListNode()
self.fast = DListNode()
self.slow = self.head
self.fast = self.head
def isLoop( self):
loopExist = False
# fast node is 2 steps ahead
while self.slow.next and self.fast.next.next:
self.slow = self.slow.next
self.fast = self.fast.next.next
if self.low == self.fast:
loopExist = True
break
if self.fast.next == self.head:
break
return loopExist
def findLoopHead(self):
if self.isLoop():
self.slow = self.head
while self.slow != self.fast:
self.slow = self.slow.next
self.fast = self.fast.next
# return Loop head
return self.slow
else:
return print('No loop exists!')
| class Dlistnode(object):
def __init__(self):
self.next = None
self.prev = None
class Floyed(object):
def __init__(self):
self.head = None
self.slow = d_list_node()
self.fast = d_list_node()
self.slow = self.head
self.fast = self.head
def is_loop(self):
loop_exist = False
while self.slow.next and self.fast.next.next:
self.slow = self.slow.next
self.fast = self.fast.next.next
if self.low == self.fast:
loop_exist = True
break
if self.fast.next == self.head:
break
return loopExist
def find_loop_head(self):
if self.isLoop():
self.slow = self.head
while self.slow != self.fast:
self.slow = self.slow.next
self.fast = self.fast.next
return self.slow
else:
return print('No loop exists!') |
def parse_app_id(app_id, method):
if app_id is not None and "/" in app_id:
# This is the normal case - narrative methods
app_id_parts = app_id.split("/")
app_type = "narrative"
elif method is not None:
# Here we use the method for non-narrative methods.
app_id_parts = method.split(".")
app_type = "other"
else:
return None
if len(app_id_parts) != 2:
# Strange but true.
if len(app_id_parts) == 3:
if len(app_id_parts[2]) == 0:
# Some have a / at the end
module_name, function_name, xtra = app_id_parts
id = "/".join([module_name, function_name])
app = {
"id": id,
"module_name": module_name,
"function_name": function_name,
"type": app_type,
}
else:
app = None
else:
app = None
else:
# normal case
module_name, function_name = app_id_parts
app = {
"id": "/".join(app_id_parts),
"module_name": module_name,
"function_name": function_name,
"type": app_type,
}
return app
| def parse_app_id(app_id, method):
if app_id is not None and '/' in app_id:
app_id_parts = app_id.split('/')
app_type = 'narrative'
elif method is not None:
app_id_parts = method.split('.')
app_type = 'other'
else:
return None
if len(app_id_parts) != 2:
if len(app_id_parts) == 3:
if len(app_id_parts[2]) == 0:
(module_name, function_name, xtra) = app_id_parts
id = '/'.join([module_name, function_name])
app = {'id': id, 'module_name': module_name, 'function_name': function_name, 'type': app_type}
else:
app = None
else:
app = None
else:
(module_name, function_name) = app_id_parts
app = {'id': '/'.join(app_id_parts), 'module_name': module_name, 'function_name': function_name, 'type': app_type}
return app |
filename = 'test.txt'
filehandle = open('test.txt')
row = 1
filelist = list()
for item in filehandle:
print(item)
if item.startswith('4'):
item = item.strip()
item = int(item)
if item == row:
filelist.append(item)
row = row + 1
else:
print(filelist)
break | filename = 'test.txt'
filehandle = open('test.txt')
row = 1
filelist = list()
for item in filehandle:
print(item)
if item.startswith('4'):
item = item.strip()
item = int(item)
if item == row:
filelist.append(item)
row = row + 1
else:
print(filelist)
break |
a = 0
b = 67 # 1
c = b # 2
d = 0
e = 0
f = 0
g = 0
h = 0
# count the number of mul
# smoke test for asm translation correctness
count = 0
# jumps > 0: if-else
# jumps < 0: do-while
if a != 0: # 2, 5
b *= 100 # 5
b += 100000 # 6
c = b # 7
c += 17000 # 8
while True: # 32
f = 1 # 9 - flag register
d = 2 # 10
outer_g = True
while outer_g: # 15, 20
e = 2 # 11
#print("outer")
inner_g = True
while inner_g:
#print("inner")
g = d # 12
g *= e # 13
count += 1
g -= b # 14
if g == 0: # 15
f = 0 # 16
e += 1 # 17
g = e # 18
g -= b # 19
if g == 0: # 20
# The while loop reduces to testing
# if b == e * d
inner_g = False
d += 1 # 21
g = d # 22
g -= b # 23
if g == 0: # 24
outer_g = False
if f == 0: # 25
h += 1 # 26
g = b # 27
g -= c # 28
if g == 0: # 29
break # 30 - jump out
b -= 17 # 31
## part 1
print(count)
## part 2
## same complexiy to of the original asm
c = 123700
h = 0
for b in range(106700, c+1, 17):
f = 1
for d in range(2, b+1):
for e in range(2, b+1):
if b == e * d:
f = 0
if f == 0:
h += 1
print(h)
| a = 0
b = 67
c = b
d = 0
e = 0
f = 0
g = 0
h = 0
count = 0
if a != 0:
b *= 100
b += 100000
c = b
c += 17000
while True:
f = 1
d = 2
outer_g = True
while outer_g:
e = 2
inner_g = True
while inner_g:
g = d
g *= e
count += 1
g -= b
if g == 0:
f = 0
e += 1
g = e
g -= b
if g == 0:
inner_g = False
d += 1
g = d
g -= b
if g == 0:
outer_g = False
if f == 0:
h += 1
g = b
g -= c
if g == 0:
break
b -= 17
print(count)
c = 123700
h = 0
for b in range(106700, c + 1, 17):
f = 1
for d in range(2, b + 1):
for e in range(2, b + 1):
if b == e * d:
f = 0
if f == 0:
h += 1
print(h) |
#Create a histogram from a given list of integers
def histogram( items ):
for n in items:
output = ''
times = n
while( times > 0 ):
output += ' @ '
times = times - 1
print(output)
histogram([2, 3, 6, 5])
| def histogram(items):
for n in items:
output = ''
times = n
while times > 0:
output += ' @ '
times = times - 1
print(output)
histogram([2, 3, 6, 5]) |
# Write a short Python function, is even(k), that takes an integer value and
# returns True if k is even, and False otherwise. However, your function
# cannot use the multiplication, modulo, or division operators
def is_even(k):
even_nums = [0, 2, 4, 6, 8]
string_k = str(k)
string_list = [c for c in string_k]
last_number = string_list[-1] if len(string_list) > 1 else string_list[0]
print(k)
try:
even_nums.index(int(last_number))
return True
except ValueError:
return False
print(is_even(4))
print(is_even(1))
print(is_even(2))
print(is_even(12190032890))
print(is_even(10000))
print(is_even(54759))
print(is_even(98))
print(is_even(66))
print(is_even(-29579482))
print(is_even(-222266))
| def is_even(k):
even_nums = [0, 2, 4, 6, 8]
string_k = str(k)
string_list = [c for c in string_k]
last_number = string_list[-1] if len(string_list) > 1 else string_list[0]
print(k)
try:
even_nums.index(int(last_number))
return True
except ValueError:
return False
print(is_even(4))
print(is_even(1))
print(is_even(2))
print(is_even(12190032890))
print(is_even(10000))
print(is_even(54759))
print(is_even(98))
print(is_even(66))
print(is_even(-29579482))
print(is_even(-222266)) |
# Sample Test passing with nose and pytest
def test_pass():
assert True, "Sample test"
| def test_pass():
assert True, 'Sample test' |
class Solution:
def pathSum(self, root: TreeNode, sum: int) -> List[List[int]]:
ans = []
def dfs(root: TreeNode, sum: int, path: List[int]) -> None:
if root is None:
return
if root.val == sum and root.left is None and root.right is None:
ans.append(path + [root.val])
return
dfs(root.left, sum - root.val, path + [root.val])
dfs(root.right, sum - root.val, path + [root.val])
dfs(root, sum, [])
return ans
| class Solution:
def path_sum(self, root: TreeNode, sum: int) -> List[List[int]]:
ans = []
def dfs(root: TreeNode, sum: int, path: List[int]) -> None:
if root is None:
return
if root.val == sum and root.left is None and (root.right is None):
ans.append(path + [root.val])
return
dfs(root.left, sum - root.val, path + [root.val])
dfs(root.right, sum - root.val, path + [root.val])
dfs(root, sum, [])
return ans |
class Address:
def __init__(self, street, city, pincode) -> None:
self.street = street
self.city = city
self.pincode = pincode
class Student:
def __init__(self,name, email, street, city, pincode) -> None:
self.name = name
self.email = email
self.address = Address(street,city, pincode)
class Faculty:
def __init__(self,name, email, street, city, pincode) -> None:
self.name = name
self.email = email
self.address = Address(street,city, pincode)
| class Address:
def __init__(self, street, city, pincode) -> None:
self.street = street
self.city = city
self.pincode = pincode
class Student:
def __init__(self, name, email, street, city, pincode) -> None:
self.name = name
self.email = email
self.address = address(street, city, pincode)
class Faculty:
def __init__(self, name, email, street, city, pincode) -> None:
self.name = name
self.email = email
self.address = address(street, city, pincode) |
h , m = map(int, input().split())
if m < 45 :
if h==0:
h = 23
else:
h-=1
m += 15
else:
m -= 45
print(h,m) | (h, m) = map(int, input().split())
if m < 45:
if h == 0:
h = 23
else:
h -= 1
m += 15
else:
m -= 45
print(h, m) |
# pyfc4
# version info
__version_info__ = ('0', '1')
__version__ = '.'.join(__version_info__)
| __version_info__ = ('0', '1')
__version__ = '.'.join(__version_info__) |
CONTRACT_RECEIVE_FUNCTION_SOURCE = '''
pragma solidity ^0.6.0;
contract Receive {
string text;
fallback() external payable {
text = 'fallback';
}
receive() external payable {
text = 'receive';
}
function getText() public view returns (string memory) {
return text;
}
function setText(string memory new_text) public returns (string memory) {
return text = new_text;
}
}
'''
CONTRACT_RECEIVE_FUNCTION_ABI = '''
[
{
"stateMutability": "payable",
"type": "fallback"
},
{
"inputs": [],
"name": "getText",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "string",
"name": "new_text",
"type": "string"
}
],
"name": "setText",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"stateMutability": "payable",
"type": "receive"
}
]
'''
CONTRACT_RECEIVE_FUNCTION_CODE = "608060405234801561001057600080fd5b506103da806100206000396000f3fe60806040526004361061002d5760003560e01c80635d3a1f9d14610092578063e00fe2eb146101ba57610063565b3661006357604080518082019091526007808252667265636569766560c81b60209092019182526100609160009161030c565b50005b6040805180820190915260088082526766616c6c6261636b60c01b60209092019182526100609160009161030c565b34801561009e57600080fd5b50610145600480360360208110156100b557600080fd5b8101906020810181356401000000008111156100d057600080fd5b8201836020820111156100e257600080fd5b8035906020019184600183028401116401000000008311171561010457600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295506101cf945050505050565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561017f578181015183820152602001610167565b50505050905090810190601f1680156101ac5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156101c657600080fd5b50610145610275565b80516060906101e590600090602085019061030c565b805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156102695780601f1061023e57610100808354040283529160200191610269565b820191906000526020600020905b81548152906001019060200180831161024c57829003601f168201915b50505050509050919050565b60008054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156103015780601f106102d657610100808354040283529160200191610301565b820191906000526020600020905b8154815290600101906020018083116102e457829003601f168201915b505050505090505b90565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061034d57805160ff191683800117855561037a565b8280016001018555821561037a579182015b8281111561037a57825182559160200191906001019061035f565b5061038692915061038a565b5090565b61030991905b80821115610386576000815560010161039056fea2646970667358221220b93632f6dd6614e84675a1453e32b49de37a5d658a6e73173705c5a7dffc0bdd64736f6c63430006010033" # noqa: E501
CONTRACT_RECEIVE_FUNCTION_RUNTIME = "60806040526004361061002d5760003560e01c80635d3a1f9d14610092578063e00fe2eb146101ba57610063565b3661006357604080518082019091526007808252667265636569766560c81b60209092019182526100609160009161030c565b50005b6040805180820190915260088082526766616c6c6261636b60c01b60209092019182526100609160009161030c565b34801561009e57600080fd5b50610145600480360360208110156100b557600080fd5b8101906020810181356401000000008111156100d057600080fd5b8201836020820111156100e257600080fd5b8035906020019184600183028401116401000000008311171561010457600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295506101cf945050505050565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561017f578181015183820152602001610167565b50505050905090810190601f1680156101ac5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156101c657600080fd5b50610145610275565b80516060906101e590600090602085019061030c565b805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156102695780601f1061023e57610100808354040283529160200191610269565b820191906000526020600020905b81548152906001019060200180831161024c57829003601f168201915b50505050509050919050565b60008054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156103015780601f106102d657610100808354040283529160200191610301565b820191906000526020600020905b8154815290600101906020018083116102e457829003601f168201915b505050505090505b90565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061034d57805160ff191683800117855561037a565b8280016001018555821561037a579182015b8281111561037a57825182559160200191906001019061035f565b5061038692915061038a565b5090565b61030991905b80821115610386576000815560010161039056fea2646970667358221220b93632f6dd6614e84675a1453e32b49de37a5d658a6e73173705c5a7dffc0bdd64736f6c63430006010033" # noqa: E501
| contract_receive_function_source = "\npragma solidity ^0.6.0;\n\n\ncontract Receive {\n string text;\n\n fallback() external payable {\n text = 'fallback';\n }\n\n receive() external payable {\n text = 'receive';\n }\n\n function getText() public view returns (string memory) {\n return text;\n }\n\n function setText(string memory new_text) public returns (string memory) {\n return text = new_text;\n }\n}\n"
contract_receive_function_abi = '\n[\n {\n "stateMutability": "payable",\n "type": "fallback"\n },\n {\n "inputs": [],\n "name": "getText",\n "outputs": [\n {\n "internalType": "string",\n "name": "",\n "type": "string"\n }\n ],\n "stateMutability": "view",\n "type": "function"\n },\n {\n "inputs": [\n {\n "internalType": "string",\n "name": "new_text",\n "type": "string"\n }\n ],\n "name": "setText",\n "outputs": [\n {\n "internalType": "string",\n "name": "",\n "type": "string"\n }\n ],\n "stateMutability": "nonpayable",\n "type": "function"\n },\n {\n "stateMutability": "payable",\n "type": "receive"\n }\n]\n'
contract_receive_function_code = '608060405234801561001057600080fd5b506103da806100206000396000f3fe60806040526004361061002d5760003560e01c80635d3a1f9d14610092578063e00fe2eb146101ba57610063565b3661006357604080518082019091526007808252667265636569766560c81b60209092019182526100609160009161030c565b50005b6040805180820190915260088082526766616c6c6261636b60c01b60209092019182526100609160009161030c565b34801561009e57600080fd5b50610145600480360360208110156100b557600080fd5b8101906020810181356401000000008111156100d057600080fd5b8201836020820111156100e257600080fd5b8035906020019184600183028401116401000000008311171561010457600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295506101cf945050505050565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561017f578181015183820152602001610167565b50505050905090810190601f1680156101ac5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156101c657600080fd5b50610145610275565b80516060906101e590600090602085019061030c565b805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156102695780601f1061023e57610100808354040283529160200191610269565b820191906000526020600020905b81548152906001019060200180831161024c57829003601f168201915b50505050509050919050565b60008054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156103015780601f106102d657610100808354040283529160200191610301565b820191906000526020600020905b8154815290600101906020018083116102e457829003601f168201915b505050505090505b90565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061034d57805160ff191683800117855561037a565b8280016001018555821561037a579182015b8281111561037a57825182559160200191906001019061035f565b5061038692915061038a565b5090565b61030991905b80821115610386576000815560010161039056fea2646970667358221220b93632f6dd6614e84675a1453e32b49de37a5d658a6e73173705c5a7dffc0bdd64736f6c63430006010033'
contract_receive_function_runtime = '60806040526004361061002d5760003560e01c80635d3a1f9d14610092578063e00fe2eb146101ba57610063565b3661006357604080518082019091526007808252667265636569766560c81b60209092019182526100609160009161030c565b50005b6040805180820190915260088082526766616c6c6261636b60c01b60209092019182526100609160009161030c565b34801561009e57600080fd5b50610145600480360360208110156100b557600080fd5b8101906020810181356401000000008111156100d057600080fd5b8201836020820111156100e257600080fd5b8035906020019184600183028401116401000000008311171561010457600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295506101cf945050505050565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561017f578181015183820152602001610167565b50505050905090810190601f1680156101ac5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156101c657600080fd5b50610145610275565b80516060906101e590600090602085019061030c565b805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156102695780601f1061023e57610100808354040283529160200191610269565b820191906000526020600020905b81548152906001019060200180831161024c57829003601f168201915b50505050509050919050565b60008054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156103015780601f106102d657610100808354040283529160200191610301565b820191906000526020600020905b8154815290600101906020018083116102e457829003601f168201915b505050505090505b90565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061034d57805160ff191683800117855561037a565b8280016001018555821561037a579182015b8281111561037a57825182559160200191906001019061035f565b5061038692915061038a565b5090565b61030991905b80821115610386576000815560010161039056fea2646970667358221220b93632f6dd6614e84675a1453e32b49de37a5d658a6e73173705c5a7dffc0bdd64736f6c63430006010033' |
# Define a function that takes in two non-negative integers a and b and returns the last decimal digit of a^b.
# Note that a and b may be very large!
# For example, the last decimal digit of 9^7 is 9, since 9^7=4782969.
# The last decimal digit of (2^200)^2300, which has over 10^92 decimal digits, is 6.
# Also, please take 0^0 = 1
#
# You may assume that the input will always be valid.
# Examples
#
# last_digit(4, 1) # returns 4
# last_digit(4, 2) # returns 6
# last_digit(9, 7) # returns 9
# last_digit(10, 10 ** 10) # returns 0
# last_digit(2 ** 200, 2 ** 300) # returns 6
def last_digit(a, b):
return pow(a, b, 10)
| def last_digit(a, b):
return pow(a, b, 10) |
num = int(input("Input: "))
count = 0
squareLength = 3
while squareLength * squareLength < num:
squareLength += 2
squareLength -= 2
cornerValue = squareLength * squareLength
diff = num - cornerValue
midPoint = (squareLength + 1) / 2
# # Walk right one
# diff += 1
# # Walk north
# if squareLength > diff:
# diff = diff - midPoint
# else:
# diff -= squareLength
# # Walk west
# if squareLength + 1 > diff:
# diff = diff - midPoint
# else:
# diff -= squareLength + 1
# # Walk South
# if squareLength + 1 > diff:
# diff = diff - midPoint
# else:
# diff -= squareLength + 1
# # Walk East
# if squareLength + 1 > diff:
# diff = diff - midPoint
print(squareLength)
print(cornerValue)
print(diff)
print(midPoint)
| num = int(input('Input: '))
count = 0
square_length = 3
while squareLength * squareLength < num:
square_length += 2
square_length -= 2
corner_value = squareLength * squareLength
diff = num - cornerValue
mid_point = (squareLength + 1) / 2
print(squareLength)
print(cornerValue)
print(diff)
print(midPoint) |
#Python program to Find ASCII value of character
def main():
x=input("Enter a character")
print("The ASCII value of",x,"is",ord(x))
if __name__=='__main__':
main()
| def main():
x = input('Enter a character')
print('The ASCII value of', x, 'is', ord(x))
if __name__ == '__main__':
main() |
{
"cells": [
{
"cell_type": "code",
"execution_count": 29,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"The max value = 5\n",
"The min value = -3\n",
"The max squared value = 25\n",
"The length of the list = 7\n",
"The total of all positive numbers in the list = 15\n",
"The Negative numbers count in the list = 2\n",
"The even numbers in the list = [-2, 4, 2]\n",
"The total of all the numbers in the list = 10\n"
]
}
],
"source": [
"class NewClass:\n",
" def __init__(self, ls = [1,3,5,-3,-2,4,2]):\n",
" self.ls = ls\n",
" \n",
" # Return the Maximum value in the list\n",
" def return_max(list):\n",
" max = list[0]\n",
" for a in list:\n",
" if a > max:\n",
" max = a\n",
" return max\n",
"\n",
" print('The max value =',return_max(ls))\n",
" \n",
" # Return the minimum value in the list\n",
" def return_min(list):\n",
" min = list[0]\n",
" for a in list:\n",
" if a < min:\n",
" min = a\n",
" return min\n",
"\n",
" print('The min value =',return_min(ls))\n",
" \n",
" # Return the max value squared\n",
" def return_max_squared(list):\n",
" max = list[0]\n",
" for a in list:\n",
" if a > max:\n",
" max = a\n",
" return max**2\n",
"\n",
" print('The max squared value =', return_max_squared(ls))\n",
" \n",
" # Return length of the list:\n",
" def return_length(list):\n",
" testList = ls\n",
" return len\n",
" print('The length of the list =', len(ls))\n",
"\n",
" # Return the sum of all positive numbers only\n",
" def return_positive_sum(list):\n",
" positive = 0 \n",
" for x in list:\n",
" if x > 0:\n",
" positive = positive + x\n",
" return positive\n",
" print('The total of all positive numbers in the list =', return_positive_sum(ls))\n",
" \n",
" \n",
" # Return the count of all negative numbers (How many negative numbers are in the list)\n",
" def return_negative_count(list):\n",
" pos_count = 0 \n",
" neg_count = 0\n",
" for num in list:\n",
" if num >= 0:\n",
" pos_count += 1\n",
" else:\n",
" neg_count += 1\n",
" return neg_count \n",
" print(\"The Negative numbers count in the list = \", return_negative_count(ls))\n",
"\n",
" # Return the list of all even numbers in the list\n",
" def even_num(list):\n",
" even = []\n",
" for n in list:\n",
" if n % 2 == 0:\n",
" even.append(n)\n",
" return even\n",
" print(\"The even numbers in the list = \", even_num(ls))\n",
" \n",
" # Return the sum of all numbers in the list\n",
" def sum_all_number(ls):\n",
" total = 0\n",
" for x in ls:\n",
" total += x\n",
" return total\n",
" print(\"The total of all the numbers in the list =\", sum_all_number(ls)) \n"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": []
}
],
"metadata": {
"kernelspec": {
"display_name": "Python 3",
"language": "python",
"name": "python3"
},
"language_info": {
"codemirror_mode": {
"name": "ipython",
"version": 3
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.7.4"
}
},
"nbformat": 4,
"nbformat_minor": 2
}
| {'cells': [{'cell_type': 'code', 'execution_count': 29, 'metadata': {}, 'outputs': [{'name': 'stdout', 'output_type': 'stream', 'text': ['The max value = 5\n', 'The min value = -3\n', 'The max squared value = 25\n', 'The length of the list = 7\n', 'The total of all positive numbers in the list = 15\n', 'The Negative numbers count in the list = 2\n', 'The even numbers in the list = [-2, 4, 2]\n', 'The total of all the numbers in the list = 10\n']}], 'source': ['class NewClass:\n', ' def __init__(self, ls = [1,3,5,-3,-2,4,2]):\n', ' self.ls = ls\n', ' \n', ' # Return the Maximum value in the list\n', ' def return_max(list):\n', ' max = list[0]\n', ' for a in list:\n', ' if a > max:\n', ' max = a\n', ' return max\n', '\n', " print('The max value =',return_max(ls))\n", ' \n', ' # Return the minimum value in the list\n', ' def return_min(list):\n', ' min = list[0]\n', ' for a in list:\n', ' if a < min:\n', ' min = a\n', ' return min\n', '\n', " print('The min value =',return_min(ls))\n", ' \n', ' # Return the max value squared\n', ' def return_max_squared(list):\n', ' max = list[0]\n', ' for a in list:\n', ' if a > max:\n', ' max = a\n', ' return max**2\n', '\n', " print('The max squared value =', return_max_squared(ls))\n", ' \n', ' # Return length of the list:\n', ' def return_length(list):\n', ' testList = ls\n', ' return len\n', " print('The length of the list =', len(ls))\n", '\n', ' # Return the sum of all positive numbers only\n', ' def return_positive_sum(list):\n', ' positive = 0 \n', ' for x in list:\n', ' if x > 0:\n', ' positive = positive + x\n', ' return positive\n', " print('The total of all positive numbers in the list =', return_positive_sum(ls))\n", ' \n', ' \n', ' # Return the count of all negative numbers (How many negative numbers are in the list)\n', ' def return_negative_count(list):\n', ' pos_count = 0 \n', ' neg_count = 0\n', ' for num in list:\n', ' if num >= 0:\n', ' pos_count += 1\n', ' else:\n', ' neg_count += 1\n', ' return neg_count \n', ' print("The Negative numbers count in the list = ", return_negative_count(ls))\n', '\n', ' # Return the list of all even numbers in the list\n', ' def even_num(list):\n', ' even = []\n', ' for n in list:\n', ' if n % 2 == 0:\n', ' even.append(n)\n', ' return even\n', ' print("The even numbers in the list = ", even_num(ls))\n', ' \n', ' # Return the sum of all numbers in the list\n', ' def sum_all_number(ls):\n', ' total = 0\n', ' for x in ls:\n', ' total += x\n', ' return total\n', ' print("The total of all the numbers in the list =", sum_all_number(ls)) \n']}, {'cell_type': 'code', 'execution_count': null, 'metadata': {}, 'outputs': [], 'source': []}], 'metadata': {'kernelspec': {'display_name': 'Python 3', 'language': 'python', 'name': 'python3'}, 'language_info': {'codemirror_mode': {'name': 'ipython', 'version': 3}, 'file_extension': '.py', 'mimetype': 'text/x-python', 'name': 'python', 'nbconvert_exporter': 'python', 'pygments_lexer': 'ipython3', 'version': '3.7.4'}}, 'nbformat': 4, 'nbformat_minor': 2} |
class TestClass(object):
def test_eken(self):
eken = 'diq'
assert eken == 'diq'
def test_gman(self):
gman_is_g = True
assert gman_is_g is True
def test_t(self):
tys_biceps_circumference = 5*1000
assert tys_biceps_circumference > 1000
| class Testclass(object):
def test_eken(self):
eken = 'diq'
assert eken == 'diq'
def test_gman(self):
gman_is_g = True
assert gman_is_g is True
def test_t(self):
tys_biceps_circumference = 5 * 1000
assert tys_biceps_circumference > 1000 |
load("//:plugin.bzl", "ProtoPluginInfo")
load(
"//internal:common.bzl",
"ProtoCompileInfo",
"copy_file",
"descriptor_proto_path",
"get_int_attr",
"get_output_filename",
"strip_path_prefix",
)
ProtoLibraryAspectNodeInfo = provider(
fields = {
"output_files": "The files generated by this aspect and its transitive dependencies, as a dict indexed by the root directory",
"output_dirs": "The directories generated by this aspect and its transitive dependencies, as a string list",
},
)
proto_compile_attrs = {
"verbose": attr.int(
doc = "The verbosity level. Supported values and results are 1: *show command*, 2: *show command and sandbox after running protoc*, 3: *show command and sandbox before and after running protoc*, 4. *show env, command, expected outputs and sandbox before and after running protoc*",
),
"verbose_string": attr.string(
doc = "String version of the verbose string, used for aspect",
default = "0",
),
"prefix_path": attr.string(
doc = "Path to prefix to the generated files in the output directory. Cannot be set when merge_directories == False",
),
"merge_directories": attr.bool(
doc = "If true, all generated files are merged into a single directory with the name of current label and these new files returned as the outputs. If false, the original generated files are returned across multiple roots",
default = True,
),
}
proto_compile_aspect_attrs = {
"verbose_string": attr.string(
doc = "String version of the verbose string, used for aspect",
values = ["", "None", "0", "1", "2", "3", "4"],
default = "0",
),
}
def proto_compile_impl(ctx):
# Aggregate output files and dirs created by the aspect as it has walked the deps
output_files = [dep[ProtoLibraryAspectNodeInfo].output_files for dep in ctx.attr.deps]
output_dirs = [d for dirs in [dep[ProtoLibraryAspectNodeInfo].output_dirs for dep in ctx.attr.deps] for d in dirs]
# Check merge_directories and prefix_path
if not ctx.attr.merge_directories and ctx.attr.prefix_path:
fail("Attribute prefix_path cannot be set when merge_directories is false")
# Build outputs
final_output_files = {}
final_output_dirs = []
prefix_path = ctx.attr.prefix_path
if not ctx.attr.merge_directories:
# Pass on outputs directly when not merging
for output_files_dict in output_files:
final_output_files.update(**output_files_dict)
final_output_dirs = output_dirs
elif output_dirs:
# If we have any output dirs specified, we declare a single output
# directory and merge all files in one go. This is necessary to prevent
# path prefix conflicts
# Declare single output directory
dir_name = ctx.label.name
if prefix_path:
dir_name = dir_name + "/" + prefix_path
new_dir = ctx.actions.declare_directory(dir_name)
final_output_dirs.append(new_dir)
# Build copy command for directory outputs
# Use cp {}/. rather than {}/* to allow for empty output directories from a plugin (e.g when no service exists,
# so no files generated)
command_parts = ["cp -r {} '{}'".format(
" ".join(["'" + d.path + "/.'" for d in output_dirs]),
new_dir.path,
)]
# Extend copy command with file outputs
command_input_files = []
for output_files_dict in output_files:
for root, files in output_files_dict.items():
for file in files:
# Strip root from file path
path = strip_path_prefix(file.path, root)
# Prefix path is contained in new_dir.path created above and
# used below
# Add command to copy file to output
command_input_files.append(file)
command_parts.append("cp '{}' '{}'".format(
file.path,
"{}/{}".format(new_dir.path, path),
))
# Add debug options
if ctx.attr.verbose > 1:
command_parts = command_parts + ["echo '\n##### SANDBOX AFTER MERGING DIRECTORIES'", "find . -type l"]
if ctx.attr.verbose > 2:
command_parts = ["echo '\n##### SANDBOX BEFORE MERGING DIRECTORIES'", "find . -type l"] + command_parts
if ctx.attr.verbose > 0:
print("Directory merge command: {}".format(" && ".join(command_parts)))
# Copy directories and files to shared output directory in one action
ctx.actions.run_shell(
mnemonic = "CopyDirs",
inputs = output_dirs + command_input_files,
outputs = [new_dir],
command = " && ".join(command_parts),
progress_message = "copying directories and files to {}".format(new_dir.path),
)
else:
# Otherwise, if we only have output files, build the output tree by
# aggregating files created by aspect into one directory
output_root = ctx.bin_dir.path + "/"
if ctx.label.workspace_root:
output_root += ctx.label.workspace_root + "/"
if ctx.label.package:
output_root += ctx.label.package + "/"
output_root += ctx.label.name
final_output_files[output_root] = []
for output_files_dict in output_files:
for root, files in output_files_dict.items():
for file in files:
# Strip root from file path
path = strip_path_prefix(file.path, root)
# Prepend prefix path if given
if prefix_path:
path = prefix_path + "/" + path
# Copy file to output
final_output_files[output_root].append(copy_file(
ctx,
file,
"{}/{}".format(ctx.label.name, path),
))
# Create default and proto compile providers
all_outputs = [f for files in final_output_files.values() for f in files] + final_output_dirs
return [
ProtoCompileInfo(
label = ctx.label,
output_files = final_output_files,
output_dirs = final_output_dirs,
),
DefaultInfo(
files = depset(all_outputs),
data_runfiles = ctx.runfiles(files = all_outputs),
),
]
def proto_compile_aspect_impl(target, ctx):
###
### Part 1: setup variables used in scope
###
# <int> verbose level
# verbose = ctx.attr.verbose
verbose = get_int_attr(ctx.attr, "verbose_string")
# <struct> The resolved protoc toolchain
protoc_toolchain_info = ctx.toolchains[str(Label("//protobuf:toolchain_type"))]
# <Target> The resolved protoc compiler from the protoc toolchain
protoc = protoc_toolchain_info.protoc_executable
# <ProtoInfo> The ProtoInfo of the current node
proto_info = target[ProtoInfo]
# <string> The directory where the outputs will be generated, relative to
# the package. This contains the aspect _prefix attr to disambiguate
# different aspects that may share the same plugins and would otherwise try
# to touch the same file. The same is true for the verbose_string attr.
rel_outdir = "{}/{}_verb{}".format(ctx.label.name, ctx.attr._prefix, verbose)
# <string> The full path to the directory where the outputs will be generated
full_outdir = ctx.bin_dir.path + "/"
if ctx.label.workspace_root:
full_outdir += ctx.label.workspace_root + "/"
if ctx.label.package:
full_outdir += ctx.label.package + "/"
full_outdir += rel_outdir
# <list<PluginInfo>> A list of PluginInfo providers for the requested
# plugins
plugins = [plugin[ProtoPluginInfo] for plugin in ctx.attr._plugins]
# <list<File>> The list of generated artifacts like 'foo_pb2.py' that we
# expect to be produced.
output_files = []
# <list<File>> The list of generated artifacts directories that we
# expect to be produced.
output_dirs = []
###
### Part 2: iterate over plugins
###
# Each plugin is isolated to its own execution of protoc, as plugins may
# have differing exclusions that cannot be expressed in a single protoc
# execution for all plugins
for plugin in plugins:
###
### Part 2.1: fetch plugin tool and runfiles
###
# <list<File>> Files required for running the plugins
plugin_runfiles = []
# <list<opaque>> Plugin input manifests
plugin_input_manifests = None
# Get plugin name
plugin_name = plugin.name
if plugin.protoc_plugin_name:
plugin_name = plugin.protoc_plugin_name
# Add plugin executable if not a built-in plugin
plugin_tool = None
if plugin.tool_executable:
plugin_tool = plugin.tool_executable
# Add plugin runfiles if plugin has a tool
if plugin.tool:
plugin_runfiles, plugin_input_manifests = ctx.resolve_tools(tools = [plugin.tool])
plugin_runfiles = plugin_runfiles.to_list()
# Add extra plugin data files
plugin_runfiles += plugin.data
# Check plugin outputs
if plugin.output_directory and (plugin.out or plugin.outputs):
fail("Proto plugin {} cannot use output_directory in conjunction with outputs or out".format(plugin.name))
###
### Part 2.2: gather proto files and filter by exclusions
###
# <list<File>> The filtered set of .proto files to compile
protos = []
for proto in proto_info.direct_sources:
# Check for exclusion
if any([
proto.dirname.endswith(exclusion) or proto.path.endswith(exclusion)
for exclusion in plugin.exclusions
]) or proto in protos: # TODO: When using import_prefix, the ProtoInfo.direct_sources list appears to contain duplicate records, this line removes these. https://github.com/bazelbuild/bazel/issues/9127
continue
# Proto not excluded
protos.append(proto)
# Skip plugin if all proto files have now been excluded
if len(protos) == 0:
if verbose > 2:
print('Skipping plugin "{}" for "{}" as all proto files have been excluded'.format(plugin.name, ctx.label))
continue
###
### Part 2.3: declare per-proto generated outputs from plugin
###
# <list<File>> The list of generated artifacts like 'foo_pb2.py' that we
# expect to be produced by this plugin only
plugin_outputs = []
for proto in protos:
for pattern in plugin.outputs:
plugin_outputs.append(ctx.actions.declare_file("{}/{}".format(
rel_outdir,
get_output_filename(proto, pattern, proto_info),
)))
# Append current plugin outputs to global outputs before looking at
# per-plugin outputs; these are manually added globally as there may
# be srcjar outputs.
output_files.extend(plugin_outputs)
###
### Part 2.4: declare per-plugin artifacts
###
# Some protoc plugins generate a set of output files (like python) while
# others generate a single 'archive' file that contains the individual
# outputs (like java). Jar outputs are gathered as a special case as we need to
# post-process them to have a 'srcjar' extension (java_library rules don't
# accept source jars with a 'jar' extension)
out_file = None
if plugin.out:
# Define out file
out_file = ctx.actions.declare_file("{}/{}".format(
rel_outdir,
plugin.out.replace("{name}", ctx.label.name),
))
plugin_outputs.append(out_file)
if not out_file.path.endswith(".jar"):
# Add output direct to global outputs
output_files.append(out_file)
else:
# Create .srcjar from .jar for global outputs
output_files.append(copy_file(
ctx,
out_file,
"{}.srcjar".format(out_file.basename.rpartition(".")[0]),
sibling = out_file,
))
###
### Part 2.5: declare plugin output directory
###
# Some plugins outputs a structure that cannot be predicted from the
# input file paths alone. For these plugins, we simply declare the
# directory.
if plugin.output_directory:
out_file = ctx.actions.declare_directory(rel_outdir + "/" + "_plugin_" + plugin.name)
plugin_outputs.append(out_file)
output_dirs.append(out_file)
###
### Part 2.6: build command
###
# <Args> argument list for protoc execution
args = ctx.actions.args()
# Add descriptors
pathsep = ctx.configuration.host_path_separator
args.add("--descriptor_set_in={}".format(pathsep.join(
[f.path for f in proto_info.transitive_descriptor_sets.to_list()],
)))
# Add plugin if not built-in
if plugin_tool:
# If Windows, mangle the path. It's done a bit awkwardly with
# `host_path_seprator` as there is no simple way to figure out what's
# the current OS.
plugin_tool_path = None
if ctx.configuration.host_path_separator == ";":
plugin_tool_path = plugin_tool.path.replace("/", "\\")
else:
plugin_tool_path = plugin_tool.path
args.add("--plugin=protoc-gen-{}={}".format(plugin_name, plugin_tool_path))
# Add plugin out arg
out_arg = out_file.path if out_file else full_outdir
if plugin.options:
out_arg = "{}:{}".format(",".join(
[option.replace("{name}", ctx.label.name) for option in plugin.options],
), out_arg)
args.add("--{}_out={}".format(plugin_name, out_arg))
args.add("--experimental_allow_proto3_optional")
# Add source proto files as descriptor paths
for proto in protos:
args.add(descriptor_proto_path(proto, proto_info))
###
### Part 2.7: run command
###
mnemonic = "ProtoCompile"
command = ("mkdir -p '{}' && ".format(full_outdir)) + protoc.path + " $@" # $@ is replaced with args list
inputs = proto_info.transitive_descriptor_sets.to_list() + plugin_runfiles # Proto files are not inputs, as they come via the descriptor sets
tools = [protoc] + ([plugin_tool] if plugin_tool else [])
# Amend command with debug options
if verbose > 0:
print("{}:".format(mnemonic), protoc.path, args)
if verbose > 1:
command += " && echo '\n##### SANDBOX AFTER RUNNING PROTOC' && find . -type f "
if verbose > 2:
command = "echo '\n##### SANDBOX BEFORE RUNNING PROTOC' && find . -type l && " + command
if verbose > 3:
command = "env && " + command
for f in inputs:
print("INPUT:", f.path)
for f in protos:
print("TARGET PROTO:", f.path)
for f in tools:
print("TOOL:", f.path)
for f in plugin_outputs:
print("EXPECTED OUTPUT:", f.path)
# Run protoc
ctx.actions.run_shell(
mnemonic = mnemonic,
command = command,
arguments = [args],
inputs = inputs,
tools = tools,
outputs = plugin_outputs,
use_default_shell_env = plugin.use_built_in_shell_environment,
input_manifests = plugin_input_manifests if plugin_input_manifests else [],
progress_message = "Compiling protoc outputs for {} plugin".format(plugin.name),
)
###
### Step 3: generate providers
###
# Gather transitive info
transitive_infos = [dep[ProtoLibraryAspectNodeInfo] for dep in ctx.rule.attr.deps]
output_files_dict = {}
if output_files:
output_files_dict[full_outdir] = output_files
for transitive_info in transitive_infos:
output_files_dict.update(**transitive_info.output_files)
output_dirs += transitive_info.output_dirs
return [
ProtoLibraryAspectNodeInfo(
output_files = output_files_dict,
output_dirs = output_dirs,
),
]
| load('//:plugin.bzl', 'ProtoPluginInfo')
load('//internal:common.bzl', 'ProtoCompileInfo', 'copy_file', 'descriptor_proto_path', 'get_int_attr', 'get_output_filename', 'strip_path_prefix')
proto_library_aspect_node_info = provider(fields={'output_files': 'The files generated by this aspect and its transitive dependencies, as a dict indexed by the root directory', 'output_dirs': 'The directories generated by this aspect and its transitive dependencies, as a string list'})
proto_compile_attrs = {'verbose': attr.int(doc='The verbosity level. Supported values and results are 1: *show command*, 2: *show command and sandbox after running protoc*, 3: *show command and sandbox before and after running protoc*, 4. *show env, command, expected outputs and sandbox before and after running protoc*'), 'verbose_string': attr.string(doc='String version of the verbose string, used for aspect', default='0'), 'prefix_path': attr.string(doc='Path to prefix to the generated files in the output directory. Cannot be set when merge_directories == False'), 'merge_directories': attr.bool(doc='If true, all generated files are merged into a single directory with the name of current label and these new files returned as the outputs. If false, the original generated files are returned across multiple roots', default=True)}
proto_compile_aspect_attrs = {'verbose_string': attr.string(doc='String version of the verbose string, used for aspect', values=['', 'None', '0', '1', '2', '3', '4'], default='0')}
def proto_compile_impl(ctx):
output_files = [dep[ProtoLibraryAspectNodeInfo].output_files for dep in ctx.attr.deps]
output_dirs = [d for dirs in [dep[ProtoLibraryAspectNodeInfo].output_dirs for dep in ctx.attr.deps] for d in dirs]
if not ctx.attr.merge_directories and ctx.attr.prefix_path:
fail('Attribute prefix_path cannot be set when merge_directories is false')
final_output_files = {}
final_output_dirs = []
prefix_path = ctx.attr.prefix_path
if not ctx.attr.merge_directories:
for output_files_dict in output_files:
final_output_files.update(**output_files_dict)
final_output_dirs = output_dirs
elif output_dirs:
dir_name = ctx.label.name
if prefix_path:
dir_name = dir_name + '/' + prefix_path
new_dir = ctx.actions.declare_directory(dir_name)
final_output_dirs.append(new_dir)
command_parts = ["cp -r {} '{}'".format(' '.join(["'" + d.path + "/.'" for d in output_dirs]), new_dir.path)]
command_input_files = []
for output_files_dict in output_files:
for (root, files) in output_files_dict.items():
for file in files:
path = strip_path_prefix(file.path, root)
command_input_files.append(file)
command_parts.append("cp '{}' '{}'".format(file.path, '{}/{}'.format(new_dir.path, path)))
if ctx.attr.verbose > 1:
command_parts = command_parts + ["echo '\n##### SANDBOX AFTER MERGING DIRECTORIES'", 'find . -type l']
if ctx.attr.verbose > 2:
command_parts = ["echo '\n##### SANDBOX BEFORE MERGING DIRECTORIES'", 'find . -type l'] + command_parts
if ctx.attr.verbose > 0:
print('Directory merge command: {}'.format(' && '.join(command_parts)))
ctx.actions.run_shell(mnemonic='CopyDirs', inputs=output_dirs + command_input_files, outputs=[new_dir], command=' && '.join(command_parts), progress_message='copying directories and files to {}'.format(new_dir.path))
else:
output_root = ctx.bin_dir.path + '/'
if ctx.label.workspace_root:
output_root += ctx.label.workspace_root + '/'
if ctx.label.package:
output_root += ctx.label.package + '/'
output_root += ctx.label.name
final_output_files[output_root] = []
for output_files_dict in output_files:
for (root, files) in output_files_dict.items():
for file in files:
path = strip_path_prefix(file.path, root)
if prefix_path:
path = prefix_path + '/' + path
final_output_files[output_root].append(copy_file(ctx, file, '{}/{}'.format(ctx.label.name, path)))
all_outputs = [f for files in final_output_files.values() for f in files] + final_output_dirs
return [proto_compile_info(label=ctx.label, output_files=final_output_files, output_dirs=final_output_dirs), default_info(files=depset(all_outputs), data_runfiles=ctx.runfiles(files=all_outputs))]
def proto_compile_aspect_impl(target, ctx):
verbose = get_int_attr(ctx.attr, 'verbose_string')
protoc_toolchain_info = ctx.toolchains[str(label('//protobuf:toolchain_type'))]
protoc = protoc_toolchain_info.protoc_executable
proto_info = target[ProtoInfo]
rel_outdir = '{}/{}_verb{}'.format(ctx.label.name, ctx.attr._prefix, verbose)
full_outdir = ctx.bin_dir.path + '/'
if ctx.label.workspace_root:
full_outdir += ctx.label.workspace_root + '/'
if ctx.label.package:
full_outdir += ctx.label.package + '/'
full_outdir += rel_outdir
plugins = [plugin[ProtoPluginInfo] for plugin in ctx.attr._plugins]
output_files = []
output_dirs = []
for plugin in plugins:
plugin_runfiles = []
plugin_input_manifests = None
plugin_name = plugin.name
if plugin.protoc_plugin_name:
plugin_name = plugin.protoc_plugin_name
plugin_tool = None
if plugin.tool_executable:
plugin_tool = plugin.tool_executable
if plugin.tool:
(plugin_runfiles, plugin_input_manifests) = ctx.resolve_tools(tools=[plugin.tool])
plugin_runfiles = plugin_runfiles.to_list()
plugin_runfiles += plugin.data
if plugin.output_directory and (plugin.out or plugin.outputs):
fail('Proto plugin {} cannot use output_directory in conjunction with outputs or out'.format(plugin.name))
protos = []
for proto in proto_info.direct_sources:
if any([proto.dirname.endswith(exclusion) or proto.path.endswith(exclusion) for exclusion in plugin.exclusions]) or proto in protos:
continue
protos.append(proto)
if len(protos) == 0:
if verbose > 2:
print('Skipping plugin "{}" for "{}" as all proto files have been excluded'.format(plugin.name, ctx.label))
continue
plugin_outputs = []
for proto in protos:
for pattern in plugin.outputs:
plugin_outputs.append(ctx.actions.declare_file('{}/{}'.format(rel_outdir, get_output_filename(proto, pattern, proto_info))))
output_files.extend(plugin_outputs)
out_file = None
if plugin.out:
out_file = ctx.actions.declare_file('{}/{}'.format(rel_outdir, plugin.out.replace('{name}', ctx.label.name)))
plugin_outputs.append(out_file)
if not out_file.path.endswith('.jar'):
output_files.append(out_file)
else:
output_files.append(copy_file(ctx, out_file, '{}.srcjar'.format(out_file.basename.rpartition('.')[0]), sibling=out_file))
if plugin.output_directory:
out_file = ctx.actions.declare_directory(rel_outdir + '/' + '_plugin_' + plugin.name)
plugin_outputs.append(out_file)
output_dirs.append(out_file)
args = ctx.actions.args()
pathsep = ctx.configuration.host_path_separator
args.add('--descriptor_set_in={}'.format(pathsep.join([f.path for f in proto_info.transitive_descriptor_sets.to_list()])))
if plugin_tool:
plugin_tool_path = None
if ctx.configuration.host_path_separator == ';':
plugin_tool_path = plugin_tool.path.replace('/', '\\')
else:
plugin_tool_path = plugin_tool.path
args.add('--plugin=protoc-gen-{}={}'.format(plugin_name, plugin_tool_path))
out_arg = out_file.path if out_file else full_outdir
if plugin.options:
out_arg = '{}:{}'.format(','.join([option.replace('{name}', ctx.label.name) for option in plugin.options]), out_arg)
args.add('--{}_out={}'.format(plugin_name, out_arg))
args.add('--experimental_allow_proto3_optional')
for proto in protos:
args.add(descriptor_proto_path(proto, proto_info))
mnemonic = 'ProtoCompile'
command = "mkdir -p '{}' && ".format(full_outdir) + protoc.path + ' $@'
inputs = proto_info.transitive_descriptor_sets.to_list() + plugin_runfiles
tools = [protoc] + ([plugin_tool] if plugin_tool else [])
if verbose > 0:
print('{}:'.format(mnemonic), protoc.path, args)
if verbose > 1:
command += " && echo '\n##### SANDBOX AFTER RUNNING PROTOC' && find . -type f "
if verbose > 2:
command = "echo '\n##### SANDBOX BEFORE RUNNING PROTOC' && find . -type l && " + command
if verbose > 3:
command = 'env && ' + command
for f in inputs:
print('INPUT:', f.path)
for f in protos:
print('TARGET PROTO:', f.path)
for f in tools:
print('TOOL:', f.path)
for f in plugin_outputs:
print('EXPECTED OUTPUT:', f.path)
ctx.actions.run_shell(mnemonic=mnemonic, command=command, arguments=[args], inputs=inputs, tools=tools, outputs=plugin_outputs, use_default_shell_env=plugin.use_built_in_shell_environment, input_manifests=plugin_input_manifests if plugin_input_manifests else [], progress_message='Compiling protoc outputs for {} plugin'.format(plugin.name))
transitive_infos = [dep[ProtoLibraryAspectNodeInfo] for dep in ctx.rule.attr.deps]
output_files_dict = {}
if output_files:
output_files_dict[full_outdir] = output_files
for transitive_info in transitive_infos:
output_files_dict.update(**transitive_info.output_files)
output_dirs += transitive_info.output_dirs
return [proto_library_aspect_node_info(output_files=output_files_dict, output_dirs=output_dirs)] |
# def foo (arg1, arg2, arg3):
# print (arg1,arg2,arg3)
# foo(
# arg2 = 'second',
# arg3 = 'third',
# arg1 = ['name1','name2']
# )
# string1 = ('{} part'.format('first'))
# string2 = 'second part'
# print (string1+string2)
def create_table(name,columns,datatype,key): #columns is a list containing column names
dd = {'str':'varchar(255)','float':'FLOAT(63,4)'}
query = ("CREATE TABLE {} ( \n".format(name))
query_seg = ("")
for i, col_name in enumerate(columns):
query_seg = ('{} {} NOT NULL,\n'.format(col_name,dd[datatype[i]]))
query += query_seg
query_seg = ('PRIMARY KEY ({}));'.format(key))
query += query_seg
print (query)
create_table(
name = 'table_1',
columns = ['first_col','second_col'],
datatype = ['str','float'],
key = 'first_col'
) | def create_table(name, columns, datatype, key):
dd = {'str': 'varchar(255)', 'float': 'FLOAT(63,4)'}
query = 'CREATE TABLE {} ( \n'.format(name)
query_seg = ''
for (i, col_name) in enumerate(columns):
query_seg = '{} {} NOT NULL,\n'.format(col_name, dd[datatype[i]])
query += query_seg
query_seg = 'PRIMARY KEY ({}));'.format(key)
query += query_seg
print(query)
create_table(name='table_1', columns=['first_col', 'second_col'], datatype=['str', 'float'], key='first_col') |
chave_certa = 2002
while True:
senha = int(input())
if senha == chave_certa:
print("Acesso Permitido")
break
print("Senha Invalida") | chave_certa = 2002
while True:
senha = int(input())
if senha == chave_certa:
print('Acesso Permitido')
break
print('Senha Invalida') |
#!/usr/bin/python3
def max_integer(my_list=[]):
my_list.sort()
if my_list:
return my_list[len(my_list) - 1]
else:
return None
| def max_integer(my_list=[]):
my_list.sort()
if my_list:
return my_list[len(my_list) - 1]
else:
return None |
class Jogador():
def __init__(self):
self.cartas = []
self.soma = 0
self.turnos = 0 | class Jogador:
def __init__(self):
self.cartas = []
self.soma = 0
self.turnos = 0 |
feature_dict = {
'VMAF_feature': ['vif_scale0', 'vif_scale1', 'vif_scale2', 'vif_scale3', 'adm2', 'motion', ],
}
model_type = "LIBSVMNUSVR"
model_param_dict = {
# ==== preprocess: normalize each feature ==== #
# 'norm_type': 'none', # default: do nothing
'norm_type': 'clip_0to1', # rescale to within [0, 1]
# 'norm_type': 'clip_minus1to1', # rescale to within [-1, 1]
# 'norm_type': 'normalize', # rescale to mean zero and std one
# ==== postprocess: clip final quality score ==== #
# 'score_clip': None, # default: do nothing
'score_clip': [0.0, 100.0], # clip to within [0, 100]
# ==== libsvmnusvr parameters ==== #
# 'gamma': 0.0, # default
'gamma': 0.05, # vmafv3
# 'C': 1.0, # default
'C': 4.0, # vmafv3
# 'nu': 0.5, # default
'nu': 0.9, # vmafv3
}
| feature_dict = {'VMAF_feature': ['vif_scale0', 'vif_scale1', 'vif_scale2', 'vif_scale3', 'adm2', 'motion']}
model_type = 'LIBSVMNUSVR'
model_param_dict = {'norm_type': 'clip_0to1', 'score_clip': [0.0, 100.0], 'gamma': 0.05, 'C': 4.0, 'nu': 0.9} |
class Operation(dict):
def __init__(self, operationType=None, operationName=None, listOfInputMessages=None, listOfOutputMessages=None):
dict.__init__(self, operationType=operationType, operationName=operationName
, listOfInputMessages=listOfInputMessages, listOfOutputMessages=listOfOutputMessages)
| class Operation(dict):
def __init__(self, operationType=None, operationName=None, listOfInputMessages=None, listOfOutputMessages=None):
dict.__init__(self, operationType=operationType, operationName=operationName, listOfInputMessages=listOfInputMessages, listOfOutputMessages=listOfOutputMessages) |
'''(Partitioning Arrays: Dutch Flag [M]): Dutch National Flag Problem:
Given an array of integers A and a pivot, rearrange A in the following order:
[Elements less than pivot, elements equal to pivot, elements greater than pivot]
For example, if A = [5,2,4,4,6,4,4,3] and pivot = 4 -> result = [3,2,4,4,4,4,6,5]'''
def swap(arr, i, j):
arr[i], arr[j] = arr[j], arr[i]
def dutch_flag(arr, pivot):
low_bound = 0
high_bound = len(arr) - 1
i = 0
while i <= high_bound:
if arr[i] < pivot:
swap(arr, i, low_bound)
low_bound += 1
i += 1
elif arr[i] > pivot:
swap(arr, i, high_bound)
# don't increment i here bc high is sorted
high_bound -= 1
else:
i += 1
return arr
print(dutch_flag([5,2,4,4,6,4,4,3], 4))
# Output: [3, 2, 4, 4, 4, 4, 6, 5]
# Time: O(n) Space: O(1)
| """(Partitioning Arrays: Dutch Flag [M]): Dutch National Flag Problem:
Given an array of integers A and a pivot, rearrange A in the following order:
[Elements less than pivot, elements equal to pivot, elements greater than pivot]
For example, if A = [5,2,4,4,6,4,4,3] and pivot = 4 -> result = [3,2,4,4,4,4,6,5]"""
def swap(arr, i, j):
(arr[i], arr[j]) = (arr[j], arr[i])
def dutch_flag(arr, pivot):
low_bound = 0
high_bound = len(arr) - 1
i = 0
while i <= high_bound:
if arr[i] < pivot:
swap(arr, i, low_bound)
low_bound += 1
i += 1
elif arr[i] > pivot:
swap(arr, i, high_bound)
high_bound -= 1
else:
i += 1
return arr
print(dutch_flag([5, 2, 4, 4, 6, 4, 4, 3], 4)) |
# copying a large dictionary
a = {i: 2 * i for i in range(1000)}
b = a.copy()
for i in range(1000):
print(i, b[i])
print(len(b))
| a = {i: 2 * i for i in range(1000)}
b = a.copy()
for i in range(1000):
print(i, b[i])
print(len(b)) |
class Parser():
def __init__(self, file):
content = [line.strip() for line in file.readlines()]
content = [line.split('//')[0].strip() for line in content if not line.startswith('//') and line is not '']
self.source_code: list = content
self.current_command: int = 0
def _command(self):
return self.source_code[self.current_command]
def has_more_commands(self):
if self.current_command < len(self.source_code):
return True
return False
def advance(self):
if self.has_more_commands():
self.current_command += 1
def command_type(self):
if self._command().startswith('@'):
return 'A_COMMAND'
if self._command().startswith('('):
return 'L_COMMAND'
return 'C_COMMAND'
def symbol(self):
command = self._command()
if command.startswith('@'):
return command.split('@')[1]
return command[command.find('(') + 1: command.find(')')]
def dest(self):
command = self._command()
if command.find('=') is -1:
return ''
return command[0:command.find('=')]
def comp(self):
command = self._command()
if command.find('=') is -1 and command.find(';') is -1:
return command
if command.find('=') is -1 and command.find(';') is not -1:
return command[:command.find(';')]
if command.find('=') is not -1 and command.find(';') is -1:
return command[command.find('=') + 1:]
return command[command.find('=') + 1:command.find(';')]
def jump(self):
command = self._command()
if command.find(';') is -1:
return ''
return command[command.find(';') + 1:]
| class Parser:
def __init__(self, file):
content = [line.strip() for line in file.readlines()]
content = [line.split('//')[0].strip() for line in content if not line.startswith('//') and line is not '']
self.source_code: list = content
self.current_command: int = 0
def _command(self):
return self.source_code[self.current_command]
def has_more_commands(self):
if self.current_command < len(self.source_code):
return True
return False
def advance(self):
if self.has_more_commands():
self.current_command += 1
def command_type(self):
if self._command().startswith('@'):
return 'A_COMMAND'
if self._command().startswith('('):
return 'L_COMMAND'
return 'C_COMMAND'
def symbol(self):
command = self._command()
if command.startswith('@'):
return command.split('@')[1]
return command[command.find('(') + 1:command.find(')')]
def dest(self):
command = self._command()
if command.find('=') is -1:
return ''
return command[0:command.find('=')]
def comp(self):
command = self._command()
if command.find('=') is -1 and command.find(';') is -1:
return command
if command.find('=') is -1 and command.find(';') is not -1:
return command[:command.find(';')]
if command.find('=') is not -1 and command.find(';') is -1:
return command[command.find('=') + 1:]
return command[command.find('=') + 1:command.find(';')]
def jump(self):
command = self._command()
if command.find(';') is -1:
return ''
return command[command.find(';') + 1:] |
pkgname = "ninja"
pkgver = "1.10.2"
pkgrel = 0
hostmakedepends = ["python"]
pkgdesc = "Small build system with a focus on speed"
maintainer = "q66 <q66@chimera-linux.org>"
license = "Apache-2.0"
url = "https://ninja-build.org"
sources = [f"https://github.com/ninja-build/ninja/archive/v{pkgver}.tar.gz"]
sha256 = ["ce35865411f0490368a8fc383f29071de6690cbadc27704734978221f25e2bed"]
options = ["!check"]
def do_configure(self):
self.do("python", ["configure.py", "--bootstrap"])
def do_build(self):
self.do("python", ["configure.py"])
# FIXME: docs, completions
def do_install(self):
self.install_bin("ninja")
| pkgname = 'ninja'
pkgver = '1.10.2'
pkgrel = 0
hostmakedepends = ['python']
pkgdesc = 'Small build system with a focus on speed'
maintainer = 'q66 <q66@chimera-linux.org>'
license = 'Apache-2.0'
url = 'https://ninja-build.org'
sources = [f'https://github.com/ninja-build/ninja/archive/v{pkgver}.tar.gz']
sha256 = ['ce35865411f0490368a8fc383f29071de6690cbadc27704734978221f25e2bed']
options = ['!check']
def do_configure(self):
self.do('python', ['configure.py', '--bootstrap'])
def do_build(self):
self.do('python', ['configure.py'])
def do_install(self):
self.install_bin('ninja') |
fonts = AllFonts()
for font in fonts:
min = 0
max = 0
for glyph in font:
if glyph.bounds != None:
if glyph.bounds[1] < min:
min = glyph.bounds[1]
if glyph.bounds[3] > max:
max = glyph.bounds[3]
print(min,max)
capSpace = max - font['H'][3]
if capSpace > min:
min = -capSpace
else:
max = font['H'][3] + abs(min)
font.info.openTypeOS2TypoAscender = max
font.info.openTypeOS2TypoDescender = min
font.info.openTypeOS2TypoLineGap = 0
font.info.openTypeOS2WinAscent = max
font.info.openTypeOS2WinDescent = abs(min)
font.info.openTypeHheaAscender = max
font.info.openTypeHheaDescender = min
font.info.openTypeHheaLineGap = 0
| fonts = all_fonts()
for font in fonts:
min = 0
max = 0
for glyph in font:
if glyph.bounds != None:
if glyph.bounds[1] < min:
min = glyph.bounds[1]
if glyph.bounds[3] > max:
max = glyph.bounds[3]
print(min, max)
cap_space = max - font['H'][3]
if capSpace > min:
min = -capSpace
else:
max = font['H'][3] + abs(min)
font.info.openTypeOS2TypoAscender = max
font.info.openTypeOS2TypoDescender = min
font.info.openTypeOS2TypoLineGap = 0
font.info.openTypeOS2WinAscent = max
font.info.openTypeOS2WinDescent = abs(min)
font.info.openTypeHheaAscender = max
font.info.openTypeHheaDescender = min
font.info.openTypeHheaLineGap = 0 |
def palindrome():
largest = 0
for a in range(999, 99, -1):
for b in range(999, 99, -1):
# use an awesome extended slice to reverse string
# https://docs.python.org/2/whatsnew/2.3.html#extended-slices
# print(a, b, a*b, str(a*b)[::-1])
if a*b == int(str(a*b)[::-1]) and a*b > largest:
largest = a*b
return largest
print(palindrome())
| def palindrome():
largest = 0
for a in range(999, 99, -1):
for b in range(999, 99, -1):
if a * b == int(str(a * b)[::-1]) and a * b > largest:
largest = a * b
return largest
print(palindrome()) |
class MaxHeap:
def __init__(self):
self.data = []
def root_node(self):
return self.data[0]
def last_node(self):
return self.data[-1]
def left_child_index(self, index):
return 2 * index + 1
def right_child_index(self, index):
return 2 * index + 2
def parent_index(self, index):
return (index - 1) // 2
def insert(self, value):
self.data.append(value)
ci = len(self.data) - 1
pi = self.parent_index(ci)
while pi >= 0 and self.data[pi] < self.data[ci]:
self.data[pi], self.data[ci] = self.data[ci], self.data[pi]
ci = pi
pi = self.parent_index(ci)
def delete(self):
last = self.data.pop()
self.data[0] = last
ci = 0
while self.has_larger_child(ci):
gi = self.calculate_larger_child_index(ci)
self.data[gi], self.data[ci] = self.data[ci], self.data[gi]
ci = gi
def has_larger_child(self, index):
li = self.left_child_index(index)
ri = self.right_child_index(index)
if li < len(self.data) and self.data[li] > self.data[index]:
return True
if ri < len(self.data) and self.data[ri] > self.data[index]:
return True
return False
def calculate_larger_child_index(self, index):
li = self.left_child_index(index)
ri = self.right_child_index(index)
if ri >= len(self.data):
return li
if self.data[li] > self.data[ri]:
return li
return ri
def test_heap_insert():
heap = MaxHeap()
heap.insert(5)
assert 5 == heap.root_node()
heap.insert(8)
assert 8 == heap.root_node()
heap.insert(7)
assert 8 == heap.root_node()
heap.insert(1)
assert 8 == heap.root_node()
heap.insert(9)
assert 9 == heap.root_node()
heap.insert(7)
assert 9 == heap.root_node()
def test_heap_delete():
heap = MaxHeap()
heap.insert(5)
heap.insert(8)
heap.delete()
assert 5 == heap.root_node()
heap.insert(1)
heap.insert(9)
heap.insert(6)
heap.insert(5)
heap.insert(8)
heap.delete()
assert 8 == heap.root_node()
heap.delete()
assert 6 == heap.root_node()
heap.delete()
assert 5 == heap.root_node()
heap.delete()
assert 5 == heap.root_node()
heap.delete()
assert 1 == heap.root_node()
| class Maxheap:
def __init__(self):
self.data = []
def root_node(self):
return self.data[0]
def last_node(self):
return self.data[-1]
def left_child_index(self, index):
return 2 * index + 1
def right_child_index(self, index):
return 2 * index + 2
def parent_index(self, index):
return (index - 1) // 2
def insert(self, value):
self.data.append(value)
ci = len(self.data) - 1
pi = self.parent_index(ci)
while pi >= 0 and self.data[pi] < self.data[ci]:
(self.data[pi], self.data[ci]) = (self.data[ci], self.data[pi])
ci = pi
pi = self.parent_index(ci)
def delete(self):
last = self.data.pop()
self.data[0] = last
ci = 0
while self.has_larger_child(ci):
gi = self.calculate_larger_child_index(ci)
(self.data[gi], self.data[ci]) = (self.data[ci], self.data[gi])
ci = gi
def has_larger_child(self, index):
li = self.left_child_index(index)
ri = self.right_child_index(index)
if li < len(self.data) and self.data[li] > self.data[index]:
return True
if ri < len(self.data) and self.data[ri] > self.data[index]:
return True
return False
def calculate_larger_child_index(self, index):
li = self.left_child_index(index)
ri = self.right_child_index(index)
if ri >= len(self.data):
return li
if self.data[li] > self.data[ri]:
return li
return ri
def test_heap_insert():
heap = max_heap()
heap.insert(5)
assert 5 == heap.root_node()
heap.insert(8)
assert 8 == heap.root_node()
heap.insert(7)
assert 8 == heap.root_node()
heap.insert(1)
assert 8 == heap.root_node()
heap.insert(9)
assert 9 == heap.root_node()
heap.insert(7)
assert 9 == heap.root_node()
def test_heap_delete():
heap = max_heap()
heap.insert(5)
heap.insert(8)
heap.delete()
assert 5 == heap.root_node()
heap.insert(1)
heap.insert(9)
heap.insert(6)
heap.insert(5)
heap.insert(8)
heap.delete()
assert 8 == heap.root_node()
heap.delete()
assert 6 == heap.root_node()
heap.delete()
assert 5 == heap.root_node()
heap.delete()
assert 5 == heap.root_node()
heap.delete()
assert 1 == heap.root_node() |
wt9_2_10 = {'192.168.122.110': [5.7108, 8.5399, 6.3325, 4.9405, 4.3064, 5.4196, 4.7852, 4.852, 5.5112, 6.0472, 5.987, 5.9324, 5.9693, 5.9885, 5.9521, 5.9517, 5.9214, 5.8912, 6.1639, 6.1483, 6.1269, 6.1008, 6.0684, 6.0465, 6.0183, 5.9975, 6.094, 6.0673, 6.0838, 6.2445, 6.2204, 6.1954, 6.1722, 6.1532, 6.1334, 6.1211, 6.1237, 6.1116, 6.089, 6.0722, 6.1883, 6.1715, 6.1594, 6.2701, 6.2608, 6.2431, 6.2471, 6.3542, 6.3474, 6.3423, 6.4234, 6.5076, 6.4964, 6.4836, 6.4668, 6.4684, 6.5545, 6.6879, 6.6635, 6.7345, 6.7334, 6.8101, 6.8736, 6.8514, 6.9151, 6.8898, 7.0235, 7.0072, 7.0612, 7.0408, 7.024, 7.1535, 7.207, 7.1855, 7.1631, 7.1386, 7.1175, 7.1025, 7.0921, 7.076, 7.0667, 7.0588, 7.0598, 7.1343, 7.2554, 7.238, 7.2262, 7.2233, 7.2029, 7.1868, 7.1653, 7.1531, 7.1412, 7.1319, 7.1164, 7.1124, 7.0971, 7.1373, 7.1258, 7.1092, 7.0918, 7.0811, 7.0797, 7.153, 7.1363, 7.1418, 7.131, 7.1157, 7.0995, 7.0877, 7.0733, 7.0578, 7.1001, 7.0886, 7.0744, 7.1076, 7.1431, 7.1283, 7.1208, 7.1518, 7.181, 7.1692, 7.1575, 7.2381, 7.2246, 7.2552, 7.3301, 7.3176, 7.308, 7.2967, 7.3259, 7.3114, 7.3161, 7.3003, 7.2891, 7.2828, 7.2713, 7.2995, 7.3269, 7.3127, 7.3377, 7.3315, 7.3881, 7.3784, 7.3641, 7.3503, 7.3376, 7.326, 7.3181, 7.3395, 7.3256, 7.3123, 7.3013, 7.2952, 7.2846, 7.2793, 7.3028, 7.2957, 7.2836, 7.2735, 7.2869, 7.2785, 7.269, 7.2312, 7.2189, 7.2098, 7.2061, 7.2274, 7.2491, 7.2392, 7.3586, 7.3542, 7.344, 7.3732, 7.3629, 7.3538, 7.3431, 7.336, 7.3275, 7.3466, 7.3407, 7.3326, 7.3212, 7.3204, 7.3107, 7.3319, 7.321, 7.311, 7.3122, 7.3297, 7.3213, 7.3406, 7.3589, 7.3524, 7.3455, 7.3401, 7.3633, 7.4128, 7.4055, 7.4011, 7.3916, 7.3913, 7.3812, 7.3983, 7.3989, 7.3893, 7.4161, 7.4678, 7.4581, 7.4535, 7.4558, 7.4252, 7.3932, 7.4092, 7.4035, 7.4209, 7.4113, 7.4022, 7.3926, 7.384, 7.3758, 7.3703, 7.3673, 7.3602, 7.3517, 7.3472, 7.3387, 7.33, 7.3452, 7.3381, 7.3324, 7.306, 7.3019, 7.3166, 7.3101, 7.3046, 7.3185, 7.3147, 7.3059, 7.2979, 7.2897, 7.2842, 7.2804, 7.2727, 7.287, 7.3022, 7.296, 7.3099, 7.3239, 7.3163, 7.3302, 7.3247, 7.3166, 7.33, 7.3217, 7.3143, 7.328, 7.3225, 7.3402, 7.3329, 7.3319, 7.3249, 7.3181, 7.3153, 7.2902, 7.3066, 7.3015, 7.2956, 7.2714, 7.3347, 7.3476, 7.3424, 7.3347, 7.3273, 7.3398, 7.3339, 7.3265, 7.3223, 7.3169, 7.3122, 7.3089, 7.3216, 7.3342, 7.3275, 7.328, 7.3605, 7.3569, 7.3526, 7.3461, 7.3715, 7.372, 7.3652, 7.3589, 7.3552, 7.3789, 7.3723, 7.3654, 7.3594, 7.3715, 7.3834, 7.3607, 7.3557, 7.3527, 7.3656, 7.3599, 7.3558, 7.3503, 7.3609, 7.3544, 7.3513, 7.3481, 7.3418, 7.335, 7.3286, 7.3243, 7.3346, 7.3448, 7.3568, 7.3506, 7.3485, 7.348, 7.3582, 7.3518, 7.3617, 7.3587, 7.3692, 7.3627, 7.372, 7.3657, 7.3617, 7.3574, 7.3687, 7.3629, 7.374, 7.3711, 7.3646, 7.3617, 7.3561, 7.3656, 7.3772, 7.3875, 7.3817, 7.3762, 7.3735, 7.3681, 7.365, 7.359, 7.3545, 7.3486, 7.3605, 7.3569, 7.3513, 7.3461, 7.3551, 7.3499, 7.3445, 7.3404, 7.3219, 7.3321, 7.3437, 7.3404, 7.335, 7.3294, 7.3239, 7.3339, 7.3433, 7.3524, 7.3755, 7.3697, 7.3652, 7.3598, 7.3573, 7.354, 7.3625, 7.3608, 7.3698, 7.3647, 7.3608, 7.356, 7.3511, 7.3477, 7.348, 7.3428, 7.3384, 7.4033, 7.3998, 7.4083, 7.4056, 7.4017, 7.4124, 7.4209, 7.4178, 7.4165, 7.4112, 7.4062, 7.4012, 7.3992, 7.3939, 7.4029, 7.4001, 7.3958, 7.4045, 7.4017, 7.3968, 7.3931, 7.3877, 7.3957, 7.3943, 7.3914, 7.4003, 7.4491, 7.4573, 7.4522, 7.4495, 7.4447, 7.4519, 7.4467, 7.4426, 7.4374, 7.4352, 7.4307, 7.4167, 7.4135, 7.3978, 7.418, 7.4143, 7.4231, 7.4359, 7.4449, 7.4455, 7.4301, 7.4387, 7.434, 7.4326, 7.4283, 7.4244, 7.4404, 7.4259, 7.4247, 7.4206, 7.4315, 7.4288, 7.4361, 7.448, 7.4445, 7.4485, 7.4439, 7.44, 7.436, 7.4315, 7.4267, 7.4225, 7.4181, 7.4137, 7.4093, 7.4054, 7.4011, 7.4085, 7.4042, 7.3996, 7.3954, 7.3914, 7.3914, 7.3889, 7.3958, 7.3914, 7.387, 7.3826, 7.3788, 7.3871, 7.373, 7.3701, 7.3584, 7.3578, 7.3907, 7.3875, 7.383, 7.3807, 7.3774, 7.3739, 7.3697, 7.3658, 7.362, 7.3682, 7.365, 7.3609, 7.3674, 7.3636, 7.3597, 7.3562, 7.353, 7.3497, 7.3459, 7.3436, 7.3419, 7.3383, 7.3363, 7.3339, 7.3316, 7.3293, 7.3168, 7.3135, 7.3112, 7.3289, 7.3351, 7.3431, 7.3501, 7.3583, 7.3544, 7.3528, 7.36, 7.3674, 7.3634, 7.3595, 7.3663, 7.3732, 7.3698, 7.3664, 7.3749, 7.3829, 7.3797, 7.3783, 7.4409, 7.4989, 7.525, 7.532, 7.5283, 7.5351, 7.5321, 7.5287, 7.5247, 7.5219, 7.5394, 7.5371, 7.5332, 7.5209, 7.517, 7.5131, 7.5095, 7.5156, 7.512, 7.5082, 7.5042, 7.5003, 7.5071, 7.5036, 7.4996, 7.4961, 7.502, 7.4991, 7.487, 7.493, 7.4994, 7.5001, 7.5059, 7.5116, 7.5082, 7.506, 7.5129, 7.5106, 7.5074, 7.5041, 7.5025, 7.5003, 7.498, 7.4956, 7.5035, 7.501, 7.5078, 7.5044, 7.501, 7.4975, 7.4943, 7.5466, 7.5524, 7.5493, 7.5458, 7.5611, 7.5577, 7.555, 7.553, 7.559, 7.5559, 7.5526, 7.5592, 7.5558, 7.5535, 7.5514, 7.548, 7.5444, 7.5415, 7.5379, 7.5342, 7.532, 7.5287, 7.5253, 7.5225, 7.529, 7.527, 7.5325, 7.529, 7.5262, 7.5316, 7.5542, 7.5511, 7.5483, 7.6068, 7.6034, 7.6078, 7.6216, 7.6177, 7.6142, 7.6117, 7.608, 7.6058, 7.6037, 7.609, 7.6146, 7.6204, 7.6184, 7.6236, 7.6199, 7.625, 7.6216, 7.6185, 7.6167, 7.6131, 7.6103, 7.607, 7.6118, 7.6083, 7.6057, 7.6023, 7.5986, 7.5963, 7.594, 7.5919, 7.5897, 7.5864, 7.583, 7.5803, 7.5853, 7.5819, 7.5865, 7.5831, 7.5812, 7.5777, 7.5827, 7.5794, 7.5758, 7.5732, 7.57, 7.5744, 7.5788, 7.5832, 7.5812, 7.5876, 7.5842, 7.5888, 7.5933, 7.5979, 7.6028, 7.5996, 7.6046, 7.6094, 7.6064, 7.6045, 7.6053, 7.644, 7.6413, 7.6379, 7.6344, 7.6375, 7.6368, 7.6339, 7.6306, 7.6275, 7.6284, 7.6284, 7.6274, 7.6348, 7.6337, 7.6312, 7.6354, 7.6319, 7.6285, 7.626, 7.6247, 7.6212, 7.619, 7.6236, 7.6218, 7.6196, 7.6244, 7.6158, 7.6169, 7.6136, 7.624, 7.6364, 7.6333, 7.6315, 7.6362, 7.6331, 7.6319, 7.6286, 7.626, 7.6229, 7.6205, 7.6173, 7.6142, 7.6109, 7.6087, 7.6054, 7.603, 7.6017, 7.5985, 7.597, 7.6015, 7.5994, 7.6039, 7.6009, 7.598, 7.5982, 7.5951, 7.5922, 7.5893, 7.5862, 7.5833, 7.5804, 7.5773, 7.5747, 7.5718, 7.5704, 7.575, 7.5727, 7.5722, 7.5632, 7.5602, 7.5577, 7.5696, 7.5669, 7.5712, 7.5758, 7.573, 7.5778, 7.5816, 7.5854, 7.5936, 7.6007, 7.5993, 7.5973, 7.5944, 7.5852, 7.585, 7.582, 7.5895, 7.5868, 7.5839, 7.5816, 7.5788, 7.5761, 7.5744, 7.5718, 7.569, 7.5663, 7.5635, 7.5606, 7.5579, 7.5552, 7.5537, 7.5519, 7.549, 7.5464, 7.5507, 7.5551, 7.5524, 7.5572, 7.5611, 7.5596, 7.5569, 7.561, 7.558, 7.5623, 7.5596, 7.558, 7.5623, 7.5597, 7.5641, 7.5613, 7.5586, 7.556, 7.553, 7.5505, 7.5522, 7.5564, 7.5604, 7.5584, 7.5628, 7.5606, 7.5579, 7.5625, 7.554, 7.552, 7.5495, 7.547, 7.5449, 7.5494, 7.5467, 7.5452, 7.5377, 7.5354, 7.5395, 7.543, 7.547, 7.551, 7.5489, 7.5463, 7.5445, 7.5484, 7.5458, 7.5497, 7.547, 7.551, 7.5495, 7.547, 7.5445, 7.5427, 7.5405, 7.5378, 7.542, 7.5463, 7.5503, 7.5481, 7.5459, 7.5431, 7.5412, 7.5386, 7.5364, 7.5338, 7.5376, 7.5416, 7.5403, 7.5377, 7.5358, 7.5393, 7.5376, 7.5414, 7.539, 7.5376, 7.5357, 7.5331, 7.5306, 7.5346, 7.5372, 7.5358, 7.5332, 7.5372, 7.5394, 7.5433, 7.5407, 7.5384, 7.5369, 7.5352, 7.5333, 7.5371, 7.5357, 7.5332, 7.5309, 7.5346, 7.5335, 7.5326, 7.5365, 7.5344, 7.5382, 7.5356, 7.5337, 7.5375, 7.5351, 7.5327, 7.5387, 7.5374, 7.5349, 7.5326, 7.5364, 7.534, 7.5378, 7.5419, 7.5453, 7.5436, 7.5419, 7.5396, 7.5379, 7.5354, 7.5332, 7.5334, 7.5613, 7.5589, 7.5564, 7.5539, 7.5574, 7.5615, 7.5603, 7.5581, 7.5856, 7.5832, 7.5827, 7.5809, 7.5791, 7.5767, 7.5744, 7.5721, 7.5724, 7.5699, 7.5676, 7.5653, 7.5687, 7.5722, 7.5699, 7.5692, 7.5727, 7.571, 7.5688, 7.5664, 7.564, 7.5625, 7.5694, 7.5728, 7.5765, 7.5748, 7.5785, 7.5768, 7.5781, 7.5813, 7.5794, 7.5836, 7.5817, 7.5794, 7.5827, 7.5864, 7.584, 7.5824, 7.5802, 7.5786, 7.5772, 7.5754, 7.5795, 7.5826, 7.5815, 7.579, 7.5718, 7.5756, 7.5734, 7.5771, 7.5746, 7.5722, 7.5699, 7.5677, 7.5659, 7.5639, 7.5618, 7.5654, 7.5632, 7.561, 7.5589, 7.5566, 7.5601, 7.5582, 7.5566, 7.5542, 7.5529, 7.5516, 7.5494, 7.5475, 7.5457, 7.5436, 7.5472, 7.5505, 7.5484, 7.5423, 7.5472, 7.5462, 7.5394, 7.5377, 7.5385, 7.5422, 7.547, 7.5503, 7.548, 7.5463, 7.5462, 7.5439, 7.5423, 7.5406, 7.5345, 7.5329, 7.5308, 7.5286, 7.5273, 7.5306, 7.5361, 7.5347, 7.5404, 7.5393, 7.5376, 7.5356, 7.5363, 7.5395, 7.5426, 7.5411, 7.5391, 7.5375, 7.5364, 7.5344, 7.5323, 7.5356, 7.5386, 7.537, 7.5401, 7.5386, 7.566, 7.5638, 7.5724, 7.5807, 7.5785, 7.5719, 7.5709, 7.5703, 7.5792, 7.5983, 7.5964, 7.5946, 7.5941, 7.5937, 7.5924, 7.5903, 7.5887, 7.5985, 7.5977, 7.5962, 7.5948, 7.5936, 7.5914, 7.5894, 7.5926, 7.5906, 7.5942, 7.5924, 7.5906, 7.5897, 7.5889, 7.5868, 7.5855, 7.5884, 7.5863, 7.5844, 7.5829, 7.5859, 7.5888, 7.5878, 7.5857, 7.5887, 7.5872, 7.5851, 7.5881, 7.5859, 7.5841, 7.5824, 7.5812, 7.5843, 7.5829, 7.5809, 7.5935, 7.5918, 7.59, 7.5885, 7.5969, 7.596, 7.5989, 7.6069, 7.6052, 7.6033, 7.6059, 7.6045, 7.6059, 7.6038, 7.602, 7.601, 7.599, 7.5975, 7.596, 7.5947, 7.593, 7.5921, 7.5952, 7.5936, 7.5918, 7.5953, 7.5944, 7.5933, 7.5917, 7.591, 7.5898, 7.5878, 7.586, 7.5844, 7.5825, 7.5814, 7.5841, 7.5841, 7.5871, 7.5851, 7.5831, 7.5812, 7.5791, 7.582, 7.5816, 7.5845, 7.587, 7.5813, 7.5799, 7.583, 7.581, 7.5836, 7.5816, 7.5861, 7.5845, 7.6161, 7.6152, 7.6133, 7.6113, 7.6094, 7.6077, 7.6069, 7.6058, 7.6038, 7.6066, 7.6046, 7.6032, 7.6017, 7.6003, 7.5988, 7.5975, 7.5958, 7.594, 7.5921, 7.595, 7.5931, 7.5912, 7.5907, 7.5893, 7.5875, 7.5856, 7.5838, 7.582, 7.58, 7.5782, 7.5765, 7.5747, 7.5727, 7.571, 7.569, 7.572, 7.5702, 7.5784, 7.5765, 7.5902, 7.5931, 7.5919, 7.5945, 7.5925, 7.5906, 7.5892, 7.5875, 7.5857, 7.5841, 7.587, 7.5852, 7.5838, 7.5825, 7.5855, 7.5835, 7.5818, 7.5801, 7.5785, 7.5809, 7.579, 7.5781, 7.5771, 7.5766, 7.5764, 7.5745, 7.5726, 7.5714, 7.5696, 7.5723, 7.5707, 7.5733, 7.5761, 7.5742, 7.5725, 7.5706, 7.5733, 7.5718, 7.5749, 7.5737, 7.5729, 7.5711, 7.5829, 7.5819, 7.5801, 7.5783, 7.5771, 7.5761, 7.5787, 7.5769, 7.5751, 7.5739, 7.5765, 7.5793, 7.5782, 7.5816, 7.5801, 7.5786, 7.5774, 7.5765, 7.5749, 7.5732, 7.5713, 7.5695, 7.5684, 7.567, 7.5699, 7.5728, 7.5753, 7.5742, 7.5725, 7.5736, 7.5718, 7.5709, 7.5658, 7.5641, 7.567, 7.5653, 7.564, 7.5623, 7.5653, 7.5677, 7.5704, 7.5695, 7.5685, 7.5676, 7.5705, 7.569, 7.5685, 7.5683, 7.5665, 7.5654, 7.5637, 7.5625, 7.5664, 7.5617, 7.5601, 7.5627, 7.561, 7.5593, 7.5595, 7.5582, 7.5574, 7.5687, 7.5671, 7.567, 7.5653, 7.5685, 7.5674, 7.5658, 7.564, 7.5622, 7.5612, 7.56, 7.559, 7.5539, 7.5532, 7.5533, 7.5523, 7.5546, 7.5533, 7.5517, 7.5505, 7.5531, 7.5561, 7.5544, 7.553, 7.5513, 7.5497, 7.5491, 7.5529, 7.5518, 7.5509, 7.5494, 7.5521, 7.5547, 7.5538, 7.5527, 7.551, 7.5568, 7.5559, 7.5587, 7.5573, 7.5564, 7.5592, 7.5575, 7.5598, 7.558, 7.5564, 7.5548, 7.5532, 7.5558, 7.5544, 7.5528, 7.5512, 7.5496, 7.5445, 7.5429, 7.5466, 7.5452, 7.5476, 7.5466, 7.5497, 7.5448, 7.5435, 7.5418, 7.5443, 7.5431, 7.5416, 7.5444, 7.5428, 7.5413, 7.5397, 7.5381, 7.5364, 7.5387, 7.537, 7.5354, 7.5339, 7.5363, 7.5347, 7.5371, 7.5362, 7.5347, 7.5369, 7.5366, 7.5352, 7.5342, 7.5333, 7.5356, 7.5345, 7.5337, 7.5328, 7.5352, 7.5376, 7.5359, 7.5346, 7.533, 7.5321, 7.5304, 7.5289, 7.5273, 7.5262, 7.5253, 7.5252, 7.5276, 7.5267, 7.5251, 7.5235, 7.5259, 7.5243, 7.5227, 7.5215, 7.5204, 7.5225, 7.5209, 7.5205, 7.5191, 7.515, 7.5141, 7.5094, 7.5119, 7.5114, 7.51, 7.5084, 7.5085, 7.5073, 7.5058, 7.5042, 7.5027, 7.5011, 7.4996, 7.4998, 7.4997, 7.5019, 7.5005, 7.4996, 7.5, 7.5022, 7.5014, 7.5, 7.4989, 7.5011, 7.5, 7.4985, 7.4973, 7.4962, 7.4951, 7.4937, 7.4963, 7.4987, 7.4972, 7.4996, 7.4987, 7.5012, 7.5036, 7.5098, 7.5092, 7.5077, 7.5029, 7.5018, 7.5008, 7.4998, 7.5028, 7.5022, 7.5049, 7.5037, 7.5032, 7.5056, 7.5045, 7.5041, 7.5033, 7.5055, 7.5077, 7.5062, 7.5049, 7.5034, 7.5057, 7.5087, 7.5072, 7.5057, 7.5042, 7.5033, 7.5019, 7.5013, 7.4998, 7.502, 7.5006, 7.4999, 7.499, 7.5015, 7.5, 7.4986, 7.5008, 7.5001, 7.4986, 7.5009, 7.4998, 7.4986, 7.5005, 7.5029, 7.499, 7.4975, 7.4961, 7.4951, 7.4941, 7.4934, 7.4926, 7.4917, 7.494, 7.493, 7.4885, 7.4906, 7.4895, 7.4883, 7.4907, 7.4899, 7.4891, 7.4883, 7.4906, 7.4892, 7.4912, 7.4933, 7.4926, 7.4911, 7.4901, 7.4927, 7.4953, 7.4941, 7.493, 7.4917, 7.4904, 7.4889, 7.488, 7.4872, 7.4894, 7.4941, 7.4963, 7.4948, 7.494, 7.495, 7.4941, 7.4926, 7.4914, 7.49, 7.4888, 7.488, 7.4901, 7.4922, 7.4915, 7.4904, 7.4893, 7.4882, 7.4871, 7.4861, 7.4849, 7.4837, 7.4822, 7.4811, 7.4802, 7.4788, 7.4809, 7.4799, 7.4878, 7.4901, 7.4894, 7.488, 7.4903, 7.4925, 7.4945, 7.4932, 7.499, 7.4976, 7.4968, 7.4957, 7.4945, 7.4972, 7.4961, 7.4984, 7.4971, 7.4962, 7.4948, 7.4971, 7.4959, 7.4948, 7.4934, 7.4923, 7.4908, 7.4894, 7.4885, 7.4921, 7.4908, 7.4895, 7.4917, 7.5003, 7.499, 7.4983, 7.5005, 7.4991, 7.4984, 7.4973, 7.4995, 7.5052, 7.5041, 7.5003, 7.5027, 7.5014, 7.5001, 7.499, 7.4978, 7.5001, 7.4989, 7.5009, 7.4997, 7.4987, 7.4974, 7.4965, 7.4995, 7.4985, 7.4973, 7.4996, 7.4958, 7.4986, 7.5002, 7.499, 7.4984, 7.497, 7.4956, 7.4949, 7.4939, 7.4927, 7.4913, 7.4899, 7.4904, 7.4868, 7.4856, 7.4845, 7.4832, 7.4821, 7.4814, 7.4801, 7.4822, 7.4849, 7.4836, 7.4828, 7.487, 7.4866, 7.4888, 7.4908, 7.4895, 7.4889, 7.4887, 7.4845, 7.4837, 7.4826, 7.4882, 7.4872, 7.4932, 7.4922, 7.4946, 7.4937, 7.4936, 7.4933, 7.4898, 7.4891, 7.4888, 7.4875, 7.4861, 7.4882, 7.4903, 7.4894, 7.4882, 7.487, 7.4857, 7.4884, 7.4874, 7.4863, 7.4852, 7.4848, 7.4836, 7.4828, 7.4815, 7.4837, 7.4855, 7.485, 7.484, 7.486, 7.4878, 7.4868, 7.4861, 7.4849, 7.4844, 7.4862, 7.4852, 7.4842, 7.4861, 7.4848, 7.4842, 7.4831, 7.4824, 7.4812, 7.4807, 7.4832, 7.482, 7.4809, 7.4806, 7.4804, 7.4797, 7.4786, 7.4776, 7.4798, 7.4792, 7.4779, 7.4766, 7.4754, 7.4743, 7.4731, 7.4719, 7.4706, 7.4699, 7.4719, 7.4711, 7.4732, 7.4719, 7.4709, 7.4729, 7.4717, 7.4705, 7.4726, 7.4717, 7.4704, 7.4724, 7.4744, 7.4764, 7.4751, 7.4738, 7.4756, 7.4744, 7.4733, 7.4721, 7.4766, 7.4753, 7.474, 7.4732, 7.4725, 7.4713, 7.4702, 7.4694, 7.4685, 7.4673, 7.4714, 7.4747, 7.4739, 7.4733, 7.4823, 7.4829, 7.4846, 7.4836, 7.4823, 7.4817, 7.4805, 7.4794, 7.4781, 7.4771, 7.481, 7.4833, 7.4851, 7.487, 7.4859, 7.4852, 7.487, 7.4862, 7.488, 7.4867, 7.4856, 7.4848, 7.4869, 7.4858, 7.4877, 7.4867, 7.4886, 7.4876, 7.4901, 7.489, 7.4912, 7.4901, 7.4889, 7.4877, 7.4895, 7.4913, 7.49, 7.4888, 7.4881, 7.4868, 7.4889, 7.4879, 7.4876, 7.4847, 7.4867, 7.4861, 7.4855, 7.4848, 7.4837, 7.4825, 7.4813, 7.4831, 7.4829, 7.4819, 7.4838, 7.4829, 7.482, 7.4814, 7.4803, 7.4791, 7.4839, 7.4827, 7.4818, 7.4808, 7.4798, 7.4816, 7.4834, 7.4822, 7.4811, 7.4831, 7.4852, 7.4899, 7.4891, 7.4854, 7.4844, 7.4862, 7.4853, 7.4846, 7.4834, 7.4829, 7.4817, 7.4813, 7.4801, 7.4823, 7.4812, 7.48, 7.4818, 7.4806, 7.4794, 7.4813, 7.4801, 7.4793, 7.4782, 7.4772, 7.4794, 7.4811, 7.4829, 7.4823, 7.4841, 7.4858, 7.4849, 7.4865, 7.4884, 7.4875, 7.4868, 7.4862, 7.4905, 7.4894, 7.4858, 7.4876, 7.4864, 7.4855, 7.4848, 7.484, 7.4829, 7.4818, 7.4806, 7.4795, 7.4815, 7.4804, 7.4793, 7.4781, 7.4775, 7.4764, 7.4757, 7.4775, 7.4768, 7.4756, 7.4777, 7.4797, 7.4791, 7.476, 7.484, 7.4828, 7.4854, 7.4915, 7.4933, 7.4925, 7.4918, 7.4907, 7.4899, 7.4888, 7.4876, 7.4865, 7.486, 7.4852, 7.4873, 7.4862, 7.4828, 7.4817, 7.4806, 7.4825, 7.4814, 7.4803, 7.4813, 7.4831, 7.4823, 7.4842, 7.4831, 7.4823, 7.4813, 7.4802, 7.4823, 7.4817, 7.4806, 7.4798, 7.4814, 7.4805, 7.4794, 7.4761, 7.4841, 7.4861, 7.485, 7.4839, 7.4836, 7.4828, 7.4825, 7.4841, 7.4834, 7.4823, 7.4817, 7.4805, 7.4794, 7.4783, 7.4772, 7.4792, 7.4809, 7.4801, 7.485, 7.4839, 7.4828, 7.4846, 7.4839, 7.4829, 7.482, 7.4874, 7.4892, 7.4881, 7.4967, 7.4958, 7.4947, 7.4946, 7.4935, 7.4924, 7.4918, 7.4907, 7.4873, 7.4872, 7.489, 7.4889, 7.4913, 7.4908, 7.4898, 7.4888, 7.4879, 7.4868, 7.4857, 7.4851, 7.484, 7.4832, 7.4849, 7.484, 7.4835, 7.483, 7.4819, 7.481, 7.4799, 7.4789, 7.4806, 7.4802, 7.4792, 7.481, 7.4803, 7.4797, 7.4787, 7.4754, 7.4747, 7.4735, 7.4753, 7.4745, 7.4752, 7.4769, 7.4785, 7.4776, 7.4767, 7.4756, 7.4746, 7.4738, 7.4727, 7.4718, 7.4711, 7.4702, 7.4723, 7.472, 7.4711, 7.4763, 7.4764, 7.4734, 7.4793, 7.4811, 7.48, 7.4794, 7.4812, 7.4806, 7.4798, 7.4811, 7.4802, 7.4793, 7.4786, 7.4776, 7.4765, 7.4756, 7.4751, 7.4747, 7.4765, 7.4781, 7.4775, 7.4793, 7.476, 7.4752, 7.4721, 7.4737, 7.4755, 7.4772, 7.4789, 7.4805, 7.4798, 7.4812, 7.4804, 7.4875, 7.4864, 7.4881, 7.4874, 7.4865, 7.4857, 7.4847, 7.4839, 7.4837, 7.486, 7.485, 7.484, 7.483, 7.4825, 7.4792, 7.4759, 7.4753, 7.4743, 7.4738, 7.4755, 7.4751, 7.4743, 7.4732, 7.4722, 7.4716, 7.4731, 7.4726, 7.4721, 7.472, 7.4711, 7.4726, 7.4715, 7.4739, 7.473, 7.4719, 7.4709, 7.4701, 7.4693, 7.466, 7.4685, 7.4684, 7.4673, 7.4664, 7.4654, 7.4644, 7.4613, 7.4629, 7.4623, 7.4613, 7.4608, 7.4612, 7.4628, 7.4643, 7.4636, 7.4626, 7.4616, 7.4606, 7.4595, 7.459, 7.4583, 7.4573, 7.4569, 7.4586, 7.4603, 7.4597, 7.4588, 7.4606, 7.4596, 7.4589, 7.4604, 7.4597, 7.459, 7.4581, 7.4576, 7.457, 7.4585, 7.4578, 7.4594, 7.4584, 7.46, 7.4589, 7.4603, 7.4597, 7.4588, 7.4586, 7.4579, 7.4572, 7.459, 7.4581, 7.4572, 7.4563, 7.4561, 7.4583, 7.4599, 7.4615, 7.4605, 7.4598, 7.4592, 7.4608, 7.4598, 7.4614, 7.4604, 7.462, 7.461, 7.46, 7.4594, 7.4587, 7.4605, 7.4621, 7.4614, 7.4604, 7.4595, 7.4586, 7.4575, 7.4566, 7.4583, 7.4598, 7.4588, 7.4603, 7.4622, 7.4613, 7.4629, 7.4622, 7.4641, 7.4654, 7.4647, 7.4639, 7.4653, 7.4646, 7.4636, 7.4629, 7.462, 7.4615, 7.4614, 7.4604, 7.4595, 7.4585, 7.4575, 7.4569, 7.456, 7.4557, 7.4573, 7.4589, 7.4579, 7.457, 7.4564, 7.4582, 7.4573, 7.4564, 7.4556, 7.4551, 7.4544, 7.4534, 7.4549, 7.4545, 7.4537, 7.4554, 7.4544, 7.4534, 7.4548, 7.454, 7.4533, 7.455, 7.4541, 7.4535, 7.4532, 7.4527, 7.4523, 7.4538, 7.453, 7.4524, 7.4535, 7.4525, 7.4531, 7.4522, 7.4513, 7.4505, 7.4499, 7.4492, 7.4483, 7.4474, 7.4443, 7.4459, 7.4449, 7.4439, 7.4455, 7.447, 7.4461, 7.4452, 7.4445, 7.4435, 7.445, 7.4445, 7.4452, 7.4468, 7.4461, 7.4476, 7.4467, 7.4457, 7.4448, 7.4462, 7.4595, 7.4586, 7.4576, 7.4594, 7.4618, 7.4635, 7.463, 7.4623, 7.4636, 7.4627, 7.4621, 7.4616, 7.4606, 7.46, 7.4595, 7.4586, 7.4578, 7.4592, 7.4588, 7.4582, 7.4577, 7.457, 7.4565, 7.4583, 7.4574, 7.4591, 7.4581, 7.4574, 7.4568, 7.4558, 7.4551, 7.4544, 7.4558, 7.4549, 7.4541, 7.4557, 7.4551, 7.4521, 7.4491, 7.4481, 7.4499, 7.4491, 7.4461, 7.4481, 7.4451, 7.4443, 7.4458, 7.4452, 7.4468, 7.4473, 7.4465, 7.4456, 7.4448, 7.4443, 7.4434, 7.443, 7.4425, 7.4417, 7.4524, 7.4518, 7.4509, 7.4503, 7.4495, 7.4487, 7.448, 7.4476, 7.4489, 7.4504, 7.4497, 7.4491, 7.4482, 7.4473, 7.4464, 7.446, 7.4451, 7.4466, 7.4463, 7.4477, 7.4467, 7.4482, 7.4472, 7.4467, 7.4502, 7.4493, 7.4483, 7.4476, 7.4491, 7.4505, 7.4497, 7.4491, 7.4481, 7.4501, 7.4494, 7.4492, 7.4489, 7.4484, 7.4475, 7.4467, 7.4457, 7.4471, 7.4486, 7.4477, 7.4476, 7.4468, 7.4464, 7.4457, 7.4471, 7.4463, 7.4454, 7.445, 7.4441, 7.4437, 7.4432, 7.4426, 7.4421, 7.4436, 7.4427, 7.4419, 7.441, 7.4403, 7.4398, 7.4391, 7.4382, 7.4378, 7.4371, 7.438, 7.4375, 7.4377, 7.437, 7.4362, 7.4356, 7.4347, 7.4363, 7.4379, 7.4371, 7.4362, 7.4356, 7.435, 7.4366, 7.4382, 7.4387, 7.4387, 7.4379, 7.4432, 7.443, 7.4425, 7.4421, 7.4434, 7.4426, 7.4419, 7.4412, 7.4407, 7.4399, 7.4393, 7.4407, 7.4398, 7.4389, 7.438, 7.4371, 7.4384, 7.4376, 7.439, 7.4411, 7.4403, 7.4394, 7.4387, 7.4379, 7.4401, 7.4393, 7.4387, 7.4378, 7.4373, 7.4366, 7.436, 7.4374, 7.4369, 7.4362, 7.4353, 7.4368, 7.4383, 7.438, 7.4396, 7.4392, 7.4407, 7.4421, 7.4435, 7.4426, 7.442, 7.4435, 7.4456, 7.4448, 7.4439, 7.4453, 7.4446, 7.4441, 7.4437, 7.4429, 7.4425, 7.4418, 7.4413, 7.4406, 7.4403, 7.4375, 7.4367, 7.436, 7.4352, 7.4344, 7.4358, 7.4351, 7.4342, 7.4334, 7.4326, 7.4319, 7.4315, 7.4351, 7.4365, 7.4358, 7.4354, 7.4349, 7.4344, 7.4337, 7.433, 7.4323, 7.4316, 7.4309, 7.4305, 7.4299, 7.4292, 7.4283, 7.4275, 7.4309, 7.4302, 7.4295, 7.4294, 7.4286, 7.428, 7.4274, 7.4266, 7.4257, 7.425, 7.4242, 7.4234, 7.4226, 7.422, 7.4193, 7.4187, 7.4201, 7.4193, 7.4186, 7.4201, 7.4215, 7.421, 7.4228, 7.4244, 7.4252, 7.4246, 7.4237, 7.425, 7.4242, 7.4276, 7.4289, 7.4281, 7.4294, 7.4286, 7.4278, 7.427, 7.4288, 7.4301, 7.4293, 7.4285, 7.4277, 7.4268, 7.4281, 7.4273, 7.433, 7.4327, 7.4319, 7.4333, 7.4346, 7.4341, 7.4333, 7.4333, 7.4325, 7.4317, 7.4312, 7.4327, 7.4321, 7.4312, 7.4307, 7.43, 7.4292, 7.4284, 7.4297, 7.4293, 7.4287, 7.4305, 7.4298, 7.4291, 7.4328, 7.4322, 7.4335, 7.4327, 7.4324, 7.4318, 7.4333, 7.4326, 7.4318, 7.4314, 7.4328, 7.4321, 7.4317, 7.4309, 7.4301, 7.4293, 7.4308, 7.43, 7.4315, 7.4307, 7.4319, 7.4314, 7.4306, 7.4297, 7.4291, 7.4287, 7.4306, 7.432, 7.4313, 7.4326, 7.4318, 7.4331, 7.4344, 7.4336, 7.4328, 7.4341, 7.4354, 7.4346, 7.434, 7.4333, 7.4329, 7.432, 7.4313, 7.4306, 7.43, 7.4295, 7.4287, 7.428, 7.428, 7.4317, 7.431, 7.4382, 7.4375, 7.4366, 7.4358, 7.437, 7.4361, 7.4356, 7.4349, 7.4362, 7.4375, 7.437, 7.4362, 7.4398, 7.4443, 7.4456, 7.4448, 7.444, 7.4432, 7.4425, 7.4417, 7.443, 7.4426, 7.4418, 7.4409, 7.4401, 7.4395, 7.4388, 7.4401, 7.4415, 7.4407, 7.4399, 7.4393, 7.4385, 7.4398, 7.4389, 7.4402, 7.4395, 7.439, 7.4383, 7.438, 7.4395, 7.4387, 7.4383, 7.4377, 7.4371, 7.4367, 7.4373, 7.4366, 7.4358, 7.4352, 7.4367, 7.44, 7.4393, 7.4386, 7.44, 7.4392, 7.4427, 7.442, 7.4415, 7.4426, 7.4419, 7.4414, 7.4409, 7.4401, 7.4377, 7.4373, 7.4365, 7.4357, 7.4349, 7.4359, 7.4371, 7.4364, 7.4376, 7.4368, 7.4382, 7.4398, 7.439, 7.4384, 7.4376, 7.4371, 7.4383, 7.4395, 7.4391, 7.4383, 7.4397, 7.4389, 7.4381, 7.4373, 7.4419, 7.4434, 7.4427, 7.4419, 7.4431, 7.443, 7.4426, 7.4424, 7.4437, 7.4451, 7.4443, 7.4418, 7.4412, 7.4404, 7.4396, 7.4398, 7.4391, 7.4384, 7.4376, 7.4371, 7.4367, 7.436, 7.4352, 7.4348, 7.4348, 7.4342, 7.4339, 7.4331, 7.4307, 7.4308, 7.4301, 7.4293, 7.4308, 7.4401, 7.44, 7.4395, 7.4407, 7.4399, 7.4392, 7.4385, 7.4377, 7.4375, 7.4367, 7.436, 7.4355, 7.4347, 7.4352, 7.435, 7.4345, 7.4339, 7.4331, 7.4324, 7.4317, 7.431, 7.4303, 7.4314, 7.4316, 7.4308, 7.43, 7.4312, 7.4325, 7.4301, 7.4277, 7.4289, 7.4285, 7.4278, 7.4271, 7.4265, 7.4297, 7.431, 7.4302, 7.4278, 7.427, 7.4282, 7.4295, 7.4289, 7.4402, 7.4434, 7.4448, 7.4452, 7.4464, 7.4457, 7.445, 7.4443, 7.4437, 7.4431, 7.4423, 7.4417, 7.441, 7.4406, 7.4398, 7.4392, 7.4386, 7.4381, 7.4373, 7.4365, 7.4376, 7.4369, 7.4362, 7.4355, 7.4363, 7.4381, 7.4373, 7.4368, 7.4382, 7.4417, 7.4411, 7.4412, 7.4405, 7.4399, 7.4413, 7.4413, 7.441, 7.4422, 7.4416, 7.4432, 7.4446, 7.4441, 7.4441, 7.4434, 7.4429, 7.4406, 7.4399, 7.4414, 7.4427, 7.444, 7.4434, 7.4433, 7.4446, 7.444, 7.4451, 7.4445, 7.4456, 7.4451, 7.4489, 7.4483, 7.4476, 7.4473, 7.4468, 7.4464, 7.4461, 7.4456, 7.4451, 7.4446, 7.4441, 7.4453, 7.4445, 7.4438, 7.4417, 7.443, 7.4423, 7.4418, 7.441, 7.4406, 7.4421, 7.4416, 7.4412, 7.4404, 7.4403, 7.4398, 7.4412, 7.4427, 7.4424, 7.4437, 7.4433, 7.4446, 7.4442, 7.4435, 7.4427, 7.4421, 7.4488, 7.4502, 7.4495, 7.4509, 7.4502, 7.4498, 7.4492, 7.4486, 7.4481, 7.4473, 7.4484, 7.448, 7.4474, 7.4471, 7.4466, 7.4461, 7.4454, 7.4448, 7.4444, 7.444, 7.4452, 7.4464, 7.4458, 7.4469, 7.4481, 7.4458, 7.4453, 7.4447, 7.444, 7.4417, 7.441, 7.4402, 7.4398, 7.4412, 7.4425, 7.4422, 7.4434, 7.4427, 7.442, 7.4413, 7.4408, 7.4401, 7.4394, 7.4406, 7.4421, 7.4416, 7.4409, 7.4402, 7.4415, 7.4427, 7.4422, 7.4417, 7.441, 7.4404, 7.4398, 7.4392, 7.4384, 7.4397, 7.4393, 7.4403, 7.4415, 7.4428, 7.4431, 7.4423, 7.4433, 7.4446, 7.4439, 7.4431, 7.4443, 7.4444, 7.4437, 7.4449, 7.4464, 7.4479, 7.448, 7.4475, 7.4488, 7.4484, 7.448, 7.4476, 7.4514, 7.4514, 7.4534, 7.4549, 7.4543, 7.4537, 7.4537, 7.463, 7.4624, 7.4616, 7.4609, 7.4604, 7.4597, 7.4592, 7.4592, 7.4585, 7.4581, 7.4559, 7.457, 7.4564, 7.4557, 7.4557, 7.455, 7.4545, 7.4538, 7.453, 7.4527, 7.4525, 7.4518, 7.453, 7.4542, 7.4534, 7.4527, 7.4525, 7.4556, 7.4568, 7.4582, 7.4576, 7.4569, 7.4565, 7.4576, 7.4569, 7.4564, 7.4576, 7.4573, 7.4566, 7.4559, 7.4582, 7.4592, 7.4603, 7.4595, 7.4607, 7.4601, 7.4611, 7.459, 7.4583, 7.4595, 7.4607, 7.4587, 7.458, 7.4574, 7.4591, 7.4605, 7.4584, 7.458, 7.4595, 7.4605, 7.4602, 7.4594, 7.4605, 7.4597, 7.4592, 7.4588, 7.4581, 7.4594, 7.4589, 7.4616, 7.4627, 7.4621, 7.4633, 7.463, 7.4624, 7.4617, 7.4614, 7.4617, 7.4617, 7.461, 7.4604, 7.4597, 7.4592, 7.4586, 7.4598, 7.4591, 7.4583, 7.4595, 7.4591, 7.4604, 7.46, 7.4598, 7.4592, 7.4603, 7.4585, 7.4581, 7.4574, 7.4567, 7.4579, 7.4573, 7.4573, 7.4566, 7.4563, 7.4575, 7.4568, 7.4561, 7.4554, 7.4547, 7.4557, 7.4557, 7.4551, 7.4563, 7.4576, 7.457, 7.4563, 7.4558, 7.4552, 7.4548, 7.4543, 7.4536, 7.453, 7.4525, 7.4519, 7.4611, 7.4605, 7.4601, 7.4598, 7.4592, 7.4603, 7.4664, 7.4693, 7.4687, 7.4705, 7.4712, 7.4725, 7.4719, 7.4712, 7.4706, 7.4704, 7.4697, 7.469, 7.4686, 7.4681, 7.4676, 7.4673, 7.4666, 7.4661, 7.4671, 7.4664, 7.466, 7.4655, 7.4648, 7.4643, 7.4636, 7.463, 7.4623, 7.4616, 7.4611, 7.4606, 7.4618, 7.4611, 7.4623, 7.4618, 7.4613, 7.462, 7.4613, 7.4624, 7.4635, 7.4628, 7.4641, 7.4654, 7.4649, 7.4643, 7.4636, 7.4632, 7.4626, 7.4623, 7.462, 7.4615, 7.461, 7.4621, 7.4618, 7.4628, 7.4643, 7.4638, 7.4652, 7.4664, 7.4659, 7.4655, 7.4667, 7.4664, 7.466, 7.4655, 7.4667, 7.466, 7.4653, 7.4664, 7.4657, 7.4651, 7.4644, 7.4637, 7.4631, 7.4626, 7.4619, 7.4615, 7.4608, 7.4601, 7.4595, 7.4575, 7.4568, 7.4563, 7.4556, 7.4549, 7.4544, 7.4537, 7.453, 7.4525, 7.4519, 7.4516, 7.451, 7.4504, 7.4498, 7.4492, 7.4485, 7.448, 7.4477, 7.4488, 7.4483, 7.4479, 7.4472, 7.4466, 7.4477, 7.4471, 7.4466, 7.446, 7.4454, 7.4449, 7.4463, 7.4457, 7.4468, 7.4462, 7.4455, 7.4464, 7.4457, 7.4451, 7.4445, 7.4439, 7.4435, 7.4429, 7.4423, 7.4418, 7.4412, 7.4406, 7.4401, 7.4394, 7.4389, 7.4383, 7.4377, 7.4389, 7.4399, 7.4393, 7.4373, 7.4352, 7.4338, 7.4331, 7.4329, 7.4308, 7.432, 7.4315, 7.4308, 7.4303, 7.4296, 7.4289, 7.4285, 7.4278, 7.4273, 7.4268, 7.4262, 7.4256, 7.4251, 7.4249, 7.4248, 7.4243, 7.4237, 7.423, 7.4223, 7.4202, 7.4195, 7.4189, 7.4183, 7.4178, 7.4171, 7.4155, 7.4155, 7.4149, 7.4144, 7.4137, 7.4131, 7.4126, 7.4139, 7.4134, 7.4145, 7.4155, 7.4161, 7.4157, 7.4152, 7.4163, 7.4156, 7.4135, 7.4133, 7.4128, 7.4125, 7.4136, 7.4115, 7.4108, 7.4105, 7.4115, 7.4144, 7.4141, 7.412, 7.4114, 7.4107, 7.4117, 7.4114, 7.4107, 7.4117, 7.4111, 7.4105, 7.4115, 7.4109, 7.4105, 7.4098, 7.4092, 7.4085, 7.4082, 7.4092, 7.4085, 7.4095, 7.4139, 7.4134, 7.4145, 7.4155, 7.4166, 7.4177, 7.4173, 7.4167, 7.416, 7.4171, 7.4182, 7.4178, 7.4193, 7.4189, 7.4169, 7.418, 7.4174, 7.4168, 7.4162, 7.4157, 7.4151, 7.4146, 7.4159, 7.4152, 7.4145, 7.4142, 7.4136, 7.4133, 7.4131, 7.4125, 7.4135, 7.4129, 7.4125, 7.4122, 7.4116, 7.4111, 7.4137, 7.4165, 7.4194, 7.4188, 7.4169, 7.422, 7.4214, 7.4211, 7.419, 7.4185, 7.418, 7.4175, 7.4169, 7.4179, 7.4173, 7.4169, 7.4163, 7.416, 7.4155, 7.4149, 7.4144, 7.4141, 7.4153, 7.4147, 7.414, 7.4135, 7.413, 7.4124, 7.4118, 7.4114, 7.4125, 7.4119, 7.4113, 7.4109, 7.4106, 7.4117, 7.4111, 7.4108, 7.4122, 7.4116, 7.4115, 7.411, 7.4108, 7.4119, 7.412, 7.412, 7.4116, 7.411, 7.4104, 7.4098, 7.4092, 7.4103, 7.4097, 7.4091, 7.4086, 7.4095, 7.4106, 7.4123, 7.4134, 7.4131, 7.4125, 7.4122, 7.4117, 7.4112, 7.4107, 7.4104, 7.4101, 7.4097, 7.4172, 7.4183, 7.418, 7.4191, 7.4188, 7.4198, 7.4178, 7.4159, 7.4154, 7.4148, 7.4159, 7.4169, 7.4165, 7.416, 7.4154, 7.415, 7.4145, 7.4155, 7.4148, 7.4145, 7.4139, 7.412, 7.4118, 7.4129, 7.4139, 7.4133, 7.4126, 7.412, 7.4114, 7.4124, 7.4118, 7.4114, 7.4113, 7.4123, 7.415, 7.4147, 7.4142, 7.4154, 7.4149, 7.4144, 7.4139, 7.4133, 7.4127, 7.4127, 7.4121, 7.4119, 7.4099, 7.4096, 7.4112, 7.4122, 7.4117, 7.4111, 7.4112, 7.411, 7.4104, 7.4099, 7.4093, 7.4092, 7.4086, 7.408, 7.4074, 7.4115, 7.4109, 7.4103, 7.4114, 7.4117, 7.4112, 7.4122, 7.4117, 7.4111, 7.4107, 7.4117, 7.4111, 7.4121, 7.4115, 7.4125, 7.4121, 7.4116, 7.4125, 7.412, 7.4114, 7.4123, 7.4119, 7.413, 7.4139, 7.4133, 7.4127, 7.4142, 7.4136, 7.4146, 7.4141, 7.4151, 7.4146, 7.4141, 7.415, 7.4144, 7.4139, 7.4136, 7.413, 7.414, 7.4136, 7.4131, 7.4126, 7.4122, 7.4116, 7.411, 7.412, 7.413, 7.4124, 7.4118, 7.4112, 7.4106, 7.41, 7.4094, 7.4088, 7.4082, 7.4079, 7.4073, 7.4068, 7.4078, 7.4089, 7.4084, 7.4078, 7.4075, 7.4087, 7.4081, 7.4075, 7.407, 7.4064, 7.406, 7.4054, 7.4065, 7.4059, 7.4053, 7.4132, 7.4128, 7.4122, 7.4118, 7.4112, 7.4109, 7.4106, 7.41, 7.4095, 7.4093, 7.4087, 7.4081, 7.4079, 7.4075, 7.4069, 7.4064, 7.4058, 7.4069, 7.4064, 7.4075, 7.407, 7.4082, 7.4092, 7.4086, 7.4131, 7.4142, 7.4123, 7.4134, 7.4145, 7.4139, 7.4137, 7.4131, 7.413, 7.4126, 7.4121, 7.4116, 7.4128, 7.4124, 7.4136, 7.4133, 7.413, 7.4125, 7.4121, 7.4117, 7.4111, 7.4107, 7.4117, 7.4115, 7.411, 7.4106, 7.41, 7.4096, 7.4091, 7.4086, 7.4067, 7.4063, 7.4058, 7.4066, 7.406, 7.407, 7.4079, 7.4077, 7.4071, 7.408, 7.4075, 7.407, 7.4066, 7.4064, 7.4059, 7.4053, 7.405, 7.4045, 7.4039, 7.4034, 7.403, 7.4024, 7.402, 7.4025, 7.4023, 7.4019, 7.4013, 7.4013, 7.4022, 7.4031, 7.4025, 7.4064, 7.4087, 7.4084, 7.4081, 7.4075, 7.4077, 7.4073, 7.4068, 7.4078, 7.4073, 7.4069, 7.4064, 7.4063, 7.406, 7.407, 7.4067, 7.4077, 7.4059, 7.4054, 7.405, 7.4044, 7.4053, 7.4049, 7.4043, 7.4037, 7.4032, 7.4039, 7.4034, 7.4043, 7.4039, 7.4035, 7.403, 7.4026, 7.4023, 7.4018, 7.4013, 7.4009, 7.4003, 7.4001, 7.3997, 7.4007, 7.4002, 7.3998, 7.4023, 7.4033, 7.4029, 7.4039, 7.4048, 7.4043, 7.4038, 7.4033, 7.4027, 7.4023, 7.4019, 7.4016, 7.4011, 7.4007, 7.4017, 7.4015, 7.4011, 7.4006, 7.4, 7.3999, 7.3997, 7.3993, 7.399, 7.3986, 7.3996, 7.3993, 7.3989, 7.3984, 7.3978, 7.3974, 7.3968, 7.3963, 7.396, 7.3971, 7.3981, 7.3976, 7.3987, 7.3982, 7.3977, 7.3972, 7.3966, 7.3962, 7.396, 7.3954, 7.3948, 7.3943, 7.3937, 7.3946, 7.3942, 7.3939, 7.3948, 7.3943, 7.3938, 7.3937, 7.3937, 7.3934, 7.3929, 7.3924, 7.3919, 7.3914, 7.3909, 7.3904, 7.3899, 7.3909, 7.3907, 7.3903, 7.3898, 7.3894, 7.389, 7.3884, 7.3895, 7.3895, 7.3892, 7.389, 7.389, 7.3887, 7.3897, 7.3892, 7.3886, 7.3882, 7.3881, 7.3894, 7.3889, 7.3922, 7.3918, 7.3916, 7.3911, 7.3906, 7.3901, 7.3897, 7.3892, 7.3893, 7.3888, 7.3884, 7.3895, 7.389, 7.3886, 7.3881, 7.3891, 7.3874, 7.3871, 7.3881, 7.3877, 7.3872, 7.3882, 7.388, 7.389, 7.3899, 7.3896, 7.3907, 7.3902, 7.3897, 7.3898, 7.3893, 7.3888, 7.3882, 7.3885, 7.3896, 7.3894, 7.3903, 7.3898, 7.3894, 7.3889, 7.3884, 7.3882, 7.3891, 7.3887, 7.3882, 7.3877, 7.3873, 7.3869, 7.3864, 7.3876, 7.3885, 7.388, 7.3875, 7.387, 7.3881, 7.3876, 7.3885, 7.388, 7.3874, 7.3883, 7.388, 7.3881, 7.3878, 7.3873, 7.3868, 7.3863, 7.3863, 7.3876, 7.3871, 7.3866, 7.3861, 7.3856, 7.3852, 7.3861, 7.387, 7.3869, 7.3865, 7.3874, 7.3883, 7.3879, 7.3887, 7.3884, 7.3894, 7.389, 7.3886, 7.3901, 7.3897, 7.3893, 7.3889, 7.3901, 7.391, 7.3905, 7.3902, 7.3899, 7.3894, 7.3891, 7.39, 7.39, 7.3921, 7.3916, 7.3911, 7.3927, 7.3939, 7.3933, 7.393, 7.3926, 7.3921, 7.3916, 7.3924, 7.3933, 7.3929, 7.3923, 7.3918, 7.3926, 7.3911, 7.3897, 7.3891, 7.3888, 7.3883, 7.3866, 7.3862, 7.3859, 7.3855, 7.3863, 7.3858, 7.3853, 7.385, 7.3845, 7.3843, 7.3853, 7.3862, 7.3857, 7.3855, 7.385, 7.386, 7.3866, 7.3875, 7.3884, 7.3882, 7.3877, 7.3872, 7.3869, 7.3863, 7.3858, 7.3855, 7.3851, 7.386, 7.3854, 7.3849, 7.3863, 7.3861, 7.3871, 7.388, 7.3875, 7.3871, 7.3867, 7.3878, 7.3877, 7.3873, 7.3874, 7.3871, 7.3866, 7.3861, 7.3856, 7.3854, 7.3849, 7.386, 7.3855, 7.3852, 7.385, 7.3847, 7.3844, 7.3839, 7.3848, 7.3844, 7.3882, 7.3878, 7.3861, 7.3857, 7.3852, 7.3847, 7.3842, 7.3837, 7.3832, 7.3831, 7.3827, 7.3822, 7.3823, 7.3832, 7.3828, 7.3825, 7.3816, 7.3811, 7.3805, 7.38, 7.3808, 7.3803, 7.3798, 7.3807, 7.3791, 7.3786, 7.3795, 7.379, 7.3773, 7.3768, 7.3763, 7.3758, 7.3753, 7.3748, 7.3758, 7.3755, 7.375, 7.3746, 7.3756, 7.3751, 7.376, 7.3786, 7.3797, 7.3806, 7.3801, 7.3799, 7.3796, 7.3805, 7.3813, 7.3821, 7.3817, 7.3812, 7.3807, 7.3804, 7.3799, 7.3794, 7.3803, 7.38, 7.3796, 7.3791, 7.3791, 7.3869, 7.3866, 7.3904, 7.39, 7.3909, 7.3905, 7.3903, 7.3899, 7.3896, 7.389, 7.3886, 7.3881, 7.3876, 7.3885, 7.388, 7.3889, 7.3888, 7.3888, 7.3884, 7.388, 7.3876, 7.3899, 7.3909, 7.3921, 7.3945, 7.3944, 7.394, 7.3944, 7.3941, 7.3978, 7.4, 7.3998, 7.4007, 7.4002, 7.4024, 7.4019, 7.4017, 7.4015, 7.4025, 7.4021, 7.4021, 7.4016, 7.4011, 7.4007, 7.4002, 7.3997, 7.3992, 7.3989, 7.3985, 7.3995, 7.399, 7.3987, 7.3982, 7.3979, 7.3976, 7.3985, 7.398, 7.3977, 7.3985, 7.398, 7.3992, 7.3987, 7.3986, 7.3982, 7.3969, 7.3976, 7.3973, 7.397, 7.3965, 7.3962, 7.3971, 7.3968, 7.3966, 7.3993, 7.3991, 7.3989, 7.3985, 7.398, 7.3976, 7.3974, 7.3969, 7.3967, 7.3963, 7.396, 7.3957, 7.3952, 7.3947, 7.3955, 7.395, 7.3947, 7.3942, 7.3926, 7.3921, 7.3929, 7.3937, 7.3935, 7.3934, 7.3935, 7.3935, 7.3931, 7.3939, 7.395, 7.3947, 7.3956, 7.3953, 7.3949, 7.3944, 7.3952, 7.395, 7.3945, 7.3942, 7.3926, 7.3922, 7.3917, 7.3926, 7.3924, 7.392, 7.3916, 7.3912, 7.3907, 7.3907, 7.3902, 7.3899, 7.3882, 7.389, 7.3898, 7.3906, 7.389, 7.3887, 7.3882, 7.3877, 7.3872, 7.387, 7.3865, 7.386, 7.3855, 7.3851, 7.386, 7.3861, 7.387, 7.3868, 7.3878, 7.3873, 7.387, 7.3867, 7.3863, 7.3874, 7.387, 7.3865, 7.3861, 7.3856, 7.3909, 7.3905, 7.3913, 7.3898, 7.3895, 7.3903, 7.3912, 7.3907, 7.3902, 7.3898, 7.3905, 7.3902, 7.3899, 7.3901, 7.3898, 7.3893, 7.3888, 7.3885, 7.3881, 7.3877, 7.3886, 7.3881, 7.3876, 7.3874, 7.3869, 7.3867, 7.3862, 7.3857, 7.3852, 7.3861, 7.3857, 7.3856, 7.3852, 7.3847, 7.3849, 7.387, 7.3884, 7.388, 7.3879, 7.3874, 7.3869, 7.3868, 7.3866, 7.3863, 7.3871, 7.3868, 7.3903, 7.39, 7.3897, 7.3893, 7.3892, 7.3887, 7.3871, 7.3871, 7.3866, 7.3861, 7.3856, 7.3852, 7.3847, 7.3843, 7.384, 7.3836, 7.3834, 7.3832, 7.3827, 7.3823, 7.382, 7.3816, 7.3811, 7.3807, 7.3802, 7.3786, 7.377, 7.3767, 7.3803, 7.3813, 7.3838, 7.3833, 7.3817, 7.3813, 7.3811, 7.3808, 7.3816, 7.3814, 7.3823, 7.3818, 7.3813, 7.3821, 7.3821, 7.3816, 7.3811, 7.382, 7.3827, 7.3822, 7.3818, 7.3814, 7.3809, 7.3807, 7.3809, 7.3804, 7.3801, 7.3799, 7.3796, 7.3795, 7.3792, 7.3788, 7.3783, 7.3778, 7.3775, 7.3774, 7.377, 7.377, 7.3779, 7.3776, 7.3772, 7.378, 7.3788, 7.3783, 7.3792, 7.3801, 7.381, 7.3806, 7.3814, 7.381, 7.3807, 7.3792, 7.3788, 7.3787, 7.3782, 7.3777, 7.3772, 7.378, 7.3777, 7.3785, 7.3781, 7.3777, 7.3774, 7.3771, 7.3766, 7.3762, 7.3746, 7.3755, 7.3763, 7.3759, 7.3755, 7.3752, 7.376, 7.3769, 7.3765, 7.3784, 7.3779, 7.3788, 7.3783, 7.3779, 7.3774, 7.377, 7.3765, 7.3762, 7.3759, 7.3757, 7.3756, 7.3774, 7.377, 7.3766, 7.3775, 7.377, 7.3768, 7.3766, 7.3761, 7.3758, 7.3753, 7.3762, 7.3759, 7.3755, 7.3752, 7.375, 7.3745, 7.3741, 7.3751, 7.3749, 7.3745, 7.374, 7.3748, 7.3748, 7.3744, 7.374, 7.3735, 7.3722, 7.373, 7.3729, 7.3725, 7.3721, 7.3728, 7.3736, 7.3731, 7.3739, 7.3738, 7.3746, 7.3753, 7.3748, 7.3744, 7.3739, 7.3735, 7.373, 7.3725, 7.3721, 7.3706, 7.3691, 7.3688, 7.3696, 7.3694, 7.3704, 7.3711, 7.3706, 7.3702, 7.3698, 7.3707, 7.3703, 7.3712, 7.38, 7.3796, 7.383, 7.3826, 7.3822, 7.3829, 7.3837, 7.3869, 7.3864, 7.3866, 7.3862, 7.3858, 7.3854, 7.3862, 7.3858, 7.3868, 7.3864, 7.386, 7.3845, 7.384, 7.3838, 7.3849, 7.3847, 7.3844, 7.3844, 7.3854, 7.3856, 7.3857, 7.3852, 7.3877, 7.3888, 7.3885, 7.3894, 7.3892, 7.3888, 7.3884, 7.3881, 7.3879, 7.3875, 7.3874, 7.3869, 7.3867, 7.3863, 7.3871, 7.3867, 7.3864, 7.3859, 7.3866, 7.3888, 7.3883, 7.3878, 7.3874, 7.3882, 7.389, 7.3888, 7.3885, 7.3885, 7.388, 7.3877, 7.3885, 7.3883, 7.3878, 7.3874, 7.3872, 7.3868, 7.3903, 7.3899, 7.3908, 7.3917, 7.3914, 7.3911, 7.3908, 7.3904, 7.39, 7.3908, 7.3905, 7.39, 7.3895, 7.3903, 7.3901, 7.3908, 7.3903, 7.39, 7.3895, 7.3893, 7.3896, 7.3891, 7.3886, 7.3883, 7.3879, 7.3876, 7.3872, 7.3868, 7.3873, 7.3858, 7.3855, 7.385, 7.3845, 7.3842, 7.3839, 7.3834, 7.383, 7.384, 7.3862, 7.3858, 7.3856, 7.3851, 7.3847, 7.3855, 7.3854, 7.3862, 7.3858, 7.3855, 7.3851, 7.3846, 7.3842, 7.3839, 7.3836, 7.3834, 7.3829, 7.3814, 7.381, 7.3817, 7.3814, 7.3809, 7.3806, 7.3802, 7.3787, 7.3785, 7.378, 7.3766, 7.3784, 7.3782, 7.3782, 7.3779, 7.3774, 7.3781, 7.3788, 7.3785, 7.3793, 7.38, 7.3798, 7.3795, 7.3791, 7.3787, 7.3782, 7.3768, 7.3753, 7.3749, 7.3745, 7.3743, 7.3751, 7.375, 7.3758, 7.3755, 7.3751, 7.3747, 7.3742, 7.3739, 7.3746, 7.3745, 7.3752, 7.3748, 7.3744, 7.3742, 7.3738, 7.3734, 7.373, 7.3721, 7.3717, 7.3714, 7.3716, 7.3701, 7.3724, 7.3736, 7.3744, 7.379, 7.3787, 7.3782, 7.3779, 7.3776, 7.3772, 7.3768, 7.3764, 7.3759, 7.3765, 7.3773, 7.378, 7.3775, 7.3783, 7.3779, 7.3766, 7.3775, 7.3774, 7.3796, 7.3792, 7.3789, 7.3797, 7.3841, 7.3838, 7.3834, 7.383, 7.3828, 7.3825, 7.3837, 7.3848, 7.3833, 7.383, 7.3817, 7.3813, 7.3822, 7.3826, 7.3822, 7.3821, 7.382, 7.3819, 7.3815, 7.3813, 7.3811, 7.3809, 7.3818, 7.3803, 7.3791, 7.3777, 7.3797, 7.3793, 7.379, 7.3788, 7.3784, 7.3783, 7.3786, 7.3784, 7.3784, 7.3792, 7.3788, 7.3784, 7.3784, 7.3793, 7.3792, 7.3788, 7.3785, 7.3784, 7.3792, 7.38, 7.3798, 7.3795, 7.3793, 7.3789, 7.3784, 7.378, 7.3778, 7.3774, 7.3772, 7.3781, 7.377, 7.3766, 7.3764, 7.375, 7.3746, 7.3754, 7.3751, 7.3746, 7.3755, 7.3751, 7.3758, 7.3754, 7.374, 7.3737, 7.3734, 7.373, 7.3739, 7.3736, 7.3744, 7.3752, 7.3747, 7.3743, 7.3739, 7.3734, 7.3738, 7.3748, 7.3746, 7.3742, 7.3738, 7.3735, 7.3731, 7.3728, 7.3723, 7.3719, 7.3714, 7.371, 7.3718, 7.3714, 7.3722, 7.3718, 7.3716, 7.3723, 7.3724, 7.3731, 7.3726, 7.3722, 7.3718, 7.3714, 7.3714, 7.3711, 7.3707, 7.3703, 7.3711, 7.3709, 7.3705, 7.3702, 7.3698, 7.3705, 7.3712, 7.3709, 7.3705, 7.3701, 7.3699, 7.3697, 7.3694, 7.3691, 7.3691, 7.3678, 7.3674, 7.3669, 7.3666, 7.3663, 7.3659, 7.3666, 7.3665, 7.3672, 7.3679, 7.3675, 7.3671, 7.3678, 7.3685, 7.3681, 7.3677, 7.3685, 7.3683, 7.3678, 7.3677, 7.3685, 7.3681, 7.3689, 7.3685, 7.3692, 7.3689, 7.3685, 7.3682, 7.3691, 7.3687, 7.3685, 7.3692, 7.3688, 7.3684, 7.3696, 7.3693, 7.3689, 7.3685, 7.3681, 7.3678, 7.3674, 7.3683, 7.368, 7.3677, 7.3673, 7.3669, 7.3666, 7.3673, 7.3662, 7.3658, 7.3665, 7.3661, 7.3657, 7.3664, 7.3661, 7.367, 7.3678, 7.3677, 7.3673, 7.3669, 7.3677, 7.3673, 7.3669, 7.3666, 7.3663, 7.3671, 7.3669, 7.3666, 7.3663, 7.3672, 7.3684, 7.368, 7.3679, 7.3676, 7.3674, 7.366, 7.367, 7.3668, 7.3665, 7.3677, 7.3674, 7.367, 7.3668, 7.3664, 7.3661, 7.3659, 7.3658, 7.3668, 7.3664, 7.3671, 7.3667, 7.3663, 7.3659, 7.3655, 7.3662, 7.3658, 7.3662, 7.3658, 7.3665, 7.3651, 7.3651, 7.3657, 7.3664, 7.366, 7.3678, 7.3697, 7.3693, 7.3689, 7.3685, 7.3681, 7.3688, 7.3683, 7.369, 7.3687, 7.3683, 7.368, 7.3676, 7.3689, 7.3686, 7.3682, 7.37, 7.3708, 7.3704, 7.3711, 7.3707, 7.3703, 7.3697, 7.3699, 7.3706, 7.3704, 7.37, 7.3686, 7.3682, 7.3678, 7.3674, 7.3669, 7.3666, 7.3674, 7.367, 7.3667, 7.3663, 7.366, 7.3656, 7.3652, 7.3649, 7.3646, 7.3642, 7.3649, 7.3656, 7.3654, 7.3651, 7.3647, 7.3643, 7.3639, 7.3635, 7.3633, 7.3632, 7.3628, 7.3623, 7.3619, 7.3628, 7.3626, 7.3622, 7.3618, 7.3625, 7.3621, 7.3617, 7.3614, 7.3611, 7.3618, 7.3625, 7.3633, 7.3619, 7.3617, 7.3627, 7.3623, 7.3619, 7.3615, 7.3622, 7.3623, 7.361, 7.3606, 7.3624, 7.3688, 7.3686, 7.3682, 7.3678, 7.3685, 7.3682, 7.369, 7.3686, 7.3682, 7.3678, 7.3674, 7.367, 7.3668, 7.3668, 7.3666, 7.3668, 7.3666, 7.3674, 7.3682, 7.369, 7.3698, 7.3695, 7.3703, 7.3699, 7.3702, 7.3691, 7.3708, 7.3704, 7.37, 7.3707, 7.3704, 7.37, 7.3697, 7.3705, 7.3703, 7.3699, 7.3698, 7.3696, 7.3692, 7.3692, 7.3689, 7.3685, 7.3681, 7.3678, 7.3675, 7.3671, 7.3667, 7.3671, 7.3668, 7.3665, 7.3662, 7.3661, 7.3669, 7.3667, 7.3666, 7.3662, 7.366, 7.3656, 7.3652, 7.3649, 7.3673, 7.3671, 7.3658, 7.3666, 7.3674, 7.3671, 7.3667, 7.3664, 7.3664, 7.3661, 7.3659, 7.3709, 7.3716, 7.3713, 7.372, 7.3716, 7.3712, 7.3708, 7.3708, 7.3705, 7.3718, 7.3714, 7.371, 7.3717, 7.3724, 7.3742, 7.3729, 7.3726, 7.3723, 7.3722, 7.3718, 7.3715, 7.3723, 7.372, 7.3716, 7.3723, 7.3719, 7.3715, 7.3711, 7.3718, 7.3725, 7.3732, 7.3739, 7.3735, 7.3742, 7.3739, 7.3738, 7.3736, 7.3733, 7.3729, 7.3725, 7.3721, 7.3717, 7.3704, 7.37, 7.3709, 7.3714, 7.371, 7.3717, 7.3724, 7.3721, 7.3739, 7.3767, 7.3764, 7.3772, 7.3768, 7.3764, 7.3762, 7.3768, 7.3775, 7.3782, 7.3779, 7.3775, 7.3771, 7.3779, 7.3787, 7.3775, 7.3771, 7.3767, 7.3764, 7.3771, 7.3768, 7.3764, 7.3771, 7.3778, 7.3775, 7.3771, 7.378, 7.3776, 7.3773, 7.3769, 7.3766, 7.3763, 7.3771, 7.3767, 7.3768, 7.3803, 7.3811, 7.3807, 7.3804, 7.38, 7.3796, 7.3793, 7.379, 7.3789, 7.3798, 7.3795, 7.3801, 7.3798, 7.3805, 7.3803, 7.38, 7.3796, 7.3792, 7.3788, 7.3784, 7.3835, 7.3832, 7.3828, 7.3824, 7.382, 7.3818, 7.3815, 7.3811, 7.3807, 7.3803, 7.38, 7.3797, 7.3793, 7.3801, 7.3797, 7.3804, 7.3802, 7.3798, 7.3806, 7.3803, 7.3802, 7.3799, 7.3813, 7.3811, 7.3809, 7.3806, 7.3805, 7.3803, 7.3791, 7.3791, 7.3789, 7.3786, 7.3782, 7.3779, 7.3765, 7.3764, 7.376, 7.3756, 7.3763, 7.3759, 7.3756, 7.3743, 7.374, 7.375, 7.3769, 7.3767, 7.3767, 7.3766, 7.3762, 7.3758, 7.3755, 7.3753, 7.3753, 7.375, 7.3757, 7.3754, 7.3752, 7.375, 7.3746, 7.3744, 7.3747, 7.3754, 7.375, 7.3746, 7.3733, 7.373, 7.3738, 7.3734, 7.373, 7.3738, 7.3746, 7.3742, 7.3749, 7.3747, 7.3744, 7.375, 7.3748, 7.3744, 7.374, 7.3737, 7.3733, 7.373, 7.3727, 7.3725, 7.3722, 7.3719, 7.3715, 7.3713, 7.3723, 7.3719, 7.3716, 7.3716, 7.3713, 7.3709, 7.3705, 7.3703, 7.3702, 7.3699, 7.3696, 7.3693, 7.37, 7.3709, 7.3705, 7.3701, 7.3697, 7.3694, 7.3692, 7.369, 7.3688, 7.3686, 7.3683, 7.3679, 7.3685, 7.3682, 7.3689, 7.3685, 7.3683, 7.3679, 7.3719, 7.3715, 7.3713, 7.3709, 7.3706, 7.3693, 7.3689, 7.3687, 7.3683, 7.3679, 7.3676, 7.3683, 7.3681, 7.3677, 7.3706, 7.3704, 7.37, 7.3697, 7.3693, 7.369, 7.3686, 7.3683, 7.3682, 7.3679, 7.3678, 7.3674, 7.3681, 7.3668, 7.3664, 7.366, 7.3656, 7.3652, 7.3649, 7.3646, 7.3642, 7.3652, 7.3648, 7.3646, 7.3642, 7.3639, 7.3637, 7.3644, 7.364, 7.3637, 7.3643, 7.3641, 7.3637, 7.3635, 7.3631, 7.3629, 7.3625, 7.3622, 7.3618, 7.3625, 7.3654, 7.3651, 7.3647, 7.3645, 7.3643, 7.364, 7.3648, 7.3636, 7.3635, 7.3631, 7.3627, 7.3624, 7.362, 7.3627, 7.3623, 7.362, 7.3625, 7.3621, 7.3618, 7.3615, 7.3614, 7.3612, 7.3609, 7.3605, 7.3601, 7.3608, 7.3616, 7.3604, 7.3612, 7.361, 7.3606, 7.3614, 7.362, 7.3618, 7.3625, 7.3627, 7.3624, 7.3623, 7.362, 7.3617, 7.3649, 7.3658, 7.3655, 7.3651, 7.367, 7.3677, 7.3685, 7.3681, 7.3678, 7.3684, 7.3681, 7.3679, 7.3678, 7.3685, 7.3681, 7.3679, 7.3676, 7.3672, 7.3669, 7.3667, 7.3667, 7.3655, 7.3651, 7.3648, 7.3644, 7.3641, 7.3638, 7.3645, 7.3643, 7.364, 7.3638, 7.3638, 7.3634, 7.364, 7.3627, 7.3634, 7.3631, 7.3628, 7.3626, 7.3623, 7.3619, 7.3618, 7.3615, 7.3612, 7.3615, 7.3612, 7.3609, 7.3615, 7.3612, 7.362, 7.3617, 7.3624, 7.3621, 7.3628, 7.3635, 7.3632, 7.3628, 7.3615, 7.3612, 7.3608, 7.3605, 7.3601, 7.3608, 7.3604, 7.3603, 7.3664, 7.3671, 7.3669, 7.3686, 7.3676, 7.3672, 7.3669, 7.3669, 7.3665, 7.3667, 7.3685, 7.3681, 7.3677, 7.3684, 7.369, 7.3686, 7.3684, 7.368, 7.3677, 7.3674, 7.3681, 7.3681, 7.3687, 7.3685, 7.3682, 7.368, 7.3676, 7.3673, 7.368, 7.3676, 7.3674, 7.3671, 7.3668, 7.3666, 7.3673, 7.367, 7.3668, 7.3665, 7.3661, 7.3659, 7.3657, 7.3653, 7.365, 7.3656, 7.3654, 7.3642, 7.3648, 7.3656, 7.3654, 7.365, 7.3657, 7.3653, 7.366, 7.3656, 7.3654, 7.365, 7.3655, 7.3661, 7.3659, 7.367, 7.3669, 7.3668, 7.3664, 7.3683, 7.369, 7.3687, 7.3694, 7.3691, 7.3698, 7.3694, 7.369, 7.3697, 7.3703, 7.3699, 7.3696, 7.3703, 7.3699, 7.3687, 7.3691, 7.3689, 7.3678, 7.3674, 7.367, 7.3668, 7.3664, 7.3661, 7.3659, 7.3656, 7.3662, 7.366, 7.3658, 7.3654, 7.365, 7.3648, 7.3644, 7.364, 7.3638, 7.3634, 7.3631, 7.3638, 7.3634, 7.364, 7.3637, 7.3634, 7.3632, 7.3638, 7.3661, 7.3659, 7.3657, 7.3654, 7.3675, 7.3671, 7.3669, 7.3666, 7.3663, 7.366, 7.3667, 7.3673, 7.3661, 7.3668, 7.3666, 7.3664, 7.3662, 7.3658, 7.3656, 7.3653, 7.365, 7.3657, 7.3664, 7.3661, 7.3668, 7.3665, 7.3661, 7.3658, 7.3664, 7.366, 7.3657, 7.3653, 7.3659, 7.3655, 7.3673, 7.3684, 7.368, 7.3676, 7.3673, 7.3661, 7.3667, 7.3674, 7.3671, 7.3668, 7.3665, 7.3671, 7.3669, 7.3667, 7.368, 7.3677, 7.3683, 7.368, 7.3706, 7.3704, 7.3702, 7.3692, 7.369, 7.3697, 7.3693, 7.3681, 7.3677, 7.3673, 7.3673, 7.3671, 7.367, 7.3676, 7.3675, 7.3675, 7.3671, 7.3677, 7.3683, 7.3681, 7.3678, 7.3666, 7.3664, 7.3661, 7.3667, 7.3663, 7.3671, 7.3667, 7.3666, 7.3663, 7.3659, 7.3667, 7.3663, 7.3661, 7.3667, 7.3663, 7.3662, 7.367, 7.3667, 7.3664, 7.3681, 7.3687, 7.3683, 7.3681, 7.369, 7.3686, 7.3692, 7.369, 7.3688, 7.3686, 7.3686, 7.3692, 7.3689, 7.3687, 7.3683, 7.3681, 7.3677, 7.3673, 7.367, 7.367, 7.3669, 7.3667, 7.3666, 7.3663, 7.366, 7.3658, 7.3656, 7.3663, 7.3671, 7.3678, 7.3684, 7.3682, 7.3681, 7.3679, 7.3677, 7.3683, 7.3689, 7.3686, 7.3706, 7.3726, 7.3714, 7.3711, 7.3711, 7.3723, 7.3785, 7.3781, 7.3779, 7.381, 7.381, 7.3806, 7.3803, 7.3802, 7.3798, 7.3794, 7.3791, 7.3789, 7.3786, 7.3783, 7.379, 7.3787, 7.3783, 7.378, 7.3777, 7.3774, 7.3771, 7.3816, 7.3812, 7.3811, 7.3808, 7.3805, 7.3793, 7.3789, 7.3787, 7.3816, 7.3813, 7.381, 7.3819, 7.3816, 7.3822, 7.3819, 7.3815, 7.3803, 7.3809, 7.3805, 7.3813, 7.3802, 7.3798, 7.3797, 7.3804, 7.3793, 7.3782, 7.3779, 7.3778, 7.3775, 7.3772, 7.3776, 7.3774, 7.378, 7.3777, 7.3775, 7.3771, 7.3769, 7.3775, 7.3772, 7.3768, 7.3766, 7.3762, 7.3769, 7.3768, 7.3766, 7.3772, 7.3787, 7.3798, 7.3795, 7.3792, 7.379, 7.379, 7.3787, 7.3796, 7.3792, 7.3791, 7.3789, 7.3786, 7.3783, 7.3776, 7.3772, 7.3778, 7.3776, 7.3774, 7.3771, 7.3769, 7.3767, 7.3764, 7.3762, 7.3759, 7.3757, 7.3763, 7.376, 7.3756, 7.3753, 7.3751, 7.374, 7.3731, 7.3748, 7.3751, 7.3748, 7.3739, 7.3737, 7.3734, 7.3731, 7.3728, 7.3724, 7.372, 7.3726, 7.373, 7.3726, 7.3723, 7.372, 7.3718, 7.3717, 7.3715, 7.3751, 7.3761, 7.3765, 7.3762, 7.3768, 7.3764, 7.3771, 7.3768, 7.3764, 7.376, 7.3768, 7.3765, 7.3763, 7.376, 7.3766, 7.3762, 7.3758, 7.3755, 7.3761, 7.3758, 7.3764, 7.376, 7.3758, 7.3754, 7.3752, 7.3749, 7.3745, 7.3743, 7.3749, 7.3745, 7.3742, 7.3739, 7.3745, 7.3743, 7.374, 7.3738, 7.3745, 7.3733, 7.373, 7.3727, 7.3733, 7.3723, 7.3729, 7.3726, 7.3723, 7.3724, 7.3731, 7.3719, 7.3708, 7.3705, 7.3702, 7.3701, 7.369, 7.3689, 7.3687, 7.369, 7.3696, 7.3693, 7.3691, 7.3718, 7.3724, 7.3721, 7.3737, 7.3734, 7.373, 7.3726, 7.3722, 7.3719, 7.3716, 7.3714, 7.372, 7.3727, 7.3724, 7.3722, 7.3723, 7.372, 7.3716, 7.3714, 7.3712, 7.3709, 7.3717, 7.3715, 7.3717, 7.3715, 7.3713, 7.371, 7.3716, 7.3713, 7.3711, 7.3708, 7.3707, 7.3705, 7.3711, 7.3707, 7.3703, 7.3702, 7.3698, 7.3695, 7.3691, 7.3698, 7.3705, 7.3711, 7.3708, 7.3704, 7.3701, 7.3707, 7.3703, 7.3701, 7.3708, 7.3705, 7.3693, 7.369, 7.3696, 7.3702, 7.3707, 7.3705, 7.3701, 7.3697, 7.3693, 7.3699, 7.3698, 7.3704, 7.3701, 7.3697, 7.3693, 7.37, 7.3707, 7.3779, 7.3775, 7.3772, 7.3778, 7.3783, 7.378, 7.3791, 7.3807, 7.3804, 7.3809, 7.3807, 7.3805, 7.3805, 7.3802, 7.381, 7.3807, 7.3805, 7.3823, 7.382, 7.3826, 7.3823, 7.3824, 7.383, 7.3828, 7.3826, 7.3824, 7.3829, 7.3826, 7.3833, 7.383, 7.3847, 7.3845, 7.3842, 7.3839, 7.3842, 7.3839, 7.3837, 7.3834, 7.3823, 7.382, 7.3819, 7.3831, 7.383, 7.3836, 7.3833, 7.3832, 7.3838, 7.3834, 7.3832, 7.3829, 7.3835, 7.3844, 7.3833, 7.383, 7.3827, 7.3833, 7.384, 7.3839, 7.3836, 7.3833, 7.383, 7.3828, 7.3825, 7.3822, 7.3819, 7.3816, 7.3813, 7.3819, 7.3817, 7.3815, 7.3813, 7.3809, 7.3815, 7.3821, 7.3833, 7.3838, 7.3836, 7.3834, 7.3839, 7.3836, 7.3833, 7.3829, 7.3826, 7.3822, 7.382, 7.3818, 7.3817, 7.3831, 7.3828, 7.3835, 7.3832, 7.3831, 7.3828, 7.3825, 7.3822, 7.3819, 7.3817, 7.3814, 7.381, 7.3807, 7.3806, 7.3812, 7.3809, 7.3808, 7.3814, 7.3811, 7.3808, 7.3806, 7.3812, 7.3809, 7.3806, 7.3804, 7.3802, 7.3808, 7.3804, 7.381, 7.3807, 7.3805, 7.3803, 7.3799, 7.3796, 7.3795, 7.3793, 7.379, 7.3787, 7.3784, 7.3789, 7.3786, 7.3783, 7.378, 7.3777, 7.3783, 7.378, 7.3777, 7.3783, 7.3779, 7.3785, 7.379, 7.3788, 7.3786, 7.3783, 7.378, 7.3777, 7.3773, 7.3778, 7.3774, 7.377, 7.3766, 7.3764, 7.3787, 7.3794, 7.3792, 7.3789, 7.3794, 7.3803, 7.3794, 7.3787, 7.3785, 7.3797, 7.3794, 7.379, 7.3789, 7.3796, 7.3793, 7.379, 7.3788, 7.3786, 7.3784, 7.3781, 7.3779, 7.3777, 7.3773, 7.3779, 7.3769, 7.3776, 7.3773, 7.377, 7.3768, 7.3767, 7.3773, 7.377, 7.3767, 7.3773, 7.3772, 7.3762, 7.3761, 7.3767, 7.3766, 7.3774, 7.3772, 7.3769, 7.3766, 7.3765, 7.3763, 7.3761, 7.3759, 7.3757, 7.3763, 7.3769, 7.3768, 7.3768, 7.3767, 7.3765, 7.3763, 7.3761, 7.3767, 7.3764, 7.3762, 7.3759, 7.3758, 7.3754, 7.3752, 7.3759, 7.3756, 7.3754, 7.3753, 7.375, 7.3756, 7.3762, 7.3759, 7.3774, 7.378, 7.3787, 7.3793, 7.3799, 7.3804, 7.3801, 7.3799, 7.3796, 7.3793, 7.3794, 7.3808, 7.3819, 7.3816, 7.3822, 7.3819, 7.3816, 7.3817, 7.3818, 7.3825, 7.3822, 7.3819, 7.3818, 7.3816, 7.3814, 7.382, 7.3834, 7.3832, 7.3829, 7.3828, 7.3825, 7.3822, 7.3828, 7.3826, 7.3823, 7.3823, 7.3829, 7.3828, 7.3826, 7.3825, 7.3824, 7.3824, 7.3822, 7.3827, 7.3823, 7.3821, 7.3828, 7.3826, 7.3831, 7.3837, 7.3844, 7.3841, 7.3842, 7.384, 7.3839, 7.3837, 7.3834, 7.3831, 7.3828, 7.3834, 7.3831, 7.3837, 7.3842, 7.3839, 7.3836, 7.3841, 7.3847, 7.3844, 7.3841, 7.3847, 7.3852, 7.3859, 7.3856, 7.3862, 7.3869, 7.3866, 7.3872, 7.3869, 7.3866, 7.3873, 7.3871, 7.3907, 7.3907, 7.3904, 7.391, 7.3916, 7.3913, 7.3909, 7.3906, 7.3912, 7.3909, 7.3906, 7.3903, 7.3901, 7.3897, 7.3902, 7.3899, 7.3905, 7.3912, 7.3909, 7.3928, 7.3925, 7.3922, 7.3919, 7.3926, 7.3923, 7.392, 7.3926, 7.3923, 7.3922, 7.3919, 7.3916, 7.3914, 7.392, 7.3925, 7.3922, 7.3919, 7.3917, 7.3914, 7.392, 7.3926, 7.3932, 7.3937, 7.3943, 7.3942, 7.3947, 7.3945, 7.3942, 7.3948, 7.3945, 7.3943, 7.395, 7.3947, 7.3944, 7.3941, 7.3939, 7.3936, 7.3933, 7.3947, 7.3952, 7.3958, 7.3955, 7.3954, 7.3945, 7.3942, 7.3939, 7.3936, 7.3935, 7.3941, 7.3947, 7.3944, 7.3945, 7.3941, 7.3947, 7.3945, 7.3942, 7.3939, 7.3936, 7.3934, 7.3931, 7.3928, 7.3925, 7.3949, 7.3955, 7.396, 7.3957, 7.3954, 7.3952, 7.395, 7.3981, 7.3988, 7.3984, 7.3981, 7.3978, 7.3976, 7.3974, 7.3979, 7.3976, 7.3981, 7.3978, 7.3975, 7.3981, 7.397], '192.168.122.111': [5.5203, 5.7406, 5.6441, 5.5844, 5.5586, 5.5335, 4.8352, 4.9926, 5.0299, 5.4073, 5.4008, 5.4405, 5.4289, 5.9474, 5.9114, 6.2096, 6.1824, 6.1345, 6.4143, 6.6354, 6.5804, 6.778, 6.7236, 6.688, 6.8543, 6.7992, 6.7627, 6.7314, 6.5167, 6.6588, 6.6297, 6.6128, 6.5766, 6.6963, 6.6669, 6.6449, 6.6209, 6.5968, 6.5719, 6.6955, 6.7919, 6.767, 6.7552, 6.8534, 6.8314, 6.7083, 6.6859, 6.668, 6.7526, 6.7308, 6.7043, 6.6852, 6.6634, 6.6415, 6.6339, 6.619, 6.6038, 6.4987, 6.4876, 6.4709, 6.4513, 6.4309, 6.419, 6.4199, 6.4042, 6.4049, 6.3982, 6.3819, 6.3731, 6.3651, 6.3743, 6.5072, 6.5787, 6.573, 6.5668, 6.5506, 6.54, 6.4638, 6.4546, 6.4465, 6.4371, 6.4297, 6.4181, 6.4194, 6.4276, 6.4178, 6.4723, 6.5222, 6.6361, 6.7104, 6.7032, 6.6885, 6.6746, 6.7226, 6.7088, 6.7359, 6.7561, 6.7501, 6.7461, 6.7349, 6.7892, 6.7313, 6.7756, 6.7607, 6.718, 6.715, 6.7528, 6.7397, 6.7432, 6.7336, 6.7709, 6.8075, 6.8483, 6.8347, 6.8272, 6.8613, 6.8533, 6.8474, 6.8428, 6.8303, 6.9054, 6.8931, 6.9688, 6.9975, 7.0395, 7.0479, 7.0392, 7.027, 7.0135, 7.0011, 6.9522, 6.9423, 6.934, 6.9635, 6.9513, 6.9493, 6.9422, 6.9992, 6.9872, 6.9751, 6.9638, 6.9881, 7.0135, 7.009, 7.0844, 7.0715, 7.0603, 7.0486, 7.0402, 7.0318, 7.0278, 7.0501, 7.0727, 7.0618, 7.0518, 7.0116, 7.0018, 6.9971, 6.986, 6.9791, 7.0184, 7.042, 7.1309, 7.1661, 7.2176, 7.2403, 7.2377, 7.2418, 7.2598, 7.2514, 7.2406, 7.2468, 7.2458, 7.2354, 7.2655, 7.3438, 7.3058, 7.2947, 7.2876, 7.2806, 7.273, 7.2641, 7.2536, 7.2734, 7.268, 7.2595, 7.2504, 7.2407, 7.2412, 7.2323, 7.2262, 7.2671, 7.2905, 7.2814, 7.2719, 7.2906, 7.3083, 7.2988, 7.2892, 7.2816, 7.2736, 7.291, 7.2852, 7.2569, 7.2481, 7.2444, 7.2376, 7.2339, 7.2309, 7.2247, 7.2287, 7.2198, 7.2116, 7.2277, 7.2451, 7.2617, 7.2539, 7.2254, 7.2171, 7.2137, 7.2108, 7.2274, 7.2926, 7.3243, 7.2991, 7.3133, 7.3057, 7.2969, 7.2904, 7.2987, 7.3334, 7.3329, 7.3264, 7.3191, 7.3128, 7.3044, 7.2987, 7.2901, 7.283, 7.2752, 7.2689, 7.2953, 7.2871, 7.2807, 7.278, 7.2924, 7.2859, 7.2783, 7.2746, 7.2667, 7.2806, 7.2726, 7.286, 7.2805, 7.2725, 7.2653, 7.278, 7.2714, 7.2661, 7.2587, 7.2567, 7.2514, 7.2441, 7.2365, 7.2486, 7.2634, 7.2768, 7.2695, 7.2828, 7.2779, 7.2905, 7.2837, 7.2769, 7.2696, 7.2636, 7.2565, 7.2695, 7.2638, 7.314, 7.3074, 7.3019, 7.295, 7.288, 7.2831, 7.2777, 7.2711, 7.266, 7.2615, 7.2544, 7.2525, 7.2479, 7.2605, 7.2561, 7.2518, 7.2458, 7.2411, 7.235, 7.2288, 7.2235, 7.2174, 7.2136, 7.2108, 7.2051, 7.1988, 7.1947, 7.2065, 7.2021, 7.2011, 7.1955, 7.2074, 7.2017, 7.1964, 7.1905, 7.1855, 7.1815, 7.1765, 7.1762, 7.1889, 7.1831, 7.1854, 7.197, 7.1919, 7.1872, 7.1823, 7.2192, 7.2153, 7.2122, 7.212, 7.207, 7.2365, 7.232, 7.229, 7.2237, 7.2205, 7.2153, 7.2105, 7.2076, 7.2079, 7.2032, 7.1982, 7.195, 7.2029, 7.1988, 7.21, 7.2048, 7.1998, 7.1991, 7.1944, 7.189, 7.1843, 7.1941, 7.1887, 7.1845, 7.1806, 7.1771, 7.1734, 7.1831, 7.1939, 7.2041, 7.1997, 7.1944, 7.1909, 7.1864, 7.1681, 7.1733, 7.1702, 7.1656, 7.1631, 7.159, 7.1541, 7.1535, 7.1544, 7.1498, 7.1595, 7.1556, 7.1508, 7.1599, 7.1555, 7.1851, 7.1939, 7.1897, 7.1866, 7.1965, 7.1922, 7.1883, 7.1834, 7.1783, 7.1737, 7.1702, 7.1796, 7.1949, 7.2112, 7.2102, 7.2255, 7.221, 7.2346, 7.2301, 7.2267, 7.2231, 7.2193, 7.2147, 7.2107, 7.2063, 7.2016, 7.199, 7.2069, 7.2025, 7.2114, 7.2077, 7.2032, 7.199, 7.1944, 7.1898, 7.1877, 7.1967, 7.1945, 7.1915, 7.1876, 7.1836, 7.1801, 7.1756, 7.1963, 7.1932, 7.1893, 7.1852, 7.1809, 7.1888, 7.1976, 7.2052, 7.2023, 7.2103, 7.2064, 7.2145, 7.212, 7.2082, 7.2037, 7.2008, 7.1988, 7.1946, 7.1908, 7.1867, 7.1839, 7.1805, 7.1773, 7.1735, 7.1722, 7.1805, 7.1777, 7.1851, 7.1808, 7.18, 7.1768, 7.1916, 7.1888, 7.1984, 7.1967, 7.2064, 7.2033, 7.2006, 7.2085, 7.2057, 7.2019, 7.1981, 7.206, 7.2134, 7.199, 7.2064, 7.2034, 7.2003, 7.1965, 7.1924, 7.1893, 7.177, 7.1637, 7.1612, 7.1594, 7.1682, 7.1647, 7.1512, 7.1493, 7.1574, 7.1541, 7.1625, 7.1596, 7.1672, 7.1639, 7.1507, 7.1471, 7.1543, 7.1526, 7.1498, 7.1365, 7.1331, 7.1297, 7.1271, 7.1238, 7.1204, 7.117, 7.1136, 7.1206, 7.1186, 7.1449, 7.1413, 7.1399, 7.1363, 7.1327, 7.1294, 7.1273, 7.1244, 7.1122, 7.1197, 7.1178, 7.1254, 7.1229, 7.1195, 7.1182, 7.1156, 7.1059, 7.1033, 7.1002, 7.0981, 7.0858, 7.0733, 7.0811, 7.0786, 7.0767, 7.0751, 7.0799, 7.0875, 7.0857, 7.0835, 7.0822, 7.0794, 7.0871, 7.0935, 7.1005, 7.1077, 7.1168, 7.1141, 7.111, 7.1083, 7.1064, 7.1042, 7.1115, 7.1101, 7.1077, 7.1375, 7.1471, 7.1439, 7.1414, 7.1294, 7.138, 7.1351, 7.1317, 7.1376, 7.1342, 7.131, 7.1291, 7.1283, 7.1265, 7.1239, 7.1207, 7.1192, 7.1166, 7.1142, 7.122, 7.1198, 7.1174, 7.1152, 7.1228, 7.1287, 7.1254, 7.1322, 7.1306, 7.1284, 7.1264, 7.1255, 7.1226, 7.12, 7.126, 7.1335, 7.1321, 7.1292, 7.126, 7.132, 7.1304, 7.1281, 7.1252, 7.131, 7.1281, 7.126, 7.1233, 7.1302, 7.1274, 7.1337, 7.1322, 7.1294, 7.1277, 7.1339, 7.1314, 7.1382, 7.1374, 7.1433, 7.1406, 7.1299, 7.1273, 7.1258, 7.1237, 7.1211, 7.1122, 7.119, 7.1086, 7.1055, 7.1025, 7.1001, 7.0972, 7.0954, 7.093, 7.0997, 7.0969, 7.0953, 7.1018, 7.0995, 7.1061, 7.1037, 7.1014, 7.099, 7.0916, 7.0891, 7.0959, 7.1115, 7.1096, 7.1085, 7.1061, 7.104, 7.1097, 7.1069, 7.1042, 7.1012, 7.1073, 7.1048, 7.1034, 7.1014, 7.0998, 7.0973, 7.0971, 7.0946, 7.092, 7.0899, 7.0874, 7.0848, 7.0822, 7.0803, 7.0785, 7.0758, 7.0741, 7.0718, 7.0692, 7.0667, 7.0643, 7.0618, 7.0591, 7.0566, 7.0786, 7.0842, 7.0825, 7.0805, 7.0781, 7.0836, 7.0912, 7.0893, 7.0873, 7.0863, 7.0918, 7.0908, 7.0891, 7.0799, 7.078, 7.0948, 7.0922, 7.0899, 7.1033, 7.1104, 7.1159, 7.1135, 7.1115, 7.1094, 7.1068, 7.1121, 7.1115, 7.1117, 7.1173, 7.1147, 7.1201, 7.1251, 7.1225, 7.12, 7.1248, 7.123, 7.1204, 7.1179, 7.1183, 7.1164, 7.119, 7.119, 7.1189, 7.1242, 7.1295, 7.1284, 7.1345, 7.1326, 7.133, 7.1382, 7.1405, 7.1382, 7.1358, 7.1343, 7.1321, 7.1299, 7.1281, 7.1256, 7.131, 7.1296, 7.1275, 7.1338, 7.1384, 7.1359, 7.1415, 7.1467, 7.1449, 7.1573, 7.1481, 7.1464, 7.1526, 7.1569, 7.1617, 7.1595, 7.1706, 7.168, 7.1655, 7.163, 7.1755, 7.195, 7.1932, 7.1978, 7.2027, 7.2007, 7.1987, 7.1972, 7.2093, 7.2141, 7.2053, 7.203, 7.2011, 7.2128, 7.2109, 7.2047, 7.2023, 7.2002, 7.1977, 7.196, 7.195, 7.1924, 7.1923, 7.1902, 7.2109, 7.2168, 7.2226, 7.2269, 7.2248, 7.2225, 7.2303, 7.2292, 7.2205, 7.2187, 7.2235, 7.2218, 7.2238, 7.2286, 7.2338, 7.2316, 7.2293, 7.2269, 7.2247, 7.2237, 7.2212, 7.2206, 7.2183, 7.2229, 7.2212, 7.2201, 7.2184, 7.2169, 7.2217, 7.2264, 7.2311, 7.2288, 7.2204, 7.2202, 7.2206, 7.2183, 7.2166, 7.2144, 7.2187, 7.2163, 7.2232, 7.221, 7.2188, 7.2174, 7.2225, 7.2269, 7.2246, 7.2225, 7.2268, 7.2267, 7.2185, 7.217, 7.2149, 7.2128, 7.2108, 7.2092, 7.2069, 7.2117, 7.2097, 7.2077, 7.206, 7.2106, 7.2085, 7.2071, 7.2122, 7.2101, 7.2085, 7.2069, 7.2047, 7.2026, 7.1959, 7.2089, 7.2136, 7.2201, 7.2403, 7.2382, 7.2529, 7.2515, 7.2553, 7.253, 7.2507, 7.2485, 7.2587, 7.2566, 7.261, 7.2647, 7.263, 7.261, 7.2653, 7.264, 7.2681, 7.2721, 7.2703, 7.2745, 7.2728, 7.277, 7.2807, 7.2789, 7.2897, 7.2883, 7.2862, 7.2839, 7.2816, 7.2854, 7.2841, 7.2829, 7.2812, 7.2807, 7.28, 7.278, 7.2767, 7.2747, 7.2726, 7.2657, 7.2702, 7.2626, 7.2667, 7.2652, 7.2577, 7.2618, 7.2598, 7.2577, 7.2554, 7.2534, 7.2573, 7.2614, 7.2593, 7.2635, 7.2618, 7.261, 7.2668, 7.2649, 7.2711, 7.2829, 7.281, 7.2857, 7.2837, 7.2815, 7.2799, 7.2779, 7.276, 7.274, 7.2718, 7.2697, 7.268, 7.2666, 7.2706, 7.2689, 7.267, 7.2706, 7.271, 7.2747, 7.2727, 7.2793, 7.2771, 7.2754, 7.2737, 7.2775, 7.2813, 7.2902, 7.2881, 7.2866, 7.2964, 7.2943, 7.298, 7.2962, 7.2943, 7.2927, 7.2922, 7.2901, 7.2889, 7.2874, 7.2853, 7.2892, 7.2872, 7.2855, 7.2837, 7.2875, 7.2853, 7.2832, 7.2813, 7.2887, 7.2873, 7.2854, 7.2889, 7.2883, 7.2861, 7.286, 7.2887, 7.2822, 7.2803, 7.2793, 7.2831, 7.2888, 7.2867, 7.2797, 7.2778, 7.2718, 7.2784, 7.2765, 7.2746, 7.2734, 7.2714, 7.2699, 7.2739, 7.2737, 7.2725, 7.2706, 7.2637, 7.2617, 7.2621, 7.2612, 7.2651, 7.2632, 7.262, 7.2657, 7.2645, 7.2629, 7.2612, 7.2653, 7.2636, 7.2624, 7.2611, 7.2592, 7.2573, 7.2565, 7.2549, 7.2531, 7.2556, 7.2539, 7.2473, 7.2457, 7.2439, 7.2421, 7.2405, 7.2452, 7.2434, 7.2416, 7.2397, 7.2379, 7.2362, 7.2346, 7.2333, 7.2324, 7.236, 7.2342, 7.2324, 7.2357, 7.234, 7.2328, 7.2311, 7.234, 7.2381, 7.2417, 7.2402, 7.2438, 7.2477, 7.2512, 7.2493, 7.2476, 7.2458, 7.2442, 7.2477, 7.2529, 7.2564, 7.2552, 7.254, 7.2525, 7.251, 7.2495, 7.2485, 7.2473, 7.2457, 7.2446, 7.2479, 7.2517, 7.2502, 7.2483, 7.2469, 7.2502, 7.2486, 7.2469, 7.2453, 7.2487, 7.2471, 7.2458, 7.244, 7.2421, 7.2405, 7.2391, 7.2375, 7.2359, 7.2341, 7.2324, 7.2315, 7.2356, 7.2342, 7.2329, 7.2369, 7.2405, 7.2386, 7.2371, 7.2403, 7.2396, 7.2429, 7.2411, 7.2449, 7.2483, 7.2465, 7.25, 7.2482, 7.2514, 7.2496, 7.2568, 7.2556, 7.2539, 7.2521, 7.2508, 7.249, 7.2473, 7.2456, 7.2441, 7.2432, 7.2419, 7.2401, 7.2389, 7.2421, 7.2409, 7.2442, 7.2429, 7.2413, 7.2399, 7.2384, 7.2367, 7.24, 7.2383, 7.2367, 7.2396, 7.2379, 7.2366, 7.235, 7.2338, 7.2368, 7.2352, 7.2338, 7.2371, 7.2406, 7.2389, 7.2378, 7.2368, 7.2402, 7.2389, 7.2377, 7.2359, 7.2345, 7.2337, 7.2417, 7.2448, 7.2432, 7.2469, 7.2465, 7.2448, 7.2479, 7.2468, 7.2451, 7.2486, 7.2518, 7.255, 7.2534, 7.2521, 7.2512, 7.2542, 7.2576, 7.2568, 7.2556, 7.2539, 7.253, 7.2563, 7.2593, 7.2581, 7.2564, 7.255, 7.2534, 7.2475, 7.2464, 7.245, 7.2443, 7.2427, 7.2454, 7.2445, 7.2475, 7.2463, 7.2447, 7.2431, 7.2418, 7.241, 7.2397, 7.2381, 7.2429, 7.2419, 7.2408, 7.2438, 7.2468, 7.2499, 7.2495, 7.2525, 7.2554, 7.2544, 7.2531, 7.2521, 7.251, 7.25, 7.2486, 7.2471, 7.2502, 7.2491, 7.2478, 7.251, 7.2497, 7.2529, 7.2517, 7.2573, 7.2603, 7.2591, 7.2622, 7.2607, 7.2601, 7.2589, 7.2576, 7.2563, 7.2548, 7.2578, 7.2584, 7.2613, 7.26, 7.2634, 7.2621, 7.265, 7.2686, 7.2714, 7.2709, 7.2696, 7.2679, 7.2708, 7.274, 7.2732, 7.2716, 7.2703, 7.2687, 7.2717, 7.2703, 7.2735, 7.2789, 7.2778, 7.2763, 7.2752, 7.274, 7.277, 7.2756, 7.2746, 7.2761, 7.279, 7.2777, 7.2922, 7.2914, 7.2943, 7.293, 7.2922, 7.2908, 7.294, 7.2972, 7.3057, 7.3043, 7.3075, 7.3062, 7.3089, 7.3075, 7.3065, 7.3093, 7.3081, 7.3068, 7.3053, 7.3048, 7.3077, 7.3062, 7.3093, 7.3078, 7.3109, 7.3138, 7.3127, 7.3112, 7.314, 7.3135, 7.3119, 7.3116, 7.3105, 7.3095, 7.3082, 7.308, 7.3064, 7.3048, 7.3077, 7.3026, 7.3014, 7.3041, 7.2988, 7.2978, 7.2967, 7.2957, 7.2943, 7.2929, 7.2923, 7.295, 7.2935, 7.2965, 7.2953, 7.294, 7.2947, 7.2954, 7.2947, 7.2933, 7.2918, 7.2948, 7.2938, 7.2925, 7.2996, 7.2984, 7.2971, 7.3003, 7.2992, 7.2978, 7.2964, 7.2953, 7.2994, 7.2981, 7.2969, 7.296, 7.2954, 7.2983, 7.2968, 7.2954, 7.294, 7.2927, 7.2914, 7.2985, 7.2974, 7.2961, 7.2949, 7.2933, 7.2919, 7.2908, 7.2901, 7.2889, 7.2878, 7.2863, 7.2853, 7.2842, 7.2838, 7.2824, 7.2846, 7.2831, 7.2823, 7.2851, 7.284, 7.2826, 7.2814, 7.2802, 7.2829, 7.283, 7.2822, 7.2849, 7.2835, 7.282, 7.2856, 7.2842, 7.2868, 7.2854, 7.2883, 7.2907, 7.2894, 7.2889, 7.2875, 7.2864, 7.2853, 7.2842, 7.2831, 7.282, 7.281, 7.2836, 7.2834, 7.2858, 7.2884, 7.2874, 7.2861, 7.2885, 7.2874, 7.2861, 7.2848, 7.2833, 7.2822, 7.2809, 7.28, 7.2791, 7.2776, 7.2762, 7.2755, 7.2741, 7.2731, 7.2724, 7.2756, 7.278, 7.2767, 7.2794, 7.278, 7.2767, 7.2754, 7.278, 7.2766, 7.2752, 7.2743, 7.2732, 7.2769, 7.2758, 7.2745, 7.2698, 7.2685, 7.271, 7.2735, 7.2722, 7.2708, 7.2697, 7.2682, 7.2708, 7.2732, 7.2757, 7.2782, 7.2768, 7.2758, 7.2748, 7.2737, 7.2723, 7.2749, 7.2809, 7.2798, 7.2905, 7.2928, 7.2954, 7.2977, 7.2966, 7.2957, 7.2949, 7.2941, 7.2963, 7.2953, 7.2939, 7.2925, 7.2919, 7.2909, 7.2901, 7.2928, 7.2919, 7.2944, 7.2932, 7.2925, 7.2914, 7.2901, 7.2926, 7.2912, 7.2898, 7.2884, 7.2908, 7.2933, 7.2961, 7.3022, 7.3009, 7.3033, 7.3058, 7.3048, 7.3041, 7.2995, 7.2983, 7.3007, 7.3018, 7.3015, 7.3017, 7.3015, 7.3008, 7.2997, 7.2985, 7.2972, 7.2996, 7.2983, 7.2971, 7.2958, 7.2952, 7.3052, 7.304, 7.3029, 7.3019, 7.3009, 7.2996, 7.2983, 7.2969, 7.2956, 7.2945, 7.2935, 7.2959, 7.2949, 7.2944, 7.2935, 7.2964, 7.295, 7.2938, 7.2928, 7.2917, 7.2872, 7.2861, 7.2848, 7.2835, 7.2822, 7.2811, 7.2798, 7.2785, 7.2771, 7.2759, 7.2753, 7.2746, 7.274, 7.2734, 7.2757, 7.2787, 7.2777, 7.2807, 7.2798, 7.2821, 7.2809, 7.2796, 7.2792, 7.278, 7.2769, 7.2763, 7.2755, 7.2747, 7.2739, 7.2731, 7.2719, 7.2741, 7.2764, 7.2754, 7.2745, 7.2736, 7.2762, 7.2785, 7.2778, 7.2807, 7.283, 7.2817, 7.2809, 7.2797, 7.282, 7.2807, 7.283, 7.2787, 7.2775, 7.2798, 7.2821, 7.281, 7.28, 7.2789, 7.2778, 7.2767, 7.2755, 7.2743, 7.2733, 7.2722, 7.2711, 7.2703, 7.273, 7.272, 7.2742, 7.2733, 7.2758, 7.2749, 7.2771, 7.2795, 7.289, 7.288, 7.2869, 7.2856, 7.2846, 7.2842, 7.2831, 7.299, 7.2979, 7.3002, 7.2989, 7.2981, 7.2969, 7.296, 7.2947, 7.2937, 7.2929, 7.2921, 7.2913, 7.2878, 7.2866, 7.2855, 7.2853, 7.2878, 7.2869, 7.2927, 7.2886, 7.291, 7.2903, 7.2897, 7.2917, 7.2906, 7.2895, 7.2886, 7.2875, 7.2865, 7.2856, 7.2847, 7.2837, 7.2857, 7.2888, 7.2911, 7.2901, 7.2924, 7.2911, 7.2898, 7.289, 7.2878, 7.2866, 7.2857, 7.2877, 7.2897, 7.2919, 7.294, 7.2962, 7.2983, 7.3005, 7.2996, 7.3018, 7.3006, 7.3028, 7.3016, 7.3006, 7.2996, 7.3017, 7.2975, 7.3013, 7.3035, 7.3022, 7.3016, 7.3004, 7.2992, 7.2984, 7.2975, 7.2996, 7.3016, 7.3005, 7.2994, 7.2982, 7.3001, 7.2989, 7.2978, 7.2966, 7.2954, 7.2946, 7.2937, 7.2934, 7.2923, 7.2946, 7.2934, 7.2922, 7.2914, 7.2934, 7.2925, 7.2947, 7.2935, 7.299, 7.3011, 7.3, 7.299, 7.2989, 7.2977, 7.2999, 7.2987, 7.2975, 7.2997, 7.3061, 7.3086, 7.3108, 7.3133, 7.3153, 7.3142, 7.3132, 7.3157, 7.3251, 7.3244, 7.3234, 7.3224, 7.3214, 7.3233, 7.3232, 7.3192, 7.3152, 7.3144, 7.3132, 7.3152, 7.3172, 7.3167, 7.3155, 7.3176, 7.3164, 7.3152, 7.3172, 7.3192, 7.3212, 7.32, 7.322, 7.3214, 7.3235, 7.3224, 7.3242, 7.329, 7.3285, 7.3304, 7.3297, 7.332, 7.3341, 7.3338, 7.3327, 7.3348, 7.3338, 7.336, 7.3357, 7.3377, 7.3417, 7.3473, 7.3502, 7.3491, 7.3481, 7.3522, 7.3511, 7.3529, 7.3563, 7.3553, 7.3582, 7.358, 7.3568, 7.3556, 7.3517, 7.3536, 7.3557, 7.3549, 7.3612, 7.3634, 7.3622, 7.3616, 7.3607, 7.3629, 7.3617, 7.3612, 7.3601, 7.3561, 7.3522, 7.3511, 7.3529, 7.3521, 7.3512, 7.3539, 7.351, 7.3562, 7.3553, 7.3602, 7.3591, 7.3614, 7.3637, 7.3626, 7.3647, 7.3636, 7.3624, 7.3613, 7.3616, 7.3637, 7.3627, 7.3647, 7.3638, 7.3632, 7.362, 7.3609, 7.3628, 7.3645, 7.3675, 7.3762, 7.3752, 7.3771, 7.3759, 7.375, 7.3744, 7.377, 7.3792, 7.3789, 7.3783, 7.3774, 7.3764, 7.3936, 7.3926, 7.3918, 7.3949, 7.3937, 7.396, 7.3954, 7.3943, 7.3932, 7.3925, 7.3995, 7.3958, 7.3959, 7.3976, 7.3965, 7.3928, 7.3917, 7.3906, 7.3927, 7.3916, 7.3879, 7.3903, 7.39, 7.3889, 7.3881, 7.387, 7.3889, 7.3851, 7.3865, 7.3857, 7.3847, 7.3867, 7.3857, 7.3874, 7.3896, 7.3914, 7.3948, 7.3939, 7.3986, 7.3978, 7.3971, 7.3993, 7.3983, 7.3975, 7.3964, 7.3927, 7.3916, 7.3906, 7.3895, 7.3912, 7.3917, 7.3907, 7.3927, 7.3918, 7.3911, 7.3931, 7.3924, 7.3917, 7.3905, 7.3896, 7.3859, 7.3852, 7.3815, 7.3808, 7.3797, 7.3787, 7.3807, 7.3827, 7.3845, 7.3834, 7.3825, 7.3816, 7.3778, 7.377, 7.3761, 7.3752, 7.3769, 7.3757, 7.3746, 7.3738, 7.3728, 7.3746, 7.374, 7.374, 7.3703, 7.3697, 7.3693, 7.3686, 7.3676, 7.3695, 7.3685, 7.3675, 7.3665, 7.3656, 7.3646, 7.3648, 7.364, 7.3659, 7.3676, 7.3746, 7.3736, 7.3726, 7.3716, 7.3734, 7.3725, 7.3744, 7.3735, 7.3726, 7.3745, 7.3738, 7.3729, 7.3722, 7.3711, 7.3701, 7.369, 7.3682, 7.3671, 7.366, 7.3678, 7.3697, 7.3688, 7.3678, 7.367, 7.3689, 7.3678, 7.3667, 7.3657, 7.3649, 7.3639, 7.3629, 7.3619, 7.3638, 7.3654, 7.3647, 7.3637, 7.3634, 7.3624, 7.3616, 7.3634, 7.3625, 7.3614, 7.3604, 7.3594, 7.3586, 7.3603, 7.3596, 7.3614, 7.3579, 7.3571, 7.3684, 7.3673, 7.3664, 7.3654, 7.362, 7.361, 7.3612, 7.3631, 7.3654, 7.3646, 7.3664, 7.3654, 7.3647, 7.3638, 7.3656, 7.3673, 7.3695, 7.366, 7.3652, 7.365, 7.3615, 7.3605, 7.3596, 7.3589, 7.358, 7.3573, 7.3563, 7.356, 7.3551, 7.3569, 7.356, 7.3577, 7.3595, 7.3612, 7.3629, 7.3673, 7.3667, 7.3682, 7.3675, 7.3667, 7.3658, 7.3702, 7.3723, 7.374, 7.3758, 7.3749, 7.3767, 7.3811, 7.3828, 7.3874, 7.3864, 7.3854, 7.387, 7.387, 7.386, 7.385, 7.3867, 7.3884, 7.3875, 7.3891, 7.3908, 7.3898, 7.392, 7.391, 7.3902, 7.3894, 7.3911, 7.3902, 7.3919, 7.391, 7.3934, 7.3925, 7.3942, 7.3933, 7.3922, 7.3914, 7.3905, 7.3898, 7.3887, 7.3879, 7.3898, 7.3888, 7.3878, 7.3869, 7.3858, 7.3851, 7.3818, 7.3817, 7.3836, 7.3854, 7.3844, 7.386, 7.3878, 7.387, 7.3887, 7.3876, 7.4024, 7.4019, 7.4011, 7.4, 7.3991, 7.3983, 7.3973, 7.3989, 7.3955, 7.3946, 7.3938, 7.3954, 7.3974, 7.3964, 7.3981, 7.3998, 7.3989, 7.3979, 7.3968, 7.3957, 7.3947, 7.3964, 7.3982, 7.3983, 7.398, 7.3972, 7.3939, 7.3929, 7.3919, 7.3961, 7.3953, 7.3943, 7.3934, 7.3925, 7.3917, 7.3907, 7.3899, 7.3889, 7.3907, 7.3877, 7.3867, 7.3857, 7.3847, 7.384, 7.3832, 7.3824, 7.3918, 7.3909, 7.3899, 7.3889, 7.388, 7.3896, 7.3888, 7.3906, 7.3897, 7.3914, 7.3904, 7.3921, 7.3938, 7.3963, 7.3954, 7.3971, 7.3966, 7.3957, 7.3947, 7.3938, 7.3929, 7.392, 7.3911, 7.3906, 7.3896, 7.3864, 7.3854, 7.3846, 7.3837, 7.3829, 7.3821, 7.3815, 7.3809, 7.3802, 7.3819, 7.3809, 7.3829, 7.3822, 7.3812, 7.3805, 7.3796, 7.3813, 7.3803, 7.382, 7.3811, 7.3828, 7.3845, 7.3836, 7.3853, 7.3844, 7.3838, 7.3831, 7.3821, 7.3815, 7.3805, 7.3796, 7.3811, 7.3802, 7.382, 7.3838, 7.3832, 7.3824, 7.3865, 7.3881, 7.3896, 7.3886, 7.3881, 7.3897, 7.3888, 7.3983, 7.3999, 7.3995, 7.3988, 7.4035, 7.4051, 7.4044, 7.4037, 7.4032, 7.4047, 7.4037, 7.4031, 7.4023, 7.4014, 7.4005, 7.3995, 7.3989, 7.3982, 7.3973, 7.3967, 7.3959, 7.3951, 7.3945, 7.396, 7.3955, 7.3945, 7.3935, 7.3926, 7.3918, 7.3936, 7.3928, 7.392, 7.3915, 7.3898, 7.3891, 7.39, 7.3891, 7.3888, 7.3878, 7.387, 7.3865, 7.3859, 7.3853, 7.3892, 7.391, 7.3928, 7.392, 7.3938, 7.3932, 7.3924, 7.3915, 7.3933, 7.3927, 7.3918, 7.3887, 7.3878, 7.3893, 7.3888, 7.3881, 7.3873, 7.3866, 7.386, 7.3851, 7.3847, 7.3863, 7.3856, 7.3851, 7.3868, 7.3861, 7.3854, 7.3846, 7.384, 7.3831, 7.3823, 7.3815, 7.3809, 7.3804, 7.3797, 7.3766, 7.3785, 7.3776, 7.3767, 7.376, 7.3752, 7.3744, 7.3761, 7.3776, 7.3774, 7.3767, 7.3761, 7.3754, 7.3724, 7.3739, 7.3732, 7.3725, 7.3718, 7.3735, 7.3726, 7.3722, 7.3713, 7.3705, 7.3696, 7.3712, 7.3703, 7.3697, 7.3712, 7.3707, 7.3724, 7.3716, 7.3734, 7.3727, 7.3722, 7.3715, 7.3685, 7.3657, 7.3627, 7.3642, 7.3641, 7.3633, 7.3625, 7.3621, 7.3612, 7.3606, 7.3622, 7.3636, 7.3629, 7.364, 7.3678, 7.3675, 7.3666, 7.3659, 7.365, 7.3641, 7.3634, 7.3625, 7.3616, 7.361, 7.3624, 7.3615, 7.3612, 7.3677, 7.3693, 7.3685, 7.3659, 7.365, 7.3665, 7.3659, 7.365, 7.3643, 7.3639, 7.3633, 7.3648, 7.3662, 7.3655, 7.3647, 7.364, 7.3631, 7.3624, 7.3616, 7.3611, 7.3603, 7.3596, 7.3587, 7.358, 7.3596, 7.3587, 7.3601, 7.3595, 7.361, 7.3627, 7.3618, 7.3611, 7.3625, 7.3641, 7.3657, 7.3671, 7.3662, 7.3656, 7.3671, 7.3673, 7.3665, 7.368, 7.3672, 7.3664, 7.3681, 7.3679, 7.3672, 7.3663, 7.3654, 7.3668, 7.3684, 7.3678, 7.367, 7.3664, 7.3656, 7.365, 7.3642, 7.3635, 7.3628, 7.362, 7.3612, 7.3627, 7.3629, 7.3621, 7.3615, 7.363, 7.3622, 7.3651, 7.3645, 7.3637, 7.3629, 7.3621, 7.3613, 7.3605, 7.3597, 7.3589, 7.3581, 7.3596, 7.3619, 7.3612, 7.3605, 7.3598, 7.3613, 7.3627, 7.3626, 7.3621, 7.3614, 7.3609, 7.3601, 7.3594, 7.3587, 7.358, 7.3572, 7.3588, 7.3581, 7.3574, 7.3566, 7.3561, 7.3576, 7.3595, 7.3567, 7.3581, 7.3596, 7.3588, 7.3603, 7.3595, 7.3587, 7.3601, 7.3595, 7.361, 7.3624, 7.3616, 7.3609, 7.3607, 7.36, 7.3593, 7.3586, 7.358, 7.3572, 7.3568, 7.3561, 7.3553, 7.3547, 7.354, 7.3534, 7.3528, 7.3519, 7.3514, 7.3507, 7.3498, 7.3494, 7.3486, 7.3477, 7.3469, 7.3461, 7.3452, 7.3466, 7.3481, 7.3495, 7.3504, 7.3495, 7.3487, 7.3478, 7.347, 7.3484, 7.3476, 7.349, 7.3482, 7.3496, 7.3489, 7.3462, 7.3473, 7.3467, 7.3461, 7.3511, 7.3524, 7.3547, 7.354, 7.3534, 7.3533, 7.3526, 7.3518, 7.351, 7.3502, 7.3494, 7.3508, 7.3501, 7.3496, 7.349, 7.3482, 7.3474, 7.3466, 7.3463, 7.3477, 7.347, 7.3463, 7.3455, 7.3447, 7.344, 7.3434, 7.343, 7.3443, 7.3435, 7.3427, 7.3419, 7.3411, 7.3535, 7.3528, 7.3523, 7.3536, 7.355, 7.3541, 7.3533, 7.3546, 7.356, 7.3575, 7.3567, 7.3559, 7.3575, 7.3567, 7.3559, 7.3553, 7.3586, 7.3558, 7.3553, 7.3545, 7.3537, 7.355, 7.3542, 7.3536, 7.3529, 7.3523, 7.3515, 7.3531, 7.3527, 7.3519, 7.3514, 7.3487, 7.348, 7.3473, 7.3464, 7.3477, 7.345, 7.3442, 7.3455, 7.3469, 7.3465, 7.346, 7.3457, 7.3449, 7.3441, 7.3433, 7.3427, 7.342, 7.3434, 7.3431, 7.3426, 7.344, 7.3432, 7.3446, 7.3438, 7.3435, 7.343, 7.3443, 7.3436, 7.3431, 7.3405, 7.3419, 7.3414, 7.3407, 7.3404, 7.3401, 7.3398, 7.3394, 7.3393, 7.3385, 7.3399, 7.3392, 7.3385, 7.3378, 7.3371, 7.3363, 7.3377, 7.3372, 7.3365, 7.3358, 7.335, 7.3363, 7.3377, 7.3372, 7.3365, 7.3357, 7.335, 7.3364, 7.3357, 7.3356, 7.3348, 7.334, 7.3333, 7.3327, 7.3321, 7.3315, 7.3309, 7.3303, 7.3316, 7.3309, 7.3302, 7.3297, 7.3315, 7.3329, 7.3322, 7.3317, 7.331, 7.3306, 7.3319, 7.3314, 7.331, 7.3324, 7.3317, 7.3311, 7.3308, 7.3322, 7.3335, 7.333, 7.3322, 7.3336, 7.333, 7.3323, 7.3319, 7.3313, 7.3307, 7.3302, 7.3296, 7.3291, 7.3292, 7.3285, 7.3282, 7.3288, 7.3281, 7.3295, 7.3288, 7.3283, 7.3275, 7.3268, 7.3281, 7.3275, 7.3271, 7.3266, 7.3259, 7.3251, 7.3245, 7.324, 7.3232, 7.3245, 7.3237, 7.3231, 7.3267, 7.3263, 7.3257, 7.3235, 7.3248, 7.3257, 7.3249, 7.3242, 7.3234, 7.3247, 7.324, 7.3233, 7.3208, 7.32, 7.3192, 7.3205, 7.3218, 7.3211, 7.3242, 7.3274, 7.3267, 7.3261, 7.3259, 7.3257, 7.3289, 7.3325, 7.3301, 7.3352, 7.3347, 7.3339, 7.3331, 7.3384, 7.3377, 7.3375, 7.3369, 7.3363, 7.3377, 7.3391, 7.3384, 7.3376, 7.339, 7.3404, 7.3459, 7.3471, 7.3525, 7.3538, 7.3533, 7.3527, 7.3519, 7.3532, 7.353, 7.3552, 7.3576, 7.3588, 7.3582, 7.3595, 7.3608, 7.3604, 7.3601, 7.3593, 7.3612, 7.3608, 7.3602, 7.3617, 7.361, 7.3624, 7.3646, 7.3639, 7.3633, 7.3626, 7.362, 7.3614, 7.3607, 7.3601, 7.3594, 7.3605, 7.3601, 7.3594, 7.3588, 7.3582, 7.3575, 7.3568, 7.3561, 7.3575, 7.3586, 7.3579, 7.3573, 7.3567, 7.3562, 7.3556, 7.355, 7.3543, 7.3556, 7.3549, 7.3569, 7.3562, 7.3557, 7.3551, 7.3526, 7.3528, 7.3504, 7.3506, 7.3501, 7.3544, 7.3523, 7.352, 7.3516, 7.3508, 7.35, 7.3529, 7.3525, 7.352, 7.3512, 7.3506, 7.3499, 7.3492, 7.3488, 7.3484, 7.3516, 7.3512, 7.3507, 7.3503, 7.3498, 7.3492, 7.3484, 7.3497, 7.349, 7.3502, 7.3496, 7.3513, 7.3506, 7.35, 7.3512, 7.3505, 7.3498, 7.3491, 7.349, 7.3483, 7.3483, 7.3572, 7.3567, 7.356, 7.3555, 7.3548, 7.3543, 7.3576, 7.3569, 7.3562, 7.3562, 7.3555, 7.3548, 7.354, 7.3552, 7.3545, 7.3557, 7.3551, 7.3563, 7.3575, 7.3568, 7.3563, 7.3582, 7.3558, 7.357, 7.3581, 7.3575, 7.3569, 7.3604, 7.3615, 7.3611, 7.3616, 7.361, 7.3603, 7.3605, 7.3598, 7.3612, 7.3606, 7.3599, 7.3594, 7.3587, 7.3581, 7.3557, 7.355, 7.3543, 7.3556, 7.355, 7.3562, 7.3555, 7.3548, 7.356, 7.3573, 7.3566, 7.3583, 7.3595, 7.3588, 7.3581, 7.3574, 7.3567, 7.356, 7.3573, 7.3585, 7.3578, 7.3571, 7.3578, 7.359, 7.3604, 7.3597, 7.359, 7.3602, 7.3614, 7.3626, 7.3638, 7.3631, 7.3623, 7.3619, 7.3612, 7.3605, 7.3618, 7.3611, 7.3606, 7.3602, 7.3603, 7.3597, 7.361, 7.3623, 7.3616, 7.361, 7.3603, 7.3596, 7.3591, 7.3588, 7.3581, 7.3579, 7.3591, 7.3584, 7.358, 7.3573, 7.3584, 7.3577, 7.3589, 7.3601, 7.3614, 7.3651, 7.3665, 7.3678, 7.373, 7.3725, 7.372, 7.375, 7.3744, 7.3737, 7.373, 7.3742, 7.3736, 7.3729, 7.3743, 7.3736, 7.3729, 7.3722, 7.3717, 7.3712, 7.3724, 7.3718, 7.3712, 7.3688, 7.3681, 7.3694, 7.3688, 7.3699, 7.3694, 7.367, 7.3682, 7.3676, 7.3669, 7.3663, 7.3677, 7.369, 7.3684, 7.3677, 7.3688, 7.3701, 7.3743, 7.3736, 7.373, 7.3723, 7.3717, 7.3711, 7.3705, 7.3718, 7.3731, 7.3725, 7.3719, 7.3713, 7.3708, 7.3704, 7.3698, 7.3691, 7.3684, 7.3677, 7.3688, 7.3684, 7.368, 7.3673, 7.3669, 7.3662, 7.3673, 7.3684, 7.3678, 7.3672, 7.3701, 7.3695, 7.3726, 7.3719, 7.3695, 7.3693, 7.3689, 7.3682, 7.3676, 7.3671, 7.3681, 7.3674, 7.367, 7.3663, 7.3673, 7.3666, 7.3659, 7.3654, 7.3648, 7.366, 7.366, 7.3655, 7.3666, 7.3659, 7.367, 7.3663, 7.3657, 7.3652, 7.3648, 7.3642, 7.3655, 7.365, 7.3662, 7.3674, 7.3667, 7.366, 7.3655, 7.365, 7.3644, 7.3639, 7.3651, 7.3644, 7.3656, 7.3651, 7.3646, 7.3642, 7.3635, 7.3629, 7.3644, 7.3639, 7.3633, 7.363, 7.3625, 7.3619, 7.3615, 7.3608, 7.3602, 7.3579, 7.3578, 7.3579, 7.3594, 7.3591, 7.3586, 7.358, 7.3576, 7.3589, 7.3583, 7.3645, 7.3656, 7.3634, 7.3612, 7.3605, 7.3598, 7.3629, 7.3641, 7.3638, 7.3634, 7.3667, 7.3661, 7.3657, 7.3653, 7.3665, 7.3659, 7.3653, 7.3649, 7.3662, 7.3673, 7.3667, 7.3678, 7.3671, 7.3668, 7.368, 7.3691, 7.3687, 7.3698, 7.3709, 7.3704, 7.3699, 7.3693, 7.369, 7.3684, 7.3679, 7.3672, 7.3665, 7.3678, 7.3709, 7.3716, 7.3709, 7.3703, 7.3698, 7.3693, 7.371, 7.3688, 7.3682, 7.3677, 7.3673, 7.3685, 7.368, 7.3673, 7.3666, 7.3661, 7.3674, 7.3669, 7.3662, 7.3655, 7.3666, 7.3659, 7.3654, 7.3648, 7.3661, 7.3655, 7.3633, 7.3628, 7.364, 7.3633, 7.3628, 7.3639, 7.3633, 7.3628, 7.3659, 7.3653, 7.3646, 7.3641, 7.3635, 7.3629, 7.3642, 7.3636, 7.3629, 7.3624, 7.3618, 7.363, 7.3624, 7.3636, 7.3632, 7.3627, 7.3639, 7.3634, 7.3646, 7.3641, 7.3635, 7.3632, 7.3626, 7.362, 7.3669, 7.3664, 7.3682, 7.3694, 7.3689, 7.3685, 7.368, 7.3674, 7.3686, 7.3698, 7.3693, 7.3687, 7.3682, 7.3675, 7.3668, 7.368, 7.3675, 7.3672, 7.3667, 7.3663, 7.3674, 7.3669, 7.3664, 7.3659, 7.3654, 7.3647, 7.3641, 7.3653, 7.3647, 7.3641, 7.3619, 7.3613, 7.3608, 7.3737, 7.375, 7.3746, 7.3742, 7.3736, 7.3748, 7.3742, 7.3735, 7.3729, 7.374, 7.3752, 7.375, 7.3744, 7.3739, 7.3752, 7.3763, 7.3742, 7.3737, 7.3749, 7.3761, 7.3739, 7.3735, 7.3731, 7.3741, 7.3737, 7.3748, 7.3759, 7.3771, 7.3766, 7.3779, 7.3773, 7.3766, 7.3777, 7.3773, 7.3767, 7.3763, 7.3757, 7.3788, 7.3805, 7.3801, 7.3796, 7.3807, 7.3805, 7.3798, 7.3793, 7.3788, 7.3789, 7.3786, 7.378, 7.3774, 7.3786, 7.3779, 7.3773, 7.3767, 7.3761, 7.3755, 7.3749, 7.3744, 7.3775, 7.3769, 7.3781, 7.3778, 7.379, 7.3784, 7.3778, 7.3772, 7.3766, 7.3762, 7.3757, 7.375, 7.3761, 7.3755, 7.3748, 7.3742, 7.3737, 7.3749, 7.3759, 7.3755, 7.3803, 7.3815, 7.381, 7.3805, 7.3819, 7.3832, 7.3827, 7.3822, 7.3837, 7.3836, 7.3836, 7.3831, 7.3841, 7.3836, 7.3831, 7.3824, 7.3822, 7.3815, 7.3809, 7.3805, 7.3799, 7.3797, 7.3791, 7.377, 7.3765, 7.3777, 7.3771, 7.3765, 7.3759, 7.3753, 7.3748, 7.3744, 7.3766, 7.376, 7.3754, 7.3749, 7.3745, 7.374, 7.375, 7.3761, 7.3756, 7.375, 7.3747, 7.3741, 7.3736, 7.3735, 7.373, 7.3725, 7.3718, 7.3757, 7.3768, 7.3761, 7.3789, 7.3787, 7.3782, 7.3777, 7.3771, 7.3765, 7.3776, 7.3773, 7.3767, 7.3763, 7.3763, 7.3759, 7.3786, 7.378, 7.3774, 7.3785, 7.3796, 7.379, 7.3784, 7.3796, 7.3807, 7.3801, 7.3812, 7.3807, 7.3802, 7.3796, 7.3777, 7.3771, 7.3766, 7.3778, 7.3772, 7.3766, 7.376, 7.3754, 7.3765, 7.3775, 7.3769, 7.3763, 7.3758, 7.3751, 7.3746, 7.374, 7.3736, 7.3747, 7.3742, 7.3736, 7.373, 7.3741, 7.3739, 7.3737, 7.3731, 7.3742, 7.3736, 7.3732, 7.3744, 7.3739, 7.3751, 7.3745, 7.3741, 7.3752, 7.3748, 7.3744, 7.374, 7.3734, 7.3728, 7.3725, 7.3724, 7.3735, 7.3731, 7.3741, 7.3774, 7.377, 7.378, 7.3774, 7.3784, 7.3778, 7.3788, 7.3782, 7.3779, 7.3773, 7.3787, 7.3787, 7.3799, 7.3811, 7.3808, 7.3817, 7.3812, 7.3807, 7.3802, 7.3797, 7.3792, 7.3787, 7.3782, 7.3794, 7.3805, 7.3802, 7.3796, 7.3792, 7.3789, 7.3785, 7.3781, 7.3775, 7.377, 7.3764, 7.3777, 7.3771, 7.3766, 7.3776, 7.377, 7.3798, 7.3806, 7.38, 7.3795, 7.379, 7.3785, 7.378, 7.3775, 7.3785, 7.3795, 7.3791, 7.3785, 7.3779, 7.3773, 7.3768, 7.3762, 7.3772, 7.3767, 7.3762, 7.3756, 7.3754, 7.3765, 7.3761, 7.3772, 7.3783, 7.3777, 7.3787, 7.3781, 7.3791, 7.3788, 7.3784, 7.3778, 7.3772, 7.3765, 7.3761, 7.3757, 7.3767, 7.3763, 7.3775, 7.377, 7.3782, 7.3778, 7.3772, 7.3769, 7.3764, 7.3775, 7.3771, 7.3766, 7.3778, 7.3774, 7.3768, 7.3763, 7.3759, 7.3754, 7.375, 7.3746, 7.3742, 7.3739, 7.375, 7.3745, 7.3739, 7.3735, 7.373, 7.3741, 7.3751, 7.3762, 7.3756, 7.3752, 7.3746, 7.3741, 7.3751, 7.3782, 7.3765, 7.3762, 7.3757, 7.3752, 7.3746, 7.374, 7.3751, 7.3731, 7.3726, 7.372, 7.3714, 7.3708, 7.3703, 7.3715, 7.3725, 7.3719, 7.3717, 7.3713, 7.3707, 7.372, 7.3731, 7.3728, 7.3724, 7.3705, 7.3715, 7.3725, 7.3721, 7.3717, 7.3711, 7.3706, 7.3687, 7.3697, 7.3695, 7.3705, 7.37, 7.3699, 7.3695, 7.3696, 7.3692, 7.3686, 7.3682, 7.3682, 7.3679, 7.3674, 7.3671, 7.3721, 7.3734, 7.3731, 7.3727, 7.3725, 7.3721, 7.3731, 7.3742, 7.3738, 7.3732, 7.3726, 7.372, 7.37, 7.3681, 7.3666, 7.3662, 7.3656, 7.3639, 7.3633, 7.3628, 7.3637, 7.3632, 7.3641, 7.3635, 7.3646, 7.3641, 7.3635, 7.3629, 7.3626, 7.3623, 7.3678, 7.369, 7.3686, 7.368, 7.3689, 7.367, 7.3666, 7.366, 7.3656, 7.3651, 7.3647, 7.3644, 7.3639, 7.3636, 7.3645, 7.3661, 7.3656, 7.3652, 7.3648, 7.3644, 7.3638, 7.3648, 7.3658, 7.3654, 7.3683, 7.3677, 7.3673, 7.3668, 7.3677, 7.3671, 7.368, 7.3689, 7.3683, 7.3677, 7.3686, 7.368, 7.3675, 7.3656, 7.3661, 7.3657, 7.3667, 7.3662, 7.3656, 7.3651, 7.366, 7.3654, 7.3648, 7.3658, 7.3654, 7.3649, 7.3644, 7.3638, 7.3634, 7.3629, 7.3624, 7.3619, 7.3615, 7.361, 7.3605, 7.3601, 7.36, 7.3596, 7.3606, 7.3602, 7.3612, 7.3608, 7.3605, 7.36, 7.361, 7.3605, 7.3588, 7.3583, 7.3579, 7.3574, 7.3555, 7.3538, 7.3534, 7.3544, 7.3555, 7.355, 7.356, 7.3574, 7.3583, 7.3578, 7.3572, 7.3553, 7.355, 7.3544, 7.3554, 7.3548, 7.3558, 7.3539, 7.3555, 7.3551, 7.3545, 7.3558, 7.3552, 7.3547, 7.3556, 7.3551, 7.3548, 7.3545, 7.3558, 7.3552, 7.3547, 7.3543, 7.3537, 7.352, 7.3515, 7.351, 7.3504, 7.3501, 7.3511, 7.3506, 7.3501, 7.3495, 7.3537, 7.3535, 7.3544, 7.3553, 7.3549, 7.3544, 7.3539, 7.3535, 7.3531, 7.3528, 7.3539, 7.3534, 7.3531, 7.3527, 7.3524, 7.3521, 7.3516, 7.3511, 7.3506, 7.3501, 7.3498, 7.3494, 7.349, 7.35, 7.3495, 7.349, 7.3486, 7.3481, 7.3491, 7.3486, 7.3481, 7.3463, 7.3458, 7.3453, 7.3448, 7.3445, 7.3459, 7.3459, 7.3454, 7.3451, 7.3447, 7.3456, 7.3466, 7.3462, 7.3459, 7.3453, 7.3447, 7.3443, 7.3451, 7.3446, 7.3442, 7.3437, 7.3433, 7.3428, 7.3439, 7.345, 7.3447, 7.3444, 7.3439, 7.345, 7.3445, 7.344, 7.3449, 7.3458, 7.344, 7.3422, 7.3432, 7.3427, 7.3422, 7.3432, 7.3426, 7.3421, 7.3418, 7.3413, 7.3408, 7.3403, 7.3401, 7.3396, 7.3391, 7.3373, 7.3355, 7.3365, 7.3375, 7.337, 7.3379, 7.3375, 7.3358, 7.3354, 7.3349, 7.3343, 7.3338, 7.3347, 7.3345, 7.3341, 7.3337, 7.3333, 7.3342, 7.3337, 7.335, 7.3345, 7.334, 7.3335, 7.3331, 7.3341, 7.3367, 7.3366, 7.336, 7.3361, 7.3346, 7.3341, 7.3336, 7.3387, 7.3382, 7.3391, 7.3385, 7.3395, 7.339, 7.3388, 7.3383, 7.3391, 7.3393, 7.339, 7.3388, 7.3384, 7.3382, 7.3376, 7.3384, 7.3387, 7.3369, 7.3364, 7.3359, 7.3343, 7.3339, 7.3337, 7.3332, 7.3327, 7.3322, 7.3318, 7.3313, 7.331, 7.3306, 7.3301, 7.3283, 7.3298, 7.3292, 7.3289, 7.3284, 7.3279, 7.3274, 7.3271, 7.3266, 7.3263, 7.3266, 7.3261, 7.3256, 7.3242, 7.3238, 7.3235, 7.3231, 7.3227, 7.3223, 7.3207, 7.3202, 7.3197, 7.3206, 7.3229, 7.3224, 7.3219, 7.3228, 7.3237, 7.3248, 7.3243, 7.3252, 7.3261, 7.3272, 7.3281, 7.3263, 7.3258, 7.3253, 7.3249, 7.3245, 7.324, 7.3272, 7.3254, 7.3292, 7.3289, 7.3285, 7.328, 7.3275, 7.327, 7.3279, 7.3287, 7.3284, 7.3294, 7.3298, 7.3295, 7.3291, 7.3286, 7.3308, 7.3303, 7.3312, 7.3307, 7.3303, 7.3298, 7.3294, 7.3276, 7.3271, 7.3266, 7.3261, 7.3256, 7.3251, 7.326, 7.3255, 7.3264, 7.3264, 7.326, 7.3255, 7.3263, 7.326, 7.327, 7.3265, 7.326, 7.327, 7.3265, 7.326, 7.3255, 7.3265, 7.3282, 7.329, 7.3286, 7.3281, 7.3289, 7.3303, 7.3299, 7.3295, 7.3305, 7.3302, 7.3309, 7.3305, 7.3302, 7.3298, 7.3294, 7.329, 7.33, 7.3309, 7.3308, 7.3324, 7.3319, 7.3315, 7.331, 7.3307, 7.3303, 7.3313, 7.3311, 7.332, 7.3315, 7.3311, 7.3306, 7.3302, 7.3298, 7.3323, 7.3318, 7.3313, 7.3308, 7.3308, 7.3304, 7.33, 7.3295, 7.3291, 7.3286, 7.3282, 7.3278, 7.3286, 7.3281, 7.3277, 7.3273, 7.3281, 7.3276, 7.3276, 7.327, 7.3279, 7.3276, 7.3261, 7.3259, 7.3255, 7.3267, 7.3263, 7.3258, 7.3255, 7.3264, 7.3283, 7.3279, 7.3326, 7.335, 7.3377, 7.3406, 7.3414, 7.3409, 7.3418, 7.3413, 7.3409, 7.3404, 7.34, 7.3396, 7.3393, 7.3388, 7.34, 7.3395, 7.339, 7.3399, 7.3395, 7.3391, 7.339, 7.3399, 7.3385, 7.338, 7.3376, 7.3386, 7.3398, 7.3406, 7.3407, 7.3402, 7.3398, 7.3407, 7.3443, 7.3438, 7.3446, 7.3456, 7.3451, 7.346, 7.3455, 7.3464, 7.3472, 7.3467, 7.3462, 7.3458, 7.3454, 7.3449, 7.3444, 7.3453, 7.3449, 7.3457, 7.3453, 7.3448, 7.3444, 7.3427, 7.3436, 7.3431, 7.344, 7.3448, 7.3456, 7.3452, 7.3461, 7.3458, 7.3467, 7.3463, 7.3458, 7.3453, 7.3449, 7.3444, 7.3453, 7.3449, 7.3444, 7.3442, 7.3438, 7.3433, 7.3429, 7.3439, 7.3423, 7.3419, 7.3487, 7.3484, 7.3479, 7.3476, 7.3475, 7.3507, 7.3503, 7.3499, 7.351, 7.3521, 7.3518, 7.3513, 7.3508, 7.3516, 7.3512, 7.3521, 7.353, 7.3525, 7.3521, 7.3516, 7.3512, 7.3507, 7.3503, 7.3499, 7.3495, 7.349, 7.35, 7.3495, 7.349, 7.3485, 7.3494, 7.3489, 7.3484, 7.3479, 7.3475, 7.347, 7.3466, 7.3461, 7.3456, 7.3452, 7.3448, 7.3432, 7.3433, 7.3442, 7.3458, 7.3441, 7.3425, 7.3421, 7.343, 7.3426, 7.3422, 7.3431, 7.3428, 7.3437, 7.3437, 7.3432, 7.3428, 7.3426, 7.3421, 7.3421, 7.3429, 7.3437, 7.3432, 7.3427, 7.3414, 7.341, 7.3419, 7.3415, 7.3411, 7.342, 7.3405, 7.3401, 7.3396, 7.3391, 7.3399, 7.3395, 7.3404, 7.3438, 7.3433, 7.3442, 7.3439, 7.3436, 7.3432, 7.3441, 7.347, 7.3465, 7.3492, 7.3521, 7.3518, 7.3513, 7.3523, 7.3588, 7.3584, 7.3593, 7.3616, 7.3614, 7.361, 7.3608, 7.3604, 7.3628, 7.3638, 7.3633, 7.3646, 7.3643, 7.3639, 7.3647, 7.3642, 7.3639, 7.3639, 7.3648, 7.3645, 7.3642, 7.3638, 7.3646, 7.3643, 7.3639, 7.3634, 7.3618, 7.3616, 7.3611, 7.3606, 7.3608, 7.3606, 7.3615, 7.3638, 7.3635, 7.3631, 7.3628, 7.3676, 7.3675, 7.3672, 7.3668, 7.3664, 7.3672, 7.3667, 7.3662, 7.3657, 7.3653, 7.3649, 7.3644, 7.3661, 7.3669, 7.3665, 7.3661, 7.3657, 7.3652, 7.3647, 7.3645, 7.3653, 7.365, 7.3646, 7.3643, 7.3641, 7.3636, 7.3632, 7.3642, 7.3637, 7.3635, 7.363, 7.3627, 7.3622, 7.3621, 7.3629, 7.3637, 7.3632, 7.3629, 7.3626, 7.3622, 7.362, 7.3631, 7.3629, 7.3625, 7.3621, 7.3617, 7.3616, 7.3613, 7.3609, 7.3617, 7.3613, 7.3609, 7.3617, 7.3626, 7.3624, 7.3635, 7.3619, 7.3604, 7.3612, 7.3607, 7.3602, 7.3597, 7.3581, 7.3576, 7.3571, 7.3567, 7.3577, 7.3585, 7.3589, 7.3585, 7.3569, 7.3553, 7.3561, 7.3578, 7.3574, 7.3571, 7.3567, 7.3563, 7.3558, 7.3554, 7.3552, 7.3562, 7.3557, 7.3542, 7.355, 7.3559, 7.3555, 7.3576, 7.3574, 7.3583, 7.3578, 7.3574, 7.3582, 7.3577, 7.3573, 7.3569, 7.3579, 7.3574, 7.3581, 7.3586, 7.3595, 7.359, 7.3586, 7.3595, 7.359, 7.3586, 7.3581, 7.3577, 7.3573, 7.357, 7.3565, 7.3574, 7.3583, 7.3581, 7.3578, 7.3575, 7.3571, 7.3555, 7.3563, 7.3559, 7.3556, 7.3564, 7.3561, 7.3557, 7.3552, 7.3548, 7.3544, 7.354, 7.3548, 7.3545, 7.3541, 7.3539, 7.3546, 7.3541, 7.3538, 7.3534, 7.3529, 7.3537, 7.3532, 7.3527, 7.3522, 7.353, 7.3528, 7.3525, 7.3521, 7.3517, 7.3513, 7.3499, 7.3494, 7.349, 7.3486, 7.3481, 7.3478, 7.3504, 7.3514, 7.35, 7.3508, 7.3505, 7.35, 7.3495, 7.3491, 7.3487, 7.3483, 7.3496, 7.3492, 7.35, 7.3497, 7.3493, 7.3488, 7.3496, 7.3491, 7.3487, 7.3483, 7.3491, 7.3486, 7.3484, 7.3482, 7.3478, 7.3487, 7.3483, 7.3492, 7.3487, 7.3496, 7.3492, 7.3488, 7.3485, 7.3481, 7.3477, 7.3473, 7.348, 7.3475, 7.347, 7.3467, 7.3452, 7.3448, 7.3444, 7.3439, 7.3423, 7.342, 7.3416, 7.3424, 7.3433, 7.3439, 7.3438, 7.3435, 7.3431, 7.3429, 7.3437, 7.3444, 7.3441, 7.3436, 7.3432, 7.344, 7.3435, 7.3433, 7.3431, 7.3426, 7.3411, 7.3395, 7.339, 7.3399, 7.3406, 7.3402, 7.3397, 7.3394, 7.339, 7.3386, 7.3382, 7.3378, 7.3373, 7.3369, 7.3365, 7.336, 7.3369, 7.3365, 7.3361, 7.3357, 7.3353, 7.3348, 7.3343, 7.3343, 7.3352, 7.335, 7.3358, 7.3367, 7.3363, 7.3371, 7.3366, 7.3374, 7.3369, 7.3364, 7.3362, 7.3357, 7.3354, 7.3352, 7.3352, 7.3361, 7.3346, 7.3342, 7.3339, 7.3348, 7.3345, 7.3353, 7.3349, 7.3345, 7.333, 7.3325, 7.3333, 7.333, 7.3331, 7.3327, 7.3323, 7.3333, 7.3328, 7.3324, 7.3344, 7.3345, 7.3341, 7.3341, 7.3339, 7.3323, 7.3307, 7.3303, 7.3311, 7.333, 7.3327, 7.3323, 7.3331, 7.3339, 7.3335, 7.3343, 7.3328, 7.3325, 7.332, 7.3341, 7.3338, 7.3346, 7.3354, 7.3362, 7.3358, 7.3366, 7.3362, 7.3358, 7.3353, 7.3361, 7.3368, 7.3371, 7.3367, 7.3363, 7.336, 7.3357, 7.3352, 7.3361, 7.3356, 7.3352, 7.3359, 7.3356, 7.3351, 7.3347, 7.3355, 7.3351, 7.3359, 7.3367, 7.3363, 7.3359, 7.3354, 7.3351, 7.3347, 7.3343, 7.3339, 7.3335, 7.3331, 7.3328, 7.3324, 7.3321, 7.3306, 7.333, 7.3326, 7.3322, 7.3327, 7.3334, 7.333, 7.3327, 7.3323, 7.3331, 7.3338, 7.3335, 7.3333, 7.3329, 7.3314, 7.331, 7.3309, 7.3308, 7.334, 7.3335, 7.3343, 7.3339, 7.3372, 7.3378, 7.339, 7.3386, 7.3382, 7.339, 7.3386, 7.3393, 7.3403, 7.3399, 7.3394, 7.3389, 7.3386, 7.3383, 7.339, 7.3397, 7.3404, 7.3412, 7.3408, 7.3405, 7.34, 7.3407, 7.3402, 7.3401, 7.3397, 7.3392, 7.3392, 7.3389, 7.3385, 7.3393, 7.339, 7.3387, 7.3384, 7.3391, 7.3403, 7.34, 7.3397, 7.3404, 7.34, 7.3395, 7.3393, 7.3402, 7.341, 7.3405, 7.3401, 7.341, 7.3406, 7.3404, 7.3402, 7.3398, 7.3394, 7.3402, 7.3398, 7.3395, 7.3391, 7.3388, 7.3385, 7.3381, 7.3378, 7.3379, 7.3387, 7.3385, 7.3392, 7.34, 7.3399, 7.3396, 7.3383, 7.339, 7.3388, 7.3384, 7.338, 7.3376, 7.3372, 7.3369, 7.3366, 7.3364, 7.336, 7.3357, 7.3353, 7.3349, 7.3345, 7.3343, 7.3339, 7.3335, 7.333, 7.3337, 7.3335, 7.333, 7.3327, 7.3323, 7.3308, 7.3304, 7.329, 7.3287, 7.3283, 7.3281, 7.3289, 7.3296, 7.3293, 7.33, 7.3307, 7.3304, 7.33, 7.3296, 7.3292, 7.3288, 7.3284, 7.328, 7.3275, 7.3283, 7.329, 7.3297, 7.3292, 7.3287, 7.3283, 7.3279, 7.3284, 7.3281, 7.3277, 7.3273, 7.3269, 7.3266, 7.3262, 7.3271, 7.3268, 7.3253, 7.325, 7.3246, 7.3243, 7.3241, 7.3227, 7.3223, 7.3219, 7.3227, 7.3223, 7.3231, 7.3228, 7.3226, 7.3222, 7.3219, 7.3205, 7.3201, 7.3198, 7.3183, 7.318, 7.3179, 7.3177, 7.3185, 7.3182, 7.3187, 7.3182, 7.3179, 7.3175, 7.3161, 7.3157, 7.3164, 7.3161, 7.3168, 7.3165, 7.3174, 7.317, 7.3179, 7.3175, 7.3172, 7.318, 7.3188, 7.3185, 7.3185, 7.3181, 7.3178, 7.3175, 7.3173, 7.317, 7.3166, 7.3173, 7.3181, 7.3177, 7.3173, 7.3169, 7.3165, 7.3161, 7.3146, 7.3153, 7.3152, 7.3149, 7.3149, 7.3146, 7.3143, 7.3139, 7.317, 7.3177, 7.3174, 7.317, 7.3167, 7.3163, 7.3159, 7.3155, 7.3175, 7.3172, 7.3168, 7.3164, 7.3186, 7.3182, 7.3192, 7.3188, 7.3194, 7.3218, 7.3215, 7.3212, 7.3208, 7.3205, 7.3212, 7.3208, 7.3205, 7.3201, 7.3198, 7.3196, 7.3193, 7.3189, 7.3185, 7.3181, 7.3167, 7.3171, 7.3179, 7.3178, 7.3174, 7.3182, 7.3204, 7.3211, 7.3222, 7.3229, 7.3226, 7.3233, 7.324, 7.3237, 7.3233, 7.3219, 7.3216, 7.3212, 7.322, 7.3217, 7.3214, 7.3223, 7.3221, 7.3218, 7.3214, 7.321, 7.3218, 7.3216, 7.3212, 7.322, 7.3228, 7.3225, 7.3221, 7.3219, 7.3216, 7.3212, 7.3208, 7.3217, 7.3203, 7.3199, 7.3199, 7.3207, 7.3205, 7.3202, 7.3188, 7.3188, 7.3187, 7.3184, 7.3192, 7.319, 7.3187, 7.3188, 7.3184, 7.3181, 7.3183, 7.3191, 7.3179, 7.3175, 7.3182, 7.3193, 7.3191, 7.3188, 7.3184, 7.3183, 7.318, 7.3179, 7.3176, 7.3173, 7.317, 7.3166, 7.3162, 7.318, 7.3178, 7.3187, 7.3186, 7.3182, 7.3169, 7.3165, 7.3162, 7.3158, 7.3156, 7.3152, 7.3149, 7.3146, 7.3143, 7.314, 7.3136, 7.3133, 7.3129, 7.3128, 7.3136, 7.3144, 7.3141, 7.3127, 7.3123, 7.312, 7.3116, 7.3112, 7.3109, 7.3106, 7.3102, 7.311, 7.3106, 7.3103, 7.3099, 7.3085, 7.3084, 7.308, 7.3076, 7.3073, 7.3069, 7.3069, 7.3077, 7.3073, 7.308, 7.3076, 7.3072, 7.3069, 7.3065, 7.3061, 7.3057, 7.3054, 7.3061, 7.3068, 7.3065, 7.3073, 7.3069, 7.3066, 7.3062, 7.307, 7.3068, 7.3065, 7.3061, 7.3075, 7.3072, 7.307, 7.3066, 7.3063, 7.306, 7.3056, 7.3053, 7.304, 7.3048, 7.3054, 7.3063, 7.307, 7.3066, 7.3062, 7.305, 7.3058, 7.3045, 7.3041, 7.3043, 7.3041, 7.3049, 7.3045, 7.3042, 7.3041, 7.3038, 7.3034, 7.3031, 7.304, 7.3051, 7.3063, 7.3051, 7.3047, 7.3059, 7.306, 7.3056, 7.3052, 7.3048, 7.3055, 7.3052, 7.3049, 7.3035, 7.3084, 7.308, 7.3087, 7.3084, 7.3093, 7.3089, 7.3086, 7.3082, 7.3089, 7.3087, 7.3094, 7.3102, 7.31, 7.3096, 7.3093, 7.309, 7.3098, 7.3096, 7.3093, 7.3091, 7.3088, 7.3085, 7.3082, 7.3079, 7.3075, 7.3072, 7.3069, 7.3067, 7.3064, 7.3082, 7.309, 7.312, 7.3128, 7.3136, 7.3133, 7.314, 7.3149, 7.3156, 7.3152, 7.3148, 7.3144, 7.314, 7.3149, 7.3145, 7.3152, 7.3159, 7.3166, 7.3164, 7.316, 7.3146, 7.3133, 7.3129, 7.3125, 7.3122, 7.3118, 7.3114, 7.3121, 7.3117, 7.3114, 7.3112, 7.3112, 7.3108, 7.3095, 7.3112, 7.3119, 7.3128, 7.3141, 7.3138, 7.3135, 7.3143, 7.3142, 7.314, 7.3137, 7.3135, 7.3131, 7.313, 7.3129, 7.3125, 7.3133, 7.3143, 7.3139, 7.314, 7.3136, 7.3133, 7.3129, 7.3125, 7.3122, 7.3121, 7.3128, 7.3125, 7.3121, 7.3128, 7.3134, 7.3131, 7.3133, 7.313, 7.3117, 7.3113, 7.3127, 7.3158, 7.3155, 7.3151, 7.3148, 7.3148, 7.3147, 7.3143, 7.3139, 7.3136, 7.3132, 7.3128, 7.3125, 7.3121, 7.3128, 7.3125, 7.3122, 7.3118, 7.3115, 7.3112, 7.3119, 7.3126, 7.3122, 7.312, 7.3121, 7.3117, 7.3114, 7.3123, 7.312, 7.3117, 7.3103, 7.31, 7.3108, 7.3106, 7.3102, 7.3099, 7.3096, 7.3093, 7.31, 7.3097, 7.3094, 7.3102, 7.3099, 7.3106, 7.3113, 7.3109, 7.3108, 7.3115, 7.3111, 7.3108, 7.3104, 7.31, 7.3096, 7.3093, 7.3089, 7.3087, 7.3104, 7.3112, 7.3108, 7.3116, 7.3123, 7.3119, 7.3126, 7.3122, 7.3119, 7.3164, 7.316, 7.3156, 7.3152, 7.3149, 7.3157, 7.3153, 7.3159, 7.3166, 7.3162, 7.3158, 7.3154, 7.3161, 7.3157, 7.3164, 7.316, 7.3156, 7.3163, 7.316, 7.3157, 7.3144, 7.3141, 7.3148, 7.315, 7.3147, 7.3143, 7.3141, 7.3137, 7.3133, 7.3129, 7.3125, 7.3131, 7.3127, 7.3124, 7.312, 7.3116, 7.3112, 7.3109, 7.3107, 7.3103, 7.3102, 7.3089, 7.3085, 7.3081, 7.3077, 7.3074, 7.3072, 7.3068, 7.3065, 7.3061, 7.3057, 7.3054, 7.305, 7.3057, 7.3054, 7.3051, 7.3047, 7.3054, 7.3041, 7.3039, 7.3035, 7.3053, 7.3059, 7.3056, 7.3053, 7.306, 7.3056, 7.3063, 7.307, 7.3066, 7.3062, 7.3059, 7.3056, 7.3073, 7.307, 7.3066, 7.3065, 7.3073, 7.3069, 7.3067, 7.3074, 7.307, 7.3077, 7.3075, 7.3071, 7.3068, 7.3065, 7.3052, 7.3048, 7.3048, 7.3044, 7.3041, 7.3037, 7.3044, 7.3031, 7.3027, 7.3015, 7.3022, 7.3019, 7.3015, 7.3011, 7.3007, 7.3003, 7.3, 7.2997, 7.3006, 7.3014, 7.3021, 7.3028, 7.3035, 7.3031, 7.3029, 7.3036, 7.3033, 7.304, 7.3096, 7.3103, 7.3099, 7.3095, 7.3102, 7.3112, 7.3119, 7.3106, 7.3102, 7.3099, 7.3095, 7.3092, 7.3088, 7.3095, 7.3102, 7.3099, 7.3106, 7.3114, 7.3111, 7.3107, 7.3094, 7.309, 7.3087, 7.3084, 7.3081, 7.3078, 7.3075, 7.3072, 7.3069, 7.3066, 7.3063, 7.306, 7.3057, 7.3064, 7.3064, 7.3053, 7.3041, 7.3049, 7.3056, 7.3053, 7.3049, 7.3059, 7.3062, 7.3069, 7.3067, 7.3074, 7.307, 7.3067, 7.3064, 7.3061, 7.3057, 7.3053, 7.305, 7.3047, 7.3043, 7.304, 7.3036, 7.3033, 7.3029, 7.3036, 7.3033, 7.303, 7.3028, 7.3056, 7.3055, 7.3061, 7.3057, 7.3053, 7.3049, 7.3045, 7.3041, 7.3037, 7.3033, 7.3029, 7.3036, 7.3034, 7.3042, 7.3049, 7.3047, 7.3034, 7.304, 7.3037, 7.3044, 7.3041, 7.303, 7.3017, 7.3023, 7.303, 7.3027, 7.3023, 7.3019, 7.3016, 7.3012, 7.3008, 7.3005, 7.3003, 7.3002, 7.3001, 7.2998, 7.2994, 7.3, 7.3, 7.2998, 7.3006, 7.3013, 7.3011, 7.3007, 7.3003, 7.3, 7.3007, 7.3013, 7.302, 7.3028, 7.3025, 7.3021, 7.3028, 7.3025, 7.3022, 7.3029, 7.3026, 7.3045, 7.3042, 7.3038, 7.3035, 7.3032, 7.3028, 7.3024, 7.3021, 7.3028, 7.3024, 7.302, 7.3016, 7.3022, 7.3018, 7.3018, 7.3005, 7.3001, 7.2998, 7.2994, 7.3, 7.3007, 7.3004, 7.3011, 7.3008, 7.3004, 7.301, 7.3007, 7.3004, 7.3001, 7.3012, 7.3001, 7.2998, 7.2996, 7.3009, 7.3006, 7.3003, 7.3002, 7.2998, 7.2995, 7.2993, 7.3, 7.2988, 7.2987, 7.2988, 7.2985, 7.2985, 7.2991, 7.2989, 7.2986, 7.2987, 7.2974, 7.2985, 7.2981, 7.2994, 7.2991, 7.298, 7.2977, 7.2973, 7.3011, 7.303, 7.3037, 7.3035, 7.3037, 7.3038, 7.3048, 7.3045, 7.3055, 7.3103, 7.31, 7.3096, 7.3093, 7.3101, 7.3099, 7.3088, 7.3085, 7.3097, 7.3107, 7.3103, 7.3091, 7.309, 7.3088, 7.3086, 7.3083, 7.308, 7.308, 7.3077, 7.3114, 7.311, 7.3107, 7.3104, 7.3104, 7.3103, 7.311, 7.3108, 7.3106, 7.3124, 7.3131, 7.3128, 7.3125, 7.3122, 7.3119, 7.3126, 7.3144, 7.3141, 7.3138, 7.3164, 7.317, 7.3166, 7.3172, 7.3169, 7.3167, 7.3164, 7.316, 7.3157, 7.3153, 7.315, 7.3146, 7.3142, 7.3138, 7.3135, 7.3132, 7.3128, 7.3134, 7.313, 7.3137, 7.3144, 7.3151, 7.3147, 7.3144, 7.314, 7.3137, 7.3125, 7.3133, 7.3131, 7.3129, 7.3154, 7.3152, 7.3148, 7.3145, 7.3141, 7.3148, 7.3156, 7.3154, 7.3155, 7.3151, 7.3155, 7.3153, 7.3184, 7.318, 7.3177, 7.3176, 7.3172, 7.3178, 7.3176, 7.3172, 7.3161, 7.3167, 7.3184, 7.3191, 7.3187, 7.3184, 7.3182, 7.3188, 7.3185, 7.3197, 7.3194, 7.3191, 7.3202, 7.3202, 7.321, 7.3207, 7.3214, 7.3211, 7.3208, 7.3206, 7.3204, 7.3202, 7.3198, 7.3196, 7.3193, 7.32, 7.3201, 7.3198, 7.3194, 7.3192, 7.3199, 7.3187, 7.3184, 7.3189, 7.3186, 7.3192, 7.3198, 7.3196, 7.3223, 7.322, 7.3217, 7.3216, 7.3213, 7.3226, 7.3234, 7.323, 7.3226, 7.3234, 7.3232, 7.324, 7.3238, 7.3235, 7.3231, 7.3228, 7.3234, 7.323, 7.3227, 7.3224, 7.3249, 7.3246, 7.3242, 7.324, 7.3258, 7.3265, 7.3272, 7.3271, 7.3268, 7.3274, 7.328, 7.3276, 7.328, 7.3277, 7.3274, 7.3271, 7.3268, 7.3265, 7.3301, 7.3304, 7.3301, 7.33, 7.3297, 7.3294, 7.329, 7.3278, 7.3266, 7.3254, 7.3251, 7.3247, 7.3243, 7.3249, 7.3256, 7.3254, 7.3251, 7.3247, 7.3243, 7.324, 7.3238, 7.3235, 7.3241, 7.3238, 7.3236, 7.3243, 7.3239, 7.3245, 7.3242, 7.3239, 7.3236, 7.3242, 7.3239, 7.3236, 7.3233, 7.323, 7.3236, 7.3232, 7.3229, 7.3225, 7.3223, 7.322, 7.3218, 7.3215, 7.3212, 7.3209, 7.3226, 7.3223, 7.322, 7.3226, 7.3224, 7.3221, 7.3226, 7.3223, 7.322, 7.3228, 7.3225, 7.3222, 7.3221, 7.3218, 7.3224, 7.3221, 7.3228, 7.3224, 7.3222, 7.3219, 7.3217, 7.3215, 7.3222, 7.3219, 7.3226, 7.3223, 7.322, 7.3228, 7.3225, 7.3222, 7.321, 7.3216, 7.3212, 7.3209, 7.322, 7.3217, 7.3213, 7.321, 7.3208, 7.3206, 7.3203, 7.32, 7.3206, 7.3202, 7.3199, 7.3196, 7.3192, 7.319, 7.3188, 7.3185, 7.3181, 7.318, 7.3178, 7.3176, 7.3173, 7.3178, 7.3175, 7.3171, 7.3168, 7.3174, 7.3181, 7.3187, 7.3175, 7.3174, 7.3171, 7.3169, 7.3158, 7.3155, 7.3152, 7.315, 7.3148, 7.3145, 7.3143, 7.3142, 7.3139, 7.3145, 7.3142, 7.3138, 7.3135, 7.3132, 7.3129, 7.3125, 7.3122, 7.311, 7.3117, 7.3123, 7.3129, 7.3126, 7.3122, 7.3119, 7.3118, 7.3147, 7.3144, 7.3141, 7.3137, 7.3135, 7.3132, 7.3138, 7.3145, 7.3142, 7.3139, 7.3137, 7.3143, 7.3151, 7.3148, 7.3144, 7.314, 7.3137, 7.3134, 7.3131, 7.3129, 7.3126, 7.3125, 7.3121, 7.3125, 7.3122, 7.3118, 7.3115, 7.3111, 7.3109, 7.3108, 7.3105, 7.3102, 7.3099, 7.3087, 7.3084, 7.3082, 7.3079, 7.3077, 7.3074, 7.3071, 7.307, 7.3067, 7.3064, 7.3061, 7.3058, 7.3065, 7.3072, 7.3078, 7.3076, 7.3073, 7.307, 7.3067, 7.3065, 7.3061, 7.3059, 7.3056, 7.3062, 7.3059, 7.3056, 7.3054, 7.3051, 7.3048, 7.3045, 7.3042, 7.304, 7.3047, 7.3045, 7.3042, 7.3039, 7.3046, 7.3052, 7.305, 7.3056, 7.3055, 7.3081, 7.3106, 7.3112, 7.3132, 7.313, 7.3128, 7.3135, 7.3133, 7.313, 7.3127, 7.3125, 7.3123, 7.3121, 7.3109, 7.3134, 7.3141, 7.3147, 7.3144, 7.3151, 7.3148, 7.3157, 7.3154, 7.3164, 7.3161, 7.316, 7.3157, 7.3165, 7.3172, 7.3162, 7.316, 7.3176, 7.3192, 7.3191, 7.3198, 7.3196, 7.3214, 7.323, 7.3227, 7.3223, 7.322, 7.3217, 7.3215, 7.3213, 7.3211, 7.3207, 7.3204, 7.3209, 7.3215, 7.3221, 7.3218, 7.3215, 7.3212, 7.3218, 7.3219, 7.3215, 7.3212, 7.3209, 7.3207, 7.3205, 7.3202, 7.3209, 7.3206, 7.3212, 7.3219, 7.3216, 7.3224, 7.3221, 7.3209, 7.3209, 7.3207, 7.3204, 7.3201, 7.3198, 7.3196, 7.3194, 7.32, 7.3197, 7.3194, 7.3191, 7.3187, 7.3183, 7.3189, 7.3186, 7.322, 7.3217, 7.3214, 7.3211, 7.3218, 7.3215, 7.3221, 7.3218, 7.3224, 7.323, 7.3236, 7.3233, 7.323, 7.3237, 7.3243, 7.3249, 7.3255, 7.3261, 7.325, 7.3256, 7.3253, 7.3259, 7.3257, 7.3254, 7.3251, 7.3257, 7.3254, 7.3251, 7.3253, 7.325, 7.3248, 7.3246, 7.3243, 7.3247, 7.3244, 7.3242, 7.3239, 7.3236, 7.3237, 7.3236, 7.3234, 7.3231, 7.3229, 7.3226, 7.3223, 7.3221, 7.3218, 7.3214, 7.321, 7.3207, 7.3204, 7.3202, 7.3199, 7.3188, 7.3186, 7.3183, 7.318, 7.3187, 7.3185, 7.3182, 7.3179, 7.3176, 7.3174, 7.3181, 7.3178, 7.3176, 7.3173, 7.317, 7.3158, 7.3173, 7.3171, 7.3178, 7.3176, 7.3174, 7.3171, 7.3169, 7.3166, 7.3162, 7.3178, 7.3175, 7.3191, 7.3206, 7.3215, 7.3213, 7.3211, 7.3217, 7.3214, 7.3211, 7.3208, 7.3205, 7.3202, 7.3199, 7.3205, 7.3194, 7.3191, 7.3197, 7.3194, 7.3191, 7.3189, 7.3186, 7.3183, 7.318, 7.3186, 7.3184, 7.319, 7.3187, 7.3193, 7.3208, 7.3205, 7.3202, 7.32, 7.3198, 7.3195, 7.3192, 7.3189, 7.3187, 7.3184, 7.3181, 7.3178, 7.3177, 7.3174, 7.318, 7.3186, 7.3183, 7.3189, 7.3187, 7.3184, 7.3184, 7.3189, 7.3187, 7.3195, 7.3195, 7.3192, 7.319, 7.3195, 7.3192, 7.3189, 7.3196, 7.3184, 7.3182, 7.318, 7.3179, 7.3176, 7.3174, 7.318, 7.3177, 7.3174, 7.3171, 7.3177, 7.3175, 7.3181, 7.3187, 7.3184, 7.3182, 7.3179, 7.3176, 7.3176, 7.3173, 7.317, 7.3177, 7.3175, 7.3172, 7.3161, 7.3158, 7.3165, 7.3162, 7.3159, 7.3156, 7.3154, 7.316, 7.3167, 7.3164, 7.3161, 7.3158, 7.3156, 7.3153, 7.3151, 7.3157, 7.3154, 7.3152, 7.3159, 7.3157, 7.3155, 7.3152, 7.3149, 7.3154, 7.3152, 7.3149, 7.3146, 7.3143, 7.314, 7.3138, 7.3135, 7.3132, 7.313, 7.3127, 7.3133, 7.3131, 7.3128, 7.3126, 7.3132, 7.3121, 7.3118, 7.3115, 7.3121, 7.3118, 7.3116, 7.3115, 7.3105, 7.3102, 7.3099, 7.3096, 7.3102, 7.31, 7.3097, 7.3094, 7.3092, 7.3089, 7.3087, 7.3093, 7.3099, 7.3096, 7.3093, 7.3089, 7.3086, 7.3083, 7.308, 7.3077, 7.3074, 7.308, 7.3078, 7.3075, 7.3073, 7.3071, 7.3068, 7.3066, 7.3072, 7.3079, 7.3076, 7.3073, 7.3071, 7.3069, 7.3067, 7.3064, 7.3063, 7.306, 7.3066, 7.3063, 7.3062, 7.3059, 7.3057, 7.3054, 7.306, 7.3066, 7.3072, 7.307, 7.3067, 7.3065, 7.3062, 7.3059, 7.3066, 7.3063, 7.3061, 7.3067, 7.3064, 7.3061, 7.3059, 7.3056, 7.3054, 7.3051, 7.3048, 7.3046, 7.3045, 7.3044, 7.3041, 7.3038, 7.3035, 7.3032, 7.3039, 7.3045, 7.3034, 7.3031, 7.3028, 7.3025, 7.3014, 7.3012, 7.3027, 7.3024, 7.3031, 7.3028, 7.3019, 7.3016, 7.3023, 7.302, 7.3017, 7.3014, 7.3019, 7.3016, 7.3022, 7.3011, 7.3008, 7.3005, 7.3055, 7.3055, 7.3052, 7.3049, 7.3047, 7.3045, 7.3045, 7.3042, 7.3057, 7.3054, 7.3052, 7.3051, 7.3049, 7.3046, 7.3044, 7.3042, 7.3041, 7.3039, 7.3044, 7.3049, 7.3063, 7.3069, 7.3066, 7.3064, 7.3061, 7.3068, 7.3066, 7.3064, 7.3062, 7.306, 7.3057, 7.3054, 7.3062, 7.3059, 7.3057, 7.3054, 7.306, 7.3057, 7.3054, 7.3043, 7.304, 7.3037, 7.3034, 7.3023, 7.302, 7.3018, 7.3016, 7.3016, 7.3015, 7.3004, 7.2993, 7.2992, 7.2989, 7.2987, 7.2984, 7.2981, 7.2997, 7.2995, 7.3002, 7.3, 7.2997, 7.2994, 7.2991, 7.2988, 7.2985, 7.2983, 7.2972, 7.2969, 7.2975, 7.2973, 7.2962, 7.296, 7.2966, 7.2972, 7.2978, 7.2975, 7.2972, 7.2977, 7.2975, 7.3011, 7.301, 7.3008, 7.3006, 7.2997, 7.3012, 7.302, 7.3017, 7.3023, 7.302, 7.3026, 7.3031, 7.3029, 7.3026, 7.3024, 7.303, 7.3027, 7.3024, 7.3021, 7.3026, 7.3023, 7.3012, 7.3017, 7.3014, 7.3004, 7.3001, 7.3006, 7.2995, 7.3, 7.2997, 7.2994, 7.2993, 7.299, 7.2988, 7.2995, 7.2992, 7.299, 7.2987, 7.2993, 7.299, 7.2993, 7.299, 7.2987, 7.2985, 7.2982, 7.2971, 7.2961, 7.2959, 7.2956, 7.2961, 7.2958, 7.2955, 7.2944, 7.295, 7.2956, 7.2954, 7.2951, 7.295, 7.2947, 7.2945, 7.2943, 7.294, 7.2937, 7.2926, 7.2932, 7.2929, 7.2927, 7.2924, 7.2921, 7.2919, 7.2926, 7.2932, 7.2936, 7.2934, 7.296, 7.2983, 7.2981, 7.2979, 7.297, 7.2979, 7.2976, 7.2984, 7.299, 7.2995, 7.3006, 7.3014, 7.3021, 7.3021, 7.3022, 7.3032, 7.3031, 7.3037, 7.3044, 7.3053, 7.3054, 7.306, 7.3058, 7.3065, 7.3054, 7.3051, 7.305, 7.3048, 7.3054, 7.3051, 7.3048, 7.3046, 7.3049, 7.304, 7.3038, 7.3036, 7.3034, 7.3039, 7.3049, 7.3055, 7.3061, 7.3058, 7.3057, 7.3054, 7.3059, 7.3056, 7.3063, 7.306, 7.3066, 7.3072, 7.307, 7.3076, 7.3074, 7.3072, 7.3086, 7.3085, 7.3082, 7.3079, 7.3076, 7.3073, 7.3079, 7.3076, 7.3081, 7.3076, 7.3073, 7.3079, 7.3076, 7.3073, 7.3071, 7.3088, 7.3085, 7.3093, 7.309, 7.3087, 7.3087, 7.3076, 7.3082, 7.3079, 7.3076, 7.3074, 7.3071, 7.3077, 7.3074, 7.308, 7.307, 7.3076, 7.3073, 7.3087, 7.3087, 7.3101, 7.3102, 7.3108, 7.3114, 7.3119, 7.3116, 7.3114, 7.3114, 7.3111, 7.3116, 7.3113, 7.3112, 7.3109, 7.3106, 7.3103, 7.31, 7.3105, 7.3102, 7.3099, 7.3104, 7.3101, 7.3098, 7.3095, 7.31, 7.3108, 7.3097, 7.3101, 7.3098, 7.3096, 7.3086, 7.3099, 7.3109, 7.3115, 7.3112, 7.3109, 7.3114, 7.3103, 7.31, 7.3097, 7.3094, 7.3092, 7.3098, 7.3103, 7.3109, 7.3115, 7.312, 7.3125, 7.3122, 7.3119, 7.3125, 7.3123, 7.3129, 7.3126, 7.3123, 7.312, 7.3117, 7.3123, 7.3128, 7.3125, 7.3122, 7.3128, 7.3133, 7.313, 7.3135, 7.3133, 7.3138, 7.3135, 7.3132, 7.3129, 7.3126, 7.3123, 7.3128, 7.315, 7.3147, 7.3152, 7.3164, 7.3161, 7.3174, 7.3171, 7.3168, 7.3181, 7.3188, 7.3186, 7.3183, 7.3181, 7.3178, 7.3177, 7.3174, 7.3171, 7.3168, 7.3174, 7.3171, 7.3177, 7.3174, 7.3171, 7.3161, 7.3158, 7.3163, 7.316, 7.3157, 7.3154, 7.3151, 7.3148, 7.3153, 7.315, 7.3155, 7.3182, 7.318, 7.3177, 7.3175, 7.3178, 7.3183, 7.318, 7.3177, 7.3174, 7.3171, 7.3176, 7.3173, 7.3178, 7.3175, 7.3173, 7.317, 7.3167, 7.3165, 7.3162, 7.3167, 7.3173, 7.317, 7.3177, 7.3175, 7.3174, 7.3172, 7.3169, 7.3174, 7.318, 7.3186, 7.3176, 7.3173, 7.3171, 7.3178, 7.3175, 7.3172, 7.3169, 7.3166, 7.3172, 7.3172, 7.3169, 7.3167, 7.3166, 7.3163, 7.316, 7.3158, 7.3155, 7.3152, 7.3149, 7.3147, 7.3144, 7.316, 7.3159, 7.3165, 7.3165, 7.3179, 7.3176, 7.3174, 7.3196, 7.3194, 7.32, 7.3205, 7.3203, 7.3208, 7.3206, 7.321, 7.3216, 7.3214, 7.3211, 7.3217, 7.3231, 7.3254, 7.3252, 7.3242, 7.324, 7.3245, 7.3242, 7.3249, 7.3254, 7.3251, 7.3256, 7.3253, 7.3259, 7.3249, 7.3257, 7.3262, 7.3259, 7.3264, 7.327, 7.3267, 7.3265, 7.327, 7.3267, 7.3267, 7.3264, 7.3261, 7.3258, 7.3258, 7.3265, 7.3263, 7.326, 7.3257, 7.3254, 7.3251, 7.3241, 7.3246, 7.3246, 7.326, 7.3258, 7.3299, 7.3304, 7.3301, 7.3298, 7.3303, 7.3308, 7.3313, 7.331, 7.3307, 7.3304, 7.3301, 7.3298, 7.3295, 7.33, 7.3305, 7.3302, 7.3307, 7.3305, 7.3302, 7.3307, 7.3304, 7.3309, 7.3314, 7.3311, 7.3317, 7.3323, 7.3321, 7.3319, 7.3316, 7.3321, 7.3311, 7.3312, 7.3309, 7.3306, 7.3321, 7.3327, 7.3333, 7.3338, 7.3344, 7.3341, 7.3338, 7.3343, 7.3357, 7.3354, 7.3359, 7.3356, 7.3354, 7.3367, 7.3364, 7.3369, 7.3359, 7.3357, 7.3362, 7.336, 7.3351, 7.3349, 7.3355, 7.3352, 7.3349, 7.3354, 7.3359, 7.3364, 7.3369, 7.3366, 7.3363, 7.3368, 7.3374, 7.3371, 7.3369, 7.3361, 7.3358, 7.3356, 7.3354, 7.3345, 7.3343, 7.3356, 7.3361, 7.3366, 7.3363, 7.336, 7.3357, 7.3354, 7.3383, 7.338, 7.3377, 7.3374, 7.3372, 7.3369, 7.3366, 7.3363, 7.336, 7.3365, 7.3363, 7.336, 7.3365, 7.3355, 7.3352, 7.3342, 7.3357, 7.3355, 7.3352, 7.3349, 7.3346, 7.3343, 7.334, 7.3338, 7.3335, 7.3341, 7.3338, 7.3335, 7.3332, 7.3329, 7.3326, 7.3323, 7.3328, 7.3325, 7.3322, 7.3327, 7.3332, 7.3337, 7.3343, 7.3341, 7.3338, 7.3335, 7.3332, 7.3337, 7.3342, 7.3347, 7.3337, 7.3334, 7.334, 7.3346, 7.3359, 7.3356, 7.3354, 7.3351, 7.3348, 7.3353, 7.3358, 7.3363, 7.3368, 7.3373, 7.3378, 7.3383, 7.3381, 7.3379, 7.3377, 7.3382, 7.338, 7.3385, 7.3382, 7.3388, 7.3393, 7.339, 7.3388, 7.3385, 7.3383, 7.3388, 7.3385, 7.339, 7.3388, 7.3393, 7.3391, 7.3388, 7.3385, 7.3382, 7.3379, 7.3385, 7.3382, 7.338, 7.3385, 7.3382, 7.338, 7.3377, 7.3374, 7.3379, 7.3392, 7.3397, 7.3403, 7.3408, 7.3413, 7.341, 7.3407, 7.3412, 7.3425, 7.3422, 7.3419, 7.3424, 7.3421, 7.3418, 7.3415, 7.3413, 7.3418, 7.3416, 7.3429, 7.3427, 7.3432, 7.343, 7.3427, 7.3427, 7.3425, 7.3427, 7.3424, 7.3414, 7.3411, 7.3416, 7.3413, 7.3412, 7.341, 7.3407, 7.342, 7.3418, 7.3424, 7.3422, 7.342, 7.3426, 7.3423, 7.3422, 7.3419, 7.3432, 7.3492, 7.3489, 7.3486, 7.3491, 7.3496, 7.3501, 7.3498, 7.3496, 7.3486, 7.3483, 7.3481, 7.3478, 7.3483, 7.3481, 7.3478, 7.3475, 7.3473, 7.347, 7.3468, 7.3465, 7.3462, 7.3491, 7.3489, 7.3487, 7.3492, 7.3523, 7.3515, 7.3512, 7.3509, 7.3506, 7.3512, 7.351, 7.3518, 7.3531, 7.3529, 7.3527, 7.3526, 7.3527, 7.3524, 7.3523, 7.3521, 7.3518, 7.3515, 7.3522, 7.3527, 7.3532, 7.3531, 7.3531, 7.3528, 7.3526, 7.3523, 7.3523, 7.3523, 7.3522, 7.352, 7.3525, 7.3531, 7.3529, 7.3527, 7.3526, 7.3525, 7.3531, 7.3537, 7.3544, 7.3543, 7.3541, 7.3538, 7.3538, 7.3535, 7.3534, 7.3534, 7.354, 7.3538, 7.3538, 7.3536, 7.3535, 7.3533, 7.353, 7.3528, 7.3525, 7.3523, 7.3529, 7.3527, 7.3532], '192.168.122.112': [7.498, 6.438, 6.294, 6.4817, 6.4297, 6.596, 7.193, 7.0871, 6.9329, 6.8625, 6.8064, 7.1422, 7.4215, 7.7655, 7.6134, 7.5983, 7.4758, 7.3644, 7.2568, 7.2126, 7.3983, 7.5551, 7.4944, 7.4014, 7.3314, 7.4644, 7.59, 7.5118, 7.4496, 7.3825, 7.3259, 7.3047, 7.2592, 7.236, 7.1991, 7.1441, 7.1061, 7.0728, 7.0314, 7.0007, 6.971, 6.9301, 6.907, 6.8798, 6.844, 6.8141, 6.917, 7.0014, 6.9874, 6.9588, 6.9361, 6.9074, 6.9837, 6.9569, 6.9343, 6.9136, 6.8872, 6.8652, 6.8424, 6.8259, 6.8903, 6.867, 6.8414, 6.8409, 6.818, 6.8806, 6.8621, 6.9298, 6.9864, 7.1202, 7.0985, 7.0179, 7.0137, 6.9948, 6.9888, 6.967, 7.0122, 6.9962, 6.9775, 7.0378, 7.0168, 7.0672, 7.1573, 7.1387, 7.1169, 7.0971, 7.0896, 7.0721, 7.0604, 7.0435, 6.9832, 6.969, 6.9736, 6.9614, 6.9475, 6.9319, 6.9714, 7.0145, 6.9979, 6.9812, 6.9674, 6.9534, 6.9431, 6.928, 6.9174, 6.903, 6.9393, 6.9242, 6.915, 6.9001, 6.8867, 6.9185, 6.9075, 6.8928, 6.9295, 6.9199, 6.9092, 6.9412, 6.9743, 6.9613, 6.9477, 6.9394, 6.9314, 6.9204, 6.9168, 6.9042, 6.8941, 6.8825, 6.873, 6.9007, 6.8999, 6.8963, 6.8936, 6.9224, 6.9133, 6.984, 6.9745, 6.9621, 6.9922, 6.951, 6.9422, 6.9664, 6.9551, 6.9482, 6.9816, 6.9783, 6.9746, 7.0412, 7.0339, 7.0231, 7.0501, 7.0387, 7.0311, 7.0222, 7.014, 7.038, 7.0648, 7.0891, 7.11, 7.1045, 7.0931, 7.0841, 7.0732, 7.0946, 7.0843, 7.109, 7.1333, 7.1285, 7.1199, 7.112, 7.1041, 7.096, 7.0878, 7.0776, 7.069, 7.1367, 7.1302, 7.1946, 7.1858, 7.2067, 7.1959, 7.1993, 7.1918, 7.181, 7.199, 7.1906, 7.1804, 7.1984, 7.1936, 7.187, 7.1777, 7.1692, 7.1766, 7.1673, 7.1839, 7.2562, 7.2762, 7.2668, 7.2849, 7.305, 7.2964, 7.2871, 7.2775, 7.2714, 7.2385, 7.2298, 7.2205, 7.238, 7.2295, 7.221, 7.2148, 7.2108, 7.2014, 7.1959, 7.1876, 7.1826, 7.1992, 7.1909, 7.1827, 7.174, 7.1685, 7.1602, 7.1521, 7.1752, 7.1671, 7.1856, 7.1799, 7.1728, 7.1649, 7.1595, 7.1523, 7.1472, 7.1657, 7.1579, 7.1733, 7.1654, 7.158, 7.1505, 7.1657, 7.1799, 7.1725, 7.1665, 7.1615, 7.1559, 7.1515, 7.1521, 7.1471, 7.1401, 7.1562, 7.1299, 7.104, 7.1004, 7.0931, 7.0861, 7.0895, 7.109, 7.0878, 7.1134, 7.1075, 7.1312, 7.1243, 7.1391, 7.1542, 7.169, 7.1655, 7.1599, 7.1624, 7.1762, 7.1688, 7.1805, 7.175, 7.16, 7.1735, 7.1665, 7.1621, 7.1561, 7.1503, 7.1438, 7.1376, 7.1497, 7.1438, 7.157, 7.1508, 7.1633, 7.1755, 7.1736, 7.1719, 7.1652, 7.1603, 7.156, 7.1501, 7.1443, 7.1387, 7.1545, 7.187, 7.1996, 7.2121, 7.2054, 7.1994, 7.1935, 7.1873, 7.1817, 7.1807, 7.1759, 7.1888, 7.1831, 7.1788, 7.173, 7.1678, 7.1623, 7.1735, 7.1694, 7.1633, 7.1597, 7.1541, 7.1644, 7.1591, 7.1608, 7.171, 7.1834, 7.1781, 7.1732, 7.167, 7.1784, 7.19, 7.1848, 7.1961, 7.1906, 7.1888, 7.186, 7.1804, 7.1902, 7.185, 7.1967, 7.1919, 7.188, 7.1851, 7.1803, 7.1761, 7.1879, 7.1839, 7.1939, 7.1934, 7.1905, 7.2005, 7.1949, 7.2057, 7.2158, 7.2118, 7.2212, 7.2165, 7.2123, 7.2067, 7.2026, 7.201, 7.2107, 7.2056, 7.2016, 7.198, 7.2119, 7.2067, 7.203, 7.2005, 7.2101, 7.206, 7.2014, 7.2148, 7.2123, 7.2216, 7.2174, 7.1994, 7.1963, 7.2056, 7.2019, 7.2128, 7.2095, 7.2187, 7.2147, 7.2105, 7.2059, 7.2037, 7.199, 7.2082, 7.2037, 7.2132, 7.2097, 7.2192, 7.2144, 7.2106, 7.22, 7.218, 7.2131, 7.2081, 7.2174, 7.2262, 7.2226, 7.2204, 7.2182, 7.2146, 7.2113, 7.2079, 7.2069, 7.2035, 7.2036, 7.2014, 7.2, 7.1965, 7.1946, 7.1906, 7.2027, 7.2005, 7.2119, 7.2092, 7.2085, 7.204, 7.2009, 7.1966, 7.1925, 7.1902, 7.1988, 7.2082, 7.2164, 7.2263, 7.2224, 7.27, 7.2784, 7.276, 7.2728, 7.2693, 7.2659, 7.274, 7.2818, 7.2773, 7.2778, 7.286, 7.2943, 7.3024, 7.3103, 7.3185, 7.314, 7.321, 7.3285, 7.3252, 7.3206, 7.329, 7.3384, 7.3403, 7.337, 7.3458, 7.3423, 7.3681, 7.3642, 7.3598, 7.3452, 7.3415, 7.3384, 7.3339, 7.3294, 7.3371, 7.333, 7.3407, 7.3374, 7.3358, 7.3322, 7.3295, 7.3257, 7.3381, 7.3463, 7.3444, 7.3411, 7.3271, 7.3346, 7.342, 7.3493, 7.3452, 7.3423, 7.3417, 7.3391, 7.339, 7.3361, 7.3561, 7.3658, 7.3923, 7.3999, 7.3981, 7.3939, 7.3918, 7.3875, 7.3854, 7.3722, 7.3702, 7.3664, 7.3624, 7.3588, 7.3548, 7.3509, 7.3472, 7.3453, 7.3423, 7.3395, 7.3354, 7.3315, 7.3284, 7.3255, 7.3124, 7.3086, 7.3053, 7.3017, 7.3087, 7.3051, 7.3122, 7.3225, 7.3189, 7.3186, 7.3155, 7.3027, 7.3017, 7.3185, 7.3253, 7.3126, 7.3005, 7.2978, 7.295, 7.2927, 7.2894, 7.2873, 7.2949, 7.2913, 7.2875, 7.2852, 7.2821, 7.2785, 7.2854, 7.2823, 7.2806, 7.2775, 7.2669, 7.2737, 7.2699, 7.2676, 7.2743, 7.2752, 7.2716, 7.2682, 7.2749, 7.2811, 7.2782, 7.2754, 7.2733, 7.2703, 7.2668, 7.2728, 7.2692, 7.2666, 7.264, 7.2608, 7.267, 7.2646, 7.2525, 7.2637, 7.2534, 7.2551, 7.2657, 7.2626, 7.2639, 7.2603, 7.2574, 7.254, 7.2514, 7.2481, 7.245, 7.2417, 7.2396, 7.2368, 7.2335, 7.2308, 7.2369, 7.2339, 7.2308, 7.2277, 7.234, 7.2403, 7.2463, 7.2444, 7.2601, 7.2593, 7.2562, 7.253, 7.2498, 7.2557, 7.2535, 7.2504, 7.2473, 7.2454, 7.2433, 7.2411, 7.2384, 7.237, 7.2345, 7.2408, 7.2474, 7.2566, 7.2625, 7.2687, 7.2658, 7.2643, 7.2711, 7.2683, 7.2747, 7.2718, 7.278, 7.2751, 7.2732, 7.2703, 7.2761, 7.2734, 7.2788, 7.2852, 7.2826, 7.2798, 7.277, 7.2828, 7.2798, 7.2776, 7.2748, 7.2897, 7.2872, 7.2936, 7.2912, 7.2944, 7.296, 7.2932, 7.2987, 7.2955, 7.2924, 7.2898, 7.2869, 7.2838, 7.2824, 7.2803, 7.278, 7.2749, 7.2719, 7.2694, 7.2668, 7.2641, 7.2536, 7.2507, 7.2479, 7.2451, 7.2421, 7.2478, 7.2532, 7.2502, 7.2481, 7.2451, 7.2429, 7.242, 7.2322, 7.2295, 7.2266, 7.2319, 7.2304, 7.236, 7.2331, 7.2314, 7.2288, 7.226, 7.2241, 7.2213, 7.2268, 7.2242, 7.2216, 7.2122, 7.2112, 7.2497, 7.2551, 7.2525, 7.2499, 7.247, 7.2444, 7.2423, 7.2394, 7.237, 7.2349, 7.2482, 7.2456, 7.2435, 7.2416, 7.2468, 7.252, 7.2491, 7.2465, 7.2514, 7.2563, 7.2542, 7.2527, 7.2512, 7.2486, 7.246, 7.2439, 7.249, 7.247, 7.2445, 7.2496, 7.2554, 7.2533, 7.2582, 7.2563, 7.2539, 7.2521, 7.2496, 7.2469, 7.2523, 7.2499, 7.2548, 7.2527, 7.2505, 7.2479, 7.2455, 7.2439, 7.2423, 7.2469, 7.2443, 7.2487, 7.2467, 7.2453, 7.2425, 7.2405, 7.2317, 7.2293, 7.2275, 7.2323, 7.2232, 7.2282, 7.2331, 7.2442, 7.2568, 7.2542, 7.2453, 7.2427, 7.24, 7.2382, 7.2358, 7.2344, 7.2421, 7.2397, 7.2446, 7.2434, 7.2482, 7.253, 7.2512, 7.2493, 7.2467, 7.2378, 7.2354, 7.2336, 7.2313, 7.2289, 7.2265, 7.2283, 7.2265, 7.2247, 7.2228, 7.221, 7.2187, 7.2236, 7.2219, 7.2196, 7.2177, 7.2224, 7.22, 7.225, 7.2238, 7.2411, 7.2458, 7.2443, 7.2421, 7.2396, 7.2378, 7.2431, 7.2486, 7.2462, 7.2439, 7.2421, 7.2412, 7.2467, 7.2518, 7.2502, 7.2547, 7.2535, 7.2641, 7.2728, 7.2703, 7.2679, 7.2658, 7.2639, 7.2616, 7.2593, 7.2572, 7.2618, 7.2593, 7.2592, 7.2592, 7.257, 7.2546, 7.265, 7.2697, 7.2676, 7.2652, 7.2635, 7.2679, 7.2718, 7.2788, 7.2763, 7.2747, 7.2728, 7.2712, 7.2691, 7.2754, 7.2755, 7.2739, 7.2718, 7.2698, 7.2815, 7.2799, 7.2776, 7.2822, 7.2799, 7.2839, 7.2816, 7.2813, 7.2792, 7.2836, 7.2816, 7.2747, 7.2918, 7.291, 7.2977, 7.3192, 7.3168, 7.3156, 7.3153, 7.3212, 7.3189, 7.317, 7.3148, 7.3135, 7.3123, 7.3101, 7.3088, 7.3071, 7.3048, 7.3028, 7.3004, 7.2981, 7.2959, 7.2881, 7.2858, 7.2836, 7.282, 7.2803, 7.2847, 7.2833, 7.2817, 7.2798, 7.2897, 7.2819, 7.2799, 7.2779, 7.2819, 7.2861, 7.2846, 7.2833, 7.282, 7.2803, 7.2782, 7.2765, 7.2753, 7.2731, 7.2771, 7.2752, 7.2737, 7.2779, 7.2817, 7.2797, 7.293, 7.2986, 7.2968, 7.2945, 7.2985, 7.3026, 7.3011, 7.2995, 7.3034, 7.3014, 7.2996, 7.3032, 7.3009, 7.299, 7.3027, 7.309, 7.3077, 7.3116, 7.3094, 7.3082, 7.3063, 7.3044, 7.3029, 7.3011, 7.299, 7.297, 7.2956, 7.2935, 7.2918, 7.29, 7.2941, 7.292, 7.2962, 7.2948, 7.2927, 7.2905, 7.2943, 7.2932, 7.297, 7.3004, 7.2991, 7.2977, 7.2954, 7.2992, 7.303, 7.3069, 7.3053, 7.3031, 7.301, 7.2989, 7.3084, 7.3063, 7.3043, 7.3022, 7.3052, 7.3032, 7.3013, 7.2993, 7.2988, 7.2972, 7.2954, 7.2935, 7.2914, 7.2952, 7.2935, 7.2917, 7.2906, 7.2887, 7.2867, 7.2855, 7.2836, 7.2873, 7.2853, 7.2834, 7.2871, 7.2804, 7.279, 7.2779, 7.2768, 7.2748, 7.2735, 7.272, 7.2701, 7.2683, 7.2719, 7.2755, 7.2738, 7.2723, 7.2756, 7.2794, 7.2833, 7.2816, 7.2851, 7.2836, 7.282, 7.2857, 7.2893, 7.2923, 7.2904, 7.2939, 7.2919, 7.2901, 7.2891, 7.2881, 7.2861, 7.2899, 7.2881, 7.2917, 7.2898, 7.2879, 7.2918, 7.2899, 7.2883, 7.2876, 7.2863, 7.2854, 7.2853, 7.284, 7.2826, 7.2814, 7.2794, 7.2788, 7.2769, 7.2755, 7.2756, 7.2745, 7.2729, 7.2711, 7.2693, 7.2727, 7.2709, 7.2694, 7.2629, 7.2613, 7.2601, 7.2582, 7.2613, 7.2594, 7.2629, 7.261, 7.2651, 7.2634, 7.271, 7.2797, 7.278, 7.2761, 7.2747, 7.2731, 7.2715, 7.2698, 7.2734, 7.2718, 7.2704, 7.2691, 7.2674, 7.2655, 7.2686, 7.2724, 7.2709, 7.2692, 7.2673, 7.2658, 7.264, 7.2623, 7.2612, 7.26, 7.2635, 7.2623, 7.2653, 7.2696, 7.2726, 7.2712, 7.2743, 7.2774, 7.2756, 7.2738, 7.2728, 7.271, 7.2691, 7.2672, 7.2657, 7.2638, 7.2625, 7.2608, 7.259, 7.2573, 7.256, 7.2541, 7.2523, 7.2505, 7.2542, 7.2524, 7.2632, 7.2624, 7.2605, 7.259, 7.2578, 7.2611, 7.2597, 7.2589, 7.2572, 7.2634, 7.2617, 7.2606, 7.2588, 7.2573, 7.256, 7.2554, 7.2675, 7.2614, 7.2599, 7.2581, 7.2569, 7.2556, 7.2547, 7.253, 7.2517, 7.2552, 7.2539, 7.2527, 7.2559, 7.259, 7.2576, 7.2656, 7.2638, 7.2627, 7.2697, 7.2687, 7.267, 7.2654, 7.2684, 7.2666, 7.2665, 7.2697, 7.2687, 7.2669, 7.2656, 7.264, 7.2623, 7.2653, 7.2643, 7.2675, 7.2734, 7.2721, 7.275, 7.2738, 7.273, 7.2762, 7.2793, 7.2781, 7.2766, 7.275, 7.2733, 7.2761, 7.2753, 7.2741, 7.2726, 7.2712, 7.2744, 7.2735, 7.2718, 7.2755, 7.2738, 7.2722, 7.272, 7.2706, 7.2704, 7.2731, 7.2761, 7.2749, 7.2779, 7.2768, 7.2777, 7.2769, 7.28, 7.2829, 7.2778, 7.2721, 7.2705, 7.2691, 7.2756, 7.2744, 7.2728, 7.2716, 7.2747, 7.2778, 7.2762, 7.2747, 7.2734, 7.2718, 7.2704, 7.2688, 7.2718, 7.2706, 7.2697, 7.2682, 7.2678, 7.2709, 7.2699, 7.2686, 7.2679, 7.2664, 7.2647, 7.2635, 7.2579, 7.2566, 7.255, 7.2542, 7.253, 7.2561, 7.2544, 7.2531, 7.2518, 7.2507, 7.2504, 7.2505, 7.2492, 7.2476, 7.2521, 7.251, 7.2499, 7.2486, 7.2473, 7.2536, 7.252, 7.2503, 7.2488, 7.2477, 7.2464, 7.2453, 7.2446, 7.2434, 7.2429, 7.2415, 7.2416, 7.2448, 7.2435, 7.245, 7.2478, 7.2465, 7.2451, 7.2438, 7.2441, 7.2432, 7.2418, 7.2405, 7.2392, 7.2384, 7.237, 7.2358, 7.2346, 7.242, 7.2407, 7.2392, 7.238, 7.237, 7.2361, 7.235, 7.2388, 7.2376, 7.2365, 7.2402, 7.2434, 7.2467, 7.2469, 7.2457, 7.246, 7.2547, 7.2533, 7.2525, 7.2558, 7.2549, 7.2581, 7.2529, 7.255, 7.2543, 7.2547, 7.2546, 7.262, 7.2606, 7.2595, 7.2581, 7.2664, 7.2689, 7.2675, 7.2723, 7.272, 7.2705, 7.2652, 7.2639, 7.2669, 7.2668, 7.2655, 7.268, 7.2665, 7.2694, 7.2682, 7.2668, 7.2653, 7.2642, 7.2631, 7.262, 7.2606, 7.2593, 7.2622, 7.265, 7.2672, 7.2623, 7.2652, 7.2637, 7.263, 7.2623, 7.2608, 7.2596, 7.2589, 7.2577, 7.2566, 7.2556, 7.2548, 7.2577, 7.2606, 7.2597, 7.2586, 7.2572, 7.256, 7.2547, 7.2532, 7.2521, 7.2508, 7.2494, 7.248, 7.2473, 7.246, 7.2485, 7.2471, 7.2499, 7.2528, 7.2513, 7.25, 7.2565, 7.2551, 7.2537, 7.2523, 7.2508, 7.2493, 7.2478, 7.2464, 7.245, 7.2438, 7.2465, 7.2454, 7.2482, 7.2468, 7.2454, 7.244, 7.2468, 7.2459, 7.2448, 7.2473, 7.2462, 7.2488, 7.244, 7.2426, 7.2415, 7.2441, 7.2431, 7.2419, 7.2405, 7.2392, 7.2377, 7.2365, 7.2352, 7.238, 7.237, 7.2356, 7.2346, 7.2385, 7.2371, 7.2361, 7.235, 7.2376, 7.2366, 7.2352, 7.2339, 7.2366, 7.2352, 7.2338, 7.2325, 7.231, 7.2347, 7.2334, 7.2321, 7.2317, 7.2344, 7.2387, 7.2411, 7.2404, 7.239, 7.2414, 7.2412, 7.2401, 7.2428, 7.2454, 7.241, 7.2435, 7.2423, 7.241, 7.2402, 7.2392, 7.2345, 7.2334, 7.2329, 7.2316, 7.2302, 7.2288, 7.228, 7.2271, 7.2257, 7.2247, 7.2237, 7.226, 7.2248, 7.2237, 7.2226, 7.2213, 7.2325, 7.2314, 7.2434, 7.2594, 7.2658, 7.2645, 7.2632, 7.2623, 7.2612, 7.2598, 7.2624, 7.265, 7.2675, 7.2662, 7.2654, 7.2641, 7.2628, 7.2616, 7.2641, 7.263, 7.2617, 7.2607, 7.2596, 7.2621, 7.2613, 7.26, 7.2587, 7.2574, 7.2563, 7.2552, 7.2541, 7.2566, 7.2557, 7.2544, 7.2538, 7.2567, 7.2554, 7.2603, 7.2591, 7.2579, 7.2566, 7.2553, 7.2542, 7.2602, 7.2626, 7.2648, 7.2636, 7.263, 7.2618, 7.2606, 7.2593, 7.2552, 7.2551, 7.2579, 7.262, 7.2615, 7.2605, 7.2596, 7.259, 7.2582, 7.2536, 7.2523, 7.2547, 7.2534, 7.2527, 7.2537, 7.2524, 7.2512, 7.2505, 7.2528, 7.2517, 7.2505, 7.2492, 7.2479, 7.2465, 7.2455, 7.2478, 7.2502, 7.2489, 7.2513, 7.2502, 7.2493, 7.2481, 7.2502, 7.2526, 7.2513, 7.2501, 7.2494, 7.2483, 7.247, 7.2494, 7.2481, 7.2504, 7.2491, 7.2478, 7.2501, 7.2489, 7.2476, 7.2473, 7.2463, 7.245, 7.2474, 7.2462, 7.2456, 7.2443, 7.2431, 7.2418, 7.2406, 7.2398, 7.2386, 7.2373, 7.2329, 7.2317, 7.234, 7.2364, 7.2352, 7.2376, 7.2402, 7.2398, 7.2387, 7.2409, 7.2398, 7.2391, 7.2389, 7.2376, 7.2396, 7.2385, 7.2374, 7.2364, 7.2355, 7.2348, 7.2368, 7.2361, 7.2351, 7.2338, 7.2359, 7.2354, 7.2342, 7.2363, 7.2354, 7.2377, 7.2372, 7.2395, 7.2383, 7.2372, 7.2362, 7.2351, 7.2338, 7.2358, 7.2381, 7.2408, 7.2401, 7.2425, 7.2448, 7.2435, 7.2423, 7.2412, 7.2432, 7.2422, 7.241, 7.2402, 7.2395, 7.2392, 7.2416, 7.2407, 7.2396, 7.2385, 7.2374, 7.2366, 7.2387, 7.2377, 7.2403, 7.2393, 7.2383, 7.2374, 7.2395, 7.2385, 7.241, 7.24, 7.242, 7.241, 7.2398, 7.2407, 7.2398, 7.2386, 7.2376, 7.237, 7.2361, 7.2355, 7.2346, 7.2338, 7.2296, 7.2287, 7.2276, 7.2274, 7.2265, 7.2255, 7.2248, 7.2242, 7.2233, 7.2221, 7.2216, 7.2207, 7.2197, 7.2198, 7.2188, 7.2177, 7.2179, 7.2169, 7.2158, 7.2154, 7.2176, 7.2165, 7.2156, 7.2159, 7.2149, 7.2172, 7.2164, 7.2156, 7.2145, 7.214, 7.2129, 7.212, 7.2143, 7.2135, 7.2127, 7.2115, 7.2137, 7.2159, 7.2148, 7.2168, 7.2158, 7.2146, 7.2139, 7.2164, 7.2189, 7.2178, 7.2218, 7.2233, 7.2268, 7.2259, 7.2284, 7.2275, 7.2266, 7.2257, 7.2248, 7.2273, 7.2264, 7.2257, 7.2249, 7.2243, 7.2231, 7.2222, 7.2183, 7.2144, 7.2133, 7.2122, 7.2111, 7.21, 7.2092, 7.2083, 7.2111, 7.2099, 7.2088, 7.208, 7.2068, 7.2087, 7.2079, 7.2099, 7.2088, 7.208, 7.2095, 7.2088, 7.2086, 7.2117, 7.2106, 7.21, 7.2092, 7.2082, 7.2075, 7.2067, 7.2056, 7.208, 7.2078, 7.2067, 7.2059, 7.2083, 7.2086, 7.2082, 7.2075, 7.2064, 7.2055, 7.2048, 7.2068, 7.206, 7.2079, 7.2101, 7.209, 7.208, 7.2072, 7.2097, 7.2086, 7.2118, 7.2107, 7.2134, 7.2126, 7.2115, 7.2104, 7.2126, 7.2117, 7.2106, 7.2126, 7.2146, 7.2166, 7.222, 7.2241, 7.2231, 7.2221, 7.2242, 7.2232, 7.2228, 7.2223, 7.2244, 7.2266, 7.2285, 7.228, 7.227, 7.2291, 7.2312, 7.2304, 7.2328, 7.2336, 7.2327, 7.2319, 7.2312, 7.2333, 7.2326, 7.2319, 7.2311, 7.2304, 7.2296, 7.2285, 7.2275, 7.2264, 7.2255, 7.2244, 7.2236, 7.2253, 7.2272, 7.2292, 7.2287, 7.2279, 7.227, 7.229, 7.2285, 7.2303, 7.2292, 7.2284, 7.2306, 7.2296, 7.2286, 7.2306, 7.2301, 7.2342, 7.2363, 7.2356, 7.2345, 7.2335, 7.2324, 7.2317, 7.2309, 7.2299, 7.2294, 7.2284, 7.2276, 7.2267, 7.226, 7.2279, 7.2269, 7.2267, 7.2288, 7.2256, 7.2277, 7.2267, 7.2258, 7.2249, 7.2269, 7.2258, 7.2251, 7.224, 7.2229, 7.2247, 7.224, 7.2233, 7.2224, 7.2217, 7.221, 7.2199, 7.2188, 7.2178, 7.2168, 7.2157, 7.2192, 7.2185, 7.2188, 7.2183, 7.2339, 7.2331, 7.2328, 7.2318, 7.2309, 7.2304, 7.2295, 7.2287, 7.2308, 7.2271, 7.2264, 7.2255, 7.2246, 7.224, 7.2233, 7.2223, 7.225, 7.224, 7.2258, 7.2251, 7.2241, 7.2265, 7.2324, 7.2342, 7.236, 7.2381, 7.2372, 7.2364, 7.2356, 7.2376, 7.2371, 7.2337, 7.2355, 7.2346, 7.2339, 7.233, 7.2321, 7.234, 7.233, 7.2321, 7.2314, 7.2304, 7.2296, 7.2286, 7.2281, 7.2271, 7.2261, 7.2251, 7.2246, 7.2239, 7.2237, 7.2262, 7.2253, 7.2243, 7.2265, 7.2287, 7.2279, 7.2269, 7.2237, 7.2314, 7.2306, 7.2296, 7.2325, 7.2372, 7.2373, 7.2433, 7.2427, 7.2418, 7.2438, 7.2428, 7.242, 7.244, 7.2459, 7.2449, 7.2479, 7.2507, 7.2527, 7.2559, 7.2549, 7.2543, 7.2614, 7.2604, 7.2633, 7.2624, 7.2617, 7.2608, 7.2601, 7.2591, 7.2582, 7.2572, 7.2538, 7.2531, 7.2521, 7.2516, 7.2507, 7.2527, 7.2492, 7.2511, 7.2504, 7.2494, 7.2485, 7.2477, 7.2467, 7.2475, 7.2465, 7.2456, 7.2446, 7.2438, 7.2433, 7.2425, 7.2449, 7.2443, 7.244, 7.2432, 7.2426, 7.2417, 7.2414, 7.2432, 7.2423, 7.2415, 7.2406, 7.2397, 7.2415, 7.2409, 7.2402, 7.242, 7.244, 7.2457, 7.245, 7.2468, 7.2486, 7.2506, 7.253, 7.2548, 7.2541, 7.2532, 7.2523, 7.2577, 7.2591, 7.2586, 7.2603, 7.2578, 7.2568, 7.2572, 7.2538, 7.2529, 7.2519, 7.2509, 7.2499, 7.2491, 7.2481, 7.2474, 7.2464, 7.2456, 7.2446, 7.2437, 7.2431, 7.2397, 7.2388, 7.2378, 7.2368, 7.2358, 7.2376, 7.2369, 7.236, 7.2355, 7.2346, 7.2366, 7.2365, 7.2356, 7.235, 7.2342, 7.2332, 7.2325, 7.2338, 7.233, 7.232, 7.2338, 7.2329, 7.232, 7.2313, 7.2314, 7.2333, 7.2325, 7.2317, 7.2311, 7.2301, 7.2295, 7.2285, 7.2276, 7.2295, 7.2285, 7.2302, 7.2294, 7.231, 7.23, 7.2366, 7.2382, 7.2399, 7.2415, 7.2433, 7.2424, 7.2442, 7.2409, 7.2402, 7.2394, 7.2385, 7.2376, 7.2344, 7.2334, 7.2352, 7.2343, 7.236, 7.2353, 7.2345, 7.2339, 7.2333, 7.2324, 7.2324, 7.2315, 7.2306, 7.2298, 7.2316, 7.2307, 7.2298, 7.2293, 7.2285, 7.2313, 7.2304, 7.2295, 7.2291, 7.2282, 7.2275, 7.2268, 7.226, 7.2257, 7.2225, 7.2216, 7.2269, 7.2262, 7.2295, 7.2287, 7.2331, 7.2323, 7.2332, 7.2351, 7.2341, 7.2333, 7.2324, 7.2316, 7.2307, 7.2327, 7.2347, 7.2339, 7.2332, 7.2323, 7.2341, 7.2339, 7.2357, 7.2354, 7.2345, 7.2341, 7.2333, 7.2326, 7.2318, 7.2312, 7.2304, 7.2306, 7.2299, 7.2291, 7.2309, 7.2301, 7.2311, 7.2303, 7.2297, 7.2289, 7.2282, 7.2274, 7.2292, 7.2283, 7.2279, 7.2301, 7.2292, 7.2286, 7.2278, 7.227, 7.224, 7.2235, 7.225, 7.2244, 7.2237, 7.2228, 7.2219, 7.221, 7.2226, 7.2242, 7.2233, 7.2226, 7.2217, 7.2259, 7.225, 7.2241, 7.2261, 7.2254, 7.2222, 7.2213, 7.2206, 7.2223, 7.2261, 7.2278, 7.2295, 7.2286, 7.2279, 7.2294, 7.2309, 7.2301, 7.2293, 7.2292, 7.2309, 7.2303, 7.2293, 7.2285, 7.2276, 7.2267, 7.2262, 7.2255, 7.2274, 7.2271, 7.2263, 7.2258, 7.2252, 7.2268, 7.2261, 7.2255, 7.2247, 7.2239, 7.2208, 7.2201, 7.2199, 7.2192, 7.2183, 7.2175, 7.2168, 7.2167, 7.2163, 7.2187, 7.2179, 7.2149, 7.2142, 7.2138, 7.2132, 7.2124, 7.2115, 7.2133, 7.2124, 7.2122, 7.2119, 7.2116, 7.2109, 7.21, 7.2095, 7.209, 7.2083, 7.2076, 7.2092, 7.2088, 7.2079, 7.2075, 7.2094, 7.2088, 7.2081, 7.2074, 7.2093, 7.2112, 7.2108, 7.2124, 7.2118, 7.2109, 7.2079, 7.207, 7.2086, 7.2078, 7.2071, 7.2089, 7.2081, 7.2073, 7.2067, 7.2062, 7.208, 7.2071, 7.2064, 7.2055, 7.2052, 7.2061, 7.2057, 7.2048, 7.2065, 7.208, 7.2074, 7.2091, 7.2083, 7.2103, 7.2097, 7.2094, 7.2111, 7.2128, 7.2119, 7.2113, 7.2106, 7.2101, 7.2093, 7.2109, 7.2107, 7.2077, 7.207, 7.2062, 7.2079, 7.2072, 7.2066, 7.2063, 7.2104, 7.2098, 7.2091, 7.2083, 7.2099, 7.2116, 7.2109, 7.2124, 7.2116, 7.2109, 7.2113, 7.2105, 7.2075, 7.2078, 7.207, 7.2062, 7.2078, 7.2094, 7.2086, 7.2084, 7.2084, 7.2076, 7.2092, 7.2084, 7.2081, 7.2073, 7.2091, 7.2084, 7.2077, 7.2075, 7.2068, 7.2085, 7.2079, 7.2075, 7.2089, 7.2106, 7.2098, 7.2092, 7.2063, 7.2055, 7.2048, 7.2043, 7.2037, 7.203, 7.2022, 7.2039, 7.2056, 7.205, 7.2046, 7.2021, 7.2016, 7.2014, 7.2006, 7.2021, 7.2015, 7.201, 7.2002, 7.1997, 7.1993, 7.2008, 7.2001, 7.1994, 7.2028, 7.2021, 7.2015, 7.2007, 7.198, 7.1972, 7.1965, 7.1981, 7.1973, 7.197, 7.1986, 7.1958, 7.1974, 7.1979, 7.1993, 7.1985, 7.1982, 7.1975, 7.1968, 7.1961, 7.1955, 7.1951, 7.1943, 7.1958, 7.195, 7.1942, 7.1934, 7.1928, 7.1922, 7.1915, 7.1932, 7.1925, 7.1918, 7.194, 7.1934, 7.1926, 7.1919, 7.1912, 7.1928, 7.1922, 7.1914, 7.1913, 7.1906, 7.1921, 7.1937, 7.1929, 7.1922, 7.1916, 7.1909, 7.1904, 7.1922, 7.1915, 7.1907, 7.19, 7.1896, 7.1888, 7.1884, 7.1901, 7.1917, 7.1911, 7.1904, 7.1906, 7.1898, 7.1913, 7.1906, 7.1898, 7.1921, 7.2012, 7.2007, 7.2028, 7.2025, 7.2017, 7.2012, 7.2005, 7.2019, 7.2014, 7.2009, 7.2005, 7.1997, 7.199, 7.1984, 7.1977, 7.1969, 7.1961, 7.1955, 7.1947, 7.1939, 7.1931, 7.1923, 7.1939, 7.1932, 7.1946, 7.196, 7.1952, 7.1946, 7.1939, 7.1953, 7.1946, 7.1963, 7.1977, 7.1971, 7.1964, 7.1956, 7.1955, 7.195, 7.1973, 7.1967, 7.1963, 7.1979, 7.1972, 7.1968, 7.1967, 7.1962, 7.1956, 7.1933, 7.1933, 7.1929, 7.1921, 7.1922, 7.1916, 7.1911, 7.1906, 7.1988, 7.1981, 7.1974, 7.1968, 7.1963, 7.1956, 7.1949, 7.1987, 7.1979, 7.1993, 7.1987, 7.1982, 7.1975, 7.1989, 7.2005, 7.1999, 7.2015, 7.203, 7.2024, 7.2019, 7.202, 7.2035, 7.2029, 7.2023, 7.2044, 7.2039, 7.2036, 7.2028, 7.2022, 7.2018, 7.201, 7.2006, 7.2021, 7.2016, 7.201, 7.2002, 7.2015, 7.201, 7.2004, 7.2, 7.1999, 7.1991, 7.1986, 7.1979, 7.1975, 7.1968, 7.1981, 7.1974, 7.1968, 7.1962, 7.1955, 7.1949, 7.1942, 7.1936, 7.1933, 7.1927, 7.1924, 7.1927, 7.1923, 7.1916, 7.191, 7.1903, 7.192, 7.1915, 7.1908, 7.1922, 7.1936, 7.193, 7.1926, 7.1918, 7.1912, 7.1906, 7.1881, 7.1875, 7.1871, 7.1867, 7.186, 7.1862, 7.1856, 7.1855, 7.1895, 7.1888, 7.1884, 7.1877, 7.187, 7.1863, 7.1878, 7.187, 7.1885, 7.1882, 7.1876, 7.1871, 7.1864, 7.1858, 7.1872, 7.1866, 7.1881, 7.1874, 7.1889, 7.1905, 7.1901, 7.1896, 7.1888, 7.1903, 7.1896, 7.1888, 7.1882, 7.1876, 7.1871, 7.1868, 7.1862, 7.1856, 7.1869, 7.1882, 7.1878, 7.1885, 7.1878, 7.1873, 7.187, 7.1864, 7.1858, 7.1852, 7.1847, 7.184, 7.1833, 7.1826, 7.1818, 7.1834, 7.1828, 7.1821, 7.1816, 7.1832, 7.1826, 7.1822, 7.1816, 7.1808, 7.1824, 7.1817, 7.181, 7.1805, 7.18, 7.1802, 7.1796, 7.179, 7.1782, 7.1776, 7.1805, 7.18, 7.1817, 7.1831, 7.1825, 7.182, 7.1814, 7.1828, 7.1842, 7.1838, 7.1853, 7.1849, 7.1842, 7.1837, 7.1831, 7.1825, 7.1819, 7.1813, 7.1827, 7.1839, 7.1836, 7.1848, 7.1841, 7.1856, 7.187, 7.1865, 7.1861, 7.1875, 7.1874, 7.1868, 7.1862, 7.1857, 7.1854, 7.1849, 7.1843, 7.1836, 7.185, 7.1865, 7.1861, 7.1857, 7.1852, 7.185, 7.1864, 7.1857, 7.185, 7.1847, 7.184, 7.1835, 7.1829, 7.1823, 7.1819, 7.1833, 7.1847, 7.1841, 7.1834, 7.183, 7.1848, 7.1843, 7.1857, 7.1853, 7.1848, 7.1842, 7.1837, 7.1851, 7.1847, 7.1861, 7.1871, 7.187, 7.1863, 7.186, 7.1854, 7.1848, 7.1844, 7.1837, 7.1812, 7.1807, 7.1802, 7.1797, 7.1792, 7.177, 7.1764, 7.1759, 7.1753, 7.1747, 7.174, 7.1715, 7.1708, 7.1701, 7.1697, 7.1711, 7.1704, 7.1697, 7.1692, 7.1687, 7.1702, 7.1695, 7.1693, 7.1687, 7.1681, 7.1674, 7.1668, 7.1663, 7.1657, 7.1651, 7.1648, 7.1642, 7.1639, 7.1633, 7.163, 7.1625, 7.1621, 7.1618, 7.1632, 7.1627, 7.1639, 7.1632, 7.1629, 7.1624, 7.1618, 7.1612, 7.1616, 7.1609, 7.1606, 7.16, 7.1593, 7.1568, 7.1562, 7.1576, 7.1569, 7.1563, 7.1557, 7.1551, 7.1566, 7.1564, 7.1559, 7.1554, 7.1551, 7.1545, 7.1539, 7.1553, 7.1565, 7.1574, 7.1567, 7.1561, 7.1557, 7.1572, 7.1569, 7.1565, 7.1558, 7.1552, 7.1547, 7.1581, 7.1574, 7.1567, 7.156, 7.158, 7.1577, 7.1571, 7.1564, 7.1559, 7.1555, 7.1549, 7.1543, 7.1519, 7.1533, 7.1546, 7.1548, 7.1543, 7.1557, 7.1554, 7.1548, 7.1542, 7.1536, 7.1531, 7.1526, 7.1522, 7.1535, 7.153, 7.1544, 7.1539, 7.1553, 7.157, 7.1571, 7.157, 7.1583, 7.1578, 7.1572, 7.1568, 7.1585, 7.158, 7.1574, 7.1567, 7.1562, 7.1575, 7.1589, 7.1583, 7.1579, 7.1572, 7.1569, 7.1562, 7.1556, 7.1552, 7.1546, 7.1541, 7.1554, 7.1548, 7.1542, 7.1536, 7.1529, 7.1523, 7.1518, 7.1531, 7.1525, 7.152, 7.1514, 7.1508, 7.1503, 7.1498, 7.1492, 7.1487, 7.1481, 7.1475, 7.1488, 7.1481, 7.1476, 7.148, 7.1495, 7.1491, 7.1485, 7.148, 7.1495, 7.149, 7.1486, 7.1499, 7.1495, 7.1492, 7.1486, 7.1479, 7.1475, 7.1487, 7.15, 7.1494, 7.1488, 7.1506, 7.1501, 7.153, 7.1524, 7.1518, 7.1512, 7.1507, 7.1503, 7.1497, 7.1493, 7.1487, 7.1516, 7.1534, 7.1548, 7.1561, 7.1574, 7.1569, 7.1563, 7.1557, 7.1569, 7.1582, 7.1576, 7.157, 7.1567, 7.1544, 7.154, 7.1553, 7.1566, 7.1564, 7.1577, 7.159, 7.1603, 7.1597, 7.1591, 7.1585, 7.1579, 7.1573, 7.1567, 7.1561, 7.1557, 7.1552, 7.1564, 7.156, 7.1554, 7.1547, 7.156, 7.1555, 7.1532, 7.1527, 7.1522, 7.1517, 7.153, 7.1525, 7.1521, 7.1518, 7.1514, 7.1508, 7.1503, 7.1518, 7.1512, 7.1508, 7.1502, 7.1516, 7.1511, 7.1488, 7.1482, 7.1476, 7.1472, 7.1467, 7.1465, 7.1462, 7.1456, 7.1451, 7.1465, 7.1478, 7.149, 7.1484, 7.1479, 7.1473, 7.149, 7.1504, 7.1506, 7.1527, 7.1544, 7.1539, 7.1539, 7.1562, 7.1557, 7.1569, 7.1582, 7.1594, 7.1593, 7.1606, 7.1601, 7.1597, 7.1609, 7.1605, 7.16, 7.1612, 7.1608, 7.1633, 7.1676, 7.1693, 7.169, 7.1687, 7.1682, 7.1704, 7.17, 7.1695, 7.1689, 7.1701, 7.1698, 7.1692, 7.1686, 7.1682, 7.1676, 7.167, 7.1684, 7.1682, 7.1689, 7.1684, 7.1678, 7.1676, 7.1672, 7.1684, 7.1679, 7.1674, 7.1668, 7.1662, 7.1658, 7.1652, 7.1648, 7.1642, 7.1636, 7.1631, 7.1625, 7.1688, 7.1709, 7.1703, 7.1698, 7.1692, 7.1688, 7.1699, 7.1693, 7.1687, 7.1699, 7.1693, 7.1687, 7.1681, 7.1676, 7.167, 7.1665, 7.1659, 7.1672, 7.1666, 7.166, 7.1654, 7.1649, 7.1661, 7.1655, 7.1649, 7.1648, 7.1647, 7.1625, 7.1622, 7.1633, 7.1645, 7.1639, 7.1651, 7.1663, 7.1659, 7.1657, 7.1668, 7.1664, 7.1677, 7.1692, 7.1687, 7.1699, 7.1711, 7.1763, 7.1775, 7.1779, 7.1774, 7.1768, 7.1762, 7.1756, 7.1769, 7.1781, 7.1775, 7.1753, 7.1749, 7.1743, 7.1762, 7.1758, 7.1754, 7.1766, 7.1761, 7.1764, 7.1759, 7.1754, 7.1748, 7.1742, 7.1736, 7.1748, 7.1742, 7.1736, 7.1749, 7.1744, 7.1739, 7.1736, 7.173, 7.1726, 7.172, 7.1732, 7.1727, 7.1731, 7.1744, 7.174, 7.1734, 7.1747, 7.1743, 7.1757, 7.1752, 7.1748, 7.1743, 7.1737, 7.1733, 7.1765, 7.1761, 7.1757, 7.1756, 7.175, 7.1745, 7.174, 7.1753, 7.1747, 7.1741, 7.1747, 7.1741, 7.1737, 7.175, 7.1744, 7.174, 7.1752, 7.176, 7.1773, 7.1768, 7.1762, 7.1757, 7.1752, 7.1766, 7.1779, 7.1774, 7.1769, 7.1764, 7.1759, 7.1754, 7.1767, 7.178, 7.1792, 7.1804, 7.1799, 7.1793, 7.1788, 7.1785, 7.1796, 7.1807, 7.1801, 7.1797, 7.1794, 7.1789, 7.179, 7.1787, 7.1781, 7.1791, 7.1787, 7.1783, 7.1778, 7.1775, 7.1769, 7.1765, 7.1776, 7.177, 7.1799, 7.1795, 7.1789, 7.1785, 7.1781, 7.1809, 7.1803, 7.18, 7.1813, 7.1827, 7.1823, 7.1836, 7.1848, 7.1846, 7.1878, 7.1914, 7.1926, 7.1938, 7.1968, 7.198, 7.1992, 7.1988, 7.1972, 7.1951, 7.1945, 7.1956, 7.1935, 7.193, 7.1925, 7.1936, 7.1931, 7.1942, 7.1954, 7.1948, 7.1944, 7.1938, 7.195, 7.1944, 7.1958, 7.1953, 7.1947, 7.1957, 7.1952, 7.1947, 7.1942, 7.1971, 7.1983, 7.1995, 7.2025, 7.2019, 7.2013, 7.2007, 7.2001, 7.2012, 7.2006, 7.2001, 7.2014, 7.2009, 7.2003, 7.1997, 7.1993, 7.1989, 7.2001, 7.2031, 7.2025, 7.2023, 7.2017, 7.203, 7.2041, 7.2036, 7.2047, 7.2051, 7.2045, 7.2055, 7.2051, 7.2046, 7.2043, 7.2037, 7.2031, 7.2026, 7.2021, 7.2017, 7.2011, 7.2005, 7.2, 7.1994, 7.1988, 7.1982, 7.1995, 7.199, 7.2004, 7.1998, 7.1977, 7.1956, 7.1971, 7.1985, 7.1982, 7.198, 7.1974, 7.1971, 7.1971, 7.1966, 7.1964, 7.1958, 7.1952, 7.1993, 7.199, 7.1984, 7.1981, 7.1977, 7.1974, 7.197, 7.1966, 7.1963, 7.1957, 7.1952, 7.1969, 7.1964, 7.1959, 7.1939, 7.1936, 7.1933, 7.1945, 7.194, 7.1919, 7.1917, 7.1929, 7.1941, 7.1935, 7.1929, 7.1909, 7.1905, 7.1902, 7.1898, 7.1894, 7.1889, 7.1886, 7.1881, 7.1892, 7.1888, 7.1899, 7.1894, 7.189, 7.1886, 7.1882, 7.194, 7.1935, 7.193, 7.1928, 7.1923, 7.1918, 7.1914, 7.1909, 7.1903, 7.195, 7.1961, 7.1988, 7.1983, 7.1995, 7.1991, 7.1985, 7.1979, 7.1974, 7.1971, 7.1968, 7.1964, 7.1944, 7.1943, 7.194, 7.1936, 7.1948, 7.1942, 7.1936, 7.193, 7.1912, 7.1907, 7.1902, 7.1897, 7.1892, 7.1887, 7.1882, 7.1877, 7.1887, 7.1898, 7.1893, 7.1921, 7.1916, 7.1921, 7.1916, 7.1911, 7.1922, 7.1932, 7.1927, 7.1938, 7.1934, 7.1929, 7.1926, 7.1935, 7.1947, 7.1943, 7.1977, 7.1973, 7.1969, 7.1966, 7.1963, 7.1958, 7.197, 7.1966, 7.196, 7.1954, 7.1964, 7.196, 7.1955, 7.1965, 7.1977, 7.1973, 7.1984, 7.1998, 7.1981, 7.1967, 7.2029, 7.2009, 7.2004, 7.2036, 7.203, 7.2025, 7.2036, 7.2031, 7.2026, 7.2021, 7.2034, 7.2066, 7.2061, 7.2149, 7.2145, 7.2128, 7.2124, 7.2136, 7.2147, 7.2142, 7.2159, 7.2155, 7.2154, 7.2182, 7.2177, 7.2173, 7.2168, 7.2169, 7.2165, 7.2161, 7.2156, 7.2151, 7.2147, 7.2154, 7.2164, 7.2159, 7.2156, 7.2151, 7.2162, 7.2158, 7.2152, 7.2163, 7.2158, 7.2168, 7.2163, 7.2158, 7.2153, 7.2148, 7.2158, 7.2169, 7.2163, 7.2172, 7.2168, 7.2178, 7.2173, 7.2168, 7.2163, 7.219, 7.2185, 7.2195, 7.219, 7.2186, 7.2198, 7.2194, 7.2191, 7.2186, 7.2182, 7.2192, 7.2205, 7.2201, 7.2199, 7.2195, 7.2191, 7.2188, 7.2186, 7.2181, 7.2179, 7.2174, 7.2185, 7.218, 7.2176, 7.2172, 7.2168, 7.2165, 7.2178, 7.2181, 7.2192, 7.2189, 7.2184, 7.2195, 7.219, 7.2186, 7.2196, 7.2226, 7.2252, 7.2247, 7.2241, 7.2235, 7.2229, 7.2226, 7.2222, 7.2232, 7.2242, 7.2236, 7.2231, 7.2226, 7.2224, 7.2235, 7.2241, 7.2236, 7.2232, 7.2227, 7.2222, 7.2233, 7.2243, 7.2237, 7.2248, 7.2245, 7.2246, 7.2241, 7.2237, 7.2233, 7.2229, 7.2223, 7.2234, 7.2248, 7.2244, 7.2257, 7.2253, 7.2251, 7.2262, 7.2257, 7.2253, 7.2266, 7.2263, 7.2259, 7.227, 7.2279, 7.2276, 7.2271, 7.2267, 7.2263, 7.2272, 7.2271, 7.2266, 7.2264, 7.2275, 7.2272, 7.2273, 7.2286, 7.2315, 7.2331, 7.2348, 7.236, 7.2371, 7.2383, 7.2382, 7.2365, 7.2362, 7.2372, 7.2368, 7.2362, 7.2357, 7.2352, 7.237, 7.2379, 7.2361, 7.2357, 7.2356, 7.2352, 7.2348, 7.2344, 7.2353, 7.2349, 7.2344, 7.234, 7.2321, 7.2331, 7.2327, 7.2338, 7.2333, 7.233, 7.2324, 7.232, 7.2315, 7.2326, 7.2326, 7.2326, 7.2326, 7.2322, 7.2317, 7.2344, 7.234, 7.2365, 7.2392, 7.2389, 7.2402, 7.2398, 7.2414, 7.2441, 7.2437, 7.2448, 7.2444, 7.2451, 7.2449, 7.2445, 7.2441, 7.2438, 7.2434, 7.2461, 7.2472, 7.2456, 7.2452, 7.2462, 7.2456, 7.2452, 7.2463, 7.2473, 7.2468, 7.2463, 7.2459, 7.2455, 7.2465, 7.2462, 7.2458, 7.247, 7.2482, 7.248, 7.2475, 7.2472, 7.2484, 7.248, 7.2491, 7.251, 7.2505, 7.25, 7.2495, 7.249, 7.2486, 7.2497, 7.2507, 7.2525, 7.2507, 7.2516, 7.2526, 7.2537, 7.2531, 7.2513, 7.2494, 7.249, 7.2485, 7.2498, 7.2495, 7.249, 7.2487, 7.2483, 7.248, 7.2476, 7.2472, 7.2468, 7.2464, 7.246, 7.2455, 7.2453, 7.2448, 7.2443, 7.2441, 7.2452, 7.2448, 7.2446, 7.2441, 7.2436, 7.2447, 7.2442, 7.2443, 7.2438, 7.2449, 7.2444, 7.2457, 7.2442, 7.2437, 7.2446, 7.2444, 7.2529, 7.2539, 7.2534, 7.2544, 7.2539, 7.2534, 7.2529, 7.2524, 7.2519, 7.2516, 7.2512, 7.2508, 7.2504, 7.2502, 7.2498, 7.2493, 7.2504, 7.2501, 7.2498, 7.2494, 7.2489, 7.25, 7.2495, 7.2523, 7.252, 7.2515, 7.2512, 7.251, 7.2509, 7.2504, 7.2501, 7.2496, 7.2491, 7.249, 7.2485, 7.2498, 7.2493, 7.249, 7.2485, 7.2479, 7.2475, 7.247, 7.2465, 7.2463, 7.2472, 7.2467, 7.2477, 7.2473, 7.2485, 7.2496, 7.2493, 7.2488, 7.2485, 7.248, 7.2476, 7.2471, 7.2482, 7.2479, 7.2475, 7.2476, 7.2471, 7.2466, 7.2461, 7.2458, 7.2454, 7.245, 7.245, 7.246, 7.247, 7.2465, 7.2461, 7.2456, 7.2452, 7.2434, 7.2429, 7.2424, 7.2419, 7.2416, 7.2411, 7.2409, 7.2419, 7.2429, 7.2424, 7.2419, 7.2413, 7.2411, 7.2406, 7.2402, 7.2397, 7.2407, 7.2402, 7.2398, 7.2393, 7.2389, 7.2399, 7.2395, 7.2393, 7.2389, 7.2387, 7.2383, 7.2408, 7.2403, 7.2399, 7.2395, 7.2392, 7.2402, 7.2412, 7.2407, 7.2424, 7.2428, 7.2422, 7.2432, 7.2427, 7.2435, 7.2445, 7.2443, 7.2453, 7.2449, 7.2446, 7.2441, 7.2451, 7.2446, 7.2441, 7.2438, 7.2433, 7.2443, 7.2438, 7.2436, 7.2447, 7.2442, 7.2437, 7.2433, 7.2443, 7.2438, 7.2448, 7.2443, 7.2438, 7.2433, 7.2428, 7.2427, 7.2436, 7.2432, 7.244, 7.2435, 7.2417, 7.2413, 7.2422, 7.2419, 7.2431, 7.2426, 7.2423, 7.2419, 7.2401, 7.2411, 7.242, 7.2429, 7.2424, 7.2421, 7.2416, 7.2425, 7.2423, 7.242, 7.2417, 7.2412, 7.2421, 7.2416, 7.2411, 7.242, 7.2429, 7.2424, 7.2419, 7.2415, 7.2413, 7.2485, 7.2482, 7.2482, 7.2491, 7.2486, 7.2485, 7.248, 7.2476, 7.2472, 7.2468, 7.2464, 7.2446, 7.2459, 7.2444, 7.2443, 7.244, 7.2471, 7.247, 7.2465, 7.2451, 7.2446, 7.2456, 7.2465, 7.2461, 7.2456, 7.2452, 7.2472, 7.2545, 7.2554, 7.2563, 7.2549, 7.2558, 7.2553, 7.2562, 7.2557, 7.2568, 7.2565, 7.2575, 7.257, 7.2579, 7.2575, 7.2584, 7.2593, 7.2602, 7.2597, 7.2592, 7.2588, 7.2616, 7.2614, 7.261, 7.2622, 7.2617, 7.2613, 7.2609, 7.2605, 7.2587, 7.257, 7.2567, 7.2567, 7.2564, 7.2562, 7.2567, 7.2562, 7.2572, 7.2568, 7.2563, 7.2571, 7.2567, 7.2564, 7.256, 7.2556, 7.2553, 7.2564, 7.2559, 7.2555, 7.255, 7.2559, 7.2597, 7.2592, 7.2588, 7.2591, 7.2627, 7.2638, 7.2638, 7.2646, 7.2671, 7.2666, 7.2661, 7.267, 7.2667, 7.2662, 7.2659, 7.2655, 7.2651, 7.2633, 7.2633, 7.2648, 7.2633, 7.2629, 7.2624, 7.2633, 7.2629, 7.2625, 7.2608, 7.2603, 7.2616, 7.2614, 7.261, 7.2607, 7.263, 7.2625, 7.262, 7.2603, 7.2599, 7.2594, 7.259, 7.2586, 7.2593, 7.2588, 7.2597, 7.2593, 7.2589, 7.2598, 7.2593, 7.2589, 7.2572, 7.2567, 7.2576, 7.2571, 7.2567, 7.2577, 7.2572, 7.2567, 7.2562, 7.2557, 7.2552, 7.2547, 7.253, 7.2528, 7.2523, 7.2519, 7.2516, 7.2513, 7.2495, 7.2493, 7.2491, 7.2501, 7.251, 7.2505, 7.25, 7.2496, 7.2494, 7.2503, 7.2498, 7.2507, 7.2502, 7.2497, 7.2506, 7.2501, 7.2497, 7.2492, 7.2487, 7.2482, 7.2478, 7.2488, 7.2484, 7.2493, 7.2489, 7.2484, 7.2481, 7.2479, 7.2475, 7.2485, 7.2481, 7.2491, 7.2487, 7.2495, 7.2491, 7.2504, 7.2499, 7.2495, 7.249, 7.2486, 7.2482, 7.2477, 7.2473, 7.2468, 7.2466, 7.2475, 7.247, 7.2465, 7.2473, 7.2472, 7.2482, 7.248, 7.2479, 7.2481, 7.248, 7.249, 7.2486, 7.2482, 7.2506, 7.2503, 7.2498, 7.2494, 7.2501, 7.2498, 7.2495, 7.2504, 7.2513, 7.2509, 7.2506, 7.2506, 7.2503, 7.25, 7.2495, 7.249, 7.2499, 7.2494, 7.2503, 7.2512, 7.2521, 7.2516, 7.2512, 7.2521, 7.2504, 7.2518, 7.2514, 7.251, 7.2519, 7.2528, 7.2512, 7.2507, 7.2491, 7.2487, 7.2471, 7.2455, 7.2453, 7.2449, 7.2447, 7.2445, 7.2441, 7.2436, 7.2432, 7.2428, 7.2424, 7.2422, 7.2431, 7.2426, 7.2435, 7.2446, 7.2455, 7.2454, 7.245, 7.2458, 7.2453, 7.2448, 7.2444, 7.2444, 7.2453, 7.2463, 7.2458, 7.2459, 7.2467, 7.2477, 7.2488, 7.2485, 7.2481, 7.2477, 7.2473, 7.2469, 7.2465, 7.2461, 7.2458, 7.2467, 7.2488, 7.2483, 7.2478, 7.2487, 7.2484, 7.2481, 7.2479, 7.2475, 7.2473, 7.2469, 7.2465, 7.2544, 7.254, 7.2563, 7.2572, 7.2568, 7.2563, 7.2547, 7.2544, 7.254, 7.2538, 7.2533, 7.253, 7.2527, 7.2522, 7.2519, 7.2516, 7.2511, 7.252, 7.2516, 7.2513, 7.251, 7.2506, 7.2502, 7.2511, 7.2507, 7.2518, 7.2513, 7.251, 7.2519, 7.2528, 7.2537, 7.2532, 7.2541, 7.2538, 7.2534, 7.253, 7.2526, 7.2523, 7.252, 7.2515, 7.2524, 7.2524, 7.2519, 7.2528, 7.2523, 7.252, 7.2529, 7.2538, 7.2547, 7.2556, 7.2551, 7.2546, 7.2542, 7.2539, 7.2548, 7.2557, 7.2554, 7.2551, 7.256, 7.2555, 7.2539, 7.2536, 7.2537, 7.2533, 7.253, 7.2527, 7.2522, 7.2519, 7.2515, 7.251, 7.2505, 7.25, 7.2496, 7.2492, 7.2489, 7.2485, 7.248, 7.2489, 7.2484, 7.2493, 7.249, 7.2486, 7.247, 7.2466, 7.2462, 7.246, 7.246, 7.2468, 7.2476, 7.2471, 7.2467, 7.2478, 7.2486, 7.247, 7.2478, 7.2486, 7.2482, 7.2498, 7.2506, 7.2501, 7.2497, 7.2492, 7.2495, 7.2492, 7.2487, 7.2482, 7.2493, 7.2501, 7.2516, 7.2524, 7.2508, 7.2492, 7.2488, 7.2488, 7.2483, 7.248, 7.2475, 7.2486, 7.2481, 7.2477, 7.2475, 7.2473, 7.2469, 7.2466, 7.2475, 7.2471, 7.2479, 7.2475, 7.2471, 7.2468, 7.2464, 7.246, 7.2445, 7.2441, 7.2437, 7.2434, 7.243, 7.2426, 7.2422, 7.2431, 7.2427, 7.2412, 7.2408, 7.2407, 7.2403, 7.24, 7.2395, 7.2391, 7.2386, 7.2381, 7.2376, 7.2374, 7.2383, 7.2381, 7.2377, 7.2374, 7.2371, 7.2367, 7.2363, 7.2362, 7.2359, 7.2367, 7.2362, 7.2359, 7.2368, 7.2364, 7.2373, 7.2382, 7.2378, 7.2386, 7.2381, 7.2377, 7.2373, 7.2369, 7.2364, 7.2372, 7.2369, 7.2366, 7.2375, 7.2371, 7.2367, 7.2376, 7.2373, 7.2381, 7.239, 7.2385, 7.2383, 7.2392, 7.239, 7.2399, 7.2395, 7.238, 7.2377, 7.2385, 7.2382, 7.2379, 7.2376, 7.2372, 7.237, 7.2377, 7.2373, 7.237, 7.2378, 7.2374, 7.2371, 7.238, 7.2376, 7.2373, 7.2357, 7.2365, 7.2363, 7.236, 7.2356, 7.2352, 7.2348, 7.2345, 7.2341, 7.2336, 7.2344, 7.234, 7.2345, 7.2353, 7.2361, 7.2358, 7.2366, 7.2373, 7.237, 7.2368, 7.2364, 7.2361, 7.2357, 7.2353, 7.2349, 7.2345, 7.234, 7.2336, 7.2332, 7.2341, 7.2362, 7.2382, 7.2391, 7.2395, 7.2404, 7.24, 7.2397, 7.2405, 7.2403, 7.2398, 7.2406, 7.2402, 7.2397, 7.2406, 7.2402, 7.2397, 7.2393, 7.2389, 7.2374, 7.2369, 7.2364, 7.2372, 7.2368, 7.2364, 7.2349, 7.2334, 7.233, 7.2338, 7.2335, 7.2331, 7.2327, 7.2324, 7.2327, 7.2322, 7.2319, 7.2327, 7.2334, 7.233, 7.2326, 7.2322, 7.232, 7.2329, 7.2325, 7.2321, 7.2324, 7.2325, 7.2324, 7.232, 7.2328, 7.2324, 7.2321, 7.2318, 7.2325, 7.2346, 7.2342, 7.2338, 7.2334, 7.2342, 7.235, 7.2346, 7.2343, 7.2341, 7.2339, 7.2336, 7.2332, 7.2328, 7.2325, 7.2322, 7.2318, 7.2314, 7.2313, 7.2309, 7.2306, 7.2302, 7.23, 7.2297, 7.2293, 7.2289, 7.2285, 7.2281, 7.2278, 7.2287, 7.2295, 7.2302, 7.2299, 7.2286, 7.2271, 7.2267, 7.2263, 7.2259, 7.2255, 7.2251, 7.2262, 7.227, 7.2279, 7.2277, 7.2273, 7.2271, 7.2267, 7.2264, 7.226, 7.2269, 7.2265, 7.2262, 7.2259, 7.2256, 7.2253, 7.2249, 7.2247, 7.2243, 7.2254, 7.225, 7.2246, 7.2242, 7.2261, 7.2268, 7.2265, 7.2261, 7.2272, 7.2269, 7.2267, 7.2275, 7.2273, 7.2281, 7.2289, 7.2286, 7.2294, 7.2301, 7.2297, 7.2293, 7.2301, 7.2296, 7.2282, 7.2278, 7.2286, 7.2283, 7.2279, 7.2275, 7.2271, 7.2268, 7.2264, 7.226, 7.2269, 7.2277, 7.2284, 7.2292, 7.2289, 7.2297, 7.2293, 7.2278, 7.2285, 7.2281, 7.229, 7.2286, 7.2282, 7.2278, 7.2286, 7.2284, 7.2281, 7.2278, 7.2286, 7.2283, 7.2279, 7.2297, 7.2294, 7.2291, 7.2288, 7.2288, 7.2284, 7.2303, 7.23, 7.232, 7.2316, 7.2301, 7.2298, 7.2294, 7.229, 7.2288, 7.2285, 7.2281, 7.2277, 7.2273, 7.2269, 7.2281, 7.2277, 7.2285, 7.2281, 7.2289, 7.2285, 7.2293, 7.2291, 7.229, 7.2288, 7.2283, 7.2278, 7.2274, 7.2272, 7.2269, 7.2278, 7.2285, 7.2282, 7.2278, 7.2275, 7.2273, 7.2271, 7.2271, 7.2267, 7.2265, 7.2273, 7.2269, 7.2265, 7.2262, 7.2258, 7.2254, 7.2251, 7.2248, 7.2256, 7.2253, 7.2261, 7.2257, 7.2254, 7.2252, 7.2248, 7.2256, 7.2252, 7.2249, 7.2246, 7.2231, 7.2228, 7.2226, 7.2211, 7.2207, 7.2215, 7.2211, 7.2209, 7.2241, 7.2238, 7.2248, 7.2246, 7.2254, 7.2251, 7.2248, 7.2244, 7.2241, 7.2249, 7.2257, 7.2267, 7.2264, 7.2262, 7.226, 7.2257, 7.2253, 7.2249, 7.2246, 7.2243, 7.2242, 7.2238, 7.2234, 7.2234, 7.2231, 7.2239, 7.2237, 7.2233, 7.2242, 7.2238, 7.2234, 7.222, 7.2217, 7.2214, 7.2211, 7.2219, 7.2215, 7.2211, 7.2208, 7.2217, 7.2214, 7.2212, 7.222, 7.2228, 7.2236, 7.2244, 7.2252, 7.2248, 7.2234, 7.223, 7.2215, 7.2211, 7.2207, 7.2215, 7.2212, 7.2208, 7.2206, 7.2213, 7.2211, 7.2207, 7.2214, 7.2211, 7.2209, 7.2218, 7.2216, 7.2224, 7.222, 7.2217, 7.2213, 7.221, 7.2218, 7.2214, 7.2211, 7.2219, 7.2216, 7.2214, 7.2211, 7.2208, 7.2205, 7.2191, 7.2199, 7.2207, 7.2204, 7.22, 7.2196, 7.2192, 7.219, 7.2199, 7.2195, 7.2203, 7.2201, 7.2197, 7.2205, 7.2201, 7.2198, 7.2196, 7.2193, 7.219, 7.2187, 7.2187, 7.2194, 7.2192, 7.2188, 7.2184, 7.218, 7.2182, 7.2189, 7.2196, 7.2191, 7.2188, 7.2184, 7.218, 7.2176, 7.2173, 7.2169, 7.2165, 7.2161, 7.217, 7.2178, 7.2174, 7.217, 7.2177, 7.2173, 7.2169, 7.2177, 7.2174, 7.2172, 7.2169, 7.2165, 7.2151, 7.2147, 7.2155, 7.2151, 7.2159, 7.2155, 7.2153, 7.2139, 7.2138, 7.2134, 7.2141, 7.2137, 7.2136, 7.2132, 7.2118, 7.2114, 7.2111, 7.2107, 7.2104, 7.2103, 7.2113, 7.2109, 7.2117, 7.2114, 7.211, 7.2106, 7.2102, 7.2101, 7.2087, 7.2084, 7.208, 7.207, 7.2073, 7.2072, 7.2069, 7.2065, 7.2062, 7.2058, 7.2055, 7.2063, 7.206, 7.2058, 7.2064, 7.2062, 7.2059, 7.2055, 7.2052, 7.206, 7.2079, 7.2076, 7.2072, 7.2069, 7.2077, 7.2074, 7.2071, 7.2068, 7.2065, 7.2072, 7.2059, 7.2057, 7.2053, 7.2049, 7.2058, 7.2054, 7.204, 7.2037, 7.2034, 7.203, 7.2028, 7.2025, 7.2023, 7.203, 7.2026, 7.2024, 7.2021, 7.2017, 7.2025, 7.2033, 7.2031, 7.204, 7.2037, 7.2034, 7.2031, 7.2029, 7.2036, 7.2032, 7.2029, 7.2025, 7.2023, 7.202, 7.2027, 7.2013, 7.201, 7.1996, 7.1983, 7.1979, 7.1977, 7.199, 7.1999, 7.1997, 7.1994, 7.1993, 7.1989, 7.1986, 7.1995, 7.1991, 7.1988, 7.2007, 7.2004, 7.2011, 7.2019, 7.2015, 7.2011, 7.2, 7.1996, 7.204, 7.2054, 7.2054, 7.2061, 7.2058, 7.2055, 7.2053, 7.2049, 7.2068, 7.2064, 7.2063, 7.206, 7.2058, 7.2054, 7.205, 7.2058, 7.2055, 7.2063, 7.207, 7.2067, 7.2131, 7.2127, 7.2135, 7.2132, 7.213, 7.2116, 7.2112, 7.2109, 7.2161, 7.2158, 7.2154, 7.215, 7.2158, 7.2154, 7.215, 7.2148, 7.2168, 7.2164, 7.2161, 7.2158, 7.2154, 7.215, 7.2147, 7.2144, 7.213, 7.2127, 7.2124, 7.2132, 7.2129, 7.213, 7.2127, 7.2114, 7.211, 7.2107, 7.2104, 7.2101, 7.2098, 7.2095, 7.2092, 7.21, 7.2096, 7.2093, 7.2101, 7.2099, 7.2096, 7.2093, 7.2089, 7.2086, 7.2082, 7.208, 7.2076, 7.2072, 7.2069, 7.2066, 7.2062, 7.206, 7.2056, 7.2064, 7.2066, 7.2063, 7.206, 7.2047, 7.2034, 7.2031, 7.2044, 7.2051, 7.2048, 7.2044, 7.2041, 7.2038, 7.2061, 7.2057, 7.2067, 7.2068, 7.2066, 7.2075, 7.2062, 7.207, 7.2067, 7.2089, 7.2088, 7.2087, 7.2077, 7.2115, 7.2113, 7.211, 7.2118, 7.2114, 7.2112, 7.2112, 7.2101, 7.2098, 7.2087, 7.2084, 7.2073, 7.2069, 7.2065, 7.2062, 7.2058, 7.2057, 7.2054, 7.2052, 7.2049, 7.2057, 7.2058, 7.2054, 7.2062, 7.2063, 7.206, 7.2058, 7.2055, 7.2051, 7.2047, 7.2044, 7.204, 7.2036, 7.2043, 7.2039, 7.2035, 7.2032, 7.204, 7.2038, 7.2034, 7.2034, 7.2031, 7.2038, 7.2054, 7.2054, 7.2061, 7.2071, 7.2078, 7.2088, 7.2085, 7.2095, 7.2102, 7.2099, 7.2095, 7.2102, 7.211, 7.2108, 7.2115, 7.2122, 7.214, 7.2137, 7.2133, 7.2129, 7.2126, 7.2122, 7.2118, 7.2115, 7.2112, 7.2108, 7.2104, 7.2102, 7.2098, 7.2105, 7.2102, 7.2109, 7.2105, 7.2102, 7.2109, 7.2105, 7.2102, 7.2099, 7.2096, 7.2094, 7.209, 7.2086, 7.2095, 7.2092, 7.2096, 7.2095, 7.2093, 7.2101, 7.2099, 7.2096, 7.2093, 7.2091, 7.2088, 7.2092, 7.2092, 7.2089, 7.2086, 7.2094, 7.2105, 7.2102, 7.2092, 7.2089, 7.2088, 7.2084, 7.2081, 7.2079, 7.2076, 7.2063, 7.205, 7.2046, 7.2043, 7.2052, 7.2061, 7.2057, 7.2056, 7.2081, 7.2078, 7.2075, 7.2072, 7.2079, 7.2077, 7.2075, 7.2082, 7.2078, 7.2075, 7.2082, 7.2082, 7.2078, 7.2075, 7.2082, 7.2081, 7.2077, 7.2073, 7.206, 7.2067, 7.2073, 7.2069, 7.2058, 7.2055, 7.2063, 7.2059, 7.2066, 7.2053, 7.206, 7.207, 7.2067, 7.2074, 7.2071, 7.2068, 7.2065, 7.2061, 7.2061, 7.2061, 7.2048, 7.2035, 7.2031, 7.2039, 7.2046, 7.2043, 7.205, 7.2058, 7.2065, 7.2061, 7.2057, 7.2046, 7.2065, 7.2062, 7.2052, 7.2049, 7.2056, 7.2063, 7.206, 7.2057, 7.2056, 7.2055, 7.2066, 7.2075, 7.2071, 7.2068, 7.2065, 7.2062, 7.2081, 7.2068, 7.2076, 7.2083, 7.208, 7.2077, 7.2074, 7.2072, 7.2069, 7.2065, 7.2053, 7.205, 7.2046, 7.2044, 7.2041, 7.2048, 7.2045, 7.2041, 7.2039, 7.2036, 7.2032, 7.2028, 7.2025, 7.2022, 7.202, 7.2027, 7.2035, 7.2031, 7.2027, 7.2023, 7.202, 7.2016, 7.2012, 7.2008, 7.2015, 7.2023, 7.202, 7.202, 7.2017, 7.2014, 7.2022, 7.2019, 7.202, 7.2017, 7.2024, 7.2021, 7.2018, 7.2019, 7.2026, 7.2033, 7.203, 7.2026, 7.2022, 7.2018, 7.2018, 7.2014, 7.2021, 7.2028, 7.2024, 7.2022, 7.2019, 7.2026, 7.2024, 7.202, 7.2016, 7.2013, 7.2009, 7.2007, 7.2003, 7.2011, 7.2008, 7.2016, 7.2024, 7.2023, 7.202, 7.2017, 7.2015, 7.2013, 7.201, 7.2009, 7.2006, 7.2003, 7.2011, 7.2008, 7.2006, 7.2004, 7.1991, 7.1998, 7.1994, 7.1991, 7.199, 7.1987, 7.1984, 7.1981, 7.1978, 7.1975, 7.1982, 7.1979, 7.1976, 7.1973, 7.1992, 7.1979, 7.1975, 7.1981, 7.198, 7.1976, 7.1984, 7.1988, 7.1985, 7.1982, 7.1978, 7.1975, 7.1972, 7.1982, 7.198, 7.1968, 7.1965, 7.1972, 7.1969, 7.1977, 7.1975, 7.1973, 7.1973, 7.1981, 7.1988, 7.1998, 7.1997, 7.1993, 7.199, 7.1988, 7.1992, 7.1989, 7.1986, 7.1982, 7.1989, 7.1995, 7.1992, 7.199, 7.1977, 7.1974, 7.1971, 7.1968, 7.1965, 7.1962, 7.1969, 7.1967, 7.1973, 7.198, 7.1979, 7.1967, 7.1956, 7.1963, 7.1971, 7.1968, 7.1965, 7.1972, 7.1979, 7.1976, 7.1972, 7.1968, 7.1965, 7.1963, 7.1998, 7.1995, 7.1992, 7.1988, 7.1986, 7.1992, 7.1979, 7.1975, 7.1983, 7.1981, 7.1979, 7.1986, 7.1993, 7.1989, 7.1986, 7.1975, 7.1979, 7.1975, 7.1985, 7.1985, 7.1976, 7.1976, 7.1974, 7.1993, 7.2011, 7.2008, 7.2005, 7.2001, 7.1998, 7.1994, 7.1991, 7.1988, 7.1994, 7.199, 7.1997, 7.1994, 7.2001, 7.1998, 7.1995, 7.1992, 7.1991, 7.1988, 7.1984, 7.1992, 7.1989, 7.1977, 7.1974, 7.1971, 7.1989, 7.2007, 7.2006, 7.2003, 7.2001, 7.1999, 7.1997, 7.1995, 7.1997, 7.2004, 7.2002, 7.1999, 7.1996, 7.1993, 7.1993, 7.1991, 7.1987, 7.1983, 7.199, 7.1987, 7.1983, 7.1979, 7.1975, 7.1973, 7.1971, 7.1978, 7.1976, 7.1973, 7.1981, 7.1978, 7.1975, 7.1973, 7.197, 7.1967, 7.1963, 7.1969, 7.1956, 7.1962, 7.1959, 7.1955, 7.1952, 7.1949, 7.1955, 7.1952, 7.1959, 7.1966, 7.1964, 7.1961, 7.1967, 7.1975, 7.1982, 7.1988, 7.1985, 7.1973, 7.1971, 7.1977, 7.1974, 7.1971, 7.1988, 7.1985, 7.1984, 7.198, 7.1968, 7.1966, 7.1974, 7.1973, 7.1971, 7.1968, 7.1964, 7.1961, 7.1958, 7.1955, 7.1952, 7.1959, 7.1963, 7.1961, 7.1958, 7.1965, 7.1962, 7.196, 7.1958, 7.1955, 7.1955, 7.1963, 7.1969, 7.1965, 7.1962, 7.1961, 7.197100000000001, 7.1976, 7.1973, 7.198, 7.1987, 7.1983, 7.198, 7.1977, 7.1974, 7.1984, 7.1973, 7.1979, 7.1977, 7.1973, 7.197, 7.1977, 7.1974, 7.197, 7.1967, 7.1973, 7.197, 7.1957, 7.1953, 7.195, 7.1959, 7.1955, 7.1965, 7.197500000000001, 7.198500000000001, 7.2003, 7.2012, 7.2011, 7.2008, 7.2007, 7.2004, 7.2011, 7.2019, 7.2036, 7.2043, 7.205, 7.2047, 7.2045, 7.2052, 7.205, 7.2057, 7.2054, 7.2051, 7.2048, 7.2036, 7.2033, 7.203, 7.2029, 7.2027, 7.2034, 7.204, 7.204, 7.2039, 7.2036, 7.2033, 7.2031, 7.2028, 7.2025, 7.2022, 7.2029, 7.2026, 7.2033, 7.2031, 7.2038, 7.2036, 7.2034, 7.2033, 7.2031, 7.2029, 7.2026, 7.2023, 7.2025, 7.2022, 7.2019, 7.2016, 7.2013, 7.201, 7.2007, 7.2005, 7.2002, 7.2, 7.2010000000000005, 7.2007, 7.2014, 7.2022, 7.2019, 7.2016, 7.2013, 7.201, 7.2018, 7.2015, 7.2013, 7.201, 7.2018, 7.2015, 7.2012, 7.201, 7.2007, 7.2004, 7.2001, 7.1997, 7.1994, 7.2006, 7.2012, 7.2021, 7.2018, 7.2014, 7.2011, 7.2008, 7.1996, 7.1994, 7.2004, 7.2014000000000005, 7.202400000000001, 7.203400000000001, 7.2044000000000015, 7.2041, 7.2029, 7.2036, 7.2034, 7.2031, 7.2028, 7.2025, 7.2022, 7.202, 7.2027, 7.2024, 7.2022, 7.2019, 7.2027, 7.2024, 7.2031, 7.2032, 7.2029, 7.2017, 7.2006, 7.2003, 7.2, 7.1997, 7.2014, 7.2012, 7.2013, 7.2001, 7.1999, 7.2014, 7.2011, 7.2008, 7.2005, 7.2003, 7.202, 7.2027, 7.2024, 7.2021, 7.2018, 7.2015, 7.2021, 7.2018, 7.2015, 7.2012, 7.2009, 7.2006, 7.2003, 7.2, 7.1997, 7.1997, 7.1985, 7.1991, 7.1989, 7.2006, 7.2003, 7.2004, 7.2001, 7.2009, 7.2006, 7.2014, 7.202, 7.2017, 7.2014, 7.2012, 7.202, 7.2027, 7.2024, 7.2031, 7.2028, 7.2036, 7.2039, 7.2038, 7.2045, 7.2042, 7.2059, 7.2069, 7.2076, 7.2073, 7.208, 7.2090000000000005, 7.2087, 7.2085, 7.2076, 7.2093, 7.2098, 7.2094, 7.2091, 7.2088, 7.2085, 7.2082, 7.2089, 7.2087, 7.2085, 7.2082, 7.208, 7.2133, 7.213, 7.2136, 7.2133, 7.213, 7.2129, 7.2135, 7.217, 7.2178, 7.2184, 7.2194, 7.2201, 7.2208, 7.2214, 7.2211, 7.2217, 7.2214, 7.221, 7.2206, 7.2204, 7.2201, 7.2198, 7.2194, 7.2191, 7.2188, 7.2185, 7.2195, 7.2192, 7.2198, 7.2195, 7.2192, 7.2189, 7.2186, 7.2184, 7.2181, 7.2179, 7.2177, 7.2175, 7.2181, 7.2178, 7.2175, 7.2173, 7.218, 7.2177, 7.2175, 7.2173, 7.2172, 7.2169, 7.2157, 7.2155, 7.2153, 7.2151, 7.2149, 7.2155, 7.2152, 7.2149, 7.2147, 7.2146, 7.2144, 7.2142, 7.2141, 7.214, 7.2139, 7.2136, 7.2133, 7.2129, 7.2127, 7.2134, 7.2131, 7.2119, 7.2118, 7.2114, 7.2111, 7.2117, 7.2114, 7.2112, 7.2109, 7.2106, 7.2104, 7.2102, 7.2099, 7.2105, 7.2102, 7.2108, 7.2105, 7.2102, 7.21, 7.2106, 7.2103, 7.2109, 7.2118, 7.2124, 7.2121, 7.2118, 7.2128, 7.2125, 7.2124, 7.2121, 7.2118, 7.2118, 7.2115, 7.2121, 7.2119, 7.2116, 7.2115, 7.2113, 7.212, 7.2117, 7.2114, 7.2112, 7.211, 7.2108, 7.2105, 7.2096, 7.2096, 7.2093, 7.209, 7.2087, 7.2093, 7.21, 7.2117, 7.2114, 7.2116, 7.2113, 7.212, 7.2126, 7.2123, 7.2132, 7.213, 7.2128, 7.2125, 7.2131, 7.2128, 7.2128, 7.2126, 7.2115, 7.2112, 7.2118, 7.2106, 7.2103, 7.2101, 7.2107, 7.2104, 7.213, 7.2128, 7.2125, 7.2131, 7.2137, 7.2134, 7.217, 7.2168, 7.2165, 7.2161, 7.2158, 7.2156, 7.2153, 7.2159, 7.2156, 7.2162, 7.2158, 7.2155, 7.2161, 7.2167, 7.2164, 7.217, 7.2177, 7.2174, 7.2171, 7.2169, 7.2167, 7.2166, 7.2172, 7.2169, 7.2166, 7.2164, 7.2162, 7.216, 7.2158, 7.2148, 7.2145, 7.2143, 7.2149, 7.2161, 7.2168, 7.2166, 7.2164, 7.2161, 7.2158, 7.2156, 7.2154, 7.2153, 7.215, 7.2147, 7.2154, 7.2152, 7.2149, 7.2146, 7.2144, 7.2141, 7.2139, 7.2146, 7.2143, 7.215, 7.2147, 7.2146, 7.2144, 7.2149, 7.2157, 7.2164, 7.2164, 7.2162, 7.216, 7.2157, 7.2154, 7.2161, 7.2159, 7.2166, 7.2164, 7.217, 7.2176, 7.2209, 7.2206, 7.2204, 7.2202, 7.22, 7.2206, 7.2212, 7.2209, 7.2215, 7.2212, 7.221, 7.222, 7.2226, 7.2233, 7.223, 7.2228, 7.2226, 7.2223, 7.2221, 7.2218, 7.2215, 7.2213, 7.2219, 7.2218, 7.2224, 7.2221, 7.2218, 7.2215, 7.2213, 7.2219, 7.2216, 7.2213, 7.2219, 7.2216, 7.2216, 7.2213, 7.2219, 7.2217, 7.2215, 7.2213, 7.2212, 7.2242, 7.2239, 7.2236, 7.2233, 7.223, 7.2228, 7.2231, 7.2229, 7.2228, 7.2225, 7.2225, 7.2231, 7.223, 7.2227, 7.2246, 7.2244, 7.2241, 7.223, 7.2228, 7.2225, 7.2223, 7.2221, 7.2227, 7.2224, 7.223, 7.2228, 7.2234, 7.224, 7.2237, 7.2243, 7.224, 7.2237, 7.2234, 7.2233, 7.223, 7.2227, 7.2225, 7.2222, 7.2228, 7.2234, 7.224, 7.2238, 7.2236, 7.2235, 7.2235, 7.2232, 7.2221, 7.2218, 7.2215, 7.2221, 7.2218, 7.2218, 7.2215, 7.2212, 7.221, 7.2207, 7.2205, 7.2212, 7.2209, 7.2206, 7.2212, 7.222, 7.2217, 7.2214, 7.2211, 7.2208, 7.2206, 7.2195, 7.2194, 7.2191, 7.2189, 7.2186, 7.2184, 7.2173, 7.2171, 7.2168, 7.2173, 7.2179, 7.2176, 7.2173, 7.217, 7.2176, 7.2182, 7.218, 7.2186, 7.2193, 7.219, 7.2189, 7.2188, 7.2187, 7.2176, 7.2181, 7.2171, 7.2169, 7.2167, 7.2164, 7.2163, 7.216, 7.2158, 7.2156, 7.2153, 7.2152, 7.2149, 7.2146, 7.2135, 7.2132, 7.213, 7.2127, 7.2124, 7.2121, 7.2128, 7.2125, 7.2122, 7.2111, 7.2109, 7.2119, 7.2129, 7.2126, 7.2132, 7.2138, 7.2144, 7.215, 7.2148, 7.2154, 7.2151, 7.2149, 7.2146, 7.2145, 7.2142, 7.2139, 7.2145, 7.2142, 7.2152, 7.2158, 7.2155, 7.2153, 7.2154, 7.2153, 7.2151, 7.2148, 7.2146, 7.2145, 7.2142, 7.2139, 7.2136, 7.2133, 7.214, 7.2138, 7.2135, 7.2134, 7.2131, 7.2131, 7.2128, 7.2125, 7.2123, 7.2121, 7.2118, 7.2115, 7.2116, 7.2117, 7.2114, 7.2111, 7.2108, 7.2124, 7.2121, 7.2118, 7.2115, 7.2108, 7.2115, 7.2115, 7.2114, 7.212, 7.2117, 7.2114, 7.2112, 7.211, 7.2107, 7.2106, 7.2105, 7.211, 7.2107, 7.2104, 7.2111, 7.2117, 7.2116, 7.2114, 7.2111, 7.2108, 7.2106, 7.2103, 7.2102, 7.21, 7.2098, 7.2104, 7.2101, 7.2098, 7.2095, 7.2092, 7.2091, 7.208, 7.2078, 7.2076, 7.2073, 7.2071, 7.2069, 7.2066, 7.2063, 7.2061, 7.2059, 7.2057, 7.2055, 7.2053, 7.206, 7.2057, 7.2054, 7.2051, 7.2058, 7.2065, 7.2072, 7.2078, 7.2076, 7.2083, 7.2081, 7.2078, 7.2084, 7.2081, 7.2088, 7.2085, 7.2092, 7.209, 7.2087, 7.2076, 7.2075, 7.2072, 7.207, 7.2068, 7.2067, 7.2067, 7.2064, 7.207, 7.2067, 7.2064, 7.2062, 7.2059, 7.2056, 7.2062, 7.2059, 7.2056, 7.2053, 7.2059, 7.2057, 7.2054, 7.2052, 7.205, 7.2049, 7.2046, 7.2043, 7.2043, 7.204, 7.2038, 7.2036, 7.2046, 7.2056000000000004, 7.2045, 7.205500000000001, 7.2052, 7.2062, 7.2072, 7.2132, 7.2129, 7.2135, 7.2141, 7.2145, 7.2153, 7.215, 7.2147, 7.2144, 7.2142, 7.2139, 7.2136, 7.2139, 7.2137, 7.2134, 7.2131, 7.2129, 7.2126, 7.2124, 7.213, 7.2128, 7.2126, 7.2125, 7.213, 7.2127, 7.2133, 7.2132, 7.213, 7.2152, 7.2149, 7.2147, 7.2144, 7.2133, 7.2139, 7.2145, 7.2151, 7.214, 7.2146, 7.2152, 7.2141, 7.2148, 7.2153, 7.2158, 7.2164, 7.2161, 7.2158, 7.2159, 7.2157, 7.2163, 7.2169, 7.2175, 7.2172, 7.2169, 7.2178, 7.2175, 7.2181, 7.2187, 7.2187, 7.2193, 7.219, 7.2187, 7.2176, 7.2174, 7.2171, 7.2169, 7.2166, 7.2164, 7.2161, 7.2159, 7.2156, 7.2153, 7.2159, 7.2165, 7.2163, 7.216, 7.2159, 7.2165, 7.2162, 7.2161, 7.2159, 7.2156, 7.2154, 7.2152, 7.2149, 7.2146, 7.2154, 7.2143, 7.214, 7.2137, 7.2135, 7.2135, 7.2132, 7.2129, 7.2126, 7.2115, 7.2112, 7.2113, 7.211, 7.2107, 7.2113, 7.2119, 7.2117, 7.2123, 7.2129, 7.2126, 7.2131, 7.2128, 7.2125, 7.2122, 7.2119, 7.2124, 7.2122, 7.2122, 7.2119, 7.2116, 7.2113, 7.2103, 7.2109, 7.2106, 7.2096, 7.2094, 7.2092, 7.2089, 7.2086, 7.2083, 7.208, 7.2077, 7.2074, 7.2071, 7.2068, 7.2074, 7.2071, 7.2069, 7.2068, 7.2065, 7.2063, 7.206, 7.2059, 7.2056, 7.2053, 7.2042, 7.2039, 7.2036, 7.2042, 7.2048, 7.2046, 7.2044, 7.2041, 7.2045, 7.2051, 7.2048, 7.2045, 7.2042, 7.204, 7.2038, 7.2035, 7.2032, 7.2038, 7.2035, 7.2041, 7.2038, 7.2035, 7.2032, 7.203, 7.2036, 7.2034, 7.2032, 7.203, 7.202, 7.2017, 7.2015, 7.2022, 7.203200000000001, 7.204200000000001, 7.2048, 7.2046, 7.2044, 7.2042, 7.2039, 7.2046, 7.2036, 7.2026, 7.2023, 7.202, 7.2018, 7.2024, 7.2021, 7.2019, 7.2017, 7.2023, 7.202, 7.2017, 7.2014, 7.2012, 7.2009, 7.2015, 7.2012, 7.201, 7.2016, 7.2022, 7.202, 7.2017, 7.2014, 7.2011, 7.2017, 7.2014, 7.2012, 7.2009, 7.2006, 7.2003, 7.2001, 7.2008, 7.2005, 7.2002, 7.1999, 7.2005, 7.2011, 7.2008, 7.2014, 7.2019, 7.2017, 7.2015, 7.2012, 7.201, 7.2009, 7.1999, 7.1997, 7.2011, 7.2008, 7.2005, 7.2002, 7.2, 7.2061, 7.2059, 7.2058, 7.2064, 7.207, 7.208, 7.2078, 7.2075, 7.2081, 7.2079, 7.2076, 7.2074, 7.208, 7.2077, 7.2074, 7.2079, 7.2076, 7.2073, 7.207, 7.2067, 7.2065, 7.2062, 7.2059, 7.2056, 7.2061, 7.2058, 7.2064, 7.2062, 7.2059, 7.2072, 7.2086, 7.2101, 7.2109, 7.2114, 7.2111, 7.21, 7.2106, 7.2111, 7.2109, 7.2106, 7.2109, 7.2107, 7.2105, 7.2111, 7.2117, 7.2116, 7.2122, 7.2128, 7.2134, 7.2131, 7.2137, 7.2134, 7.214, 7.2137, 7.2134, 7.2131, 7.2128, 7.2126, 7.2132, 7.213, 7.2137, 7.2134, 7.2139, 7.2136, 7.2142, 7.2148, 7.2144, 7.2143, 7.214, 7.2138, 7.2144, 7.2141, 7.2139, 7.2136, 7.2134, 7.2131, 7.2128, 7.2125, 7.2122, 7.2128, 7.2133, 7.213, 7.2128, 7.2133, 7.213, 7.2136, 7.2133, 7.2131, 7.2128, 7.2126, 7.2132, 7.2138, 7.2136, 7.2141, 7.2138, 7.2135, 7.2133, 7.213, 7.2136, 7.2133, 7.213, 7.2127, 7.2132, 7.2138, 7.2143, 7.2149, 7.2146, 7.2149, 7.2146, 7.2144, 7.2141, 7.2147, 7.2152, 7.2158, 7.2155, 7.2153, 7.2151, 7.2157, 7.2155, 7.2153, 7.2151, 7.2148, 7.2154, 7.2151, 7.2148, 7.2145, 7.2151, 7.2165, 7.2171, 7.2161, 7.2175, 7.2181, 7.2186, 7.2184, 7.2181, 7.2179, 7.218, 7.2178, 7.2175, 7.2173, 7.2179, 7.2176, 7.2181, 7.2178, 7.2183, 7.218, 7.2186, 7.2192, 7.2189, 7.2187, 7.2193, 7.219, 7.2187, 7.2184, 7.2181, 7.2204, 7.2214, 7.2211, 7.2208, 7.2213, 7.2219, 7.2209, 7.2206, 7.222, 7.2217, 7.2214, 7.2218, 7.2215, 7.222, 7.2217, 7.2222, 7.2228, 7.2225, 7.2215, 7.2221, 7.2218, 7.2215, 7.2221, 7.2218, 7.2246, 7.2243, 7.224, 7.2246, 7.2252, 7.2258, 7.2264, 7.2261, 7.2266, 7.2271, 7.2276, 7.2281, 7.2278, 7.2276, 7.2274, 7.2272, 7.2282, 7.2288, 7.2294, 7.2291, 7.2297, 7.2295, 7.23, 7.2297, 7.2295, 7.2292, 7.2298, 7.2295, 7.2293, 7.2306, 7.2304, 7.2301, 7.2307, 7.2313, 7.2326, 7.2332, 7.233, 7.2327, 7.2324, 7.2323, 7.232, 7.2325, 7.2323, 7.2344, 7.2345, 7.2351, 7.2349, 7.2355, 7.2352, 7.2358, 7.2356, 7.2353, 7.235, 7.2348, 7.2346, 7.2344, 7.235, 7.2348, 7.2346, 7.2343, 7.234, 7.2341, 7.234, 7.2331, 7.2328, 7.2329, 7.2334, 7.2333, 7.2334, 7.2339, 7.2345, 7.2353, 7.2351, 7.2348, 7.2338, 7.2335, 7.2332, 7.2329, 7.2327, 7.2324, 7.2322, 7.2312, 7.2318, 7.2326, 7.2323, 7.2334, 7.2339, 7.2344, 7.2341, 7.2362, 7.236, 7.2357, 7.2354, 7.2351, 7.2341, 7.2339, 7.2337, 7.2334, 7.2331, 7.2328, 7.2334, 7.2339, 7.2329, 7.2336, 7.2334, 7.2331, 7.2328, 7.2326, 7.2323, 7.232, 7.2318, 7.2327, 7.2324, 7.2322, 7.2319, 7.2317, 7.2314, 7.2304, 7.2301, 7.2298, 7.2295, 7.23, 7.2297, 7.2294, 7.2292, 7.2282, 7.2287, 7.2301, 7.2301, 7.2299, 7.2297, 7.2294, 7.2291, 7.2294, 7.2292, 7.2301, 7.2306, 7.2312, 7.231, 7.2315, 7.2313, 7.2303, 7.2301, 7.2298, 7.2295, 7.23, 7.2306, 7.231, 7.2335, 7.2332, 7.2346, 7.2343, 7.2341, 7.2339, 7.2344, 7.2342, 7.2339, 7.2336, 7.2341, 7.2354, 7.2359, 7.2356, 7.2354, 7.2355, 7.2378, 7.2376, 7.2382, 7.238, 7.2385, 7.239, 7.2387, 7.2384, 7.2389, 7.2394, 7.2413, 7.2418, 7.2415, 7.242, 7.2425, 7.2423, 7.2428, 7.2426, 7.2431, 7.2428, 7.2433, 7.2438, 7.2435, 7.2432, 7.243, 7.2435, 7.244, 7.2445, 7.245, 7.2455, 7.2453, 7.2451, 7.2456, 7.2454, 7.2459, 7.2456, 7.2462, 7.2475, 7.2481, 7.2479, 7.2484, 7.2474, 7.2464, 7.2461, 7.2458, 7.2456, 7.2454, 7.2451, 7.2457, 7.2454, 7.2459, 7.2457, 7.2454, 7.246, 7.2457, 7.2462, 7.2459, 7.2456, 7.247, 7.2468, 7.2466, 7.2466, 7.2479, 7.2476, 7.2473, 7.2478, 7.2475, 7.2472, 7.2477, 7.2475, 7.2481, 7.248, 7.2486, 7.2485, 7.2483, 7.2493, 7.2491, 7.2496, 7.2493, 7.249, 7.2487, 7.2485, 7.2485, 7.2483, 7.2481, 7.2486, 7.2484, 7.2482, 7.248, 7.2477, 7.2491, 7.2488, 7.2493, 7.249, 7.2487, 7.2484], '192.168.122.113': [5.3399, 5.7984, 7.5856, 7.1247, 6.765, 6.5639, 6.3923, 6.2816, 6.1846, 6.655, 6.5355, 6.4838, 7.0396, 6.9314, 6.9955, 6.8962, 7.1294, 7.3376, 7.5061, 7.4291, 7.3228, 7.2325, 7.3928, 7.3199, 7.2532, 7.1802, 6.935, 7.0976, 7.2514, 7.4145, 7.3443, 7.3263, 7.2981, 7.2725, 7.2341, 7.0528, 7.0176, 7.1138, 7.224, 7.1873, 7.1509, 7.1227, 7.2288, 7.1903, 7.1585, 7.1412, 7.1673, 7.2481, 7.2163, 7.1839, 7.1551, 7.2239, 7.2921, 7.2682, 7.2322, 7.2054, 7.1739, 7.1526, 7.1294, 7.1118, 7.0897, 7.0874, 7.0676, 7.1065, 7.085, 7.0651, 7.0412, 7.0175, 7.034, 7.0987, 7.1183, 7.0925, 7.0678, 7.0488, 6.9816, 6.9667, 6.946, 6.9246, 6.9069, 6.8976, 6.9028, 6.8947, 7.0327, 7.0136, 6.9993, 7.0463, 7.0268, 7.0091, 6.9911, 6.9763, 6.9652, 7.0292, 7.0123, 7.0044, 7.0438, 7.029, 7.0148, 7.0012, 6.9891, 6.9774, 6.9713, 6.9567, 6.941, 6.9264, 6.9203, 6.9097, 6.951, 6.9387, 6.9486, 7.0831, 7.0897, 7.1295, 7.1157, 7.105, 7.1128, 7.0975, 7.1039, 7.0919, 7.0797, 7.1249, 7.2077, 7.1952, 7.1803, 7.1279, 7.1606, 7.1464, 7.1351, 7.1236, 7.1592, 7.1499, 7.1514, 7.373, 7.3697, 7.3539, 7.305, 7.2992, 7.2916, 7.2805, 7.2663, 7.2554, 7.2461, 7.2443, 7.2319, 7.2236, 7.2519, 7.2439, 7.2355, 7.2244, 7.2196, 7.2091, 7.202, 7.1903, 7.1782, 7.202, 7.2304, 7.2221, 7.2113, 7.2027, 7.1961, 7.1851, 7.3098, 7.2972, 7.365, 7.3552, 7.343, 7.3306, 7.3513, 7.3443, 7.3688, 7.3566, 7.3461, 7.3697, 7.3938, 7.3577, 7.3512, 7.3404, 7.3312, 7.3212, 7.3145, 7.3038, 7.2961, 7.2948, 7.2844, 7.2751, 7.2924, 7.2825, 7.273, 7.2732, 7.2632, 7.2536, 7.2456, 7.236, 7.2545, 7.2462, 7.239, 7.2299, 7.2224, 7.2167, 7.2089, 7.2026, 7.1979, 7.1887, 7.1792, 7.1717, 7.242, 7.2615, 7.2558, 7.2481, 7.2164, 7.2336, 7.3042, 7.295, 7.2856, 7.2762, 7.267, 7.2584, 7.2493, 7.2649, 7.2592, 7.2528, 7.2684, 7.2606, 7.2521, 7.2436, 7.2349, 7.2311, 7.2243, 7.2426, 7.2348, 7.2278, 7.2209, 7.2154, 7.2068, 7.2225, 7.1938, 7.1896, 7.2363, 7.2725, 7.2659, 7.2576, 7.2502, 7.2442, 7.2499, 7.2452, 7.24, 7.2551, 7.2468, 7.2386, 7.2325, 7.2265, 7.2192, 7.2115, 7.206, 7.2201, 7.2173, 7.2108, 7.224, 7.2179, 7.211, 7.2248, 7.2197, 7.2129, 7.2268, 7.2395, 7.2325, 7.2265, 7.2213, 7.2348, 7.2287, 7.2221, 7.2155, 7.2084, 7.2019, 7.2152, 7.2354, 7.2305, 7.2234, 7.2168, 7.2098, 7.2045, 7.216, 7.2089, 7.203, 7.197, 7.1908, 7.1846, 7.1976, 7.2108, 7.2227, 7.2193, 7.2175, 7.23, 7.2237, 7.2177, 7.2118, 7.2058, 7.1997, 7.1935, 7.1892, 7.1831, 7.1771, 7.1709, 7.166, 7.1789, 7.175, 7.2207, 7.2474, 7.2698, 7.2742, 7.2684, 7.3397, 7.3366, 7.3329, 7.3112, 7.3227, 7.3191, 7.3143, 7.3106, 7.306, 7.3011, 7.3137, 7.3263, 7.3211, 7.3334, 7.3291, 7.3255, 7.3361, 7.3308, 7.3257, 7.3221, 7.3175, 7.315, 7.3092, 7.3041, 7.2996, 7.3093, 7.3037, 7.2979, 7.3092, 7.3037, 7.2976, 7.2918, 7.3016, 7.2959, 7.3068, 7.3012, 7.2983, 7.3093, 7.3183, 7.3136, 7.3084, 7.3181, 7.3129, 7.3088, 7.3031, 7.3129, 7.308, 7.3181, 7.313, 7.3076, 7.3033, 7.2984, 7.295, 7.2906, 7.2911, 7.2862, 7.2839, 7.3103, 7.3063, 7.3026, 7.2985, 7.2941, 7.2935, 7.2884, 7.2973, 7.3059, 7.3012, 7.3109, 7.312, 7.3132, 7.3099, 7.3047, 7.2997, 7.2945, 7.3045, 7.3007, 7.2959, 7.3039, 7.2999, 7.3086, 7.3182, 7.3168, 7.3254, 7.3341, 7.3316, 7.342, 7.3366, 7.3327, 7.3391, 7.3515, 7.3481, 7.3431, 7.3391, 7.3365, 7.3458, 7.3413, 7.3507, 7.3602, 7.3687, 7.3638, 7.3592, 7.356, 7.3783, 7.3931, 7.3882, 7.3956, 7.4041, 7.4392, 7.4469, 7.4415, 7.4497, 7.4376, 7.4331, 7.4298, 7.4393, 7.4345, 7.4307, 7.4257, 7.4352, 7.431, 7.4536, 7.4489, 7.4441, 7.4391, 7.4395, 7.4356, 7.4307, 7.426, 7.4212, 7.4291, 7.4245, 7.4217, 7.4169, 7.413, 7.4086, 7.4042, 7.4003, 7.4079, 7.405, 7.4017, 7.4091, 7.4214, 7.4169, 7.4124, 7.4085, 7.4065, 7.4131, 7.4021, 7.399, 7.3948, 7.4063, 7.402, 7.4093, 7.3943, 7.392, 7.3892, 7.3853, 7.3815, 7.3777, 7.3849, 7.3804, 7.3667, 7.3758, 7.3714, 7.3674, 7.3633, 7.3505, 7.3469, 7.3442, 7.3444, 7.3403, 7.3379, 7.3345, 7.3412, 7.3382, 7.3341, 7.3414, 7.35, 7.3462, 7.3528, 7.3487, 7.3557, 7.3514, 7.3478, 7.3442, 7.3739, 7.3812, 7.3873, 7.3838, 7.3706, 7.3682, 7.3759, 7.3623, 7.3589, 7.3551, 7.3616, 7.3485, 7.3354, 7.3316, 7.3659, 7.3621, 7.3583, 7.3544, 7.3509, 7.3474, 7.3441, 7.3409, 7.3542, 7.355, 7.3518, 7.3409, 7.3609, 7.3584, 7.3546, 7.3613, 7.3586, 7.3581, 7.3561, 7.3435, 7.3501, 7.3481, 7.3462, 7.343, 7.3492, 7.3547, 7.3731, 7.3628, 7.3591, 7.3558, 7.3525, 7.3517, 7.3529, 7.3509, 7.358, 7.3551, 7.3523, 7.359, 7.3554, 7.361, 7.3674, 7.3839, 7.3814, 7.3803, 7.3767, 7.3733, 7.3717, 7.3772, 7.3828, 7.3804, 7.3901, 7.3961, 7.3932, 7.3894, 7.386, 7.4036, 7.4003, 7.3967, 7.3932, 7.3906, 7.3888, 7.3852, 7.3822, 7.3843, 7.3808, 7.3837, 7.3805, 7.3865, 7.3831, 7.3893, 7.395, 7.3916, 7.388, 7.3846, 7.382, 7.3786, 7.3752, 7.3721, 7.3697, 7.3664, 7.3638, 7.3616, 7.3583, 7.3548, 7.3521, 7.3502, 7.3472, 7.3452, 7.3448, 7.3418, 7.3481, 7.3451, 7.3502, 7.3565, 7.3544, 7.3515, 7.3492, 7.3378, 7.3351, 7.3321, 7.3384, 7.3447, 7.3423, 7.3394, 7.337, 7.3339, 7.3311, 7.3287, 7.3296, 7.3268, 7.3237, 7.3224, 7.32, 7.3252, 7.3227, 7.3288, 7.3282, 7.3273, 7.324, 7.3293, 7.3273, 7.3243, 7.3212, 7.3181, 7.3165, 7.3312, 7.3295, 7.335, 7.3319, 7.3288, 7.3259, 7.3227, 7.3194, 7.3165, 7.3142, 7.3197, 7.3166, 7.3138, 7.3112, 7.3081, 7.3135, 7.3104, 7.3159, 7.3127, 7.3097, 7.3082, 7.3135, 7.3114, 7.3106, 7.3091, 7.3069, 7.3038, 7.3009, 7.3064, 7.3036, 7.3092, 7.3349, 7.3318, 7.3288, 7.3262, 7.3242, 7.3219, 7.3188, 7.3168, 7.3143, 7.3195, 7.3173, 7.3224, 7.3196, 7.317, 7.3138, 7.3187, 7.3165, 7.3217, 7.319, 7.3176, 7.3149, 7.3179, 7.3149, 7.312, 7.3099, 7.3077, 7.3136, 7.3188, 7.317, 7.3238, 7.3213, 7.319, 7.3163, 7.3219, 7.3192, 7.3163, 7.3137, 7.3193, 7.3168, 7.3147, 7.3123, 7.3178, 7.3231, 7.3211, 7.326, 7.3238, 7.3295, 7.3266, 7.3237, 7.3224, 7.3129, 7.3187, 7.3159, 7.3132, 7.3414, 7.3465, 7.3389, 7.3437, 7.3411, 7.3383, 7.3357, 7.3402, 7.3376, 7.3373, 7.3348, 7.3345, 7.3321, 7.3294, 7.3269, 7.3313, 7.336, 7.3412, 7.3393, 7.33, 7.3345, 7.3317, 7.3363, 7.3408, 7.3381, 7.3364, 7.334, 7.3321, 7.337, 7.3349, 7.335, 7.3398, 7.3397, 7.3377, 7.3352, 7.3326, 7.3309, 7.3289, 7.3266, 7.3248, 7.322, 7.3203, 7.3247, 7.3227, 7.3202, 7.3246, 7.3233, 7.321, 7.3223, 7.3198, 7.3178, 7.3153, 7.3196, 7.3239, 7.3217, 7.3265, 7.3245, 7.3157, 7.3145, 7.3121, 7.3095, 7.3069, 7.3045, 7.302, 7.2994, 7.2971, 7.2946, 7.2935, 7.2916, 7.2904, 7.2901, 7.2947, 7.2993, 7.2971, 7.2959, 7.294, 7.2984, 7.2977, 7.2893, 7.2868, 7.285, 7.2958, 7.2936, 7.3079, 7.3056, 7.3035, 7.3016, 7.2999, 7.2979, 7.2954, 7.2948, 7.2932, 7.2977, 7.3017, 7.2995, 7.2973, 7.2957, 7.2942, 7.2919, 7.2963, 7.3008, 7.2993, 7.2977, 7.3024, 7.3004, 7.298, 7.2958, 7.2935, 7.2978, 7.2961, 7.3225, 7.3268, 7.3358, 7.3335, 7.3317, 7.3364, 7.334, 7.3322, 7.33, 7.3299, 7.3222, 7.3203, 7.318, 7.316, 7.3203, 7.318, 7.316, 7.3142, 7.3123, 7.3165, 7.3145, 7.3131, 7.3115, 7.3096, 7.3075, 7.305, 7.303, 7.3107, 7.3029, 7.3013, 7.3054, 7.3097, 7.3035, 7.2958, 7.3003, 7.2992, 7.3113, 7.3099, 7.3082, 7.3124, 7.3113, 7.3267, 7.325, 7.3227, 7.3205, 7.3201, 7.3241, 7.3164, 7.3205, 7.3196, 7.3179, 7.3172, 7.3208, 7.3188, 7.3174, 7.3218, 7.3253, 7.3237, 7.3272, 7.3254, 7.3236, 7.3215, 7.3196, 7.3176, 7.3215, 7.3256, 7.3294, 7.3338, 7.3317, 7.3354, 7.3337, 7.3369, 7.3405, 7.3441, 7.342, 7.3406, 7.3445, 7.3439, 7.3417, 7.3394, 7.3374, 7.3321, 7.3259, 7.3244, 7.3228, 7.3212, 7.3191, 7.3178, 7.3157, 7.3195, 7.3232, 7.3228, 7.3269, 7.3258, 7.3242, 7.3238, 7.3275, 7.3314, 7.3298, 7.329, 7.3325, 7.3305, 7.3348, 7.3332, 7.3367, 7.3349, 7.3331, 7.3322, 7.3307, 7.3287, 7.3367, 7.3349, 7.3328, 7.3426, 7.3408, 7.3388, 7.3367, 7.3346, 7.3465, 7.3453, 7.3473, 7.3403, 7.3388, 7.3376, 7.3355, 7.3398, 7.3383, 7.3428, 7.3414, 7.3395, 7.3378, 7.3362, 7.3349, 7.3334, 7.3314, 7.3359, 7.3394, 7.3379, 7.3416, 7.3395, 7.3375, 7.3418, 7.3399, 7.3391, 7.3371, 7.3351, 7.3332, 7.3313, 7.3294, 7.3274, 7.3258, 7.3242, 7.3222, 7.3207, 7.3188, 7.3167, 7.3148, 7.313, 7.311, 7.3091, 7.307, 7.3106, 7.3087, 7.3067, 7.307, 7.3058, 7.3039, 7.3024, 7.3005, 7.2986, 7.302, 7.3001, 7.2985, 7.3024, 7.3007, 7.2988, 7.3023, 7.3005, 7.2991, 7.2973, 7.2956, 7.2936, 7.2957, 7.2992, 7.2981, 7.2999, 7.298, 7.2966, 7.2947, 7.298, 7.2976, 7.2961, 7.2941, 7.2997, 7.298, 7.2969, 7.2948, 7.293, 7.2913, 7.2932, 7.2914, 7.2951, 7.2937, 7.2921, 7.2903, 7.2893, 7.2878, 7.286, 7.2844, 7.2881, 7.2867, 7.2854, 7.2841, 7.2828, 7.2868, 7.2854, 7.2835, 7.2817, 7.2802, 7.2782, 7.2814, 7.2802, 7.2791, 7.2778, 7.2759, 7.2791, 7.2823, 7.2806, 7.2791, 7.2776, 7.2772, 7.2806, 7.2838, 7.282, 7.2806, 7.2795, 7.2819, 7.2801, 7.2784, 7.2765, 7.2747, 7.2738, 7.2726, 7.274, 7.2724, 7.2708, 7.2741, 7.2722, 7.2756, 7.2737, 7.2721, 7.2704, 7.2692, 7.2674, 7.2706, 7.274, 7.2739, 7.2722, 7.2756, 7.2789, 7.2772, 7.2807, 7.2788, 7.2775, 7.2808, 7.2792, 7.2781, 7.2766, 7.2752, 7.2745, 7.273, 7.2718, 7.2704, 7.2716, 7.2703, 7.2684, 7.2667, 7.2672, 7.2659, 7.2641, 7.2585, 7.2572, 7.2559, 7.2587, 7.2589, 7.2583, 7.2567, 7.2603, 7.2586, 7.257, 7.2577, 7.2563, 7.2546, 7.2531, 7.2524, 7.2567, 7.2597, 7.2579, 7.2563, 7.2549, 7.2581, 7.2568, 7.2606, 7.2593, 7.258, 7.261, 7.2595, 7.2583, 7.2566, 7.2553, 7.2538, 7.2639, 7.2627, 7.2568, 7.2559, 7.2552, 7.2535, 7.2564, 7.2547, 7.2532, 7.2563, 7.2506, 7.2491, 7.252, 7.2504, 7.2535, 7.2522, 7.2521, 7.2504, 7.2532, 7.2521, 7.2507, 7.25, 7.2487, 7.248, 7.2466, 7.2458, 7.2444, 7.2429, 7.2416, 7.2403, 7.239, 7.2378, 7.2369, 7.2352, 7.2387, 7.2388, 7.2376, 7.2371, 7.2363, 7.2353, 7.234, 7.2323, 7.231, 7.2342, 7.2329, 7.2313, 7.2306, 7.2289, 7.2277, 7.2262, 7.2247, 7.2273, 7.2262, 7.2247, 7.2231, 7.2259, 7.2291, 7.2324, 7.2309, 7.2337, 7.2321, 7.2305, 7.2292, 7.2276, 7.2306, 7.2296, 7.2285, 7.227, 7.2303, 7.2331, 7.2375, 7.2362, 7.2349, 7.2336, 7.2369, 7.2355, 7.2339, 7.2325, 7.2309, 7.2294, 7.2282, 7.227, 7.2255, 7.2241, 7.2228, 7.2213, 7.2201, 7.2186, 7.2182, 7.2167, 7.2196, 7.2181, 7.2213, 7.2243, 7.2236, 7.2222, 7.2252, 7.228, 7.2272, 7.2257, 7.2243, 7.2231, 7.2221, 7.221, 7.2197, 7.2185, 7.2173, 7.2203, 7.2233, 7.2219, 7.2208, 7.2195, 7.2181, 7.2213, 7.224, 7.2228, 7.2216, 7.2246, 7.2231, 7.2219, 7.2251, 7.2198, 7.2184, 7.2213, 7.2243, 7.2243, 7.223, 7.2216, 7.2245, 7.2231, 7.2306, 7.2292, 7.2279, 7.2265, 7.2256, 7.2244, 7.2249, 7.2405, 7.2391, 7.2339, 7.2328, 7.2326, 7.2353, 7.2399, 7.2439, 7.2428, 7.2461, 7.2618, 7.2611, 7.2636, 7.2662, 7.2652, 7.2641, 7.2638, 7.2668, 7.2654, 7.2642, 7.263, 7.2616, 7.2601, 7.2591, 7.2588, 7.2573, 7.2559, 7.2547, 7.2539, 7.2527, 7.2476, 7.2463, 7.2458, 7.2529, 7.2516, 7.2472, 7.2461, 7.2488, 7.2478, 7.2464, 7.2491, 7.2518, 7.2544, 7.2529, 7.2555, 7.2582, 7.2609, 7.2594, 7.2582, 7.2577, 7.2564, 7.2601, 7.2627, 7.2617, 7.2647, 7.2639, 7.2666, 7.2657, 7.2643, 7.2676, 7.2705, 7.2692, 7.2721, 7.2708, 7.2697, 7.2682, 7.2698, 7.2724, 7.2709, 7.2696, 7.2684, 7.267, 7.262, 7.2609, 7.2597, 7.2587, 7.2577, 7.2564, 7.2661, 7.2648, 7.2635, 7.262, 7.2606, 7.2629, 7.2616, 7.2643, 7.263, 7.2633, 7.2657, 7.2644, 7.2595, 7.2582, 7.2576, 7.2527, 7.2518, 7.2505, 7.2531, 7.2557, 7.2583, 7.2611, 7.2597, 7.2587, 7.2576, 7.2565, 7.2554, 7.254, 7.253, 7.2517, 7.2543, 7.2542, 7.2528, 7.2555, 7.2508, 7.2494, 7.248, 7.2479, 7.2465, 7.2455, 7.2485, 7.2511, 7.2537, 7.2524, 7.2519, 7.2505, 7.253, 7.2517, 7.2504, 7.249, 7.2477, 7.2464, 7.2451, 7.2441, 7.243, 7.2418, 7.2444, 7.2432, 7.2419, 7.2449, 7.2435, 7.2426, 7.2416, 7.2403, 7.2394, 7.2418, 7.2417, 7.244, 7.2427, 7.2414, 7.2405, 7.2431, 7.2422, 7.241, 7.2437, 7.2425, 7.2412, 7.2399, 7.2388, 7.2415, 7.2405, 7.2393, 7.2386, 7.2373, 7.2365, 7.2364, 7.235, 7.2305, 7.2298, 7.2284, 7.2272, 7.226, 7.2251, 7.2275, 7.2266, 7.2257, 7.2283, 7.2271, 7.2261, 7.2249, 7.227, 7.226, 7.2285, 7.2272, 7.2298, 7.2288, 7.2277, 7.2267, 7.2291, 7.2283, 7.2307, 7.2295, 7.225, 7.2239, 7.2229, 7.2217, 7.2207, 7.2197, 7.2193, 7.2183, 7.217, 7.2158, 7.2145, 7.2133, 7.2158, 7.2147, 7.2133, 7.2121, 7.2112, 7.2099, 7.2123, 7.2113, 7.214, 7.2131, 7.2118, 7.2111, 7.2099, 7.2124, 7.2111, 7.2136, 7.2131, 7.2118, 7.2108, 7.2132, 7.212, 7.2109, 7.2133, 7.2127, 7.2114, 7.2139, 7.2127, 7.215, 7.214, 7.2128, 7.2115, 7.211, 7.2066, 7.2095, 7.2085, 7.2075, 7.2067, 7.2057, 7.2047, 7.2037, 7.2027, 7.2015, 7.2007, 7.2001, 7.1988, 7.2018, 7.2005, 7.1993, 7.198, 7.1976, 7.1968, 7.1961, 7.1949, 7.1941, 7.194, 7.1929, 7.197, 7.1959, 7.195, 7.1938, 7.193, 7.1919, 7.1944, 7.1932, 7.1928, 7.1919, 7.1908, 7.1899, 7.1923, 7.1922, 7.1991, 7.1979, 7.1967, 7.1956, 7.1945, 7.1935, 7.1932, 7.1965, 7.1955, 7.1951, 7.1943, 7.1935, 7.1923, 7.1928, 7.1918, 7.2057, 7.2015, 7.2004, 7.2098, 7.2087, 7.2084, 7.2072, 7.2066, 7.2057, 7.2046, 7.2038, 7.2032, 7.2054, 7.2182, 7.2172, 7.2166, 7.2155, 7.2144, 7.2166, 7.2158, 7.2155, 7.2152, 7.2145, 7.2171, 7.2195, 7.2186, 7.22, 7.2189, 7.2181, 7.2169, 7.216, 7.2182, 7.2171, 7.216, 7.2148, 7.2136, 7.2159, 7.2149, 7.2172, 7.216, 7.2152, 7.214, 7.2134, 7.2157, 7.2145, 7.2171, 7.2163, 7.2223, 7.2244, 7.2265, 7.2253, 7.2242, 7.2234, 7.2228, 7.2251, 7.2244, 7.2233, 7.2253, 7.2241, 7.2262, 7.2221, 7.2245, 7.2234, 7.2224, 7.2221, 7.2217, 7.2211, 7.2202, 7.219, 7.2215, 7.2217, 7.2206, 7.2197, 7.2188, 7.218, 7.2202, 7.2224, 7.2212, 7.2233, 7.2194, 7.2157, 7.2179, 7.2167, 7.2156, 7.2177, 7.2164, 7.2186, 7.2208, 7.2198, 7.2186, 7.2185, 7.2175, 7.2196, 7.2188, 7.2177, 7.2166, 7.224, 7.2262, 7.2252, 7.2242, 7.2236, 7.2229, 7.2224, 7.2217, 7.2237, 7.2229, 7.2221, 7.2309, 7.2336, 7.2327, 7.2348, 7.2356, 7.2377, 7.2371, 7.236, 7.2353, 7.2342, 7.2351, 7.2344, 7.2334, 7.2323, 7.2345, 7.2367, 7.2359, 7.2353, 7.2346, 7.2335, 7.2335, 7.2355, 7.2378, 7.2367, 7.2358, 7.235, 7.234, 7.2359, 7.2353, 7.2342, 7.2333, 7.2322, 7.2315, 7.2334, 7.2323, 7.2312, 7.2301, 7.2323, 7.2315, 7.2304, 7.2292, 7.2281, 7.2303, 7.2292, 7.2254, 7.2292, 7.2312, 7.2301, 7.229, 7.2279, 7.227, 7.2261, 7.2285, 7.2285, 7.2309, 7.2427, 7.242, 7.2411, 7.2431, 7.242, 7.2438, 7.2428, 7.2417, 7.2439, 7.2431, 7.2425, 7.2416, 7.2437, 7.2436, 7.2425, 7.2443, 7.2464, 7.2546, 7.2536, 7.2526, 7.2515, 7.2514, 7.2502, 7.2508, 7.2526, 7.2522, 7.2516, 7.2507, 7.2498, 7.2493, 7.2483, 7.2476, 7.2467, 7.2458, 7.2448, 7.2437, 7.2408, 7.2397, 7.2386, 7.2375, 7.2396, 7.2417, 7.2437, 7.2427, 7.2417, 7.2407, 7.2437, 7.2399, 7.2474, 7.247, 7.2432, 7.2423, 7.2443, 7.2432, 7.2427, 7.2425, 7.2415, 7.2406, 7.24, 7.2391, 7.2382, 7.2377, 7.2396, 7.2385, 7.2352, 7.2314, 7.2333, 7.2323, 7.2313, 7.2305, 7.2294, 7.235, 7.2339, 7.2389, 7.238, 7.2375, 7.2401, 7.2391, 7.2382, 7.2402, 7.2393, 7.2386, 7.2407, 7.2398, 7.2388, 7.2381, 7.2376, 7.2397, 7.2388, 7.2409, 7.2398, 7.242, 7.2438, 7.246, 7.248, 7.2508, 7.2565, 7.2557, 7.2576, 7.2596, 7.2588, 7.2577, 7.2566, 7.2529, 7.2527, 7.2545, 7.2535, 7.2555, 7.2545, 7.2565, 7.2584, 7.2605, 7.2596, 7.2586, 7.2576, 7.2566, 7.2556, 7.2546, 7.254, 7.2553, 7.2572, 7.2591, 7.258, 7.2572, 7.2563, 7.2554, 7.2576, 7.2568, 7.2557, 7.255, 7.2571, 7.2589, 7.2581, 7.2571, 7.259, 7.258, 7.257, 7.2589, 7.2579, 7.2569, 7.2559, 7.2549, 7.2569, 7.2559, 7.2552, 7.2542, 7.2532, 7.2524, 7.2514, 7.2534, 7.2523, 7.2514, 7.2504, 7.2468, 7.258, 7.2572, 7.2563, 7.2555, 7.2548, 7.2567, 7.2557, 7.2576, 7.2578, 7.2569, 7.2562, 7.2556, 7.2546, 7.2536, 7.2555, 7.2546, 7.2539, 7.253, 7.2496, 7.2487, 7.2477, 7.2467, 7.2459, 7.2451, 7.2443, 7.2438, 7.2428, 7.2423, 7.244, 7.2431, 7.245, 7.2467, 7.2457, 7.2451, 7.2444, 7.2463, 7.2457, 7.2476, 7.2494, 7.2512, 7.2504, 7.2497, 7.2518, 7.251, 7.2501, 7.2494, 7.2513, 7.2513, 7.2505, 7.2499, 7.2491, 7.251, 7.2502, 7.2496, 7.2492, 7.2509, 7.2527, 7.2521, 7.2487, 7.2477, 7.2467, 7.2577, 7.2571, 7.2589, 7.2607, 7.2599, 7.2591, 7.2586, 7.2584, 7.2577, 7.2574, 7.2567, 7.2581, 7.2547, 7.2538, 7.2557, 7.2578, 7.2575, 7.2565, 7.2562, 7.258, 7.257, 7.256, 7.2584, 7.2576, 7.2573, 7.2591, 7.2585, 7.2577, 7.2574, 7.2569, 7.2559, 7.258, 7.2572, 7.2564, 7.2556, 7.2523, 7.2513, 7.2506, 7.2498, 7.2517, 7.2507, 7.2499, 7.2492, 7.2503, 7.2497, 7.2489, 7.2481, 7.2472, 7.2466, 7.2456, 7.2458, 7.2451, 7.2469, 7.2459, 7.2451, 7.2448, 7.2494, 7.2485, 7.2481, 7.2499, 7.2517, 7.2508, 7.2526, 7.2519, 7.2511, 7.2501, 7.2492, 7.2482, 7.2473, 7.2463, 7.2456, 7.245, 7.2418, 7.2512, 7.2506, 7.2524, 7.2517, 7.2513, 7.2505, 7.2499, 7.2489, 7.2483, 7.2516, 7.2563, 7.2553, 7.2547, 7.2537, 7.2527, 7.2518, 7.2511, 7.2505, 7.2522, 7.2512, 7.2505, 7.2495, 7.2489, 7.2484, 7.2477, 7.2473, 7.2464, 7.2481, 7.2472, 7.2463, 7.2455, 7.2471, 7.2488, 7.2504, 7.2494, 7.2487, 7.2477, 7.2469, 7.246, 7.2458, 7.2449, 7.2464, 7.2446, 7.2437, 7.2428, 7.2419, 7.2409, 7.2402, 7.2394, 7.2393, 7.2386, 7.2378, 7.2372, 7.2365, 7.2383, 7.2374, 7.2374, 7.2365, 7.2356, 7.2348, 7.2339, 7.2333, 7.2325, 7.2342, 7.2336, 7.2356, 7.2348, 7.2339, 7.2357, 7.2352, 7.2344, 7.2335, 7.2326, 7.2317, 7.2308, 7.2324, 7.2315, 7.2332, 7.2349, 7.2342, 7.2336, 7.2357, 7.2348, 7.2365, 7.2381, 7.2398, 7.2389, 7.2382, 7.2374, 7.2367, 7.238, 7.2371, 7.2388, 7.2379, 7.237, 7.2361, 7.2353, 7.2371, 7.2367, 7.2362, 7.2388, 7.243, 7.2428, 7.242, 7.2422, 7.2415, 7.2406, 7.2398, 7.2404, 7.2396, 7.2387, 7.2381, 7.2377, 7.2371, 7.2364, 7.2391, 7.2359, 7.2377, 7.2371, 7.2414, 7.2407, 7.2398, 7.2389, 7.2406, 7.2397, 7.2414, 7.2425, 7.2418, 7.2412, 7.2407, 7.24, 7.2369, 7.2386, 7.2379, 7.2372, 7.2363, 7.238, 7.2373, 7.2344, 7.2361, 7.2379, 7.2398, 7.2391, 7.2383, 7.2375, 7.2366, 7.236, 7.2355, 7.2348, 7.2341, 7.2334, 7.2327, 7.232, 7.2339, 7.2334, 7.235, 7.2343, 7.2336, 7.2327, 7.232, 7.2312, 7.2304, 7.2299, 7.2292, 7.2309, 7.23, 7.2291, 7.2283, 7.2254, 7.2249, 7.2245, 7.2263, 7.2257, 7.2249, 7.2244, 7.2236, 7.2231, 7.2202, 7.2195, 7.2186, 7.2179, 7.2171, 7.2162, 7.2156, 7.2147, 7.2139, 7.2108, 7.2125, 7.2141, 7.2158, 7.2174, 7.217, 7.2186, 7.2212, 7.2204, 7.2198, 7.2192, 7.2209, 7.2202, 7.2172, 7.2143, 7.2134, 7.2177, 7.217, 7.2163, 7.2164, 7.2159, 7.2154, 7.2148, 7.2141, 7.2134, 7.2125, 7.2143, 7.2182, 7.2198, 7.219, 7.2209, 7.2192, 7.2184, 7.2176, 7.2148, 7.2165, 7.2157, 7.2148, 7.2164, 7.218, 7.2174, 7.219, 7.2182, 7.2153, 7.2124, 7.2117, 7.2116, 7.2132, 7.2124, 7.2139, 7.2135, 7.2153, 7.2169, 7.2161, 7.2179, 7.2173, 7.2167, 7.2161, 7.2155, 7.215, 7.2144, 7.2161, 7.2195, 7.2212, 7.2207, 7.2202, 7.2194, 7.2188, 7.2183, 7.2201, 7.2219, 7.222, 7.2234, 7.2226, 7.2221, 7.2214, 7.221, 7.2235, 7.2252, 7.2248, 7.2252, 7.2245, 7.2241, 7.2341, 7.2333, 7.2325, 7.2297, 7.2292, 7.2285, 7.2279, 7.2272, 7.2267, 7.226, 7.2254, 7.2246, 7.2238, 7.2261, 7.226, 7.2254, 7.2225, 7.2241, 7.2256, 7.225, 7.2243, 7.2239, 7.2231, 7.2223, 7.2214, 7.2205, 7.2197, 7.219, 7.2184, 7.2161, 7.2176, 7.2169, 7.2162, 7.2179, 7.2171, 7.2166, 7.2159, 7.2152, 7.2146, 7.2139, 7.2137, 7.2153, 7.2147, 7.214, 7.2134, 7.2128, 7.2145, 7.2161, 7.2153, 7.2147, 7.2139, 7.2153, 7.2147, 7.2163, 7.2157, 7.2151, 7.2145, 7.2161, 7.2156, 7.2152, 7.2123, 7.2117, 7.2109, 7.2101, 7.2095, 7.2087, 7.2081, 7.2073, 7.2071, 7.2086, 7.208, 7.2072, 7.2075, 7.2069, 7.2062, 7.2057, 7.205, 7.2045, 7.2037, 7.203, 7.2049, 7.2043, 7.2057, 7.2073, 7.2066, 7.2058, 7.2052, 7.2047, 7.2044, 7.2059, 7.2051, 7.2046, 7.2018, 7.2012, 7.2007, 7.1999, 7.1991, 7.1985, 7.205, 7.2042, 7.2034, 7.2027, 7.2019, 7.2013, 7.2006, 7.2002, 7.1995, 7.2014, 7.1987, 7.198, 7.1973, 7.1971, 7.1986, 7.198, 7.1975, 7.1968, 7.1962, 7.1956, 7.1972, 7.1966, 7.1959, 7.1952, 7.1945, 7.1938, 7.1931, 7.1945, 7.1941, 7.1956, 7.1971, 7.1967, 7.1982, 7.1975, 7.1969, 7.1963, 7.1957, 7.1971, 7.1964, 7.198, 7.1972, 7.1949, 7.1965, 7.196, 7.1976, 7.197, 7.1965, 7.196, 7.1959, 7.1951, 7.1945, 7.1939, 7.1933, 7.1929, 7.1942, 7.1934, 7.1932, 7.1946, 7.194, 7.1955, 7.1968, 7.1962, 7.1958, 7.1951, 7.1969, 7.1963, 7.1936, 7.1981, 7.1973, 7.197, 7.1987, 7.1979, 7.2018, 7.2023, 7.2016, 7.2012, 7.2008, 7.2002, 7.1996, 7.197, 7.1983, 7.1976, 7.1969, 7.1962, 7.1979, 7.1994, 7.1986, 7.1982, 7.1977, 7.1972, 7.1969, 7.1962, 7.1977, 7.1972, 7.197, 7.1963, 7.1978, 7.1973, 7.1966, 7.1981, 7.1974, 7.1991, 7.1984, 7.1977, 7.197, 7.1984, 7.1979, 7.1978, 7.1974, 7.201, 7.2002, 7.1995, 7.1988, 7.1981, 7.1975, 7.1971, 7.1963, 7.1959, 7.1951, 7.1944, 7.1959, 7.1952, 7.1944, 7.1938, 7.1952, 7.1945, 7.1938, 7.1932, 7.1946, 7.194, 7.1954, 7.1967, 7.1963, 7.1976, 7.1968, 7.1962, 7.1958, 7.1971, 7.1986, 7.198, 7.1974, 7.1968, 7.1964, 7.1958, 7.1953, 7.1946, 7.1938, 7.1952, 7.1945, 7.1946, 7.1961, 7.1958, 7.1951, 7.1965, 7.1958, 7.1952, 7.1951, 7.1965, 7.1959, 7.1954, 7.1947, 7.194, 7.194, 7.1934, 7.1927, 7.1919, 7.1934, 7.1935, 7.1929, 7.1923, 7.1916, 7.1931, 7.1944, 7.1943, 7.1939, 7.1934, 7.1927, 7.192, 7.1914, 7.1908, 7.1901, 7.1899, 7.1914, 7.1908, 7.1901, 7.1917, 7.1911, 7.1905, 7.1904, 7.1897, 7.1892, 7.1889, 7.1882, 7.1876, 7.1871, 7.1864, 7.1881, 7.1894, 7.1887, 7.1901, 7.1896, 7.19, 7.1916, 7.1911, 7.1905, 7.1898, 7.1893, 7.191, 7.1921, 7.1916, 7.191, 7.1906, 7.192, 7.1934, 7.1927, 7.1901, 7.1894, 7.1909, 7.1906, 7.1905, 7.1897, 7.1892, 7.1888, 7.1882, 7.1897, 7.1892, 7.1906, 7.19, 7.1893, 7.1889, 7.1885, 7.1878, 7.1873, 7.1848, 7.1842, 7.1835, 7.1849, 7.1869, 7.1883, 7.1877, 7.1869, 7.1885, 7.1879, 7.1878, 7.1872, 7.1865, 7.186, 7.1862, 7.1859, 7.1854, 7.1866, 7.186, 7.1856, 7.1849, 7.1844, 7.1839, 7.1833, 7.1831, 7.1828, 7.1821, 7.1819, 7.1812, 7.1805, 7.18, 7.1814, 7.1828, 7.1841, 7.1853, 7.1849, 7.1844, 7.1857, 7.1853, 7.1847, 7.1844, 7.1837, 7.1834, 7.1829, 7.1825, 7.1829, 7.1838, 7.1851, 7.1845, 7.1839, 7.1835, 7.1891, 7.1898, 7.1893, 7.1888, 7.1881, 7.1893, 7.1889, 7.1883, 7.1877, 7.1892, 7.1868, 7.1863, 7.1877, 7.1874, 7.1867, 7.1862, 7.1856, 7.185, 7.1845, 7.1826, 7.1821, 7.1818, 7.1815, 7.1811, 7.1806, 7.1801, 7.1794, 7.1789, 7.1786, 7.1761, 7.1775, 7.177, 7.1763, 7.1758, 7.1771, 7.1766, 7.1761, 7.1797, 7.1791, 7.1785, 7.1774, 7.179, 7.1786, 7.1885, 7.188, 7.1876, 7.1883, 7.1879, 7.1895, 7.1909, 7.1884, 7.1878, 7.1871, 7.1864, 7.1878, 7.1873, 7.1887, 7.1881, 7.1875, 7.1869, 7.1864, 7.1925, 7.1919, 7.1915, 7.1912, 7.1905, 7.1919, 7.1914, 7.1928, 7.1961, 7.1954, 7.197, 7.1966, 7.1959, 7.1952, 7.1965, 7.1989, 7.2021, 7.2016, 7.201, 7.2024, 7.2019, 7.2034, 7.2029, 7.2023, 7.2019, 7.2013, 7.2007, 7.2003, 7.1996, 7.2008, 7.1984, 7.1981, 7.1975, 7.1988, 7.1982, 7.1979, 7.1972, 7.1966, 7.1959, 7.1952, 7.1946, 7.1958, 7.197, 7.1964, 7.1941, 7.1934, 7.1928, 7.1922, 7.1917, 7.191, 7.1923, 7.1919, 7.1915, 7.1928, 7.1924, 7.1936, 7.1949, 7.1944, 7.1957, 7.1969, 7.1985, 7.1978, 7.2019, 7.2016, 7.1996, 7.1976, 7.1996, 7.199, 7.2004, 7.1997, 7.201, 7.2024, 7.2018, 7.2015, 7.2029, 7.2024, 7.2017, 7.2013, 7.203, 7.2024, 7.2036, 7.2031, 7.2026, 7.2021, 7.2034, 7.2047, 7.2062, 7.2057, 7.2054, 7.2048, 7.2042, 7.2037, 7.2031, 7.2025, 7.2048, 7.2061, 7.2061, 7.2074, 7.2088, 7.2103, 7.2098, 7.2078, 7.2073, 7.2067, 7.2061, 7.2055, 7.2052, 7.2045, 7.2059, 7.2053, 7.2048, 7.2062, 7.2062, 7.2058, 7.206, 7.2072, 7.2106, 7.21, 7.2095, 7.209, 7.2083, 7.2121, 7.2114, 7.2108, 7.2102, 7.2095, 7.2088, 7.2084, 7.2078, 7.2091, 7.2123, 7.2118, 7.2134, 7.2128, 7.2122, 7.2126, 7.212, 7.2114, 7.2108, 7.2102, 7.2095, 7.2088, 7.2083, 7.2077, 7.207, 7.2083, 7.2095, 7.209, 7.2102, 7.2098, 7.211, 7.2104, 7.2099, 7.2094, 7.2087, 7.2084, 7.2078, 7.2076, 7.2088, 7.2083, 7.2078, 7.2076, 7.2071, 7.2065, 7.2058, 7.2071, 7.2065, 7.2058, 7.2059, 7.2053, 7.207, 7.2064, 7.2076, 7.2072, 7.2066, 7.2062, 7.2056, 7.2051, 7.2063, 7.2074, 7.2068, 7.2062, 7.2058, 7.2058, 7.2061, 7.2055, 7.2049, 7.2043, 7.204, 7.2034, 7.2088, 7.2082, 7.2076, 7.207, 7.2064, 7.2057, 7.2074, 7.2069, 7.2063, 7.206, 7.2054, 7.2069, 7.2065, 7.2064, 7.2059, 7.2053, 7.2066, 7.2109, 7.2104, 7.21, 7.2094, 7.209, 7.2084, 7.2079, 7.2074, 7.2068, 7.208, 7.2074, 7.2086, 7.2081, 7.2093, 7.2105, 7.2099, 7.2093, 7.2088, 7.21, 7.2078, 7.2055, 7.2033, 7.2027, 7.2023, 7.2019, 7.2032, 7.2025, 7.202, 7.1998, 7.201, 7.2004, 7.2018, 7.2014, 7.201, 7.2005, 7.2, 7.1994, 7.1988, 7.1981, 7.1975, 7.1988, 7.1982, 7.1975, 7.199, 7.1985, 7.198, 7.1992, 7.1987, 7.1999, 7.1993, 7.1972, 7.1969, 7.1969, 7.1981, 7.1976, 7.197, 7.1966, 7.1963, 7.1958, 7.1953, 7.1965, 7.1978, 7.1971, 7.1969, 7.1982, 7.1978, 7.1973, 7.1968, 7.1962, 7.1957, 7.1972, 7.1969, 7.1983, 7.1977, 7.1988, 7.2003, 7.1997, 7.1992, 7.1986, 7.198, 7.1974, 7.2028, 7.2022, 7.2018, 7.2013, 7.2027, 7.2023, 7.2017, 7.2029, 7.2023, 7.2036, 7.2031, 7.2026, 7.2021, 7.2016, 7.2011, 7.2006, 7.207, 7.2064, 7.2058, 7.207, 7.2065, 7.2059, 7.2054, 7.2048, 7.2043, 7.2056, 7.2054, 7.2068, 7.2063, 7.2057, 7.2051, 7.2046, 7.2042, 7.2037, 7.2034, 7.2029, 7.204, 7.2035, 7.203, 7.2024, 7.2017, 7.2011, 7.2023, 7.2017, 7.2029, 7.204, 7.2051, 7.2049, 7.2046, 7.2043, 7.2038, 7.2033, 7.2045, 7.204, 7.2051, 7.2046, 7.2058, 7.2053, 7.2047, 7.2075, 7.207, 7.2093, 7.2088, 7.2085, 7.208, 7.2074, 7.2087, 7.2107, 7.2103, 7.2102, 7.2106, 7.2101, 7.2095, 7.2107, 7.2101, 7.2095, 7.2154, 7.2177, 7.2189, 7.2168, 7.2163, 7.216, 7.2154, 7.215, 7.2175, 7.217, 7.2164, 7.2175, 7.2171, 7.2167, 7.2161, 7.2156, 7.2168, 7.218, 7.2194, 7.2223, 7.2217, 7.223, 7.2227, 7.2222, 7.2218, 7.2231, 7.2242, 7.2238, 7.2251, 7.2245, 7.2243, 7.2239, 7.2233, 7.2228, 7.2223, 7.2217, 7.2214, 7.2208, 7.2213, 7.2214, 7.2209, 7.2204, 7.2216, 7.2245, 7.2241, 7.2276, 7.228, 7.2282, 7.2277, 7.2272, 7.2266, 7.2264, 7.2259, 7.2253, 7.2247, 7.2242, 7.2253, 7.2248, 7.226, 7.2254, 7.2249, 7.2243, 7.224, 7.2235, 7.2232, 7.2245, 7.2295, 7.2311, 7.2307, 7.2304, 7.23, 7.2282, 7.2301, 7.2297, 7.2308, 7.2319, 7.2314, 7.2345, 7.2359, 7.2354, 7.2349, 7.2343, 7.234, 7.2334, 7.2328, 7.2325, 7.2322, 7.2316, 7.2312, 7.2292, 7.2287, 7.2302, 7.2285, 7.2296, 7.2291, 7.2338, 7.2334, 7.2328, 7.2322, 7.2316, 7.2323, 7.2318, 7.233, 7.2342, 7.2338, 7.2335, 7.233, 7.2328, 7.2322, 7.2317, 7.2327, 7.2321, 7.2315, 7.231, 7.2305, 7.2284, 7.228, 7.2293, 7.2316, 7.2312, 7.2324, 7.2322, 7.2319, 7.2315, 7.2311, 7.2321, 7.2331, 7.2326, 7.232, 7.2315, 7.2309, 7.2305, 7.23, 7.2315, 7.2326, 7.2337, 7.2333, 7.2333, 7.2322, 7.2318, 7.2314, 7.2309, 7.2303, 7.2283, 7.2278, 7.2289, 7.2285, 7.228, 7.2276, 7.227, 7.2265, 7.2259, 7.2254, 7.2285, 7.2279, 7.229, 7.2284, 7.2278, 7.2274, 7.2269, 7.2265, 7.226, 7.2255, 7.2249, 7.2244, 7.2238, 7.2249, 7.2261, 7.2255, 7.2251, 7.2246, 7.224, 7.2252, 7.2247, 7.2241, 7.2252, 7.2248, 7.2244, 7.2238, 7.2232, 7.2233, 7.2232, 7.2254, 7.2248, 7.2244, 7.2242, 7.2236, 7.223, 7.2243, 7.2238, 7.2232, 7.2228, 7.2222, 7.2216, 7.2213, 7.2223, 7.2217, 7.2212, 7.2225, 7.2236, 7.2232, 7.2229, 7.2224, 7.2219, 7.2214, 7.221, 7.2205, 7.22, 7.2213, 7.2207, 7.2201, 7.2197, 7.2191, 7.2186, 7.2185, 7.2183, 7.2179, 7.219, 7.2184, 7.2195, 7.219, 7.2189, 7.2186, 7.2181, 7.2176, 7.2188, 7.2202, 7.2185, 7.2224, 7.2221, 7.2218, 7.2214, 7.2224, 7.2235, 7.223, 7.2211, 7.2222, 7.2217, 7.2213, 7.2208, 7.2203, 7.2214, 7.2209, 7.2204, 7.2198, 7.2194, 7.2188, 7.2199, 7.2194, 7.2189, 7.2184, 7.2195, 7.2189, 7.2186, 7.2181, 7.2177, 7.2187, 7.2188, 7.2184, 7.218, 7.2176, 7.2172, 7.2185, 7.2181, 7.2176, 7.2174, 7.217, 7.2166, 7.2178, 7.219, 7.2187, 7.2186, 7.2182, 7.2178, 7.2189, 7.2185, 7.2181, 7.2176, 7.2172, 7.2167, 7.2179, 7.2193, 7.2188, 7.2199, 7.2195, 7.2192, 7.2193, 7.2188, 7.2198, 7.2194, 7.2188, 7.2198, 7.2195, 7.2191, 7.2186, 7.2181, 7.2178, 7.2172, 7.2182, 7.2178, 7.2189, 7.217, 7.2181, 7.2177, 7.2171, 7.2182, 7.2177, 7.2172, 7.2168, 7.2178, 7.2174, 7.217, 7.2165, 7.2163, 7.2174, 7.2185, 7.2196, 7.2208, 7.2203, 7.22, 7.2197, 7.2194, 7.2189, 7.2184, 7.2179, 7.2177, 7.2188, 7.2203, 7.2214, 7.221, 7.2238, 7.2234, 7.2215, 7.2211, 7.2208, 7.222, 7.2216, 7.2212, 7.2224, 7.2235, 7.2232, 7.2227, 7.2222, 7.2217, 7.223, 7.2225, 7.2222, 7.2217, 7.2211, 7.2221, 7.2231, 7.2212, 7.2201, 7.2181, 7.2176, 7.2157, 7.2151, 7.2145, 7.214, 7.2155, 7.2165, 7.2175, 7.2173, 7.217, 7.2166, 7.216, 7.2156, 7.215, 7.2144, 7.2154, 7.2148, 7.2159, 7.2154, 7.2149, 7.2144, 7.2126, 7.212, 7.213, 7.2125, 7.212, 7.2115, 7.211, 7.212, 7.213, 7.2126, 7.2121, 7.2116, 7.2113, 7.2122, 7.212, 7.213, 7.2127, 7.2123, 7.2132, 7.2127, 7.2124, 7.2118, 7.2128, 7.2138, 7.2135, 7.2148, 7.2153, 7.2147, 7.2142, 7.2136, 7.2132, 7.2144, 7.2139, 7.2135, 7.2222, 7.2232, 7.2227, 7.2223, 7.2218, 7.2214, 7.2211, 7.2221, 7.2231, 7.2226, 7.2221, 7.2216, 7.2213, 7.2208, 7.2218, 7.2227, 7.2223, 7.222, 7.2215, 7.2214, 7.2209, 7.222, 7.2234, 7.223, 7.2225, 7.222, 7.2231, 7.2274, 7.2269, 7.2264, 7.2259, 7.2261, 7.225, 7.2232, 7.2228, 7.2239, 7.2234, 7.2245, 7.2254, 7.2248, 7.2245, 7.2241, 7.2237, 7.2248, 7.2258, 7.2255, 7.2251, 7.2247, 7.2243, 7.224, 7.2235, 7.223, 7.2225, 7.2237, 7.2232, 7.2228, 7.2225, 7.2207, 7.2202, 7.2235, 7.2235, 7.2229, 7.2224, 7.2234, 7.223, 7.2227, 7.2222, 7.2217, 7.2213, 7.2208, 7.2205, 7.22, 7.2211, 7.2222, 7.2233, 7.2229, 7.2227, 7.2222, 7.2231, 7.2228, 7.2255, 7.2265, 7.2264, 7.2277, 7.2274, 7.2269, 7.2278, 7.2304, 7.2298, 7.2295, 7.229, 7.2299, 7.2296, 7.2306, 7.2303, 7.2298, 7.2294, 7.2295, 7.229, 7.2317, 7.2342, 7.2338, 7.2349, 7.2345, 7.234, 7.2339, 7.2335, 7.233, 7.2327, 7.2323, 7.2332, 7.2327, 7.2337, 7.2347, 7.2343, 7.2339, 7.2335, 7.2332, 7.2327, 7.2322, 7.232, 7.2316, 7.2311, 7.2306, 7.2303, 7.2301, 7.2297, 7.2294, 7.2289, 7.2285, 7.2281, 7.2277, 7.2272, 7.2268, 7.2279, 7.2289, 7.2291, 7.2316, 7.2312, 7.2297, 7.2295, 7.229, 7.2287, 7.2282, 7.228, 7.2277, 7.2271, 7.2282, 7.2278, 7.2273, 7.2283, 7.2279, 7.2274, 7.2274, 7.2284, 7.2295, 7.2276, 7.2301, 7.2296, 7.2293, 7.2288, 7.2286, 7.2283, 7.2281, 7.2291, 7.2291, 7.2286, 7.2282, 7.2278, 7.2275, 7.2274, 7.2283, 7.2293, 7.229, 7.23, 7.2295, 7.2291, 7.2287, 7.2282, 7.2278, 7.2273, 7.2268, 7.2263, 7.2258, 7.2268, 7.2265, 7.2262, 7.2302, 7.23, 7.2312, 7.2308, 7.2303, 7.2291, 7.2286, 7.2296, 7.2311, 7.2306, 7.2315, 7.2311, 7.2308, 7.2318, 7.2328, 7.2323, 7.2318, 7.2314, 7.2311, 7.2306, 7.2302, 7.2299, 7.2294, 7.2303, 7.2312, 7.2321, 7.2319, 7.2331, 7.2342, 7.2324, 7.2321, 7.2316, 7.2311, 7.2306, 7.2302, 7.2309, 7.2305, 7.2314, 7.2309, 7.2319, 7.2328, 7.2324, 7.2334, 7.2343, 7.2339, 7.2348, 7.2343, 7.2338, 7.2333, 7.2343, 7.2354, 7.235, 7.2346, 7.2355, 7.235, 7.2345, 7.234, 7.2335, 7.233, 7.2325, 7.232, 7.2315, 7.2311, 7.2306, 7.2329, 7.2339, 7.2336, 7.2353, 7.2349, 7.2346, 7.2342, 7.2337, 7.2334, 7.234, 7.2336, 7.2332, 7.2327, 7.2322, 7.2317, 7.2312, 7.2309, 7.2304, 7.2299, 7.2313, 7.2323, 7.2319, 7.2314, 7.231, 7.2305, 7.2302, 7.2298, 7.2296, 7.2294, 7.2289, 7.2284, 7.228, 7.2275, 7.227, 7.228, 7.2278, 7.2288, 7.2286, 7.2296, 7.2294, 7.2291, 7.2288, 7.2288, 7.2273, 7.2269, 7.2264, 7.2275, 7.227, 7.2265, 7.2262, 7.227, 7.2267, 7.2264, 7.2262, 7.2258, 7.2259, 7.2259, 7.2257, 7.2254, 7.2249, 7.2259, 7.2255, 7.2269, 7.2272, 7.2285, 7.2281, 7.2282, 7.2278, 7.2273, 7.2282, 7.2293, 7.2289, 7.2284, 7.2293, 7.2276, 7.2286, 7.2282, 7.229, 7.2298, 7.2294, 7.2289, 7.2291, 7.2301, 7.2296, 7.2294, 7.2291, 7.23, 7.2309, 7.2305, 7.2315, 7.2311, 7.231, 7.2306, 7.229, 7.2285, 7.228, 7.2292, 7.2302, 7.2298, 7.2295, 7.2293, 7.2301, 7.2297, 7.2292, 7.2288, 7.2285, 7.2282, 7.2293, 7.229, 7.2285, 7.228, 7.2275, 7.227, 7.2279, 7.2274, 7.2269, 7.2264, 7.2259, 7.2269, 7.2278, 7.2288, 7.2296, 7.2291, 7.2286, 7.2281, 7.2277, 7.2273, 7.2282, 7.2265, 7.226, 7.2269, 7.2265, 7.2274, 7.2271, 7.2267, 7.2278, 7.2344, 7.2353, 7.2348, 7.2344, 7.234, 7.2345, 7.2341, 7.2336, 7.2344, 7.2339, 7.2348, 7.2344, 7.2353, 7.2348, 7.2345, 7.2353, 7.2349, 7.2353, 7.2351, 7.2348, 7.2345, 7.2341, 7.2337, 7.2336, 7.2331, 7.2326, 7.2335, 7.2331, 7.2326, 7.2334, 7.2337, 7.2345, 7.234, 7.2335, 7.2331, 7.2327, 7.2322, 7.2318, 7.2314, 7.2311, 7.2319, 7.2315, 7.2312, 7.2307, 7.2317, 7.2313, 7.2308, 7.2303, 7.2312, 7.2312, 7.2321, 7.2325, 7.2322, 7.2331, 7.2328, 7.2337, 7.2347, 7.2342, 7.2337, 7.2332, 7.2327, 7.2324, 7.2333, 7.2342, 7.2338, 7.2335, 7.2344, 7.234, 7.2338, 7.2334, 7.2331, 7.2339, 7.2335, 7.2332, 7.2341, 7.2336, 7.2331, 7.2339, 7.2337, 7.2332, 7.2329, 7.2324, 7.2319, 7.2315, 7.2299, 7.2295, 7.2291, 7.2286, 7.2281, 7.2277, 7.2261, 7.2339, 7.2335, 7.233, 7.2314, 7.2301, 7.2297, 7.2294, 7.2337, 7.2388, 7.2384, 7.238, 7.2375, 7.237, 7.2365, 7.2363, 7.2374, 7.2369, 7.2367, 7.2363, 7.2372, 7.2367, 7.2362, 7.2359, 7.2356, 7.234, 7.2336, 7.2341, 7.2349, 7.2344, 7.2339, 7.2335, 7.2332, 7.2342, 7.2339, 7.2336, 7.2346, 7.2343, 7.2353, 7.2361, 7.2358, 7.2366, 7.2362, 7.2359, 7.2355, 7.235, 7.2346, 7.2347, 7.2344, 7.2341, 7.2373, 7.2383, 7.2378, 7.2379, 7.2375, 7.237, 7.2366, 7.2361, 7.2371, 7.2367, 7.2374, 7.2361, 7.2357, 7.2352, 7.2363, 7.2372, 7.2367, 7.2363, 7.2359, 7.2356, 7.2352, 7.2361, 7.2357, 7.2365, 7.2361, 7.2357, 7.2352, 7.236, 7.2356, 7.2353, 7.2352, 7.2348, 7.2357, 7.2341, 7.2336, 7.2332, 7.2327, 7.2337, 7.2333, 7.2342, 7.2337, 7.2332, 7.233, 7.2325, 7.232, 7.2329, 7.2338, 7.2335, 7.2343, 7.2339, 7.2337, 7.2333, 7.2329, 7.2327, 7.2323, 7.2333, 7.2332, 7.2328, 7.2324, 7.2333, 7.2341, 7.2336, 7.2344, 7.234, 7.2336, 7.232, 7.2317, 7.2314, 7.2311, 7.2306, 7.2315, 7.231, 7.2318, 7.2327, 7.2335, 7.2332, 7.2328, 7.2323, 7.2319, 7.2328, 7.2324, 7.2406, 7.2416, 7.2425, 7.2434, 7.2445, 7.2454, 7.2451, 7.2447, 7.2443, 7.2452, 7.2448, 7.2444, 7.2441, 7.2438, 7.2423, 7.2419, 7.2416, 7.2403, 7.2398, 7.2406, 7.2402, 7.2436, 7.2432, 7.2427, 7.2423, 7.2421, 7.2416, 7.2424, 7.2419, 7.2417, 7.2425, 7.2421, 7.243, 7.2425, 7.2421, 7.2405, 7.239, 7.2399, 7.2408, 7.2403, 7.2398, 7.2393, 7.2388, 7.2384, 7.2392, 7.2388, 7.2396, 7.2397, 7.2394, 7.239, 7.2387, 7.2383, 7.2368, 7.2364, 7.2373, 7.2369, 7.2354, 7.2351, 7.2346, 7.2342, 7.2338, 7.2348, 7.2345, 7.2342, 7.2337, 7.2345, 7.2341, 7.2347, 7.2342, 7.2337, 7.2332, 7.2328, 7.2329, 7.2325, 7.2322, 7.2318, 7.2327, 7.2323, 7.2334, 7.2343, 7.234, 7.2351, 7.2347, 7.2332, 7.234, 7.2349, 7.2346, 7.2343, 7.2339, 7.2348, 7.2356, 7.2352, 7.2351, 7.2347, 7.2355, 7.2352, 7.2348, 7.2344, 7.234, 7.2336, 7.2332, 7.2328, 7.2323, 7.2319, 7.2316, 7.2313, 7.2309, 7.2306, 7.2302, 7.2298, 7.2294, 7.2289, 7.2313, 7.231, 7.2307, 7.2304, 7.2312, 7.2307, 7.2302, 7.231, 7.2308, 7.2304, 7.2289, 7.2287, 7.2283, 7.228, 7.2265, 7.2262, 7.2258, 7.2254, 7.2249, 7.2245, 7.2241, 7.2238, 7.2234, 7.2243, 7.2239, 7.2235, 7.2231, 7.2228, 7.2225, 7.2222, 7.2219, 7.2227, 7.2223, 7.2223, 7.2231, 7.2228, 7.2225, 7.2232, 7.224, 7.2236, 7.2232, 7.2241, 7.225, 7.2246, 7.2242, 7.224, 7.2249, 7.2246, 7.2242, 7.2239, 7.2235, 7.2231, 7.2227, 7.2223, 7.2219, 7.2204, 7.2213, 7.221, 7.2207, 7.2203, 7.22, 7.2196, 7.2191, 7.2189, 7.2197, 7.2193, 7.2189, 7.2199, 7.2196, 7.2192, 7.2188, 7.2186, 7.2195, 7.2193, 7.219, 7.2186, 7.2172, 7.2157, 7.2153, 7.2152, 7.215, 7.2146, 7.2142, 7.2139, 7.2136, 7.2132, 7.2129, 7.2125, 7.2122, 7.2118, 7.2115, 7.2114, 7.2112, 7.2099, 7.2095, 7.2093, 7.2089, 7.2085, 7.2081, 7.2107, 7.2103, 7.2111, 7.2107, 7.2104, 7.21, 7.2096, 7.2092, 7.21, 7.2095, 7.2103, 7.21, 7.2096, 7.2098, 7.2095, 7.2104, 7.2121, 7.2117, 7.2112, 7.2109, 7.2105, 7.2102, 7.211, 7.2106, 7.2102, 7.2098, 7.2107, 7.2103, 7.2099, 7.2107, 7.2104, 7.21, 7.2096, 7.2093, 7.2078, 7.2079, 7.2088, 7.2086, 7.2082, 7.209, 7.2086, 7.2071, 7.2057, 7.206, 7.2069, 7.2066, 7.2064, 7.206, 7.2056, 7.2052, 7.2048, 7.2044, 7.2043, 7.2052, 7.2048, 7.2045, 7.2041, 7.2049, 7.2047, 7.2043, 7.204, 7.2037, 7.2045, 7.2054, 7.205, 7.2046, 7.2042, 7.2039, 7.2037, 7.2033, 7.2028, 7.2035, 7.2033, 7.2028, 7.2036, 7.2044, 7.204, 7.2037, 7.2033, 7.203, 7.2026, 7.2034, 7.2029, 7.2026, 7.2023, 7.2033, 7.2031, 7.2027, 7.2035, 7.2032, 7.2028, 7.2024, 7.2032, 7.2028, 7.2024, 7.202, 7.2018, 7.2027, 7.2025, 7.2022, 7.203, 7.2026, 7.2023, 7.2031, 7.2016, 7.2011, 7.2019, 7.2015, 7.2011, 7.2007, 7.2016, 7.2023, 7.2019, 7.2015, 7.2011, 7.2008, 7.2005, 7.2003, 7.1999, 7.1996, 7.2018, 7.2025, 7.2037, 7.2058, 7.2055, 7.2062, 7.2069, 7.2067, 7.2089, 7.2086, 7.2084, 7.2082, 7.208, 7.2065, 7.2072, 7.2079, 7.2086, 7.2081, 7.2077, 7.2074, 7.2083, 7.2081, 7.2079, 7.2075, 7.2072, 7.2069, 7.2076, 7.2072, 7.208, 7.2088, 7.2095, 7.2091, 7.2087, 7.2095, 7.2102, 7.21, 7.2097, 7.2082, 7.2079, 7.2075, 7.2071, 7.2067, 7.2064, 7.2061, 7.207, 7.2055, 7.2051, 7.2036, 7.2034, 7.2031, 7.2027, 7.2038, 7.2046, 7.2042, 7.2038, 7.2035, 7.2031, 7.2028, 7.2024, 7.2031, 7.2027, 7.2024, 7.202, 7.2006, 7.2026, 7.2022, 7.2019, 7.2016, 7.2014, 7.2011, 7.2009, 7.2006, 7.2004, 7.2001, 7.1999, 7.2008, 7.2016, 7.2013, 7.2009, 7.2005, 7.2002, 7.2, 7.1998, 7.201, 7.2006, 7.2004, 7.2, 7.1997, 7.1994, 7.1991, 7.1991, 7.1988, 7.1984, 7.198, 7.1976, 7.1972, 7.198, 7.1976, 7.1974, 7.197, 7.1978, 7.1985, 7.1981, 7.1977, 7.1974, 7.1973, 7.197, 7.1966, 7.1963, 7.196, 7.1957, 7.2024, 7.202, 7.2017, 7.2025, 7.2021, 7.2029, 7.2025, 7.2022, 7.2018, 7.2004, 7.2, 7.1986, 7.1997, 7.1993, 7.1989, 7.1987, 7.1985, 7.1982, 7.1979, 7.2009, 7.2045, 7.2042, 7.204, 7.2077, 7.2073, 7.206, 7.2079, 7.2077, 7.2073, 7.2069, 7.2067, 7.207, 7.2066, 7.2066, 7.2063, 7.2071, 7.2079, 7.2075, 7.2071, 7.2079, 7.2065, 7.2067, 7.2064, 7.2072, 7.208, 7.2069, 7.2069, 7.2067, 7.2063, 7.2059, 7.2057, 7.2065, 7.2064, 7.2062, 7.2059, 7.2067, 7.2064, 7.2073, 7.2058, 7.2055, 7.2065, 7.2063, 7.2072, 7.2081, 7.209, 7.2086, 7.2095, 7.2097, 7.2106, 7.2132, 7.2128, 7.2136, 7.2133, 7.2154, 7.2151, 7.2147, 7.2155, 7.2151, 7.2147, 7.2143, 7.2129, 7.2125, 7.2134, 7.2132, 7.2128, 7.2126, 7.2112, 7.2108, 7.2094, 7.209, 7.2086, 7.2082, 7.2078, 7.2086, 7.2082, 7.2078, 7.2086, 7.2094, 7.2098, 7.2094, 7.2101, 7.2097, 7.2095, 7.2091, 7.2077, 7.2085, 7.2093, 7.21, 7.2096, 7.2093, 7.2102, 7.2098, 7.2095, 7.2093, 7.2101, 7.2097, 7.2094, 7.2102, 7.21, 7.2108, 7.2104, 7.2101, 7.211, 7.211, 7.2107, 7.2105, 7.2112, 7.2109, 7.2105, 7.2109, 7.2117, 7.2115, 7.2113, 7.211, 7.2109, 7.2106, 7.2113, 7.212, 7.2116, 7.2112, 7.2109, 7.2106, 7.2103, 7.2112, 7.2109, 7.2095, 7.2081, 7.2078, 7.2085, 7.2082, 7.2078, 7.2086, 7.2086, 7.2083, 7.2091, 7.2087, 7.2084, 7.2093, 7.2092, 7.209, 7.2098, 7.2095, 7.2091, 7.2092, 7.2089, 7.2086, 7.2106, 7.2114, 7.2122, 7.212, 7.2117, 7.2125, 7.2132, 7.2128, 7.2127, 7.2124, 7.2131, 7.2127, 7.2124, 7.2132, 7.2144, 7.2152, 7.216, 7.2169, 7.2166, 7.2162, 7.2158, 7.2155, 7.2166, 7.2174, 7.2172, 7.217, 7.2156, 7.2166, 7.2187, 7.2183, 7.2181, 7.2177, 7.2174, 7.2171, 7.218, 7.2176, 7.2173, 7.2169, 7.2165, 7.2161, 7.2158, 7.2156, 7.2154, 7.215, 7.2146, 7.2143, 7.2141, 7.2137, 7.2133, 7.2129, 7.2136, 7.2143, 7.214, 7.2136, 7.2144, 7.2143, 7.214, 7.2147, 7.2143, 7.214, 7.2137, 7.2135, 7.216, 7.2156, 7.2159, 7.2157, 7.2154, 7.2151, 7.2149, 7.2146, 7.216, 7.216, 7.2156, 7.2154, 7.215, 7.2146, 7.2142, 7.215, 7.2147, 7.2133, 7.2119, 7.2115, 7.2111, 7.2107, 7.2104, 7.2103, 7.2111, 7.2098, 7.2095, 7.2091, 7.2088, 7.2085, 7.2093, 7.2101, 7.211, 7.2107, 7.2115, 7.2122, 7.213, 7.2135, 7.2134, 7.212, 7.2119, 7.2117, 7.2115, 7.2112, 7.2109, 7.2106, 7.2114, 7.211, 7.2107, 7.2114, 7.2111, 7.2119, 7.2115, 7.2102, 7.2099, 7.2095, 7.2091, 7.2099, 7.2096, 7.2103, 7.2101, 7.2097, 7.2093, 7.2089, 7.2086, 7.2084, 7.2081, 7.2089, 7.2087, 7.21, 7.2096, 7.2097, 7.2094, 7.2091, 7.2087, 7.2095, 7.2092, 7.2088, 7.2085, 7.2082, 7.209, 7.2088, 7.2085, 7.2083, 7.2079, 7.2075, 7.2071, 7.2069, 7.2056, 7.2052, 7.2049, 7.2045, 7.2053, 7.205, 7.2046, 7.2043, 7.204, 7.2037, 7.2033, 7.2041, 7.2039, 7.2035, 7.2023, 7.202, 7.2018, 7.2015, 7.2012, 7.201, 7.2007, 7.2005, 7.2002, 7.2, 7.2007, 7.2004, 7.2, 7.1996, 7.1993, 7.1995, 7.2002, 7.2009, 7.2008, 7.2005, 7.2013, 7.201, 7.2018, 7.2014, 7.201, 7.2006, 7.2014, 7.2022, 7.2018, 7.2028, 7.2024, 7.2031, 7.2027, 7.2023, 7.2031, 7.207, 7.2077, 7.2085, 7.2081, 7.2089, 7.2086, 7.2072, 7.2079, 7.2108, 7.2115, 7.2122, 7.2131, 7.2118, 7.2114, 7.2165, 7.2183, 7.2179, 7.2175, 7.2182, 7.2178, 7.2185, 7.2181, 7.2181, 7.2198, 7.2212, 7.2219, 7.2231, 7.2228, 7.2225, 7.2264, 7.2296, 7.2304, 7.2302, 7.231, 7.2306, 7.2325, 7.2322, 7.2329, 7.2326, 7.2324, 7.2331, 7.2329, 7.2325, 7.2323, 7.2332, 7.2328, 7.2337, 7.2336, 7.2332, 7.2329, 7.2338, 7.2335, 7.2343, 7.2343, 7.234, 7.2348, 7.2345, 7.2352, 7.2349, 7.2346, 7.2342, 7.2329, 7.2325, 7.2323, 7.233, 7.2337, 7.2334, 7.2335, 7.2332, 7.2328, 7.2325, 7.2322, 7.2318, 7.2315, 7.2312, 7.2308, 7.2317, 7.2315, 7.2313, 7.2321, 7.234, 7.235, 7.2378, 7.2375, 7.2371, 7.2367, 7.2364, 7.2371, 7.2368, 7.2365, 7.2363, 7.2359, 7.2355, 7.2351, 7.2358, 7.2355, 7.2352, 7.2348, 7.2344, 7.2345, 7.2342, 7.2339, 7.2382, 7.2378, 7.2374, 7.2374, 7.2384, 7.2381, 7.2388, 7.2385, 7.2381, 7.2377, 7.2374, 7.2371, 7.2358, 7.2355, 7.2373, 7.2371, 7.2367, 7.2374, 7.237, 7.238, 7.2367, 7.2375, 7.2383, 7.2382, 7.2379, 7.2386, 7.2382, 7.239, 7.2387, 7.2384, 7.2381, 7.238, 7.2378, 7.2374, 7.2371, 7.2378, 7.2375, 7.2362, 7.2358, 7.2354, 7.2351, 7.2349, 7.2345, 7.2352, 7.2348, 7.235, 7.2348, 7.2355, 7.2364, 7.236, 7.2368, 7.2364, 7.2371, 7.2369, 7.2378, 7.2378, 7.2377, 7.2374, 7.237, 7.2366, 7.2362, 7.236, 7.2356, 7.2352, 7.2348, 7.2347, 7.2345, 7.2342, 7.2339, 7.2337, 7.2333, 7.234, 7.2348, 7.2344, 7.234, 7.2347, 7.2344, 7.2352, 7.2359, 7.2356, 7.2352, 7.236, 7.2358, 7.2359, 7.2356, 7.2353, 7.235, 7.2347, 7.2357, 7.2354, 7.2363, 7.237, 7.2378, 7.2374, 7.2384, 7.238, 7.2376, 7.2373, 7.237, 7.2378, 7.2378, 7.2365, 7.2361, 7.2358, 7.2356, 7.2364, 7.2361, 7.2358, 7.2355, 7.2352, 7.2348, 7.2347, 7.2334, 7.2331, 7.2338, 7.2334, 7.2332, 7.2329, 7.2326, 7.2333, 7.2341, 7.2338, 7.2335, 7.2322, 7.2319, 7.2325, 7.2324, 7.2312, 7.2308, 7.2295, 7.2296, 7.2293, 7.229, 7.2287, 7.2298, 7.2322, 7.232, 7.2319, 7.2328, 7.2325, 7.2323, 7.2329, 7.2327, 7.2334, 7.2331, 7.2338, 7.2345, 7.2341, 7.2338, 7.2326, 7.2323, 7.233, 7.2326, 7.2333, 7.234, 7.2338, 7.2335, 7.2343, 7.2339, 7.2346, 7.2343, 7.2351, 7.2349, 7.2346, 7.2344, 7.2341, 7.2338, 7.2344, 7.2341, 7.2339, 7.2326, 7.2348, 7.2346, 7.2342, 7.2338, 7.2335, 7.2331, 7.233, 7.232, 7.2327, 7.2323, 7.2312, 7.231, 7.2307, 7.2314, 7.2311, 7.2307, 7.2303, 7.2299, 7.2296, 7.2292, 7.2291, 7.2297, 7.2293, 7.2291, 7.2303, 7.23, 7.23, 7.2304, 7.231, 7.2318, 7.2314, 7.231, 7.2316, 7.2313, 7.2311, 7.231, 7.231, 7.2309, 7.2316, 7.2323, 7.2319, 7.2316, 7.2323, 7.232, 7.2318, 7.2325, 7.2322, 7.2322, 7.2328, 7.2325, 7.2322, 7.2318, 7.2315, 7.2322, 7.2319, 7.2316, 7.2314, 7.2311, 7.2317, 7.2314, 7.2311, 7.2308, 7.2305, 7.2302, 7.2299, 7.2296, 7.2293, 7.23, 7.2307, 7.2316, 7.2313, 7.2314, 7.2315, 7.2311, 7.2318, 7.2315, 7.2326, 7.2323, 7.2332, 7.2349, 7.2346, 7.2354, 7.2352, 7.235, 7.2348, 7.2345, 7.2344, 7.2331, 7.2328, 7.2334, 7.233, 7.2369, 7.2366, 7.2354, 7.2351, 7.2348, 7.2346, 7.2344, 7.2363, 7.2359, 7.2357, 7.2364, 7.2361, 7.2358, 7.2356, 7.2353, 7.235, 7.2346, 7.2401, 7.2398, 7.2395, 7.2394, 7.239, 7.2422, 7.243, 7.2426, 7.2423, 7.242, 7.2416, 7.2413, 7.2411, 7.2409, 7.2406, 7.2404, 7.2401, 7.2398, 7.2396, 7.2392, 7.239, 7.2396, 7.2395, 7.2394, 7.239, 7.2387, 7.2384, 7.2381, 7.2378, 7.2385, 7.2384, 7.2381, 7.2378, 7.2375, 7.2373, 7.2371, 7.2378, 7.2376, 7.2383, 7.237, 7.2387, 7.2383, 7.238, 7.2378, 7.2376, 7.2373, 7.2371, 7.2368, 7.2366, 7.2363, 7.236, 7.2357, 7.2353, 7.2349, 7.2348, 7.2355, 7.2352, 7.2359, 7.2366, 7.2366, 7.2373, 7.237, 7.237, 7.2366, 7.2373, 7.237, 7.2367, 7.2365, 7.2373, 7.2372, 7.237, 7.2367, 7.2365, 7.2361, 7.2378, 7.2375, 7.2373, 7.2379, 7.2377, 7.2376, 7.2383, 7.238, 7.2387, 7.2384, 7.2382, 7.2379, 7.2377, 7.2374, 7.2371, 7.2369, 7.2365, 7.2362, 7.2359, 7.2356, 7.2354, 7.235, 7.2354, 7.2351, 7.2347, 7.2343, 7.234, 7.2338, 7.2335, 7.2336, 7.2343, 7.2349, 7.2351, 7.2348, 7.2378, 7.2376, 7.2382, 7.2382, 7.2379, 7.2376, 7.2374, 7.238, 7.2388, 7.2389, 7.2386, 7.2383, 7.2389, 7.2387, 7.2394, 7.239, 7.2387, 7.2384, 7.238, 7.2386, 7.2393, 7.2389, 7.2385, 7.2382, 7.2389, 7.2386, 7.2384, 7.2391, 7.2389, 7.2387, 7.2386, 7.2393, 7.24, 7.2397, 7.2395, 7.2393, 7.2401, 7.2398, 7.2405, 7.2413, 7.2419, 7.2416, 7.2412, 7.2419, 7.2427, 7.2434, 7.2431, 7.2428, 7.2426, 7.2423, 7.242, 7.2417, 7.2414, 7.241, 7.2418, 7.2416, 7.2413, 7.241, 7.2407, 7.2404, 7.2402, 7.2399, 7.2396, 7.2403, 7.241, 7.2407, 7.2404, 7.2392, 7.238, 7.2377, 7.2374, 7.238, 7.2377, 7.2384, 7.2381, 7.2378, 7.2366, 7.2363, 7.236, 7.2359, 7.2366, 7.2364, 7.2361, 7.2358, 7.2355, 7.2365, 7.2371, 7.2359, 7.2357, 7.2355, 7.2353, 7.235, 7.2347, 7.2348, 7.2345, 7.2343, 7.234, 7.2337, 7.2335, 7.2331, 7.2338, 7.2336, 7.2333, 7.233, 7.2318, 7.2314, 7.2311, 7.2308, 7.2305, 7.2302, 7.2299, 7.2297, 7.2304, 7.23, 7.2309, 7.2325, 7.2322, 7.2325, 7.2322, 7.2319, 7.2327, 7.2324, 7.235, 7.2359, 7.2348, 7.2345, 7.2342, 7.2339, 7.2336, 7.2334, 7.2341, 7.2338, 7.2326, 7.2323, 7.232, 7.2317, 7.2314, 7.2313, 7.2309, 7.2315, 7.2311, 7.2317, 7.2314, 7.2312, 7.2319, 7.2316, 7.2313, 7.2309, 7.2307, 7.2303, 7.231, 7.2306, 7.2303, 7.23, 7.2288, 7.2285, 7.2293, 7.2299, 7.2296, 7.2294, 7.2301, 7.2306, 7.2303, 7.2324, 7.2312, 7.2309, 7.2307, 7.2304, 7.2327, 7.2315, 7.2312, 7.2308, 7.2305, 7.2302, 7.2309, 7.2306, 7.2313, 7.2311, 7.2347, 7.2346, 7.2343, 7.2344, 7.2355, 7.2363, 7.2364, 7.2362, 7.238, 7.2377, 7.2375, 7.2373, 7.2361, 7.2358, 7.2355, 7.2361, 7.2359, 7.2357, 7.2355, 7.2359, 7.2356, 7.2363, 7.236, 7.2357, 7.2354, 7.235, 7.2346, 7.2344, 7.2341, 7.2338, 7.2335, 7.2333, 7.233, 7.233, 7.2328, 7.2325, 7.2322, 7.2319, 7.2316, 7.2313, 7.2319, 7.2325, 7.2322, 7.2319, 7.2307, 7.2304, 7.2311, 7.2308, 7.2306, 7.2313, 7.231, 7.2308, 7.2305, 7.2302, 7.2308, 7.2304, 7.2301, 7.2298, 7.2295, 7.2292, 7.2289, 7.2285, 7.2291, 7.2288, 7.2286, 7.2284, 7.2281, 7.2269, 7.2268, 7.2265, 7.2263, 7.2261, 7.2258, 7.2265, 7.2253, 7.226, 7.2258, 7.2257, 7.2254, 7.2243, 7.224, 7.2238, 7.2236, 7.2233, 7.2231, 7.2229, 7.2226, 7.2235, 7.2232, 7.2229, 7.2226, 7.2224, 7.2221, 7.2219, 7.2226, 7.2223, 7.222, 7.2218, 7.2215, 7.2212, 7.2209, 7.2206, 7.2213, 7.221, 7.2207, 7.2213, 7.221, 7.2207, 7.2224, 7.2221, 7.2227, 7.2234, 7.2231, 7.2228, 7.2231, 7.2219, 7.2216, 7.2222, 7.2211, 7.2217, 7.2215, 7.2212, 7.2221, 7.2218, 7.2216, 7.2215, 7.2212, 7.221, 7.2207, 7.2205, 7.2203, 7.22, 7.2206, 7.2203, 7.2201, 7.2198, 7.2196, 7.2203, 7.22, 7.2198, 7.2195, 7.2193, 7.22, 7.2206, 7.2213, 7.2211, 7.2209, 7.2215, 7.2212, 7.2209, 7.2216, 7.2213, 7.2201, 7.2199, 7.2197, 7.2204, 7.2201, 7.2198, 7.2195, 7.2192, 7.2198, 7.2195, 7.2192, 7.2189, 7.2188, 7.2195, 7.2195, 7.2195, 7.2192, 7.219, 7.2187, 7.2184, 7.219, 7.2187, 7.2184, 7.2189, 7.2186, 7.2193, 7.219, 7.2195, 7.2193, 7.219, 7.2196, 7.2193, 7.2191, 7.2188, 7.2186, 7.2191, 7.2188, 7.2194, 7.2191, 7.2192, 7.2188, 7.2185, 7.2192, 7.2189, 7.2186, 7.2183, 7.218, 7.2177, 7.2174, 7.2171, 7.216, 7.2158, 7.2155, 7.2152, 7.2149, 7.2146, 7.2143, 7.2141, 7.2139, 7.2137, 7.2154, 7.2153, 7.215, 7.2147, 7.2144, 7.2141, 7.2147, 7.2163, 7.2161, 7.2159, 7.2157, 7.2156, 7.2162, 7.2159, 7.2156, 7.2153, 7.216, 7.2158, 7.2148, 7.2137, 7.2135, 7.2135, 7.2152, 7.2159, 7.2166, 7.2173, 7.218, 7.2178, 7.2176, 7.2166, 7.2163, 7.2161, 7.2167, 7.2164, 7.2161, 7.2158, 7.2157, 7.2154, 7.2161, 7.2159, 7.2165, 7.2164, 7.2166, 7.2172, 7.217, 7.2168, 7.2165, 7.2162, 7.2159, 7.2165, 7.2171, 7.2168, 7.222, 7.2218, 7.2217, 7.2216, 7.2213, 7.2229, 7.2226, 7.2223, 7.222, 7.2217, 7.2223, 7.222, 7.2217, 7.2214, 7.2222, 7.2219, 7.2217, 7.2214, 7.2211, 7.2211, 7.221, 7.2207, 7.2197, 7.2188, 7.2178, 7.2169, 7.2166, 7.2157, 7.2177, 7.2174, 7.218, 7.2169, 7.2175, 7.2173, 7.2183, 7.218, 7.2177, 7.2183, 7.2181, 7.2178, 7.2184, 7.2181, 7.2178, 7.2177, 7.2174, 7.2184, 7.2181, 7.2179, 7.2177, 7.2183, 7.218, 7.2178, 7.2175, 7.2164, 7.2161, 7.2167, 7.2164, 7.2171, 7.2168, 7.2165, 7.2163, 7.217, 7.2168, 7.2166, 7.2164, 7.2162, 7.2167, 7.2165, 7.2162, 7.2159, 7.2156, 7.2154, 7.2151, 7.2157, 7.2154, 7.2151, 7.2148, 7.2137, 7.2139, 7.2138, 7.2151, 7.2161, 7.2177, 7.2183, 7.2197, 7.2212, 7.2218, 7.2224, 7.231, 7.2307, 7.2304, 7.2304, 7.2301, 7.2299, 7.2296, 7.2293, 7.229, 7.2287, 7.2284, 7.2282, 7.2279, 7.2276, 7.2273, 7.227, 7.2268, 7.2274, 7.2271, 7.2277, 7.2279, 7.2277, 7.2274, 7.228, 7.2277, 7.2274, 7.228, 7.2278, 7.2285, 7.2282, 7.228, 7.2278, 7.2275, 7.2272, 7.2278, 7.2267, 7.2264, 7.2293, 7.229, 7.2288, 7.2286, 7.2292, 7.229, 7.2296, 7.2293, 7.2292, 7.229, 7.2296, 7.2293, 7.229, 7.2287, 7.2284, 7.229, 7.2288, 7.2285, 7.2282, 7.2279, 7.2276, 7.2273, 7.2271, 7.2268, 7.2265, 7.2279, 7.2298, 7.2295, 7.2292, 7.2289, 7.2288, 7.2285, 7.2283, 7.2289, 7.2295, 7.2292, 7.229, 7.2287, 7.2276, 7.2282, 7.2288, 7.2285, 7.2282, 7.228, 7.2287, 7.2284, 7.2282, 7.2279, 7.2287, 7.2285, 7.2292, 7.2289, 7.2287, 7.2284, 7.2282, 7.2279, 7.2277, 7.2286, 7.2275, 7.2282, 7.2288, 7.2294, 7.2291, 7.2297, 7.2294, 7.2291, 7.2289, 7.2287, 7.2284, 7.2281, 7.2287, 7.2284, 7.2282, 7.2282, 7.2279, 7.2276, 7.2282, 7.2279, 7.2285, 7.2282, 7.228, 7.2277, 7.2274, 7.2281, 7.2278, 7.2275, 7.2272, 7.227, 7.2271, 7.2269, 7.2266, 7.2264, 7.2262, 7.2268, 7.2265, 7.2265, 7.2262, 7.2259, 7.2256, 7.2261, 7.2259, 7.2257, 7.2254, 7.2252, 7.2249, 7.2247, 7.2244, 7.2241, 7.223, 7.2236, 7.2233, 7.223, 7.2231, 7.2237, 7.2244, 7.2241, 7.2247, 7.2253, 7.2251, 7.2258, 7.2257, 7.2254, 7.2272, 7.2279, 7.2277, 7.2283, 7.228, 7.2277, 7.228, 7.2277, 7.2274, 7.228, 7.2286, 7.2284, 7.2281, 7.2278, 7.2275, 7.2273, 7.2263, 7.2269, 7.2267, 7.2272, 7.2269, 7.2266, 7.2263, 7.2252, 7.2259, 7.2257, 7.2254, 7.226, 7.2265, 7.2262, 7.2269, 7.2266, 7.2263, 7.2261, 7.2258, 7.2255, 7.2252, 7.2249, 7.2255, 7.2261, 7.2267, 7.2284, 7.2274, 7.229, 7.2296, 7.2302, 7.23, 7.2306, 7.2303, 7.2301, 7.2307, 7.2304, 7.231, 7.232, 7.2327, 7.2342, 7.234, 7.2338, 7.2335, 7.235, 7.2348, 7.2355, 7.2362, 7.2368, 7.2365, 7.2364, 7.2363, 7.236, 7.2357, 7.236, 7.2357, 7.2354, 7.2351, 7.2348, 7.2347, 7.2344, 7.2351, 7.2357, 7.2346, 7.2352, 7.2349, 7.2355, 7.2353, 7.2358, 7.2356, 7.2362, 7.2359, 7.2356, 7.2353, 7.2359, 7.2365, 7.2363, 7.2369, 7.2366, 7.2363, 7.236, 7.2357, 7.2354, 7.2351, 7.2349, 7.2374, 7.2363, 7.2378, 7.2378, 7.2375, 7.2364, 7.2361, 7.2358, 7.2347, 7.2347, 7.2344, 7.2363, 7.2363, 7.236, 7.2358, 7.2355, 7.2353, 7.2352, 7.235, 7.2355, 7.2361, 7.2358, 7.2355, 7.2353, 7.2359, 7.2357, 7.2355, 7.2361, 7.2359, 7.2366, 7.2364, 7.237, 7.237, 7.2367, 7.2373, 7.2371, 7.2369, 7.2366, 7.2363, 7.2361, 7.2359, 7.2357, 7.2355, 7.2352, 7.2352, 7.2349, 7.2346, 7.2344, 7.2341, 7.2339, 7.2336, 7.2333, 7.2339, 7.2337, 7.2344, 7.2342, 7.2331, 7.2328, 7.2333, 7.233, 7.2327, 7.2332, 7.2329, 7.2335, 7.2332, 7.233, 7.2319, 7.2326, 7.2323, 7.2321, 7.2327, 7.2325, 7.2322, 7.2319, 7.2316, 7.2315, 7.2312, 7.231, 7.2308, 7.2305, 7.2302, 7.2299, 7.2305, 7.2328, 7.2325, 7.2363, 7.236, 7.2358, 7.2364, 7.2361, 7.2358, 7.2355, 7.2353, 7.2355, 7.2361, 7.2358, 7.2357, 7.2355, 7.2361, 7.236, 7.2357, 7.2354, 7.236, 7.2366, 7.2372, 7.2369, 7.2368, 7.2365, 7.2369, 7.2375, 7.2372, 7.2369, 7.2372, 7.2369, 7.2374, 7.238, 7.2385, 7.2391, 7.2397, 7.2395, 7.2401, 7.2408, 7.2413, 7.2411, 7.2408, 7.2405, 7.2402, 7.24, 7.2405, 7.2403, 7.2401, 7.2399, 7.2404, 7.2405, 7.2404, 7.2409, 7.2414, 7.2411, 7.2409, 7.2406, 7.2411, 7.241, 7.2408, 7.2405, 7.2395, 7.2392, 7.2397, 7.2394, 7.2392, 7.2398, 7.2395, 7.2401, 7.2398, 7.2395, 7.2393, 7.239, 7.2395, 7.2393, 7.2391, 7.2397, 7.2395, 7.2392, 7.2389, 7.2379, 7.2376, 7.2373, 7.2379, 7.2376, 7.2373, 7.2371, 7.2368, 7.2367, 7.2364, 7.237, 7.2367, 7.2364, 7.2371, 7.2368, 7.2365, 7.2362, 7.2359, 7.2364, 7.2363, 7.2368, 7.2365, 7.2364, 7.2362, 7.2359, 7.2356, 7.2362, 7.2359, 7.2356, 7.2353, 7.2351, 7.2351, 7.2358, 7.2363, 7.2361, 7.2359, 7.2358, 7.2356, 7.2369, 7.2375, 7.2381, 7.239, 7.239, 7.2404, 7.2401, 7.2424, 7.2421, 7.2418, 7.2423, 7.2421, 7.2421, 7.2427, 7.2424, 7.2438, 7.2438, 7.2438, 7.244, 7.2446, 7.2443, 7.2448, 7.2446, 7.2451, 7.2448, 7.2446, 7.2451, 7.2454, 7.2451, 7.2457, 7.2465, 7.2462, 7.2459, 7.2457, 7.2462, 7.2476, 7.2481, 7.2478, 7.2475, 7.2473, 7.2478, 7.2484, 7.2481, 7.2487, 7.2485, 7.2485, 7.2498, 7.2496, 7.2493, 7.2491, 7.2488, 7.2485, 7.2485, 7.2482, 7.2488, 7.2501, 7.2499, 7.2496, 7.2501, 7.2506, 7.2513, 7.251, 7.2508, 7.2522, 7.252, 7.2518, 7.2515, 7.2516, 7.252, 7.2517, 7.2514, 7.2512, 7.2503, 7.25, 7.2498, 7.2512, 7.2517, 7.2515, 7.2521, 7.2526, 7.2532, 7.253, 7.252, 7.2518, 7.2524, 7.2521, 7.2518, 7.2516, 7.2513, 7.2503, 7.2509, 7.2506, 7.2504, 7.2502, 7.2492, 7.2491, 7.249, 7.2498, 7.2495, 7.2508, 7.2505, 7.2511, 7.2516, 7.2506, 7.2504, 7.2502, 7.2499, 7.2504, 7.2518, 7.2516, 7.2522, 7.2543, 7.2541, 7.2539, 7.2553, 7.2543, 7.2541, 7.254, 7.2537, 7.2534, 7.2535, 7.2541, 7.2539, 7.2536, 7.2541, 7.2547, 7.2553, 7.2558, 7.2564, 7.2564, 7.2562, 7.2559, 7.2565, 7.2563, 7.2568, 7.2565, 7.2562, 7.2559, 7.2557, 7.2554, 7.256, 7.2565, 7.2563, 7.256, 7.2557, 7.2563, 7.2592, 7.259, 7.2588, 7.2593, 7.2604, 7.2602, 7.2599, 7.2598, 7.2604, 7.2602, 7.2608, 7.2606, 7.2612, 7.261, 7.2623, 7.2637, 7.2635, 7.2641, 7.2639, 7.2645, 7.265, 7.2656, 7.2653, 7.2643, 7.2648, 7.2645, 7.2659, 7.2656, 7.267, 7.2676, 7.2678, 7.2675, 7.2674, 7.2671, 7.2668, 7.2665, 7.267, 7.2667, 7.2672, 7.2708, 7.2713, 7.2719, 7.2725, 7.2723, 7.2729, 7.2728, 7.2725, 7.2723, 7.272, 7.2718, 7.2715, 7.2713, 7.2711, 7.2716, 7.2721, 7.2719, 7.2717, 7.2715, 7.2712, 7.2717, 7.2715, 7.2712, 7.2709, 7.2714, 7.2711, 7.2724, 7.2722, 7.2721, 7.2727, 7.2724, 7.2721, 7.2718, 7.2716, 7.2721, 7.2718, 7.2724, 7.2729, 7.2726, 7.2723, 7.2721, 7.2718, 7.2724, 7.2721, 7.2718, 7.2724, 7.2722, 7.272, 7.2717, 7.2707, 7.2712, 7.2702, 7.27, 7.2698, 7.2719, 7.2725, 7.2723, 7.2721, 7.2727, 7.2733, 7.2731, 7.2736, 7.2741, 7.2746, 7.2744, 7.2749, 7.2747, 7.2752, 7.2757, 7.2754, 7.2759, 7.2764, 7.2761, 7.2759, 7.2756, 7.2754, 7.2753, 7.2758, 7.2763, 7.2785, 7.2782, 7.2796, 7.2794, 7.2796, 7.2794, 7.2791, 7.2794, 7.2791, 7.2781, 7.2778, 7.2776, 7.2773, 7.2771, 7.2768, 7.2796, 7.2794, 7.2792, 7.2789, 7.2787, 7.2792, 7.2798, 7.2803, 7.2808, 7.2805, 7.281, 7.2815, 7.2821, 7.2834, 7.2831, 7.2828, 7.2825, 7.2822, 7.2827, 7.2833, 7.2839, 7.2829, 7.2819, 7.2817, 7.2807, 7.2805, 7.281, 7.2816, 7.2813, 7.2828, 7.2834, 7.2839, 7.2836, 7.2833, 7.2841, 7.2839, 7.2836, 7.2834, 7.2832, 7.283, 7.2827, 7.2832, 7.283, 7.2827, 7.2824, 7.2821, 7.2826, 7.2825, 7.283, 7.2827, 7.2825, 7.2834, 7.2832, 7.283, 7.2828, 7.2831, 7.2829, 7.2835, 7.284, 7.2837, 7.2835, 7.2833, 7.2838, 7.2828, 7.2826, 7.2824, 7.283, 7.2828, 7.2826, 7.2832, 7.2833, 7.283, 7.2861, 7.2866, 7.2863, 7.2869, 7.2882, 7.2887, 7.2884, 7.2881, 7.2878, 7.2876, 7.2874, 7.2871, 7.287, 7.2875, 7.2872, 7.2869, 7.2874, 7.2872, 7.287, 7.2868, 7.288, 7.2878, 7.2875, 7.2889, 7.2886, 7.2884, 7.2889, 7.2886, 7.2883, 7.288, 7.2878, 7.2875, 7.2873, 7.2883], '192.168.122.114': [29.47, 17.7708, 13.6831, 11.8059, 10.5985, 10.7358, 10.932, 10.2531, 9.7402, 9.2949, 8.4851, 8.6919, 8.5187, 8.3009, 8.1427, 7.6782, 7.5402, 7.4089, 7.3056, 7.751, 7.6802, 7.5986, 7.5263, 7.5041, 7.4689, 7.6222, 7.7375, 7.6926, 7.625, 7.5728, 7.5191, 7.6189, 7.5672, 7.5136, 7.4598, 7.5742, 7.6744, 7.6207, 7.7034, 7.6676, 7.7249, 7.6676, 7.7555, 7.7133, 7.6827, 7.6439, 7.5963, 7.579, 7.4373, 7.3943, 7.3557, 7.4172, 7.3863, 7.3481, 7.3107, 7.2844, 7.2852, 7.254, 7.3159, 7.302, 7.2842, 7.3487, 7.3249, 7.3015, 7.2757, 7.1807, 7.1635, 7.1357, 7.1221, 7.109, 7.0845, 7.0828, 7.073, 7.0526, 7.0332, 7.0163, 7.004, 6.9843, 7.0242, 7.0182, 7.0046, 6.9885, 7.0331, 7.0137, 7.0083, 7.0135, 7.001, 6.986, 6.9735, 6.9816, 6.9754, 6.9566, 6.9388, 6.9274, 6.9202, 6.9035, 6.8865, 6.8768, 6.9158, 6.9121, 6.8988, 6.8846, 6.9219, 6.957, 6.9504, 6.9339, 6.9694, 6.9544, 6.9435, 6.9281, 6.9628, 6.9507, 6.9361, 6.9695, 6.9556, 6.9417, 6.9745, 6.9652, 6.9517, 6.9394, 6.9702, 7.0033, 6.9896, 7.0276, 7.0147, 7.0017, 6.9917, 6.9846, 6.9382, 6.9252, 6.9186, 6.9065, 6.9363, 6.9259, 6.8784, 6.8842, 6.8807, 6.8714, 6.8693, 6.8596, 6.8541, 6.844, 6.8339, 6.8308, 6.8235, 6.7832, 6.7734, 6.7719, 6.7647, 6.7562, 6.7468, 6.7751, 6.8014, 6.7917, 6.7826, 6.8099, 6.8002, 6.7957, 6.7868, 6.7519, 6.7463, 6.7728, 6.7724, 6.7643, 6.759, 6.7582, 6.7505, 6.7752, 6.7702, 6.7942, 6.7902, 6.7855, 6.7865, 6.8372, 6.8306, 6.8239, 6.8477, 6.869, 6.869, 6.8675, 6.8661, 6.857, 6.8502, 6.8415, 6.8612, 6.8538, 6.8769, 6.8732, 6.8928, 6.9118, 6.9039, 6.8964, 6.8888, 6.8813, 6.8728, 6.8656, 6.8586, 6.8518, 6.8462, 6.8393, 6.8593, 6.8515, 6.8473, 6.8423, 6.8356, 6.9086, 6.9266, 6.9509, 7.0011, 6.9715, 6.9409, 6.9352, 6.9289, 6.9472, 6.9449, 6.9387, 7.0075, 7.0024, 6.9947, 7.0588, 7.1219, 7.1169, 7.1098, 7.1027, 7.0964, 7.1132, 7.1056, 7.0976, 7.0905, 7.083, 7.076, 7.0729, 7.0679, 7.0841, 7.0565, 7.0503, 7.1084, 7.1072, 7.1001, 7.1252, 7.121, 7.0983, 7.1125, 7.1263, 7.141, 7.1349, 7.1478, 7.1617, 7.1758, 7.1688, 7.1826, 7.1979, 7.2122, 7.2534, 7.2671, 7.2796, 7.2725, 7.2648, 7.2575, 7.252, 7.2451, 7.24, 7.2343, 7.2272, 7.2228, 7.2197, 7.2464, 7.2441, 7.2383, 7.2344, 7.2299, 7.2245, 7.2176, 7.2127, 7.2059, 7.2188, 7.2159, 7.2291, 7.2405, 7.2337, 7.2267, 7.22, 7.2142, 7.209, 7.2073, 7.2203, 7.2134, 7.2072, 7.2029, 7.1965, 7.1901, 7.2079, 7.2025, 7.1965, 7.1904, 7.1854, 7.1814, 7.193, 7.1882, 7.186, 7.1811, 7.1791, 7.1737, 7.1691, 7.1643, 7.1593, 7.1607, 7.1548, 7.1487, 7.1476, 7.1422, 7.1384, 7.1345, 7.1381, 7.1323, 7.1296, 7.126, 7.1377, 7.1341, 7.1315, 7.1282, 7.1241, 7.1355, 7.1301, 7.1253, 7.1216, 7.1176, 7.1126, 7.1079, 7.1203, 7.1149, 7.127, 7.1252, 7.1224, 7.117, 7.1136, 7.1084, 7.1039, 7.0988, 7.0953, 7.0912, 7.1018, 7.0967, 7.1066, 7.1013, 7.0973, 7.1076, 7.1037, 7.1012, 7.0967, 7.1079, 7.1056, 7.1029, 7.0994, 7.1101, 7.1055, 7.101, 7.1106, 7.106, 7.101, 7.0965, 7.0933, 7.09, 7.0852, 7.1027, 7.0995, 7.0953, 7.0924, 7.1016, 7.1111, 7.1076, 7.104, 7.0992, 7.0944, 7.0903, 7.1003, 7.0957, 7.1055, 7.1155, 7.1128, 7.1081, 7.1171, 7.1261, 7.1213, 7.1166, 7.1122, 7.1095, 7.1065, 7.1025, 7.0987, 7.0938, 7.0895, 7.0858, 7.0831, 7.0801, 7.0914, 7.0879, 7.0984, 7.1073, 7.1045, 7.1151, 7.1109, 7.1077, 7.1036, 7.1006, 7.109, 7.0935, 7.0892, 7.0909, 7.0879, 7.0841, 7.0812, 7.09, 7.0858, 7.0944, 7.0912, 7.1, 7.0978, 7.0952, 7.1039, 7.1126, 7.1083, 7.1176, 7.1265, 7.1226, 7.1313, 7.1269, 7.1252, 7.124, 7.1207, 7.1167, 7.1128, 7.1097, 7.1185, 7.1268, 7.1249, 7.1226, 7.1317, 7.1403, 7.144, 7.1413, 7.1373, 7.1577, 7.1704, 7.1665, 7.1658, 7.1638, 7.1602, 7.1691, 7.1658, 7.1663, 7.1625, 7.159, 7.1674, 7.1633, 7.1591, 7.1563, 7.1534, 7.1496, 7.1475, 7.144, 7.1532, 7.1493, 7.1454, 7.1317, 7.1291, 7.1376, 7.1342, 7.1307, 7.1275, 7.1366, 7.1437, 7.1422, 7.1389, 7.1359, 7.1647, 7.1608, 7.1572, 7.1539, 7.1503, 7.148, 7.1462, 7.1444, 7.1407, 7.1375, 7.1336, 7.1414, 7.1386, 7.136, 7.1437, 7.1402, 7.1367, 7.1443, 7.1411, 7.1382, 7.1462, 7.1446, 7.1418, 7.151, 7.1484, 7.1454, 7.1344, 7.1317, 7.1329, 7.1311, 7.1187, 7.1065, 7.1035, 7.1029, 7.0907, 7.0884, 7.0857, 7.083, 7.0813, 7.0886, 7.0859, 7.083, 7.0809, 7.0878, 7.0952, 7.0927, 7.1002, 7.0977, 7.0941, 7.0912, 7.0879, 7.0851, 7.0821, 7.0796, 7.0869, 7.0844, 7.0811, 7.0882, 7.0857, 7.0826, 7.0799, 7.0773, 7.0749, 7.0718, 7.0885, 7.0859, 7.0832, 7.0805, 7.0803, 7.078, 7.076, 7.0732, 7.1019, 7.0999, 7.0966, 7.1006, 7.0995, 7.0972, 7.094, 7.1002, 7.0972, 7.0949, 7.0925, 7.1087, 7.1064, 7.1126, 7.1094, 7.1133, 7.1111, 7.1082, 7.105, 7.1137, 7.1104, 7.1101, 7.1073, 7.1044, 7.1043, 7.1026, 7.1033, 7.1005, 7.0973, 7.0952, 7.1062, 7.1032, 7.1035, 7.1004, 7.1069, 7.1243, 7.1222, 7.1192, 7.1164, 7.1144, 7.1215, 7.1184, 7.1167, 7.1135, 7.1288, 7.1267, 7.1329, 7.1306, 7.128, 7.1256, 7.1232, 7.1211, 7.1278, 7.1344, 7.1321, 7.1289, 7.1262, 7.1263, 7.125, 7.1224, 7.1293, 7.1268, 7.1245, 7.1313, 7.1318, 7.129, 7.1329, 7.1303, 7.1282, 7.1178, 7.1246, 7.122, 7.1234, 7.1225, 7.1292, 7.1265, 7.1261, 7.1429, 7.1405, 7.1378, 7.1431, 7.1412, 7.146, 7.1431, 7.1596, 7.1692, 7.1789, 7.1783, 7.1841, 7.1818, 7.1879, 7.1935, 7.1909, 7.1889, 7.1945, 7.1919, 7.1892, 7.1863, 7.1957, 7.193, 7.1902, 7.1963, 7.202, 7.1991, 7.1965, 7.2022, 7.2007, 7.2062, 7.2068, 7.2047, 7.2025, 7.1998, 7.2055, 7.2028, 7.2076, 7.2056, 7.2027, 7.1998, 7.199, 7.2045, 7.21, 7.2082, 7.2059, 7.204, 7.2012, 7.1983, 7.1961, 7.1932, 7.1978, 7.1961, 7.1961, 7.1949, 7.1922, 7.19, 7.1877, 7.1929, 7.1904, 7.1875, 7.1928, 7.19, 7.192, 7.1899, 7.1881, 7.1867, 7.2127, 7.2099, 7.2082, 7.2062, 7.2041, 7.2024, 7.2008, 7.1987, 7.1962, 7.194, 7.1991, 7.1967, 7.2018, 7.2066, 7.2056, 7.2032, 7.2007, 7.1993, 7.1969, 7.1956, 7.1931, 7.1987, 7.2033, 7.2086, 7.2059, 7.2038, 7.2011, 7.2055, 7.2054, 7.2036, 7.2085, 7.2065, 7.2208, 7.2185, 7.2238, 7.2221, 7.2208, 7.2338, 7.2248, 7.2229, 7.2209, 7.226, 7.2235, 7.2447, 7.2495, 7.2478, 7.2453, 7.2435, 7.2416, 7.2398, 7.2377, 7.2356, 7.2411, 7.2322, 7.2369, 7.235, 7.2396, 7.2518, 7.2561, 7.2546, 7.2522, 7.2511, 7.2489, 7.2473, 7.2456, 7.2436, 7.2431, 7.2411, 7.2399, 7.2375, 7.2422, 7.2398, 7.2451, 7.2447, 7.2497, 7.2493, 7.247, 7.2382, 7.2426, 7.2399, 7.2375, 7.2351, 7.2325, 7.2307, 7.2282, 7.2264, 7.2317, 7.2295, 7.2338, 7.233, 7.2383, 7.236, 7.2401, 7.2378, 7.2353, 7.2338, 7.2314, 7.2304, 7.2281, 7.2359, 7.2356, 7.2337, 7.2316, 7.2366, 7.2282, 7.2266, 7.2254, 7.223, 7.2216, 7.2267, 7.2243, 7.2287, 7.2209, 7.2201, 7.2184, 7.2229, 7.2222, 7.2276, 7.2321, 7.231, 7.2345, 7.2324, 7.2302, 7.2289, 7.2277, 7.2268, 7.2249, 7.2227, 7.2209, 7.2186, 7.2239, 7.2229, 7.2271, 7.2317, 7.2297, 7.2276, 7.2319, 7.23, 7.2277, 7.2355, 7.2334, 7.2317, 7.2294, 7.2337, 7.2314, 7.2294, 7.2273, 7.2255, 7.2176, 7.2153, 7.2193, 7.2173, 7.2152, 7.2129, 7.2108, 7.209, 7.2136, 7.218, 7.2235, 7.2214, 7.2209, 7.225, 7.2235, 7.2215, 7.2196, 7.2179, 7.2161, 7.2174, 7.2155, 7.2142, 7.2122, 7.2108, 7.204, 7.2026, 7.2172, 7.2214, 7.2199, 7.2123, 7.2174, 7.2154, 7.2144, 7.2185, 7.2172, 7.219, 7.2171, 7.215, 7.214, 7.2121, 7.2113, 7.2094, 7.2077, 7.2057, 7.2035, 7.2021, 7.2006, 7.2048, 7.2089, 7.2067, 7.2047, 7.2028, 7.2015, 7.1995, 7.1974, 7.1957, 7.194, 7.1983, 7.1961, 7.1939, 7.1923, 7.1963, 7.2002, 7.2046, 7.2033, 7.2141, 7.2125, 7.2117, 7.2095, 7.2078, 7.2062, 7.2048, 7.2028, 7.2007, 7.2044, 7.2117, 7.2155, 7.2141, 7.218, 7.2159, 7.2199, 7.2183, 7.2222, 7.2205, 7.2185, 7.2224, 7.2204, 7.2194, 7.2235, 7.2273, 7.2258, 7.2297, 7.2278, 7.2257, 7.224, 7.2225, 7.2264, 7.2249, 7.2229, 7.221, 7.2189, 7.2171, 7.2153, 7.2187, 7.2167, 7.2148, 7.2131, 7.2231, 7.2218, 7.2199, 7.2189, 7.2176, 7.2158, 7.2146, 7.2131, 7.2117, 7.2097, 7.2133, 7.2168, 7.2305, 7.2345, 7.2381, 7.2313, 7.2312, 7.235, 7.2384, 7.2428, 7.2412, 7.2395, 7.2433, 7.2415, 7.2453, 7.244, 7.2479, 7.2461, 7.2452, 7.2438, 7.242, 7.2463, 7.2448, 7.2484, 7.2738, 7.2791, 7.2778, 7.2763, 7.2749, 7.273, 7.2711, 7.2696, 7.2677, 7.2662, 7.2653, 7.2687, 7.267, 7.2706, 7.2686, 7.2721, 7.2757, 7.2793, 7.2772, 7.2754, 7.2789, 7.2825, 7.2812, 7.2793, 7.2773, 7.2756, 7.2736, 7.2717, 7.2704, 7.2686, 7.2667, 7.265, 7.2632, 7.2616, 7.261, 7.2647, 7.2686, 7.2793, 7.2829, 7.2864, 7.2857, 7.2841, 7.2825, 7.2858, 7.2841, 7.2833, 7.2821, 7.2801, 7.2786, 7.2767, 7.2749, 7.2787, 7.2775, 7.2762, 7.2798, 7.2828, 7.2811, 7.2799, 7.2814, 7.2796, 7.2777, 7.2762, 7.2744, 7.2724, 7.2705, 7.2695, 7.2683, 7.267, 7.2654, 7.2637, 7.2671, 7.2655, 7.2691, 7.2736, 7.2722, 7.2786, 7.2776, 7.2758, 7.2745, 7.2736, 7.2718, 7.2705, 7.2687, 7.267, 7.2655, 7.2637, 7.2621, 7.2642, 7.2624, 7.2606, 7.2592, 7.2578, 7.2562, 7.2594, 7.2575, 7.2557, 7.254, 7.2526, 7.2509, 7.2503, 7.2488, 7.2597, 7.2535, 7.2555, 7.2538, 7.257, 7.261, 7.2595, 7.2629, 7.261, 7.2645, 7.2583, 7.2566, 7.2551, 7.2633, 7.2622, 7.2617, 7.2651, 7.2637, 7.2621, 7.2654, 7.2638, 7.262, 7.2607, 7.264, 7.2627, 7.2608, 7.2638, 7.2628, 7.2611, 7.2643, 7.2632, 7.2615, 7.2621, 7.2652, 7.2685, 7.2682, 7.2665, 7.2691, 7.2683, 7.2666, 7.2649, 7.2636, 7.2619, 7.2574, 7.2603, 7.2634, 7.2664, 7.2648, 7.268, 7.2663, 7.2647, 7.2633, 7.2662, 7.2645, 7.263, 7.2615, 7.2602, 7.2543, 7.2528, 7.261, 7.2597, 7.2627, 7.261, 7.2594, 7.2624, 7.2607, 7.2596, 7.258, 7.263, 7.2613, 7.2615, 7.2665, 7.2652, 7.2721, 7.2704, 7.2687, 7.273, 7.2713, 7.2731, 7.2716, 7.2701, 7.2733, 7.2718, 7.275, 7.2735, 7.2719, 7.2741, 7.2728, 7.2756, 7.2786, 7.282, 7.2804, 7.2787, 7.2813, 7.282, 7.2848, 7.2928, 7.2959, 7.2945, 7.2975, 7.2965, 7.295, 7.2936, 7.2927, 7.2912, 7.2895, 7.2882, 7.2867, 7.2898, 7.2882, 7.2869, 7.2856, 7.2845, 7.2833, 7.2816, 7.2817, 7.28, 7.2785, 7.2768, 7.2797, 7.2786, 7.2769, 7.2758, 7.2742, 7.277, 7.2801, 7.2792, 7.2819, 7.2808, 7.2795, 7.2744, 7.2775, 7.2806, 7.279, 7.2793, 7.2825, 7.2811, 7.2803, 7.2802, 7.2787, 7.2774, 7.2758, 7.2795, 7.2794, 7.2781, 7.2766, 7.2794, 7.2781, 7.2771, 7.2756, 7.2744, 7.2733, 7.2717, 7.2745, 7.273, 7.2713, 7.2743, 7.2732, 7.2679, 7.2665, 7.2693, 7.2722, 7.2708, 7.2693, 7.2684, 7.2668, 7.2697, 7.2681, 7.2669, 7.2655, 7.2682, 7.2709, 7.2737, 7.2765, 7.2757, 7.2741, 7.273, 7.2761, 7.2792, 7.2777, 7.2768, 7.2756, 7.2743, 7.273, 7.2759, 7.2788, 7.2772, 7.2801, 7.279, 7.282, 7.2813, 7.2839, 7.2869, 7.2856, 7.2886, 7.2872, 7.2856, 7.2842, 7.2828, 7.2857, 7.2845, 7.2836, 7.2867, 7.2896, 7.2927, 7.2913, 7.2898, 7.2882, 7.292, 7.2915, 7.2901, 7.2886, 7.2874, 7.29, 7.2887, 7.2875, 7.2862, 7.2891, 7.2875, 7.2866, 7.2854, 7.2847, 7.2875, 7.2862, 7.2849, 7.2839, 7.2868, 7.2853, 7.2838, 7.2841, 7.283, 7.2941, 7.3007, 7.2994, 7.3018, 7.3046, 7.3036, 7.3061, 7.3054, 7.3161, 7.3147, 7.3133, 7.3122, 7.3107, 7.3092, 7.3041, 7.3025, 7.301, 7.2996, 7.3022, 7.3048, 7.3035, 7.306, 7.3086, 7.3112, 7.3096, 7.3091, 7.3124, 7.3109, 7.3099, 7.3097, 7.3204, 7.3191, 7.3259, 7.3247, 7.3234, 7.3219, 7.3208, 7.3196, 7.3184, 7.3171, 7.316, 7.3146, 7.3133, 7.3119, 7.3108, 7.3134, 7.3085, 7.311, 7.3096, 7.3082, 7.3146, 7.3097, 7.3127, 7.3117, 7.311, 7.3135, 7.3121, 7.3112, 7.3102, 7.3087, 7.3074, 7.31, 7.3086, 7.3073, 7.3059, 7.3059, 7.3101, 7.3089, 7.3115, 7.3101, 7.3124, 7.3075, 7.3065, 7.317, 7.3197, 7.3183, 7.3208, 7.3234, 7.3259, 7.3248, 7.3262, 7.3252, 7.3283, 7.3268, 7.3276, 7.3265, 7.325, 7.3239, 7.3236, 7.3258, 7.3243, 7.3231, 7.3216, 7.3207, 7.3194, 7.3183, 7.317, 7.3156, 7.3116, 7.3178, 7.3202, 7.3188, 7.3368, 7.3357, 7.3344, 7.333, 7.332, 7.3344, 7.3331, 7.3397, 7.3383, 7.3386, 7.3372, 7.3358, 7.3345, 7.3332, 7.3322, 7.3309, 7.3294, 7.3282, 7.3307, 7.3331, 7.3355, 7.338, 7.3367, 7.3353, 7.3376, 7.3363, 7.3349, 7.3341, 7.3328, 7.3314, 7.3311, 7.3298, 7.3285, 7.3276, 7.3265, 7.3251, 7.3289, 7.328, 7.3268, 7.3255, 7.3422, 7.3422, 7.341, 7.3397, 7.3419, 7.3422, 7.3416, 7.3402, 7.3391, 7.3378, 7.3366, 7.3353, 7.334, 7.3332, 7.3319, 7.3305, 7.34, 7.3461, 7.3464, 7.3451, 7.3479, 7.3465, 7.3524, 7.3517, 7.3503, 7.3489, 7.3481, 7.3539, 7.3527, 7.3595, 7.3583, 7.3579, 7.3565, 7.3552, 7.3544, 7.3498, 7.3499, 7.3486, 7.3507, 7.3529, 7.3518, 7.3507, 7.3534, 7.3561, 7.3549, 7.3538, 7.3525, 7.3513, 7.35, 7.349, 7.3513, 7.35, 7.3492, 7.3515, 7.3506, 7.353, 7.3517, 7.3545, 7.3532, 7.3519, 7.3509, 7.3496, 7.3518, 7.353, 7.3552, 7.3539, 7.3526, 7.3513, 7.3535, 7.3558, 7.3546, 7.3534, 7.3562, 7.3551, 7.3591, 7.3622, 7.3645, 7.3736, 7.3733, 7.3736, 7.3732, 7.3688, 7.3679, 7.3674, 7.3666, 7.366, 7.3683, 7.3673, 7.372, 7.3715, 7.3719, 7.3708, 7.3699, 7.3688, 7.371, 7.3697, 7.3654, 7.3675, 7.3662, 7.3652, 7.3641, 7.3663, 7.3653, 7.3675, 7.37, 7.3688, 7.3676, 7.3637, 7.3601, 7.359, 7.3578, 7.3569, 7.3556, 7.3546, 7.3572, 7.3593, 7.3586, 7.3591, 7.3556, 7.3544, 7.3535, 7.3523, 7.3546, 7.3538, 7.3529, 7.3519, 7.354, 7.3551, 7.3608, 7.3608, 7.3599, 7.3562, 7.3583, 7.3571, 7.3587, 7.361, 7.3597, 7.3657, 7.3646, 7.3636, 7.3657, 7.3647, 7.3634, 7.3657, 7.3645, 7.3666, 7.3653, 7.3643, 7.36, 7.3588, 7.3577, 7.357, 7.3564, 7.3558, 7.3546, 7.3536, 7.3568, 7.3556, 7.3547, 7.3569, 7.359, 7.3578, 7.3566, 7.3554, 7.3549, 7.354, 7.3528, 7.358, 7.3568, 7.3557, 7.3547, 7.3535, 7.3557, 7.3545, 7.3566, 7.3588, 7.3578, 7.3605, 7.3594, 7.3588, 7.358, 7.3602, 7.3592, 7.3584, 7.3572, 7.3565, 7.3586, 7.3575, 7.3563, 7.3585, 7.3605, 7.3628, 7.3651, 7.367, 7.3659, 7.3648, 7.3639, 7.363, 7.3649, 7.3644, 7.3664, 7.3688, 7.3711, 7.3735, 7.3725, 7.372, 7.371, 7.3732, 7.3726, 7.3719, 7.3706, 7.3694, 7.3681, 7.3641, 7.3628, 7.3616, 7.3607, 7.3596, 7.3615, 7.3629, 7.3627, 7.3614, 7.3634, 7.3622, 7.3612, 7.3631, 7.3624, 7.3644, 7.3664, 7.3655, 7.3644, 7.3608, 7.3596, 7.3586, 7.3577, 7.3566, 7.3556, 7.3547, 7.3601, 7.3592, 7.3584, 7.3572, 7.3563, 7.3585, 7.3573, 7.3567, 7.3586, 7.3574, 7.3593, 7.3614, 7.3603, 7.3593, 7.3585, 7.3576, 7.357, 7.3561, 7.3552, 7.3603, 7.3596, 7.3597, 7.3588, 7.3579, 7.3568, 7.3557, 7.3575, 7.3569, 7.3558, 7.3578, 7.3627, 7.3647, 7.3637, 7.3655, 7.3706, 7.3725, 7.3745, 7.3829, 7.3817, 7.3808, 7.3828, 7.3816, 7.3811, 7.38, 7.3825, 7.3814, 7.3803, 7.3797, 7.3787, 7.3775, 7.3764, 7.3782, 7.3803, 7.3794, 7.3857, 7.3874, 7.3863, 7.3851, 7.384, 7.3832, 7.3826, 7.3815, 7.3837, 7.383, 7.3824, 7.3814, 7.3804, 7.3803, 7.3795, 7.3787, 7.3777, 7.3768, 7.373, 7.3719, 7.3738, 7.3731, 7.3752, 7.374, 7.373, 7.375, 7.3749, 7.3738, 7.3758, 7.3777, 7.3795, 7.3783, 7.3772, 7.379, 7.3779, 7.3776, 7.3766, 7.3755, 7.3744, 7.3763, 7.3752, 7.3741, 7.373, 7.3719, 7.3739, 7.3759, 7.3779, 7.38, 7.3794, 7.3824, 7.3816, 7.3804, 7.3802, 7.377, 7.3761, 7.3782, 7.3771, 7.3821, 7.3868, 7.3861, 7.388, 7.3871, 7.3891, 7.3881, 7.3843, 7.3832, 7.3852, 7.385, 7.387, 7.3862, 7.3913, 7.3904, 7.3896, 7.4034, 7.4024, 7.4043, 7.4064, 7.4052, 7.4014, 7.4005, 7.3993, 7.3986, 7.3976, 7.3966, 7.3956, 7.3949, 7.3938, 7.3965, 7.3957, 7.3947, 7.3966, 7.396, 7.3957, 7.3946, 7.3965, 7.3954, 7.395, 7.3971, 7.3963, 7.3954, 7.3972, 7.3961, 7.3925, 7.3918, 7.3936, 7.3927, 7.389, 7.3915, 7.3962, 7.3953, 7.3943, 7.3947, 7.3911, 7.3913, 7.3937, 7.3929, 7.3946, 7.3937, 7.3927, 7.3945, 7.4001, 7.3993, 7.4044, 7.4037, 7.4037, 7.4033, 7.4024, 7.4058, 7.4051, 7.4071, 7.406, 7.4056, 7.4061, 7.4052, 7.4042, 7.4037, 7.4028, 7.402, 7.4009, 7.4, 7.3991, 7.398, 7.397, 7.3959, 7.3977, 7.3941, 7.393, 7.3946, 7.3936, 7.3925, 7.3942, 7.3931, 7.3932, 7.4064, 7.4054, 7.4043, 7.4039, 7.4073, 7.4076, 7.4039, 7.4028, 7.4022, 7.3986, 7.3951, 7.397, 7.3959, 7.3955, 7.3944, 7.3937, 7.3955, 7.3953, 7.3946, 7.3939, 7.3958, 7.3952, 7.3941, 7.3933, 7.3954, 7.3943, 7.3961, 7.3977, 7.3969, 7.396, 7.398, 7.3973, 7.3964, 7.3953, 7.3944, 7.3935, 7.393, 7.392, 7.3912, 7.3904, 7.3911, 7.3904, 7.3895, 7.3887, 7.388, 7.3871, 7.386, 7.385, 7.3868, 7.3886, 7.3906, 7.3895, 7.3897, 7.3889, 7.388, 7.3896, 7.3888, 7.3882, 7.3898, 7.389, 7.388, 7.3873, 7.3889, 7.3882, 7.3874, 7.389, 7.3882, 7.3871, 7.3861, 7.3854, 7.3876, 7.3866, 7.3884, 7.3901, 7.389, 7.3907, 7.3979, 7.4, 7.4019, 7.4008, 7.3999, 7.3992, 7.3983, 7.3974, 7.3994, 7.4011, 7.4002, 7.4019, 7.4009, 7.4003, 7.3994, 7.3985, 7.4002, 7.3968, 7.3981, 7.3972, 7.3963, 7.3956, 7.3947, 7.3938, 7.3929, 7.3919, 7.3946, 7.3973, 7.399, 7.3987, 7.3954, 7.3945, 7.3937, 7.3926, 7.392, 7.3942, 7.3932, 7.3924, 7.3918, 7.3934, 7.3924, 7.3915, 7.3931, 7.3928, 7.39, 7.3947, 7.3939, 7.3936, 7.3926, 7.3921, 7.3912, 7.3901, 7.3894, 7.3885, 7.3876, 7.3893, 7.3885, 7.3876, 7.3869, 7.3835, 7.3825, 7.3823, 7.3849, 7.3871, 7.3862, 7.3866, 7.3856, 7.387, 7.386, 7.3877, 7.3868, 7.3861, 7.3876, 7.3865, 7.3903, 7.3895, 7.3886, 7.3888, 7.388, 7.3898, 7.3865, 7.3855, 7.3845, 7.3836, 7.3826, 7.3819, 7.3816, 7.3834, 7.3827, 7.382, 7.3811, 7.3828, 7.3845, 7.3862, 7.3859, 7.3826, 7.3818, 7.3813, 7.3829, 7.382, 7.3811, 7.3801, 7.3818, 7.3834, 7.3826, 7.3875, 7.3868, 7.3862, 7.3854, 7.3846, 7.3836, 7.3827, 7.3818, 7.3939, 7.4004, 7.3996, 7.3964, 7.3955, 7.3947, 7.3938, 7.393, 7.3922, 7.3914, 7.3904, 7.3895, 7.3913, 7.3903, 7.392, 7.3935, 7.3925, 7.3918, 7.3933, 7.393, 7.3947, 7.394, 7.4015, 7.4008, 7.4054, 7.4069, 7.4112, 7.4121, 7.4114, 7.4109, 7.4124, 7.4139, 7.413, 7.4123, 7.4139, 7.413, 7.412, 7.4113, 7.4105, 7.41, 7.4092, 7.4083, 7.4073, 7.4064, 7.408, 7.4087, 7.4078, 7.407, 7.4061, 7.4076, 7.4069, 7.4062, 7.4053, 7.4045, 7.404, 7.4055, 7.4046, 7.4039, 7.4033, 7.4026, 7.4021, 7.4013, 7.4028, 7.4045, 7.4037, 7.4027, 7.4017, 7.4009, 7.4001, 7.3994, 7.3989, 7.4005, 7.4021, 7.4011, 7.4002, 7.3994, 7.3986, 7.4002, 7.3992, 7.3983, 7.3999, 7.3989, 7.3958, 7.3953, 7.3971, 7.3965, 7.4005, 7.3998, 7.399, 7.4008, 7.4001, 7.4013, 7.4008, 7.4027, 7.4019, 7.4038, 7.4032, 7.4026, 7.4018, 7.4012, 7.4007, 7.3999, 7.399, 7.4008, 7.4002, 7.3994, 7.3964, 7.3954, 7.3945, 7.3939, 7.393, 7.3947, 7.3962, 7.3954, 7.3971, 7.3962, 7.3954, 7.3971, 7.3962, 7.3953, 7.3968, 7.3941, 7.3932, 7.3928, 7.392, 7.389, 7.3883, 7.3876, 7.3888, 7.3903, 7.3896, 7.3887, 7.3879, 7.3872, 7.3866, 7.3857, 7.3848, 7.3842, 7.3857, 7.385, 7.3842, 7.3857, 7.3871, 7.3842, 7.3813, 7.3838, 7.3829, 7.3819, 7.3816, 7.3809, 7.38, 7.3816, 7.381, 7.3824, 7.382, 7.3834, 7.3825, 7.382, 7.3835, 7.3829, 7.3828, 7.382, 7.3798, 7.3791, 7.3806, 7.3797, 7.3791, 7.3782, 7.3797, 7.3837, 7.385, 7.3842, 7.3812, 7.3806, 7.3797, 7.3788, 7.3782, 7.3773, 7.3767, 7.3784, 7.3801, 7.3817, 7.381, 7.3801, 7.3796, 7.3787, 7.3803, 7.3822, 7.3815, 7.383, 7.3823, 7.3814, 7.3806, 7.3821, 7.3837, 7.3831, 7.3825, 7.3842, 7.3834, 7.3827, 7.3819, 7.3811, 7.3803, 7.3795, 7.381, 7.3827, 7.3819, 7.3838, 7.3833, 7.3825, 7.3841, 7.3835, 7.3827, 7.3819, 7.3811, 7.3803, 7.3796, 7.3787, 7.3865, 7.3856, 7.3871, 7.3863, 7.3854, 7.3869, 7.386, 7.3854, 7.3824, 7.3815, 7.3807, 7.3782, 7.3775, 7.379, 7.3782, 7.3773, 7.3767, 7.3768, 7.376, 7.3751, 7.3747, 7.3753, 7.3767, 7.3781, 7.3772, 7.3763, 7.3757, 7.375, 7.3741, 7.3756, 7.3772, 7.3763, 7.3754, 7.3747, 7.374, 7.3732, 7.3726, 7.3717, 7.3708, 7.3701, 7.3715, 7.373, 7.3723, 7.3716, 7.371, 7.3705, 7.3698, 7.3689, 7.3681, 7.3673, 7.3666, 7.3638, 7.3629, 7.3644, 7.3659, 7.3651, 7.3642, 7.3635, 7.3649, 7.3641, 7.3633, 7.3625, 7.3619, 7.3613, 7.3605, 7.3596, 7.3588, 7.3582, 7.3574, 7.3587, 7.3583, 7.3598, 7.3612, 7.3606, 7.3599, 7.3614, 7.3605, 7.362, 7.3612, 7.3627, 7.364, 7.3655, 7.3648, 7.3619, 7.361, 7.3601, 7.3595, 7.3587, 7.36, 7.3613, 7.3604, 7.3597, 7.3611, 7.3681, 7.3696, 7.3688, 7.3702, 7.3706, 7.3699, 7.369, 7.3683, 7.3675, 7.369, 7.3683, 7.3655, 7.3648, 7.362, 7.3614, 7.3607, 7.3621, 7.3613, 7.3605, 7.3596, 7.3588, 7.358, 7.3608, 7.36, 7.3613, 7.363, 7.3622, 7.3637, 7.3631, 7.3644, 7.3635, 7.3629, 7.3622, 7.3614, 7.3607, 7.3599, 7.3591, 7.3607, 7.3621, 7.3613, 7.3607, 7.3599, 7.3612, 7.3625, 7.3618, 7.3631, 7.3623, 7.3616, 7.3609, 7.3601, 7.3594, 7.3586, 7.3678, 7.3671, 7.3663, 7.3655, 7.3691, 7.3683, 7.3676, 7.3669, 7.3662, 7.3681, 7.3679, 7.3693, 7.3707, 7.3699, 7.3696, 7.369, 7.3689, 7.3702, 7.3694, 7.3686, 7.37, 7.3692, 7.3688, 7.3681, 7.368, 7.3696, 7.3713, 7.3833, 7.3826, 7.3819, 7.3812, 7.3824, 7.3816, 7.3808, 7.3801, 7.3794, 7.3788, 7.3783, 7.3781, 7.3773, 7.3789, 7.3788, 7.3894, 7.389, 7.3884, 7.3877, 7.3869, 7.3861, 7.3856, 7.3848, 7.3865, 7.3882, 7.3876, 7.387, 7.3864, 7.3858, 7.3872, 7.3844, 7.3838, 7.3852, 7.3846, 7.384, 7.3833, 7.3825, 7.3838, 7.383, 7.3844, 7.3838, 7.3831, 7.3824, 7.3838, 7.3833, 7.3826, 7.3839, 7.3853, 7.3849, 7.3843, 7.3834, 7.3847, 7.3838, 7.3851, 7.3844, 7.3837, 7.3849, 7.3843, 7.3838, 7.383, 7.3824, 7.3836, 7.3831, 7.3824, 7.3817, 7.3811, 7.3848, 7.386, 7.3852, 7.3844, 7.3839, 7.3854, 7.3869, 7.3866, 7.386, 7.3854, 7.3847, 7.384, 7.3833, 7.3825, 7.3839, 7.3832, 7.3825, 7.382, 7.3834, 7.3847, 7.386, 7.3853, 7.3869, 7.3882, 7.3895, 7.3888, 7.3861, 7.3854, 7.3851, 7.3844, 7.3838, 7.3833, 7.3847, 7.3862, 7.3881, 7.3896, 7.3916, 7.389, 7.3883, 7.3898, 7.3891, 7.3912, 7.3906, 7.3901, 7.3915, 7.3908, 7.3922, 7.3914, 7.3926, 7.3939, 7.3913, 7.3905, 7.3938, 7.3932, 7.3947, 7.3945, 7.3939, 7.3953, 7.3945, 7.3958, 7.3971, 7.3983, 7.3975, 7.3969, 7.3961, 7.3954, 7.3946, 7.3959, 7.3952, 7.3945, 7.3937, 7.3931, 7.3923, 7.3918, 7.3911, 7.3908, 7.3901, 7.3915, 7.3911, 7.3923, 7.3962, 7.3955, 7.3968, 7.3982, 7.3975, 7.3949, 7.396, 7.3961, 7.3955, 7.3951, 7.3948, 7.394, 7.3933, 7.3927, 7.3921, 7.3917, 7.3914, 7.3927, 7.3939, 7.3912, 7.3905, 7.392, 7.3914, 7.3907, 7.3899, 7.3892, 7.3898, 7.3911, 7.3903, 7.3896, 7.3889, 7.3884, 7.3877, 7.3869, 7.3862, 7.3857, 7.385, 7.3863, 7.3855, 7.3868, 7.3862, 7.3854, 7.3849, 7.3847, 7.384, 7.3854, 7.3846, 7.3839, 7.3831, 7.3825, 7.3824, 7.3837, 7.3831, 7.3826, 7.382, 7.386, 7.3852, 7.3846, 7.3839, 7.3852, 7.3845, 7.3839, 7.3831, 7.3823, 7.3799, 7.3813, 7.3806, 7.3799, 7.3813, 7.3808, 7.38, 7.3814, 7.3807, 7.3801, 7.3795, 7.3788, 7.378, 7.3773, 7.3786, 7.3799, 7.3791, 7.3768, 7.3761, 7.3754, 7.3746, 7.377, 7.3782, 7.3775, 7.3768, 7.3763, 7.3755, 7.3748, 7.374, 7.3734, 7.3734, 7.3727, 7.374, 7.3732, 7.3724, 7.3737, 7.373, 7.3726, 7.3738, 7.3735, 7.3728, 7.374, 7.3733, 7.3726, 7.3701, 7.3712, 7.3705, 7.37, 7.3693, 7.3686, 7.3698, 7.3712, 7.3726, 7.3738, 7.3751, 7.3745, 7.374, 7.3733, 7.3726, 7.3739, 7.3735, 7.3727, 7.3739, 7.3733, 7.3725, 7.3719, 7.3722, 7.3734, 7.3727, 7.3721, 7.3716, 7.3708, 7.3711, 7.3705, 7.3698, 7.3709, 7.3767, 7.376, 7.3773, 7.3766, 7.376, 7.3753, 7.3767, 7.376, 7.3772, 7.3766, 7.378, 7.3792, 7.3796, 7.3789, 7.3782, 7.3775, 7.3768, 7.3762, 7.3754, 7.3752, 7.3745, 7.3756, 7.375, 7.3745, 7.3739, 7.3732, 7.3714, 7.3706, 7.3701, 7.3694, 7.3688, 7.3685, 7.3678, 7.3673, 7.3667, 7.368, 7.3675, 7.3754, 7.3789, 7.3806, 7.38, 7.3795, 7.3788, 7.3801, 7.3794, 7.3788, 7.3781, 7.3775, 7.377, 7.3764, 7.3757, 7.3752, 7.3766, 7.3759, 7.3752, 7.3764, 7.3758, 7.3751, 7.3765, 7.3759, 7.3752, 7.3748, 7.376, 7.3753, 7.3751, 7.3744, 7.3756, 7.3767, 7.3779, 7.3791, 7.3784, 7.3777, 7.3771, 7.3763, 7.3775, 7.3768, 7.3761, 7.3772, 7.3765, 7.3758, 7.3751, 7.3763, 7.3757, 7.3751, 7.3764, 7.3757, 7.3768, 7.3761, 7.3754, 7.3749, 7.3746, 7.3743, 7.3737, 7.3733, 7.373, 7.3707, 7.3719, 7.3712, 7.3725, 7.3719, 7.3713, 7.3707, 7.3701, 7.3696, 7.369, 7.3685, 7.3679, 7.3672, 7.3665, 7.3658, 7.3651, 7.3644, 7.3656, 7.3649, 7.3643, 7.3656, 7.3667, 7.368, 7.3687, 7.3681, 7.3681, 7.3675, 7.3669, 7.3663, 7.3656, 7.3633, 7.3629, 7.3622, 7.3634, 7.3633, 7.3627, 7.3621, 7.3616, 7.3642, 7.3639, 7.3637, 7.3632, 7.3644, 7.3637, 7.363, 7.3641, 7.3634, 7.3647, 7.3658, 7.3688, 7.3682, 7.3675, 7.3668, 7.3663, 7.3657, 7.3651, 7.3645, 7.3642, 7.3638, 7.365, 7.3646, 7.3639, 7.3635, 7.3632, 7.3643, 7.3653, 7.3663, 7.3658, 7.3652, 7.3645, 7.3651, 7.365, 7.3661, 7.3655, 7.3653, 7.3647, 7.3659, 7.3672, 7.3668, 7.368, 7.3678, 7.3689, 7.3703, 7.3699, 7.3693, 7.3688, 7.3699, 7.3712, 7.3742, 7.3737, 7.373, 7.3725, 7.3744, 7.3743, 7.3736, 7.3748, 7.3741, 7.3736, 7.373, 7.3727, 7.3722, 7.3716, 7.3719, 7.3731, 7.3736, 7.373, 7.3724, 7.3717, 7.3713, 7.3691, 7.3686, 7.3681, 7.3674, 7.3651, 7.363, 7.3609, 7.3604, 7.3615, 7.3608, 7.3614, 7.3608, 7.3609, 7.361, 7.3587, 7.358, 7.3578, 7.3572, 7.3567, 7.3561, 7.3575, 7.3575, 7.3586, 7.3581, 7.3586, 7.3563, 7.3558, 7.3551, 7.3546, 7.354, 7.3537, 7.353, 7.3523, 7.3517, 7.3528, 7.3539, 7.3533, 7.3526, 7.3538, 7.3559, 7.3552, 7.3546, 7.354, 7.3534, 7.3527, 7.3539, 7.3533, 7.3527, 7.3521, 7.3514, 7.3528, 7.3523, 7.3517, 7.3512, 7.3506, 7.3504, 7.3517, 7.3529, 7.3528, 7.3521, 7.3514, 7.3525, 7.3521, 7.3517, 7.3515, 7.351, 7.3504, 7.3516, 7.351, 7.3506, 7.3502, 7.3481, 7.3508, 7.3503, 7.3497, 7.3492, 7.3489, 7.3467, 7.3479, 7.3489, 7.3483, 7.3487, 7.3485, 7.348, 7.3475, 7.3469, 7.3463, 7.3474, 7.3486, 7.3482, 7.3478, 7.3474, 7.3471, 7.3465, 7.3459, 7.3454, 7.3448, 7.3461, 7.3456, 7.3452, 7.3447, 7.346, 7.3455, 7.3467, 7.348, 7.349, 7.3502, 7.3498, 7.3509, 7.3503, 7.3531, 7.3526, 7.352, 7.3515, 7.351, 7.3522, 7.3532, 7.3527, 7.3522, 7.3517, 7.3512, 7.3505, 7.3502, 7.3563, 7.3561, 7.3573, 7.3583, 7.358, 7.358, 7.3581, 7.3576, 7.3574, 7.3586, 7.358, 7.3573, 7.3567, 7.3561, 7.3557, 7.3551, 7.3545, 7.3557, 7.3552, 7.3548, 7.3526, 7.3504, 7.3498, 7.356, 7.3555, 7.3586, 7.3615, 7.3609, 7.3623, 7.3617, 7.3611, 7.3606, 7.3616, 7.3612, 7.3606, 7.3599, 7.3593, 7.3587, 7.3583, 7.3561, 7.3556, 7.3616, 7.3627, 7.3641, 7.3636, 7.3646, 7.3641, 7.366, 7.3655, 7.3666, 7.3659, 7.3654, 7.3661, 7.3657, 7.3652, 7.3647, 7.3642, 7.3637, 7.3633, 7.3627, 7.3637, 7.3648, 7.3644, 7.3639, 7.3633, 7.3638, 7.3648, 7.3644, 7.3638, 7.3649, 7.3643, 7.3637, 7.363, 7.364, 7.3651, 7.3645, 7.3642, 7.3636, 7.3647, 7.3642, 7.3639, 7.3636, 7.3631, 7.3627, 7.3623, 7.3619, 7.3614, 7.3593, 7.3587, 7.3601, 7.3596, 7.3608, 7.3602, 7.3597, 7.3609, 7.3622, 7.3633, 7.3639, 7.3649, 7.3643, 7.3637, 7.3648, 7.3641, 7.3652, 7.3646, 7.3657, 7.3651, 7.363, 7.3624, 7.3635, 7.3613, 7.3609, 7.3606, 7.36, 7.3594, 7.3588, 7.3581, 7.3575, 7.3589, 7.3585, 7.3579, 7.3591, 7.3602, 7.3614, 7.3607, 7.3603, 7.3613, 7.3609, 7.3606, 7.36, 7.3595, 7.3589, 7.3584, 7.3578, 7.3572, 7.3584, 7.3578, 7.3572, 7.3582, 7.3577, 7.3572, 7.3565, 7.3577, 7.3571, 7.3582, 7.3576, 7.3587, 7.3584, 7.3595, 7.3589, 7.3601, 7.3595, 7.359, 7.3584, 7.3578, 7.3572, 7.3568, 7.3564, 7.3575, 7.3586, 7.3584, 7.3578, 7.3572, 7.3567, 7.3562, 7.3556, 7.355, 7.3546, 7.354, 7.3534, 7.3529, 7.3524, 7.3519, 7.353, 7.3529, 7.354, 7.355, 7.356, 7.3556, 7.3551, 7.3545, 7.3574, 7.3584, 7.3578, 7.3591, 7.3585, 7.3584, 7.3577, 7.3572, 7.3566, 7.3561, 7.3559, 7.3553, 7.355, 7.3546, 7.354, 7.3535, 7.3548, 7.3543, 7.3538, 7.3532, 7.3607, 7.3602, 7.3597, 7.3592, 7.3575, 7.3585, 7.358, 7.3578, 7.3605, 7.36, 7.3611, 7.3605, 7.3622, 7.3618, 7.3638, 7.3632, 7.3642, 7.3638, 7.3632, 7.3628, 7.3623, 7.3634, 7.3628, 7.3657, 7.3686, 7.3682, 7.3677, 7.3687, 7.3681, 7.3691, 7.3685, 7.3681, 7.3678, 7.3691, 7.3687, 7.3697, 7.3695, 7.369, 7.372, 7.3715, 7.3724, 7.3718, 7.3713, 7.3707, 7.3703, 7.37, 7.3695, 7.369, 7.3684, 7.3694, 7.369, 7.3686, 7.368, 7.369, 7.3687, 7.3698, 7.3709, 7.3703, 7.3698, 7.3692, 7.3686, 7.3683, 7.3677, 7.3671, 7.3665, 7.3675, 7.3686, 7.368, 7.366, 7.3655, 7.3649, 7.3645, 7.3639, 7.3619, 7.3614, 7.3625, 7.3619, 7.3613, 7.3623, 7.3618, 7.3613, 7.3609, 7.3607, 7.3639, 7.3633, 7.3627, 7.3621, 7.3616, 7.3611, 7.3621, 7.3601, 7.3597, 7.3593, 7.3603, 7.3597, 7.3593, 7.3587, 7.3581, 7.3576, 7.357, 7.3565, 7.356, 7.3571, 7.3565, 7.356, 7.3556, 7.3552, 7.3546, 7.3544, 7.3539, 7.3533, 7.3543, 7.354, 7.355, 7.356, 7.3556, 7.355, 7.3547, 7.3527, 7.3529, 7.3523, 7.3517, 7.3511, 7.3521, 7.3515, 7.3512, 7.3507, 7.3518, 7.3527, 7.3522, 7.3532, 7.3543, 7.3539, 7.3534, 7.3544, 7.3546, 7.354, 7.3536, 7.3531, 7.3542, 7.3553, 7.3548, 7.3559, 7.3559, 7.3555, 7.3553, 7.355, 7.3545, 7.3542, 7.3541, 7.3536, 7.352, 7.3517, 7.3513, 7.3509, 7.3508, 7.3508, 7.3553, 7.3564, 7.356, 7.357, 7.3566, 7.3561, 7.3572, 7.3584, 7.3595, 7.3594, 7.3604, 7.36, 7.3597, 7.3579, 7.356, 7.3554, 7.355, 7.3547, 7.3547, 7.3541, 7.355, 7.3544, 7.3539, 7.3519, 7.3514, 7.3508, 7.3519, 7.3513, 7.3507, 7.3517, 7.3512, 7.3508, 7.3503, 7.3498, 7.3478, 7.3473, 7.3485, 7.3496, 7.3516, 7.3526, 7.3536, 7.3547, 7.3542, 7.3539, 7.3537, 7.3533, 7.3533, 7.3529, 7.3523, 7.3532, 7.3527, 7.3536, 7.3533, 7.353, 7.3539, 7.3534, 7.3529, 7.3523, 7.3533, 7.3545, 7.3526, 7.3566, 7.3563, 7.3558, 7.3553, 7.3549, 7.3545, 7.3539, 7.3536, 7.3534, 7.353, 7.3524, 7.352, 7.3531, 7.3527, 7.3522, 7.3531, 7.3527, 7.3523, 7.3519, 7.3528, 7.3523, 7.3518, 7.3514, 7.3508, 7.3533, 7.3528, 7.3525, 7.3534, 7.3536, 7.3531, 7.3528, 7.3554, 7.3549, 7.356, 7.3541, 7.3546, 7.3541, 7.3522, 7.3518, 7.3572, 7.3582, 7.3563, 7.3544, 7.3525, 7.3535, 7.3532, 7.354, 7.3549, 7.3545, 7.3539, 7.3536, 7.3564, 7.356, 7.357, 7.358, 7.3576, 7.3571, 7.3566, 7.3561, 7.3572, 7.3568, 7.3562, 7.3557, 7.3554, 7.3548, 7.3542, 7.3551, 7.3546, 7.3557, 7.3566, 7.3562, 7.3557, 7.3553, 7.3547, 7.3528, 7.3523, 7.3517, 7.3514, 7.351, 7.3507, 7.3502, 7.3498, 7.3493, 7.3491, 7.3487, 7.3483, 7.348, 7.3476, 7.3503, 7.3499, 7.3494, 7.3505, 7.3504, 7.3499, 7.3494, 7.3491, 7.35, 7.3495, 7.3491, 7.3488, 7.3483, 7.348, 7.3475, 7.3472, 7.3468, 7.3463, 7.346, 7.3459, 7.3469, 7.3483, 7.3493, 7.3474, 7.347, 7.3498, 7.3509, 7.3504, 7.3498, 7.3493, 7.3488, 7.3482, 7.3479, 7.3488, 7.3483, 7.3492, 7.3487, 7.3483, 7.3479, 7.3473, 7.3455, 7.345, 7.3445, 7.3441, 7.3436, 7.3431, 7.3426, 7.3421, 7.3416, 7.3425, 7.3421, 7.3424, 7.3434, 7.3429, 7.3439, 7.3494, 7.3476, 7.3457, 7.3466, 7.3462, 7.3457, 7.3451, 7.3447, 7.3448, 7.3443, 7.3439, 7.3435, 7.3445, 7.344, 7.3438, 7.3433, 7.3428, 7.3425, 7.3421, 7.3431, 7.3426, 7.3421, 7.3416, 7.3412, 7.3407, 7.3403, 7.3398, 7.3392, 7.3386, 7.3397, 7.3408, 7.3403, 7.3399, 7.3393, 7.3403, 7.3413, 7.3408, 7.3404, 7.34, 7.3396, 7.339, 7.3385, 7.3381, 7.3377, 7.3372, 7.3367, 7.3367, 7.3367, 7.3362, 7.3359, 7.3368, 7.3364, 7.3358, 7.334, 7.335, 7.3346, 7.3342, 7.3337, 7.3347, 7.3343, 7.3338, 7.3348, 7.3357, 7.3367, 7.3361, 7.3357, 7.3352, 7.3347, 7.3342, 7.3338, 7.3333, 7.3342, 7.3337, 7.3334, 7.3333, 7.3343, 7.3338, 7.3334, 7.3329, 7.3325, 7.3334, 7.3328, 7.3323, 7.333, 7.3339, 7.3335, 7.333, 7.3326, 7.3323, 7.3327, 7.3324, 7.3348, 7.3351, 7.3346, 7.3342, 7.3339, 7.3336, 7.3332, 7.3327, 7.3336, 7.3332, 7.3341, 7.3337, 7.3332, 7.3341, 7.3336, 7.3332, 7.3328, 7.3324, 7.3319, 7.3314, 7.3323, 7.3332, 7.3341, 7.335, 7.3359, 7.3354, 7.3349, 7.3344, 7.334, 7.3337, 7.3347, 7.3387, 7.3385, 7.3399, 7.3395, 7.3405, 7.34, 7.3395, 7.3391, 7.3386, 7.3381, 7.3389, 7.3384, 7.3378, 7.3388, 7.3397, 7.3392, 7.3388, 7.3386, 7.3383, 7.3365, 7.3376, 7.3371, 7.3368, 7.3366, 7.3362, 7.3358, 7.3353, 7.3349, 7.3331, 7.3369, 7.3365, 7.3363, 7.3358, 7.3353, 7.3348, 7.3358, 7.3354, 7.3359, 7.3341, 7.3352, 7.3369, 7.3364, 7.336, 7.3368, 7.3364, 7.336, 7.337, 7.3366, 7.3362, 7.3372, 7.3367, 7.3365, 7.3373, 7.3373, 7.3369, 7.338, 7.3376, 7.3372, 7.3369, 7.3364, 7.3359, 7.3354, 7.335, 7.3346, 7.3342, 7.3337, 7.3347, 7.3343, 7.3352, 7.3361, 7.337, 7.3379, 7.3374, 7.3386, 7.3381, 7.3378, 7.3387, 7.3385, 7.3409, 7.3405, 7.3401, 7.3397, 7.3405, 7.3409, 7.3405, 7.3402, 7.3416, 7.3414, 7.3421, 7.3403, 7.3398, 7.3393, 7.3389, 7.3384, 7.3385, 7.3383, 7.341, 7.3433, 7.3445, 7.3441, 7.3451, 7.3447, 7.3444, 7.344, 7.3436, 7.3432, 7.3458, 7.3469, 7.3465, 7.346, 7.3456, 7.3465, 7.3474, 7.347, 7.3465, 7.3461, 7.3456, 7.3453, 7.3449, 7.3444, 7.3453, 7.3464, 7.3473, 7.3468, 7.3464, 7.3459, 7.3442, 7.3437, 7.342, 7.3437, 7.3468, 7.3463, 7.3458, 7.3453, 7.345, 7.3463, 7.3458, 7.3453, 7.3448, 7.3444, 7.3439, 7.3421, 7.3432, 7.3428, 7.3424, 7.3436, 7.3431, 7.3426, 7.3422, 7.3438, 7.3452, 7.3448, 7.3445, 7.3441, 7.3436, 7.3431, 7.3431, 7.3427, 7.3424, 7.3421, 7.3417, 7.3413, 7.341, 7.3406, 7.3416, 7.3425, 7.342, 7.3417, 7.3413, 7.3408, 7.3403, 7.3399, 7.3408, 7.3404, 7.34, 7.3395, 7.338, 7.3375, 7.337, 7.3365, 7.336, 7.3355, 7.3354, 7.335, 7.3363, 7.3358, 7.3353, 7.335, 7.3359, 7.3355, 7.3364, 7.3373, 7.3382, 7.3377, 7.3372, 7.3369, 7.3364, 7.3359, 7.3356, 7.3353, 7.3349, 7.3346, 7.3355, 7.3364, 7.3372, 7.3382, 7.3365, 7.336, 7.3355, 7.3364, 7.3359, 7.3372, 7.3369, 7.3364, 7.3359, 7.3354, 7.3351, 7.3334, 7.3331, 7.3327, 7.3323, 7.3332, 7.3341, 7.3324, 7.3334, 7.3329, 7.3324, 7.3307, 7.3292, 7.3321, 7.3317, 7.3312, 7.331, 7.3308, 7.3303, 7.3299, 7.3294, 7.3289, 7.3298, 7.3306, 7.3302, 7.3298, 7.331, 7.3307, 7.3303, 7.3311, 7.3307, 7.3291, 7.3287, 7.3283, 7.3279, 7.3274, 7.327, 7.3278, 7.3261, 7.3256, 7.3252, 7.326, 7.3268, 7.3264, 7.326, 7.3256, 7.3252, 7.3248, 7.3245, 7.3241, 7.3249, 7.3245, 7.3242, 7.3237, 7.3234, 7.3243, 7.3252, 7.326, 7.3268, 7.3265, 7.3261, 7.3257, 7.3253, 7.325, 7.3246, 7.3242, 7.3241, 7.3237, 7.3234, 7.3231, 7.3254, 7.3262, 7.3271, 7.3266, 7.3263, 7.3272, 7.3267, 7.3264, 7.3272, 7.3267, 7.3263, 7.3258, 7.3257, 7.3252, 7.3247, 7.3255, 7.3253, 7.3251, 7.3235, 7.323, 7.3225, 7.322, 7.3216, 7.3225, 7.3222, 7.3231, 7.324, 7.3236, 7.3231, 7.3226, 7.3222, 7.3217, 7.3214, 7.3211, 7.3206, 7.3204, 7.32, 7.3195, 7.3191, 7.3187, 7.3222, 7.3218, 7.3214, 7.3222, 7.323, 7.3226, 7.3221, 7.3216, 7.3212, 7.3207, 7.3202, 7.3197, 7.3193, 7.3189, 7.3184, 7.3181, 7.3193, 7.3191, 7.3186, 7.3194, 7.3191, 7.3186, 7.3195, 7.319, 7.3185, 7.3195, 7.3203, 7.32, 7.3214, 7.321, 7.3219, 7.3215, 7.3212, 7.3208, 7.3209, 7.3207, 7.3215, 7.321, 7.3219, 7.3214, 7.321, 7.3207, 7.3204, 7.32, 7.3206, 7.3203, 7.3198, 7.3194, 7.3189, 7.3187, 7.3195, 7.3194, 7.3189, 7.3184, 7.3182, 7.3191, 7.3187, 7.3184, 7.3193, 7.3188, 7.3173, 7.3157, 7.3153, 7.3164, 7.3162, 7.3161, 7.3157, 7.3153, 7.316, 7.3156, 7.3152, 7.3161, 7.3145, 7.3142, 7.3137, 7.3145, 7.3154, 7.3138, 7.3135, 7.3132, 7.3128, 7.3137, 7.3145, 7.3143, 7.314, 7.3136, 7.3132, 7.3156, 7.3152, 7.3149, 7.3133, 7.3128, 7.3125, 7.3134, 7.3142, 7.3126, 7.3136, 7.3134, 7.3132, 7.3128, 7.3139, 7.3135, 7.3133, 7.313, 7.3127, 7.3124, 7.312, 7.3128, 7.3124, 7.3144, 7.3141, 7.3138, 7.3167, 7.3184, 7.3181, 7.3177, 7.3172, 7.3167, 7.3168, 7.3164, 7.3182, 7.3178, 7.3173, 7.3187, 7.3183, 7.3192, 7.3196, 7.3199, 7.321, 7.3207, 7.3202, 7.3198, 7.3195, 7.319, 7.3186, 7.3195, 7.319, 7.3186, 7.3183, 7.3191, 7.32, 7.3185, 7.3211, 7.3208, 7.3203, 7.3199, 7.3195, 7.319, 7.3186, 7.3181, 7.3178, 7.3162, 7.3171, 7.3166, 7.3161, 7.3156, 7.3151, 7.3148, 7.3144, 7.3141, 7.3149, 7.3145, 7.3153, 7.3149, 7.3148, 7.3144, 7.3142, 7.3137, 7.3133, 7.3132, 7.3139, 7.3134, 7.313, 7.3126, 7.3123, 7.313, 7.3128, 7.3124, 7.3121, 7.3125, 7.3121, 7.3117, 7.3113, 7.311, 7.3119, 7.3114, 7.3099, 7.3109, 7.3106, 7.3102, 7.3102, 7.3098, 7.3093, 7.3101, 7.3109, 7.3105, 7.3101, 7.3097, 7.31, 7.3097, 7.3093, 7.3089, 7.3098, 7.3094, 7.3089, 7.3074, 7.3069, 7.3066, 7.3063, 7.3058, 7.3054, 7.3038, 7.3023, 7.3019, 7.3027, 7.3022, 7.3018, 7.3015, 7.3011, 7.3007, 7.3003, 7.2999, 7.2995, 7.2992, 7.2988, 7.2985, 7.2983, 7.2991, 7.2988, 7.2996, 7.3001, 7.2999, 7.3007, 7.3004, 7.3002, 7.3009, 7.3005, 7.3001, 7.2998, 7.2995, 7.3003, 7.2987, 7.2984, 7.2992, 7.2988, 7.2984, 7.2992, 7.3001, 7.2997, 7.2994, 7.299, 7.2995, 7.3003, 7.3014, 7.3031, 7.3043, 7.3027, 7.3024, 7.3034, 7.3033, 7.3043, 7.304, 7.3036, 7.3045, 7.3043, 7.3028, 7.3038, 7.305, 7.3046, 7.3054, 7.309, 7.31, 7.3096, 7.3093, 7.3089, 7.3089, 7.3074, 7.312, 7.3117, 7.3113, 7.3109, 7.3143, 7.3152, 7.316, 7.3167, 7.3176, 7.3162, 7.3158, 7.3166, 7.3164, 7.3161, 7.3156, 7.3153, 7.315, 7.3147, 7.315, 7.3147, 7.3155, 7.315, 7.315, 7.3146, 7.315, 7.3159, 7.3156, 7.3152, 7.3147, 7.3142, 7.3149, 7.3145, 7.3158, 7.3144, 7.3153, 7.3153, 7.315, 7.3146, 7.3143, 7.3141, 7.3137, 7.3144, 7.314, 7.3136, 7.3133, 7.3145, 7.3153, 7.315, 7.3146, 7.3142, 7.3138, 7.3134, 7.313, 7.3126, 7.3133, 7.3129, 7.313, 7.3126, 7.3121, 7.3106, 7.3102, 7.31, 7.3097, 7.3093, 7.3102, 7.3098, 7.3094, 7.3091, 7.3087, 7.3071, 7.3079, 7.3075, 7.307, 7.3067, 7.3064, 7.3061, 7.3082, 7.3069, 7.3077, 7.3092, 7.3088, 7.3084, 7.3081, 7.3081, 7.3085, 7.3082, 7.3079, 7.3075, 7.3082, 7.3089, 7.3086, 7.3086, 7.3084, 7.308, 7.3077, 7.3073, 7.307, 7.3078, 7.3086, 7.3093, 7.3089, 7.3085, 7.3081, 7.3079, 7.3076, 7.3072, 7.3079, 7.3077, 7.3073, 7.307, 7.3065, 7.3062, 7.3059, 7.3057, 7.3055, 7.3052, 7.3048, 7.3044, 7.3054, 7.305, 7.3046, 7.3051, 7.3058, 7.3056, 7.3052, 7.305, 7.3048, 7.3044, 7.304, 7.3036, 7.3032, 7.3041, 7.3038, 7.3034, 7.303, 7.3028, 7.3037, 7.3034, 7.303, 7.3051, 7.3048, 7.3043, 7.304, 7.3039, 7.3035, 7.302, 7.3017, 7.3002, 7.2999, 7.3008, 7.3005, 7.3013, 7.3009, 7.3006, 7.3002, 7.2998, 7.2994, 7.2991, 7.2987, 7.2984, 7.297, 7.2966, 7.2962, 7.297, 7.2955, 7.2951, 7.2946, 7.2953, 7.2949, 7.2969, 7.2965, 7.2962, 7.2969, 7.2988, 7.3009, 7.3006, 7.3004, 7.3001, 7.2997, 7.2992, 7.299, 7.2987, 7.2983, 7.2979, 7.2988, 7.2984, 7.298, 7.2976, 7.2973, 7.2969, 7.2977, 7.2973, 7.297, 7.2966, 7.2964, 7.296, 7.297, 7.2967, 7.2963, 7.2971, 7.2967, 7.2963, 7.2975, 7.2961, 7.2959, 7.2945, 7.2941, 7.2937, 7.2933, 7.2931, 7.2927, 7.2923, 7.292, 7.2928, 7.2925, 7.2911, 7.2919, 7.2915, 7.2923, 7.2919, 7.2904, 7.2902, 7.2909, 7.2905, 7.2902, 7.2898, 7.2897, 7.2904, 7.2913, 7.2898, 7.2895, 7.2891, 7.2891, 7.2892, 7.2891, 7.2876, 7.2872, 7.2868, 7.2875, 7.2888, 7.2919, 7.2916, 7.2914, 7.2911, 7.2908, 7.2904, 7.2901, 7.2898, 7.2906, 7.2915, 7.2923, 7.2924, 7.2921, 7.2918, 7.293, 7.2926, 7.2914, 7.2923, 7.2919, 7.2915, 7.2912, 7.2909, 7.2905, 7.2902, 7.2903, 7.29, 7.2896, 7.2892, 7.2889, 7.2885, 7.2893, 7.2894, 7.289, 7.2898, 7.2894, 7.2892, 7.2899, 7.2896, 7.2881, 7.2877, 7.2873, 7.2881, 7.2878, 7.2874, 7.2871, 7.2878, 7.2874, 7.2884, 7.2881, 7.2877, 7.2873, 7.2869, 7.2866, 7.2866, 7.2872, 7.2868, 7.2888, 7.2942, 7.2938, 7.2934, 7.293, 7.2916, 7.2912, 7.2909, 7.2906, 7.2902, 7.2899, 7.2895, 7.2891, 7.2898, 7.2925, 7.2956, 7.2952, 7.2948, 7.2944, 7.293, 7.2927, 7.2924, 7.2922, 7.293, 7.2938, 7.2959, 7.2955, 7.2951, 7.2947, 7.2944, 7.294, 7.2937, 7.2933, 7.2933, 7.2941, 7.2938, 7.2934, 7.2946, 7.2942, 7.2951, 7.2949, 7.2946, 7.2955, 7.2953, 7.2949, 7.2959, 7.2955, 7.2952, 7.2938, 7.2925, 7.2923, 7.2919, 7.2917, 7.2913, 7.291, 7.2907, 7.2915, 7.2922, 7.2919, 7.2917, 7.2913, 7.2921, 7.2928, 7.2926, 7.2937, 7.2933, 7.2929, 7.2926, 7.2922, 7.2918, 7.2927, 7.2925, 7.2922, 7.2918, 7.2915, 7.2911, 7.2919, 7.2917, 7.2946, 7.2942, 7.296, 7.2957, 7.2953, 7.2961, 7.2958, 7.2944, 7.2941, 7.2927, 7.2913, 7.2899, 7.2907, 7.2904, 7.2911, 7.2919, 7.2915, 7.2916, 7.2912, 7.2908, 7.2904, 7.291, 7.2907, 7.2903, 7.29, 7.2908, 7.2907, 7.2903, 7.2901, 7.2898, 7.2894, 7.289, 7.2886, 7.2882, 7.2878, 7.2875, 7.2871, 7.2867, 7.2874, 7.287, 7.2867, 7.2863, 7.2859, 7.2855, 7.2853, 7.2861, 7.2857, 7.2853, 7.2849, 7.2845, 7.2852, 7.2848, 7.2844, 7.2841, 7.2849, 7.2857, 7.2854, 7.2851, 7.2859, 7.2867, 7.2874, 7.2935, 7.2931, 7.2939, 7.2935, 7.2931, 7.2928, 7.2924, 7.2932, 7.2928, 7.2925, 7.2922, 7.292, 7.2917, 7.2925, 7.2921, 7.2917, 7.2903, 7.2899, 7.2895, 7.2902, 7.2898, 7.2895, 7.2891, 7.2877, 7.2885, 7.2882, 7.2878, 7.2875, 7.2902, 7.2899, 7.2885, 7.2881, 7.2877, 7.2874, 7.287, 7.2867, 7.2864, 7.2861, 7.2857, 7.2853, 7.2849, 7.2845, 7.2852, 7.2848, 7.2847, 7.2844, 7.2852, 7.286, 7.2856, 7.2862, 7.2858, 7.2865, 7.2853, 7.2839, 7.2826, 7.2822, 7.2829, 7.2825, 7.2821, 7.2817, 7.2813, 7.282, 7.2827, 7.2824, 7.2833, 7.2831, 7.2829, 7.2826, 7.2823, 7.2846, 7.2842, 7.284, 7.2837, 7.2843, 7.2852, 7.2853, 7.2849, 7.2836, 7.2833, 7.284, 7.2842, 7.2839, 7.2846, 7.2854, 7.285, 7.2846, 7.2854, 7.285, 7.2847, 7.2843, 7.2839, 7.2846, 7.2842, 7.2838, 7.2834, 7.2832, 7.2829, 7.2826, 7.2823, 7.2822, 7.2819, 7.2815, 7.2802, 7.2808, 7.2805, 7.2813, 7.2809, 7.2805, 7.2801, 7.2819, 7.2816, 7.2819, 7.2815, 7.2825, 7.2822, 7.2829, 7.2836, 7.2833, 7.2829, 7.2826, 7.2822, 7.283, 7.2837, 7.2844, 7.2841, 7.2837, 7.2833, 7.2829, 7.2827, 7.2834, 7.2831, 7.2828, 7.2825, 7.2822, 7.2819, 7.2815, 7.2818, 7.2814, 7.2812, 7.2808, 7.2805, 7.2802, 7.2833, 7.2829, 7.2825, 7.2812, 7.281, 7.2806, 7.2802, 7.2798, 7.2796, 7.2793, 7.2802, 7.2814, 7.2811, 7.2808, 7.2805, 7.2835, 7.2832, 7.2828, 7.2826, 7.2833, 7.2829, 7.2837, 7.2844, 7.2856, 7.2867, 7.2874, 7.287, 7.2882, 7.2891, 7.291, 7.2919, 7.2915, 7.2923, 7.293, 7.2928, 7.2915, 7.2911, 7.2907, 7.2904, 7.2901, 7.2898, 7.2907, 7.2903, 7.29, 7.2897, 7.2884, 7.2882, 7.2889, 7.2886, 7.2883, 7.288, 7.2887, 7.2883, 7.287, 7.2867, 7.2864, 7.2861, 7.2858, 7.2865, 7.2861, 7.285, 7.2869, 7.2867, 7.2865, 7.2862, 7.2858, 7.2865, 7.2863, 7.288, 7.2877, 7.2875, 7.2874, 7.2871, 7.2869, 7.2866, 7.2873, 7.288, 7.2888, 7.2884, 7.2891, 7.2888, 7.2895, 7.2902, 7.2901, 7.2897, 7.2894, 7.2891, 7.2887, 7.2883, 7.289, 7.2892, 7.29, 7.2907, 7.2903, 7.2899, 7.2905, 7.2912, 7.2909, 7.2905, 7.2909, 7.2896, 7.2896, 7.2893, 7.2892, 7.2888, 7.2884, 7.2891, 7.2888, 7.2885, 7.2883, 7.2881, 7.2888, 7.2886, 7.2883, 7.2879, 7.2876, 7.2872, 7.2868, 7.2875, 7.2871, 7.2868, 7.2865, 7.2852, 7.2849, 7.2856, 7.2853, 7.2851, 7.286, 7.2859, 7.2857, 7.2844, 7.2832, 7.2841, 7.2879, 7.2876, 7.2872, 7.2868, 7.2875, 7.2871, 7.2858, 7.2845, 7.2842, 7.2849, 7.2845, 7.2851, 7.2847, 7.2854, 7.2841, 7.2838, 7.2836, 7.2834, 7.284, 7.2837, 7.2824, 7.282, 7.2817, 7.2814, 7.2811, 7.2807, 7.2814, 7.282, 7.2827, 7.2824, 7.282, 7.2817, 7.2815, 7.2814, 7.282, 7.2817, 7.2814, 7.2823, 7.282, 7.2816, 7.2822, 7.2818, 7.2825, 7.2821, 7.2817, 7.2814, 7.2821, 7.2818, 7.2814, 7.281, 7.2807, 7.2814, 7.2812, 7.283, 7.2826, 7.2822, 7.2819, 7.2815, 7.2823, 7.2841, 7.2838, 7.2855, 7.2852, 7.2849, 7.2868, 7.2866, 7.2863, 7.2859, 7.2862, 7.2858, 7.2856, 7.2853, 7.2866, 7.2863, 7.2863, 7.2871, 7.2867, 7.2864, 7.2861, 7.2848, 7.2845, 7.2842, 7.285, 7.2847, 7.2854, 7.2841, 7.2837, 7.2834, 7.2831, 7.2828, 7.2827, 7.2824, 7.2821, 7.2818, 7.2815, 7.2813, 7.281, 7.2809, 7.2806, 7.2804, 7.2791, 7.2778, 7.2775, 7.2771, 7.277, 7.2774, 7.2771, 7.2779, 7.2785, 7.2781, 7.2778, 7.2785, 7.2791, 7.2788, 7.2776, 7.2783, 7.2784, 7.2791, 7.2789, 7.2786, 7.2782, 7.278, 7.2776, 7.2773, 7.2769, 7.2757, 7.2755, 7.2751, 7.2748, 7.2745, 7.2742, 7.2748, 7.2744, 7.275, 7.2748, 7.2744, 7.2752, 7.2751, 7.2747, 7.2744, 7.274, 7.2747, 7.2744, 7.274, 7.2746, 7.2733, 7.2729, 7.2725, 7.2721, 7.2718, 7.2725, 7.2732, 7.2738, 7.2726, 7.2713, 7.2709, 7.2706, 7.2713, 7.2719, 7.2716, 7.2723, 7.272, 7.2717, 7.2713, 7.2719, 7.2717, 7.2714, 7.2715, 7.2712, 7.271, 7.2717, 7.2714, 7.2712, 7.2709, 7.2706, 7.2703, 7.271, 7.2707, 7.2714, 7.271, 7.2706, 7.2706, 7.2703, 7.27, 7.2697, 7.2704, 7.2702, 7.2699, 7.2695, 7.2693, 7.27, 7.2696, 7.2692, 7.2689, 7.2686, 7.2682, 7.2679, 7.2675, 7.2681, 7.2688, 7.2684, 7.269, 7.2696, 7.2703, 7.2699, 7.2697, 7.2693, 7.2699, 7.2695, 7.2693, 7.27, 7.2698, 7.2695, 7.2691, 7.2688, 7.2685, 7.2692, 7.2699, 7.2707, 7.2714, 7.2711, 7.2718, 7.2714, 7.2712, 7.2708, 7.272, 7.2718, 7.2715, 7.2712, 7.2718, 7.2715, 7.2721, 7.2728, 7.2724, 7.2731, 7.2737, 7.2734, 7.273, 7.273, 7.2727, 7.2725, 7.2713, 7.2719, 7.2716, 7.2713, 7.271, 7.2708, 7.2705, 7.2713, 7.2713, 7.272, 7.2727, 7.2725, 7.2722, 7.272, 7.2727, 7.274, 7.2752, 7.2749, 7.2755, 7.2762, 7.277, 7.2767, 7.2764, 7.2763, 7.2769, 7.2765, 7.2762, 7.2758, 7.2755, 7.2752, 7.2753, 7.2749, 7.2745, 7.2751, 7.2747, 7.2753, 7.275, 7.2746, 7.2743, 7.2739, 7.2736, 7.2743, 7.2751, 7.2756, 7.2753, 7.276, 7.2767, 7.2764, 7.2771, 7.2781, 7.2778, 7.2775, 7.2772, 7.2769, 7.2767, 7.2765, 7.2762, 7.2768, 7.2764, 7.276, 7.2759, 7.2755, 7.2751, 7.2748, 7.2745, 7.2743, 7.2746, 7.2744, 7.2741, 7.2749, 7.2756, 7.2763, 7.2771, 7.2769, 7.2767, 7.2763, 7.277, 7.2767, 7.2764, 7.276, 7.2757, 7.2763, 7.2759, 7.2757, 7.2745, 7.274, 7.2756, 7.2752, 7.2752, 7.2759, 7.2776, 7.2777, 7.281, 7.2806, 7.2803, 7.2809, 7.2816, 7.2805, 7.2803, 7.2799, 7.2805, 7.2802, 7.28, 7.2797, 7.2795, 7.2802, 7.2799, 7.2806, 7.2794, 7.2791, 7.2797, 7.2785, 7.2791, 7.2787, 7.2784, 7.2782, 7.278, 7.2777, 7.2773, 7.2779, 7.2785, 7.2791, 7.2798, 7.2797, 7.2797, 7.2795, 7.2802, 7.2809, 7.2816, 7.2822, 7.2829, 7.2828, 7.2826, 7.2832, 7.2829, 7.2845, 7.2841, 7.2848, 7.2846, 7.2844, 7.2853, 7.285, 7.2848, 7.2854, 7.2861, 7.2859, 7.2855, 7.2852, 7.2841, 7.2849, 7.2846, 7.2843, 7.284, 7.2839, 7.2835, 7.2831, 7.2829, 7.2826, 7.2824, 7.2831, 7.2819, 7.2818, 7.2816, 7.2824, 7.2821, 7.2818, 7.2816, 7.2812, 7.28, 7.2818, 7.2816, 7.2824, 7.282, 7.2817, 7.2814, 7.281, 7.2817, 7.2814, 7.282, 7.2826, 7.2832, 7.282, 7.282, 7.2831, 7.284, 7.2837, 7.2833, 7.2831, 7.2828, 7.2825, 7.2822, 7.2858, 7.2856, 7.2863, 7.286, 7.2857, 7.2845, 7.2842, 7.2848, 7.2836, 7.2824, 7.2813, 7.281, 7.2816, 7.2813, 7.2839, 7.2836, 7.2853, 7.2853, 7.285, 7.2838, 7.2864, 7.287, 7.2873, 7.2872, 7.2871, 7.2868, 7.2865, 7.2862, 7.2859, 7.2856, 7.2862, 7.2858, 7.2864, 7.286, 7.2857, 7.2854, 7.2851, 7.2848, 7.2845, 7.2843, 7.2841, 7.2838, 7.2846, 7.2853, 7.286, 7.2857, 7.2863, 7.286, 7.2857, 7.2854, 7.2851, 7.2878, 7.2875, 7.2872, 7.2869, 7.2866, 7.2873, 7.287, 7.2867, 7.2865, 7.2863, 7.2865, 7.2862, 7.2861, 7.2858, 7.2855, 7.2852, 7.285, 7.2847, 7.2844, 7.2842, 7.2848, 7.2851, 7.2848, 7.2848, 7.2854, 7.2861, 7.2858, 7.2855, 7.2854, 7.2861, 7.286, 7.2869, 7.2867, 7.2874, 7.2871, 7.2867, 7.2873, 7.288, 7.2877, 7.2874, 7.2871, 7.2877, 7.2873, 7.287, 7.2867, 7.2863, 7.2851, 7.2849, 7.2848, 7.2846, 7.2844, 7.2842, 7.2832, 7.283, 7.2827, 7.2826, 7.2824, 7.2821, 7.283, 7.2827, 7.2833, 7.2821, 7.2819, 7.2807, 7.2813, 7.281, 7.2807, 7.2804, 7.2801, 7.2809, 7.2806, 7.282, 7.2817, 7.2823, 7.2829, 7.2826, 7.2824, 7.2822, 7.2819, 7.2816, 7.2813, 7.2809, 7.2821, 7.2809, 7.2807, 7.2805, 7.2813, 7.281, 7.2808, 7.2804, 7.2802, 7.2799, 7.2797, 7.2793, 7.279, 7.2787, 7.2783, 7.278, 7.2778, 7.2775, 7.2772, 7.2769, 7.2766, 7.2763, 7.276, 7.2767, 7.2764, 7.2773, 7.277, 7.2767, 7.2784, 7.2782, 7.2789, 7.2816, 7.2814, 7.281, 7.2816, 7.2823, 7.2821, 7.2819, 7.2816, 7.2813, 7.2809, 7.2806, 7.2803, 7.28, 7.2797, 7.2795, 7.2792, 7.2789, 7.2786, 7.2783, 7.278, 7.2777, 7.2774, 7.2771, 7.2768, 7.2766, 7.2782, 7.2788, 7.2785, 7.2782, 7.2779, 7.2775, 7.2781, 7.2779, 7.2788, 7.2785, 7.2782, 7.2782, 7.2801, 7.279, 7.2788, 7.2786, 7.2783, 7.278, 7.2778, 7.2775, 7.2831, 7.283, 7.2836, 7.2832, 7.282, 7.2818, 7.2835, 7.2833, 7.2831, 7.2828, 7.2827, 7.2846, 7.2852, 7.2853, 7.2851, 7.2849, 7.2856, 7.2854, 7.2852, 7.2859, 7.2856, 7.2865, 7.2854, 7.2852, 7.285, 7.2856, 7.2844, 7.2841, 7.2838, 7.2836, 7.2833, 7.2831, 7.2828, 7.2825, 7.2822, 7.282, 7.2826, 7.2824, 7.2821, 7.2819, 7.2817, 7.2823, 7.282, 7.2826, 7.2823, 7.283, 7.2828, 7.2838, 7.2835, 7.2823, 7.282, 7.2819, 7.2816, 7.2814, 7.2821, 7.2818, 7.2816, 7.2822, 7.2828, 7.2836, 7.2833, 7.2841, 7.2847, 7.2844, 7.2851, 7.2858, 7.2855, 7.2861, 7.2858, 7.2855, 7.2852, 7.2855, 7.2862, 7.2859, 7.2856, 7.2862, 7.2879, 7.2877, 7.2885, 7.2882, 7.288, 7.2877, 7.2874, 7.287, 7.2859, 7.2866, 7.2871, 7.2868, 7.2873, 7.287, 7.2866, 7.2863, 7.2866, 7.2879, 7.2875, 7.2885, 7.2901, 7.2898, 7.2896, 7.2906, 7.2911, 7.2908, 7.2905, 7.2903, 7.2901, 7.2898, 7.2895, 7.2894, 7.2891, 7.2897, 7.2894, 7.2892, 7.2893, 7.289, 7.2887, 7.2884, 7.2881, 7.289, 7.2887, 7.2885, 7.2883, 7.288, 7.2877, 7.2877, 7.2875, 7.2889, 7.2904, 7.2903, 7.29, 7.2897, 7.2903, 7.2901, 7.2908, 7.2905, 7.2905, 7.2905, 7.2902, 7.2909, 7.2915, 7.2912, 7.2918, 7.2916, 7.2923, 7.2929, 7.2935, 7.2933, 7.2939, 7.2936, 7.2942, 7.2948, 7.2937, 7.2943, 7.295, 7.2948, 7.2954, 7.2953, 7.295, 7.2947, 7.2946, 7.2953, 7.295, 7.2947, 7.2944, 7.295, 7.2947, 7.2953, 7.2949, 7.2937, 7.2943, 7.294, 7.2937, 7.2935, 7.2933, 7.293, 7.2928, 7.2925, 7.2923, 7.292, 7.2918, 7.2915, 7.2912, 7.2909, 7.2916, 7.2922, 7.292, 7.2917, 7.2914, 7.2911, 7.2909, 7.2898, 7.2895, 7.2884, 7.2881, 7.2889, 7.2887, 7.2884, 7.2882, 7.2888, 7.2885, 7.2883, 7.2881, 7.2879, 7.2877, 7.2874, 7.2878, 7.2875, 7.2881, 7.2878, 7.2875, 7.2874, 7.2871, 7.2869, 7.2875, 7.288, 7.2886, 7.2885, 7.2885, 7.2882, 7.288, 7.2879, 7.2877, 7.288, 7.2886, 7.2883, 7.288, 7.2877, 7.2912, 7.2909, 7.2906, 7.2903, 7.2901, 7.292, 7.2934, 7.2941, 7.2947, 7.2937, 7.2934, 7.2932, 7.2929, 7.2918, 7.2918, 7.2915, 7.2912, 7.2909, 7.2907, 7.2905, 7.2903, 7.2913, 7.291, 7.2919, 7.2916, 7.2923, 7.2929, 7.2926, 7.2932, 7.2929, 7.2935, 7.2941, 7.2947, 7.2953, 7.2951, 7.2949, 7.2955, 7.2965, 7.2962, 7.2959, 7.2965, 7.2963, 7.296, 7.2957, 7.2963, 7.2952, 7.2951, 7.2948, 7.2945, 7.2943, 7.2949, 7.2947, 7.2944, 7.2941, 7.2938, 7.2935, 7.2933, 7.293, 7.2937, 7.2943, 7.2951, 7.2948, 7.2963, 7.296, 7.2958, 7.2955, 7.2961, 7.2965, 7.2962, 7.2963, 7.2969, 7.2966, 7.2972, 7.2969, 7.2967, 7.2965, 7.2963, 7.296, 7.2957, 7.2954, 7.2951, 7.2958, 7.2956, 7.2953, 7.295, 7.294, 7.2946, 7.2943, 7.294, 7.2938, 7.2944, 7.2941, 7.2938, 7.2935, 7.2941, 7.2947, 7.2944, 7.295, 7.2956, 7.2953, 7.295, 7.2956, 7.2963, 7.2969, 7.2975, 7.2972, 7.2979, 7.2976, 7.2982, 7.298, 7.2986, 7.2983, 7.2989, 7.2995, 7.2992, 7.2998, 7.303, 7.3027, 7.3016, 7.3022, 7.302, 7.3026, 7.3023, 7.3029, 7.3026, 7.3025, 7.3014, 7.302, 7.3025, 7.3022, 7.3019, 7.3017, 7.3023, 7.302, 7.3025, 7.3022, 7.3019, 7.3018, 7.3024, 7.3022, 7.3024, 7.3021, 7.3018, 7.3017, 7.3015, 7.3012, 7.3009, 7.3006, 7.3004, 7.3001, 7.2998, 7.2996, 7.2993, 7.2992, 7.2989, 7.2995, 7.3, 7.2997, 7.2994, 7.3, 7.2998, 7.2995, 7.2993, 7.2998, 7.2987, 7.2984, 7.299, 7.2987, 7.2985, 7.2983, 7.2989, 7.2986, 7.2983, 7.2989, 7.2986, 7.2983, 7.2989, 7.2986, 7.2983, 7.2972, 7.2969, 7.2966, 7.2964, 7.2961, 7.2968, 7.2965, 7.2963, 7.296, 7.2957, 7.2955, 7.2953, 7.296, 7.2949, 7.2946, 7.2944, 7.2941, 7.294, 7.2937, 7.2934, 7.2949, 7.2947, 7.2947, 7.2953, 7.295, 7.2948, 7.2946, 7.2952, 7.2949, 7.2947, 7.2944, 7.295, 7.2947, 7.2944, 7.2941, 7.2938, 7.2935, 7.2932, 7.2931, 7.2928, 7.2925, 7.2914, 7.2912, 7.2902, 7.2899, 7.2896, 7.2893, 7.2894, 7.2883, 7.2881, 7.2879, 7.2876, 7.2873, 7.2862, 7.2867, 7.2856, 7.2862, 7.2859, 7.2858, 7.2864, 7.2861, 7.2858, 7.2864, 7.2861, 7.2859, 7.2866, 7.2863, 7.2861, 7.286, 7.2857, 7.2864, 7.2861, 7.2858, 7.2855, 7.2861, 7.285, 7.2856, 7.286, 7.2858, 7.2855, 7.2856, 7.2853, 7.2851, 7.2848, 7.2845, 7.2851, 7.2849, 7.2855, 7.2852, 7.2849, 7.2863, 7.2869, 7.2883, 7.288, 7.288, 7.2881, 7.2887, 7.2885, 7.289, 7.2887, 7.2893, 7.2899, 7.2905, 7.2902, 7.2899, 7.2905, 7.2911, 7.2908, 7.2905, 7.291, 7.29, 7.2897, 7.2913, 7.2911, 7.2909, 7.2915, 7.2912, 7.2918, 7.2923, 7.2922, 7.292, 7.2918, 7.2915, 7.2921, 7.2918, 7.2923, 7.292, 7.2926, 7.2924, 7.293, 7.2929, 7.2935, 7.2933, 7.2922, 7.2921, 7.2918, 7.2916, 7.2905, 7.2902, 7.2899, 7.2897, 7.2906, 7.2903, 7.29, 7.2889, 7.2895, 7.2893, 7.2901, 7.2899, 7.2896, 7.2901, 7.2908, 7.2918, 7.2915, 7.2914, 7.2911, 7.2908, 7.2906, 7.2904, 7.2903, 7.2909, 7.2907, 7.2904, 7.2902, 7.2899, 7.2904, 7.2903, 7.2905, 7.2904, 7.2904, 7.2901, 7.2898, 7.2895, 7.2892, 7.2889, 7.2886, 7.2883, 7.288, 7.2885, 7.2891, 7.2888, 7.2904, 7.2909, 7.2907, 7.2904, 7.2911, 7.2909, 7.2909, 7.2906, 7.2905, 7.2903, 7.29, 7.2897, 7.2895, 7.2893, 7.289, 7.288, 7.288, 7.2877, 7.2878, 7.2867, 7.2865, 7.2879, 7.291, 7.2907, 7.2905, 7.2911, 7.2908, 7.2905, 7.291, 7.2907, 7.2904, 7.291, 7.2907, 7.2904, 7.2902, 7.2901, 7.2898, 7.2895, 7.2892, 7.2898, 7.2897, 7.2902, 7.2901, 7.2907, 7.2904, 7.291, 7.2909, 7.2915, 7.2912, 7.2918, 7.2932, 7.2922, 7.2928, 7.2925, 7.2922, 7.292, 7.2925, 7.2923, 7.292, 7.2918, 7.2915, 7.2913, 7.291, 7.2907, 7.2904, 7.2901, 7.2898, 7.2896, 7.2893, 7.2891, 7.2889, 7.2895, 7.2892, 7.2897, 7.2895, 7.2892, 7.2897, 7.2897, 7.2894, 7.29, 7.2899, 7.2897, 7.2894, 7.2891, 7.2889, 7.2886, 7.2883, 7.2888, 7.2893, 7.289, 7.2888, 7.2885, 7.2884, 7.2882, 7.2879, 7.2872, 7.2869, 7.2866, 7.2866, 7.2863, 7.2869, 7.2867, 7.2864, 7.2863, 7.2861, 7.2859, 7.2856, 7.2854, 7.2852, 7.2849, 7.2864, 7.2862, 7.2859, 7.2849, 7.2847, 7.2844, 7.2841, 7.2838, 7.2844, 7.2841, 7.2838, 7.2835, 7.2833, 7.2832, 7.2829, 7.2826, 7.2823, 7.282, 7.2826, 7.2832, 7.2829, 7.2827, 7.2824, 7.2825, 7.284, 7.2846, 7.2845, 7.2842, 7.2867, 7.2868, 7.2869, 7.2867, 7.2864, 7.2862, 7.2867, 7.2873, 7.2871, 7.2868, 7.2867, 7.2856, 7.2853, 7.2859, 7.2857, 7.2854, 7.2851, 7.2848, 7.2846, 7.2843, 7.284, 7.2846, 7.2869, 7.2867, 7.2866, 7.2863, 7.2869, 7.2866, 7.2863, 7.2861, 7.2858, 7.2855, 7.2852, 7.2849, 7.287, 7.2867, 7.2873, 7.2871, 7.2868, 7.2886, 7.2885, 7.2883, 7.288, 7.2877, 7.2874, 7.288, 7.2877, 7.2882, 7.2879, 7.2876, 7.2881, 7.2878, 7.2875, 7.2881, 7.2887, 7.2884, 7.2882, 7.2879, 7.2885, 7.2882, 7.2879, 7.2876, 7.2873, 7.2878, 7.2875, 7.2873, 7.287, 7.2876, 7.2873, 7.287, 7.2883, 7.2889, 7.2886, 7.2883, 7.288, 7.2877, 7.2875, 7.2873, 7.287, 7.2867, 7.2864, 7.2862, 7.2868, 7.2881, 7.2886, 7.2884, 7.29, 7.2901, 7.2898, 7.2895, 7.29, 7.2898, 7.2911, 7.2909, 7.2919, 7.2917, 7.2908, 7.2905, 7.2902, 7.2908, 7.2919, 7.2916, 7.2913, 7.291, 7.2915, 7.2913, 7.2919, 7.2916, 7.2906, 7.2903, 7.2893, 7.2891, 7.2888, 7.2912, 7.2918, 7.2916, 7.2921, 7.2926, 7.2923, 7.2913, 7.291, 7.2907, 7.2905, 7.2911, 7.2917, 7.2915, 7.2914, 7.2911, 7.2917, 7.2915, 7.2913, 7.2911, 7.2932, 7.2938, 7.2936, 7.2942, 7.2939, 7.2938, 7.2935, 7.2932, 7.2937, 7.2959, 7.2965, 7.2963, 7.297, 7.2968, 7.2965, 7.2966, 7.2964, 7.297, 7.2967, 7.2965, 7.2962, 7.2972, 7.2977, 7.2983, 7.2988, 7.2994, 7.2991, 7.2989, 7.2994, 7.2991, 7.2988, 7.2985, 7.299, 7.3012, 7.3009, 7.3023, 7.3029, 7.3026, 7.3024, 7.3022, 7.302, 7.3017, 7.3014, 7.3011, 7.3016, 7.3021, 7.3034, 7.304, 7.3037, 7.3043, 7.3041, 7.3039, 7.3036, 7.3027, 7.3025, 7.3031, 7.303, 7.303, 7.3028, 7.3025, 7.3023, 7.302, 7.3017, 7.3015, 7.3012, 7.3012, 7.301, 7.3007, 7.3004, 7.301, 7.3017, 7.3014, 7.3011, 7.3009, 7.3008, 7.3006, 7.3012, 7.3018, 7.3024, 7.303, 7.3028, 7.3034, 7.304, 7.3047, 7.3052, 7.3052, 7.3049, 7.3062, 7.3059, 7.3057, 7.3054, 7.3052, 7.305, 7.3055, 7.3053, 7.3056, 7.3061, 7.3066, 7.3072, 7.3077, 7.3067, 7.3066, 7.3064, 7.3062, 7.3052, 7.3049, 7.3047, 7.3052, 7.3057, 7.3054, 7.3052, 7.3057, 7.3054, 7.3051, 7.3049, 7.3054, 7.3051, 7.3056, 7.3053, 7.3051, 7.3064, 7.3062, 7.3059, 7.3064, 7.307, 7.3067, 7.3065, 7.3062, 7.306, 7.3057, 7.3058, 7.3055, 7.3054, 7.3051, 7.3049, 7.3046, 7.3051, 7.3057, 7.3054, 7.3051, 7.3048, 7.3054, 7.306, 7.3057, 7.3062, 7.3061, 7.3059, 7.3064, 7.3061, 7.3059, 7.3057, 7.3047, 7.3046, 7.3052, 7.3052, 7.305, 7.3047, 7.3044, 7.3042, 7.3039, 7.3044, 7.3042, 7.3039, 7.3037, 7.3056, 7.3054, 7.3052, 7.3057, 7.3054, 7.3082, 7.3084, 7.3089, 7.3086, 7.3098, 7.3097, 7.3096, 7.3094, 7.3091, 7.3088, 7.3094, 7.3099, 7.3096, 7.3093, 7.309, 7.3088, 7.3085, 7.3083, 7.3081, 7.3078, 7.3086, 7.3084, 7.3082, 7.3087, 7.3077, 7.3074, 7.3071, 7.3077, 7.3074, 7.3072, 7.3072, 7.3069, 7.3074, 7.3098, 7.3095, 7.3093, 7.3084, 7.3083, 7.3088, 7.3085, 7.309, 7.3087, 7.3084, 7.3105, 7.3118, 7.3115, 7.3112, 7.3117, 7.3122, 7.3119, 7.3116, 7.3113, 7.3118, 7.3123, 7.312, 7.3117, 7.3123, 7.3114, 7.3112, 7.3109, 7.3124, 7.3121, 7.3118, 7.3117, 7.3114, 7.3114, 7.3112, 7.3109, 7.3108, 7.3105, 7.3102, 7.3099, 7.3098, 7.3096, 7.3093, 7.3091, 7.3088, 7.3085, 7.3083, 7.308, 7.3078, 7.3076, 7.3073, 7.307, 7.3068, 7.3066, 7.3063, 7.3061, 7.3059, 7.3056, 7.3054, 7.3051, 7.3048, 7.3056, 7.3053, 7.3058, 7.3057, 7.3063, 7.3061, 7.3074, 7.3072, 7.3077, 7.3083, 7.308, 7.3078, 7.3085, 7.3083, 7.308, 7.3085, 7.3087, 7.3086, 7.308, 7.3079, 7.3078, 7.3071, 7.3068, 7.3065, 7.3063, 7.3064, 7.3062, 7.3062, 7.3062, 7.3061, 7.3058, 7.3057, 7.3055, 7.3055, 7.3053, 7.306, 7.3058, 7.3064, 7.3062, 7.3069, 7.3066, 7.3073, 7.3072, 7.3077, 7.3076, 7.3083, 7.3081, 7.3087, 7.3085, 7.3083, 7.3081, 7.3079, 7.3079, 7.3084, 7.3083, 7.3089, 7.3086, 7.3083, 7.3081, 7.3079, 7.3077, 7.3075, 7.3073, 7.3072, 7.3071, 7.3072, 7.3071, 7.3069], '192.168.122.115': [5.4479, 8.4339, 7.4905, 7.1183, 6.8687, 6.6239, 7.2199, 7.0406, 6.8565, 7.3715, 7.1747, 6.6264, 6.9607, 6.8714, 6.8073, 6.7211, 6.6461, 6.913, 6.8471, 6.7827, 6.7435, 6.7005, 6.6567, 6.618, 6.5746, 6.7393, 6.707, 6.8426, 6.6252, 6.5964, 6.5669, 6.5357, 6.5092, 6.6347, 6.6091, 6.7442, 6.716, 6.8391, 6.8006, 6.7815, 6.8326, 6.8316, 6.9173, 6.9245, 6.8867, 6.8519, 6.8312, 6.7998, 6.7801, 6.8314, 6.9284, 6.896, 6.8718, 6.7639, 6.833, 6.8311, 6.8994, 6.8781, 6.8573, 6.8441, 6.8253, 6.7257, 6.7112, 6.7787, 6.6811, 6.6596, 6.6387, 6.6208, 6.6017, 6.5826, 6.5774, 6.5722, 6.5582, 6.6218, 6.6195, 6.6088, 6.5354, 6.5234, 6.5785, 6.63, 6.6157, 6.6017, 6.5886, 6.5823, 6.5673, 6.5002, 6.5498, 6.5975, 6.5842, 6.5706, 6.5621, 6.5496, 6.5387, 6.5826, 6.5726, 6.5604, 6.5485, 6.5428, 6.5307, 6.5213, 6.5105, 6.5504, 6.5921, 6.6016, 6.5937, 6.5931, 6.588, 6.5835, 6.5725, 6.5672, 6.5569, 6.5028, 6.4921, 6.4846, 6.4821, 6.4307, 6.4247, 6.4257, 6.4218, 6.4204, 6.4119, 6.4064, 6.4407, 6.4315, 6.4644, 6.4855, 6.5188, 6.5138, 6.5227, 6.5703, 6.6034, 6.5947, 6.6256, 6.6632, 6.6533, 6.6467, 6.6401, 6.6322, 6.6299, 6.6222, 6.6203, 6.6185, 6.687, 6.6786, 6.7079, 6.7016, 6.6933, 6.6861, 6.6789, 6.6719, 6.6625, 6.6535, 6.6441, 6.6361, 6.6624, 6.6577, 6.6205, 6.648, 6.6744, 6.6682, 6.6615, 6.6869, 6.6792, 6.707, 6.669, 6.6945, 6.7208, 6.7453, 6.7998, 6.8025, 6.7937, 6.7905, 6.7903, 6.8132, 6.8065, 6.7982, 6.8188, 6.8105, 6.8331, 6.8571, 6.8496, 6.8729, 6.865, 6.8576, 6.8791, 6.8446, 6.8359, 6.8867, 6.9067, 6.9038, 6.9065, 6.8982, 6.8908, 6.9116, 6.9609, 6.9539, 7.0009, 6.9927, 7.0373, 7.0363, 7.0068, 6.9986, 6.9913, 7.0095, 7.0039, 7.0228, 7.0162, 7.0346, 7.0286, 7.0233, 7.0412, 7.0329, 7.0319, 7.0501, 7.0436, 7.04, 7.0334, 7.0251, 7.0187, 7.0123, 7.0295, 7.0217, 7.0162, 7.0135, 7.006, 7.0224, 7.0156, 7.0336, 7.0266, 7.0437, 7.0492, 7.0413, 7.0164, 7.0332, 7.0271, 7.0195, 7.0145, 7.0076, 6.9804, 6.9735, 6.9686, 6.9627, 6.9582, 6.9537, 6.9717, 6.9678, 6.9759, 6.9707, 6.9877, 6.9806, 6.9741, 6.9673, 6.9827, 6.9763, 6.9918, 7.0063, 6.9997, 7.0141, 7.0284, 7.022, 7.018, 7.0143, 7.0509, 7.0444, 7.0397, 7.0331, 7.0268, 7.0209, 7.017, 7.0143, 7.0103, 7.0038, 7.0083, 6.9847, 6.9984, 6.9926, 7.0066, 6.9837, 6.9782, 6.9559, 6.969, 6.9633, 6.9578, 6.9354, 6.9302, 6.9242, 6.9186, 6.9311, 6.9349, 6.9305, 6.9249, 6.9197, 6.9145, 6.9094, 6.9104, 6.9057, 6.901, 6.8963, 6.9361, 6.9334, 6.9281, 6.9236, 6.9184, 6.9156, 6.9126, 6.9437, 6.9391, 6.9392, 6.935, 6.9538, 6.9656, 6.9621, 6.9577, 6.9553, 6.9533, 6.9499, 6.946, 6.9426, 6.956, 6.9692, 6.9691, 6.965, 6.9757, 6.9744, 6.9724, 6.9872, 6.9827, 6.9956, 6.9903, 7.0009, 6.9954, 6.9904, 7.0029, 6.9982, 7.0096, 7.0055, 7.0051, 7.0003, 6.997, 7.0076, 7.0044, 6.9995, 6.9945, 6.9899, 6.9854, 6.9806, 6.9775, 6.9885, 6.9848, 6.9957, 6.9913, 6.9882, 6.9836, 6.9796, 6.9908, 6.9863, 6.9821, 6.9791, 6.9748, 6.9701, 6.9674, 6.9628, 6.9587, 6.9695, 6.9797, 6.9751, 6.9718, 7.0102, 7.0073, 7.0034, 6.9998, 7.0103, 7.0198, 7.0153, 7.0127, 7.0085, 7.0043, 6.9999, 7.0105, 7.0063, 7.0158, 7.0138, 7.009, 7.0046, 7.0145, 7.01, 6.9943, 6.9913, 6.9878, 6.9853, 6.9947, 7.0043, 7.0005, 7.01, 7.006, 7.0018, 6.9976, 6.9948, 6.9915, 7.0328, 7.0286, 7.0246, 7.0204, 7.0299, 7.0255, 7.0356, 7.0319, 7.041, 7.0409, 7.0378, 7.0341, 7.0313, 7.0274, 7.0234, 7.0198, 7.0041, 7.001, 6.9975, 7.0193, 7.0152, 7.0241, 7.0586, 7.056, 7.0518, 7.0871, 7.109, 7.0943, 7.1126, 7.1086, 7.107, 7.1036, 7.1011, 7.0972, 7.0942, 7.1031, 7.1369, 7.1449, 7.142, 7.1268, 7.1236, 7.121, 7.1203, 7.1415, 7.1499, 7.1577, 7.1536, 7.1511, 7.1602, 7.1456, 7.1419, 7.138, 7.134, 7.1416, 7.1272, 7.1347, 7.1428, 7.1391, 7.1358, 7.1447, 7.1415, 7.1273, 7.1269, 7.1234, 7.1204, 7.1185, 7.1145, 7.1566, 7.1557, 7.1641, 7.1606, 7.1577, 7.155, 7.1529, 7.1392, 7.1421, 7.1399, 7.1373, 7.1342, 7.1316, 7.13, 7.1379, 7.1347, 7.134, 7.1311, 7.1279, 7.1246, 7.1207, 7.1171, 7.1136, 7.1218, 7.1185, 7.115, 7.1144, 7.1111, 7.1077, 7.1045, 7.1018, 7.1014, 7.0987, 7.0976, 7.0845, 7.0715, 7.0685, 7.0662, 7.0626, 7.0513, 7.039, 7.0367, 7.0334, 7.0323, 7.0305, 7.0279, 7.0364, 7.0337, 7.0303, 7.027, 7.0246, 7.0226, 7.0212, 7.0195, 7.0166, 7.0139, 7.0112, 7.0078, 7.0149, 7.0118, 7.0094, 7.0062, 7.0046, 7.0016, 6.9984, 6.9952, 6.9929, 6.9905, 6.988, 6.9857, 7.0103, 7.01, 7.0085, 7.0063, 7.0042, 7.006, 7.0029, 6.9998, 6.9998, 6.9967, 6.995, 6.9928, 6.9905, 6.9965, 6.9933, 6.9946, 6.9924, 6.9891, 6.9877, 6.9854, 6.9829, 6.9807, 6.9871, 6.979, 6.9769, 6.974, 6.9755, 6.973, 6.9703, 6.9769, 6.9751, 6.9732, 6.98, 6.9869, 7.033, 7.0307, 7.0279, 7.0345, 7.0328, 7.0298, 7.0273, 7.0249, 7.022, 7.0302, 7.0279, 7.0256, 7.0229, 7.0212, 7.0267, 7.0338, 7.0401, 7.0474, 7.0449, 7.0422, 7.0496, 7.0591, 7.0578, 7.0558, 7.0532, 7.06, 7.0675, 7.0565, 7.055, 7.0617, 7.0605, 7.0669, 7.065, 7.0633, 7.061, 7.0682, 7.0657, 7.0629, 7.0606, 7.059, 7.0577, 7.056, 7.0627, 7.0605, 7.0578, 7.0568, 7.0633, 7.0546, 7.0858, 7.1013, 7.1247, 7.1393, 7.1449, 7.151, 7.1569, 7.1541, 7.1514, 7.1487, 7.146, 7.1441, 7.1344, 7.1405, 7.1384, 7.1527, 7.1512, 7.1493, 7.1466, 7.1438, 7.1421, 7.1421, 7.148, 7.1455, 7.1439, 7.1411, 7.1385, 7.1387, 7.1448, 7.142, 7.1496, 7.1475, 7.1448, 7.1437, 7.1424, 7.1399, 7.1454, 7.1428, 7.1486, 7.1481, 7.1538, 7.1602, 7.1574, 7.1624, 7.1595, 7.1574, 7.1547, 7.1521, 7.1571, 7.1477, 7.1532, 7.1503, 7.1645, 7.162, 7.1593, 7.1648, 7.1624, 7.1674, 7.1674, 7.165, 7.1626, 7.168, 7.1657, 7.1631, 7.1606, 7.1593, 7.1647, 7.1625, 7.1684, 7.1663, 7.164, 7.162, 7.1597, 7.1571, 7.1545, 7.1602, 7.166, 7.1635, 7.1621, 7.1538, 7.1511, 7.1563, 7.1547, 7.1596, 7.1643, 7.1695, 7.1668, 7.1644, 7.1619, 7.1598, 7.1506, 7.1485, 7.1472, 7.1563, 7.1618, 7.1595, 7.1595, 7.1572, 7.1564, 7.1475, 7.1452, 7.1436, 7.1416, 7.1468, 7.1444, 7.1431, 7.148, 7.1532, 7.1509, 7.1484, 7.1466, 7.1381, 7.1357, 7.1408, 7.1317, 7.1291, 7.1266, 7.1241, 7.1216, 7.1191, 7.1243, 7.123, 7.1215, 7.1205, 7.1254, 7.1247, 7.1296, 7.1276, 7.1257, 7.1234, 7.1284, 7.127, 7.1247, 7.1298, 7.1284, 7.1333, 7.1309, 7.1422, 7.1398, 7.1375, 7.135, 7.1327, 7.1309, 7.1291, 7.1343, 7.132, 7.1296, 7.1273, 7.1187, 7.1169, 7.1442, 7.1555, 7.1539, 7.1517, 7.1493, 7.1541, 7.1589, 7.1576, 7.1554, 7.1531, 7.1516, 7.15, 7.1419, 7.1395, 7.1388, 7.1365, 7.1349, 7.14, 7.1446, 7.1494, 7.1473, 7.1452, 7.1436, 7.1483, 7.1528, 7.1507, 7.1488, 7.1466, 7.1449, 7.149, 7.1475, 7.1526, 7.1505, 7.1486, 7.1462, 7.1444, 7.1425, 7.1401, 7.138, 7.1362, 7.1344, 7.1561, 7.1547, 7.1524, 7.1523, 7.1503, 7.148, 7.1457, 7.15, 7.1487, 7.1467, 7.1447, 7.1425, 7.1405, 7.1386, 7.1366, 7.1293, 7.1284, 7.1265, 7.127, 7.1283, 7.1261, 7.124, 7.1221, 7.1206, 7.1132, 7.113, 7.1175, 7.1155, 7.12, 7.1183, 7.1173, 7.1153, 7.1132, 7.1174, 7.1222, 7.1207, 7.1187, 7.1308, 7.129, 7.1272, 7.1253, 7.1231, 7.1214, 7.1195, 7.1182, 7.1162, 7.1148, 7.1127, 7.117, 7.1094, 7.1078, 7.1122, 7.1102, 7.1083, 7.1124, 7.1107, 7.109, 7.1074, 7.1116, 7.1104, 7.1085, 7.1064, 7.1106, 7.1086, 7.1071, 7.1118, 7.1159, 7.1159, 7.121, 7.1192, 7.1177, 7.116, 7.115, 7.1322, 7.1371, 7.1355, 7.1339, 7.1324, 7.1368, 7.1347, 7.133, 7.1313, 7.1371, 7.1383, 7.1425, 7.1406, 7.1411, 7.1463, 7.1445, 7.1489, 7.1474, 7.1459, 7.1438, 7.1421, 7.1573, 7.1559, 7.1539, 7.152, 7.1506, 7.1489, 7.153, 7.1512, 7.1498, 7.1538, 7.1577, 7.1558, 7.1537, 7.158, 7.1621, 7.1607, 7.1647, 7.1687, 7.1667, 7.165, 7.1688, 7.167, 7.1651, 7.1641, 7.168, 7.1661, 7.1695, 7.1677, 7.1658, 7.1638, 7.162, 7.1601, 7.1638, 7.1567, 7.1549, 7.1697, 7.1689, 7.1672, 7.1653, 7.1634, 7.1615, 7.1596, 7.1581, 7.162, 7.16, 7.158, 7.1621, 7.1828, 7.1809, 7.1793, 7.184, 7.182, 7.1804, 7.1795, 7.1781, 7.1825, 7.1756, 7.1739, 7.1726, 7.1707, 7.1747, 7.1732, 7.1771, 7.1808, 7.179, 7.1772, 7.176, 7.1744, 7.1725, 7.1708, 7.1745, 7.1726, 7.1716, 7.1698, 7.1731, 7.1712, 7.1694, 7.168, 7.1663, 7.1645, 7.1627, 7.1612, 7.1593, 7.158, 7.1565, 7.1554, 7.1539, 7.1578, 7.156, 7.1543, 7.1528, 7.1511, 7.1548, 7.1529, 7.1567, 7.1559, 7.1542, 7.1529, 7.151, 7.1497, 7.1479, 7.147, 7.1562, 7.155, 7.1538, 7.1681, 7.1663, 7.165, 7.1634, 7.1616, 7.1599, 7.1581, 7.1562, 7.1546, 7.1532, 7.1517, 7.1501, 7.1486, 7.1468, 7.1452, 7.1439, 7.1424, 7.1407, 7.1391, 7.1375, 7.1368, 7.1353, 7.1361, 7.1344, 7.1328, 7.1311, 7.1293, 7.1282, 7.1269, 7.1252, 7.124, 7.1228, 7.1211, 7.1193, 7.1179, 7.1316, 7.1452, 7.1438, 7.1419, 7.1421, 7.141, 7.1392, 7.1375, 7.1366, 7.1349, 7.1337, 7.1371, 7.1358, 7.1341, 7.1373, 7.1356, 7.1341, 7.1372, 7.1358, 7.1347, 7.1333, 7.1322, 7.1353, 7.1347, 7.1382, 7.1366, 7.135, 7.1346, 7.134, 7.1434, 7.1424, 7.1411, 7.1401, 7.1389, 7.1423, 7.1412, 7.14, 7.1431, 7.1418, 7.1453, 7.1484, 7.1468, 7.1502, 7.1487, 7.1522, 7.1506, 7.149, 7.1521, 7.1553, 7.1548, 7.1535, 7.1522, 7.1521, 7.1504, 7.1537, 7.1606, 7.1596, 7.1579, 7.1564, 7.1558, 7.1588, 7.1571, 7.1554, 7.1539, 7.1523, 7.1508, 7.1495, 7.1487, 7.1471, 7.1456, 7.144, 7.1425, 7.1413, 7.1397, 7.1389, 7.1479, 7.1467, 7.1451, 7.1435, 7.143, 7.1419, 7.1454, 7.1442, 7.1426, 7.1411, 7.14, 7.1383, 7.1372, 7.1409, 7.1448, 7.1431, 7.1464, 7.1449, 7.1439, 7.1429, 7.1502, 7.1485, 7.1469, 7.1456, 7.1445, 7.1435, 7.142, 7.1455, 7.1628, 7.1612, 7.1643, 7.1627, 7.1617, 7.1603, 7.1591, 7.1577, 7.157, 7.16, 7.1584, 7.1578, 7.1567, 7.1551, 7.1537, 7.1521, 7.1511, 7.1541, 7.1528, 7.1513, 7.1546, 7.1578, 7.1566, 7.1554, 7.1539, 7.1523, 7.151, 7.1498, 7.1526, 7.1558, 7.1549, 7.1538, 7.1525, 7.1549, 7.158, 7.1565, 7.1596, 7.1627, 7.1612, 7.1644, 7.1632, 7.1722, 7.1735, 7.1722, 7.1711, 7.1699, 7.1774, 7.185, 7.1836, 7.1865, 7.1891, 7.1879, 7.1909, 7.1893, 7.1885, 7.1868, 7.1942, 7.197, 7.1956, 7.1985, 7.2014, 7.2004, 7.1989, 7.2004, 7.1998, 7.2027, 7.2011, 7.1996, 7.1983, 7.1968, 7.1957, 7.1944, 7.1929, 7.1918, 7.1955, 7.1942, 7.1972, 7.1959, 7.1943, 7.1973, 7.1959, 7.1991, 7.2023, 7.2012, 7.2043, 7.2028, 7.2014, 7.2043, 7.2033, 7.2018, 7.2006, 7.1994, 7.198, 7.2016, 7.2046, 7.2074, 7.2062, 7.209, 7.2117, 7.2108, 7.2102, 7.2087, 7.2072, 7.2059, 7.2045, 7.2072, 7.2057, 7.205, 7.2037, 7.2099, 7.2087, 7.2113, 7.2156, 7.2191, 7.2176, 7.2163, 7.2192, 7.2223, 7.2253, 7.224, 7.2271, 7.227, 7.2258, 7.2244, 7.2271, 7.2302, 7.2289, 7.2287, 7.2273, 7.2258, 7.2247, 7.224, 7.2233, 7.2223, 7.2222, 7.2214, 7.22, 7.2187, 7.2181, 7.2166, 7.2196, 7.2194, 7.2219, 7.2208, 7.2236, 7.2225, 7.2216, 7.2205, 7.2222, 7.2213, 7.2243, 7.2269, 7.2298, 7.2284, 7.2269, 7.2255, 7.2284, 7.2276, 7.2263, 7.2249, 7.2277, 7.2263, 7.2248, 7.22, 7.219, 7.2178, 7.2165, 7.2153, 7.2143, 7.2134, 7.209, 7.2077, 7.2103, 7.2129, 7.2156, 7.2141, 7.2169, 7.2156, 7.2182, 7.2209, 7.2195, 7.2183, 7.2173, 7.2123, 7.211, 7.2101, 7.2128, 7.2078, 7.2064, 7.2056, 7.2047, 7.2034, 7.202, 7.2031, 7.2017, 7.2004, 7.1991, 7.202, 7.2007, 7.1994, 7.1981, 7.1968, 7.1995, 7.1982, 7.1971, 7.1957, 7.1944, 7.197, 7.1958, 7.1944, 7.1931, 7.1919, 7.1916, 7.1954, 7.1956, 7.1943, 7.1931, 7.1919, 7.1946, 7.1932, 7.1921, 7.1908, 7.1894, 7.1881, 7.1868, 7.1855, 7.1806, 7.1832, 7.1831, 7.1867, 7.1857, 7.1848, 7.1835, 7.1825, 7.1854, 7.1845, 7.1876, 7.1868, 7.1856, 7.1844, 7.1868, 7.193, 7.1958, 7.2023, 7.2082, 7.2071, 7.2095, 7.212, 7.2146, 7.2135, 7.2128, 7.2118, 7.211, 7.2136, 7.2126, 7.2152, 7.2183, 7.218, 7.2206, 7.2194, 7.2223, 7.2251, 7.2237, 7.2226, 7.2296, 7.2322, 7.2347, 7.2337, 7.2362, 7.2388, 7.2375, 7.2361, 7.2348, 7.2335, 7.2322, 7.2315, 7.2341, 7.2353, 7.2343, 7.2333, 7.2359, 7.2381, 7.2406, 7.2394, 7.2387, 7.2412, 7.2399, 7.2388, 7.2379, 7.2369, 7.2359, 7.2482, 7.2473, 7.2464, 7.2496, 7.2484, 7.2471, 7.2458, 7.2447, 7.2403, 7.2394, 7.2384, 7.2372, 7.2399, 7.2387, 7.2412, 7.2402, 7.2395, 7.2421, 7.2409, 7.2434, 7.2421, 7.2415, 7.2438, 7.2439, 7.2428, 7.2451, 7.2442, 7.2429, 7.2419, 7.2407, 7.2397, 7.2388, 7.2376, 7.24, 7.241, 7.2433, 7.2431, 7.2451, 7.2476, 7.253, 7.252, 7.2508, 7.2537, 7.2537, 7.2531, 7.2521, 7.2512, 7.25, 7.2487, 7.2485, 7.2485, 7.2487, 7.2651, 7.265, 7.2724, 7.271, 7.27, 7.27, 7.2691, 7.2678, 7.2665, 7.2657, 7.268, 7.2703, 7.2706, 7.273, 7.2717, 7.2705, 7.2693, 7.2688, 7.2676, 7.2664, 7.2667, 7.2657, 7.2656, 7.2645, 7.2634, 7.2628, 7.265, 7.2642, 7.2732, 7.2722, 7.2745, 7.2767, 7.2759, 7.2749, 7.2771, 7.2761, 7.2748, 7.2735, 7.2727, 7.2718, 7.274, 7.2728, 7.2722, 7.2712, 7.2704, 7.2691, 7.2682, 7.2672, 7.2741, 7.2765, 7.2789, 7.2747, 7.2734, 7.2723, 7.2733, 7.272, 7.2744, 7.2765, 7.2753, 7.2742, 7.2738, 7.2726, 7.2749, 7.2739, 7.2727, 7.2751, 7.2746, 7.2704, 7.2728, 7.2716, 7.2703, 7.2761, 7.2748, 7.2746, 7.274, 7.2728, 7.2718, 7.2675, 7.2665, 7.2652, 7.264, 7.2628, 7.2615, 7.2603, 7.2599, 7.2621, 7.2611, 7.2673, 7.266, 7.2648, 7.267, 7.2669, 7.2659, 7.2647, 7.2637, 7.2625, 7.2681, 7.2673, 7.2661, 7.2683, 7.2671, 7.2661, 7.2649, 7.268, 7.2702, 7.2691, 7.268, 7.2668, 7.2659, 7.2681, 7.2669, 7.266, 7.265, 7.2639, 7.2631, 7.2619, 7.264, 7.263, 7.2721, 7.2711, 7.2699, 7.2721, 7.2709, 7.2699, 7.2688, 7.2646, 7.2647, 7.2636, 7.2625, 7.2649, 7.2639, 7.2628, 7.2616, 7.2607, 7.2629, 7.2617, 7.2605, 7.2598, 7.2593, 7.2584, 7.2576, 7.2632, 7.2623, 7.2647, 7.2637, 7.2626, 7.2585, 7.2591, 7.2583, 7.2577, 7.2565, 7.2589, 7.2609, 7.2605, 7.2564, 7.2537, 7.2558, 7.2547, 7.2538, 7.2527, 7.2518, 7.254, 7.2529, 7.2519, 7.2507, 7.2467, 7.2456, 7.2445, 7.2436, 7.2426, 7.2414, 7.2404, 7.2426, 7.2449, 7.2414, 7.2406, 7.2371, 7.2365, 7.2368, 7.2371, 7.2406, 7.2398, 7.2358, 7.2351, 7.2373, 7.2361, 7.236, 7.2361, 7.2384, 7.2376, 7.2384, 7.2374, 7.2369, 7.236, 7.2352, 7.2342, 7.2333, 7.2322, 7.2316, 7.2316, 7.2305, 7.2328, 7.2317, 7.2312, 7.2274, 7.2263, 7.2259, 7.2278, 7.23, 7.232, 7.2337, 7.2347, 7.2341, 7.2368, 7.2361, 7.2382, 7.2371, 7.2384, 7.2378, 7.2373, 7.2374, 7.2457, 7.2449, 7.2438, 7.246, 7.2453, 7.2446, 7.2437, 7.2459, 7.2448, 7.2469, 7.2459, 7.2451, 7.247, 7.246, 7.2451, 7.244, 7.2436, 7.2425, 7.2415, 7.2377, 7.2366, 7.2355, 7.2344, 7.2364, 7.2384, 7.2351, 7.2371, 7.2363, 7.2384, 7.2435, 7.2426, 7.2417, 7.2411, 7.2402, 7.2391, 7.238, 7.2369, 7.2392, 7.2413, 7.2416, 7.2437, 7.2427, 7.2417, 7.2407, 7.2399, 7.2389, 7.2379, 7.2369, 7.2392, 7.2414, 7.2403, 7.2427, 7.2418, 7.2407, 7.2396, 7.2386, 7.2376, 7.2396, 7.2416, 7.2443, 7.2464, 7.2453, 7.2475, 7.2465, 7.2456, 7.2447, 7.2465, 7.2458, 7.248, 7.2471, 7.2463, 7.2486, 7.2477, 7.2467, 7.2459, 7.2425, 7.2474, 7.2466, 7.2429, 7.2422, 7.2412, 7.2402, 7.2406, 7.2396, 7.2386, 7.2377, 7.2368, 7.243, 7.2432, 7.2421, 7.2412, 7.2436, 7.2399, 7.2418, 7.2438, 7.243, 7.2429, 7.2419, 7.2412, 7.2402, 7.2396, 7.24, 7.2391, 7.2384, 7.2502, 7.252, 7.2513, 7.2531, 7.252, 7.2512, 7.253, 7.252, 7.2514, 7.2507, 7.2499, 7.249, 7.248, 7.247, 7.2489, 7.2508, 7.2497, 7.2462, 7.2452, 7.2444, 7.2434, 7.2454, 7.2446, 7.2411, 7.2406, 7.2395, 7.2388, 7.238, 7.237, 7.2363, 7.2353, 7.2348, 7.234, 7.2331, 7.2322, 7.232, 7.2315, 7.2335, 7.2325, 7.2317, 7.2366, 7.2357, 7.2347, 7.2366, 7.2357, 7.2377, 7.2369, 7.2359, 7.2351, 7.2343, 7.2333, 7.2353, 7.2347, 7.2344, 7.2334, 7.2329, 7.2318, 7.2308, 7.2298, 7.2288, 7.2281, 7.2276, 7.2296, 7.2288, 7.2306, 7.2297, 7.2316, 7.2306, 7.2296, 7.2316, 7.2313, 7.2306, 7.2325, 7.2316, 7.2335, 7.233, 7.2321, 7.2312, 7.2303, 7.2296, 7.2312, 7.2304, 7.2301, 7.2294, 7.2292, 7.2283, 7.2279, 7.2269, 7.2258, 7.2255, 7.2246, 7.2242, 7.2233, 7.2225, 7.2277, 7.2268, 7.2261, 7.2253, 7.2246, 7.2265, 7.2256, 7.2251, 7.2241, 7.2232, 7.2252, 7.2242, 7.2234, 7.2226, 7.2245, 7.2264, 7.2257, 7.2276, 7.2268, 7.2261, 7.2253, 7.227, 7.226, 7.2278, 7.2299, 7.2293, 7.2284, 7.2276, 7.2268, 7.226, 7.2251, 7.2242, 7.2259, 7.2249, 7.2244, 7.2237, 7.2227, 7.2218, 7.221, 7.22, 7.2191, 7.2181, 7.2173, 7.2144, 7.2136, 7.213, 7.2127, 7.212, 7.2112, 7.2112, 7.2131, 7.2124, 7.2142, 7.2203, 7.2195, 7.2213, 7.2232, 7.2262, 7.2254, 7.2246, 7.2265, 7.2256, 7.2247, 7.2237, 7.2229, 7.2247, 7.224, 7.2257, 7.2248, 7.2239, 7.2231, 7.2223, 7.2241, 7.2318, 7.2308, 7.2327, 7.2348, 7.2343, 7.2421, 7.2438, 7.2431, 7.2421, 7.2411, 7.2401, 7.2391, 7.2383, 7.2374, 7.2364, 7.238, 7.2371, 7.2363, 7.2361, 7.2351, 7.2342, 7.2359, 7.2376, 7.2394, 7.2387, 7.2383, 7.2374, 7.2392, 7.2386, 7.2379, 7.2377, 7.2367, 7.236, 7.235, 7.2341, 7.2332, 7.2325, 7.2315, 7.2437, 7.243, 7.242, 7.2412, 7.2405, 7.2396, 7.2387, 7.2377, 7.2368, 7.2359, 7.2376, 7.2367, 7.2359, 7.235, 7.2344, 7.2337, 7.2328, 7.232, 7.2357, 7.2375, 7.2393, 7.2411, 7.2402, 7.2419, 7.2412, 7.2403, 7.2396, 7.2392, 7.2383, 7.2374, 7.2392, 7.2383, 7.2374, 7.2347, 7.2347, 7.2338, 7.2329, 7.2382, 7.2408, 7.2425, 7.2415, 7.2406, 7.2397, 7.2389, 7.2381, 7.24, 7.2391, 7.2382, 7.2381, 7.2399, 7.2429, 7.2404, 7.2374, 7.2369, 7.2363, 7.2356, 7.2325, 7.2318, 7.2312, 7.2306, 7.23, 7.2293, 7.2288, 7.231, 7.2312, 7.2304, 7.2298, 7.2292, 7.2326, 7.2318, 7.231, 7.2328, 7.2347, 7.2341, 7.2332, 7.2324, 7.2315, 7.2306, 7.2298, 7.2315, 7.2334, 7.235, 7.2393, 7.2452, 7.245, 7.2495, 7.2539, 7.2581, 7.2578, 7.2593, 7.2639, 7.2656, 7.2652, 7.2646, 7.2691, 7.2683, 7.2675, 7.2694, 7.271, 7.2702, 7.2693, 7.2687, 7.2681, 7.2674, 7.2702, 7.2694, 7.2687, 7.2679, 7.2773, 7.2764, 7.2759, 7.2756, 7.2775, 7.2767, 7.2758, 7.2732, 7.2726, 7.2718, 7.271, 7.27, 7.2717, 7.2709, 7.2848, 7.2891, 7.2932, 7.2951, 7.2944, 7.2935, 7.2926, 7.2918, 7.291, 7.2902, 7.2892, 7.2887, 7.288, 7.2873, 7.2866, 7.2859, 7.2852, 7.2844, 7.2837, 7.283, 7.2821, 7.2812, 7.2808, 7.2825, 7.2818, 7.2811, 7.2803, 7.2796, 7.2793, 7.2784, 7.2778, 7.2769, 7.276, 7.2755, 7.2748, 7.274, 7.2735, 7.275, 7.2765, 7.2755, 7.2748, 7.2741, 7.2714, 7.273, 7.2723, 7.2714, 7.2762, 7.2735, 7.2727, 7.2718, 7.2688, 7.2684, 7.2682, 7.2674, 7.2646, 7.2638, 7.263, 7.2626, 7.2622, 7.2613, 7.2605, 7.2597, 7.2589, 7.2562, 7.2533, 7.253, 7.2524, 7.2517, 7.2512, 7.2506, 7.2501, 7.2518, 7.251, 7.2504, 7.2519, 7.251, 7.2501, 7.2494, 7.2485, 7.2478, 7.2493, 7.2487, 7.2483, 7.2499, 7.249, 7.2531, 7.2523, 7.2515, 7.2506, 7.2522, 7.2513, 7.2505, 7.2497, 7.2535, 7.2505, 7.2521, 7.2513, 7.2505, 7.2496, 7.2494, 7.2487, 7.2479, 7.2471, 7.2487, 7.2507, 7.25, 7.2495, 7.2487, 7.2503, 7.2501, 7.2516, 7.2509, 7.2502, 7.2497, 7.2491, 7.2516, 7.2531, 7.2523, 7.2516, 7.2531, 7.2547, 7.254, 7.2533, 7.2526, 7.2517, 7.2533, 7.2526, 7.2522, 7.2515, 7.2509, 7.2502, 7.2495, 7.2513, 7.2508, 7.2501, 7.2496, 7.2516, 7.2509, 7.2501, 7.2519, 7.2511, 7.2503, 7.2495, 7.2489, 7.2517, 7.251, 7.2503, 7.2475, 7.2468, 7.256, 7.2553, 7.2545, 7.2537, 7.2553, 7.2548, 7.254, 7.2533, 7.2549, 7.2541, 7.2557, 7.2549, 7.2541, 7.2558, 7.2552, 7.2549, 7.2541, 7.2556, 7.2572, 7.2565, 7.2608, 7.2656, 7.2673, 7.2668, 7.2664, 7.2655, 7.2672, 7.2666, 7.2666, 7.2685, 7.2677, 7.2669, 7.2662, 7.2655, 7.2652, 7.2646, 7.2618, 7.2611, 7.2629, 7.2623, 7.2616, 7.2588, 7.2582, 7.2575, 7.2593, 7.2585, 7.2602, 7.2594, 7.2588, 7.258, 7.2573, 7.2567, 7.2563, 7.2554, 7.2546, 7.2561, 7.2532, 7.2547, 7.2518, 7.2512, 7.2527, 7.2541, 7.2533, 7.2527, 7.2543, 7.2536, 7.2531, 7.2522, 7.2535, 7.253, 7.2525, 7.2518, 7.2517, 7.2531, 7.2545, 7.2538, 7.253, 7.2522, 7.2515, 7.2487, 7.2479, 7.2474, 7.2466, 7.2458, 7.2472, 7.2486, 7.2481, 7.2495, 7.2489, 7.2484, 7.2479, 7.2473, 7.2467, 7.2439, 7.2454, 7.245, 7.2442, 7.2459, 7.2478, 7.2473, 7.2488, 7.2484, 7.2499, 7.2493, 7.2512, 7.2527, 7.2541, 7.2577, 7.2615, 7.2607, 7.2622, 7.2641, 7.2656, 7.2648, 7.264, 7.2632, 7.2626, 7.2619, 7.2635, 7.2627, 7.2621, 7.2615, 7.2608, 7.2601, 7.2615, 7.261, 7.2603, 7.2596, 7.2591, 7.2583, 7.2574, 7.2588, 7.258, 7.2595, 7.2589, 7.267, 7.2665, 7.2661, 7.2655, 7.2672, 7.2702, 7.2698, 7.2691, 7.2685, 7.272, 7.2713, 7.2707, 7.2703, 7.2697, 7.2695, 7.2689, 7.2682, 7.2674, 7.267, 7.2694, 7.2766, 7.2759, 7.2732, 7.2728, 7.2727, 7.2741, 7.2736, 7.2728, 7.2744, 7.2716, 7.273, 7.2723, 7.2717, 7.2711, 7.2729, 7.2745, 7.2741, 7.2736, 7.2736, 7.273, 7.2723, 7.2717, 7.2709, 7.2701, 7.2736, 7.2731, 7.2746, 7.2765, 7.2757, 7.2751, 7.2723, 7.2716, 7.2709, 7.2703, 7.2698, 7.2691, 7.2686, 7.27, 7.2697, 7.269, 7.2685, 7.27, 7.2692, 7.2685, 7.2679, 7.2674, 7.267, 7.2684, 7.2676, 7.2669, 7.2668, 7.2712, 7.2705, 7.2698, 7.269, 7.2685, 7.2699, 7.2693, 7.2706, 7.27, 7.2692, 7.2686, 7.2679, 7.2675, 7.269, 7.2683, 7.2696, 7.269, 7.2686, 7.2679, 7.2699, 7.2695, 7.2689, 7.2704, 7.2696, 7.269, 7.2683, 7.2675, 7.2667, 7.266, 7.2654, 7.2647, 7.2646, 7.2639, 7.2634, 7.2628, 7.2621, 7.2595, 7.2588, 7.2581, 7.2577, 7.2571, 7.2567, 7.2561, 7.2556, 7.255, 7.2564, 7.2577, 7.2571, 7.2575, 7.257, 7.2564, 7.2557, 7.2549, 7.2546, 7.252, 7.2515, 7.2508, 7.2521, 7.2514, 7.2683, 7.2657, 7.2654, 7.2691, 7.2687, 7.2682, 7.2675, 7.2667, 7.266, 7.2718, 7.2711, 7.2709, 7.2702, 7.2716, 7.2709, 7.2725, 7.2718, 7.2733, 7.2748, 7.2741, 7.2734, 7.2748, 7.274, 7.2733, 7.2767, 7.2759, 7.2751, 7.2746, 7.2739, 7.2752, 7.2765, 7.2757, 7.277, 7.2812, 7.2811, 7.2811, 7.2804, 7.2799, 7.2792, 7.2786, 7.2779, 7.2772, 7.2785, 7.2781, 7.2775, 7.2789, 7.2782, 7.2818, 7.2813, 7.2807, 7.2801, 7.2795, 7.2789, 7.2787, 7.2779, 7.2772, 7.2764, 7.2757, 7.275, 7.2743, 7.2736, 7.271, 7.2704, 7.2717, 7.2729, 7.2723, 7.2718, 7.2711, 7.2728, 7.2724, 7.2717, 7.273, 7.2722, 7.2714, 7.2708, 7.2705, 7.2699, 7.2694, 7.2707, 7.272, 7.2713, 7.2727, 7.2722, 7.2716, 7.2709, 7.2703, 7.2706, 7.27, 7.2694, 7.2687, 7.2681, 7.2675, 7.2673, 7.2666, 7.2659, 7.2653, 7.2648, 7.2661, 7.2656, 7.2648, 7.2662, 7.2657, 7.265, 7.2662, 7.2675, 7.2674, 7.2673, 7.2666, 7.2659, 7.2653, 7.265, 7.2667, 7.2683, 7.2686, 7.2681, 7.2674, 7.2667, 7.2662, 7.2655, 7.2649, 7.2642, 7.2635, 7.2628, 7.2623, 7.2637, 7.263, 7.2634, 7.263, 7.2643, 7.2636, 7.2631, 7.2625, 7.2618, 7.2613, 7.2606, 7.26, 7.2595, 7.259, 7.2585, 7.2579, 7.2592, 7.2593, 7.2587, 7.2582, 7.2557, 7.2556, 7.2549, 7.2561, 7.2556, 7.2549, 7.2562, 7.2575, 7.2572, 7.2567, 7.2561, 7.2555, 7.2568, 7.2562, 7.2576, 7.2589, 7.2583, 7.2576, 7.2571, 7.2564, 7.2557, 7.2552, 7.2565, 7.2558, 7.257, 7.2563, 7.2556, 7.2549, 7.256, 7.2553, 7.2548, 7.2577, 7.2571, 7.2566, 7.2564, 7.2557, 7.2552, 7.2546, 7.2558, 7.257, 7.2547, 7.2541, 7.2553, 7.2548, 7.2541, 7.2553, 7.2567, 7.2562, 7.2555, 7.2548, 7.2541, 7.2554, 7.2574, 7.2576, 7.2573, 7.2566, 7.2578, 7.2591, 7.259, 7.2583, 7.2578, 7.2576, 7.2569, 7.2565, 7.2559, 7.2553, 7.2548, 7.256, 7.2553, 7.2546, 7.2541, 7.2553, 7.2568, 7.2563, 7.2558, 7.2552, 7.2565, 7.2577, 7.2576, 7.2571, 7.2566, 7.2561, 7.2556, 7.257, 7.2563, 7.2556, 7.2561, 7.2557, 7.257, 7.2584, 7.2596, 7.2592, 7.2586, 7.2599, 7.2593, 7.2597, 7.2616, 7.2629, 7.2626, 7.263, 7.2624, 7.2619, 7.2615, 7.2608, 7.2605, 7.2618, 7.2611, 7.2605, 7.2598, 7.2611, 7.2624, 7.2617, 7.261, 7.2622, 7.2618, 7.2611, 7.2606, 7.2599, 7.2593, 7.2607, 7.26, 7.2617, 7.261, 7.2603, 7.2597, 7.259, 7.2601, 7.2596, 7.2608, 7.2604, 7.26, 7.2594, 7.259, 7.2604, 7.2618, 7.2613, 7.2591, 7.2606, 7.2619, 7.2613, 7.2589, 7.2583, 7.2583, 7.2576, 7.2572, 7.2549, 7.2545, 7.2522, 7.2518, 7.2511, 7.2507, 7.2519, 7.2514, 7.2509, 7.254, 7.2553, 7.2547, 7.2542, 7.2536, 7.2529, 7.2526, 7.2538, 7.255, 7.2543, 7.2538, 7.2531, 7.2527, 7.254, 7.2554, 7.2549, 7.2562, 7.2557, 7.2552, 7.2551, 7.2544, 7.2557, 7.2551, 7.2546, 7.2589, 7.2585, 7.2578, 7.2591, 7.2584, 7.2578, 7.2594, 7.2588, 7.2591, 7.2587, 7.2584, 7.2581, 7.2578, 7.2571, 7.2567, 7.2561, 7.2556, 7.2551, 7.2528, 7.2524, 7.2519, 7.2514, 7.251, 7.2541, 7.2537, 7.2607, 7.2619, 7.2615, 7.264, 7.2653, 7.2648, 7.2642, 7.2657, 7.2651, 7.2645, 7.2622, 7.2635, 7.2648, 7.2642, 7.2638, 7.2633, 7.2627, 7.2621, 7.2615, 7.2622, 7.2634, 7.2633, 7.2646, 7.264, 7.2633, 7.2629, 7.2623, 7.2616, 7.2609, 7.2622, 7.2615, 7.2609, 7.2603, 7.2615, 7.261, 7.2604, 7.2598, 7.2597, 7.2609, 7.2603, 7.2689, 7.2682, 7.266, 7.2638, 7.2665, 7.266, 7.2653, 7.2665, 7.2661, 7.2673, 7.2685, 7.2681, 7.2696, 7.269, 7.2687, 7.2682, 7.2678, 7.2672, 7.2688, 7.2683, 7.2679, 7.2675, 7.267, 7.2684, 7.268, 7.2677, 7.2672, 7.2666, 7.266, 7.2654, 7.2649, 7.2643, 7.2655, 7.2667, 7.2678, 7.2674, 7.2671, 7.2665, 7.2683, 7.2694, 7.2687, 7.27, 7.2712, 7.2726, 7.2721, 7.2715, 7.2714, 7.2727, 7.2744, 7.2738, 7.2731, 7.2748, 7.2743, 7.2775, 7.2787, 7.2798, 7.2811, 7.2805, 7.2801, 7.2795, 7.2789, 7.2802, 7.2796, 7.279, 7.2802, 7.2797, 7.2792, 7.2786, 7.2781, 7.2777, 7.2771, 7.2784, 7.2778, 7.2785, 7.2779, 7.2774, 7.2787, 7.2782, 7.2776, 7.2774, 7.2786, 7.278, 7.2792, 7.2786, 7.278, 7.2757, 7.2735, 7.2789, 7.2801, 7.2797, 7.2817, 7.2812, 7.2806, 7.2818, 7.2812, 7.2806, 7.28, 7.2795, 7.279, 7.2785, 7.278, 7.2775, 7.2787, 7.2782, 7.2813, 7.2827, 7.2859, 7.2854, 7.285, 7.2845, 7.2842, 7.2854, 7.2848, 7.286, 7.2871, 7.2849, 7.2846, 7.2858, 7.2851, 7.2847, 7.2858, 7.2853, 7.2876, 7.287, 7.2865, 7.2878, 7.2872, 7.2868, 7.2881, 7.2876, 7.287, 7.2883, 7.2896, 7.2891, 7.2886, 7.2882, 7.2877, 7.2871, 7.2865, 7.2876, 7.2854, 7.2833, 7.2826, 7.2838, 7.2849, 7.2845, 7.2875, 7.2869, 7.294, 7.2952, 7.2946, 7.2942, 7.2936, 7.293, 7.2925, 7.2919, 7.2913, 7.2909, 7.292, 7.2914, 7.2908, 7.289, 7.2889, 7.2871, 7.2865, 7.2861, 7.289, 7.2887, 7.2881, 7.2876, 7.287, 7.2865, 7.2858, 7.2871, 7.2864, 7.2858, 7.287, 7.2863, 7.2857, 7.2851, 7.2867, 7.2863, 7.2857, 7.2851, 7.2845, 7.2856, 7.285, 7.2844, 7.2855, 7.2849, 7.2844, 7.284, 7.2836, 7.2847, 7.2842, 7.2836, 7.2831, 7.2828, 7.2822, 7.2833, 7.2828, 7.2823, 7.2834, 7.2831, 7.2827, 7.2839, 7.2833, 7.2828, 7.2825, 7.2821, 7.2817, 7.2813, 7.2824, 7.2819, 7.2815, 7.2812, 7.2809, 7.2803, 7.2816, 7.2828, 7.2822, 7.2816, 7.281, 7.2805, 7.2799, 7.2793, 7.2788, 7.2783, 7.2761, 7.2755, 7.2765, 7.2777, 7.2771, 7.279, 7.2784, 7.2778, 7.2773, 7.2769, 7.2781, 7.2777, 7.2789, 7.2786, 7.2784, 7.2778, 7.279, 7.2802, 7.2799, 7.281, 7.2804, 7.2798, 7.2809, 7.2803, 7.2798, 7.2793, 7.2787, 7.2782, 7.2778, 7.2773, 7.2768, 7.2765, 7.278, 7.2792, 7.2786, 7.278, 7.2776, 7.2772, 7.2783, 7.2777, 7.2771, 7.2766, 7.2777, 7.2771, 7.2768, 7.2762, 7.2756, 7.2752, 7.2763, 7.276, 7.2754, 7.2751, 7.273, 7.2726, 7.272, 7.2699, 7.2695, 7.2694, 7.2692, 7.2703, 7.2705, 7.2699, 7.2694, 7.2673, 7.2667, 7.2663, 7.2658, 7.2653, 7.2649, 7.2645, 7.2639, 7.2636, 7.2632, 7.2643, 7.2637, 7.2632, 7.2629, 7.2625, 7.2619, 7.2614, 7.2608, 7.2602, 7.2596, 7.2621, 7.2615, 7.261, 7.2604, 7.2598, 7.2609, 7.2629, 7.2624, 7.2606, 7.2618, 7.2615, 7.2612, 7.2608, 7.261, 7.2605, 7.2599, 7.2593, 7.2572, 7.2568, 7.2562, 7.2557, 7.2554, 7.255, 7.2544, 7.2538, 7.2539, 7.2533, 7.2527, 7.2523, 7.2535, 7.253, 7.2524, 7.2519, 7.253, 7.2525, 7.252, 7.2514, 7.2509, 7.2519, 7.2533, 7.2531, 7.2525, 7.2519, 7.2515, 7.2509, 7.2519, 7.2515, 7.251, 7.2506, 7.2517, 7.2513, 7.2507, 7.2502, 7.2497, 7.2493, 7.2488, 7.2498, 7.2494, 7.2492, 7.2503, 7.25, 7.2494, 7.25, 7.2497, 7.2491, 7.2486, 7.2481, 7.2477, 7.2471, 7.2467, 7.2462, 7.2473, 7.2496, 7.249, 7.2484, 7.2479, 7.2474, 7.2468, 7.2462, 7.2473, 7.2484, 7.2495, 7.2489, 7.2502, 7.2497, 7.2493, 7.2489, 7.25, 7.2511, 7.2507, 7.2501, 7.2501, 7.2497, 7.2492, 7.2502, 7.2498, 7.2493, 7.249, 7.2486, 7.2483, 7.2479, 7.248, 7.2476, 7.2472, 7.2467, 7.2451, 7.2464, 7.2459, 7.2455, 7.2466, 7.2477, 7.2473, 7.2484, 7.2478, 7.2477, 7.2474, 7.2475, 7.2469, 7.2466, 7.2462, 7.2458, 7.2452, 7.2447, 7.2441, 7.2436, 7.2446, 7.2456, 7.2451, 7.2448, 7.2459, 7.2469, 7.2465, 7.2461, 7.2443, 7.2438, 7.2432, 7.2426, 7.2437, 7.2448, 7.2445, 7.244, 7.2436, 7.2432, 7.2429, 7.2426, 7.2437, 7.2433, 7.2428, 7.2423, 7.2419, 7.24, 7.2411, 7.241, 7.2406, 7.2417, 7.2415, 7.2411, 7.2423, 7.244, 7.2451, 7.2431, 7.2427, 7.2438, 7.2434, 7.2429, 7.2425, 7.2421, 7.2416, 7.2413, 7.2424, 7.2419, 7.2413, 7.2441, 7.2436, 7.2431, 7.2446, 7.2441, 7.2437, 7.2432, 7.2428, 7.241, 7.2405, 7.2401, 7.2398, 7.2379, 7.2361, 7.2373, 7.2369, 7.2363, 7.236, 7.2356, 7.2352, 7.2353, 7.2363, 7.2357, 7.2355, 7.235, 7.2362, 7.2358, 7.2353, 7.2348, 7.2343, 7.2339, 7.235, 7.2346, 7.234, 7.2335, 7.233, 7.2311, 7.2306, 7.2316, 7.2316, 7.2326, 7.2323, 7.232, 7.2315, 7.2309, 7.2305, 7.2301, 7.2296, 7.2292, 7.2289, 7.2284, 7.228, 7.2291, 7.2285, 7.2281, 7.2277, 7.2273, 7.227, 7.228, 7.2289, 7.2285, 7.228, 7.2276, 7.2271, 7.2267, 7.2278, 7.229, 7.2287, 7.2298, 7.2293, 7.2303, 7.2298, 7.2292, 7.2287, 7.2283, 7.2266, 7.2263, 7.2259, 7.227, 7.2268, 7.2267, 7.2262, 7.227, 7.2265, 7.226, 7.2259, 7.2254, 7.2249, 7.2244, 7.2239, 7.2235, 7.223, 7.2226, 7.2221, 7.2232, 7.2227, 7.2226, 7.2283, 7.2279, 7.226, 7.2302, 7.2297, 7.2307, 7.2306, 7.2288, 7.2315, 7.231, 7.2306, 7.2301, 7.2296, 7.2292, 7.2293, 7.2304, 7.2313, 7.2323, 7.2333, 7.2328, 7.2337, 7.2333, 7.2329, 7.2338, 7.2334, 7.233, 7.2325, 7.2321, 7.2316, 7.2325, 7.232, 7.2329, 7.2326, 7.2336, 7.2331, 7.2341, 7.2339, 7.2334, 7.2333, 7.2343, 7.2354, 7.235, 7.2344, 7.234, 7.2335, 7.2331, 7.2326, 7.2321, 7.2318, 7.2321, 7.2316, 7.2318, 7.2328, 7.2325, 7.2321, 7.2317, 7.2357, 7.2352, 7.2347, 7.2343, 7.2339, 7.2349, 7.2344, 7.234, 7.235, 7.235, 7.2346, 7.2341, 7.2336, 7.233, 7.2325, 7.2321, 7.2337, 7.2334, 7.2331, 7.2326, 7.2337, 7.2332, 7.2333, 7.2346, 7.2342, 7.2337, 7.2337, 7.2348, 7.2343, 7.2338, 7.2348, 7.2346, 7.2341, 7.2336, 7.2333, 7.2328, 7.2323, 7.2334, 7.2331, 7.2326, 7.2322, 7.2317, 7.2312, 7.2308, 7.2303, 7.2299, 7.2309, 7.2307, 7.2305, 7.2301, 7.2296, 7.2307, 7.2362, 7.2356, 7.2338, 7.232, 7.2317, 7.2312, 7.2309, 7.2318, 7.2328, 7.2324, 7.2319, 7.2315, 7.231, 7.2335, 7.233, 7.2327, 7.2323, 7.2318, 7.2313, 7.2308, 7.2303, 7.2357, 7.2352, 7.2347, 7.2349, 7.2346, 7.237, 7.2365, 7.2364, 7.2361, 7.2357, 7.2353, 7.2349, 7.2361, 7.2358, 7.2353, 7.2349, 7.2359, 7.2354, 7.2351, 7.236, 7.2342, 7.2353, 7.2348, 7.2344, 7.2339, 7.2335, 7.2348, 7.2365, 7.236, 7.2355, 7.2352, 7.2352, 7.2347, 7.2342, 7.2337, 7.2333, 7.2344, 7.2342, 7.2338, 7.2348, 7.2344, 7.234, 7.2335, 7.2332, 7.2336, 7.2331, 7.2326, 7.2338, 7.2348, 7.2352, 7.2363, 7.2362, 7.2357, 7.2354, 7.235, 7.2346, 7.2355, 7.2352, 7.2376, 7.2373, 7.2382, 7.2378, 7.236, 7.2356, 7.2353, 7.235, 7.2345, 7.234, 7.2337, 7.2333, 7.2329, 7.2326, 7.2336, 7.2321, 7.2316, 7.2312, 7.2322, 7.2319, 7.2301, 7.2283, 7.2282, 7.2277, 7.2272, 7.2267, 7.2263, 7.2258, 7.2253, 7.2248, 7.2243, 7.2238, 7.2234, 7.223, 7.2242, 7.2238, 7.2234, 7.2229, 7.2224, 7.222, 7.2219, 7.223, 7.2226, 7.2237, 7.2233, 7.2229, 7.2237, 7.2232, 7.2242, 7.2238, 7.2247, 7.2244, 7.2239, 7.2234, 7.223, 7.2225, 7.2233, 7.2243, 7.2238, 7.2234, 7.2243, 7.2238, 7.2248, 7.2244, 7.2255, 7.2265, 7.2261, 7.2256, 7.2251, 7.2246, 7.2243, 7.2238, 7.2248, 7.2258, 7.2253, 7.225, 7.225, 7.2259, 7.2255, 7.2252, 7.2247, 7.2243, 7.2238, 7.2233, 7.2232, 7.2229, 7.2225, 7.2236, 7.2232, 7.2228, 7.2223, 7.2218, 7.221, 7.2206, 7.2201, 7.2199, 7.2195, 7.2219, 7.2287, 7.2295, 7.2292, 7.2307, 7.2317, 7.2382, 7.2391, 7.2388, 7.241, 7.2411, 7.242, 7.2429, 7.2426, 7.2422, 7.2424, 7.244, 7.2435, 7.243, 7.2426, 7.2421, 7.2437, 7.2446, 7.2435, 7.2435, 7.2432, 7.2428, 7.2424, 7.242, 7.2416, 7.2412, 7.2407, 7.2403, 7.2399, 7.2394, 7.2404, 7.2415, 7.2412, 7.242, 7.2416, 7.2412, 7.2422, 7.2418, 7.2413, 7.2422, 7.2432, 7.2428, 7.2439, 7.2448, 7.2445, 7.2456, 7.2466, 7.2477, 7.2473, 7.2483, 7.2492, 7.2501, 7.2496, 7.2478, 7.2488, 7.2484, 7.2508, 7.2517, 7.2513, 7.2522, 7.2527, 7.2523, 7.2532, 7.2527, 7.2522, 7.2517, 7.253, 7.2542, 7.2551, 7.2534, 7.2529, 7.2524, 7.2522, 7.2517, 7.2512, 7.2521, 7.253, 7.2525, 7.2521, 7.2516, 7.2512, 7.2508, 7.2503, 7.2499, 7.2509, 7.2505, 7.2502, 7.2502, 7.2497, 7.2496, 7.2491, 7.25, 7.2495, 7.2511, 7.2508, 7.2504, 7.2514, 7.2509, 7.2518, 7.2514, 7.2497, 7.2507, 7.2516, 7.2513, 7.2509, 7.2505, 7.2515, 7.2525, 7.2521, 7.2516, 7.252, 7.2515, 7.2511, 7.2507, 7.2503, 7.2511, 7.2506, 7.2514, 7.251, 7.2505, 7.2501, 7.2509, 7.2517, 7.2514, 7.2512, 7.251, 7.2506, 7.2492, 7.2488, 7.2484, 7.2494, 7.249, 7.2499, 7.2508, 7.2506, 7.2501, 7.2496, 7.2491, 7.25, 7.2497, 7.2493, 7.2503, 7.25, 7.2502, 7.2525, 7.2534, 7.2542, 7.2539, 7.2535, 7.2531, 7.254, 7.2563, 7.2563, 7.2572, 7.2568, 7.2564, 7.2561, 7.2556, 7.2539, 7.2547, 7.2543, 7.2539, 7.2534, 7.253, 7.2513, 7.2522, 7.2505, 7.2541, 7.2528, 7.2514, 7.251, 7.2505, 7.2514, 7.2511, 7.2506, 7.2516, 7.2511, 7.252, 7.2516, 7.2512, 7.2508, 7.2503, 7.2501, 7.25, 7.2495, 7.2491, 7.25, 7.2497, 7.2494, 7.2478, 7.2473, 7.2468, 7.2465, 7.2461, 7.2457, 7.2453, 7.2448, 7.2443, 7.2439, 7.2435, 7.2431, 7.2427, 7.2423, 7.2419, 7.2415, 7.241, 7.2406, 7.2402, 7.2397, 7.2392, 7.2389, 7.2385, 7.238, 7.2376, 7.2372, 7.2368, 7.2363, 7.2359, 7.2355, 7.2366, 7.2362, 7.2374, 7.2371, 7.2367, 7.2363, 7.2361, 7.2357, 7.2354, 7.2351, 7.2347, 7.2343, 7.2341, 7.2339, 7.2338, 7.2334, 7.2345, 7.2354, 7.2363, 7.2372, 7.2368, 7.2363, 7.2359, 7.2356, 7.2353, 7.2349, 7.2357, 7.2352, 7.2335, 7.2331, 7.2327, 7.2324, 7.2319, 7.2328, 7.2337, 7.2346, 7.2341, 7.2337, 7.2333, 7.2329, 7.2326, 7.2334, 7.233, 7.2339, 7.2334, 7.2332, 7.2328, 7.2326, 7.2321, 7.2329, 7.2329, 7.2386, 7.2381, 7.2377, 7.24, 7.2409, 7.2405, 7.2401, 7.2397, 7.2394, 7.2393, 7.239, 7.2401, 7.2387, 7.2384, 7.2393, 7.2388, 7.2385, 7.2382, 7.2377, 7.2374, 7.237, 7.2365, 7.236, 7.2357, 7.2353, 7.2349, 7.2345, 7.2356, 7.2353, 7.2348, 7.2343, 7.234, 7.2337, 7.2333, 7.2328, 7.2326, 7.2337, 7.2346, 7.2341, 7.2336, 7.2332, 7.2328, 7.2337, 7.2321, 7.233, 7.2328, 7.2336, 7.2396, 7.2391, 7.2387, 7.2395, 7.239, 7.2385, 7.238, 7.2376, 7.2373, 7.2369, 7.2377, 7.2374, 7.2358, 7.2342, 7.2338, 7.2333, 7.2329, 7.2324, 7.2332, 7.2327, 7.2323, 7.2331, 7.2328, 7.2336, 7.2333, 7.2329, 7.2327, 7.2322, 7.2331, 7.2328, 7.2323, 7.2319, 7.2318, 7.2302, 7.2311, 7.2307, 7.2319, 7.2327, 7.2324, 7.232, 7.2329, 7.2338, 7.2335, 7.2344, 7.2341, 7.2338, 7.236, 7.2356, 7.2351, 7.2387, 7.2395, 7.2443, 7.244, 7.2436, 7.2432, 7.2457, 7.2466, 7.2474, 7.2496, 7.2506, 7.2503, 7.2487, 7.2483, 7.2478, 7.2486, 7.2481, 7.2477, 7.2473, 7.247, 7.2466, 7.2475, 7.2471, 7.2469, 7.2465, 7.2462, 7.2457, 7.2453, 7.2448, 7.2444, 7.2453, 7.2461, 7.2457, 7.2453, 7.2449, 7.2444, 7.2442, 7.245, 7.2446, 7.2442, 7.2463, 7.2459, 7.2454, 7.245, 7.2446, 7.2442, 7.2438, 7.2436, 7.2448, 7.2489, 7.2485, 7.2472, 7.2481, 7.2477, 7.2476, 7.2477, 7.2486, 7.2482, 7.2478, 7.2503, 7.25, 7.2497, 7.2483, 7.2494, 7.2491, 7.2487, 7.2521, 7.2543, 7.2551, 7.2548, 7.2544, 7.2553, 7.2549, 7.2545, 7.2541, 7.2537, 7.2533, 7.2542, 7.2551, 7.2548, 7.2545, 7.2532, 7.2528, 7.2524, 7.2521, 7.2517, 7.2526, 7.2522, 7.2518, 7.2514, 7.2511, 7.2507, 7.2504, 7.25, 7.2496, 7.2481, 7.2477, 7.2473, 7.2482, 7.2467, 7.2463, 7.2459, 7.2455, 7.2452, 7.2449, 7.2445, 7.2442, 7.2438, 7.2436, 7.2444, 7.2428, 7.2436, 7.2444, 7.2465, 7.2461, 7.2456, 7.244, 7.2438, 7.2451, 7.246, 7.2504, 7.2501, 7.2497, 7.2494, 7.2503, 7.25, 7.2496, 7.2496, 7.2496, 7.2494, 7.2497, 7.2507, 7.2503, 7.2502, 7.2499, 7.2496, 7.2504, 7.25, 7.2497, 7.2505, 7.2513, 7.2521, 7.2529, 7.2525, 7.2521, 7.2517, 7.2525, 7.2523, 7.2519, 7.2515, 7.2511, 7.2519, 7.2515, 7.25, 7.2509, 7.2519, 7.2514, 7.2545, 7.2553, 7.2552, 7.2549, 7.2545, 7.2541, 7.2538, 7.2534, 7.253, 7.2526, 7.2522, 7.2507, 7.2503, 7.2511, 7.2519, 7.2517, 7.2525, 7.2522, 7.252, 7.2528, 7.2524, 7.252, 7.2505, 7.2513, 7.2511, 7.2507, 7.2502, 7.2497, 7.2507, 7.2503, 7.2501, 7.2498, 7.2507, 7.2515, 7.2513, 7.2497, 7.2505, 7.2501, 7.2498, 7.2494, 7.249, 7.2487, 7.2495, 7.2491, 7.2487, 7.2494, 7.249, 7.2487, 7.2494, 7.249, 7.2486, 7.2484, 7.2481, 7.2479, 7.2499, 7.2495, 7.2507, 7.2505, 7.2512, 7.2509, 7.2516, 7.2512, 7.2509, 7.2505, 7.2501, 7.2497, 7.2493, 7.2501, 7.2486, 7.2482, 7.249, 7.2486, 7.2482, 7.249, 7.2486, 7.2494, 7.2503, 7.2499, 7.2529, 7.2525, 7.2521, 7.2517, 7.2514, 7.2522, 7.2518, 7.2514, 7.251, 7.2506, 7.2503, 7.2499, 7.2495, 7.2503, 7.2499, 7.2496, 7.2492, 7.2489, 7.2496, 7.2492, 7.25, 7.2496, 7.2494, 7.2503, 7.251, 7.2506, 7.2503, 7.251, 7.2507, 7.2516, 7.2526, 7.2521, 7.2518, 7.2503, 7.2512, 7.2509, 7.2506, 7.2503, 7.251, 7.2507, 7.2504, 7.2512, 7.2509, 7.2494, 7.249, 7.2499, 7.2495, 7.2495, 7.2492, 7.2501, 7.2488, 7.2496, 7.2509, 7.2513, 7.2521, 7.2519, 7.2506, 7.2502, 7.251, 7.2509, 7.2512, 7.2509, 7.2517, 7.2524, 7.256, 7.2556, 7.257, 7.257, 7.2566, 7.2562, 7.256, 7.2561, 7.2557, 7.2553, 7.2551, 7.2548, 7.2544, 7.2552, 7.2548, 7.2545, 7.2543, 7.254, 7.255, 7.2546, 7.2531, 7.2527, 7.2513, 7.2509, 7.2542, 7.2538, 7.2533, 7.2541, 7.2538, 7.2535, 7.2532, 7.254, 7.2561, 7.2558, 7.2555, 7.2562, 7.2571, 7.2569, 7.2565, 7.2561, 7.2569, 7.2565, 7.255, 7.2548, 7.259, 7.2594, 7.2579, 7.2579, 7.2587, 7.2607, 7.2603, 7.2599, 7.2596, 7.2604, 7.2611, 7.2619, 7.2615, 7.2611, 7.2609, 7.2594, 7.2591, 7.2587, 7.2595, 7.2603, 7.2611, 7.2596, 7.2592, 7.2589, 7.2585, 7.258, 7.2576, 7.2572, 7.2568, 7.2564, 7.256, 7.2558, 7.2559, 7.2568, 7.2576, 7.2574, 7.2559, 7.2545, 7.2531, 7.2527, 7.2524, 7.2521, 7.2517, 7.2514, 7.251, 7.2507, 7.2515, 7.2523, 7.2556, 7.2555, 7.2552, 7.2548, 7.2555, 7.2574, 7.257, 7.2577, 7.2584, 7.2581, 7.2577, 7.2585, 7.2582, 7.2578, 7.2577, 7.2574, 7.2571, 7.2568, 7.2564, 7.256, 7.2546, 7.2543, 7.2551, 7.2548, 7.2546, 7.2556, 7.2552, 7.2571, 7.2581, 7.2589, 7.2586, 7.2583, 7.258, 7.2576, 7.2573, 7.2573, 7.257, 7.2578, 7.2586, 7.2582, 7.2568, 7.2564, 7.256, 7.2556, 7.2565, 7.2573, 7.257, 7.2567, 7.2565, 7.2573, 7.2571, 7.2568, 7.2564, 7.2561, 7.2568, 7.2576, 7.2574, 7.2571, 7.2567, 7.2575, 7.2582, 7.2578, 7.2586, 7.2572, 7.258, 7.2576, 7.2584, 7.2581, 7.2577, 7.2574, 7.257, 7.2555, 7.2552, 7.256, 7.2556, 7.2554, 7.255, 7.2546, 7.2543, 7.2551, 7.2548, 7.2551, 7.2547, 7.2543, 7.2539, 7.2536, 7.2545, 7.2531, 7.2527, 7.2523, 7.2519, 7.2515, 7.2527, 7.2524, 7.251, 7.2506, 7.2513, 7.2509, 7.2505, 7.2501, 7.2497, 7.2493, 7.2489, 7.2485, 7.2493, 7.249, 7.2487, 7.2487, 7.2483, 7.2504, 7.2501, 7.2522, 7.2531, 7.2527, 7.2524, 7.2532, 7.2529, 7.2525, 7.2533, 7.2541, 7.2538, 7.2535, 7.2532, 7.2529, 7.2525, 7.2522, 7.2518, 7.2515, 7.2512, 7.2509, 7.2506, 7.2493, 7.249, 7.2487, 7.2484, 7.2482, 7.2478, 7.2474, 7.2471, 7.2468, 7.2465, 7.2462, 7.247, 7.2478, 7.2485, 7.2485, 7.2486, 7.2483, 7.248, 7.2478, 7.2475, 7.2472, 7.2471, 7.2468, 7.2464, 7.246, 7.2457, 7.2453, 7.246, 7.2456, 7.2453, 7.2452, 7.2448, 7.2444, 7.2452, 7.246, 7.2456, 7.2454, 7.245, 7.2436, 7.244, 7.2436, 7.2422, 7.2419, 7.2427, 7.2423, 7.2421, 7.2418, 7.2415, 7.2411, 7.2419, 7.2416, 7.2414, 7.2411, 7.2408, 7.2405, 7.2412, 7.2408, 7.2405, 7.2401, 7.2397, 7.2405, 7.2401, 7.2397, 7.2405, 7.2402, 7.2399, 7.2395, 7.2392, 7.24, 7.2396, 7.2394, 7.239, 7.2389, 7.2397, 7.2393, 7.2389, 7.2387, 7.2394, 7.239, 7.2386, 7.2382, 7.2379, 7.2376, 7.2383, 7.2379, 7.2375, 7.2373, 7.237, 7.2368, 7.2364, 7.2361, 7.2358, 7.2355, 7.2351, 7.2347, 7.2354, 7.235, 7.2385, 7.2392, 7.24, 7.2397, 7.2393, 7.2405, 7.2401, 7.2409, 7.241, 7.2406, 7.2402, 7.2399, 7.2396, 7.2392, 7.2389, 7.2387, 7.2373, 7.238, 7.2376, 7.2383, 7.2381, 7.2377, 7.2374, 7.2388, 7.2385, 7.2392, 7.2389, 7.2397, 7.2393, 7.2389, 7.2386, 7.2384, 7.2391, 7.2399, 7.2406, 7.2392, 7.2389, 7.2385, 7.2381, 7.2377, 7.2384, 7.2381, 7.2378, 7.2376, 7.2373, 7.236, 7.2346, 7.2343, 7.2339, 7.2336, 7.2332, 7.2329, 7.2328, 7.2325, 7.2322, 7.2319, 7.2326, 7.2322, 7.2318, 7.2315, 7.2312, 7.2308, 7.2313, 7.2322, 7.2318, 7.2327, 7.2324, 7.2321, 7.2329, 7.2318, 7.2314, 7.2311, 7.2309, 7.2297, 7.2294, 7.2291, 7.2288, 7.2285, 7.2281, 7.2279, 7.2275, 7.2271, 7.2267, 7.2263, 7.2261, 7.2261, 7.2268, 7.2264, 7.2251, 7.2248, 7.2246, 7.2253, 7.2251, 7.2248, 7.2244, 7.2241, 7.2237, 7.2233, 7.2241, 7.2238, 7.2235, 7.2231, 7.2228, 7.2224, 7.2231, 7.2231, 7.2227, 7.2235, 7.2231, 7.2229, 7.2237, 7.2233, 7.224, 7.2247, 7.2243, 7.2239, 7.2237, 7.2233, 7.2229, 7.2225, 7.2233, 7.2241, 7.2248, 7.2244, 7.2242, 7.224, 7.2247, 7.2259, 7.2257, 7.2264, 7.2272, 7.2269, 7.2267, 7.2274, 7.2286, 7.2283, 7.2281, 7.2278, 7.2274, 7.2271, 7.2269, 7.2298, 7.2296, 7.2282, 7.231, 7.2317, 7.2315, 7.2329, 7.2336, 7.2333, 7.2329, 7.2325, 7.2332, 7.2339, 7.2336, 7.2343, 7.2339, 7.2337, 7.2333, 7.2329, 7.2327, 7.2323, 7.233, 7.2327, 7.2324, 7.2332, 7.2341, 7.2349, 7.2357, 7.2354, 7.235, 7.2347, 7.2354, 7.236, 7.2357, 7.2364, 7.2362, 7.2369, 7.2365, 7.2352, 7.2349, 7.2357, 7.2355, 7.2351, 7.2353, 7.2349, 7.2336, 7.2345, 7.2342, 7.2339, 7.2337, 7.237, 7.2366, 7.2363, 7.236, 7.2347, 7.2343, 7.2359, 7.2355, 7.2352, 7.2348, 7.2344, 7.2341, 7.2339, 7.2335, 7.2333, 7.2331, 7.2328, 7.2335, 7.2332, 7.2328, 7.2325, 7.2353, 7.2349, 7.2356, 7.2353, 7.236, 7.2358, 7.2354, 7.236, 7.2356, 7.2353, 7.235, 7.2346, 7.2342, 7.2338, 7.2334, 7.233, 7.2327, 7.2329, 7.2326, 7.2323, 7.2319, 7.2326, 7.2344, 7.234, 7.2347, 7.2343, 7.2339, 7.2326, 7.2322, 7.2319, 7.2316, 7.2312, 7.231, 7.2317, 7.2327, 7.2314, 7.2321, 7.2318, 7.2314, 7.231, 7.2307, 7.2306, 7.2303, 7.231, 7.2298, 7.2306, 7.2304, 7.2301, 7.2309, 7.2305, 7.2302, 7.2298, 7.2306, 7.2303, 7.23, 7.2302, 7.231, 7.2317, 7.2324, 7.2321, 7.2329, 7.2317, 7.2324, 7.2325, 7.2333, 7.233, 7.2326, 7.2323, 7.2319, 7.2327, 7.2323, 7.233, 7.2338, 7.2334, 7.233, 7.2326, 7.2333, 7.2331, 7.2327, 7.2326, 7.2325, 7.2332, 7.2329, 7.2326, 7.2323, 7.2319, 7.2316, 7.2312, 7.2323, 7.2323, 7.2321, 7.2319, 7.2327, 7.2325, 7.2322, 7.233, 7.2326, 7.2322, 7.2319, 7.2315, 7.2312, 7.2319, 7.2317, 7.2314, 7.2321, 7.2328, 7.2325, 7.2322, 7.2318, 7.2314, 7.2321, 7.2318, 7.2325, 7.2321, 7.2317, 7.2313, 7.2309, 7.2305, 7.2301, 7.2297, 7.2294, 7.229, 7.2287, 7.2295, 7.2296, 7.2292, 7.2289, 7.2306, 7.2314, 7.2322, 7.232, 7.2327, 7.2323, 7.2313, 7.231, 7.2308, 7.2305, 7.2301, 7.2324, 7.2323, 7.2324, 7.2321, 7.2328, 7.2326, 7.2323, 7.2331, 7.2328, 7.2328, 7.2337, 7.2334, 7.2331, 7.2328, 7.2325, 7.2326, 7.2314, 7.2302, 7.2299, 7.2296, 7.2303, 7.23, 7.2287, 7.2294, 7.229, 7.2288, 7.2285, 7.2282, 7.2284, 7.2281, 7.228, 7.2278, 7.2275, 7.2272, 7.2269, 7.2265, 7.2262, 7.2258, 7.2266, 7.2274, 7.227, 7.2267, 7.2272, 7.2269, 7.2276, 7.2272, 7.2268, 7.2265, 7.2272, 7.2279, 7.2276, 7.2273, 7.2281, 7.2279, 7.2276, 7.2273, 7.227, 7.2267, 7.2264, 7.226, 7.2257, 7.2254, 7.2251, 7.2247, 7.2244, 7.2241, 7.2238, 7.2235, 7.2223, 7.221, 7.2206, 7.2203, 7.221, 7.2208, 7.2205, 7.2201, 7.2208, 7.2205, 7.2201, 7.2201, 7.2199, 7.2196, 7.2192, 7.219, 7.2196, 7.2202, 7.2198, 7.2195, 7.2192, 7.2189, 7.2186, 7.2194, 7.2194, 7.2219, 7.2241, 7.2237, 7.2234, 7.2231, 7.2237, 7.2244, 7.2251, 7.2247, 7.2245, 7.2252, 7.2258, 7.2258, 7.2256, 7.2263, 7.226, 7.2257, 7.2255, 7.2252, 7.2248, 7.2244, 7.2241, 7.2238, 7.2235, 7.2232, 7.2229, 7.2235, 7.2231, 7.2228, 7.2225, 7.2222, 7.2219, 7.2217, 7.2235, 7.2232, 7.225, 7.2248, 7.2255, 7.2251, 7.2248, 7.2245, 7.2243, 7.224, 7.2237, 7.2235, 7.2242, 7.224, 7.2247, 7.2244, 7.2231, 7.223, 7.2228, 7.2225, 7.2232, 7.2229, 7.2235, 7.2242, 7.2239, 7.2246, 7.2253, 7.2251, 7.2248, 7.2249, 7.2245, 7.2252, 7.2259, 7.2269, 7.2266, 7.2274, 7.2271, 7.2279, 7.2276, 7.2273, 7.2269, 7.2266, 7.2263, 7.2261, 7.2258, 7.2255, 7.2252, 7.2248, 7.2245, 7.2242, 7.2238, 7.2225, 7.2222, 7.2219, 7.2215, 7.2213, 7.221, 7.2208, 7.2204, 7.22, 7.2197, 7.2194, 7.2202, 7.2208, 7.2215, 7.2212, 7.221, 7.2207, 7.2203, 7.2202, 7.2199, 7.2196, 7.2193, 7.219, 7.2187, 7.2184, 7.2182, 7.2179, 7.2176, 7.2174, 7.2171, 7.2168, 7.2165, 7.2162, 7.2159, 7.2166, 7.2168, 7.2165, 7.2162, 7.2158, 7.2166, 7.2173, 7.216, 7.2158, 7.2156, 7.2154, 7.215, 7.2146, 7.2142, 7.2142, 7.214, 7.2147, 7.2144, 7.2142, 7.215, 7.2147, 7.2154, 7.2181, 7.2171, 7.2169, 7.2166, 7.2164, 7.2161, 7.2159, 7.2157, 7.2154, 7.2151, 7.2148, 7.2146, 7.2142, 7.2139, 7.2136, 7.2143, 7.2139, 7.2137, 7.2135, 7.2132, 7.2129, 7.2127, 7.2124, 7.2121, 7.2117, 7.2114, 7.2121, 7.2117, 7.2114, 7.2121, 7.2118, 7.2124, 7.2112, 7.2119, 7.2115, 7.2121, 7.2119, 7.2137, 7.2135, 7.2132, 7.2131, 7.216, 7.2148, 7.2147, 7.2144, 7.2151, 7.2148, 7.2154, 7.2151, 7.2148, 7.2146, 7.2145, 7.2142, 7.2149, 7.2146, 7.2143, 7.214, 7.2137, 7.2144, 7.2142, 7.2139, 7.2135, 7.2132, 7.2136, 7.2143, 7.214, 7.214, 7.2137, 7.2135, 7.2131, 7.2127, 7.2124, 7.212, 7.2117, 7.2114, 7.2111, 7.2108, 7.2104, 7.2092, 7.2089, 7.2087, 7.2094, 7.2091, 7.2089, 7.2096, 7.2093, 7.2101, 7.2109, 7.2106, 7.2113, 7.211, 7.2107, 7.2103, 7.2103, 7.2111, 7.2101, 7.2099, 7.2096, 7.2093, 7.2101, 7.2099, 7.2097, 7.2122, 7.2119, 7.2116, 7.2115, 7.2122, 7.2119, 7.2126, 7.2124, 7.2131, 7.2138, 7.2135, 7.2142, 7.2139, 7.2136, 7.2133, 7.213, 7.2129, 7.2126, 7.2114, 7.2111, 7.2108, 7.2096, 7.2084, 7.2072, 7.2069, 7.2066, 7.2073, 7.207, 7.2066, 7.2072, 7.206, 7.2058, 7.2065, 7.2071, 7.2088, 7.2094, 7.2091, 7.2108, 7.2114, 7.211, 7.2107, 7.2105, 7.2112, 7.2111, 7.2099, 7.2096, 7.2094, 7.2092, 7.2089, 7.2096, 7.2093, 7.2092, 7.2099, 7.2096, 7.2084, 7.2082, 7.2079, 7.2076, 7.2074, 7.2074, 7.2071, 7.2071, 7.2068, 7.2065, 7.2062, 7.2061, 7.2068, 7.2065, 7.2063, 7.2061, 7.2058, 7.2055, 7.2053, 7.2059, 7.2056, 7.2053, 7.206, 7.2057, 7.2056, 7.2053, 7.2051, 7.2061, 7.2071000000000005, 7.2078, 7.2084, 7.2082, 7.2092, 7.2099, 7.2096, 7.2094, 7.2102, 7.21, 7.2097, 7.2094, 7.21, 7.2097, 7.2095, 7.2092, 7.2089, 7.2086, 7.2086, 7.2092, 7.2089, 7.2087, 7.2085, 7.2084, 7.2081, 7.2077, 7.2073, 7.2072, 7.2078, 7.2075, 7.2072, 7.2069, 7.2066, 7.2076, 7.208600000000001, 7.2093, 7.209, 7.2096, 7.2103, 7.211, 7.2116, 7.2123, 7.2133, 7.214300000000001, 7.214, 7.2137, 7.2135, 7.2133, 7.2141, 7.2139, 7.2139, 7.2138, 7.2137, 7.214700000000001, 7.215700000000001, 7.216700000000001, 7.2165, 7.2162, 7.215, 7.2147, 7.2145, 7.2151, 7.2157, 7.2163, 7.216, 7.216, 7.2157, 7.2165, 7.2162, 7.2159, 7.2156, 7.2153, 7.215, 7.2147, 7.2144, 7.215, 7.2139, 7.2127, 7.2126, 7.2132, 7.2129, 7.2126, 7.2122, 7.2119, 7.2129, 7.213900000000001, 7.2136, 7.2133, 7.2139, 7.2136, 7.2133, 7.214, 7.2137, 7.2134, 7.2131, 7.2119, 7.2117, 7.2114, 7.212400000000001, 7.216, 7.2157, 7.2163, 7.2161, 7.2167, 7.2164, 7.216, 7.2158, 7.2156, 7.2154, 7.2151, 7.215, 7.2157, 7.2155, 7.2159, 7.2156, 7.2162, 7.2159, 7.2147, 7.2144, 7.2141, 7.2148, 7.2145, 7.2142, 7.2139, 7.2136, 7.2133, 7.213, 7.2127, 7.2124, 7.2132, 7.213, 7.2136, 7.2133, 7.213, 7.2128, 7.2126, 7.2126, 7.2123, 7.2121, 7.2118, 7.2116, 7.2113, 7.211, 7.2099, 7.2096, 7.2103, 7.2091, 7.2088, 7.2087, 7.2084, 7.2099, 7.2096, 7.2093, 7.209, 7.2087, 7.2093, 7.2099, 7.2097, 7.2094, 7.2091, 7.2088, 7.2087, 7.209, 7.2088, 7.2085, 7.2082, 7.2079, 7.2085, 7.2083, 7.208, 7.2077, 7.2075, 7.2073, 7.2074, 7.2073, 7.208, 7.2090000000000005, 7.2097, 7.2094, 7.2101, 7.2099, 7.2105, 7.2107, 7.2105, 7.2102, 7.2108, 7.2105, 7.2107, 7.2112, 7.2109, 7.2106, 7.2103, 7.21, 7.2098, 7.2095, 7.2092, 7.209, 7.2088, 7.2098, 7.2096, 7.2093, 7.2091, 7.2088, 7.2086, 7.2083, 7.208, 7.2079, 7.2076, 7.2074, 7.2072, 7.207, 7.2068, 7.2065, 7.2063, 7.206, 7.2057, 7.2063, 7.206, 7.2057, 7.2054, 7.2052, 7.2049, 7.2056, 7.2059, 7.2057, 7.2054, 7.2051, 7.2083, 7.2081, 7.2078, 7.2076, 7.2074, 7.2072, 7.2069, 7.2066, 7.2063, 7.206, 7.2057, 7.2054, 7.2052, 7.205, 7.2047, 7.2053, 7.2051, 7.2059, 7.2057, 7.2063, 7.206, 7.2058, 7.2055, 7.2052, 7.205, 7.2056, 7.2054, 7.2064, 7.207400000000001, 7.2071, 7.2068, 7.2082, 7.2115, 7.2112, 7.2127, 7.2133, 7.213, 7.2119, 7.212, 7.2118, 7.2116, 7.2117, 7.2133, 7.213, 7.2127, 7.2134, 7.2132, 7.2132, 7.2138, 7.2127, 7.2124, 7.213, 7.2127, 7.2173, 7.217, 7.2167, 7.2164, 7.2161, 7.2159, 7.2157, 7.2154, 7.2161, 7.2158, 7.2155, 7.2153, 7.2151, 7.2149, 7.2146, 7.2153, 7.2144, 7.216, 7.2172, 7.217, 7.2167, 7.2173, 7.2171, 7.2168, 7.2165, 7.2164, 7.2153, 7.2165, 7.2162, 7.2172, 7.2169, 7.2166, 7.2163, 7.2169, 7.2166, 7.2173, 7.2182, 7.218, 7.2177, 7.2174, 7.2172, 7.2178, 7.2175, 7.2182, 7.2188, 7.2185, 7.2182, 7.218, 7.2178, 7.2175, 7.2172, 7.2178, 7.2176, 7.2173, 7.217, 7.217, 7.2168, 7.2165, 7.2162, 7.2161, 7.2159, 7.2156, 7.2154, 7.2151, 7.2149, 7.2155, 7.2161, 7.2158, 7.2155, 7.2161, 7.2158, 7.2164, 7.2161, 7.2158, 7.2147, 7.2146, 7.2143, 7.214, 7.2144, 7.2143, 7.2141, 7.2139, 7.2136, 7.2137, 7.2134, 7.2131, 7.2129, 7.2127, 7.2124, 7.2121, 7.211, 7.2109, 7.2107, 7.2122, 7.2128, 7.2125, 7.2122, 7.2128, 7.2127, 7.2125, 7.2114, 7.2112, 7.211, 7.2107, 7.2104, 7.2103, 7.21, 7.2098, 7.2095, 7.2092, 7.2089, 7.2087, 7.2093, 7.209, 7.2091, 7.2098, 7.2088, 7.2086, 7.2084, 7.2081, 7.2079, 7.2076, 7.2065, 7.2062, 7.2059, 7.2057, 7.2055, 7.2052, 7.2059, 7.2058, 7.2064, 7.207, 7.2068, 7.2074, 7.208, 7.2077, 7.2083, 7.2112, 7.2109, 7.2115, 7.2113, 7.2119, 7.2129, 7.2135, 7.2132, 7.2129, 7.2126, 7.2133, 7.213, 7.2136, 7.2134, 7.2131, 7.212, 7.2127, 7.2132, 7.2129, 7.2135, 7.2139, 7.2145, 7.2142, 7.214, 7.2137, 7.2143, 7.2148, 7.2145, 7.2153, 7.2159, 7.2165, 7.2171, 7.2168, 7.2165, 7.2162, 7.2159, 7.2156, 7.2153, 7.2182, 7.2179, 7.2177, 7.2175, 7.2172, 7.217, 7.2176, 7.2182, 7.2179, 7.2185, 7.2183, 7.2189, 7.2187, 7.2185, 7.2174, 7.2172, 7.2169, 7.2166, 7.2173, 7.217, 7.2167, 7.2165, 7.2164, 7.2161, 7.2161, 7.2158, 7.2157, 7.2154, 7.2151, 7.2149, 7.2147, 7.2145, 7.2144, 7.2141, 7.213, 7.2136, 7.2133, 7.2139, 7.2137, 7.2134, 7.214, 7.2137, 7.2134, 7.2131, 7.213, 7.2137, 7.2128, 7.2117, 7.2123, 7.2121, 7.2119, 7.2116, 7.2105, 7.2102, 7.2101, 7.2098, 7.2095, 7.2093, 7.209, 7.2087, 7.2085, 7.2092, 7.2089, 7.2086, 7.2083, 7.2081, 7.2078, 7.2075, 7.2073, 7.207, 7.2077, 7.2075, 7.2072, 7.2079, 7.2076, 7.2074, 7.2072, 7.2078, 7.2076, 7.2073, 7.2072, 7.2069, 7.2084, 7.2086, 7.2084, 7.2081, 7.2079, 7.2085, 7.2075, 7.2072, 7.2072, 7.2072, 7.2061, 7.2058, 7.2064, 7.2062, 7.2087, 7.2085, 7.2082, 7.2079, 7.2076, 7.2065, 7.2063, 7.206, 7.2057, 7.2054, 7.2052, 7.2042, 7.2039, 7.2036, 7.2046, 7.2052, 7.2061, 7.2058, 7.2056, 7.2062, 7.2068, 7.2065, 7.2063, 7.206, 7.2057, 7.2067000000000005, 7.2065, 7.2062, 7.2059, 7.2056, 7.2054, 7.2104, 7.2101, 7.2104, 7.2101, 7.2107, 7.2114, 7.212, 7.2117, 7.2123, 7.2129, 7.2127, 7.2134, 7.2132, 7.213, 7.2136, 7.2133, 7.213, 7.213, 7.2128, 7.2135, 7.2132, 7.2129, 7.2118, 7.2115, 7.2112, 7.2109, 7.2098, 7.2095, 7.2092, 7.2089, 7.2079, 7.2077, 7.2074, 7.2082, 7.2079, 7.2068, 7.2066, 7.2055, 7.2061, 7.206, 7.2057, 7.2055, 7.2062, 7.2059, 7.2069, 7.2079, 7.2077, 7.2074, 7.2071, 7.207, 7.2068, 7.2074, 7.208, 7.2077, 7.2087, 7.2077, 7.2087, 7.2084, 7.2081, 7.2091, 7.2089, 7.2087, 7.2084, 7.2081, 7.208, 7.2078, 7.2085, 7.2083, 7.208, 7.2086, 7.2092, 7.209, 7.2087, 7.2099, 7.2096, 7.2093, 7.2091, 7.2097, 7.2094, 7.2092, 7.2089, 7.2086, 7.2083, 7.2089, 7.2095, 7.2092, 7.2089, 7.2086, 7.2084, 7.2101, 7.2099, 7.2096, 7.2085, 7.2083, 7.2086, 7.2083, 7.208, 7.2069, 7.2067, 7.2064, 7.2102, 7.2099, 7.2096, 7.2103, 7.2107, 7.2104, 7.211, 7.2107, 7.2104, 7.2101, 7.2099, 7.2097, 7.2096, 7.2093, 7.2099, 7.2105, 7.2119, 7.2116, 7.2113, 7.2111, 7.2117, 7.2107, 7.2097, 7.2095, 7.2094, 7.2083, 7.2082, 7.2082, 7.2072, 7.2078, 7.2084, 7.2081, 7.2084, 7.209, 7.2096, 7.2094, 7.2092, 7.2098, 7.2096, 7.2102, 7.21, 7.2106, 7.2103, 7.2101, 7.2099, 7.2097, 7.2103, 7.2101, 7.2103, 7.2101, 7.2099, 7.2108, 7.2105, 7.2111, 7.2109, 7.2106, 7.2103, 7.2104, 7.2102, 7.2108, 7.2105, 7.2111, 7.2109, 7.2115, 7.2113, 7.2111, 7.2109, 7.2106, 7.2103, 7.2102, 7.2099, 7.2106, 7.2103, 7.2101, 7.2106, 7.2104, 7.2102, 7.2092, 7.2089, 7.2087, 7.2085, 7.2091, 7.2088, 7.2086, 7.2092, 7.2098, 7.2095, 7.2085, 7.2083, 7.2089, 7.2087, 7.2094, 7.2091, 7.2088, 7.2089, 7.2095, 7.2093, 7.2106, 7.2103, 7.2101, 7.2098, 7.2097, 7.2094, 7.2092, 7.2082, 7.2088, 7.2119, 7.2116, 7.2114, 7.2111, 7.2108, 7.2114, 7.2119, 7.2125, 7.2122, 7.2119, 7.2116, 7.2122, 7.2119, 7.2117, 7.2114, 7.212, 7.2118, 7.2124, 7.213, 7.2144, 7.2141, 7.2147, 7.2149, 7.2151, 7.2151, 7.2149, 7.2146, 7.2144, 7.2159, 7.2158, 7.2156, 7.2154, 7.2152, 7.215, 7.2148, 7.2137, 7.2134, 7.214, 7.2138, 7.2136, 7.2135, 7.2141, 7.2139, 7.2136, 7.2166, 7.2163, 7.2168, 7.2174, 7.2171, 7.2169, 7.2167, 7.2164, 7.2169, 7.2166, 7.2164, 7.2162, 7.2159, 7.2156, 7.2153, 7.2159, 7.2157, 7.2162, 7.2167, 7.2164, 7.2172, 7.2162, 7.2159, 7.2157, 7.2173, 7.2172, 7.2169, 7.2175, 7.219, 7.2196, 7.2194, 7.2192, 7.2197, 7.2195, 7.2192, 7.2198, 7.2195, 7.2201, 7.2206, 7.2204, 7.2202, 7.2208, 7.2205, 7.2211, 7.2209, 7.2215, 7.2212, 7.2209, 7.2214, 7.222, 7.2218, 7.2217, 7.2223, 7.2221, 7.2222, 7.2221, 7.2219, 7.2216, 7.2225, 7.223, 7.2227, 7.2234, 7.2232, 7.223, 7.222, 7.222, 7.2217, 7.2214, 7.223, 7.2244, 7.2242, 7.2241, 7.2239, 7.2262, 7.226, 7.2258, 7.2264, 7.227, 7.2275, 7.228, 7.2278, 7.2275, 7.228, 7.2286, 7.2291, 7.2288, 7.2294, 7.2291, 7.2288, 7.2285, 7.2291, 7.2289, 7.2286, 7.2283, 7.2281, 7.2295, 7.2292, 7.2297, 7.2294, 7.23, 7.2314, 7.2312, 7.2318, 7.2324, 7.233, 7.2328, 7.2325, 7.2322, 7.2319, 7.2316, 7.2313, 7.2311, 7.2309, 7.2306, 7.2309, 7.2307, 7.2304, 7.2302, 7.2292, 7.229, 7.2288, 7.2293, 7.229, 7.2287, 7.2293, 7.2291, 7.2288, 7.2294, 7.2291, 7.2289, 7.2295, 7.2293, 7.2324, 7.233, 7.2328, 7.2326, 7.2324, 7.233, 7.2327, 7.2333, 7.233, 7.2336, 7.2333, 7.233, 7.2327, 7.2337, 7.2334, 7.2347, 7.2344, 7.2341, 7.2331, 7.2336, 7.2341, 7.2346, 7.2351, 7.2348, 7.2346, 7.2351, 7.2356, 7.2361, 7.2366, 7.2363, 7.2368, 7.2365, 7.237, 7.2375, 7.2381, 7.2372, 7.2378, 7.2383, 7.2397, 7.2406, 7.2403, 7.2402, 7.24, 7.2398, 7.2396, 7.2402, 7.2407, 7.2413, 7.2413, 7.2423, 7.2434, 7.2431, 7.2429, 7.2437, 7.2435, 7.2433, 7.2425, 7.2422, 7.2438, 7.2436, 7.2434, 7.2431, 7.2423, 7.2433, 7.2431, 7.2431, 7.2437, 7.2435, 7.2433, 7.243, 7.2428, 7.2425, 7.2427, 7.2433, 7.2424, 7.2421, 7.2418, 7.2423, 7.2421, 7.2435, 7.2432, 7.2438, 7.2435, 7.2432, 7.2429, 7.2427, 7.2432, 7.2429, 7.2434, 7.244, 7.2446, 7.246, 7.2461, 7.2461, 7.2466, 7.2464, 7.2464, 7.2461, 7.2497, 7.2494, 7.25, 7.2497, 7.2494, 7.2491, 7.2489, 7.2503, 7.2502, 7.2501, 7.2499, 7.2491, 7.2489, 7.2487, 7.2486, 7.2484, 7.249, 7.2487, 7.2493, 7.2483, 7.2489, 7.2486, 7.2484, 7.2489, 7.2495, 7.2492, 7.249, 7.2487, 7.2492, 7.2489, 7.2486, 7.2483, 7.2489, 7.2496, 7.2493, 7.249, 7.2496, 7.2493, 7.2491, 7.2497, 7.2487, 7.2485, 7.2483, 7.2482, 7.2487, 7.2501, 7.2507, 7.2512, 7.2519, 7.2516, 7.2513, 7.2511, 7.2516, 7.2521, 7.2519, 7.2516, 7.2521, 7.2527, 7.2525, 7.2515, 7.2513, 7.2534, 7.2532, 7.2538, 7.2536, 7.2534, 7.2531, 7.2537, 7.2542, 7.254, 7.2537, 7.2534, 7.2531, 7.2528, 7.2533, 7.2531, 7.2579, 7.2586, 7.2583, 7.2589, 7.2586, 7.2585, 7.2583, 7.258, 7.2578, 7.2576, 7.2582, 7.258, 7.2579, 7.2577, 7.2577, 7.2575, 7.2572, 7.257, 7.2576, 7.2574, 7.2581, 7.2571, 7.2569, 7.2566, 7.2563, 7.2561, 7.2561, 7.2553, 7.255, 7.2548, 7.2561, 7.2559, 7.2556, 7.2548, 7.2546, 7.2544, 7.2541, 7.2539, 7.2537, 7.2542, 7.2548, 7.2554, 7.2551, 7.2548, 7.2546, 7.2551, 7.2556, 7.2561, 7.2566, 7.2564, 7.2562, 7.256, 7.2558, 7.2564, 7.2561, 7.2566, 7.2563, 7.256, 7.2574, 7.258, 7.2586, 7.2583, 7.2588, 7.2585, 7.2582, 7.2579, 7.2584, 7.259, 7.2596, 7.2594, 7.26, 7.2606, 7.2619, 7.2616, 7.2614, 7.2611, 7.2601, 7.2606, 7.2603, 7.26, 7.2599, 7.2596, 7.2601, 7.2598, 7.2605, 7.2603, 7.26, 7.2598, 7.2595, 7.2592, 7.2589, 7.2586, 7.2583, 7.258, 7.2585, 7.259, 7.2587, 7.2625, 7.2622, 7.2627, 7.2624, 7.2622, 7.262, 7.2625, 7.2622, 7.2619, 7.2616, 7.2621, 7.2634, 7.2624, 7.2621, 7.2628, 7.2625, 7.2631, 7.2636, 7.2642, 7.2648, 7.2646, 7.2644, 7.2649, 7.2654, 7.2651, 7.2648, 7.2646, 7.2644, 7.2642, 7.2639, 7.2637], '192.168.122.116': [8.3165, 7.1263, 6.6252, 6.3727, 6.1836, 6.9492, 6.7511, 6.6381, 7.1247, 6.5315, 6.4767, 6.8352, 7.0941, 6.9616, 6.8629, 6.7767, 7.0683, 7.3196, 7.2649, 7.1905, 7.1251, 7.0388, 6.9821, 6.9255, 7.0921, 7.2585, 7.2078, 7.1539, 7.1168, 7.2599, 7.2199, 7.1614, 7.1212, 7.0774, 7.1024, 7.0597, 7.0582, 7.0103, 6.9775, 6.9488, 6.9326, 6.908, 6.8712, 6.8349, 6.86, 6.8373, 6.8176, 6.792, 6.7674, 6.7457, 6.7403, 6.7274, 6.7144, 6.8812, 6.8546, 7.0785, 7.0635, 6.9511, 6.9314, 6.9202, 6.8329, 6.8366, 6.8176, 6.7984, 6.7854, 6.7853, 6.7636, 6.7551, 6.8171, 6.9746, 6.9539, 6.9333, 6.8494, 6.8281, 6.8086, 6.7886, 6.7805, 6.8361, 6.8168, 6.8689, 6.8503, 6.7784, 6.7605, 6.804, 6.8714, 6.8535, 6.8475, 6.8316, 6.8735, 6.8654, 6.8546, 6.898, 6.9962, 6.9777, 6.9674, 7.0521, 7.0395, 7.0218, 7.0588, 7.0957, 7.0826, 7.0666, 7.0569, 7.0478, 7.0321, 7.0169, 7.0129, 6.996, 6.9379, 6.9276, 6.9195, 6.9531, 6.9385, 6.9464, 6.9401, 6.9319, 6.9232, 6.9546, 6.9411, 6.9313, 6.9177, 6.9046, 6.9372, 6.9672, 6.975, 6.9623, 6.9496, 7.0209, 7.1002, 7.0866, 7.0777, 7.112, 7.1007, 7.1004, 7.0906, 7.0791, 7.1098, 7.101, 7.0939, 7.0823, 7.1096, 7.106, 7.0947, 7.1185, 7.1453, 7.1338, 7.1238, 7.1168, 7.1459, 7.1403, 7.1284, 7.1197, 7.1099, 7.136, 7.1573, 7.1477, 7.1435, 7.3019, 7.2913, 7.279, 7.2683, 7.2575, 7.2474, 7.2364, 7.2281, 7.2191, 7.2126, 7.2049, 7.2264, 7.2157, 7.2472, 7.2398, 7.2303, 7.2188, 7.208, 7.1977, 7.2186, 7.2083, 7.2287, 7.2512, 7.2408, 7.2351, 7.2254, 7.2169, 7.2077, 7.2002, 7.1937, 7.1833, 7.2077, 7.2047, 7.1952, 7.2149, 7.1854, 7.2019, 7.1929, 7.1842, 7.1785, 7.1704, 7.1666, 7.1571, 7.1622, 7.1794, 7.1709, 7.1651, 7.183, 7.1989, 7.2203, 7.2117, 7.2047, 7.1953, 7.2147, 7.2134, 7.2146, 7.2902, 7.2812, 7.2759, 7.267, 7.2584, 7.2506, 7.2468, 7.2409, 7.2346, 7.2371, 7.233, 7.2255, 7.225, 7.2191, 7.211, 7.2056, 7.1972, 7.2121, 7.2037, 7.1962, 7.1884, 7.2035, 7.1979, 7.1902, 7.1839, 7.1787, 7.1759, 7.1686, 7.1612, 7.1535, 7.1463, 7.1389, 7.1354, 7.15, 7.1507, 7.1435, 7.1365, 7.1339, 7.1298, 7.1259, 7.1194, 7.1126, 7.1064, 7.0996, 7.0926, 7.0879, 7.0629, 7.0568, 7.0712, 7.068, 7.0618, 7.0751, 7.0697, 7.0632, 7.0574, 7.0515, 7.0655, 7.0588, 7.0713, 7.0652, 7.0595, 7.0357, 7.0318, 7.0262, 7.0204, 7.0144, 7.0104, 7.0064, 7.0006, 7.0181, 7.0144, 7.0236, 7.0181, 7.0332, 7.0293, 7.0254, 7.02, 7.0181, 7.0137, 7.0085, 7.0216, 7.0157, 7.0282, 7.0226, 7.0205, 7.0155, 7.0282, 7.0243, 7.0207, 7.0176, 7.0332, 7.0289, 7.0438, 7.0573, 7.0522, 7.0658, 7.0603, 7.0576, 7.053, 7.0666, 7.0628, 7.0594, 7.0556, 7.0513, 7.0675, 7.0789, 7.0738, 7.0684, 7.0632, 7.0428, 7.0401, 7.0386, 7.0514, 7.0323, 7.0431, 7.0379, 7.0489, 7.044, 7.0385, 7.0344, 7.0296, 7.0258, 7.0236, 7.035, 7.0315, 7.0272, 7.0225, 7.0179, 7.0127, 7.0082, 7.0036, 6.9991, 6.9948, 6.9905, 6.9868, 6.9842, 6.9798, 6.9904, 6.9864, 6.9815, 7.0121, 7.0205, 7.017, 7.0142, 7.0096, 7.0073, 7.0045, 7.0007, 6.9976, 6.9928, 6.9885, 7.0005, 6.996, 6.9919, 6.9877, 6.9873, 6.9851, 6.9807, 6.9773, 6.9978, 6.9932, 6.9898, 6.9879, 6.9859, 6.9886, 6.9872, 6.986, 6.9824, 6.9918, 6.9897, 6.9871, 6.9837, 6.9817, 6.9804, 6.9811, 6.9647, 6.9626, 6.96, 6.9569, 6.9681, 6.9776, 6.9744, 6.9706, 6.97, 6.9681, 6.9654, 6.9624, 6.9596, 6.9692, 6.978, 6.9822, 6.9807, 6.9768, 6.9741, 6.97, 6.9661, 6.9787, 6.9748, 6.9706, 6.9665, 6.9624, 6.9587, 6.9681, 6.9693, 6.9657, 6.9622, 6.9597, 6.969, 6.9664, 6.9639, 6.9636, 6.9595, 6.9577, 6.9553, 6.956300000000001, 6.9532, 6.9385, 6.9351, 6.9446, 6.9411, 6.938, 6.9272, 6.9237, 6.92, 6.9163, 6.9381, 6.9365, 6.9452, 6.9415, 6.9393, 6.9357, 6.9323, 6.9289, 6.9267, 6.913, 6.9224, 6.9086, 6.9057, 6.9029, 6.8997, 6.897, 6.8941, 6.8913, 6.8882, 6.8858, 6.893, 6.9014, 6.8983, 6.896, 6.8832, 6.8799, 6.8769, 6.8753, 6.8722, 6.8694, 6.8776, 6.8744, 6.8715, 6.8685, 6.8667, 6.8634, 6.8609, 6.8619, 6.8817, 6.9128, 6.9097, 6.918, 6.915, 6.9238, 6.931, 6.9279, 6.9469, 6.9455, 6.9536, 6.9406, 6.9373, 6.9351, 6.9227, 6.9314, 6.928, 6.9256, 6.9128, 6.9002, 6.9012, 6.9105, 6.9078, 6.9054, 6.9033, 6.9008, 6.899, 6.9079, 6.9056, 6.9145, 6.9122, 6.9104, 6.9073, 6.9041, 6.9018, 6.8986, 6.9075, 6.9052, 6.9043, 6.9121, 6.9191, 6.9175, 6.9145, 6.9121, 6.9092, 6.952, 6.9488, 6.9561, 6.9529, 6.9616, 6.9586, 6.9581, 6.9569, 6.9544, 6.9552, 6.9532, 6.9512, 6.9579, 6.9664, 6.9661, 6.9639, 6.9619, 6.9587, 6.9575, 6.9563, 6.9551, 6.953, 6.9606, 6.9576, 6.9615, 6.968, 6.965, 6.9733, 6.9794, 6.9864, 6.9859, 6.9833, 6.9805, 6.9775, 6.9753, 6.9726, 6.9796, 6.9767, 6.9836, 6.9807, 6.9776, 6.9747, 6.9721, 6.9794, 6.9865, 6.9857, 6.9891, 6.9864, 6.9837, 6.9809, 6.9782, 6.9854, 6.9839, 6.9909, 6.9884, 6.9979, 6.9949, 6.9923, 6.9911, 6.9899, 6.9875, 6.9885, 6.9863, 6.984, 6.985, 6.986000000000001, 6.9845, 6.9818, 6.9804, 6.9809, 6.9784, 6.9996, 7.0066, 6.9958, 6.9936, 6.9913, 6.9889, 6.996, 7.0008, 7.0169, 7.0147, 7.0133, 7.0205, 7.0192, 7.0169, 7.0252, 7.0238, 7.0218, 7.0287, 7.0261, 7.0246, 7.0235, 7.0216, 7.0202, 7.0185, 7.016, 7.0131, 7.0111, 7.0093, 7.0075, 7.01, 7.008, 7.0073, 7.0048, 7.0031, 7.027, 7.0169, 7.0144, 7.0119, 7.0092, 7.0082, 7.0142, 7.021, 7.0183, 7.0243, 7.0226, 7.0199, 7.0172, 7.0149, 7.0214, 7.0188, 7.0161, 7.0142, 7.0127, 7.0109, 7.0167, 7.0152, 7.0136, 7.012, 7.01, 7.0075, 7.0135, 7.0198, 7.0252, 7.0228, 7.0214, 7.0276, 7.0251, 7.0236, 7.0213, 7.02, 7.0257, 7.0233, 7.0293, 7.0349, 7.0403, 7.0457, 7.0448, 7.0423, 7.0397, 7.0453, 7.0431, 7.0509, 7.0563, 7.0546, 7.0522, 7.0509, 7.0488, 7.0537, 7.0514, 7.0492, 7.0466, 7.0517, 7.0495, 7.0559, 7.0541, 7.0603, 7.0661, 7.0635, 7.0693, 7.0675, 7.0649, 7.0705, 7.0687, 7.0736, 7.0721, 7.0704, 7.0759, 7.074, 7.0727, 7.0778, 7.0754, 7.0744, 7.0799, 7.0775, 7.0896, 7.0947, 7.1055, 7.103, 7.1024, 7.1, 7.0976, 7.103, 7.1004, 7.098, 7.0964, 7.1019, 7.1004, 7.098, 7.0964, 7.0941, 7.0924, 7.09, 7.0878, 7.0802, 7.0856, 7.092, 7.0908, 7.0822, 7.0965, 7.0884, 7.0892, 7.0871, 7.0846, 7.0829, 7.0805, 7.0782, 7.0833, 7.0808, 7.0865, 7.0849, 7.0836, 7.0831, 7.0807, 7.0786, 7.0798, 7.0779, 7.0902, 7.0957, 7.0937, 7.0917, 7.0896, 7.0962, 7.1011, 7.0995, 7.0972, 7.095, 7.0933, 7.0911, 7.0892, 7.087, 7.0846, 7.0825, 7.0803, 7.0782, 7.0792, 7.0774, 7.0753, 7.0681, 7.0683, 7.0823, 7.0803, 7.0798, 7.0783, 7.0761, 7.0742, 7.0729, 7.0724, 7.0701, 7.0693, 7.0678, 7.0728, 7.071, 7.0687, 7.073, 7.0779, 7.0763, 7.0748, 7.0727, 7.0706, 7.0855, 7.0834, 7.1005, 7.0927, 7.0979, 7.0968, 7.1017, 7.1067, 7.1047, 7.1034, 7.1019, 7.1, 7.098, 7.0959, 7.1004, 7.0991, 7.0911, 7.0894, 7.0989, 7.0975, 7.0954, 7.1001, 7.1046, 7.1038, 7.1085, 7.1078, 7.1062, 7.1048, 7.1028, 7.1006, 7.0985, 7.0979, 7.0957, 7.0946, 7.0929, 7.0913, 7.0892, 7.0878, 7.0873, 7.0853, 7.0836, 7.0819, 7.0804, 7.0849, 7.0829, 7.0809, 7.0852, 7.0891, 7.094, 7.0926, 7.0974, 7.0962, 7.0945, 7.0937, 7.0918, 7.0897, 7.0879, 7.0927, 7.091, 7.0891, 7.0878, 7.0862, 7.0842, 7.0887, 7.0866, 7.0844, 7.0824, 7.0844, 7.0822, 7.0802, 7.0786, 7.0768, 7.0753, 7.0798, 7.0777, 7.082, 7.0801, 7.0844, 7.0887, 7.0873, 7.0855, 7.0836, 7.0818, 7.0863, 7.0846, 7.083, 7.0812, 7.0797, 7.0783, 7.0766, 7.0776, 7.0759, 7.0746, 7.0811, 7.0849, 7.0888, 7.0926, 7.0919, 7.0962, 7.095, 7.0932, 7.0914, 7.0897, 7.0938, 7.0975, 7.0956, 7.0949, 7.0946, 7.0934, 7.0918, 7.09, 7.088, 7.0861, 7.0843, 7.0828, 7.0815, 7.0854, 7.0835, 7.0819, 7.0812, 7.0805, 7.0791, 7.078, 7.0822, 7.0809, 7.0791, 7.0778, 7.0759, 7.0741, 7.0782, 7.0778, 7.0771, 7.0776, 7.0758, 7.0743, 7.0733, 7.0716, 7.0699, 7.0793, 7.0951, 7.0933, 7.0978, 7.1014, 7.1001, 7.0988, 7.0976, 7.0963, 7.0945, 7.0924, 7.0908, 7.089, 7.0925, 7.0908, 7.089, 7.0881, 7.0863, 7.0846, 7.0828, 7.076, 7.0743, 7.0726, 7.071, 7.0756, 7.0739, 7.0722, 7.0732, 7.0719, 7.0767, 7.0752, 7.0735, 7.072, 7.0705, 7.069, 7.0672, 7.0655, 7.0695, 7.0677, 7.066, 7.0643, 7.0629, 7.0614, 7.0558, 7.0597, 7.0636, 7.0675, 7.0664, 7.0702, 7.0684, 7.0668, 7.0706, 7.0689, 7.0671, 7.0653, 7.0639, 7.0688, 7.0683, 7.0617, 7.0656, 7.0694, 7.068, 7.0666, 7.0653, 7.069, 7.0684, 7.0667, 7.0706, 7.0689, 7.0682, 7.0707, 7.0691, 7.0674, 7.069, 7.0674, 7.0656, 7.0645, 7.068, 7.071, 7.0699, 7.064, 7.0626, 7.0691, 7.0674, 7.0713, 7.0649, 7.0634, 7.057, 7.0614, 7.0699, 7.0681, 7.0669, 7.0668, 7.0665, 7.0699, 7.0683, 7.0666, 7.0603, 7.0586, 7.0571, 7.0608, 7.0592, 7.0629, 7.0667, 7.0722, 7.0761, 7.0746, 7.073, 7.0715, 7.0701, 7.0688, 7.0734, 7.0727, 7.0732, 7.0715, 7.0703, 7.0723, 7.0763, 7.0746, 7.0729, 7.0683, 7.068, 7.0664, 7.0657, 7.064, 7.0624, 7.0611, 7.0597, 7.0584, 7.0567, 7.0599, 7.0585, 7.0619, 7.0602, 7.0594, 7.0584, 7.0568, 7.0553, 7.0539, 7.0525, 7.0512, 7.0496, 7.0482, 7.0569, 7.0558, 7.0548, 7.0537, 7.052, 7.0506, 7.049, 7.0475, 7.0511, 7.0496, 7.048, 7.0471, 7.0468, 7.0454, 7.0439, 7.0434, 7.0384, 7.052, 7.0505, 7.0491, 7.0478, 7.0512, 7.05, 7.0486, 7.0474, 7.0508, 7.0493, 7.0478, 7.0509, 7.0496, 7.0528, 7.056, 7.0545, 7.053, 7.0559, 7.0593, 7.0577, 7.0568, 7.0557, 7.0595, 7.0625, 7.0759, 7.0743, 7.0728, 7.0726, 7.0731, 7.0719, 7.0703, 7.0689, 7.0682, 7.0671, 7.0657, 7.0691, 7.0724, 7.071, 7.0698, 7.0683, 7.0716, 7.0704, 7.0706, 7.0796, 7.0864, 7.0913, 7.0954, 7.0945, 7.0933, 7.0965, 7.095, 7.0945, 7.0933, 7.0918, 7.0903, 7.0893, 7.0879, 7.0866, 7.0851, 7.0836, 7.0868, 7.0899, 7.0883, 7.0869, 7.0858, 7.0851, 7.0889, 7.0877, 7.0864, 7.0849, 7.0835, 7.0825, 7.0811, 7.0811, 7.08, 7.0789, 7.0779, 7.0799, 7.0788, 7.0822, 7.0808, 7.0795, 7.0831, 7.0835, 7.0826, 7.0829, 7.0859, 7.0847, 7.0833, 7.0822, 7.0808, 7.0858, 7.0845, 7.0836, 7.0821, 7.0814, 7.0856, 7.0809, 7.0796, 7.0783, 7.0772, 7.0761, 7.0747, 7.07, 7.0699, 7.0688, 7.0675, 7.066, 7.0691, 7.072, 7.0884, 7.0913, 7.0989, 7.1108, 7.1182, 7.1168, 7.1154, 7.114, 7.1128, 7.1114, 7.1143, 7.1133, 7.112, 7.115, 7.1136, 7.1123, 7.1112, 7.1098, 7.1085, 7.107, 7.1062, 7.1047, 7.1039, 7.1069, 7.1054, 7.1083, 7.1075, 7.1106, 7.1097, 7.1084, 7.107, 7.1061, 7.1097, 7.1088, 7.1087, 7.1073, 7.106, 7.1046, 7.1035, 7.1021, 7.1053, 7.1045, 7.1035, 7.1064, 7.1092, 7.1121, 7.1107, 7.1136, 7.1122, 7.111, 7.1095, 7.1081, 7.1115, 7.1102, 7.1131, 7.1118, 7.1106, 7.1092, 7.1119, 7.1151, 7.1139, 7.1146, 7.1134, 7.1126, 7.1156, 7.1147, 7.1178, 7.1208, 7.12, 7.119, 7.1223, 7.1212, 7.1204, 7.1189, 7.118, 7.1174, 7.1206, 7.1241, 7.1227, 7.1215, 7.1204, 7.1195, 7.1183, 7.1173, 7.1163, 7.1149, 7.1135, 7.1121, 7.115, 7.1182, 7.1171, 7.116, 7.1149, 7.1138, 7.1127, 7.1114, 7.1155, 7.1143, 7.1132, 7.112, 7.119, 7.1219, 7.1208, 7.1198, 7.1187, 7.1175, 7.1169, 7.1157, 7.1155, 7.1143, 7.1257, 7.1244, 7.1234, 7.1267, 7.1296, 7.1284, 7.127, 7.1264, 7.1252, 7.1203, 7.1189, 7.1176, 7.1163, 7.115, 7.1139, 7.1132, 7.112, 7.115, 7.1142, 7.1129, 7.1122, 7.1116, 7.1106, 7.1093, 7.1084, 7.1035, 7.1023, 7.1014, 7.1043, 7.1034, 7.1022, 7.1008, 7.1016, 7.1006, 7.0995, 7.102, 7.1009, 7.0998, 7.0996, 7.0984, 7.0972, 7.0963, 7.095, 7.0938, 7.0891, 7.0878, 7.0866, 7.0852, 7.0842, 7.0833, 7.0865, 7.0875, 7.0865, 7.0893, 7.0881, 7.0909, 7.0895, 7.0883, 7.0873, 7.0829, 7.083900000000001, 7.084900000000001, 7.0846, 7.0833, 7.0823, 7.0811, 7.0842, 7.0796, 7.0823, 7.0833, 7.084300000000001, 7.0834, 7.0826, 7.082, 7.0808, 7.08, 7.0791, 7.0785, 7.0778, 7.0765, 7.0752, 7.0742, 7.077, 7.0758, 7.0783, 7.0775, 7.0802, 7.083, 7.0817, 7.081, 7.0765, 7.0792, 7.0779, 7.0806, 7.0795, 7.0824, 7.0816, 7.0806, 7.0832, 7.0828, 7.0822, 7.081, 7.0804, 7.0793, 7.0784, 7.0797, 7.0807, 7.0817000000000005, 7.0805, 7.08, 7.0788, 7.0776, 7.0768, 7.0756, 7.0745, 7.0738, 7.0764, 7.0752, 7.0742, 7.0769, 7.0757, 7.0745, 7.0742, 7.073, 7.0719, 7.0746, 7.0772, 7.0798, 7.0786, 7.0886, 7.0913, 7.0903, 7.089, 7.0879, 7.0867, 7.0893, 7.0919, 7.0909, 7.09, 7.0887, 7.091, 7.0899, 7.089, 7.0879, 7.0908, 7.0898, 7.0889, 7.0881, 7.087, 7.0897, 7.0923, 7.0919, 7.0907, 7.0897, 7.0908, 7.0928, 7.096, 7.0968, 7.0956, 7.098, 7.097, 7.0993, 7.0984, 7.0975, 7.0963, 7.0988, 7.0975, 7.1, 7.0991, 7.0979, 7.0967, 7.0992, 7.1016, 7.1004, 7.0993, 7.0985, 7.1011, 7.0999, 7.0991, 7.098, 7.1007, 7.1001, 7.0993, 7.0983, 7.0972, 7.0966, 7.0956, 7.0946, 7.0972, 7.096, 7.095, 7.0941, 7.093, 7.0942, 7.0941, 7.0933, 7.1, 7.1025, 7.1013, 7.1005, 7.0999, 7.1023, 7.1017, 7.1011, 7.1001, 7.099, 7.1017, 7.1046, 7.101, 7.1005, 7.1032, 7.106, 7.1051, 7.1042, 7.1033, 7.1024, 7.1016, 7.1006, 7.0964, 7.0955, 7.0946, 7.0939, 7.0935, 7.0931, 7.092, 7.0908, 7.0933, 7.0922, 7.091, 7.0898, 7.0903, 7.0891, 7.0883, 7.0872, 7.0862, 7.0885, 7.0875, 7.0873, 7.0861, 7.085, 7.0847, 7.0836, 7.0794, 7.0784, 7.0773, 7.0762, 7.0751, 7.074, 7.073, 7.0723, 7.0712, 7.0702, 7.0692, 7.0692, 7.0691, 7.068, 7.0688, 7.0687, 7.0713, 7.0703, 7.0691, 7.0682, 7.0673, 7.0663, 7.0653, 7.068, 7.0673, 7.0639, 7.0663, 7.0689, 7.0678, 7.0669, 7.0657, 7.0646, 7.0637, 7.0626, 7.0652, 7.0675, 7.0668, 7.066, 7.0657, 7.0648, 7.067, 7.0659, 7.0658, 7.0647, 7.0638, 7.066, 7.0683, 7.0675, 7.0664, 7.066, 7.065, 7.0679, 7.0669, 7.0692, 7.0689, 7.0682, 7.0672, 7.0672, 7.0732, 7.073, 7.072, 7.071, 7.0703, 7.0693, 7.0685, 7.0675, 7.0696, 7.0686, 7.0676, 7.0703, 7.0704, 7.073, 7.072, 7.0709, 7.0699, 7.0724, 7.0714, 7.0725, 7.0715, 7.0705, 7.0699, 7.0713, 7.0703, 7.0693, 7.0688, 7.0713, 7.0703, 7.0695, 7.0686, 7.0782, 7.0792, 7.0802000000000005, 7.0793, 7.0785, 7.0776, 7.0802, 7.0826, 7.0818, 7.084, 7.0833, 7.0825, 7.0817, 7.0807, 7.0798, 7.0822, 7.0815, 7.0804, 7.0765, 7.0729, 7.075, 7.0742, 7.0737, 7.0726, 7.0747, 7.0741, 7.0763, 7.0783, 7.0805, 7.0829, 7.0849, 7.0845, 7.0867, 7.086, 7.0882, 7.0872, 7.0862, 7.0885, 7.0908, 7.0905, 7.0925, 7.0939, 7.093, 7.0921, 7.0882, 7.0877, 7.087, 7.0861, 7.0886, 7.0877, 7.0868, 7.0859, 7.0849, 7.0838, 7.083, 7.0851, 7.084, 7.0836, 7.0856, 7.0845, 7.0834, 7.0856, 7.0847, 7.087, 7.0862, 7.0827, 7.0818, 7.0813, 7.0835, 7.0886, 7.0879, 7.087, 7.0859, 7.085, 7.084, 7.0864, 7.0854, 7.0846, 7.0837, 7.0826, 7.0817, 7.0976, 7.0966, 7.0996, 7.0988, 7.0979, 7.1002, 7.102, 7.104, 7.103, 7.1022, 7.1014, 7.1035, 7.1025, 7.1015, 7.1025, 7.1021, 7.1064, 7.1054, 7.106400000000001, 7.1059, 7.1049, 7.1059, 7.1081, 7.1102, 7.1093, 7.1083, 7.1074, 7.1066, 7.1057, 7.1047, 7.1039, 7.1077, 7.1069, 7.1064, 7.1076, 7.1086, 7.1096, 7.1089, 7.1116, 7.1141, 7.1133, 7.1126, 7.1136, 7.1128, 7.1091, 7.109, 7.1082, 7.1072, 7.1092, 7.1085, 7.1106, 7.1127, 7.112, 7.1142, 7.1194, 7.1187, 7.1181, 7.117, 7.1182, 7.1172, 7.1168, 7.1158, 7.1184, 7.1174, 7.1167, 7.113, 7.112, 7.111, 7.1101, 7.1091, 7.1081, 7.1101, 7.1065, 7.1056, 7.1111, 7.1102, 7.1092, 7.111, 7.1102, 7.1123, 7.1116, 7.1106, 7.1096, 7.109, 7.1082, 7.1105, 7.107, 7.106, 7.1057, 7.1051, 7.1078, 7.1099, 7.109, 7.1082, 7.1074, 7.1066, 7.1057, 7.1078, 7.1099, 7.109, 7.1145, 7.1136, 7.1225, 7.1217, 7.1182, 7.1173, 7.1224, 7.1222, 7.1233, 7.1225, 7.122, 7.1211, 7.1202, 7.1195, 7.1199, 7.1189, 7.1247, 7.1239, 7.123, 7.122, 7.1216, 7.1236, 7.1255, 7.1247, 7.1243, 7.1235, 7.1255, 7.1246, 7.1211, 7.1203, 7.1194, 7.1215, 7.1225000000000005, 7.1218, 7.1208, 7.1228, 7.1246, 7.1237, 7.1228, 7.1224, 7.1214, 7.1205, 7.1225, 7.1218, 7.1209, 7.1229, 7.122, 7.121, 7.1202, 7.1222, 7.1215, 7.1205, 7.1196, 7.1215, 7.1209, 7.1201, 7.1166, 7.1189, 7.1181, 7.1172, 7.1191, 7.1182, 7.1175, 7.1167, 7.1162, 7.1156, 7.1152, 7.1144, 7.1135, 7.1101, 7.1094, 7.1114, 7.1105, 7.1098, 7.109, 7.1109, 7.1104, 7.1095, 7.1086, 7.1078, 7.107, 7.115, 7.117, 7.1162, 7.1182, 7.1173, 7.1164, 7.1184, 7.115, 7.1143, 7.1163, 7.1165, 7.1157, 7.1148, 7.1114, 7.1105, 7.1101, 7.1094, 7.1085, 7.1078, 7.1069, 7.1089, 7.1087, 7.108, 7.107, 7.1063, 7.1054, 7.1048, 7.1041, 7.1031, 7.1059, 7.1052, 7.1045, 7.1063, 7.1055, 7.1047, 7.104, 7.1058, 7.105, 7.1071, 7.1063, 7.1057, 7.1081, 7.1076, 7.1086, 7.1096, 7.110600000000001, 7.1127, 7.1122, 7.1116, 7.1115, 7.1106, 7.1097, 7.1089, 7.1081, 7.1111, 7.1129, 7.112, 7.1139, 7.1132, 7.1124, 7.1116, 7.1106, 7.1097, 7.1123, 7.1118, 7.1085, 7.1103, 7.1096, 7.1088, 7.1079, 7.1074, 7.1096, 7.1087, 7.1078, 7.1074, 7.1092, 7.1087, 7.1078, 7.1071, 7.1065, 7.1063, 7.1068, 7.1089, 7.1082, 7.1074, 7.1066, 7.1059, 7.1051, 7.1047, 7.1042, 7.1039, 7.103, 7.1023, 7.1014, 7.1035, 7.1028, 7.1021, 7.1014, 7.1033, 7.1024, 7.1017, 7.1009, 7.1028, 7.1044, 7.1062, 7.1078, 7.1088000000000005, 7.1079, 7.107, 7.1087, 7.1081, 7.1049, 7.1042, 7.1039, 7.104, 7.1035, 7.1053, 7.1025, 7.1028, 7.1022, 7.1013, 7.1033, 7.1043, 7.105300000000001, 7.1075, 7.1076, 7.1074, 7.1092, 7.1083, 7.1077, 7.1069, 7.1063, 7.1031, 7.1051, 7.1071, 7.1062, 7.1056, 7.1057, 7.1027, 7.1046, 7.104, 7.1039, 7.1031, 7.1024, 7.1023, 7.1015, 7.1007, 7.1001, 7.0992, 7.0985, 7.0995, 7.1005, 7.101500000000001, 7.1059, 7.105, 7.1044, 7.1072, 7.1066, 7.1057, 7.1026, 7.1017, 7.1009, 7.1023, 7.1015, 7.1007, 7.1001, 7.0993, 7.100300000000001, 7.101300000000001, 7.1005, 7.1029, 7.1021, 7.1039, 7.1163, 7.1155, 7.1147, 7.1139, 7.1137, 7.1129, 7.1129, 7.1122, 7.1115, 7.1107, 7.1101, 7.1101, 7.107, 7.107, 7.1062, 7.1058, 7.1049, 7.1083, 7.1074, 7.1066, 7.1057, 7.1051, 7.1047, 7.1095, 7.1114, 7.1107, 7.1098, 7.1091, 7.1086, 7.1078, 7.1096, 7.1065, 7.1084, 7.1076, 7.1092, 7.1083, 7.1077, 7.1096, 7.1093, 7.1088, 7.1098, 7.1114, 7.1105, 7.1096, 7.1091, 7.1118, 7.111, 7.1106, 7.1122, 7.1114, 7.1106, 7.11, 7.1092, 7.1116, 7.1109, 7.1128, 7.1145, 7.1142, 7.1137, 7.1133, 7.1151, 7.1145, 7.1137, 7.1164, 7.1158, 7.1153, 7.1146, 7.1164, 7.1157, 7.1152, 7.1146, 7.1139, 7.1131, 7.1124, 7.1116, 7.1135, 7.113, 7.1147, 7.114, 7.1133, 7.1125, 7.112, 7.1115, 7.1108, 7.1128, 7.1119, 7.1111, 7.1081, 7.1101, 7.1094, 7.1114, 7.1109, 7.1104, 7.1096, 7.109, 7.1082, 7.1077, 7.1099, 7.1095, 7.1088, 7.1103, 7.1096, 7.1089, 7.1085, 7.1126, 7.112, 7.1113, 7.1129, 7.1121, 7.1138, 7.1144, 7.1138, 7.114800000000001, 7.1144, 7.1135, 7.1153, 7.1146, 7.1141, 7.1134, 7.1155, 7.1175, 7.1192, 7.1185, 7.1202, 7.1196, 7.1216, 7.1233, 7.1227, 7.1222, 7.1217, 7.1216, 7.121, 7.1204, 7.1198, 7.1195, 7.1188, 7.1181, 7.1175, 7.1168, 7.116, 7.118, 7.1173, 7.1167, 7.1162, 7.1155, 7.1172, 7.1164, 7.1158, 7.1173, 7.1144, 7.1115, 7.1112, 7.1127, 7.1122, 7.1118, 7.111, 7.1128, 7.1129, 7.1145, 7.1166, 7.1183, 7.1179, 7.1149, 7.1141, 7.1133, 7.1125, 7.1117, 7.111, 7.1103, 7.1096, 7.1115, 7.113, 7.1102, 7.1074, 7.1088, 7.1105, 7.1097, 7.1096, 7.1091, 7.1107, 7.1124, 7.1118, 7.1112, 7.1105, 7.1097, 7.1089, 7.1084, 7.11, 7.1116, 7.1111, 7.1104, 7.1099, 7.1093, 7.1088, 7.1081, 7.109100000000001, 7.1107, 7.1099, 7.1091, 7.1084, 7.1076, 7.1068, 7.1084, 7.1078, 7.1052, 7.1044, 7.1036, 7.1028, 7.1022, 7.1016, 7.1009, 7.1027, 7.1021, 7.1017, 7.101, 7.1004, 7.0998, 7.0992, 7.0984, 7.0976, 7.0947, 7.0919, 7.0915, 7.0907, 7.0924, 7.0917, 7.091, 7.0903, 7.09, 7.0895, 7.0889, 7.0881, 7.0874, 7.0891, 7.0908, 7.0902, 7.091200000000001, 7.0924, 7.0918, 7.0911, 7.0911, 7.0909, 7.0902, 7.0918, 7.0913, 7.0939, 7.0933, 7.0927, 7.0941, 7.0935, 7.0949, 7.0944, 7.0936, 7.0931, 7.0946, 7.0939, 7.0934, 7.0951, 7.0944, 7.0916, 7.0909, 7.0902, 7.0875, 7.089, 7.0883, 7.0898, 7.0891, 7.0884, 7.0899, 7.0892, 7.0887, 7.0882, 7.0876, 7.0869, 7.0885, 7.0878, 7.087, 7.0865, 7.0859, 7.0851, 7.0869, 7.0862, 7.0855, 7.085, 7.086, 7.0852, 7.0846, 7.0847, 7.0842, 7.0856, 7.0849, 7.0845, 7.0839, 7.0841, 7.0853, 7.0867, 7.0859, 7.0852, 7.0866, 7.0882, 7.0896, 7.0869, 7.0863, 7.0857, 7.0857, 7.085, 7.0865, 7.0858, 7.0851, 7.0867, 7.086, 7.0876, 7.0891, 7.0885, 7.0901, 7.0894, 7.0887, 7.0882, 7.0898, 7.0891, 7.0885, 7.0878, 7.0871, 7.0866, 7.0859, 7.0852, 7.0869, 7.0863, 7.0835, 7.083, 7.0824, 7.084, 7.0857, 7.0852, 7.0845, 7.0862, 7.0861, 7.0855, 7.0848, 7.0842, 7.0835, 7.0828, 7.0842, 7.0834, 7.0828, 7.0844, 7.0837, 7.0836, 7.0829, 7.0822, 7.0818, 7.0811, 7.0825, 7.0823, 7.0837, 7.0833, 7.0826, 7.082, 7.0836, 7.083, 7.0824, 7.0819, 7.0814, 7.0829, 7.0822, 7.0817, 7.081, 7.0806, 7.0821, 7.0815, 7.0815, 7.081, 7.0803, 7.0818, 7.0832, 7.0827, 7.082, 7.0813, 7.0829, 7.0871, 7.0866, 7.0883, 7.0877, 7.087, 7.0886, 7.0884, 7.0879, 7.0853, 7.0848, 7.0842, 7.0836, 7.0854, 7.0849, 7.0844, 7.0859, 7.0851, 7.085, 7.0847, 7.0841, 7.0864, 7.0858, 7.0873, 7.0869, 7.0884, 7.0877, 7.0871, 7.0866, 7.086, 7.0856, 7.085, 7.0864, 7.088, 7.0897, 7.0912, 7.0905, 7.0919, 7.0913, 7.0909, 7.0913, 7.0913, 7.0907, 7.09, 7.0893, 7.0909, 7.0885, 7.0879, 7.0882, 7.0875, 7.0869, 7.0879, 7.0853, 7.0846, 7.0841, 7.0855, 7.0867, 7.0881, 7.0964, 7.0959, 7.0975, 7.0969, 7.0967, 7.096, 7.0976, 7.097, 7.0964, 7.096, 7.0934, 7.0927, 7.0942, 7.0937, 7.0953, 7.0968, 7.0961, 7.0984, 7.0998, 7.1013, 7.1029, 7.1023, 7.1038, 7.1031, 7.1046, 7.1059, 7.1054, 7.1048, 7.1043, 7.1037, 7.1031, 7.1046, 7.1041, 7.1035, 7.1028, 7.1022, 7.1015, 7.1008, 7.1005, 7.1001, 7.1018, 7.1011, 7.1026, 7.102, 7.1013, 7.1006, 7.1, 7.0994, 7.0988, 7.1007, 7.1004, 7.0998, 7.0993, 7.1006, 7.1003, 7.1, 7.0996, 7.0989, 7.0982, 7.0997, 7.100700000000001, 7.1002, 7.0999, 7.0993, 7.0988, 7.0983, 7.0978, 7.0971, 7.0965, 7.098, 7.0975, 7.0968, 7.0983, 7.0977, 7.0973, 7.0968, 7.0963, 7.0961, 7.0961, 7.0977, 7.0972, 7.0966, 7.0961, 7.0995, 7.0973, 7.097, 7.0965, 7.096, 7.1003, 7.1018, 7.1013, 7.1029, 7.1055, 7.1056, 7.1074, 7.1068, 7.1063, 7.1083, 7.1083, 7.1098, 7.1112, 7.1105, 7.1119, 7.1133, 7.1127, 7.1124, 7.1119, 7.1098, 7.1097, 7.1092, 7.1088, 7.1089, 7.1147, 7.116, 7.1157, 7.1173, 7.1179, 7.1172, 7.1206, 7.1203, 7.1217, 7.1211, 7.1225, 7.1239, 7.1234, 7.1228, 7.1242, 7.1238, 7.1232, 7.1225, 7.1218, 7.1211, 7.1208, 7.1203, 7.12, 7.1193, 7.121, 7.1225, 7.1218, 7.1214, 7.1209, 7.1202, 7.1218, 7.1215, 7.1209, 7.1205, 7.1198, 7.1192, 7.1185, 7.1182, 7.1178, 7.1174, 7.1169, 7.1163, 7.1159, 7.1155, 7.1152, 7.1147, 7.116, 7.1153, 7.1152, 7.1164, 7.1158, 7.1153, 7.1128, 7.1141, 7.1155, 7.1169, 7.1163, 7.1178, 7.1172, 7.1186, 7.118, 7.1173, 7.1167, 7.1181, 7.1175, 7.1191, 7.1186, 7.1199, 7.1194, 7.1187, 7.1182, 7.1192, 7.1192, 7.1187, 7.1182, 7.1199, 7.1192, 7.1186, 7.1199, 7.1192, 7.1187, 7.118, 7.1177, 7.1171, 7.1184, 7.1178, 7.1172, 7.1165, 7.1162, 7.1176, 7.1152, 7.1128, 7.1122, 7.1116, 7.1112, 7.1106, 7.1101, 7.1095, 7.1088, 7.1082, 7.1092, 7.1085, 7.108, 7.1076, 7.109, 7.1104, 7.1101, 7.1095, 7.109, 7.1102, 7.1118, 7.1112, 7.1107, 7.112, 7.1133, 7.1127, 7.1123, 7.1136, 7.1131, 7.1127, 7.112, 7.1096, 7.1091, 7.1104, 7.1097, 7.1093, 7.1108, 7.1085, 7.1081, 7.1078, 7.1074, 7.1069, 7.1047, 7.1042, 7.1041, 7.1037, 7.1033, 7.1027, 7.1003, 7.0997, 7.100700000000001, 7.101700000000001, 7.1013, 7.1007, 7.1003, 7.1, 7.0996, 7.0995, 7.0988, 7.0984, 7.0998, 7.101, 7.1005, 7.1018, 7.1015, 7.1012, 7.1009, 7.1006, 7.1019, 7.1012, 7.1008, 7.1003, 7.1016, 7.1011, 7.1007, 7.1003, 7.1003, 7.0999, 7.0997, 7.0991, 7.0985, 7.0981, 7.0994, 7.1006, 7.1, 7.0995, 7.1009, 7.1005, 7.1, 7.0995, 7.1008, 7.1021, 7.1015, 7.1009, 7.1005, 7.0999, 7.1011, 7.1023, 7.1016, 7.1049, 7.1043, 7.1037, 7.1031, 7.1044, 7.1038, 7.1051, 7.1045, 7.104, 7.1054, 7.1031, 7.1043, 7.1056, 7.1069, 7.1082, 7.1095, 7.1089, 7.1102, 7.1115, 7.1112, 7.1108, 7.1103, 7.1115, 7.1109, 7.1102, 7.1116, 7.1112, 7.1091, 7.1086, 7.1081, 7.109100000000001, 7.1088, 7.1101, 7.1095, 7.1108, 7.1121, 7.1133, 7.1147, 7.1141, 7.1135, 7.1148, 7.1179, 7.1192, 7.1186, 7.1198, 7.1192, 7.1206, 7.12, 7.1209, 7.1205, 7.12, 7.1194, 7.1188, 7.1182, 7.1176, 7.1171, 7.1185, 7.1198, 7.1194, 7.119, 7.1202, 7.1196, 7.1192, 7.1186, 7.1182, 7.1176, 7.1189, 7.1208, 7.1203, 7.1197, 7.1199, 7.120900000000001, 7.1203, 7.1243, 7.1258, 7.1254, 7.1231, 7.1225, 7.124, 7.1218, 7.122800000000001, 7.1222, 7.1218, 7.1212, 7.1206, 7.1201, 7.1252, 7.1251, 7.1265, 7.126, 7.1255, 7.1232, 7.1243, 7.1237, 7.1236, 7.1231, 7.1244, 7.124, 7.1235, 7.1231, 7.1263, 7.1257, 7.1251, 7.1246, 7.1242, 7.1236, 7.1233, 7.123, 7.1243, 7.1237, 7.1249, 7.1248, 7.1408, 7.1405, 7.1399, 7.1396, 7.1408, 7.1407, 7.1407, 7.1401, 7.141100000000001, 7.1405, 7.1418, 7.1415, 7.143, 7.1436, 7.143, 7.1432, 7.1428, 7.144, 7.1438, 7.1438, 7.1452, 7.1446, 7.1441, 7.1474, 7.147, 7.1465, 7.1461, 7.1463, 7.1457, 7.147, 7.1475, 7.1478, 7.1472, 7.1529, 7.156, 7.1564, 7.1579, 7.1573, 7.1567, 7.1579, 7.1591, 7.1601, 7.1611, 7.162100000000001, 7.1635, 7.1617, 7.1596, 7.161, 7.162, 7.1654, 7.1648, 7.1642, 7.1636, 7.1631, 7.1626, 7.1623, 7.1617, 7.1611, 7.1605, 7.16, 7.1594, 7.1606, 7.1619, 7.1613, 7.1625, 7.1619, 7.1613, 7.1607, 7.1601, 7.1595, 7.1589, 7.1583, 7.158, 7.1559, 7.1537, 7.1515, 7.1509, 7.1503, 7.1517, 7.1529, 7.1539, 7.1549000000000005, 7.1548, 7.156, 7.1556, 7.1567, 7.1579, 7.1573, 7.1567, 7.1566, 7.1561, 7.1573, 7.158, 7.1574, 7.1568, 7.1564, 7.1565, 7.156, 7.1555, 7.1553, 7.1547, 7.1543, 7.1556, 7.1568, 7.1562, 7.1574, 7.1568, 7.1563, 7.1557, 7.1555, 7.1567, 7.1561, 7.1562, 7.1575, 7.1587, 7.1583, 7.1579, 7.1575, 7.1569, 7.1581, 7.1579, 7.1581, 7.1594, 7.1588, 7.1601, 7.1595, 7.159, 7.1585, 7.1581, 7.1595, 7.1608, 7.1605, 7.1636, 7.1647, 7.1644, 7.1659, 7.1672, 7.1668, 7.1663, 7.1641, 7.165100000000001, 7.166100000000001, 7.1674, 7.1711, 7.1723, 7.1701, 7.1713, 7.1708, 7.1721, 7.1716, 7.171, 7.1723, 7.1736, 7.1749, 7.1762, 7.1788, 7.1782, 7.1777, 7.1773, 7.177, 7.1764, 7.176, 7.1773, 7.1808, 7.1837, 7.1832, 7.1863, 7.1859, 7.1872, 7.187, 7.1865, 7.1862, 7.1856, 7.185, 7.1844, 7.1839, 7.1833, 7.1845, 7.1856, 7.1868, 7.1863, 7.1858, 7.1887, 7.1898, 7.1893, 7.1887, 7.1881, 7.1876, 7.1879, 7.1874, 7.1885, 7.1896, 7.1907, 7.1904, 7.19, 7.1894, 7.1888, 7.19, 7.1895, 7.1939, 7.1933, 7.1946, 7.194, 7.1953, 7.1947, 7.1943, 7.1942, 7.1936, 7.1946, 7.1941, 7.1953, 7.1983, 7.1978, 7.1957, 7.1936, 7.1982, 7.1977, 7.2023, 7.2019, 7.2019, 7.2014, 7.2009, 7.2019, 7.2026, 7.2005, 7.2001, 7.1995, 7.1989, 7.2, 7.1994, 7.1989, 7.1984, 7.198, 7.1976, 7.199, 7.1984, 7.1986, 7.1983, 7.1995, 7.1989, 7.1983, 7.1977, 7.1987000000000005, 7.199700000000001, 7.1992, 7.1989, 7.1983, 7.1979, 7.1979, 7.1992, 7.1986, 7.1998, 7.1994, 7.1988, 7.1982, 7.1976, 7.1971, 7.1984, 7.1978, 7.1989, 7.1988, 7.1999, 7.1997, 7.2009, 7.2004, 7.1983, 7.1993, 7.1987, 7.1982, 7.198, 7.1974, 7.1972, 7.1966, 7.196, 7.1955, 7.195, 7.1945, 7.1944, 7.194, 7.1938, 7.1933, 7.1912, 7.1908, 7.1903, 7.1899, 7.1898, 7.1894, 7.1889, 7.1885, 7.1885, 7.1896, 7.1892, 7.1872, 7.1885, 7.188, 7.1875, 7.1871, 7.1867, 7.1863, 7.1857, 7.1852, 7.1833, 7.1833, 7.1828, 7.1823, 7.1833, 7.1843, 7.1839, 7.1835, 7.183, 7.1825, 7.1808, 7.1802, 7.1832, 7.1861, 7.1871, 7.1867, 7.1872, 7.1867, 7.1862, 7.1857, 7.1854, 7.185, 7.1844, 7.1838, 7.1817, 7.1811, 7.1805, 7.1801, 7.1795, 7.1806, 7.18, 7.1797, 7.1798, 7.1826, 7.182, 7.1816, 7.1811, 7.1808, 7.1804, 7.1816, 7.1813, 7.1824, 7.1818, 7.1818, 7.1829, 7.1825, 7.1805, 7.181500000000001, 7.182500000000001, 7.1822, 7.1817, 7.1813, 7.1807, 7.1807, 7.1817, 7.1811, 7.1825, 7.182, 7.1815, 7.1812, 7.1794, 7.1789, 7.1783, 7.1779, 7.1774, 7.1768, 7.1763, 7.1759, 7.1739, 7.1734, 7.1728, 7.1723, 7.1718, 7.1729, 7.1726, 7.1722, 7.1716, 7.1726, 7.1736, 7.1747, 7.1743, 7.1723, 7.1718, 7.1712, 7.1707, 7.1718, 7.1713, 7.1724, 7.1718, 7.1712, 7.1707, 7.1718, 7.1729, 7.1725, 7.1719, 7.1715, 7.1713, 7.1693, 7.1707, 7.1702, 7.1697, 7.1694, 7.1707, 7.1719, 7.1751, 7.1749, 7.1747, 7.1746, 7.1756, 7.1751, 7.1748, 7.1744, 7.1744, 7.1742, 7.174, 7.1737, 7.1749, 7.1745, 7.1775, 7.1771, 7.1784, 7.1778, 7.1772, 7.1767, 7.1762, 7.1758, 7.1754, 7.1766, 7.1762, 7.1758, 7.1753, 7.1764, 7.1775, 7.1769, 7.1765, 7.1746, 7.1744, 7.1739, 7.1735, 7.1752, 7.1747, 7.1742, 7.1738, 7.175, 7.176, 7.1755, 7.175, 7.1761, 7.1755, 7.1766, 7.1761, 7.1758, 7.177, 7.1766, 7.1761, 7.1794, 7.1788, 7.1784, 7.1779, 7.1775, 7.1757, 7.1758, 7.1753, 7.1748, 7.1758, 7.1754, 7.1749, 7.1744, 7.1741, 7.1736, 7.1731, 7.1744, 7.174, 7.1736, 7.1733, 7.173, 7.1729, 7.1724, 7.1721, 7.1716, 7.1726, 7.1722, 7.1717, 7.1713, 7.1709, 7.1703, 7.1698, 7.1695, 7.1693, 7.1689, 7.17, 7.171, 7.1692, 7.169, 7.17, 7.171, 7.1705, 7.1717, 7.1712, 7.1707, 7.1718, 7.1748, 7.1743, 7.1739, 7.175, 7.1746, 7.1766, 7.1762, 7.1765, 7.1762, 7.1774, 7.1769, 7.1765, 7.1762, 7.1757, 7.1768, 7.1779, 7.1774, 7.1769, 7.1779, 7.1789, 7.1785, 7.1795, 7.18, 7.1796, 7.1806, 7.18, 7.1796, 7.1807, 7.1808, 7.1805, 7.1801, 7.1783, 7.1778, 7.1773, 7.1783, 7.1778, 7.1793, 7.1788, 7.1783, 7.1793, 7.182, 7.1815, 7.181, 7.1821, 7.1816, 7.1811, 7.1806, 7.1801, 7.1809, 7.179, 7.1787, 7.1797, 7.1806, 7.1801, 7.1812, 7.1807, 7.1806, 7.1802, 7.1805, 7.1818, 7.1828, 7.183800000000001, 7.1833, 7.1828, 7.1825, 7.1826, 7.1822, 7.1818, 7.1814, 7.181, 7.1809, 7.1804, 7.1807, 7.182, 7.1815, 7.1811, 7.1824, 7.1831, 7.1862, 7.1861, 7.1858, 7.1855, 7.1865000000000006, 7.186, 7.1882, 7.1892, 7.1903, 7.1884, 7.1865, 7.1846, 7.1841, 7.1823, 7.1833, 7.1829, 7.1825, 7.1834, 7.1831, 7.183, 7.1825, 7.1834, 7.1815, 7.1811, 7.1807, 7.1817, 7.1813, 7.1808, 7.1803, 7.1798, 7.1794, 7.1789, 7.1787, 7.1798, 7.1795, 7.1791, 7.1788, 7.1799, 7.1794, 7.1789, 7.1784, 7.1782, 7.1778, 7.1773, 7.1783, 7.1781, 7.1776, 7.1785, 7.178, 7.1776, 7.1772, 7.1783, 7.1778, 7.178800000000001, 7.179800000000001, 7.181, 7.1819, 7.1815, 7.1824, 7.1833, 7.1829, 7.1824, 7.1819, 7.1815, 7.1811, 7.1824, 7.182, 7.1829, 7.181, 7.1841, 7.1851, 7.1846, 7.1846, 7.1843, 7.1838, 7.1836, 7.1846, 7.1841, 7.1836, 7.1847, 7.1843, 7.1844, 7.1846, 7.1879, 7.1875, 7.1886, 7.1882, 7.1877, 7.1872, 7.1868, 7.1864, 7.186, 7.1855, 7.1851, 7.1862, 7.1873, 7.1914, 7.1909, 7.1935, 7.193, 7.1956, 7.1953, 7.1952, 7.1947, 7.1942, 7.1952, 7.1934, 7.1916, 7.1935, 7.193, 7.1926, 7.1923, 7.1932, 7.1927, 7.1922, 7.1933, 7.1944, 7.1953, 7.1949, 7.1945, 7.194, 7.1936, 7.1933, 7.1943, 7.194, 7.1935, 7.193, 7.1925, 7.192, 7.1917, 7.1927, 7.1922, 7.1904, 7.1914, 7.1909, 7.1919, 7.1915, 7.191, 7.1905, 7.1915, 7.1925, 7.1921, 7.1917, 7.1927, 7.1923, 7.1918, 7.1914, 7.1909, 7.1905, 7.1902, 7.1906, 7.1902, 7.1901, 7.1898, 7.1915, 7.1901, 7.1897, 7.1896, 7.1913, 7.191, 7.1906, 7.1907, 7.1892, 7.1922, 7.1918, 7.1928, 7.1927, 7.1923, 7.1933, 7.193, 7.1926, 7.1924, 7.192, 7.1916, 7.1927, 7.1924, 7.192, 7.1931, 7.1926, 7.1923, 7.1906, 7.1917, 7.1914, 7.1911, 7.1906, 7.1902, 7.1903, 7.1898, 7.1893, 7.1903, 7.1901, 7.191, 7.1906, 7.1901, 7.1897, 7.1893, 7.1889, 7.1884, 7.188, 7.1862, 7.1861, 7.1857, 7.1853, 7.1849, 7.1845, 7.1841, 7.1837, 7.1834, 7.183, 7.1841, 7.1837, 7.1849, 7.1844, 7.1839, 7.1823, 7.1805, 7.1803, 7.1798, 7.1795, 7.179, 7.1785, 7.1781, 7.1777, 7.1773, 7.1769, 7.1769, 7.1765, 7.1761, 7.1773, 7.177, 7.1753, 7.1735, 7.1746, 7.1741, 7.1737, 7.1744, 7.1726, 7.1735, 7.173, 7.1727, 7.1724, 7.1721, 7.1719, 7.1719, 7.1715, 7.1729, 7.1725, 7.175, 7.1748, 7.1758, 7.1755, 7.1765, 7.1774, 7.1771, 7.178100000000001, 7.1764, 7.1766, 7.1762, 7.1771, 7.1767, 7.1777, 7.1788, 7.1784, 7.1779, 7.1789, 7.1827, 7.1823, 7.1849, 7.1859, 7.1855, 7.1851, 7.1861, 7.1871, 7.1866, 7.1863, 7.1858, 7.1867, 7.1878, 7.1888, 7.1883, 7.1893, 7.1889, 7.1898, 7.1908, 7.189, 7.1886, 7.1896, 7.1891, 7.189, 7.1885, 7.1883, 7.1879, 7.1888, 7.1887, 7.1884, 7.1879, 7.1875, 7.1871, 7.1866, 7.1861, 7.1843, 7.1839, 7.1836, 7.1845, 7.1842, 7.1837, 7.1833, 7.1829, 7.1825, 7.1821, 7.1831, 7.1826, 7.1836, 7.1845, 7.1847, 7.1843, 7.1838, 7.1835, 7.1844, 7.1842, 7.184, 7.1837, 7.1833, 7.1828, 7.1823, 7.1832, 7.1828, 7.1823, 7.182, 7.1817, 7.1812, 7.1808, 7.1818, 7.1815, 7.181, 7.1806, 7.1801, 7.1796, 7.1791, 7.1788, 7.1798, 7.1807, 7.1804, 7.1799, 7.1795, 7.179, 7.1786, 7.1781, 7.1809, 7.1817, 7.1813, 7.1808, 7.1803, 7.1829, 7.1825, 7.182, 7.1815, 7.1813, 7.181, 7.1806, 7.1803, 7.1798, 7.1793, 7.1802, 7.1799, 7.1794, 7.1793, 7.1803, 7.1812, 7.1808, 7.1818, 7.1828, 7.1825, 7.1821, 7.1817, 7.1814, 7.1811, 7.1808, 7.1804, 7.1802, 7.1798, 7.1807, 7.1803, 7.1798, 7.1809, 7.1809, 7.1822, 7.1818, 7.1814, 7.181, 7.1805, 7.1801, 7.1797, 7.1794, 7.1804, 7.1799, 7.1794, 7.18, 7.1811, 7.1807, 7.1792, 7.1788, 7.1784, 7.1779, 7.1777, 7.1776, 7.1785, 7.1794, 7.1803, 7.1798, 7.1794, 7.1791, 7.1787, 7.1771, 7.1767, 7.1763, 7.1759, 7.1755, 7.1752, 7.1749, 7.1732, 7.1727, 7.1737, 7.1732, 7.1727, 7.1724, 7.1721, 7.1716, 7.1716, 7.1712, 7.1709, 7.1717, 7.1713, 7.1721, 7.1717, 7.1713, 7.1722, 7.1718, 7.1713, 7.1712, 7.1724, 7.172, 7.1717, 7.1774, 7.1772, 7.1769, 7.1766, 7.1778, 7.1775, 7.1772, 7.1768, 7.1779, 7.1789, 7.1785, 7.1783, 7.1779, 7.1788, 7.1798, 7.1782, 7.1779, 7.1775, 7.1779, 7.1775, 7.1771, 7.1755, 7.1765, 7.1763, 7.1759, 7.176, 7.1758, 7.1764, 7.1762, 7.1772, 7.1768, 7.1764, 7.176, 7.1745, 7.1741, 7.1738, 7.1733, 7.1728, 7.1724, 7.1734, 7.1743, 7.1749, 7.1744, 7.1753, 7.1749, 7.1749, 7.1756, 7.1765, 7.1774, 7.1769, 7.1778, 7.1787, 7.1782, 7.1777, 7.1787, 7.1782, 7.179200000000001, 7.1801, 7.1798, 7.1793, 7.1788, 7.1797, 7.1798, 7.1795, 7.1803, 7.1799, 7.1796, 7.1793, 7.1789, 7.1785, 7.1784, 7.1768, 7.1777, 7.1785, 7.1782, 7.1792, 7.1789, 7.1784, 7.1781, 7.1777, 7.1773, 7.1769, 7.1764, 7.176, 7.1768, 7.1765, 7.1774, 7.177, 7.1754, 7.175, 7.1771, 7.1766, 7.1764, 7.1773, 7.1786, 7.1812, 7.1808, 7.1806, 7.1802, 7.18, 7.1809, 7.1806, 7.1847, 7.185700000000001, 7.1855, 7.1852, 7.1861, 7.1857, 7.1854, 7.185, 7.1847, 7.1844, 7.184, 7.1824, 7.182, 7.1829, 7.1827, 7.1823, 7.182, 7.1816, 7.1813, 7.1822, 7.1819, 7.1815, 7.1824, 7.1823, 7.1819, 7.1828, 7.1824, 7.1821, 7.1817, 7.1802, 7.1786, 7.1783, 7.1793, 7.1789, 7.1784, 7.1768, 7.1765, 7.1761, 7.1757, 7.1741, 7.1725, 7.1734, 7.1743, 7.1751, 7.1749, 7.1752, 7.1749, 7.1745, 7.1743, 7.1752, 7.1748, 7.1744, 7.1742, 7.1739, 7.1749, 7.1758, 7.1754, 7.1763, 7.1759, 7.1757, 7.1742, 7.1739, 7.1735, 7.1731, 7.1727, 7.1724, 7.1732, 7.1728, 7.1726, 7.1721, 7.1717, 7.1752, 7.1762, 7.1757, 7.1756, 7.1752, 7.1762, 7.1772, 7.1768, 7.1764, 7.1773, 7.177, 7.1767, 7.1776, 7.1772, 7.1768, 7.1764, 7.1761, 7.1758, 7.1755, 7.176500000000001, 7.1776, 7.1773, 7.1783, 7.178, 7.1776, 7.1785, 7.1794, 7.179, 7.1794, 7.1792, 7.1788, 7.1798, 7.1794, 7.1803, 7.1801, 7.1797, 7.1793, 7.179, 7.1785, 7.1782, 7.1778, 7.1786, 7.1782, 7.1779, 7.1775, 7.1771, 7.178, 7.1776, 7.1772, 7.1768, 7.1753, 7.1748, 7.1745, 7.1742, 7.1737, 7.1734, 7.1743, 7.1752, 7.1749, 7.1745, 7.1741, 7.1738, 7.1747, 7.1744, 7.1741, 7.1737, 7.1732, 7.173, 7.1726, 7.1735, 7.1732, 7.1729, 7.175, 7.1763, 7.176, 7.1756, 7.1764, 7.1772, 7.1768, 7.1766, 7.1762, 7.1759, 7.1755, 7.175, 7.1759, 7.1781, 7.179, 7.1789, 7.1789, 7.1786, 7.1812, 7.181, 7.1807, 7.1791, 7.1788, 7.1784, 7.1781, 7.1779, 7.1775, 7.1783, 7.1784, 7.178, 7.1776, 7.1772, 7.1769, 7.1788, 7.1785, 7.1782, 7.1779, 7.1777, 7.1772, 7.1769, 7.1765, 7.1774, 7.1772, 7.1768, 7.1776, 7.1772, 7.1757, 7.1766, 7.1775, 7.1771, 7.1768, 7.1764, 7.176, 7.1756, 7.176, 7.1747, 7.1756, 7.1752, 7.1763, 7.1772, 7.1768, 7.1765, 7.1793, 7.1778, 7.1763, 7.1771, 7.1768, 7.1764, 7.176, 7.1784, 7.1792, 7.18, 7.1786, 7.1783, 7.178, 7.1789, 7.1787, 7.1774, 7.1771, 7.177, 7.1778, 7.1774, 7.177, 7.1779, 7.1775, 7.176, 7.1757, 7.1753, 7.1752, 7.1748, 7.1744, 7.1741, 7.1737, 7.1733, 7.1729, 7.1726, 7.1735, 7.1731, 7.1739, 7.1735, 7.1722, 7.1731, 7.1729, 7.1737, 7.1734, 7.1748, 7.1758, 7.1755, 7.1751, 7.1747, 7.1744, 7.174, 7.1737, 7.1734, 7.1719, 7.1716, 7.1736, 7.1732, 7.174, 7.1751, 7.1748, 7.1745, 7.1741, 7.1741, 7.1749, 7.1745, 7.1742, 7.1752, 7.1749, 7.1759, 7.1756, 7.1752, 7.1752, 7.1791, 7.1788, 7.1798, 7.1795, 7.1792, 7.1801, 7.1798, 7.1806, 7.1802, 7.1799, 7.1808, 7.1804, 7.1801, 7.1797, 7.1817, 7.1802, 7.1798, 7.1838, 7.1834, 7.183, 7.1838, 7.1835, 7.1844, 7.1829, 7.1826, 7.1823, 7.1819, 7.1815, 7.1811, 7.1808, 7.1805, 7.1801, 7.1809, 7.1805, 7.18, 7.1796, 7.1804, 7.18, 7.1796, 7.1792, 7.1788, 7.1785, 7.1781, 7.1779, 7.1776, 7.1785, 7.178, 7.1782, 7.1777, 7.1788, 7.1785, 7.1782, 7.1791, 7.1788, 7.1784, 7.1783, 7.1779, 7.1787, 7.1783, 7.178, 7.1777, 7.1773, 7.1769, 7.1754, 7.1763, 7.177, 7.1766, 7.1751, 7.1754, 7.175, 7.1759, 7.1756, 7.1752, 7.1749, 7.1734, 7.1731, 7.1739, 7.1735, 7.1745, 7.1753, 7.1753, 7.1749, 7.1745, 7.1742, 7.1727, 7.1724, 7.1721, 7.1722, 7.1744, 7.1753, 7.1738, 7.1735, 7.1731, 7.174, 7.1737, 7.1745, 7.1754, 7.175, 7.1747, 7.1743, 7.1739, 7.1736, 7.1733, 7.1729, 7.1725, 7.1733, 7.1729, 7.1725, 7.1733, 7.1816, 7.1824, 7.1821, 7.1817, 7.1814, 7.181, 7.1806, 7.1802, 7.1798, 7.1806, 7.1802, 7.1799, 7.1807, 7.1803, 7.1805, 7.1801, 7.1797, 7.1805, 7.1801, 7.1816, 7.1812, 7.1816, 7.1812, 7.1809, 7.1817, 7.1813, 7.1809, 7.1806, 7.1814, 7.1813, 7.1809, 7.181, 7.181, 7.1812, 7.1808, 7.1795, 7.1793, 7.179, 7.1786, 7.1799, 7.1797, 7.1795, 7.1791, 7.1787, 7.1783, 7.1779, 7.1766, 7.1774, 7.1774, 7.177, 7.1779, 7.1788, 7.1801, 7.1801, 7.1822, 7.183, 7.1815, 7.1811, 7.1819, 7.1815, 7.1812, 7.1808, 7.1805, 7.1812, 7.1809, 7.1805, 7.1803, 7.18, 7.1809, 7.1818, 7.1816, 7.1825, 7.1822, 7.1818, 7.1829, 7.1826, 7.1846, 7.1844, 7.1841, 7.1838, 7.1827, 7.1834, 7.1842, 7.1849, 7.1857, 7.1854, 7.1861, 7.1861, 7.1869, 7.1865, 7.1873, 7.1869, 7.1866, 7.1874, 7.187, 7.1867, 7.1863, 7.1859, 7.1866, 7.1862, 7.1858, 7.1857, 7.1865, 7.1861, 7.1857, 7.1854, 7.1851, 7.1847, 7.1846, 7.1832, 7.1828, 7.1836, 7.1833, 7.1829, 7.1837, 7.1833, 7.1831, 7.1827, 7.1837, 7.1833, 7.183, 7.1837, 7.1845, 7.1853, 7.1849, 7.1866, 7.1874, 7.1884, 7.188, 7.1878, 7.1875, 7.1872, 7.187, 7.1866, 7.187600000000001, 7.188600000000001, 7.1883, 7.1881, 7.1868, 7.1865, 7.1865, 7.1875, 7.1871, 7.1868, 7.1864, 7.1871, 7.1868, 7.1876, 7.1885, 7.189500000000001, 7.1892, 7.1889, 7.1888, 7.1884, 7.1893, 7.189, 7.1887, 7.1897, 7.1893, 7.1889, 7.1897, 7.1894, 7.189, 7.1898, 7.1905, 7.1901, 7.1908, 7.1905, 7.1902, 7.1899, 7.1908, 7.1904, 7.1913, 7.1917, 7.1914, 7.191, 7.1907, 7.1904, 7.19, 7.1898, 7.1894, 7.1894, 7.1897, 7.1899, 7.1896, 7.1904, 7.1901, 7.1909, 7.1908, 7.1916, 7.1913, 7.192, 7.1916, 7.1924, 7.1921, 7.1918, 7.1914, 7.19, 7.1898, 7.1895, 7.1903, 7.1911, 7.1908, 7.1905, 7.1903, 7.1913, 7.1921, 7.1917, 7.1914, 7.1922, 7.1919, 7.1915, 7.1923, 7.1933, 7.1933, 7.1921, 7.1923, 7.192, 7.1917, 7.1918, 7.1919, 7.191, 7.1906, 7.191, 7.1907, 7.1904, 7.1901, 7.1898, 7.1911, 7.1908, 7.1905, 7.1901, 7.1898, 7.1896, 7.1892, 7.1889, 7.1875, 7.1872, 7.1881, 7.1877, 7.1885, 7.1881, 7.1879, 7.1877, 7.1893, 7.1901, 7.1909, 7.1906, 7.1905, 7.1913, 7.1921, 7.1917, 7.1913, 7.1921, 7.1917, 7.1913, 7.1899, 7.1895, 7.1881, 7.1879, 7.1878, 7.1874, 7.187, 7.1868, 7.1864, 7.1861, 7.1858, 7.1854, 7.184, 7.1847, 7.1844, 7.1873, 7.187, 7.188000000000001, 7.1867, 7.1864, 7.185, 7.1847, 7.1854, 7.1851, 7.1848, 7.1845, 7.1853, 7.1861, 7.1847, 7.1843, 7.184, 7.1836, 7.1844, 7.183, 7.1828, 7.1837, 7.1833, 7.1829, 7.1827, 7.1834, 7.1843, 7.1839, 7.1836, 7.1833, 7.183, 7.1838, 7.1836, 7.1844, 7.1841, 7.1849, 7.1845, 7.1842, 7.1839, 7.1836, 7.1856, 7.1865, 7.1873, 7.188, 7.1877, 7.1874, 7.1882, 7.1879, 7.1876, 7.1872, 7.1868, 7.1865, 7.1862, 7.1858, 7.1854, 7.1864, 7.1874, 7.1871, 7.1867, 7.1863, 7.1859, 7.1856, 7.1852, 7.1848, 7.1836, 7.185, 7.1846, 7.1853, 7.1861, 7.1857, 7.1853, 7.1852, 7.1838, 7.1835, 7.1831, 7.1828, 7.1825, 7.1822, 7.1818, 7.1816, 7.1813, 7.1822, 7.182, 7.1827, 7.1824, 7.182, 7.1816, 7.1812, 7.1798, 7.1794, 7.1802, 7.1799, 7.1796, 7.1792, 7.18, 7.1796, 7.1794, 7.179, 7.1799, 7.1817, 7.1813, 7.1821, 7.182, 7.1827, 7.1823, 7.183, 7.1827, 7.1824, 7.1832, 7.1828, 7.183800000000001, 7.184800000000001, 7.1857, 7.1865, 7.1861, 7.1858, 7.1856, 7.1864, 7.1872, 7.188, 7.19, 7.191000000000001, 7.1906, 7.1902, 7.1909, 7.1905, 7.1912, 7.1908, 7.191800000000001, 7.1915, 7.1912, 7.1919, 7.1916, 7.1924, 7.192, 7.1916, 7.1902, 7.1899, 7.1896, 7.1893, 7.1889, 7.1886, 7.1884, 7.1892, 7.1888, 7.1885, 7.1893, 7.1889, 7.1886, 7.1883, 7.188, 7.1876, 7.1874, 7.1871, 7.1868, 7.1865, 7.1863, 7.1861, 7.1868, 7.1872, 7.1869, 7.1866, 7.1864, 7.1862, 7.1859, 7.1868, 7.1878, 7.1876, 7.1896, 7.1893, 7.189, 7.1886, 7.1893, 7.1892, 7.1889, 7.1887, 7.1884, 7.1882, 7.188, 7.1898, 7.1895, 7.1894, 7.189, 7.189, 7.1887, 7.1885, 7.1882, 7.1892000000000005, 7.19, 7.19, 7.1896, 7.1904, 7.1912, 7.1909, 7.1905, 7.1901, 7.1898, 7.1905, 7.1901, 7.1898, 7.1905, 7.1901, 7.1908, 7.1906, 7.1895, 7.1893, 7.1893, 7.189, 7.1886, 7.1883, 7.1881, 7.188, 7.1876, 7.1872, 7.1869, 7.1876, 7.1872, 7.188, 7.1876, 7.1873, 7.1869, 7.1866, 7.1874, 7.1871, 7.1878, 7.1874, 7.187, 7.1883, 7.188, 7.1877, 7.1873, 7.1881, 7.1878, 7.1874, 7.1872, 7.1869, 7.1871, 7.1867, 7.1863, 7.187, 7.1866, 7.1873, 7.187, 7.1868, 7.1865, 7.1861, 7.1858, 7.1856, 7.1862, 7.1879, 7.1866, 7.1873, 7.1869, 7.1866, 7.1862, 7.187, 7.1866, 7.1863, 7.187, 7.1866, 7.1865, 7.1873, 7.1869, 7.1865, 7.1862, 7.1858, 7.1856, 7.1863, 7.187, 7.1867, 7.1864, 7.1863, 7.1861, 7.1857, 7.1864, 7.1862, 7.1869, 7.1866, 7.1863, 7.186, 7.1848, 7.1835, 7.1832, 7.1829, 7.1826, 7.1833, 7.1831, 7.1828, 7.1825, 7.1822, 7.1819, 7.1816, 7.1813, 7.1811, 7.1809, 7.1806, 7.1804, 7.1801, 7.181, 7.1807, 7.1804, 7.1801, 7.18, 7.1808, 7.1795, 7.1792, 7.18, 7.1797, 7.1784, 7.1781, 7.1778, 7.1786, 7.1784, 7.1791, 7.181, 7.1856, 7.1853, 7.185, 7.1857, 7.1853, 7.1861, 7.1899, 7.1909, 7.1906, 7.1904, 7.19, 7.1903, 7.19, 7.1896, 7.1883, 7.1881, 7.1888, 7.1899, 7.1909, 7.1916, 7.1905, 7.1902, 7.1899, 7.1888, 7.1885, 7.1885, 7.1882, 7.1892000000000005, 7.1889, 7.1886, 7.1882, 7.1869, 7.1856, 7.1865, 7.1862, 7.1858, 7.1855, 7.1852, 7.1849, 7.1856, 7.1845, 7.1845, 7.1841, 7.1837, 7.1844, 7.1841, 7.1838, 7.1835, 7.1831, 7.1827, 7.1837, 7.1839, 7.1836, 7.1843, 7.184, 7.1847, 7.1845, 7.1844, 7.1841, 7.1837, 7.1835, 7.1842, 7.1849, 7.1859, 7.1867, 7.1854, 7.185, 7.1857, 7.1854, 7.1861, 7.1857, 7.1854, 7.1851, 7.1848, 7.1846, 7.1844, 7.184, 7.1837, 7.1834, 7.1851, 7.1858, 7.1858, 7.1854, 7.1862, 7.1858, 7.1857, 7.1864, 7.1862, 7.1859, 7.1855, 7.1863, 7.186, 7.1859, 7.1856, 7.1853, 7.185, 7.1847, 7.1844, 7.1841, 7.1838, 7.1835, 7.1832, 7.1829, 7.1826, 7.1823, 7.182, 7.1818, 7.1816, 7.1803, 7.18, 7.1797, 7.1804, 7.1811, 7.1818, 7.1815, 7.1812, 7.1819, 7.1806, 7.1804, 7.1801, 7.1799, 7.1797, 7.1794, 7.179, 7.180000000000001, 7.181000000000001, 7.1807, 7.1826, 7.1836, 7.1832, 7.1839, 7.1835, 7.1833, 7.184, 7.1849, 7.1846, 7.1843, 7.183, 7.1871, 7.1869, 7.1907, 7.1894, 7.1911, 7.1908, 7.1906, 7.1914, 7.1952, 7.1959, 7.1946, 7.1944, 7.194, 7.1947, 7.1944, 7.1951, 7.1949, 7.1977, 7.1994, 7.1999, 7.1987, 7.1984, 7.1981, 7.1995, 7.1992, 7.199, 7.1978, 7.1985, 7.1983, 7.199, 7.1987, 7.1974, 7.197, 7.1968, 7.1955, 7.1963, 7.197, 7.1969, 7.1967, 7.1965, 7.1961, 7.1958, 7.1955, 7.1943, 7.194, 7.1937, 7.1934, 7.194, 7.1938, 7.1925, 7.1925, 7.1922, 7.1929, 7.1937, 7.1943, 7.1951, 7.1958, 7.1954, 7.1961, 7.1958, 7.1945, 7.1942, 7.1939, 7.1946, 7.1943, 7.1963, 7.1961, 7.1957, 7.1964, 7.1962, 7.1972000000000005, 7.1978, 7.1975, 7.1971, 7.1968, 7.1964, 7.1961, 7.1958, 7.1956, 7.1954, 7.1952, 7.195, 7.1946, 7.1944, 7.194, 7.1937, 7.1934, 7.1941, 7.1938, 7.1935, 7.1931, 7.1927, 7.1933, 7.193, 7.1926, 7.1932, 7.193, 7.1937, 7.1934, 7.1931, 7.1928, 7.1925, 7.1922, 7.193, 7.1926, 7.1934, 7.1941, 7.1938, 7.1936, 7.1943, 7.1953, 7.195, 7.1946, 7.1944, 7.1942, 7.1939, 7.1946, 7.1942, 7.1939, 7.1936, 7.1946, 7.1944, 7.1942, 7.194, 7.1937, 7.1934, 7.193, 7.1937, 7.1934, 7.1922, 7.1919, 7.1916, 7.1914, 7.1911, 7.1908, 7.1917, 7.1925, 7.1922, 7.1919, 7.1916, 7.1919, 7.1916, 7.1915, 7.1923, 7.1921, 7.1918, 7.1907, 7.1905, 7.1902, 7.191, 7.1918, 7.1916, 7.1912, 7.192, 7.1929, 7.1927, 7.1915, 7.1903, 7.1891, 7.1889, 7.1886, 7.1884, 7.1894, 7.19, 7.1918, 7.1926, 7.1934, 7.194, 7.1937, 7.1967, 7.1966, 7.1976, 7.1973, 7.1971, 7.1968, 7.1965, 7.1962, 7.1958, 7.1954, 7.1952, 7.195, 7.1946, 7.1934, 7.1941, 7.1947, 7.1943, 7.1949, 7.1948, 7.1945, 7.1955, 7.1953, 7.1949, 7.1956, 7.1963, 7.197, 7.1977, 7.1974, 7.1981, 7.1978, 7.1985, 7.1981, 7.1979, 7.2024, 7.2021, 7.202, 7.2008, 7.2015, 7.2012, 7.2009, 7.2007, 7.2014, 7.2011, 7.2, 7.1988, 7.1985, 7.1983, 7.198, 7.1987, 7.1984, 7.1984, 7.1981, 7.1978, 7.1974, 7.1971, 7.1967, 7.1964, 7.1964, 7.1981, 7.1979, 7.1976, 7.1964, 7.1978, 7.1976, 7.1995, 7.1992, 7.199, 7.1987, 7.1984, 7.1983, 7.198, 7.1977, 7.1994, 7.1986, 7.1991, 7.1989, 7.1996, 7.1993, 7.201, 7.201, 7.2008, 7.2015, 7.2011, 7.2008, 7.2028, 7.2025, 7.2024, 7.2012, 7.2009, 7.2006, 7.2003, 7.1999, 7.1996, 7.1997, 7.1994, 7.1991, 7.1988, 7.1976, 7.1983, 7.198, 7.1977, 7.1974, 7.1972, 7.1979, 7.1977, 7.1975, 7.1982, 7.1979, 7.1976, 7.1973, 7.199, 7.1987, 7.2062, 7.2059, 7.2055, 7.2053, 7.206, 7.2058, 7.2055, 7.2052, 7.2049, 7.2046, 7.2042, 7.2039, 7.2036, 7.2062, 7.2061, 7.2067, 7.2064, 7.2061, 7.2059, 7.2059, 7.2056, 7.2044, 7.2063, 7.2098, 7.2096, 7.2115, 7.2122, 7.212, 7.2117, 7.2115, 7.2131, 7.213, 7.2118, 7.2106, 7.2102, 7.2099, 7.2095, 7.2091, 7.2097, 7.2094, 7.2091, 7.2088, 7.2114, 7.212, 7.2117, 7.2113, 7.211, 7.2106, 7.2112, 7.2101, 7.2097, 7.2094, 7.209, 7.2096, 7.2109, 7.2115, 7.2112, 7.2119, 7.2116, 7.2114, 7.2113, 7.211, 7.2107, 7.2114, 7.2121, 7.212, 7.2128, 7.2125, 7.2122, 7.2122, 7.2119, 7.2126, 7.2133, 7.214, 7.2147, 7.2143, 7.2139, 7.2137, 7.2143, 7.2151, 7.2148, 7.2146, 7.2152, 7.2149, 7.2146, 7.2143, 7.2141, 7.2139, 7.2137, 7.2144, 7.2141, 7.2138, 7.2135, 7.2133, 7.2129, 7.2145, 7.2143, 7.2159, 7.2166, 7.2164, 7.217, 7.2177, 7.2175, 7.2163, 7.216, 7.2158, 7.2156, 7.2154, 7.2151, 7.2149, 7.2147, 7.2153, 7.215, 7.2147, 7.2184, 7.2181, 7.2178, 7.2196, 7.2202, 7.2209, 7.2206, 7.2194, 7.2191, 7.2188, 7.2192, 7.219, 7.2187, 7.2184, 7.2181, 7.2179, 7.2167, 7.2164, 7.2171, 7.2177, 7.2184, 7.2181, 7.219, 7.2206, 7.2212, 7.2218, 7.2215, 7.2241, 7.2238, 7.2236, 7.2233, 7.223, 7.2228, 7.2245, 7.2252, 7.225, 7.2256, 7.2253, 7.2259, 7.2255, 7.2261, 7.2249, 7.2247, 7.2244, 7.2246, 7.2243, 7.2241, 7.2238, 7.2235, 7.2234, 7.2232, 7.2229, 7.2217, 7.2214, 7.2212, 7.221, 7.2208, 7.2205, 7.2203, 7.22, 7.2198, 7.2196, 7.2203, 7.22, 7.2198, 7.2198, 7.2196, 7.2194, 7.2192, 7.22, 7.2197, 7.2195, 7.2192, 7.2198, 7.2195, 7.2192, 7.2189, 7.2186, 7.2182, 7.2179, 7.2176, 7.2174, 7.2172, 7.2169, 7.2158, 7.2165, 7.2162, 7.2159, 7.215, 7.2147, 7.2144, 7.215, 7.2157, 7.2154, 7.2151, 7.2158, 7.2165, 7.2169, 7.2167, 7.2173, 7.217, 7.2168, 7.2157, 7.2145, 7.2151, 7.2148, 7.2145, 7.2151, 7.2157, 7.2154, 7.2151, 7.2141, 7.2147, 7.2144, 7.215, 7.2147, 7.2144, 7.2141, 7.2138, 7.2127, 7.2125, 7.2122, 7.212, 7.2117, 7.2114, 7.2111, 7.2109, 7.2115, 7.2121, 7.2127, 7.2133, 7.213, 7.2136, 7.2133, 7.2121, 7.2118, 7.2115, 7.2122, 7.2119, 7.2116, 7.2113, 7.212, 7.2117, 7.2125, 7.2123, 7.2129, 7.2126, 7.2123, 7.2129, 7.2139, 7.2146, 7.2144, 7.2142, 7.2149, 7.2155, 7.2152, 7.215, 7.2147, 7.2144, 7.2144, 7.2141, 7.2139, 7.2136, 7.2133, 7.213, 7.2136, 7.2142, 7.2149, 7.2148, 7.2145, 7.2153, 7.215, 7.2147, 7.2145, 7.215, 7.2147, 7.2144, 7.2142, 7.2139, 7.2136, 7.2134, 7.2132, 7.2138, 7.2135, 7.2142, 7.214, 7.2146, 7.2143, 7.214, 7.2137, 7.2143, 7.2149, 7.2156, 7.2153, 7.215, 7.2148, 7.2145, 7.2143, 7.214, 7.215000000000001, 7.2148, 7.2154, 7.216, 7.2166, 7.2163, 7.2169, 7.2157, 7.2155, 7.2161, 7.2158, 7.2155, 7.2152, 7.2149, 7.2147, 7.2144, 7.2159, 7.2156, 7.2153, 7.2151, 7.2142, 7.2139, 7.2136, 7.2134, 7.2132, 7.2142, 7.214, 7.2137, 7.2134, 7.2152, 7.2149, 7.2146, 7.2149, 7.2146, 7.2144, 7.2141, 7.2138, 7.2135, 7.2132, 7.2158, 7.2155, 7.2152, 7.2158, 7.2155, 7.2152, 7.2149, 7.2155, 7.2152, 7.2149, 7.2146, 7.2152, 7.2158, 7.2184, 7.2182, 7.2179, 7.2185, 7.2182, 7.2179, 7.2185, 7.2183, 7.218, 7.2187, 7.2194, 7.2192, 7.2189, 7.2195, 7.2193, 7.219, 7.2188, 7.2228, 7.2225, 7.2222, 7.2219, 7.2216, 7.2213, 7.2211, 7.2208, 7.2205, 7.221, 7.2208, 7.2205, 7.2202, 7.2208, 7.2205, 7.2211, 7.2217, 7.2206, 7.2203, 7.22, 7.2197, 7.2195, 7.2201, 7.2198, 7.2195, 7.2201, 7.2199, 7.2188, 7.2186, 7.2184, 7.2191, 7.2215, 7.2212, 7.2209, 7.2206, 7.2203, 7.2206, 7.2204, 7.2211, 7.2209, 7.2206, 7.2217, 7.2214, 7.222, 7.2226, 7.2224, 7.2221, 7.2227, 7.2225, 7.2223, 7.2229, 7.2227, 7.2224, 7.2239, 7.2236, 7.2242, 7.2239, 7.2236, 7.2233, 7.2232, 7.2238, 7.2236, 7.2233, 7.223, 7.2227, 7.2234, 7.2223, 7.222, 7.2217, 7.2222, 7.2229, 7.2227, 7.2224, 7.2231, 7.2238, 7.2241, 7.2238, 7.2235, 7.2232, 7.2229, 7.2236, 7.2233, 7.2239, 7.2243, 7.2242, 7.224, 7.2246, 7.2243, 7.225, 7.2256, 7.2263, 7.2261, 7.2258, 7.2264, 7.2262, 7.226, 7.2257, 7.2254, 7.2251, 7.2249, 7.2254, 7.2254, 7.2254, 7.2251, 7.2248, 7.225, 7.2266, 7.2264, 7.2261, 7.2268, 7.2265, 7.2265, 7.2264, 7.2263, 7.2261, 7.2268, 7.2267, 7.2264, 7.2261, 7.226, 7.2258, 7.2255, 7.2254, 7.226, 7.2266, 7.2264, 7.2262, 7.2259, 7.2256, 7.2262, 7.2259, 7.2257, 7.2254, 7.2261, 7.2267, 7.2264, 7.2313, 7.231, 7.2308, 7.2305, 7.2303, 7.2306, 7.232, 7.2336, 7.2334, 7.2331, 7.2328, 7.2334, 7.2335, 7.2332, 7.2331, 7.2329, 7.2327, 7.2325, 7.2323, 7.2321, 7.2328, 7.2326, 7.2323, 7.232, 7.2327, 7.2324, 7.2323, 7.232, 7.2317, 7.2314, 7.232, 7.2317, 7.2314, 7.232, 7.2318, 7.2316, 7.2322, 7.232, 7.2317, 7.2316, 7.2313, 7.231, 7.2307, 7.2305, 7.2303, 7.23, 7.2306, 7.2304, 7.2301, 7.23, 7.2289, 7.2287, 7.2293, 7.229, 7.2287, 7.2285, 7.2283, 7.2281, 7.2278, 7.2277, 7.2274, 7.2282, 7.2283, 7.2284, 7.2282, 7.228, 7.2278, 7.2275, 7.2282, 7.2279, 7.2276, 7.2274, 7.2271, 7.2262, 7.226, 7.2263, 7.2261, 7.2259, 7.2256, 7.2254, 7.2252, 7.2249, 7.2256, 7.2254, 7.2251, 7.2249, 7.2247, 7.2273, 7.2271, 7.2268, 7.2265, 7.2271, 7.2279, 7.2276, 7.2282, 7.2279, 7.2285, 7.2282, 7.2279, 7.2277, 7.2274, 7.2272, 7.2269, 7.2275, 7.2281, 7.2278, 7.2284, 7.229, 7.2288, 7.2286, 7.2283, 7.2288, 7.2294, 7.2291, 7.229, 7.2287, 7.2285, 7.2282, 7.228, 7.2278, 7.2275, 7.2276, 7.2273, 7.2301, 7.2301, 7.2307, 7.2304, 7.2321, 7.2318, 7.2317, 7.2314, 7.2313, 7.231, 7.2308, 7.2305, 7.2304, 7.2301, 7.2309, 7.2316, 7.2305, 7.2304, 7.2311, 7.2308, 7.2305, 7.2311, 7.2312, 7.231, 7.2309, 7.2307, 7.2313, 7.2319, 7.2317, 7.2315, 7.2313, 7.231, 7.2307, 7.2304, 7.2304, 7.2302, 7.23, 7.2306, 7.2321, 7.2318, 7.2324, 7.233, 7.2327, 7.2333, 7.2344, 7.2342, 7.2348, 7.2337, 7.2334, 7.2331, 7.2328, 7.2325, 7.2352, 7.2359, 7.2358, 7.2364, 7.2361, 7.2374, 7.2381, 7.2384, 7.2381, 7.2387, 7.2393, 7.239, 7.2388, 7.2394, 7.24, 7.2397, 7.2395, 7.2392, 7.239, 7.2396, 7.2393, 7.239, 7.2387, 7.2384, 7.2381, 7.2378, 7.2375, 7.2381, 7.2379, 7.2377, 7.2374, 7.2372, 7.2369, 7.2366, 7.2363, 7.2368, 7.2358, 7.2365, 7.2365, 7.2371, 7.2378, 7.2376, 7.2373, 7.2371, 7.2369, 7.2366, 7.2372, 7.237, 7.2376, 7.2382, 7.2379, 7.2377, 7.2374, 7.2379, 7.2376, 7.2374, 7.2372, 7.2377, 7.2375, 7.238, 7.2378, 7.2384, 7.2381, 7.2387, 7.2384, 7.2389, 7.2386, 7.2392, 7.239, 7.2379, 7.2376, 7.2373, 7.238, 7.2379, 7.2377, 7.2385, 7.2382, 7.2371, 7.2369, 7.2387, 7.2386, 7.2384, 7.2382, 7.2379, 7.2378, 7.2383, 7.2382, 7.2381, 7.2379, 7.2377, 7.2375, 7.2382, 7.2379, 7.2376, 7.2383, 7.2393, 7.2391, 7.2398, 7.2396, 7.2393, 7.2402, 7.2399, 7.2397, 7.2394, 7.2391, 7.2389, 7.2387, 7.2386, 7.2391, 7.2388, 7.2378, 7.2384, 7.2373, 7.237, 7.2359, 7.2357, 7.2347, 7.2344, 7.2344, 7.2341, 7.234, 7.2346, 7.2343, 7.2348, 7.2346, 7.2344, 7.2341, 7.2338, 7.2336, 7.2325, 7.2322, 7.2319, 7.2316, 7.2314, 7.2311, 7.2309, 7.2307, 7.2304, 7.231, 7.2307, 7.2304, 7.2304, 7.231, 7.2316, 7.2313, 7.231, 7.2308, 7.2308, 7.2305, 7.2311, 7.2309, 7.2315, 7.2304, 7.2314, 7.2311, 7.2309, 7.2306, 7.2321, 7.2352, 7.235, 7.2348, 7.2346, 7.2352, 7.2358, 7.2356, 7.2353, 7.2351, 7.2348, 7.2337, 7.2334, 7.2334, 7.2332, 7.2337, 7.2326, 7.2324, 7.2321, 7.2326, 7.2323, 7.2329, 7.2335, 7.234, 7.2337, 7.2371, 7.2377, 7.2375, 7.2365, 7.2374, 7.2381, 7.2394, 7.2393, 7.239, 7.2396, 7.2393, 7.2391, 7.2388, 7.2394, 7.24, 7.2397, 7.2394, 7.24, 7.2407, 7.2413, 7.241, 7.2407, 7.2414, 7.2411, 7.2408, 7.2398, 7.2398, 7.2395, 7.2394, 7.2391, 7.2391, 7.2389, 7.2387, 7.2384, 7.239, 7.2394, 7.2394, 7.2392, 7.239, 7.2388, 7.2399, 7.2397, 7.2411, 7.2417, 7.2414, 7.2411, 7.2409, 7.2407, 7.2405, 7.2436, 7.2433, 7.2439, 7.2436, 7.2442, 7.2439, 7.2436, 7.2444, 7.2441, 7.2431, 7.2428, 7.2426, 7.2431, 7.243, 7.2428, 7.2425, 7.2439, 7.2445, 7.245, 7.2448, 7.2445, 7.2442, 7.2439, 7.2436, 7.2434, 7.2431, 7.2437, 7.2435, 7.2432, 7.2429, 7.2419, 7.2426, 7.2416, 7.2406, 7.2403, 7.24, 7.239, 7.2388, 7.2385, 7.2376, 7.2382, 7.2406, 7.2413, 7.2414, 7.242, 7.2425, 7.2423, 7.2422, 7.242, 7.2425, 7.2423, 7.242, 7.2418, 7.2417, 7.2414, 7.2419, 7.2417, 7.2415, 7.2412, 7.2418, 7.2416, 7.2413, 7.2411, 7.2417, 7.2415, 7.2405, 7.2403, 7.2401, 7.2398, 7.2395, 7.2392, 7.239, 7.2388, 7.2386, 7.2384, 7.2381, 7.2387, 7.2384, 7.239, 7.2396, 7.2393, 7.2391, 7.2388, 7.2386, 7.2384, 7.2391, 7.2398, 7.2396, 7.2385, 7.2383, 7.2381, 7.2389, 7.2388, 7.2385, 7.2383, 7.238, 7.2377, 7.2374, 7.2364, 7.2361, 7.2366, 7.2364, 7.2361, 7.2358, 7.2359, 7.2361, 7.2359, 7.2365, 7.2371, 7.2373, 7.237, 7.2367, 7.2367, 7.2372, 7.2369, 7.2366, 7.2363, 7.2361, 7.2358, 7.2364, 7.2366, 7.2365, 7.2364, 7.2361, 7.2358, 7.2355, 7.2369, 7.2374, 7.2376, 7.2381, 7.2378, 7.2375, 7.2384, 7.2383, 7.2389, 7.2387, 7.2384, 7.2381, 7.2378, 7.2383, 7.2389, 7.2387, 7.2385, 7.2375, 7.2372, 7.2377, 7.2382, 7.2379, 7.2384, 7.239, 7.2395, 7.2385, 7.2391, 7.2388, 7.2385, 7.2384, 7.2381, 7.2378, 7.2386, 7.2383, 7.238, 7.2377, 7.2375, 7.2373, 7.2387, 7.2385, 7.2382, 7.2379, 7.2376, 7.2373, 7.237, 7.2368, 7.2373, 7.2378, 7.2383, 7.2388, 7.2385, 7.2383, 7.238, 7.2427, 7.2433, 7.2444, 7.2455, 7.2445, 7.2435, 7.2425, 7.243, 7.2428, 7.2434, 7.2431, 7.2428, 7.2418, 7.2423, 7.2428, 7.2425, 7.2422, 7.242, 7.2426, 7.2424, 7.2422, 7.2427, 7.2433, 7.2459, 7.2457, 7.2486, 7.2484, 7.2475, 7.2475, 7.2493, 7.2499, 7.2504, 7.2509, 7.2506, 7.2503, 7.2503, 7.2517, 7.2547, 7.2561, 7.2559, 7.2565, 7.2564, 7.2563, 7.2577, 7.2575, 7.2572, 7.2586, 7.259, 7.2596, 7.2595, 7.2592, 7.259, 7.2587, 7.2609, 7.2606, 7.2611, 7.261, 7.2615, 7.2628, 7.2625, 7.263, 7.2627, 7.2641, 7.2639, 7.2637, 7.2635, 7.264, 7.2637, 7.2642, 7.2639, 7.2636, 7.2642, 7.264, 7.2638, 7.2643, 7.2641, 7.2638, 7.2638, 7.2643, 7.264, 7.2637, 7.2634, 7.2632, 7.2637, 7.2643, 7.2633, 7.2646, 7.2643, 7.2649, 7.2646, 7.2643, 7.2648, 7.2654, 7.2659, 7.2656, 7.2653, 7.2652, 7.265, 7.2655, 7.2664, 7.2661, 7.2651, 7.2648, 7.267, 7.2676, 7.2682, 7.2687, 7.2692, 7.269, 7.2696, 7.2693, 7.269, 7.2695, 7.2692, 7.2689, 7.2694, 7.2699, 7.2704, 7.2701, 7.2708, 7.2722, 7.2752, 7.2749, 7.2746, 7.2759, 7.2773, 7.2771, 7.2769, 7.2774, 7.2771, 7.2768, 7.2758, 7.2755, 7.2752, 7.2749, 7.2746, 7.2744, 7.2741, 7.2746, 7.2743, 7.2756, 7.2753, 7.2758, 7.2755, 7.2761, 7.2766, 7.2763, 7.2785, 7.2775, 7.2773, 7.2771, 7.2777, 7.2769, 7.2775, 7.2773, 7.2771, 7.2768, 7.2758, 7.2755, 7.2761, 7.2774, 7.2778, 7.2784, 7.2782, 7.2779, 7.2776, 7.2773, 7.2778, 7.2784, 7.2774, 7.2787, 7.2793, 7.2799, 7.2797, 7.2795, 7.2792, 7.279, 7.2795, 7.28, 7.2806, 7.2803, 7.2817, 7.2814, 7.2819, 7.2834, 7.2831, 7.2861, 7.2859, 7.2864, 7.2877, 7.2875, 7.2882, 7.2879, 7.2884, 7.2882, 7.289, 7.2903, 7.2902, 7.29, 7.2914, 7.2923, 7.2928, 7.2926, 7.2924, 7.2921, 7.2926, 7.2924, 7.2921, 7.2918, 7.2916, 7.2921, 7.2919, 7.294, 7.2944, 7.2957, 7.2955, 7.2953, 7.2958, 7.2956, 7.2946, 7.2951, 7.2949, 7.2947, 7.2944, 7.2946, 7.295, 7.2955, 7.2953, 7.2963, 7.2969, 7.2967, 7.2966, 7.2963, 7.2962, 7.2959, 7.2956, 7.2953, 7.2977, 7.299, 7.2996, 7.3003, 7.3007, 7.3011, 7.3009, 7.3007, 7.3005, 7.3003, 7.3, 7.2997, 7.2989, 7.2994, 7.2993, 7.3008, 7.3005, 7.2998, 7.2997, 7.2994, 7.3, 7.3006, 7.3003, 7.3, 7.2999, 7.3005, 7.3003, 7.3001, 7.3007, 7.3005, 7.301, 7.3015, 7.3012, 7.3017, 7.3022, 7.3019, 7.3019, 7.3016, 7.3013, 7.3018, 7.3015, 7.3013, 7.3017, 7.3014], '192.168.122.120': [10.6947, 10.968, 10.7904, 9.414, 10.8624, 10.9016, 10.1753, 9.6234, 9.2708, 8.9542, 9.1234, 8.8404, 8.6506, 8.848, 8.6484, 8.4689, 8.2962, 8.1666, 8.0476, 7.952, 7.8317, 7.7518, 7.6616, 7.609, 7.5311, 7.6589, 7.6113, 7.5676, 7.53, 7.4573, 7.5202, 7.4509, 7.3848, 7.4758, 7.5641, 7.5048, 7.4575, 7.4098, 7.3707, 7.322, 7.4107, 7.8761, 7.8302, 7.7868, 7.6311, 7.591, 7.5455, 7.4205, 7.3908, 7.3587, 7.35, 7.4339, 7.4175, 7.3787, 7.4362, 7.4072, 7.3713, 7.2535, 7.2237, 7.2811, 7.2549, 7.3184, 7.2987, 7.2813, 7.2565, 7.2301, 7.2269, 7.1996, 7.1115, 7.1013, 7.0992, 7.0982, 7.0892, 7.0688, 7.0523, 7.0309, 7.0845, 7.077, 7.1245, 7.1018, 7.087, 7.0663, 7.0451, 7.0274, 7.0709, 7.0676, 7.1192, 7.108, 7.1535, 7.1324, 7.115, 7.0961, 7.0786, 7.0615, 7.1079, 7.1536, 7.1499, 7.1313, 7.1156, 7.1522, 7.2107, 7.2001, 7.1398, 7.1216, 7.1548, 7.1441, 7.176, 7.164, 7.1582, 7.1416, 7.1252, 7.0672, 7.0523, 7.0858, 7.0724, 7.0573, 7.0421, 7.0361, 7.0279, 7.0362, 7.0222, 7.0523, 7.0386, 7.0247, 7.011, 7.0057, 6.9975, 7.0296, 7.0175, 7.0074, 6.9995, 6.9997, 6.9879, 7.0173, 7.0049, 6.9982, 6.9864, 6.9791, 7.0063, 6.9956, 7.0208, 7.0084, 7.0005, 7.1644, 7.1511, 7.1766, 7.1733, 7.1961, 7.1831, 7.1744, 7.1738, 7.1652, 7.1545, 7.145, 7.1353, 7.1246, 7.1544, 7.1464, 7.1374, 7.133, 7.1243, 7.1171, 7.1455, 7.1346, 7.1265, 7.1208, 7.1135, 7.1081, 7.1148, 7.1276, 7.1255, 7.119, 7.1108, 7.1343, 7.1263, 7.1189, 7.1088, 7.0987, 7.1251, 7.1156, 7.1082, 7.0982, 7.0905, 7.1116, 7.1057, 7.1257, 7.1454, 7.1389, 7.1328, 7.1259, 7.1456, 7.1376, 7.1279, 7.1194, 7.1109, 7.1023, 7.0939, 7.1131, 7.1042, 7.0977, 7.0949, 7.0914, 7.0828, 7.1012, 7.1038, 7.1224, 7.1172, 7.1091, 7.131, 7.1325, 7.1247, 7.1263, 7.1206, 7.1401, 7.1335, 7.1315, 7.1259, 7.1001, 7.1441, 7.1607, 7.1529, 7.1679, 7.1824, 7.1756, 7.169, 7.1615, 7.1544, 7.1496, 7.141, 7.1348, 7.1293, 7.1433, 7.1384, 7.1306, 7.128, 7.1225, 7.1173, 7.1118, 7.1061, 7.1025, 7.1212, 7.1136, 7.1083, 7.1012, 7.1164, 7.1314, 7.1257, 7.118, 7.1126, 7.1271, 7.1204, 7.1155, 7.1151, 7.1114, 7.1066, 7.1032, 7.0966, 7.0901, 7.1038, 7.118, 7.111, 7.129, 7.1426, 7.1367, 7.1294, 7.142, 7.1425, 7.1361, 7.1491, 7.165, 7.1584, 7.152, 7.1459, 7.1419, 7.1556, 7.1495, 7.1451, 7.1402, 7.1544, 7.1483, 7.1423, 7.1556, 7.1497, 7.2014, 7.1953, 7.1892, 7.2019, 7.1965, 7.1916, 7.1869, 7.1843, 7.1972, 7.1921, 7.2251, 7.2206, 7.2161, 7.2434, 7.2374, 7.241, 7.2532, 7.2469, 7.2442, 7.2422, 7.2376, 7.2167, 7.2116, 7.2243, 7.2193, 7.2141, 7.2273, 7.2402, 7.2351, 7.2457, 7.2408, 7.2537, 7.2496, 7.2445, 7.239, 7.2337, 7.2287, 7.2394, 7.2354, 7.2298, 7.2401, 7.2344, 7.2134, 7.2094, 7.2075, 7.2046, 7.2004, 7.1969, 7.1908, 7.188, 7.1844, 7.1796, 7.175, 7.1695, 7.1644, 7.1593, 7.1704, 7.1652, 7.179, 7.1896, 7.1844, 7.1795, 7.1771, 7.1716, 7.1669, 7.1774, 7.1881, 7.1854, 7.181, 7.1764, 7.1869, 7.2, 7.1947, 7.1897, 7.1846, 7.1944, 7.1899, 7.1848, 7.1819, 7.1787, 7.1749, 7.1699, 7.1517, 7.1614, 7.1573, 7.1522, 7.1477, 7.1437, 7.1392, 7.1377, 7.133, 7.1289, 7.1242, 7.1333, 7.1688, 7.1784, 7.1749, 7.185, 7.1944, 7.1908, 7.187, 7.1825, 7.1777, 7.173, 7.1695, 7.1649, 7.16, 7.1693, 7.1787, 7.1746, 7.1707, 7.1662, 7.1754, 7.2009, 7.1976, 7.2076, 7.2196, 7.2296, 7.2252, 7.2341, 7.2203, 7.2288, 7.2407, 7.2363, 7.2332, 7.2308, 7.2261, 7.2217, 7.2308, 7.2262, 7.2231, 7.2198, 7.2157, 7.2126, 7.2123, 7.208, 7.2168, 7.2255, 7.2342, 7.2295, 7.2256, 7.2216, 7.2233, 7.2316, 7.2273, 7.2314, 7.241, 7.2368, 7.2452, 7.2434, 7.2396, 7.2351, 7.2435, 7.2392, 7.2242, 7.22, 7.2162, 7.2134, 7.2112, 7.207, 7.1979, 7.1837, 7.1798, 7.1759, 7.1787, 7.1755, 7.1615, 7.1586, 7.1555, 7.1519, 7.1609, 7.1575, 7.1533, 7.1499, 7.1475, 7.1444, 7.1532, 7.1492, 7.1455, 7.1316, 7.1395, 7.1358, 7.1335, 7.1299, 7.1378, 7.1343, 7.1303, 7.1389, 7.1357, 7.1321, 7.1362, 7.1325, 7.129, 7.1369, 7.1445, 7.1523, 7.1497, 7.1575, 7.1538, 7.1502, 7.1468, 7.1441, 7.1421, 7.1388, 7.1381, 7.1252, 7.1229, 7.112, 7.109, 7.0963, 7.0832, 7.0914, 7.0994, 7.097, 7.0943, 7.0917, 7.089, 7.0967, 7.1261, 7.1341, 7.1406, 7.1373, 7.1358, 7.133, 7.1319, 7.1281, 7.1251, 7.1215, 7.1191, 7.1172, 7.1242, 7.1315, 7.1287, 7.1268, 7.1239, 7.1204, 7.1175, 7.115, 7.1222, 7.1185, 7.1255, 7.1238, 7.1208, 7.1185, 7.1168, 7.1132, 7.1104, 7.1071, 7.1046, 7.1011, 7.098, 7.0954, 7.103, 7.1025, 7.0999, 7.0974, 7.1037, 7.1101, 7.1181, 7.1154, 7.1218, 7.1282, 7.1252, 7.1222, 7.1289, 7.1263, 7.133, 7.13, 7.1184, 7.1252, 7.1136, 7.1108, 7.1078, 7.105, 7.1116, 7.1089, 7.1075, 7.1043, 7.111, 7.1085, 7.1055, 7.1045, 7.1023, 7.0995, 7.0965, 7.0943, 7.0914, 7.0886, 7.0857, 7.0826, 7.0795, 7.0859, 7.0833, 7.0802, 7.0802, 7.0778, 7.0855, 7.0828, 7.0804, 7.0796, 7.078, 7.0751, 7.0808, 7.0779, 7.0752, 7.0737, 7.0801, 7.087, 7.0949, 7.1019, 7.0992, 7.0965, 7.0944, 7.092, 7.0906, 7.088, 7.0861, 7.0832, 7.0808, 7.0784, 7.076, 7.0829, 7.0814, 7.0966, 7.0946, 7.0928, 7.0902, 7.0874, 7.0854, 7.0846, 7.0817, 7.0804, 7.0788, 7.076, 7.074, 7.0744, 7.0716, 7.0689, 7.0661, 7.0634, 7.0695, 7.0763, 7.0821, 7.0802, 7.078, 7.0759, 7.0739, 7.0711, 7.0684, 7.0686, 7.0657, 7.0628, 7.0603, 7.0666, 7.0725, 7.078, 7.0848, 7.0821, 7.0795, 7.0853, 7.0843, 7.0815, 7.079, 7.0764, 7.0744, 7.0715, 7.0689, 7.059, 7.0572, 7.0546, 7.0522, 7.0506, 7.0482, 7.0457, 7.0432, 7.0422, 7.0409, 7.0383, 7.0367, 7.0341, 7.0244, 7.0299, 7.0276, 7.0255, 7.0231, 7.0215, 7.0271, 7.0244, 7.0225, 7.0201, 7.0184, 7.0161, 7.0141, 7.012, 7.0096, 7.0078, 7.0449, 7.0448, 7.0502, 7.048, 7.0539, 7.0603, 7.0901, 7.0886, 7.0934, 7.1023, 7.0998, 7.1056, 7.1114, 7.1175, 7.1151, 7.1129, 7.1108, 7.1158, 7.1248, 7.1221, 7.1212, 7.1261, 7.1411, 7.1389, 7.1367, 7.1275, 7.1401, 7.1377, 7.143, 7.1338, 7.1253, 7.1227, 7.1277, 7.1252, 7.1302, 7.1283, 7.1336, 7.1384, 7.1431, 7.141, 7.1386, 7.1438, 7.1488, 7.1482, 7.1686, 7.1735, 7.1714, 7.169, 7.174, 7.165, 7.1625, 7.1599, 7.1581, 7.1629, 7.1611, 7.1586, 7.1571, 7.1556, 7.1539, 7.1515, 7.1496, 7.1483, 7.1469, 7.1456, 7.1431, 7.15, 7.1559, 7.1538, 7.1517, 7.164, 7.1617, 7.1666, 7.1643, 7.1695, 7.1764, 7.1813, 7.1801, 7.1792, 7.1772, 7.1749, 7.1728, 7.1798, 7.1778, 7.1775, 7.1829, 7.1806, 7.1786, 7.1836, 7.1813, 7.1791, 7.1773, 7.1761, 7.175, 7.1728, 7.1706, 7.1753, 7.1802, 7.1782, 7.1825, 7.1948, 7.1925, 7.1907, 7.1948, 7.1927, 7.1903, 7.1888, 7.1935, 7.1912, 7.1896, 7.1873, 7.1854, 7.1854, 7.1833, 7.181, 7.1788, 7.1773, 7.1972, 7.2047, 7.2027, 7.1949, 7.1996, 7.2325, 7.237, 7.2358, 7.2342, 7.2319, 7.2297, 7.2274, 7.2319, 7.2298, 7.2276, 7.2253, 7.2233, 7.2229, 7.2212, 7.2189, 7.2177, 7.2224, 7.2207, 7.2191, 7.2123, 7.217, 7.2147, 7.2131, 7.2111, 7.209, 7.2091, 7.2069, 7.2061, 7.2045, 7.2029, 7.201, 7.2059, 7.2042, 7.203, 7.2081, 7.2058, 7.2038, 7.2017, 7.1994, 7.2115, 7.2098, 7.2075, 7.2054, 7.2034, 7.2019, 7.2061, 7.2038, 7.2021, 7.2009, 7.1989, 7.1971, 7.1949, 7.1936, 7.1919, 7.1898, 7.1883, 7.1861, 7.1847, 7.1827, 7.1808, 7.179, 7.1838, 7.1824, 7.1749, 7.1728, 7.1707, 7.1696, 7.168, 7.166, 7.1702, 7.1684, 7.1663, 7.1599, 7.1677, 7.1659, 7.1637, 7.1616, 7.1597, 7.1548, 7.1607, 7.1645, 7.1694, 7.1683, 7.1662, 7.1644, 7.1622, 7.1605, 7.1589, 7.1579, 7.1558, 7.1601, 7.1591, 7.1576, 7.1561, 7.1545, 7.1591, 7.1572, 7.1556, 7.1542, 7.1523, 7.1503, 7.1484, 7.1475, 7.1461, 7.1441, 7.1422, 7.1402, 7.1443, 7.1423, 7.1407, 7.1387, 7.1428, 7.1415, 7.1459, 7.1498, 7.1482, 7.1522, 7.1561, 7.1543, 7.1525, 7.1517, 7.1557, 7.1538, 7.1541, 7.1529, 7.1509, 7.1498, 7.1481, 7.1413, 7.1393, 7.1381, 7.1362, 7.1347, 7.1394, 7.1375, 7.1418, 7.1398, 7.1379, 7.1363, 7.1344, 7.1324, 7.1311, 7.1308, 7.1348, 7.1449, 7.1445, 7.1379, 7.1361, 7.1342, 7.1327, 7.1312, 7.1292, 7.1389, 7.137, 7.1411, 7.1401, 7.1444, 7.1484, 7.1527, 7.1561, 7.1544, 7.1525, 7.1513, 7.1551, 7.1533, 7.1514, 7.1505, 7.173, 7.1768, 7.175, 7.1733, 7.1773, 7.1754, 7.1735, 7.1772, 7.1778, 7.176, 7.1743, 7.1726, 7.1764, 7.1745, 7.178, 7.1766, 7.1756, 7.1797, 7.178, 7.1762, 7.1743, 7.1727, 7.171, 7.1747, 7.1734, 7.1716, 7.1702, 7.1688, 7.1671, 7.1709, 7.1702, 7.1685, 7.1723, 7.1706, 7.1688, 7.1679, 7.1661, 7.1648, 7.1636, 7.1618, 7.16, 7.1636, 7.1622, 7.162, 7.1609, 7.1648, 7.1584, 7.1624, 7.1613, 7.1598, 7.1581, 7.162, 7.1656, 7.164, 7.1627, 7.1664, 7.1667, 7.1653, 7.1589, 7.1574, 7.1557, 7.1595, 7.1576, 7.1561, 7.161, 7.1599, 7.1587, 7.1589, 7.1583, 7.1571, 7.1556, 7.1544, 7.1529, 7.1511, 7.1543, 7.1529, 7.1511, 7.1449, 7.1436, 7.1432, 7.1415, 7.1403, 7.1385, 7.1368, 7.1362, 7.1357, 7.1339, 7.1321, 7.1306, 7.1289, 7.1271, 7.1255, 7.1238, 7.1227, 7.1211, 7.12, 7.1186, 7.1172, 7.1171, 7.1163, 7.1273, 7.1308, 7.1293, 7.1278, 7.1262, 7.1248, 7.1232, 7.1232, 7.1215, 7.1204, 7.1238, 7.123, 7.1213, 7.1198, 7.1297, 7.1324, 7.1309, 7.1345, 7.1375, 7.1363, 7.1348, 7.1434, 7.1424, 7.1457, 7.1504, 7.15, 7.153, 7.1563, 7.1549, 7.1585, 7.1614, 7.16, 7.1583, 7.162, 7.1691, 7.1679, 7.1664, 7.1701, 7.1687, 7.172, 7.1706, 7.169, 7.1723, 7.1734, 7.1719, 7.1702, 7.1684, 7.1716, 7.1702, 7.1828, 7.1863, 7.1847, 7.1831, 7.2004, 7.1987, 7.1979, 7.1962, 7.1959, 7.1951, 7.1982, 7.1968, 7.1952, 7.1941, 7.1926, 7.1908, 7.1904, 7.1892, 7.1876, 7.1863, 7.1857, 7.1847, 7.1833, 7.1824, 7.1827, 7.1863, 7.1847, 7.1879, 7.1862, 7.1888, 7.1885, 7.1918, 7.1903, 7.1935, 7.1968, 7.1951, 7.1979, 7.1962, 7.1993, 7.1979, 7.1969, 7.1954, 7.1944, 7.1927, 7.1869, 7.1852, 7.1796, 7.1783, 7.1766, 7.1795, 7.1778, 7.1766, 7.1755, 7.1742, 7.1729, 7.1716, 7.1704, 7.1744, 7.1732, 7.1764, 7.1751, 7.1738, 7.1726, 7.1755, 7.1743, 7.1728, 7.1672, 7.1656, 7.1686, 7.1714, 7.1791, 7.178, 7.1809, 7.1797, 7.1786, 7.1815, 7.1803, 7.1756, 7.1746, 7.174, 7.1724, 7.1715, 7.1835, 7.1867, 7.1854, 7.1838, 7.1826, 7.1816, 7.1813, 7.1799, 7.1795, 7.1741, 7.1776, 7.1721, 7.1887, 7.1876, 7.1912, 7.19, 7.1888, 7.1922, 7.1914, 7.1945, 7.1931, 7.1916, 7.1901, 7.1885, 7.1886, 7.1916, 7.1994, 7.198, 7.201, 7.2105, 7.2097, 7.2082, 7.2069, 7.2058, 7.2047, 7.2031, 7.202, 7.2005, 7.2079, 7.2068, 7.2057, 7.2043, 7.2031, 7.2019, 7.2006, 7.1993, 7.1978, 7.1963, 7.1951, 7.1982, 7.1968, 7.1954, 7.1938, 7.1928, 7.1922, 7.1958, 7.1945, 7.1935, 7.1963, 7.1948, 7.196, 7.1949, 7.2021, 7.2012, 7.2005, 7.2033, 7.2025, 7.198, 7.1965, 7.1996, 7.1986, 7.1934, 7.1922, 7.1914, 7.1902, 7.1895, 7.1928, 7.1955, 7.1945, 7.1929, 7.1914, 7.1899, 7.1888, 7.1918, 7.1944, 7.1974, 7.1963, 7.1951, 7.1942, 7.1927, 7.1912, 7.19, 7.1886, 7.1882, 7.1869, 7.1868, 7.1856, 7.1842, 7.1829, 7.1856, 7.1842, 7.1829, 7.182, 7.1815, 7.1843, 7.1829, 7.1816, 7.1801, 7.1787, 7.1773, 7.1769, 7.1755, 7.1745, 7.1731, 7.1758, 7.1751, 7.1738, 7.1725, 7.1754, 7.1783, 7.1854, 7.1844, 7.1833, 7.1862, 7.1847, 7.1832, 7.1817, 7.1804, 7.1791, 7.1785, 7.1772, 7.1797, 7.1789, 7.1775, 7.1763, 7.1784, 7.177, 7.1758, 7.1746, 7.1738, 7.1724, 7.1709, 7.1698, 7.1725, 7.1793, 7.1782, 7.1769, 7.1756, 7.1747, 7.1778, 7.1765, 7.1874, 7.1921, 7.192, 7.1906, 7.1891, 7.1877, 7.1904, 7.1891, 7.1878, 7.1906, 7.1893, 7.1917, 7.187, 7.1821, 7.1773, 7.1768, 7.1762, 7.1755, 7.1781, 7.1778, 7.1765, 7.1753, 7.1787, 7.1856, 7.189, 7.1916, 7.1874, 7.1869, 7.1859, 7.185, 7.184, 7.1828, 7.1817, 7.1803, 7.1795, 7.1783, 7.1805, 7.1793, 7.1779, 7.1766, 7.1756, 7.1743, 7.1729, 7.1716, 7.1743, 7.1769, 7.177, 7.1762, 7.1752, 7.1739, 7.173, 7.172, 7.1707, 7.1694, 7.1682, 7.1668, 7.1655, 7.1643, 7.1667, 7.1659, 7.1647, 7.1599, 7.1629, 7.1616, 7.1604, 7.1592, 7.1582, 7.1569, 7.1556, 7.1545, 7.1572, 7.1559, 7.1546, 7.1569, 7.1592, 7.1582, 7.1608, 7.1596, 7.1584, 7.1572, 7.1566, 7.1554, 7.1587, 7.1574, 7.1567, 7.1593, 7.1582, 7.1573, 7.1564, 7.1557, 7.1545, 7.1534, 7.1525, 7.1551, 7.1579, 7.158, 7.1591, 7.1591, 7.1616, 7.1604, 7.1592, 7.1582, 7.1575, 7.1568, 7.1565, 7.157, 7.156, 7.1548, 7.154, 7.1528, 7.1515, 7.1587, 7.1582, 7.1608, 7.1597, 7.1586, 7.1575, 7.157, 7.1561, 7.1516, 7.1504, 7.1497, 7.1485, 7.1473, 7.1461, 7.149, 7.1519, 7.1545, 7.1532, 7.1521, 7.1509, 7.15, 7.1491, 7.1516, 7.1522, 7.1512, 7.1501, 7.1491, 7.1491, 7.1479, 7.1504, 7.1529, 7.1553, 7.1546, 7.1546, 7.154, 7.1531, 7.1558, 7.1546, 7.157, 7.1562, 7.155, 7.1574, 7.1562, 7.1555, 7.1579, 7.1607, 7.1597, 7.1588, 7.1581, 7.1608, 7.1608, 7.1599, 7.1623, 7.1646, 7.1669, 7.1658, 7.1647, 7.1637, 7.163, 7.162, 7.1641, 7.1605, 7.1594, 7.1583, 7.1646, 7.1637, 7.1656, 7.1647, 7.1671, 7.1659, 7.1654, 7.1653, 7.1647, 7.1635, 7.1629, 7.1696, 7.1685, 7.1712, 7.1735, 7.1723, 7.1747, 7.1738, 7.1763, 7.1756, 7.1812, 7.1801, 7.1839, 7.1863, 7.1854, 7.1857, 7.1854, 7.1845, 7.1838, 7.1836, 7.1833, 7.1863, 7.1861, 7.1869, 7.1861, 7.185, 7.1845, 7.1833, 7.1821, 7.1818, 7.1897, 7.1885, 7.1877, 7.1871, 7.1859, 7.1849, 7.1871, 7.1864, 7.1853, 7.1878, 7.1866, 7.1825, 7.1813, 7.1801, 7.179, 7.1782, 7.1804, 7.1795, 7.1783, 7.1775, 7.1735, 7.1758, 7.1749, 7.1769, 7.1766, 7.1755, 7.175, 7.1764, 7.1757, 7.1745, 7.1766, 7.1755, 7.1744, 7.1807, 7.1798, 7.1821, 7.1844, 7.1867, 7.1889, 7.1877, 7.1866, 7.1824, 7.1847, 7.1869, 7.186, 7.1852, 7.1841, 7.1834, 7.1857, 7.1849, 7.1838, 7.1828, 7.1821, 7.1842, 7.1831, 7.1823, 7.1847, 7.1876, 7.1899, 7.1888, 7.1876, 7.1867, 7.1859, 7.1855, 7.1843, 7.1843, 7.1838, 7.1828, 7.1822, 7.1813, 7.1802, 7.1826, 7.1814, 7.1811, 7.1771, 7.1732, 7.172, 7.1741, 7.1729, 7.1717, 7.1715, 7.1736, 7.175, 7.1738, 7.1727, 7.1716, 7.1704, 7.1696, 7.1685, 7.1706, 7.1696, 7.1689, 7.1679, 7.174, 7.1729, 7.1748, 7.1739, 7.1731, 7.1724, 7.1715, 7.1714, 7.1676, 7.1699, 7.1719, 7.171, 7.1702, 7.1723, 7.1718, 7.1708, 7.1729, 7.1718, 7.1711, 7.1733, 7.1759, 7.1861, 7.1892, 7.1882, 7.187, 7.1866, 7.1857, 7.1846, 7.1866, 7.1856, 7.1876, 7.1867, 7.1855, 7.1845, 7.1844, 7.1866, 7.1878, 7.188, 7.191, 7.1903, 7.1893, 7.1886, 7.1875, 7.1837, 7.1829, 7.188, 7.1847, 7.1841, 7.1844, 7.1806, 7.1798, 7.1819, 7.1808, 7.1797, 7.1819, 7.1808, 7.1798, 7.182, 7.1809, 7.1926, 7.1946, 7.1937, 7.1959, 7.1951, 7.1941, 7.1931, 7.1923, 7.1946, 7.1941, 7.1931, 7.1923, 7.1945, 7.1934, 7.1928, 7.1916, 7.1909, 7.1909, 7.1901, 7.1892, 7.1881, 7.1874, 7.1894, 7.1891, 7.1881, 7.1902, 7.1922, 7.1969, 7.1962, 7.1983, 7.2002, 7.1992, 7.1954, 7.1943, 7.1963, 7.1954, 7.1975, 7.1995, 7.2016, 7.1978, 7.1998, 7.199, 7.198, 7.2002, 7.2053, 7.2042, 7.2064, 7.2119, 7.2081, 7.2071, 7.2034, 7.2027, 7.2022, 7.1985, 7.1976, 7.1966, 7.1984, 7.1976, 7.1996, 7.1987, 7.2017, 7.2037, 7.2057, 7.2053, 7.2044, 7.2036, 7.2057, 7.202, 7.201, 7.2, 7.1991, 7.1985, 7.2006, 7.1999, 7.1989, 7.1979, 7.2, 7.199, 7.2012, 7.2003, 7.1994, 7.2012, 7.1986, 7.2013, 7.2003, 7.1995, 7.199, 7.198, 7.197, 7.1964, 7.1985, 7.1976, 7.1967, 7.1957, 7.1965, 7.1957, 7.2016, 7.2008, 7.2, 7.1992, 7.1988, 7.198, 7.1973, 7.1963, 7.1927, 7.192, 7.1912, 7.1902, 7.1869, 7.1892, 7.1882, 7.1874, 7.1839, 7.1859, 7.188, 7.1853, 7.1852, 7.1843, 7.1807, 7.1802, 7.1833, 7.1841, 7.1843, 7.1834, 7.1828, 7.1829, 7.1819, 7.1811, 7.1805, 7.1797, 7.1849, 7.1841, 7.1861, 7.1854, 7.1874, 7.1874, 7.1868, 7.1832, 7.1852, 7.1842, 7.1863, 7.1853, 7.1846, 7.1838, 7.1835, 7.1829, 7.1825, 7.1815, 7.1809, 7.1801, 7.1765, 7.1759, 7.1752, 7.1743, 7.1768, 7.1758, 7.1752, 7.1749, 7.1768, 7.1763, 7.1753, 7.1744, 7.1764, 7.173, 7.1749, 7.1742, 7.1735, 7.1726, 7.1717, 7.171, 7.1701, 7.1693, 7.1745, 7.1711, 7.1806, 7.1855, 7.1879, 7.1873, 7.1867, 7.1858, 7.1876, 7.1866, 7.1856, 7.1848, 7.1866, 7.1859, 7.1851, 7.187, 7.1921, 7.1974, 7.1996, 7.1986, 7.1978, 7.197, 7.1969, 7.1964, 7.1956, 7.1973, 7.1995, 7.1987, 7.196, 7.1951, 7.1942, 7.1936, 7.1936, 7.1939, 7.1932, 7.1924, 7.1915, 7.1934, 7.1953, 7.1971, 7.1988, 7.2016, 7.2008, 7.1998, 7.1988, 7.1978, 7.1996, 7.1986, 7.1978, 7.1968, 7.1959, 7.1976, 7.1966, 7.1989, 7.1979, 7.1998, 7.199, 7.1981, 7.1974, 7.1992, 7.1985, 7.1976, 7.1967, 7.1957, 7.1948, 7.1966, 7.1965, 7.1959, 7.198, 7.1971, 7.1962, 7.1953, 7.1924, 7.1942, 7.1961, 7.1951, 7.197, 7.1963, 7.1981, 7.1977, 7.1969, 7.1935, 7.1925, 7.1917, 7.1935, 7.1955, 7.204, 7.2073, 7.2182, 7.2173, 7.2167, 7.216, 7.2153, 7.2145, 7.2136, 7.2127, 7.2123, 7.2115, 7.2134, 7.2125, 7.2118, 7.2135, 7.2125, 7.2116, 7.2109, 7.2126, 7.2116, 7.2109, 7.2101, 7.2094, 7.2084, 7.2104, 7.2186, 7.2176, 7.2166, 7.2159, 7.2189, 7.2183, 7.2225, 7.2218, 7.2209, 7.2208, 7.2199, 7.2191, 7.2209, 7.2201, 7.2192, 7.2208, 7.2201, 7.2193, 7.2187, 7.2181, 7.2199, 7.2193, 7.2265, 7.2232, 7.2224, 7.2244, 7.2235, 7.2202, 7.2199, 7.2244, 7.2264, 7.2255, 7.2248, 7.2238, 7.2228, 7.2219, 7.2211, 7.2205, 7.2221, 7.2212, 7.2204, 7.2196, 7.2188, 7.218, 7.2171, 7.219, 7.2208, 7.22, 7.2312, 7.2304, 7.2324, 7.2318, 7.231, 7.2329, 7.2325, 7.2315, 7.2307, 7.2327, 7.2319, 7.2337, 7.2329, 7.2297, 7.2289, 7.228, 7.2272, 7.2289, 7.2332, 7.234, 7.2359, 7.235, 7.2341, 7.2308, 7.2299, 7.2291, 7.2287, 7.2278, 7.2272, 7.229, 7.2305, 7.2299, 7.2289, 7.2282, 7.2274, 7.2266, 7.2283, 7.2274, 7.2291, 7.2282, 7.2273, 7.229, 7.2359, 7.2352, 7.2344, 7.2335, 7.2349, 7.2345, 7.2336, 7.2327, 7.2418, 7.2413, 7.2405, 7.2421, 7.2418, 7.2461, 7.2454, 7.2449, 7.2441, 7.2435, 7.2427, 7.242, 7.2421, 7.244, 7.2432, 7.2423, 7.2428, 7.2464, 7.2458, 7.2452, 7.2448, 7.2443, 7.2463, 7.2455, 7.245, 7.2444, 7.2436, 7.2454, 7.2447, 7.2438, 7.243, 7.2421, 7.2412, 7.2405, 7.2397, 7.239, 7.2383, 7.2352, 7.2343, 7.2335, 7.2328, 7.2343, 7.234, 7.2333, 7.2326, 7.2343, 7.2338, 7.2329, 7.2298, 7.2315, 7.2308, 7.2299, 7.229, 7.2283, 7.2274, 7.2272, 7.2269, 7.2261, 7.2254, 7.2247, 7.2239, 7.2232, 7.2224, 7.2238, 7.223, 7.2223, 7.2238, 7.2234, 7.2227, 7.2219, 7.2188, 7.2181, 7.2176, 7.2248, 7.224, 7.2232, 7.2251, 7.2246, 7.2239, 7.2232, 7.2251, 7.2245, 7.2243, 7.2236, 7.2206, 7.2345, 7.2361, 7.2353, 7.2369, 7.2361, 7.2352, 7.2371, 7.2387, 7.2385, 7.2378, 7.2397, 7.2414, 7.2408, 7.2402, 7.2394, 7.2385, 7.2401, 7.2393, 7.2387, 7.2384, 7.2354, 7.2324, 7.2294, 7.2311, 7.2306, 7.2322, 7.2314, 7.2306, 7.2297, 7.2314, 7.2308, 7.2299, 7.2294, 7.2286, 7.2301, 7.2293, 7.2286, 7.2282, 7.2274, 7.2266, 7.2258, 7.2249, 7.2267, 7.2283, 7.2276, 7.2269, 7.2263, 7.2255, 7.2271, 7.2287, 7.2279, 7.2249, 7.222, 7.2212, 7.2206, 7.2198, 7.219, 7.2182, 7.2176, 7.2172, 7.2165, 7.2157, 7.2173, 7.2165, 7.2158, 7.2155, 7.2146, 7.2164, 7.2194, 7.2188, 7.2182, 7.2175, 7.217, 7.2162, 7.2156, 7.2149, 7.2143, 7.2136, 7.2162, 7.2155, 7.2147, 7.214, 7.2132, 7.2151, 7.2155, 7.2173, 7.2167, 7.216, 7.2151, 7.2182, 7.2175, 7.2193, 7.2188, 7.2181, 7.2275, 7.2268, 7.2295, 7.2287, 7.2281, 7.232, 7.2377, 7.2371, 7.2374, 7.239, 7.239, 7.236, 7.2448, 7.244, 7.2432, 7.2448, 7.2442, 7.2437, 7.2431, 7.2424, 7.2416, 7.2408, 7.2422, 7.2457, 7.245, 7.2442, 7.2434, 7.2426, 7.2418, 7.2411, 7.2427, 7.2423, 7.2415, 7.2454, 7.247, 7.2463, 7.2456, 7.2449, 7.2465, 7.2459, 7.2459, 7.2452, 7.2447, 7.2446, 7.2438, 7.246, 7.2458, 7.2454, 7.2446, 7.2438, 7.2432, 7.2424, 7.242, 7.2412, 7.2427, 7.2419, 7.2434, 7.2427, 7.2419, 7.2433, 7.2439, 7.2433, 7.2425, 7.244, 7.2432, 7.2423, 7.2415, 7.2407, 7.2402, 7.2394, 7.2388, 7.238, 7.2372, 7.2365, 7.2358, 7.2352, 7.2345, 7.2359, 7.2352, 7.2345, 7.2339, 7.2333, 7.2326, 7.232, 7.2316, 7.2333, 7.2327, 7.2343, 7.2337, 7.2329, 7.239, 7.2382, 7.2377, 7.2372, 7.2366, 7.2359, 7.2351, 7.2433, 7.2425, 7.2418, 7.2412, 7.2448, 7.2485, 7.2499, 7.2491, 7.2483, 7.2478, 7.247, 7.2468, 7.2483, 7.2482, 7.2498, 7.249, 7.2485, 7.2481, 7.2499, 7.2494, 7.2488, 7.2481, 7.2476, 7.2468, 7.246, 7.2454, 7.2447, 7.2439, 7.2454, 7.2469, 7.2466, 7.2458, 7.2454, 7.2448, 7.244, 7.2456, 7.2454, 7.2457, 7.2449, 7.2441, 7.2433, 7.2428, 7.242, 7.2412, 7.2404, 7.2396, 7.2389, 7.2383, 7.2376, 7.239, 7.2384, 7.2399, 7.2391, 7.2405, 7.2399, 7.2397, 7.2412, 7.2406, 7.24, 7.2394, 7.2386, 7.2378, 7.2371, 7.2386, 7.2383, 7.2379, 7.2372, 7.2367, 7.2363, 7.2359, 7.2374, 7.2391, 7.2384, 7.2387, 7.2381, 7.2354, 7.2348, 7.2321, 7.2314, 7.2307, 7.2299, 7.2293, 7.229, 7.2263, 7.2255, 7.2251, 7.2245, 7.224, 7.2232, 7.2224, 7.2217, 7.221, 7.2224, 7.2299, 7.2294, 7.2287, 7.2262, 7.2258, 7.2252, 7.2245, 7.224, 7.2305, 7.2299, 7.2292, 7.2286, 7.2279, 7.2252, 7.2225, 7.222, 7.222, 7.2213, 7.2206, 7.2199, 7.2214, 7.2207, 7.2204, 7.2197, 7.219, 7.2183, 7.2175, 7.2169, 7.2182, 7.2174, 7.2168, 7.2164, 7.2157, 7.2151, 7.2164, 7.216, 7.2174, 7.2187, 7.218, 7.2174, 7.2187, 7.2201, 7.2195, 7.2187, 7.2187, 7.218, 7.2175, 7.2169, 7.2161, 7.2176, 7.2191, 7.2187, 7.2181, 7.2176, 7.217, 7.2185, 7.2181, 7.2175, 7.217, 7.2164, 7.2158, 7.2152, 7.2161, 7.2155, 7.2149, 7.2143, 7.2136, 7.2129, 7.2123, 7.212, 7.2114, 7.2108, 7.2104, 7.2099, 7.2093, 7.2087, 7.2081, 7.2097, 7.2112, 7.2107, 7.21, 7.2115, 7.2111, 7.2104, 7.2097, 7.2122, 7.218, 7.2175, 7.2168, 7.2245, 7.2241, 7.2236, 7.2246, 7.2241, 7.2234, 7.2249, 7.2272, 7.2267, 7.2263, 7.2261, 7.2254, 7.2247, 7.224, 7.2238, 7.2231, 7.2224, 7.2219, 7.2211, 7.2203, 7.2197, 7.2211, 7.2204, 7.2212, 7.2208, 7.2203, 7.2217, 7.221, 7.2237, 7.2234, 7.2229, 7.2222, 7.2197, 7.219, 7.2182, 7.2175, 7.2188, 7.2219, 7.2197, 7.2192, 7.2207, 7.2224, 7.2218, 7.2239, 7.2253, 7.2246, 7.2242, 7.2257, 7.2271, 7.2264, 7.2257, 7.2252, 7.2246, 7.226, 7.2253, 7.2248, 7.2242, 7.2256, 7.227, 7.2264, 7.226, 7.2257, 7.2271, 7.2265, 7.2272, 7.2266, 7.2278, 7.2273, 7.2267, 7.226, 7.2253, 7.2248, 7.2241, 7.2235, 7.225, 7.2243, 7.2238, 7.224, 7.2234, 7.2228, 7.2222, 7.2218, 7.2222, 7.2217, 7.221, 7.2233, 7.2246, 7.2239, 7.2233, 7.2228, 7.2221, 7.2217, 7.2213, 7.2209, 7.2222, 7.2219, 7.2213, 7.2207, 7.2201, 7.2194, 7.2188, 7.2222, 7.2237, 7.223, 7.2224, 7.222, 7.2215, 7.2228, 7.2262, 7.2255, 7.2247, 7.224, 7.2253, 7.2246, 7.2239, 7.2234, 7.2248, 7.2262, 7.2257, 7.2232, 7.2227, 7.2239, 7.2235, 7.223, 7.2225, 7.2221, 7.2233, 7.2226, 7.224, 7.2235, 7.2228, 7.2241, 7.2254, 7.225, 7.2243, 7.2238, 7.2251, 7.2244, 7.2257, 7.2251, 7.2264, 7.2277, 7.227, 7.2283, 7.2276, 7.2271, 7.2284, 7.2277, 7.2276, 7.2269, 7.2262, 7.2275, 7.2268, 7.2261, 7.2256, 7.227, 7.2264, 7.2258, 7.2251, 7.2244, 7.2237, 7.2231, 7.2244, 7.2237, 7.2231, 7.2243, 7.2236, 7.2229, 7.2222, 7.2234, 7.2227, 7.2222, 7.2234, 7.2228, 7.2222, 7.2219, 7.2212, 7.2205, 7.2218, 7.2213, 7.2208, 7.2207, 7.2202, 7.2197, 7.2191, 7.2184, 7.2178, 7.2172, 7.2165, 7.214, 7.2133, 7.213, 7.2125, 7.2119, 7.2158, 7.2158, 7.2151, 7.2146, 7.2159, 7.2154, 7.2167, 7.218, 7.2194, 7.2188, 7.2183, 7.2177, 7.2171, 7.2171, 7.2165, 7.2179, 7.2175, 7.2188, 7.2196, 7.2211, 7.2226, 7.222, 7.2215, 7.2218, 7.2212, 7.221, 7.2203, 7.2197, 7.2191, 7.2186, 7.2199, 7.2194, 7.2207, 7.2201, 7.2196, 7.2192, 7.2186, 7.2181, 7.2208, 7.2204, 7.2198, 7.2191, 7.2185, 7.218, 7.2173, 7.2167, 7.2161, 7.2174, 7.2169, 7.2165, 7.2178, 7.2171, 7.2164, 7.2177, 7.2175, 7.2188, 7.2203, 7.2197, 7.219, 7.2203, 7.22, 7.2194, 7.2209, 7.2203, 7.2198, 7.2231, 7.2246, 7.2265, 7.2278, 7.2272, 7.2285, 7.2278, 7.2272, 7.2266, 7.226, 7.2273, 7.2267, 7.2245, 7.2239, 7.2233, 7.2227, 7.2223, 7.2216, 7.2209, 7.2203, 7.2197, 7.2273, 7.2285, 7.2278, 7.229, 7.2284, 7.2297, 7.2293, 7.2307, 7.2322, 7.2327, 7.2321, 7.2334, 7.2327, 7.232, 7.2321, 7.232, 7.2316, 7.2328, 7.2322, 7.2319, 7.2315, 7.2308, 7.2301, 7.2313, 7.2307, 7.2306, 7.2299, 7.2312, 7.2306, 7.23, 7.2318, 7.2311, 7.2304, 7.2298, 7.2312, 7.2305, 7.2316, 7.2327, 7.2339, 7.2355, 7.2348, 7.2341, 7.2354, 7.2387, 7.2399, 7.2394, 7.2388, 7.2402, 7.2395, 7.2388, 7.2385, 7.238, 7.2373, 7.2366, 7.236, 7.2356, 7.2349, 7.2361, 7.2373, 7.2371, 7.2365, 7.2359, 7.2355, 7.2368, 7.2382, 7.2376, 7.2388, 7.2462, 7.2456, 7.2451, 7.2445, 7.2459, 7.2472, 7.2484, 7.2478, 7.2472, 7.2485, 7.2482, 7.2495, 7.2489, 7.2482, 7.2524, 7.2518, 7.2512, 7.2489, 7.252, 7.2513, 7.2508, 7.2502, 7.2495, 7.2489, 7.2483, 7.2478, 7.249, 7.2488, 7.2482, 7.2494, 7.2491, 7.2485, 7.2478, 7.2471, 7.2483, 7.2476, 7.247, 7.2465, 7.2442, 7.242, 7.2434, 7.2428, 7.244, 7.2433, 7.2427, 7.2423, 7.2435, 7.243, 7.2407, 7.2419, 7.2412, 7.2408, 7.2405, 7.2431, 7.2443, 7.2438, 7.245, 7.2463, 7.2458, 7.249, 7.2497, 7.2516, 7.2519, 7.2531, 7.2525, 7.2519, 7.2515, 7.2508, 7.2503, 7.2496, 7.249, 7.2484, 7.2477, 7.2471, 7.2468, 7.2462, 7.2473, 7.247, 7.2483, 7.2476, 7.247, 7.2464, 7.2476, 7.2489, 7.2483, 7.2496, 7.2509, 7.2505, 7.2516, 7.2527, 7.2537, 7.2532, 7.2526, 7.254, 7.2534, 7.2528, 7.2522, 7.2516, 7.2531, 7.2544, 7.2557, 7.2551, 7.2565, 7.2584, 7.2562, 7.2558, 7.2627, 7.2621, 7.2615, 7.261, 7.2604, 7.2582, 7.2576, 7.2587, 7.2581, 7.2593, 7.2587, 7.26, 7.2596, 7.2609, 7.2603, 7.2597, 7.2591, 7.2585, 7.2579, 7.2573, 7.2567, 7.2561, 7.2557, 7.2556, 7.2569, 7.2563, 7.2557, 7.2551, 7.2547, 7.2542, 7.2537, 7.2534, 7.2516, 7.2512, 7.2528, 7.2525, 7.2536, 7.2534, 7.2545, 7.2557, 7.2551, 7.2545, 7.2541, 7.2536, 7.2534, 7.2528, 7.2524, 7.2534, 7.2531, 7.2542, 7.2537, 7.2532, 7.2527, 7.2522, 7.2535, 7.2529, 7.2523, 7.2517, 7.2535, 7.2531, 7.251, 7.2509, 7.2523, 7.2517, 7.2512, 7.2507, 7.2503, 7.2497, 7.2509, 7.2504, 7.2482, 7.2476, 7.247, 7.2482, 7.2495, 7.2508, 7.2508, 7.2502, 7.2496, 7.249, 7.2484, 7.2496, 7.249, 7.2486, 7.2482, 7.2476, 7.2476, 7.2473, 7.2467, 7.2481, 7.2475, 7.247, 7.2466, 7.2461, 7.2457, 7.2468, 7.2462, 7.2475, 7.2472, 7.2466, 7.246, 7.2455, 7.2449, 7.2445, 7.244, 7.2434, 7.2463, 7.2458, 7.2452, 7.2463, 7.2457, 7.2452, 7.2446, 7.2441, 7.2452, 7.2464, 7.2458, 7.2469, 7.2463, 7.248, 7.2492, 7.2486, 7.248, 7.2476, 7.2472, 7.2466, 7.2464, 7.2477, 7.249, 7.2484, 7.248, 7.2475, 7.2471, 7.2469, 7.2466, 7.2478, 7.2476, 7.249, 7.2504, 7.2504, 7.2498, 7.2498, 7.2492, 7.2486, 7.248, 7.2475, 7.247, 7.2519, 7.2514, 7.2526, 7.2521, 7.2522, 7.2567, 7.2561, 7.2573, 7.2585, 7.2579, 7.2574, 7.2569, 7.2581, 7.2611, 7.2606, 7.2607, 7.2618, 7.2638, 7.2672, 7.2686, 7.2681, 7.2681, 7.2709, 7.2721, 7.2718, 7.2712, 7.2723, 7.2719, 7.2715, 7.2712, 7.2707, 7.2701, 7.2695, 7.2694, 7.2688, 7.2746, 7.2741, 7.2735, 7.2729, 7.2723, 7.2717, 7.2712, 7.2724, 7.2736, 7.273, 7.2724, 7.2718, 7.2728, 7.2757, 7.2752, 7.2765, 7.2759, 7.2754, 7.2749, 7.2762, 7.2756, 7.2751, 7.2746, 7.2757, 7.2768, 7.2762, 7.2756, 7.275, 7.2731, 7.271, 7.2708, 7.2767, 7.278, 7.2791, 7.2802, 7.2817, 7.2815, 7.2795, 7.2791, 7.2802, 7.2781, 7.2787, 7.2784, 7.2764, 7.2765, 7.276, 7.2757, 7.2767, 7.2761, 7.2756, 7.2784, 7.2778, 7.2775, 7.2833, 7.2832, 7.2846, 7.284, 7.2834, 7.2828, 7.2842, 7.2854, 7.2852, 7.2846, 7.2825, 7.282, 7.2832, 7.2828, 7.2825, 7.2821, 7.2817, 7.2812, 7.2806, 7.28, 7.2797, 7.2791, 7.2787, 7.2781, 7.2791, 7.2787, 7.2783, 7.2777, 7.2771, 7.2766, 7.2761, 7.2756, 7.2752, 7.2763, 7.2758, 7.2752, 7.2747, 7.2758, 7.2752, 7.2748, 7.2743, 7.2738, 7.2732, 7.2727, 7.2721, 7.2717, 7.2711, 7.2721, 7.2716, 7.2712, 7.2707, 7.2703, 7.2714, 7.2709, 7.275, 7.2744, 7.2756, 7.275, 7.2746, 7.274, 7.2735, 7.273, 7.2725, 7.272, 7.2714, 7.2709, 7.272, 7.2714, 7.2725, 7.272, 7.2714, 7.2725, 7.2736, 7.2747, 7.2741, 7.2737, 7.2733, 7.2728, 7.2724, 7.2757, 7.2751, 7.2746, 7.2778, 7.2805, 7.2801, 7.2816, 7.2813, 7.2815, 7.281, 7.2804, 7.2801, 7.2797, 7.2793, 7.2788, 7.2788, 7.2783, 7.2778, 7.2774, 7.2787, 7.2783, 7.278, 7.2778, 7.2773, 7.2771, 7.2766, 7.2778, 7.2773, 7.2753, 7.2751, 7.2763, 7.2758, 7.2768, 7.2762, 7.2759, 7.2754, 7.2748, 7.2743, 7.2738, 7.2733, 7.273, 7.2724, 7.2718, 7.2713, 7.2709, 7.2706, 7.2701, 7.2711, 7.2707, 7.2702, 7.2698, 7.2708, 7.2702, 7.2696, 7.269, 7.2701, 7.2681, 7.2662, 7.2657, 7.2652, 7.2647, 7.2641, 7.2635, 7.2629, 7.264, 7.2653, 7.2648, 7.2642, 7.2636, 7.2647, 7.2642, 7.2653, 7.2664, 7.2658, 7.2639, 7.2633, 7.2628, 7.2623, 7.2634, 7.2629, 7.2624, 7.2619, 7.2616, 7.2627, 7.2621, 7.2615, 7.2626, 7.2622, 7.2616, 7.2627, 7.2621, 7.2616, 7.2611, 7.2606, 7.26, 7.2594, 7.2589, 7.2585, 7.2568, 7.2563, 7.2558, 7.2553, 7.258, 7.2592, 7.2589, 7.2601, 7.2598, 7.2592, 7.2602, 7.2582, 7.2563, 7.2544, 7.2539, 7.2536, 7.2547, 7.2543, 7.2539, 7.2534, 7.2529, 7.2523, 7.2517, 7.2497, 7.2478, 7.2478, 7.2473, 7.2483, 7.2493, 7.2489, 7.2483, 7.2477, 7.2471, 7.2466, 7.2461, 7.2457, 7.2452, 7.2447, 7.2441, 7.2452, 7.2461, 7.246, 7.2455, 7.245, 7.2447, 7.2442, 7.2438, 7.2434, 7.2436, 7.2448, 7.2509, 7.2505, 7.2516, 7.2517, 7.2542, 7.2538, 7.2533, 7.2528, 7.2524, 7.252, 7.2515, 7.2509, 7.252, 7.2515, 7.2532, 7.2528, 7.2538, 7.2549, 7.2544, 7.2557, 7.2558, 7.2553, 7.2549, 7.2544, 7.2539, 7.2534, 7.256, 7.2555, 7.2551, 7.2545, 7.254, 7.2618, 7.2612, 7.2623, 7.2617, 7.2613, 7.2608, 7.2588, 7.2599, 7.2594, 7.2589, 7.2599, 7.261, 7.262, 7.2615, 7.2626, 7.2621, 7.2616, 7.2627, 7.2637, 7.2619, 7.2601, 7.2596, 7.261, 7.2607, 7.2618, 7.2627, 7.2625, 7.263, 7.2626, 7.2622, 7.2631, 7.2629, 7.2626, 7.2623, 7.2617, 7.263, 7.2625, 7.2635, 7.2629, 7.2625, 7.262, 7.2629, 7.2625, 7.2635, 7.2646, 7.2641, 7.2651, 7.2659, 7.2653, 7.2651, 7.2645, 7.2655, 7.265, 7.266, 7.2656, 7.265, 7.2645, 7.2655, 7.265, 7.2644, 7.2639, 7.2635, 7.2631, 7.2627, 7.2622, 7.2618, 7.2658, 7.2654, 7.265, 7.2661, 7.2656, 7.2651, 7.2649, 7.2643, 7.264, 7.2635, 7.263, 7.2626, 7.2621, 7.263, 7.2625, 7.2624, 7.2634, 7.2645, 7.264, 7.2636, 7.2647, 7.2649, 7.2645, 7.2672, 7.2667, 7.2679, 7.2674, 7.2701, 7.2732, 7.2749, 7.2745, 7.2741, 7.2737, 7.2763, 7.2758, 7.2742, 7.2727, 7.2725, 7.272, 7.273, 7.2726, 7.2721, 7.2716, 7.2711, 7.2707, 7.2703, 7.27, 7.271, 7.2705, 7.27, 7.2698, 7.2694, 7.269, 7.2672, 7.2683, 7.2678, 7.2688, 7.2685, 7.268, 7.2676, 7.2658, 7.264, 7.2635, 7.263, 7.2625, 7.262, 7.2615, 7.2625, 7.262, 7.2615, 7.261, 7.2619, 7.2614, 7.2624, 7.2634, 7.2644, 7.2653, 7.2649, 7.2644, 7.2639, 7.2664, 7.2659, 7.2656, 7.2653, 7.2648, 7.2643, 7.2652, 7.2647, 7.2645, 7.2641, 7.2636, 7.2635, 7.2636, 7.2632, 7.263, 7.264, 7.265, 7.2646, 7.2671, 7.2685, 7.2695, 7.269, 7.2686, 7.2696, 7.2691, 7.2686, 7.2696, 7.2705, 7.2715, 7.271, 7.2724, 7.2719, 7.2715, 7.2711, 7.2721, 7.2717, 7.2712, 7.2697, 7.2692, 7.2691, 7.2686, 7.2688, 7.2683, 7.2678, 7.2673, 7.2683, 7.2693, 7.2689, 7.2687, 7.2683, 7.2678, 7.2673, 7.267, 7.2666, 7.2662, 7.2671, 7.2667, 7.2662, 7.2657, 7.2653, 7.2635, 7.2618, 7.2613, 7.2609, 7.2604, 7.26, 7.2595, 7.2592, 7.2589, 7.2599, 7.2597, 7.2592, 7.259, 7.2619, 7.2614, 7.2597, 7.2592, 7.2587, 7.2582, 7.2577, 7.2577, 7.2574, 7.2569, 7.2567, 7.2562, 7.2572, 7.2567, 7.2576, 7.2572, 7.2581, 7.259, 7.2585, 7.258, 7.2575, 7.2616, 7.2626, 7.2621, 7.263, 7.2641, 7.2636, 7.2633, 7.2643, 7.2639, 7.2634, 7.2629, 7.2638, 7.2634, 7.263, 7.2625, 7.2622, 7.2619, 7.2614, 7.2612, 7.2608, 7.2605, 7.26, 7.2596, 7.2591, 7.2586, 7.2583, 7.2578, 7.2586, 7.2583, 7.2578, 7.2574, 7.2571, 7.2566, 7.2575, 7.257, 7.2566, 7.2562, 7.257, 7.2565, 7.2561, 7.2556, 7.2566, 7.2562, 7.2561, 7.2557, 7.2568, 7.2563, 7.256, 7.2555, 7.2552, 7.2547, 7.2544, 7.2553, 7.2562, 7.2559, 7.2569, 7.2565, 7.2561, 7.2557, 7.2553, 7.2549, 7.2545, 7.2541, 7.2536, 7.2532, 7.2528, 7.2526, 7.2535, 7.253, 7.2525, 7.252, 7.253, 7.2555, 7.2552, 7.2561, 7.2556, 7.2551, 7.2561, 7.2571, 7.2567, 7.2577, 7.2573, 7.2569, 7.2579, 7.2589, 7.2585, 7.2582, 7.2577, 7.2588, 7.2583, 7.2578, 7.2573, 7.2569, 7.258, 7.258, 7.2593, 7.259, 7.2585, 7.2596, 7.2593, 7.2605, 7.2602, 7.2599, 7.2595, 7.2578, 7.2573, 7.2584, 7.258, 7.2577, 7.2573, 7.2569, 7.2564, 7.2562, 7.2545, 7.2541, 7.2536, 7.2532, 7.2527, 7.2523, 7.2506, 7.2514, 7.2509, 7.2504, 7.2499, 7.2494, 7.2503, 7.2498, 7.2493, 7.2488, 7.2483, 7.248, 7.2463, 7.2459, 7.2468, 7.2464, 7.2501, 7.2498, 7.2493, 7.2489, 7.2484, 7.2479, 7.2475, 7.2477, 7.2472, 7.2481, 7.2478, 7.2487, 7.2496, 7.2491, 7.25, 7.2509, 7.2504, 7.2501, 7.2496, 7.2504, 7.25, 7.2495, 7.249, 7.2499, 7.2496, 7.2506, 7.2502, 7.2497, 7.2492, 7.2489, 7.2488, 7.2483, 7.2479, 7.2488, 7.2485, 7.2481, 7.249, 7.2486, 7.2482, 7.2477, 7.2472, 7.2468, 7.2463, 7.2472, 7.248, 7.2529, 7.2527, 7.2522, 7.253, 7.2525, 7.2521, 7.2516, 7.2525, 7.2534, 7.2531, 7.2528, 7.2524, 7.2522, 7.2517, 7.2543, 7.2539, 7.2569, 7.2565, 7.2562, 7.2559, 7.2555, 7.255, 7.2561, 7.2558, 7.2568, 7.2581, 7.2577, 7.2574, 7.2569, 7.2578, 7.2574, 7.2571, 7.2583, 7.2581, 7.2579, 7.2644, 7.2642, 7.2638, 7.2635, 7.263, 7.2625, 7.262, 7.2603, 7.26, 7.2609, 7.2618, 7.2614, 7.2609, 7.2593, 7.2602, 7.2599, 7.2595, 7.2579, 7.2564, 7.256, 7.2596, 7.2592, 7.26, 7.2598, 7.2609, 7.2607, 7.2602, 7.2611, 7.2607, 7.2603, 7.2598, 7.2593, 7.2592, 7.2601, 7.2597, 7.2593, 7.2608, 7.2606, 7.2601, 7.2599, 7.2598, 7.2595, 7.2591, 7.2587, 7.2573, 7.2581, 7.259, 7.2585, 7.258, 7.2589, 7.2587, 7.2584, 7.258, 7.2576, 7.2585, 7.2594, 7.259, 7.2586, 7.2595, 7.2591, 7.2601, 7.2598, 7.2594, 7.2591, 7.2589, 7.2585, 7.2581, 7.2579, 7.2587, 7.2596, 7.2592, 7.2588, 7.2584, 7.258, 7.2578, 7.2576, 7.2591, 7.2587, 7.2583, 7.258, 7.2578, 7.2586, 7.2581, 7.2577, 7.2572, 7.2568, 7.2564, 7.2561, 7.257, 7.2566, 7.2563, 7.2558, 7.2553, 7.2562, 7.2558, 7.2555, 7.255, 7.2545, 7.2541, 7.2536, 7.2532, 7.2529, 7.2538, 7.2534, 7.2529, 7.2524, 7.2519, 7.2528, 7.2524, 7.2521, 7.2517, 7.2513, 7.2508, 7.2503, 7.2511, 7.2506, 7.2502, 7.2512, 7.2508, 7.2505, 7.2501, 7.2498, 7.2494, 7.2477, 7.2474, 7.2471, 7.2467, 7.2464, 7.246, 7.2456, 7.244, 7.2435, 7.243, 7.2425, 7.2432, 7.243, 7.2425, 7.2427, 7.2423, 7.2466, 7.2464, 7.2462, 7.2459, 7.2455, 7.2465, 7.2461, 7.2469, 7.2478, 7.2475, 7.2471, 7.2455, 7.2466, 7.2462, 7.2458, 7.2442, 7.2437, 7.2432, 7.2428, 7.2437, 7.245, 7.2445, 7.2429, 7.2424, 7.2432, 7.2428, 7.2423, 7.242, 7.2443, 7.2438, 7.2435, 7.2431, 7.2428, 7.2424, 7.2436, 7.2432, 7.2442, 7.2443, 7.2455, 7.2462, 7.2446, 7.243, 7.2439, 7.2434, 7.2472, 7.2467, 7.2463, 7.2459, 7.2468, 7.2464, 7.2459, 7.2456, 7.2453, 7.245, 7.2435, 7.2431, 7.2427, 7.2422, 7.2418, 7.2415, 7.2413, 7.2397, 7.2396, 7.2392, 7.2394, 7.239, 7.2386, 7.2395, 7.2391, 7.2387, 7.2382, 7.2378, 7.2374, 7.237, 7.2366, 7.2374, 7.2382, 7.2379, 7.2376, 7.2385, 7.2371, 7.2367, 7.2364, 7.2359, 7.2357, 7.2341, 7.2337, 7.2363, 7.236, 7.2368, 7.2366, 7.235, 7.2359, 7.2356, 7.2352, 7.2374, 7.2383, 7.238, 7.2377, 7.2374, 7.2371, 7.2367, 7.2364, 7.236, 7.2357, 7.2353, 7.2362, 7.2371, 7.2366, 7.2361, 7.236, 7.2355, 7.2352, 7.2349, 7.2346, 7.2342, 7.2338, 7.2324, 7.2324, 7.232, 7.2317, 7.2314, 7.2311, 7.2296, 7.2292, 7.2288, 7.2285, 7.2282, 7.2279, 7.2276, 7.2271, 7.2256, 7.2265, 7.2263, 7.2271, 7.2268, 7.2263, 7.226, 7.2257, 7.2266, 7.2262, 7.2258, 7.2242, 7.2239, 7.2235, 7.223, 7.2239, 7.2235, 7.2231, 7.2239, 7.2236, 7.2232, 7.2228, 7.2224, 7.222, 7.2217, 7.2214, 7.2222, 7.2219, 7.2215, 7.2212, 7.222, 7.2229, 7.2225, 7.2247, 7.2256, 7.2265, 7.2261, 7.2257, 7.2256, 7.2241, 7.2236, 7.2232, 7.2241, 7.2238, 7.2246, 7.2255, 7.2251, 7.2248, 7.2233, 7.2229, 7.2225, 7.2224, 7.222, 7.2217, 7.2215, 7.2226, 7.2234, 7.2231, 7.224, 7.2225, 7.2221, 7.2218, 7.2227, 7.2223, 7.2232, 7.2219, 7.2216, 7.2213, 7.2209, 7.2206, 7.2208, 7.2205, 7.2214, 7.221, 7.2218, 7.2214, 7.2209, 7.2204, 7.2213, 7.221, 7.221, 7.2195, 7.2191, 7.2179, 7.2206, 7.2202, 7.2199, 7.2195, 7.2207, 7.2195, 7.2207, 7.2194, 7.2194, 7.219, 7.2186, 7.2183, 7.2192, 7.22, 7.2199, 7.2195, 7.2191, 7.2187, 7.2196, 7.2192, 7.2188, 7.2185, 7.2182, 7.2178, 7.2174, 7.217, 7.2167, 7.2163, 7.2148, 7.2144, 7.2152, 7.2149, 7.2159, 7.2144, 7.2142, 7.2139, 7.2135, 7.2144, 7.2152, 7.2148, 7.2145, 7.2154, 7.2162, 7.2158, 7.2143, 7.214, 7.2137, 7.2133, 7.2141, 7.215, 7.2158, 7.2154, 7.2163, 7.217, 7.2166, 7.2162, 7.2159, 7.2155, 7.2164, 7.2175, 7.2172, 7.218, 7.2188, 7.2186, 7.2181, 7.2179, 7.2188, 7.2184, 7.2181, 7.2178, 7.2185, 7.2193, 7.2189, 7.2184, 7.218, 7.2177, 7.2187, 7.2184, 7.218, 7.2188, 7.2196, 7.2193, 7.219, 7.2186, 7.2195, 7.2191, 7.2203, 7.22, 7.2197, 7.2193, 7.2178, 7.2178, 7.2174, 7.217, 7.2166, 7.2162, 7.2172, 7.2168, 7.2153, 7.2161, 7.2157, 7.2153, 7.2149, 7.2157, 7.2153, 7.2149, 7.2146, 7.2153, 7.2161, 7.2157, 7.2142, 7.215, 7.2158, 7.2166, 7.2173, 7.2169, 7.2166, 7.2162, 7.2158, 7.2154, 7.2139, 7.215, 7.2148, 7.2145, 7.2142, 7.2151, 7.2148, 7.2145, 7.2141, 7.2149, 7.2158, 7.2166, 7.2175, 7.2172, 7.2168, 7.2164, 7.2172, 7.2173, 7.2185, 7.2192, 7.2188, 7.2186, 7.2182, 7.2178, 7.2174, 7.2183, 7.2181, 7.2182, 7.2179, 7.2187, 7.2184, 7.2193, 7.219, 7.2186, 7.2183, 7.2192, 7.2188, 7.2196, 7.2204, 7.2213, 7.2221, 7.2206, 7.2216, 7.2212, 7.222, 7.2218, 7.2227, 7.2236, 7.2248, 7.2245, 7.2242, 7.2238, 7.2246, 7.2243, 7.2252, 7.2248, 7.2245, 7.2253, 7.2262, 7.2261, 7.2257, 7.2266, 7.2273, 7.227, 7.2255, 7.2253, 7.225, 7.2246, 7.2254, 7.2253, 7.225, 7.2238, 7.2235, 7.2232, 7.2229, 7.2225, 7.2265, 7.2272, 7.227, 7.2267, 7.2263, 7.2248, 7.2245, 7.2254, 7.2272, 7.228, 7.2277, 7.2273, 7.228, 7.2276, 7.2273, 7.2269, 7.2265, 7.2261, 7.2257, 7.2265, 7.2262, 7.2272, 7.2289, 7.2299, 7.2306, 7.2303, 7.23, 7.2296, 7.2294, 7.229, 7.2287, 7.2272, 7.2268, 7.2277, 7.2273, 7.2281, 7.2277, 7.2273, 7.227, 7.2278, 7.2274, 7.2271, 7.2258, 7.2255, 7.2241, 7.2237, 7.2233, 7.223, 7.2227, 7.2223, 7.2219, 7.2218, 7.2215, 7.2211, 7.2219, 7.2227, 7.2223, 7.2231, 7.2227, 7.2212, 7.2209, 7.2206, 7.2204, 7.2223, 7.2231, 7.2228, 7.2247, 7.2243, 7.2252, 7.225, 7.2247, 7.2245, 7.2241, 7.2226, 7.2235, 7.2232, 7.2229, 7.2227, 7.2214, 7.2212, 7.2221, 7.223, 7.2232, 7.2229, 7.2227, 7.2224, 7.222, 7.2216, 7.2224, 7.2232, 7.2247, 7.2232, 7.2229, 7.2237, 7.2244, 7.2252, 7.2248, 7.2246, 7.2243, 7.2251, 7.2248, 7.2246, 7.2254, 7.225, 7.2246, 7.2254, 7.225, 7.2246, 7.2242, 7.2238, 7.2235, 7.2232, 7.2228, 7.2237, 7.2236, 7.2243, 7.2242, 7.2238, 7.2236, 7.2222, 7.2218, 7.2204, 7.2202, 7.22, 7.2197, 7.2194, 7.2191, 7.2188, 7.2193, 7.219, 7.2187, 7.2183, 7.2191, 7.2188, 7.2184, 7.2183, 7.2179, 7.2166, 7.2163, 7.2159, 7.2156, 7.2153, 7.2149, 7.2147, 7.216, 7.2156, 7.2163, 7.2149, 7.2146, 7.2154, 7.214, 7.2148, 7.2144, 7.214, 7.2148, 7.2145, 7.2142, 7.2138, 7.2136, 7.2144, 7.214, 7.2137, 7.2134, 7.2142, 7.214, 7.2137, 7.2145, 7.2154, 7.215, 7.2147, 7.2155, 7.2154, 7.2151, 7.2148, 7.2157, 7.2154, 7.2151, 7.2171, 7.2167, 7.2176, 7.2162, 7.2159, 7.2168, 7.2165, 7.2162, 7.2159, 7.2157, 7.2154, 7.2151, 7.2147, 7.2155, 7.2152, 7.2148, 7.2144, 7.2153, 7.2161, 7.2169, 7.2166, 7.2174, 7.2182, 7.2194, 7.219, 7.2198, 7.2194, 7.219, 7.2188, 7.2185, 7.2182, 7.219, 7.2187, 7.2183, 7.2179, 7.2188, 7.2184, 7.2191, 7.2187, 7.2183, 7.2179, 7.2175, 7.2172, 7.2181, 7.2178, 7.2186, 7.2183, 7.218, 7.2177, 7.2174, 7.217, 7.2177, 7.2174, 7.2171, 7.2168, 7.2164, 7.2162, 7.2158, 7.2155, 7.2151, 7.2159, 7.2168, 7.2187, 7.2183, 7.218, 7.2176, 7.2172, 7.2168, 7.2164, 7.216, 7.2158, 7.2155, 7.2152, 7.216, 7.2168, 7.2165, 7.2162, 7.2158, 7.2165, 7.2163, 7.2227, 7.2223, 7.2219, 7.222, 7.2228, 7.2227, 7.2223, 7.222, 7.2236, 7.2232, 7.2241, 7.2238, 7.2234, 7.2232, 7.2229, 7.2236, 7.2244, 7.224, 7.2238, 7.2234, 7.2241, 7.2237, 7.2234, 7.2231, 7.2238, 7.2235, 7.2221, 7.2208, 7.2204, 7.2213, 7.2221, 7.2219, 7.2226, 7.2212, 7.2209, 7.2208, 7.2217, 7.2228, 7.2227, 7.2228, 7.2225, 7.2222, 7.2229, 7.2237, 7.2245, 7.2254, 7.2251, 7.2256, 7.2253, 7.2262, 7.2258, 7.2255, 7.2263, 7.2259, 7.2256, 7.2253, 7.2262, 7.2258, 7.2255, 7.2252, 7.2248, 7.2247, 7.2233, 7.224, 7.2236, 7.2232, 7.2239, 7.2236, 7.2242, 7.2239, 7.2236, 7.2232, 7.2228, 7.2226, 7.2222, 7.2232, 7.224, 7.2236, 7.2233, 7.223, 7.2228, 7.2224, 7.2231, 7.2218, 7.222, 7.2227, 7.2234, 7.222, 7.223, 7.2227, 7.2259, 7.2266, 7.2262, 7.2259, 7.2266, 7.2263, 7.2272, 7.2268, 7.2265, 7.2262, 7.2258, 7.2254, 7.2251, 7.2251, 7.2247, 7.2244, 7.2241, 7.2238, 7.2234, 7.223, 7.2227, 7.2225, 7.2221, 7.2207, 7.2203, 7.22, 7.2211, 7.2218, 7.2214, 7.2211, 7.2207, 7.2204, 7.2191, 7.2178, 7.2186, 7.2182, 7.2189, 7.2185, 7.2181, 7.2188, 7.2185, 7.2183, 7.218, 7.2177, 7.2186, 7.2193, 7.22, 7.2198, 7.2194, 7.2192, 7.2243, 7.2261, 7.2249, 7.2246, 7.2253, 7.2261, 7.2247, 7.2247, 7.2254, 7.224, 7.2239, 7.2238, 7.2235, 7.2245, 7.229, 7.2297, 7.235, 7.2347, 7.2345, 7.2342, 7.2349, 7.2385, 7.2381, 7.2378, 7.2375, 7.2384, 7.238, 7.2391, 7.2391, 7.239, 7.2398, 7.2394, 7.2403, 7.24, 7.2396, 7.2393, 7.2389, 7.2401, 7.2412, 7.2409, 7.2406, 7.2403, 7.24, 7.2397, 7.2406, 7.2414, 7.2411, 7.2408, 7.2408, 7.2408, 7.2416, 7.2441, 7.2437, 7.2434, 7.2431, 7.2438, 7.2458, 7.2448, 7.2445, 7.2443, 7.244, 7.2436, 7.2434, 7.243, 7.2417, 7.2413, 7.2409, 7.2405, 7.2401, 7.2409, 7.2405, 7.2403, 7.2399, 7.2397, 7.2406, 7.2403, 7.24, 7.2407, 7.2405, 7.2394, 7.2401, 7.2397, 7.2394, 7.239, 7.2388, 7.2387, 7.2374, 7.2371, 7.2367, 7.2366, 7.2362, 7.2359, 7.2366, 7.2384, 7.2381, 7.2378, 7.2385, 7.2382, 7.2378, 7.2377, 7.2364, 7.2371, 7.2368, 7.2366, 7.2373, 7.238, 7.2377, 7.2377, 7.2373, 7.237, 7.2367, 7.2363, 7.2359, 7.2346, 7.2342, 7.2349, 7.2359, 7.2366, 7.2362, 7.2359, 7.2356, 7.2365, 7.2353, 7.2349, 7.2345, 7.2341, 7.2338, 7.2334, 7.2342, 7.235, 7.2348, 7.2344, 7.2351, 7.2357, 7.2355, 7.2351, 7.2347, 7.2343, 7.235, 7.2337, 7.2334, 7.233, 7.2326, 7.2324, 7.2331, 7.2339, 7.2326, 7.2323, 7.2319, 7.2316, 7.2313, 7.2311, 7.2308, 7.2315, 7.2302, 7.2298, 7.2305, 7.2312, 7.2319, 7.2318, 7.2314, 7.231, 7.2311, 7.2307, 7.2314, 7.2311, 7.2308, 7.2305, 7.2302, 7.23, 7.2308, 7.2305, 7.2303, 7.23, 7.2296, 7.2292, 7.2289, 7.2285, 7.2283, 7.229, 7.2296, 7.2303, 7.23, 7.2307, 7.2306, 7.2302, 7.2299, 7.2306, 7.2312, 7.2308, 7.2305, 7.2302, 7.2298, 7.2294, 7.2291, 7.2309, 7.2307, 7.2305, 7.2301, 7.2308, 7.2305, 7.2292, 7.2279, 7.2276, 7.2273, 7.2272, 7.2269, 7.2266, 7.2263, 7.227, 7.2267, 7.2264, 7.2273, 7.2269, 7.2257, 7.2254, 7.2251, 7.2259, 7.2257, 7.2264, 7.2261, 7.2269, 7.2266, 7.2263, 7.2259, 7.2267, 7.2264, 7.226, 7.2247, 7.2236, 7.2224, 7.2221, 7.2218, 7.2215, 7.2222, 7.2219, 7.2216, 7.2224, 7.2221, 7.2229, 7.2226, 7.2224, 7.2222, 7.221, 7.2206, 7.2202, 7.2198, 7.2196, 7.2196, 7.2203, 7.2199, 7.2195, 7.2192, 7.2188, 7.2195, 7.2192, 7.2199, 7.2221, 7.2218, 7.2226, 7.2222, 7.2218, 7.2225, 7.2232, 7.2228, 7.2225, 7.2221, 7.2217, 7.2224, 7.2232, 7.2228, 7.2225, 7.2215, 7.2213, 7.221, 7.2208, 7.2206, 7.2224, 7.2221, 7.2228, 7.2215, 7.2203, 7.2191, 7.2188, 7.2185, 7.2182, 7.2179, 7.2176, 7.2173, 7.217, 7.2167, 7.2163, 7.2159, 7.2155, 7.2151, 7.2148, 7.2154, 7.2161, 7.2167, 7.2163, 7.2159, 7.2167, 7.2164, 7.2161, 7.2159, 7.2165, 7.2172, 7.2171, 7.2169, 7.2167, 7.2164, 7.216, 7.2147, 7.2145, 7.2152, 7.2159, 7.2156, 7.2153, 7.215, 7.2146, 7.2154, 7.215, 7.2148, 7.2135, 7.2131, 7.2137, 7.2144, 7.2131, 7.2129, 7.2125, 7.2122, 7.2112, 7.2137, 7.2134, 7.2131, 7.2129, 7.2117, 7.2136, 7.2143, 7.2141, 7.2148, 7.2145, 7.2142, 7.2143, 7.2141, 7.214, 7.2137, 7.2133, 7.214, 7.2141, 7.214, 7.2137, 7.2144, 7.2143, 7.2141, 7.2138, 7.2134, 7.2131, 7.2128, 7.2125, 7.2121, 7.2118, 7.2117, 7.2114, 7.211, 7.2118, 7.2131, 7.2152, 7.215, 7.2147, 7.2143, 7.2141, 7.2138, 7.2141, 7.2149, 7.2145, 7.2141, 7.2138, 7.2137, 7.2125, 7.2132, 7.2129, 7.2125, 7.2122, 7.2118, 7.2114, 7.212, 7.2117, 7.2123, 7.2124, 7.2121, 7.2118, 7.2114, 7.2111, 7.2108, 7.2105, 7.2093, 7.2091, 7.2088, 7.2095, 7.2092, 7.2089, 7.209, 7.2087, 7.2084, 7.2071, 7.2067, 7.2066, 7.2054, 7.2051, 7.2048, 7.2057, 7.2053, 7.2052, 7.2059, 7.2056, 7.2053, 7.205, 7.2047, 7.2034, 7.2031, 7.2047, 7.2054, 7.2053, 7.206, 7.2057, 7.2053, 7.206, 7.2059, 7.2055, 7.2052, 7.2048, 7.206, 7.2057, 7.2054, 7.2051, 7.2047, 7.2053, 7.2061, 7.2069, 7.2077, 7.2065, 7.2062, 7.206, 7.2057, 7.2053, 7.2063, 7.2065, 7.2095, 7.2095, 7.2093, 7.2089, 7.2088, 7.2106, 7.2104, 7.2113, 7.2111, 7.2118, 7.2124, 7.2122, 7.2129, 7.2128, 7.2124, 7.2121, 7.2118, 7.2115, 7.2112, 7.211, 7.2107, 7.2104, 7.2101, 7.2108, 7.2114, 7.2111, 7.2108, 7.2106, 7.2103, 7.2101, 7.2121, 7.2117, 7.2114, 7.2113, 7.2103, 7.21, 7.2096, 7.2096, 7.2093, 7.21, 7.2097, 7.2094, 7.2091, 7.2097, 7.2105, 7.2101, 7.2098, 7.2094, 7.21, 7.2107, 7.2094, 7.214, 7.2137, 7.2134, 7.2131, 7.2138, 7.2135, 7.2132, 7.2129, 7.2128, 7.2124, 7.2122, 7.2119, 7.2125, 7.2134, 7.2131, 7.2128, 7.2124, 7.2123, 7.212, 7.2117, 7.2116, 7.2113, 7.211, 7.2108, 7.2096, 7.2096, 7.2093, 7.2092, 7.2089, 7.2087, 7.2095, 7.2092, 7.2099, 7.212, 7.2127, 7.2124, 7.2131, 7.2127, 7.2124, 7.2152, 7.2149, 7.2147, 7.2144, 7.214, 7.2147, 7.2144, 7.2143, 7.2158, 7.2156, 7.2163, 7.2169, 7.2166, 7.2163, 7.216, 7.2159, 7.2157, 7.2164, 7.217, 7.2167, 7.2173, 7.2161, 7.215, 7.214, 7.2147, 7.2144, 7.2141, 7.2147, 7.2153, 7.216, 7.2148, 7.2146, 7.2162, 7.2159, 7.2156, 7.2154, 7.2151, 7.2149, 7.2146, 7.2153, 7.2151, 7.2148, 7.2144, 7.2161, 7.2168, 7.2165, 7.2162, 7.2168, 7.2165, 7.2162, 7.216, 7.2156, 7.2153, 7.2152, 7.2149, 7.2146, 7.2152, 7.2159, 7.2157, 7.2183, 7.2181, 7.2188, 7.2185, 7.2191, 7.2189, 7.2196, 7.2215, 7.2212, 7.2209, 7.2206, 7.2203, 7.221, 7.2217, 7.2213, 7.221, 7.2207, 7.2204, 7.2201, 7.2198, 7.2195, 7.2193, 7.219, 7.2188, 7.2185, 7.2181, 7.2187, 7.2194, 7.2195, 7.2193, 7.2199, 7.2206, 7.2204, 7.2223, 7.222, 7.2218, 7.2215, 7.2212, 7.221, 7.2216, 7.2213, 7.222, 7.2229, 7.2226, 7.2224, 7.2221, 7.2217, 7.2214, 7.2212, 7.2211, 7.2209, 7.2205, 7.2201, 7.2208, 7.2205, 7.2202, 7.2199, 7.2207, 7.2204, 7.2202, 7.2199, 7.2195, 7.2192, 7.2181, 7.2178, 7.2175, 7.2173, 7.217, 7.2167, 7.2173, 7.217, 7.2181, 7.2189, 7.2195, 7.2196, 7.2193, 7.219, 7.2189, 7.2187, 7.2193, 7.219, 7.2187, 7.2184, 7.2181, 7.2177, 7.2165, 7.2162, 7.2159, 7.2156, 7.2153, 7.2151, 7.2148, 7.2161, 7.2163, 7.2161, 7.2159, 7.2156, 7.2154, 7.216, 7.2157, 7.2154, 7.2151, 7.2148, 7.2145, 7.2142, 7.2139, 7.2136, 7.2133, 7.2129, 7.2126, 7.2123, 7.212, 7.2117, 7.2114, 7.2121, 7.2118, 7.2117, 7.2105, 7.2104, 7.2102, 7.2099, 7.2097, 7.2094, 7.2093, 7.209, 7.2087, 7.2084, 7.2081, 7.2079, 7.2085, 7.2082, 7.2079, 7.2076, 7.2073, 7.207, 7.2067, 7.2073, 7.2079, 7.2076, 7.2075, 7.2075, 7.2072, 7.2069, 7.2066, 7.2063, 7.206, 7.2058, 7.2068, 7.207800000000001, 7.208800000000001, 7.2085, 7.2082, 7.207, 7.2068, 7.2066, 7.2054, 7.2052, 7.205, 7.2055, 7.2052, 7.205, 7.2057, 7.2054, 7.2051, 7.205, 7.2047, 7.2045, 7.2047, 7.2046, 7.2056000000000004, 7.206600000000001, 7.207600000000001, 7.2075, 7.2072, 7.208, 7.2077, 7.2091, 7.2089, 7.2088, 7.2094, 7.2095, 7.2092, 7.2089, 7.2086, 7.2083, 7.2089, 7.2086, 7.2096, 7.2093, 7.2094, 7.2092, 7.209, 7.2087, 7.2084, 7.2082, 7.2092, 7.2101, 7.21, 7.2107, 7.2114, 7.2112, 7.211, 7.2107, 7.2104, 7.2101, 7.2098, 7.2095, 7.2092, 7.209, 7.2096, 7.2093, 7.209, 7.21, 7.211, 7.2119, 7.2126, 7.2123, 7.212, 7.2119, 7.2117, 7.2114, 7.2102, 7.21, 7.2097, 7.2094, 7.2096, 7.2094, 7.2092, 7.2109, 7.2107, 7.2105, 7.2102, 7.21, 7.2097, 7.2085, 7.2083, 7.2081, 7.2088, 7.209, 7.2087, 7.2084, 7.2082, 7.2079, 7.2085, 7.2082, 7.208, 7.2077, 7.2075, 7.2064, 7.2062, 7.2059, 7.2066, 7.2066, 7.2064, 7.2062, 7.2059, 7.2047, 7.2053, 7.205, 7.206, 7.2058, 7.2058, 7.2055, 7.2065, 7.2063, 7.2069, 7.2066, 7.2064, 7.2062, 7.2059, 7.2056, 7.2062, 7.2059, 7.2056, 7.2055, 7.2072, 7.2069, 7.2076, 7.2075, 7.2073, 7.207, 7.2076, 7.2074, 7.208, 7.2078, 7.2075, 7.2081, 7.2087, 7.2125, 7.2122, 7.2119, 7.2117, 7.2114, 7.212, 7.213, 7.2128, 7.2125, 7.2121, 7.2137, 7.2134, 7.2131, 7.2128, 7.2138, 7.2148, 7.2146, 7.2151, 7.2158, 7.2166, 7.2165, 7.2172, 7.2172, 7.2179, 7.2176, 7.2173, 7.2162, 7.2168, 7.2167, 7.2164, 7.217, 7.2167, 7.2174, 7.2171, 7.2177, 7.2174, 7.2191, 7.2188, 7.2186, 7.2184, 7.2181, 7.2179, 7.2185, 7.2182, 7.2179, 7.2186, 7.2201, 7.2198, 7.2195, 7.2193, 7.2191, 7.2188, 7.2185, 7.2183, 7.2189, 7.2195, 7.2193, 7.2191, 7.2188, 7.2185, 7.2183, 7.218, 7.2177, 7.2175, 7.2172, 7.2169, 7.2168, 7.2165, 7.2162, 7.216, 7.2157, 7.2163, 7.216, 7.2175, 7.2172, 7.217, 7.2167, 7.2165, 7.2162, 7.216, 7.2166, 7.2163, 7.2162, 7.2159, 7.2167, 7.2173, 7.217, 7.2176, 7.2182, 7.2189, 7.2186, 7.2184, 7.2181, 7.2187, 7.2184, 7.219, 7.2187, 7.2192, 7.219, 7.2196, 7.2194, 7.2192, 7.2202, 7.2199, 7.2205, 7.2202, 7.2209, 7.2207, 7.2213, 7.2212, 7.2201, 7.2198, 7.2204, 7.2202, 7.2225, 7.2223, 7.222, 7.2218, 7.2225, 7.2222, 7.2219, 7.2226, 7.2224, 7.2222, 7.2229, 7.2218, 7.2225, 7.2222, 7.2219, 7.2225, 7.2231, 7.2237, 7.2234, 7.224, 7.2237, 7.2243, 7.2255, 7.2253, 7.225, 7.2258, 7.2273, 7.227, 7.2282, 7.2281, 7.2281, 7.2279, 7.2278, 7.2286, 7.2283, 7.2289, 7.2286, 7.2283, 7.2282, 7.2279, 7.2286, 7.2283, 7.228, 7.2286, 7.2293, 7.229, 7.2288, 7.2294, 7.2296, 7.2293, 7.2306, 7.2304, 7.2302, 7.2308, 7.2305, 7.2302, 7.2304, 7.231, 7.2308, 7.2306, 7.2303, 7.23, 7.2298, 7.2297, 7.2304, 7.2301, 7.2307, 7.2305, 7.2311, 7.2317, 7.2315, 7.2312, 7.2317, 7.2323, 7.232, 7.2318, 7.2324, 7.2322, 7.2322, 7.2319, 7.2325, 7.2325, 7.2333, 7.2332, 7.2336, 7.2333, 7.234, 7.2339, 7.2336, 7.2333, 7.233, 7.2328, 7.2326, 7.2316, 7.2314, 7.2311, 7.2308, 7.2306, 7.2312, 7.2309, 7.2306, 7.2303, 7.2301, 7.229, 7.2287, 7.2285, 7.2291, 7.2288, 7.2294, 7.2292, 7.2291, 7.2288, 7.2286, 7.2284, 7.2281, 7.228, 7.2278, 7.2276, 7.2274, 7.2281, 7.2279, 7.2276, 7.2283, 7.229, 7.2287, 7.2285, 7.2282, 7.228, 7.2278, 7.2275, 7.2264, 7.2261, 7.2258, 7.2255, 7.2253, 7.225, 7.2247, 7.2245, 7.2243, 7.2243, 7.224, 7.2237, 7.2234, 7.2232, 7.2229, 7.2226, 7.2232, 7.2229, 7.2226, 7.2224, 7.2229, 7.2227, 7.2224, 7.2241, 7.2238, 7.2243, 7.2249, 7.2246, 7.2243, 7.224, 7.2237, 7.2234, 7.2232, 7.223, 7.2229, 7.2235, 7.2233, 7.2231, 7.2229, 7.2226, 7.2232, 7.223, 7.2228, 7.2234, 7.2231, 7.2228, 7.2225, 7.2222, 7.222, 7.2217, 7.2214, 7.2211, 7.2209, 7.2207, 7.2205, 7.2213, 7.2221, 7.2221, 7.2227, 7.2225, 7.2222, 7.222, 7.2227, 7.2224, 7.223, 7.2233, 7.223, 7.2236, 7.2233, 7.2232, 7.223, 7.2253, 7.2242, 7.2239, 7.2237, 7.2243, 7.224, 7.2237, 7.2243, 7.2234, 7.2241, 7.2238, 7.2236, 7.2234, 7.2232, 7.2229, 7.2235, 7.2232, 7.2229, 7.2226, 7.2224, 7.2221, 7.2218, 7.2224, 7.2239, 7.2236, 7.2235, 7.2232, 7.2221, 7.2218, 7.2217, 7.2214, 7.2213, 7.226, 7.2257, 7.2255, 7.2253, 7.2252, 7.2258, 7.2255, 7.2253, 7.2259, 7.2256, 7.2253, 7.2259, 7.2256, 7.2253, 7.225, 7.2256, 7.2254, 7.2259, 7.2265, 7.2262, 7.226, 7.2278, 7.2275, 7.2289, 7.2287, 7.2284, 7.2282, 7.2292, 7.2298, 7.2295, 7.2285, 7.2282, 7.2279, 7.2276, 7.2281, 7.2278, 7.2277, 7.2275, 7.2273, 7.2278, 7.2275, 7.228, 7.2277, 7.2276, 7.2274, 7.2271, 7.2269, 7.2268, 7.2265, 7.2267, 7.2265, 7.2263, 7.2252, 7.2249, 7.2254, 7.2255, 7.2244, 7.2233, 7.225, 7.2239, 7.228, 7.2277, 7.2283, 7.2282, 7.2279, 7.2286, 7.2299, 7.2296, 7.2293, 7.229, 7.2314, 7.2312, 7.2309, 7.231, 7.2308, 7.2306, 7.2304, 7.2301, 7.2299, 7.2297, 7.2294, 7.2291, 7.2289, 7.2295, 7.2292, 7.2298, 7.2295, 7.23, 7.2298, 7.2295, 7.2293, 7.2292, 7.2297, 7.2296, 7.2293, 7.2292, 7.2299, 7.2296, 7.2294, 7.2291, 7.2289, 7.2287, 7.2294, 7.2292, 7.2289, 7.2278, 7.2275, 7.2272, 7.227, 7.2275, 7.2281, 7.2281, 7.2278, 7.2275, 7.2264, 7.2253, 7.225, 7.2247, 7.2253, 7.2255, 7.2252, 7.2258, 7.2255, 7.2262, 7.2268, 7.2266, 7.2272, 7.2269, 7.2266, 7.2263, 7.226, 7.2266, 7.2272, 7.2272, 7.2278, 7.2275, 7.2272, 7.227, 7.2268, 7.2281, 7.2279, 7.2276, 7.2273, 7.227, 7.2267, 7.2268, 7.2269, 7.2266, 7.2271, 7.2277, 7.2283, 7.228, 7.2277, 7.2306, 7.232, 7.2343, 7.234, 7.2329, 7.2318, 7.2315, 7.2312, 7.2318, 7.2316, 7.2313, 7.2311, 7.2317, 7.2314, 7.2311, 7.2308, 7.2314, 7.2312, 7.2301, 7.2298, 7.2296, 7.2293, 7.229, 7.2287, 7.2293, 7.2283, 7.2288, 7.2285, 7.229, 7.2287, 7.2298, 7.2295, 7.2292, 7.2297, 7.2294, 7.23, 7.2297, 7.2303, 7.2303, 7.2309, 7.2306, 7.2312, 7.2339, 7.2336, 7.2343, 7.2349, 7.2347, 7.2336, 7.2342, 7.2347, 7.2345, 7.2343, 7.234, 7.233, 7.2327, 7.2332, 7.2329, 7.2326, 7.2323, 7.2321, 7.2327, 7.2325, 7.2331, 7.2336, 7.2333, 7.233, 7.2327, 7.2324, 7.2329, 7.2326, 7.2323, 7.232, 7.2325, 7.233, 7.2328, 7.2325, 7.2331, 7.2362, 7.2359, 7.2356, 7.2355, 7.236, 7.2366, 7.2363, 7.236, 7.2365, 7.237, 7.2367, 7.2365, 7.2363, 7.2352, 7.2357, 7.2371, 7.2391, 7.2397, 7.2403, 7.24, 7.2405, 7.2402, 7.2408, 7.2406, 7.2408, 7.2406, 7.2415, 7.2413, 7.2418, 7.2415, 7.2412, 7.2418, 7.2415, 7.2421, 7.2418, 7.2424, 7.243, 7.2427, 7.2433, 7.243, 7.2427, 7.2424, 7.2421, 7.2418, 7.2415, 7.242, 7.2428, 7.2425, 7.2422, 7.242, 7.2417, 7.2415, 7.2413, 7.241, 7.2407, 7.2404, 7.2427, 7.2424, 7.2431, 7.2436, 7.245, 7.2456, 7.2453, 7.2459, 7.2457, 7.2463, 7.246, 7.2457, 7.2462, 7.246, 7.2474, 7.2465, 7.2466, 7.2471, 7.2468, 7.2467, 7.2465, 7.2462, 7.2468, 7.2465, 7.2454, 7.2459, 7.2456, 7.2458, 7.2464, 7.2476, 7.2474, 7.248, 7.248, 7.2477, 7.2485, 7.2495, 7.2493, 7.2503, 7.2495, 7.2496, 7.2494, 7.2496, 7.2501, 7.2499, 7.2489, 7.2486, 7.2487, 7.2501, 7.2499, 7.2505, 7.251, 7.2509, 7.2507, 7.2521, 7.2511, 7.2508, 7.2518, 7.2523, 7.2537, 7.256, 7.256, 7.2567, 7.2565, 7.2566, 7.2568, 7.2573, 7.257, 7.2575, 7.258, 7.2585, 7.2591, 7.2596, 7.2594, 7.2591, 7.2608, 7.2607, 7.2615, 7.2605, 7.261, 7.2608, 7.2606, 7.2624, 7.2621, 7.2618, 7.2631, 7.2637, 7.2642, 7.2639, 7.2644, 7.2643, 7.2649, 7.2663, 7.266, 7.2657, 7.2655, 7.2661, 7.2667, 7.2679, 7.2676, 7.2677, 7.2682, 7.268, 7.2686, 7.2692, 7.2689, 7.2694, 7.2699, 7.2705, 7.2702, 7.2699, 7.2699, 7.2696, 7.2686, 7.27, 7.2705, 7.2718, 7.2723, 7.2721, 7.2719, 7.2724, 7.2721, 7.2718, 7.2732, 7.2729, 7.2727, 7.2725, 7.2722, 7.272, 7.2725, 7.2723, 7.2721, 7.2711, 7.2717, 7.2715, 7.2728, 7.2725, 7.2748, 7.2748, 7.2748, 7.2748, 7.2746, 7.2763, 7.2754, 7.2752, 7.275, 7.2747, 7.2753, 7.275, 7.2748, 7.2754, 7.2777, 7.2767, 7.2764, 7.277, 7.2768, 7.2766, 7.2763, 7.276, 7.2757, 7.2755, 7.2754, 7.2752, 7.2749, 7.2746, 7.2743, 7.2748, 7.2753, 7.2766, 7.2763, 7.2769, 7.2774, 7.2787, 7.2785, 7.279, 7.2789, 7.2786, 7.2783, 7.278, 7.2777, 7.2774, 7.2777, 7.2774, 7.2764, 7.2762, 7.2762, 7.2761, 7.2766, 7.2763, 7.2768, 7.2765, 7.2763, 7.2775, 7.2788, 7.2793, 7.279, 7.2787, 7.2785, 7.279, 7.2787, 7.2792, 7.2798, 7.2797, 7.2803, 7.28, 7.2805, 7.281, 7.2808, 7.2805, 7.2811, 7.2813, 7.2811, 7.2808, 7.2805, 7.2811, 7.2809, 7.2806, 7.2811, 7.2809, 7.2807, 7.2812, 7.2809, 7.2814, 7.2812, 7.2827, 7.2832, 7.2831, 7.2836, 7.2833, 7.283, 7.282, 7.2817, 7.2814, 7.2819, 7.2817, 7.2814, 7.2804, 7.2801, 7.2806, 7.2803, 7.28, 7.2798, 7.2804, 7.2809, 7.2814, 7.282, 7.2817, 7.2814, 7.2819, 7.2816, 7.2813, 7.2811, 7.2809, 7.2807, 7.2805, 7.2811, 7.2816, 7.2829, 7.2819, 7.2818, 7.2818, 7.2821, 7.2828, 7.2836, 7.2856, 7.2856, 7.2861, 7.2861, 7.2876, 7.2881, 7.2879, 7.2876, 7.2882, 7.288, 7.2878, 7.2891, 7.2888, 7.2886, 7.2891, 7.2897, 7.2895, 7.2917, 7.2914, 7.2912, 7.2909, 7.2907, 7.2904, 7.2902, 7.29, 7.2898, 7.2897, 7.2902, 7.2899, 7.2904, 7.2901, 7.2906, 7.2903, 7.2908, 7.2913, 7.291, 7.2908, 7.2905, 7.2905, 7.2911, 7.2916, 7.2914, 7.2911, 7.2908, 7.2906, 7.2903, 7.2902, 7.2893, 7.2891, 7.2888, 7.2889, 7.2886, 7.2883, 7.2883, 7.2881, 7.2879, 7.2877, 7.2882, 7.288, 7.2878, 7.2878, 7.2895, 7.2893, 7.289, 7.2887, 7.2885, 7.2882, 7.288, 7.2877, 7.2894, 7.2884, 7.2889, 7.2893, 7.2899, 7.2925, 7.2938, 7.2951, 7.2949, 7.2954, 7.2962, 7.296, 7.2952, 7.2958, 7.2955, 7.2964, 7.2977, 7.2975, 7.2972, 7.297, 7.2978, 7.2976, 7.2974, 7.2972, 7.297, 7.2977, 7.2976, 7.299, 7.2991, 7.299, 7.2989, 7.2986, 7.3, 7.3006, 7.3004, 7.3003, 7.3001, 7.2998, 7.2996, 7.2995, 7.2992, 7.2991, 7.2989, 7.2989, 7.2995, 7.2994, 7.2993, 7.2991, 7.299, 7.2987, 7.2985, 7.2983, 7.298, 7.2986, 7.2992, 7.2998, 7.2998, 7.3, 7.2999, 7.2997, 7.3003, 7.3003, 7.3003, 7.3001, 7.3007, 7.3012, 7.301, 7.3016, 7.3013, 7.3019], '192.168.122.118': [13.4807, 9.6689, 10.0505, 10.2537, 9.5238, 8.8835, 8.4629, 8.7424, 8.372, 8.1164, 8.4154, 8.1847, 7.9775, 8.174, 8.3503, 8.1903, 7.7367, 7.9358, 8.1009, 8.0165, 7.9229, 7.8178, 7.7231, 7.6248, 7.7826, 7.6858, 7.599, 7.7459, 7.6622, 7.5827, 7.5358, 7.4945, 7.3123, 7.2801, 7.3733, 7.3258, 7.2783, 7.2283, 7.2063, 7.1697, 7.1263, 7.0827, 7.0493, 7.0891, 7.1634, 7.1353, 7.095, 7.0746, 7.0373, 6.9072, 6.9296, 6.9174, 6.8993, 6.877, 6.9417, 6.9356, 6.8248, 6.803, 6.7799, 6.7597, 6.7498, 6.8223, 6.8934, 6.8707, 6.859, 6.8445, 6.9025, 6.9696, 6.955, 6.9622, 7.0179, 7.0271, 7.0779, 7.0597, 6.9869, 6.9701, 6.9501, 6.999, 6.9777, 6.9658, 6.9479, 6.9302, 6.9742, 6.954, 6.9406, 6.9827, 6.9652, 7.0087, 7.0766, 7.058, 7.0993, 7.1415, 7.1354, 7.1246, 7.1047, 7.0876, 7.022, 7.1789, 7.1605, 7.0984, 7.0803, 7.1154, 7.1007, 7.0875, 7.0763, 7.0671, 7.0597, 7.0478, 7.0318, 7.0165, 7.0511, 7.0395, 7.0349, 7.0265, 6.9695, 6.9148, 6.9094, 7.0204, 7.0061, 6.9981, 7.0306, 7.0786, 7.065, 7.1154, 7.1039, 7.0909, 7.0791, 7.0901, 7.0898, 7.0779, 7.0637, 7.0927, 7.0807, 7.1131, 7.103, 7.141, 7.1299, 7.1178, 7.108, 7.1067, 7.0943, 7.2036, 7.2001, 7.187, 7.1752, 7.2035, 7.229, 7.185, 7.1796, 7.1731, 7.1662, 7.1546, 7.1818, 7.1742, 7.1647, 7.1546, 7.1479, 7.1721, 7.198, 7.1861, 7.2087, 7.1977, 7.1869, 7.181, 7.1848, 7.1743, 7.1357, 7.1262, 7.1185, 7.1086, 7.0981, 7.0897, 7.1102, 7.0994, 7.09, 7.1453, 7.1375, 7.1291, 7.1192, 7.1092, 7.1023, 7.0945, 7.0855, 7.1059, 7.1136, 7.1057, 7.0966, 7.0871, 7.1151, 7.0867, 7.0826, 7.0739, 7.068, 7.0879, 7.0793, 7.0986, 7.1175, 7.1406, 7.1323, 7.1235, 7.1149, 7.1069, 7.0992, 7.0937, 7.0904, 7.0846, 7.0776, 7.0728, 7.0678, 7.0961, 7.0879, 7.1053, 7.0971, 7.0914, 7.1089, 7.1009, 7.0954, 7.1868, 7.1804, 7.1755, 7.1903, 7.1827, 7.1743, 7.1926, 7.1846, 7.202, 7.2173, 7.2163, 7.2078, 7.2018, 7.1934, 7.1877, 7.1799, 7.1727, 7.2387, 7.2536, 7.2455, 7.239, 7.2309, 7.2232, 7.2317, 7.2237, 7.2161, 7.2083, 7.2042, 7.1781, 7.1727, 7.1651, 7.1629, 7.1579, 7.192, 7.1853, 7.2001, 7.2146, 7.2071, 7.2, 7.193, 7.1862, 7.2007, 7.1948, 7.2092, 7.2015, 7.1956, 7.193, 7.1857, 7.1997, 7.2137, 7.2072, 7.2005, 7.1937, 7.1907, 7.1856, 7.1803, 7.1746, 7.2143, 7.2292, 7.2252, 7.2204, 7.2154, 7.2093, 7.2029, 7.206, 7.2175, 7.23, 7.2239, 7.2367, 7.2312, 7.2446, 7.243, 7.2384, 7.234, 7.2282, 7.2225, 7.2164, 7.2124, 7.206, 7.2001, 7.2126, 7.2082, 7.203, 7.1984, 7.1941, 7.1892, 7.2027, 7.1995, 7.2143, 7.211, 7.2051, 7.2009, 7.198, 7.1972, 7.198, 7.1928, 7.1881, 7.1822, 7.1765, 7.1738, 7.185, 7.1798, 7.1922, 7.1864, 7.1675, 7.1828, 7.1778, 7.1906, 7.1877, 7.1821, 7.1783, 7.1749, 7.171, 7.2135, 7.218, 7.2479, 7.2429, 7.2378, 7.2356, 7.2306, 7.2248, 7.2195, 7.2189, 7.2157, 7.2105, 7.2052, 7.2001, 7.1956, 7.1911, 7.1859, 7.1822, 7.1941, 7.1892, 7.1855, 7.196, 7.1923, 7.1872, 7.182, 7.1885, 7.1836, 7.1784, 7.1738, 7.1685, 7.1652, 7.1609, 7.1558, 7.1507, 7.146, 7.1443, 7.1398, 7.1352, 7.1174, 7.1131, 7.1225, 7.1187, 7.1139, 7.1097, 7.1052, 7.1013, 7.1118, 7.1072, 7.1117, 7.108, 7.1045, 7.1007, 7.1099, 7.1191, 7.1282, 7.1375, 7.133, 7.162, 7.1724, 7.1675, 7.1637, 7.1595, 7.1686, 7.1652, 7.163, 7.1713, 7.1882, 7.1836, 7.1807, 7.1778, 7.1864, 7.1827, 7.1905, 7.1859, 7.1812, 7.1782, 7.1735, 7.1702, 7.1686, 7.1644, 7.1602, 7.1682, 7.1719, 7.1808, 7.1785, 7.175, 7.1711, 7.1672, 7.164, 7.1807, 7.1765, 7.1726, 7.1688, 7.1715, 7.1673, 7.1677, 7.1653, 7.1751, 7.1837, 7.18, 7.1766, 7.1726, 7.1693, 7.1651, 7.1612, 7.1577, 7.1654, 7.1614, 7.1697, 7.1653, 7.1624, 7.1582, 7.1438, 7.1445, 7.1407, 7.1492, 7.137, 7.133, 7.13, 7.1265, 7.1362, 7.1365, 7.1455, 7.1426, 7.1399, 7.136, 7.1339, 7.1425, 7.1391, 7.1356, 7.1326, 7.1288, 7.1369, 7.1469, 7.1435, 7.1398, 7.1361, 7.1339, 7.1304, 7.1265, 7.1235, 7.1212, 7.1176, 7.1251, 7.1232, 7.131, 7.1277, 7.1241, 7.1211, 7.1188, 7.1267, 7.1263, 7.1233, 7.1306, 7.1276, 7.1247, 7.1318, 7.1185, 7.1158, 7.1125, 7.1089, 7.0956, 7.0833, 7.0916, 7.0997, 7.0968, 7.095, 7.0914, 7.0989, 7.1074, 7.1045, 7.1017, 7.099, 7.0975, 7.1051, 7.1014, 7.0986, 7.0998, 7.0965, 7.0928, 7.0901, 7.0874, 7.0848, 7.0823, 7.0803, 7.0768, 7.0735, 7.0809, 7.0794, 7.0762, 7.0839, 7.0716, 7.0697, 7.0775, 7.0847, 7.0927, 7.0998, 7.0974, 7.0951, 7.0928, 7.1008, 7.0985, 7.0965, 7.094, 7.1021, 7.0991, 7.096, 7.0981, 7.0956, 7.1036, 7.1117, 7.1181, 7.1155, 7.1136, 7.1107, 7.1079, 7.1055, 7.1028, 7.1017, 7.0903, 7.0783, 7.0861, 7.0831, 7.0895, 7.0865, 7.0834, 7.0803, 7.0771, 7.074, 7.072, 7.0688, 7.0661, 7.0741, 7.0811, 7.0795, 7.0764, 7.0831, 7.0825, 7.0803, 7.0774, 7.0788, 7.0775, 7.0842, 7.0817, 7.0874, 7.1124, 7.1091, 7.1064, 7.1033, 7.1004, 7.098, 7.1039, 7.1019, 7.0996, 7.0965, 7.0943, 7.0916, 7.0807, 7.078, 7.0751, 7.0725, 7.0696, 7.0673, 7.0734, 7.071, 7.0688, 7.0661, 7.0637, 7.0694, 7.0667, 7.0638, 7.0636, 7.0617, 7.0619, 7.0685, 7.0663, 7.0648, 7.0717, 7.069, 7.0721, 7.0707, 7.0679, 7.0654, 7.0632, 7.0615, 7.068, 7.0651, 7.0637, 7.063, 7.06, 7.0572, 7.0749, 7.0805, 7.0865, 7.0925, 7.0916, 7.0888, 7.0908, 7.0882, 7.0858, 7.0833, 7.0826, 7.0811, 7.0793, 7.0766, 7.0683, 7.066, 7.0637, 7.0533, 7.043, 7.0402, 7.0377, 7.0353, 7.0413, 7.0386, 7.036, 7.0334, 7.0316, 7.029, 7.0267, 7.0246, 7.0221, 7.0202, 7.0179, 7.0238, 7.0294, 7.0268, 7.0243, 7.0222, 7.0205, 7.018, 7.0236, 7.0294, 7.0359, 7.0335, 7.0401, 7.0395, 7.037, 7.0274, 7.0267, 7.0324, 7.0378, 7.0766, 7.0744, 7.0782, 7.0835, 7.0898, 7.0875, 7.0849, 7.0824, 7.0797, 7.0776, 7.076, 7.0811, 7.0787, 7.0772, 7.0748, 7.0808, 7.0786, 7.0761, 7.0673, 7.0653, 7.0711, 7.0692, 7.0675, 7.0661, 7.0643, 7.0623, 7.0606, 7.0588, 7.0569, 7.0481, 7.0461, 7.0511, 7.0689, 7.0674, 7.0584, 7.057, 7.0545, 7.0727, 7.0781, 7.069, 7.0664, 7.0717, 7.0712, 7.0696, 7.0677, 7.0653, 7.0564, 7.0541, 7.0518, 7.0493, 7.0482, 7.0463, 7.0514, 7.0492, 7.0469, 7.0525, 7.0503, 7.048, 7.0457, 7.0446, 7.0421, 7.048, 7.046, 7.0456, 7.0518, 7.0507, 7.0496, 7.0473, 7.0521, 7.0572, 7.062, 7.0672, 7.0647, 7.0624, 7.063400000000001, 7.064400000000001, 7.0622, 7.0674, 7.0726, 7.0716, 7.0699, 7.0685, 7.0668, 7.0667, 7.072, 7.0703, 7.0751, 7.0798, 7.0844, 7.0891, 7.0883, 7.0863, 7.0911, 7.0899, 7.0814, 7.0863, 7.085, 7.0902, 7.0946, 7.0995, 7.0984, 7.0961, 7.0941, 7.092, 7.091, 7.101, 7.1006, 7.0987, 7.0989, 7.0972, 7.0951, 7.093, 7.0909, 7.0887, 7.0865, 7.091, 7.0889, 7.0866, 7.0843, 7.0893, 7.0877, 7.0887, 7.0873, 7.1242, 7.1287, 7.1266, 7.1244, 7.1292, 7.1271, 7.1257, 7.1306, 7.1286, 7.1398, 7.1375, 7.1419, 7.14, 7.1442, 7.1495, 7.1483, 7.1464, 7.1725, 7.1704, 7.169, 7.1669, 7.1787, 7.1781, 7.1827, 7.1805, 7.1787, 7.2447, 7.2428, 7.2492, 7.2469, 7.2451, 7.2429, 7.247, 7.2448, 7.2426, 7.241, 7.2454, 7.2433, 7.2411, 7.2453, 7.2491, 7.2498, 7.2481, 7.2416, 7.2457, 7.2498, 7.2541, 7.2588, 7.257, 7.2556, 7.2533, 7.2511, 7.2492, 7.2478, 7.2458, 7.2436, 7.2365, 7.2342, 7.2322, 7.2301, 7.2342, 7.2272, 7.2267, 7.2251, 7.2228, 7.2247, 7.2294, 7.2342, 7.2384, 7.2364, 7.2411, 7.239, 7.2432, 7.2413, 7.2393, 7.238, 7.2357, 7.2399, 7.2439, 7.2416, 7.2459, 7.2499, 7.2486, 7.2468, 7.2462, 7.2506, 7.2495, 7.2481, 7.2607, 7.265, 7.2627, 7.2662, 7.2648, 7.2751, 7.279, 7.2768, 7.2745, 7.2732, 7.2715, 7.2693, 7.2689, 7.2849, 7.2885, 7.287, 7.2906, 7.2887, 7.2867, 7.2866, 7.2845, 7.2827, 7.2866, 7.2849, 7.2833, 7.2814, 7.2791, 7.2769, 7.2754, 7.2823, 7.2858, 7.286, 7.2922, 7.291, 7.289, 7.288, 7.2859, 7.2896, 7.2935, 7.2913, 7.2893, 7.295, 7.2932, 7.2914, 7.2839, 7.2821, 7.2805, 7.2784, 7.2764, 7.2747, 7.2727, 7.2706, 7.274, 7.2885, 7.2866, 7.2851, 7.2839, 7.2877, 7.2862, 7.2843, 7.2823, 7.2861, 7.2895, 7.2932, 7.2978, 7.2958, 7.2994, 7.3028, 7.301, 7.3054, 7.3045, 7.3045, 7.3083, 7.3064, 7.3047, 7.2977, 7.3012, 7.2992, 7.2971, 7.2952, 7.2931, 7.3024, 7.3005, 7.299, 7.2983, 7.302, 7.3, 7.2979, 7.3015, 7.3003, 7.2986, 7.2964, 7.2946, 7.2981, 7.2977, 7.2962, 7.2946, 7.2933, 7.2923, 7.2908, 7.2891, 7.2942, 7.2927, 7.3044, 7.308, 7.307, 7.3107, 7.3087, 7.3124, 7.3112, 7.3095, 7.308, 7.3065, 7.3046, 7.3069, 7.3104, 7.3135, 7.3115, 7.3151, 7.3135, 7.3116, 7.3152, 7.3137, 7.312, 7.312, 7.316, 7.3141, 7.3084, 7.3065, 7.3006, 7.2989, 7.2972, 7.2954, 7.2992, 7.2975, 7.2956, 7.2938, 7.2921, 7.2902, 7.2883, 7.2872, 7.2859, 7.2841, 7.2843, 7.2824, 7.282, 7.2804, 7.2792, 7.2775, 7.2811, 7.2792, 7.2782, 7.2824, 7.281, 7.2796, 7.2826, 7.2862, 7.2893, 7.2877, 7.301, 7.304, 7.3071, 7.3052, 7.3039, 7.302, 7.3052, 7.3034, 7.3066, 7.3096, 7.3083, 7.307, 7.3101, 7.3107, 7.3093, 7.3129, 7.3115, 7.3185, 7.3165, 7.3146, 7.3176, 7.3162, 7.3143, 7.3176, 7.3208, 7.3189, 7.3175, 7.3164, 7.3146, 7.313, 7.3117, 7.3099, 7.3084, 7.3067, 7.31, 7.3086, 7.3124, 7.3062, 7.3099, 7.3084, 7.3117, 7.31, 7.3092, 7.318, 7.3169, 7.3154, 7.3139, 7.3122, 7.311, 7.3095, 7.3128, 7.3116, 7.3148, 7.3138, 7.3129, 7.3158, 7.3221, 7.3439, 7.342, 7.3406, 7.3388, 7.3374, 7.3356, 7.3344, 7.3326, 7.3355, 7.3388, 7.3416, 7.3397, 7.3427, 7.3415, 7.3356, 7.3341, 7.3328, 7.3269, 7.3256, 7.3241, 7.3276, 7.3339, 7.3326, 7.3307, 7.3291, 7.3274, 7.3256, 7.3238, 7.3224, 7.321, 7.3196, 7.3181, 7.3217, 7.3246, 7.3234, 7.3222, 7.3275, 7.3269, 7.3257, 7.3287, 7.3269, 7.3303, 7.3285, 7.3279, 7.3262, 7.3245, 7.3228, 7.3211, 7.3194, 7.3177, 7.316, 7.3161, 7.3143, 7.3175, 7.3157, 7.3186, 7.3172, 7.3156, 7.3187, 7.3177, 7.316, 7.3172, 7.3203, 7.3186, 7.3168, 7.3199, 7.3229, 7.3212, 7.3242, 7.3228, 7.3303, 7.3291, 7.3276, 7.3303, 7.3338, 7.3368, 7.3394, 7.3555, 7.3586, 7.3569, 7.356, 7.3675, 7.3617, 7.3601, 7.3631, 7.3617, 7.3606, 7.3592, 7.362, 7.3606, 7.3593, 7.362, 7.3603, 7.3588, 7.3614, 7.3648, 7.3631, 7.3658, 7.369, 7.3673, 7.3664, 7.3647, 7.3629, 7.3616, 7.3603, 7.3589, 7.3621, 7.3604, 7.3589, 7.3581, 7.3564, 7.3508, 7.3494, 7.3525, 7.356, 7.3551, 7.355, 7.3538, 7.3524, 7.3508, 7.3494, 7.3479, 7.3508, 7.3492, 7.3534, 7.3518, 7.3506, 7.3495, 7.3485, 7.3514, 7.3539, 7.3525, 7.3555, 7.3539, 7.3574, 7.3602, 7.3587, 7.3577, 7.3561, 7.3589, 7.3574, 7.356, 7.3543, 7.3527, 7.3519, 7.3547, 7.3538, 7.3523, 7.3506, 7.3494, 7.3529, 7.3515, 7.35, 7.3484, 7.3472, 7.3457, 7.3441, 7.3426, 7.3455, 7.3441, 7.3489, 7.3475, 7.3461, 7.3469, 7.3499, 7.3483, 7.351, 7.354, 7.3526, 7.3512, 7.3502, 7.3527, 7.3473, 7.3467, 7.3452, 7.3439, 7.3463, 7.3491, 7.3477, 7.3462, 7.3489, 7.3474, 7.3461, 7.3445, 7.3429, 7.3414, 7.3401, 7.3384, 7.3368, 7.3392, 7.338, 7.3408, 7.3394, 7.3392, 7.3377, 7.3369, 7.3353, 7.3344, 7.3333, 7.3322, 7.3308, 7.3293, 7.3358, 7.3343, 7.3369, 7.3354, 7.3346, 7.333, 7.336, 7.3346, 7.3338, 7.3331, 7.3356, 7.3344, 7.3331, 7.332, 7.3304, 7.3333, 7.3324, 7.335, 7.3338, 7.3328, 7.3313, 7.3307, 7.3294, 7.3251, 7.3245, 7.323, 7.3332, 7.3402, 7.3392, 7.3386, 7.3375, 7.3364, 7.3352, 7.3339, 7.3325, 7.3313, 7.33, 7.3287, 7.3274, 7.33, 7.3286, 7.3272, 7.3295, 7.332, 7.327, 7.3258, 7.3286, 7.3274, 7.3224, 7.3175, 7.3164, 7.317, 7.3317, 7.3277, 7.3275, 7.3331, 7.3323, 7.3354, 7.3343, 7.3341, 7.3326, 7.3312, 7.3307, 7.3297, 7.3414, 7.3364, 7.3389, 7.3375, 7.3366, 7.3406, 7.34, 7.3424, 7.341, 7.3407, 7.3393, 7.3379, 7.3416, 7.3404, 7.3442, 7.3428, 7.3417, 7.344, 7.3427, 7.3417, 7.3441, 7.3427, 7.3425, 7.3417, 7.3403, 7.3432, 7.3428, 7.3469, 7.3496, 7.3482, 7.3468, 7.3537, 7.353, 7.3519, 7.3507, 7.3495, 7.3523, 7.3549, 7.3538, 7.3524, 7.3516, 7.3505, 7.3516, 7.3503, 7.3528, 7.3515, 7.3503, 7.3488, 7.3513, 7.35, 7.3486, 7.3472, 7.3465, 7.3452, 7.3477, 7.347, 7.346, 7.3449, 7.3462, 7.3497, 7.3522, 7.3547, 7.3571, 7.3595, 7.3585, 7.361, 7.3603, 7.359, 7.3615, 7.3601, 7.3624, 7.361, 7.362, 7.3643, 7.3629, 7.3655, 7.3645, 7.3636, 7.366, 7.3678, 7.3666, 7.3652, 7.3677, 7.3667, 7.3654, 7.3639, 7.3628, 7.3617, 7.3606, 7.3596, 7.362, 7.3608, 7.3594, 7.3654, 7.3645, 7.3632, 7.3625, 7.3614, 7.3638, 7.3627, 7.3614, 7.3638, 7.3624, 7.361, 7.3596, 7.3557, 7.3543, 7.3531, 7.3554, 7.3543, 7.3532, 7.3522, 7.3508, 7.3494, 7.3487, 7.3474, 7.3501, 7.3524, 7.3511, 7.3498, 7.3521, 7.3507, 7.3496, 7.3483, 7.3472, 7.3468, 7.3457, 7.3444, 7.3434, 7.3421, 7.348, 7.3467, 7.349, 7.3478, 7.3465, 7.3453, 7.3442, 7.3429, 7.3417, 7.3404, 7.3392, 7.3379, 7.3366, 7.3354, 7.3377, 7.3367, 7.3357, 7.3313, 7.3303, 7.3292, 7.3285, 7.3274, 7.3263, 7.3255, 7.3242, 7.3269, 7.3255, 7.3243, 7.323, 7.3253, 7.3241, 7.3231, 7.3218, 7.3207, 7.3197, 7.3188, 7.3175, 7.3162, 7.3176, 7.3166, 7.3157, 7.3115, 7.3105, 7.3094, 7.3082, 7.3053, 7.304, 7.3062, 7.305, 7.3076, 7.3099, 7.3088, 7.3141, 7.3164, 7.3152, 7.3142, 7.3134, 7.3122, 7.3122, 7.3144, 7.3201, 7.3364, 7.3352, 7.3414, 7.3441, 7.3401, 7.3394, 7.3387, 7.3411, 7.3435, 7.3429, 7.3387, 7.3377, 7.3366, 7.3355, 7.3312, 7.3305, 7.3293, 7.3282, 7.3302, 7.3292, 7.3282, 7.3273, 7.3264, 7.3255, 7.3245, 7.3238, 7.3229, 7.3273, 7.3269, 7.329, 7.3277, 7.3265, 7.3253, 7.3274, 7.3298, 7.3286, 7.3307, 7.3296, 7.3286, 7.3274, 7.3262, 7.3343, 7.3332, 7.332, 7.3307, 7.3329, 7.3351, 7.3342, 7.3329, 7.3316, 7.3337, 7.3359, 7.3358, 7.3349, 7.3337, 7.3359, 7.3346, 7.3305, 7.3327, 7.3315, 7.3306, 7.3331, 7.3319, 7.3309, 7.333, 7.3332, 7.332, 7.3342, 7.3331, 7.3319, 7.334, 7.3351, 7.3344, 7.3331, 7.3321, 7.3315, 7.3307, 7.3297, 7.332, 7.3314, 7.3304, 7.3297, 7.3286, 7.3278, 7.3437, 7.3433, 7.3432, 7.3456, 7.3513, 7.3504, 7.3571, 7.3564, 7.3554, 7.358, 7.3539, 7.3559, 7.3581, 7.3578, 7.3609, 7.3598, 7.3618, 7.3606, 7.3594, 7.3582, 7.3572, 7.3559, 7.3581, 7.3572, 7.3594, 7.3616, 7.3607, 7.3567, 7.3555, 7.3544, 7.358, 7.3572, 7.3562, 7.3553, 7.3543, 7.3561, 7.3552, 7.3542, 7.3533, 7.3523, 7.3515, 7.3503, 7.3494, 7.3485, 7.3472, 7.3459, 7.3478, 7.3496, 7.349, 7.3509, 7.3531, 7.3558, 7.3546, 7.3533, 7.3521, 7.3511, 7.3502, 7.3494, 7.3488, 7.3476, 7.3466, 7.3457, 7.3446, 7.3434, 7.3422, 7.3411, 7.3401, 7.3393, 7.3382, 7.3372, 7.336, 7.3348, 7.334, 7.333, 7.329, 7.3279, 7.3267, 7.3256, 7.3245, 7.3268, 7.3261, 7.325, 7.3239, 7.3228, 7.3216, 7.3208, 7.3175, 7.3169, 7.3158, 7.3178, 7.3168, 7.3157, 7.3148, 7.3141, 7.313, 7.312, 7.3109, 7.3097, 7.3116, 7.3107, 7.31, 7.3119, 7.312, 7.3111, 7.3103, 7.3123, 7.3143, 7.3132, 7.3121, 7.314, 7.3129, 7.312, 7.3111, 7.3131, 7.3126, 7.3115, 7.3106, 7.3104, 7.3093, 7.3083, 7.3073, 7.3063, 7.3052, 7.3115, 7.3124, 7.3155, 7.3118, 7.3114, 7.3127, 7.3148, 7.3168, 7.3159, 7.3147, 7.3137, 7.3155, 7.315, 7.3171, 7.3161, 7.315, 7.3143, 7.3134, 7.3175, 7.3169, 7.3191, 7.3182, 7.317, 7.316, 7.3179, 7.3169, 7.3158, 7.315, 7.314, 7.3133, 7.3096, 7.3116, 7.3105, 7.3102, 7.3092, 7.3087, 7.3077, 7.3067, 7.3058, 7.3051, 7.3043, 7.3034, 7.3025, 7.3014, 7.3006, 7.2997, 7.3018, 7.3008, 7.3001, 7.3021, 7.3011, 7.3004, 7.2996, 7.2986, 7.2985, 7.2977, 7.2966, 7.2955, 7.2945, 7.2941, 7.293, 7.2925, 7.2914, 7.2934, 7.2986, 7.2974, 7.2992, 7.2956, 7.2949, 7.297, 7.296, 7.298, 7.297, 7.296, 7.2954, 7.2973, 7.2963, 7.2995, 7.2987, 7.3006, 7.2996, 7.2986, 7.2976, 7.2965, 7.2955, 7.2944, 7.2936, 7.2931, 7.2921, 7.2915, 7.2909, 7.2927, 7.2917, 7.2909, 7.2873, 7.2863, 7.2855, 7.2875, 7.2865, 7.2856, 7.2846, 7.2837, 7.2855, 7.2845, 7.2863, 7.288, 7.287, 7.289, 7.2893, 7.2913, 7.2904, 7.2894, 7.2885, 7.2905, 7.2895, 7.286, 7.285, 7.2839, 7.2857, 7.2847, 7.2836, 7.2855, 7.2846, 7.2836, 7.283, 7.2849, 7.2844, 7.2834, 7.2823, 7.2813, 7.2805, 7.2856, 7.2904, 7.2894, 7.2973, 7.2937, 7.2958, 7.2951, 7.2942, 7.2934, 7.2926, 7.2945, 7.2962, 7.2954, 7.2946, 7.2917, 7.2916, 7.2996, 7.2986, 7.2983, 7.2981, 7.2971, 7.2965, 7.2957, 7.2947, 7.2999, 7.2991, 7.2983, 7.2975, 7.2993, 7.3011, 7.3029, 7.3019, 7.3009, 7.3005, 7.2995, 7.2989, 7.3007, 7.2999, 7.2991, 7.2981, 7.2973, 7.2963, 7.296, 7.3021, 7.308, 7.307, 7.3098, 7.3115, 7.3132, 7.3149, 7.314, 7.313, 7.3148, 7.3165, 7.3157, 7.3147, 7.3137, 7.3155, 7.3147, 7.314, 7.3156, 7.3147, 7.314, 7.3161, 7.3151, 7.3146, 7.3136, 7.313, 7.3125, 7.3118, 7.3133, 7.3153, 7.3144, 7.3163, 7.3154, 7.3173, 7.3181, 7.3173, 7.319, 7.3186, 7.3178, 7.3172, 7.3163, 7.3154, 7.3144, 7.3134, 7.3125, 7.3115, 7.3115, 7.3106, 7.3097, 7.3116, 7.3133, 7.3125, 7.3115, 7.3116, 7.3108, 7.3101, 7.3117, 7.3107, 7.3097, 7.3113, 7.3105, 7.3095, 7.3087, 7.3077, 7.3095, 7.3142, 7.3132, 7.3099, 7.3095, 7.3088, 7.3078, 7.3098, 7.3088, 7.3078, 7.3068, 7.3085, 7.3075, 7.307, 7.3043, 7.3038, 7.3028, 7.3019, 7.3014, 7.3005, 7.3023, 7.3013, 7.3006, 7.2998, 7.2993, 7.2986, 7.296, 7.2952, 7.2952, 7.2942, 7.2932, 7.295, 7.2946, 7.2913, 7.2903, 7.2895, 7.2893, 7.2937, 7.293, 7.2921, 7.2911, 7.2903, 7.2894, 7.2888, 7.2879, 7.2896, 7.2912, 7.2903, 7.292, 7.2913, 7.2931, 7.2922, 7.2913, 7.2904, 7.2925, 7.2943, 7.2935, 7.2926, 7.2894, 7.2885, 7.2876, 7.2867, 7.2883, 7.2901, 7.2898, 7.2898, 7.2888, 7.2906, 7.2897, 7.2887, 7.2879, 7.2875, 7.2866, 7.2883, 7.2873, 7.2867, 7.2857, 7.2847, 7.2841, 7.2859, 7.2876, 7.2867, 7.286, 7.2878, 7.2868, 7.2865, 7.2873, 7.2864, 7.2856, 7.2873, 7.289, 7.288, 7.2871, 7.2862, 7.2855, 7.2846, 7.2836, 7.2827, 7.2819, 7.281, 7.2805, 7.2796, 7.2813, 7.2804, 7.2821, 7.2838, 7.2855, 7.2846, 7.2838, 7.2879, 7.287, 7.2934, 7.2925, 7.2967, 7.3008, 7.3, 7.3017, 7.3036, 7.3053, 7.3044, 7.3061, 7.3078, 7.307, 7.3088, 7.308, 7.3072, 7.3065, 7.3057, 7.3052, 7.3043, 7.3035, 7.3026, 7.3043, 7.3034, 7.3006, 7.3024, 7.3034, 7.3028, 7.3019, 7.3035, 7.3027, 7.3024, 7.3015, 7.3031, 7.3021, 7.3014, 7.303, 7.3043, 7.3011, 7.3002, 7.2993, 7.2984, 7.3, 7.2993, 7.2985, 7.2954, 7.2946, 7.294, 7.2931, 7.2947, 7.2939, 7.2933, 7.2948, 7.2938, 7.2934, 7.2951, 7.2971, 7.2963, 7.2962, 7.2954, 7.297, 7.2966, 7.2957, 7.2953, 7.2946, 7.2938, 7.2931, 7.2922, 7.2914, 7.2907, 7.29, 7.2891, 7.2883, 7.2874, 7.2866, 7.2862, 7.2854, 7.2845, 7.2838, 7.283, 7.2846, 7.2837, 7.2806, 7.2797, 7.2788, 7.2779, 7.2774, 7.2782, 7.2775, 7.2769, 7.2808, 7.28, 7.2816, 7.2807, 7.2777, 7.2771, 7.2763, 7.2755, 7.2746, 7.274, 7.2738, 7.2735, 7.2727, 7.2743, 7.2724, 7.2739, 7.2734, 7.2726, 7.2718, 7.271, 7.2703, 7.2694, 7.2685, 7.2678, 7.2672, 7.2688, 7.2681, 7.2696, 7.2709, 7.2724, 7.2716, 7.2686, 7.2678, 7.2672, 7.267, 7.2663, 7.2658, 7.2652, 7.2668, 7.2661, 7.2653, 7.2629, 7.2623, 7.2614, 7.261, 7.2601, 7.2598, 7.2596, 7.2591, 7.2607, 7.2602, 7.2596, 7.2592, 7.2608, 7.2601, 7.2593, 7.2587, 7.2584, 7.2576, 7.2571, 7.2566, 7.256, 7.2553, 7.2545, 7.2559, 7.2552, 7.2544, 7.2538, 7.2531, 7.2524, 7.2516, 7.2511, 7.2506, 7.25, 7.2515, 7.2509, 7.2501, 7.2494, 7.2489, 7.2506, 7.252, 7.2513, 7.2528, 7.2543, 7.2536, 7.2554, 7.2547, 7.2542, 7.2536, 7.2507, 7.2501, 7.2519, 7.2535, 7.2532, 7.2524, 7.2539, 7.2556, 7.2572, 7.2564, 7.2581, 7.2572, 7.2568, 7.256, 7.2552, 7.2546, 7.2545, 7.256, 7.2577, 7.2581, 7.2575, 7.2569, 7.2562, 7.2576, 7.2567, 7.2565, 7.2583, 7.2607, 7.2601, 7.2577, 7.257, 7.2586, 7.2604, 7.2618, 7.2636, 7.263, 7.2623, 7.264, 7.2632, 7.2652, 7.2645, 7.2661, 7.2657, 7.2649, 7.2644, 7.2637, 7.2633, 7.2626, 7.2619, 7.2651, 7.2666, 7.2658, 7.265, 7.2642, 7.2634, 7.2649, 7.2641, 7.2656, 7.2651, 7.2643, 7.2658, 7.265, 7.2666, 7.2658, 7.265, 7.2646, 7.2661, 7.2654, 7.2669, 7.2663, 7.2659, 7.2674, 7.2668, 7.2661, 7.2657, 7.2671, 7.2687, 7.2707, 7.2699, 7.2692, 7.2684, 7.2677, 7.2695, 7.2711, 7.2704, 7.2705, 7.2699, 7.2725, 7.2742, 7.2735, 7.2726, 7.272, 7.2712, 7.2706, 7.2722, 7.2716, 7.271, 7.2704, 7.2696, 7.269, 7.2704, 7.272, 7.2715, 7.2711, 7.2705, 7.2697, 7.2694, 7.2686, 7.2681, 7.2675, 7.2667, 7.267, 7.2662, 7.2654, 7.2668, 7.2662, 7.2638, 7.2635, 7.2628, 7.2643, 7.2658, 7.265, 7.2665, 7.266, 7.2675, 7.2669, 7.2661, 7.2654, 7.2648, 7.2642, 7.2636, 7.2666, 7.268, 7.2694, 7.2687, 7.2679, 7.2671, 7.2676, 7.2669, 7.2663, 7.2677, 7.267, 7.2684, 7.2676, 7.2669, 7.2661, 7.2656, 7.265, 7.2661, 7.2653, 7.2645, 7.2637, 7.2629, 7.2623, 7.2615, 7.263, 7.2644, 7.2639, 7.2655, 7.2648, 7.2733, 7.277, 7.2806, 7.2799, 7.2792, 7.2787, 7.2781, 7.2795, 7.2788, 7.2762, 7.2754, 7.2729, 7.2722, 7.2756, 7.2749, 7.2742, 7.2737, 7.2732, 7.2725, 7.2719, 7.2712, 7.2706, 7.27, 7.2736, 7.2729, 7.2748, 7.2742, 7.2735, 7.2729, 7.2791, 7.2783, 7.2797, 7.2818, 7.2813, 7.2834, 7.2829, 7.2826, 7.2842, 7.2835, 7.2827, 7.2841, 7.2836, 7.2855, 7.287, 7.2862, 7.2877, 7.2892, 7.2887, 7.288, 7.2874, 7.2868, 7.2861, 7.2876, 7.2871, 7.2886, 7.2882, 7.2874, 7.2866, 7.288, 7.2872, 7.2866, 7.2878, 7.289, 7.2884, 7.2886, 7.2879, 7.2896, 7.289, 7.2903, 7.2917, 7.2909, 7.2924, 7.2937, 7.2929, 7.2943, 7.2937, 7.293, 7.2923, 7.2937, 7.293, 7.2924, 7.2956, 7.2949, 7.2944, 7.2938, 7.2931, 7.2925, 7.2917, 7.2912, 7.2906, 7.2899, 7.2893, 7.2886, 7.2883, 7.2876, 7.2868, 7.2862, 7.2856, 7.2848, 7.2844, 7.2837, 7.2832, 7.2846, 7.284, 7.2855, 7.2868, 7.2863, 7.2856, 7.287, 7.2865, 7.2858, 7.2873, 7.2867, 7.286, 7.2861, 7.2857, 7.2869, 7.2883, 7.2896, 7.2889, 7.2884, 7.2981, 7.2975, 7.2969, 7.2985, 7.3039, 7.3053, 7.3066, 7.3078, 7.3091, 7.3101, 7.3115, 7.3129, 7.3124, 7.3159, 7.3152, 7.3144, 7.3178, 7.317, 7.3163, 7.3219, 7.3231, 7.3263, 7.3257, 7.3292, 7.3287, 7.3281, 7.3275, 7.3268, 7.326, 7.3252, 7.3265, 7.3259, 7.3256, 7.3268, 7.3281, 7.3273, 7.3268, 7.3291, 7.3286, 7.3279, 7.3257, 7.3252, 7.3266, 7.3263, 7.3256, 7.329, 7.3283, 7.3279, 7.3272, 7.3287, 7.3281, 7.3274, 7.3266, 7.326, 7.3255, 7.3268, 7.3262, 7.3256, 7.325, 7.3244, 7.3238, 7.3232, 7.3232, 7.3224, 7.3236, 7.325, 7.3244, 7.3241, 7.3234, 7.3239, 7.3253, 7.3246, 7.3238, 7.3231, 7.3226, 7.3239, 7.3233, 7.3248, 7.3242, 7.3236, 7.3249, 7.3242, 7.3236, 7.323, 7.3223, 7.3216, 7.3218, 7.3212, 7.3204, 7.3198, 7.3191, 7.3184, 7.3177, 7.3169, 7.3163, 7.3155, 7.3168, 7.3163, 7.3158, 7.3159, 7.3151, 7.3146, 7.314, 7.3115, 7.3132, 7.3125, 7.3118, 7.3115, 7.3112, 7.3104, 7.3097, 7.3095, 7.3111, 7.3103, 7.3096, 7.3109, 7.3103, 7.31, 7.3113, 7.3107, 7.3119, 7.3132, 7.3124, 7.3138, 7.3138, 7.315, 7.3162, 7.3155, 7.3147, 7.3154, 7.3147, 7.3139, 7.3133, 7.3148, 7.3161, 7.3154, 7.315, 7.3143, 7.3155, 7.3148, 7.3141, 7.3134, 7.3127, 7.312, 7.3119, 7.3112, 7.3202, 7.3196, 7.3189, 7.3202, 7.3195, 7.3188, 7.3181, 7.3271, 7.3284, 7.3283, 7.3278, 7.3271, 7.3264, 7.3258, 7.3251, 7.3247, 7.324, 7.3253, 7.3245, 7.324, 7.3235, 7.3246, 7.3239, 7.3232, 7.3232, 7.3248, 7.3242, 7.3236, 7.325, 7.3242, 7.3235, 7.3228, 7.3222, 7.3218, 7.3212, 7.3208, 7.3221, 7.3215, 7.3208, 7.3205, 7.3197, 7.319, 7.3183, 7.3176, 7.3169, 7.3162, 7.3157, 7.3152, 7.3164, 7.3176, 7.3187, 7.3183, 7.3176, 7.3171, 7.3164, 7.3164, 7.3176, 7.3172, 7.3204, 7.32, 7.3214, 7.3209, 7.3202, 7.3196, 7.319, 7.3186, 7.3179, 7.3176, 7.3175, 7.3169, 7.3162, 7.3156, 7.3149, 7.3146, 7.314, 7.3134, 7.311, 7.3106, 7.31, 7.3094, 7.3087, 7.3121, 7.3153, 7.3169, 7.3166, 7.316, 7.3155, 7.3148, 7.3141, 7.3134, 7.3131, 7.3125, 7.3122, 7.3115, 7.3109, 7.3102, 7.3095, 7.3095, 7.3089, 7.3102, 7.3095, 7.309, 7.3106, 7.3109, 7.3104, 7.3097, 7.3128, 7.3141, 7.3136, 7.3129, 7.3122, 7.3117, 7.3111, 7.3107, 7.3104, 7.3101, 7.3094, 7.3088, 7.3082, 7.3077, 7.3072, 7.3068, 7.3064, 7.3082, 7.3076, 7.309, 7.3103, 7.3096, 7.3089, 7.3083, 7.3077, 7.3108, 7.3121, 7.3114, 7.3108, 7.3105, 7.31, 7.3093, 7.3089, 7.3102, 7.3097, 7.3098, 7.3137, 7.3151, 7.3146, 7.3158, 7.3153, 7.315, 7.3167, 7.3159, 7.3152, 7.3145, 7.3156, 7.3151, 7.3144, 7.3138, 7.3149, 7.3142, 7.3157, 7.3153, 7.3164, 7.3158, 7.3169, 7.3183, 7.3176, 7.3175, 7.3189, 7.3183, 7.3179, 7.3176, 7.3171, 7.3166, 7.3159, 7.3152, 7.3145, 7.3156, 7.3149, 7.3144, 7.3144, 7.3137, 7.3148, 7.3143, 7.3159, 7.3172, 7.3165, 7.3158, 7.3158, 7.3151, 7.3145, 7.314, 7.3152, 7.3149, 7.3143, 7.3137, 7.3131, 7.3125, 7.3118, 7.313, 7.3124, 7.3117, 7.3112, 7.3108, 7.3101, 7.3095, 7.3108, 7.3117, 7.311, 7.3122, 7.3117, 7.3113, 7.3106, 7.3118, 7.3113, 7.3107, 7.3107, 7.31, 7.3094, 7.3087, 7.308, 7.3074, 7.3086, 7.3079, 7.3095, 7.3107, 7.3105, 7.3099, 7.3101, 7.3078, 7.3055, 7.3051, 7.3046, 7.3039, 7.305, 7.3045, 7.304, 7.3087, 7.3081, 7.3058, 7.3057, 7.305, 7.3046, 7.3059, 7.3054, 7.3048, 7.3044, 7.3037, 7.3032, 7.3026, 7.3076, 7.3081, 7.3079, 7.3073, 7.3068, 7.3062, 7.3057, 7.3052, 7.3047, 7.3059, 7.3071, 7.3067, 7.3074, 7.3086, 7.308, 7.3074, 7.3067, 7.3079, 7.3073, 7.3067, 7.308, 7.3074, 7.3067, 7.308, 7.3092, 7.3089, 7.3083, 7.3076, 7.307, 7.308, 7.3076, 7.3069, 7.3064, 7.3059, 7.3071, 7.3065, 7.3059, 7.3056, 7.3051, 7.3083, 7.3095, 7.3089, 7.3083, 7.3096, 7.3108, 7.3108, 7.3102, 7.308, 7.3074, 7.3068, 7.3062, 7.306, 7.3054, 7.3065, 7.3061, 7.3055, 7.3049, 7.3044, 7.3042, 7.3054, 7.3048, 7.3042, 7.3037, 7.3031, 7.3044, 7.3039, 7.3033, 7.3027, 7.3022, 7.3, 7.2994, 7.2989, 7.3002, 7.2996, 7.2991, 7.2986, 7.2999, 7.2993, 7.2989, 7.2987, 7.2981, 7.2975, 7.2954, 7.2948, 7.2943, 7.2938, 7.2933, 7.2928, 7.2944, 7.2956, 7.2953, 7.2965, 7.2962, 7.2957, 7.2955, 7.2949, 7.2963, 7.2958, 7.2957, 7.2954, 7.2949, 7.2944, 7.2938, 7.2934, 7.2929, 7.2939, 7.2935, 7.2929, 7.294, 7.2935, 7.2929, 7.2941, 7.2953, 7.2947, 7.2942, 7.2953, 7.2952, 7.293, 7.2941, 7.2953, 7.2932, 7.2926, 7.2921, 7.2934, 7.2928, 7.2939, 7.2933, 7.2927, 7.2921, 7.2915, 7.2909, 7.2921, 7.2932, 7.2926, 7.292, 7.293, 7.2924, 7.2919, 7.2915, 7.291, 7.2923, 7.2919, 7.2913, 7.2911, 7.2921, 7.2917, 7.2912, 7.2907, 7.2901, 7.2897, 7.2892, 7.2873, 7.2886, 7.2903, 7.2932, 7.2927, 7.2921, 7.2916, 7.2912, 7.2918, 7.2913, 7.2906, 7.29, 7.2911, 7.2921, 7.2916, 7.2927, 7.2924, 7.2936, 7.2948, 7.295, 7.2944, 7.2938, 7.3072, 7.3067, 7.3062, 7.3056, 7.3068, 7.3063, 7.3059, 7.3055, 7.3048, 7.3047, 7.3043, 7.3037, 7.3073, 7.3085, 7.308, 7.3074, 7.3069, 7.3065, 7.306, 7.3054, 7.3052, 7.3047, 7.3045, 7.3039, 7.3052, 7.3047, 7.3042, 7.3042, 7.3037, 7.3034, 7.3028, 7.3075, 7.3087, 7.3082, 7.3094, 7.3089, 7.3106, 7.3101, 7.3113, 7.3107, 7.3101, 7.3112, 7.3123, 7.3134, 7.3129, 7.3123, 7.3134, 7.3128, 7.3121, 7.3118, 7.3129, 7.3147, 7.3142, 7.3137, 7.3132, 7.316, 7.3139, 7.315, 7.3144, 7.314, 7.3135, 7.3158, 7.3152, 7.3147, 7.3157, 7.3167, 7.3164, 7.316, 7.3171, 7.3165, 7.3159, 7.3153, 7.3147, 7.3141, 7.3163, 7.3191, 7.3185, 7.318, 7.3191, 7.32, 7.3194, 7.3189, 7.3185, 7.318, 7.3174, 7.3153, 7.3147, 7.3142, 7.3154, 7.3152, 7.3165, 7.316, 7.3155, 7.3149, 7.316, 7.3154, 7.3149, 7.3159, 7.3157, 7.3185, 7.3185, 7.3179, 7.3246, 7.3272, 7.33, 7.3319, 7.3313, 7.3308, 7.3319, 7.3329, 7.3323, 7.3317, 7.3312, 7.3306, 7.3317, 7.3311, 7.3305, 7.3316, 7.3351, 7.3346, 7.3342, 7.3355, 7.3351, 7.3378, 7.3373, 7.3368, 7.3364, 7.3408, 7.3404, 7.3415, 7.3425, 7.3421, 7.342, 7.3416, 7.3412, 7.3407, 7.3402, 7.3415, 7.3428, 7.3442, 7.3436, 7.3432, 7.3426, 7.3407, 7.3417, 7.3429, 7.3425, 7.3437, 7.3432, 7.3427, 7.3438, 7.3433, 7.3428, 7.3422, 7.3416, 7.3427, 7.3437, 7.3432, 7.3426, 7.3406, 7.3419, 7.3414, 7.3408, 7.3404, 7.3398, 7.341, 7.3405, 7.3401, 7.3396, 7.3439, 7.3433, 7.3427, 7.3422, 7.3434, 7.3429, 7.3424, 7.3419, 7.3414, 7.3396, 7.3391, 7.3402, 7.3398, 7.3392, 7.3386, 7.338, 7.3376, 7.3374, 7.3369, 7.3363, 7.3358, 7.3354, 7.3348, 7.3359, 7.3355, 7.3349, 7.3329, 7.3324, 7.3318, 7.3312, 7.3308, 7.3319, 7.3313, 7.331, 7.3306, 7.3301, 7.3301, 7.3312, 7.331, 7.3305, 7.3301, 7.3295, 7.3289, 7.3286, 7.3283, 7.3294, 7.3289, 7.3286, 7.3283, 7.3278, 7.3289, 7.3284, 7.3279, 7.329, 7.3286, 7.3281, 7.3292, 7.3291, 7.3287, 7.3282, 7.3277, 7.3272, 7.3267, 7.3267, 7.3264, 7.326, 7.327, 7.3266, 7.3261, 7.3256, 7.3252, 7.3246, 7.3241, 7.3236, 7.323, 7.3224, 7.3234, 7.3217, 7.3212, 7.3206, 7.32, 7.3195, 7.3191, 7.3188, 7.3184, 7.318, 7.3205, 7.3231, 7.3226, 7.3249, 7.3249, 7.3292, 7.3288, 7.3282, 7.3278, 7.3272, 7.3267, 7.3262, 7.326, 7.3259, 7.3254, 7.3249, 7.3244, 7.3238, 7.3232, 7.3228, 7.3224, 7.3237, 7.3231, 7.3228, 7.3208, 7.3203, 7.3198, 7.3208, 7.3203, 7.3214, 7.3209, 7.3205, 7.32, 7.3211, 7.3206, 7.3215, 7.3225, 7.3221, 7.3232, 7.3242, 7.3236, 7.3246, 7.3227, 7.3207, 7.32, 7.3195, 7.3205, 7.3199, 7.3193, 7.3187, 7.3197, 7.3199, 7.3213, 7.321, 7.3191, 7.3171, 7.3184, 7.318, 7.3176, 7.3172, 7.3166, 7.316, 7.3155, 7.3158, 7.3153, 7.3163, 7.3161, 7.3156, 7.3151, 7.3197, 7.3192, 7.3189, 7.3203, 7.3197, 7.3192, 7.3186, 7.3181, 7.3191, 7.3187, 7.3182, 7.3176, 7.3171, 7.3166, 7.3161, 7.3157, 7.3153, 7.3149, 7.315, 7.3167, 7.3178, 7.3207, 7.3205, 7.32, 7.3194, 7.3204, 7.3199, 7.3194, 7.3188, 7.3171, 7.3183, 7.318, 7.3175, 7.3171, 7.3165, 7.3159, 7.3154, 7.315, 7.3144, 7.314, 7.315, 7.3146, 7.314, 7.3134, 7.3128, 7.3123, 7.3132, 7.3142, 7.3137, 7.3147, 7.3145, 7.3139, 7.3135, 7.3146, 7.3159, 7.3156, 7.3151, 7.3162, 7.3157, 7.3153, 7.3148, 7.3143, 7.3153, 7.3148, 7.3192, 7.3172, 7.3153, 7.3137, 7.3132, 7.3127, 7.3122, 7.3118, 7.3116, 7.3126, 7.3137, 7.3147, 7.313, 7.3127, 7.3122, 7.3133, 7.3131, 7.3127, 7.3138, 7.3133, 7.3143, 7.3141, 7.3136, 7.3145, 7.3155, 7.3153, 7.3157, 7.3152, 7.3147, 7.3129, 7.3124, 7.3123, 7.3107, 7.3101, 7.3097, 7.3092, 7.3086, 7.3083, 7.3109, 7.3105, 7.3145, 7.314, 7.315, 7.3148, 7.3142, 7.3155, 7.3151, 7.3148, 7.3144, 7.3139, 7.315, 7.3145, 7.314, 7.3135, 7.3146, 7.3142, 7.3137, 7.3132, 7.3127, 7.3122, 7.3117, 7.3113, 7.3108, 7.3105, 7.3116, 7.3111, 7.3106, 7.3117, 7.3112, 7.3107, 7.3089, 7.3084, 7.308, 7.3075, 7.307, 7.3067, 7.3078, 7.3074, 7.3068, 7.3063, 7.3073, 7.3069, 7.3065, 7.306, 7.307, 7.3065, 7.3069, 7.3064, 7.3059, 7.3054, 7.3049, 7.3045, 7.304, 7.3053, 7.3048, 7.3043, 7.304, 7.3038, 7.3033, 7.3043, 7.3038, 7.3033, 7.3028, 7.3022, 7.3003, 7.2985, 7.2979, 7.2989, 7.2999, 7.2994, 7.299, 7.2985, 7.2981, 7.2976, 7.2971, 7.2981, 7.2979, 7.2989, 7.2984, 7.2979, 7.2993, 7.2988, 7.2983, 7.2978, 7.2988, 7.2983, 7.2978, 7.2973, 7.2968, 7.2967, 7.2978, 7.2975, 7.3001, 7.2997, 7.3008, 7.3005, 7.3015, 7.301, 7.3007, 7.3002, 7.2984, 7.2979, 7.2991, 7.2985, 7.2979, 7.2974, 7.2998, 7.2997, 7.2993, 7.3018, 7.3028, 7.3038, 7.302, 7.3032, 7.3072, 7.3067, 7.3078, 7.3073, 7.3069, 7.3065, 7.306, 7.3055, 7.3065, 7.306, 7.3055, 7.3051, 7.3046, 7.3056, 7.3066, 7.3063, 7.3073, 7.3082, 7.3083, 7.3078, 7.3074, 7.3071, 7.3066, 7.3076, 7.3071, 7.3156, 7.3181, 7.3176, 7.3158, 7.3154, 7.3149, 7.3144, 7.3139, 7.3135, 7.3131, 7.3126, 7.3121, 7.3132, 7.3142, 7.314, 7.3136, 7.3145, 7.3141, 7.3136, 7.3133, 7.3116, 7.3111, 7.3106, 7.3101, 7.3096, 7.3107, 7.3103, 7.3112, 7.3107, 7.3103, 7.3098, 7.3093, 7.3088, 7.3097, 7.3107, 7.3116, 7.3111, 7.3121, 7.3116, 7.3125, 7.312, 7.3158, 7.3153, 7.3148, 7.313, 7.3112, 7.3121, 7.3118, 7.3114, 7.311, 7.3118, 7.3112, 7.312, 7.3118, 7.3114, 7.3123, 7.3118, 7.3113, 7.3108, 7.3103, 7.3085, 7.3094, 7.3089, 7.3084, 7.308, 7.3089, 7.3084, 7.3079, 7.3088, 7.3089, 7.3106, 7.3103, 7.31, 7.3095, 7.309, 7.3087, 7.3126, 7.3125, 7.3126, 7.3122, 7.3117, 7.3126, 7.3121, 7.3117, 7.3113, 7.3111, 7.3123, 7.3153, 7.3163, 7.3161, 7.3159, 7.3154, 7.315, 7.3148, 7.3145, 7.3142, 7.3152, 7.3148, 7.3157, 7.3168, 7.3164, 7.3159, 7.3155, 7.315, 7.3146, 7.3141, 7.3137, 7.3131, 7.3127, 7.3122, 7.3117, 7.3126, 7.3122, 7.3117, 7.3111, 7.3108, 7.3122, 7.3105, 7.31, 7.311, 7.3105, 7.31, 7.3096, 7.3091, 7.3086, 7.3081, 7.3089, 7.3084, 7.3094, 7.309, 7.3098, 7.3112, 7.312, 7.3115, 7.311, 7.3107, 7.3106, 7.3101, 7.311, 7.3106, 7.3118, 7.3113, 7.3125, 7.3121, 7.3119, 7.3129, 7.3124, 7.312, 7.3116, 7.3112, 7.3109, 7.3118, 7.3127, 7.3128, 7.3123, 7.3119, 7.3114, 7.3109, 7.3105, 7.3114, 7.3109, 7.3092, 7.3101, 7.3111, 7.3108, 7.3103, 7.31, 7.3096, 7.3091, 7.3086, 7.3069, 7.3065, 7.3074, 7.307, 7.3065, 7.306, 7.3099, 7.3094, 7.3098, 7.3107, 7.3102, 7.3097, 7.3092, 7.3087, 7.3082, 7.3077, 7.3073, 7.3068, 7.3065, 7.306, 7.3058, 7.3053, 7.3049, 7.3045, 7.3041, 7.3036, 7.3031, 7.3027, 7.3038, 7.3033, 7.3043, 7.3053, 7.3048, 7.3043, 7.3026, 7.3021, 7.3018, 7.3016, 7.3024, 7.3019, 7.3028, 7.3039, 7.3036, 7.3033, 7.3032, 7.303, 7.3026, 7.3022, 7.3017, 7.3013, 7.2997, 7.2992, 7.2987, 7.2974, 7.2987, 7.2983, 7.3004, 7.2999, 7.2994, 7.2989, 7.3019, 7.3029, 7.3024, 7.3019, 7.3029, 7.3024, 7.3033, 7.3029, 7.3038, 7.3033, 7.3028, 7.3037, 7.3032, 7.3028, 7.3011, 7.302, 7.3015, 7.301, 7.3009, 7.3005, 7.3001, 7.301, 7.3021, 7.3017, 7.3026, 7.3035, 7.3032, 7.303, 7.304, 7.3037, 7.3033, 7.3032, 7.3042, 7.3037, 7.306, 7.3055, 7.3052, 7.3035, 7.3031, 7.3026, 7.3021, 7.3005, 7.299, 7.2987, 7.2982, 7.2977, 7.2974, 7.2969, 7.2978, 7.2974, 7.2984, 7.298, 7.2976, 7.2959, 7.2968, 7.2964, 7.2974, 7.2969, 7.2978, 7.2973, 7.2968, 7.2964, 7.296, 7.2969, 7.2964, 7.296, 7.2972, 7.297, 7.2979, 7.2988, 7.2983, 7.2978, 7.2988, 7.2985, 7.298, 7.2975, 7.2971, 7.2968, 7.2965, 7.2961, 7.2958, 7.2958, 7.2968, 7.2978, 7.2986, 7.2995, 7.3005, 7.3001, 7.2997, 7.3006, 7.3003, 7.2999, 7.2994, 7.2989, 7.2987, 7.2982, 7.2979, 7.2988, 7.2984, 7.2993, 7.299, 7.2985, 7.2982, 7.2978, 7.2973, 7.2968, 7.2978, 7.2987, 7.2982, 7.2991, 7.2986, 7.2982, 7.2991, 7.2999, 7.2996, 7.2979, 7.2988, 7.2983, 7.2967, 7.2962, 7.2957, 7.2953, 7.2963, 7.2958, 7.2953, 7.2963, 7.296, 7.297, 7.2966, 7.2962, 7.2959, 7.297, 7.2967, 7.2964, 7.2972, 7.2967, 7.2962, 7.297, 7.2968, 7.2965, 7.2974, 7.297, 7.2966, 7.2962, 7.2971, 7.2967, 7.2975, 7.2971, 7.2979, 7.2977, 7.2972, 7.2967, 7.2975, 7.2984, 7.2981, 7.298, 7.2977, 7.2973, 7.2968, 7.2963, 7.2958, 7.2955, 7.2951, 7.2949, 7.2947, 7.2943, 7.2938, 7.2946, 7.2954, 7.2962, 7.2971, 7.2967, 7.2964, 7.2959, 7.2946, 7.2957, 7.2967, 7.2967, 7.2962, 7.2958, 7.2958, 7.2953, 7.295, 7.2946, 7.293, 7.2926, 7.2921, 7.2916, 7.2925, 7.2933, 7.2935, 7.2932, 7.2918, 7.2914, 7.2964, 7.2959, 7.2954, 7.295, 7.2946, 7.2954, 7.2965, 7.2949, 7.2957, 7.2952, 7.2947, 7.2955, 7.295, 7.2946, 7.2941, 7.2938, 7.2946, 7.2941, 7.2936, 7.2935, 7.2931, 7.2927, 7.2911, 7.2907, 7.2902, 7.29, 7.2895, 7.289, 7.2885, 7.2881, 7.2877, 7.2886, 7.2895, 7.2892, 7.2901, 7.2897, 7.2892, 7.2889, 7.2898, 7.2893, 7.289, 7.2887, 7.2882, 7.2877, 7.2886, 7.2883, 7.2893, 7.289, 7.2885, 7.2881, 7.2877, 7.2874, 7.287, 7.2867, 7.2865, 7.286, 7.2857, 7.2866, 7.2863, 7.2859, 7.2868, 7.2863, 7.2871, 7.2866, 7.2862, 7.2871, 7.288, 7.2889, 7.2884, 7.2881, 7.2878, 7.2874, 7.2869, 7.2865, 7.286, 7.2857, 7.2852, 7.2864, 7.2859, 7.2855, 7.2852, 7.2848, 7.2843, 7.2838, 7.2846, 7.2844, 7.2852, 7.2849, 7.2844, 7.284, 7.2848, 7.2845, 7.2853, 7.2863, 7.2847, 7.2843, 7.2838, 7.2834, 7.2819, 7.2803, 7.28, 7.2795, 7.2792, 7.2787, 7.2783, 7.2793, 7.2789, 7.2786, 7.2789, 7.2786, 7.2795, 7.2804, 7.2812, 7.282, 7.2815, 7.2811, 7.2809, 7.2804, 7.2816, 7.2813, 7.281, 7.2805, 7.2813, 7.281, 7.2805, 7.2801, 7.281, 7.2806, 7.2814, 7.281, 7.2806, 7.2802, 7.2787, 7.2783, 7.278, 7.2776, 7.2761, 7.2784, 7.278, 7.2776, 7.2772, 7.2805, 7.2801, 7.2785, 7.2781, 7.2788, 7.2796, 7.2793, 7.2826, 7.2821, 7.2817, 7.2814, 7.2799, 7.2807, 7.2816, 7.2813, 7.2809, 7.2818, 7.2804, 7.28, 7.2796, 7.282, 7.2818, 7.2827, 7.2837, 7.2845, 7.2853, 7.2849, 7.2844, 7.2841, 7.2837, 7.2833, 7.2829, 7.2825, 7.282, 7.2816, 7.2821, 7.283, 7.2826, 7.2824, 7.282, 7.2828, 7.2825, 7.2821, 7.2817, 7.2813, 7.2809, 7.2804, 7.2802, 7.2836, 7.2831, 7.2828, 7.2823, 7.282, 7.2828, 7.2813, 7.2812, 7.2808, 7.2806, 7.2819, 7.2816, 7.2812, 7.2824, 7.282, 7.282, 7.2816, 7.2812, 7.2807, 7.2803, 7.2802, 7.2786, 7.2811, 7.2798, 7.2794, 7.279, 7.2786, 7.2795, 7.2791, 7.2787, 7.2796, 7.2792, 7.2783, 7.2821, 7.2818, 7.2818, 7.2827, 7.2823, 7.2819, 7.2816, 7.2837, 7.2833, 7.283, 7.2868, 7.2877, 7.2874, 7.2882, 7.2879, 7.2875, 7.2871, 7.2867, 7.2864, 7.286, 7.2868, 7.2876, 7.2893, 7.289, 7.2889, 7.2884, 7.2879, 7.2875, 7.287, 7.2865, 7.2872, 7.2869, 7.2868, 7.2876, 7.2871, 7.2867, 7.2864, 7.286, 7.2855, 7.2852, 7.2847, 7.2842, 7.2839, 7.2835, 7.2842, 7.2838, 7.2835, 7.2833, 7.2829, 7.2825, 7.2822, 7.283, 7.2837, 7.2845, 7.2841, 7.2836, 7.2831, 7.2827, 7.2822, 7.2818, 7.2827, 7.2824, 7.2819, 7.2805, 7.28, 7.2797, 7.2792, 7.2789, 7.2786, 7.2783, 7.2791, 7.2787, 7.2783, 7.2792, 7.2789, 7.2784, 7.2769, 7.2778, 7.2774, 7.2783, 7.2792, 7.2789, 7.2786, 7.2783, 7.279, 7.2799, 7.2806, 7.2825, 7.2833, 7.283, 7.2827, 7.2824, 7.2821, 7.2816, 7.2812, 7.2819, 7.2826, 7.2822, 7.2818, 7.2825, 7.2832, 7.2829, 7.2824, 7.2832, 7.2827, 7.2822, 7.2819, 7.2827, 7.2834, 7.2829, 7.2826, 7.2833, 7.283, 7.2827, 7.2823, 7.2819, 7.2815, 7.2811, 7.281, 7.2806, 7.2803, 7.2801, 7.2798, 7.2807, 7.2792, 7.2789, 7.2798, 7.2794, 7.2791, 7.28, 7.2807, 7.2806, 7.2802, 7.2809, 7.2805, 7.2801, 7.2797, 7.2806, 7.2802, 7.2798, 7.2801, 7.2797, 7.2796, 7.2792, 7.2788, 7.2784, 7.278, 7.2778, 7.2775, 7.2771, 7.2768, 7.2766, 7.2762, 7.2769, 7.2777, 7.2775, 7.2782, 7.2778, 7.2799, 7.2798, 7.2805, 7.2798, 7.2807, 7.2803, 7.28, 7.2797, 7.2794, 7.279, 7.2786, 7.2793, 7.2801, 7.2798, 7.2794, 7.279, 7.2787, 7.2795, 7.2791, 7.2787, 7.2783, 7.2779, 7.2775, 7.2783, 7.278, 7.2777, 7.2774, 7.277, 7.2777, 7.2773, 7.2781, 7.2778, 7.2775, 7.276, 7.2757, 7.2753, 7.2749, 7.2745, 7.2741, 7.2738, 7.2734, 7.2733, 7.2718, 7.2704, 7.2713, 7.2709, 7.2717, 7.2713, 7.2709, 7.2705, 7.2702, 7.271, 7.2707, 7.2693, 7.269, 7.2706, 7.2702, 7.27, 7.2697, 7.2693, 7.2689, 7.2689, 7.2688, 7.2684, 7.268, 7.268, 7.2677, 7.2685, 7.2683, 7.268, 7.2687, 7.2684, 7.2698, 7.2685, 7.2693, 7.2704, 7.2701, 7.2687, 7.2696, 7.2706, 7.2714, 7.2712, 7.2709, 7.2706, 7.2702, 7.2699, 7.2707, 7.2715, 7.2711, 7.2708, 7.2704, 7.269, 7.2686, 7.2682, 7.269, 7.2687, 7.2683, 7.2691, 7.2688, 7.2696, 7.2703, 7.27, 7.2707, 7.2703, 7.27, 7.2712, 7.271, 7.2706, 7.2714, 7.271, 7.2708, 7.2716, 7.2713, 7.271, 7.2718, 7.2727, 7.2724, 7.2731, 7.2727, 7.2724, 7.272, 7.2717, 7.2715, 7.2711, 7.2714, 7.2721, 7.2726, 7.2722, 7.2719, 7.272, 7.2728, 7.2724, 7.272, 7.2727, 7.2723, 7.2719, 7.2715, 7.2701, 7.271, 7.2706, 7.2703, 7.2699, 7.2695, 7.2694, 7.2702, 7.2698, 7.2707, 7.2703, 7.271, 7.2706, 7.2706, 7.2705, 7.2702, 7.2699, 7.2695, 7.2692, 7.2701, 7.2697, 7.2695, 7.2708, 7.2704, 7.2701, 7.2708, 7.2704, 7.27, 7.27, 7.2696, 7.2704, 7.2701, 7.2709, 7.2706, 7.2704, 7.2701, 7.2697, 7.2705, 7.2702, 7.2698, 7.2697, 7.2693, 7.269, 7.2687, 7.2695, 7.2691, 7.2688, 7.2685, 7.2681, 7.2678, 7.2674, 7.267, 7.2666, 7.2663, 7.266, 7.2656, 7.2664, 7.2671, 7.2669, 7.2677, 7.2675, 7.2671, 7.2667, 7.2663, 7.2671, 7.2668, 7.2664, 7.266, 7.2657, 7.2653, 7.2649, 7.2645, 7.2641, 7.2637, 7.2637, 7.2623, 7.2619, 7.2639, 7.2648, 7.2656, 7.2668, 7.2665, 7.2673, 7.2669, 7.2665, 7.2663, 7.2661, 7.2668, 7.2665, 7.2661, 7.2668, 7.2675, 7.2671, 7.2672, 7.2669, 7.2665, 7.2661, 7.2657, 7.2664, 7.2661, 7.2647, 7.2654, 7.265, 7.2658, 7.2667, 7.2663, 7.2659, 7.2655, 7.2663, 7.2659, 7.2658, 7.2656, 7.2652, 7.2649, 7.2648, 7.266, 7.2658, 7.2666, 7.2662, 7.2659, 7.2667, 7.2663, 7.2659, 7.2667, 7.2663, 7.2659, 7.2656, 7.2653, 7.2649, 7.2646, 7.2642, 7.2639, 7.2647, 7.2655, 7.2651, 7.2658, 7.2655, 7.2652, 7.2648, 7.2656, 7.2663, 7.2659, 7.2655, 7.2652, 7.2648, 7.2645, 7.2664, 7.265, 7.2636, 7.2632, 7.2628, 7.2693, 7.2697, 7.2705, 7.2702, 7.2701, 7.2687, 7.2685, 7.2698, 7.2709, 7.2733, 7.2729, 7.2726, 7.2723, 7.2731, 7.2737, 7.2744, 7.273, 7.2739, 7.2746, 7.2743, 7.2739, 7.2769, 7.2776, 7.2783, 7.2781, 7.2779, 7.2765, 7.2752, 7.2754, 7.275, 7.2756, 7.2752, 7.2749, 7.2746, 7.2743, 7.274, 7.2737, 7.2734, 7.2731, 7.2728, 7.2725, 7.2721, 7.2717, 7.2724, 7.2732, 7.2729, 7.2726, 7.2734, 7.2742, 7.2739, 7.2759, 7.2756, 7.2764, 7.2762, 7.277, 7.277, 7.2767, 7.2763, 7.276, 7.2767, 7.2786, 7.2782, 7.2778, 7.2774, 7.277, 7.2777, 7.2773, 7.2769, 7.2765, 7.2761, 7.2758, 7.2754, 7.2752, 7.2749, 7.2746, 7.2742, 7.2738, 7.2745, 7.2741, 7.2737, 7.2733, 7.2741, 7.2749, 7.2745, 7.2743, 7.2741, 7.275, 7.2746, 7.2742, 7.2749, 7.2746, 7.2748, 7.2754, 7.275, 7.2746, 7.2743, 7.2739, 7.2746, 7.2742, 7.2749, 7.2745, 7.2742, 7.2738, 7.2736, 7.2734, 7.273, 7.2727, 7.2729, 7.2727, 7.2725, 7.2723, 7.2719, 7.2717, 7.2704, 7.2704, 7.2711, 7.2709, 7.2705, 7.2701, 7.2698, 7.2705, 7.2701, 7.2709, 7.2706, 7.2702, 7.2698, 7.2706, 7.2703, 7.271, 7.2706, 7.2702, 7.2709, 7.2705, 7.2702, 7.2709, 7.2705, 7.2702, 7.2698, 7.2694, 7.2691, 7.2688, 7.2697, 7.2705, 7.2701, 7.2697, 7.2694, 7.2702, 7.271, 7.2706, 7.2703, 7.271, 7.2717, 7.2714, 7.2723, 7.272, 7.2717, 7.2714, 7.27, 7.2697, 7.2693, 7.269, 7.2687, 7.2694, 7.2701, 7.2688, 7.2685, 7.2682, 7.2689, 7.2695, 7.2703, 7.2699, 7.2696, 7.2694, 7.2683, 7.269, 7.2686, 7.2682, 7.2678, 7.2675, 7.2716, 7.2712, 7.2729, 7.2725, 7.2732, 7.2729, 7.2737, 7.2744, 7.274, 7.2736, 7.2732, 7.2739, 7.2736, 7.2746, 7.2742, 7.274, 7.2737, 7.2733, 7.2729, 7.2727, 7.2723, 7.2743, 7.274, 7.2737, 7.2733, 7.2729, 7.2736, 7.2732, 7.2729, 7.2726, 7.2733, 7.2741, 7.2748, 7.2746, 7.2753, 7.2751, 7.2748, 7.2755, 7.2751, 7.2767, 7.2765, 7.2762, 7.2758, 7.2763, 7.275, 7.2747, 7.2747, 7.2736, 7.2733, 7.2734, 7.2756, 7.2757, 7.2754, 7.2744, 7.2741, 7.2768, 7.2775, 7.2771, 7.2769, 7.2767, 7.2763, 7.275, 7.2747, 7.2744, 7.2741, 7.2748, 7.2745, 7.2742, 7.274, 7.2737, 7.2748, 7.2735, 7.2731, 7.2728, 7.2725, 7.2721, 7.2718, 7.2714, 7.2711, 7.2707, 7.2703, 7.2718, 7.2716, 7.2713, 7.2709, 7.2705, 7.2701, 7.2699, 7.2696, 7.2692, 7.2699, 7.2695, 7.2692, 7.2689, 7.2685, 7.2684, 7.2681, 7.2678, 7.2675, 7.2671, 7.2669, 7.2666, 7.2664, 7.2663, 7.2659, 7.2655, 7.2651, 7.2648, 7.2665, 7.2662, 7.2658, 7.2654, 7.2682, 7.2689, 7.2685, 7.2681, 7.2678, 7.2674, 7.2681, 7.2678, 7.2675, 7.2671, 7.2679, 7.2686, 7.2693, 7.2689, 7.2687, 7.2684, 7.2681, 7.2678, 7.2675, 7.2671, 7.2669, 7.2675, 7.2687, 7.2684, 7.2681, 7.2678, 7.2676, 7.2673, 7.2669, 7.2656, 7.2664, 7.2662, 7.2649, 7.2645, 7.2642, 7.2629, 7.2625, 7.2623, 7.262, 7.2616, 7.2613, 7.26, 7.2598, 7.2595, 7.2593, 7.2589, 7.2587, 7.2585, 7.2582, 7.2579, 7.2566, 7.2553, 7.255, 7.2548, 7.2545, 7.2554, 7.2551, 7.2558, 7.2566, 7.2564, 7.2561, 7.2558, 7.2554, 7.255, 7.2548, 7.2545, 7.2541, 7.2537, 7.2533, 7.254, 7.2536, 7.2532, 7.2529, 7.2527, 7.2523, 7.252, 7.2522, 7.252, 7.2517, 7.2515, 7.2512, 7.2515, 7.2512, 7.2509, 7.2515, 7.2511, 7.2507, 7.2506, 7.2503, 7.249, 7.2488, 7.2484, 7.2481, 7.2477, 7.2475, 7.2482, 7.2488, 7.2487, 7.2483, 7.2479, 7.2475, 7.2472, 7.2459, 7.2446, 7.2442, 7.2438, 7.2434, 7.243, 7.2428, 7.2427, 7.2424, 7.2421, 7.2417, 7.2413, 7.2411, 7.241, 7.2416, 7.2412, 7.2408, 7.2405, 7.2401, 7.2398, 7.2405, 7.2402, 7.2399, 7.2396, 7.2402, 7.2399, 7.2405, 7.2401, 7.2397, 7.2394, 7.2391, 7.2388, 7.2384, 7.2382, 7.2381, 7.2378, 7.2384, 7.239, 7.2388, 7.2386, 7.2382, 7.2389, 7.2385, 7.2382, 7.2369, 7.2365, 7.2361, 7.2358, 7.2365, 7.2363, 7.2361, 7.2392, 7.239, 7.2388, 7.2385, 7.2374, 7.2371, 7.2368, 7.2364, 7.2361, 7.2357, 7.2365, 7.2362, 7.2359, 7.2356, 7.2353, 7.234, 7.2337, 7.2344, 7.2351, 7.2348, 7.2345, 7.2352, 7.2348, 7.2345, 7.2342, 7.2339, 7.2336, 7.2333, 7.2329, 7.2325, 7.2332, 7.2328, 7.2325, 7.2378, 7.2375, 7.2373, 7.2381, 7.237, 7.2368, 7.2365, 7.2363, 7.2361, 7.2358, 7.2355, 7.2353, 7.2352, 7.236, 7.2357, 7.2389, 7.2385, 7.2382, 7.2433, 7.2429, 7.2427, 7.2426, 7.2423, 7.241, 7.2407, 7.2403, 7.2399, 7.2396, 7.2402, 7.2398, 7.2406, 7.2403, 7.2399, 7.2396, 7.2393, 7.24, 7.2417, 7.2414, 7.241, 7.2417, 7.2415, 7.2413, 7.241, 7.2408, 7.2405, 7.2402, 7.24, 7.2397, 7.2394, 7.2391, 7.2388, 7.2385, 7.2392, 7.2399, 7.2405, 7.2412, 7.2409, 7.2406, 7.2402, 7.2399, 7.2398, 7.2394, 7.2391, 7.2388, 7.2385, 7.2381, 7.2378, 7.2374, 7.237, 7.2378, 7.2376, 7.2373, 7.2391, 7.2399, 7.2396, 7.2393, 7.239, 7.2388, 7.2385, 7.2382, 7.2379, 7.2376, 7.2373, 7.2361, 7.235, 7.2347, 7.2355, 7.2352, 7.2348, 7.2346, 7.2345, 7.2343, 7.234, 7.2339, 7.2346, 7.2343, 7.2332, 7.233, 7.2337, 7.2334, 7.2331, 7.2328, 7.2335, 7.2332, 7.2329, 7.2326, 7.2323, 7.2324, 7.2321, 7.2318, 7.2315, 7.2311, 7.2307, 7.2304, 7.2301, 7.2307, 7.2314, 7.232, 7.2317, 7.2334, 7.2349, 7.2345, 7.2342, 7.234, 7.2336, 7.2343, 7.2341, 7.2338, 7.2337, 7.2343, 7.2341, 7.2341, 7.2348, 7.2345, 7.2333, 7.233, 7.2337, 7.2334, 7.2331, 7.2329, 7.2326, 7.2323, 7.2329, 7.2335, 7.2353, 7.236, 7.2368, 7.2365, 7.2363, 7.2361, 7.2358, 7.2355, 7.2355, 7.2352, 7.235, 7.2348, 7.2354, 7.2352, 7.235, 7.2349, 7.2357, 7.2354, 7.235, 7.2346, 7.2344, 7.2351, 7.2347, 7.2354, 7.2352, 7.2368, 7.2364, 7.2365, 7.2355, 7.2352, 7.2348, 7.2345, 7.2341, 7.2337, 7.2334, 7.2331, 7.2328, 7.2325, 7.2331, 7.2328, 7.2335, 7.2333, 7.233, 7.2326, 7.2361, 7.2358, 7.2355, 7.2343, 7.2331, 7.2328, 7.2325, 7.2322, 7.2319, 7.2325, 7.2321, 7.232, 7.2326, 7.2324, 7.2321, 7.2317, 7.2314, 7.2311, 7.2309, 7.2315, 7.2314, 7.2313, 7.2311, 7.2308, 7.2305, 7.2303, 7.23, 7.2307, 7.2304, 7.2301, 7.2298, 7.2295, 7.2292, 7.2289, 7.2287, 7.2284, 7.2281, 7.2278, 7.2276, 7.2273, 7.2272, 7.2279, 7.2276, 7.2283, 7.229, 7.2287, 7.2285, 7.2292, 7.229, 7.2288, 7.2285, 7.2292, 7.2288, 7.2294, 7.2292, 7.229, 7.2286, 7.2283, 7.229, 7.2297, 7.2294, 7.2294, 7.2292, 7.2309, 7.2316, 7.2317, 7.2314, 7.2311, 7.2308, 7.2305, 7.2302, 7.2308, 7.2306, 7.2313, 7.231, 7.2308, 7.2298, 7.2298, 7.2295, 7.2292, 7.2294, 7.2291, 7.2288, 7.2285, 7.2283, 7.2281, 7.2277, 7.2274, 7.228, 7.2276, 7.2273, 7.228, 7.2277, 7.2274, 7.2271, 7.2268, 7.2266, 7.2262, 7.226, 7.2257, 7.2255, 7.2261, 7.2268, 7.2265, 7.2264, 7.2261, 7.2278, 7.2275, 7.2272, 7.2269, 7.2266, 7.2263, 7.226, 7.2258, 7.2255, 7.2252, 7.2251, 7.2248, 7.2245, 7.2242, 7.224, 7.2237, 7.2243, 7.224, 7.2247, 7.2246, 7.2243, 7.2243, 7.224, 7.2237, 7.2243, 7.224, 7.2246, 7.2253, 7.225, 7.2257, 7.2254, 7.2262, 7.2269, 7.2267, 7.2264, 7.2261, 7.2258, 7.2255, 7.2262, 7.2259, 7.2256, 7.2253, 7.2251, 7.2248, 7.2254, 7.2251, 7.2248, 7.2245, 7.2242, 7.2241, 7.2259, 7.2256, 7.2254, 7.2251, 7.225, 7.2249, 7.2246, 7.2244, 7.2241, 7.2238, 7.2235, 7.2232, 7.2239, 7.2236, 7.2243, 7.2263, 7.226, 7.2256, 7.2252, 7.2259, 7.2265, 7.2272, 7.2272, 7.2261, 7.2258, 7.2264, 7.2261, 7.2258, 7.2255, 7.2261, 7.2259, 7.2265, 7.2262, 7.226, 7.2297, 7.2305, 7.2302, 7.2299, 7.2297, 7.2294, 7.2294, 7.2292, 7.2292, 7.2289, 7.2295, 7.2292, 7.2289, 7.2286, 7.2283, 7.2291, 7.2289, 7.2295, 7.2294, 7.2291, 7.2288, 7.2285, 7.2282, 7.2279, 7.23, 7.2297, 7.2294, 7.2291, 7.228, 7.2286, 7.2283, 7.2289, 7.2305, 7.2311, 7.2319, 7.2317, 7.2314, 7.232, 7.2308, 7.2315, 7.2318, 7.2317, 7.2314, 7.2312, 7.231, 7.2306, 7.2303, 7.2308, 7.2306, 7.2313, 7.231, 7.2308, 7.2305, 7.2303, 7.2291, 7.2288, 7.2294, 7.2291, 7.2297, 7.2294, 7.2301, 7.2299, 7.2297, 7.2293, 7.23, 7.2297, 7.2303, 7.23, 7.2296, 7.2293, 7.229, 7.2288, 7.2285, 7.2282, 7.2281, 7.2278, 7.2287, 7.2295, 7.2305, 7.2302, 7.2299, 7.2305, 7.2311, 7.2318, 7.2315, 7.2312, 7.2309, 7.2307, 7.2308, 7.2306, 7.2303, 7.2301, 7.2298, 7.2296, 7.2294, 7.2291, 7.2279, 7.2276, 7.2283, 7.229, 7.2324, 7.2322, 7.232, 7.2318, 7.2317, 7.2327, 7.2323, 7.232, 7.2316, 7.2305, 7.2302, 7.2299, 7.2296, 7.2294, 7.2292, 7.2289, 7.2286, 7.2292, 7.229, 7.2288, 7.2338, 7.2335, 7.2333, 7.2331, 7.2328, 7.2325, 7.2322, 7.2319, 7.2325, 7.2322, 7.2319, 7.2317, 7.2314, 7.2321, 7.2318, 7.2315, 7.2312, 7.2309, 7.2307, 7.2304, 7.2311, 7.2308, 7.2305, 7.2312, 7.231, 7.2308, 7.2305, 7.2312, 7.231, 7.2308, 7.2309, 7.2307, 7.2315, 7.2312, 7.2313, 7.2312, 7.2318, 7.2315, 7.2312, 7.2309, 7.2306, 7.2303, 7.2301, 7.2298, 7.2297, 7.2294, 7.2292, 7.2282, 7.229, 7.2287, 7.2285, 7.2282, 7.228, 7.2277, 7.2274, 7.2271, 7.2259, 7.2256, 7.2253, 7.2259, 7.2265, 7.2271, 7.2268, 7.2275, 7.2272, 7.227, 7.2276, 7.2273, 7.227, 7.2276, 7.2273, 7.227, 7.2267, 7.2273, 7.2271, 7.2269, 7.2267, 7.2264, 7.2261, 7.2267, 7.2264, 7.2261, 7.2258, 7.2265, 7.2273, 7.2271, 7.2277, 7.2274, 7.2281, 7.2278, 7.2275, 7.2272, 7.227, 7.2259, 7.2256, 7.2254, 7.226, 7.2257, 7.2254, 7.2252, 7.2249, 7.2247, 7.2244, 7.2242, 7.2239, 7.2245, 7.2242, 7.2248, 7.2246, 7.2243, 7.224, 7.2237, 7.2243, 7.2241, 7.224, 7.2237, 7.2236, 7.2242, 7.224, 7.2237, 7.2234, 7.2231, 7.2228, 7.2234, 7.2231, 7.2229, 7.2226, 7.2224, 7.2221, 7.222, 7.2218, 7.2215, 7.2213, 7.222, 7.2218, 7.2215, 7.2221, 7.2218, 7.2215, 7.2212, 7.222, 7.2234, 7.2231, 7.2237, 7.2235, 7.2233, 7.223, 7.2237, 7.2231, 7.2228, 7.2225, 7.2238, 7.2241, 7.2239, 7.2236, 7.2244, 7.2251, 7.2242, 7.2239, 7.2255, 7.2252, 7.2249, 7.2255, 7.2252, 7.2257, 7.2254, 7.226, 7.2257, 7.2254, 7.2252, 7.225, 7.2256, 7.2254, 7.2251, 7.2248, 7.2245, 7.2242, 7.2242, 7.2249, 7.2255, 7.2246, 7.2243, 7.2241, 7.2248, 7.2246, 7.2245, 7.2243, 7.2241, 7.2248, 7.2246, 7.2245, 7.2245, 7.2243, 7.224, 7.2238, 7.2279, 7.2277, 7.2274, 7.2274, 7.228, 7.2278, 7.2276, 7.2274, 7.2271, 7.2268, 7.2265, 7.2263, 7.226, 7.2276, 7.2274, 7.2272, 7.2269, 7.2267, 7.2265, 7.2265, 7.2271, 7.2268, 7.2266, 7.2263, 7.2262, 7.2268, 7.2266, 7.2272, 7.2278, 7.2284, 7.2281, 7.227, 7.2267, 7.2264, 7.227, 7.2276, 7.2273, 7.228, 7.2286, 7.2284, 7.2281, 7.2287, 7.2285, 7.2291, 7.2288, 7.2285, 7.2292, 7.2289, 7.2288, 7.2285, 7.2283, 7.2281, 7.228, 7.2277, 7.2283, 7.2281, 7.2287, 7.2293, 7.2291, 7.2297, 7.2303, 7.23, 7.2298, 7.2287, 7.2302, 7.2311, 7.2302, 7.2309, 7.2306, 7.2312, 7.231, 7.2299, 7.2305, 7.2302, 7.23, 7.2306, 7.2311, 7.2308, 7.2313, 7.231, 7.2309, 7.2315, 7.2321, 7.2318, 7.2316, 7.2322, 7.2328, 7.2325, 7.233, 7.2336, 7.2341, 7.2338, 7.2335, 7.2352, 7.2349, 7.2346, 7.2343, 7.2351, 7.234, 7.2346, 7.2345, 7.2351, 7.2348, 7.2338, 7.2357, 7.2364, 7.2362, 7.2369, 7.2358, 7.2356, 7.2354, 7.236, 7.2357, 7.2355, 7.2352, 7.2349, 7.2346, 7.2335, 7.2334, 7.2331, 7.232, 7.232, 7.2309, 7.2306, 7.2311, 7.2308, 7.2302, 7.2299, 7.2297, 7.2303, 7.2311, 7.2316, 7.2322, 7.2321, 7.2318, 7.2315, 7.2322, 7.2321, 7.232, 7.2317, 7.2326, 7.2332, 7.233, 7.2328, 7.2326, 7.2323, 7.2321, 7.2318, 7.2307, 7.2305, 7.2302, 7.23, 7.2297, 7.2294, 7.2291, 7.2297, 7.2286, 7.2283, 7.2283, 7.2272, 7.227, 7.2281, 7.2278, 7.2275, 7.2274, 7.2274, 7.2271, 7.2268, 7.2266, 7.2264, 7.2268, 7.2265, 7.2262, 7.2259, 7.2256, 7.2253, 7.225, 7.2247, 7.2244, 7.2242, 7.2239, 7.2245, 7.2242, 7.2239, 7.2245, 7.2234, 7.2239, 7.2245, 7.2251, 7.2256, 7.225, 7.2248, 7.2245, 7.2242, 7.2241, 7.2238, 7.2244, 7.2251, 7.2248, 7.2248, 7.2247, 7.2253, 7.225, 7.2258, 7.2255, 7.2261, 7.2252, 7.2242, 7.2232, 7.2238, 7.2235, 7.2233, 7.223, 7.2221, 7.2219, 7.2223, 7.222, 7.2217, 7.2246, 7.2252, 7.2257, 7.2255, 7.2261, 7.226, 7.2265, 7.2271, 7.2269, 7.2275, 7.2272, 7.2282, 7.228, 7.2277, 7.2274, 7.2274, 7.2272, 7.2278, 7.2284, 7.2282, 7.2279, 7.2276, 7.2275, 7.2274, 7.2266, 7.2264, 7.227, 7.2276, 7.2273, 7.2279, 7.2287, 7.2293, 7.229, 7.2304, 7.231, 7.2345, 7.2343, 7.2341, 7.2338, 7.2336, 7.2334, 7.2332, 7.2332, 7.2329, 7.2326, 7.2323, 7.2321, 7.2327, 7.2325, 7.2314, 7.2305, 7.2303, 7.2293, 7.2291, 7.2288, 7.2285, 7.2282, 7.2279, 7.228, 7.2278, 7.2277, 7.2294, 7.2291, 7.2288, 7.2294, 7.2291, 7.2289, 7.2289, 7.2278, 7.2284, 7.2282, 7.2279, 7.2285, 7.2282, 7.228, 7.2288, 7.2285, 7.2282, 7.2279, 7.2302, 7.2308, 7.2315, 7.232, 7.2317, 7.2314, 7.2311, 7.2318, 7.2315, 7.2312, 7.2318, 7.2324, 7.2321, 7.2337, 7.2342, 7.2339, 7.2337, 7.2334, 7.2343, 7.2358, 7.2373, 7.2382, 7.238, 7.2387, 7.2389, 7.2387, 7.2378, 7.2375, 7.2366, 7.2371, 7.2368, 7.2382, 7.2379, 7.2377, 7.2383, 7.2388, 7.2386, 7.2409, 7.2407, 7.2416, 7.2422, 7.2419, 7.2416, 7.2422, 7.2419, 7.2425, 7.2422, 7.2419, 7.2416, 7.2413, 7.241, 7.2416, 7.2413, 7.241, 7.2407, 7.2405, 7.2395, 7.2393, 7.2399, 7.2388, 7.2386, 7.2396, 7.2394, 7.2408, 7.2405, 7.2403, 7.2409, 7.2415, 7.2412, 7.241, 7.2416, 7.2414, 7.2411, 7.2409, 7.2406, 7.2404, 7.2402, 7.2407, 7.2404, 7.2401, 7.2407, 7.2413, 7.241, 7.2408, 7.2431, 7.2428, 7.2434, 7.2431, 7.2429, 7.2426, 7.2416, 7.2413, 7.241, 7.2417, 7.2415, 7.2412, 7.2402, 7.2416, 7.2455, 7.2453, 7.245, 7.2456, 7.2454, 7.2451, 7.2448, 7.2446, 7.2444, 7.2448, 7.244, 7.2446, 7.246, 7.2474, 7.2471, 7.2487, 7.2484, 7.2489, 7.2496, 7.2501, 7.2498, 7.2495, 7.2493, 7.249, 7.2487, 7.2485, 7.2492, 7.2492, 7.249, 7.2488, 7.2485, 7.2482, 7.2479, 7.2476, 7.2473, 7.2478, 7.2475, 7.2472, 7.2478, 7.2483, 7.248, 7.2477, 7.2478, 7.2484, 7.2481, 7.2479, 7.2493, 7.2499, 7.2505, 7.2511, 7.2502, 7.25, 7.2498, 7.2488, 7.2485, 7.2475, 7.2473, 7.2479, 7.2484, 7.2489, 7.2495, 7.25, 7.2497, 7.2494, 7.2508, 7.2506, 7.2505, 7.2524, 7.2521, 7.2518, 7.2516, 7.253, 7.2519, 7.2525, 7.2526, 7.2523, 7.252, 7.2518, 7.2541, 7.2539, 7.2536, 7.2533, 7.253, 7.2527, 7.2535, 7.2532, 7.2522, 7.2528, 7.2534, 7.2532, 7.2522, 7.2519, 7.2524, 7.2521, 7.2536, 7.2533, 7.2531, 7.2529, 7.2554, 7.2559, 7.2556, 7.2563, 7.256, 7.257, 7.2571, 7.2577, 7.2574, 7.2571, 7.2577, 7.2574, 7.258, 7.2585, 7.259, 7.2595, 7.26, 7.2597, 7.2602, 7.2608, 7.2614, 7.2612, 7.261, 7.2608, 7.2614, 7.2612, 7.2618, 7.264, 7.2638, 7.2644, 7.2642, 7.2648, 7.2646, 7.2643, 7.2641, 7.2638, 7.2635, 7.2633, 7.263, 7.2627, 7.2624, 7.2621, 7.2619, 7.2617, 7.2615, 7.2624, 7.2621, 7.2619, 7.2617, 7.2614, 7.2612, 7.2609, 7.2606, 7.2603, 7.26, 7.2597, 7.2603, 7.2609, 7.2606, 7.2612, 7.2609, 7.2615, 7.2613, 7.261, 7.2616, 7.2614, 7.2613, 7.2611, 7.2616, 7.2614, 7.262, 7.2634, 7.2631, 7.263, 7.2627, 7.2632, 7.2638, 7.2636, 7.2634, 7.2632, 7.2637, 7.2627, 7.2624, 7.2621, 7.2637, 7.2643, 7.2665, 7.267, 7.2672, 7.267, 7.2675, 7.269, 7.2693, 7.269, 7.2688, 7.2685, 7.2683, 7.268, 7.2679, 7.2685, 7.2683, 7.2681, 7.2678, 7.2692, 7.2689, 7.2694, 7.2699, 7.2696, 7.2705, 7.2705, 7.2703, 7.2704, 7.2701, 7.2698, 7.2696, 7.2699, 7.2697, 7.2702, 7.2699, 7.2696, 7.2702, 7.2699, 7.2712, 7.271, 7.2708, 7.271, 7.2708, 7.2706, 7.2696, 7.2694, 7.2693, 7.2691, 7.269, 7.269, 7.2687, 7.2692, 7.2697, 7.2694, 7.2691, 7.2696, 7.2701, 7.2698, 7.2703, 7.27, 7.2697, 7.2702, 7.27, 7.2697, 7.2702, 7.2708, 7.2713, 7.2719, 7.2716, 7.2722, 7.2719, 7.2716, 7.2721, 7.2727, 7.2733, 7.2738, 7.2735, 7.2741, 7.2738, 7.2736, 7.2749, 7.2754, 7.2752, 7.275, 7.2747, 7.2748, 7.2748, 7.2747, 7.2753, 7.2751, 7.2748, 7.2745, 7.2742, 7.274, 7.273, 7.2727, 7.2727, 7.273, 7.276, 7.2771, 7.2768, 7.2773, 7.2771, 7.2777, 7.2774, 7.2771, 7.277, 7.2768, 7.2766, 7.2763, 7.2762, 7.2768, 7.2766, 7.2772, 7.2771, 7.2776, 7.2779, 7.2782, 7.2779, 7.2777, 7.2775, 7.2788, 7.2785, 7.2791, 7.2792, 7.279, 7.2787, 7.2784, 7.2781, 7.2771, 7.2777, 7.2783, 7.2781, 7.2786, 7.2784, 7.2798, 7.279, 7.2787, 7.2785, 7.2783, 7.2786, 7.2785, 7.2783, 7.2781, 7.2786, 7.2776, 7.2773, 7.277, 7.2775, 7.2772, 7.2769, 7.2767, 7.2772, 7.2775, 7.2772, 7.277, 7.277, 7.2767, 7.2764, 7.2761, 7.2761, 7.2815, 7.2813, 7.281, 7.2807, 7.2804, 7.2801, 7.2798, 7.2796, 7.2793, 7.2799, 7.2797, 7.2795, 7.2793, 7.2792, 7.279, 7.2787, 7.2785, 7.2783, 7.2789, 7.2794, 7.2793, 7.2791, 7.2796, 7.2802, 7.2799, 7.2797, 7.2798, 7.2796, 7.2801, 7.2798, 7.2795, 7.2801, 7.2798, 7.2803, 7.28, 7.2798, 7.2796, 7.2795, 7.2793, 7.2791, 7.2788, 7.278, 7.2779, 7.2779, 7.2777, 7.2775, 7.2773, 7.2804, 7.2802, 7.2799, 7.2798, 7.2795, 7.2793, 7.2831, 7.2828, 7.2833, 7.2831, 7.2837, 7.2835, 7.2841, 7.2842, 7.284, 7.2856, 7.2855, 7.2854, 7.2852]}
rtt9_2_10 = {'192.168.122.118': [5.6372, 5.8014, 12.1615, 12.8789, 5.78, 10.8988, 10.7007, 6.4399, 26.7017, 5.2509, 11.322, 11.8017, 10.7222, 5.487, 1.06, 7.3147, 22.8429, 5.4646, 5.6717, 6.2959, 5.6365, 6.1867, 5.626, 6.5484, 5.2974, 5.6798, 6.2745, 5.5165, 5.3756, 9.6674, 5.3608, 5.7142, 11.3716, 10.9122, 5.7235, 5.4834, 5.9304, 14.2114, 14.8087, 5.46, 6.2666, 5.4436, 6.3202, 17.123, 5.482, 5.2667, 10.8037, 5.5232, 5.3253, 6.8021, 5.888, 5.3985, 10.8349, 0.5996, 5.6479, 5.4958, 5.4526, 6.1822, 11.4498, 5.3921, 5.8386, 5.9288, 5.4233, 5.2552, 5.4364, 10.9029, 5.3804, 10.7567, 5.7945, 5.4274, 5.3527, 5.476, 0.8903, 5.3046, 5.5244, 11.3842, 5.5518, 10.9906, 5.3134, 6.5522, 6.1955, 5.4603, 5.3031, 5.2998, 10.9246, 5.5733, 5.6314, 5.6024, 6.2745, 0.695, 1.1871, 12.0847, 11.5054, 5.2667, 11.282, 6.8135, 6.4132, 10.6924, 5.6906, 5.5351, 1.1613, 5.2288, 5.4507, 5.4057, 5.3358, 10.7126, 10.6947, 5.5282, 11.503, 10.4544, 15.8994, 5.2848, 5.4049, 5.4114, 5.6372, 0.8566, 5.5997, 5.815, 1.3599, 5.7364, 5.9006, 5.6574, 5.7178, 5.2743, 5.4636, 5.2574, 6.2926, 5.9888, 5.7428, 5.549, 5.2381, 5.4216, 5.4026, 21.4818, 11.1115, 5.4827, 5.6837, 5.4154, 5.5637, 5.636, 6.1095, 5.4355, 17.823, 11.147, 5.3334, 6.7599, 5.4717, 6.1123, 5.4901, 10.9613, 10.8664, 10.9177, 5.5776, 10.9241, 5.754, 5.3918, 5.5377, 5.5079, 6.6228, 5.2893, 5.4107, 5.2915, 6.043, 5.7912, 12.121, 5.6026, 6.0804, 6.1023, 5.3849, 16.8769, 6.1193, 6.3052, 6.644, 6.5556, 5.3275, 6.4859, 5.4486, 6.2792, 10.8993, 5.4066, 11.2255, 5.3136, 5.2884, 21.4887, 5.281, 6.5041, 10.4356, 5.6794, 5.7793, 5.6999, 6.0716, 6.1417, 11.2982, 10.7229, 5.821, 5.5957, 5.5311, 10.7594, 11.8964, 5.3718, 0.8163, 6.103, 5.29, 5.4762, 6.3708, 6.4538, 5.4607, 5.2979, 5.9187, 5.4381, 5.4784, 5.5399, 0.7224, 5.7604, 5.8782, 5.6181, 6.3283, 6.1932, 5.6443, 10.5758, 5.2531, 10.7005, 11.1151, 5.6846, 11.0099, 10.7987, 11.5573, 5.5618, 6.3076, 5.7364, 5.9061, 10.9699, 5.3883, 0.6163, 5.518, 10.7512, 5.4982, 5.6696, 21.4689, 11.2548, 10.6425, 6.156, 12.1419, 5.6095, 5.7361, 5.5647, 5.6043, 5.7774, 11.0316, 5.702, 5.6374, 5.4882, 11.2183, 10.921, 11.5821, 11.2023, 6.0081, 11.0168], '192.168.122.120': [5.3389, 5.2979, 10.6449, 5.5182, 5.4321, 11.0307, 5.271, 11.4996, 21.8787, 5.3382, 5.3325, 5.8768, 5.404, 11.0693, 1.0018, 5.548, 5.42, 10.8585, 11.2846, 6.7844, 6.1026, 11.1456, 11.2894, 5.4395, 10.865, 5.4288, 10.8533, 10.4458, 10.6573, 5.6422, 10.7179, 5.3499, 5.5192, 10.8955, 5.7948, 5.3616, 5.3043, 5.213, 5.477, 11.1146, 5.4092, 5.2788, 10.9334, 6.3026, 11.2722, 10.8228, 10.8182, 5.8742, 5.4331, 5.8591, 5.9199, 5.3253, 0.5937, 5.3239, 5.5425, 6.2039, 5.8427, 6.3655, 11.6084, 10.8192, 5.9276, 11.692, 5.8374, 5.5993, 5.3723, 5.8057, 5.3005, 6.4502, 10.9413, 10.9091, 5.7163, 5.4305, 0.5448, 5.2993, 10.8714, 5.9304, 5.2085, 5.3909, 5.5223, 16.0122, 5.8851, 5.5172, 11.0106, 10.6113, 21.4698, 5.6961, 5.7135, 18.5823, 6.4161, 16.4645, 0.6027, 5.3992, 5.6889, 7.2615, 5.5907, 5.4708, 5.2166, 11.5004, 5.7414, 5.5814, 0.3939, 5.3251, 10.9992, 5.5904, 5.3976, 5.4312, 5.6438, 5.8041, 5.9805, 36.5558, 5.321, 5.2896, 5.4116, 10.6239, 6.0003, 6.6659, 5.5685, 10.8531, 0.9997, 6.0475, 5.3265, 11.219, 11.6038, 10.9935, 11.0083, 11.296, 10.7417, 11.1849, 5.923, 5.383, 5.9307, 10.9193, 11.3015, 10.957, 11.0729, 6.5427, 5.5454, 5.4748, 10.673, 10.9911, 5.954, 11.4019, 26.6867, 16.4061, 17.0908, 10.7434, 11.1499, 5.7852, 5.2655, 5.6167, 5.4922, 5.9114, 11.1909, 5.353, 5.5125, 5.2476, 10.9546, 11.1623, 5.527, 15.3942, 10.6723, 10.6165, 5.5029, 5.223, 17.1223, 6.0833, 6.2709, 5.964, 5.3902, 10.7737, 5.594, 6.7258, 11.0152, 5.9984, 5.718, 6.0074, 5.842, 5.9099, 5.5571, 10.9491, 5.4018, 5.8136, 5.3086, 5.8954, 5.8165, 1.0517, 5.8665, 6.1219, 12.465, 6.3217, 25.6908, 22.063, 11.4996, 6.1786, 5.4679, 5.5394, 11.1818, 5.6992, 5.5201, 5.8975, 0.8354, 5.821, 22.2709, 6.0327, 5.2788, 6.1879, 10.7837, 10.6792, 5.2712, 5.4631, 5.2145, 5.8315, 0.9053, 11.327, 5.2943, 6.0554, 5.4924, 5.3227, 5.7755, 15.8093, 5.4212, 29.7122, 5.3589, 6.336, 10.6459, 5.5468, 11.5361, 0.6688, 11.5564, 5.6722, 16.948, 5.4269, 5.4917, 18.0912, 5.861, 5.2819, 10.9203, 10.7002, 6.1424, 10.9296, 6.0072, 5.5847, 10.8485, 17.0085, 5.2185, 5.8498, 6.2294, 5.8935, 5.4007, 0.8121, 5.7087, 13.5405, 16.4635, 11.6947, 6.0916, 17.02, 5.4195, 5.3837], '192.168.122.116': [10.4778, 5.6241, 5.5871, 5.6801, 5.4953, 6.0337, 12.274, 5.9338, 5.8968, 10.6201, 5.3604, 5.4815, 5.3709, 5.4719, 0.828, 5.4932, 10.9193, 5.3117, 5.5695, 5.748, 6.1851, 22.6943, 5.553, 5.5838, 5.7459, 5.4708, 5.8441, 5.2714, 10.7372, 8.1327, 5.5861, 12.6009, 10.8581, 5.3382, 6.7067, 5.3835, 16.3214, 15.9595, 10.951, 10.5305, 6.5989, 7.6399, 10.8576, 6.1345, 6.391, 6.8698, 5.95, 6.4795, 5.4269, 9.0592, 5.4765, 5.3422, 5.7976, 10.6289, 5.4069, 5.5976, 5.337, 5.6965, 22.7885, 5.4278, 5.357, 10.5488, 5.8577, 21.9724, 5.3313, 5.275, 5.388, 6.3219, 5.3778, 5.4197, 16.175, 5.5568, 0.6611, 5.4498, 10.9007, 22.3031, 10.3078, 16.9127, 21.6551, 10.9327, 5.3837, 5.553, 10.9499, 5.2159, 11.1475, 10.9103, 5.645, 17.0417, 10.8869, 15.7313, 2.1183, 5.4083, 5.6295, 5.9161, 5.5649, 10.844, 10.9205, 5.5816, 17.4272, 5.6405, 0.7341, 5.3465, 5.3875, 11.287, 11.0924, 5.7149, 11.3673, 10.952, 10.4852, 10.5324, 10.5853, 10.7236, 6.2845, 10.4477, 10.797, 5.4367, 5.7123, 11.1709, 0.9913, 5.5263, 10.9415, 5.554, 16.8397, 10.7532, 5.512, 6.5324, 5.9075, 5.3425, 5.363, 5.4958, 5.7945, 5.2226, 5.4944, 5.5354, 6.0058, 16.3007, 16.3956, 5.471, 5.5296, 11.1392, 6.0043, 10.9251, 16.8355, 5.7836, 5.9896, 11.3325, 5.5506, 5.4164, 5.343, 5.2402, 5.8315, 5.4088, 5.4774, 10.586, 11.2708, 5.1746, 5.5676, 16.7038, 10.8442, 6.1774, 6.1047, 5.7106, 22.2719, 5.5711, 15.6949, 6.1703, 5.4562, 5.3248, 10.8693, 10.8171, 5.8053, 10.7718, 11.7958, 11.3254, 6.3798, 10.8058, 10.9167, 5.3573, 5.4514, 6.0849, 10.5743, 6.3994, 5.61, 11.1725, 11.0815, 0.6878, 5.5354, 11.0078, 5.6767, 11.445, 10.412, 6.8383, 5.7201, 5.7302, 5.5211, 5.517, 6.0203, 10.9112, 5.651, 5.7917, 0.8624, 16.9063, 5.2598, 11.1065, 10.6254, 10.8132, 16.3822, 10.4005, 11.1518, 6.0792, 5.4185, 12.079, 0.9983, 5.6715, 5.8172, 10.3259, 5.4917, 5.3911, 5.8439, 10.5557, 5.8355, 6.0949, 11.0986, 10.8585, 11.1477, 5.4708, 5.5215, 0.9229, 10.9096, 7.0319, 6.1436, 10.5271, 22.0187, 6.18, 5.8467, 10.4525, 5.604, 5.2328, 5.6317, 11.9276, 15.8184, 5.7857, 10.6115, 5.6286, 5.6748, 5.9276, 10.6149, 5.3606, 5.8775, 0.7706, 5.4879, 10.9231, 5.5258, 5.8053, 5.7642, 5.7397, 12.3734, 8.0087], '192.168.122.115': [5.2693, 5.3256, 5.671, 0.7539, 5.5201, 5.4109, 6.4662, 11.3938, 11.1294, 10.8361, 5.9118, 5.5103, 11.0726, 10.8619, 0.6058, 16.5758, 10.8602, 11.2116, 5.6007, 11.4713, 6.0289, 11.2903, 11.0736, 11.0047, 5.698, 11.2414, 13.1881, 5.2428, 5.3878, 5.2552, 5.9054, 5.8544, 18.0724, 5.95, 5.4457, 10.9296, 11.2996, 5.3232, 10.8838, 10.9756, 5.3959, 5.5382, 6.9592, 5.4469, 5.4464, 1.0657, 5.2745, 5.8546, 5.99, 0.4413, 5.3682, 5.321, 5.7993, 10.854, 5.3384, 6.3641, 5.4967, 6.0575, 11.5016, 6.5148, 10.8438, 11.4102, 5.9078, 6.0644, 11.8945, 5.1987, 10.7219, 5.347, 5.3883, 0.7904, 5.8196, 5.3866, 0.6025, 5.4517, 5.4746, 10.8628, 5.6512, 10.6575, 5.6508, 5.4626, 5.9712, 10.9622, 11.1027, 10.6494, 5.3971, 5.5156, 11.0066, 5.7323, 10.9146, 11.0343, 5.7189, 10.8123, 10.4926, 10.8781, 5.6114, 11.2195, 5.3425, 10.8378, 5.7917, 10.6773, 0.6814, 5.388, 5.8136, 5.2741, 16.8638, 5.3606, 28.2779, 5.4183, 5.2345, 13.8595, 5.3618, 5.6911, 5.3439, 11.1752, 10.781, 5.4178, 6.4445, 11.637, 0.927, 11.03, 5.5985, 11.1525, 6.2268, 6.1388, 5.7771, 11.5523, 5.6233, 5.6069, 5.9953, 5.9946, 6.6085, 5.3399, 12.1195, 11.3423, 5.5249, 10.8433, 5.5144, 5.3241, 10.3025, 6.1707, 6.043, 8.5621, 16.9826, 5.2655, 5.8908, 5.3215, 6.0785, 5.5301, 5.5299, 5.316, 5.9969, 5.8041, 6.1069, 5.3771, 11.09, 10.879, 5.8572, 10.9591, 16.4304, 11.903, 13.5646, 5.996, 10.7727, 5.372, 5.461, 6.2377, 10.5963, 11.1072, 5.8639, 5.3864, 5.2695, 10.6924, 10.9692, 10.8209, 16.6619, 16.3543, 5.3637, 5.4018, 5.5025, 5.4426, 5.4896, 5.7933, 5.2884, 5.3136, 27.7646, 1.0407, 5.7311, 11.5776, 5.4801, 6.5017, 11.5535, 10.4392, 5.6891, 5.6901, 16.5071, 5.5783, 11.0984, 5.9106, 10.937, 11.0464, 1.1542, 5.954, 5.2161, 5.4438, 21.8978, 11.3447, 5.5983, 6.1967, 21.5709, 5.8861, 5.4317, 16.6717, 1.0476, 5.9624, 5.2788, 11.529, 5.2588, 10.8948, 6.0093, 11.004, 12.929, 0.7043, 11.2584, 11.0364, 34.307, 5.4595, 5.6489, 5.7108, 11.2119, 5.5087, 11.1492, 5.6756, 5.7824, 5.3725, 5.7609, 5.3728, 5.4111, 5.4564, 11.1833, 10.7505, 5.5251, 10.53, 10.8111, 5.9752, 6.2439, 5.7845, 6.1326, 10.7529, 5.2059, 1.0462, 11.4086, 5.9841, 5.4433, 5.5203, 5.8582, 5.7335, 11.5542, 6.3939], '192.168.122.114': [5.3151, 5.2912, 5.2073, 0.7594, 5.5549, 10.8476, 5.4464, 11.5678, 5.9075, 16.4778, 5.4173, 10.6792, 5.3072, 5.3909, 0.7598, 5.5783, 5.378, 11.6608, 5.6796, 11.4658, 5.4793, 5.4748, 16.9499, 10.7398, 6.166, 5.7645, 5.971, 5.5737, 5.8208, 27.1983, 5.3422, 5.9495, 5.6405, 5.7099, 5.8343, 17.343, 10.9708, 5.4176, 10.8254, 10.8829, 5.4269, 17.354, 10.7739, 6.2144, 5.8825, 0.8314, 10.9041, 5.5375, 10.9253, 5.5573, 5.5912, 10.5052, 5.7402, 16.6533, 5.2903, 10.6566, 6.495, 10.941, 11.1699, 9.3474, 5.6593, 11.1334, 5.4646, 5.6405, 5.8782, 5.2018, 5.7735, 5.4414, 5.4126, 0.8411, 6.1178, 11.2982, 0.5519, 5.4603, 5.4643, 5.6963, 5.352, 10.6912, 5.4226, 6.2568, 17.3893, 11.0443, 10.973, 11.1783, 10.8449, 22.033, 10.6859, 6.5601, 5.6479, 5.4026, 10.7617, 5.7249, 10.421, 5.3382, 11.3666, 5.9593, 5.2168, 5.3771, 5.2707, 6.3517, 0.6711, 11.4636, 16.1655, 5.6057, 5.3911, 10.9031, 24.4596, 6.2866, 11.374, 11.5814, 5.3144, 6.7668, 10.8521, 6.2466, 5.3368, 11.4799, 5.6915, 11.0307, 0.6585, 10.926, 5.6188, 5.5144, 16.0239, 6.3603, 12.9664, 11.0917, 5.3673, 11.5049, 11.6038, 5.4665, 21.4829, 10.8349, 5.465, 5.5649, 5.4336, 10.8955, 6.021, 21.6415, 5.8351, 11.7445, 10.823, 5.7552, 5.3627, 11.0214, 5.7724, 10.6175, 21.6305, 5.4653, 10.932, 11.0013, 10.447, 11.4892, 5.6069, 5.1811, 11.2286, 5.5432, 22.3949, 10.8488, 6.0194, 5.9941, 5.9519, 5.5835, 15.3525, 5.4202, 5.2834, 5.63, 5.2474, 11.1165, 5.985, 5.4877, 5.6279, 10.6406, 5.7938, 10.8955, 6.4797, 5.2428, 11.1825, 5.4054, 5.5325, 11.0881, 10.8154, 6.5007, 5.7504, 6.0468, 5.2807, 0.6051, 6.0916, 5.5838, 5.9366, 6.1235, 21.7957, 10.8752, 5.6036, 5.414, 11.8847, 5.5478, 5.7564, 10.8936, 5.7356, 6.5196, 0.9201, 5.3976, 5.964, 10.9658, 11.1518, 11.3759, 10.5152, 5.8386, 10.5, 16.34, 5.3494, 5.4102, 0.7851, 10.778, 5.4996, 6.2792, 10.8075, 5.4672, 6.1209, 5.7101, 5.8212, 7.0138, 5.511, 5.4967, 10.9584, 16.1984, 6.2413, 10.6363, 5.9407, 5.6446, 5.7461, 6.2137, 11.5819, 5.5809, 5.5332, 10.8535, 5.9741, 5.5757, 6.3841, 5.4569, 6.3365, 29.7973, 11.4572, 6.3174, 10.5343, 10.8836, 5.5726, 10.704, 5.3132, 0.865, 5.3999, 5.6095, 5.4371, 6.7728, 16.5946, 11.2851, 11.2827, 11.2355], '192.168.122.113': [5.7201, 5.3546, 5.3508, 1.0886, 5.2645, 10.6683, 5.8887, 5.6689, 5.6655, 10.7203, 5.4011, 5.3301, 11.2164, 10.7102, 6.6142, 5.6474, 16.3336, 5.7971, 5.6489, 5.2981, 11.0204, 5.6727, 5.8353, 5.5161, 5.2876, 5.3046, 6.0816, 5.78, 5.9907, 12.2178, 5.5752, 5.5957, 11.3418, 5.3542, 6.3128, 21.7912, 5.5046, 5.2326, 5.3818, 5.4615, 5.4188, 5.6729, 5.4255, 11.2317, 10.9208, 0.5941, 6.263, 16.5772, 5.4216, 10.684, 16.2518, 10.6544, 10.7667, 13.8841, 10.7226, 6.1271, 11.2901, 10.9916, 11.4009, 5.9006, 5.3439, 6.4633, 5.3694, 12.0089, 10.675, 10.4129, 11.1709, 5.343, 5.4281, 6.0656, 5.9602, 10.9367, 0.5381, 5.7797, 10.9196, 5.6863, 10.8182, 10.4923, 21.7757, 5.5006, 5.2361, 11.333, 5.2726, 5.7201, 5.4011, 5.6345, 16.428, 5.7912, 10.9217, 10.9179, 5.2264, 6.6836, 10.3812, 5.779, 5.9526, 22.2578, 5.5211, 6.1998, 6.048, 5.9519, 5.8112, 10.5865, 5.46, 5.4388, 5.3785, 10.8938, 16.0534, 10.7336, 5.285, 5.6691, 10.5863, 6.9573, 5.4665, 11.7483, 11.7762, 10.7958, 11.2035, 11.0903, 0.643, 5.7395, 11.0691, 11.1768, 10.4403, 10.932, 5.224, 5.3797, 10.6597, 16.5052, 5.6098, 5.5881, 5.2819, 10.8483, 6.5153, 25.5721, 5.3906, 10.9763, 5.4455, 10.9234, 5.7802, 5.3763, 5.3546, 5.336, 11.0214, 5.8193, 5.4584, 5.5249, 11.0016, 10.8273, 27.4563, 11.3325, 5.4841, 10.8857, 6.1007, 5.5022, 5.7659, 11.302, 5.707, 5.4152, 5.801, 5.5668, 5.7917, 5.2321, 6.1879, 5.5642, 6.0294, 16.8667, 11.2648, 5.383, 10.8783, 10.8545, 5.5387, 19.3026, 5.8322, 6.2578, 11.9882, 10.951, 10.7558, 5.4591, 5.5399, 6.4254, 5.2965, 5.827, 10.9599, 16.1667, 5.3134, 0.7067, 10.9076, 11.3685, 5.5783, 5.7924, 10.4599, 16.2356, 6.3369, 5.2259, 5.2025, 5.5609, 5.6226, 5.4202, 6.4733, 5.9774, 10.6091, 10.9434, 5.4197, 5.2786, 10.7286, 5.5954, 10.9766, 10.7281, 5.4455, 5.7361, 48.0845, 11.2724, 0.6244, 5.8851, 10.9065, 6.3684, 5.415, 5.3992, 5.7497, 5.2481, 6.0346, 11.6003, 6.8471, 5.6453, 5.6019, 6.6576, 5.6489, 5.5718, 5.4548, 10.9885, 5.1877, 17.1158, 6.3229, 5.3532, 15.8548, 5.6098, 5.5976, 0.7126, 7.7901, 11.2946, 5.543, 5.2698, 6.0618, 15.9957, 5.5604, 5.4624, 11.3981, 10.6728, 5.5926, 0.7031, 10.8662, 5.2397, 5.4798, 6.2571, 0.8247, 5.4176, 10.9358, 11.0936], '192.168.122.112': [5.6481, 6.2492, 10.499, 1.3008, 5.3587, 10.8161, 6.4039, 0.6554, 10.056, 5.3525, 5.4796, 9.5713, 5.3473, 5.446, 5.2226, 11.2367, 5.615, 5.4817, 5.6827, 10.8397, 11.1206, 5.6341, 18.0471, 11.0486, 27.3361, 5.3396, 5.4891, 6.0327, 16.3276, 11.1442, 5.1911, 11.0714, 10.8011, 5.4309, 5.2617, 11.0116, 10.9842, 5.785, 5.6303, 5.5912, 5.8837, 21.8129, 5.4674, 5.4607, 10.879, 0.7682, 5.8589, 5.3298, 16.4571, 5.8703, 5.3999, 10.7875, 5.3811, 10.8056, 5.6849, 11.2143, 5.5001, 5.6081, 6.5286, 5.3208, 10.7679, 10.8888, 5.4789, 5.6145, 5.3294, 10.3023, 16.4676, 10.74, 11.2553, 16.7859, 5.4939, 11.1814, 0.7432, 10.875, 10.6745, 5.2178, 5.702, 6.0215, 5.3158, 11.1845, 6.1569, 10.9544, 5.6636, 6.1657, 5.4212, 10.8321, 16.017, 5.276, 5.4724, 5.4049, 10.7079, 5.6515, 10.8676, 10.3476, 27.8502, 5.6727, 10.849, 5.723, 0.6135, 6.1522, 5.5027, 5.3561, 5.5144, 5.2495, 5.398, 5.4786, 6.0575, 5.9257, 5.9574, 5.8217, 12.0199, 5.3537, 5.4235, 5.5673, 21.6322, 5.4867, 5.5044, 5.9278, 0.7637, 5.4834, 5.6806, 5.9149, 10.5255, 6.3086, 21.7168, 10.5164, 5.5053, 10.91, 5.7051, 10.3831, 5.2624, 10.9205, 16.2673, 5.6434, 6.1033, 10.9425, 5.6968, 11.1754, 5.8427, 6.7506, 10.879, 10.5689, 5.311, 5.7878, 21.7652, 5.7001, 6.8438, 5.4448, 10.8581, 10.7489, 5.6069, 10.8082, 11.091, 10.9916, 6.6652, 27.1001, 11.4069, 6.4356, 5.475, 5.4274, 5.444, 16.0761, 6.0475, 5.5904, 5.707, 11.2689, 16.0418, 5.3077, 5.4269, 6.053, 5.5728, 5.3754, 11.9078, 5.2564, 1.009, 6.047, 10.9687, 6.8517, 5.4679, 6.1026, 10.4585, 5.5122, 10.4849, 5.7263, 5.4884, 0.6747, 5.7886, 16.6011, 14.1411, 5.6622, 10.7257, 5.2178, 5.6283, 10.6235, 5.331, 5.6868, 5.682, 5.4171, 10.906, 21.462, 0.7079, 11.3447, 5.3556, 5.5151, 10.6771, 5.2311, 10.581, 5.4197, 5.5828, 27.0448, 6.3298, 5.651, 0.5867, 11.4751, 11.6873, 5.291, 10.8697, 10.5946, 5.7473, 5.3089, 5.7254, 21.5836, 5.389, 5.3713, 5.6162, 16.3319, 6.5606, 5.439, 5.4615, 5.2469, 10.463, 5.3692, 15.878, 10.448, 5.4314, 5.4522, 11.0524, 0.4961, 5.9302, 10.7079, 10.4899, 10.5011, 6.3293, 5.8892, 11.9443, 10.9718, 5.6484, 5.79, 5.5132, 0.8354, 32.1815, 5.4803, 5.5993, 5.4669, 11.2259, 11.1561, 10.8767, 5.9085], '192.168.122.111': [5.8558, 5.5561, 5.2116, 0.6452, 5.4474, 10.9515, 5.7352, 0.5703, 17.9102, 5.6572, 5.3613, 6.3508, 6.0792, 16.4437, 5.7573, 5.2655, 11.8327, 5.357, 5.6551, 11.457, 11.0795, 5.5931, 24.3971, 5.4224, 5.383, 9.3052, 5.9376, 7.1592, 5.4293, 6.2439, 5.6384, 5.5845, 5.8784, 10.8082, 5.9433, 5.2636, 10.8206, 5.332, 22.3286, 10.787, 5.2683, 5.4276, 5.403, 5.46, 5.7335, 0.5479, 5.6825, 10.9694, 5.4405, 11.5681, 5.4262, 11.0462, 26.9573, 5.3523, 10.4594, 10.623, 5.4169, 5.5094, 5.7225, 10.6192, 5.2934, 5.2829, 15.7619, 5.2695, 5.4345, 5.3368, 5.3661, 5.8925, 5.6372, 0.9236, 12.4974, 5.2791, 0.4926, 11.4698, 5.2879, 5.7151, 5.4727, 5.3203, 5.6686, 10.9503, 5.4164, 10.9026, 8.096, 6.501, 6.3913, 5.2178, 10.3295, 11.5147, 10.9785, 5.4328, 5.312, 5.8098, 5.3904, 5.6005, 6.1412, 10.9956, 5.923, 5.2733, 5.8913, 10.5574, 5.4662, 10.6947, 5.3473, 10.5798, 5.2681, 10.7987, 5.6329, 5.5687, 6.1777, 11.3938, 5.2643, 16.4814, 6.5451, 11.9801, 10.9353, 27.4227, 17.0324, 5.2271, 0.9251, 5.527, 5.2903, 12.1436, 10.4384, 6.397, 5.5439, 11.2896, 6.3088, 5.3372, 5.7023, 5.4486, 5.7623, 10.798, 5.4221, 5.3465, 16.4859, 11.9269, 6.5989, 5.939, 6.2752, 16.7964, 11.178, 5.3141, 44.0347, 26.7105, 16.1753, 5.9495, 10.7749, 10.8864, 5.4188, 5.8744, 5.8084, 5.6429, 6.1126, 5.3432, 5.7514, 5.837, 5.6646, 5.6348, 6.5279, 5.4107, 5.3439, 5.2655, 5.5215, 6.5169, 11.5561, 5.3921, 5.5921, 11.8272, 5.3267, 6.2244, 21.0905, 10.7136, 16.9685, 5.5485, 1.6887, 16.6304, 5.4731, 6.9683, 5.4965, 6.0554, 19.1669, 5.9469, 5.4073, 10.5243, 5.9805, 5.5702, 5.795, 22.2852, 8.9333, 5.7054, 10.4108, 6.2664, 11.066, 10.6201, 5.2755, 5.4193, 10.9465, 5.5327, 5.5592, 5.7378, 0.7305, 10.5128, 5.955, 5.4576, 5.707, 10.7582, 10.5453, 10.7174, 10.8874, 10.8693, 5.3861, 11.2174, 0.7024, 10.6809, 5.8043, 5.5864, 5.9862, 10.8573, 10.4785, 5.2853, 5.3616, 6.5336, 5.6829, 10.8314, 26.7529, 10.8638, 16.7325, 5.574, 22.316, 6.0129, 11.0035, 5.435, 5.9383, 5.2752, 11.2731, 10.8924, 5.8322, 0.5455, 11.251, 10.9391, 6.1448, 5.3098, 5.7492, 5.8646, 5.3363, 5.893, 5.7905, 5.7786, 16.2387, 0.9139, 5.3391, 5.501, 5.3358, 5.4693, 10.4067, 0.5519, 6.1939, 5.9707], '192.168.122.110': [5.4092, 5.827, 5.6579, 0.7479, 5.5721, 5.7516, 5.3988, 0.6657, 5.9195, 5.3389, 5.3735, 5.8217, 10.7152, 5.3875, 5.2984, 10.957, 5.4619, 5.4786, 5.6207, 5.4164, 21.6162, 5.5416, 11.1911, 10.9546, 11.2357, 6.5899, 6.1104, 5.676, 27.3697, 6.3543, 5.619, 5.4007, 5.3811, 16.3231, 11.0655, 5.3718, 10.9024, 5.7507, 5.8489, 5.3966, 5.4836, 5.486, 11.4126, 10.9227, 5.3561, 0.8814, 10.9489, 10.8643, 5.4927, 10.9093, 10.7763, 5.6334, 5.3473, 10.721, 5.1844, 5.9068, 16.2094, 5.9192, 11.3564, 5.3377, 10.7751, 11.368, 10.9091, 6.6199, 5.4266, 5.2729, 5.5296, 5.3921, 5.785, 5.5213, 5.8496, 5.3513, 0.7768, 6.4666, 5.3921, 5.5029, 21.4705, 10.8073, 5.9123, 5.3189, 6.4068, 16.7916, 5.7111, 5.7409, 7.324, 5.6376, 5.6705, 10.8829, 10.8294, 5.6663, 5.3945, 1.6327, 5.7378, 10.7858, 6.2704, 5.4262, 5.3654, 5.5015, 10.9336, 5.5232, 5.4524, 10.6471, 16.109, 5.2166, 5.3191, 5.2929, 10.6511, 11.7126, 6.0699, 5.6186, 5.8377, 5.8489, 5.7378, 11.1687, 5.4276, 16.9258, 6.0718, 11.5216, 6.6733, 5.6477, 11.0605, 5.585, 5.6965, 5.5754, 10.3896, 5.513, 10.5758, 5.5254, 5.693, 0.7746, 10.4373, 6.4347, 5.4488, 5.6975, 10.952, 5.331, 5.6791, 5.5811, 5.6407, 6.0756, 5.2722, 5.3024, 5.8258, 6.0334, 10.9711, 5.4343, 5.3709, 6.0184, 10.9138, 5.857, 5.477, 23.6154, 11.1318, 7.2563, 6.6438, 6.269, 16.0351, 11.096, 10.4587, 10.9367, 5.6026, 5.2626, 11.1561, 5.8942, 5.2702, 5.5022, 11.471, 6.4766, 10.7594, 6.0732, 10.8888, 10.7138, 5.5461, 5.795, 1.1194, 10.8354, 5.7416, 7.9205, 5.4028, 5.5048, 11.0672, 5.2431, 10.8845, 6.3062, 5.7764, 5.9714, 10.7949, 5.7127, 5.441, 5.6598, 5.6705, 11.4098, 5.8672, 5.4233, 11.2057, 5.6415, 11.1911, 6.0213, 5.7218, 5.8279, 0.7465, 10.5605, 11.7002, 17.1711, 11.1492, 16.6333, 5.9144, 5.2495, 10.8027, 5.836, 5.7113, 5.4207, 6.1719, 5.4612, 5.6927, 5.5792, 16.0811, 5.4541, 11.0543, 10.7427, 5.4469, 5.3904, 5.949, 5.3656, 5.3034, 10.7992, 10.9761, 16.5839, 11.0471, 5.6589, 6.5622, 6.2423, 6.0768, 10.566, 5.8191, 10.9663, 10.9375, 0.8323, 5.6982, 16.8164, 6.0861, 16.8803, 5.827, 11.6854, 15.7967, 6.0148, 5.4636, 6.3913, 5.6694, 16.8345, 0.7224, 5.4395, 6.46, 5.4407, 11.2622, 1.0185, 5.4307, 6.5429]}
cpu9_2_10 = [43.3, 24.4, 1.1, 1.2, 0.8, 0.1, 0.1, 0.8, 0.2, 0.1, 1.2, 0.7, 0.4, 0.8, 0.1, 0.5, 0.4, 0.4, 0.4, 0.6, 1.4, 1.3, 0.4, 0.4, 0.1, 0.0, 2.5, 2.9, 0.3, 0.5, 0.5, 0.1, 0.3, 0.3, 0.1, 0.2, 0.8, 1.1, 0.4, 0.1, 0.2, 0.3, 0.6, 0.4, 0.3, 0.2, 0.2, 1.4, 0.3, 1.2, 1.5, 2.2, 3.8, 4.7, 1.0, 0.5, 0.0, 0.4, 0.1, 0.1, 0.2, 0.2, 0.7, 2.5, 4.1, 1.2, 0.5, 1.3, 0.3, 1.7, 1.2, 0.5, 0.9, 0.5, 0.1, 1.0, 0.3, 0.4, 0.1, 0.2, 0.6, 0.4, 0.9, 1.3, 0.5, 0.0, 0.3, 1.1, 0.5, 1.4, 1.5, 0.1, 0.4, 0.4, 0.6, 0.4, 1.2, 1.4, 0.6, 0.8, 1.0, 0.7, 0.7, 0.3, 3.9, 1.5, 2.2, 1.2, 1.0, 0.2, 1.0, 1.4, 0.2, 0.8, 0.9, 0.6, 0.5, 0.2, 0.7, 1.0, 0.7, 0.0, 0.4, 0.5, 0.1, 0.4, 0.4, 0.3, 0.5, 0.2, 0.2, 0.7, 0.4, 0.6, 0.0, 0.0, 3.4, 3.4, 0.2, 0.0, 1.6, 1.3, 0.2, 0.2, 0.1, 0.3, 0.4, 0.5, 0.8, 0.1, 1.0, 0.9, 0.6, 0.4, 0.5, 0.7, 0.8, 1.1, 1.0, 0.1, 0.2, 1.0, 2.1, 3.6, 2.4, 0.1, 1.4, 0.2, 0.3, 0.2, 1.2, 0.9, 0.3, 0.3, 0.7, 0.8, 1.2, 0.1, 0.5, 0.0, 0.6, 0.6, 0.2, 0.6, 1.0, 0.7, 0.9, 0.6, 0.6, 0.6, 0.3, 1.4, 1.8, 0.7, 2.4, 3.2, 1.0, 0.3, 1.0, 0.6, 1.0, 1.4, 0.9, 0.2, 0.4, 0.4, 0.5, 0.1, 1.1, 1.6, 2.9, 1.5, 0.7, 0.1, 0.5, 0.3, 0.4, 1.1, 1.7, 1.1, 0.4, 1.2, 0.3, 0.7, 0.4, 0.5, 1.1, 1.4, 0.1, 0.7, 0.6, 0.8, 0.3, 0.8, 0.0, 0.7, 1.0, 1.0, 0.1, 0.2, 0.0, 1.2, 0.2, 0.3, 1.2, 1.0, 0.6, 0.6, 0.3, 0.1, 0.3, 5.0, 4.9, 0.1, 0.5, 1.3, 0.9, 0.2]
off_mec9_2_10 = 182
off_cloud9_2_10 = 277
inward_mec9_2_10 = 190
loc9_2_10 = 467
deadlock9_2_10 = [9]
memory9_2_10 = [0.2181, 0.219, 0.2191, 0.2187, 0.2188, 0.2188, 0.2189, 0.219, 0.2193, 0.2195, 0.2195, 0.2196, 0.2196, 0.2197, 0.2197, 0.2198, 0.2198, 0.2199, 0.2199, 0.2199, 0.2202, 0.2202, 0.2202, 0.2206, 0.2207, 0.2207, 0.2207, 0.221, 0.221, 0.221, 0.2211, 0.2211, 0.2212, 0.2212, 0.2215, 0.2216, 0.2216, 0.2218, 0.2218, 0.2221, 0.2222, 0.2222, 0.2222, 0.2222, 0.2222, 0.2223, 0.2223, 0.2223, 0.2223, 0.2223, 0.2224, 0.2224, 0.2224, 0.2224, 0.2225, 0.2225, 0.2225, 0.2225, 0.2226, 0.2226, 0.2228, 0.2228, 0.2228, 0.2228, 0.2228, 0.2229, 0.2229, 0.2229, 0.2229, 0.2229, 0.223, 0.223, 0.223, 0.223, 0.2232, 0.2232, 0.2233, 0.2234, 0.2234, 0.2235, 0.2235, 0.2235, 0.2235, 0.2237, 0.2238, 0.2239, 0.224, 0.224, 0.224, 0.2241, 0.2241, 0.2242, 0.2243, 0.2243, 0.2243, 0.2244, 0.2244, 0.2245, 0.2245, 0.2248, 0.2248, 0.2248, 0.2249, 0.2249, 0.225, 0.225, 0.225, 0.225, 0.2251, 0.2251, 0.2251, 0.2251, 0.2251, 0.2252, 0.2254, 0.2254, 0.2255, 0.2256, 0.2256, 0.2257, 0.2257, 0.2258, 0.2258, 0.2258, 0.2259, 0.2259, 0.2259, 0.2259, 0.2259, 0.226, 0.226, 0.2261, 0.2262, 0.2263, 0.2264, 0.2265, 0.2265, 0.2266, 0.2266, 0.2266, 0.2267, 0.2267, 0.2268, 0.2268, 0.2268, 0.2268, 0.2268, 0.2268, 0.2269, 0.2269, 0.227, 0.227, 0.227, 0.2271, 0.2271, 0.2271, 0.2277, 0.2277, 0.2277, 0.2277, 0.2278, 0.2278, 0.2278, 0.2278, 0.2279, 0.228, 0.228, 0.228, 0.228, 0.228, 0.228, 0.228, 0.2282, 0.2284, 0.2284, 0.2284, 0.2285, 0.2285, 0.2293, 0.2293, 0.2293, 0.2294, 0.2294, 0.2294, 0.2296, 0.2296, 0.2296, 0.2296, 0.2297, 0.2297, 0.2297, 0.2297, 0.2297, 0.2298, 0.2298, 0.2298, 0.2299, 0.2299, 0.2299, 0.2299, 0.23, 0.2301, 0.2301, 0.2301, 0.2302, 0.2302, 0.2303, 0.2303, 0.2303, 0.2303, 0.2304, 0.2304, 0.2305, 0.2305, 0.2305, 0.2305, 0.2306, 0.2306, 0.2306, 0.2307, 0.2307, 0.2308, 0.2308, 0.2308, 0.2309, 0.2309, 0.231, 0.231, 0.231, 0.231, 0.231, 0.2311, 0.2311, 0.2312, 0.2312, 0.2313, 0.2313, 0.2313, 0.2313, 0.2313, 0.2313, 0.2313, 0.2313, 0.2314, 0.2314, 0.2315, 0.2315, 0.2315, 0.2316, 0.2316, 0.2317, 0.2319, 0.2322, 0.2322, 0.2322, 0.2324, 0.2326, 0.2327]
task_received9_2_10 = 926
sent_t9_2_10 = {'124': 274, '126': 302, '125': 350}
cooperate9_2_10 = {'mec': 182, 'cloud': 277}
task_record9_2_10 = {}
outward_mec9_2_10 = 206
offload_check9_2_10 = [172, 32]
timed_out_tasks9_2_10 = 0 | wt9_2_10 = {'192.168.122.110': [5.7108, 8.5399, 6.3325, 4.9405, 4.3064, 5.4196, 4.7852, 4.852, 5.5112, 6.0472, 5.987, 5.9324, 5.9693, 5.9885, 5.9521, 5.9517, 5.9214, 5.8912, 6.1639, 6.1483, 6.1269, 6.1008, 6.0684, 6.0465, 6.0183, 5.9975, 6.094, 6.0673, 6.0838, 6.2445, 6.2204, 6.1954, 6.1722, 6.1532, 6.1334, 6.1211, 6.1237, 6.1116, 6.089, 6.0722, 6.1883, 6.1715, 6.1594, 6.2701, 6.2608, 6.2431, 6.2471, 6.3542, 6.3474, 6.3423, 6.4234, 6.5076, 6.4964, 6.4836, 6.4668, 6.4684, 6.5545, 6.6879, 6.6635, 6.7345, 6.7334, 6.8101, 6.8736, 6.8514, 6.9151, 6.8898, 7.0235, 7.0072, 7.0612, 7.0408, 7.024, 7.1535, 7.207, 7.1855, 7.1631, 7.1386, 7.1175, 7.1025, 7.0921, 7.076, 7.0667, 7.0588, 7.0598, 7.1343, 7.2554, 7.238, 7.2262, 7.2233, 7.2029, 7.1868, 7.1653, 7.1531, 7.1412, 7.1319, 7.1164, 7.1124, 7.0971, 7.1373, 7.1258, 7.1092, 7.0918, 7.0811, 7.0797, 7.153, 7.1363, 7.1418, 7.131, 7.1157, 7.0995, 7.0877, 7.0733, 7.0578, 7.1001, 7.0886, 7.0744, 7.1076, 7.1431, 7.1283, 7.1208, 7.1518, 7.181, 7.1692, 7.1575, 7.2381, 7.2246, 7.2552, 7.3301, 7.3176, 7.308, 7.2967, 7.3259, 7.3114, 7.3161, 7.3003, 7.2891, 7.2828, 7.2713, 7.2995, 7.3269, 7.3127, 7.3377, 7.3315, 7.3881, 7.3784, 7.3641, 7.3503, 7.3376, 7.326, 7.3181, 7.3395, 7.3256, 7.3123, 7.3013, 7.2952, 7.2846, 7.2793, 7.3028, 7.2957, 7.2836, 7.2735, 7.2869, 7.2785, 7.269, 7.2312, 7.2189, 7.2098, 7.2061, 7.2274, 7.2491, 7.2392, 7.3586, 7.3542, 7.344, 7.3732, 7.3629, 7.3538, 7.3431, 7.336, 7.3275, 7.3466, 7.3407, 7.3326, 7.3212, 7.3204, 7.3107, 7.3319, 7.321, 7.311, 7.3122, 7.3297, 7.3213, 7.3406, 7.3589, 7.3524, 7.3455, 7.3401, 7.3633, 7.4128, 7.4055, 7.4011, 7.3916, 7.3913, 7.3812, 7.3983, 7.3989, 7.3893, 7.4161, 7.4678, 7.4581, 7.4535, 7.4558, 7.4252, 7.3932, 7.4092, 7.4035, 7.4209, 7.4113, 7.4022, 7.3926, 7.384, 7.3758, 7.3703, 7.3673, 7.3602, 7.3517, 7.3472, 7.3387, 7.33, 7.3452, 7.3381, 7.3324, 7.306, 7.3019, 7.3166, 7.3101, 7.3046, 7.3185, 7.3147, 7.3059, 7.2979, 7.2897, 7.2842, 7.2804, 7.2727, 7.287, 7.3022, 7.296, 7.3099, 7.3239, 7.3163, 7.3302, 7.3247, 7.3166, 7.33, 7.3217, 7.3143, 7.328, 7.3225, 7.3402, 7.3329, 7.3319, 7.3249, 7.3181, 7.3153, 7.2902, 7.3066, 7.3015, 7.2956, 7.2714, 7.3347, 7.3476, 7.3424, 7.3347, 7.3273, 7.3398, 7.3339, 7.3265, 7.3223, 7.3169, 7.3122, 7.3089, 7.3216, 7.3342, 7.3275, 7.328, 7.3605, 7.3569, 7.3526, 7.3461, 7.3715, 7.372, 7.3652, 7.3589, 7.3552, 7.3789, 7.3723, 7.3654, 7.3594, 7.3715, 7.3834, 7.3607, 7.3557, 7.3527, 7.3656, 7.3599, 7.3558, 7.3503, 7.3609, 7.3544, 7.3513, 7.3481, 7.3418, 7.335, 7.3286, 7.3243, 7.3346, 7.3448, 7.3568, 7.3506, 7.3485, 7.348, 7.3582, 7.3518, 7.3617, 7.3587, 7.3692, 7.3627, 7.372, 7.3657, 7.3617, 7.3574, 7.3687, 7.3629, 7.374, 7.3711, 7.3646, 7.3617, 7.3561, 7.3656, 7.3772, 7.3875, 7.3817, 7.3762, 7.3735, 7.3681, 7.365, 7.359, 7.3545, 7.3486, 7.3605, 7.3569, 7.3513, 7.3461, 7.3551, 7.3499, 7.3445, 7.3404, 7.3219, 7.3321, 7.3437, 7.3404, 7.335, 7.3294, 7.3239, 7.3339, 7.3433, 7.3524, 7.3755, 7.3697, 7.3652, 7.3598, 7.3573, 7.354, 7.3625, 7.3608, 7.3698, 7.3647, 7.3608, 7.356, 7.3511, 7.3477, 7.348, 7.3428, 7.3384, 7.4033, 7.3998, 7.4083, 7.4056, 7.4017, 7.4124, 7.4209, 7.4178, 7.4165, 7.4112, 7.4062, 7.4012, 7.3992, 7.3939, 7.4029, 7.4001, 7.3958, 7.4045, 7.4017, 7.3968, 7.3931, 7.3877, 7.3957, 7.3943, 7.3914, 7.4003, 7.4491, 7.4573, 7.4522, 7.4495, 7.4447, 7.4519, 7.4467, 7.4426, 7.4374, 7.4352, 7.4307, 7.4167, 7.4135, 7.3978, 7.418, 7.4143, 7.4231, 7.4359, 7.4449, 7.4455, 7.4301, 7.4387, 7.434, 7.4326, 7.4283, 7.4244, 7.4404, 7.4259, 7.4247, 7.4206, 7.4315, 7.4288, 7.4361, 7.448, 7.4445, 7.4485, 7.4439, 7.44, 7.436, 7.4315, 7.4267, 7.4225, 7.4181, 7.4137, 7.4093, 7.4054, 7.4011, 7.4085, 7.4042, 7.3996, 7.3954, 7.3914, 7.3914, 7.3889, 7.3958, 7.3914, 7.387, 7.3826, 7.3788, 7.3871, 7.373, 7.3701, 7.3584, 7.3578, 7.3907, 7.3875, 7.383, 7.3807, 7.3774, 7.3739, 7.3697, 7.3658, 7.362, 7.3682, 7.365, 7.3609, 7.3674, 7.3636, 7.3597, 7.3562, 7.353, 7.3497, 7.3459, 7.3436, 7.3419, 7.3383, 7.3363, 7.3339, 7.3316, 7.3293, 7.3168, 7.3135, 7.3112, 7.3289, 7.3351, 7.3431, 7.3501, 7.3583, 7.3544, 7.3528, 7.36, 7.3674, 7.3634, 7.3595, 7.3663, 7.3732, 7.3698, 7.3664, 7.3749, 7.3829, 7.3797, 7.3783, 7.4409, 7.4989, 7.525, 7.532, 7.5283, 7.5351, 7.5321, 7.5287, 7.5247, 7.5219, 7.5394, 7.5371, 7.5332, 7.5209, 7.517, 7.5131, 7.5095, 7.5156, 7.512, 7.5082, 7.5042, 7.5003, 7.5071, 7.5036, 7.4996, 7.4961, 7.502, 7.4991, 7.487, 7.493, 7.4994, 7.5001, 7.5059, 7.5116, 7.5082, 7.506, 7.5129, 7.5106, 7.5074, 7.5041, 7.5025, 7.5003, 7.498, 7.4956, 7.5035, 7.501, 7.5078, 7.5044, 7.501, 7.4975, 7.4943, 7.5466, 7.5524, 7.5493, 7.5458, 7.5611, 7.5577, 7.555, 7.553, 7.559, 7.5559, 7.5526, 7.5592, 7.5558, 7.5535, 7.5514, 7.548, 7.5444, 7.5415, 7.5379, 7.5342, 7.532, 7.5287, 7.5253, 7.5225, 7.529, 7.527, 7.5325, 7.529, 7.5262, 7.5316, 7.5542, 7.5511, 7.5483, 7.6068, 7.6034, 7.6078, 7.6216, 7.6177, 7.6142, 7.6117, 7.608, 7.6058, 7.6037, 7.609, 7.6146, 7.6204, 7.6184, 7.6236, 7.6199, 7.625, 7.6216, 7.6185, 7.6167, 7.6131, 7.6103, 7.607, 7.6118, 7.6083, 7.6057, 7.6023, 7.5986, 7.5963, 7.594, 7.5919, 7.5897, 7.5864, 7.583, 7.5803, 7.5853, 7.5819, 7.5865, 7.5831, 7.5812, 7.5777, 7.5827, 7.5794, 7.5758, 7.5732, 7.57, 7.5744, 7.5788, 7.5832, 7.5812, 7.5876, 7.5842, 7.5888, 7.5933, 7.5979, 7.6028, 7.5996, 7.6046, 7.6094, 7.6064, 7.6045, 7.6053, 7.644, 7.6413, 7.6379, 7.6344, 7.6375, 7.6368, 7.6339, 7.6306, 7.6275, 7.6284, 7.6284, 7.6274, 7.6348, 7.6337, 7.6312, 7.6354, 7.6319, 7.6285, 7.626, 7.6247, 7.6212, 7.619, 7.6236, 7.6218, 7.6196, 7.6244, 7.6158, 7.6169, 7.6136, 7.624, 7.6364, 7.6333, 7.6315, 7.6362, 7.6331, 7.6319, 7.6286, 7.626, 7.6229, 7.6205, 7.6173, 7.6142, 7.6109, 7.6087, 7.6054, 7.603, 7.6017, 7.5985, 7.597, 7.6015, 7.5994, 7.6039, 7.6009, 7.598, 7.5982, 7.5951, 7.5922, 7.5893, 7.5862, 7.5833, 7.5804, 7.5773, 7.5747, 7.5718, 7.5704, 7.575, 7.5727, 7.5722, 7.5632, 7.5602, 7.5577, 7.5696, 7.5669, 7.5712, 7.5758, 7.573, 7.5778, 7.5816, 7.5854, 7.5936, 7.6007, 7.5993, 7.5973, 7.5944, 7.5852, 7.585, 7.582, 7.5895, 7.5868, 7.5839, 7.5816, 7.5788, 7.5761, 7.5744, 7.5718, 7.569, 7.5663, 7.5635, 7.5606, 7.5579, 7.5552, 7.5537, 7.5519, 7.549, 7.5464, 7.5507, 7.5551, 7.5524, 7.5572, 7.5611, 7.5596, 7.5569, 7.561, 7.558, 7.5623, 7.5596, 7.558, 7.5623, 7.5597, 7.5641, 7.5613, 7.5586, 7.556, 7.553, 7.5505, 7.5522, 7.5564, 7.5604, 7.5584, 7.5628, 7.5606, 7.5579, 7.5625, 7.554, 7.552, 7.5495, 7.547, 7.5449, 7.5494, 7.5467, 7.5452, 7.5377, 7.5354, 7.5395, 7.543, 7.547, 7.551, 7.5489, 7.5463, 7.5445, 7.5484, 7.5458, 7.5497, 7.547, 7.551, 7.5495, 7.547, 7.5445, 7.5427, 7.5405, 7.5378, 7.542, 7.5463, 7.5503, 7.5481, 7.5459, 7.5431, 7.5412, 7.5386, 7.5364, 7.5338, 7.5376, 7.5416, 7.5403, 7.5377, 7.5358, 7.5393, 7.5376, 7.5414, 7.539, 7.5376, 7.5357, 7.5331, 7.5306, 7.5346, 7.5372, 7.5358, 7.5332, 7.5372, 7.5394, 7.5433, 7.5407, 7.5384, 7.5369, 7.5352, 7.5333, 7.5371, 7.5357, 7.5332, 7.5309, 7.5346, 7.5335, 7.5326, 7.5365, 7.5344, 7.5382, 7.5356, 7.5337, 7.5375, 7.5351, 7.5327, 7.5387, 7.5374, 7.5349, 7.5326, 7.5364, 7.534, 7.5378, 7.5419, 7.5453, 7.5436, 7.5419, 7.5396, 7.5379, 7.5354, 7.5332, 7.5334, 7.5613, 7.5589, 7.5564, 7.5539, 7.5574, 7.5615, 7.5603, 7.5581, 7.5856, 7.5832, 7.5827, 7.5809, 7.5791, 7.5767, 7.5744, 7.5721, 7.5724, 7.5699, 7.5676, 7.5653, 7.5687, 7.5722, 7.5699, 7.5692, 7.5727, 7.571, 7.5688, 7.5664, 7.564, 7.5625, 7.5694, 7.5728, 7.5765, 7.5748, 7.5785, 7.5768, 7.5781, 7.5813, 7.5794, 7.5836, 7.5817, 7.5794, 7.5827, 7.5864, 7.584, 7.5824, 7.5802, 7.5786, 7.5772, 7.5754, 7.5795, 7.5826, 7.5815, 7.579, 7.5718, 7.5756, 7.5734, 7.5771, 7.5746, 7.5722, 7.5699, 7.5677, 7.5659, 7.5639, 7.5618, 7.5654, 7.5632, 7.561, 7.5589, 7.5566, 7.5601, 7.5582, 7.5566, 7.5542, 7.5529, 7.5516, 7.5494, 7.5475, 7.5457, 7.5436, 7.5472, 7.5505, 7.5484, 7.5423, 7.5472, 7.5462, 7.5394, 7.5377, 7.5385, 7.5422, 7.547, 7.5503, 7.548, 7.5463, 7.5462, 7.5439, 7.5423, 7.5406, 7.5345, 7.5329, 7.5308, 7.5286, 7.5273, 7.5306, 7.5361, 7.5347, 7.5404, 7.5393, 7.5376, 7.5356, 7.5363, 7.5395, 7.5426, 7.5411, 7.5391, 7.5375, 7.5364, 7.5344, 7.5323, 7.5356, 7.5386, 7.537, 7.5401, 7.5386, 7.566, 7.5638, 7.5724, 7.5807, 7.5785, 7.5719, 7.5709, 7.5703, 7.5792, 7.5983, 7.5964, 7.5946, 7.5941, 7.5937, 7.5924, 7.5903, 7.5887, 7.5985, 7.5977, 7.5962, 7.5948, 7.5936, 7.5914, 7.5894, 7.5926, 7.5906, 7.5942, 7.5924, 7.5906, 7.5897, 7.5889, 7.5868, 7.5855, 7.5884, 7.5863, 7.5844, 7.5829, 7.5859, 7.5888, 7.5878, 7.5857, 7.5887, 7.5872, 7.5851, 7.5881, 7.5859, 7.5841, 7.5824, 7.5812, 7.5843, 7.5829, 7.5809, 7.5935, 7.5918, 7.59, 7.5885, 7.5969, 7.596, 7.5989, 7.6069, 7.6052, 7.6033, 7.6059, 7.6045, 7.6059, 7.6038, 7.602, 7.601, 7.599, 7.5975, 7.596, 7.5947, 7.593, 7.5921, 7.5952, 7.5936, 7.5918, 7.5953, 7.5944, 7.5933, 7.5917, 7.591, 7.5898, 7.5878, 7.586, 7.5844, 7.5825, 7.5814, 7.5841, 7.5841, 7.5871, 7.5851, 7.5831, 7.5812, 7.5791, 7.582, 7.5816, 7.5845, 7.587, 7.5813, 7.5799, 7.583, 7.581, 7.5836, 7.5816, 7.5861, 7.5845, 7.6161, 7.6152, 7.6133, 7.6113, 7.6094, 7.6077, 7.6069, 7.6058, 7.6038, 7.6066, 7.6046, 7.6032, 7.6017, 7.6003, 7.5988, 7.5975, 7.5958, 7.594, 7.5921, 7.595, 7.5931, 7.5912, 7.5907, 7.5893, 7.5875, 7.5856, 7.5838, 7.582, 7.58, 7.5782, 7.5765, 7.5747, 7.5727, 7.571, 7.569, 7.572, 7.5702, 7.5784, 7.5765, 7.5902, 7.5931, 7.5919, 7.5945, 7.5925, 7.5906, 7.5892, 7.5875, 7.5857, 7.5841, 7.587, 7.5852, 7.5838, 7.5825, 7.5855, 7.5835, 7.5818, 7.5801, 7.5785, 7.5809, 7.579, 7.5781, 7.5771, 7.5766, 7.5764, 7.5745, 7.5726, 7.5714, 7.5696, 7.5723, 7.5707, 7.5733, 7.5761, 7.5742, 7.5725, 7.5706, 7.5733, 7.5718, 7.5749, 7.5737, 7.5729, 7.5711, 7.5829, 7.5819, 7.5801, 7.5783, 7.5771, 7.5761, 7.5787, 7.5769, 7.5751, 7.5739, 7.5765, 7.5793, 7.5782, 7.5816, 7.5801, 7.5786, 7.5774, 7.5765, 7.5749, 7.5732, 7.5713, 7.5695, 7.5684, 7.567, 7.5699, 7.5728, 7.5753, 7.5742, 7.5725, 7.5736, 7.5718, 7.5709, 7.5658, 7.5641, 7.567, 7.5653, 7.564, 7.5623, 7.5653, 7.5677, 7.5704, 7.5695, 7.5685, 7.5676, 7.5705, 7.569, 7.5685, 7.5683, 7.5665, 7.5654, 7.5637, 7.5625, 7.5664, 7.5617, 7.5601, 7.5627, 7.561, 7.5593, 7.5595, 7.5582, 7.5574, 7.5687, 7.5671, 7.567, 7.5653, 7.5685, 7.5674, 7.5658, 7.564, 7.5622, 7.5612, 7.56, 7.559, 7.5539, 7.5532, 7.5533, 7.5523, 7.5546, 7.5533, 7.5517, 7.5505, 7.5531, 7.5561, 7.5544, 7.553, 7.5513, 7.5497, 7.5491, 7.5529, 7.5518, 7.5509, 7.5494, 7.5521, 7.5547, 7.5538, 7.5527, 7.551, 7.5568, 7.5559, 7.5587, 7.5573, 7.5564, 7.5592, 7.5575, 7.5598, 7.558, 7.5564, 7.5548, 7.5532, 7.5558, 7.5544, 7.5528, 7.5512, 7.5496, 7.5445, 7.5429, 7.5466, 7.5452, 7.5476, 7.5466, 7.5497, 7.5448, 7.5435, 7.5418, 7.5443, 7.5431, 7.5416, 7.5444, 7.5428, 7.5413, 7.5397, 7.5381, 7.5364, 7.5387, 7.537, 7.5354, 7.5339, 7.5363, 7.5347, 7.5371, 7.5362, 7.5347, 7.5369, 7.5366, 7.5352, 7.5342, 7.5333, 7.5356, 7.5345, 7.5337, 7.5328, 7.5352, 7.5376, 7.5359, 7.5346, 7.533, 7.5321, 7.5304, 7.5289, 7.5273, 7.5262, 7.5253, 7.5252, 7.5276, 7.5267, 7.5251, 7.5235, 7.5259, 7.5243, 7.5227, 7.5215, 7.5204, 7.5225, 7.5209, 7.5205, 7.5191, 7.515, 7.5141, 7.5094, 7.5119, 7.5114, 7.51, 7.5084, 7.5085, 7.5073, 7.5058, 7.5042, 7.5027, 7.5011, 7.4996, 7.4998, 7.4997, 7.5019, 7.5005, 7.4996, 7.5, 7.5022, 7.5014, 7.5, 7.4989, 7.5011, 7.5, 7.4985, 7.4973, 7.4962, 7.4951, 7.4937, 7.4963, 7.4987, 7.4972, 7.4996, 7.4987, 7.5012, 7.5036, 7.5098, 7.5092, 7.5077, 7.5029, 7.5018, 7.5008, 7.4998, 7.5028, 7.5022, 7.5049, 7.5037, 7.5032, 7.5056, 7.5045, 7.5041, 7.5033, 7.5055, 7.5077, 7.5062, 7.5049, 7.5034, 7.5057, 7.5087, 7.5072, 7.5057, 7.5042, 7.5033, 7.5019, 7.5013, 7.4998, 7.502, 7.5006, 7.4999, 7.499, 7.5015, 7.5, 7.4986, 7.5008, 7.5001, 7.4986, 7.5009, 7.4998, 7.4986, 7.5005, 7.5029, 7.499, 7.4975, 7.4961, 7.4951, 7.4941, 7.4934, 7.4926, 7.4917, 7.494, 7.493, 7.4885, 7.4906, 7.4895, 7.4883, 7.4907, 7.4899, 7.4891, 7.4883, 7.4906, 7.4892, 7.4912, 7.4933, 7.4926, 7.4911, 7.4901, 7.4927, 7.4953, 7.4941, 7.493, 7.4917, 7.4904, 7.4889, 7.488, 7.4872, 7.4894, 7.4941, 7.4963, 7.4948, 7.494, 7.495, 7.4941, 7.4926, 7.4914, 7.49, 7.4888, 7.488, 7.4901, 7.4922, 7.4915, 7.4904, 7.4893, 7.4882, 7.4871, 7.4861, 7.4849, 7.4837, 7.4822, 7.4811, 7.4802, 7.4788, 7.4809, 7.4799, 7.4878, 7.4901, 7.4894, 7.488, 7.4903, 7.4925, 7.4945, 7.4932, 7.499, 7.4976, 7.4968, 7.4957, 7.4945, 7.4972, 7.4961, 7.4984, 7.4971, 7.4962, 7.4948, 7.4971, 7.4959, 7.4948, 7.4934, 7.4923, 7.4908, 7.4894, 7.4885, 7.4921, 7.4908, 7.4895, 7.4917, 7.5003, 7.499, 7.4983, 7.5005, 7.4991, 7.4984, 7.4973, 7.4995, 7.5052, 7.5041, 7.5003, 7.5027, 7.5014, 7.5001, 7.499, 7.4978, 7.5001, 7.4989, 7.5009, 7.4997, 7.4987, 7.4974, 7.4965, 7.4995, 7.4985, 7.4973, 7.4996, 7.4958, 7.4986, 7.5002, 7.499, 7.4984, 7.497, 7.4956, 7.4949, 7.4939, 7.4927, 7.4913, 7.4899, 7.4904, 7.4868, 7.4856, 7.4845, 7.4832, 7.4821, 7.4814, 7.4801, 7.4822, 7.4849, 7.4836, 7.4828, 7.487, 7.4866, 7.4888, 7.4908, 7.4895, 7.4889, 7.4887, 7.4845, 7.4837, 7.4826, 7.4882, 7.4872, 7.4932, 7.4922, 7.4946, 7.4937, 7.4936, 7.4933, 7.4898, 7.4891, 7.4888, 7.4875, 7.4861, 7.4882, 7.4903, 7.4894, 7.4882, 7.487, 7.4857, 7.4884, 7.4874, 7.4863, 7.4852, 7.4848, 7.4836, 7.4828, 7.4815, 7.4837, 7.4855, 7.485, 7.484, 7.486, 7.4878, 7.4868, 7.4861, 7.4849, 7.4844, 7.4862, 7.4852, 7.4842, 7.4861, 7.4848, 7.4842, 7.4831, 7.4824, 7.4812, 7.4807, 7.4832, 7.482, 7.4809, 7.4806, 7.4804, 7.4797, 7.4786, 7.4776, 7.4798, 7.4792, 7.4779, 7.4766, 7.4754, 7.4743, 7.4731, 7.4719, 7.4706, 7.4699, 7.4719, 7.4711, 7.4732, 7.4719, 7.4709, 7.4729, 7.4717, 7.4705, 7.4726, 7.4717, 7.4704, 7.4724, 7.4744, 7.4764, 7.4751, 7.4738, 7.4756, 7.4744, 7.4733, 7.4721, 7.4766, 7.4753, 7.474, 7.4732, 7.4725, 7.4713, 7.4702, 7.4694, 7.4685, 7.4673, 7.4714, 7.4747, 7.4739, 7.4733, 7.4823, 7.4829, 7.4846, 7.4836, 7.4823, 7.4817, 7.4805, 7.4794, 7.4781, 7.4771, 7.481, 7.4833, 7.4851, 7.487, 7.4859, 7.4852, 7.487, 7.4862, 7.488, 7.4867, 7.4856, 7.4848, 7.4869, 7.4858, 7.4877, 7.4867, 7.4886, 7.4876, 7.4901, 7.489, 7.4912, 7.4901, 7.4889, 7.4877, 7.4895, 7.4913, 7.49, 7.4888, 7.4881, 7.4868, 7.4889, 7.4879, 7.4876, 7.4847, 7.4867, 7.4861, 7.4855, 7.4848, 7.4837, 7.4825, 7.4813, 7.4831, 7.4829, 7.4819, 7.4838, 7.4829, 7.482, 7.4814, 7.4803, 7.4791, 7.4839, 7.4827, 7.4818, 7.4808, 7.4798, 7.4816, 7.4834, 7.4822, 7.4811, 7.4831, 7.4852, 7.4899, 7.4891, 7.4854, 7.4844, 7.4862, 7.4853, 7.4846, 7.4834, 7.4829, 7.4817, 7.4813, 7.4801, 7.4823, 7.4812, 7.48, 7.4818, 7.4806, 7.4794, 7.4813, 7.4801, 7.4793, 7.4782, 7.4772, 7.4794, 7.4811, 7.4829, 7.4823, 7.4841, 7.4858, 7.4849, 7.4865, 7.4884, 7.4875, 7.4868, 7.4862, 7.4905, 7.4894, 7.4858, 7.4876, 7.4864, 7.4855, 7.4848, 7.484, 7.4829, 7.4818, 7.4806, 7.4795, 7.4815, 7.4804, 7.4793, 7.4781, 7.4775, 7.4764, 7.4757, 7.4775, 7.4768, 7.4756, 7.4777, 7.4797, 7.4791, 7.476, 7.484, 7.4828, 7.4854, 7.4915, 7.4933, 7.4925, 7.4918, 7.4907, 7.4899, 7.4888, 7.4876, 7.4865, 7.486, 7.4852, 7.4873, 7.4862, 7.4828, 7.4817, 7.4806, 7.4825, 7.4814, 7.4803, 7.4813, 7.4831, 7.4823, 7.4842, 7.4831, 7.4823, 7.4813, 7.4802, 7.4823, 7.4817, 7.4806, 7.4798, 7.4814, 7.4805, 7.4794, 7.4761, 7.4841, 7.4861, 7.485, 7.4839, 7.4836, 7.4828, 7.4825, 7.4841, 7.4834, 7.4823, 7.4817, 7.4805, 7.4794, 7.4783, 7.4772, 7.4792, 7.4809, 7.4801, 7.485, 7.4839, 7.4828, 7.4846, 7.4839, 7.4829, 7.482, 7.4874, 7.4892, 7.4881, 7.4967, 7.4958, 7.4947, 7.4946, 7.4935, 7.4924, 7.4918, 7.4907, 7.4873, 7.4872, 7.489, 7.4889, 7.4913, 7.4908, 7.4898, 7.4888, 7.4879, 7.4868, 7.4857, 7.4851, 7.484, 7.4832, 7.4849, 7.484, 7.4835, 7.483, 7.4819, 7.481, 7.4799, 7.4789, 7.4806, 7.4802, 7.4792, 7.481, 7.4803, 7.4797, 7.4787, 7.4754, 7.4747, 7.4735, 7.4753, 7.4745, 7.4752, 7.4769, 7.4785, 7.4776, 7.4767, 7.4756, 7.4746, 7.4738, 7.4727, 7.4718, 7.4711, 7.4702, 7.4723, 7.472, 7.4711, 7.4763, 7.4764, 7.4734, 7.4793, 7.4811, 7.48, 7.4794, 7.4812, 7.4806, 7.4798, 7.4811, 7.4802, 7.4793, 7.4786, 7.4776, 7.4765, 7.4756, 7.4751, 7.4747, 7.4765, 7.4781, 7.4775, 7.4793, 7.476, 7.4752, 7.4721, 7.4737, 7.4755, 7.4772, 7.4789, 7.4805, 7.4798, 7.4812, 7.4804, 7.4875, 7.4864, 7.4881, 7.4874, 7.4865, 7.4857, 7.4847, 7.4839, 7.4837, 7.486, 7.485, 7.484, 7.483, 7.4825, 7.4792, 7.4759, 7.4753, 7.4743, 7.4738, 7.4755, 7.4751, 7.4743, 7.4732, 7.4722, 7.4716, 7.4731, 7.4726, 7.4721, 7.472, 7.4711, 7.4726, 7.4715, 7.4739, 7.473, 7.4719, 7.4709, 7.4701, 7.4693, 7.466, 7.4685, 7.4684, 7.4673, 7.4664, 7.4654, 7.4644, 7.4613, 7.4629, 7.4623, 7.4613, 7.4608, 7.4612, 7.4628, 7.4643, 7.4636, 7.4626, 7.4616, 7.4606, 7.4595, 7.459, 7.4583, 7.4573, 7.4569, 7.4586, 7.4603, 7.4597, 7.4588, 7.4606, 7.4596, 7.4589, 7.4604, 7.4597, 7.459, 7.4581, 7.4576, 7.457, 7.4585, 7.4578, 7.4594, 7.4584, 7.46, 7.4589, 7.4603, 7.4597, 7.4588, 7.4586, 7.4579, 7.4572, 7.459, 7.4581, 7.4572, 7.4563, 7.4561, 7.4583, 7.4599, 7.4615, 7.4605, 7.4598, 7.4592, 7.4608, 7.4598, 7.4614, 7.4604, 7.462, 7.461, 7.46, 7.4594, 7.4587, 7.4605, 7.4621, 7.4614, 7.4604, 7.4595, 7.4586, 7.4575, 7.4566, 7.4583, 7.4598, 7.4588, 7.4603, 7.4622, 7.4613, 7.4629, 7.4622, 7.4641, 7.4654, 7.4647, 7.4639, 7.4653, 7.4646, 7.4636, 7.4629, 7.462, 7.4615, 7.4614, 7.4604, 7.4595, 7.4585, 7.4575, 7.4569, 7.456, 7.4557, 7.4573, 7.4589, 7.4579, 7.457, 7.4564, 7.4582, 7.4573, 7.4564, 7.4556, 7.4551, 7.4544, 7.4534, 7.4549, 7.4545, 7.4537, 7.4554, 7.4544, 7.4534, 7.4548, 7.454, 7.4533, 7.455, 7.4541, 7.4535, 7.4532, 7.4527, 7.4523, 7.4538, 7.453, 7.4524, 7.4535, 7.4525, 7.4531, 7.4522, 7.4513, 7.4505, 7.4499, 7.4492, 7.4483, 7.4474, 7.4443, 7.4459, 7.4449, 7.4439, 7.4455, 7.447, 7.4461, 7.4452, 7.4445, 7.4435, 7.445, 7.4445, 7.4452, 7.4468, 7.4461, 7.4476, 7.4467, 7.4457, 7.4448, 7.4462, 7.4595, 7.4586, 7.4576, 7.4594, 7.4618, 7.4635, 7.463, 7.4623, 7.4636, 7.4627, 7.4621, 7.4616, 7.4606, 7.46, 7.4595, 7.4586, 7.4578, 7.4592, 7.4588, 7.4582, 7.4577, 7.457, 7.4565, 7.4583, 7.4574, 7.4591, 7.4581, 7.4574, 7.4568, 7.4558, 7.4551, 7.4544, 7.4558, 7.4549, 7.4541, 7.4557, 7.4551, 7.4521, 7.4491, 7.4481, 7.4499, 7.4491, 7.4461, 7.4481, 7.4451, 7.4443, 7.4458, 7.4452, 7.4468, 7.4473, 7.4465, 7.4456, 7.4448, 7.4443, 7.4434, 7.443, 7.4425, 7.4417, 7.4524, 7.4518, 7.4509, 7.4503, 7.4495, 7.4487, 7.448, 7.4476, 7.4489, 7.4504, 7.4497, 7.4491, 7.4482, 7.4473, 7.4464, 7.446, 7.4451, 7.4466, 7.4463, 7.4477, 7.4467, 7.4482, 7.4472, 7.4467, 7.4502, 7.4493, 7.4483, 7.4476, 7.4491, 7.4505, 7.4497, 7.4491, 7.4481, 7.4501, 7.4494, 7.4492, 7.4489, 7.4484, 7.4475, 7.4467, 7.4457, 7.4471, 7.4486, 7.4477, 7.4476, 7.4468, 7.4464, 7.4457, 7.4471, 7.4463, 7.4454, 7.445, 7.4441, 7.4437, 7.4432, 7.4426, 7.4421, 7.4436, 7.4427, 7.4419, 7.441, 7.4403, 7.4398, 7.4391, 7.4382, 7.4378, 7.4371, 7.438, 7.4375, 7.4377, 7.437, 7.4362, 7.4356, 7.4347, 7.4363, 7.4379, 7.4371, 7.4362, 7.4356, 7.435, 7.4366, 7.4382, 7.4387, 7.4387, 7.4379, 7.4432, 7.443, 7.4425, 7.4421, 7.4434, 7.4426, 7.4419, 7.4412, 7.4407, 7.4399, 7.4393, 7.4407, 7.4398, 7.4389, 7.438, 7.4371, 7.4384, 7.4376, 7.439, 7.4411, 7.4403, 7.4394, 7.4387, 7.4379, 7.4401, 7.4393, 7.4387, 7.4378, 7.4373, 7.4366, 7.436, 7.4374, 7.4369, 7.4362, 7.4353, 7.4368, 7.4383, 7.438, 7.4396, 7.4392, 7.4407, 7.4421, 7.4435, 7.4426, 7.442, 7.4435, 7.4456, 7.4448, 7.4439, 7.4453, 7.4446, 7.4441, 7.4437, 7.4429, 7.4425, 7.4418, 7.4413, 7.4406, 7.4403, 7.4375, 7.4367, 7.436, 7.4352, 7.4344, 7.4358, 7.4351, 7.4342, 7.4334, 7.4326, 7.4319, 7.4315, 7.4351, 7.4365, 7.4358, 7.4354, 7.4349, 7.4344, 7.4337, 7.433, 7.4323, 7.4316, 7.4309, 7.4305, 7.4299, 7.4292, 7.4283, 7.4275, 7.4309, 7.4302, 7.4295, 7.4294, 7.4286, 7.428, 7.4274, 7.4266, 7.4257, 7.425, 7.4242, 7.4234, 7.4226, 7.422, 7.4193, 7.4187, 7.4201, 7.4193, 7.4186, 7.4201, 7.4215, 7.421, 7.4228, 7.4244, 7.4252, 7.4246, 7.4237, 7.425, 7.4242, 7.4276, 7.4289, 7.4281, 7.4294, 7.4286, 7.4278, 7.427, 7.4288, 7.4301, 7.4293, 7.4285, 7.4277, 7.4268, 7.4281, 7.4273, 7.433, 7.4327, 7.4319, 7.4333, 7.4346, 7.4341, 7.4333, 7.4333, 7.4325, 7.4317, 7.4312, 7.4327, 7.4321, 7.4312, 7.4307, 7.43, 7.4292, 7.4284, 7.4297, 7.4293, 7.4287, 7.4305, 7.4298, 7.4291, 7.4328, 7.4322, 7.4335, 7.4327, 7.4324, 7.4318, 7.4333, 7.4326, 7.4318, 7.4314, 7.4328, 7.4321, 7.4317, 7.4309, 7.4301, 7.4293, 7.4308, 7.43, 7.4315, 7.4307, 7.4319, 7.4314, 7.4306, 7.4297, 7.4291, 7.4287, 7.4306, 7.432, 7.4313, 7.4326, 7.4318, 7.4331, 7.4344, 7.4336, 7.4328, 7.4341, 7.4354, 7.4346, 7.434, 7.4333, 7.4329, 7.432, 7.4313, 7.4306, 7.43, 7.4295, 7.4287, 7.428, 7.428, 7.4317, 7.431, 7.4382, 7.4375, 7.4366, 7.4358, 7.437, 7.4361, 7.4356, 7.4349, 7.4362, 7.4375, 7.437, 7.4362, 7.4398, 7.4443, 7.4456, 7.4448, 7.444, 7.4432, 7.4425, 7.4417, 7.443, 7.4426, 7.4418, 7.4409, 7.4401, 7.4395, 7.4388, 7.4401, 7.4415, 7.4407, 7.4399, 7.4393, 7.4385, 7.4398, 7.4389, 7.4402, 7.4395, 7.439, 7.4383, 7.438, 7.4395, 7.4387, 7.4383, 7.4377, 7.4371, 7.4367, 7.4373, 7.4366, 7.4358, 7.4352, 7.4367, 7.44, 7.4393, 7.4386, 7.44, 7.4392, 7.4427, 7.442, 7.4415, 7.4426, 7.4419, 7.4414, 7.4409, 7.4401, 7.4377, 7.4373, 7.4365, 7.4357, 7.4349, 7.4359, 7.4371, 7.4364, 7.4376, 7.4368, 7.4382, 7.4398, 7.439, 7.4384, 7.4376, 7.4371, 7.4383, 7.4395, 7.4391, 7.4383, 7.4397, 7.4389, 7.4381, 7.4373, 7.4419, 7.4434, 7.4427, 7.4419, 7.4431, 7.443, 7.4426, 7.4424, 7.4437, 7.4451, 7.4443, 7.4418, 7.4412, 7.4404, 7.4396, 7.4398, 7.4391, 7.4384, 7.4376, 7.4371, 7.4367, 7.436, 7.4352, 7.4348, 7.4348, 7.4342, 7.4339, 7.4331, 7.4307, 7.4308, 7.4301, 7.4293, 7.4308, 7.4401, 7.44, 7.4395, 7.4407, 7.4399, 7.4392, 7.4385, 7.4377, 7.4375, 7.4367, 7.436, 7.4355, 7.4347, 7.4352, 7.435, 7.4345, 7.4339, 7.4331, 7.4324, 7.4317, 7.431, 7.4303, 7.4314, 7.4316, 7.4308, 7.43, 7.4312, 7.4325, 7.4301, 7.4277, 7.4289, 7.4285, 7.4278, 7.4271, 7.4265, 7.4297, 7.431, 7.4302, 7.4278, 7.427, 7.4282, 7.4295, 7.4289, 7.4402, 7.4434, 7.4448, 7.4452, 7.4464, 7.4457, 7.445, 7.4443, 7.4437, 7.4431, 7.4423, 7.4417, 7.441, 7.4406, 7.4398, 7.4392, 7.4386, 7.4381, 7.4373, 7.4365, 7.4376, 7.4369, 7.4362, 7.4355, 7.4363, 7.4381, 7.4373, 7.4368, 7.4382, 7.4417, 7.4411, 7.4412, 7.4405, 7.4399, 7.4413, 7.4413, 7.441, 7.4422, 7.4416, 7.4432, 7.4446, 7.4441, 7.4441, 7.4434, 7.4429, 7.4406, 7.4399, 7.4414, 7.4427, 7.444, 7.4434, 7.4433, 7.4446, 7.444, 7.4451, 7.4445, 7.4456, 7.4451, 7.4489, 7.4483, 7.4476, 7.4473, 7.4468, 7.4464, 7.4461, 7.4456, 7.4451, 7.4446, 7.4441, 7.4453, 7.4445, 7.4438, 7.4417, 7.443, 7.4423, 7.4418, 7.441, 7.4406, 7.4421, 7.4416, 7.4412, 7.4404, 7.4403, 7.4398, 7.4412, 7.4427, 7.4424, 7.4437, 7.4433, 7.4446, 7.4442, 7.4435, 7.4427, 7.4421, 7.4488, 7.4502, 7.4495, 7.4509, 7.4502, 7.4498, 7.4492, 7.4486, 7.4481, 7.4473, 7.4484, 7.448, 7.4474, 7.4471, 7.4466, 7.4461, 7.4454, 7.4448, 7.4444, 7.444, 7.4452, 7.4464, 7.4458, 7.4469, 7.4481, 7.4458, 7.4453, 7.4447, 7.444, 7.4417, 7.441, 7.4402, 7.4398, 7.4412, 7.4425, 7.4422, 7.4434, 7.4427, 7.442, 7.4413, 7.4408, 7.4401, 7.4394, 7.4406, 7.4421, 7.4416, 7.4409, 7.4402, 7.4415, 7.4427, 7.4422, 7.4417, 7.441, 7.4404, 7.4398, 7.4392, 7.4384, 7.4397, 7.4393, 7.4403, 7.4415, 7.4428, 7.4431, 7.4423, 7.4433, 7.4446, 7.4439, 7.4431, 7.4443, 7.4444, 7.4437, 7.4449, 7.4464, 7.4479, 7.448, 7.4475, 7.4488, 7.4484, 7.448, 7.4476, 7.4514, 7.4514, 7.4534, 7.4549, 7.4543, 7.4537, 7.4537, 7.463, 7.4624, 7.4616, 7.4609, 7.4604, 7.4597, 7.4592, 7.4592, 7.4585, 7.4581, 7.4559, 7.457, 7.4564, 7.4557, 7.4557, 7.455, 7.4545, 7.4538, 7.453, 7.4527, 7.4525, 7.4518, 7.453, 7.4542, 7.4534, 7.4527, 7.4525, 7.4556, 7.4568, 7.4582, 7.4576, 7.4569, 7.4565, 7.4576, 7.4569, 7.4564, 7.4576, 7.4573, 7.4566, 7.4559, 7.4582, 7.4592, 7.4603, 7.4595, 7.4607, 7.4601, 7.4611, 7.459, 7.4583, 7.4595, 7.4607, 7.4587, 7.458, 7.4574, 7.4591, 7.4605, 7.4584, 7.458, 7.4595, 7.4605, 7.4602, 7.4594, 7.4605, 7.4597, 7.4592, 7.4588, 7.4581, 7.4594, 7.4589, 7.4616, 7.4627, 7.4621, 7.4633, 7.463, 7.4624, 7.4617, 7.4614, 7.4617, 7.4617, 7.461, 7.4604, 7.4597, 7.4592, 7.4586, 7.4598, 7.4591, 7.4583, 7.4595, 7.4591, 7.4604, 7.46, 7.4598, 7.4592, 7.4603, 7.4585, 7.4581, 7.4574, 7.4567, 7.4579, 7.4573, 7.4573, 7.4566, 7.4563, 7.4575, 7.4568, 7.4561, 7.4554, 7.4547, 7.4557, 7.4557, 7.4551, 7.4563, 7.4576, 7.457, 7.4563, 7.4558, 7.4552, 7.4548, 7.4543, 7.4536, 7.453, 7.4525, 7.4519, 7.4611, 7.4605, 7.4601, 7.4598, 7.4592, 7.4603, 7.4664, 7.4693, 7.4687, 7.4705, 7.4712, 7.4725, 7.4719, 7.4712, 7.4706, 7.4704, 7.4697, 7.469, 7.4686, 7.4681, 7.4676, 7.4673, 7.4666, 7.4661, 7.4671, 7.4664, 7.466, 7.4655, 7.4648, 7.4643, 7.4636, 7.463, 7.4623, 7.4616, 7.4611, 7.4606, 7.4618, 7.4611, 7.4623, 7.4618, 7.4613, 7.462, 7.4613, 7.4624, 7.4635, 7.4628, 7.4641, 7.4654, 7.4649, 7.4643, 7.4636, 7.4632, 7.4626, 7.4623, 7.462, 7.4615, 7.461, 7.4621, 7.4618, 7.4628, 7.4643, 7.4638, 7.4652, 7.4664, 7.4659, 7.4655, 7.4667, 7.4664, 7.466, 7.4655, 7.4667, 7.466, 7.4653, 7.4664, 7.4657, 7.4651, 7.4644, 7.4637, 7.4631, 7.4626, 7.4619, 7.4615, 7.4608, 7.4601, 7.4595, 7.4575, 7.4568, 7.4563, 7.4556, 7.4549, 7.4544, 7.4537, 7.453, 7.4525, 7.4519, 7.4516, 7.451, 7.4504, 7.4498, 7.4492, 7.4485, 7.448, 7.4477, 7.4488, 7.4483, 7.4479, 7.4472, 7.4466, 7.4477, 7.4471, 7.4466, 7.446, 7.4454, 7.4449, 7.4463, 7.4457, 7.4468, 7.4462, 7.4455, 7.4464, 7.4457, 7.4451, 7.4445, 7.4439, 7.4435, 7.4429, 7.4423, 7.4418, 7.4412, 7.4406, 7.4401, 7.4394, 7.4389, 7.4383, 7.4377, 7.4389, 7.4399, 7.4393, 7.4373, 7.4352, 7.4338, 7.4331, 7.4329, 7.4308, 7.432, 7.4315, 7.4308, 7.4303, 7.4296, 7.4289, 7.4285, 7.4278, 7.4273, 7.4268, 7.4262, 7.4256, 7.4251, 7.4249, 7.4248, 7.4243, 7.4237, 7.423, 7.4223, 7.4202, 7.4195, 7.4189, 7.4183, 7.4178, 7.4171, 7.4155, 7.4155, 7.4149, 7.4144, 7.4137, 7.4131, 7.4126, 7.4139, 7.4134, 7.4145, 7.4155, 7.4161, 7.4157, 7.4152, 7.4163, 7.4156, 7.4135, 7.4133, 7.4128, 7.4125, 7.4136, 7.4115, 7.4108, 7.4105, 7.4115, 7.4144, 7.4141, 7.412, 7.4114, 7.4107, 7.4117, 7.4114, 7.4107, 7.4117, 7.4111, 7.4105, 7.4115, 7.4109, 7.4105, 7.4098, 7.4092, 7.4085, 7.4082, 7.4092, 7.4085, 7.4095, 7.4139, 7.4134, 7.4145, 7.4155, 7.4166, 7.4177, 7.4173, 7.4167, 7.416, 7.4171, 7.4182, 7.4178, 7.4193, 7.4189, 7.4169, 7.418, 7.4174, 7.4168, 7.4162, 7.4157, 7.4151, 7.4146, 7.4159, 7.4152, 7.4145, 7.4142, 7.4136, 7.4133, 7.4131, 7.4125, 7.4135, 7.4129, 7.4125, 7.4122, 7.4116, 7.4111, 7.4137, 7.4165, 7.4194, 7.4188, 7.4169, 7.422, 7.4214, 7.4211, 7.419, 7.4185, 7.418, 7.4175, 7.4169, 7.4179, 7.4173, 7.4169, 7.4163, 7.416, 7.4155, 7.4149, 7.4144, 7.4141, 7.4153, 7.4147, 7.414, 7.4135, 7.413, 7.4124, 7.4118, 7.4114, 7.4125, 7.4119, 7.4113, 7.4109, 7.4106, 7.4117, 7.4111, 7.4108, 7.4122, 7.4116, 7.4115, 7.411, 7.4108, 7.4119, 7.412, 7.412, 7.4116, 7.411, 7.4104, 7.4098, 7.4092, 7.4103, 7.4097, 7.4091, 7.4086, 7.4095, 7.4106, 7.4123, 7.4134, 7.4131, 7.4125, 7.4122, 7.4117, 7.4112, 7.4107, 7.4104, 7.4101, 7.4097, 7.4172, 7.4183, 7.418, 7.4191, 7.4188, 7.4198, 7.4178, 7.4159, 7.4154, 7.4148, 7.4159, 7.4169, 7.4165, 7.416, 7.4154, 7.415, 7.4145, 7.4155, 7.4148, 7.4145, 7.4139, 7.412, 7.4118, 7.4129, 7.4139, 7.4133, 7.4126, 7.412, 7.4114, 7.4124, 7.4118, 7.4114, 7.4113, 7.4123, 7.415, 7.4147, 7.4142, 7.4154, 7.4149, 7.4144, 7.4139, 7.4133, 7.4127, 7.4127, 7.4121, 7.4119, 7.4099, 7.4096, 7.4112, 7.4122, 7.4117, 7.4111, 7.4112, 7.411, 7.4104, 7.4099, 7.4093, 7.4092, 7.4086, 7.408, 7.4074, 7.4115, 7.4109, 7.4103, 7.4114, 7.4117, 7.4112, 7.4122, 7.4117, 7.4111, 7.4107, 7.4117, 7.4111, 7.4121, 7.4115, 7.4125, 7.4121, 7.4116, 7.4125, 7.412, 7.4114, 7.4123, 7.4119, 7.413, 7.4139, 7.4133, 7.4127, 7.4142, 7.4136, 7.4146, 7.4141, 7.4151, 7.4146, 7.4141, 7.415, 7.4144, 7.4139, 7.4136, 7.413, 7.414, 7.4136, 7.4131, 7.4126, 7.4122, 7.4116, 7.411, 7.412, 7.413, 7.4124, 7.4118, 7.4112, 7.4106, 7.41, 7.4094, 7.4088, 7.4082, 7.4079, 7.4073, 7.4068, 7.4078, 7.4089, 7.4084, 7.4078, 7.4075, 7.4087, 7.4081, 7.4075, 7.407, 7.4064, 7.406, 7.4054, 7.4065, 7.4059, 7.4053, 7.4132, 7.4128, 7.4122, 7.4118, 7.4112, 7.4109, 7.4106, 7.41, 7.4095, 7.4093, 7.4087, 7.4081, 7.4079, 7.4075, 7.4069, 7.4064, 7.4058, 7.4069, 7.4064, 7.4075, 7.407, 7.4082, 7.4092, 7.4086, 7.4131, 7.4142, 7.4123, 7.4134, 7.4145, 7.4139, 7.4137, 7.4131, 7.413, 7.4126, 7.4121, 7.4116, 7.4128, 7.4124, 7.4136, 7.4133, 7.413, 7.4125, 7.4121, 7.4117, 7.4111, 7.4107, 7.4117, 7.4115, 7.411, 7.4106, 7.41, 7.4096, 7.4091, 7.4086, 7.4067, 7.4063, 7.4058, 7.4066, 7.406, 7.407, 7.4079, 7.4077, 7.4071, 7.408, 7.4075, 7.407, 7.4066, 7.4064, 7.4059, 7.4053, 7.405, 7.4045, 7.4039, 7.4034, 7.403, 7.4024, 7.402, 7.4025, 7.4023, 7.4019, 7.4013, 7.4013, 7.4022, 7.4031, 7.4025, 7.4064, 7.4087, 7.4084, 7.4081, 7.4075, 7.4077, 7.4073, 7.4068, 7.4078, 7.4073, 7.4069, 7.4064, 7.4063, 7.406, 7.407, 7.4067, 7.4077, 7.4059, 7.4054, 7.405, 7.4044, 7.4053, 7.4049, 7.4043, 7.4037, 7.4032, 7.4039, 7.4034, 7.4043, 7.4039, 7.4035, 7.403, 7.4026, 7.4023, 7.4018, 7.4013, 7.4009, 7.4003, 7.4001, 7.3997, 7.4007, 7.4002, 7.3998, 7.4023, 7.4033, 7.4029, 7.4039, 7.4048, 7.4043, 7.4038, 7.4033, 7.4027, 7.4023, 7.4019, 7.4016, 7.4011, 7.4007, 7.4017, 7.4015, 7.4011, 7.4006, 7.4, 7.3999, 7.3997, 7.3993, 7.399, 7.3986, 7.3996, 7.3993, 7.3989, 7.3984, 7.3978, 7.3974, 7.3968, 7.3963, 7.396, 7.3971, 7.3981, 7.3976, 7.3987, 7.3982, 7.3977, 7.3972, 7.3966, 7.3962, 7.396, 7.3954, 7.3948, 7.3943, 7.3937, 7.3946, 7.3942, 7.3939, 7.3948, 7.3943, 7.3938, 7.3937, 7.3937, 7.3934, 7.3929, 7.3924, 7.3919, 7.3914, 7.3909, 7.3904, 7.3899, 7.3909, 7.3907, 7.3903, 7.3898, 7.3894, 7.389, 7.3884, 7.3895, 7.3895, 7.3892, 7.389, 7.389, 7.3887, 7.3897, 7.3892, 7.3886, 7.3882, 7.3881, 7.3894, 7.3889, 7.3922, 7.3918, 7.3916, 7.3911, 7.3906, 7.3901, 7.3897, 7.3892, 7.3893, 7.3888, 7.3884, 7.3895, 7.389, 7.3886, 7.3881, 7.3891, 7.3874, 7.3871, 7.3881, 7.3877, 7.3872, 7.3882, 7.388, 7.389, 7.3899, 7.3896, 7.3907, 7.3902, 7.3897, 7.3898, 7.3893, 7.3888, 7.3882, 7.3885, 7.3896, 7.3894, 7.3903, 7.3898, 7.3894, 7.3889, 7.3884, 7.3882, 7.3891, 7.3887, 7.3882, 7.3877, 7.3873, 7.3869, 7.3864, 7.3876, 7.3885, 7.388, 7.3875, 7.387, 7.3881, 7.3876, 7.3885, 7.388, 7.3874, 7.3883, 7.388, 7.3881, 7.3878, 7.3873, 7.3868, 7.3863, 7.3863, 7.3876, 7.3871, 7.3866, 7.3861, 7.3856, 7.3852, 7.3861, 7.387, 7.3869, 7.3865, 7.3874, 7.3883, 7.3879, 7.3887, 7.3884, 7.3894, 7.389, 7.3886, 7.3901, 7.3897, 7.3893, 7.3889, 7.3901, 7.391, 7.3905, 7.3902, 7.3899, 7.3894, 7.3891, 7.39, 7.39, 7.3921, 7.3916, 7.3911, 7.3927, 7.3939, 7.3933, 7.393, 7.3926, 7.3921, 7.3916, 7.3924, 7.3933, 7.3929, 7.3923, 7.3918, 7.3926, 7.3911, 7.3897, 7.3891, 7.3888, 7.3883, 7.3866, 7.3862, 7.3859, 7.3855, 7.3863, 7.3858, 7.3853, 7.385, 7.3845, 7.3843, 7.3853, 7.3862, 7.3857, 7.3855, 7.385, 7.386, 7.3866, 7.3875, 7.3884, 7.3882, 7.3877, 7.3872, 7.3869, 7.3863, 7.3858, 7.3855, 7.3851, 7.386, 7.3854, 7.3849, 7.3863, 7.3861, 7.3871, 7.388, 7.3875, 7.3871, 7.3867, 7.3878, 7.3877, 7.3873, 7.3874, 7.3871, 7.3866, 7.3861, 7.3856, 7.3854, 7.3849, 7.386, 7.3855, 7.3852, 7.385, 7.3847, 7.3844, 7.3839, 7.3848, 7.3844, 7.3882, 7.3878, 7.3861, 7.3857, 7.3852, 7.3847, 7.3842, 7.3837, 7.3832, 7.3831, 7.3827, 7.3822, 7.3823, 7.3832, 7.3828, 7.3825, 7.3816, 7.3811, 7.3805, 7.38, 7.3808, 7.3803, 7.3798, 7.3807, 7.3791, 7.3786, 7.3795, 7.379, 7.3773, 7.3768, 7.3763, 7.3758, 7.3753, 7.3748, 7.3758, 7.3755, 7.375, 7.3746, 7.3756, 7.3751, 7.376, 7.3786, 7.3797, 7.3806, 7.3801, 7.3799, 7.3796, 7.3805, 7.3813, 7.3821, 7.3817, 7.3812, 7.3807, 7.3804, 7.3799, 7.3794, 7.3803, 7.38, 7.3796, 7.3791, 7.3791, 7.3869, 7.3866, 7.3904, 7.39, 7.3909, 7.3905, 7.3903, 7.3899, 7.3896, 7.389, 7.3886, 7.3881, 7.3876, 7.3885, 7.388, 7.3889, 7.3888, 7.3888, 7.3884, 7.388, 7.3876, 7.3899, 7.3909, 7.3921, 7.3945, 7.3944, 7.394, 7.3944, 7.3941, 7.3978, 7.4, 7.3998, 7.4007, 7.4002, 7.4024, 7.4019, 7.4017, 7.4015, 7.4025, 7.4021, 7.4021, 7.4016, 7.4011, 7.4007, 7.4002, 7.3997, 7.3992, 7.3989, 7.3985, 7.3995, 7.399, 7.3987, 7.3982, 7.3979, 7.3976, 7.3985, 7.398, 7.3977, 7.3985, 7.398, 7.3992, 7.3987, 7.3986, 7.3982, 7.3969, 7.3976, 7.3973, 7.397, 7.3965, 7.3962, 7.3971, 7.3968, 7.3966, 7.3993, 7.3991, 7.3989, 7.3985, 7.398, 7.3976, 7.3974, 7.3969, 7.3967, 7.3963, 7.396, 7.3957, 7.3952, 7.3947, 7.3955, 7.395, 7.3947, 7.3942, 7.3926, 7.3921, 7.3929, 7.3937, 7.3935, 7.3934, 7.3935, 7.3935, 7.3931, 7.3939, 7.395, 7.3947, 7.3956, 7.3953, 7.3949, 7.3944, 7.3952, 7.395, 7.3945, 7.3942, 7.3926, 7.3922, 7.3917, 7.3926, 7.3924, 7.392, 7.3916, 7.3912, 7.3907, 7.3907, 7.3902, 7.3899, 7.3882, 7.389, 7.3898, 7.3906, 7.389, 7.3887, 7.3882, 7.3877, 7.3872, 7.387, 7.3865, 7.386, 7.3855, 7.3851, 7.386, 7.3861, 7.387, 7.3868, 7.3878, 7.3873, 7.387, 7.3867, 7.3863, 7.3874, 7.387, 7.3865, 7.3861, 7.3856, 7.3909, 7.3905, 7.3913, 7.3898, 7.3895, 7.3903, 7.3912, 7.3907, 7.3902, 7.3898, 7.3905, 7.3902, 7.3899, 7.3901, 7.3898, 7.3893, 7.3888, 7.3885, 7.3881, 7.3877, 7.3886, 7.3881, 7.3876, 7.3874, 7.3869, 7.3867, 7.3862, 7.3857, 7.3852, 7.3861, 7.3857, 7.3856, 7.3852, 7.3847, 7.3849, 7.387, 7.3884, 7.388, 7.3879, 7.3874, 7.3869, 7.3868, 7.3866, 7.3863, 7.3871, 7.3868, 7.3903, 7.39, 7.3897, 7.3893, 7.3892, 7.3887, 7.3871, 7.3871, 7.3866, 7.3861, 7.3856, 7.3852, 7.3847, 7.3843, 7.384, 7.3836, 7.3834, 7.3832, 7.3827, 7.3823, 7.382, 7.3816, 7.3811, 7.3807, 7.3802, 7.3786, 7.377, 7.3767, 7.3803, 7.3813, 7.3838, 7.3833, 7.3817, 7.3813, 7.3811, 7.3808, 7.3816, 7.3814, 7.3823, 7.3818, 7.3813, 7.3821, 7.3821, 7.3816, 7.3811, 7.382, 7.3827, 7.3822, 7.3818, 7.3814, 7.3809, 7.3807, 7.3809, 7.3804, 7.3801, 7.3799, 7.3796, 7.3795, 7.3792, 7.3788, 7.3783, 7.3778, 7.3775, 7.3774, 7.377, 7.377, 7.3779, 7.3776, 7.3772, 7.378, 7.3788, 7.3783, 7.3792, 7.3801, 7.381, 7.3806, 7.3814, 7.381, 7.3807, 7.3792, 7.3788, 7.3787, 7.3782, 7.3777, 7.3772, 7.378, 7.3777, 7.3785, 7.3781, 7.3777, 7.3774, 7.3771, 7.3766, 7.3762, 7.3746, 7.3755, 7.3763, 7.3759, 7.3755, 7.3752, 7.376, 7.3769, 7.3765, 7.3784, 7.3779, 7.3788, 7.3783, 7.3779, 7.3774, 7.377, 7.3765, 7.3762, 7.3759, 7.3757, 7.3756, 7.3774, 7.377, 7.3766, 7.3775, 7.377, 7.3768, 7.3766, 7.3761, 7.3758, 7.3753, 7.3762, 7.3759, 7.3755, 7.3752, 7.375, 7.3745, 7.3741, 7.3751, 7.3749, 7.3745, 7.374, 7.3748, 7.3748, 7.3744, 7.374, 7.3735, 7.3722, 7.373, 7.3729, 7.3725, 7.3721, 7.3728, 7.3736, 7.3731, 7.3739, 7.3738, 7.3746, 7.3753, 7.3748, 7.3744, 7.3739, 7.3735, 7.373, 7.3725, 7.3721, 7.3706, 7.3691, 7.3688, 7.3696, 7.3694, 7.3704, 7.3711, 7.3706, 7.3702, 7.3698, 7.3707, 7.3703, 7.3712, 7.38, 7.3796, 7.383, 7.3826, 7.3822, 7.3829, 7.3837, 7.3869, 7.3864, 7.3866, 7.3862, 7.3858, 7.3854, 7.3862, 7.3858, 7.3868, 7.3864, 7.386, 7.3845, 7.384, 7.3838, 7.3849, 7.3847, 7.3844, 7.3844, 7.3854, 7.3856, 7.3857, 7.3852, 7.3877, 7.3888, 7.3885, 7.3894, 7.3892, 7.3888, 7.3884, 7.3881, 7.3879, 7.3875, 7.3874, 7.3869, 7.3867, 7.3863, 7.3871, 7.3867, 7.3864, 7.3859, 7.3866, 7.3888, 7.3883, 7.3878, 7.3874, 7.3882, 7.389, 7.3888, 7.3885, 7.3885, 7.388, 7.3877, 7.3885, 7.3883, 7.3878, 7.3874, 7.3872, 7.3868, 7.3903, 7.3899, 7.3908, 7.3917, 7.3914, 7.3911, 7.3908, 7.3904, 7.39, 7.3908, 7.3905, 7.39, 7.3895, 7.3903, 7.3901, 7.3908, 7.3903, 7.39, 7.3895, 7.3893, 7.3896, 7.3891, 7.3886, 7.3883, 7.3879, 7.3876, 7.3872, 7.3868, 7.3873, 7.3858, 7.3855, 7.385, 7.3845, 7.3842, 7.3839, 7.3834, 7.383, 7.384, 7.3862, 7.3858, 7.3856, 7.3851, 7.3847, 7.3855, 7.3854, 7.3862, 7.3858, 7.3855, 7.3851, 7.3846, 7.3842, 7.3839, 7.3836, 7.3834, 7.3829, 7.3814, 7.381, 7.3817, 7.3814, 7.3809, 7.3806, 7.3802, 7.3787, 7.3785, 7.378, 7.3766, 7.3784, 7.3782, 7.3782, 7.3779, 7.3774, 7.3781, 7.3788, 7.3785, 7.3793, 7.38, 7.3798, 7.3795, 7.3791, 7.3787, 7.3782, 7.3768, 7.3753, 7.3749, 7.3745, 7.3743, 7.3751, 7.375, 7.3758, 7.3755, 7.3751, 7.3747, 7.3742, 7.3739, 7.3746, 7.3745, 7.3752, 7.3748, 7.3744, 7.3742, 7.3738, 7.3734, 7.373, 7.3721, 7.3717, 7.3714, 7.3716, 7.3701, 7.3724, 7.3736, 7.3744, 7.379, 7.3787, 7.3782, 7.3779, 7.3776, 7.3772, 7.3768, 7.3764, 7.3759, 7.3765, 7.3773, 7.378, 7.3775, 7.3783, 7.3779, 7.3766, 7.3775, 7.3774, 7.3796, 7.3792, 7.3789, 7.3797, 7.3841, 7.3838, 7.3834, 7.383, 7.3828, 7.3825, 7.3837, 7.3848, 7.3833, 7.383, 7.3817, 7.3813, 7.3822, 7.3826, 7.3822, 7.3821, 7.382, 7.3819, 7.3815, 7.3813, 7.3811, 7.3809, 7.3818, 7.3803, 7.3791, 7.3777, 7.3797, 7.3793, 7.379, 7.3788, 7.3784, 7.3783, 7.3786, 7.3784, 7.3784, 7.3792, 7.3788, 7.3784, 7.3784, 7.3793, 7.3792, 7.3788, 7.3785, 7.3784, 7.3792, 7.38, 7.3798, 7.3795, 7.3793, 7.3789, 7.3784, 7.378, 7.3778, 7.3774, 7.3772, 7.3781, 7.377, 7.3766, 7.3764, 7.375, 7.3746, 7.3754, 7.3751, 7.3746, 7.3755, 7.3751, 7.3758, 7.3754, 7.374, 7.3737, 7.3734, 7.373, 7.3739, 7.3736, 7.3744, 7.3752, 7.3747, 7.3743, 7.3739, 7.3734, 7.3738, 7.3748, 7.3746, 7.3742, 7.3738, 7.3735, 7.3731, 7.3728, 7.3723, 7.3719, 7.3714, 7.371, 7.3718, 7.3714, 7.3722, 7.3718, 7.3716, 7.3723, 7.3724, 7.3731, 7.3726, 7.3722, 7.3718, 7.3714, 7.3714, 7.3711, 7.3707, 7.3703, 7.3711, 7.3709, 7.3705, 7.3702, 7.3698, 7.3705, 7.3712, 7.3709, 7.3705, 7.3701, 7.3699, 7.3697, 7.3694, 7.3691, 7.3691, 7.3678, 7.3674, 7.3669, 7.3666, 7.3663, 7.3659, 7.3666, 7.3665, 7.3672, 7.3679, 7.3675, 7.3671, 7.3678, 7.3685, 7.3681, 7.3677, 7.3685, 7.3683, 7.3678, 7.3677, 7.3685, 7.3681, 7.3689, 7.3685, 7.3692, 7.3689, 7.3685, 7.3682, 7.3691, 7.3687, 7.3685, 7.3692, 7.3688, 7.3684, 7.3696, 7.3693, 7.3689, 7.3685, 7.3681, 7.3678, 7.3674, 7.3683, 7.368, 7.3677, 7.3673, 7.3669, 7.3666, 7.3673, 7.3662, 7.3658, 7.3665, 7.3661, 7.3657, 7.3664, 7.3661, 7.367, 7.3678, 7.3677, 7.3673, 7.3669, 7.3677, 7.3673, 7.3669, 7.3666, 7.3663, 7.3671, 7.3669, 7.3666, 7.3663, 7.3672, 7.3684, 7.368, 7.3679, 7.3676, 7.3674, 7.366, 7.367, 7.3668, 7.3665, 7.3677, 7.3674, 7.367, 7.3668, 7.3664, 7.3661, 7.3659, 7.3658, 7.3668, 7.3664, 7.3671, 7.3667, 7.3663, 7.3659, 7.3655, 7.3662, 7.3658, 7.3662, 7.3658, 7.3665, 7.3651, 7.3651, 7.3657, 7.3664, 7.366, 7.3678, 7.3697, 7.3693, 7.3689, 7.3685, 7.3681, 7.3688, 7.3683, 7.369, 7.3687, 7.3683, 7.368, 7.3676, 7.3689, 7.3686, 7.3682, 7.37, 7.3708, 7.3704, 7.3711, 7.3707, 7.3703, 7.3697, 7.3699, 7.3706, 7.3704, 7.37, 7.3686, 7.3682, 7.3678, 7.3674, 7.3669, 7.3666, 7.3674, 7.367, 7.3667, 7.3663, 7.366, 7.3656, 7.3652, 7.3649, 7.3646, 7.3642, 7.3649, 7.3656, 7.3654, 7.3651, 7.3647, 7.3643, 7.3639, 7.3635, 7.3633, 7.3632, 7.3628, 7.3623, 7.3619, 7.3628, 7.3626, 7.3622, 7.3618, 7.3625, 7.3621, 7.3617, 7.3614, 7.3611, 7.3618, 7.3625, 7.3633, 7.3619, 7.3617, 7.3627, 7.3623, 7.3619, 7.3615, 7.3622, 7.3623, 7.361, 7.3606, 7.3624, 7.3688, 7.3686, 7.3682, 7.3678, 7.3685, 7.3682, 7.369, 7.3686, 7.3682, 7.3678, 7.3674, 7.367, 7.3668, 7.3668, 7.3666, 7.3668, 7.3666, 7.3674, 7.3682, 7.369, 7.3698, 7.3695, 7.3703, 7.3699, 7.3702, 7.3691, 7.3708, 7.3704, 7.37, 7.3707, 7.3704, 7.37, 7.3697, 7.3705, 7.3703, 7.3699, 7.3698, 7.3696, 7.3692, 7.3692, 7.3689, 7.3685, 7.3681, 7.3678, 7.3675, 7.3671, 7.3667, 7.3671, 7.3668, 7.3665, 7.3662, 7.3661, 7.3669, 7.3667, 7.3666, 7.3662, 7.366, 7.3656, 7.3652, 7.3649, 7.3673, 7.3671, 7.3658, 7.3666, 7.3674, 7.3671, 7.3667, 7.3664, 7.3664, 7.3661, 7.3659, 7.3709, 7.3716, 7.3713, 7.372, 7.3716, 7.3712, 7.3708, 7.3708, 7.3705, 7.3718, 7.3714, 7.371, 7.3717, 7.3724, 7.3742, 7.3729, 7.3726, 7.3723, 7.3722, 7.3718, 7.3715, 7.3723, 7.372, 7.3716, 7.3723, 7.3719, 7.3715, 7.3711, 7.3718, 7.3725, 7.3732, 7.3739, 7.3735, 7.3742, 7.3739, 7.3738, 7.3736, 7.3733, 7.3729, 7.3725, 7.3721, 7.3717, 7.3704, 7.37, 7.3709, 7.3714, 7.371, 7.3717, 7.3724, 7.3721, 7.3739, 7.3767, 7.3764, 7.3772, 7.3768, 7.3764, 7.3762, 7.3768, 7.3775, 7.3782, 7.3779, 7.3775, 7.3771, 7.3779, 7.3787, 7.3775, 7.3771, 7.3767, 7.3764, 7.3771, 7.3768, 7.3764, 7.3771, 7.3778, 7.3775, 7.3771, 7.378, 7.3776, 7.3773, 7.3769, 7.3766, 7.3763, 7.3771, 7.3767, 7.3768, 7.3803, 7.3811, 7.3807, 7.3804, 7.38, 7.3796, 7.3793, 7.379, 7.3789, 7.3798, 7.3795, 7.3801, 7.3798, 7.3805, 7.3803, 7.38, 7.3796, 7.3792, 7.3788, 7.3784, 7.3835, 7.3832, 7.3828, 7.3824, 7.382, 7.3818, 7.3815, 7.3811, 7.3807, 7.3803, 7.38, 7.3797, 7.3793, 7.3801, 7.3797, 7.3804, 7.3802, 7.3798, 7.3806, 7.3803, 7.3802, 7.3799, 7.3813, 7.3811, 7.3809, 7.3806, 7.3805, 7.3803, 7.3791, 7.3791, 7.3789, 7.3786, 7.3782, 7.3779, 7.3765, 7.3764, 7.376, 7.3756, 7.3763, 7.3759, 7.3756, 7.3743, 7.374, 7.375, 7.3769, 7.3767, 7.3767, 7.3766, 7.3762, 7.3758, 7.3755, 7.3753, 7.3753, 7.375, 7.3757, 7.3754, 7.3752, 7.375, 7.3746, 7.3744, 7.3747, 7.3754, 7.375, 7.3746, 7.3733, 7.373, 7.3738, 7.3734, 7.373, 7.3738, 7.3746, 7.3742, 7.3749, 7.3747, 7.3744, 7.375, 7.3748, 7.3744, 7.374, 7.3737, 7.3733, 7.373, 7.3727, 7.3725, 7.3722, 7.3719, 7.3715, 7.3713, 7.3723, 7.3719, 7.3716, 7.3716, 7.3713, 7.3709, 7.3705, 7.3703, 7.3702, 7.3699, 7.3696, 7.3693, 7.37, 7.3709, 7.3705, 7.3701, 7.3697, 7.3694, 7.3692, 7.369, 7.3688, 7.3686, 7.3683, 7.3679, 7.3685, 7.3682, 7.3689, 7.3685, 7.3683, 7.3679, 7.3719, 7.3715, 7.3713, 7.3709, 7.3706, 7.3693, 7.3689, 7.3687, 7.3683, 7.3679, 7.3676, 7.3683, 7.3681, 7.3677, 7.3706, 7.3704, 7.37, 7.3697, 7.3693, 7.369, 7.3686, 7.3683, 7.3682, 7.3679, 7.3678, 7.3674, 7.3681, 7.3668, 7.3664, 7.366, 7.3656, 7.3652, 7.3649, 7.3646, 7.3642, 7.3652, 7.3648, 7.3646, 7.3642, 7.3639, 7.3637, 7.3644, 7.364, 7.3637, 7.3643, 7.3641, 7.3637, 7.3635, 7.3631, 7.3629, 7.3625, 7.3622, 7.3618, 7.3625, 7.3654, 7.3651, 7.3647, 7.3645, 7.3643, 7.364, 7.3648, 7.3636, 7.3635, 7.3631, 7.3627, 7.3624, 7.362, 7.3627, 7.3623, 7.362, 7.3625, 7.3621, 7.3618, 7.3615, 7.3614, 7.3612, 7.3609, 7.3605, 7.3601, 7.3608, 7.3616, 7.3604, 7.3612, 7.361, 7.3606, 7.3614, 7.362, 7.3618, 7.3625, 7.3627, 7.3624, 7.3623, 7.362, 7.3617, 7.3649, 7.3658, 7.3655, 7.3651, 7.367, 7.3677, 7.3685, 7.3681, 7.3678, 7.3684, 7.3681, 7.3679, 7.3678, 7.3685, 7.3681, 7.3679, 7.3676, 7.3672, 7.3669, 7.3667, 7.3667, 7.3655, 7.3651, 7.3648, 7.3644, 7.3641, 7.3638, 7.3645, 7.3643, 7.364, 7.3638, 7.3638, 7.3634, 7.364, 7.3627, 7.3634, 7.3631, 7.3628, 7.3626, 7.3623, 7.3619, 7.3618, 7.3615, 7.3612, 7.3615, 7.3612, 7.3609, 7.3615, 7.3612, 7.362, 7.3617, 7.3624, 7.3621, 7.3628, 7.3635, 7.3632, 7.3628, 7.3615, 7.3612, 7.3608, 7.3605, 7.3601, 7.3608, 7.3604, 7.3603, 7.3664, 7.3671, 7.3669, 7.3686, 7.3676, 7.3672, 7.3669, 7.3669, 7.3665, 7.3667, 7.3685, 7.3681, 7.3677, 7.3684, 7.369, 7.3686, 7.3684, 7.368, 7.3677, 7.3674, 7.3681, 7.3681, 7.3687, 7.3685, 7.3682, 7.368, 7.3676, 7.3673, 7.368, 7.3676, 7.3674, 7.3671, 7.3668, 7.3666, 7.3673, 7.367, 7.3668, 7.3665, 7.3661, 7.3659, 7.3657, 7.3653, 7.365, 7.3656, 7.3654, 7.3642, 7.3648, 7.3656, 7.3654, 7.365, 7.3657, 7.3653, 7.366, 7.3656, 7.3654, 7.365, 7.3655, 7.3661, 7.3659, 7.367, 7.3669, 7.3668, 7.3664, 7.3683, 7.369, 7.3687, 7.3694, 7.3691, 7.3698, 7.3694, 7.369, 7.3697, 7.3703, 7.3699, 7.3696, 7.3703, 7.3699, 7.3687, 7.3691, 7.3689, 7.3678, 7.3674, 7.367, 7.3668, 7.3664, 7.3661, 7.3659, 7.3656, 7.3662, 7.366, 7.3658, 7.3654, 7.365, 7.3648, 7.3644, 7.364, 7.3638, 7.3634, 7.3631, 7.3638, 7.3634, 7.364, 7.3637, 7.3634, 7.3632, 7.3638, 7.3661, 7.3659, 7.3657, 7.3654, 7.3675, 7.3671, 7.3669, 7.3666, 7.3663, 7.366, 7.3667, 7.3673, 7.3661, 7.3668, 7.3666, 7.3664, 7.3662, 7.3658, 7.3656, 7.3653, 7.365, 7.3657, 7.3664, 7.3661, 7.3668, 7.3665, 7.3661, 7.3658, 7.3664, 7.366, 7.3657, 7.3653, 7.3659, 7.3655, 7.3673, 7.3684, 7.368, 7.3676, 7.3673, 7.3661, 7.3667, 7.3674, 7.3671, 7.3668, 7.3665, 7.3671, 7.3669, 7.3667, 7.368, 7.3677, 7.3683, 7.368, 7.3706, 7.3704, 7.3702, 7.3692, 7.369, 7.3697, 7.3693, 7.3681, 7.3677, 7.3673, 7.3673, 7.3671, 7.367, 7.3676, 7.3675, 7.3675, 7.3671, 7.3677, 7.3683, 7.3681, 7.3678, 7.3666, 7.3664, 7.3661, 7.3667, 7.3663, 7.3671, 7.3667, 7.3666, 7.3663, 7.3659, 7.3667, 7.3663, 7.3661, 7.3667, 7.3663, 7.3662, 7.367, 7.3667, 7.3664, 7.3681, 7.3687, 7.3683, 7.3681, 7.369, 7.3686, 7.3692, 7.369, 7.3688, 7.3686, 7.3686, 7.3692, 7.3689, 7.3687, 7.3683, 7.3681, 7.3677, 7.3673, 7.367, 7.367, 7.3669, 7.3667, 7.3666, 7.3663, 7.366, 7.3658, 7.3656, 7.3663, 7.3671, 7.3678, 7.3684, 7.3682, 7.3681, 7.3679, 7.3677, 7.3683, 7.3689, 7.3686, 7.3706, 7.3726, 7.3714, 7.3711, 7.3711, 7.3723, 7.3785, 7.3781, 7.3779, 7.381, 7.381, 7.3806, 7.3803, 7.3802, 7.3798, 7.3794, 7.3791, 7.3789, 7.3786, 7.3783, 7.379, 7.3787, 7.3783, 7.378, 7.3777, 7.3774, 7.3771, 7.3816, 7.3812, 7.3811, 7.3808, 7.3805, 7.3793, 7.3789, 7.3787, 7.3816, 7.3813, 7.381, 7.3819, 7.3816, 7.3822, 7.3819, 7.3815, 7.3803, 7.3809, 7.3805, 7.3813, 7.3802, 7.3798, 7.3797, 7.3804, 7.3793, 7.3782, 7.3779, 7.3778, 7.3775, 7.3772, 7.3776, 7.3774, 7.378, 7.3777, 7.3775, 7.3771, 7.3769, 7.3775, 7.3772, 7.3768, 7.3766, 7.3762, 7.3769, 7.3768, 7.3766, 7.3772, 7.3787, 7.3798, 7.3795, 7.3792, 7.379, 7.379, 7.3787, 7.3796, 7.3792, 7.3791, 7.3789, 7.3786, 7.3783, 7.3776, 7.3772, 7.3778, 7.3776, 7.3774, 7.3771, 7.3769, 7.3767, 7.3764, 7.3762, 7.3759, 7.3757, 7.3763, 7.376, 7.3756, 7.3753, 7.3751, 7.374, 7.3731, 7.3748, 7.3751, 7.3748, 7.3739, 7.3737, 7.3734, 7.3731, 7.3728, 7.3724, 7.372, 7.3726, 7.373, 7.3726, 7.3723, 7.372, 7.3718, 7.3717, 7.3715, 7.3751, 7.3761, 7.3765, 7.3762, 7.3768, 7.3764, 7.3771, 7.3768, 7.3764, 7.376, 7.3768, 7.3765, 7.3763, 7.376, 7.3766, 7.3762, 7.3758, 7.3755, 7.3761, 7.3758, 7.3764, 7.376, 7.3758, 7.3754, 7.3752, 7.3749, 7.3745, 7.3743, 7.3749, 7.3745, 7.3742, 7.3739, 7.3745, 7.3743, 7.374, 7.3738, 7.3745, 7.3733, 7.373, 7.3727, 7.3733, 7.3723, 7.3729, 7.3726, 7.3723, 7.3724, 7.3731, 7.3719, 7.3708, 7.3705, 7.3702, 7.3701, 7.369, 7.3689, 7.3687, 7.369, 7.3696, 7.3693, 7.3691, 7.3718, 7.3724, 7.3721, 7.3737, 7.3734, 7.373, 7.3726, 7.3722, 7.3719, 7.3716, 7.3714, 7.372, 7.3727, 7.3724, 7.3722, 7.3723, 7.372, 7.3716, 7.3714, 7.3712, 7.3709, 7.3717, 7.3715, 7.3717, 7.3715, 7.3713, 7.371, 7.3716, 7.3713, 7.3711, 7.3708, 7.3707, 7.3705, 7.3711, 7.3707, 7.3703, 7.3702, 7.3698, 7.3695, 7.3691, 7.3698, 7.3705, 7.3711, 7.3708, 7.3704, 7.3701, 7.3707, 7.3703, 7.3701, 7.3708, 7.3705, 7.3693, 7.369, 7.3696, 7.3702, 7.3707, 7.3705, 7.3701, 7.3697, 7.3693, 7.3699, 7.3698, 7.3704, 7.3701, 7.3697, 7.3693, 7.37, 7.3707, 7.3779, 7.3775, 7.3772, 7.3778, 7.3783, 7.378, 7.3791, 7.3807, 7.3804, 7.3809, 7.3807, 7.3805, 7.3805, 7.3802, 7.381, 7.3807, 7.3805, 7.3823, 7.382, 7.3826, 7.3823, 7.3824, 7.383, 7.3828, 7.3826, 7.3824, 7.3829, 7.3826, 7.3833, 7.383, 7.3847, 7.3845, 7.3842, 7.3839, 7.3842, 7.3839, 7.3837, 7.3834, 7.3823, 7.382, 7.3819, 7.3831, 7.383, 7.3836, 7.3833, 7.3832, 7.3838, 7.3834, 7.3832, 7.3829, 7.3835, 7.3844, 7.3833, 7.383, 7.3827, 7.3833, 7.384, 7.3839, 7.3836, 7.3833, 7.383, 7.3828, 7.3825, 7.3822, 7.3819, 7.3816, 7.3813, 7.3819, 7.3817, 7.3815, 7.3813, 7.3809, 7.3815, 7.3821, 7.3833, 7.3838, 7.3836, 7.3834, 7.3839, 7.3836, 7.3833, 7.3829, 7.3826, 7.3822, 7.382, 7.3818, 7.3817, 7.3831, 7.3828, 7.3835, 7.3832, 7.3831, 7.3828, 7.3825, 7.3822, 7.3819, 7.3817, 7.3814, 7.381, 7.3807, 7.3806, 7.3812, 7.3809, 7.3808, 7.3814, 7.3811, 7.3808, 7.3806, 7.3812, 7.3809, 7.3806, 7.3804, 7.3802, 7.3808, 7.3804, 7.381, 7.3807, 7.3805, 7.3803, 7.3799, 7.3796, 7.3795, 7.3793, 7.379, 7.3787, 7.3784, 7.3789, 7.3786, 7.3783, 7.378, 7.3777, 7.3783, 7.378, 7.3777, 7.3783, 7.3779, 7.3785, 7.379, 7.3788, 7.3786, 7.3783, 7.378, 7.3777, 7.3773, 7.3778, 7.3774, 7.377, 7.3766, 7.3764, 7.3787, 7.3794, 7.3792, 7.3789, 7.3794, 7.3803, 7.3794, 7.3787, 7.3785, 7.3797, 7.3794, 7.379, 7.3789, 7.3796, 7.3793, 7.379, 7.3788, 7.3786, 7.3784, 7.3781, 7.3779, 7.3777, 7.3773, 7.3779, 7.3769, 7.3776, 7.3773, 7.377, 7.3768, 7.3767, 7.3773, 7.377, 7.3767, 7.3773, 7.3772, 7.3762, 7.3761, 7.3767, 7.3766, 7.3774, 7.3772, 7.3769, 7.3766, 7.3765, 7.3763, 7.3761, 7.3759, 7.3757, 7.3763, 7.3769, 7.3768, 7.3768, 7.3767, 7.3765, 7.3763, 7.3761, 7.3767, 7.3764, 7.3762, 7.3759, 7.3758, 7.3754, 7.3752, 7.3759, 7.3756, 7.3754, 7.3753, 7.375, 7.3756, 7.3762, 7.3759, 7.3774, 7.378, 7.3787, 7.3793, 7.3799, 7.3804, 7.3801, 7.3799, 7.3796, 7.3793, 7.3794, 7.3808, 7.3819, 7.3816, 7.3822, 7.3819, 7.3816, 7.3817, 7.3818, 7.3825, 7.3822, 7.3819, 7.3818, 7.3816, 7.3814, 7.382, 7.3834, 7.3832, 7.3829, 7.3828, 7.3825, 7.3822, 7.3828, 7.3826, 7.3823, 7.3823, 7.3829, 7.3828, 7.3826, 7.3825, 7.3824, 7.3824, 7.3822, 7.3827, 7.3823, 7.3821, 7.3828, 7.3826, 7.3831, 7.3837, 7.3844, 7.3841, 7.3842, 7.384, 7.3839, 7.3837, 7.3834, 7.3831, 7.3828, 7.3834, 7.3831, 7.3837, 7.3842, 7.3839, 7.3836, 7.3841, 7.3847, 7.3844, 7.3841, 7.3847, 7.3852, 7.3859, 7.3856, 7.3862, 7.3869, 7.3866, 7.3872, 7.3869, 7.3866, 7.3873, 7.3871, 7.3907, 7.3907, 7.3904, 7.391, 7.3916, 7.3913, 7.3909, 7.3906, 7.3912, 7.3909, 7.3906, 7.3903, 7.3901, 7.3897, 7.3902, 7.3899, 7.3905, 7.3912, 7.3909, 7.3928, 7.3925, 7.3922, 7.3919, 7.3926, 7.3923, 7.392, 7.3926, 7.3923, 7.3922, 7.3919, 7.3916, 7.3914, 7.392, 7.3925, 7.3922, 7.3919, 7.3917, 7.3914, 7.392, 7.3926, 7.3932, 7.3937, 7.3943, 7.3942, 7.3947, 7.3945, 7.3942, 7.3948, 7.3945, 7.3943, 7.395, 7.3947, 7.3944, 7.3941, 7.3939, 7.3936, 7.3933, 7.3947, 7.3952, 7.3958, 7.3955, 7.3954, 7.3945, 7.3942, 7.3939, 7.3936, 7.3935, 7.3941, 7.3947, 7.3944, 7.3945, 7.3941, 7.3947, 7.3945, 7.3942, 7.3939, 7.3936, 7.3934, 7.3931, 7.3928, 7.3925, 7.3949, 7.3955, 7.396, 7.3957, 7.3954, 7.3952, 7.395, 7.3981, 7.3988, 7.3984, 7.3981, 7.3978, 7.3976, 7.3974, 7.3979, 7.3976, 7.3981, 7.3978, 7.3975, 7.3981, 7.397], '192.168.122.111': [5.5203, 5.7406, 5.6441, 5.5844, 5.5586, 5.5335, 4.8352, 4.9926, 5.0299, 5.4073, 5.4008, 5.4405, 5.4289, 5.9474, 5.9114, 6.2096, 6.1824, 6.1345, 6.4143, 6.6354, 6.5804, 6.778, 6.7236, 6.688, 6.8543, 6.7992, 6.7627, 6.7314, 6.5167, 6.6588, 6.6297, 6.6128, 6.5766, 6.6963, 6.6669, 6.6449, 6.6209, 6.5968, 6.5719, 6.6955, 6.7919, 6.767, 6.7552, 6.8534, 6.8314, 6.7083, 6.6859, 6.668, 6.7526, 6.7308, 6.7043, 6.6852, 6.6634, 6.6415, 6.6339, 6.619, 6.6038, 6.4987, 6.4876, 6.4709, 6.4513, 6.4309, 6.419, 6.4199, 6.4042, 6.4049, 6.3982, 6.3819, 6.3731, 6.3651, 6.3743, 6.5072, 6.5787, 6.573, 6.5668, 6.5506, 6.54, 6.4638, 6.4546, 6.4465, 6.4371, 6.4297, 6.4181, 6.4194, 6.4276, 6.4178, 6.4723, 6.5222, 6.6361, 6.7104, 6.7032, 6.6885, 6.6746, 6.7226, 6.7088, 6.7359, 6.7561, 6.7501, 6.7461, 6.7349, 6.7892, 6.7313, 6.7756, 6.7607, 6.718, 6.715, 6.7528, 6.7397, 6.7432, 6.7336, 6.7709, 6.8075, 6.8483, 6.8347, 6.8272, 6.8613, 6.8533, 6.8474, 6.8428, 6.8303, 6.9054, 6.8931, 6.9688, 6.9975, 7.0395, 7.0479, 7.0392, 7.027, 7.0135, 7.0011, 6.9522, 6.9423, 6.934, 6.9635, 6.9513, 6.9493, 6.9422, 6.9992, 6.9872, 6.9751, 6.9638, 6.9881, 7.0135, 7.009, 7.0844, 7.0715, 7.0603, 7.0486, 7.0402, 7.0318, 7.0278, 7.0501, 7.0727, 7.0618, 7.0518, 7.0116, 7.0018, 6.9971, 6.986, 6.9791, 7.0184, 7.042, 7.1309, 7.1661, 7.2176, 7.2403, 7.2377, 7.2418, 7.2598, 7.2514, 7.2406, 7.2468, 7.2458, 7.2354, 7.2655, 7.3438, 7.3058, 7.2947, 7.2876, 7.2806, 7.273, 7.2641, 7.2536, 7.2734, 7.268, 7.2595, 7.2504, 7.2407, 7.2412, 7.2323, 7.2262, 7.2671, 7.2905, 7.2814, 7.2719, 7.2906, 7.3083, 7.2988, 7.2892, 7.2816, 7.2736, 7.291, 7.2852, 7.2569, 7.2481, 7.2444, 7.2376, 7.2339, 7.2309, 7.2247, 7.2287, 7.2198, 7.2116, 7.2277, 7.2451, 7.2617, 7.2539, 7.2254, 7.2171, 7.2137, 7.2108, 7.2274, 7.2926, 7.3243, 7.2991, 7.3133, 7.3057, 7.2969, 7.2904, 7.2987, 7.3334, 7.3329, 7.3264, 7.3191, 7.3128, 7.3044, 7.2987, 7.2901, 7.283, 7.2752, 7.2689, 7.2953, 7.2871, 7.2807, 7.278, 7.2924, 7.2859, 7.2783, 7.2746, 7.2667, 7.2806, 7.2726, 7.286, 7.2805, 7.2725, 7.2653, 7.278, 7.2714, 7.2661, 7.2587, 7.2567, 7.2514, 7.2441, 7.2365, 7.2486, 7.2634, 7.2768, 7.2695, 7.2828, 7.2779, 7.2905, 7.2837, 7.2769, 7.2696, 7.2636, 7.2565, 7.2695, 7.2638, 7.314, 7.3074, 7.3019, 7.295, 7.288, 7.2831, 7.2777, 7.2711, 7.266, 7.2615, 7.2544, 7.2525, 7.2479, 7.2605, 7.2561, 7.2518, 7.2458, 7.2411, 7.235, 7.2288, 7.2235, 7.2174, 7.2136, 7.2108, 7.2051, 7.1988, 7.1947, 7.2065, 7.2021, 7.2011, 7.1955, 7.2074, 7.2017, 7.1964, 7.1905, 7.1855, 7.1815, 7.1765, 7.1762, 7.1889, 7.1831, 7.1854, 7.197, 7.1919, 7.1872, 7.1823, 7.2192, 7.2153, 7.2122, 7.212, 7.207, 7.2365, 7.232, 7.229, 7.2237, 7.2205, 7.2153, 7.2105, 7.2076, 7.2079, 7.2032, 7.1982, 7.195, 7.2029, 7.1988, 7.21, 7.2048, 7.1998, 7.1991, 7.1944, 7.189, 7.1843, 7.1941, 7.1887, 7.1845, 7.1806, 7.1771, 7.1734, 7.1831, 7.1939, 7.2041, 7.1997, 7.1944, 7.1909, 7.1864, 7.1681, 7.1733, 7.1702, 7.1656, 7.1631, 7.159, 7.1541, 7.1535, 7.1544, 7.1498, 7.1595, 7.1556, 7.1508, 7.1599, 7.1555, 7.1851, 7.1939, 7.1897, 7.1866, 7.1965, 7.1922, 7.1883, 7.1834, 7.1783, 7.1737, 7.1702, 7.1796, 7.1949, 7.2112, 7.2102, 7.2255, 7.221, 7.2346, 7.2301, 7.2267, 7.2231, 7.2193, 7.2147, 7.2107, 7.2063, 7.2016, 7.199, 7.2069, 7.2025, 7.2114, 7.2077, 7.2032, 7.199, 7.1944, 7.1898, 7.1877, 7.1967, 7.1945, 7.1915, 7.1876, 7.1836, 7.1801, 7.1756, 7.1963, 7.1932, 7.1893, 7.1852, 7.1809, 7.1888, 7.1976, 7.2052, 7.2023, 7.2103, 7.2064, 7.2145, 7.212, 7.2082, 7.2037, 7.2008, 7.1988, 7.1946, 7.1908, 7.1867, 7.1839, 7.1805, 7.1773, 7.1735, 7.1722, 7.1805, 7.1777, 7.1851, 7.1808, 7.18, 7.1768, 7.1916, 7.1888, 7.1984, 7.1967, 7.2064, 7.2033, 7.2006, 7.2085, 7.2057, 7.2019, 7.1981, 7.206, 7.2134, 7.199, 7.2064, 7.2034, 7.2003, 7.1965, 7.1924, 7.1893, 7.177, 7.1637, 7.1612, 7.1594, 7.1682, 7.1647, 7.1512, 7.1493, 7.1574, 7.1541, 7.1625, 7.1596, 7.1672, 7.1639, 7.1507, 7.1471, 7.1543, 7.1526, 7.1498, 7.1365, 7.1331, 7.1297, 7.1271, 7.1238, 7.1204, 7.117, 7.1136, 7.1206, 7.1186, 7.1449, 7.1413, 7.1399, 7.1363, 7.1327, 7.1294, 7.1273, 7.1244, 7.1122, 7.1197, 7.1178, 7.1254, 7.1229, 7.1195, 7.1182, 7.1156, 7.1059, 7.1033, 7.1002, 7.0981, 7.0858, 7.0733, 7.0811, 7.0786, 7.0767, 7.0751, 7.0799, 7.0875, 7.0857, 7.0835, 7.0822, 7.0794, 7.0871, 7.0935, 7.1005, 7.1077, 7.1168, 7.1141, 7.111, 7.1083, 7.1064, 7.1042, 7.1115, 7.1101, 7.1077, 7.1375, 7.1471, 7.1439, 7.1414, 7.1294, 7.138, 7.1351, 7.1317, 7.1376, 7.1342, 7.131, 7.1291, 7.1283, 7.1265, 7.1239, 7.1207, 7.1192, 7.1166, 7.1142, 7.122, 7.1198, 7.1174, 7.1152, 7.1228, 7.1287, 7.1254, 7.1322, 7.1306, 7.1284, 7.1264, 7.1255, 7.1226, 7.12, 7.126, 7.1335, 7.1321, 7.1292, 7.126, 7.132, 7.1304, 7.1281, 7.1252, 7.131, 7.1281, 7.126, 7.1233, 7.1302, 7.1274, 7.1337, 7.1322, 7.1294, 7.1277, 7.1339, 7.1314, 7.1382, 7.1374, 7.1433, 7.1406, 7.1299, 7.1273, 7.1258, 7.1237, 7.1211, 7.1122, 7.119, 7.1086, 7.1055, 7.1025, 7.1001, 7.0972, 7.0954, 7.093, 7.0997, 7.0969, 7.0953, 7.1018, 7.0995, 7.1061, 7.1037, 7.1014, 7.099, 7.0916, 7.0891, 7.0959, 7.1115, 7.1096, 7.1085, 7.1061, 7.104, 7.1097, 7.1069, 7.1042, 7.1012, 7.1073, 7.1048, 7.1034, 7.1014, 7.0998, 7.0973, 7.0971, 7.0946, 7.092, 7.0899, 7.0874, 7.0848, 7.0822, 7.0803, 7.0785, 7.0758, 7.0741, 7.0718, 7.0692, 7.0667, 7.0643, 7.0618, 7.0591, 7.0566, 7.0786, 7.0842, 7.0825, 7.0805, 7.0781, 7.0836, 7.0912, 7.0893, 7.0873, 7.0863, 7.0918, 7.0908, 7.0891, 7.0799, 7.078, 7.0948, 7.0922, 7.0899, 7.1033, 7.1104, 7.1159, 7.1135, 7.1115, 7.1094, 7.1068, 7.1121, 7.1115, 7.1117, 7.1173, 7.1147, 7.1201, 7.1251, 7.1225, 7.12, 7.1248, 7.123, 7.1204, 7.1179, 7.1183, 7.1164, 7.119, 7.119, 7.1189, 7.1242, 7.1295, 7.1284, 7.1345, 7.1326, 7.133, 7.1382, 7.1405, 7.1382, 7.1358, 7.1343, 7.1321, 7.1299, 7.1281, 7.1256, 7.131, 7.1296, 7.1275, 7.1338, 7.1384, 7.1359, 7.1415, 7.1467, 7.1449, 7.1573, 7.1481, 7.1464, 7.1526, 7.1569, 7.1617, 7.1595, 7.1706, 7.168, 7.1655, 7.163, 7.1755, 7.195, 7.1932, 7.1978, 7.2027, 7.2007, 7.1987, 7.1972, 7.2093, 7.2141, 7.2053, 7.203, 7.2011, 7.2128, 7.2109, 7.2047, 7.2023, 7.2002, 7.1977, 7.196, 7.195, 7.1924, 7.1923, 7.1902, 7.2109, 7.2168, 7.2226, 7.2269, 7.2248, 7.2225, 7.2303, 7.2292, 7.2205, 7.2187, 7.2235, 7.2218, 7.2238, 7.2286, 7.2338, 7.2316, 7.2293, 7.2269, 7.2247, 7.2237, 7.2212, 7.2206, 7.2183, 7.2229, 7.2212, 7.2201, 7.2184, 7.2169, 7.2217, 7.2264, 7.2311, 7.2288, 7.2204, 7.2202, 7.2206, 7.2183, 7.2166, 7.2144, 7.2187, 7.2163, 7.2232, 7.221, 7.2188, 7.2174, 7.2225, 7.2269, 7.2246, 7.2225, 7.2268, 7.2267, 7.2185, 7.217, 7.2149, 7.2128, 7.2108, 7.2092, 7.2069, 7.2117, 7.2097, 7.2077, 7.206, 7.2106, 7.2085, 7.2071, 7.2122, 7.2101, 7.2085, 7.2069, 7.2047, 7.2026, 7.1959, 7.2089, 7.2136, 7.2201, 7.2403, 7.2382, 7.2529, 7.2515, 7.2553, 7.253, 7.2507, 7.2485, 7.2587, 7.2566, 7.261, 7.2647, 7.263, 7.261, 7.2653, 7.264, 7.2681, 7.2721, 7.2703, 7.2745, 7.2728, 7.277, 7.2807, 7.2789, 7.2897, 7.2883, 7.2862, 7.2839, 7.2816, 7.2854, 7.2841, 7.2829, 7.2812, 7.2807, 7.28, 7.278, 7.2767, 7.2747, 7.2726, 7.2657, 7.2702, 7.2626, 7.2667, 7.2652, 7.2577, 7.2618, 7.2598, 7.2577, 7.2554, 7.2534, 7.2573, 7.2614, 7.2593, 7.2635, 7.2618, 7.261, 7.2668, 7.2649, 7.2711, 7.2829, 7.281, 7.2857, 7.2837, 7.2815, 7.2799, 7.2779, 7.276, 7.274, 7.2718, 7.2697, 7.268, 7.2666, 7.2706, 7.2689, 7.267, 7.2706, 7.271, 7.2747, 7.2727, 7.2793, 7.2771, 7.2754, 7.2737, 7.2775, 7.2813, 7.2902, 7.2881, 7.2866, 7.2964, 7.2943, 7.298, 7.2962, 7.2943, 7.2927, 7.2922, 7.2901, 7.2889, 7.2874, 7.2853, 7.2892, 7.2872, 7.2855, 7.2837, 7.2875, 7.2853, 7.2832, 7.2813, 7.2887, 7.2873, 7.2854, 7.2889, 7.2883, 7.2861, 7.286, 7.2887, 7.2822, 7.2803, 7.2793, 7.2831, 7.2888, 7.2867, 7.2797, 7.2778, 7.2718, 7.2784, 7.2765, 7.2746, 7.2734, 7.2714, 7.2699, 7.2739, 7.2737, 7.2725, 7.2706, 7.2637, 7.2617, 7.2621, 7.2612, 7.2651, 7.2632, 7.262, 7.2657, 7.2645, 7.2629, 7.2612, 7.2653, 7.2636, 7.2624, 7.2611, 7.2592, 7.2573, 7.2565, 7.2549, 7.2531, 7.2556, 7.2539, 7.2473, 7.2457, 7.2439, 7.2421, 7.2405, 7.2452, 7.2434, 7.2416, 7.2397, 7.2379, 7.2362, 7.2346, 7.2333, 7.2324, 7.236, 7.2342, 7.2324, 7.2357, 7.234, 7.2328, 7.2311, 7.234, 7.2381, 7.2417, 7.2402, 7.2438, 7.2477, 7.2512, 7.2493, 7.2476, 7.2458, 7.2442, 7.2477, 7.2529, 7.2564, 7.2552, 7.254, 7.2525, 7.251, 7.2495, 7.2485, 7.2473, 7.2457, 7.2446, 7.2479, 7.2517, 7.2502, 7.2483, 7.2469, 7.2502, 7.2486, 7.2469, 7.2453, 7.2487, 7.2471, 7.2458, 7.244, 7.2421, 7.2405, 7.2391, 7.2375, 7.2359, 7.2341, 7.2324, 7.2315, 7.2356, 7.2342, 7.2329, 7.2369, 7.2405, 7.2386, 7.2371, 7.2403, 7.2396, 7.2429, 7.2411, 7.2449, 7.2483, 7.2465, 7.25, 7.2482, 7.2514, 7.2496, 7.2568, 7.2556, 7.2539, 7.2521, 7.2508, 7.249, 7.2473, 7.2456, 7.2441, 7.2432, 7.2419, 7.2401, 7.2389, 7.2421, 7.2409, 7.2442, 7.2429, 7.2413, 7.2399, 7.2384, 7.2367, 7.24, 7.2383, 7.2367, 7.2396, 7.2379, 7.2366, 7.235, 7.2338, 7.2368, 7.2352, 7.2338, 7.2371, 7.2406, 7.2389, 7.2378, 7.2368, 7.2402, 7.2389, 7.2377, 7.2359, 7.2345, 7.2337, 7.2417, 7.2448, 7.2432, 7.2469, 7.2465, 7.2448, 7.2479, 7.2468, 7.2451, 7.2486, 7.2518, 7.255, 7.2534, 7.2521, 7.2512, 7.2542, 7.2576, 7.2568, 7.2556, 7.2539, 7.253, 7.2563, 7.2593, 7.2581, 7.2564, 7.255, 7.2534, 7.2475, 7.2464, 7.245, 7.2443, 7.2427, 7.2454, 7.2445, 7.2475, 7.2463, 7.2447, 7.2431, 7.2418, 7.241, 7.2397, 7.2381, 7.2429, 7.2419, 7.2408, 7.2438, 7.2468, 7.2499, 7.2495, 7.2525, 7.2554, 7.2544, 7.2531, 7.2521, 7.251, 7.25, 7.2486, 7.2471, 7.2502, 7.2491, 7.2478, 7.251, 7.2497, 7.2529, 7.2517, 7.2573, 7.2603, 7.2591, 7.2622, 7.2607, 7.2601, 7.2589, 7.2576, 7.2563, 7.2548, 7.2578, 7.2584, 7.2613, 7.26, 7.2634, 7.2621, 7.265, 7.2686, 7.2714, 7.2709, 7.2696, 7.2679, 7.2708, 7.274, 7.2732, 7.2716, 7.2703, 7.2687, 7.2717, 7.2703, 7.2735, 7.2789, 7.2778, 7.2763, 7.2752, 7.274, 7.277, 7.2756, 7.2746, 7.2761, 7.279, 7.2777, 7.2922, 7.2914, 7.2943, 7.293, 7.2922, 7.2908, 7.294, 7.2972, 7.3057, 7.3043, 7.3075, 7.3062, 7.3089, 7.3075, 7.3065, 7.3093, 7.3081, 7.3068, 7.3053, 7.3048, 7.3077, 7.3062, 7.3093, 7.3078, 7.3109, 7.3138, 7.3127, 7.3112, 7.314, 7.3135, 7.3119, 7.3116, 7.3105, 7.3095, 7.3082, 7.308, 7.3064, 7.3048, 7.3077, 7.3026, 7.3014, 7.3041, 7.2988, 7.2978, 7.2967, 7.2957, 7.2943, 7.2929, 7.2923, 7.295, 7.2935, 7.2965, 7.2953, 7.294, 7.2947, 7.2954, 7.2947, 7.2933, 7.2918, 7.2948, 7.2938, 7.2925, 7.2996, 7.2984, 7.2971, 7.3003, 7.2992, 7.2978, 7.2964, 7.2953, 7.2994, 7.2981, 7.2969, 7.296, 7.2954, 7.2983, 7.2968, 7.2954, 7.294, 7.2927, 7.2914, 7.2985, 7.2974, 7.2961, 7.2949, 7.2933, 7.2919, 7.2908, 7.2901, 7.2889, 7.2878, 7.2863, 7.2853, 7.2842, 7.2838, 7.2824, 7.2846, 7.2831, 7.2823, 7.2851, 7.284, 7.2826, 7.2814, 7.2802, 7.2829, 7.283, 7.2822, 7.2849, 7.2835, 7.282, 7.2856, 7.2842, 7.2868, 7.2854, 7.2883, 7.2907, 7.2894, 7.2889, 7.2875, 7.2864, 7.2853, 7.2842, 7.2831, 7.282, 7.281, 7.2836, 7.2834, 7.2858, 7.2884, 7.2874, 7.2861, 7.2885, 7.2874, 7.2861, 7.2848, 7.2833, 7.2822, 7.2809, 7.28, 7.2791, 7.2776, 7.2762, 7.2755, 7.2741, 7.2731, 7.2724, 7.2756, 7.278, 7.2767, 7.2794, 7.278, 7.2767, 7.2754, 7.278, 7.2766, 7.2752, 7.2743, 7.2732, 7.2769, 7.2758, 7.2745, 7.2698, 7.2685, 7.271, 7.2735, 7.2722, 7.2708, 7.2697, 7.2682, 7.2708, 7.2732, 7.2757, 7.2782, 7.2768, 7.2758, 7.2748, 7.2737, 7.2723, 7.2749, 7.2809, 7.2798, 7.2905, 7.2928, 7.2954, 7.2977, 7.2966, 7.2957, 7.2949, 7.2941, 7.2963, 7.2953, 7.2939, 7.2925, 7.2919, 7.2909, 7.2901, 7.2928, 7.2919, 7.2944, 7.2932, 7.2925, 7.2914, 7.2901, 7.2926, 7.2912, 7.2898, 7.2884, 7.2908, 7.2933, 7.2961, 7.3022, 7.3009, 7.3033, 7.3058, 7.3048, 7.3041, 7.2995, 7.2983, 7.3007, 7.3018, 7.3015, 7.3017, 7.3015, 7.3008, 7.2997, 7.2985, 7.2972, 7.2996, 7.2983, 7.2971, 7.2958, 7.2952, 7.3052, 7.304, 7.3029, 7.3019, 7.3009, 7.2996, 7.2983, 7.2969, 7.2956, 7.2945, 7.2935, 7.2959, 7.2949, 7.2944, 7.2935, 7.2964, 7.295, 7.2938, 7.2928, 7.2917, 7.2872, 7.2861, 7.2848, 7.2835, 7.2822, 7.2811, 7.2798, 7.2785, 7.2771, 7.2759, 7.2753, 7.2746, 7.274, 7.2734, 7.2757, 7.2787, 7.2777, 7.2807, 7.2798, 7.2821, 7.2809, 7.2796, 7.2792, 7.278, 7.2769, 7.2763, 7.2755, 7.2747, 7.2739, 7.2731, 7.2719, 7.2741, 7.2764, 7.2754, 7.2745, 7.2736, 7.2762, 7.2785, 7.2778, 7.2807, 7.283, 7.2817, 7.2809, 7.2797, 7.282, 7.2807, 7.283, 7.2787, 7.2775, 7.2798, 7.2821, 7.281, 7.28, 7.2789, 7.2778, 7.2767, 7.2755, 7.2743, 7.2733, 7.2722, 7.2711, 7.2703, 7.273, 7.272, 7.2742, 7.2733, 7.2758, 7.2749, 7.2771, 7.2795, 7.289, 7.288, 7.2869, 7.2856, 7.2846, 7.2842, 7.2831, 7.299, 7.2979, 7.3002, 7.2989, 7.2981, 7.2969, 7.296, 7.2947, 7.2937, 7.2929, 7.2921, 7.2913, 7.2878, 7.2866, 7.2855, 7.2853, 7.2878, 7.2869, 7.2927, 7.2886, 7.291, 7.2903, 7.2897, 7.2917, 7.2906, 7.2895, 7.2886, 7.2875, 7.2865, 7.2856, 7.2847, 7.2837, 7.2857, 7.2888, 7.2911, 7.2901, 7.2924, 7.2911, 7.2898, 7.289, 7.2878, 7.2866, 7.2857, 7.2877, 7.2897, 7.2919, 7.294, 7.2962, 7.2983, 7.3005, 7.2996, 7.3018, 7.3006, 7.3028, 7.3016, 7.3006, 7.2996, 7.3017, 7.2975, 7.3013, 7.3035, 7.3022, 7.3016, 7.3004, 7.2992, 7.2984, 7.2975, 7.2996, 7.3016, 7.3005, 7.2994, 7.2982, 7.3001, 7.2989, 7.2978, 7.2966, 7.2954, 7.2946, 7.2937, 7.2934, 7.2923, 7.2946, 7.2934, 7.2922, 7.2914, 7.2934, 7.2925, 7.2947, 7.2935, 7.299, 7.3011, 7.3, 7.299, 7.2989, 7.2977, 7.2999, 7.2987, 7.2975, 7.2997, 7.3061, 7.3086, 7.3108, 7.3133, 7.3153, 7.3142, 7.3132, 7.3157, 7.3251, 7.3244, 7.3234, 7.3224, 7.3214, 7.3233, 7.3232, 7.3192, 7.3152, 7.3144, 7.3132, 7.3152, 7.3172, 7.3167, 7.3155, 7.3176, 7.3164, 7.3152, 7.3172, 7.3192, 7.3212, 7.32, 7.322, 7.3214, 7.3235, 7.3224, 7.3242, 7.329, 7.3285, 7.3304, 7.3297, 7.332, 7.3341, 7.3338, 7.3327, 7.3348, 7.3338, 7.336, 7.3357, 7.3377, 7.3417, 7.3473, 7.3502, 7.3491, 7.3481, 7.3522, 7.3511, 7.3529, 7.3563, 7.3553, 7.3582, 7.358, 7.3568, 7.3556, 7.3517, 7.3536, 7.3557, 7.3549, 7.3612, 7.3634, 7.3622, 7.3616, 7.3607, 7.3629, 7.3617, 7.3612, 7.3601, 7.3561, 7.3522, 7.3511, 7.3529, 7.3521, 7.3512, 7.3539, 7.351, 7.3562, 7.3553, 7.3602, 7.3591, 7.3614, 7.3637, 7.3626, 7.3647, 7.3636, 7.3624, 7.3613, 7.3616, 7.3637, 7.3627, 7.3647, 7.3638, 7.3632, 7.362, 7.3609, 7.3628, 7.3645, 7.3675, 7.3762, 7.3752, 7.3771, 7.3759, 7.375, 7.3744, 7.377, 7.3792, 7.3789, 7.3783, 7.3774, 7.3764, 7.3936, 7.3926, 7.3918, 7.3949, 7.3937, 7.396, 7.3954, 7.3943, 7.3932, 7.3925, 7.3995, 7.3958, 7.3959, 7.3976, 7.3965, 7.3928, 7.3917, 7.3906, 7.3927, 7.3916, 7.3879, 7.3903, 7.39, 7.3889, 7.3881, 7.387, 7.3889, 7.3851, 7.3865, 7.3857, 7.3847, 7.3867, 7.3857, 7.3874, 7.3896, 7.3914, 7.3948, 7.3939, 7.3986, 7.3978, 7.3971, 7.3993, 7.3983, 7.3975, 7.3964, 7.3927, 7.3916, 7.3906, 7.3895, 7.3912, 7.3917, 7.3907, 7.3927, 7.3918, 7.3911, 7.3931, 7.3924, 7.3917, 7.3905, 7.3896, 7.3859, 7.3852, 7.3815, 7.3808, 7.3797, 7.3787, 7.3807, 7.3827, 7.3845, 7.3834, 7.3825, 7.3816, 7.3778, 7.377, 7.3761, 7.3752, 7.3769, 7.3757, 7.3746, 7.3738, 7.3728, 7.3746, 7.374, 7.374, 7.3703, 7.3697, 7.3693, 7.3686, 7.3676, 7.3695, 7.3685, 7.3675, 7.3665, 7.3656, 7.3646, 7.3648, 7.364, 7.3659, 7.3676, 7.3746, 7.3736, 7.3726, 7.3716, 7.3734, 7.3725, 7.3744, 7.3735, 7.3726, 7.3745, 7.3738, 7.3729, 7.3722, 7.3711, 7.3701, 7.369, 7.3682, 7.3671, 7.366, 7.3678, 7.3697, 7.3688, 7.3678, 7.367, 7.3689, 7.3678, 7.3667, 7.3657, 7.3649, 7.3639, 7.3629, 7.3619, 7.3638, 7.3654, 7.3647, 7.3637, 7.3634, 7.3624, 7.3616, 7.3634, 7.3625, 7.3614, 7.3604, 7.3594, 7.3586, 7.3603, 7.3596, 7.3614, 7.3579, 7.3571, 7.3684, 7.3673, 7.3664, 7.3654, 7.362, 7.361, 7.3612, 7.3631, 7.3654, 7.3646, 7.3664, 7.3654, 7.3647, 7.3638, 7.3656, 7.3673, 7.3695, 7.366, 7.3652, 7.365, 7.3615, 7.3605, 7.3596, 7.3589, 7.358, 7.3573, 7.3563, 7.356, 7.3551, 7.3569, 7.356, 7.3577, 7.3595, 7.3612, 7.3629, 7.3673, 7.3667, 7.3682, 7.3675, 7.3667, 7.3658, 7.3702, 7.3723, 7.374, 7.3758, 7.3749, 7.3767, 7.3811, 7.3828, 7.3874, 7.3864, 7.3854, 7.387, 7.387, 7.386, 7.385, 7.3867, 7.3884, 7.3875, 7.3891, 7.3908, 7.3898, 7.392, 7.391, 7.3902, 7.3894, 7.3911, 7.3902, 7.3919, 7.391, 7.3934, 7.3925, 7.3942, 7.3933, 7.3922, 7.3914, 7.3905, 7.3898, 7.3887, 7.3879, 7.3898, 7.3888, 7.3878, 7.3869, 7.3858, 7.3851, 7.3818, 7.3817, 7.3836, 7.3854, 7.3844, 7.386, 7.3878, 7.387, 7.3887, 7.3876, 7.4024, 7.4019, 7.4011, 7.4, 7.3991, 7.3983, 7.3973, 7.3989, 7.3955, 7.3946, 7.3938, 7.3954, 7.3974, 7.3964, 7.3981, 7.3998, 7.3989, 7.3979, 7.3968, 7.3957, 7.3947, 7.3964, 7.3982, 7.3983, 7.398, 7.3972, 7.3939, 7.3929, 7.3919, 7.3961, 7.3953, 7.3943, 7.3934, 7.3925, 7.3917, 7.3907, 7.3899, 7.3889, 7.3907, 7.3877, 7.3867, 7.3857, 7.3847, 7.384, 7.3832, 7.3824, 7.3918, 7.3909, 7.3899, 7.3889, 7.388, 7.3896, 7.3888, 7.3906, 7.3897, 7.3914, 7.3904, 7.3921, 7.3938, 7.3963, 7.3954, 7.3971, 7.3966, 7.3957, 7.3947, 7.3938, 7.3929, 7.392, 7.3911, 7.3906, 7.3896, 7.3864, 7.3854, 7.3846, 7.3837, 7.3829, 7.3821, 7.3815, 7.3809, 7.3802, 7.3819, 7.3809, 7.3829, 7.3822, 7.3812, 7.3805, 7.3796, 7.3813, 7.3803, 7.382, 7.3811, 7.3828, 7.3845, 7.3836, 7.3853, 7.3844, 7.3838, 7.3831, 7.3821, 7.3815, 7.3805, 7.3796, 7.3811, 7.3802, 7.382, 7.3838, 7.3832, 7.3824, 7.3865, 7.3881, 7.3896, 7.3886, 7.3881, 7.3897, 7.3888, 7.3983, 7.3999, 7.3995, 7.3988, 7.4035, 7.4051, 7.4044, 7.4037, 7.4032, 7.4047, 7.4037, 7.4031, 7.4023, 7.4014, 7.4005, 7.3995, 7.3989, 7.3982, 7.3973, 7.3967, 7.3959, 7.3951, 7.3945, 7.396, 7.3955, 7.3945, 7.3935, 7.3926, 7.3918, 7.3936, 7.3928, 7.392, 7.3915, 7.3898, 7.3891, 7.39, 7.3891, 7.3888, 7.3878, 7.387, 7.3865, 7.3859, 7.3853, 7.3892, 7.391, 7.3928, 7.392, 7.3938, 7.3932, 7.3924, 7.3915, 7.3933, 7.3927, 7.3918, 7.3887, 7.3878, 7.3893, 7.3888, 7.3881, 7.3873, 7.3866, 7.386, 7.3851, 7.3847, 7.3863, 7.3856, 7.3851, 7.3868, 7.3861, 7.3854, 7.3846, 7.384, 7.3831, 7.3823, 7.3815, 7.3809, 7.3804, 7.3797, 7.3766, 7.3785, 7.3776, 7.3767, 7.376, 7.3752, 7.3744, 7.3761, 7.3776, 7.3774, 7.3767, 7.3761, 7.3754, 7.3724, 7.3739, 7.3732, 7.3725, 7.3718, 7.3735, 7.3726, 7.3722, 7.3713, 7.3705, 7.3696, 7.3712, 7.3703, 7.3697, 7.3712, 7.3707, 7.3724, 7.3716, 7.3734, 7.3727, 7.3722, 7.3715, 7.3685, 7.3657, 7.3627, 7.3642, 7.3641, 7.3633, 7.3625, 7.3621, 7.3612, 7.3606, 7.3622, 7.3636, 7.3629, 7.364, 7.3678, 7.3675, 7.3666, 7.3659, 7.365, 7.3641, 7.3634, 7.3625, 7.3616, 7.361, 7.3624, 7.3615, 7.3612, 7.3677, 7.3693, 7.3685, 7.3659, 7.365, 7.3665, 7.3659, 7.365, 7.3643, 7.3639, 7.3633, 7.3648, 7.3662, 7.3655, 7.3647, 7.364, 7.3631, 7.3624, 7.3616, 7.3611, 7.3603, 7.3596, 7.3587, 7.358, 7.3596, 7.3587, 7.3601, 7.3595, 7.361, 7.3627, 7.3618, 7.3611, 7.3625, 7.3641, 7.3657, 7.3671, 7.3662, 7.3656, 7.3671, 7.3673, 7.3665, 7.368, 7.3672, 7.3664, 7.3681, 7.3679, 7.3672, 7.3663, 7.3654, 7.3668, 7.3684, 7.3678, 7.367, 7.3664, 7.3656, 7.365, 7.3642, 7.3635, 7.3628, 7.362, 7.3612, 7.3627, 7.3629, 7.3621, 7.3615, 7.363, 7.3622, 7.3651, 7.3645, 7.3637, 7.3629, 7.3621, 7.3613, 7.3605, 7.3597, 7.3589, 7.3581, 7.3596, 7.3619, 7.3612, 7.3605, 7.3598, 7.3613, 7.3627, 7.3626, 7.3621, 7.3614, 7.3609, 7.3601, 7.3594, 7.3587, 7.358, 7.3572, 7.3588, 7.3581, 7.3574, 7.3566, 7.3561, 7.3576, 7.3595, 7.3567, 7.3581, 7.3596, 7.3588, 7.3603, 7.3595, 7.3587, 7.3601, 7.3595, 7.361, 7.3624, 7.3616, 7.3609, 7.3607, 7.36, 7.3593, 7.3586, 7.358, 7.3572, 7.3568, 7.3561, 7.3553, 7.3547, 7.354, 7.3534, 7.3528, 7.3519, 7.3514, 7.3507, 7.3498, 7.3494, 7.3486, 7.3477, 7.3469, 7.3461, 7.3452, 7.3466, 7.3481, 7.3495, 7.3504, 7.3495, 7.3487, 7.3478, 7.347, 7.3484, 7.3476, 7.349, 7.3482, 7.3496, 7.3489, 7.3462, 7.3473, 7.3467, 7.3461, 7.3511, 7.3524, 7.3547, 7.354, 7.3534, 7.3533, 7.3526, 7.3518, 7.351, 7.3502, 7.3494, 7.3508, 7.3501, 7.3496, 7.349, 7.3482, 7.3474, 7.3466, 7.3463, 7.3477, 7.347, 7.3463, 7.3455, 7.3447, 7.344, 7.3434, 7.343, 7.3443, 7.3435, 7.3427, 7.3419, 7.3411, 7.3535, 7.3528, 7.3523, 7.3536, 7.355, 7.3541, 7.3533, 7.3546, 7.356, 7.3575, 7.3567, 7.3559, 7.3575, 7.3567, 7.3559, 7.3553, 7.3586, 7.3558, 7.3553, 7.3545, 7.3537, 7.355, 7.3542, 7.3536, 7.3529, 7.3523, 7.3515, 7.3531, 7.3527, 7.3519, 7.3514, 7.3487, 7.348, 7.3473, 7.3464, 7.3477, 7.345, 7.3442, 7.3455, 7.3469, 7.3465, 7.346, 7.3457, 7.3449, 7.3441, 7.3433, 7.3427, 7.342, 7.3434, 7.3431, 7.3426, 7.344, 7.3432, 7.3446, 7.3438, 7.3435, 7.343, 7.3443, 7.3436, 7.3431, 7.3405, 7.3419, 7.3414, 7.3407, 7.3404, 7.3401, 7.3398, 7.3394, 7.3393, 7.3385, 7.3399, 7.3392, 7.3385, 7.3378, 7.3371, 7.3363, 7.3377, 7.3372, 7.3365, 7.3358, 7.335, 7.3363, 7.3377, 7.3372, 7.3365, 7.3357, 7.335, 7.3364, 7.3357, 7.3356, 7.3348, 7.334, 7.3333, 7.3327, 7.3321, 7.3315, 7.3309, 7.3303, 7.3316, 7.3309, 7.3302, 7.3297, 7.3315, 7.3329, 7.3322, 7.3317, 7.331, 7.3306, 7.3319, 7.3314, 7.331, 7.3324, 7.3317, 7.3311, 7.3308, 7.3322, 7.3335, 7.333, 7.3322, 7.3336, 7.333, 7.3323, 7.3319, 7.3313, 7.3307, 7.3302, 7.3296, 7.3291, 7.3292, 7.3285, 7.3282, 7.3288, 7.3281, 7.3295, 7.3288, 7.3283, 7.3275, 7.3268, 7.3281, 7.3275, 7.3271, 7.3266, 7.3259, 7.3251, 7.3245, 7.324, 7.3232, 7.3245, 7.3237, 7.3231, 7.3267, 7.3263, 7.3257, 7.3235, 7.3248, 7.3257, 7.3249, 7.3242, 7.3234, 7.3247, 7.324, 7.3233, 7.3208, 7.32, 7.3192, 7.3205, 7.3218, 7.3211, 7.3242, 7.3274, 7.3267, 7.3261, 7.3259, 7.3257, 7.3289, 7.3325, 7.3301, 7.3352, 7.3347, 7.3339, 7.3331, 7.3384, 7.3377, 7.3375, 7.3369, 7.3363, 7.3377, 7.3391, 7.3384, 7.3376, 7.339, 7.3404, 7.3459, 7.3471, 7.3525, 7.3538, 7.3533, 7.3527, 7.3519, 7.3532, 7.353, 7.3552, 7.3576, 7.3588, 7.3582, 7.3595, 7.3608, 7.3604, 7.3601, 7.3593, 7.3612, 7.3608, 7.3602, 7.3617, 7.361, 7.3624, 7.3646, 7.3639, 7.3633, 7.3626, 7.362, 7.3614, 7.3607, 7.3601, 7.3594, 7.3605, 7.3601, 7.3594, 7.3588, 7.3582, 7.3575, 7.3568, 7.3561, 7.3575, 7.3586, 7.3579, 7.3573, 7.3567, 7.3562, 7.3556, 7.355, 7.3543, 7.3556, 7.3549, 7.3569, 7.3562, 7.3557, 7.3551, 7.3526, 7.3528, 7.3504, 7.3506, 7.3501, 7.3544, 7.3523, 7.352, 7.3516, 7.3508, 7.35, 7.3529, 7.3525, 7.352, 7.3512, 7.3506, 7.3499, 7.3492, 7.3488, 7.3484, 7.3516, 7.3512, 7.3507, 7.3503, 7.3498, 7.3492, 7.3484, 7.3497, 7.349, 7.3502, 7.3496, 7.3513, 7.3506, 7.35, 7.3512, 7.3505, 7.3498, 7.3491, 7.349, 7.3483, 7.3483, 7.3572, 7.3567, 7.356, 7.3555, 7.3548, 7.3543, 7.3576, 7.3569, 7.3562, 7.3562, 7.3555, 7.3548, 7.354, 7.3552, 7.3545, 7.3557, 7.3551, 7.3563, 7.3575, 7.3568, 7.3563, 7.3582, 7.3558, 7.357, 7.3581, 7.3575, 7.3569, 7.3604, 7.3615, 7.3611, 7.3616, 7.361, 7.3603, 7.3605, 7.3598, 7.3612, 7.3606, 7.3599, 7.3594, 7.3587, 7.3581, 7.3557, 7.355, 7.3543, 7.3556, 7.355, 7.3562, 7.3555, 7.3548, 7.356, 7.3573, 7.3566, 7.3583, 7.3595, 7.3588, 7.3581, 7.3574, 7.3567, 7.356, 7.3573, 7.3585, 7.3578, 7.3571, 7.3578, 7.359, 7.3604, 7.3597, 7.359, 7.3602, 7.3614, 7.3626, 7.3638, 7.3631, 7.3623, 7.3619, 7.3612, 7.3605, 7.3618, 7.3611, 7.3606, 7.3602, 7.3603, 7.3597, 7.361, 7.3623, 7.3616, 7.361, 7.3603, 7.3596, 7.3591, 7.3588, 7.3581, 7.3579, 7.3591, 7.3584, 7.358, 7.3573, 7.3584, 7.3577, 7.3589, 7.3601, 7.3614, 7.3651, 7.3665, 7.3678, 7.373, 7.3725, 7.372, 7.375, 7.3744, 7.3737, 7.373, 7.3742, 7.3736, 7.3729, 7.3743, 7.3736, 7.3729, 7.3722, 7.3717, 7.3712, 7.3724, 7.3718, 7.3712, 7.3688, 7.3681, 7.3694, 7.3688, 7.3699, 7.3694, 7.367, 7.3682, 7.3676, 7.3669, 7.3663, 7.3677, 7.369, 7.3684, 7.3677, 7.3688, 7.3701, 7.3743, 7.3736, 7.373, 7.3723, 7.3717, 7.3711, 7.3705, 7.3718, 7.3731, 7.3725, 7.3719, 7.3713, 7.3708, 7.3704, 7.3698, 7.3691, 7.3684, 7.3677, 7.3688, 7.3684, 7.368, 7.3673, 7.3669, 7.3662, 7.3673, 7.3684, 7.3678, 7.3672, 7.3701, 7.3695, 7.3726, 7.3719, 7.3695, 7.3693, 7.3689, 7.3682, 7.3676, 7.3671, 7.3681, 7.3674, 7.367, 7.3663, 7.3673, 7.3666, 7.3659, 7.3654, 7.3648, 7.366, 7.366, 7.3655, 7.3666, 7.3659, 7.367, 7.3663, 7.3657, 7.3652, 7.3648, 7.3642, 7.3655, 7.365, 7.3662, 7.3674, 7.3667, 7.366, 7.3655, 7.365, 7.3644, 7.3639, 7.3651, 7.3644, 7.3656, 7.3651, 7.3646, 7.3642, 7.3635, 7.3629, 7.3644, 7.3639, 7.3633, 7.363, 7.3625, 7.3619, 7.3615, 7.3608, 7.3602, 7.3579, 7.3578, 7.3579, 7.3594, 7.3591, 7.3586, 7.358, 7.3576, 7.3589, 7.3583, 7.3645, 7.3656, 7.3634, 7.3612, 7.3605, 7.3598, 7.3629, 7.3641, 7.3638, 7.3634, 7.3667, 7.3661, 7.3657, 7.3653, 7.3665, 7.3659, 7.3653, 7.3649, 7.3662, 7.3673, 7.3667, 7.3678, 7.3671, 7.3668, 7.368, 7.3691, 7.3687, 7.3698, 7.3709, 7.3704, 7.3699, 7.3693, 7.369, 7.3684, 7.3679, 7.3672, 7.3665, 7.3678, 7.3709, 7.3716, 7.3709, 7.3703, 7.3698, 7.3693, 7.371, 7.3688, 7.3682, 7.3677, 7.3673, 7.3685, 7.368, 7.3673, 7.3666, 7.3661, 7.3674, 7.3669, 7.3662, 7.3655, 7.3666, 7.3659, 7.3654, 7.3648, 7.3661, 7.3655, 7.3633, 7.3628, 7.364, 7.3633, 7.3628, 7.3639, 7.3633, 7.3628, 7.3659, 7.3653, 7.3646, 7.3641, 7.3635, 7.3629, 7.3642, 7.3636, 7.3629, 7.3624, 7.3618, 7.363, 7.3624, 7.3636, 7.3632, 7.3627, 7.3639, 7.3634, 7.3646, 7.3641, 7.3635, 7.3632, 7.3626, 7.362, 7.3669, 7.3664, 7.3682, 7.3694, 7.3689, 7.3685, 7.368, 7.3674, 7.3686, 7.3698, 7.3693, 7.3687, 7.3682, 7.3675, 7.3668, 7.368, 7.3675, 7.3672, 7.3667, 7.3663, 7.3674, 7.3669, 7.3664, 7.3659, 7.3654, 7.3647, 7.3641, 7.3653, 7.3647, 7.3641, 7.3619, 7.3613, 7.3608, 7.3737, 7.375, 7.3746, 7.3742, 7.3736, 7.3748, 7.3742, 7.3735, 7.3729, 7.374, 7.3752, 7.375, 7.3744, 7.3739, 7.3752, 7.3763, 7.3742, 7.3737, 7.3749, 7.3761, 7.3739, 7.3735, 7.3731, 7.3741, 7.3737, 7.3748, 7.3759, 7.3771, 7.3766, 7.3779, 7.3773, 7.3766, 7.3777, 7.3773, 7.3767, 7.3763, 7.3757, 7.3788, 7.3805, 7.3801, 7.3796, 7.3807, 7.3805, 7.3798, 7.3793, 7.3788, 7.3789, 7.3786, 7.378, 7.3774, 7.3786, 7.3779, 7.3773, 7.3767, 7.3761, 7.3755, 7.3749, 7.3744, 7.3775, 7.3769, 7.3781, 7.3778, 7.379, 7.3784, 7.3778, 7.3772, 7.3766, 7.3762, 7.3757, 7.375, 7.3761, 7.3755, 7.3748, 7.3742, 7.3737, 7.3749, 7.3759, 7.3755, 7.3803, 7.3815, 7.381, 7.3805, 7.3819, 7.3832, 7.3827, 7.3822, 7.3837, 7.3836, 7.3836, 7.3831, 7.3841, 7.3836, 7.3831, 7.3824, 7.3822, 7.3815, 7.3809, 7.3805, 7.3799, 7.3797, 7.3791, 7.377, 7.3765, 7.3777, 7.3771, 7.3765, 7.3759, 7.3753, 7.3748, 7.3744, 7.3766, 7.376, 7.3754, 7.3749, 7.3745, 7.374, 7.375, 7.3761, 7.3756, 7.375, 7.3747, 7.3741, 7.3736, 7.3735, 7.373, 7.3725, 7.3718, 7.3757, 7.3768, 7.3761, 7.3789, 7.3787, 7.3782, 7.3777, 7.3771, 7.3765, 7.3776, 7.3773, 7.3767, 7.3763, 7.3763, 7.3759, 7.3786, 7.378, 7.3774, 7.3785, 7.3796, 7.379, 7.3784, 7.3796, 7.3807, 7.3801, 7.3812, 7.3807, 7.3802, 7.3796, 7.3777, 7.3771, 7.3766, 7.3778, 7.3772, 7.3766, 7.376, 7.3754, 7.3765, 7.3775, 7.3769, 7.3763, 7.3758, 7.3751, 7.3746, 7.374, 7.3736, 7.3747, 7.3742, 7.3736, 7.373, 7.3741, 7.3739, 7.3737, 7.3731, 7.3742, 7.3736, 7.3732, 7.3744, 7.3739, 7.3751, 7.3745, 7.3741, 7.3752, 7.3748, 7.3744, 7.374, 7.3734, 7.3728, 7.3725, 7.3724, 7.3735, 7.3731, 7.3741, 7.3774, 7.377, 7.378, 7.3774, 7.3784, 7.3778, 7.3788, 7.3782, 7.3779, 7.3773, 7.3787, 7.3787, 7.3799, 7.3811, 7.3808, 7.3817, 7.3812, 7.3807, 7.3802, 7.3797, 7.3792, 7.3787, 7.3782, 7.3794, 7.3805, 7.3802, 7.3796, 7.3792, 7.3789, 7.3785, 7.3781, 7.3775, 7.377, 7.3764, 7.3777, 7.3771, 7.3766, 7.3776, 7.377, 7.3798, 7.3806, 7.38, 7.3795, 7.379, 7.3785, 7.378, 7.3775, 7.3785, 7.3795, 7.3791, 7.3785, 7.3779, 7.3773, 7.3768, 7.3762, 7.3772, 7.3767, 7.3762, 7.3756, 7.3754, 7.3765, 7.3761, 7.3772, 7.3783, 7.3777, 7.3787, 7.3781, 7.3791, 7.3788, 7.3784, 7.3778, 7.3772, 7.3765, 7.3761, 7.3757, 7.3767, 7.3763, 7.3775, 7.377, 7.3782, 7.3778, 7.3772, 7.3769, 7.3764, 7.3775, 7.3771, 7.3766, 7.3778, 7.3774, 7.3768, 7.3763, 7.3759, 7.3754, 7.375, 7.3746, 7.3742, 7.3739, 7.375, 7.3745, 7.3739, 7.3735, 7.373, 7.3741, 7.3751, 7.3762, 7.3756, 7.3752, 7.3746, 7.3741, 7.3751, 7.3782, 7.3765, 7.3762, 7.3757, 7.3752, 7.3746, 7.374, 7.3751, 7.3731, 7.3726, 7.372, 7.3714, 7.3708, 7.3703, 7.3715, 7.3725, 7.3719, 7.3717, 7.3713, 7.3707, 7.372, 7.3731, 7.3728, 7.3724, 7.3705, 7.3715, 7.3725, 7.3721, 7.3717, 7.3711, 7.3706, 7.3687, 7.3697, 7.3695, 7.3705, 7.37, 7.3699, 7.3695, 7.3696, 7.3692, 7.3686, 7.3682, 7.3682, 7.3679, 7.3674, 7.3671, 7.3721, 7.3734, 7.3731, 7.3727, 7.3725, 7.3721, 7.3731, 7.3742, 7.3738, 7.3732, 7.3726, 7.372, 7.37, 7.3681, 7.3666, 7.3662, 7.3656, 7.3639, 7.3633, 7.3628, 7.3637, 7.3632, 7.3641, 7.3635, 7.3646, 7.3641, 7.3635, 7.3629, 7.3626, 7.3623, 7.3678, 7.369, 7.3686, 7.368, 7.3689, 7.367, 7.3666, 7.366, 7.3656, 7.3651, 7.3647, 7.3644, 7.3639, 7.3636, 7.3645, 7.3661, 7.3656, 7.3652, 7.3648, 7.3644, 7.3638, 7.3648, 7.3658, 7.3654, 7.3683, 7.3677, 7.3673, 7.3668, 7.3677, 7.3671, 7.368, 7.3689, 7.3683, 7.3677, 7.3686, 7.368, 7.3675, 7.3656, 7.3661, 7.3657, 7.3667, 7.3662, 7.3656, 7.3651, 7.366, 7.3654, 7.3648, 7.3658, 7.3654, 7.3649, 7.3644, 7.3638, 7.3634, 7.3629, 7.3624, 7.3619, 7.3615, 7.361, 7.3605, 7.3601, 7.36, 7.3596, 7.3606, 7.3602, 7.3612, 7.3608, 7.3605, 7.36, 7.361, 7.3605, 7.3588, 7.3583, 7.3579, 7.3574, 7.3555, 7.3538, 7.3534, 7.3544, 7.3555, 7.355, 7.356, 7.3574, 7.3583, 7.3578, 7.3572, 7.3553, 7.355, 7.3544, 7.3554, 7.3548, 7.3558, 7.3539, 7.3555, 7.3551, 7.3545, 7.3558, 7.3552, 7.3547, 7.3556, 7.3551, 7.3548, 7.3545, 7.3558, 7.3552, 7.3547, 7.3543, 7.3537, 7.352, 7.3515, 7.351, 7.3504, 7.3501, 7.3511, 7.3506, 7.3501, 7.3495, 7.3537, 7.3535, 7.3544, 7.3553, 7.3549, 7.3544, 7.3539, 7.3535, 7.3531, 7.3528, 7.3539, 7.3534, 7.3531, 7.3527, 7.3524, 7.3521, 7.3516, 7.3511, 7.3506, 7.3501, 7.3498, 7.3494, 7.349, 7.35, 7.3495, 7.349, 7.3486, 7.3481, 7.3491, 7.3486, 7.3481, 7.3463, 7.3458, 7.3453, 7.3448, 7.3445, 7.3459, 7.3459, 7.3454, 7.3451, 7.3447, 7.3456, 7.3466, 7.3462, 7.3459, 7.3453, 7.3447, 7.3443, 7.3451, 7.3446, 7.3442, 7.3437, 7.3433, 7.3428, 7.3439, 7.345, 7.3447, 7.3444, 7.3439, 7.345, 7.3445, 7.344, 7.3449, 7.3458, 7.344, 7.3422, 7.3432, 7.3427, 7.3422, 7.3432, 7.3426, 7.3421, 7.3418, 7.3413, 7.3408, 7.3403, 7.3401, 7.3396, 7.3391, 7.3373, 7.3355, 7.3365, 7.3375, 7.337, 7.3379, 7.3375, 7.3358, 7.3354, 7.3349, 7.3343, 7.3338, 7.3347, 7.3345, 7.3341, 7.3337, 7.3333, 7.3342, 7.3337, 7.335, 7.3345, 7.334, 7.3335, 7.3331, 7.3341, 7.3367, 7.3366, 7.336, 7.3361, 7.3346, 7.3341, 7.3336, 7.3387, 7.3382, 7.3391, 7.3385, 7.3395, 7.339, 7.3388, 7.3383, 7.3391, 7.3393, 7.339, 7.3388, 7.3384, 7.3382, 7.3376, 7.3384, 7.3387, 7.3369, 7.3364, 7.3359, 7.3343, 7.3339, 7.3337, 7.3332, 7.3327, 7.3322, 7.3318, 7.3313, 7.331, 7.3306, 7.3301, 7.3283, 7.3298, 7.3292, 7.3289, 7.3284, 7.3279, 7.3274, 7.3271, 7.3266, 7.3263, 7.3266, 7.3261, 7.3256, 7.3242, 7.3238, 7.3235, 7.3231, 7.3227, 7.3223, 7.3207, 7.3202, 7.3197, 7.3206, 7.3229, 7.3224, 7.3219, 7.3228, 7.3237, 7.3248, 7.3243, 7.3252, 7.3261, 7.3272, 7.3281, 7.3263, 7.3258, 7.3253, 7.3249, 7.3245, 7.324, 7.3272, 7.3254, 7.3292, 7.3289, 7.3285, 7.328, 7.3275, 7.327, 7.3279, 7.3287, 7.3284, 7.3294, 7.3298, 7.3295, 7.3291, 7.3286, 7.3308, 7.3303, 7.3312, 7.3307, 7.3303, 7.3298, 7.3294, 7.3276, 7.3271, 7.3266, 7.3261, 7.3256, 7.3251, 7.326, 7.3255, 7.3264, 7.3264, 7.326, 7.3255, 7.3263, 7.326, 7.327, 7.3265, 7.326, 7.327, 7.3265, 7.326, 7.3255, 7.3265, 7.3282, 7.329, 7.3286, 7.3281, 7.3289, 7.3303, 7.3299, 7.3295, 7.3305, 7.3302, 7.3309, 7.3305, 7.3302, 7.3298, 7.3294, 7.329, 7.33, 7.3309, 7.3308, 7.3324, 7.3319, 7.3315, 7.331, 7.3307, 7.3303, 7.3313, 7.3311, 7.332, 7.3315, 7.3311, 7.3306, 7.3302, 7.3298, 7.3323, 7.3318, 7.3313, 7.3308, 7.3308, 7.3304, 7.33, 7.3295, 7.3291, 7.3286, 7.3282, 7.3278, 7.3286, 7.3281, 7.3277, 7.3273, 7.3281, 7.3276, 7.3276, 7.327, 7.3279, 7.3276, 7.3261, 7.3259, 7.3255, 7.3267, 7.3263, 7.3258, 7.3255, 7.3264, 7.3283, 7.3279, 7.3326, 7.335, 7.3377, 7.3406, 7.3414, 7.3409, 7.3418, 7.3413, 7.3409, 7.3404, 7.34, 7.3396, 7.3393, 7.3388, 7.34, 7.3395, 7.339, 7.3399, 7.3395, 7.3391, 7.339, 7.3399, 7.3385, 7.338, 7.3376, 7.3386, 7.3398, 7.3406, 7.3407, 7.3402, 7.3398, 7.3407, 7.3443, 7.3438, 7.3446, 7.3456, 7.3451, 7.346, 7.3455, 7.3464, 7.3472, 7.3467, 7.3462, 7.3458, 7.3454, 7.3449, 7.3444, 7.3453, 7.3449, 7.3457, 7.3453, 7.3448, 7.3444, 7.3427, 7.3436, 7.3431, 7.344, 7.3448, 7.3456, 7.3452, 7.3461, 7.3458, 7.3467, 7.3463, 7.3458, 7.3453, 7.3449, 7.3444, 7.3453, 7.3449, 7.3444, 7.3442, 7.3438, 7.3433, 7.3429, 7.3439, 7.3423, 7.3419, 7.3487, 7.3484, 7.3479, 7.3476, 7.3475, 7.3507, 7.3503, 7.3499, 7.351, 7.3521, 7.3518, 7.3513, 7.3508, 7.3516, 7.3512, 7.3521, 7.353, 7.3525, 7.3521, 7.3516, 7.3512, 7.3507, 7.3503, 7.3499, 7.3495, 7.349, 7.35, 7.3495, 7.349, 7.3485, 7.3494, 7.3489, 7.3484, 7.3479, 7.3475, 7.347, 7.3466, 7.3461, 7.3456, 7.3452, 7.3448, 7.3432, 7.3433, 7.3442, 7.3458, 7.3441, 7.3425, 7.3421, 7.343, 7.3426, 7.3422, 7.3431, 7.3428, 7.3437, 7.3437, 7.3432, 7.3428, 7.3426, 7.3421, 7.3421, 7.3429, 7.3437, 7.3432, 7.3427, 7.3414, 7.341, 7.3419, 7.3415, 7.3411, 7.342, 7.3405, 7.3401, 7.3396, 7.3391, 7.3399, 7.3395, 7.3404, 7.3438, 7.3433, 7.3442, 7.3439, 7.3436, 7.3432, 7.3441, 7.347, 7.3465, 7.3492, 7.3521, 7.3518, 7.3513, 7.3523, 7.3588, 7.3584, 7.3593, 7.3616, 7.3614, 7.361, 7.3608, 7.3604, 7.3628, 7.3638, 7.3633, 7.3646, 7.3643, 7.3639, 7.3647, 7.3642, 7.3639, 7.3639, 7.3648, 7.3645, 7.3642, 7.3638, 7.3646, 7.3643, 7.3639, 7.3634, 7.3618, 7.3616, 7.3611, 7.3606, 7.3608, 7.3606, 7.3615, 7.3638, 7.3635, 7.3631, 7.3628, 7.3676, 7.3675, 7.3672, 7.3668, 7.3664, 7.3672, 7.3667, 7.3662, 7.3657, 7.3653, 7.3649, 7.3644, 7.3661, 7.3669, 7.3665, 7.3661, 7.3657, 7.3652, 7.3647, 7.3645, 7.3653, 7.365, 7.3646, 7.3643, 7.3641, 7.3636, 7.3632, 7.3642, 7.3637, 7.3635, 7.363, 7.3627, 7.3622, 7.3621, 7.3629, 7.3637, 7.3632, 7.3629, 7.3626, 7.3622, 7.362, 7.3631, 7.3629, 7.3625, 7.3621, 7.3617, 7.3616, 7.3613, 7.3609, 7.3617, 7.3613, 7.3609, 7.3617, 7.3626, 7.3624, 7.3635, 7.3619, 7.3604, 7.3612, 7.3607, 7.3602, 7.3597, 7.3581, 7.3576, 7.3571, 7.3567, 7.3577, 7.3585, 7.3589, 7.3585, 7.3569, 7.3553, 7.3561, 7.3578, 7.3574, 7.3571, 7.3567, 7.3563, 7.3558, 7.3554, 7.3552, 7.3562, 7.3557, 7.3542, 7.355, 7.3559, 7.3555, 7.3576, 7.3574, 7.3583, 7.3578, 7.3574, 7.3582, 7.3577, 7.3573, 7.3569, 7.3579, 7.3574, 7.3581, 7.3586, 7.3595, 7.359, 7.3586, 7.3595, 7.359, 7.3586, 7.3581, 7.3577, 7.3573, 7.357, 7.3565, 7.3574, 7.3583, 7.3581, 7.3578, 7.3575, 7.3571, 7.3555, 7.3563, 7.3559, 7.3556, 7.3564, 7.3561, 7.3557, 7.3552, 7.3548, 7.3544, 7.354, 7.3548, 7.3545, 7.3541, 7.3539, 7.3546, 7.3541, 7.3538, 7.3534, 7.3529, 7.3537, 7.3532, 7.3527, 7.3522, 7.353, 7.3528, 7.3525, 7.3521, 7.3517, 7.3513, 7.3499, 7.3494, 7.349, 7.3486, 7.3481, 7.3478, 7.3504, 7.3514, 7.35, 7.3508, 7.3505, 7.35, 7.3495, 7.3491, 7.3487, 7.3483, 7.3496, 7.3492, 7.35, 7.3497, 7.3493, 7.3488, 7.3496, 7.3491, 7.3487, 7.3483, 7.3491, 7.3486, 7.3484, 7.3482, 7.3478, 7.3487, 7.3483, 7.3492, 7.3487, 7.3496, 7.3492, 7.3488, 7.3485, 7.3481, 7.3477, 7.3473, 7.348, 7.3475, 7.347, 7.3467, 7.3452, 7.3448, 7.3444, 7.3439, 7.3423, 7.342, 7.3416, 7.3424, 7.3433, 7.3439, 7.3438, 7.3435, 7.3431, 7.3429, 7.3437, 7.3444, 7.3441, 7.3436, 7.3432, 7.344, 7.3435, 7.3433, 7.3431, 7.3426, 7.3411, 7.3395, 7.339, 7.3399, 7.3406, 7.3402, 7.3397, 7.3394, 7.339, 7.3386, 7.3382, 7.3378, 7.3373, 7.3369, 7.3365, 7.336, 7.3369, 7.3365, 7.3361, 7.3357, 7.3353, 7.3348, 7.3343, 7.3343, 7.3352, 7.335, 7.3358, 7.3367, 7.3363, 7.3371, 7.3366, 7.3374, 7.3369, 7.3364, 7.3362, 7.3357, 7.3354, 7.3352, 7.3352, 7.3361, 7.3346, 7.3342, 7.3339, 7.3348, 7.3345, 7.3353, 7.3349, 7.3345, 7.333, 7.3325, 7.3333, 7.333, 7.3331, 7.3327, 7.3323, 7.3333, 7.3328, 7.3324, 7.3344, 7.3345, 7.3341, 7.3341, 7.3339, 7.3323, 7.3307, 7.3303, 7.3311, 7.333, 7.3327, 7.3323, 7.3331, 7.3339, 7.3335, 7.3343, 7.3328, 7.3325, 7.332, 7.3341, 7.3338, 7.3346, 7.3354, 7.3362, 7.3358, 7.3366, 7.3362, 7.3358, 7.3353, 7.3361, 7.3368, 7.3371, 7.3367, 7.3363, 7.336, 7.3357, 7.3352, 7.3361, 7.3356, 7.3352, 7.3359, 7.3356, 7.3351, 7.3347, 7.3355, 7.3351, 7.3359, 7.3367, 7.3363, 7.3359, 7.3354, 7.3351, 7.3347, 7.3343, 7.3339, 7.3335, 7.3331, 7.3328, 7.3324, 7.3321, 7.3306, 7.333, 7.3326, 7.3322, 7.3327, 7.3334, 7.333, 7.3327, 7.3323, 7.3331, 7.3338, 7.3335, 7.3333, 7.3329, 7.3314, 7.331, 7.3309, 7.3308, 7.334, 7.3335, 7.3343, 7.3339, 7.3372, 7.3378, 7.339, 7.3386, 7.3382, 7.339, 7.3386, 7.3393, 7.3403, 7.3399, 7.3394, 7.3389, 7.3386, 7.3383, 7.339, 7.3397, 7.3404, 7.3412, 7.3408, 7.3405, 7.34, 7.3407, 7.3402, 7.3401, 7.3397, 7.3392, 7.3392, 7.3389, 7.3385, 7.3393, 7.339, 7.3387, 7.3384, 7.3391, 7.3403, 7.34, 7.3397, 7.3404, 7.34, 7.3395, 7.3393, 7.3402, 7.341, 7.3405, 7.3401, 7.341, 7.3406, 7.3404, 7.3402, 7.3398, 7.3394, 7.3402, 7.3398, 7.3395, 7.3391, 7.3388, 7.3385, 7.3381, 7.3378, 7.3379, 7.3387, 7.3385, 7.3392, 7.34, 7.3399, 7.3396, 7.3383, 7.339, 7.3388, 7.3384, 7.338, 7.3376, 7.3372, 7.3369, 7.3366, 7.3364, 7.336, 7.3357, 7.3353, 7.3349, 7.3345, 7.3343, 7.3339, 7.3335, 7.333, 7.3337, 7.3335, 7.333, 7.3327, 7.3323, 7.3308, 7.3304, 7.329, 7.3287, 7.3283, 7.3281, 7.3289, 7.3296, 7.3293, 7.33, 7.3307, 7.3304, 7.33, 7.3296, 7.3292, 7.3288, 7.3284, 7.328, 7.3275, 7.3283, 7.329, 7.3297, 7.3292, 7.3287, 7.3283, 7.3279, 7.3284, 7.3281, 7.3277, 7.3273, 7.3269, 7.3266, 7.3262, 7.3271, 7.3268, 7.3253, 7.325, 7.3246, 7.3243, 7.3241, 7.3227, 7.3223, 7.3219, 7.3227, 7.3223, 7.3231, 7.3228, 7.3226, 7.3222, 7.3219, 7.3205, 7.3201, 7.3198, 7.3183, 7.318, 7.3179, 7.3177, 7.3185, 7.3182, 7.3187, 7.3182, 7.3179, 7.3175, 7.3161, 7.3157, 7.3164, 7.3161, 7.3168, 7.3165, 7.3174, 7.317, 7.3179, 7.3175, 7.3172, 7.318, 7.3188, 7.3185, 7.3185, 7.3181, 7.3178, 7.3175, 7.3173, 7.317, 7.3166, 7.3173, 7.3181, 7.3177, 7.3173, 7.3169, 7.3165, 7.3161, 7.3146, 7.3153, 7.3152, 7.3149, 7.3149, 7.3146, 7.3143, 7.3139, 7.317, 7.3177, 7.3174, 7.317, 7.3167, 7.3163, 7.3159, 7.3155, 7.3175, 7.3172, 7.3168, 7.3164, 7.3186, 7.3182, 7.3192, 7.3188, 7.3194, 7.3218, 7.3215, 7.3212, 7.3208, 7.3205, 7.3212, 7.3208, 7.3205, 7.3201, 7.3198, 7.3196, 7.3193, 7.3189, 7.3185, 7.3181, 7.3167, 7.3171, 7.3179, 7.3178, 7.3174, 7.3182, 7.3204, 7.3211, 7.3222, 7.3229, 7.3226, 7.3233, 7.324, 7.3237, 7.3233, 7.3219, 7.3216, 7.3212, 7.322, 7.3217, 7.3214, 7.3223, 7.3221, 7.3218, 7.3214, 7.321, 7.3218, 7.3216, 7.3212, 7.322, 7.3228, 7.3225, 7.3221, 7.3219, 7.3216, 7.3212, 7.3208, 7.3217, 7.3203, 7.3199, 7.3199, 7.3207, 7.3205, 7.3202, 7.3188, 7.3188, 7.3187, 7.3184, 7.3192, 7.319, 7.3187, 7.3188, 7.3184, 7.3181, 7.3183, 7.3191, 7.3179, 7.3175, 7.3182, 7.3193, 7.3191, 7.3188, 7.3184, 7.3183, 7.318, 7.3179, 7.3176, 7.3173, 7.317, 7.3166, 7.3162, 7.318, 7.3178, 7.3187, 7.3186, 7.3182, 7.3169, 7.3165, 7.3162, 7.3158, 7.3156, 7.3152, 7.3149, 7.3146, 7.3143, 7.314, 7.3136, 7.3133, 7.3129, 7.3128, 7.3136, 7.3144, 7.3141, 7.3127, 7.3123, 7.312, 7.3116, 7.3112, 7.3109, 7.3106, 7.3102, 7.311, 7.3106, 7.3103, 7.3099, 7.3085, 7.3084, 7.308, 7.3076, 7.3073, 7.3069, 7.3069, 7.3077, 7.3073, 7.308, 7.3076, 7.3072, 7.3069, 7.3065, 7.3061, 7.3057, 7.3054, 7.3061, 7.3068, 7.3065, 7.3073, 7.3069, 7.3066, 7.3062, 7.307, 7.3068, 7.3065, 7.3061, 7.3075, 7.3072, 7.307, 7.3066, 7.3063, 7.306, 7.3056, 7.3053, 7.304, 7.3048, 7.3054, 7.3063, 7.307, 7.3066, 7.3062, 7.305, 7.3058, 7.3045, 7.3041, 7.3043, 7.3041, 7.3049, 7.3045, 7.3042, 7.3041, 7.3038, 7.3034, 7.3031, 7.304, 7.3051, 7.3063, 7.3051, 7.3047, 7.3059, 7.306, 7.3056, 7.3052, 7.3048, 7.3055, 7.3052, 7.3049, 7.3035, 7.3084, 7.308, 7.3087, 7.3084, 7.3093, 7.3089, 7.3086, 7.3082, 7.3089, 7.3087, 7.3094, 7.3102, 7.31, 7.3096, 7.3093, 7.309, 7.3098, 7.3096, 7.3093, 7.3091, 7.3088, 7.3085, 7.3082, 7.3079, 7.3075, 7.3072, 7.3069, 7.3067, 7.3064, 7.3082, 7.309, 7.312, 7.3128, 7.3136, 7.3133, 7.314, 7.3149, 7.3156, 7.3152, 7.3148, 7.3144, 7.314, 7.3149, 7.3145, 7.3152, 7.3159, 7.3166, 7.3164, 7.316, 7.3146, 7.3133, 7.3129, 7.3125, 7.3122, 7.3118, 7.3114, 7.3121, 7.3117, 7.3114, 7.3112, 7.3112, 7.3108, 7.3095, 7.3112, 7.3119, 7.3128, 7.3141, 7.3138, 7.3135, 7.3143, 7.3142, 7.314, 7.3137, 7.3135, 7.3131, 7.313, 7.3129, 7.3125, 7.3133, 7.3143, 7.3139, 7.314, 7.3136, 7.3133, 7.3129, 7.3125, 7.3122, 7.3121, 7.3128, 7.3125, 7.3121, 7.3128, 7.3134, 7.3131, 7.3133, 7.313, 7.3117, 7.3113, 7.3127, 7.3158, 7.3155, 7.3151, 7.3148, 7.3148, 7.3147, 7.3143, 7.3139, 7.3136, 7.3132, 7.3128, 7.3125, 7.3121, 7.3128, 7.3125, 7.3122, 7.3118, 7.3115, 7.3112, 7.3119, 7.3126, 7.3122, 7.312, 7.3121, 7.3117, 7.3114, 7.3123, 7.312, 7.3117, 7.3103, 7.31, 7.3108, 7.3106, 7.3102, 7.3099, 7.3096, 7.3093, 7.31, 7.3097, 7.3094, 7.3102, 7.3099, 7.3106, 7.3113, 7.3109, 7.3108, 7.3115, 7.3111, 7.3108, 7.3104, 7.31, 7.3096, 7.3093, 7.3089, 7.3087, 7.3104, 7.3112, 7.3108, 7.3116, 7.3123, 7.3119, 7.3126, 7.3122, 7.3119, 7.3164, 7.316, 7.3156, 7.3152, 7.3149, 7.3157, 7.3153, 7.3159, 7.3166, 7.3162, 7.3158, 7.3154, 7.3161, 7.3157, 7.3164, 7.316, 7.3156, 7.3163, 7.316, 7.3157, 7.3144, 7.3141, 7.3148, 7.315, 7.3147, 7.3143, 7.3141, 7.3137, 7.3133, 7.3129, 7.3125, 7.3131, 7.3127, 7.3124, 7.312, 7.3116, 7.3112, 7.3109, 7.3107, 7.3103, 7.3102, 7.3089, 7.3085, 7.3081, 7.3077, 7.3074, 7.3072, 7.3068, 7.3065, 7.3061, 7.3057, 7.3054, 7.305, 7.3057, 7.3054, 7.3051, 7.3047, 7.3054, 7.3041, 7.3039, 7.3035, 7.3053, 7.3059, 7.3056, 7.3053, 7.306, 7.3056, 7.3063, 7.307, 7.3066, 7.3062, 7.3059, 7.3056, 7.3073, 7.307, 7.3066, 7.3065, 7.3073, 7.3069, 7.3067, 7.3074, 7.307, 7.3077, 7.3075, 7.3071, 7.3068, 7.3065, 7.3052, 7.3048, 7.3048, 7.3044, 7.3041, 7.3037, 7.3044, 7.3031, 7.3027, 7.3015, 7.3022, 7.3019, 7.3015, 7.3011, 7.3007, 7.3003, 7.3, 7.2997, 7.3006, 7.3014, 7.3021, 7.3028, 7.3035, 7.3031, 7.3029, 7.3036, 7.3033, 7.304, 7.3096, 7.3103, 7.3099, 7.3095, 7.3102, 7.3112, 7.3119, 7.3106, 7.3102, 7.3099, 7.3095, 7.3092, 7.3088, 7.3095, 7.3102, 7.3099, 7.3106, 7.3114, 7.3111, 7.3107, 7.3094, 7.309, 7.3087, 7.3084, 7.3081, 7.3078, 7.3075, 7.3072, 7.3069, 7.3066, 7.3063, 7.306, 7.3057, 7.3064, 7.3064, 7.3053, 7.3041, 7.3049, 7.3056, 7.3053, 7.3049, 7.3059, 7.3062, 7.3069, 7.3067, 7.3074, 7.307, 7.3067, 7.3064, 7.3061, 7.3057, 7.3053, 7.305, 7.3047, 7.3043, 7.304, 7.3036, 7.3033, 7.3029, 7.3036, 7.3033, 7.303, 7.3028, 7.3056, 7.3055, 7.3061, 7.3057, 7.3053, 7.3049, 7.3045, 7.3041, 7.3037, 7.3033, 7.3029, 7.3036, 7.3034, 7.3042, 7.3049, 7.3047, 7.3034, 7.304, 7.3037, 7.3044, 7.3041, 7.303, 7.3017, 7.3023, 7.303, 7.3027, 7.3023, 7.3019, 7.3016, 7.3012, 7.3008, 7.3005, 7.3003, 7.3002, 7.3001, 7.2998, 7.2994, 7.3, 7.3, 7.2998, 7.3006, 7.3013, 7.3011, 7.3007, 7.3003, 7.3, 7.3007, 7.3013, 7.302, 7.3028, 7.3025, 7.3021, 7.3028, 7.3025, 7.3022, 7.3029, 7.3026, 7.3045, 7.3042, 7.3038, 7.3035, 7.3032, 7.3028, 7.3024, 7.3021, 7.3028, 7.3024, 7.302, 7.3016, 7.3022, 7.3018, 7.3018, 7.3005, 7.3001, 7.2998, 7.2994, 7.3, 7.3007, 7.3004, 7.3011, 7.3008, 7.3004, 7.301, 7.3007, 7.3004, 7.3001, 7.3012, 7.3001, 7.2998, 7.2996, 7.3009, 7.3006, 7.3003, 7.3002, 7.2998, 7.2995, 7.2993, 7.3, 7.2988, 7.2987, 7.2988, 7.2985, 7.2985, 7.2991, 7.2989, 7.2986, 7.2987, 7.2974, 7.2985, 7.2981, 7.2994, 7.2991, 7.298, 7.2977, 7.2973, 7.3011, 7.303, 7.3037, 7.3035, 7.3037, 7.3038, 7.3048, 7.3045, 7.3055, 7.3103, 7.31, 7.3096, 7.3093, 7.3101, 7.3099, 7.3088, 7.3085, 7.3097, 7.3107, 7.3103, 7.3091, 7.309, 7.3088, 7.3086, 7.3083, 7.308, 7.308, 7.3077, 7.3114, 7.311, 7.3107, 7.3104, 7.3104, 7.3103, 7.311, 7.3108, 7.3106, 7.3124, 7.3131, 7.3128, 7.3125, 7.3122, 7.3119, 7.3126, 7.3144, 7.3141, 7.3138, 7.3164, 7.317, 7.3166, 7.3172, 7.3169, 7.3167, 7.3164, 7.316, 7.3157, 7.3153, 7.315, 7.3146, 7.3142, 7.3138, 7.3135, 7.3132, 7.3128, 7.3134, 7.313, 7.3137, 7.3144, 7.3151, 7.3147, 7.3144, 7.314, 7.3137, 7.3125, 7.3133, 7.3131, 7.3129, 7.3154, 7.3152, 7.3148, 7.3145, 7.3141, 7.3148, 7.3156, 7.3154, 7.3155, 7.3151, 7.3155, 7.3153, 7.3184, 7.318, 7.3177, 7.3176, 7.3172, 7.3178, 7.3176, 7.3172, 7.3161, 7.3167, 7.3184, 7.3191, 7.3187, 7.3184, 7.3182, 7.3188, 7.3185, 7.3197, 7.3194, 7.3191, 7.3202, 7.3202, 7.321, 7.3207, 7.3214, 7.3211, 7.3208, 7.3206, 7.3204, 7.3202, 7.3198, 7.3196, 7.3193, 7.32, 7.3201, 7.3198, 7.3194, 7.3192, 7.3199, 7.3187, 7.3184, 7.3189, 7.3186, 7.3192, 7.3198, 7.3196, 7.3223, 7.322, 7.3217, 7.3216, 7.3213, 7.3226, 7.3234, 7.323, 7.3226, 7.3234, 7.3232, 7.324, 7.3238, 7.3235, 7.3231, 7.3228, 7.3234, 7.323, 7.3227, 7.3224, 7.3249, 7.3246, 7.3242, 7.324, 7.3258, 7.3265, 7.3272, 7.3271, 7.3268, 7.3274, 7.328, 7.3276, 7.328, 7.3277, 7.3274, 7.3271, 7.3268, 7.3265, 7.3301, 7.3304, 7.3301, 7.33, 7.3297, 7.3294, 7.329, 7.3278, 7.3266, 7.3254, 7.3251, 7.3247, 7.3243, 7.3249, 7.3256, 7.3254, 7.3251, 7.3247, 7.3243, 7.324, 7.3238, 7.3235, 7.3241, 7.3238, 7.3236, 7.3243, 7.3239, 7.3245, 7.3242, 7.3239, 7.3236, 7.3242, 7.3239, 7.3236, 7.3233, 7.323, 7.3236, 7.3232, 7.3229, 7.3225, 7.3223, 7.322, 7.3218, 7.3215, 7.3212, 7.3209, 7.3226, 7.3223, 7.322, 7.3226, 7.3224, 7.3221, 7.3226, 7.3223, 7.322, 7.3228, 7.3225, 7.3222, 7.3221, 7.3218, 7.3224, 7.3221, 7.3228, 7.3224, 7.3222, 7.3219, 7.3217, 7.3215, 7.3222, 7.3219, 7.3226, 7.3223, 7.322, 7.3228, 7.3225, 7.3222, 7.321, 7.3216, 7.3212, 7.3209, 7.322, 7.3217, 7.3213, 7.321, 7.3208, 7.3206, 7.3203, 7.32, 7.3206, 7.3202, 7.3199, 7.3196, 7.3192, 7.319, 7.3188, 7.3185, 7.3181, 7.318, 7.3178, 7.3176, 7.3173, 7.3178, 7.3175, 7.3171, 7.3168, 7.3174, 7.3181, 7.3187, 7.3175, 7.3174, 7.3171, 7.3169, 7.3158, 7.3155, 7.3152, 7.315, 7.3148, 7.3145, 7.3143, 7.3142, 7.3139, 7.3145, 7.3142, 7.3138, 7.3135, 7.3132, 7.3129, 7.3125, 7.3122, 7.311, 7.3117, 7.3123, 7.3129, 7.3126, 7.3122, 7.3119, 7.3118, 7.3147, 7.3144, 7.3141, 7.3137, 7.3135, 7.3132, 7.3138, 7.3145, 7.3142, 7.3139, 7.3137, 7.3143, 7.3151, 7.3148, 7.3144, 7.314, 7.3137, 7.3134, 7.3131, 7.3129, 7.3126, 7.3125, 7.3121, 7.3125, 7.3122, 7.3118, 7.3115, 7.3111, 7.3109, 7.3108, 7.3105, 7.3102, 7.3099, 7.3087, 7.3084, 7.3082, 7.3079, 7.3077, 7.3074, 7.3071, 7.307, 7.3067, 7.3064, 7.3061, 7.3058, 7.3065, 7.3072, 7.3078, 7.3076, 7.3073, 7.307, 7.3067, 7.3065, 7.3061, 7.3059, 7.3056, 7.3062, 7.3059, 7.3056, 7.3054, 7.3051, 7.3048, 7.3045, 7.3042, 7.304, 7.3047, 7.3045, 7.3042, 7.3039, 7.3046, 7.3052, 7.305, 7.3056, 7.3055, 7.3081, 7.3106, 7.3112, 7.3132, 7.313, 7.3128, 7.3135, 7.3133, 7.313, 7.3127, 7.3125, 7.3123, 7.3121, 7.3109, 7.3134, 7.3141, 7.3147, 7.3144, 7.3151, 7.3148, 7.3157, 7.3154, 7.3164, 7.3161, 7.316, 7.3157, 7.3165, 7.3172, 7.3162, 7.316, 7.3176, 7.3192, 7.3191, 7.3198, 7.3196, 7.3214, 7.323, 7.3227, 7.3223, 7.322, 7.3217, 7.3215, 7.3213, 7.3211, 7.3207, 7.3204, 7.3209, 7.3215, 7.3221, 7.3218, 7.3215, 7.3212, 7.3218, 7.3219, 7.3215, 7.3212, 7.3209, 7.3207, 7.3205, 7.3202, 7.3209, 7.3206, 7.3212, 7.3219, 7.3216, 7.3224, 7.3221, 7.3209, 7.3209, 7.3207, 7.3204, 7.3201, 7.3198, 7.3196, 7.3194, 7.32, 7.3197, 7.3194, 7.3191, 7.3187, 7.3183, 7.3189, 7.3186, 7.322, 7.3217, 7.3214, 7.3211, 7.3218, 7.3215, 7.3221, 7.3218, 7.3224, 7.323, 7.3236, 7.3233, 7.323, 7.3237, 7.3243, 7.3249, 7.3255, 7.3261, 7.325, 7.3256, 7.3253, 7.3259, 7.3257, 7.3254, 7.3251, 7.3257, 7.3254, 7.3251, 7.3253, 7.325, 7.3248, 7.3246, 7.3243, 7.3247, 7.3244, 7.3242, 7.3239, 7.3236, 7.3237, 7.3236, 7.3234, 7.3231, 7.3229, 7.3226, 7.3223, 7.3221, 7.3218, 7.3214, 7.321, 7.3207, 7.3204, 7.3202, 7.3199, 7.3188, 7.3186, 7.3183, 7.318, 7.3187, 7.3185, 7.3182, 7.3179, 7.3176, 7.3174, 7.3181, 7.3178, 7.3176, 7.3173, 7.317, 7.3158, 7.3173, 7.3171, 7.3178, 7.3176, 7.3174, 7.3171, 7.3169, 7.3166, 7.3162, 7.3178, 7.3175, 7.3191, 7.3206, 7.3215, 7.3213, 7.3211, 7.3217, 7.3214, 7.3211, 7.3208, 7.3205, 7.3202, 7.3199, 7.3205, 7.3194, 7.3191, 7.3197, 7.3194, 7.3191, 7.3189, 7.3186, 7.3183, 7.318, 7.3186, 7.3184, 7.319, 7.3187, 7.3193, 7.3208, 7.3205, 7.3202, 7.32, 7.3198, 7.3195, 7.3192, 7.3189, 7.3187, 7.3184, 7.3181, 7.3178, 7.3177, 7.3174, 7.318, 7.3186, 7.3183, 7.3189, 7.3187, 7.3184, 7.3184, 7.3189, 7.3187, 7.3195, 7.3195, 7.3192, 7.319, 7.3195, 7.3192, 7.3189, 7.3196, 7.3184, 7.3182, 7.318, 7.3179, 7.3176, 7.3174, 7.318, 7.3177, 7.3174, 7.3171, 7.3177, 7.3175, 7.3181, 7.3187, 7.3184, 7.3182, 7.3179, 7.3176, 7.3176, 7.3173, 7.317, 7.3177, 7.3175, 7.3172, 7.3161, 7.3158, 7.3165, 7.3162, 7.3159, 7.3156, 7.3154, 7.316, 7.3167, 7.3164, 7.3161, 7.3158, 7.3156, 7.3153, 7.3151, 7.3157, 7.3154, 7.3152, 7.3159, 7.3157, 7.3155, 7.3152, 7.3149, 7.3154, 7.3152, 7.3149, 7.3146, 7.3143, 7.314, 7.3138, 7.3135, 7.3132, 7.313, 7.3127, 7.3133, 7.3131, 7.3128, 7.3126, 7.3132, 7.3121, 7.3118, 7.3115, 7.3121, 7.3118, 7.3116, 7.3115, 7.3105, 7.3102, 7.3099, 7.3096, 7.3102, 7.31, 7.3097, 7.3094, 7.3092, 7.3089, 7.3087, 7.3093, 7.3099, 7.3096, 7.3093, 7.3089, 7.3086, 7.3083, 7.308, 7.3077, 7.3074, 7.308, 7.3078, 7.3075, 7.3073, 7.3071, 7.3068, 7.3066, 7.3072, 7.3079, 7.3076, 7.3073, 7.3071, 7.3069, 7.3067, 7.3064, 7.3063, 7.306, 7.3066, 7.3063, 7.3062, 7.3059, 7.3057, 7.3054, 7.306, 7.3066, 7.3072, 7.307, 7.3067, 7.3065, 7.3062, 7.3059, 7.3066, 7.3063, 7.3061, 7.3067, 7.3064, 7.3061, 7.3059, 7.3056, 7.3054, 7.3051, 7.3048, 7.3046, 7.3045, 7.3044, 7.3041, 7.3038, 7.3035, 7.3032, 7.3039, 7.3045, 7.3034, 7.3031, 7.3028, 7.3025, 7.3014, 7.3012, 7.3027, 7.3024, 7.3031, 7.3028, 7.3019, 7.3016, 7.3023, 7.302, 7.3017, 7.3014, 7.3019, 7.3016, 7.3022, 7.3011, 7.3008, 7.3005, 7.3055, 7.3055, 7.3052, 7.3049, 7.3047, 7.3045, 7.3045, 7.3042, 7.3057, 7.3054, 7.3052, 7.3051, 7.3049, 7.3046, 7.3044, 7.3042, 7.3041, 7.3039, 7.3044, 7.3049, 7.3063, 7.3069, 7.3066, 7.3064, 7.3061, 7.3068, 7.3066, 7.3064, 7.3062, 7.306, 7.3057, 7.3054, 7.3062, 7.3059, 7.3057, 7.3054, 7.306, 7.3057, 7.3054, 7.3043, 7.304, 7.3037, 7.3034, 7.3023, 7.302, 7.3018, 7.3016, 7.3016, 7.3015, 7.3004, 7.2993, 7.2992, 7.2989, 7.2987, 7.2984, 7.2981, 7.2997, 7.2995, 7.3002, 7.3, 7.2997, 7.2994, 7.2991, 7.2988, 7.2985, 7.2983, 7.2972, 7.2969, 7.2975, 7.2973, 7.2962, 7.296, 7.2966, 7.2972, 7.2978, 7.2975, 7.2972, 7.2977, 7.2975, 7.3011, 7.301, 7.3008, 7.3006, 7.2997, 7.3012, 7.302, 7.3017, 7.3023, 7.302, 7.3026, 7.3031, 7.3029, 7.3026, 7.3024, 7.303, 7.3027, 7.3024, 7.3021, 7.3026, 7.3023, 7.3012, 7.3017, 7.3014, 7.3004, 7.3001, 7.3006, 7.2995, 7.3, 7.2997, 7.2994, 7.2993, 7.299, 7.2988, 7.2995, 7.2992, 7.299, 7.2987, 7.2993, 7.299, 7.2993, 7.299, 7.2987, 7.2985, 7.2982, 7.2971, 7.2961, 7.2959, 7.2956, 7.2961, 7.2958, 7.2955, 7.2944, 7.295, 7.2956, 7.2954, 7.2951, 7.295, 7.2947, 7.2945, 7.2943, 7.294, 7.2937, 7.2926, 7.2932, 7.2929, 7.2927, 7.2924, 7.2921, 7.2919, 7.2926, 7.2932, 7.2936, 7.2934, 7.296, 7.2983, 7.2981, 7.2979, 7.297, 7.2979, 7.2976, 7.2984, 7.299, 7.2995, 7.3006, 7.3014, 7.3021, 7.3021, 7.3022, 7.3032, 7.3031, 7.3037, 7.3044, 7.3053, 7.3054, 7.306, 7.3058, 7.3065, 7.3054, 7.3051, 7.305, 7.3048, 7.3054, 7.3051, 7.3048, 7.3046, 7.3049, 7.304, 7.3038, 7.3036, 7.3034, 7.3039, 7.3049, 7.3055, 7.3061, 7.3058, 7.3057, 7.3054, 7.3059, 7.3056, 7.3063, 7.306, 7.3066, 7.3072, 7.307, 7.3076, 7.3074, 7.3072, 7.3086, 7.3085, 7.3082, 7.3079, 7.3076, 7.3073, 7.3079, 7.3076, 7.3081, 7.3076, 7.3073, 7.3079, 7.3076, 7.3073, 7.3071, 7.3088, 7.3085, 7.3093, 7.309, 7.3087, 7.3087, 7.3076, 7.3082, 7.3079, 7.3076, 7.3074, 7.3071, 7.3077, 7.3074, 7.308, 7.307, 7.3076, 7.3073, 7.3087, 7.3087, 7.3101, 7.3102, 7.3108, 7.3114, 7.3119, 7.3116, 7.3114, 7.3114, 7.3111, 7.3116, 7.3113, 7.3112, 7.3109, 7.3106, 7.3103, 7.31, 7.3105, 7.3102, 7.3099, 7.3104, 7.3101, 7.3098, 7.3095, 7.31, 7.3108, 7.3097, 7.3101, 7.3098, 7.3096, 7.3086, 7.3099, 7.3109, 7.3115, 7.3112, 7.3109, 7.3114, 7.3103, 7.31, 7.3097, 7.3094, 7.3092, 7.3098, 7.3103, 7.3109, 7.3115, 7.312, 7.3125, 7.3122, 7.3119, 7.3125, 7.3123, 7.3129, 7.3126, 7.3123, 7.312, 7.3117, 7.3123, 7.3128, 7.3125, 7.3122, 7.3128, 7.3133, 7.313, 7.3135, 7.3133, 7.3138, 7.3135, 7.3132, 7.3129, 7.3126, 7.3123, 7.3128, 7.315, 7.3147, 7.3152, 7.3164, 7.3161, 7.3174, 7.3171, 7.3168, 7.3181, 7.3188, 7.3186, 7.3183, 7.3181, 7.3178, 7.3177, 7.3174, 7.3171, 7.3168, 7.3174, 7.3171, 7.3177, 7.3174, 7.3171, 7.3161, 7.3158, 7.3163, 7.316, 7.3157, 7.3154, 7.3151, 7.3148, 7.3153, 7.315, 7.3155, 7.3182, 7.318, 7.3177, 7.3175, 7.3178, 7.3183, 7.318, 7.3177, 7.3174, 7.3171, 7.3176, 7.3173, 7.3178, 7.3175, 7.3173, 7.317, 7.3167, 7.3165, 7.3162, 7.3167, 7.3173, 7.317, 7.3177, 7.3175, 7.3174, 7.3172, 7.3169, 7.3174, 7.318, 7.3186, 7.3176, 7.3173, 7.3171, 7.3178, 7.3175, 7.3172, 7.3169, 7.3166, 7.3172, 7.3172, 7.3169, 7.3167, 7.3166, 7.3163, 7.316, 7.3158, 7.3155, 7.3152, 7.3149, 7.3147, 7.3144, 7.316, 7.3159, 7.3165, 7.3165, 7.3179, 7.3176, 7.3174, 7.3196, 7.3194, 7.32, 7.3205, 7.3203, 7.3208, 7.3206, 7.321, 7.3216, 7.3214, 7.3211, 7.3217, 7.3231, 7.3254, 7.3252, 7.3242, 7.324, 7.3245, 7.3242, 7.3249, 7.3254, 7.3251, 7.3256, 7.3253, 7.3259, 7.3249, 7.3257, 7.3262, 7.3259, 7.3264, 7.327, 7.3267, 7.3265, 7.327, 7.3267, 7.3267, 7.3264, 7.3261, 7.3258, 7.3258, 7.3265, 7.3263, 7.326, 7.3257, 7.3254, 7.3251, 7.3241, 7.3246, 7.3246, 7.326, 7.3258, 7.3299, 7.3304, 7.3301, 7.3298, 7.3303, 7.3308, 7.3313, 7.331, 7.3307, 7.3304, 7.3301, 7.3298, 7.3295, 7.33, 7.3305, 7.3302, 7.3307, 7.3305, 7.3302, 7.3307, 7.3304, 7.3309, 7.3314, 7.3311, 7.3317, 7.3323, 7.3321, 7.3319, 7.3316, 7.3321, 7.3311, 7.3312, 7.3309, 7.3306, 7.3321, 7.3327, 7.3333, 7.3338, 7.3344, 7.3341, 7.3338, 7.3343, 7.3357, 7.3354, 7.3359, 7.3356, 7.3354, 7.3367, 7.3364, 7.3369, 7.3359, 7.3357, 7.3362, 7.336, 7.3351, 7.3349, 7.3355, 7.3352, 7.3349, 7.3354, 7.3359, 7.3364, 7.3369, 7.3366, 7.3363, 7.3368, 7.3374, 7.3371, 7.3369, 7.3361, 7.3358, 7.3356, 7.3354, 7.3345, 7.3343, 7.3356, 7.3361, 7.3366, 7.3363, 7.336, 7.3357, 7.3354, 7.3383, 7.338, 7.3377, 7.3374, 7.3372, 7.3369, 7.3366, 7.3363, 7.336, 7.3365, 7.3363, 7.336, 7.3365, 7.3355, 7.3352, 7.3342, 7.3357, 7.3355, 7.3352, 7.3349, 7.3346, 7.3343, 7.334, 7.3338, 7.3335, 7.3341, 7.3338, 7.3335, 7.3332, 7.3329, 7.3326, 7.3323, 7.3328, 7.3325, 7.3322, 7.3327, 7.3332, 7.3337, 7.3343, 7.3341, 7.3338, 7.3335, 7.3332, 7.3337, 7.3342, 7.3347, 7.3337, 7.3334, 7.334, 7.3346, 7.3359, 7.3356, 7.3354, 7.3351, 7.3348, 7.3353, 7.3358, 7.3363, 7.3368, 7.3373, 7.3378, 7.3383, 7.3381, 7.3379, 7.3377, 7.3382, 7.338, 7.3385, 7.3382, 7.3388, 7.3393, 7.339, 7.3388, 7.3385, 7.3383, 7.3388, 7.3385, 7.339, 7.3388, 7.3393, 7.3391, 7.3388, 7.3385, 7.3382, 7.3379, 7.3385, 7.3382, 7.338, 7.3385, 7.3382, 7.338, 7.3377, 7.3374, 7.3379, 7.3392, 7.3397, 7.3403, 7.3408, 7.3413, 7.341, 7.3407, 7.3412, 7.3425, 7.3422, 7.3419, 7.3424, 7.3421, 7.3418, 7.3415, 7.3413, 7.3418, 7.3416, 7.3429, 7.3427, 7.3432, 7.343, 7.3427, 7.3427, 7.3425, 7.3427, 7.3424, 7.3414, 7.3411, 7.3416, 7.3413, 7.3412, 7.341, 7.3407, 7.342, 7.3418, 7.3424, 7.3422, 7.342, 7.3426, 7.3423, 7.3422, 7.3419, 7.3432, 7.3492, 7.3489, 7.3486, 7.3491, 7.3496, 7.3501, 7.3498, 7.3496, 7.3486, 7.3483, 7.3481, 7.3478, 7.3483, 7.3481, 7.3478, 7.3475, 7.3473, 7.347, 7.3468, 7.3465, 7.3462, 7.3491, 7.3489, 7.3487, 7.3492, 7.3523, 7.3515, 7.3512, 7.3509, 7.3506, 7.3512, 7.351, 7.3518, 7.3531, 7.3529, 7.3527, 7.3526, 7.3527, 7.3524, 7.3523, 7.3521, 7.3518, 7.3515, 7.3522, 7.3527, 7.3532, 7.3531, 7.3531, 7.3528, 7.3526, 7.3523, 7.3523, 7.3523, 7.3522, 7.352, 7.3525, 7.3531, 7.3529, 7.3527, 7.3526, 7.3525, 7.3531, 7.3537, 7.3544, 7.3543, 7.3541, 7.3538, 7.3538, 7.3535, 7.3534, 7.3534, 7.354, 7.3538, 7.3538, 7.3536, 7.3535, 7.3533, 7.353, 7.3528, 7.3525, 7.3523, 7.3529, 7.3527, 7.3532], '192.168.122.112': [7.498, 6.438, 6.294, 6.4817, 6.4297, 6.596, 7.193, 7.0871, 6.9329, 6.8625, 6.8064, 7.1422, 7.4215, 7.7655, 7.6134, 7.5983, 7.4758, 7.3644, 7.2568, 7.2126, 7.3983, 7.5551, 7.4944, 7.4014, 7.3314, 7.4644, 7.59, 7.5118, 7.4496, 7.3825, 7.3259, 7.3047, 7.2592, 7.236, 7.1991, 7.1441, 7.1061, 7.0728, 7.0314, 7.0007, 6.971, 6.9301, 6.907, 6.8798, 6.844, 6.8141, 6.917, 7.0014, 6.9874, 6.9588, 6.9361, 6.9074, 6.9837, 6.9569, 6.9343, 6.9136, 6.8872, 6.8652, 6.8424, 6.8259, 6.8903, 6.867, 6.8414, 6.8409, 6.818, 6.8806, 6.8621, 6.9298, 6.9864, 7.1202, 7.0985, 7.0179, 7.0137, 6.9948, 6.9888, 6.967, 7.0122, 6.9962, 6.9775, 7.0378, 7.0168, 7.0672, 7.1573, 7.1387, 7.1169, 7.0971, 7.0896, 7.0721, 7.0604, 7.0435, 6.9832, 6.969, 6.9736, 6.9614, 6.9475, 6.9319, 6.9714, 7.0145, 6.9979, 6.9812, 6.9674, 6.9534, 6.9431, 6.928, 6.9174, 6.903, 6.9393, 6.9242, 6.915, 6.9001, 6.8867, 6.9185, 6.9075, 6.8928, 6.9295, 6.9199, 6.9092, 6.9412, 6.9743, 6.9613, 6.9477, 6.9394, 6.9314, 6.9204, 6.9168, 6.9042, 6.8941, 6.8825, 6.873, 6.9007, 6.8999, 6.8963, 6.8936, 6.9224, 6.9133, 6.984, 6.9745, 6.9621, 6.9922, 6.951, 6.9422, 6.9664, 6.9551, 6.9482, 6.9816, 6.9783, 6.9746, 7.0412, 7.0339, 7.0231, 7.0501, 7.0387, 7.0311, 7.0222, 7.014, 7.038, 7.0648, 7.0891, 7.11, 7.1045, 7.0931, 7.0841, 7.0732, 7.0946, 7.0843, 7.109, 7.1333, 7.1285, 7.1199, 7.112, 7.1041, 7.096, 7.0878, 7.0776, 7.069, 7.1367, 7.1302, 7.1946, 7.1858, 7.2067, 7.1959, 7.1993, 7.1918, 7.181, 7.199, 7.1906, 7.1804, 7.1984, 7.1936, 7.187, 7.1777, 7.1692, 7.1766, 7.1673, 7.1839, 7.2562, 7.2762, 7.2668, 7.2849, 7.305, 7.2964, 7.2871, 7.2775, 7.2714, 7.2385, 7.2298, 7.2205, 7.238, 7.2295, 7.221, 7.2148, 7.2108, 7.2014, 7.1959, 7.1876, 7.1826, 7.1992, 7.1909, 7.1827, 7.174, 7.1685, 7.1602, 7.1521, 7.1752, 7.1671, 7.1856, 7.1799, 7.1728, 7.1649, 7.1595, 7.1523, 7.1472, 7.1657, 7.1579, 7.1733, 7.1654, 7.158, 7.1505, 7.1657, 7.1799, 7.1725, 7.1665, 7.1615, 7.1559, 7.1515, 7.1521, 7.1471, 7.1401, 7.1562, 7.1299, 7.104, 7.1004, 7.0931, 7.0861, 7.0895, 7.109, 7.0878, 7.1134, 7.1075, 7.1312, 7.1243, 7.1391, 7.1542, 7.169, 7.1655, 7.1599, 7.1624, 7.1762, 7.1688, 7.1805, 7.175, 7.16, 7.1735, 7.1665, 7.1621, 7.1561, 7.1503, 7.1438, 7.1376, 7.1497, 7.1438, 7.157, 7.1508, 7.1633, 7.1755, 7.1736, 7.1719, 7.1652, 7.1603, 7.156, 7.1501, 7.1443, 7.1387, 7.1545, 7.187, 7.1996, 7.2121, 7.2054, 7.1994, 7.1935, 7.1873, 7.1817, 7.1807, 7.1759, 7.1888, 7.1831, 7.1788, 7.173, 7.1678, 7.1623, 7.1735, 7.1694, 7.1633, 7.1597, 7.1541, 7.1644, 7.1591, 7.1608, 7.171, 7.1834, 7.1781, 7.1732, 7.167, 7.1784, 7.19, 7.1848, 7.1961, 7.1906, 7.1888, 7.186, 7.1804, 7.1902, 7.185, 7.1967, 7.1919, 7.188, 7.1851, 7.1803, 7.1761, 7.1879, 7.1839, 7.1939, 7.1934, 7.1905, 7.2005, 7.1949, 7.2057, 7.2158, 7.2118, 7.2212, 7.2165, 7.2123, 7.2067, 7.2026, 7.201, 7.2107, 7.2056, 7.2016, 7.198, 7.2119, 7.2067, 7.203, 7.2005, 7.2101, 7.206, 7.2014, 7.2148, 7.2123, 7.2216, 7.2174, 7.1994, 7.1963, 7.2056, 7.2019, 7.2128, 7.2095, 7.2187, 7.2147, 7.2105, 7.2059, 7.2037, 7.199, 7.2082, 7.2037, 7.2132, 7.2097, 7.2192, 7.2144, 7.2106, 7.22, 7.218, 7.2131, 7.2081, 7.2174, 7.2262, 7.2226, 7.2204, 7.2182, 7.2146, 7.2113, 7.2079, 7.2069, 7.2035, 7.2036, 7.2014, 7.2, 7.1965, 7.1946, 7.1906, 7.2027, 7.2005, 7.2119, 7.2092, 7.2085, 7.204, 7.2009, 7.1966, 7.1925, 7.1902, 7.1988, 7.2082, 7.2164, 7.2263, 7.2224, 7.27, 7.2784, 7.276, 7.2728, 7.2693, 7.2659, 7.274, 7.2818, 7.2773, 7.2778, 7.286, 7.2943, 7.3024, 7.3103, 7.3185, 7.314, 7.321, 7.3285, 7.3252, 7.3206, 7.329, 7.3384, 7.3403, 7.337, 7.3458, 7.3423, 7.3681, 7.3642, 7.3598, 7.3452, 7.3415, 7.3384, 7.3339, 7.3294, 7.3371, 7.333, 7.3407, 7.3374, 7.3358, 7.3322, 7.3295, 7.3257, 7.3381, 7.3463, 7.3444, 7.3411, 7.3271, 7.3346, 7.342, 7.3493, 7.3452, 7.3423, 7.3417, 7.3391, 7.339, 7.3361, 7.3561, 7.3658, 7.3923, 7.3999, 7.3981, 7.3939, 7.3918, 7.3875, 7.3854, 7.3722, 7.3702, 7.3664, 7.3624, 7.3588, 7.3548, 7.3509, 7.3472, 7.3453, 7.3423, 7.3395, 7.3354, 7.3315, 7.3284, 7.3255, 7.3124, 7.3086, 7.3053, 7.3017, 7.3087, 7.3051, 7.3122, 7.3225, 7.3189, 7.3186, 7.3155, 7.3027, 7.3017, 7.3185, 7.3253, 7.3126, 7.3005, 7.2978, 7.295, 7.2927, 7.2894, 7.2873, 7.2949, 7.2913, 7.2875, 7.2852, 7.2821, 7.2785, 7.2854, 7.2823, 7.2806, 7.2775, 7.2669, 7.2737, 7.2699, 7.2676, 7.2743, 7.2752, 7.2716, 7.2682, 7.2749, 7.2811, 7.2782, 7.2754, 7.2733, 7.2703, 7.2668, 7.2728, 7.2692, 7.2666, 7.264, 7.2608, 7.267, 7.2646, 7.2525, 7.2637, 7.2534, 7.2551, 7.2657, 7.2626, 7.2639, 7.2603, 7.2574, 7.254, 7.2514, 7.2481, 7.245, 7.2417, 7.2396, 7.2368, 7.2335, 7.2308, 7.2369, 7.2339, 7.2308, 7.2277, 7.234, 7.2403, 7.2463, 7.2444, 7.2601, 7.2593, 7.2562, 7.253, 7.2498, 7.2557, 7.2535, 7.2504, 7.2473, 7.2454, 7.2433, 7.2411, 7.2384, 7.237, 7.2345, 7.2408, 7.2474, 7.2566, 7.2625, 7.2687, 7.2658, 7.2643, 7.2711, 7.2683, 7.2747, 7.2718, 7.278, 7.2751, 7.2732, 7.2703, 7.2761, 7.2734, 7.2788, 7.2852, 7.2826, 7.2798, 7.277, 7.2828, 7.2798, 7.2776, 7.2748, 7.2897, 7.2872, 7.2936, 7.2912, 7.2944, 7.296, 7.2932, 7.2987, 7.2955, 7.2924, 7.2898, 7.2869, 7.2838, 7.2824, 7.2803, 7.278, 7.2749, 7.2719, 7.2694, 7.2668, 7.2641, 7.2536, 7.2507, 7.2479, 7.2451, 7.2421, 7.2478, 7.2532, 7.2502, 7.2481, 7.2451, 7.2429, 7.242, 7.2322, 7.2295, 7.2266, 7.2319, 7.2304, 7.236, 7.2331, 7.2314, 7.2288, 7.226, 7.2241, 7.2213, 7.2268, 7.2242, 7.2216, 7.2122, 7.2112, 7.2497, 7.2551, 7.2525, 7.2499, 7.247, 7.2444, 7.2423, 7.2394, 7.237, 7.2349, 7.2482, 7.2456, 7.2435, 7.2416, 7.2468, 7.252, 7.2491, 7.2465, 7.2514, 7.2563, 7.2542, 7.2527, 7.2512, 7.2486, 7.246, 7.2439, 7.249, 7.247, 7.2445, 7.2496, 7.2554, 7.2533, 7.2582, 7.2563, 7.2539, 7.2521, 7.2496, 7.2469, 7.2523, 7.2499, 7.2548, 7.2527, 7.2505, 7.2479, 7.2455, 7.2439, 7.2423, 7.2469, 7.2443, 7.2487, 7.2467, 7.2453, 7.2425, 7.2405, 7.2317, 7.2293, 7.2275, 7.2323, 7.2232, 7.2282, 7.2331, 7.2442, 7.2568, 7.2542, 7.2453, 7.2427, 7.24, 7.2382, 7.2358, 7.2344, 7.2421, 7.2397, 7.2446, 7.2434, 7.2482, 7.253, 7.2512, 7.2493, 7.2467, 7.2378, 7.2354, 7.2336, 7.2313, 7.2289, 7.2265, 7.2283, 7.2265, 7.2247, 7.2228, 7.221, 7.2187, 7.2236, 7.2219, 7.2196, 7.2177, 7.2224, 7.22, 7.225, 7.2238, 7.2411, 7.2458, 7.2443, 7.2421, 7.2396, 7.2378, 7.2431, 7.2486, 7.2462, 7.2439, 7.2421, 7.2412, 7.2467, 7.2518, 7.2502, 7.2547, 7.2535, 7.2641, 7.2728, 7.2703, 7.2679, 7.2658, 7.2639, 7.2616, 7.2593, 7.2572, 7.2618, 7.2593, 7.2592, 7.2592, 7.257, 7.2546, 7.265, 7.2697, 7.2676, 7.2652, 7.2635, 7.2679, 7.2718, 7.2788, 7.2763, 7.2747, 7.2728, 7.2712, 7.2691, 7.2754, 7.2755, 7.2739, 7.2718, 7.2698, 7.2815, 7.2799, 7.2776, 7.2822, 7.2799, 7.2839, 7.2816, 7.2813, 7.2792, 7.2836, 7.2816, 7.2747, 7.2918, 7.291, 7.2977, 7.3192, 7.3168, 7.3156, 7.3153, 7.3212, 7.3189, 7.317, 7.3148, 7.3135, 7.3123, 7.3101, 7.3088, 7.3071, 7.3048, 7.3028, 7.3004, 7.2981, 7.2959, 7.2881, 7.2858, 7.2836, 7.282, 7.2803, 7.2847, 7.2833, 7.2817, 7.2798, 7.2897, 7.2819, 7.2799, 7.2779, 7.2819, 7.2861, 7.2846, 7.2833, 7.282, 7.2803, 7.2782, 7.2765, 7.2753, 7.2731, 7.2771, 7.2752, 7.2737, 7.2779, 7.2817, 7.2797, 7.293, 7.2986, 7.2968, 7.2945, 7.2985, 7.3026, 7.3011, 7.2995, 7.3034, 7.3014, 7.2996, 7.3032, 7.3009, 7.299, 7.3027, 7.309, 7.3077, 7.3116, 7.3094, 7.3082, 7.3063, 7.3044, 7.3029, 7.3011, 7.299, 7.297, 7.2956, 7.2935, 7.2918, 7.29, 7.2941, 7.292, 7.2962, 7.2948, 7.2927, 7.2905, 7.2943, 7.2932, 7.297, 7.3004, 7.2991, 7.2977, 7.2954, 7.2992, 7.303, 7.3069, 7.3053, 7.3031, 7.301, 7.2989, 7.3084, 7.3063, 7.3043, 7.3022, 7.3052, 7.3032, 7.3013, 7.2993, 7.2988, 7.2972, 7.2954, 7.2935, 7.2914, 7.2952, 7.2935, 7.2917, 7.2906, 7.2887, 7.2867, 7.2855, 7.2836, 7.2873, 7.2853, 7.2834, 7.2871, 7.2804, 7.279, 7.2779, 7.2768, 7.2748, 7.2735, 7.272, 7.2701, 7.2683, 7.2719, 7.2755, 7.2738, 7.2723, 7.2756, 7.2794, 7.2833, 7.2816, 7.2851, 7.2836, 7.282, 7.2857, 7.2893, 7.2923, 7.2904, 7.2939, 7.2919, 7.2901, 7.2891, 7.2881, 7.2861, 7.2899, 7.2881, 7.2917, 7.2898, 7.2879, 7.2918, 7.2899, 7.2883, 7.2876, 7.2863, 7.2854, 7.2853, 7.284, 7.2826, 7.2814, 7.2794, 7.2788, 7.2769, 7.2755, 7.2756, 7.2745, 7.2729, 7.2711, 7.2693, 7.2727, 7.2709, 7.2694, 7.2629, 7.2613, 7.2601, 7.2582, 7.2613, 7.2594, 7.2629, 7.261, 7.2651, 7.2634, 7.271, 7.2797, 7.278, 7.2761, 7.2747, 7.2731, 7.2715, 7.2698, 7.2734, 7.2718, 7.2704, 7.2691, 7.2674, 7.2655, 7.2686, 7.2724, 7.2709, 7.2692, 7.2673, 7.2658, 7.264, 7.2623, 7.2612, 7.26, 7.2635, 7.2623, 7.2653, 7.2696, 7.2726, 7.2712, 7.2743, 7.2774, 7.2756, 7.2738, 7.2728, 7.271, 7.2691, 7.2672, 7.2657, 7.2638, 7.2625, 7.2608, 7.259, 7.2573, 7.256, 7.2541, 7.2523, 7.2505, 7.2542, 7.2524, 7.2632, 7.2624, 7.2605, 7.259, 7.2578, 7.2611, 7.2597, 7.2589, 7.2572, 7.2634, 7.2617, 7.2606, 7.2588, 7.2573, 7.256, 7.2554, 7.2675, 7.2614, 7.2599, 7.2581, 7.2569, 7.2556, 7.2547, 7.253, 7.2517, 7.2552, 7.2539, 7.2527, 7.2559, 7.259, 7.2576, 7.2656, 7.2638, 7.2627, 7.2697, 7.2687, 7.267, 7.2654, 7.2684, 7.2666, 7.2665, 7.2697, 7.2687, 7.2669, 7.2656, 7.264, 7.2623, 7.2653, 7.2643, 7.2675, 7.2734, 7.2721, 7.275, 7.2738, 7.273, 7.2762, 7.2793, 7.2781, 7.2766, 7.275, 7.2733, 7.2761, 7.2753, 7.2741, 7.2726, 7.2712, 7.2744, 7.2735, 7.2718, 7.2755, 7.2738, 7.2722, 7.272, 7.2706, 7.2704, 7.2731, 7.2761, 7.2749, 7.2779, 7.2768, 7.2777, 7.2769, 7.28, 7.2829, 7.2778, 7.2721, 7.2705, 7.2691, 7.2756, 7.2744, 7.2728, 7.2716, 7.2747, 7.2778, 7.2762, 7.2747, 7.2734, 7.2718, 7.2704, 7.2688, 7.2718, 7.2706, 7.2697, 7.2682, 7.2678, 7.2709, 7.2699, 7.2686, 7.2679, 7.2664, 7.2647, 7.2635, 7.2579, 7.2566, 7.255, 7.2542, 7.253, 7.2561, 7.2544, 7.2531, 7.2518, 7.2507, 7.2504, 7.2505, 7.2492, 7.2476, 7.2521, 7.251, 7.2499, 7.2486, 7.2473, 7.2536, 7.252, 7.2503, 7.2488, 7.2477, 7.2464, 7.2453, 7.2446, 7.2434, 7.2429, 7.2415, 7.2416, 7.2448, 7.2435, 7.245, 7.2478, 7.2465, 7.2451, 7.2438, 7.2441, 7.2432, 7.2418, 7.2405, 7.2392, 7.2384, 7.237, 7.2358, 7.2346, 7.242, 7.2407, 7.2392, 7.238, 7.237, 7.2361, 7.235, 7.2388, 7.2376, 7.2365, 7.2402, 7.2434, 7.2467, 7.2469, 7.2457, 7.246, 7.2547, 7.2533, 7.2525, 7.2558, 7.2549, 7.2581, 7.2529, 7.255, 7.2543, 7.2547, 7.2546, 7.262, 7.2606, 7.2595, 7.2581, 7.2664, 7.2689, 7.2675, 7.2723, 7.272, 7.2705, 7.2652, 7.2639, 7.2669, 7.2668, 7.2655, 7.268, 7.2665, 7.2694, 7.2682, 7.2668, 7.2653, 7.2642, 7.2631, 7.262, 7.2606, 7.2593, 7.2622, 7.265, 7.2672, 7.2623, 7.2652, 7.2637, 7.263, 7.2623, 7.2608, 7.2596, 7.2589, 7.2577, 7.2566, 7.2556, 7.2548, 7.2577, 7.2606, 7.2597, 7.2586, 7.2572, 7.256, 7.2547, 7.2532, 7.2521, 7.2508, 7.2494, 7.248, 7.2473, 7.246, 7.2485, 7.2471, 7.2499, 7.2528, 7.2513, 7.25, 7.2565, 7.2551, 7.2537, 7.2523, 7.2508, 7.2493, 7.2478, 7.2464, 7.245, 7.2438, 7.2465, 7.2454, 7.2482, 7.2468, 7.2454, 7.244, 7.2468, 7.2459, 7.2448, 7.2473, 7.2462, 7.2488, 7.244, 7.2426, 7.2415, 7.2441, 7.2431, 7.2419, 7.2405, 7.2392, 7.2377, 7.2365, 7.2352, 7.238, 7.237, 7.2356, 7.2346, 7.2385, 7.2371, 7.2361, 7.235, 7.2376, 7.2366, 7.2352, 7.2339, 7.2366, 7.2352, 7.2338, 7.2325, 7.231, 7.2347, 7.2334, 7.2321, 7.2317, 7.2344, 7.2387, 7.2411, 7.2404, 7.239, 7.2414, 7.2412, 7.2401, 7.2428, 7.2454, 7.241, 7.2435, 7.2423, 7.241, 7.2402, 7.2392, 7.2345, 7.2334, 7.2329, 7.2316, 7.2302, 7.2288, 7.228, 7.2271, 7.2257, 7.2247, 7.2237, 7.226, 7.2248, 7.2237, 7.2226, 7.2213, 7.2325, 7.2314, 7.2434, 7.2594, 7.2658, 7.2645, 7.2632, 7.2623, 7.2612, 7.2598, 7.2624, 7.265, 7.2675, 7.2662, 7.2654, 7.2641, 7.2628, 7.2616, 7.2641, 7.263, 7.2617, 7.2607, 7.2596, 7.2621, 7.2613, 7.26, 7.2587, 7.2574, 7.2563, 7.2552, 7.2541, 7.2566, 7.2557, 7.2544, 7.2538, 7.2567, 7.2554, 7.2603, 7.2591, 7.2579, 7.2566, 7.2553, 7.2542, 7.2602, 7.2626, 7.2648, 7.2636, 7.263, 7.2618, 7.2606, 7.2593, 7.2552, 7.2551, 7.2579, 7.262, 7.2615, 7.2605, 7.2596, 7.259, 7.2582, 7.2536, 7.2523, 7.2547, 7.2534, 7.2527, 7.2537, 7.2524, 7.2512, 7.2505, 7.2528, 7.2517, 7.2505, 7.2492, 7.2479, 7.2465, 7.2455, 7.2478, 7.2502, 7.2489, 7.2513, 7.2502, 7.2493, 7.2481, 7.2502, 7.2526, 7.2513, 7.2501, 7.2494, 7.2483, 7.247, 7.2494, 7.2481, 7.2504, 7.2491, 7.2478, 7.2501, 7.2489, 7.2476, 7.2473, 7.2463, 7.245, 7.2474, 7.2462, 7.2456, 7.2443, 7.2431, 7.2418, 7.2406, 7.2398, 7.2386, 7.2373, 7.2329, 7.2317, 7.234, 7.2364, 7.2352, 7.2376, 7.2402, 7.2398, 7.2387, 7.2409, 7.2398, 7.2391, 7.2389, 7.2376, 7.2396, 7.2385, 7.2374, 7.2364, 7.2355, 7.2348, 7.2368, 7.2361, 7.2351, 7.2338, 7.2359, 7.2354, 7.2342, 7.2363, 7.2354, 7.2377, 7.2372, 7.2395, 7.2383, 7.2372, 7.2362, 7.2351, 7.2338, 7.2358, 7.2381, 7.2408, 7.2401, 7.2425, 7.2448, 7.2435, 7.2423, 7.2412, 7.2432, 7.2422, 7.241, 7.2402, 7.2395, 7.2392, 7.2416, 7.2407, 7.2396, 7.2385, 7.2374, 7.2366, 7.2387, 7.2377, 7.2403, 7.2393, 7.2383, 7.2374, 7.2395, 7.2385, 7.241, 7.24, 7.242, 7.241, 7.2398, 7.2407, 7.2398, 7.2386, 7.2376, 7.237, 7.2361, 7.2355, 7.2346, 7.2338, 7.2296, 7.2287, 7.2276, 7.2274, 7.2265, 7.2255, 7.2248, 7.2242, 7.2233, 7.2221, 7.2216, 7.2207, 7.2197, 7.2198, 7.2188, 7.2177, 7.2179, 7.2169, 7.2158, 7.2154, 7.2176, 7.2165, 7.2156, 7.2159, 7.2149, 7.2172, 7.2164, 7.2156, 7.2145, 7.214, 7.2129, 7.212, 7.2143, 7.2135, 7.2127, 7.2115, 7.2137, 7.2159, 7.2148, 7.2168, 7.2158, 7.2146, 7.2139, 7.2164, 7.2189, 7.2178, 7.2218, 7.2233, 7.2268, 7.2259, 7.2284, 7.2275, 7.2266, 7.2257, 7.2248, 7.2273, 7.2264, 7.2257, 7.2249, 7.2243, 7.2231, 7.2222, 7.2183, 7.2144, 7.2133, 7.2122, 7.2111, 7.21, 7.2092, 7.2083, 7.2111, 7.2099, 7.2088, 7.208, 7.2068, 7.2087, 7.2079, 7.2099, 7.2088, 7.208, 7.2095, 7.2088, 7.2086, 7.2117, 7.2106, 7.21, 7.2092, 7.2082, 7.2075, 7.2067, 7.2056, 7.208, 7.2078, 7.2067, 7.2059, 7.2083, 7.2086, 7.2082, 7.2075, 7.2064, 7.2055, 7.2048, 7.2068, 7.206, 7.2079, 7.2101, 7.209, 7.208, 7.2072, 7.2097, 7.2086, 7.2118, 7.2107, 7.2134, 7.2126, 7.2115, 7.2104, 7.2126, 7.2117, 7.2106, 7.2126, 7.2146, 7.2166, 7.222, 7.2241, 7.2231, 7.2221, 7.2242, 7.2232, 7.2228, 7.2223, 7.2244, 7.2266, 7.2285, 7.228, 7.227, 7.2291, 7.2312, 7.2304, 7.2328, 7.2336, 7.2327, 7.2319, 7.2312, 7.2333, 7.2326, 7.2319, 7.2311, 7.2304, 7.2296, 7.2285, 7.2275, 7.2264, 7.2255, 7.2244, 7.2236, 7.2253, 7.2272, 7.2292, 7.2287, 7.2279, 7.227, 7.229, 7.2285, 7.2303, 7.2292, 7.2284, 7.2306, 7.2296, 7.2286, 7.2306, 7.2301, 7.2342, 7.2363, 7.2356, 7.2345, 7.2335, 7.2324, 7.2317, 7.2309, 7.2299, 7.2294, 7.2284, 7.2276, 7.2267, 7.226, 7.2279, 7.2269, 7.2267, 7.2288, 7.2256, 7.2277, 7.2267, 7.2258, 7.2249, 7.2269, 7.2258, 7.2251, 7.224, 7.2229, 7.2247, 7.224, 7.2233, 7.2224, 7.2217, 7.221, 7.2199, 7.2188, 7.2178, 7.2168, 7.2157, 7.2192, 7.2185, 7.2188, 7.2183, 7.2339, 7.2331, 7.2328, 7.2318, 7.2309, 7.2304, 7.2295, 7.2287, 7.2308, 7.2271, 7.2264, 7.2255, 7.2246, 7.224, 7.2233, 7.2223, 7.225, 7.224, 7.2258, 7.2251, 7.2241, 7.2265, 7.2324, 7.2342, 7.236, 7.2381, 7.2372, 7.2364, 7.2356, 7.2376, 7.2371, 7.2337, 7.2355, 7.2346, 7.2339, 7.233, 7.2321, 7.234, 7.233, 7.2321, 7.2314, 7.2304, 7.2296, 7.2286, 7.2281, 7.2271, 7.2261, 7.2251, 7.2246, 7.2239, 7.2237, 7.2262, 7.2253, 7.2243, 7.2265, 7.2287, 7.2279, 7.2269, 7.2237, 7.2314, 7.2306, 7.2296, 7.2325, 7.2372, 7.2373, 7.2433, 7.2427, 7.2418, 7.2438, 7.2428, 7.242, 7.244, 7.2459, 7.2449, 7.2479, 7.2507, 7.2527, 7.2559, 7.2549, 7.2543, 7.2614, 7.2604, 7.2633, 7.2624, 7.2617, 7.2608, 7.2601, 7.2591, 7.2582, 7.2572, 7.2538, 7.2531, 7.2521, 7.2516, 7.2507, 7.2527, 7.2492, 7.2511, 7.2504, 7.2494, 7.2485, 7.2477, 7.2467, 7.2475, 7.2465, 7.2456, 7.2446, 7.2438, 7.2433, 7.2425, 7.2449, 7.2443, 7.244, 7.2432, 7.2426, 7.2417, 7.2414, 7.2432, 7.2423, 7.2415, 7.2406, 7.2397, 7.2415, 7.2409, 7.2402, 7.242, 7.244, 7.2457, 7.245, 7.2468, 7.2486, 7.2506, 7.253, 7.2548, 7.2541, 7.2532, 7.2523, 7.2577, 7.2591, 7.2586, 7.2603, 7.2578, 7.2568, 7.2572, 7.2538, 7.2529, 7.2519, 7.2509, 7.2499, 7.2491, 7.2481, 7.2474, 7.2464, 7.2456, 7.2446, 7.2437, 7.2431, 7.2397, 7.2388, 7.2378, 7.2368, 7.2358, 7.2376, 7.2369, 7.236, 7.2355, 7.2346, 7.2366, 7.2365, 7.2356, 7.235, 7.2342, 7.2332, 7.2325, 7.2338, 7.233, 7.232, 7.2338, 7.2329, 7.232, 7.2313, 7.2314, 7.2333, 7.2325, 7.2317, 7.2311, 7.2301, 7.2295, 7.2285, 7.2276, 7.2295, 7.2285, 7.2302, 7.2294, 7.231, 7.23, 7.2366, 7.2382, 7.2399, 7.2415, 7.2433, 7.2424, 7.2442, 7.2409, 7.2402, 7.2394, 7.2385, 7.2376, 7.2344, 7.2334, 7.2352, 7.2343, 7.236, 7.2353, 7.2345, 7.2339, 7.2333, 7.2324, 7.2324, 7.2315, 7.2306, 7.2298, 7.2316, 7.2307, 7.2298, 7.2293, 7.2285, 7.2313, 7.2304, 7.2295, 7.2291, 7.2282, 7.2275, 7.2268, 7.226, 7.2257, 7.2225, 7.2216, 7.2269, 7.2262, 7.2295, 7.2287, 7.2331, 7.2323, 7.2332, 7.2351, 7.2341, 7.2333, 7.2324, 7.2316, 7.2307, 7.2327, 7.2347, 7.2339, 7.2332, 7.2323, 7.2341, 7.2339, 7.2357, 7.2354, 7.2345, 7.2341, 7.2333, 7.2326, 7.2318, 7.2312, 7.2304, 7.2306, 7.2299, 7.2291, 7.2309, 7.2301, 7.2311, 7.2303, 7.2297, 7.2289, 7.2282, 7.2274, 7.2292, 7.2283, 7.2279, 7.2301, 7.2292, 7.2286, 7.2278, 7.227, 7.224, 7.2235, 7.225, 7.2244, 7.2237, 7.2228, 7.2219, 7.221, 7.2226, 7.2242, 7.2233, 7.2226, 7.2217, 7.2259, 7.225, 7.2241, 7.2261, 7.2254, 7.2222, 7.2213, 7.2206, 7.2223, 7.2261, 7.2278, 7.2295, 7.2286, 7.2279, 7.2294, 7.2309, 7.2301, 7.2293, 7.2292, 7.2309, 7.2303, 7.2293, 7.2285, 7.2276, 7.2267, 7.2262, 7.2255, 7.2274, 7.2271, 7.2263, 7.2258, 7.2252, 7.2268, 7.2261, 7.2255, 7.2247, 7.2239, 7.2208, 7.2201, 7.2199, 7.2192, 7.2183, 7.2175, 7.2168, 7.2167, 7.2163, 7.2187, 7.2179, 7.2149, 7.2142, 7.2138, 7.2132, 7.2124, 7.2115, 7.2133, 7.2124, 7.2122, 7.2119, 7.2116, 7.2109, 7.21, 7.2095, 7.209, 7.2083, 7.2076, 7.2092, 7.2088, 7.2079, 7.2075, 7.2094, 7.2088, 7.2081, 7.2074, 7.2093, 7.2112, 7.2108, 7.2124, 7.2118, 7.2109, 7.2079, 7.207, 7.2086, 7.2078, 7.2071, 7.2089, 7.2081, 7.2073, 7.2067, 7.2062, 7.208, 7.2071, 7.2064, 7.2055, 7.2052, 7.2061, 7.2057, 7.2048, 7.2065, 7.208, 7.2074, 7.2091, 7.2083, 7.2103, 7.2097, 7.2094, 7.2111, 7.2128, 7.2119, 7.2113, 7.2106, 7.2101, 7.2093, 7.2109, 7.2107, 7.2077, 7.207, 7.2062, 7.2079, 7.2072, 7.2066, 7.2063, 7.2104, 7.2098, 7.2091, 7.2083, 7.2099, 7.2116, 7.2109, 7.2124, 7.2116, 7.2109, 7.2113, 7.2105, 7.2075, 7.2078, 7.207, 7.2062, 7.2078, 7.2094, 7.2086, 7.2084, 7.2084, 7.2076, 7.2092, 7.2084, 7.2081, 7.2073, 7.2091, 7.2084, 7.2077, 7.2075, 7.2068, 7.2085, 7.2079, 7.2075, 7.2089, 7.2106, 7.2098, 7.2092, 7.2063, 7.2055, 7.2048, 7.2043, 7.2037, 7.203, 7.2022, 7.2039, 7.2056, 7.205, 7.2046, 7.2021, 7.2016, 7.2014, 7.2006, 7.2021, 7.2015, 7.201, 7.2002, 7.1997, 7.1993, 7.2008, 7.2001, 7.1994, 7.2028, 7.2021, 7.2015, 7.2007, 7.198, 7.1972, 7.1965, 7.1981, 7.1973, 7.197, 7.1986, 7.1958, 7.1974, 7.1979, 7.1993, 7.1985, 7.1982, 7.1975, 7.1968, 7.1961, 7.1955, 7.1951, 7.1943, 7.1958, 7.195, 7.1942, 7.1934, 7.1928, 7.1922, 7.1915, 7.1932, 7.1925, 7.1918, 7.194, 7.1934, 7.1926, 7.1919, 7.1912, 7.1928, 7.1922, 7.1914, 7.1913, 7.1906, 7.1921, 7.1937, 7.1929, 7.1922, 7.1916, 7.1909, 7.1904, 7.1922, 7.1915, 7.1907, 7.19, 7.1896, 7.1888, 7.1884, 7.1901, 7.1917, 7.1911, 7.1904, 7.1906, 7.1898, 7.1913, 7.1906, 7.1898, 7.1921, 7.2012, 7.2007, 7.2028, 7.2025, 7.2017, 7.2012, 7.2005, 7.2019, 7.2014, 7.2009, 7.2005, 7.1997, 7.199, 7.1984, 7.1977, 7.1969, 7.1961, 7.1955, 7.1947, 7.1939, 7.1931, 7.1923, 7.1939, 7.1932, 7.1946, 7.196, 7.1952, 7.1946, 7.1939, 7.1953, 7.1946, 7.1963, 7.1977, 7.1971, 7.1964, 7.1956, 7.1955, 7.195, 7.1973, 7.1967, 7.1963, 7.1979, 7.1972, 7.1968, 7.1967, 7.1962, 7.1956, 7.1933, 7.1933, 7.1929, 7.1921, 7.1922, 7.1916, 7.1911, 7.1906, 7.1988, 7.1981, 7.1974, 7.1968, 7.1963, 7.1956, 7.1949, 7.1987, 7.1979, 7.1993, 7.1987, 7.1982, 7.1975, 7.1989, 7.2005, 7.1999, 7.2015, 7.203, 7.2024, 7.2019, 7.202, 7.2035, 7.2029, 7.2023, 7.2044, 7.2039, 7.2036, 7.2028, 7.2022, 7.2018, 7.201, 7.2006, 7.2021, 7.2016, 7.201, 7.2002, 7.2015, 7.201, 7.2004, 7.2, 7.1999, 7.1991, 7.1986, 7.1979, 7.1975, 7.1968, 7.1981, 7.1974, 7.1968, 7.1962, 7.1955, 7.1949, 7.1942, 7.1936, 7.1933, 7.1927, 7.1924, 7.1927, 7.1923, 7.1916, 7.191, 7.1903, 7.192, 7.1915, 7.1908, 7.1922, 7.1936, 7.193, 7.1926, 7.1918, 7.1912, 7.1906, 7.1881, 7.1875, 7.1871, 7.1867, 7.186, 7.1862, 7.1856, 7.1855, 7.1895, 7.1888, 7.1884, 7.1877, 7.187, 7.1863, 7.1878, 7.187, 7.1885, 7.1882, 7.1876, 7.1871, 7.1864, 7.1858, 7.1872, 7.1866, 7.1881, 7.1874, 7.1889, 7.1905, 7.1901, 7.1896, 7.1888, 7.1903, 7.1896, 7.1888, 7.1882, 7.1876, 7.1871, 7.1868, 7.1862, 7.1856, 7.1869, 7.1882, 7.1878, 7.1885, 7.1878, 7.1873, 7.187, 7.1864, 7.1858, 7.1852, 7.1847, 7.184, 7.1833, 7.1826, 7.1818, 7.1834, 7.1828, 7.1821, 7.1816, 7.1832, 7.1826, 7.1822, 7.1816, 7.1808, 7.1824, 7.1817, 7.181, 7.1805, 7.18, 7.1802, 7.1796, 7.179, 7.1782, 7.1776, 7.1805, 7.18, 7.1817, 7.1831, 7.1825, 7.182, 7.1814, 7.1828, 7.1842, 7.1838, 7.1853, 7.1849, 7.1842, 7.1837, 7.1831, 7.1825, 7.1819, 7.1813, 7.1827, 7.1839, 7.1836, 7.1848, 7.1841, 7.1856, 7.187, 7.1865, 7.1861, 7.1875, 7.1874, 7.1868, 7.1862, 7.1857, 7.1854, 7.1849, 7.1843, 7.1836, 7.185, 7.1865, 7.1861, 7.1857, 7.1852, 7.185, 7.1864, 7.1857, 7.185, 7.1847, 7.184, 7.1835, 7.1829, 7.1823, 7.1819, 7.1833, 7.1847, 7.1841, 7.1834, 7.183, 7.1848, 7.1843, 7.1857, 7.1853, 7.1848, 7.1842, 7.1837, 7.1851, 7.1847, 7.1861, 7.1871, 7.187, 7.1863, 7.186, 7.1854, 7.1848, 7.1844, 7.1837, 7.1812, 7.1807, 7.1802, 7.1797, 7.1792, 7.177, 7.1764, 7.1759, 7.1753, 7.1747, 7.174, 7.1715, 7.1708, 7.1701, 7.1697, 7.1711, 7.1704, 7.1697, 7.1692, 7.1687, 7.1702, 7.1695, 7.1693, 7.1687, 7.1681, 7.1674, 7.1668, 7.1663, 7.1657, 7.1651, 7.1648, 7.1642, 7.1639, 7.1633, 7.163, 7.1625, 7.1621, 7.1618, 7.1632, 7.1627, 7.1639, 7.1632, 7.1629, 7.1624, 7.1618, 7.1612, 7.1616, 7.1609, 7.1606, 7.16, 7.1593, 7.1568, 7.1562, 7.1576, 7.1569, 7.1563, 7.1557, 7.1551, 7.1566, 7.1564, 7.1559, 7.1554, 7.1551, 7.1545, 7.1539, 7.1553, 7.1565, 7.1574, 7.1567, 7.1561, 7.1557, 7.1572, 7.1569, 7.1565, 7.1558, 7.1552, 7.1547, 7.1581, 7.1574, 7.1567, 7.156, 7.158, 7.1577, 7.1571, 7.1564, 7.1559, 7.1555, 7.1549, 7.1543, 7.1519, 7.1533, 7.1546, 7.1548, 7.1543, 7.1557, 7.1554, 7.1548, 7.1542, 7.1536, 7.1531, 7.1526, 7.1522, 7.1535, 7.153, 7.1544, 7.1539, 7.1553, 7.157, 7.1571, 7.157, 7.1583, 7.1578, 7.1572, 7.1568, 7.1585, 7.158, 7.1574, 7.1567, 7.1562, 7.1575, 7.1589, 7.1583, 7.1579, 7.1572, 7.1569, 7.1562, 7.1556, 7.1552, 7.1546, 7.1541, 7.1554, 7.1548, 7.1542, 7.1536, 7.1529, 7.1523, 7.1518, 7.1531, 7.1525, 7.152, 7.1514, 7.1508, 7.1503, 7.1498, 7.1492, 7.1487, 7.1481, 7.1475, 7.1488, 7.1481, 7.1476, 7.148, 7.1495, 7.1491, 7.1485, 7.148, 7.1495, 7.149, 7.1486, 7.1499, 7.1495, 7.1492, 7.1486, 7.1479, 7.1475, 7.1487, 7.15, 7.1494, 7.1488, 7.1506, 7.1501, 7.153, 7.1524, 7.1518, 7.1512, 7.1507, 7.1503, 7.1497, 7.1493, 7.1487, 7.1516, 7.1534, 7.1548, 7.1561, 7.1574, 7.1569, 7.1563, 7.1557, 7.1569, 7.1582, 7.1576, 7.157, 7.1567, 7.1544, 7.154, 7.1553, 7.1566, 7.1564, 7.1577, 7.159, 7.1603, 7.1597, 7.1591, 7.1585, 7.1579, 7.1573, 7.1567, 7.1561, 7.1557, 7.1552, 7.1564, 7.156, 7.1554, 7.1547, 7.156, 7.1555, 7.1532, 7.1527, 7.1522, 7.1517, 7.153, 7.1525, 7.1521, 7.1518, 7.1514, 7.1508, 7.1503, 7.1518, 7.1512, 7.1508, 7.1502, 7.1516, 7.1511, 7.1488, 7.1482, 7.1476, 7.1472, 7.1467, 7.1465, 7.1462, 7.1456, 7.1451, 7.1465, 7.1478, 7.149, 7.1484, 7.1479, 7.1473, 7.149, 7.1504, 7.1506, 7.1527, 7.1544, 7.1539, 7.1539, 7.1562, 7.1557, 7.1569, 7.1582, 7.1594, 7.1593, 7.1606, 7.1601, 7.1597, 7.1609, 7.1605, 7.16, 7.1612, 7.1608, 7.1633, 7.1676, 7.1693, 7.169, 7.1687, 7.1682, 7.1704, 7.17, 7.1695, 7.1689, 7.1701, 7.1698, 7.1692, 7.1686, 7.1682, 7.1676, 7.167, 7.1684, 7.1682, 7.1689, 7.1684, 7.1678, 7.1676, 7.1672, 7.1684, 7.1679, 7.1674, 7.1668, 7.1662, 7.1658, 7.1652, 7.1648, 7.1642, 7.1636, 7.1631, 7.1625, 7.1688, 7.1709, 7.1703, 7.1698, 7.1692, 7.1688, 7.1699, 7.1693, 7.1687, 7.1699, 7.1693, 7.1687, 7.1681, 7.1676, 7.167, 7.1665, 7.1659, 7.1672, 7.1666, 7.166, 7.1654, 7.1649, 7.1661, 7.1655, 7.1649, 7.1648, 7.1647, 7.1625, 7.1622, 7.1633, 7.1645, 7.1639, 7.1651, 7.1663, 7.1659, 7.1657, 7.1668, 7.1664, 7.1677, 7.1692, 7.1687, 7.1699, 7.1711, 7.1763, 7.1775, 7.1779, 7.1774, 7.1768, 7.1762, 7.1756, 7.1769, 7.1781, 7.1775, 7.1753, 7.1749, 7.1743, 7.1762, 7.1758, 7.1754, 7.1766, 7.1761, 7.1764, 7.1759, 7.1754, 7.1748, 7.1742, 7.1736, 7.1748, 7.1742, 7.1736, 7.1749, 7.1744, 7.1739, 7.1736, 7.173, 7.1726, 7.172, 7.1732, 7.1727, 7.1731, 7.1744, 7.174, 7.1734, 7.1747, 7.1743, 7.1757, 7.1752, 7.1748, 7.1743, 7.1737, 7.1733, 7.1765, 7.1761, 7.1757, 7.1756, 7.175, 7.1745, 7.174, 7.1753, 7.1747, 7.1741, 7.1747, 7.1741, 7.1737, 7.175, 7.1744, 7.174, 7.1752, 7.176, 7.1773, 7.1768, 7.1762, 7.1757, 7.1752, 7.1766, 7.1779, 7.1774, 7.1769, 7.1764, 7.1759, 7.1754, 7.1767, 7.178, 7.1792, 7.1804, 7.1799, 7.1793, 7.1788, 7.1785, 7.1796, 7.1807, 7.1801, 7.1797, 7.1794, 7.1789, 7.179, 7.1787, 7.1781, 7.1791, 7.1787, 7.1783, 7.1778, 7.1775, 7.1769, 7.1765, 7.1776, 7.177, 7.1799, 7.1795, 7.1789, 7.1785, 7.1781, 7.1809, 7.1803, 7.18, 7.1813, 7.1827, 7.1823, 7.1836, 7.1848, 7.1846, 7.1878, 7.1914, 7.1926, 7.1938, 7.1968, 7.198, 7.1992, 7.1988, 7.1972, 7.1951, 7.1945, 7.1956, 7.1935, 7.193, 7.1925, 7.1936, 7.1931, 7.1942, 7.1954, 7.1948, 7.1944, 7.1938, 7.195, 7.1944, 7.1958, 7.1953, 7.1947, 7.1957, 7.1952, 7.1947, 7.1942, 7.1971, 7.1983, 7.1995, 7.2025, 7.2019, 7.2013, 7.2007, 7.2001, 7.2012, 7.2006, 7.2001, 7.2014, 7.2009, 7.2003, 7.1997, 7.1993, 7.1989, 7.2001, 7.2031, 7.2025, 7.2023, 7.2017, 7.203, 7.2041, 7.2036, 7.2047, 7.2051, 7.2045, 7.2055, 7.2051, 7.2046, 7.2043, 7.2037, 7.2031, 7.2026, 7.2021, 7.2017, 7.2011, 7.2005, 7.2, 7.1994, 7.1988, 7.1982, 7.1995, 7.199, 7.2004, 7.1998, 7.1977, 7.1956, 7.1971, 7.1985, 7.1982, 7.198, 7.1974, 7.1971, 7.1971, 7.1966, 7.1964, 7.1958, 7.1952, 7.1993, 7.199, 7.1984, 7.1981, 7.1977, 7.1974, 7.197, 7.1966, 7.1963, 7.1957, 7.1952, 7.1969, 7.1964, 7.1959, 7.1939, 7.1936, 7.1933, 7.1945, 7.194, 7.1919, 7.1917, 7.1929, 7.1941, 7.1935, 7.1929, 7.1909, 7.1905, 7.1902, 7.1898, 7.1894, 7.1889, 7.1886, 7.1881, 7.1892, 7.1888, 7.1899, 7.1894, 7.189, 7.1886, 7.1882, 7.194, 7.1935, 7.193, 7.1928, 7.1923, 7.1918, 7.1914, 7.1909, 7.1903, 7.195, 7.1961, 7.1988, 7.1983, 7.1995, 7.1991, 7.1985, 7.1979, 7.1974, 7.1971, 7.1968, 7.1964, 7.1944, 7.1943, 7.194, 7.1936, 7.1948, 7.1942, 7.1936, 7.193, 7.1912, 7.1907, 7.1902, 7.1897, 7.1892, 7.1887, 7.1882, 7.1877, 7.1887, 7.1898, 7.1893, 7.1921, 7.1916, 7.1921, 7.1916, 7.1911, 7.1922, 7.1932, 7.1927, 7.1938, 7.1934, 7.1929, 7.1926, 7.1935, 7.1947, 7.1943, 7.1977, 7.1973, 7.1969, 7.1966, 7.1963, 7.1958, 7.197, 7.1966, 7.196, 7.1954, 7.1964, 7.196, 7.1955, 7.1965, 7.1977, 7.1973, 7.1984, 7.1998, 7.1981, 7.1967, 7.2029, 7.2009, 7.2004, 7.2036, 7.203, 7.2025, 7.2036, 7.2031, 7.2026, 7.2021, 7.2034, 7.2066, 7.2061, 7.2149, 7.2145, 7.2128, 7.2124, 7.2136, 7.2147, 7.2142, 7.2159, 7.2155, 7.2154, 7.2182, 7.2177, 7.2173, 7.2168, 7.2169, 7.2165, 7.2161, 7.2156, 7.2151, 7.2147, 7.2154, 7.2164, 7.2159, 7.2156, 7.2151, 7.2162, 7.2158, 7.2152, 7.2163, 7.2158, 7.2168, 7.2163, 7.2158, 7.2153, 7.2148, 7.2158, 7.2169, 7.2163, 7.2172, 7.2168, 7.2178, 7.2173, 7.2168, 7.2163, 7.219, 7.2185, 7.2195, 7.219, 7.2186, 7.2198, 7.2194, 7.2191, 7.2186, 7.2182, 7.2192, 7.2205, 7.2201, 7.2199, 7.2195, 7.2191, 7.2188, 7.2186, 7.2181, 7.2179, 7.2174, 7.2185, 7.218, 7.2176, 7.2172, 7.2168, 7.2165, 7.2178, 7.2181, 7.2192, 7.2189, 7.2184, 7.2195, 7.219, 7.2186, 7.2196, 7.2226, 7.2252, 7.2247, 7.2241, 7.2235, 7.2229, 7.2226, 7.2222, 7.2232, 7.2242, 7.2236, 7.2231, 7.2226, 7.2224, 7.2235, 7.2241, 7.2236, 7.2232, 7.2227, 7.2222, 7.2233, 7.2243, 7.2237, 7.2248, 7.2245, 7.2246, 7.2241, 7.2237, 7.2233, 7.2229, 7.2223, 7.2234, 7.2248, 7.2244, 7.2257, 7.2253, 7.2251, 7.2262, 7.2257, 7.2253, 7.2266, 7.2263, 7.2259, 7.227, 7.2279, 7.2276, 7.2271, 7.2267, 7.2263, 7.2272, 7.2271, 7.2266, 7.2264, 7.2275, 7.2272, 7.2273, 7.2286, 7.2315, 7.2331, 7.2348, 7.236, 7.2371, 7.2383, 7.2382, 7.2365, 7.2362, 7.2372, 7.2368, 7.2362, 7.2357, 7.2352, 7.237, 7.2379, 7.2361, 7.2357, 7.2356, 7.2352, 7.2348, 7.2344, 7.2353, 7.2349, 7.2344, 7.234, 7.2321, 7.2331, 7.2327, 7.2338, 7.2333, 7.233, 7.2324, 7.232, 7.2315, 7.2326, 7.2326, 7.2326, 7.2326, 7.2322, 7.2317, 7.2344, 7.234, 7.2365, 7.2392, 7.2389, 7.2402, 7.2398, 7.2414, 7.2441, 7.2437, 7.2448, 7.2444, 7.2451, 7.2449, 7.2445, 7.2441, 7.2438, 7.2434, 7.2461, 7.2472, 7.2456, 7.2452, 7.2462, 7.2456, 7.2452, 7.2463, 7.2473, 7.2468, 7.2463, 7.2459, 7.2455, 7.2465, 7.2462, 7.2458, 7.247, 7.2482, 7.248, 7.2475, 7.2472, 7.2484, 7.248, 7.2491, 7.251, 7.2505, 7.25, 7.2495, 7.249, 7.2486, 7.2497, 7.2507, 7.2525, 7.2507, 7.2516, 7.2526, 7.2537, 7.2531, 7.2513, 7.2494, 7.249, 7.2485, 7.2498, 7.2495, 7.249, 7.2487, 7.2483, 7.248, 7.2476, 7.2472, 7.2468, 7.2464, 7.246, 7.2455, 7.2453, 7.2448, 7.2443, 7.2441, 7.2452, 7.2448, 7.2446, 7.2441, 7.2436, 7.2447, 7.2442, 7.2443, 7.2438, 7.2449, 7.2444, 7.2457, 7.2442, 7.2437, 7.2446, 7.2444, 7.2529, 7.2539, 7.2534, 7.2544, 7.2539, 7.2534, 7.2529, 7.2524, 7.2519, 7.2516, 7.2512, 7.2508, 7.2504, 7.2502, 7.2498, 7.2493, 7.2504, 7.2501, 7.2498, 7.2494, 7.2489, 7.25, 7.2495, 7.2523, 7.252, 7.2515, 7.2512, 7.251, 7.2509, 7.2504, 7.2501, 7.2496, 7.2491, 7.249, 7.2485, 7.2498, 7.2493, 7.249, 7.2485, 7.2479, 7.2475, 7.247, 7.2465, 7.2463, 7.2472, 7.2467, 7.2477, 7.2473, 7.2485, 7.2496, 7.2493, 7.2488, 7.2485, 7.248, 7.2476, 7.2471, 7.2482, 7.2479, 7.2475, 7.2476, 7.2471, 7.2466, 7.2461, 7.2458, 7.2454, 7.245, 7.245, 7.246, 7.247, 7.2465, 7.2461, 7.2456, 7.2452, 7.2434, 7.2429, 7.2424, 7.2419, 7.2416, 7.2411, 7.2409, 7.2419, 7.2429, 7.2424, 7.2419, 7.2413, 7.2411, 7.2406, 7.2402, 7.2397, 7.2407, 7.2402, 7.2398, 7.2393, 7.2389, 7.2399, 7.2395, 7.2393, 7.2389, 7.2387, 7.2383, 7.2408, 7.2403, 7.2399, 7.2395, 7.2392, 7.2402, 7.2412, 7.2407, 7.2424, 7.2428, 7.2422, 7.2432, 7.2427, 7.2435, 7.2445, 7.2443, 7.2453, 7.2449, 7.2446, 7.2441, 7.2451, 7.2446, 7.2441, 7.2438, 7.2433, 7.2443, 7.2438, 7.2436, 7.2447, 7.2442, 7.2437, 7.2433, 7.2443, 7.2438, 7.2448, 7.2443, 7.2438, 7.2433, 7.2428, 7.2427, 7.2436, 7.2432, 7.244, 7.2435, 7.2417, 7.2413, 7.2422, 7.2419, 7.2431, 7.2426, 7.2423, 7.2419, 7.2401, 7.2411, 7.242, 7.2429, 7.2424, 7.2421, 7.2416, 7.2425, 7.2423, 7.242, 7.2417, 7.2412, 7.2421, 7.2416, 7.2411, 7.242, 7.2429, 7.2424, 7.2419, 7.2415, 7.2413, 7.2485, 7.2482, 7.2482, 7.2491, 7.2486, 7.2485, 7.248, 7.2476, 7.2472, 7.2468, 7.2464, 7.2446, 7.2459, 7.2444, 7.2443, 7.244, 7.2471, 7.247, 7.2465, 7.2451, 7.2446, 7.2456, 7.2465, 7.2461, 7.2456, 7.2452, 7.2472, 7.2545, 7.2554, 7.2563, 7.2549, 7.2558, 7.2553, 7.2562, 7.2557, 7.2568, 7.2565, 7.2575, 7.257, 7.2579, 7.2575, 7.2584, 7.2593, 7.2602, 7.2597, 7.2592, 7.2588, 7.2616, 7.2614, 7.261, 7.2622, 7.2617, 7.2613, 7.2609, 7.2605, 7.2587, 7.257, 7.2567, 7.2567, 7.2564, 7.2562, 7.2567, 7.2562, 7.2572, 7.2568, 7.2563, 7.2571, 7.2567, 7.2564, 7.256, 7.2556, 7.2553, 7.2564, 7.2559, 7.2555, 7.255, 7.2559, 7.2597, 7.2592, 7.2588, 7.2591, 7.2627, 7.2638, 7.2638, 7.2646, 7.2671, 7.2666, 7.2661, 7.267, 7.2667, 7.2662, 7.2659, 7.2655, 7.2651, 7.2633, 7.2633, 7.2648, 7.2633, 7.2629, 7.2624, 7.2633, 7.2629, 7.2625, 7.2608, 7.2603, 7.2616, 7.2614, 7.261, 7.2607, 7.263, 7.2625, 7.262, 7.2603, 7.2599, 7.2594, 7.259, 7.2586, 7.2593, 7.2588, 7.2597, 7.2593, 7.2589, 7.2598, 7.2593, 7.2589, 7.2572, 7.2567, 7.2576, 7.2571, 7.2567, 7.2577, 7.2572, 7.2567, 7.2562, 7.2557, 7.2552, 7.2547, 7.253, 7.2528, 7.2523, 7.2519, 7.2516, 7.2513, 7.2495, 7.2493, 7.2491, 7.2501, 7.251, 7.2505, 7.25, 7.2496, 7.2494, 7.2503, 7.2498, 7.2507, 7.2502, 7.2497, 7.2506, 7.2501, 7.2497, 7.2492, 7.2487, 7.2482, 7.2478, 7.2488, 7.2484, 7.2493, 7.2489, 7.2484, 7.2481, 7.2479, 7.2475, 7.2485, 7.2481, 7.2491, 7.2487, 7.2495, 7.2491, 7.2504, 7.2499, 7.2495, 7.249, 7.2486, 7.2482, 7.2477, 7.2473, 7.2468, 7.2466, 7.2475, 7.247, 7.2465, 7.2473, 7.2472, 7.2482, 7.248, 7.2479, 7.2481, 7.248, 7.249, 7.2486, 7.2482, 7.2506, 7.2503, 7.2498, 7.2494, 7.2501, 7.2498, 7.2495, 7.2504, 7.2513, 7.2509, 7.2506, 7.2506, 7.2503, 7.25, 7.2495, 7.249, 7.2499, 7.2494, 7.2503, 7.2512, 7.2521, 7.2516, 7.2512, 7.2521, 7.2504, 7.2518, 7.2514, 7.251, 7.2519, 7.2528, 7.2512, 7.2507, 7.2491, 7.2487, 7.2471, 7.2455, 7.2453, 7.2449, 7.2447, 7.2445, 7.2441, 7.2436, 7.2432, 7.2428, 7.2424, 7.2422, 7.2431, 7.2426, 7.2435, 7.2446, 7.2455, 7.2454, 7.245, 7.2458, 7.2453, 7.2448, 7.2444, 7.2444, 7.2453, 7.2463, 7.2458, 7.2459, 7.2467, 7.2477, 7.2488, 7.2485, 7.2481, 7.2477, 7.2473, 7.2469, 7.2465, 7.2461, 7.2458, 7.2467, 7.2488, 7.2483, 7.2478, 7.2487, 7.2484, 7.2481, 7.2479, 7.2475, 7.2473, 7.2469, 7.2465, 7.2544, 7.254, 7.2563, 7.2572, 7.2568, 7.2563, 7.2547, 7.2544, 7.254, 7.2538, 7.2533, 7.253, 7.2527, 7.2522, 7.2519, 7.2516, 7.2511, 7.252, 7.2516, 7.2513, 7.251, 7.2506, 7.2502, 7.2511, 7.2507, 7.2518, 7.2513, 7.251, 7.2519, 7.2528, 7.2537, 7.2532, 7.2541, 7.2538, 7.2534, 7.253, 7.2526, 7.2523, 7.252, 7.2515, 7.2524, 7.2524, 7.2519, 7.2528, 7.2523, 7.252, 7.2529, 7.2538, 7.2547, 7.2556, 7.2551, 7.2546, 7.2542, 7.2539, 7.2548, 7.2557, 7.2554, 7.2551, 7.256, 7.2555, 7.2539, 7.2536, 7.2537, 7.2533, 7.253, 7.2527, 7.2522, 7.2519, 7.2515, 7.251, 7.2505, 7.25, 7.2496, 7.2492, 7.2489, 7.2485, 7.248, 7.2489, 7.2484, 7.2493, 7.249, 7.2486, 7.247, 7.2466, 7.2462, 7.246, 7.246, 7.2468, 7.2476, 7.2471, 7.2467, 7.2478, 7.2486, 7.247, 7.2478, 7.2486, 7.2482, 7.2498, 7.2506, 7.2501, 7.2497, 7.2492, 7.2495, 7.2492, 7.2487, 7.2482, 7.2493, 7.2501, 7.2516, 7.2524, 7.2508, 7.2492, 7.2488, 7.2488, 7.2483, 7.248, 7.2475, 7.2486, 7.2481, 7.2477, 7.2475, 7.2473, 7.2469, 7.2466, 7.2475, 7.2471, 7.2479, 7.2475, 7.2471, 7.2468, 7.2464, 7.246, 7.2445, 7.2441, 7.2437, 7.2434, 7.243, 7.2426, 7.2422, 7.2431, 7.2427, 7.2412, 7.2408, 7.2407, 7.2403, 7.24, 7.2395, 7.2391, 7.2386, 7.2381, 7.2376, 7.2374, 7.2383, 7.2381, 7.2377, 7.2374, 7.2371, 7.2367, 7.2363, 7.2362, 7.2359, 7.2367, 7.2362, 7.2359, 7.2368, 7.2364, 7.2373, 7.2382, 7.2378, 7.2386, 7.2381, 7.2377, 7.2373, 7.2369, 7.2364, 7.2372, 7.2369, 7.2366, 7.2375, 7.2371, 7.2367, 7.2376, 7.2373, 7.2381, 7.239, 7.2385, 7.2383, 7.2392, 7.239, 7.2399, 7.2395, 7.238, 7.2377, 7.2385, 7.2382, 7.2379, 7.2376, 7.2372, 7.237, 7.2377, 7.2373, 7.237, 7.2378, 7.2374, 7.2371, 7.238, 7.2376, 7.2373, 7.2357, 7.2365, 7.2363, 7.236, 7.2356, 7.2352, 7.2348, 7.2345, 7.2341, 7.2336, 7.2344, 7.234, 7.2345, 7.2353, 7.2361, 7.2358, 7.2366, 7.2373, 7.237, 7.2368, 7.2364, 7.2361, 7.2357, 7.2353, 7.2349, 7.2345, 7.234, 7.2336, 7.2332, 7.2341, 7.2362, 7.2382, 7.2391, 7.2395, 7.2404, 7.24, 7.2397, 7.2405, 7.2403, 7.2398, 7.2406, 7.2402, 7.2397, 7.2406, 7.2402, 7.2397, 7.2393, 7.2389, 7.2374, 7.2369, 7.2364, 7.2372, 7.2368, 7.2364, 7.2349, 7.2334, 7.233, 7.2338, 7.2335, 7.2331, 7.2327, 7.2324, 7.2327, 7.2322, 7.2319, 7.2327, 7.2334, 7.233, 7.2326, 7.2322, 7.232, 7.2329, 7.2325, 7.2321, 7.2324, 7.2325, 7.2324, 7.232, 7.2328, 7.2324, 7.2321, 7.2318, 7.2325, 7.2346, 7.2342, 7.2338, 7.2334, 7.2342, 7.235, 7.2346, 7.2343, 7.2341, 7.2339, 7.2336, 7.2332, 7.2328, 7.2325, 7.2322, 7.2318, 7.2314, 7.2313, 7.2309, 7.2306, 7.2302, 7.23, 7.2297, 7.2293, 7.2289, 7.2285, 7.2281, 7.2278, 7.2287, 7.2295, 7.2302, 7.2299, 7.2286, 7.2271, 7.2267, 7.2263, 7.2259, 7.2255, 7.2251, 7.2262, 7.227, 7.2279, 7.2277, 7.2273, 7.2271, 7.2267, 7.2264, 7.226, 7.2269, 7.2265, 7.2262, 7.2259, 7.2256, 7.2253, 7.2249, 7.2247, 7.2243, 7.2254, 7.225, 7.2246, 7.2242, 7.2261, 7.2268, 7.2265, 7.2261, 7.2272, 7.2269, 7.2267, 7.2275, 7.2273, 7.2281, 7.2289, 7.2286, 7.2294, 7.2301, 7.2297, 7.2293, 7.2301, 7.2296, 7.2282, 7.2278, 7.2286, 7.2283, 7.2279, 7.2275, 7.2271, 7.2268, 7.2264, 7.226, 7.2269, 7.2277, 7.2284, 7.2292, 7.2289, 7.2297, 7.2293, 7.2278, 7.2285, 7.2281, 7.229, 7.2286, 7.2282, 7.2278, 7.2286, 7.2284, 7.2281, 7.2278, 7.2286, 7.2283, 7.2279, 7.2297, 7.2294, 7.2291, 7.2288, 7.2288, 7.2284, 7.2303, 7.23, 7.232, 7.2316, 7.2301, 7.2298, 7.2294, 7.229, 7.2288, 7.2285, 7.2281, 7.2277, 7.2273, 7.2269, 7.2281, 7.2277, 7.2285, 7.2281, 7.2289, 7.2285, 7.2293, 7.2291, 7.229, 7.2288, 7.2283, 7.2278, 7.2274, 7.2272, 7.2269, 7.2278, 7.2285, 7.2282, 7.2278, 7.2275, 7.2273, 7.2271, 7.2271, 7.2267, 7.2265, 7.2273, 7.2269, 7.2265, 7.2262, 7.2258, 7.2254, 7.2251, 7.2248, 7.2256, 7.2253, 7.2261, 7.2257, 7.2254, 7.2252, 7.2248, 7.2256, 7.2252, 7.2249, 7.2246, 7.2231, 7.2228, 7.2226, 7.2211, 7.2207, 7.2215, 7.2211, 7.2209, 7.2241, 7.2238, 7.2248, 7.2246, 7.2254, 7.2251, 7.2248, 7.2244, 7.2241, 7.2249, 7.2257, 7.2267, 7.2264, 7.2262, 7.226, 7.2257, 7.2253, 7.2249, 7.2246, 7.2243, 7.2242, 7.2238, 7.2234, 7.2234, 7.2231, 7.2239, 7.2237, 7.2233, 7.2242, 7.2238, 7.2234, 7.222, 7.2217, 7.2214, 7.2211, 7.2219, 7.2215, 7.2211, 7.2208, 7.2217, 7.2214, 7.2212, 7.222, 7.2228, 7.2236, 7.2244, 7.2252, 7.2248, 7.2234, 7.223, 7.2215, 7.2211, 7.2207, 7.2215, 7.2212, 7.2208, 7.2206, 7.2213, 7.2211, 7.2207, 7.2214, 7.2211, 7.2209, 7.2218, 7.2216, 7.2224, 7.222, 7.2217, 7.2213, 7.221, 7.2218, 7.2214, 7.2211, 7.2219, 7.2216, 7.2214, 7.2211, 7.2208, 7.2205, 7.2191, 7.2199, 7.2207, 7.2204, 7.22, 7.2196, 7.2192, 7.219, 7.2199, 7.2195, 7.2203, 7.2201, 7.2197, 7.2205, 7.2201, 7.2198, 7.2196, 7.2193, 7.219, 7.2187, 7.2187, 7.2194, 7.2192, 7.2188, 7.2184, 7.218, 7.2182, 7.2189, 7.2196, 7.2191, 7.2188, 7.2184, 7.218, 7.2176, 7.2173, 7.2169, 7.2165, 7.2161, 7.217, 7.2178, 7.2174, 7.217, 7.2177, 7.2173, 7.2169, 7.2177, 7.2174, 7.2172, 7.2169, 7.2165, 7.2151, 7.2147, 7.2155, 7.2151, 7.2159, 7.2155, 7.2153, 7.2139, 7.2138, 7.2134, 7.2141, 7.2137, 7.2136, 7.2132, 7.2118, 7.2114, 7.2111, 7.2107, 7.2104, 7.2103, 7.2113, 7.2109, 7.2117, 7.2114, 7.211, 7.2106, 7.2102, 7.2101, 7.2087, 7.2084, 7.208, 7.207, 7.2073, 7.2072, 7.2069, 7.2065, 7.2062, 7.2058, 7.2055, 7.2063, 7.206, 7.2058, 7.2064, 7.2062, 7.2059, 7.2055, 7.2052, 7.206, 7.2079, 7.2076, 7.2072, 7.2069, 7.2077, 7.2074, 7.2071, 7.2068, 7.2065, 7.2072, 7.2059, 7.2057, 7.2053, 7.2049, 7.2058, 7.2054, 7.204, 7.2037, 7.2034, 7.203, 7.2028, 7.2025, 7.2023, 7.203, 7.2026, 7.2024, 7.2021, 7.2017, 7.2025, 7.2033, 7.2031, 7.204, 7.2037, 7.2034, 7.2031, 7.2029, 7.2036, 7.2032, 7.2029, 7.2025, 7.2023, 7.202, 7.2027, 7.2013, 7.201, 7.1996, 7.1983, 7.1979, 7.1977, 7.199, 7.1999, 7.1997, 7.1994, 7.1993, 7.1989, 7.1986, 7.1995, 7.1991, 7.1988, 7.2007, 7.2004, 7.2011, 7.2019, 7.2015, 7.2011, 7.2, 7.1996, 7.204, 7.2054, 7.2054, 7.2061, 7.2058, 7.2055, 7.2053, 7.2049, 7.2068, 7.2064, 7.2063, 7.206, 7.2058, 7.2054, 7.205, 7.2058, 7.2055, 7.2063, 7.207, 7.2067, 7.2131, 7.2127, 7.2135, 7.2132, 7.213, 7.2116, 7.2112, 7.2109, 7.2161, 7.2158, 7.2154, 7.215, 7.2158, 7.2154, 7.215, 7.2148, 7.2168, 7.2164, 7.2161, 7.2158, 7.2154, 7.215, 7.2147, 7.2144, 7.213, 7.2127, 7.2124, 7.2132, 7.2129, 7.213, 7.2127, 7.2114, 7.211, 7.2107, 7.2104, 7.2101, 7.2098, 7.2095, 7.2092, 7.21, 7.2096, 7.2093, 7.2101, 7.2099, 7.2096, 7.2093, 7.2089, 7.2086, 7.2082, 7.208, 7.2076, 7.2072, 7.2069, 7.2066, 7.2062, 7.206, 7.2056, 7.2064, 7.2066, 7.2063, 7.206, 7.2047, 7.2034, 7.2031, 7.2044, 7.2051, 7.2048, 7.2044, 7.2041, 7.2038, 7.2061, 7.2057, 7.2067, 7.2068, 7.2066, 7.2075, 7.2062, 7.207, 7.2067, 7.2089, 7.2088, 7.2087, 7.2077, 7.2115, 7.2113, 7.211, 7.2118, 7.2114, 7.2112, 7.2112, 7.2101, 7.2098, 7.2087, 7.2084, 7.2073, 7.2069, 7.2065, 7.2062, 7.2058, 7.2057, 7.2054, 7.2052, 7.2049, 7.2057, 7.2058, 7.2054, 7.2062, 7.2063, 7.206, 7.2058, 7.2055, 7.2051, 7.2047, 7.2044, 7.204, 7.2036, 7.2043, 7.2039, 7.2035, 7.2032, 7.204, 7.2038, 7.2034, 7.2034, 7.2031, 7.2038, 7.2054, 7.2054, 7.2061, 7.2071, 7.2078, 7.2088, 7.2085, 7.2095, 7.2102, 7.2099, 7.2095, 7.2102, 7.211, 7.2108, 7.2115, 7.2122, 7.214, 7.2137, 7.2133, 7.2129, 7.2126, 7.2122, 7.2118, 7.2115, 7.2112, 7.2108, 7.2104, 7.2102, 7.2098, 7.2105, 7.2102, 7.2109, 7.2105, 7.2102, 7.2109, 7.2105, 7.2102, 7.2099, 7.2096, 7.2094, 7.209, 7.2086, 7.2095, 7.2092, 7.2096, 7.2095, 7.2093, 7.2101, 7.2099, 7.2096, 7.2093, 7.2091, 7.2088, 7.2092, 7.2092, 7.2089, 7.2086, 7.2094, 7.2105, 7.2102, 7.2092, 7.2089, 7.2088, 7.2084, 7.2081, 7.2079, 7.2076, 7.2063, 7.205, 7.2046, 7.2043, 7.2052, 7.2061, 7.2057, 7.2056, 7.2081, 7.2078, 7.2075, 7.2072, 7.2079, 7.2077, 7.2075, 7.2082, 7.2078, 7.2075, 7.2082, 7.2082, 7.2078, 7.2075, 7.2082, 7.2081, 7.2077, 7.2073, 7.206, 7.2067, 7.2073, 7.2069, 7.2058, 7.2055, 7.2063, 7.2059, 7.2066, 7.2053, 7.206, 7.207, 7.2067, 7.2074, 7.2071, 7.2068, 7.2065, 7.2061, 7.2061, 7.2061, 7.2048, 7.2035, 7.2031, 7.2039, 7.2046, 7.2043, 7.205, 7.2058, 7.2065, 7.2061, 7.2057, 7.2046, 7.2065, 7.2062, 7.2052, 7.2049, 7.2056, 7.2063, 7.206, 7.2057, 7.2056, 7.2055, 7.2066, 7.2075, 7.2071, 7.2068, 7.2065, 7.2062, 7.2081, 7.2068, 7.2076, 7.2083, 7.208, 7.2077, 7.2074, 7.2072, 7.2069, 7.2065, 7.2053, 7.205, 7.2046, 7.2044, 7.2041, 7.2048, 7.2045, 7.2041, 7.2039, 7.2036, 7.2032, 7.2028, 7.2025, 7.2022, 7.202, 7.2027, 7.2035, 7.2031, 7.2027, 7.2023, 7.202, 7.2016, 7.2012, 7.2008, 7.2015, 7.2023, 7.202, 7.202, 7.2017, 7.2014, 7.2022, 7.2019, 7.202, 7.2017, 7.2024, 7.2021, 7.2018, 7.2019, 7.2026, 7.2033, 7.203, 7.2026, 7.2022, 7.2018, 7.2018, 7.2014, 7.2021, 7.2028, 7.2024, 7.2022, 7.2019, 7.2026, 7.2024, 7.202, 7.2016, 7.2013, 7.2009, 7.2007, 7.2003, 7.2011, 7.2008, 7.2016, 7.2024, 7.2023, 7.202, 7.2017, 7.2015, 7.2013, 7.201, 7.2009, 7.2006, 7.2003, 7.2011, 7.2008, 7.2006, 7.2004, 7.1991, 7.1998, 7.1994, 7.1991, 7.199, 7.1987, 7.1984, 7.1981, 7.1978, 7.1975, 7.1982, 7.1979, 7.1976, 7.1973, 7.1992, 7.1979, 7.1975, 7.1981, 7.198, 7.1976, 7.1984, 7.1988, 7.1985, 7.1982, 7.1978, 7.1975, 7.1972, 7.1982, 7.198, 7.1968, 7.1965, 7.1972, 7.1969, 7.1977, 7.1975, 7.1973, 7.1973, 7.1981, 7.1988, 7.1998, 7.1997, 7.1993, 7.199, 7.1988, 7.1992, 7.1989, 7.1986, 7.1982, 7.1989, 7.1995, 7.1992, 7.199, 7.1977, 7.1974, 7.1971, 7.1968, 7.1965, 7.1962, 7.1969, 7.1967, 7.1973, 7.198, 7.1979, 7.1967, 7.1956, 7.1963, 7.1971, 7.1968, 7.1965, 7.1972, 7.1979, 7.1976, 7.1972, 7.1968, 7.1965, 7.1963, 7.1998, 7.1995, 7.1992, 7.1988, 7.1986, 7.1992, 7.1979, 7.1975, 7.1983, 7.1981, 7.1979, 7.1986, 7.1993, 7.1989, 7.1986, 7.1975, 7.1979, 7.1975, 7.1985, 7.1985, 7.1976, 7.1976, 7.1974, 7.1993, 7.2011, 7.2008, 7.2005, 7.2001, 7.1998, 7.1994, 7.1991, 7.1988, 7.1994, 7.199, 7.1997, 7.1994, 7.2001, 7.1998, 7.1995, 7.1992, 7.1991, 7.1988, 7.1984, 7.1992, 7.1989, 7.1977, 7.1974, 7.1971, 7.1989, 7.2007, 7.2006, 7.2003, 7.2001, 7.1999, 7.1997, 7.1995, 7.1997, 7.2004, 7.2002, 7.1999, 7.1996, 7.1993, 7.1993, 7.1991, 7.1987, 7.1983, 7.199, 7.1987, 7.1983, 7.1979, 7.1975, 7.1973, 7.1971, 7.1978, 7.1976, 7.1973, 7.1981, 7.1978, 7.1975, 7.1973, 7.197, 7.1967, 7.1963, 7.1969, 7.1956, 7.1962, 7.1959, 7.1955, 7.1952, 7.1949, 7.1955, 7.1952, 7.1959, 7.1966, 7.1964, 7.1961, 7.1967, 7.1975, 7.1982, 7.1988, 7.1985, 7.1973, 7.1971, 7.1977, 7.1974, 7.1971, 7.1988, 7.1985, 7.1984, 7.198, 7.1968, 7.1966, 7.1974, 7.1973, 7.1971, 7.1968, 7.1964, 7.1961, 7.1958, 7.1955, 7.1952, 7.1959, 7.1963, 7.1961, 7.1958, 7.1965, 7.1962, 7.196, 7.1958, 7.1955, 7.1955, 7.1963, 7.1969, 7.1965, 7.1962, 7.1961, 7.197100000000001, 7.1976, 7.1973, 7.198, 7.1987, 7.1983, 7.198, 7.1977, 7.1974, 7.1984, 7.1973, 7.1979, 7.1977, 7.1973, 7.197, 7.1977, 7.1974, 7.197, 7.1967, 7.1973, 7.197, 7.1957, 7.1953, 7.195, 7.1959, 7.1955, 7.1965, 7.197500000000001, 7.198500000000001, 7.2003, 7.2012, 7.2011, 7.2008, 7.2007, 7.2004, 7.2011, 7.2019, 7.2036, 7.2043, 7.205, 7.2047, 7.2045, 7.2052, 7.205, 7.2057, 7.2054, 7.2051, 7.2048, 7.2036, 7.2033, 7.203, 7.2029, 7.2027, 7.2034, 7.204, 7.204, 7.2039, 7.2036, 7.2033, 7.2031, 7.2028, 7.2025, 7.2022, 7.2029, 7.2026, 7.2033, 7.2031, 7.2038, 7.2036, 7.2034, 7.2033, 7.2031, 7.2029, 7.2026, 7.2023, 7.2025, 7.2022, 7.2019, 7.2016, 7.2013, 7.201, 7.2007, 7.2005, 7.2002, 7.2, 7.2010000000000005, 7.2007, 7.2014, 7.2022, 7.2019, 7.2016, 7.2013, 7.201, 7.2018, 7.2015, 7.2013, 7.201, 7.2018, 7.2015, 7.2012, 7.201, 7.2007, 7.2004, 7.2001, 7.1997, 7.1994, 7.2006, 7.2012, 7.2021, 7.2018, 7.2014, 7.2011, 7.2008, 7.1996, 7.1994, 7.2004, 7.2014000000000005, 7.202400000000001, 7.203400000000001, 7.2044000000000015, 7.2041, 7.2029, 7.2036, 7.2034, 7.2031, 7.2028, 7.2025, 7.2022, 7.202, 7.2027, 7.2024, 7.2022, 7.2019, 7.2027, 7.2024, 7.2031, 7.2032, 7.2029, 7.2017, 7.2006, 7.2003, 7.2, 7.1997, 7.2014, 7.2012, 7.2013, 7.2001, 7.1999, 7.2014, 7.2011, 7.2008, 7.2005, 7.2003, 7.202, 7.2027, 7.2024, 7.2021, 7.2018, 7.2015, 7.2021, 7.2018, 7.2015, 7.2012, 7.2009, 7.2006, 7.2003, 7.2, 7.1997, 7.1997, 7.1985, 7.1991, 7.1989, 7.2006, 7.2003, 7.2004, 7.2001, 7.2009, 7.2006, 7.2014, 7.202, 7.2017, 7.2014, 7.2012, 7.202, 7.2027, 7.2024, 7.2031, 7.2028, 7.2036, 7.2039, 7.2038, 7.2045, 7.2042, 7.2059, 7.2069, 7.2076, 7.2073, 7.208, 7.2090000000000005, 7.2087, 7.2085, 7.2076, 7.2093, 7.2098, 7.2094, 7.2091, 7.2088, 7.2085, 7.2082, 7.2089, 7.2087, 7.2085, 7.2082, 7.208, 7.2133, 7.213, 7.2136, 7.2133, 7.213, 7.2129, 7.2135, 7.217, 7.2178, 7.2184, 7.2194, 7.2201, 7.2208, 7.2214, 7.2211, 7.2217, 7.2214, 7.221, 7.2206, 7.2204, 7.2201, 7.2198, 7.2194, 7.2191, 7.2188, 7.2185, 7.2195, 7.2192, 7.2198, 7.2195, 7.2192, 7.2189, 7.2186, 7.2184, 7.2181, 7.2179, 7.2177, 7.2175, 7.2181, 7.2178, 7.2175, 7.2173, 7.218, 7.2177, 7.2175, 7.2173, 7.2172, 7.2169, 7.2157, 7.2155, 7.2153, 7.2151, 7.2149, 7.2155, 7.2152, 7.2149, 7.2147, 7.2146, 7.2144, 7.2142, 7.2141, 7.214, 7.2139, 7.2136, 7.2133, 7.2129, 7.2127, 7.2134, 7.2131, 7.2119, 7.2118, 7.2114, 7.2111, 7.2117, 7.2114, 7.2112, 7.2109, 7.2106, 7.2104, 7.2102, 7.2099, 7.2105, 7.2102, 7.2108, 7.2105, 7.2102, 7.21, 7.2106, 7.2103, 7.2109, 7.2118, 7.2124, 7.2121, 7.2118, 7.2128, 7.2125, 7.2124, 7.2121, 7.2118, 7.2118, 7.2115, 7.2121, 7.2119, 7.2116, 7.2115, 7.2113, 7.212, 7.2117, 7.2114, 7.2112, 7.211, 7.2108, 7.2105, 7.2096, 7.2096, 7.2093, 7.209, 7.2087, 7.2093, 7.21, 7.2117, 7.2114, 7.2116, 7.2113, 7.212, 7.2126, 7.2123, 7.2132, 7.213, 7.2128, 7.2125, 7.2131, 7.2128, 7.2128, 7.2126, 7.2115, 7.2112, 7.2118, 7.2106, 7.2103, 7.2101, 7.2107, 7.2104, 7.213, 7.2128, 7.2125, 7.2131, 7.2137, 7.2134, 7.217, 7.2168, 7.2165, 7.2161, 7.2158, 7.2156, 7.2153, 7.2159, 7.2156, 7.2162, 7.2158, 7.2155, 7.2161, 7.2167, 7.2164, 7.217, 7.2177, 7.2174, 7.2171, 7.2169, 7.2167, 7.2166, 7.2172, 7.2169, 7.2166, 7.2164, 7.2162, 7.216, 7.2158, 7.2148, 7.2145, 7.2143, 7.2149, 7.2161, 7.2168, 7.2166, 7.2164, 7.2161, 7.2158, 7.2156, 7.2154, 7.2153, 7.215, 7.2147, 7.2154, 7.2152, 7.2149, 7.2146, 7.2144, 7.2141, 7.2139, 7.2146, 7.2143, 7.215, 7.2147, 7.2146, 7.2144, 7.2149, 7.2157, 7.2164, 7.2164, 7.2162, 7.216, 7.2157, 7.2154, 7.2161, 7.2159, 7.2166, 7.2164, 7.217, 7.2176, 7.2209, 7.2206, 7.2204, 7.2202, 7.22, 7.2206, 7.2212, 7.2209, 7.2215, 7.2212, 7.221, 7.222, 7.2226, 7.2233, 7.223, 7.2228, 7.2226, 7.2223, 7.2221, 7.2218, 7.2215, 7.2213, 7.2219, 7.2218, 7.2224, 7.2221, 7.2218, 7.2215, 7.2213, 7.2219, 7.2216, 7.2213, 7.2219, 7.2216, 7.2216, 7.2213, 7.2219, 7.2217, 7.2215, 7.2213, 7.2212, 7.2242, 7.2239, 7.2236, 7.2233, 7.223, 7.2228, 7.2231, 7.2229, 7.2228, 7.2225, 7.2225, 7.2231, 7.223, 7.2227, 7.2246, 7.2244, 7.2241, 7.223, 7.2228, 7.2225, 7.2223, 7.2221, 7.2227, 7.2224, 7.223, 7.2228, 7.2234, 7.224, 7.2237, 7.2243, 7.224, 7.2237, 7.2234, 7.2233, 7.223, 7.2227, 7.2225, 7.2222, 7.2228, 7.2234, 7.224, 7.2238, 7.2236, 7.2235, 7.2235, 7.2232, 7.2221, 7.2218, 7.2215, 7.2221, 7.2218, 7.2218, 7.2215, 7.2212, 7.221, 7.2207, 7.2205, 7.2212, 7.2209, 7.2206, 7.2212, 7.222, 7.2217, 7.2214, 7.2211, 7.2208, 7.2206, 7.2195, 7.2194, 7.2191, 7.2189, 7.2186, 7.2184, 7.2173, 7.2171, 7.2168, 7.2173, 7.2179, 7.2176, 7.2173, 7.217, 7.2176, 7.2182, 7.218, 7.2186, 7.2193, 7.219, 7.2189, 7.2188, 7.2187, 7.2176, 7.2181, 7.2171, 7.2169, 7.2167, 7.2164, 7.2163, 7.216, 7.2158, 7.2156, 7.2153, 7.2152, 7.2149, 7.2146, 7.2135, 7.2132, 7.213, 7.2127, 7.2124, 7.2121, 7.2128, 7.2125, 7.2122, 7.2111, 7.2109, 7.2119, 7.2129, 7.2126, 7.2132, 7.2138, 7.2144, 7.215, 7.2148, 7.2154, 7.2151, 7.2149, 7.2146, 7.2145, 7.2142, 7.2139, 7.2145, 7.2142, 7.2152, 7.2158, 7.2155, 7.2153, 7.2154, 7.2153, 7.2151, 7.2148, 7.2146, 7.2145, 7.2142, 7.2139, 7.2136, 7.2133, 7.214, 7.2138, 7.2135, 7.2134, 7.2131, 7.2131, 7.2128, 7.2125, 7.2123, 7.2121, 7.2118, 7.2115, 7.2116, 7.2117, 7.2114, 7.2111, 7.2108, 7.2124, 7.2121, 7.2118, 7.2115, 7.2108, 7.2115, 7.2115, 7.2114, 7.212, 7.2117, 7.2114, 7.2112, 7.211, 7.2107, 7.2106, 7.2105, 7.211, 7.2107, 7.2104, 7.2111, 7.2117, 7.2116, 7.2114, 7.2111, 7.2108, 7.2106, 7.2103, 7.2102, 7.21, 7.2098, 7.2104, 7.2101, 7.2098, 7.2095, 7.2092, 7.2091, 7.208, 7.2078, 7.2076, 7.2073, 7.2071, 7.2069, 7.2066, 7.2063, 7.2061, 7.2059, 7.2057, 7.2055, 7.2053, 7.206, 7.2057, 7.2054, 7.2051, 7.2058, 7.2065, 7.2072, 7.2078, 7.2076, 7.2083, 7.2081, 7.2078, 7.2084, 7.2081, 7.2088, 7.2085, 7.2092, 7.209, 7.2087, 7.2076, 7.2075, 7.2072, 7.207, 7.2068, 7.2067, 7.2067, 7.2064, 7.207, 7.2067, 7.2064, 7.2062, 7.2059, 7.2056, 7.2062, 7.2059, 7.2056, 7.2053, 7.2059, 7.2057, 7.2054, 7.2052, 7.205, 7.2049, 7.2046, 7.2043, 7.2043, 7.204, 7.2038, 7.2036, 7.2046, 7.2056000000000004, 7.2045, 7.205500000000001, 7.2052, 7.2062, 7.2072, 7.2132, 7.2129, 7.2135, 7.2141, 7.2145, 7.2153, 7.215, 7.2147, 7.2144, 7.2142, 7.2139, 7.2136, 7.2139, 7.2137, 7.2134, 7.2131, 7.2129, 7.2126, 7.2124, 7.213, 7.2128, 7.2126, 7.2125, 7.213, 7.2127, 7.2133, 7.2132, 7.213, 7.2152, 7.2149, 7.2147, 7.2144, 7.2133, 7.2139, 7.2145, 7.2151, 7.214, 7.2146, 7.2152, 7.2141, 7.2148, 7.2153, 7.2158, 7.2164, 7.2161, 7.2158, 7.2159, 7.2157, 7.2163, 7.2169, 7.2175, 7.2172, 7.2169, 7.2178, 7.2175, 7.2181, 7.2187, 7.2187, 7.2193, 7.219, 7.2187, 7.2176, 7.2174, 7.2171, 7.2169, 7.2166, 7.2164, 7.2161, 7.2159, 7.2156, 7.2153, 7.2159, 7.2165, 7.2163, 7.216, 7.2159, 7.2165, 7.2162, 7.2161, 7.2159, 7.2156, 7.2154, 7.2152, 7.2149, 7.2146, 7.2154, 7.2143, 7.214, 7.2137, 7.2135, 7.2135, 7.2132, 7.2129, 7.2126, 7.2115, 7.2112, 7.2113, 7.211, 7.2107, 7.2113, 7.2119, 7.2117, 7.2123, 7.2129, 7.2126, 7.2131, 7.2128, 7.2125, 7.2122, 7.2119, 7.2124, 7.2122, 7.2122, 7.2119, 7.2116, 7.2113, 7.2103, 7.2109, 7.2106, 7.2096, 7.2094, 7.2092, 7.2089, 7.2086, 7.2083, 7.208, 7.2077, 7.2074, 7.2071, 7.2068, 7.2074, 7.2071, 7.2069, 7.2068, 7.2065, 7.2063, 7.206, 7.2059, 7.2056, 7.2053, 7.2042, 7.2039, 7.2036, 7.2042, 7.2048, 7.2046, 7.2044, 7.2041, 7.2045, 7.2051, 7.2048, 7.2045, 7.2042, 7.204, 7.2038, 7.2035, 7.2032, 7.2038, 7.2035, 7.2041, 7.2038, 7.2035, 7.2032, 7.203, 7.2036, 7.2034, 7.2032, 7.203, 7.202, 7.2017, 7.2015, 7.2022, 7.203200000000001, 7.204200000000001, 7.2048, 7.2046, 7.2044, 7.2042, 7.2039, 7.2046, 7.2036, 7.2026, 7.2023, 7.202, 7.2018, 7.2024, 7.2021, 7.2019, 7.2017, 7.2023, 7.202, 7.2017, 7.2014, 7.2012, 7.2009, 7.2015, 7.2012, 7.201, 7.2016, 7.2022, 7.202, 7.2017, 7.2014, 7.2011, 7.2017, 7.2014, 7.2012, 7.2009, 7.2006, 7.2003, 7.2001, 7.2008, 7.2005, 7.2002, 7.1999, 7.2005, 7.2011, 7.2008, 7.2014, 7.2019, 7.2017, 7.2015, 7.2012, 7.201, 7.2009, 7.1999, 7.1997, 7.2011, 7.2008, 7.2005, 7.2002, 7.2, 7.2061, 7.2059, 7.2058, 7.2064, 7.207, 7.208, 7.2078, 7.2075, 7.2081, 7.2079, 7.2076, 7.2074, 7.208, 7.2077, 7.2074, 7.2079, 7.2076, 7.2073, 7.207, 7.2067, 7.2065, 7.2062, 7.2059, 7.2056, 7.2061, 7.2058, 7.2064, 7.2062, 7.2059, 7.2072, 7.2086, 7.2101, 7.2109, 7.2114, 7.2111, 7.21, 7.2106, 7.2111, 7.2109, 7.2106, 7.2109, 7.2107, 7.2105, 7.2111, 7.2117, 7.2116, 7.2122, 7.2128, 7.2134, 7.2131, 7.2137, 7.2134, 7.214, 7.2137, 7.2134, 7.2131, 7.2128, 7.2126, 7.2132, 7.213, 7.2137, 7.2134, 7.2139, 7.2136, 7.2142, 7.2148, 7.2144, 7.2143, 7.214, 7.2138, 7.2144, 7.2141, 7.2139, 7.2136, 7.2134, 7.2131, 7.2128, 7.2125, 7.2122, 7.2128, 7.2133, 7.213, 7.2128, 7.2133, 7.213, 7.2136, 7.2133, 7.2131, 7.2128, 7.2126, 7.2132, 7.2138, 7.2136, 7.2141, 7.2138, 7.2135, 7.2133, 7.213, 7.2136, 7.2133, 7.213, 7.2127, 7.2132, 7.2138, 7.2143, 7.2149, 7.2146, 7.2149, 7.2146, 7.2144, 7.2141, 7.2147, 7.2152, 7.2158, 7.2155, 7.2153, 7.2151, 7.2157, 7.2155, 7.2153, 7.2151, 7.2148, 7.2154, 7.2151, 7.2148, 7.2145, 7.2151, 7.2165, 7.2171, 7.2161, 7.2175, 7.2181, 7.2186, 7.2184, 7.2181, 7.2179, 7.218, 7.2178, 7.2175, 7.2173, 7.2179, 7.2176, 7.2181, 7.2178, 7.2183, 7.218, 7.2186, 7.2192, 7.2189, 7.2187, 7.2193, 7.219, 7.2187, 7.2184, 7.2181, 7.2204, 7.2214, 7.2211, 7.2208, 7.2213, 7.2219, 7.2209, 7.2206, 7.222, 7.2217, 7.2214, 7.2218, 7.2215, 7.222, 7.2217, 7.2222, 7.2228, 7.2225, 7.2215, 7.2221, 7.2218, 7.2215, 7.2221, 7.2218, 7.2246, 7.2243, 7.224, 7.2246, 7.2252, 7.2258, 7.2264, 7.2261, 7.2266, 7.2271, 7.2276, 7.2281, 7.2278, 7.2276, 7.2274, 7.2272, 7.2282, 7.2288, 7.2294, 7.2291, 7.2297, 7.2295, 7.23, 7.2297, 7.2295, 7.2292, 7.2298, 7.2295, 7.2293, 7.2306, 7.2304, 7.2301, 7.2307, 7.2313, 7.2326, 7.2332, 7.233, 7.2327, 7.2324, 7.2323, 7.232, 7.2325, 7.2323, 7.2344, 7.2345, 7.2351, 7.2349, 7.2355, 7.2352, 7.2358, 7.2356, 7.2353, 7.235, 7.2348, 7.2346, 7.2344, 7.235, 7.2348, 7.2346, 7.2343, 7.234, 7.2341, 7.234, 7.2331, 7.2328, 7.2329, 7.2334, 7.2333, 7.2334, 7.2339, 7.2345, 7.2353, 7.2351, 7.2348, 7.2338, 7.2335, 7.2332, 7.2329, 7.2327, 7.2324, 7.2322, 7.2312, 7.2318, 7.2326, 7.2323, 7.2334, 7.2339, 7.2344, 7.2341, 7.2362, 7.236, 7.2357, 7.2354, 7.2351, 7.2341, 7.2339, 7.2337, 7.2334, 7.2331, 7.2328, 7.2334, 7.2339, 7.2329, 7.2336, 7.2334, 7.2331, 7.2328, 7.2326, 7.2323, 7.232, 7.2318, 7.2327, 7.2324, 7.2322, 7.2319, 7.2317, 7.2314, 7.2304, 7.2301, 7.2298, 7.2295, 7.23, 7.2297, 7.2294, 7.2292, 7.2282, 7.2287, 7.2301, 7.2301, 7.2299, 7.2297, 7.2294, 7.2291, 7.2294, 7.2292, 7.2301, 7.2306, 7.2312, 7.231, 7.2315, 7.2313, 7.2303, 7.2301, 7.2298, 7.2295, 7.23, 7.2306, 7.231, 7.2335, 7.2332, 7.2346, 7.2343, 7.2341, 7.2339, 7.2344, 7.2342, 7.2339, 7.2336, 7.2341, 7.2354, 7.2359, 7.2356, 7.2354, 7.2355, 7.2378, 7.2376, 7.2382, 7.238, 7.2385, 7.239, 7.2387, 7.2384, 7.2389, 7.2394, 7.2413, 7.2418, 7.2415, 7.242, 7.2425, 7.2423, 7.2428, 7.2426, 7.2431, 7.2428, 7.2433, 7.2438, 7.2435, 7.2432, 7.243, 7.2435, 7.244, 7.2445, 7.245, 7.2455, 7.2453, 7.2451, 7.2456, 7.2454, 7.2459, 7.2456, 7.2462, 7.2475, 7.2481, 7.2479, 7.2484, 7.2474, 7.2464, 7.2461, 7.2458, 7.2456, 7.2454, 7.2451, 7.2457, 7.2454, 7.2459, 7.2457, 7.2454, 7.246, 7.2457, 7.2462, 7.2459, 7.2456, 7.247, 7.2468, 7.2466, 7.2466, 7.2479, 7.2476, 7.2473, 7.2478, 7.2475, 7.2472, 7.2477, 7.2475, 7.2481, 7.248, 7.2486, 7.2485, 7.2483, 7.2493, 7.2491, 7.2496, 7.2493, 7.249, 7.2487, 7.2485, 7.2485, 7.2483, 7.2481, 7.2486, 7.2484, 7.2482, 7.248, 7.2477, 7.2491, 7.2488, 7.2493, 7.249, 7.2487, 7.2484], '192.168.122.113': [5.3399, 5.7984, 7.5856, 7.1247, 6.765, 6.5639, 6.3923, 6.2816, 6.1846, 6.655, 6.5355, 6.4838, 7.0396, 6.9314, 6.9955, 6.8962, 7.1294, 7.3376, 7.5061, 7.4291, 7.3228, 7.2325, 7.3928, 7.3199, 7.2532, 7.1802, 6.935, 7.0976, 7.2514, 7.4145, 7.3443, 7.3263, 7.2981, 7.2725, 7.2341, 7.0528, 7.0176, 7.1138, 7.224, 7.1873, 7.1509, 7.1227, 7.2288, 7.1903, 7.1585, 7.1412, 7.1673, 7.2481, 7.2163, 7.1839, 7.1551, 7.2239, 7.2921, 7.2682, 7.2322, 7.2054, 7.1739, 7.1526, 7.1294, 7.1118, 7.0897, 7.0874, 7.0676, 7.1065, 7.085, 7.0651, 7.0412, 7.0175, 7.034, 7.0987, 7.1183, 7.0925, 7.0678, 7.0488, 6.9816, 6.9667, 6.946, 6.9246, 6.9069, 6.8976, 6.9028, 6.8947, 7.0327, 7.0136, 6.9993, 7.0463, 7.0268, 7.0091, 6.9911, 6.9763, 6.9652, 7.0292, 7.0123, 7.0044, 7.0438, 7.029, 7.0148, 7.0012, 6.9891, 6.9774, 6.9713, 6.9567, 6.941, 6.9264, 6.9203, 6.9097, 6.951, 6.9387, 6.9486, 7.0831, 7.0897, 7.1295, 7.1157, 7.105, 7.1128, 7.0975, 7.1039, 7.0919, 7.0797, 7.1249, 7.2077, 7.1952, 7.1803, 7.1279, 7.1606, 7.1464, 7.1351, 7.1236, 7.1592, 7.1499, 7.1514, 7.373, 7.3697, 7.3539, 7.305, 7.2992, 7.2916, 7.2805, 7.2663, 7.2554, 7.2461, 7.2443, 7.2319, 7.2236, 7.2519, 7.2439, 7.2355, 7.2244, 7.2196, 7.2091, 7.202, 7.1903, 7.1782, 7.202, 7.2304, 7.2221, 7.2113, 7.2027, 7.1961, 7.1851, 7.3098, 7.2972, 7.365, 7.3552, 7.343, 7.3306, 7.3513, 7.3443, 7.3688, 7.3566, 7.3461, 7.3697, 7.3938, 7.3577, 7.3512, 7.3404, 7.3312, 7.3212, 7.3145, 7.3038, 7.2961, 7.2948, 7.2844, 7.2751, 7.2924, 7.2825, 7.273, 7.2732, 7.2632, 7.2536, 7.2456, 7.236, 7.2545, 7.2462, 7.239, 7.2299, 7.2224, 7.2167, 7.2089, 7.2026, 7.1979, 7.1887, 7.1792, 7.1717, 7.242, 7.2615, 7.2558, 7.2481, 7.2164, 7.2336, 7.3042, 7.295, 7.2856, 7.2762, 7.267, 7.2584, 7.2493, 7.2649, 7.2592, 7.2528, 7.2684, 7.2606, 7.2521, 7.2436, 7.2349, 7.2311, 7.2243, 7.2426, 7.2348, 7.2278, 7.2209, 7.2154, 7.2068, 7.2225, 7.1938, 7.1896, 7.2363, 7.2725, 7.2659, 7.2576, 7.2502, 7.2442, 7.2499, 7.2452, 7.24, 7.2551, 7.2468, 7.2386, 7.2325, 7.2265, 7.2192, 7.2115, 7.206, 7.2201, 7.2173, 7.2108, 7.224, 7.2179, 7.211, 7.2248, 7.2197, 7.2129, 7.2268, 7.2395, 7.2325, 7.2265, 7.2213, 7.2348, 7.2287, 7.2221, 7.2155, 7.2084, 7.2019, 7.2152, 7.2354, 7.2305, 7.2234, 7.2168, 7.2098, 7.2045, 7.216, 7.2089, 7.203, 7.197, 7.1908, 7.1846, 7.1976, 7.2108, 7.2227, 7.2193, 7.2175, 7.23, 7.2237, 7.2177, 7.2118, 7.2058, 7.1997, 7.1935, 7.1892, 7.1831, 7.1771, 7.1709, 7.166, 7.1789, 7.175, 7.2207, 7.2474, 7.2698, 7.2742, 7.2684, 7.3397, 7.3366, 7.3329, 7.3112, 7.3227, 7.3191, 7.3143, 7.3106, 7.306, 7.3011, 7.3137, 7.3263, 7.3211, 7.3334, 7.3291, 7.3255, 7.3361, 7.3308, 7.3257, 7.3221, 7.3175, 7.315, 7.3092, 7.3041, 7.2996, 7.3093, 7.3037, 7.2979, 7.3092, 7.3037, 7.2976, 7.2918, 7.3016, 7.2959, 7.3068, 7.3012, 7.2983, 7.3093, 7.3183, 7.3136, 7.3084, 7.3181, 7.3129, 7.3088, 7.3031, 7.3129, 7.308, 7.3181, 7.313, 7.3076, 7.3033, 7.2984, 7.295, 7.2906, 7.2911, 7.2862, 7.2839, 7.3103, 7.3063, 7.3026, 7.2985, 7.2941, 7.2935, 7.2884, 7.2973, 7.3059, 7.3012, 7.3109, 7.312, 7.3132, 7.3099, 7.3047, 7.2997, 7.2945, 7.3045, 7.3007, 7.2959, 7.3039, 7.2999, 7.3086, 7.3182, 7.3168, 7.3254, 7.3341, 7.3316, 7.342, 7.3366, 7.3327, 7.3391, 7.3515, 7.3481, 7.3431, 7.3391, 7.3365, 7.3458, 7.3413, 7.3507, 7.3602, 7.3687, 7.3638, 7.3592, 7.356, 7.3783, 7.3931, 7.3882, 7.3956, 7.4041, 7.4392, 7.4469, 7.4415, 7.4497, 7.4376, 7.4331, 7.4298, 7.4393, 7.4345, 7.4307, 7.4257, 7.4352, 7.431, 7.4536, 7.4489, 7.4441, 7.4391, 7.4395, 7.4356, 7.4307, 7.426, 7.4212, 7.4291, 7.4245, 7.4217, 7.4169, 7.413, 7.4086, 7.4042, 7.4003, 7.4079, 7.405, 7.4017, 7.4091, 7.4214, 7.4169, 7.4124, 7.4085, 7.4065, 7.4131, 7.4021, 7.399, 7.3948, 7.4063, 7.402, 7.4093, 7.3943, 7.392, 7.3892, 7.3853, 7.3815, 7.3777, 7.3849, 7.3804, 7.3667, 7.3758, 7.3714, 7.3674, 7.3633, 7.3505, 7.3469, 7.3442, 7.3444, 7.3403, 7.3379, 7.3345, 7.3412, 7.3382, 7.3341, 7.3414, 7.35, 7.3462, 7.3528, 7.3487, 7.3557, 7.3514, 7.3478, 7.3442, 7.3739, 7.3812, 7.3873, 7.3838, 7.3706, 7.3682, 7.3759, 7.3623, 7.3589, 7.3551, 7.3616, 7.3485, 7.3354, 7.3316, 7.3659, 7.3621, 7.3583, 7.3544, 7.3509, 7.3474, 7.3441, 7.3409, 7.3542, 7.355, 7.3518, 7.3409, 7.3609, 7.3584, 7.3546, 7.3613, 7.3586, 7.3581, 7.3561, 7.3435, 7.3501, 7.3481, 7.3462, 7.343, 7.3492, 7.3547, 7.3731, 7.3628, 7.3591, 7.3558, 7.3525, 7.3517, 7.3529, 7.3509, 7.358, 7.3551, 7.3523, 7.359, 7.3554, 7.361, 7.3674, 7.3839, 7.3814, 7.3803, 7.3767, 7.3733, 7.3717, 7.3772, 7.3828, 7.3804, 7.3901, 7.3961, 7.3932, 7.3894, 7.386, 7.4036, 7.4003, 7.3967, 7.3932, 7.3906, 7.3888, 7.3852, 7.3822, 7.3843, 7.3808, 7.3837, 7.3805, 7.3865, 7.3831, 7.3893, 7.395, 7.3916, 7.388, 7.3846, 7.382, 7.3786, 7.3752, 7.3721, 7.3697, 7.3664, 7.3638, 7.3616, 7.3583, 7.3548, 7.3521, 7.3502, 7.3472, 7.3452, 7.3448, 7.3418, 7.3481, 7.3451, 7.3502, 7.3565, 7.3544, 7.3515, 7.3492, 7.3378, 7.3351, 7.3321, 7.3384, 7.3447, 7.3423, 7.3394, 7.337, 7.3339, 7.3311, 7.3287, 7.3296, 7.3268, 7.3237, 7.3224, 7.32, 7.3252, 7.3227, 7.3288, 7.3282, 7.3273, 7.324, 7.3293, 7.3273, 7.3243, 7.3212, 7.3181, 7.3165, 7.3312, 7.3295, 7.335, 7.3319, 7.3288, 7.3259, 7.3227, 7.3194, 7.3165, 7.3142, 7.3197, 7.3166, 7.3138, 7.3112, 7.3081, 7.3135, 7.3104, 7.3159, 7.3127, 7.3097, 7.3082, 7.3135, 7.3114, 7.3106, 7.3091, 7.3069, 7.3038, 7.3009, 7.3064, 7.3036, 7.3092, 7.3349, 7.3318, 7.3288, 7.3262, 7.3242, 7.3219, 7.3188, 7.3168, 7.3143, 7.3195, 7.3173, 7.3224, 7.3196, 7.317, 7.3138, 7.3187, 7.3165, 7.3217, 7.319, 7.3176, 7.3149, 7.3179, 7.3149, 7.312, 7.3099, 7.3077, 7.3136, 7.3188, 7.317, 7.3238, 7.3213, 7.319, 7.3163, 7.3219, 7.3192, 7.3163, 7.3137, 7.3193, 7.3168, 7.3147, 7.3123, 7.3178, 7.3231, 7.3211, 7.326, 7.3238, 7.3295, 7.3266, 7.3237, 7.3224, 7.3129, 7.3187, 7.3159, 7.3132, 7.3414, 7.3465, 7.3389, 7.3437, 7.3411, 7.3383, 7.3357, 7.3402, 7.3376, 7.3373, 7.3348, 7.3345, 7.3321, 7.3294, 7.3269, 7.3313, 7.336, 7.3412, 7.3393, 7.33, 7.3345, 7.3317, 7.3363, 7.3408, 7.3381, 7.3364, 7.334, 7.3321, 7.337, 7.3349, 7.335, 7.3398, 7.3397, 7.3377, 7.3352, 7.3326, 7.3309, 7.3289, 7.3266, 7.3248, 7.322, 7.3203, 7.3247, 7.3227, 7.3202, 7.3246, 7.3233, 7.321, 7.3223, 7.3198, 7.3178, 7.3153, 7.3196, 7.3239, 7.3217, 7.3265, 7.3245, 7.3157, 7.3145, 7.3121, 7.3095, 7.3069, 7.3045, 7.302, 7.2994, 7.2971, 7.2946, 7.2935, 7.2916, 7.2904, 7.2901, 7.2947, 7.2993, 7.2971, 7.2959, 7.294, 7.2984, 7.2977, 7.2893, 7.2868, 7.285, 7.2958, 7.2936, 7.3079, 7.3056, 7.3035, 7.3016, 7.2999, 7.2979, 7.2954, 7.2948, 7.2932, 7.2977, 7.3017, 7.2995, 7.2973, 7.2957, 7.2942, 7.2919, 7.2963, 7.3008, 7.2993, 7.2977, 7.3024, 7.3004, 7.298, 7.2958, 7.2935, 7.2978, 7.2961, 7.3225, 7.3268, 7.3358, 7.3335, 7.3317, 7.3364, 7.334, 7.3322, 7.33, 7.3299, 7.3222, 7.3203, 7.318, 7.316, 7.3203, 7.318, 7.316, 7.3142, 7.3123, 7.3165, 7.3145, 7.3131, 7.3115, 7.3096, 7.3075, 7.305, 7.303, 7.3107, 7.3029, 7.3013, 7.3054, 7.3097, 7.3035, 7.2958, 7.3003, 7.2992, 7.3113, 7.3099, 7.3082, 7.3124, 7.3113, 7.3267, 7.325, 7.3227, 7.3205, 7.3201, 7.3241, 7.3164, 7.3205, 7.3196, 7.3179, 7.3172, 7.3208, 7.3188, 7.3174, 7.3218, 7.3253, 7.3237, 7.3272, 7.3254, 7.3236, 7.3215, 7.3196, 7.3176, 7.3215, 7.3256, 7.3294, 7.3338, 7.3317, 7.3354, 7.3337, 7.3369, 7.3405, 7.3441, 7.342, 7.3406, 7.3445, 7.3439, 7.3417, 7.3394, 7.3374, 7.3321, 7.3259, 7.3244, 7.3228, 7.3212, 7.3191, 7.3178, 7.3157, 7.3195, 7.3232, 7.3228, 7.3269, 7.3258, 7.3242, 7.3238, 7.3275, 7.3314, 7.3298, 7.329, 7.3325, 7.3305, 7.3348, 7.3332, 7.3367, 7.3349, 7.3331, 7.3322, 7.3307, 7.3287, 7.3367, 7.3349, 7.3328, 7.3426, 7.3408, 7.3388, 7.3367, 7.3346, 7.3465, 7.3453, 7.3473, 7.3403, 7.3388, 7.3376, 7.3355, 7.3398, 7.3383, 7.3428, 7.3414, 7.3395, 7.3378, 7.3362, 7.3349, 7.3334, 7.3314, 7.3359, 7.3394, 7.3379, 7.3416, 7.3395, 7.3375, 7.3418, 7.3399, 7.3391, 7.3371, 7.3351, 7.3332, 7.3313, 7.3294, 7.3274, 7.3258, 7.3242, 7.3222, 7.3207, 7.3188, 7.3167, 7.3148, 7.313, 7.311, 7.3091, 7.307, 7.3106, 7.3087, 7.3067, 7.307, 7.3058, 7.3039, 7.3024, 7.3005, 7.2986, 7.302, 7.3001, 7.2985, 7.3024, 7.3007, 7.2988, 7.3023, 7.3005, 7.2991, 7.2973, 7.2956, 7.2936, 7.2957, 7.2992, 7.2981, 7.2999, 7.298, 7.2966, 7.2947, 7.298, 7.2976, 7.2961, 7.2941, 7.2997, 7.298, 7.2969, 7.2948, 7.293, 7.2913, 7.2932, 7.2914, 7.2951, 7.2937, 7.2921, 7.2903, 7.2893, 7.2878, 7.286, 7.2844, 7.2881, 7.2867, 7.2854, 7.2841, 7.2828, 7.2868, 7.2854, 7.2835, 7.2817, 7.2802, 7.2782, 7.2814, 7.2802, 7.2791, 7.2778, 7.2759, 7.2791, 7.2823, 7.2806, 7.2791, 7.2776, 7.2772, 7.2806, 7.2838, 7.282, 7.2806, 7.2795, 7.2819, 7.2801, 7.2784, 7.2765, 7.2747, 7.2738, 7.2726, 7.274, 7.2724, 7.2708, 7.2741, 7.2722, 7.2756, 7.2737, 7.2721, 7.2704, 7.2692, 7.2674, 7.2706, 7.274, 7.2739, 7.2722, 7.2756, 7.2789, 7.2772, 7.2807, 7.2788, 7.2775, 7.2808, 7.2792, 7.2781, 7.2766, 7.2752, 7.2745, 7.273, 7.2718, 7.2704, 7.2716, 7.2703, 7.2684, 7.2667, 7.2672, 7.2659, 7.2641, 7.2585, 7.2572, 7.2559, 7.2587, 7.2589, 7.2583, 7.2567, 7.2603, 7.2586, 7.257, 7.2577, 7.2563, 7.2546, 7.2531, 7.2524, 7.2567, 7.2597, 7.2579, 7.2563, 7.2549, 7.2581, 7.2568, 7.2606, 7.2593, 7.258, 7.261, 7.2595, 7.2583, 7.2566, 7.2553, 7.2538, 7.2639, 7.2627, 7.2568, 7.2559, 7.2552, 7.2535, 7.2564, 7.2547, 7.2532, 7.2563, 7.2506, 7.2491, 7.252, 7.2504, 7.2535, 7.2522, 7.2521, 7.2504, 7.2532, 7.2521, 7.2507, 7.25, 7.2487, 7.248, 7.2466, 7.2458, 7.2444, 7.2429, 7.2416, 7.2403, 7.239, 7.2378, 7.2369, 7.2352, 7.2387, 7.2388, 7.2376, 7.2371, 7.2363, 7.2353, 7.234, 7.2323, 7.231, 7.2342, 7.2329, 7.2313, 7.2306, 7.2289, 7.2277, 7.2262, 7.2247, 7.2273, 7.2262, 7.2247, 7.2231, 7.2259, 7.2291, 7.2324, 7.2309, 7.2337, 7.2321, 7.2305, 7.2292, 7.2276, 7.2306, 7.2296, 7.2285, 7.227, 7.2303, 7.2331, 7.2375, 7.2362, 7.2349, 7.2336, 7.2369, 7.2355, 7.2339, 7.2325, 7.2309, 7.2294, 7.2282, 7.227, 7.2255, 7.2241, 7.2228, 7.2213, 7.2201, 7.2186, 7.2182, 7.2167, 7.2196, 7.2181, 7.2213, 7.2243, 7.2236, 7.2222, 7.2252, 7.228, 7.2272, 7.2257, 7.2243, 7.2231, 7.2221, 7.221, 7.2197, 7.2185, 7.2173, 7.2203, 7.2233, 7.2219, 7.2208, 7.2195, 7.2181, 7.2213, 7.224, 7.2228, 7.2216, 7.2246, 7.2231, 7.2219, 7.2251, 7.2198, 7.2184, 7.2213, 7.2243, 7.2243, 7.223, 7.2216, 7.2245, 7.2231, 7.2306, 7.2292, 7.2279, 7.2265, 7.2256, 7.2244, 7.2249, 7.2405, 7.2391, 7.2339, 7.2328, 7.2326, 7.2353, 7.2399, 7.2439, 7.2428, 7.2461, 7.2618, 7.2611, 7.2636, 7.2662, 7.2652, 7.2641, 7.2638, 7.2668, 7.2654, 7.2642, 7.263, 7.2616, 7.2601, 7.2591, 7.2588, 7.2573, 7.2559, 7.2547, 7.2539, 7.2527, 7.2476, 7.2463, 7.2458, 7.2529, 7.2516, 7.2472, 7.2461, 7.2488, 7.2478, 7.2464, 7.2491, 7.2518, 7.2544, 7.2529, 7.2555, 7.2582, 7.2609, 7.2594, 7.2582, 7.2577, 7.2564, 7.2601, 7.2627, 7.2617, 7.2647, 7.2639, 7.2666, 7.2657, 7.2643, 7.2676, 7.2705, 7.2692, 7.2721, 7.2708, 7.2697, 7.2682, 7.2698, 7.2724, 7.2709, 7.2696, 7.2684, 7.267, 7.262, 7.2609, 7.2597, 7.2587, 7.2577, 7.2564, 7.2661, 7.2648, 7.2635, 7.262, 7.2606, 7.2629, 7.2616, 7.2643, 7.263, 7.2633, 7.2657, 7.2644, 7.2595, 7.2582, 7.2576, 7.2527, 7.2518, 7.2505, 7.2531, 7.2557, 7.2583, 7.2611, 7.2597, 7.2587, 7.2576, 7.2565, 7.2554, 7.254, 7.253, 7.2517, 7.2543, 7.2542, 7.2528, 7.2555, 7.2508, 7.2494, 7.248, 7.2479, 7.2465, 7.2455, 7.2485, 7.2511, 7.2537, 7.2524, 7.2519, 7.2505, 7.253, 7.2517, 7.2504, 7.249, 7.2477, 7.2464, 7.2451, 7.2441, 7.243, 7.2418, 7.2444, 7.2432, 7.2419, 7.2449, 7.2435, 7.2426, 7.2416, 7.2403, 7.2394, 7.2418, 7.2417, 7.244, 7.2427, 7.2414, 7.2405, 7.2431, 7.2422, 7.241, 7.2437, 7.2425, 7.2412, 7.2399, 7.2388, 7.2415, 7.2405, 7.2393, 7.2386, 7.2373, 7.2365, 7.2364, 7.235, 7.2305, 7.2298, 7.2284, 7.2272, 7.226, 7.2251, 7.2275, 7.2266, 7.2257, 7.2283, 7.2271, 7.2261, 7.2249, 7.227, 7.226, 7.2285, 7.2272, 7.2298, 7.2288, 7.2277, 7.2267, 7.2291, 7.2283, 7.2307, 7.2295, 7.225, 7.2239, 7.2229, 7.2217, 7.2207, 7.2197, 7.2193, 7.2183, 7.217, 7.2158, 7.2145, 7.2133, 7.2158, 7.2147, 7.2133, 7.2121, 7.2112, 7.2099, 7.2123, 7.2113, 7.214, 7.2131, 7.2118, 7.2111, 7.2099, 7.2124, 7.2111, 7.2136, 7.2131, 7.2118, 7.2108, 7.2132, 7.212, 7.2109, 7.2133, 7.2127, 7.2114, 7.2139, 7.2127, 7.215, 7.214, 7.2128, 7.2115, 7.211, 7.2066, 7.2095, 7.2085, 7.2075, 7.2067, 7.2057, 7.2047, 7.2037, 7.2027, 7.2015, 7.2007, 7.2001, 7.1988, 7.2018, 7.2005, 7.1993, 7.198, 7.1976, 7.1968, 7.1961, 7.1949, 7.1941, 7.194, 7.1929, 7.197, 7.1959, 7.195, 7.1938, 7.193, 7.1919, 7.1944, 7.1932, 7.1928, 7.1919, 7.1908, 7.1899, 7.1923, 7.1922, 7.1991, 7.1979, 7.1967, 7.1956, 7.1945, 7.1935, 7.1932, 7.1965, 7.1955, 7.1951, 7.1943, 7.1935, 7.1923, 7.1928, 7.1918, 7.2057, 7.2015, 7.2004, 7.2098, 7.2087, 7.2084, 7.2072, 7.2066, 7.2057, 7.2046, 7.2038, 7.2032, 7.2054, 7.2182, 7.2172, 7.2166, 7.2155, 7.2144, 7.2166, 7.2158, 7.2155, 7.2152, 7.2145, 7.2171, 7.2195, 7.2186, 7.22, 7.2189, 7.2181, 7.2169, 7.216, 7.2182, 7.2171, 7.216, 7.2148, 7.2136, 7.2159, 7.2149, 7.2172, 7.216, 7.2152, 7.214, 7.2134, 7.2157, 7.2145, 7.2171, 7.2163, 7.2223, 7.2244, 7.2265, 7.2253, 7.2242, 7.2234, 7.2228, 7.2251, 7.2244, 7.2233, 7.2253, 7.2241, 7.2262, 7.2221, 7.2245, 7.2234, 7.2224, 7.2221, 7.2217, 7.2211, 7.2202, 7.219, 7.2215, 7.2217, 7.2206, 7.2197, 7.2188, 7.218, 7.2202, 7.2224, 7.2212, 7.2233, 7.2194, 7.2157, 7.2179, 7.2167, 7.2156, 7.2177, 7.2164, 7.2186, 7.2208, 7.2198, 7.2186, 7.2185, 7.2175, 7.2196, 7.2188, 7.2177, 7.2166, 7.224, 7.2262, 7.2252, 7.2242, 7.2236, 7.2229, 7.2224, 7.2217, 7.2237, 7.2229, 7.2221, 7.2309, 7.2336, 7.2327, 7.2348, 7.2356, 7.2377, 7.2371, 7.236, 7.2353, 7.2342, 7.2351, 7.2344, 7.2334, 7.2323, 7.2345, 7.2367, 7.2359, 7.2353, 7.2346, 7.2335, 7.2335, 7.2355, 7.2378, 7.2367, 7.2358, 7.235, 7.234, 7.2359, 7.2353, 7.2342, 7.2333, 7.2322, 7.2315, 7.2334, 7.2323, 7.2312, 7.2301, 7.2323, 7.2315, 7.2304, 7.2292, 7.2281, 7.2303, 7.2292, 7.2254, 7.2292, 7.2312, 7.2301, 7.229, 7.2279, 7.227, 7.2261, 7.2285, 7.2285, 7.2309, 7.2427, 7.242, 7.2411, 7.2431, 7.242, 7.2438, 7.2428, 7.2417, 7.2439, 7.2431, 7.2425, 7.2416, 7.2437, 7.2436, 7.2425, 7.2443, 7.2464, 7.2546, 7.2536, 7.2526, 7.2515, 7.2514, 7.2502, 7.2508, 7.2526, 7.2522, 7.2516, 7.2507, 7.2498, 7.2493, 7.2483, 7.2476, 7.2467, 7.2458, 7.2448, 7.2437, 7.2408, 7.2397, 7.2386, 7.2375, 7.2396, 7.2417, 7.2437, 7.2427, 7.2417, 7.2407, 7.2437, 7.2399, 7.2474, 7.247, 7.2432, 7.2423, 7.2443, 7.2432, 7.2427, 7.2425, 7.2415, 7.2406, 7.24, 7.2391, 7.2382, 7.2377, 7.2396, 7.2385, 7.2352, 7.2314, 7.2333, 7.2323, 7.2313, 7.2305, 7.2294, 7.235, 7.2339, 7.2389, 7.238, 7.2375, 7.2401, 7.2391, 7.2382, 7.2402, 7.2393, 7.2386, 7.2407, 7.2398, 7.2388, 7.2381, 7.2376, 7.2397, 7.2388, 7.2409, 7.2398, 7.242, 7.2438, 7.246, 7.248, 7.2508, 7.2565, 7.2557, 7.2576, 7.2596, 7.2588, 7.2577, 7.2566, 7.2529, 7.2527, 7.2545, 7.2535, 7.2555, 7.2545, 7.2565, 7.2584, 7.2605, 7.2596, 7.2586, 7.2576, 7.2566, 7.2556, 7.2546, 7.254, 7.2553, 7.2572, 7.2591, 7.258, 7.2572, 7.2563, 7.2554, 7.2576, 7.2568, 7.2557, 7.255, 7.2571, 7.2589, 7.2581, 7.2571, 7.259, 7.258, 7.257, 7.2589, 7.2579, 7.2569, 7.2559, 7.2549, 7.2569, 7.2559, 7.2552, 7.2542, 7.2532, 7.2524, 7.2514, 7.2534, 7.2523, 7.2514, 7.2504, 7.2468, 7.258, 7.2572, 7.2563, 7.2555, 7.2548, 7.2567, 7.2557, 7.2576, 7.2578, 7.2569, 7.2562, 7.2556, 7.2546, 7.2536, 7.2555, 7.2546, 7.2539, 7.253, 7.2496, 7.2487, 7.2477, 7.2467, 7.2459, 7.2451, 7.2443, 7.2438, 7.2428, 7.2423, 7.244, 7.2431, 7.245, 7.2467, 7.2457, 7.2451, 7.2444, 7.2463, 7.2457, 7.2476, 7.2494, 7.2512, 7.2504, 7.2497, 7.2518, 7.251, 7.2501, 7.2494, 7.2513, 7.2513, 7.2505, 7.2499, 7.2491, 7.251, 7.2502, 7.2496, 7.2492, 7.2509, 7.2527, 7.2521, 7.2487, 7.2477, 7.2467, 7.2577, 7.2571, 7.2589, 7.2607, 7.2599, 7.2591, 7.2586, 7.2584, 7.2577, 7.2574, 7.2567, 7.2581, 7.2547, 7.2538, 7.2557, 7.2578, 7.2575, 7.2565, 7.2562, 7.258, 7.257, 7.256, 7.2584, 7.2576, 7.2573, 7.2591, 7.2585, 7.2577, 7.2574, 7.2569, 7.2559, 7.258, 7.2572, 7.2564, 7.2556, 7.2523, 7.2513, 7.2506, 7.2498, 7.2517, 7.2507, 7.2499, 7.2492, 7.2503, 7.2497, 7.2489, 7.2481, 7.2472, 7.2466, 7.2456, 7.2458, 7.2451, 7.2469, 7.2459, 7.2451, 7.2448, 7.2494, 7.2485, 7.2481, 7.2499, 7.2517, 7.2508, 7.2526, 7.2519, 7.2511, 7.2501, 7.2492, 7.2482, 7.2473, 7.2463, 7.2456, 7.245, 7.2418, 7.2512, 7.2506, 7.2524, 7.2517, 7.2513, 7.2505, 7.2499, 7.2489, 7.2483, 7.2516, 7.2563, 7.2553, 7.2547, 7.2537, 7.2527, 7.2518, 7.2511, 7.2505, 7.2522, 7.2512, 7.2505, 7.2495, 7.2489, 7.2484, 7.2477, 7.2473, 7.2464, 7.2481, 7.2472, 7.2463, 7.2455, 7.2471, 7.2488, 7.2504, 7.2494, 7.2487, 7.2477, 7.2469, 7.246, 7.2458, 7.2449, 7.2464, 7.2446, 7.2437, 7.2428, 7.2419, 7.2409, 7.2402, 7.2394, 7.2393, 7.2386, 7.2378, 7.2372, 7.2365, 7.2383, 7.2374, 7.2374, 7.2365, 7.2356, 7.2348, 7.2339, 7.2333, 7.2325, 7.2342, 7.2336, 7.2356, 7.2348, 7.2339, 7.2357, 7.2352, 7.2344, 7.2335, 7.2326, 7.2317, 7.2308, 7.2324, 7.2315, 7.2332, 7.2349, 7.2342, 7.2336, 7.2357, 7.2348, 7.2365, 7.2381, 7.2398, 7.2389, 7.2382, 7.2374, 7.2367, 7.238, 7.2371, 7.2388, 7.2379, 7.237, 7.2361, 7.2353, 7.2371, 7.2367, 7.2362, 7.2388, 7.243, 7.2428, 7.242, 7.2422, 7.2415, 7.2406, 7.2398, 7.2404, 7.2396, 7.2387, 7.2381, 7.2377, 7.2371, 7.2364, 7.2391, 7.2359, 7.2377, 7.2371, 7.2414, 7.2407, 7.2398, 7.2389, 7.2406, 7.2397, 7.2414, 7.2425, 7.2418, 7.2412, 7.2407, 7.24, 7.2369, 7.2386, 7.2379, 7.2372, 7.2363, 7.238, 7.2373, 7.2344, 7.2361, 7.2379, 7.2398, 7.2391, 7.2383, 7.2375, 7.2366, 7.236, 7.2355, 7.2348, 7.2341, 7.2334, 7.2327, 7.232, 7.2339, 7.2334, 7.235, 7.2343, 7.2336, 7.2327, 7.232, 7.2312, 7.2304, 7.2299, 7.2292, 7.2309, 7.23, 7.2291, 7.2283, 7.2254, 7.2249, 7.2245, 7.2263, 7.2257, 7.2249, 7.2244, 7.2236, 7.2231, 7.2202, 7.2195, 7.2186, 7.2179, 7.2171, 7.2162, 7.2156, 7.2147, 7.2139, 7.2108, 7.2125, 7.2141, 7.2158, 7.2174, 7.217, 7.2186, 7.2212, 7.2204, 7.2198, 7.2192, 7.2209, 7.2202, 7.2172, 7.2143, 7.2134, 7.2177, 7.217, 7.2163, 7.2164, 7.2159, 7.2154, 7.2148, 7.2141, 7.2134, 7.2125, 7.2143, 7.2182, 7.2198, 7.219, 7.2209, 7.2192, 7.2184, 7.2176, 7.2148, 7.2165, 7.2157, 7.2148, 7.2164, 7.218, 7.2174, 7.219, 7.2182, 7.2153, 7.2124, 7.2117, 7.2116, 7.2132, 7.2124, 7.2139, 7.2135, 7.2153, 7.2169, 7.2161, 7.2179, 7.2173, 7.2167, 7.2161, 7.2155, 7.215, 7.2144, 7.2161, 7.2195, 7.2212, 7.2207, 7.2202, 7.2194, 7.2188, 7.2183, 7.2201, 7.2219, 7.222, 7.2234, 7.2226, 7.2221, 7.2214, 7.221, 7.2235, 7.2252, 7.2248, 7.2252, 7.2245, 7.2241, 7.2341, 7.2333, 7.2325, 7.2297, 7.2292, 7.2285, 7.2279, 7.2272, 7.2267, 7.226, 7.2254, 7.2246, 7.2238, 7.2261, 7.226, 7.2254, 7.2225, 7.2241, 7.2256, 7.225, 7.2243, 7.2239, 7.2231, 7.2223, 7.2214, 7.2205, 7.2197, 7.219, 7.2184, 7.2161, 7.2176, 7.2169, 7.2162, 7.2179, 7.2171, 7.2166, 7.2159, 7.2152, 7.2146, 7.2139, 7.2137, 7.2153, 7.2147, 7.214, 7.2134, 7.2128, 7.2145, 7.2161, 7.2153, 7.2147, 7.2139, 7.2153, 7.2147, 7.2163, 7.2157, 7.2151, 7.2145, 7.2161, 7.2156, 7.2152, 7.2123, 7.2117, 7.2109, 7.2101, 7.2095, 7.2087, 7.2081, 7.2073, 7.2071, 7.2086, 7.208, 7.2072, 7.2075, 7.2069, 7.2062, 7.2057, 7.205, 7.2045, 7.2037, 7.203, 7.2049, 7.2043, 7.2057, 7.2073, 7.2066, 7.2058, 7.2052, 7.2047, 7.2044, 7.2059, 7.2051, 7.2046, 7.2018, 7.2012, 7.2007, 7.1999, 7.1991, 7.1985, 7.205, 7.2042, 7.2034, 7.2027, 7.2019, 7.2013, 7.2006, 7.2002, 7.1995, 7.2014, 7.1987, 7.198, 7.1973, 7.1971, 7.1986, 7.198, 7.1975, 7.1968, 7.1962, 7.1956, 7.1972, 7.1966, 7.1959, 7.1952, 7.1945, 7.1938, 7.1931, 7.1945, 7.1941, 7.1956, 7.1971, 7.1967, 7.1982, 7.1975, 7.1969, 7.1963, 7.1957, 7.1971, 7.1964, 7.198, 7.1972, 7.1949, 7.1965, 7.196, 7.1976, 7.197, 7.1965, 7.196, 7.1959, 7.1951, 7.1945, 7.1939, 7.1933, 7.1929, 7.1942, 7.1934, 7.1932, 7.1946, 7.194, 7.1955, 7.1968, 7.1962, 7.1958, 7.1951, 7.1969, 7.1963, 7.1936, 7.1981, 7.1973, 7.197, 7.1987, 7.1979, 7.2018, 7.2023, 7.2016, 7.2012, 7.2008, 7.2002, 7.1996, 7.197, 7.1983, 7.1976, 7.1969, 7.1962, 7.1979, 7.1994, 7.1986, 7.1982, 7.1977, 7.1972, 7.1969, 7.1962, 7.1977, 7.1972, 7.197, 7.1963, 7.1978, 7.1973, 7.1966, 7.1981, 7.1974, 7.1991, 7.1984, 7.1977, 7.197, 7.1984, 7.1979, 7.1978, 7.1974, 7.201, 7.2002, 7.1995, 7.1988, 7.1981, 7.1975, 7.1971, 7.1963, 7.1959, 7.1951, 7.1944, 7.1959, 7.1952, 7.1944, 7.1938, 7.1952, 7.1945, 7.1938, 7.1932, 7.1946, 7.194, 7.1954, 7.1967, 7.1963, 7.1976, 7.1968, 7.1962, 7.1958, 7.1971, 7.1986, 7.198, 7.1974, 7.1968, 7.1964, 7.1958, 7.1953, 7.1946, 7.1938, 7.1952, 7.1945, 7.1946, 7.1961, 7.1958, 7.1951, 7.1965, 7.1958, 7.1952, 7.1951, 7.1965, 7.1959, 7.1954, 7.1947, 7.194, 7.194, 7.1934, 7.1927, 7.1919, 7.1934, 7.1935, 7.1929, 7.1923, 7.1916, 7.1931, 7.1944, 7.1943, 7.1939, 7.1934, 7.1927, 7.192, 7.1914, 7.1908, 7.1901, 7.1899, 7.1914, 7.1908, 7.1901, 7.1917, 7.1911, 7.1905, 7.1904, 7.1897, 7.1892, 7.1889, 7.1882, 7.1876, 7.1871, 7.1864, 7.1881, 7.1894, 7.1887, 7.1901, 7.1896, 7.19, 7.1916, 7.1911, 7.1905, 7.1898, 7.1893, 7.191, 7.1921, 7.1916, 7.191, 7.1906, 7.192, 7.1934, 7.1927, 7.1901, 7.1894, 7.1909, 7.1906, 7.1905, 7.1897, 7.1892, 7.1888, 7.1882, 7.1897, 7.1892, 7.1906, 7.19, 7.1893, 7.1889, 7.1885, 7.1878, 7.1873, 7.1848, 7.1842, 7.1835, 7.1849, 7.1869, 7.1883, 7.1877, 7.1869, 7.1885, 7.1879, 7.1878, 7.1872, 7.1865, 7.186, 7.1862, 7.1859, 7.1854, 7.1866, 7.186, 7.1856, 7.1849, 7.1844, 7.1839, 7.1833, 7.1831, 7.1828, 7.1821, 7.1819, 7.1812, 7.1805, 7.18, 7.1814, 7.1828, 7.1841, 7.1853, 7.1849, 7.1844, 7.1857, 7.1853, 7.1847, 7.1844, 7.1837, 7.1834, 7.1829, 7.1825, 7.1829, 7.1838, 7.1851, 7.1845, 7.1839, 7.1835, 7.1891, 7.1898, 7.1893, 7.1888, 7.1881, 7.1893, 7.1889, 7.1883, 7.1877, 7.1892, 7.1868, 7.1863, 7.1877, 7.1874, 7.1867, 7.1862, 7.1856, 7.185, 7.1845, 7.1826, 7.1821, 7.1818, 7.1815, 7.1811, 7.1806, 7.1801, 7.1794, 7.1789, 7.1786, 7.1761, 7.1775, 7.177, 7.1763, 7.1758, 7.1771, 7.1766, 7.1761, 7.1797, 7.1791, 7.1785, 7.1774, 7.179, 7.1786, 7.1885, 7.188, 7.1876, 7.1883, 7.1879, 7.1895, 7.1909, 7.1884, 7.1878, 7.1871, 7.1864, 7.1878, 7.1873, 7.1887, 7.1881, 7.1875, 7.1869, 7.1864, 7.1925, 7.1919, 7.1915, 7.1912, 7.1905, 7.1919, 7.1914, 7.1928, 7.1961, 7.1954, 7.197, 7.1966, 7.1959, 7.1952, 7.1965, 7.1989, 7.2021, 7.2016, 7.201, 7.2024, 7.2019, 7.2034, 7.2029, 7.2023, 7.2019, 7.2013, 7.2007, 7.2003, 7.1996, 7.2008, 7.1984, 7.1981, 7.1975, 7.1988, 7.1982, 7.1979, 7.1972, 7.1966, 7.1959, 7.1952, 7.1946, 7.1958, 7.197, 7.1964, 7.1941, 7.1934, 7.1928, 7.1922, 7.1917, 7.191, 7.1923, 7.1919, 7.1915, 7.1928, 7.1924, 7.1936, 7.1949, 7.1944, 7.1957, 7.1969, 7.1985, 7.1978, 7.2019, 7.2016, 7.1996, 7.1976, 7.1996, 7.199, 7.2004, 7.1997, 7.201, 7.2024, 7.2018, 7.2015, 7.2029, 7.2024, 7.2017, 7.2013, 7.203, 7.2024, 7.2036, 7.2031, 7.2026, 7.2021, 7.2034, 7.2047, 7.2062, 7.2057, 7.2054, 7.2048, 7.2042, 7.2037, 7.2031, 7.2025, 7.2048, 7.2061, 7.2061, 7.2074, 7.2088, 7.2103, 7.2098, 7.2078, 7.2073, 7.2067, 7.2061, 7.2055, 7.2052, 7.2045, 7.2059, 7.2053, 7.2048, 7.2062, 7.2062, 7.2058, 7.206, 7.2072, 7.2106, 7.21, 7.2095, 7.209, 7.2083, 7.2121, 7.2114, 7.2108, 7.2102, 7.2095, 7.2088, 7.2084, 7.2078, 7.2091, 7.2123, 7.2118, 7.2134, 7.2128, 7.2122, 7.2126, 7.212, 7.2114, 7.2108, 7.2102, 7.2095, 7.2088, 7.2083, 7.2077, 7.207, 7.2083, 7.2095, 7.209, 7.2102, 7.2098, 7.211, 7.2104, 7.2099, 7.2094, 7.2087, 7.2084, 7.2078, 7.2076, 7.2088, 7.2083, 7.2078, 7.2076, 7.2071, 7.2065, 7.2058, 7.2071, 7.2065, 7.2058, 7.2059, 7.2053, 7.207, 7.2064, 7.2076, 7.2072, 7.2066, 7.2062, 7.2056, 7.2051, 7.2063, 7.2074, 7.2068, 7.2062, 7.2058, 7.2058, 7.2061, 7.2055, 7.2049, 7.2043, 7.204, 7.2034, 7.2088, 7.2082, 7.2076, 7.207, 7.2064, 7.2057, 7.2074, 7.2069, 7.2063, 7.206, 7.2054, 7.2069, 7.2065, 7.2064, 7.2059, 7.2053, 7.2066, 7.2109, 7.2104, 7.21, 7.2094, 7.209, 7.2084, 7.2079, 7.2074, 7.2068, 7.208, 7.2074, 7.2086, 7.2081, 7.2093, 7.2105, 7.2099, 7.2093, 7.2088, 7.21, 7.2078, 7.2055, 7.2033, 7.2027, 7.2023, 7.2019, 7.2032, 7.2025, 7.202, 7.1998, 7.201, 7.2004, 7.2018, 7.2014, 7.201, 7.2005, 7.2, 7.1994, 7.1988, 7.1981, 7.1975, 7.1988, 7.1982, 7.1975, 7.199, 7.1985, 7.198, 7.1992, 7.1987, 7.1999, 7.1993, 7.1972, 7.1969, 7.1969, 7.1981, 7.1976, 7.197, 7.1966, 7.1963, 7.1958, 7.1953, 7.1965, 7.1978, 7.1971, 7.1969, 7.1982, 7.1978, 7.1973, 7.1968, 7.1962, 7.1957, 7.1972, 7.1969, 7.1983, 7.1977, 7.1988, 7.2003, 7.1997, 7.1992, 7.1986, 7.198, 7.1974, 7.2028, 7.2022, 7.2018, 7.2013, 7.2027, 7.2023, 7.2017, 7.2029, 7.2023, 7.2036, 7.2031, 7.2026, 7.2021, 7.2016, 7.2011, 7.2006, 7.207, 7.2064, 7.2058, 7.207, 7.2065, 7.2059, 7.2054, 7.2048, 7.2043, 7.2056, 7.2054, 7.2068, 7.2063, 7.2057, 7.2051, 7.2046, 7.2042, 7.2037, 7.2034, 7.2029, 7.204, 7.2035, 7.203, 7.2024, 7.2017, 7.2011, 7.2023, 7.2017, 7.2029, 7.204, 7.2051, 7.2049, 7.2046, 7.2043, 7.2038, 7.2033, 7.2045, 7.204, 7.2051, 7.2046, 7.2058, 7.2053, 7.2047, 7.2075, 7.207, 7.2093, 7.2088, 7.2085, 7.208, 7.2074, 7.2087, 7.2107, 7.2103, 7.2102, 7.2106, 7.2101, 7.2095, 7.2107, 7.2101, 7.2095, 7.2154, 7.2177, 7.2189, 7.2168, 7.2163, 7.216, 7.2154, 7.215, 7.2175, 7.217, 7.2164, 7.2175, 7.2171, 7.2167, 7.2161, 7.2156, 7.2168, 7.218, 7.2194, 7.2223, 7.2217, 7.223, 7.2227, 7.2222, 7.2218, 7.2231, 7.2242, 7.2238, 7.2251, 7.2245, 7.2243, 7.2239, 7.2233, 7.2228, 7.2223, 7.2217, 7.2214, 7.2208, 7.2213, 7.2214, 7.2209, 7.2204, 7.2216, 7.2245, 7.2241, 7.2276, 7.228, 7.2282, 7.2277, 7.2272, 7.2266, 7.2264, 7.2259, 7.2253, 7.2247, 7.2242, 7.2253, 7.2248, 7.226, 7.2254, 7.2249, 7.2243, 7.224, 7.2235, 7.2232, 7.2245, 7.2295, 7.2311, 7.2307, 7.2304, 7.23, 7.2282, 7.2301, 7.2297, 7.2308, 7.2319, 7.2314, 7.2345, 7.2359, 7.2354, 7.2349, 7.2343, 7.234, 7.2334, 7.2328, 7.2325, 7.2322, 7.2316, 7.2312, 7.2292, 7.2287, 7.2302, 7.2285, 7.2296, 7.2291, 7.2338, 7.2334, 7.2328, 7.2322, 7.2316, 7.2323, 7.2318, 7.233, 7.2342, 7.2338, 7.2335, 7.233, 7.2328, 7.2322, 7.2317, 7.2327, 7.2321, 7.2315, 7.231, 7.2305, 7.2284, 7.228, 7.2293, 7.2316, 7.2312, 7.2324, 7.2322, 7.2319, 7.2315, 7.2311, 7.2321, 7.2331, 7.2326, 7.232, 7.2315, 7.2309, 7.2305, 7.23, 7.2315, 7.2326, 7.2337, 7.2333, 7.2333, 7.2322, 7.2318, 7.2314, 7.2309, 7.2303, 7.2283, 7.2278, 7.2289, 7.2285, 7.228, 7.2276, 7.227, 7.2265, 7.2259, 7.2254, 7.2285, 7.2279, 7.229, 7.2284, 7.2278, 7.2274, 7.2269, 7.2265, 7.226, 7.2255, 7.2249, 7.2244, 7.2238, 7.2249, 7.2261, 7.2255, 7.2251, 7.2246, 7.224, 7.2252, 7.2247, 7.2241, 7.2252, 7.2248, 7.2244, 7.2238, 7.2232, 7.2233, 7.2232, 7.2254, 7.2248, 7.2244, 7.2242, 7.2236, 7.223, 7.2243, 7.2238, 7.2232, 7.2228, 7.2222, 7.2216, 7.2213, 7.2223, 7.2217, 7.2212, 7.2225, 7.2236, 7.2232, 7.2229, 7.2224, 7.2219, 7.2214, 7.221, 7.2205, 7.22, 7.2213, 7.2207, 7.2201, 7.2197, 7.2191, 7.2186, 7.2185, 7.2183, 7.2179, 7.219, 7.2184, 7.2195, 7.219, 7.2189, 7.2186, 7.2181, 7.2176, 7.2188, 7.2202, 7.2185, 7.2224, 7.2221, 7.2218, 7.2214, 7.2224, 7.2235, 7.223, 7.2211, 7.2222, 7.2217, 7.2213, 7.2208, 7.2203, 7.2214, 7.2209, 7.2204, 7.2198, 7.2194, 7.2188, 7.2199, 7.2194, 7.2189, 7.2184, 7.2195, 7.2189, 7.2186, 7.2181, 7.2177, 7.2187, 7.2188, 7.2184, 7.218, 7.2176, 7.2172, 7.2185, 7.2181, 7.2176, 7.2174, 7.217, 7.2166, 7.2178, 7.219, 7.2187, 7.2186, 7.2182, 7.2178, 7.2189, 7.2185, 7.2181, 7.2176, 7.2172, 7.2167, 7.2179, 7.2193, 7.2188, 7.2199, 7.2195, 7.2192, 7.2193, 7.2188, 7.2198, 7.2194, 7.2188, 7.2198, 7.2195, 7.2191, 7.2186, 7.2181, 7.2178, 7.2172, 7.2182, 7.2178, 7.2189, 7.217, 7.2181, 7.2177, 7.2171, 7.2182, 7.2177, 7.2172, 7.2168, 7.2178, 7.2174, 7.217, 7.2165, 7.2163, 7.2174, 7.2185, 7.2196, 7.2208, 7.2203, 7.22, 7.2197, 7.2194, 7.2189, 7.2184, 7.2179, 7.2177, 7.2188, 7.2203, 7.2214, 7.221, 7.2238, 7.2234, 7.2215, 7.2211, 7.2208, 7.222, 7.2216, 7.2212, 7.2224, 7.2235, 7.2232, 7.2227, 7.2222, 7.2217, 7.223, 7.2225, 7.2222, 7.2217, 7.2211, 7.2221, 7.2231, 7.2212, 7.2201, 7.2181, 7.2176, 7.2157, 7.2151, 7.2145, 7.214, 7.2155, 7.2165, 7.2175, 7.2173, 7.217, 7.2166, 7.216, 7.2156, 7.215, 7.2144, 7.2154, 7.2148, 7.2159, 7.2154, 7.2149, 7.2144, 7.2126, 7.212, 7.213, 7.2125, 7.212, 7.2115, 7.211, 7.212, 7.213, 7.2126, 7.2121, 7.2116, 7.2113, 7.2122, 7.212, 7.213, 7.2127, 7.2123, 7.2132, 7.2127, 7.2124, 7.2118, 7.2128, 7.2138, 7.2135, 7.2148, 7.2153, 7.2147, 7.2142, 7.2136, 7.2132, 7.2144, 7.2139, 7.2135, 7.2222, 7.2232, 7.2227, 7.2223, 7.2218, 7.2214, 7.2211, 7.2221, 7.2231, 7.2226, 7.2221, 7.2216, 7.2213, 7.2208, 7.2218, 7.2227, 7.2223, 7.222, 7.2215, 7.2214, 7.2209, 7.222, 7.2234, 7.223, 7.2225, 7.222, 7.2231, 7.2274, 7.2269, 7.2264, 7.2259, 7.2261, 7.225, 7.2232, 7.2228, 7.2239, 7.2234, 7.2245, 7.2254, 7.2248, 7.2245, 7.2241, 7.2237, 7.2248, 7.2258, 7.2255, 7.2251, 7.2247, 7.2243, 7.224, 7.2235, 7.223, 7.2225, 7.2237, 7.2232, 7.2228, 7.2225, 7.2207, 7.2202, 7.2235, 7.2235, 7.2229, 7.2224, 7.2234, 7.223, 7.2227, 7.2222, 7.2217, 7.2213, 7.2208, 7.2205, 7.22, 7.2211, 7.2222, 7.2233, 7.2229, 7.2227, 7.2222, 7.2231, 7.2228, 7.2255, 7.2265, 7.2264, 7.2277, 7.2274, 7.2269, 7.2278, 7.2304, 7.2298, 7.2295, 7.229, 7.2299, 7.2296, 7.2306, 7.2303, 7.2298, 7.2294, 7.2295, 7.229, 7.2317, 7.2342, 7.2338, 7.2349, 7.2345, 7.234, 7.2339, 7.2335, 7.233, 7.2327, 7.2323, 7.2332, 7.2327, 7.2337, 7.2347, 7.2343, 7.2339, 7.2335, 7.2332, 7.2327, 7.2322, 7.232, 7.2316, 7.2311, 7.2306, 7.2303, 7.2301, 7.2297, 7.2294, 7.2289, 7.2285, 7.2281, 7.2277, 7.2272, 7.2268, 7.2279, 7.2289, 7.2291, 7.2316, 7.2312, 7.2297, 7.2295, 7.229, 7.2287, 7.2282, 7.228, 7.2277, 7.2271, 7.2282, 7.2278, 7.2273, 7.2283, 7.2279, 7.2274, 7.2274, 7.2284, 7.2295, 7.2276, 7.2301, 7.2296, 7.2293, 7.2288, 7.2286, 7.2283, 7.2281, 7.2291, 7.2291, 7.2286, 7.2282, 7.2278, 7.2275, 7.2274, 7.2283, 7.2293, 7.229, 7.23, 7.2295, 7.2291, 7.2287, 7.2282, 7.2278, 7.2273, 7.2268, 7.2263, 7.2258, 7.2268, 7.2265, 7.2262, 7.2302, 7.23, 7.2312, 7.2308, 7.2303, 7.2291, 7.2286, 7.2296, 7.2311, 7.2306, 7.2315, 7.2311, 7.2308, 7.2318, 7.2328, 7.2323, 7.2318, 7.2314, 7.2311, 7.2306, 7.2302, 7.2299, 7.2294, 7.2303, 7.2312, 7.2321, 7.2319, 7.2331, 7.2342, 7.2324, 7.2321, 7.2316, 7.2311, 7.2306, 7.2302, 7.2309, 7.2305, 7.2314, 7.2309, 7.2319, 7.2328, 7.2324, 7.2334, 7.2343, 7.2339, 7.2348, 7.2343, 7.2338, 7.2333, 7.2343, 7.2354, 7.235, 7.2346, 7.2355, 7.235, 7.2345, 7.234, 7.2335, 7.233, 7.2325, 7.232, 7.2315, 7.2311, 7.2306, 7.2329, 7.2339, 7.2336, 7.2353, 7.2349, 7.2346, 7.2342, 7.2337, 7.2334, 7.234, 7.2336, 7.2332, 7.2327, 7.2322, 7.2317, 7.2312, 7.2309, 7.2304, 7.2299, 7.2313, 7.2323, 7.2319, 7.2314, 7.231, 7.2305, 7.2302, 7.2298, 7.2296, 7.2294, 7.2289, 7.2284, 7.228, 7.2275, 7.227, 7.228, 7.2278, 7.2288, 7.2286, 7.2296, 7.2294, 7.2291, 7.2288, 7.2288, 7.2273, 7.2269, 7.2264, 7.2275, 7.227, 7.2265, 7.2262, 7.227, 7.2267, 7.2264, 7.2262, 7.2258, 7.2259, 7.2259, 7.2257, 7.2254, 7.2249, 7.2259, 7.2255, 7.2269, 7.2272, 7.2285, 7.2281, 7.2282, 7.2278, 7.2273, 7.2282, 7.2293, 7.2289, 7.2284, 7.2293, 7.2276, 7.2286, 7.2282, 7.229, 7.2298, 7.2294, 7.2289, 7.2291, 7.2301, 7.2296, 7.2294, 7.2291, 7.23, 7.2309, 7.2305, 7.2315, 7.2311, 7.231, 7.2306, 7.229, 7.2285, 7.228, 7.2292, 7.2302, 7.2298, 7.2295, 7.2293, 7.2301, 7.2297, 7.2292, 7.2288, 7.2285, 7.2282, 7.2293, 7.229, 7.2285, 7.228, 7.2275, 7.227, 7.2279, 7.2274, 7.2269, 7.2264, 7.2259, 7.2269, 7.2278, 7.2288, 7.2296, 7.2291, 7.2286, 7.2281, 7.2277, 7.2273, 7.2282, 7.2265, 7.226, 7.2269, 7.2265, 7.2274, 7.2271, 7.2267, 7.2278, 7.2344, 7.2353, 7.2348, 7.2344, 7.234, 7.2345, 7.2341, 7.2336, 7.2344, 7.2339, 7.2348, 7.2344, 7.2353, 7.2348, 7.2345, 7.2353, 7.2349, 7.2353, 7.2351, 7.2348, 7.2345, 7.2341, 7.2337, 7.2336, 7.2331, 7.2326, 7.2335, 7.2331, 7.2326, 7.2334, 7.2337, 7.2345, 7.234, 7.2335, 7.2331, 7.2327, 7.2322, 7.2318, 7.2314, 7.2311, 7.2319, 7.2315, 7.2312, 7.2307, 7.2317, 7.2313, 7.2308, 7.2303, 7.2312, 7.2312, 7.2321, 7.2325, 7.2322, 7.2331, 7.2328, 7.2337, 7.2347, 7.2342, 7.2337, 7.2332, 7.2327, 7.2324, 7.2333, 7.2342, 7.2338, 7.2335, 7.2344, 7.234, 7.2338, 7.2334, 7.2331, 7.2339, 7.2335, 7.2332, 7.2341, 7.2336, 7.2331, 7.2339, 7.2337, 7.2332, 7.2329, 7.2324, 7.2319, 7.2315, 7.2299, 7.2295, 7.2291, 7.2286, 7.2281, 7.2277, 7.2261, 7.2339, 7.2335, 7.233, 7.2314, 7.2301, 7.2297, 7.2294, 7.2337, 7.2388, 7.2384, 7.238, 7.2375, 7.237, 7.2365, 7.2363, 7.2374, 7.2369, 7.2367, 7.2363, 7.2372, 7.2367, 7.2362, 7.2359, 7.2356, 7.234, 7.2336, 7.2341, 7.2349, 7.2344, 7.2339, 7.2335, 7.2332, 7.2342, 7.2339, 7.2336, 7.2346, 7.2343, 7.2353, 7.2361, 7.2358, 7.2366, 7.2362, 7.2359, 7.2355, 7.235, 7.2346, 7.2347, 7.2344, 7.2341, 7.2373, 7.2383, 7.2378, 7.2379, 7.2375, 7.237, 7.2366, 7.2361, 7.2371, 7.2367, 7.2374, 7.2361, 7.2357, 7.2352, 7.2363, 7.2372, 7.2367, 7.2363, 7.2359, 7.2356, 7.2352, 7.2361, 7.2357, 7.2365, 7.2361, 7.2357, 7.2352, 7.236, 7.2356, 7.2353, 7.2352, 7.2348, 7.2357, 7.2341, 7.2336, 7.2332, 7.2327, 7.2337, 7.2333, 7.2342, 7.2337, 7.2332, 7.233, 7.2325, 7.232, 7.2329, 7.2338, 7.2335, 7.2343, 7.2339, 7.2337, 7.2333, 7.2329, 7.2327, 7.2323, 7.2333, 7.2332, 7.2328, 7.2324, 7.2333, 7.2341, 7.2336, 7.2344, 7.234, 7.2336, 7.232, 7.2317, 7.2314, 7.2311, 7.2306, 7.2315, 7.231, 7.2318, 7.2327, 7.2335, 7.2332, 7.2328, 7.2323, 7.2319, 7.2328, 7.2324, 7.2406, 7.2416, 7.2425, 7.2434, 7.2445, 7.2454, 7.2451, 7.2447, 7.2443, 7.2452, 7.2448, 7.2444, 7.2441, 7.2438, 7.2423, 7.2419, 7.2416, 7.2403, 7.2398, 7.2406, 7.2402, 7.2436, 7.2432, 7.2427, 7.2423, 7.2421, 7.2416, 7.2424, 7.2419, 7.2417, 7.2425, 7.2421, 7.243, 7.2425, 7.2421, 7.2405, 7.239, 7.2399, 7.2408, 7.2403, 7.2398, 7.2393, 7.2388, 7.2384, 7.2392, 7.2388, 7.2396, 7.2397, 7.2394, 7.239, 7.2387, 7.2383, 7.2368, 7.2364, 7.2373, 7.2369, 7.2354, 7.2351, 7.2346, 7.2342, 7.2338, 7.2348, 7.2345, 7.2342, 7.2337, 7.2345, 7.2341, 7.2347, 7.2342, 7.2337, 7.2332, 7.2328, 7.2329, 7.2325, 7.2322, 7.2318, 7.2327, 7.2323, 7.2334, 7.2343, 7.234, 7.2351, 7.2347, 7.2332, 7.234, 7.2349, 7.2346, 7.2343, 7.2339, 7.2348, 7.2356, 7.2352, 7.2351, 7.2347, 7.2355, 7.2352, 7.2348, 7.2344, 7.234, 7.2336, 7.2332, 7.2328, 7.2323, 7.2319, 7.2316, 7.2313, 7.2309, 7.2306, 7.2302, 7.2298, 7.2294, 7.2289, 7.2313, 7.231, 7.2307, 7.2304, 7.2312, 7.2307, 7.2302, 7.231, 7.2308, 7.2304, 7.2289, 7.2287, 7.2283, 7.228, 7.2265, 7.2262, 7.2258, 7.2254, 7.2249, 7.2245, 7.2241, 7.2238, 7.2234, 7.2243, 7.2239, 7.2235, 7.2231, 7.2228, 7.2225, 7.2222, 7.2219, 7.2227, 7.2223, 7.2223, 7.2231, 7.2228, 7.2225, 7.2232, 7.224, 7.2236, 7.2232, 7.2241, 7.225, 7.2246, 7.2242, 7.224, 7.2249, 7.2246, 7.2242, 7.2239, 7.2235, 7.2231, 7.2227, 7.2223, 7.2219, 7.2204, 7.2213, 7.221, 7.2207, 7.2203, 7.22, 7.2196, 7.2191, 7.2189, 7.2197, 7.2193, 7.2189, 7.2199, 7.2196, 7.2192, 7.2188, 7.2186, 7.2195, 7.2193, 7.219, 7.2186, 7.2172, 7.2157, 7.2153, 7.2152, 7.215, 7.2146, 7.2142, 7.2139, 7.2136, 7.2132, 7.2129, 7.2125, 7.2122, 7.2118, 7.2115, 7.2114, 7.2112, 7.2099, 7.2095, 7.2093, 7.2089, 7.2085, 7.2081, 7.2107, 7.2103, 7.2111, 7.2107, 7.2104, 7.21, 7.2096, 7.2092, 7.21, 7.2095, 7.2103, 7.21, 7.2096, 7.2098, 7.2095, 7.2104, 7.2121, 7.2117, 7.2112, 7.2109, 7.2105, 7.2102, 7.211, 7.2106, 7.2102, 7.2098, 7.2107, 7.2103, 7.2099, 7.2107, 7.2104, 7.21, 7.2096, 7.2093, 7.2078, 7.2079, 7.2088, 7.2086, 7.2082, 7.209, 7.2086, 7.2071, 7.2057, 7.206, 7.2069, 7.2066, 7.2064, 7.206, 7.2056, 7.2052, 7.2048, 7.2044, 7.2043, 7.2052, 7.2048, 7.2045, 7.2041, 7.2049, 7.2047, 7.2043, 7.204, 7.2037, 7.2045, 7.2054, 7.205, 7.2046, 7.2042, 7.2039, 7.2037, 7.2033, 7.2028, 7.2035, 7.2033, 7.2028, 7.2036, 7.2044, 7.204, 7.2037, 7.2033, 7.203, 7.2026, 7.2034, 7.2029, 7.2026, 7.2023, 7.2033, 7.2031, 7.2027, 7.2035, 7.2032, 7.2028, 7.2024, 7.2032, 7.2028, 7.2024, 7.202, 7.2018, 7.2027, 7.2025, 7.2022, 7.203, 7.2026, 7.2023, 7.2031, 7.2016, 7.2011, 7.2019, 7.2015, 7.2011, 7.2007, 7.2016, 7.2023, 7.2019, 7.2015, 7.2011, 7.2008, 7.2005, 7.2003, 7.1999, 7.1996, 7.2018, 7.2025, 7.2037, 7.2058, 7.2055, 7.2062, 7.2069, 7.2067, 7.2089, 7.2086, 7.2084, 7.2082, 7.208, 7.2065, 7.2072, 7.2079, 7.2086, 7.2081, 7.2077, 7.2074, 7.2083, 7.2081, 7.2079, 7.2075, 7.2072, 7.2069, 7.2076, 7.2072, 7.208, 7.2088, 7.2095, 7.2091, 7.2087, 7.2095, 7.2102, 7.21, 7.2097, 7.2082, 7.2079, 7.2075, 7.2071, 7.2067, 7.2064, 7.2061, 7.207, 7.2055, 7.2051, 7.2036, 7.2034, 7.2031, 7.2027, 7.2038, 7.2046, 7.2042, 7.2038, 7.2035, 7.2031, 7.2028, 7.2024, 7.2031, 7.2027, 7.2024, 7.202, 7.2006, 7.2026, 7.2022, 7.2019, 7.2016, 7.2014, 7.2011, 7.2009, 7.2006, 7.2004, 7.2001, 7.1999, 7.2008, 7.2016, 7.2013, 7.2009, 7.2005, 7.2002, 7.2, 7.1998, 7.201, 7.2006, 7.2004, 7.2, 7.1997, 7.1994, 7.1991, 7.1991, 7.1988, 7.1984, 7.198, 7.1976, 7.1972, 7.198, 7.1976, 7.1974, 7.197, 7.1978, 7.1985, 7.1981, 7.1977, 7.1974, 7.1973, 7.197, 7.1966, 7.1963, 7.196, 7.1957, 7.2024, 7.202, 7.2017, 7.2025, 7.2021, 7.2029, 7.2025, 7.2022, 7.2018, 7.2004, 7.2, 7.1986, 7.1997, 7.1993, 7.1989, 7.1987, 7.1985, 7.1982, 7.1979, 7.2009, 7.2045, 7.2042, 7.204, 7.2077, 7.2073, 7.206, 7.2079, 7.2077, 7.2073, 7.2069, 7.2067, 7.207, 7.2066, 7.2066, 7.2063, 7.2071, 7.2079, 7.2075, 7.2071, 7.2079, 7.2065, 7.2067, 7.2064, 7.2072, 7.208, 7.2069, 7.2069, 7.2067, 7.2063, 7.2059, 7.2057, 7.2065, 7.2064, 7.2062, 7.2059, 7.2067, 7.2064, 7.2073, 7.2058, 7.2055, 7.2065, 7.2063, 7.2072, 7.2081, 7.209, 7.2086, 7.2095, 7.2097, 7.2106, 7.2132, 7.2128, 7.2136, 7.2133, 7.2154, 7.2151, 7.2147, 7.2155, 7.2151, 7.2147, 7.2143, 7.2129, 7.2125, 7.2134, 7.2132, 7.2128, 7.2126, 7.2112, 7.2108, 7.2094, 7.209, 7.2086, 7.2082, 7.2078, 7.2086, 7.2082, 7.2078, 7.2086, 7.2094, 7.2098, 7.2094, 7.2101, 7.2097, 7.2095, 7.2091, 7.2077, 7.2085, 7.2093, 7.21, 7.2096, 7.2093, 7.2102, 7.2098, 7.2095, 7.2093, 7.2101, 7.2097, 7.2094, 7.2102, 7.21, 7.2108, 7.2104, 7.2101, 7.211, 7.211, 7.2107, 7.2105, 7.2112, 7.2109, 7.2105, 7.2109, 7.2117, 7.2115, 7.2113, 7.211, 7.2109, 7.2106, 7.2113, 7.212, 7.2116, 7.2112, 7.2109, 7.2106, 7.2103, 7.2112, 7.2109, 7.2095, 7.2081, 7.2078, 7.2085, 7.2082, 7.2078, 7.2086, 7.2086, 7.2083, 7.2091, 7.2087, 7.2084, 7.2093, 7.2092, 7.209, 7.2098, 7.2095, 7.2091, 7.2092, 7.2089, 7.2086, 7.2106, 7.2114, 7.2122, 7.212, 7.2117, 7.2125, 7.2132, 7.2128, 7.2127, 7.2124, 7.2131, 7.2127, 7.2124, 7.2132, 7.2144, 7.2152, 7.216, 7.2169, 7.2166, 7.2162, 7.2158, 7.2155, 7.2166, 7.2174, 7.2172, 7.217, 7.2156, 7.2166, 7.2187, 7.2183, 7.2181, 7.2177, 7.2174, 7.2171, 7.218, 7.2176, 7.2173, 7.2169, 7.2165, 7.2161, 7.2158, 7.2156, 7.2154, 7.215, 7.2146, 7.2143, 7.2141, 7.2137, 7.2133, 7.2129, 7.2136, 7.2143, 7.214, 7.2136, 7.2144, 7.2143, 7.214, 7.2147, 7.2143, 7.214, 7.2137, 7.2135, 7.216, 7.2156, 7.2159, 7.2157, 7.2154, 7.2151, 7.2149, 7.2146, 7.216, 7.216, 7.2156, 7.2154, 7.215, 7.2146, 7.2142, 7.215, 7.2147, 7.2133, 7.2119, 7.2115, 7.2111, 7.2107, 7.2104, 7.2103, 7.2111, 7.2098, 7.2095, 7.2091, 7.2088, 7.2085, 7.2093, 7.2101, 7.211, 7.2107, 7.2115, 7.2122, 7.213, 7.2135, 7.2134, 7.212, 7.2119, 7.2117, 7.2115, 7.2112, 7.2109, 7.2106, 7.2114, 7.211, 7.2107, 7.2114, 7.2111, 7.2119, 7.2115, 7.2102, 7.2099, 7.2095, 7.2091, 7.2099, 7.2096, 7.2103, 7.2101, 7.2097, 7.2093, 7.2089, 7.2086, 7.2084, 7.2081, 7.2089, 7.2087, 7.21, 7.2096, 7.2097, 7.2094, 7.2091, 7.2087, 7.2095, 7.2092, 7.2088, 7.2085, 7.2082, 7.209, 7.2088, 7.2085, 7.2083, 7.2079, 7.2075, 7.2071, 7.2069, 7.2056, 7.2052, 7.2049, 7.2045, 7.2053, 7.205, 7.2046, 7.2043, 7.204, 7.2037, 7.2033, 7.2041, 7.2039, 7.2035, 7.2023, 7.202, 7.2018, 7.2015, 7.2012, 7.201, 7.2007, 7.2005, 7.2002, 7.2, 7.2007, 7.2004, 7.2, 7.1996, 7.1993, 7.1995, 7.2002, 7.2009, 7.2008, 7.2005, 7.2013, 7.201, 7.2018, 7.2014, 7.201, 7.2006, 7.2014, 7.2022, 7.2018, 7.2028, 7.2024, 7.2031, 7.2027, 7.2023, 7.2031, 7.207, 7.2077, 7.2085, 7.2081, 7.2089, 7.2086, 7.2072, 7.2079, 7.2108, 7.2115, 7.2122, 7.2131, 7.2118, 7.2114, 7.2165, 7.2183, 7.2179, 7.2175, 7.2182, 7.2178, 7.2185, 7.2181, 7.2181, 7.2198, 7.2212, 7.2219, 7.2231, 7.2228, 7.2225, 7.2264, 7.2296, 7.2304, 7.2302, 7.231, 7.2306, 7.2325, 7.2322, 7.2329, 7.2326, 7.2324, 7.2331, 7.2329, 7.2325, 7.2323, 7.2332, 7.2328, 7.2337, 7.2336, 7.2332, 7.2329, 7.2338, 7.2335, 7.2343, 7.2343, 7.234, 7.2348, 7.2345, 7.2352, 7.2349, 7.2346, 7.2342, 7.2329, 7.2325, 7.2323, 7.233, 7.2337, 7.2334, 7.2335, 7.2332, 7.2328, 7.2325, 7.2322, 7.2318, 7.2315, 7.2312, 7.2308, 7.2317, 7.2315, 7.2313, 7.2321, 7.234, 7.235, 7.2378, 7.2375, 7.2371, 7.2367, 7.2364, 7.2371, 7.2368, 7.2365, 7.2363, 7.2359, 7.2355, 7.2351, 7.2358, 7.2355, 7.2352, 7.2348, 7.2344, 7.2345, 7.2342, 7.2339, 7.2382, 7.2378, 7.2374, 7.2374, 7.2384, 7.2381, 7.2388, 7.2385, 7.2381, 7.2377, 7.2374, 7.2371, 7.2358, 7.2355, 7.2373, 7.2371, 7.2367, 7.2374, 7.237, 7.238, 7.2367, 7.2375, 7.2383, 7.2382, 7.2379, 7.2386, 7.2382, 7.239, 7.2387, 7.2384, 7.2381, 7.238, 7.2378, 7.2374, 7.2371, 7.2378, 7.2375, 7.2362, 7.2358, 7.2354, 7.2351, 7.2349, 7.2345, 7.2352, 7.2348, 7.235, 7.2348, 7.2355, 7.2364, 7.236, 7.2368, 7.2364, 7.2371, 7.2369, 7.2378, 7.2378, 7.2377, 7.2374, 7.237, 7.2366, 7.2362, 7.236, 7.2356, 7.2352, 7.2348, 7.2347, 7.2345, 7.2342, 7.2339, 7.2337, 7.2333, 7.234, 7.2348, 7.2344, 7.234, 7.2347, 7.2344, 7.2352, 7.2359, 7.2356, 7.2352, 7.236, 7.2358, 7.2359, 7.2356, 7.2353, 7.235, 7.2347, 7.2357, 7.2354, 7.2363, 7.237, 7.2378, 7.2374, 7.2384, 7.238, 7.2376, 7.2373, 7.237, 7.2378, 7.2378, 7.2365, 7.2361, 7.2358, 7.2356, 7.2364, 7.2361, 7.2358, 7.2355, 7.2352, 7.2348, 7.2347, 7.2334, 7.2331, 7.2338, 7.2334, 7.2332, 7.2329, 7.2326, 7.2333, 7.2341, 7.2338, 7.2335, 7.2322, 7.2319, 7.2325, 7.2324, 7.2312, 7.2308, 7.2295, 7.2296, 7.2293, 7.229, 7.2287, 7.2298, 7.2322, 7.232, 7.2319, 7.2328, 7.2325, 7.2323, 7.2329, 7.2327, 7.2334, 7.2331, 7.2338, 7.2345, 7.2341, 7.2338, 7.2326, 7.2323, 7.233, 7.2326, 7.2333, 7.234, 7.2338, 7.2335, 7.2343, 7.2339, 7.2346, 7.2343, 7.2351, 7.2349, 7.2346, 7.2344, 7.2341, 7.2338, 7.2344, 7.2341, 7.2339, 7.2326, 7.2348, 7.2346, 7.2342, 7.2338, 7.2335, 7.2331, 7.233, 7.232, 7.2327, 7.2323, 7.2312, 7.231, 7.2307, 7.2314, 7.2311, 7.2307, 7.2303, 7.2299, 7.2296, 7.2292, 7.2291, 7.2297, 7.2293, 7.2291, 7.2303, 7.23, 7.23, 7.2304, 7.231, 7.2318, 7.2314, 7.231, 7.2316, 7.2313, 7.2311, 7.231, 7.231, 7.2309, 7.2316, 7.2323, 7.2319, 7.2316, 7.2323, 7.232, 7.2318, 7.2325, 7.2322, 7.2322, 7.2328, 7.2325, 7.2322, 7.2318, 7.2315, 7.2322, 7.2319, 7.2316, 7.2314, 7.2311, 7.2317, 7.2314, 7.2311, 7.2308, 7.2305, 7.2302, 7.2299, 7.2296, 7.2293, 7.23, 7.2307, 7.2316, 7.2313, 7.2314, 7.2315, 7.2311, 7.2318, 7.2315, 7.2326, 7.2323, 7.2332, 7.2349, 7.2346, 7.2354, 7.2352, 7.235, 7.2348, 7.2345, 7.2344, 7.2331, 7.2328, 7.2334, 7.233, 7.2369, 7.2366, 7.2354, 7.2351, 7.2348, 7.2346, 7.2344, 7.2363, 7.2359, 7.2357, 7.2364, 7.2361, 7.2358, 7.2356, 7.2353, 7.235, 7.2346, 7.2401, 7.2398, 7.2395, 7.2394, 7.239, 7.2422, 7.243, 7.2426, 7.2423, 7.242, 7.2416, 7.2413, 7.2411, 7.2409, 7.2406, 7.2404, 7.2401, 7.2398, 7.2396, 7.2392, 7.239, 7.2396, 7.2395, 7.2394, 7.239, 7.2387, 7.2384, 7.2381, 7.2378, 7.2385, 7.2384, 7.2381, 7.2378, 7.2375, 7.2373, 7.2371, 7.2378, 7.2376, 7.2383, 7.237, 7.2387, 7.2383, 7.238, 7.2378, 7.2376, 7.2373, 7.2371, 7.2368, 7.2366, 7.2363, 7.236, 7.2357, 7.2353, 7.2349, 7.2348, 7.2355, 7.2352, 7.2359, 7.2366, 7.2366, 7.2373, 7.237, 7.237, 7.2366, 7.2373, 7.237, 7.2367, 7.2365, 7.2373, 7.2372, 7.237, 7.2367, 7.2365, 7.2361, 7.2378, 7.2375, 7.2373, 7.2379, 7.2377, 7.2376, 7.2383, 7.238, 7.2387, 7.2384, 7.2382, 7.2379, 7.2377, 7.2374, 7.2371, 7.2369, 7.2365, 7.2362, 7.2359, 7.2356, 7.2354, 7.235, 7.2354, 7.2351, 7.2347, 7.2343, 7.234, 7.2338, 7.2335, 7.2336, 7.2343, 7.2349, 7.2351, 7.2348, 7.2378, 7.2376, 7.2382, 7.2382, 7.2379, 7.2376, 7.2374, 7.238, 7.2388, 7.2389, 7.2386, 7.2383, 7.2389, 7.2387, 7.2394, 7.239, 7.2387, 7.2384, 7.238, 7.2386, 7.2393, 7.2389, 7.2385, 7.2382, 7.2389, 7.2386, 7.2384, 7.2391, 7.2389, 7.2387, 7.2386, 7.2393, 7.24, 7.2397, 7.2395, 7.2393, 7.2401, 7.2398, 7.2405, 7.2413, 7.2419, 7.2416, 7.2412, 7.2419, 7.2427, 7.2434, 7.2431, 7.2428, 7.2426, 7.2423, 7.242, 7.2417, 7.2414, 7.241, 7.2418, 7.2416, 7.2413, 7.241, 7.2407, 7.2404, 7.2402, 7.2399, 7.2396, 7.2403, 7.241, 7.2407, 7.2404, 7.2392, 7.238, 7.2377, 7.2374, 7.238, 7.2377, 7.2384, 7.2381, 7.2378, 7.2366, 7.2363, 7.236, 7.2359, 7.2366, 7.2364, 7.2361, 7.2358, 7.2355, 7.2365, 7.2371, 7.2359, 7.2357, 7.2355, 7.2353, 7.235, 7.2347, 7.2348, 7.2345, 7.2343, 7.234, 7.2337, 7.2335, 7.2331, 7.2338, 7.2336, 7.2333, 7.233, 7.2318, 7.2314, 7.2311, 7.2308, 7.2305, 7.2302, 7.2299, 7.2297, 7.2304, 7.23, 7.2309, 7.2325, 7.2322, 7.2325, 7.2322, 7.2319, 7.2327, 7.2324, 7.235, 7.2359, 7.2348, 7.2345, 7.2342, 7.2339, 7.2336, 7.2334, 7.2341, 7.2338, 7.2326, 7.2323, 7.232, 7.2317, 7.2314, 7.2313, 7.2309, 7.2315, 7.2311, 7.2317, 7.2314, 7.2312, 7.2319, 7.2316, 7.2313, 7.2309, 7.2307, 7.2303, 7.231, 7.2306, 7.2303, 7.23, 7.2288, 7.2285, 7.2293, 7.2299, 7.2296, 7.2294, 7.2301, 7.2306, 7.2303, 7.2324, 7.2312, 7.2309, 7.2307, 7.2304, 7.2327, 7.2315, 7.2312, 7.2308, 7.2305, 7.2302, 7.2309, 7.2306, 7.2313, 7.2311, 7.2347, 7.2346, 7.2343, 7.2344, 7.2355, 7.2363, 7.2364, 7.2362, 7.238, 7.2377, 7.2375, 7.2373, 7.2361, 7.2358, 7.2355, 7.2361, 7.2359, 7.2357, 7.2355, 7.2359, 7.2356, 7.2363, 7.236, 7.2357, 7.2354, 7.235, 7.2346, 7.2344, 7.2341, 7.2338, 7.2335, 7.2333, 7.233, 7.233, 7.2328, 7.2325, 7.2322, 7.2319, 7.2316, 7.2313, 7.2319, 7.2325, 7.2322, 7.2319, 7.2307, 7.2304, 7.2311, 7.2308, 7.2306, 7.2313, 7.231, 7.2308, 7.2305, 7.2302, 7.2308, 7.2304, 7.2301, 7.2298, 7.2295, 7.2292, 7.2289, 7.2285, 7.2291, 7.2288, 7.2286, 7.2284, 7.2281, 7.2269, 7.2268, 7.2265, 7.2263, 7.2261, 7.2258, 7.2265, 7.2253, 7.226, 7.2258, 7.2257, 7.2254, 7.2243, 7.224, 7.2238, 7.2236, 7.2233, 7.2231, 7.2229, 7.2226, 7.2235, 7.2232, 7.2229, 7.2226, 7.2224, 7.2221, 7.2219, 7.2226, 7.2223, 7.222, 7.2218, 7.2215, 7.2212, 7.2209, 7.2206, 7.2213, 7.221, 7.2207, 7.2213, 7.221, 7.2207, 7.2224, 7.2221, 7.2227, 7.2234, 7.2231, 7.2228, 7.2231, 7.2219, 7.2216, 7.2222, 7.2211, 7.2217, 7.2215, 7.2212, 7.2221, 7.2218, 7.2216, 7.2215, 7.2212, 7.221, 7.2207, 7.2205, 7.2203, 7.22, 7.2206, 7.2203, 7.2201, 7.2198, 7.2196, 7.2203, 7.22, 7.2198, 7.2195, 7.2193, 7.22, 7.2206, 7.2213, 7.2211, 7.2209, 7.2215, 7.2212, 7.2209, 7.2216, 7.2213, 7.2201, 7.2199, 7.2197, 7.2204, 7.2201, 7.2198, 7.2195, 7.2192, 7.2198, 7.2195, 7.2192, 7.2189, 7.2188, 7.2195, 7.2195, 7.2195, 7.2192, 7.219, 7.2187, 7.2184, 7.219, 7.2187, 7.2184, 7.2189, 7.2186, 7.2193, 7.219, 7.2195, 7.2193, 7.219, 7.2196, 7.2193, 7.2191, 7.2188, 7.2186, 7.2191, 7.2188, 7.2194, 7.2191, 7.2192, 7.2188, 7.2185, 7.2192, 7.2189, 7.2186, 7.2183, 7.218, 7.2177, 7.2174, 7.2171, 7.216, 7.2158, 7.2155, 7.2152, 7.2149, 7.2146, 7.2143, 7.2141, 7.2139, 7.2137, 7.2154, 7.2153, 7.215, 7.2147, 7.2144, 7.2141, 7.2147, 7.2163, 7.2161, 7.2159, 7.2157, 7.2156, 7.2162, 7.2159, 7.2156, 7.2153, 7.216, 7.2158, 7.2148, 7.2137, 7.2135, 7.2135, 7.2152, 7.2159, 7.2166, 7.2173, 7.218, 7.2178, 7.2176, 7.2166, 7.2163, 7.2161, 7.2167, 7.2164, 7.2161, 7.2158, 7.2157, 7.2154, 7.2161, 7.2159, 7.2165, 7.2164, 7.2166, 7.2172, 7.217, 7.2168, 7.2165, 7.2162, 7.2159, 7.2165, 7.2171, 7.2168, 7.222, 7.2218, 7.2217, 7.2216, 7.2213, 7.2229, 7.2226, 7.2223, 7.222, 7.2217, 7.2223, 7.222, 7.2217, 7.2214, 7.2222, 7.2219, 7.2217, 7.2214, 7.2211, 7.2211, 7.221, 7.2207, 7.2197, 7.2188, 7.2178, 7.2169, 7.2166, 7.2157, 7.2177, 7.2174, 7.218, 7.2169, 7.2175, 7.2173, 7.2183, 7.218, 7.2177, 7.2183, 7.2181, 7.2178, 7.2184, 7.2181, 7.2178, 7.2177, 7.2174, 7.2184, 7.2181, 7.2179, 7.2177, 7.2183, 7.218, 7.2178, 7.2175, 7.2164, 7.2161, 7.2167, 7.2164, 7.2171, 7.2168, 7.2165, 7.2163, 7.217, 7.2168, 7.2166, 7.2164, 7.2162, 7.2167, 7.2165, 7.2162, 7.2159, 7.2156, 7.2154, 7.2151, 7.2157, 7.2154, 7.2151, 7.2148, 7.2137, 7.2139, 7.2138, 7.2151, 7.2161, 7.2177, 7.2183, 7.2197, 7.2212, 7.2218, 7.2224, 7.231, 7.2307, 7.2304, 7.2304, 7.2301, 7.2299, 7.2296, 7.2293, 7.229, 7.2287, 7.2284, 7.2282, 7.2279, 7.2276, 7.2273, 7.227, 7.2268, 7.2274, 7.2271, 7.2277, 7.2279, 7.2277, 7.2274, 7.228, 7.2277, 7.2274, 7.228, 7.2278, 7.2285, 7.2282, 7.228, 7.2278, 7.2275, 7.2272, 7.2278, 7.2267, 7.2264, 7.2293, 7.229, 7.2288, 7.2286, 7.2292, 7.229, 7.2296, 7.2293, 7.2292, 7.229, 7.2296, 7.2293, 7.229, 7.2287, 7.2284, 7.229, 7.2288, 7.2285, 7.2282, 7.2279, 7.2276, 7.2273, 7.2271, 7.2268, 7.2265, 7.2279, 7.2298, 7.2295, 7.2292, 7.2289, 7.2288, 7.2285, 7.2283, 7.2289, 7.2295, 7.2292, 7.229, 7.2287, 7.2276, 7.2282, 7.2288, 7.2285, 7.2282, 7.228, 7.2287, 7.2284, 7.2282, 7.2279, 7.2287, 7.2285, 7.2292, 7.2289, 7.2287, 7.2284, 7.2282, 7.2279, 7.2277, 7.2286, 7.2275, 7.2282, 7.2288, 7.2294, 7.2291, 7.2297, 7.2294, 7.2291, 7.2289, 7.2287, 7.2284, 7.2281, 7.2287, 7.2284, 7.2282, 7.2282, 7.2279, 7.2276, 7.2282, 7.2279, 7.2285, 7.2282, 7.228, 7.2277, 7.2274, 7.2281, 7.2278, 7.2275, 7.2272, 7.227, 7.2271, 7.2269, 7.2266, 7.2264, 7.2262, 7.2268, 7.2265, 7.2265, 7.2262, 7.2259, 7.2256, 7.2261, 7.2259, 7.2257, 7.2254, 7.2252, 7.2249, 7.2247, 7.2244, 7.2241, 7.223, 7.2236, 7.2233, 7.223, 7.2231, 7.2237, 7.2244, 7.2241, 7.2247, 7.2253, 7.2251, 7.2258, 7.2257, 7.2254, 7.2272, 7.2279, 7.2277, 7.2283, 7.228, 7.2277, 7.228, 7.2277, 7.2274, 7.228, 7.2286, 7.2284, 7.2281, 7.2278, 7.2275, 7.2273, 7.2263, 7.2269, 7.2267, 7.2272, 7.2269, 7.2266, 7.2263, 7.2252, 7.2259, 7.2257, 7.2254, 7.226, 7.2265, 7.2262, 7.2269, 7.2266, 7.2263, 7.2261, 7.2258, 7.2255, 7.2252, 7.2249, 7.2255, 7.2261, 7.2267, 7.2284, 7.2274, 7.229, 7.2296, 7.2302, 7.23, 7.2306, 7.2303, 7.2301, 7.2307, 7.2304, 7.231, 7.232, 7.2327, 7.2342, 7.234, 7.2338, 7.2335, 7.235, 7.2348, 7.2355, 7.2362, 7.2368, 7.2365, 7.2364, 7.2363, 7.236, 7.2357, 7.236, 7.2357, 7.2354, 7.2351, 7.2348, 7.2347, 7.2344, 7.2351, 7.2357, 7.2346, 7.2352, 7.2349, 7.2355, 7.2353, 7.2358, 7.2356, 7.2362, 7.2359, 7.2356, 7.2353, 7.2359, 7.2365, 7.2363, 7.2369, 7.2366, 7.2363, 7.236, 7.2357, 7.2354, 7.2351, 7.2349, 7.2374, 7.2363, 7.2378, 7.2378, 7.2375, 7.2364, 7.2361, 7.2358, 7.2347, 7.2347, 7.2344, 7.2363, 7.2363, 7.236, 7.2358, 7.2355, 7.2353, 7.2352, 7.235, 7.2355, 7.2361, 7.2358, 7.2355, 7.2353, 7.2359, 7.2357, 7.2355, 7.2361, 7.2359, 7.2366, 7.2364, 7.237, 7.237, 7.2367, 7.2373, 7.2371, 7.2369, 7.2366, 7.2363, 7.2361, 7.2359, 7.2357, 7.2355, 7.2352, 7.2352, 7.2349, 7.2346, 7.2344, 7.2341, 7.2339, 7.2336, 7.2333, 7.2339, 7.2337, 7.2344, 7.2342, 7.2331, 7.2328, 7.2333, 7.233, 7.2327, 7.2332, 7.2329, 7.2335, 7.2332, 7.233, 7.2319, 7.2326, 7.2323, 7.2321, 7.2327, 7.2325, 7.2322, 7.2319, 7.2316, 7.2315, 7.2312, 7.231, 7.2308, 7.2305, 7.2302, 7.2299, 7.2305, 7.2328, 7.2325, 7.2363, 7.236, 7.2358, 7.2364, 7.2361, 7.2358, 7.2355, 7.2353, 7.2355, 7.2361, 7.2358, 7.2357, 7.2355, 7.2361, 7.236, 7.2357, 7.2354, 7.236, 7.2366, 7.2372, 7.2369, 7.2368, 7.2365, 7.2369, 7.2375, 7.2372, 7.2369, 7.2372, 7.2369, 7.2374, 7.238, 7.2385, 7.2391, 7.2397, 7.2395, 7.2401, 7.2408, 7.2413, 7.2411, 7.2408, 7.2405, 7.2402, 7.24, 7.2405, 7.2403, 7.2401, 7.2399, 7.2404, 7.2405, 7.2404, 7.2409, 7.2414, 7.2411, 7.2409, 7.2406, 7.2411, 7.241, 7.2408, 7.2405, 7.2395, 7.2392, 7.2397, 7.2394, 7.2392, 7.2398, 7.2395, 7.2401, 7.2398, 7.2395, 7.2393, 7.239, 7.2395, 7.2393, 7.2391, 7.2397, 7.2395, 7.2392, 7.2389, 7.2379, 7.2376, 7.2373, 7.2379, 7.2376, 7.2373, 7.2371, 7.2368, 7.2367, 7.2364, 7.237, 7.2367, 7.2364, 7.2371, 7.2368, 7.2365, 7.2362, 7.2359, 7.2364, 7.2363, 7.2368, 7.2365, 7.2364, 7.2362, 7.2359, 7.2356, 7.2362, 7.2359, 7.2356, 7.2353, 7.2351, 7.2351, 7.2358, 7.2363, 7.2361, 7.2359, 7.2358, 7.2356, 7.2369, 7.2375, 7.2381, 7.239, 7.239, 7.2404, 7.2401, 7.2424, 7.2421, 7.2418, 7.2423, 7.2421, 7.2421, 7.2427, 7.2424, 7.2438, 7.2438, 7.2438, 7.244, 7.2446, 7.2443, 7.2448, 7.2446, 7.2451, 7.2448, 7.2446, 7.2451, 7.2454, 7.2451, 7.2457, 7.2465, 7.2462, 7.2459, 7.2457, 7.2462, 7.2476, 7.2481, 7.2478, 7.2475, 7.2473, 7.2478, 7.2484, 7.2481, 7.2487, 7.2485, 7.2485, 7.2498, 7.2496, 7.2493, 7.2491, 7.2488, 7.2485, 7.2485, 7.2482, 7.2488, 7.2501, 7.2499, 7.2496, 7.2501, 7.2506, 7.2513, 7.251, 7.2508, 7.2522, 7.252, 7.2518, 7.2515, 7.2516, 7.252, 7.2517, 7.2514, 7.2512, 7.2503, 7.25, 7.2498, 7.2512, 7.2517, 7.2515, 7.2521, 7.2526, 7.2532, 7.253, 7.252, 7.2518, 7.2524, 7.2521, 7.2518, 7.2516, 7.2513, 7.2503, 7.2509, 7.2506, 7.2504, 7.2502, 7.2492, 7.2491, 7.249, 7.2498, 7.2495, 7.2508, 7.2505, 7.2511, 7.2516, 7.2506, 7.2504, 7.2502, 7.2499, 7.2504, 7.2518, 7.2516, 7.2522, 7.2543, 7.2541, 7.2539, 7.2553, 7.2543, 7.2541, 7.254, 7.2537, 7.2534, 7.2535, 7.2541, 7.2539, 7.2536, 7.2541, 7.2547, 7.2553, 7.2558, 7.2564, 7.2564, 7.2562, 7.2559, 7.2565, 7.2563, 7.2568, 7.2565, 7.2562, 7.2559, 7.2557, 7.2554, 7.256, 7.2565, 7.2563, 7.256, 7.2557, 7.2563, 7.2592, 7.259, 7.2588, 7.2593, 7.2604, 7.2602, 7.2599, 7.2598, 7.2604, 7.2602, 7.2608, 7.2606, 7.2612, 7.261, 7.2623, 7.2637, 7.2635, 7.2641, 7.2639, 7.2645, 7.265, 7.2656, 7.2653, 7.2643, 7.2648, 7.2645, 7.2659, 7.2656, 7.267, 7.2676, 7.2678, 7.2675, 7.2674, 7.2671, 7.2668, 7.2665, 7.267, 7.2667, 7.2672, 7.2708, 7.2713, 7.2719, 7.2725, 7.2723, 7.2729, 7.2728, 7.2725, 7.2723, 7.272, 7.2718, 7.2715, 7.2713, 7.2711, 7.2716, 7.2721, 7.2719, 7.2717, 7.2715, 7.2712, 7.2717, 7.2715, 7.2712, 7.2709, 7.2714, 7.2711, 7.2724, 7.2722, 7.2721, 7.2727, 7.2724, 7.2721, 7.2718, 7.2716, 7.2721, 7.2718, 7.2724, 7.2729, 7.2726, 7.2723, 7.2721, 7.2718, 7.2724, 7.2721, 7.2718, 7.2724, 7.2722, 7.272, 7.2717, 7.2707, 7.2712, 7.2702, 7.27, 7.2698, 7.2719, 7.2725, 7.2723, 7.2721, 7.2727, 7.2733, 7.2731, 7.2736, 7.2741, 7.2746, 7.2744, 7.2749, 7.2747, 7.2752, 7.2757, 7.2754, 7.2759, 7.2764, 7.2761, 7.2759, 7.2756, 7.2754, 7.2753, 7.2758, 7.2763, 7.2785, 7.2782, 7.2796, 7.2794, 7.2796, 7.2794, 7.2791, 7.2794, 7.2791, 7.2781, 7.2778, 7.2776, 7.2773, 7.2771, 7.2768, 7.2796, 7.2794, 7.2792, 7.2789, 7.2787, 7.2792, 7.2798, 7.2803, 7.2808, 7.2805, 7.281, 7.2815, 7.2821, 7.2834, 7.2831, 7.2828, 7.2825, 7.2822, 7.2827, 7.2833, 7.2839, 7.2829, 7.2819, 7.2817, 7.2807, 7.2805, 7.281, 7.2816, 7.2813, 7.2828, 7.2834, 7.2839, 7.2836, 7.2833, 7.2841, 7.2839, 7.2836, 7.2834, 7.2832, 7.283, 7.2827, 7.2832, 7.283, 7.2827, 7.2824, 7.2821, 7.2826, 7.2825, 7.283, 7.2827, 7.2825, 7.2834, 7.2832, 7.283, 7.2828, 7.2831, 7.2829, 7.2835, 7.284, 7.2837, 7.2835, 7.2833, 7.2838, 7.2828, 7.2826, 7.2824, 7.283, 7.2828, 7.2826, 7.2832, 7.2833, 7.283, 7.2861, 7.2866, 7.2863, 7.2869, 7.2882, 7.2887, 7.2884, 7.2881, 7.2878, 7.2876, 7.2874, 7.2871, 7.287, 7.2875, 7.2872, 7.2869, 7.2874, 7.2872, 7.287, 7.2868, 7.288, 7.2878, 7.2875, 7.2889, 7.2886, 7.2884, 7.2889, 7.2886, 7.2883, 7.288, 7.2878, 7.2875, 7.2873, 7.2883], '192.168.122.114': [29.47, 17.7708, 13.6831, 11.8059, 10.5985, 10.7358, 10.932, 10.2531, 9.7402, 9.2949, 8.4851, 8.6919, 8.5187, 8.3009, 8.1427, 7.6782, 7.5402, 7.4089, 7.3056, 7.751, 7.6802, 7.5986, 7.5263, 7.5041, 7.4689, 7.6222, 7.7375, 7.6926, 7.625, 7.5728, 7.5191, 7.6189, 7.5672, 7.5136, 7.4598, 7.5742, 7.6744, 7.6207, 7.7034, 7.6676, 7.7249, 7.6676, 7.7555, 7.7133, 7.6827, 7.6439, 7.5963, 7.579, 7.4373, 7.3943, 7.3557, 7.4172, 7.3863, 7.3481, 7.3107, 7.2844, 7.2852, 7.254, 7.3159, 7.302, 7.2842, 7.3487, 7.3249, 7.3015, 7.2757, 7.1807, 7.1635, 7.1357, 7.1221, 7.109, 7.0845, 7.0828, 7.073, 7.0526, 7.0332, 7.0163, 7.004, 6.9843, 7.0242, 7.0182, 7.0046, 6.9885, 7.0331, 7.0137, 7.0083, 7.0135, 7.001, 6.986, 6.9735, 6.9816, 6.9754, 6.9566, 6.9388, 6.9274, 6.9202, 6.9035, 6.8865, 6.8768, 6.9158, 6.9121, 6.8988, 6.8846, 6.9219, 6.957, 6.9504, 6.9339, 6.9694, 6.9544, 6.9435, 6.9281, 6.9628, 6.9507, 6.9361, 6.9695, 6.9556, 6.9417, 6.9745, 6.9652, 6.9517, 6.9394, 6.9702, 7.0033, 6.9896, 7.0276, 7.0147, 7.0017, 6.9917, 6.9846, 6.9382, 6.9252, 6.9186, 6.9065, 6.9363, 6.9259, 6.8784, 6.8842, 6.8807, 6.8714, 6.8693, 6.8596, 6.8541, 6.844, 6.8339, 6.8308, 6.8235, 6.7832, 6.7734, 6.7719, 6.7647, 6.7562, 6.7468, 6.7751, 6.8014, 6.7917, 6.7826, 6.8099, 6.8002, 6.7957, 6.7868, 6.7519, 6.7463, 6.7728, 6.7724, 6.7643, 6.759, 6.7582, 6.7505, 6.7752, 6.7702, 6.7942, 6.7902, 6.7855, 6.7865, 6.8372, 6.8306, 6.8239, 6.8477, 6.869, 6.869, 6.8675, 6.8661, 6.857, 6.8502, 6.8415, 6.8612, 6.8538, 6.8769, 6.8732, 6.8928, 6.9118, 6.9039, 6.8964, 6.8888, 6.8813, 6.8728, 6.8656, 6.8586, 6.8518, 6.8462, 6.8393, 6.8593, 6.8515, 6.8473, 6.8423, 6.8356, 6.9086, 6.9266, 6.9509, 7.0011, 6.9715, 6.9409, 6.9352, 6.9289, 6.9472, 6.9449, 6.9387, 7.0075, 7.0024, 6.9947, 7.0588, 7.1219, 7.1169, 7.1098, 7.1027, 7.0964, 7.1132, 7.1056, 7.0976, 7.0905, 7.083, 7.076, 7.0729, 7.0679, 7.0841, 7.0565, 7.0503, 7.1084, 7.1072, 7.1001, 7.1252, 7.121, 7.0983, 7.1125, 7.1263, 7.141, 7.1349, 7.1478, 7.1617, 7.1758, 7.1688, 7.1826, 7.1979, 7.2122, 7.2534, 7.2671, 7.2796, 7.2725, 7.2648, 7.2575, 7.252, 7.2451, 7.24, 7.2343, 7.2272, 7.2228, 7.2197, 7.2464, 7.2441, 7.2383, 7.2344, 7.2299, 7.2245, 7.2176, 7.2127, 7.2059, 7.2188, 7.2159, 7.2291, 7.2405, 7.2337, 7.2267, 7.22, 7.2142, 7.209, 7.2073, 7.2203, 7.2134, 7.2072, 7.2029, 7.1965, 7.1901, 7.2079, 7.2025, 7.1965, 7.1904, 7.1854, 7.1814, 7.193, 7.1882, 7.186, 7.1811, 7.1791, 7.1737, 7.1691, 7.1643, 7.1593, 7.1607, 7.1548, 7.1487, 7.1476, 7.1422, 7.1384, 7.1345, 7.1381, 7.1323, 7.1296, 7.126, 7.1377, 7.1341, 7.1315, 7.1282, 7.1241, 7.1355, 7.1301, 7.1253, 7.1216, 7.1176, 7.1126, 7.1079, 7.1203, 7.1149, 7.127, 7.1252, 7.1224, 7.117, 7.1136, 7.1084, 7.1039, 7.0988, 7.0953, 7.0912, 7.1018, 7.0967, 7.1066, 7.1013, 7.0973, 7.1076, 7.1037, 7.1012, 7.0967, 7.1079, 7.1056, 7.1029, 7.0994, 7.1101, 7.1055, 7.101, 7.1106, 7.106, 7.101, 7.0965, 7.0933, 7.09, 7.0852, 7.1027, 7.0995, 7.0953, 7.0924, 7.1016, 7.1111, 7.1076, 7.104, 7.0992, 7.0944, 7.0903, 7.1003, 7.0957, 7.1055, 7.1155, 7.1128, 7.1081, 7.1171, 7.1261, 7.1213, 7.1166, 7.1122, 7.1095, 7.1065, 7.1025, 7.0987, 7.0938, 7.0895, 7.0858, 7.0831, 7.0801, 7.0914, 7.0879, 7.0984, 7.1073, 7.1045, 7.1151, 7.1109, 7.1077, 7.1036, 7.1006, 7.109, 7.0935, 7.0892, 7.0909, 7.0879, 7.0841, 7.0812, 7.09, 7.0858, 7.0944, 7.0912, 7.1, 7.0978, 7.0952, 7.1039, 7.1126, 7.1083, 7.1176, 7.1265, 7.1226, 7.1313, 7.1269, 7.1252, 7.124, 7.1207, 7.1167, 7.1128, 7.1097, 7.1185, 7.1268, 7.1249, 7.1226, 7.1317, 7.1403, 7.144, 7.1413, 7.1373, 7.1577, 7.1704, 7.1665, 7.1658, 7.1638, 7.1602, 7.1691, 7.1658, 7.1663, 7.1625, 7.159, 7.1674, 7.1633, 7.1591, 7.1563, 7.1534, 7.1496, 7.1475, 7.144, 7.1532, 7.1493, 7.1454, 7.1317, 7.1291, 7.1376, 7.1342, 7.1307, 7.1275, 7.1366, 7.1437, 7.1422, 7.1389, 7.1359, 7.1647, 7.1608, 7.1572, 7.1539, 7.1503, 7.148, 7.1462, 7.1444, 7.1407, 7.1375, 7.1336, 7.1414, 7.1386, 7.136, 7.1437, 7.1402, 7.1367, 7.1443, 7.1411, 7.1382, 7.1462, 7.1446, 7.1418, 7.151, 7.1484, 7.1454, 7.1344, 7.1317, 7.1329, 7.1311, 7.1187, 7.1065, 7.1035, 7.1029, 7.0907, 7.0884, 7.0857, 7.083, 7.0813, 7.0886, 7.0859, 7.083, 7.0809, 7.0878, 7.0952, 7.0927, 7.1002, 7.0977, 7.0941, 7.0912, 7.0879, 7.0851, 7.0821, 7.0796, 7.0869, 7.0844, 7.0811, 7.0882, 7.0857, 7.0826, 7.0799, 7.0773, 7.0749, 7.0718, 7.0885, 7.0859, 7.0832, 7.0805, 7.0803, 7.078, 7.076, 7.0732, 7.1019, 7.0999, 7.0966, 7.1006, 7.0995, 7.0972, 7.094, 7.1002, 7.0972, 7.0949, 7.0925, 7.1087, 7.1064, 7.1126, 7.1094, 7.1133, 7.1111, 7.1082, 7.105, 7.1137, 7.1104, 7.1101, 7.1073, 7.1044, 7.1043, 7.1026, 7.1033, 7.1005, 7.0973, 7.0952, 7.1062, 7.1032, 7.1035, 7.1004, 7.1069, 7.1243, 7.1222, 7.1192, 7.1164, 7.1144, 7.1215, 7.1184, 7.1167, 7.1135, 7.1288, 7.1267, 7.1329, 7.1306, 7.128, 7.1256, 7.1232, 7.1211, 7.1278, 7.1344, 7.1321, 7.1289, 7.1262, 7.1263, 7.125, 7.1224, 7.1293, 7.1268, 7.1245, 7.1313, 7.1318, 7.129, 7.1329, 7.1303, 7.1282, 7.1178, 7.1246, 7.122, 7.1234, 7.1225, 7.1292, 7.1265, 7.1261, 7.1429, 7.1405, 7.1378, 7.1431, 7.1412, 7.146, 7.1431, 7.1596, 7.1692, 7.1789, 7.1783, 7.1841, 7.1818, 7.1879, 7.1935, 7.1909, 7.1889, 7.1945, 7.1919, 7.1892, 7.1863, 7.1957, 7.193, 7.1902, 7.1963, 7.202, 7.1991, 7.1965, 7.2022, 7.2007, 7.2062, 7.2068, 7.2047, 7.2025, 7.1998, 7.2055, 7.2028, 7.2076, 7.2056, 7.2027, 7.1998, 7.199, 7.2045, 7.21, 7.2082, 7.2059, 7.204, 7.2012, 7.1983, 7.1961, 7.1932, 7.1978, 7.1961, 7.1961, 7.1949, 7.1922, 7.19, 7.1877, 7.1929, 7.1904, 7.1875, 7.1928, 7.19, 7.192, 7.1899, 7.1881, 7.1867, 7.2127, 7.2099, 7.2082, 7.2062, 7.2041, 7.2024, 7.2008, 7.1987, 7.1962, 7.194, 7.1991, 7.1967, 7.2018, 7.2066, 7.2056, 7.2032, 7.2007, 7.1993, 7.1969, 7.1956, 7.1931, 7.1987, 7.2033, 7.2086, 7.2059, 7.2038, 7.2011, 7.2055, 7.2054, 7.2036, 7.2085, 7.2065, 7.2208, 7.2185, 7.2238, 7.2221, 7.2208, 7.2338, 7.2248, 7.2229, 7.2209, 7.226, 7.2235, 7.2447, 7.2495, 7.2478, 7.2453, 7.2435, 7.2416, 7.2398, 7.2377, 7.2356, 7.2411, 7.2322, 7.2369, 7.235, 7.2396, 7.2518, 7.2561, 7.2546, 7.2522, 7.2511, 7.2489, 7.2473, 7.2456, 7.2436, 7.2431, 7.2411, 7.2399, 7.2375, 7.2422, 7.2398, 7.2451, 7.2447, 7.2497, 7.2493, 7.247, 7.2382, 7.2426, 7.2399, 7.2375, 7.2351, 7.2325, 7.2307, 7.2282, 7.2264, 7.2317, 7.2295, 7.2338, 7.233, 7.2383, 7.236, 7.2401, 7.2378, 7.2353, 7.2338, 7.2314, 7.2304, 7.2281, 7.2359, 7.2356, 7.2337, 7.2316, 7.2366, 7.2282, 7.2266, 7.2254, 7.223, 7.2216, 7.2267, 7.2243, 7.2287, 7.2209, 7.2201, 7.2184, 7.2229, 7.2222, 7.2276, 7.2321, 7.231, 7.2345, 7.2324, 7.2302, 7.2289, 7.2277, 7.2268, 7.2249, 7.2227, 7.2209, 7.2186, 7.2239, 7.2229, 7.2271, 7.2317, 7.2297, 7.2276, 7.2319, 7.23, 7.2277, 7.2355, 7.2334, 7.2317, 7.2294, 7.2337, 7.2314, 7.2294, 7.2273, 7.2255, 7.2176, 7.2153, 7.2193, 7.2173, 7.2152, 7.2129, 7.2108, 7.209, 7.2136, 7.218, 7.2235, 7.2214, 7.2209, 7.225, 7.2235, 7.2215, 7.2196, 7.2179, 7.2161, 7.2174, 7.2155, 7.2142, 7.2122, 7.2108, 7.204, 7.2026, 7.2172, 7.2214, 7.2199, 7.2123, 7.2174, 7.2154, 7.2144, 7.2185, 7.2172, 7.219, 7.2171, 7.215, 7.214, 7.2121, 7.2113, 7.2094, 7.2077, 7.2057, 7.2035, 7.2021, 7.2006, 7.2048, 7.2089, 7.2067, 7.2047, 7.2028, 7.2015, 7.1995, 7.1974, 7.1957, 7.194, 7.1983, 7.1961, 7.1939, 7.1923, 7.1963, 7.2002, 7.2046, 7.2033, 7.2141, 7.2125, 7.2117, 7.2095, 7.2078, 7.2062, 7.2048, 7.2028, 7.2007, 7.2044, 7.2117, 7.2155, 7.2141, 7.218, 7.2159, 7.2199, 7.2183, 7.2222, 7.2205, 7.2185, 7.2224, 7.2204, 7.2194, 7.2235, 7.2273, 7.2258, 7.2297, 7.2278, 7.2257, 7.224, 7.2225, 7.2264, 7.2249, 7.2229, 7.221, 7.2189, 7.2171, 7.2153, 7.2187, 7.2167, 7.2148, 7.2131, 7.2231, 7.2218, 7.2199, 7.2189, 7.2176, 7.2158, 7.2146, 7.2131, 7.2117, 7.2097, 7.2133, 7.2168, 7.2305, 7.2345, 7.2381, 7.2313, 7.2312, 7.235, 7.2384, 7.2428, 7.2412, 7.2395, 7.2433, 7.2415, 7.2453, 7.244, 7.2479, 7.2461, 7.2452, 7.2438, 7.242, 7.2463, 7.2448, 7.2484, 7.2738, 7.2791, 7.2778, 7.2763, 7.2749, 7.273, 7.2711, 7.2696, 7.2677, 7.2662, 7.2653, 7.2687, 7.267, 7.2706, 7.2686, 7.2721, 7.2757, 7.2793, 7.2772, 7.2754, 7.2789, 7.2825, 7.2812, 7.2793, 7.2773, 7.2756, 7.2736, 7.2717, 7.2704, 7.2686, 7.2667, 7.265, 7.2632, 7.2616, 7.261, 7.2647, 7.2686, 7.2793, 7.2829, 7.2864, 7.2857, 7.2841, 7.2825, 7.2858, 7.2841, 7.2833, 7.2821, 7.2801, 7.2786, 7.2767, 7.2749, 7.2787, 7.2775, 7.2762, 7.2798, 7.2828, 7.2811, 7.2799, 7.2814, 7.2796, 7.2777, 7.2762, 7.2744, 7.2724, 7.2705, 7.2695, 7.2683, 7.267, 7.2654, 7.2637, 7.2671, 7.2655, 7.2691, 7.2736, 7.2722, 7.2786, 7.2776, 7.2758, 7.2745, 7.2736, 7.2718, 7.2705, 7.2687, 7.267, 7.2655, 7.2637, 7.2621, 7.2642, 7.2624, 7.2606, 7.2592, 7.2578, 7.2562, 7.2594, 7.2575, 7.2557, 7.254, 7.2526, 7.2509, 7.2503, 7.2488, 7.2597, 7.2535, 7.2555, 7.2538, 7.257, 7.261, 7.2595, 7.2629, 7.261, 7.2645, 7.2583, 7.2566, 7.2551, 7.2633, 7.2622, 7.2617, 7.2651, 7.2637, 7.2621, 7.2654, 7.2638, 7.262, 7.2607, 7.264, 7.2627, 7.2608, 7.2638, 7.2628, 7.2611, 7.2643, 7.2632, 7.2615, 7.2621, 7.2652, 7.2685, 7.2682, 7.2665, 7.2691, 7.2683, 7.2666, 7.2649, 7.2636, 7.2619, 7.2574, 7.2603, 7.2634, 7.2664, 7.2648, 7.268, 7.2663, 7.2647, 7.2633, 7.2662, 7.2645, 7.263, 7.2615, 7.2602, 7.2543, 7.2528, 7.261, 7.2597, 7.2627, 7.261, 7.2594, 7.2624, 7.2607, 7.2596, 7.258, 7.263, 7.2613, 7.2615, 7.2665, 7.2652, 7.2721, 7.2704, 7.2687, 7.273, 7.2713, 7.2731, 7.2716, 7.2701, 7.2733, 7.2718, 7.275, 7.2735, 7.2719, 7.2741, 7.2728, 7.2756, 7.2786, 7.282, 7.2804, 7.2787, 7.2813, 7.282, 7.2848, 7.2928, 7.2959, 7.2945, 7.2975, 7.2965, 7.295, 7.2936, 7.2927, 7.2912, 7.2895, 7.2882, 7.2867, 7.2898, 7.2882, 7.2869, 7.2856, 7.2845, 7.2833, 7.2816, 7.2817, 7.28, 7.2785, 7.2768, 7.2797, 7.2786, 7.2769, 7.2758, 7.2742, 7.277, 7.2801, 7.2792, 7.2819, 7.2808, 7.2795, 7.2744, 7.2775, 7.2806, 7.279, 7.2793, 7.2825, 7.2811, 7.2803, 7.2802, 7.2787, 7.2774, 7.2758, 7.2795, 7.2794, 7.2781, 7.2766, 7.2794, 7.2781, 7.2771, 7.2756, 7.2744, 7.2733, 7.2717, 7.2745, 7.273, 7.2713, 7.2743, 7.2732, 7.2679, 7.2665, 7.2693, 7.2722, 7.2708, 7.2693, 7.2684, 7.2668, 7.2697, 7.2681, 7.2669, 7.2655, 7.2682, 7.2709, 7.2737, 7.2765, 7.2757, 7.2741, 7.273, 7.2761, 7.2792, 7.2777, 7.2768, 7.2756, 7.2743, 7.273, 7.2759, 7.2788, 7.2772, 7.2801, 7.279, 7.282, 7.2813, 7.2839, 7.2869, 7.2856, 7.2886, 7.2872, 7.2856, 7.2842, 7.2828, 7.2857, 7.2845, 7.2836, 7.2867, 7.2896, 7.2927, 7.2913, 7.2898, 7.2882, 7.292, 7.2915, 7.2901, 7.2886, 7.2874, 7.29, 7.2887, 7.2875, 7.2862, 7.2891, 7.2875, 7.2866, 7.2854, 7.2847, 7.2875, 7.2862, 7.2849, 7.2839, 7.2868, 7.2853, 7.2838, 7.2841, 7.283, 7.2941, 7.3007, 7.2994, 7.3018, 7.3046, 7.3036, 7.3061, 7.3054, 7.3161, 7.3147, 7.3133, 7.3122, 7.3107, 7.3092, 7.3041, 7.3025, 7.301, 7.2996, 7.3022, 7.3048, 7.3035, 7.306, 7.3086, 7.3112, 7.3096, 7.3091, 7.3124, 7.3109, 7.3099, 7.3097, 7.3204, 7.3191, 7.3259, 7.3247, 7.3234, 7.3219, 7.3208, 7.3196, 7.3184, 7.3171, 7.316, 7.3146, 7.3133, 7.3119, 7.3108, 7.3134, 7.3085, 7.311, 7.3096, 7.3082, 7.3146, 7.3097, 7.3127, 7.3117, 7.311, 7.3135, 7.3121, 7.3112, 7.3102, 7.3087, 7.3074, 7.31, 7.3086, 7.3073, 7.3059, 7.3059, 7.3101, 7.3089, 7.3115, 7.3101, 7.3124, 7.3075, 7.3065, 7.317, 7.3197, 7.3183, 7.3208, 7.3234, 7.3259, 7.3248, 7.3262, 7.3252, 7.3283, 7.3268, 7.3276, 7.3265, 7.325, 7.3239, 7.3236, 7.3258, 7.3243, 7.3231, 7.3216, 7.3207, 7.3194, 7.3183, 7.317, 7.3156, 7.3116, 7.3178, 7.3202, 7.3188, 7.3368, 7.3357, 7.3344, 7.333, 7.332, 7.3344, 7.3331, 7.3397, 7.3383, 7.3386, 7.3372, 7.3358, 7.3345, 7.3332, 7.3322, 7.3309, 7.3294, 7.3282, 7.3307, 7.3331, 7.3355, 7.338, 7.3367, 7.3353, 7.3376, 7.3363, 7.3349, 7.3341, 7.3328, 7.3314, 7.3311, 7.3298, 7.3285, 7.3276, 7.3265, 7.3251, 7.3289, 7.328, 7.3268, 7.3255, 7.3422, 7.3422, 7.341, 7.3397, 7.3419, 7.3422, 7.3416, 7.3402, 7.3391, 7.3378, 7.3366, 7.3353, 7.334, 7.3332, 7.3319, 7.3305, 7.34, 7.3461, 7.3464, 7.3451, 7.3479, 7.3465, 7.3524, 7.3517, 7.3503, 7.3489, 7.3481, 7.3539, 7.3527, 7.3595, 7.3583, 7.3579, 7.3565, 7.3552, 7.3544, 7.3498, 7.3499, 7.3486, 7.3507, 7.3529, 7.3518, 7.3507, 7.3534, 7.3561, 7.3549, 7.3538, 7.3525, 7.3513, 7.35, 7.349, 7.3513, 7.35, 7.3492, 7.3515, 7.3506, 7.353, 7.3517, 7.3545, 7.3532, 7.3519, 7.3509, 7.3496, 7.3518, 7.353, 7.3552, 7.3539, 7.3526, 7.3513, 7.3535, 7.3558, 7.3546, 7.3534, 7.3562, 7.3551, 7.3591, 7.3622, 7.3645, 7.3736, 7.3733, 7.3736, 7.3732, 7.3688, 7.3679, 7.3674, 7.3666, 7.366, 7.3683, 7.3673, 7.372, 7.3715, 7.3719, 7.3708, 7.3699, 7.3688, 7.371, 7.3697, 7.3654, 7.3675, 7.3662, 7.3652, 7.3641, 7.3663, 7.3653, 7.3675, 7.37, 7.3688, 7.3676, 7.3637, 7.3601, 7.359, 7.3578, 7.3569, 7.3556, 7.3546, 7.3572, 7.3593, 7.3586, 7.3591, 7.3556, 7.3544, 7.3535, 7.3523, 7.3546, 7.3538, 7.3529, 7.3519, 7.354, 7.3551, 7.3608, 7.3608, 7.3599, 7.3562, 7.3583, 7.3571, 7.3587, 7.361, 7.3597, 7.3657, 7.3646, 7.3636, 7.3657, 7.3647, 7.3634, 7.3657, 7.3645, 7.3666, 7.3653, 7.3643, 7.36, 7.3588, 7.3577, 7.357, 7.3564, 7.3558, 7.3546, 7.3536, 7.3568, 7.3556, 7.3547, 7.3569, 7.359, 7.3578, 7.3566, 7.3554, 7.3549, 7.354, 7.3528, 7.358, 7.3568, 7.3557, 7.3547, 7.3535, 7.3557, 7.3545, 7.3566, 7.3588, 7.3578, 7.3605, 7.3594, 7.3588, 7.358, 7.3602, 7.3592, 7.3584, 7.3572, 7.3565, 7.3586, 7.3575, 7.3563, 7.3585, 7.3605, 7.3628, 7.3651, 7.367, 7.3659, 7.3648, 7.3639, 7.363, 7.3649, 7.3644, 7.3664, 7.3688, 7.3711, 7.3735, 7.3725, 7.372, 7.371, 7.3732, 7.3726, 7.3719, 7.3706, 7.3694, 7.3681, 7.3641, 7.3628, 7.3616, 7.3607, 7.3596, 7.3615, 7.3629, 7.3627, 7.3614, 7.3634, 7.3622, 7.3612, 7.3631, 7.3624, 7.3644, 7.3664, 7.3655, 7.3644, 7.3608, 7.3596, 7.3586, 7.3577, 7.3566, 7.3556, 7.3547, 7.3601, 7.3592, 7.3584, 7.3572, 7.3563, 7.3585, 7.3573, 7.3567, 7.3586, 7.3574, 7.3593, 7.3614, 7.3603, 7.3593, 7.3585, 7.3576, 7.357, 7.3561, 7.3552, 7.3603, 7.3596, 7.3597, 7.3588, 7.3579, 7.3568, 7.3557, 7.3575, 7.3569, 7.3558, 7.3578, 7.3627, 7.3647, 7.3637, 7.3655, 7.3706, 7.3725, 7.3745, 7.3829, 7.3817, 7.3808, 7.3828, 7.3816, 7.3811, 7.38, 7.3825, 7.3814, 7.3803, 7.3797, 7.3787, 7.3775, 7.3764, 7.3782, 7.3803, 7.3794, 7.3857, 7.3874, 7.3863, 7.3851, 7.384, 7.3832, 7.3826, 7.3815, 7.3837, 7.383, 7.3824, 7.3814, 7.3804, 7.3803, 7.3795, 7.3787, 7.3777, 7.3768, 7.373, 7.3719, 7.3738, 7.3731, 7.3752, 7.374, 7.373, 7.375, 7.3749, 7.3738, 7.3758, 7.3777, 7.3795, 7.3783, 7.3772, 7.379, 7.3779, 7.3776, 7.3766, 7.3755, 7.3744, 7.3763, 7.3752, 7.3741, 7.373, 7.3719, 7.3739, 7.3759, 7.3779, 7.38, 7.3794, 7.3824, 7.3816, 7.3804, 7.3802, 7.377, 7.3761, 7.3782, 7.3771, 7.3821, 7.3868, 7.3861, 7.388, 7.3871, 7.3891, 7.3881, 7.3843, 7.3832, 7.3852, 7.385, 7.387, 7.3862, 7.3913, 7.3904, 7.3896, 7.4034, 7.4024, 7.4043, 7.4064, 7.4052, 7.4014, 7.4005, 7.3993, 7.3986, 7.3976, 7.3966, 7.3956, 7.3949, 7.3938, 7.3965, 7.3957, 7.3947, 7.3966, 7.396, 7.3957, 7.3946, 7.3965, 7.3954, 7.395, 7.3971, 7.3963, 7.3954, 7.3972, 7.3961, 7.3925, 7.3918, 7.3936, 7.3927, 7.389, 7.3915, 7.3962, 7.3953, 7.3943, 7.3947, 7.3911, 7.3913, 7.3937, 7.3929, 7.3946, 7.3937, 7.3927, 7.3945, 7.4001, 7.3993, 7.4044, 7.4037, 7.4037, 7.4033, 7.4024, 7.4058, 7.4051, 7.4071, 7.406, 7.4056, 7.4061, 7.4052, 7.4042, 7.4037, 7.4028, 7.402, 7.4009, 7.4, 7.3991, 7.398, 7.397, 7.3959, 7.3977, 7.3941, 7.393, 7.3946, 7.3936, 7.3925, 7.3942, 7.3931, 7.3932, 7.4064, 7.4054, 7.4043, 7.4039, 7.4073, 7.4076, 7.4039, 7.4028, 7.4022, 7.3986, 7.3951, 7.397, 7.3959, 7.3955, 7.3944, 7.3937, 7.3955, 7.3953, 7.3946, 7.3939, 7.3958, 7.3952, 7.3941, 7.3933, 7.3954, 7.3943, 7.3961, 7.3977, 7.3969, 7.396, 7.398, 7.3973, 7.3964, 7.3953, 7.3944, 7.3935, 7.393, 7.392, 7.3912, 7.3904, 7.3911, 7.3904, 7.3895, 7.3887, 7.388, 7.3871, 7.386, 7.385, 7.3868, 7.3886, 7.3906, 7.3895, 7.3897, 7.3889, 7.388, 7.3896, 7.3888, 7.3882, 7.3898, 7.389, 7.388, 7.3873, 7.3889, 7.3882, 7.3874, 7.389, 7.3882, 7.3871, 7.3861, 7.3854, 7.3876, 7.3866, 7.3884, 7.3901, 7.389, 7.3907, 7.3979, 7.4, 7.4019, 7.4008, 7.3999, 7.3992, 7.3983, 7.3974, 7.3994, 7.4011, 7.4002, 7.4019, 7.4009, 7.4003, 7.3994, 7.3985, 7.4002, 7.3968, 7.3981, 7.3972, 7.3963, 7.3956, 7.3947, 7.3938, 7.3929, 7.3919, 7.3946, 7.3973, 7.399, 7.3987, 7.3954, 7.3945, 7.3937, 7.3926, 7.392, 7.3942, 7.3932, 7.3924, 7.3918, 7.3934, 7.3924, 7.3915, 7.3931, 7.3928, 7.39, 7.3947, 7.3939, 7.3936, 7.3926, 7.3921, 7.3912, 7.3901, 7.3894, 7.3885, 7.3876, 7.3893, 7.3885, 7.3876, 7.3869, 7.3835, 7.3825, 7.3823, 7.3849, 7.3871, 7.3862, 7.3866, 7.3856, 7.387, 7.386, 7.3877, 7.3868, 7.3861, 7.3876, 7.3865, 7.3903, 7.3895, 7.3886, 7.3888, 7.388, 7.3898, 7.3865, 7.3855, 7.3845, 7.3836, 7.3826, 7.3819, 7.3816, 7.3834, 7.3827, 7.382, 7.3811, 7.3828, 7.3845, 7.3862, 7.3859, 7.3826, 7.3818, 7.3813, 7.3829, 7.382, 7.3811, 7.3801, 7.3818, 7.3834, 7.3826, 7.3875, 7.3868, 7.3862, 7.3854, 7.3846, 7.3836, 7.3827, 7.3818, 7.3939, 7.4004, 7.3996, 7.3964, 7.3955, 7.3947, 7.3938, 7.393, 7.3922, 7.3914, 7.3904, 7.3895, 7.3913, 7.3903, 7.392, 7.3935, 7.3925, 7.3918, 7.3933, 7.393, 7.3947, 7.394, 7.4015, 7.4008, 7.4054, 7.4069, 7.4112, 7.4121, 7.4114, 7.4109, 7.4124, 7.4139, 7.413, 7.4123, 7.4139, 7.413, 7.412, 7.4113, 7.4105, 7.41, 7.4092, 7.4083, 7.4073, 7.4064, 7.408, 7.4087, 7.4078, 7.407, 7.4061, 7.4076, 7.4069, 7.4062, 7.4053, 7.4045, 7.404, 7.4055, 7.4046, 7.4039, 7.4033, 7.4026, 7.4021, 7.4013, 7.4028, 7.4045, 7.4037, 7.4027, 7.4017, 7.4009, 7.4001, 7.3994, 7.3989, 7.4005, 7.4021, 7.4011, 7.4002, 7.3994, 7.3986, 7.4002, 7.3992, 7.3983, 7.3999, 7.3989, 7.3958, 7.3953, 7.3971, 7.3965, 7.4005, 7.3998, 7.399, 7.4008, 7.4001, 7.4013, 7.4008, 7.4027, 7.4019, 7.4038, 7.4032, 7.4026, 7.4018, 7.4012, 7.4007, 7.3999, 7.399, 7.4008, 7.4002, 7.3994, 7.3964, 7.3954, 7.3945, 7.3939, 7.393, 7.3947, 7.3962, 7.3954, 7.3971, 7.3962, 7.3954, 7.3971, 7.3962, 7.3953, 7.3968, 7.3941, 7.3932, 7.3928, 7.392, 7.389, 7.3883, 7.3876, 7.3888, 7.3903, 7.3896, 7.3887, 7.3879, 7.3872, 7.3866, 7.3857, 7.3848, 7.3842, 7.3857, 7.385, 7.3842, 7.3857, 7.3871, 7.3842, 7.3813, 7.3838, 7.3829, 7.3819, 7.3816, 7.3809, 7.38, 7.3816, 7.381, 7.3824, 7.382, 7.3834, 7.3825, 7.382, 7.3835, 7.3829, 7.3828, 7.382, 7.3798, 7.3791, 7.3806, 7.3797, 7.3791, 7.3782, 7.3797, 7.3837, 7.385, 7.3842, 7.3812, 7.3806, 7.3797, 7.3788, 7.3782, 7.3773, 7.3767, 7.3784, 7.3801, 7.3817, 7.381, 7.3801, 7.3796, 7.3787, 7.3803, 7.3822, 7.3815, 7.383, 7.3823, 7.3814, 7.3806, 7.3821, 7.3837, 7.3831, 7.3825, 7.3842, 7.3834, 7.3827, 7.3819, 7.3811, 7.3803, 7.3795, 7.381, 7.3827, 7.3819, 7.3838, 7.3833, 7.3825, 7.3841, 7.3835, 7.3827, 7.3819, 7.3811, 7.3803, 7.3796, 7.3787, 7.3865, 7.3856, 7.3871, 7.3863, 7.3854, 7.3869, 7.386, 7.3854, 7.3824, 7.3815, 7.3807, 7.3782, 7.3775, 7.379, 7.3782, 7.3773, 7.3767, 7.3768, 7.376, 7.3751, 7.3747, 7.3753, 7.3767, 7.3781, 7.3772, 7.3763, 7.3757, 7.375, 7.3741, 7.3756, 7.3772, 7.3763, 7.3754, 7.3747, 7.374, 7.3732, 7.3726, 7.3717, 7.3708, 7.3701, 7.3715, 7.373, 7.3723, 7.3716, 7.371, 7.3705, 7.3698, 7.3689, 7.3681, 7.3673, 7.3666, 7.3638, 7.3629, 7.3644, 7.3659, 7.3651, 7.3642, 7.3635, 7.3649, 7.3641, 7.3633, 7.3625, 7.3619, 7.3613, 7.3605, 7.3596, 7.3588, 7.3582, 7.3574, 7.3587, 7.3583, 7.3598, 7.3612, 7.3606, 7.3599, 7.3614, 7.3605, 7.362, 7.3612, 7.3627, 7.364, 7.3655, 7.3648, 7.3619, 7.361, 7.3601, 7.3595, 7.3587, 7.36, 7.3613, 7.3604, 7.3597, 7.3611, 7.3681, 7.3696, 7.3688, 7.3702, 7.3706, 7.3699, 7.369, 7.3683, 7.3675, 7.369, 7.3683, 7.3655, 7.3648, 7.362, 7.3614, 7.3607, 7.3621, 7.3613, 7.3605, 7.3596, 7.3588, 7.358, 7.3608, 7.36, 7.3613, 7.363, 7.3622, 7.3637, 7.3631, 7.3644, 7.3635, 7.3629, 7.3622, 7.3614, 7.3607, 7.3599, 7.3591, 7.3607, 7.3621, 7.3613, 7.3607, 7.3599, 7.3612, 7.3625, 7.3618, 7.3631, 7.3623, 7.3616, 7.3609, 7.3601, 7.3594, 7.3586, 7.3678, 7.3671, 7.3663, 7.3655, 7.3691, 7.3683, 7.3676, 7.3669, 7.3662, 7.3681, 7.3679, 7.3693, 7.3707, 7.3699, 7.3696, 7.369, 7.3689, 7.3702, 7.3694, 7.3686, 7.37, 7.3692, 7.3688, 7.3681, 7.368, 7.3696, 7.3713, 7.3833, 7.3826, 7.3819, 7.3812, 7.3824, 7.3816, 7.3808, 7.3801, 7.3794, 7.3788, 7.3783, 7.3781, 7.3773, 7.3789, 7.3788, 7.3894, 7.389, 7.3884, 7.3877, 7.3869, 7.3861, 7.3856, 7.3848, 7.3865, 7.3882, 7.3876, 7.387, 7.3864, 7.3858, 7.3872, 7.3844, 7.3838, 7.3852, 7.3846, 7.384, 7.3833, 7.3825, 7.3838, 7.383, 7.3844, 7.3838, 7.3831, 7.3824, 7.3838, 7.3833, 7.3826, 7.3839, 7.3853, 7.3849, 7.3843, 7.3834, 7.3847, 7.3838, 7.3851, 7.3844, 7.3837, 7.3849, 7.3843, 7.3838, 7.383, 7.3824, 7.3836, 7.3831, 7.3824, 7.3817, 7.3811, 7.3848, 7.386, 7.3852, 7.3844, 7.3839, 7.3854, 7.3869, 7.3866, 7.386, 7.3854, 7.3847, 7.384, 7.3833, 7.3825, 7.3839, 7.3832, 7.3825, 7.382, 7.3834, 7.3847, 7.386, 7.3853, 7.3869, 7.3882, 7.3895, 7.3888, 7.3861, 7.3854, 7.3851, 7.3844, 7.3838, 7.3833, 7.3847, 7.3862, 7.3881, 7.3896, 7.3916, 7.389, 7.3883, 7.3898, 7.3891, 7.3912, 7.3906, 7.3901, 7.3915, 7.3908, 7.3922, 7.3914, 7.3926, 7.3939, 7.3913, 7.3905, 7.3938, 7.3932, 7.3947, 7.3945, 7.3939, 7.3953, 7.3945, 7.3958, 7.3971, 7.3983, 7.3975, 7.3969, 7.3961, 7.3954, 7.3946, 7.3959, 7.3952, 7.3945, 7.3937, 7.3931, 7.3923, 7.3918, 7.3911, 7.3908, 7.3901, 7.3915, 7.3911, 7.3923, 7.3962, 7.3955, 7.3968, 7.3982, 7.3975, 7.3949, 7.396, 7.3961, 7.3955, 7.3951, 7.3948, 7.394, 7.3933, 7.3927, 7.3921, 7.3917, 7.3914, 7.3927, 7.3939, 7.3912, 7.3905, 7.392, 7.3914, 7.3907, 7.3899, 7.3892, 7.3898, 7.3911, 7.3903, 7.3896, 7.3889, 7.3884, 7.3877, 7.3869, 7.3862, 7.3857, 7.385, 7.3863, 7.3855, 7.3868, 7.3862, 7.3854, 7.3849, 7.3847, 7.384, 7.3854, 7.3846, 7.3839, 7.3831, 7.3825, 7.3824, 7.3837, 7.3831, 7.3826, 7.382, 7.386, 7.3852, 7.3846, 7.3839, 7.3852, 7.3845, 7.3839, 7.3831, 7.3823, 7.3799, 7.3813, 7.3806, 7.3799, 7.3813, 7.3808, 7.38, 7.3814, 7.3807, 7.3801, 7.3795, 7.3788, 7.378, 7.3773, 7.3786, 7.3799, 7.3791, 7.3768, 7.3761, 7.3754, 7.3746, 7.377, 7.3782, 7.3775, 7.3768, 7.3763, 7.3755, 7.3748, 7.374, 7.3734, 7.3734, 7.3727, 7.374, 7.3732, 7.3724, 7.3737, 7.373, 7.3726, 7.3738, 7.3735, 7.3728, 7.374, 7.3733, 7.3726, 7.3701, 7.3712, 7.3705, 7.37, 7.3693, 7.3686, 7.3698, 7.3712, 7.3726, 7.3738, 7.3751, 7.3745, 7.374, 7.3733, 7.3726, 7.3739, 7.3735, 7.3727, 7.3739, 7.3733, 7.3725, 7.3719, 7.3722, 7.3734, 7.3727, 7.3721, 7.3716, 7.3708, 7.3711, 7.3705, 7.3698, 7.3709, 7.3767, 7.376, 7.3773, 7.3766, 7.376, 7.3753, 7.3767, 7.376, 7.3772, 7.3766, 7.378, 7.3792, 7.3796, 7.3789, 7.3782, 7.3775, 7.3768, 7.3762, 7.3754, 7.3752, 7.3745, 7.3756, 7.375, 7.3745, 7.3739, 7.3732, 7.3714, 7.3706, 7.3701, 7.3694, 7.3688, 7.3685, 7.3678, 7.3673, 7.3667, 7.368, 7.3675, 7.3754, 7.3789, 7.3806, 7.38, 7.3795, 7.3788, 7.3801, 7.3794, 7.3788, 7.3781, 7.3775, 7.377, 7.3764, 7.3757, 7.3752, 7.3766, 7.3759, 7.3752, 7.3764, 7.3758, 7.3751, 7.3765, 7.3759, 7.3752, 7.3748, 7.376, 7.3753, 7.3751, 7.3744, 7.3756, 7.3767, 7.3779, 7.3791, 7.3784, 7.3777, 7.3771, 7.3763, 7.3775, 7.3768, 7.3761, 7.3772, 7.3765, 7.3758, 7.3751, 7.3763, 7.3757, 7.3751, 7.3764, 7.3757, 7.3768, 7.3761, 7.3754, 7.3749, 7.3746, 7.3743, 7.3737, 7.3733, 7.373, 7.3707, 7.3719, 7.3712, 7.3725, 7.3719, 7.3713, 7.3707, 7.3701, 7.3696, 7.369, 7.3685, 7.3679, 7.3672, 7.3665, 7.3658, 7.3651, 7.3644, 7.3656, 7.3649, 7.3643, 7.3656, 7.3667, 7.368, 7.3687, 7.3681, 7.3681, 7.3675, 7.3669, 7.3663, 7.3656, 7.3633, 7.3629, 7.3622, 7.3634, 7.3633, 7.3627, 7.3621, 7.3616, 7.3642, 7.3639, 7.3637, 7.3632, 7.3644, 7.3637, 7.363, 7.3641, 7.3634, 7.3647, 7.3658, 7.3688, 7.3682, 7.3675, 7.3668, 7.3663, 7.3657, 7.3651, 7.3645, 7.3642, 7.3638, 7.365, 7.3646, 7.3639, 7.3635, 7.3632, 7.3643, 7.3653, 7.3663, 7.3658, 7.3652, 7.3645, 7.3651, 7.365, 7.3661, 7.3655, 7.3653, 7.3647, 7.3659, 7.3672, 7.3668, 7.368, 7.3678, 7.3689, 7.3703, 7.3699, 7.3693, 7.3688, 7.3699, 7.3712, 7.3742, 7.3737, 7.373, 7.3725, 7.3744, 7.3743, 7.3736, 7.3748, 7.3741, 7.3736, 7.373, 7.3727, 7.3722, 7.3716, 7.3719, 7.3731, 7.3736, 7.373, 7.3724, 7.3717, 7.3713, 7.3691, 7.3686, 7.3681, 7.3674, 7.3651, 7.363, 7.3609, 7.3604, 7.3615, 7.3608, 7.3614, 7.3608, 7.3609, 7.361, 7.3587, 7.358, 7.3578, 7.3572, 7.3567, 7.3561, 7.3575, 7.3575, 7.3586, 7.3581, 7.3586, 7.3563, 7.3558, 7.3551, 7.3546, 7.354, 7.3537, 7.353, 7.3523, 7.3517, 7.3528, 7.3539, 7.3533, 7.3526, 7.3538, 7.3559, 7.3552, 7.3546, 7.354, 7.3534, 7.3527, 7.3539, 7.3533, 7.3527, 7.3521, 7.3514, 7.3528, 7.3523, 7.3517, 7.3512, 7.3506, 7.3504, 7.3517, 7.3529, 7.3528, 7.3521, 7.3514, 7.3525, 7.3521, 7.3517, 7.3515, 7.351, 7.3504, 7.3516, 7.351, 7.3506, 7.3502, 7.3481, 7.3508, 7.3503, 7.3497, 7.3492, 7.3489, 7.3467, 7.3479, 7.3489, 7.3483, 7.3487, 7.3485, 7.348, 7.3475, 7.3469, 7.3463, 7.3474, 7.3486, 7.3482, 7.3478, 7.3474, 7.3471, 7.3465, 7.3459, 7.3454, 7.3448, 7.3461, 7.3456, 7.3452, 7.3447, 7.346, 7.3455, 7.3467, 7.348, 7.349, 7.3502, 7.3498, 7.3509, 7.3503, 7.3531, 7.3526, 7.352, 7.3515, 7.351, 7.3522, 7.3532, 7.3527, 7.3522, 7.3517, 7.3512, 7.3505, 7.3502, 7.3563, 7.3561, 7.3573, 7.3583, 7.358, 7.358, 7.3581, 7.3576, 7.3574, 7.3586, 7.358, 7.3573, 7.3567, 7.3561, 7.3557, 7.3551, 7.3545, 7.3557, 7.3552, 7.3548, 7.3526, 7.3504, 7.3498, 7.356, 7.3555, 7.3586, 7.3615, 7.3609, 7.3623, 7.3617, 7.3611, 7.3606, 7.3616, 7.3612, 7.3606, 7.3599, 7.3593, 7.3587, 7.3583, 7.3561, 7.3556, 7.3616, 7.3627, 7.3641, 7.3636, 7.3646, 7.3641, 7.366, 7.3655, 7.3666, 7.3659, 7.3654, 7.3661, 7.3657, 7.3652, 7.3647, 7.3642, 7.3637, 7.3633, 7.3627, 7.3637, 7.3648, 7.3644, 7.3639, 7.3633, 7.3638, 7.3648, 7.3644, 7.3638, 7.3649, 7.3643, 7.3637, 7.363, 7.364, 7.3651, 7.3645, 7.3642, 7.3636, 7.3647, 7.3642, 7.3639, 7.3636, 7.3631, 7.3627, 7.3623, 7.3619, 7.3614, 7.3593, 7.3587, 7.3601, 7.3596, 7.3608, 7.3602, 7.3597, 7.3609, 7.3622, 7.3633, 7.3639, 7.3649, 7.3643, 7.3637, 7.3648, 7.3641, 7.3652, 7.3646, 7.3657, 7.3651, 7.363, 7.3624, 7.3635, 7.3613, 7.3609, 7.3606, 7.36, 7.3594, 7.3588, 7.3581, 7.3575, 7.3589, 7.3585, 7.3579, 7.3591, 7.3602, 7.3614, 7.3607, 7.3603, 7.3613, 7.3609, 7.3606, 7.36, 7.3595, 7.3589, 7.3584, 7.3578, 7.3572, 7.3584, 7.3578, 7.3572, 7.3582, 7.3577, 7.3572, 7.3565, 7.3577, 7.3571, 7.3582, 7.3576, 7.3587, 7.3584, 7.3595, 7.3589, 7.3601, 7.3595, 7.359, 7.3584, 7.3578, 7.3572, 7.3568, 7.3564, 7.3575, 7.3586, 7.3584, 7.3578, 7.3572, 7.3567, 7.3562, 7.3556, 7.355, 7.3546, 7.354, 7.3534, 7.3529, 7.3524, 7.3519, 7.353, 7.3529, 7.354, 7.355, 7.356, 7.3556, 7.3551, 7.3545, 7.3574, 7.3584, 7.3578, 7.3591, 7.3585, 7.3584, 7.3577, 7.3572, 7.3566, 7.3561, 7.3559, 7.3553, 7.355, 7.3546, 7.354, 7.3535, 7.3548, 7.3543, 7.3538, 7.3532, 7.3607, 7.3602, 7.3597, 7.3592, 7.3575, 7.3585, 7.358, 7.3578, 7.3605, 7.36, 7.3611, 7.3605, 7.3622, 7.3618, 7.3638, 7.3632, 7.3642, 7.3638, 7.3632, 7.3628, 7.3623, 7.3634, 7.3628, 7.3657, 7.3686, 7.3682, 7.3677, 7.3687, 7.3681, 7.3691, 7.3685, 7.3681, 7.3678, 7.3691, 7.3687, 7.3697, 7.3695, 7.369, 7.372, 7.3715, 7.3724, 7.3718, 7.3713, 7.3707, 7.3703, 7.37, 7.3695, 7.369, 7.3684, 7.3694, 7.369, 7.3686, 7.368, 7.369, 7.3687, 7.3698, 7.3709, 7.3703, 7.3698, 7.3692, 7.3686, 7.3683, 7.3677, 7.3671, 7.3665, 7.3675, 7.3686, 7.368, 7.366, 7.3655, 7.3649, 7.3645, 7.3639, 7.3619, 7.3614, 7.3625, 7.3619, 7.3613, 7.3623, 7.3618, 7.3613, 7.3609, 7.3607, 7.3639, 7.3633, 7.3627, 7.3621, 7.3616, 7.3611, 7.3621, 7.3601, 7.3597, 7.3593, 7.3603, 7.3597, 7.3593, 7.3587, 7.3581, 7.3576, 7.357, 7.3565, 7.356, 7.3571, 7.3565, 7.356, 7.3556, 7.3552, 7.3546, 7.3544, 7.3539, 7.3533, 7.3543, 7.354, 7.355, 7.356, 7.3556, 7.355, 7.3547, 7.3527, 7.3529, 7.3523, 7.3517, 7.3511, 7.3521, 7.3515, 7.3512, 7.3507, 7.3518, 7.3527, 7.3522, 7.3532, 7.3543, 7.3539, 7.3534, 7.3544, 7.3546, 7.354, 7.3536, 7.3531, 7.3542, 7.3553, 7.3548, 7.3559, 7.3559, 7.3555, 7.3553, 7.355, 7.3545, 7.3542, 7.3541, 7.3536, 7.352, 7.3517, 7.3513, 7.3509, 7.3508, 7.3508, 7.3553, 7.3564, 7.356, 7.357, 7.3566, 7.3561, 7.3572, 7.3584, 7.3595, 7.3594, 7.3604, 7.36, 7.3597, 7.3579, 7.356, 7.3554, 7.355, 7.3547, 7.3547, 7.3541, 7.355, 7.3544, 7.3539, 7.3519, 7.3514, 7.3508, 7.3519, 7.3513, 7.3507, 7.3517, 7.3512, 7.3508, 7.3503, 7.3498, 7.3478, 7.3473, 7.3485, 7.3496, 7.3516, 7.3526, 7.3536, 7.3547, 7.3542, 7.3539, 7.3537, 7.3533, 7.3533, 7.3529, 7.3523, 7.3532, 7.3527, 7.3536, 7.3533, 7.353, 7.3539, 7.3534, 7.3529, 7.3523, 7.3533, 7.3545, 7.3526, 7.3566, 7.3563, 7.3558, 7.3553, 7.3549, 7.3545, 7.3539, 7.3536, 7.3534, 7.353, 7.3524, 7.352, 7.3531, 7.3527, 7.3522, 7.3531, 7.3527, 7.3523, 7.3519, 7.3528, 7.3523, 7.3518, 7.3514, 7.3508, 7.3533, 7.3528, 7.3525, 7.3534, 7.3536, 7.3531, 7.3528, 7.3554, 7.3549, 7.356, 7.3541, 7.3546, 7.3541, 7.3522, 7.3518, 7.3572, 7.3582, 7.3563, 7.3544, 7.3525, 7.3535, 7.3532, 7.354, 7.3549, 7.3545, 7.3539, 7.3536, 7.3564, 7.356, 7.357, 7.358, 7.3576, 7.3571, 7.3566, 7.3561, 7.3572, 7.3568, 7.3562, 7.3557, 7.3554, 7.3548, 7.3542, 7.3551, 7.3546, 7.3557, 7.3566, 7.3562, 7.3557, 7.3553, 7.3547, 7.3528, 7.3523, 7.3517, 7.3514, 7.351, 7.3507, 7.3502, 7.3498, 7.3493, 7.3491, 7.3487, 7.3483, 7.348, 7.3476, 7.3503, 7.3499, 7.3494, 7.3505, 7.3504, 7.3499, 7.3494, 7.3491, 7.35, 7.3495, 7.3491, 7.3488, 7.3483, 7.348, 7.3475, 7.3472, 7.3468, 7.3463, 7.346, 7.3459, 7.3469, 7.3483, 7.3493, 7.3474, 7.347, 7.3498, 7.3509, 7.3504, 7.3498, 7.3493, 7.3488, 7.3482, 7.3479, 7.3488, 7.3483, 7.3492, 7.3487, 7.3483, 7.3479, 7.3473, 7.3455, 7.345, 7.3445, 7.3441, 7.3436, 7.3431, 7.3426, 7.3421, 7.3416, 7.3425, 7.3421, 7.3424, 7.3434, 7.3429, 7.3439, 7.3494, 7.3476, 7.3457, 7.3466, 7.3462, 7.3457, 7.3451, 7.3447, 7.3448, 7.3443, 7.3439, 7.3435, 7.3445, 7.344, 7.3438, 7.3433, 7.3428, 7.3425, 7.3421, 7.3431, 7.3426, 7.3421, 7.3416, 7.3412, 7.3407, 7.3403, 7.3398, 7.3392, 7.3386, 7.3397, 7.3408, 7.3403, 7.3399, 7.3393, 7.3403, 7.3413, 7.3408, 7.3404, 7.34, 7.3396, 7.339, 7.3385, 7.3381, 7.3377, 7.3372, 7.3367, 7.3367, 7.3367, 7.3362, 7.3359, 7.3368, 7.3364, 7.3358, 7.334, 7.335, 7.3346, 7.3342, 7.3337, 7.3347, 7.3343, 7.3338, 7.3348, 7.3357, 7.3367, 7.3361, 7.3357, 7.3352, 7.3347, 7.3342, 7.3338, 7.3333, 7.3342, 7.3337, 7.3334, 7.3333, 7.3343, 7.3338, 7.3334, 7.3329, 7.3325, 7.3334, 7.3328, 7.3323, 7.333, 7.3339, 7.3335, 7.333, 7.3326, 7.3323, 7.3327, 7.3324, 7.3348, 7.3351, 7.3346, 7.3342, 7.3339, 7.3336, 7.3332, 7.3327, 7.3336, 7.3332, 7.3341, 7.3337, 7.3332, 7.3341, 7.3336, 7.3332, 7.3328, 7.3324, 7.3319, 7.3314, 7.3323, 7.3332, 7.3341, 7.335, 7.3359, 7.3354, 7.3349, 7.3344, 7.334, 7.3337, 7.3347, 7.3387, 7.3385, 7.3399, 7.3395, 7.3405, 7.34, 7.3395, 7.3391, 7.3386, 7.3381, 7.3389, 7.3384, 7.3378, 7.3388, 7.3397, 7.3392, 7.3388, 7.3386, 7.3383, 7.3365, 7.3376, 7.3371, 7.3368, 7.3366, 7.3362, 7.3358, 7.3353, 7.3349, 7.3331, 7.3369, 7.3365, 7.3363, 7.3358, 7.3353, 7.3348, 7.3358, 7.3354, 7.3359, 7.3341, 7.3352, 7.3369, 7.3364, 7.336, 7.3368, 7.3364, 7.336, 7.337, 7.3366, 7.3362, 7.3372, 7.3367, 7.3365, 7.3373, 7.3373, 7.3369, 7.338, 7.3376, 7.3372, 7.3369, 7.3364, 7.3359, 7.3354, 7.335, 7.3346, 7.3342, 7.3337, 7.3347, 7.3343, 7.3352, 7.3361, 7.337, 7.3379, 7.3374, 7.3386, 7.3381, 7.3378, 7.3387, 7.3385, 7.3409, 7.3405, 7.3401, 7.3397, 7.3405, 7.3409, 7.3405, 7.3402, 7.3416, 7.3414, 7.3421, 7.3403, 7.3398, 7.3393, 7.3389, 7.3384, 7.3385, 7.3383, 7.341, 7.3433, 7.3445, 7.3441, 7.3451, 7.3447, 7.3444, 7.344, 7.3436, 7.3432, 7.3458, 7.3469, 7.3465, 7.346, 7.3456, 7.3465, 7.3474, 7.347, 7.3465, 7.3461, 7.3456, 7.3453, 7.3449, 7.3444, 7.3453, 7.3464, 7.3473, 7.3468, 7.3464, 7.3459, 7.3442, 7.3437, 7.342, 7.3437, 7.3468, 7.3463, 7.3458, 7.3453, 7.345, 7.3463, 7.3458, 7.3453, 7.3448, 7.3444, 7.3439, 7.3421, 7.3432, 7.3428, 7.3424, 7.3436, 7.3431, 7.3426, 7.3422, 7.3438, 7.3452, 7.3448, 7.3445, 7.3441, 7.3436, 7.3431, 7.3431, 7.3427, 7.3424, 7.3421, 7.3417, 7.3413, 7.341, 7.3406, 7.3416, 7.3425, 7.342, 7.3417, 7.3413, 7.3408, 7.3403, 7.3399, 7.3408, 7.3404, 7.34, 7.3395, 7.338, 7.3375, 7.337, 7.3365, 7.336, 7.3355, 7.3354, 7.335, 7.3363, 7.3358, 7.3353, 7.335, 7.3359, 7.3355, 7.3364, 7.3373, 7.3382, 7.3377, 7.3372, 7.3369, 7.3364, 7.3359, 7.3356, 7.3353, 7.3349, 7.3346, 7.3355, 7.3364, 7.3372, 7.3382, 7.3365, 7.336, 7.3355, 7.3364, 7.3359, 7.3372, 7.3369, 7.3364, 7.3359, 7.3354, 7.3351, 7.3334, 7.3331, 7.3327, 7.3323, 7.3332, 7.3341, 7.3324, 7.3334, 7.3329, 7.3324, 7.3307, 7.3292, 7.3321, 7.3317, 7.3312, 7.331, 7.3308, 7.3303, 7.3299, 7.3294, 7.3289, 7.3298, 7.3306, 7.3302, 7.3298, 7.331, 7.3307, 7.3303, 7.3311, 7.3307, 7.3291, 7.3287, 7.3283, 7.3279, 7.3274, 7.327, 7.3278, 7.3261, 7.3256, 7.3252, 7.326, 7.3268, 7.3264, 7.326, 7.3256, 7.3252, 7.3248, 7.3245, 7.3241, 7.3249, 7.3245, 7.3242, 7.3237, 7.3234, 7.3243, 7.3252, 7.326, 7.3268, 7.3265, 7.3261, 7.3257, 7.3253, 7.325, 7.3246, 7.3242, 7.3241, 7.3237, 7.3234, 7.3231, 7.3254, 7.3262, 7.3271, 7.3266, 7.3263, 7.3272, 7.3267, 7.3264, 7.3272, 7.3267, 7.3263, 7.3258, 7.3257, 7.3252, 7.3247, 7.3255, 7.3253, 7.3251, 7.3235, 7.323, 7.3225, 7.322, 7.3216, 7.3225, 7.3222, 7.3231, 7.324, 7.3236, 7.3231, 7.3226, 7.3222, 7.3217, 7.3214, 7.3211, 7.3206, 7.3204, 7.32, 7.3195, 7.3191, 7.3187, 7.3222, 7.3218, 7.3214, 7.3222, 7.323, 7.3226, 7.3221, 7.3216, 7.3212, 7.3207, 7.3202, 7.3197, 7.3193, 7.3189, 7.3184, 7.3181, 7.3193, 7.3191, 7.3186, 7.3194, 7.3191, 7.3186, 7.3195, 7.319, 7.3185, 7.3195, 7.3203, 7.32, 7.3214, 7.321, 7.3219, 7.3215, 7.3212, 7.3208, 7.3209, 7.3207, 7.3215, 7.321, 7.3219, 7.3214, 7.321, 7.3207, 7.3204, 7.32, 7.3206, 7.3203, 7.3198, 7.3194, 7.3189, 7.3187, 7.3195, 7.3194, 7.3189, 7.3184, 7.3182, 7.3191, 7.3187, 7.3184, 7.3193, 7.3188, 7.3173, 7.3157, 7.3153, 7.3164, 7.3162, 7.3161, 7.3157, 7.3153, 7.316, 7.3156, 7.3152, 7.3161, 7.3145, 7.3142, 7.3137, 7.3145, 7.3154, 7.3138, 7.3135, 7.3132, 7.3128, 7.3137, 7.3145, 7.3143, 7.314, 7.3136, 7.3132, 7.3156, 7.3152, 7.3149, 7.3133, 7.3128, 7.3125, 7.3134, 7.3142, 7.3126, 7.3136, 7.3134, 7.3132, 7.3128, 7.3139, 7.3135, 7.3133, 7.313, 7.3127, 7.3124, 7.312, 7.3128, 7.3124, 7.3144, 7.3141, 7.3138, 7.3167, 7.3184, 7.3181, 7.3177, 7.3172, 7.3167, 7.3168, 7.3164, 7.3182, 7.3178, 7.3173, 7.3187, 7.3183, 7.3192, 7.3196, 7.3199, 7.321, 7.3207, 7.3202, 7.3198, 7.3195, 7.319, 7.3186, 7.3195, 7.319, 7.3186, 7.3183, 7.3191, 7.32, 7.3185, 7.3211, 7.3208, 7.3203, 7.3199, 7.3195, 7.319, 7.3186, 7.3181, 7.3178, 7.3162, 7.3171, 7.3166, 7.3161, 7.3156, 7.3151, 7.3148, 7.3144, 7.3141, 7.3149, 7.3145, 7.3153, 7.3149, 7.3148, 7.3144, 7.3142, 7.3137, 7.3133, 7.3132, 7.3139, 7.3134, 7.313, 7.3126, 7.3123, 7.313, 7.3128, 7.3124, 7.3121, 7.3125, 7.3121, 7.3117, 7.3113, 7.311, 7.3119, 7.3114, 7.3099, 7.3109, 7.3106, 7.3102, 7.3102, 7.3098, 7.3093, 7.3101, 7.3109, 7.3105, 7.3101, 7.3097, 7.31, 7.3097, 7.3093, 7.3089, 7.3098, 7.3094, 7.3089, 7.3074, 7.3069, 7.3066, 7.3063, 7.3058, 7.3054, 7.3038, 7.3023, 7.3019, 7.3027, 7.3022, 7.3018, 7.3015, 7.3011, 7.3007, 7.3003, 7.2999, 7.2995, 7.2992, 7.2988, 7.2985, 7.2983, 7.2991, 7.2988, 7.2996, 7.3001, 7.2999, 7.3007, 7.3004, 7.3002, 7.3009, 7.3005, 7.3001, 7.2998, 7.2995, 7.3003, 7.2987, 7.2984, 7.2992, 7.2988, 7.2984, 7.2992, 7.3001, 7.2997, 7.2994, 7.299, 7.2995, 7.3003, 7.3014, 7.3031, 7.3043, 7.3027, 7.3024, 7.3034, 7.3033, 7.3043, 7.304, 7.3036, 7.3045, 7.3043, 7.3028, 7.3038, 7.305, 7.3046, 7.3054, 7.309, 7.31, 7.3096, 7.3093, 7.3089, 7.3089, 7.3074, 7.312, 7.3117, 7.3113, 7.3109, 7.3143, 7.3152, 7.316, 7.3167, 7.3176, 7.3162, 7.3158, 7.3166, 7.3164, 7.3161, 7.3156, 7.3153, 7.315, 7.3147, 7.315, 7.3147, 7.3155, 7.315, 7.315, 7.3146, 7.315, 7.3159, 7.3156, 7.3152, 7.3147, 7.3142, 7.3149, 7.3145, 7.3158, 7.3144, 7.3153, 7.3153, 7.315, 7.3146, 7.3143, 7.3141, 7.3137, 7.3144, 7.314, 7.3136, 7.3133, 7.3145, 7.3153, 7.315, 7.3146, 7.3142, 7.3138, 7.3134, 7.313, 7.3126, 7.3133, 7.3129, 7.313, 7.3126, 7.3121, 7.3106, 7.3102, 7.31, 7.3097, 7.3093, 7.3102, 7.3098, 7.3094, 7.3091, 7.3087, 7.3071, 7.3079, 7.3075, 7.307, 7.3067, 7.3064, 7.3061, 7.3082, 7.3069, 7.3077, 7.3092, 7.3088, 7.3084, 7.3081, 7.3081, 7.3085, 7.3082, 7.3079, 7.3075, 7.3082, 7.3089, 7.3086, 7.3086, 7.3084, 7.308, 7.3077, 7.3073, 7.307, 7.3078, 7.3086, 7.3093, 7.3089, 7.3085, 7.3081, 7.3079, 7.3076, 7.3072, 7.3079, 7.3077, 7.3073, 7.307, 7.3065, 7.3062, 7.3059, 7.3057, 7.3055, 7.3052, 7.3048, 7.3044, 7.3054, 7.305, 7.3046, 7.3051, 7.3058, 7.3056, 7.3052, 7.305, 7.3048, 7.3044, 7.304, 7.3036, 7.3032, 7.3041, 7.3038, 7.3034, 7.303, 7.3028, 7.3037, 7.3034, 7.303, 7.3051, 7.3048, 7.3043, 7.304, 7.3039, 7.3035, 7.302, 7.3017, 7.3002, 7.2999, 7.3008, 7.3005, 7.3013, 7.3009, 7.3006, 7.3002, 7.2998, 7.2994, 7.2991, 7.2987, 7.2984, 7.297, 7.2966, 7.2962, 7.297, 7.2955, 7.2951, 7.2946, 7.2953, 7.2949, 7.2969, 7.2965, 7.2962, 7.2969, 7.2988, 7.3009, 7.3006, 7.3004, 7.3001, 7.2997, 7.2992, 7.299, 7.2987, 7.2983, 7.2979, 7.2988, 7.2984, 7.298, 7.2976, 7.2973, 7.2969, 7.2977, 7.2973, 7.297, 7.2966, 7.2964, 7.296, 7.297, 7.2967, 7.2963, 7.2971, 7.2967, 7.2963, 7.2975, 7.2961, 7.2959, 7.2945, 7.2941, 7.2937, 7.2933, 7.2931, 7.2927, 7.2923, 7.292, 7.2928, 7.2925, 7.2911, 7.2919, 7.2915, 7.2923, 7.2919, 7.2904, 7.2902, 7.2909, 7.2905, 7.2902, 7.2898, 7.2897, 7.2904, 7.2913, 7.2898, 7.2895, 7.2891, 7.2891, 7.2892, 7.2891, 7.2876, 7.2872, 7.2868, 7.2875, 7.2888, 7.2919, 7.2916, 7.2914, 7.2911, 7.2908, 7.2904, 7.2901, 7.2898, 7.2906, 7.2915, 7.2923, 7.2924, 7.2921, 7.2918, 7.293, 7.2926, 7.2914, 7.2923, 7.2919, 7.2915, 7.2912, 7.2909, 7.2905, 7.2902, 7.2903, 7.29, 7.2896, 7.2892, 7.2889, 7.2885, 7.2893, 7.2894, 7.289, 7.2898, 7.2894, 7.2892, 7.2899, 7.2896, 7.2881, 7.2877, 7.2873, 7.2881, 7.2878, 7.2874, 7.2871, 7.2878, 7.2874, 7.2884, 7.2881, 7.2877, 7.2873, 7.2869, 7.2866, 7.2866, 7.2872, 7.2868, 7.2888, 7.2942, 7.2938, 7.2934, 7.293, 7.2916, 7.2912, 7.2909, 7.2906, 7.2902, 7.2899, 7.2895, 7.2891, 7.2898, 7.2925, 7.2956, 7.2952, 7.2948, 7.2944, 7.293, 7.2927, 7.2924, 7.2922, 7.293, 7.2938, 7.2959, 7.2955, 7.2951, 7.2947, 7.2944, 7.294, 7.2937, 7.2933, 7.2933, 7.2941, 7.2938, 7.2934, 7.2946, 7.2942, 7.2951, 7.2949, 7.2946, 7.2955, 7.2953, 7.2949, 7.2959, 7.2955, 7.2952, 7.2938, 7.2925, 7.2923, 7.2919, 7.2917, 7.2913, 7.291, 7.2907, 7.2915, 7.2922, 7.2919, 7.2917, 7.2913, 7.2921, 7.2928, 7.2926, 7.2937, 7.2933, 7.2929, 7.2926, 7.2922, 7.2918, 7.2927, 7.2925, 7.2922, 7.2918, 7.2915, 7.2911, 7.2919, 7.2917, 7.2946, 7.2942, 7.296, 7.2957, 7.2953, 7.2961, 7.2958, 7.2944, 7.2941, 7.2927, 7.2913, 7.2899, 7.2907, 7.2904, 7.2911, 7.2919, 7.2915, 7.2916, 7.2912, 7.2908, 7.2904, 7.291, 7.2907, 7.2903, 7.29, 7.2908, 7.2907, 7.2903, 7.2901, 7.2898, 7.2894, 7.289, 7.2886, 7.2882, 7.2878, 7.2875, 7.2871, 7.2867, 7.2874, 7.287, 7.2867, 7.2863, 7.2859, 7.2855, 7.2853, 7.2861, 7.2857, 7.2853, 7.2849, 7.2845, 7.2852, 7.2848, 7.2844, 7.2841, 7.2849, 7.2857, 7.2854, 7.2851, 7.2859, 7.2867, 7.2874, 7.2935, 7.2931, 7.2939, 7.2935, 7.2931, 7.2928, 7.2924, 7.2932, 7.2928, 7.2925, 7.2922, 7.292, 7.2917, 7.2925, 7.2921, 7.2917, 7.2903, 7.2899, 7.2895, 7.2902, 7.2898, 7.2895, 7.2891, 7.2877, 7.2885, 7.2882, 7.2878, 7.2875, 7.2902, 7.2899, 7.2885, 7.2881, 7.2877, 7.2874, 7.287, 7.2867, 7.2864, 7.2861, 7.2857, 7.2853, 7.2849, 7.2845, 7.2852, 7.2848, 7.2847, 7.2844, 7.2852, 7.286, 7.2856, 7.2862, 7.2858, 7.2865, 7.2853, 7.2839, 7.2826, 7.2822, 7.2829, 7.2825, 7.2821, 7.2817, 7.2813, 7.282, 7.2827, 7.2824, 7.2833, 7.2831, 7.2829, 7.2826, 7.2823, 7.2846, 7.2842, 7.284, 7.2837, 7.2843, 7.2852, 7.2853, 7.2849, 7.2836, 7.2833, 7.284, 7.2842, 7.2839, 7.2846, 7.2854, 7.285, 7.2846, 7.2854, 7.285, 7.2847, 7.2843, 7.2839, 7.2846, 7.2842, 7.2838, 7.2834, 7.2832, 7.2829, 7.2826, 7.2823, 7.2822, 7.2819, 7.2815, 7.2802, 7.2808, 7.2805, 7.2813, 7.2809, 7.2805, 7.2801, 7.2819, 7.2816, 7.2819, 7.2815, 7.2825, 7.2822, 7.2829, 7.2836, 7.2833, 7.2829, 7.2826, 7.2822, 7.283, 7.2837, 7.2844, 7.2841, 7.2837, 7.2833, 7.2829, 7.2827, 7.2834, 7.2831, 7.2828, 7.2825, 7.2822, 7.2819, 7.2815, 7.2818, 7.2814, 7.2812, 7.2808, 7.2805, 7.2802, 7.2833, 7.2829, 7.2825, 7.2812, 7.281, 7.2806, 7.2802, 7.2798, 7.2796, 7.2793, 7.2802, 7.2814, 7.2811, 7.2808, 7.2805, 7.2835, 7.2832, 7.2828, 7.2826, 7.2833, 7.2829, 7.2837, 7.2844, 7.2856, 7.2867, 7.2874, 7.287, 7.2882, 7.2891, 7.291, 7.2919, 7.2915, 7.2923, 7.293, 7.2928, 7.2915, 7.2911, 7.2907, 7.2904, 7.2901, 7.2898, 7.2907, 7.2903, 7.29, 7.2897, 7.2884, 7.2882, 7.2889, 7.2886, 7.2883, 7.288, 7.2887, 7.2883, 7.287, 7.2867, 7.2864, 7.2861, 7.2858, 7.2865, 7.2861, 7.285, 7.2869, 7.2867, 7.2865, 7.2862, 7.2858, 7.2865, 7.2863, 7.288, 7.2877, 7.2875, 7.2874, 7.2871, 7.2869, 7.2866, 7.2873, 7.288, 7.2888, 7.2884, 7.2891, 7.2888, 7.2895, 7.2902, 7.2901, 7.2897, 7.2894, 7.2891, 7.2887, 7.2883, 7.289, 7.2892, 7.29, 7.2907, 7.2903, 7.2899, 7.2905, 7.2912, 7.2909, 7.2905, 7.2909, 7.2896, 7.2896, 7.2893, 7.2892, 7.2888, 7.2884, 7.2891, 7.2888, 7.2885, 7.2883, 7.2881, 7.2888, 7.2886, 7.2883, 7.2879, 7.2876, 7.2872, 7.2868, 7.2875, 7.2871, 7.2868, 7.2865, 7.2852, 7.2849, 7.2856, 7.2853, 7.2851, 7.286, 7.2859, 7.2857, 7.2844, 7.2832, 7.2841, 7.2879, 7.2876, 7.2872, 7.2868, 7.2875, 7.2871, 7.2858, 7.2845, 7.2842, 7.2849, 7.2845, 7.2851, 7.2847, 7.2854, 7.2841, 7.2838, 7.2836, 7.2834, 7.284, 7.2837, 7.2824, 7.282, 7.2817, 7.2814, 7.2811, 7.2807, 7.2814, 7.282, 7.2827, 7.2824, 7.282, 7.2817, 7.2815, 7.2814, 7.282, 7.2817, 7.2814, 7.2823, 7.282, 7.2816, 7.2822, 7.2818, 7.2825, 7.2821, 7.2817, 7.2814, 7.2821, 7.2818, 7.2814, 7.281, 7.2807, 7.2814, 7.2812, 7.283, 7.2826, 7.2822, 7.2819, 7.2815, 7.2823, 7.2841, 7.2838, 7.2855, 7.2852, 7.2849, 7.2868, 7.2866, 7.2863, 7.2859, 7.2862, 7.2858, 7.2856, 7.2853, 7.2866, 7.2863, 7.2863, 7.2871, 7.2867, 7.2864, 7.2861, 7.2848, 7.2845, 7.2842, 7.285, 7.2847, 7.2854, 7.2841, 7.2837, 7.2834, 7.2831, 7.2828, 7.2827, 7.2824, 7.2821, 7.2818, 7.2815, 7.2813, 7.281, 7.2809, 7.2806, 7.2804, 7.2791, 7.2778, 7.2775, 7.2771, 7.277, 7.2774, 7.2771, 7.2779, 7.2785, 7.2781, 7.2778, 7.2785, 7.2791, 7.2788, 7.2776, 7.2783, 7.2784, 7.2791, 7.2789, 7.2786, 7.2782, 7.278, 7.2776, 7.2773, 7.2769, 7.2757, 7.2755, 7.2751, 7.2748, 7.2745, 7.2742, 7.2748, 7.2744, 7.275, 7.2748, 7.2744, 7.2752, 7.2751, 7.2747, 7.2744, 7.274, 7.2747, 7.2744, 7.274, 7.2746, 7.2733, 7.2729, 7.2725, 7.2721, 7.2718, 7.2725, 7.2732, 7.2738, 7.2726, 7.2713, 7.2709, 7.2706, 7.2713, 7.2719, 7.2716, 7.2723, 7.272, 7.2717, 7.2713, 7.2719, 7.2717, 7.2714, 7.2715, 7.2712, 7.271, 7.2717, 7.2714, 7.2712, 7.2709, 7.2706, 7.2703, 7.271, 7.2707, 7.2714, 7.271, 7.2706, 7.2706, 7.2703, 7.27, 7.2697, 7.2704, 7.2702, 7.2699, 7.2695, 7.2693, 7.27, 7.2696, 7.2692, 7.2689, 7.2686, 7.2682, 7.2679, 7.2675, 7.2681, 7.2688, 7.2684, 7.269, 7.2696, 7.2703, 7.2699, 7.2697, 7.2693, 7.2699, 7.2695, 7.2693, 7.27, 7.2698, 7.2695, 7.2691, 7.2688, 7.2685, 7.2692, 7.2699, 7.2707, 7.2714, 7.2711, 7.2718, 7.2714, 7.2712, 7.2708, 7.272, 7.2718, 7.2715, 7.2712, 7.2718, 7.2715, 7.2721, 7.2728, 7.2724, 7.2731, 7.2737, 7.2734, 7.273, 7.273, 7.2727, 7.2725, 7.2713, 7.2719, 7.2716, 7.2713, 7.271, 7.2708, 7.2705, 7.2713, 7.2713, 7.272, 7.2727, 7.2725, 7.2722, 7.272, 7.2727, 7.274, 7.2752, 7.2749, 7.2755, 7.2762, 7.277, 7.2767, 7.2764, 7.2763, 7.2769, 7.2765, 7.2762, 7.2758, 7.2755, 7.2752, 7.2753, 7.2749, 7.2745, 7.2751, 7.2747, 7.2753, 7.275, 7.2746, 7.2743, 7.2739, 7.2736, 7.2743, 7.2751, 7.2756, 7.2753, 7.276, 7.2767, 7.2764, 7.2771, 7.2781, 7.2778, 7.2775, 7.2772, 7.2769, 7.2767, 7.2765, 7.2762, 7.2768, 7.2764, 7.276, 7.2759, 7.2755, 7.2751, 7.2748, 7.2745, 7.2743, 7.2746, 7.2744, 7.2741, 7.2749, 7.2756, 7.2763, 7.2771, 7.2769, 7.2767, 7.2763, 7.277, 7.2767, 7.2764, 7.276, 7.2757, 7.2763, 7.2759, 7.2757, 7.2745, 7.274, 7.2756, 7.2752, 7.2752, 7.2759, 7.2776, 7.2777, 7.281, 7.2806, 7.2803, 7.2809, 7.2816, 7.2805, 7.2803, 7.2799, 7.2805, 7.2802, 7.28, 7.2797, 7.2795, 7.2802, 7.2799, 7.2806, 7.2794, 7.2791, 7.2797, 7.2785, 7.2791, 7.2787, 7.2784, 7.2782, 7.278, 7.2777, 7.2773, 7.2779, 7.2785, 7.2791, 7.2798, 7.2797, 7.2797, 7.2795, 7.2802, 7.2809, 7.2816, 7.2822, 7.2829, 7.2828, 7.2826, 7.2832, 7.2829, 7.2845, 7.2841, 7.2848, 7.2846, 7.2844, 7.2853, 7.285, 7.2848, 7.2854, 7.2861, 7.2859, 7.2855, 7.2852, 7.2841, 7.2849, 7.2846, 7.2843, 7.284, 7.2839, 7.2835, 7.2831, 7.2829, 7.2826, 7.2824, 7.2831, 7.2819, 7.2818, 7.2816, 7.2824, 7.2821, 7.2818, 7.2816, 7.2812, 7.28, 7.2818, 7.2816, 7.2824, 7.282, 7.2817, 7.2814, 7.281, 7.2817, 7.2814, 7.282, 7.2826, 7.2832, 7.282, 7.282, 7.2831, 7.284, 7.2837, 7.2833, 7.2831, 7.2828, 7.2825, 7.2822, 7.2858, 7.2856, 7.2863, 7.286, 7.2857, 7.2845, 7.2842, 7.2848, 7.2836, 7.2824, 7.2813, 7.281, 7.2816, 7.2813, 7.2839, 7.2836, 7.2853, 7.2853, 7.285, 7.2838, 7.2864, 7.287, 7.2873, 7.2872, 7.2871, 7.2868, 7.2865, 7.2862, 7.2859, 7.2856, 7.2862, 7.2858, 7.2864, 7.286, 7.2857, 7.2854, 7.2851, 7.2848, 7.2845, 7.2843, 7.2841, 7.2838, 7.2846, 7.2853, 7.286, 7.2857, 7.2863, 7.286, 7.2857, 7.2854, 7.2851, 7.2878, 7.2875, 7.2872, 7.2869, 7.2866, 7.2873, 7.287, 7.2867, 7.2865, 7.2863, 7.2865, 7.2862, 7.2861, 7.2858, 7.2855, 7.2852, 7.285, 7.2847, 7.2844, 7.2842, 7.2848, 7.2851, 7.2848, 7.2848, 7.2854, 7.2861, 7.2858, 7.2855, 7.2854, 7.2861, 7.286, 7.2869, 7.2867, 7.2874, 7.2871, 7.2867, 7.2873, 7.288, 7.2877, 7.2874, 7.2871, 7.2877, 7.2873, 7.287, 7.2867, 7.2863, 7.2851, 7.2849, 7.2848, 7.2846, 7.2844, 7.2842, 7.2832, 7.283, 7.2827, 7.2826, 7.2824, 7.2821, 7.283, 7.2827, 7.2833, 7.2821, 7.2819, 7.2807, 7.2813, 7.281, 7.2807, 7.2804, 7.2801, 7.2809, 7.2806, 7.282, 7.2817, 7.2823, 7.2829, 7.2826, 7.2824, 7.2822, 7.2819, 7.2816, 7.2813, 7.2809, 7.2821, 7.2809, 7.2807, 7.2805, 7.2813, 7.281, 7.2808, 7.2804, 7.2802, 7.2799, 7.2797, 7.2793, 7.279, 7.2787, 7.2783, 7.278, 7.2778, 7.2775, 7.2772, 7.2769, 7.2766, 7.2763, 7.276, 7.2767, 7.2764, 7.2773, 7.277, 7.2767, 7.2784, 7.2782, 7.2789, 7.2816, 7.2814, 7.281, 7.2816, 7.2823, 7.2821, 7.2819, 7.2816, 7.2813, 7.2809, 7.2806, 7.2803, 7.28, 7.2797, 7.2795, 7.2792, 7.2789, 7.2786, 7.2783, 7.278, 7.2777, 7.2774, 7.2771, 7.2768, 7.2766, 7.2782, 7.2788, 7.2785, 7.2782, 7.2779, 7.2775, 7.2781, 7.2779, 7.2788, 7.2785, 7.2782, 7.2782, 7.2801, 7.279, 7.2788, 7.2786, 7.2783, 7.278, 7.2778, 7.2775, 7.2831, 7.283, 7.2836, 7.2832, 7.282, 7.2818, 7.2835, 7.2833, 7.2831, 7.2828, 7.2827, 7.2846, 7.2852, 7.2853, 7.2851, 7.2849, 7.2856, 7.2854, 7.2852, 7.2859, 7.2856, 7.2865, 7.2854, 7.2852, 7.285, 7.2856, 7.2844, 7.2841, 7.2838, 7.2836, 7.2833, 7.2831, 7.2828, 7.2825, 7.2822, 7.282, 7.2826, 7.2824, 7.2821, 7.2819, 7.2817, 7.2823, 7.282, 7.2826, 7.2823, 7.283, 7.2828, 7.2838, 7.2835, 7.2823, 7.282, 7.2819, 7.2816, 7.2814, 7.2821, 7.2818, 7.2816, 7.2822, 7.2828, 7.2836, 7.2833, 7.2841, 7.2847, 7.2844, 7.2851, 7.2858, 7.2855, 7.2861, 7.2858, 7.2855, 7.2852, 7.2855, 7.2862, 7.2859, 7.2856, 7.2862, 7.2879, 7.2877, 7.2885, 7.2882, 7.288, 7.2877, 7.2874, 7.287, 7.2859, 7.2866, 7.2871, 7.2868, 7.2873, 7.287, 7.2866, 7.2863, 7.2866, 7.2879, 7.2875, 7.2885, 7.2901, 7.2898, 7.2896, 7.2906, 7.2911, 7.2908, 7.2905, 7.2903, 7.2901, 7.2898, 7.2895, 7.2894, 7.2891, 7.2897, 7.2894, 7.2892, 7.2893, 7.289, 7.2887, 7.2884, 7.2881, 7.289, 7.2887, 7.2885, 7.2883, 7.288, 7.2877, 7.2877, 7.2875, 7.2889, 7.2904, 7.2903, 7.29, 7.2897, 7.2903, 7.2901, 7.2908, 7.2905, 7.2905, 7.2905, 7.2902, 7.2909, 7.2915, 7.2912, 7.2918, 7.2916, 7.2923, 7.2929, 7.2935, 7.2933, 7.2939, 7.2936, 7.2942, 7.2948, 7.2937, 7.2943, 7.295, 7.2948, 7.2954, 7.2953, 7.295, 7.2947, 7.2946, 7.2953, 7.295, 7.2947, 7.2944, 7.295, 7.2947, 7.2953, 7.2949, 7.2937, 7.2943, 7.294, 7.2937, 7.2935, 7.2933, 7.293, 7.2928, 7.2925, 7.2923, 7.292, 7.2918, 7.2915, 7.2912, 7.2909, 7.2916, 7.2922, 7.292, 7.2917, 7.2914, 7.2911, 7.2909, 7.2898, 7.2895, 7.2884, 7.2881, 7.2889, 7.2887, 7.2884, 7.2882, 7.2888, 7.2885, 7.2883, 7.2881, 7.2879, 7.2877, 7.2874, 7.2878, 7.2875, 7.2881, 7.2878, 7.2875, 7.2874, 7.2871, 7.2869, 7.2875, 7.288, 7.2886, 7.2885, 7.2885, 7.2882, 7.288, 7.2879, 7.2877, 7.288, 7.2886, 7.2883, 7.288, 7.2877, 7.2912, 7.2909, 7.2906, 7.2903, 7.2901, 7.292, 7.2934, 7.2941, 7.2947, 7.2937, 7.2934, 7.2932, 7.2929, 7.2918, 7.2918, 7.2915, 7.2912, 7.2909, 7.2907, 7.2905, 7.2903, 7.2913, 7.291, 7.2919, 7.2916, 7.2923, 7.2929, 7.2926, 7.2932, 7.2929, 7.2935, 7.2941, 7.2947, 7.2953, 7.2951, 7.2949, 7.2955, 7.2965, 7.2962, 7.2959, 7.2965, 7.2963, 7.296, 7.2957, 7.2963, 7.2952, 7.2951, 7.2948, 7.2945, 7.2943, 7.2949, 7.2947, 7.2944, 7.2941, 7.2938, 7.2935, 7.2933, 7.293, 7.2937, 7.2943, 7.2951, 7.2948, 7.2963, 7.296, 7.2958, 7.2955, 7.2961, 7.2965, 7.2962, 7.2963, 7.2969, 7.2966, 7.2972, 7.2969, 7.2967, 7.2965, 7.2963, 7.296, 7.2957, 7.2954, 7.2951, 7.2958, 7.2956, 7.2953, 7.295, 7.294, 7.2946, 7.2943, 7.294, 7.2938, 7.2944, 7.2941, 7.2938, 7.2935, 7.2941, 7.2947, 7.2944, 7.295, 7.2956, 7.2953, 7.295, 7.2956, 7.2963, 7.2969, 7.2975, 7.2972, 7.2979, 7.2976, 7.2982, 7.298, 7.2986, 7.2983, 7.2989, 7.2995, 7.2992, 7.2998, 7.303, 7.3027, 7.3016, 7.3022, 7.302, 7.3026, 7.3023, 7.3029, 7.3026, 7.3025, 7.3014, 7.302, 7.3025, 7.3022, 7.3019, 7.3017, 7.3023, 7.302, 7.3025, 7.3022, 7.3019, 7.3018, 7.3024, 7.3022, 7.3024, 7.3021, 7.3018, 7.3017, 7.3015, 7.3012, 7.3009, 7.3006, 7.3004, 7.3001, 7.2998, 7.2996, 7.2993, 7.2992, 7.2989, 7.2995, 7.3, 7.2997, 7.2994, 7.3, 7.2998, 7.2995, 7.2993, 7.2998, 7.2987, 7.2984, 7.299, 7.2987, 7.2985, 7.2983, 7.2989, 7.2986, 7.2983, 7.2989, 7.2986, 7.2983, 7.2989, 7.2986, 7.2983, 7.2972, 7.2969, 7.2966, 7.2964, 7.2961, 7.2968, 7.2965, 7.2963, 7.296, 7.2957, 7.2955, 7.2953, 7.296, 7.2949, 7.2946, 7.2944, 7.2941, 7.294, 7.2937, 7.2934, 7.2949, 7.2947, 7.2947, 7.2953, 7.295, 7.2948, 7.2946, 7.2952, 7.2949, 7.2947, 7.2944, 7.295, 7.2947, 7.2944, 7.2941, 7.2938, 7.2935, 7.2932, 7.2931, 7.2928, 7.2925, 7.2914, 7.2912, 7.2902, 7.2899, 7.2896, 7.2893, 7.2894, 7.2883, 7.2881, 7.2879, 7.2876, 7.2873, 7.2862, 7.2867, 7.2856, 7.2862, 7.2859, 7.2858, 7.2864, 7.2861, 7.2858, 7.2864, 7.2861, 7.2859, 7.2866, 7.2863, 7.2861, 7.286, 7.2857, 7.2864, 7.2861, 7.2858, 7.2855, 7.2861, 7.285, 7.2856, 7.286, 7.2858, 7.2855, 7.2856, 7.2853, 7.2851, 7.2848, 7.2845, 7.2851, 7.2849, 7.2855, 7.2852, 7.2849, 7.2863, 7.2869, 7.2883, 7.288, 7.288, 7.2881, 7.2887, 7.2885, 7.289, 7.2887, 7.2893, 7.2899, 7.2905, 7.2902, 7.2899, 7.2905, 7.2911, 7.2908, 7.2905, 7.291, 7.29, 7.2897, 7.2913, 7.2911, 7.2909, 7.2915, 7.2912, 7.2918, 7.2923, 7.2922, 7.292, 7.2918, 7.2915, 7.2921, 7.2918, 7.2923, 7.292, 7.2926, 7.2924, 7.293, 7.2929, 7.2935, 7.2933, 7.2922, 7.2921, 7.2918, 7.2916, 7.2905, 7.2902, 7.2899, 7.2897, 7.2906, 7.2903, 7.29, 7.2889, 7.2895, 7.2893, 7.2901, 7.2899, 7.2896, 7.2901, 7.2908, 7.2918, 7.2915, 7.2914, 7.2911, 7.2908, 7.2906, 7.2904, 7.2903, 7.2909, 7.2907, 7.2904, 7.2902, 7.2899, 7.2904, 7.2903, 7.2905, 7.2904, 7.2904, 7.2901, 7.2898, 7.2895, 7.2892, 7.2889, 7.2886, 7.2883, 7.288, 7.2885, 7.2891, 7.2888, 7.2904, 7.2909, 7.2907, 7.2904, 7.2911, 7.2909, 7.2909, 7.2906, 7.2905, 7.2903, 7.29, 7.2897, 7.2895, 7.2893, 7.289, 7.288, 7.288, 7.2877, 7.2878, 7.2867, 7.2865, 7.2879, 7.291, 7.2907, 7.2905, 7.2911, 7.2908, 7.2905, 7.291, 7.2907, 7.2904, 7.291, 7.2907, 7.2904, 7.2902, 7.2901, 7.2898, 7.2895, 7.2892, 7.2898, 7.2897, 7.2902, 7.2901, 7.2907, 7.2904, 7.291, 7.2909, 7.2915, 7.2912, 7.2918, 7.2932, 7.2922, 7.2928, 7.2925, 7.2922, 7.292, 7.2925, 7.2923, 7.292, 7.2918, 7.2915, 7.2913, 7.291, 7.2907, 7.2904, 7.2901, 7.2898, 7.2896, 7.2893, 7.2891, 7.2889, 7.2895, 7.2892, 7.2897, 7.2895, 7.2892, 7.2897, 7.2897, 7.2894, 7.29, 7.2899, 7.2897, 7.2894, 7.2891, 7.2889, 7.2886, 7.2883, 7.2888, 7.2893, 7.289, 7.2888, 7.2885, 7.2884, 7.2882, 7.2879, 7.2872, 7.2869, 7.2866, 7.2866, 7.2863, 7.2869, 7.2867, 7.2864, 7.2863, 7.2861, 7.2859, 7.2856, 7.2854, 7.2852, 7.2849, 7.2864, 7.2862, 7.2859, 7.2849, 7.2847, 7.2844, 7.2841, 7.2838, 7.2844, 7.2841, 7.2838, 7.2835, 7.2833, 7.2832, 7.2829, 7.2826, 7.2823, 7.282, 7.2826, 7.2832, 7.2829, 7.2827, 7.2824, 7.2825, 7.284, 7.2846, 7.2845, 7.2842, 7.2867, 7.2868, 7.2869, 7.2867, 7.2864, 7.2862, 7.2867, 7.2873, 7.2871, 7.2868, 7.2867, 7.2856, 7.2853, 7.2859, 7.2857, 7.2854, 7.2851, 7.2848, 7.2846, 7.2843, 7.284, 7.2846, 7.2869, 7.2867, 7.2866, 7.2863, 7.2869, 7.2866, 7.2863, 7.2861, 7.2858, 7.2855, 7.2852, 7.2849, 7.287, 7.2867, 7.2873, 7.2871, 7.2868, 7.2886, 7.2885, 7.2883, 7.288, 7.2877, 7.2874, 7.288, 7.2877, 7.2882, 7.2879, 7.2876, 7.2881, 7.2878, 7.2875, 7.2881, 7.2887, 7.2884, 7.2882, 7.2879, 7.2885, 7.2882, 7.2879, 7.2876, 7.2873, 7.2878, 7.2875, 7.2873, 7.287, 7.2876, 7.2873, 7.287, 7.2883, 7.2889, 7.2886, 7.2883, 7.288, 7.2877, 7.2875, 7.2873, 7.287, 7.2867, 7.2864, 7.2862, 7.2868, 7.2881, 7.2886, 7.2884, 7.29, 7.2901, 7.2898, 7.2895, 7.29, 7.2898, 7.2911, 7.2909, 7.2919, 7.2917, 7.2908, 7.2905, 7.2902, 7.2908, 7.2919, 7.2916, 7.2913, 7.291, 7.2915, 7.2913, 7.2919, 7.2916, 7.2906, 7.2903, 7.2893, 7.2891, 7.2888, 7.2912, 7.2918, 7.2916, 7.2921, 7.2926, 7.2923, 7.2913, 7.291, 7.2907, 7.2905, 7.2911, 7.2917, 7.2915, 7.2914, 7.2911, 7.2917, 7.2915, 7.2913, 7.2911, 7.2932, 7.2938, 7.2936, 7.2942, 7.2939, 7.2938, 7.2935, 7.2932, 7.2937, 7.2959, 7.2965, 7.2963, 7.297, 7.2968, 7.2965, 7.2966, 7.2964, 7.297, 7.2967, 7.2965, 7.2962, 7.2972, 7.2977, 7.2983, 7.2988, 7.2994, 7.2991, 7.2989, 7.2994, 7.2991, 7.2988, 7.2985, 7.299, 7.3012, 7.3009, 7.3023, 7.3029, 7.3026, 7.3024, 7.3022, 7.302, 7.3017, 7.3014, 7.3011, 7.3016, 7.3021, 7.3034, 7.304, 7.3037, 7.3043, 7.3041, 7.3039, 7.3036, 7.3027, 7.3025, 7.3031, 7.303, 7.303, 7.3028, 7.3025, 7.3023, 7.302, 7.3017, 7.3015, 7.3012, 7.3012, 7.301, 7.3007, 7.3004, 7.301, 7.3017, 7.3014, 7.3011, 7.3009, 7.3008, 7.3006, 7.3012, 7.3018, 7.3024, 7.303, 7.3028, 7.3034, 7.304, 7.3047, 7.3052, 7.3052, 7.3049, 7.3062, 7.3059, 7.3057, 7.3054, 7.3052, 7.305, 7.3055, 7.3053, 7.3056, 7.3061, 7.3066, 7.3072, 7.3077, 7.3067, 7.3066, 7.3064, 7.3062, 7.3052, 7.3049, 7.3047, 7.3052, 7.3057, 7.3054, 7.3052, 7.3057, 7.3054, 7.3051, 7.3049, 7.3054, 7.3051, 7.3056, 7.3053, 7.3051, 7.3064, 7.3062, 7.3059, 7.3064, 7.307, 7.3067, 7.3065, 7.3062, 7.306, 7.3057, 7.3058, 7.3055, 7.3054, 7.3051, 7.3049, 7.3046, 7.3051, 7.3057, 7.3054, 7.3051, 7.3048, 7.3054, 7.306, 7.3057, 7.3062, 7.3061, 7.3059, 7.3064, 7.3061, 7.3059, 7.3057, 7.3047, 7.3046, 7.3052, 7.3052, 7.305, 7.3047, 7.3044, 7.3042, 7.3039, 7.3044, 7.3042, 7.3039, 7.3037, 7.3056, 7.3054, 7.3052, 7.3057, 7.3054, 7.3082, 7.3084, 7.3089, 7.3086, 7.3098, 7.3097, 7.3096, 7.3094, 7.3091, 7.3088, 7.3094, 7.3099, 7.3096, 7.3093, 7.309, 7.3088, 7.3085, 7.3083, 7.3081, 7.3078, 7.3086, 7.3084, 7.3082, 7.3087, 7.3077, 7.3074, 7.3071, 7.3077, 7.3074, 7.3072, 7.3072, 7.3069, 7.3074, 7.3098, 7.3095, 7.3093, 7.3084, 7.3083, 7.3088, 7.3085, 7.309, 7.3087, 7.3084, 7.3105, 7.3118, 7.3115, 7.3112, 7.3117, 7.3122, 7.3119, 7.3116, 7.3113, 7.3118, 7.3123, 7.312, 7.3117, 7.3123, 7.3114, 7.3112, 7.3109, 7.3124, 7.3121, 7.3118, 7.3117, 7.3114, 7.3114, 7.3112, 7.3109, 7.3108, 7.3105, 7.3102, 7.3099, 7.3098, 7.3096, 7.3093, 7.3091, 7.3088, 7.3085, 7.3083, 7.308, 7.3078, 7.3076, 7.3073, 7.307, 7.3068, 7.3066, 7.3063, 7.3061, 7.3059, 7.3056, 7.3054, 7.3051, 7.3048, 7.3056, 7.3053, 7.3058, 7.3057, 7.3063, 7.3061, 7.3074, 7.3072, 7.3077, 7.3083, 7.308, 7.3078, 7.3085, 7.3083, 7.308, 7.3085, 7.3087, 7.3086, 7.308, 7.3079, 7.3078, 7.3071, 7.3068, 7.3065, 7.3063, 7.3064, 7.3062, 7.3062, 7.3062, 7.3061, 7.3058, 7.3057, 7.3055, 7.3055, 7.3053, 7.306, 7.3058, 7.3064, 7.3062, 7.3069, 7.3066, 7.3073, 7.3072, 7.3077, 7.3076, 7.3083, 7.3081, 7.3087, 7.3085, 7.3083, 7.3081, 7.3079, 7.3079, 7.3084, 7.3083, 7.3089, 7.3086, 7.3083, 7.3081, 7.3079, 7.3077, 7.3075, 7.3073, 7.3072, 7.3071, 7.3072, 7.3071, 7.3069], '192.168.122.115': [5.4479, 8.4339, 7.4905, 7.1183, 6.8687, 6.6239, 7.2199, 7.0406, 6.8565, 7.3715, 7.1747, 6.6264, 6.9607, 6.8714, 6.8073, 6.7211, 6.6461, 6.913, 6.8471, 6.7827, 6.7435, 6.7005, 6.6567, 6.618, 6.5746, 6.7393, 6.707, 6.8426, 6.6252, 6.5964, 6.5669, 6.5357, 6.5092, 6.6347, 6.6091, 6.7442, 6.716, 6.8391, 6.8006, 6.7815, 6.8326, 6.8316, 6.9173, 6.9245, 6.8867, 6.8519, 6.8312, 6.7998, 6.7801, 6.8314, 6.9284, 6.896, 6.8718, 6.7639, 6.833, 6.8311, 6.8994, 6.8781, 6.8573, 6.8441, 6.8253, 6.7257, 6.7112, 6.7787, 6.6811, 6.6596, 6.6387, 6.6208, 6.6017, 6.5826, 6.5774, 6.5722, 6.5582, 6.6218, 6.6195, 6.6088, 6.5354, 6.5234, 6.5785, 6.63, 6.6157, 6.6017, 6.5886, 6.5823, 6.5673, 6.5002, 6.5498, 6.5975, 6.5842, 6.5706, 6.5621, 6.5496, 6.5387, 6.5826, 6.5726, 6.5604, 6.5485, 6.5428, 6.5307, 6.5213, 6.5105, 6.5504, 6.5921, 6.6016, 6.5937, 6.5931, 6.588, 6.5835, 6.5725, 6.5672, 6.5569, 6.5028, 6.4921, 6.4846, 6.4821, 6.4307, 6.4247, 6.4257, 6.4218, 6.4204, 6.4119, 6.4064, 6.4407, 6.4315, 6.4644, 6.4855, 6.5188, 6.5138, 6.5227, 6.5703, 6.6034, 6.5947, 6.6256, 6.6632, 6.6533, 6.6467, 6.6401, 6.6322, 6.6299, 6.6222, 6.6203, 6.6185, 6.687, 6.6786, 6.7079, 6.7016, 6.6933, 6.6861, 6.6789, 6.6719, 6.6625, 6.6535, 6.6441, 6.6361, 6.6624, 6.6577, 6.6205, 6.648, 6.6744, 6.6682, 6.6615, 6.6869, 6.6792, 6.707, 6.669, 6.6945, 6.7208, 6.7453, 6.7998, 6.8025, 6.7937, 6.7905, 6.7903, 6.8132, 6.8065, 6.7982, 6.8188, 6.8105, 6.8331, 6.8571, 6.8496, 6.8729, 6.865, 6.8576, 6.8791, 6.8446, 6.8359, 6.8867, 6.9067, 6.9038, 6.9065, 6.8982, 6.8908, 6.9116, 6.9609, 6.9539, 7.0009, 6.9927, 7.0373, 7.0363, 7.0068, 6.9986, 6.9913, 7.0095, 7.0039, 7.0228, 7.0162, 7.0346, 7.0286, 7.0233, 7.0412, 7.0329, 7.0319, 7.0501, 7.0436, 7.04, 7.0334, 7.0251, 7.0187, 7.0123, 7.0295, 7.0217, 7.0162, 7.0135, 7.006, 7.0224, 7.0156, 7.0336, 7.0266, 7.0437, 7.0492, 7.0413, 7.0164, 7.0332, 7.0271, 7.0195, 7.0145, 7.0076, 6.9804, 6.9735, 6.9686, 6.9627, 6.9582, 6.9537, 6.9717, 6.9678, 6.9759, 6.9707, 6.9877, 6.9806, 6.9741, 6.9673, 6.9827, 6.9763, 6.9918, 7.0063, 6.9997, 7.0141, 7.0284, 7.022, 7.018, 7.0143, 7.0509, 7.0444, 7.0397, 7.0331, 7.0268, 7.0209, 7.017, 7.0143, 7.0103, 7.0038, 7.0083, 6.9847, 6.9984, 6.9926, 7.0066, 6.9837, 6.9782, 6.9559, 6.969, 6.9633, 6.9578, 6.9354, 6.9302, 6.9242, 6.9186, 6.9311, 6.9349, 6.9305, 6.9249, 6.9197, 6.9145, 6.9094, 6.9104, 6.9057, 6.901, 6.8963, 6.9361, 6.9334, 6.9281, 6.9236, 6.9184, 6.9156, 6.9126, 6.9437, 6.9391, 6.9392, 6.935, 6.9538, 6.9656, 6.9621, 6.9577, 6.9553, 6.9533, 6.9499, 6.946, 6.9426, 6.956, 6.9692, 6.9691, 6.965, 6.9757, 6.9744, 6.9724, 6.9872, 6.9827, 6.9956, 6.9903, 7.0009, 6.9954, 6.9904, 7.0029, 6.9982, 7.0096, 7.0055, 7.0051, 7.0003, 6.997, 7.0076, 7.0044, 6.9995, 6.9945, 6.9899, 6.9854, 6.9806, 6.9775, 6.9885, 6.9848, 6.9957, 6.9913, 6.9882, 6.9836, 6.9796, 6.9908, 6.9863, 6.9821, 6.9791, 6.9748, 6.9701, 6.9674, 6.9628, 6.9587, 6.9695, 6.9797, 6.9751, 6.9718, 7.0102, 7.0073, 7.0034, 6.9998, 7.0103, 7.0198, 7.0153, 7.0127, 7.0085, 7.0043, 6.9999, 7.0105, 7.0063, 7.0158, 7.0138, 7.009, 7.0046, 7.0145, 7.01, 6.9943, 6.9913, 6.9878, 6.9853, 6.9947, 7.0043, 7.0005, 7.01, 7.006, 7.0018, 6.9976, 6.9948, 6.9915, 7.0328, 7.0286, 7.0246, 7.0204, 7.0299, 7.0255, 7.0356, 7.0319, 7.041, 7.0409, 7.0378, 7.0341, 7.0313, 7.0274, 7.0234, 7.0198, 7.0041, 7.001, 6.9975, 7.0193, 7.0152, 7.0241, 7.0586, 7.056, 7.0518, 7.0871, 7.109, 7.0943, 7.1126, 7.1086, 7.107, 7.1036, 7.1011, 7.0972, 7.0942, 7.1031, 7.1369, 7.1449, 7.142, 7.1268, 7.1236, 7.121, 7.1203, 7.1415, 7.1499, 7.1577, 7.1536, 7.1511, 7.1602, 7.1456, 7.1419, 7.138, 7.134, 7.1416, 7.1272, 7.1347, 7.1428, 7.1391, 7.1358, 7.1447, 7.1415, 7.1273, 7.1269, 7.1234, 7.1204, 7.1185, 7.1145, 7.1566, 7.1557, 7.1641, 7.1606, 7.1577, 7.155, 7.1529, 7.1392, 7.1421, 7.1399, 7.1373, 7.1342, 7.1316, 7.13, 7.1379, 7.1347, 7.134, 7.1311, 7.1279, 7.1246, 7.1207, 7.1171, 7.1136, 7.1218, 7.1185, 7.115, 7.1144, 7.1111, 7.1077, 7.1045, 7.1018, 7.1014, 7.0987, 7.0976, 7.0845, 7.0715, 7.0685, 7.0662, 7.0626, 7.0513, 7.039, 7.0367, 7.0334, 7.0323, 7.0305, 7.0279, 7.0364, 7.0337, 7.0303, 7.027, 7.0246, 7.0226, 7.0212, 7.0195, 7.0166, 7.0139, 7.0112, 7.0078, 7.0149, 7.0118, 7.0094, 7.0062, 7.0046, 7.0016, 6.9984, 6.9952, 6.9929, 6.9905, 6.988, 6.9857, 7.0103, 7.01, 7.0085, 7.0063, 7.0042, 7.006, 7.0029, 6.9998, 6.9998, 6.9967, 6.995, 6.9928, 6.9905, 6.9965, 6.9933, 6.9946, 6.9924, 6.9891, 6.9877, 6.9854, 6.9829, 6.9807, 6.9871, 6.979, 6.9769, 6.974, 6.9755, 6.973, 6.9703, 6.9769, 6.9751, 6.9732, 6.98, 6.9869, 7.033, 7.0307, 7.0279, 7.0345, 7.0328, 7.0298, 7.0273, 7.0249, 7.022, 7.0302, 7.0279, 7.0256, 7.0229, 7.0212, 7.0267, 7.0338, 7.0401, 7.0474, 7.0449, 7.0422, 7.0496, 7.0591, 7.0578, 7.0558, 7.0532, 7.06, 7.0675, 7.0565, 7.055, 7.0617, 7.0605, 7.0669, 7.065, 7.0633, 7.061, 7.0682, 7.0657, 7.0629, 7.0606, 7.059, 7.0577, 7.056, 7.0627, 7.0605, 7.0578, 7.0568, 7.0633, 7.0546, 7.0858, 7.1013, 7.1247, 7.1393, 7.1449, 7.151, 7.1569, 7.1541, 7.1514, 7.1487, 7.146, 7.1441, 7.1344, 7.1405, 7.1384, 7.1527, 7.1512, 7.1493, 7.1466, 7.1438, 7.1421, 7.1421, 7.148, 7.1455, 7.1439, 7.1411, 7.1385, 7.1387, 7.1448, 7.142, 7.1496, 7.1475, 7.1448, 7.1437, 7.1424, 7.1399, 7.1454, 7.1428, 7.1486, 7.1481, 7.1538, 7.1602, 7.1574, 7.1624, 7.1595, 7.1574, 7.1547, 7.1521, 7.1571, 7.1477, 7.1532, 7.1503, 7.1645, 7.162, 7.1593, 7.1648, 7.1624, 7.1674, 7.1674, 7.165, 7.1626, 7.168, 7.1657, 7.1631, 7.1606, 7.1593, 7.1647, 7.1625, 7.1684, 7.1663, 7.164, 7.162, 7.1597, 7.1571, 7.1545, 7.1602, 7.166, 7.1635, 7.1621, 7.1538, 7.1511, 7.1563, 7.1547, 7.1596, 7.1643, 7.1695, 7.1668, 7.1644, 7.1619, 7.1598, 7.1506, 7.1485, 7.1472, 7.1563, 7.1618, 7.1595, 7.1595, 7.1572, 7.1564, 7.1475, 7.1452, 7.1436, 7.1416, 7.1468, 7.1444, 7.1431, 7.148, 7.1532, 7.1509, 7.1484, 7.1466, 7.1381, 7.1357, 7.1408, 7.1317, 7.1291, 7.1266, 7.1241, 7.1216, 7.1191, 7.1243, 7.123, 7.1215, 7.1205, 7.1254, 7.1247, 7.1296, 7.1276, 7.1257, 7.1234, 7.1284, 7.127, 7.1247, 7.1298, 7.1284, 7.1333, 7.1309, 7.1422, 7.1398, 7.1375, 7.135, 7.1327, 7.1309, 7.1291, 7.1343, 7.132, 7.1296, 7.1273, 7.1187, 7.1169, 7.1442, 7.1555, 7.1539, 7.1517, 7.1493, 7.1541, 7.1589, 7.1576, 7.1554, 7.1531, 7.1516, 7.15, 7.1419, 7.1395, 7.1388, 7.1365, 7.1349, 7.14, 7.1446, 7.1494, 7.1473, 7.1452, 7.1436, 7.1483, 7.1528, 7.1507, 7.1488, 7.1466, 7.1449, 7.149, 7.1475, 7.1526, 7.1505, 7.1486, 7.1462, 7.1444, 7.1425, 7.1401, 7.138, 7.1362, 7.1344, 7.1561, 7.1547, 7.1524, 7.1523, 7.1503, 7.148, 7.1457, 7.15, 7.1487, 7.1467, 7.1447, 7.1425, 7.1405, 7.1386, 7.1366, 7.1293, 7.1284, 7.1265, 7.127, 7.1283, 7.1261, 7.124, 7.1221, 7.1206, 7.1132, 7.113, 7.1175, 7.1155, 7.12, 7.1183, 7.1173, 7.1153, 7.1132, 7.1174, 7.1222, 7.1207, 7.1187, 7.1308, 7.129, 7.1272, 7.1253, 7.1231, 7.1214, 7.1195, 7.1182, 7.1162, 7.1148, 7.1127, 7.117, 7.1094, 7.1078, 7.1122, 7.1102, 7.1083, 7.1124, 7.1107, 7.109, 7.1074, 7.1116, 7.1104, 7.1085, 7.1064, 7.1106, 7.1086, 7.1071, 7.1118, 7.1159, 7.1159, 7.121, 7.1192, 7.1177, 7.116, 7.115, 7.1322, 7.1371, 7.1355, 7.1339, 7.1324, 7.1368, 7.1347, 7.133, 7.1313, 7.1371, 7.1383, 7.1425, 7.1406, 7.1411, 7.1463, 7.1445, 7.1489, 7.1474, 7.1459, 7.1438, 7.1421, 7.1573, 7.1559, 7.1539, 7.152, 7.1506, 7.1489, 7.153, 7.1512, 7.1498, 7.1538, 7.1577, 7.1558, 7.1537, 7.158, 7.1621, 7.1607, 7.1647, 7.1687, 7.1667, 7.165, 7.1688, 7.167, 7.1651, 7.1641, 7.168, 7.1661, 7.1695, 7.1677, 7.1658, 7.1638, 7.162, 7.1601, 7.1638, 7.1567, 7.1549, 7.1697, 7.1689, 7.1672, 7.1653, 7.1634, 7.1615, 7.1596, 7.1581, 7.162, 7.16, 7.158, 7.1621, 7.1828, 7.1809, 7.1793, 7.184, 7.182, 7.1804, 7.1795, 7.1781, 7.1825, 7.1756, 7.1739, 7.1726, 7.1707, 7.1747, 7.1732, 7.1771, 7.1808, 7.179, 7.1772, 7.176, 7.1744, 7.1725, 7.1708, 7.1745, 7.1726, 7.1716, 7.1698, 7.1731, 7.1712, 7.1694, 7.168, 7.1663, 7.1645, 7.1627, 7.1612, 7.1593, 7.158, 7.1565, 7.1554, 7.1539, 7.1578, 7.156, 7.1543, 7.1528, 7.1511, 7.1548, 7.1529, 7.1567, 7.1559, 7.1542, 7.1529, 7.151, 7.1497, 7.1479, 7.147, 7.1562, 7.155, 7.1538, 7.1681, 7.1663, 7.165, 7.1634, 7.1616, 7.1599, 7.1581, 7.1562, 7.1546, 7.1532, 7.1517, 7.1501, 7.1486, 7.1468, 7.1452, 7.1439, 7.1424, 7.1407, 7.1391, 7.1375, 7.1368, 7.1353, 7.1361, 7.1344, 7.1328, 7.1311, 7.1293, 7.1282, 7.1269, 7.1252, 7.124, 7.1228, 7.1211, 7.1193, 7.1179, 7.1316, 7.1452, 7.1438, 7.1419, 7.1421, 7.141, 7.1392, 7.1375, 7.1366, 7.1349, 7.1337, 7.1371, 7.1358, 7.1341, 7.1373, 7.1356, 7.1341, 7.1372, 7.1358, 7.1347, 7.1333, 7.1322, 7.1353, 7.1347, 7.1382, 7.1366, 7.135, 7.1346, 7.134, 7.1434, 7.1424, 7.1411, 7.1401, 7.1389, 7.1423, 7.1412, 7.14, 7.1431, 7.1418, 7.1453, 7.1484, 7.1468, 7.1502, 7.1487, 7.1522, 7.1506, 7.149, 7.1521, 7.1553, 7.1548, 7.1535, 7.1522, 7.1521, 7.1504, 7.1537, 7.1606, 7.1596, 7.1579, 7.1564, 7.1558, 7.1588, 7.1571, 7.1554, 7.1539, 7.1523, 7.1508, 7.1495, 7.1487, 7.1471, 7.1456, 7.144, 7.1425, 7.1413, 7.1397, 7.1389, 7.1479, 7.1467, 7.1451, 7.1435, 7.143, 7.1419, 7.1454, 7.1442, 7.1426, 7.1411, 7.14, 7.1383, 7.1372, 7.1409, 7.1448, 7.1431, 7.1464, 7.1449, 7.1439, 7.1429, 7.1502, 7.1485, 7.1469, 7.1456, 7.1445, 7.1435, 7.142, 7.1455, 7.1628, 7.1612, 7.1643, 7.1627, 7.1617, 7.1603, 7.1591, 7.1577, 7.157, 7.16, 7.1584, 7.1578, 7.1567, 7.1551, 7.1537, 7.1521, 7.1511, 7.1541, 7.1528, 7.1513, 7.1546, 7.1578, 7.1566, 7.1554, 7.1539, 7.1523, 7.151, 7.1498, 7.1526, 7.1558, 7.1549, 7.1538, 7.1525, 7.1549, 7.158, 7.1565, 7.1596, 7.1627, 7.1612, 7.1644, 7.1632, 7.1722, 7.1735, 7.1722, 7.1711, 7.1699, 7.1774, 7.185, 7.1836, 7.1865, 7.1891, 7.1879, 7.1909, 7.1893, 7.1885, 7.1868, 7.1942, 7.197, 7.1956, 7.1985, 7.2014, 7.2004, 7.1989, 7.2004, 7.1998, 7.2027, 7.2011, 7.1996, 7.1983, 7.1968, 7.1957, 7.1944, 7.1929, 7.1918, 7.1955, 7.1942, 7.1972, 7.1959, 7.1943, 7.1973, 7.1959, 7.1991, 7.2023, 7.2012, 7.2043, 7.2028, 7.2014, 7.2043, 7.2033, 7.2018, 7.2006, 7.1994, 7.198, 7.2016, 7.2046, 7.2074, 7.2062, 7.209, 7.2117, 7.2108, 7.2102, 7.2087, 7.2072, 7.2059, 7.2045, 7.2072, 7.2057, 7.205, 7.2037, 7.2099, 7.2087, 7.2113, 7.2156, 7.2191, 7.2176, 7.2163, 7.2192, 7.2223, 7.2253, 7.224, 7.2271, 7.227, 7.2258, 7.2244, 7.2271, 7.2302, 7.2289, 7.2287, 7.2273, 7.2258, 7.2247, 7.224, 7.2233, 7.2223, 7.2222, 7.2214, 7.22, 7.2187, 7.2181, 7.2166, 7.2196, 7.2194, 7.2219, 7.2208, 7.2236, 7.2225, 7.2216, 7.2205, 7.2222, 7.2213, 7.2243, 7.2269, 7.2298, 7.2284, 7.2269, 7.2255, 7.2284, 7.2276, 7.2263, 7.2249, 7.2277, 7.2263, 7.2248, 7.22, 7.219, 7.2178, 7.2165, 7.2153, 7.2143, 7.2134, 7.209, 7.2077, 7.2103, 7.2129, 7.2156, 7.2141, 7.2169, 7.2156, 7.2182, 7.2209, 7.2195, 7.2183, 7.2173, 7.2123, 7.211, 7.2101, 7.2128, 7.2078, 7.2064, 7.2056, 7.2047, 7.2034, 7.202, 7.2031, 7.2017, 7.2004, 7.1991, 7.202, 7.2007, 7.1994, 7.1981, 7.1968, 7.1995, 7.1982, 7.1971, 7.1957, 7.1944, 7.197, 7.1958, 7.1944, 7.1931, 7.1919, 7.1916, 7.1954, 7.1956, 7.1943, 7.1931, 7.1919, 7.1946, 7.1932, 7.1921, 7.1908, 7.1894, 7.1881, 7.1868, 7.1855, 7.1806, 7.1832, 7.1831, 7.1867, 7.1857, 7.1848, 7.1835, 7.1825, 7.1854, 7.1845, 7.1876, 7.1868, 7.1856, 7.1844, 7.1868, 7.193, 7.1958, 7.2023, 7.2082, 7.2071, 7.2095, 7.212, 7.2146, 7.2135, 7.2128, 7.2118, 7.211, 7.2136, 7.2126, 7.2152, 7.2183, 7.218, 7.2206, 7.2194, 7.2223, 7.2251, 7.2237, 7.2226, 7.2296, 7.2322, 7.2347, 7.2337, 7.2362, 7.2388, 7.2375, 7.2361, 7.2348, 7.2335, 7.2322, 7.2315, 7.2341, 7.2353, 7.2343, 7.2333, 7.2359, 7.2381, 7.2406, 7.2394, 7.2387, 7.2412, 7.2399, 7.2388, 7.2379, 7.2369, 7.2359, 7.2482, 7.2473, 7.2464, 7.2496, 7.2484, 7.2471, 7.2458, 7.2447, 7.2403, 7.2394, 7.2384, 7.2372, 7.2399, 7.2387, 7.2412, 7.2402, 7.2395, 7.2421, 7.2409, 7.2434, 7.2421, 7.2415, 7.2438, 7.2439, 7.2428, 7.2451, 7.2442, 7.2429, 7.2419, 7.2407, 7.2397, 7.2388, 7.2376, 7.24, 7.241, 7.2433, 7.2431, 7.2451, 7.2476, 7.253, 7.252, 7.2508, 7.2537, 7.2537, 7.2531, 7.2521, 7.2512, 7.25, 7.2487, 7.2485, 7.2485, 7.2487, 7.2651, 7.265, 7.2724, 7.271, 7.27, 7.27, 7.2691, 7.2678, 7.2665, 7.2657, 7.268, 7.2703, 7.2706, 7.273, 7.2717, 7.2705, 7.2693, 7.2688, 7.2676, 7.2664, 7.2667, 7.2657, 7.2656, 7.2645, 7.2634, 7.2628, 7.265, 7.2642, 7.2732, 7.2722, 7.2745, 7.2767, 7.2759, 7.2749, 7.2771, 7.2761, 7.2748, 7.2735, 7.2727, 7.2718, 7.274, 7.2728, 7.2722, 7.2712, 7.2704, 7.2691, 7.2682, 7.2672, 7.2741, 7.2765, 7.2789, 7.2747, 7.2734, 7.2723, 7.2733, 7.272, 7.2744, 7.2765, 7.2753, 7.2742, 7.2738, 7.2726, 7.2749, 7.2739, 7.2727, 7.2751, 7.2746, 7.2704, 7.2728, 7.2716, 7.2703, 7.2761, 7.2748, 7.2746, 7.274, 7.2728, 7.2718, 7.2675, 7.2665, 7.2652, 7.264, 7.2628, 7.2615, 7.2603, 7.2599, 7.2621, 7.2611, 7.2673, 7.266, 7.2648, 7.267, 7.2669, 7.2659, 7.2647, 7.2637, 7.2625, 7.2681, 7.2673, 7.2661, 7.2683, 7.2671, 7.2661, 7.2649, 7.268, 7.2702, 7.2691, 7.268, 7.2668, 7.2659, 7.2681, 7.2669, 7.266, 7.265, 7.2639, 7.2631, 7.2619, 7.264, 7.263, 7.2721, 7.2711, 7.2699, 7.2721, 7.2709, 7.2699, 7.2688, 7.2646, 7.2647, 7.2636, 7.2625, 7.2649, 7.2639, 7.2628, 7.2616, 7.2607, 7.2629, 7.2617, 7.2605, 7.2598, 7.2593, 7.2584, 7.2576, 7.2632, 7.2623, 7.2647, 7.2637, 7.2626, 7.2585, 7.2591, 7.2583, 7.2577, 7.2565, 7.2589, 7.2609, 7.2605, 7.2564, 7.2537, 7.2558, 7.2547, 7.2538, 7.2527, 7.2518, 7.254, 7.2529, 7.2519, 7.2507, 7.2467, 7.2456, 7.2445, 7.2436, 7.2426, 7.2414, 7.2404, 7.2426, 7.2449, 7.2414, 7.2406, 7.2371, 7.2365, 7.2368, 7.2371, 7.2406, 7.2398, 7.2358, 7.2351, 7.2373, 7.2361, 7.236, 7.2361, 7.2384, 7.2376, 7.2384, 7.2374, 7.2369, 7.236, 7.2352, 7.2342, 7.2333, 7.2322, 7.2316, 7.2316, 7.2305, 7.2328, 7.2317, 7.2312, 7.2274, 7.2263, 7.2259, 7.2278, 7.23, 7.232, 7.2337, 7.2347, 7.2341, 7.2368, 7.2361, 7.2382, 7.2371, 7.2384, 7.2378, 7.2373, 7.2374, 7.2457, 7.2449, 7.2438, 7.246, 7.2453, 7.2446, 7.2437, 7.2459, 7.2448, 7.2469, 7.2459, 7.2451, 7.247, 7.246, 7.2451, 7.244, 7.2436, 7.2425, 7.2415, 7.2377, 7.2366, 7.2355, 7.2344, 7.2364, 7.2384, 7.2351, 7.2371, 7.2363, 7.2384, 7.2435, 7.2426, 7.2417, 7.2411, 7.2402, 7.2391, 7.238, 7.2369, 7.2392, 7.2413, 7.2416, 7.2437, 7.2427, 7.2417, 7.2407, 7.2399, 7.2389, 7.2379, 7.2369, 7.2392, 7.2414, 7.2403, 7.2427, 7.2418, 7.2407, 7.2396, 7.2386, 7.2376, 7.2396, 7.2416, 7.2443, 7.2464, 7.2453, 7.2475, 7.2465, 7.2456, 7.2447, 7.2465, 7.2458, 7.248, 7.2471, 7.2463, 7.2486, 7.2477, 7.2467, 7.2459, 7.2425, 7.2474, 7.2466, 7.2429, 7.2422, 7.2412, 7.2402, 7.2406, 7.2396, 7.2386, 7.2377, 7.2368, 7.243, 7.2432, 7.2421, 7.2412, 7.2436, 7.2399, 7.2418, 7.2438, 7.243, 7.2429, 7.2419, 7.2412, 7.2402, 7.2396, 7.24, 7.2391, 7.2384, 7.2502, 7.252, 7.2513, 7.2531, 7.252, 7.2512, 7.253, 7.252, 7.2514, 7.2507, 7.2499, 7.249, 7.248, 7.247, 7.2489, 7.2508, 7.2497, 7.2462, 7.2452, 7.2444, 7.2434, 7.2454, 7.2446, 7.2411, 7.2406, 7.2395, 7.2388, 7.238, 7.237, 7.2363, 7.2353, 7.2348, 7.234, 7.2331, 7.2322, 7.232, 7.2315, 7.2335, 7.2325, 7.2317, 7.2366, 7.2357, 7.2347, 7.2366, 7.2357, 7.2377, 7.2369, 7.2359, 7.2351, 7.2343, 7.2333, 7.2353, 7.2347, 7.2344, 7.2334, 7.2329, 7.2318, 7.2308, 7.2298, 7.2288, 7.2281, 7.2276, 7.2296, 7.2288, 7.2306, 7.2297, 7.2316, 7.2306, 7.2296, 7.2316, 7.2313, 7.2306, 7.2325, 7.2316, 7.2335, 7.233, 7.2321, 7.2312, 7.2303, 7.2296, 7.2312, 7.2304, 7.2301, 7.2294, 7.2292, 7.2283, 7.2279, 7.2269, 7.2258, 7.2255, 7.2246, 7.2242, 7.2233, 7.2225, 7.2277, 7.2268, 7.2261, 7.2253, 7.2246, 7.2265, 7.2256, 7.2251, 7.2241, 7.2232, 7.2252, 7.2242, 7.2234, 7.2226, 7.2245, 7.2264, 7.2257, 7.2276, 7.2268, 7.2261, 7.2253, 7.227, 7.226, 7.2278, 7.2299, 7.2293, 7.2284, 7.2276, 7.2268, 7.226, 7.2251, 7.2242, 7.2259, 7.2249, 7.2244, 7.2237, 7.2227, 7.2218, 7.221, 7.22, 7.2191, 7.2181, 7.2173, 7.2144, 7.2136, 7.213, 7.2127, 7.212, 7.2112, 7.2112, 7.2131, 7.2124, 7.2142, 7.2203, 7.2195, 7.2213, 7.2232, 7.2262, 7.2254, 7.2246, 7.2265, 7.2256, 7.2247, 7.2237, 7.2229, 7.2247, 7.224, 7.2257, 7.2248, 7.2239, 7.2231, 7.2223, 7.2241, 7.2318, 7.2308, 7.2327, 7.2348, 7.2343, 7.2421, 7.2438, 7.2431, 7.2421, 7.2411, 7.2401, 7.2391, 7.2383, 7.2374, 7.2364, 7.238, 7.2371, 7.2363, 7.2361, 7.2351, 7.2342, 7.2359, 7.2376, 7.2394, 7.2387, 7.2383, 7.2374, 7.2392, 7.2386, 7.2379, 7.2377, 7.2367, 7.236, 7.235, 7.2341, 7.2332, 7.2325, 7.2315, 7.2437, 7.243, 7.242, 7.2412, 7.2405, 7.2396, 7.2387, 7.2377, 7.2368, 7.2359, 7.2376, 7.2367, 7.2359, 7.235, 7.2344, 7.2337, 7.2328, 7.232, 7.2357, 7.2375, 7.2393, 7.2411, 7.2402, 7.2419, 7.2412, 7.2403, 7.2396, 7.2392, 7.2383, 7.2374, 7.2392, 7.2383, 7.2374, 7.2347, 7.2347, 7.2338, 7.2329, 7.2382, 7.2408, 7.2425, 7.2415, 7.2406, 7.2397, 7.2389, 7.2381, 7.24, 7.2391, 7.2382, 7.2381, 7.2399, 7.2429, 7.2404, 7.2374, 7.2369, 7.2363, 7.2356, 7.2325, 7.2318, 7.2312, 7.2306, 7.23, 7.2293, 7.2288, 7.231, 7.2312, 7.2304, 7.2298, 7.2292, 7.2326, 7.2318, 7.231, 7.2328, 7.2347, 7.2341, 7.2332, 7.2324, 7.2315, 7.2306, 7.2298, 7.2315, 7.2334, 7.235, 7.2393, 7.2452, 7.245, 7.2495, 7.2539, 7.2581, 7.2578, 7.2593, 7.2639, 7.2656, 7.2652, 7.2646, 7.2691, 7.2683, 7.2675, 7.2694, 7.271, 7.2702, 7.2693, 7.2687, 7.2681, 7.2674, 7.2702, 7.2694, 7.2687, 7.2679, 7.2773, 7.2764, 7.2759, 7.2756, 7.2775, 7.2767, 7.2758, 7.2732, 7.2726, 7.2718, 7.271, 7.27, 7.2717, 7.2709, 7.2848, 7.2891, 7.2932, 7.2951, 7.2944, 7.2935, 7.2926, 7.2918, 7.291, 7.2902, 7.2892, 7.2887, 7.288, 7.2873, 7.2866, 7.2859, 7.2852, 7.2844, 7.2837, 7.283, 7.2821, 7.2812, 7.2808, 7.2825, 7.2818, 7.2811, 7.2803, 7.2796, 7.2793, 7.2784, 7.2778, 7.2769, 7.276, 7.2755, 7.2748, 7.274, 7.2735, 7.275, 7.2765, 7.2755, 7.2748, 7.2741, 7.2714, 7.273, 7.2723, 7.2714, 7.2762, 7.2735, 7.2727, 7.2718, 7.2688, 7.2684, 7.2682, 7.2674, 7.2646, 7.2638, 7.263, 7.2626, 7.2622, 7.2613, 7.2605, 7.2597, 7.2589, 7.2562, 7.2533, 7.253, 7.2524, 7.2517, 7.2512, 7.2506, 7.2501, 7.2518, 7.251, 7.2504, 7.2519, 7.251, 7.2501, 7.2494, 7.2485, 7.2478, 7.2493, 7.2487, 7.2483, 7.2499, 7.249, 7.2531, 7.2523, 7.2515, 7.2506, 7.2522, 7.2513, 7.2505, 7.2497, 7.2535, 7.2505, 7.2521, 7.2513, 7.2505, 7.2496, 7.2494, 7.2487, 7.2479, 7.2471, 7.2487, 7.2507, 7.25, 7.2495, 7.2487, 7.2503, 7.2501, 7.2516, 7.2509, 7.2502, 7.2497, 7.2491, 7.2516, 7.2531, 7.2523, 7.2516, 7.2531, 7.2547, 7.254, 7.2533, 7.2526, 7.2517, 7.2533, 7.2526, 7.2522, 7.2515, 7.2509, 7.2502, 7.2495, 7.2513, 7.2508, 7.2501, 7.2496, 7.2516, 7.2509, 7.2501, 7.2519, 7.2511, 7.2503, 7.2495, 7.2489, 7.2517, 7.251, 7.2503, 7.2475, 7.2468, 7.256, 7.2553, 7.2545, 7.2537, 7.2553, 7.2548, 7.254, 7.2533, 7.2549, 7.2541, 7.2557, 7.2549, 7.2541, 7.2558, 7.2552, 7.2549, 7.2541, 7.2556, 7.2572, 7.2565, 7.2608, 7.2656, 7.2673, 7.2668, 7.2664, 7.2655, 7.2672, 7.2666, 7.2666, 7.2685, 7.2677, 7.2669, 7.2662, 7.2655, 7.2652, 7.2646, 7.2618, 7.2611, 7.2629, 7.2623, 7.2616, 7.2588, 7.2582, 7.2575, 7.2593, 7.2585, 7.2602, 7.2594, 7.2588, 7.258, 7.2573, 7.2567, 7.2563, 7.2554, 7.2546, 7.2561, 7.2532, 7.2547, 7.2518, 7.2512, 7.2527, 7.2541, 7.2533, 7.2527, 7.2543, 7.2536, 7.2531, 7.2522, 7.2535, 7.253, 7.2525, 7.2518, 7.2517, 7.2531, 7.2545, 7.2538, 7.253, 7.2522, 7.2515, 7.2487, 7.2479, 7.2474, 7.2466, 7.2458, 7.2472, 7.2486, 7.2481, 7.2495, 7.2489, 7.2484, 7.2479, 7.2473, 7.2467, 7.2439, 7.2454, 7.245, 7.2442, 7.2459, 7.2478, 7.2473, 7.2488, 7.2484, 7.2499, 7.2493, 7.2512, 7.2527, 7.2541, 7.2577, 7.2615, 7.2607, 7.2622, 7.2641, 7.2656, 7.2648, 7.264, 7.2632, 7.2626, 7.2619, 7.2635, 7.2627, 7.2621, 7.2615, 7.2608, 7.2601, 7.2615, 7.261, 7.2603, 7.2596, 7.2591, 7.2583, 7.2574, 7.2588, 7.258, 7.2595, 7.2589, 7.267, 7.2665, 7.2661, 7.2655, 7.2672, 7.2702, 7.2698, 7.2691, 7.2685, 7.272, 7.2713, 7.2707, 7.2703, 7.2697, 7.2695, 7.2689, 7.2682, 7.2674, 7.267, 7.2694, 7.2766, 7.2759, 7.2732, 7.2728, 7.2727, 7.2741, 7.2736, 7.2728, 7.2744, 7.2716, 7.273, 7.2723, 7.2717, 7.2711, 7.2729, 7.2745, 7.2741, 7.2736, 7.2736, 7.273, 7.2723, 7.2717, 7.2709, 7.2701, 7.2736, 7.2731, 7.2746, 7.2765, 7.2757, 7.2751, 7.2723, 7.2716, 7.2709, 7.2703, 7.2698, 7.2691, 7.2686, 7.27, 7.2697, 7.269, 7.2685, 7.27, 7.2692, 7.2685, 7.2679, 7.2674, 7.267, 7.2684, 7.2676, 7.2669, 7.2668, 7.2712, 7.2705, 7.2698, 7.269, 7.2685, 7.2699, 7.2693, 7.2706, 7.27, 7.2692, 7.2686, 7.2679, 7.2675, 7.269, 7.2683, 7.2696, 7.269, 7.2686, 7.2679, 7.2699, 7.2695, 7.2689, 7.2704, 7.2696, 7.269, 7.2683, 7.2675, 7.2667, 7.266, 7.2654, 7.2647, 7.2646, 7.2639, 7.2634, 7.2628, 7.2621, 7.2595, 7.2588, 7.2581, 7.2577, 7.2571, 7.2567, 7.2561, 7.2556, 7.255, 7.2564, 7.2577, 7.2571, 7.2575, 7.257, 7.2564, 7.2557, 7.2549, 7.2546, 7.252, 7.2515, 7.2508, 7.2521, 7.2514, 7.2683, 7.2657, 7.2654, 7.2691, 7.2687, 7.2682, 7.2675, 7.2667, 7.266, 7.2718, 7.2711, 7.2709, 7.2702, 7.2716, 7.2709, 7.2725, 7.2718, 7.2733, 7.2748, 7.2741, 7.2734, 7.2748, 7.274, 7.2733, 7.2767, 7.2759, 7.2751, 7.2746, 7.2739, 7.2752, 7.2765, 7.2757, 7.277, 7.2812, 7.2811, 7.2811, 7.2804, 7.2799, 7.2792, 7.2786, 7.2779, 7.2772, 7.2785, 7.2781, 7.2775, 7.2789, 7.2782, 7.2818, 7.2813, 7.2807, 7.2801, 7.2795, 7.2789, 7.2787, 7.2779, 7.2772, 7.2764, 7.2757, 7.275, 7.2743, 7.2736, 7.271, 7.2704, 7.2717, 7.2729, 7.2723, 7.2718, 7.2711, 7.2728, 7.2724, 7.2717, 7.273, 7.2722, 7.2714, 7.2708, 7.2705, 7.2699, 7.2694, 7.2707, 7.272, 7.2713, 7.2727, 7.2722, 7.2716, 7.2709, 7.2703, 7.2706, 7.27, 7.2694, 7.2687, 7.2681, 7.2675, 7.2673, 7.2666, 7.2659, 7.2653, 7.2648, 7.2661, 7.2656, 7.2648, 7.2662, 7.2657, 7.265, 7.2662, 7.2675, 7.2674, 7.2673, 7.2666, 7.2659, 7.2653, 7.265, 7.2667, 7.2683, 7.2686, 7.2681, 7.2674, 7.2667, 7.2662, 7.2655, 7.2649, 7.2642, 7.2635, 7.2628, 7.2623, 7.2637, 7.263, 7.2634, 7.263, 7.2643, 7.2636, 7.2631, 7.2625, 7.2618, 7.2613, 7.2606, 7.26, 7.2595, 7.259, 7.2585, 7.2579, 7.2592, 7.2593, 7.2587, 7.2582, 7.2557, 7.2556, 7.2549, 7.2561, 7.2556, 7.2549, 7.2562, 7.2575, 7.2572, 7.2567, 7.2561, 7.2555, 7.2568, 7.2562, 7.2576, 7.2589, 7.2583, 7.2576, 7.2571, 7.2564, 7.2557, 7.2552, 7.2565, 7.2558, 7.257, 7.2563, 7.2556, 7.2549, 7.256, 7.2553, 7.2548, 7.2577, 7.2571, 7.2566, 7.2564, 7.2557, 7.2552, 7.2546, 7.2558, 7.257, 7.2547, 7.2541, 7.2553, 7.2548, 7.2541, 7.2553, 7.2567, 7.2562, 7.2555, 7.2548, 7.2541, 7.2554, 7.2574, 7.2576, 7.2573, 7.2566, 7.2578, 7.2591, 7.259, 7.2583, 7.2578, 7.2576, 7.2569, 7.2565, 7.2559, 7.2553, 7.2548, 7.256, 7.2553, 7.2546, 7.2541, 7.2553, 7.2568, 7.2563, 7.2558, 7.2552, 7.2565, 7.2577, 7.2576, 7.2571, 7.2566, 7.2561, 7.2556, 7.257, 7.2563, 7.2556, 7.2561, 7.2557, 7.257, 7.2584, 7.2596, 7.2592, 7.2586, 7.2599, 7.2593, 7.2597, 7.2616, 7.2629, 7.2626, 7.263, 7.2624, 7.2619, 7.2615, 7.2608, 7.2605, 7.2618, 7.2611, 7.2605, 7.2598, 7.2611, 7.2624, 7.2617, 7.261, 7.2622, 7.2618, 7.2611, 7.2606, 7.2599, 7.2593, 7.2607, 7.26, 7.2617, 7.261, 7.2603, 7.2597, 7.259, 7.2601, 7.2596, 7.2608, 7.2604, 7.26, 7.2594, 7.259, 7.2604, 7.2618, 7.2613, 7.2591, 7.2606, 7.2619, 7.2613, 7.2589, 7.2583, 7.2583, 7.2576, 7.2572, 7.2549, 7.2545, 7.2522, 7.2518, 7.2511, 7.2507, 7.2519, 7.2514, 7.2509, 7.254, 7.2553, 7.2547, 7.2542, 7.2536, 7.2529, 7.2526, 7.2538, 7.255, 7.2543, 7.2538, 7.2531, 7.2527, 7.254, 7.2554, 7.2549, 7.2562, 7.2557, 7.2552, 7.2551, 7.2544, 7.2557, 7.2551, 7.2546, 7.2589, 7.2585, 7.2578, 7.2591, 7.2584, 7.2578, 7.2594, 7.2588, 7.2591, 7.2587, 7.2584, 7.2581, 7.2578, 7.2571, 7.2567, 7.2561, 7.2556, 7.2551, 7.2528, 7.2524, 7.2519, 7.2514, 7.251, 7.2541, 7.2537, 7.2607, 7.2619, 7.2615, 7.264, 7.2653, 7.2648, 7.2642, 7.2657, 7.2651, 7.2645, 7.2622, 7.2635, 7.2648, 7.2642, 7.2638, 7.2633, 7.2627, 7.2621, 7.2615, 7.2622, 7.2634, 7.2633, 7.2646, 7.264, 7.2633, 7.2629, 7.2623, 7.2616, 7.2609, 7.2622, 7.2615, 7.2609, 7.2603, 7.2615, 7.261, 7.2604, 7.2598, 7.2597, 7.2609, 7.2603, 7.2689, 7.2682, 7.266, 7.2638, 7.2665, 7.266, 7.2653, 7.2665, 7.2661, 7.2673, 7.2685, 7.2681, 7.2696, 7.269, 7.2687, 7.2682, 7.2678, 7.2672, 7.2688, 7.2683, 7.2679, 7.2675, 7.267, 7.2684, 7.268, 7.2677, 7.2672, 7.2666, 7.266, 7.2654, 7.2649, 7.2643, 7.2655, 7.2667, 7.2678, 7.2674, 7.2671, 7.2665, 7.2683, 7.2694, 7.2687, 7.27, 7.2712, 7.2726, 7.2721, 7.2715, 7.2714, 7.2727, 7.2744, 7.2738, 7.2731, 7.2748, 7.2743, 7.2775, 7.2787, 7.2798, 7.2811, 7.2805, 7.2801, 7.2795, 7.2789, 7.2802, 7.2796, 7.279, 7.2802, 7.2797, 7.2792, 7.2786, 7.2781, 7.2777, 7.2771, 7.2784, 7.2778, 7.2785, 7.2779, 7.2774, 7.2787, 7.2782, 7.2776, 7.2774, 7.2786, 7.278, 7.2792, 7.2786, 7.278, 7.2757, 7.2735, 7.2789, 7.2801, 7.2797, 7.2817, 7.2812, 7.2806, 7.2818, 7.2812, 7.2806, 7.28, 7.2795, 7.279, 7.2785, 7.278, 7.2775, 7.2787, 7.2782, 7.2813, 7.2827, 7.2859, 7.2854, 7.285, 7.2845, 7.2842, 7.2854, 7.2848, 7.286, 7.2871, 7.2849, 7.2846, 7.2858, 7.2851, 7.2847, 7.2858, 7.2853, 7.2876, 7.287, 7.2865, 7.2878, 7.2872, 7.2868, 7.2881, 7.2876, 7.287, 7.2883, 7.2896, 7.2891, 7.2886, 7.2882, 7.2877, 7.2871, 7.2865, 7.2876, 7.2854, 7.2833, 7.2826, 7.2838, 7.2849, 7.2845, 7.2875, 7.2869, 7.294, 7.2952, 7.2946, 7.2942, 7.2936, 7.293, 7.2925, 7.2919, 7.2913, 7.2909, 7.292, 7.2914, 7.2908, 7.289, 7.2889, 7.2871, 7.2865, 7.2861, 7.289, 7.2887, 7.2881, 7.2876, 7.287, 7.2865, 7.2858, 7.2871, 7.2864, 7.2858, 7.287, 7.2863, 7.2857, 7.2851, 7.2867, 7.2863, 7.2857, 7.2851, 7.2845, 7.2856, 7.285, 7.2844, 7.2855, 7.2849, 7.2844, 7.284, 7.2836, 7.2847, 7.2842, 7.2836, 7.2831, 7.2828, 7.2822, 7.2833, 7.2828, 7.2823, 7.2834, 7.2831, 7.2827, 7.2839, 7.2833, 7.2828, 7.2825, 7.2821, 7.2817, 7.2813, 7.2824, 7.2819, 7.2815, 7.2812, 7.2809, 7.2803, 7.2816, 7.2828, 7.2822, 7.2816, 7.281, 7.2805, 7.2799, 7.2793, 7.2788, 7.2783, 7.2761, 7.2755, 7.2765, 7.2777, 7.2771, 7.279, 7.2784, 7.2778, 7.2773, 7.2769, 7.2781, 7.2777, 7.2789, 7.2786, 7.2784, 7.2778, 7.279, 7.2802, 7.2799, 7.281, 7.2804, 7.2798, 7.2809, 7.2803, 7.2798, 7.2793, 7.2787, 7.2782, 7.2778, 7.2773, 7.2768, 7.2765, 7.278, 7.2792, 7.2786, 7.278, 7.2776, 7.2772, 7.2783, 7.2777, 7.2771, 7.2766, 7.2777, 7.2771, 7.2768, 7.2762, 7.2756, 7.2752, 7.2763, 7.276, 7.2754, 7.2751, 7.273, 7.2726, 7.272, 7.2699, 7.2695, 7.2694, 7.2692, 7.2703, 7.2705, 7.2699, 7.2694, 7.2673, 7.2667, 7.2663, 7.2658, 7.2653, 7.2649, 7.2645, 7.2639, 7.2636, 7.2632, 7.2643, 7.2637, 7.2632, 7.2629, 7.2625, 7.2619, 7.2614, 7.2608, 7.2602, 7.2596, 7.2621, 7.2615, 7.261, 7.2604, 7.2598, 7.2609, 7.2629, 7.2624, 7.2606, 7.2618, 7.2615, 7.2612, 7.2608, 7.261, 7.2605, 7.2599, 7.2593, 7.2572, 7.2568, 7.2562, 7.2557, 7.2554, 7.255, 7.2544, 7.2538, 7.2539, 7.2533, 7.2527, 7.2523, 7.2535, 7.253, 7.2524, 7.2519, 7.253, 7.2525, 7.252, 7.2514, 7.2509, 7.2519, 7.2533, 7.2531, 7.2525, 7.2519, 7.2515, 7.2509, 7.2519, 7.2515, 7.251, 7.2506, 7.2517, 7.2513, 7.2507, 7.2502, 7.2497, 7.2493, 7.2488, 7.2498, 7.2494, 7.2492, 7.2503, 7.25, 7.2494, 7.25, 7.2497, 7.2491, 7.2486, 7.2481, 7.2477, 7.2471, 7.2467, 7.2462, 7.2473, 7.2496, 7.249, 7.2484, 7.2479, 7.2474, 7.2468, 7.2462, 7.2473, 7.2484, 7.2495, 7.2489, 7.2502, 7.2497, 7.2493, 7.2489, 7.25, 7.2511, 7.2507, 7.2501, 7.2501, 7.2497, 7.2492, 7.2502, 7.2498, 7.2493, 7.249, 7.2486, 7.2483, 7.2479, 7.248, 7.2476, 7.2472, 7.2467, 7.2451, 7.2464, 7.2459, 7.2455, 7.2466, 7.2477, 7.2473, 7.2484, 7.2478, 7.2477, 7.2474, 7.2475, 7.2469, 7.2466, 7.2462, 7.2458, 7.2452, 7.2447, 7.2441, 7.2436, 7.2446, 7.2456, 7.2451, 7.2448, 7.2459, 7.2469, 7.2465, 7.2461, 7.2443, 7.2438, 7.2432, 7.2426, 7.2437, 7.2448, 7.2445, 7.244, 7.2436, 7.2432, 7.2429, 7.2426, 7.2437, 7.2433, 7.2428, 7.2423, 7.2419, 7.24, 7.2411, 7.241, 7.2406, 7.2417, 7.2415, 7.2411, 7.2423, 7.244, 7.2451, 7.2431, 7.2427, 7.2438, 7.2434, 7.2429, 7.2425, 7.2421, 7.2416, 7.2413, 7.2424, 7.2419, 7.2413, 7.2441, 7.2436, 7.2431, 7.2446, 7.2441, 7.2437, 7.2432, 7.2428, 7.241, 7.2405, 7.2401, 7.2398, 7.2379, 7.2361, 7.2373, 7.2369, 7.2363, 7.236, 7.2356, 7.2352, 7.2353, 7.2363, 7.2357, 7.2355, 7.235, 7.2362, 7.2358, 7.2353, 7.2348, 7.2343, 7.2339, 7.235, 7.2346, 7.234, 7.2335, 7.233, 7.2311, 7.2306, 7.2316, 7.2316, 7.2326, 7.2323, 7.232, 7.2315, 7.2309, 7.2305, 7.2301, 7.2296, 7.2292, 7.2289, 7.2284, 7.228, 7.2291, 7.2285, 7.2281, 7.2277, 7.2273, 7.227, 7.228, 7.2289, 7.2285, 7.228, 7.2276, 7.2271, 7.2267, 7.2278, 7.229, 7.2287, 7.2298, 7.2293, 7.2303, 7.2298, 7.2292, 7.2287, 7.2283, 7.2266, 7.2263, 7.2259, 7.227, 7.2268, 7.2267, 7.2262, 7.227, 7.2265, 7.226, 7.2259, 7.2254, 7.2249, 7.2244, 7.2239, 7.2235, 7.223, 7.2226, 7.2221, 7.2232, 7.2227, 7.2226, 7.2283, 7.2279, 7.226, 7.2302, 7.2297, 7.2307, 7.2306, 7.2288, 7.2315, 7.231, 7.2306, 7.2301, 7.2296, 7.2292, 7.2293, 7.2304, 7.2313, 7.2323, 7.2333, 7.2328, 7.2337, 7.2333, 7.2329, 7.2338, 7.2334, 7.233, 7.2325, 7.2321, 7.2316, 7.2325, 7.232, 7.2329, 7.2326, 7.2336, 7.2331, 7.2341, 7.2339, 7.2334, 7.2333, 7.2343, 7.2354, 7.235, 7.2344, 7.234, 7.2335, 7.2331, 7.2326, 7.2321, 7.2318, 7.2321, 7.2316, 7.2318, 7.2328, 7.2325, 7.2321, 7.2317, 7.2357, 7.2352, 7.2347, 7.2343, 7.2339, 7.2349, 7.2344, 7.234, 7.235, 7.235, 7.2346, 7.2341, 7.2336, 7.233, 7.2325, 7.2321, 7.2337, 7.2334, 7.2331, 7.2326, 7.2337, 7.2332, 7.2333, 7.2346, 7.2342, 7.2337, 7.2337, 7.2348, 7.2343, 7.2338, 7.2348, 7.2346, 7.2341, 7.2336, 7.2333, 7.2328, 7.2323, 7.2334, 7.2331, 7.2326, 7.2322, 7.2317, 7.2312, 7.2308, 7.2303, 7.2299, 7.2309, 7.2307, 7.2305, 7.2301, 7.2296, 7.2307, 7.2362, 7.2356, 7.2338, 7.232, 7.2317, 7.2312, 7.2309, 7.2318, 7.2328, 7.2324, 7.2319, 7.2315, 7.231, 7.2335, 7.233, 7.2327, 7.2323, 7.2318, 7.2313, 7.2308, 7.2303, 7.2357, 7.2352, 7.2347, 7.2349, 7.2346, 7.237, 7.2365, 7.2364, 7.2361, 7.2357, 7.2353, 7.2349, 7.2361, 7.2358, 7.2353, 7.2349, 7.2359, 7.2354, 7.2351, 7.236, 7.2342, 7.2353, 7.2348, 7.2344, 7.2339, 7.2335, 7.2348, 7.2365, 7.236, 7.2355, 7.2352, 7.2352, 7.2347, 7.2342, 7.2337, 7.2333, 7.2344, 7.2342, 7.2338, 7.2348, 7.2344, 7.234, 7.2335, 7.2332, 7.2336, 7.2331, 7.2326, 7.2338, 7.2348, 7.2352, 7.2363, 7.2362, 7.2357, 7.2354, 7.235, 7.2346, 7.2355, 7.2352, 7.2376, 7.2373, 7.2382, 7.2378, 7.236, 7.2356, 7.2353, 7.235, 7.2345, 7.234, 7.2337, 7.2333, 7.2329, 7.2326, 7.2336, 7.2321, 7.2316, 7.2312, 7.2322, 7.2319, 7.2301, 7.2283, 7.2282, 7.2277, 7.2272, 7.2267, 7.2263, 7.2258, 7.2253, 7.2248, 7.2243, 7.2238, 7.2234, 7.223, 7.2242, 7.2238, 7.2234, 7.2229, 7.2224, 7.222, 7.2219, 7.223, 7.2226, 7.2237, 7.2233, 7.2229, 7.2237, 7.2232, 7.2242, 7.2238, 7.2247, 7.2244, 7.2239, 7.2234, 7.223, 7.2225, 7.2233, 7.2243, 7.2238, 7.2234, 7.2243, 7.2238, 7.2248, 7.2244, 7.2255, 7.2265, 7.2261, 7.2256, 7.2251, 7.2246, 7.2243, 7.2238, 7.2248, 7.2258, 7.2253, 7.225, 7.225, 7.2259, 7.2255, 7.2252, 7.2247, 7.2243, 7.2238, 7.2233, 7.2232, 7.2229, 7.2225, 7.2236, 7.2232, 7.2228, 7.2223, 7.2218, 7.221, 7.2206, 7.2201, 7.2199, 7.2195, 7.2219, 7.2287, 7.2295, 7.2292, 7.2307, 7.2317, 7.2382, 7.2391, 7.2388, 7.241, 7.2411, 7.242, 7.2429, 7.2426, 7.2422, 7.2424, 7.244, 7.2435, 7.243, 7.2426, 7.2421, 7.2437, 7.2446, 7.2435, 7.2435, 7.2432, 7.2428, 7.2424, 7.242, 7.2416, 7.2412, 7.2407, 7.2403, 7.2399, 7.2394, 7.2404, 7.2415, 7.2412, 7.242, 7.2416, 7.2412, 7.2422, 7.2418, 7.2413, 7.2422, 7.2432, 7.2428, 7.2439, 7.2448, 7.2445, 7.2456, 7.2466, 7.2477, 7.2473, 7.2483, 7.2492, 7.2501, 7.2496, 7.2478, 7.2488, 7.2484, 7.2508, 7.2517, 7.2513, 7.2522, 7.2527, 7.2523, 7.2532, 7.2527, 7.2522, 7.2517, 7.253, 7.2542, 7.2551, 7.2534, 7.2529, 7.2524, 7.2522, 7.2517, 7.2512, 7.2521, 7.253, 7.2525, 7.2521, 7.2516, 7.2512, 7.2508, 7.2503, 7.2499, 7.2509, 7.2505, 7.2502, 7.2502, 7.2497, 7.2496, 7.2491, 7.25, 7.2495, 7.2511, 7.2508, 7.2504, 7.2514, 7.2509, 7.2518, 7.2514, 7.2497, 7.2507, 7.2516, 7.2513, 7.2509, 7.2505, 7.2515, 7.2525, 7.2521, 7.2516, 7.252, 7.2515, 7.2511, 7.2507, 7.2503, 7.2511, 7.2506, 7.2514, 7.251, 7.2505, 7.2501, 7.2509, 7.2517, 7.2514, 7.2512, 7.251, 7.2506, 7.2492, 7.2488, 7.2484, 7.2494, 7.249, 7.2499, 7.2508, 7.2506, 7.2501, 7.2496, 7.2491, 7.25, 7.2497, 7.2493, 7.2503, 7.25, 7.2502, 7.2525, 7.2534, 7.2542, 7.2539, 7.2535, 7.2531, 7.254, 7.2563, 7.2563, 7.2572, 7.2568, 7.2564, 7.2561, 7.2556, 7.2539, 7.2547, 7.2543, 7.2539, 7.2534, 7.253, 7.2513, 7.2522, 7.2505, 7.2541, 7.2528, 7.2514, 7.251, 7.2505, 7.2514, 7.2511, 7.2506, 7.2516, 7.2511, 7.252, 7.2516, 7.2512, 7.2508, 7.2503, 7.2501, 7.25, 7.2495, 7.2491, 7.25, 7.2497, 7.2494, 7.2478, 7.2473, 7.2468, 7.2465, 7.2461, 7.2457, 7.2453, 7.2448, 7.2443, 7.2439, 7.2435, 7.2431, 7.2427, 7.2423, 7.2419, 7.2415, 7.241, 7.2406, 7.2402, 7.2397, 7.2392, 7.2389, 7.2385, 7.238, 7.2376, 7.2372, 7.2368, 7.2363, 7.2359, 7.2355, 7.2366, 7.2362, 7.2374, 7.2371, 7.2367, 7.2363, 7.2361, 7.2357, 7.2354, 7.2351, 7.2347, 7.2343, 7.2341, 7.2339, 7.2338, 7.2334, 7.2345, 7.2354, 7.2363, 7.2372, 7.2368, 7.2363, 7.2359, 7.2356, 7.2353, 7.2349, 7.2357, 7.2352, 7.2335, 7.2331, 7.2327, 7.2324, 7.2319, 7.2328, 7.2337, 7.2346, 7.2341, 7.2337, 7.2333, 7.2329, 7.2326, 7.2334, 7.233, 7.2339, 7.2334, 7.2332, 7.2328, 7.2326, 7.2321, 7.2329, 7.2329, 7.2386, 7.2381, 7.2377, 7.24, 7.2409, 7.2405, 7.2401, 7.2397, 7.2394, 7.2393, 7.239, 7.2401, 7.2387, 7.2384, 7.2393, 7.2388, 7.2385, 7.2382, 7.2377, 7.2374, 7.237, 7.2365, 7.236, 7.2357, 7.2353, 7.2349, 7.2345, 7.2356, 7.2353, 7.2348, 7.2343, 7.234, 7.2337, 7.2333, 7.2328, 7.2326, 7.2337, 7.2346, 7.2341, 7.2336, 7.2332, 7.2328, 7.2337, 7.2321, 7.233, 7.2328, 7.2336, 7.2396, 7.2391, 7.2387, 7.2395, 7.239, 7.2385, 7.238, 7.2376, 7.2373, 7.2369, 7.2377, 7.2374, 7.2358, 7.2342, 7.2338, 7.2333, 7.2329, 7.2324, 7.2332, 7.2327, 7.2323, 7.2331, 7.2328, 7.2336, 7.2333, 7.2329, 7.2327, 7.2322, 7.2331, 7.2328, 7.2323, 7.2319, 7.2318, 7.2302, 7.2311, 7.2307, 7.2319, 7.2327, 7.2324, 7.232, 7.2329, 7.2338, 7.2335, 7.2344, 7.2341, 7.2338, 7.236, 7.2356, 7.2351, 7.2387, 7.2395, 7.2443, 7.244, 7.2436, 7.2432, 7.2457, 7.2466, 7.2474, 7.2496, 7.2506, 7.2503, 7.2487, 7.2483, 7.2478, 7.2486, 7.2481, 7.2477, 7.2473, 7.247, 7.2466, 7.2475, 7.2471, 7.2469, 7.2465, 7.2462, 7.2457, 7.2453, 7.2448, 7.2444, 7.2453, 7.2461, 7.2457, 7.2453, 7.2449, 7.2444, 7.2442, 7.245, 7.2446, 7.2442, 7.2463, 7.2459, 7.2454, 7.245, 7.2446, 7.2442, 7.2438, 7.2436, 7.2448, 7.2489, 7.2485, 7.2472, 7.2481, 7.2477, 7.2476, 7.2477, 7.2486, 7.2482, 7.2478, 7.2503, 7.25, 7.2497, 7.2483, 7.2494, 7.2491, 7.2487, 7.2521, 7.2543, 7.2551, 7.2548, 7.2544, 7.2553, 7.2549, 7.2545, 7.2541, 7.2537, 7.2533, 7.2542, 7.2551, 7.2548, 7.2545, 7.2532, 7.2528, 7.2524, 7.2521, 7.2517, 7.2526, 7.2522, 7.2518, 7.2514, 7.2511, 7.2507, 7.2504, 7.25, 7.2496, 7.2481, 7.2477, 7.2473, 7.2482, 7.2467, 7.2463, 7.2459, 7.2455, 7.2452, 7.2449, 7.2445, 7.2442, 7.2438, 7.2436, 7.2444, 7.2428, 7.2436, 7.2444, 7.2465, 7.2461, 7.2456, 7.244, 7.2438, 7.2451, 7.246, 7.2504, 7.2501, 7.2497, 7.2494, 7.2503, 7.25, 7.2496, 7.2496, 7.2496, 7.2494, 7.2497, 7.2507, 7.2503, 7.2502, 7.2499, 7.2496, 7.2504, 7.25, 7.2497, 7.2505, 7.2513, 7.2521, 7.2529, 7.2525, 7.2521, 7.2517, 7.2525, 7.2523, 7.2519, 7.2515, 7.2511, 7.2519, 7.2515, 7.25, 7.2509, 7.2519, 7.2514, 7.2545, 7.2553, 7.2552, 7.2549, 7.2545, 7.2541, 7.2538, 7.2534, 7.253, 7.2526, 7.2522, 7.2507, 7.2503, 7.2511, 7.2519, 7.2517, 7.2525, 7.2522, 7.252, 7.2528, 7.2524, 7.252, 7.2505, 7.2513, 7.2511, 7.2507, 7.2502, 7.2497, 7.2507, 7.2503, 7.2501, 7.2498, 7.2507, 7.2515, 7.2513, 7.2497, 7.2505, 7.2501, 7.2498, 7.2494, 7.249, 7.2487, 7.2495, 7.2491, 7.2487, 7.2494, 7.249, 7.2487, 7.2494, 7.249, 7.2486, 7.2484, 7.2481, 7.2479, 7.2499, 7.2495, 7.2507, 7.2505, 7.2512, 7.2509, 7.2516, 7.2512, 7.2509, 7.2505, 7.2501, 7.2497, 7.2493, 7.2501, 7.2486, 7.2482, 7.249, 7.2486, 7.2482, 7.249, 7.2486, 7.2494, 7.2503, 7.2499, 7.2529, 7.2525, 7.2521, 7.2517, 7.2514, 7.2522, 7.2518, 7.2514, 7.251, 7.2506, 7.2503, 7.2499, 7.2495, 7.2503, 7.2499, 7.2496, 7.2492, 7.2489, 7.2496, 7.2492, 7.25, 7.2496, 7.2494, 7.2503, 7.251, 7.2506, 7.2503, 7.251, 7.2507, 7.2516, 7.2526, 7.2521, 7.2518, 7.2503, 7.2512, 7.2509, 7.2506, 7.2503, 7.251, 7.2507, 7.2504, 7.2512, 7.2509, 7.2494, 7.249, 7.2499, 7.2495, 7.2495, 7.2492, 7.2501, 7.2488, 7.2496, 7.2509, 7.2513, 7.2521, 7.2519, 7.2506, 7.2502, 7.251, 7.2509, 7.2512, 7.2509, 7.2517, 7.2524, 7.256, 7.2556, 7.257, 7.257, 7.2566, 7.2562, 7.256, 7.2561, 7.2557, 7.2553, 7.2551, 7.2548, 7.2544, 7.2552, 7.2548, 7.2545, 7.2543, 7.254, 7.255, 7.2546, 7.2531, 7.2527, 7.2513, 7.2509, 7.2542, 7.2538, 7.2533, 7.2541, 7.2538, 7.2535, 7.2532, 7.254, 7.2561, 7.2558, 7.2555, 7.2562, 7.2571, 7.2569, 7.2565, 7.2561, 7.2569, 7.2565, 7.255, 7.2548, 7.259, 7.2594, 7.2579, 7.2579, 7.2587, 7.2607, 7.2603, 7.2599, 7.2596, 7.2604, 7.2611, 7.2619, 7.2615, 7.2611, 7.2609, 7.2594, 7.2591, 7.2587, 7.2595, 7.2603, 7.2611, 7.2596, 7.2592, 7.2589, 7.2585, 7.258, 7.2576, 7.2572, 7.2568, 7.2564, 7.256, 7.2558, 7.2559, 7.2568, 7.2576, 7.2574, 7.2559, 7.2545, 7.2531, 7.2527, 7.2524, 7.2521, 7.2517, 7.2514, 7.251, 7.2507, 7.2515, 7.2523, 7.2556, 7.2555, 7.2552, 7.2548, 7.2555, 7.2574, 7.257, 7.2577, 7.2584, 7.2581, 7.2577, 7.2585, 7.2582, 7.2578, 7.2577, 7.2574, 7.2571, 7.2568, 7.2564, 7.256, 7.2546, 7.2543, 7.2551, 7.2548, 7.2546, 7.2556, 7.2552, 7.2571, 7.2581, 7.2589, 7.2586, 7.2583, 7.258, 7.2576, 7.2573, 7.2573, 7.257, 7.2578, 7.2586, 7.2582, 7.2568, 7.2564, 7.256, 7.2556, 7.2565, 7.2573, 7.257, 7.2567, 7.2565, 7.2573, 7.2571, 7.2568, 7.2564, 7.2561, 7.2568, 7.2576, 7.2574, 7.2571, 7.2567, 7.2575, 7.2582, 7.2578, 7.2586, 7.2572, 7.258, 7.2576, 7.2584, 7.2581, 7.2577, 7.2574, 7.257, 7.2555, 7.2552, 7.256, 7.2556, 7.2554, 7.255, 7.2546, 7.2543, 7.2551, 7.2548, 7.2551, 7.2547, 7.2543, 7.2539, 7.2536, 7.2545, 7.2531, 7.2527, 7.2523, 7.2519, 7.2515, 7.2527, 7.2524, 7.251, 7.2506, 7.2513, 7.2509, 7.2505, 7.2501, 7.2497, 7.2493, 7.2489, 7.2485, 7.2493, 7.249, 7.2487, 7.2487, 7.2483, 7.2504, 7.2501, 7.2522, 7.2531, 7.2527, 7.2524, 7.2532, 7.2529, 7.2525, 7.2533, 7.2541, 7.2538, 7.2535, 7.2532, 7.2529, 7.2525, 7.2522, 7.2518, 7.2515, 7.2512, 7.2509, 7.2506, 7.2493, 7.249, 7.2487, 7.2484, 7.2482, 7.2478, 7.2474, 7.2471, 7.2468, 7.2465, 7.2462, 7.247, 7.2478, 7.2485, 7.2485, 7.2486, 7.2483, 7.248, 7.2478, 7.2475, 7.2472, 7.2471, 7.2468, 7.2464, 7.246, 7.2457, 7.2453, 7.246, 7.2456, 7.2453, 7.2452, 7.2448, 7.2444, 7.2452, 7.246, 7.2456, 7.2454, 7.245, 7.2436, 7.244, 7.2436, 7.2422, 7.2419, 7.2427, 7.2423, 7.2421, 7.2418, 7.2415, 7.2411, 7.2419, 7.2416, 7.2414, 7.2411, 7.2408, 7.2405, 7.2412, 7.2408, 7.2405, 7.2401, 7.2397, 7.2405, 7.2401, 7.2397, 7.2405, 7.2402, 7.2399, 7.2395, 7.2392, 7.24, 7.2396, 7.2394, 7.239, 7.2389, 7.2397, 7.2393, 7.2389, 7.2387, 7.2394, 7.239, 7.2386, 7.2382, 7.2379, 7.2376, 7.2383, 7.2379, 7.2375, 7.2373, 7.237, 7.2368, 7.2364, 7.2361, 7.2358, 7.2355, 7.2351, 7.2347, 7.2354, 7.235, 7.2385, 7.2392, 7.24, 7.2397, 7.2393, 7.2405, 7.2401, 7.2409, 7.241, 7.2406, 7.2402, 7.2399, 7.2396, 7.2392, 7.2389, 7.2387, 7.2373, 7.238, 7.2376, 7.2383, 7.2381, 7.2377, 7.2374, 7.2388, 7.2385, 7.2392, 7.2389, 7.2397, 7.2393, 7.2389, 7.2386, 7.2384, 7.2391, 7.2399, 7.2406, 7.2392, 7.2389, 7.2385, 7.2381, 7.2377, 7.2384, 7.2381, 7.2378, 7.2376, 7.2373, 7.236, 7.2346, 7.2343, 7.2339, 7.2336, 7.2332, 7.2329, 7.2328, 7.2325, 7.2322, 7.2319, 7.2326, 7.2322, 7.2318, 7.2315, 7.2312, 7.2308, 7.2313, 7.2322, 7.2318, 7.2327, 7.2324, 7.2321, 7.2329, 7.2318, 7.2314, 7.2311, 7.2309, 7.2297, 7.2294, 7.2291, 7.2288, 7.2285, 7.2281, 7.2279, 7.2275, 7.2271, 7.2267, 7.2263, 7.2261, 7.2261, 7.2268, 7.2264, 7.2251, 7.2248, 7.2246, 7.2253, 7.2251, 7.2248, 7.2244, 7.2241, 7.2237, 7.2233, 7.2241, 7.2238, 7.2235, 7.2231, 7.2228, 7.2224, 7.2231, 7.2231, 7.2227, 7.2235, 7.2231, 7.2229, 7.2237, 7.2233, 7.224, 7.2247, 7.2243, 7.2239, 7.2237, 7.2233, 7.2229, 7.2225, 7.2233, 7.2241, 7.2248, 7.2244, 7.2242, 7.224, 7.2247, 7.2259, 7.2257, 7.2264, 7.2272, 7.2269, 7.2267, 7.2274, 7.2286, 7.2283, 7.2281, 7.2278, 7.2274, 7.2271, 7.2269, 7.2298, 7.2296, 7.2282, 7.231, 7.2317, 7.2315, 7.2329, 7.2336, 7.2333, 7.2329, 7.2325, 7.2332, 7.2339, 7.2336, 7.2343, 7.2339, 7.2337, 7.2333, 7.2329, 7.2327, 7.2323, 7.233, 7.2327, 7.2324, 7.2332, 7.2341, 7.2349, 7.2357, 7.2354, 7.235, 7.2347, 7.2354, 7.236, 7.2357, 7.2364, 7.2362, 7.2369, 7.2365, 7.2352, 7.2349, 7.2357, 7.2355, 7.2351, 7.2353, 7.2349, 7.2336, 7.2345, 7.2342, 7.2339, 7.2337, 7.237, 7.2366, 7.2363, 7.236, 7.2347, 7.2343, 7.2359, 7.2355, 7.2352, 7.2348, 7.2344, 7.2341, 7.2339, 7.2335, 7.2333, 7.2331, 7.2328, 7.2335, 7.2332, 7.2328, 7.2325, 7.2353, 7.2349, 7.2356, 7.2353, 7.236, 7.2358, 7.2354, 7.236, 7.2356, 7.2353, 7.235, 7.2346, 7.2342, 7.2338, 7.2334, 7.233, 7.2327, 7.2329, 7.2326, 7.2323, 7.2319, 7.2326, 7.2344, 7.234, 7.2347, 7.2343, 7.2339, 7.2326, 7.2322, 7.2319, 7.2316, 7.2312, 7.231, 7.2317, 7.2327, 7.2314, 7.2321, 7.2318, 7.2314, 7.231, 7.2307, 7.2306, 7.2303, 7.231, 7.2298, 7.2306, 7.2304, 7.2301, 7.2309, 7.2305, 7.2302, 7.2298, 7.2306, 7.2303, 7.23, 7.2302, 7.231, 7.2317, 7.2324, 7.2321, 7.2329, 7.2317, 7.2324, 7.2325, 7.2333, 7.233, 7.2326, 7.2323, 7.2319, 7.2327, 7.2323, 7.233, 7.2338, 7.2334, 7.233, 7.2326, 7.2333, 7.2331, 7.2327, 7.2326, 7.2325, 7.2332, 7.2329, 7.2326, 7.2323, 7.2319, 7.2316, 7.2312, 7.2323, 7.2323, 7.2321, 7.2319, 7.2327, 7.2325, 7.2322, 7.233, 7.2326, 7.2322, 7.2319, 7.2315, 7.2312, 7.2319, 7.2317, 7.2314, 7.2321, 7.2328, 7.2325, 7.2322, 7.2318, 7.2314, 7.2321, 7.2318, 7.2325, 7.2321, 7.2317, 7.2313, 7.2309, 7.2305, 7.2301, 7.2297, 7.2294, 7.229, 7.2287, 7.2295, 7.2296, 7.2292, 7.2289, 7.2306, 7.2314, 7.2322, 7.232, 7.2327, 7.2323, 7.2313, 7.231, 7.2308, 7.2305, 7.2301, 7.2324, 7.2323, 7.2324, 7.2321, 7.2328, 7.2326, 7.2323, 7.2331, 7.2328, 7.2328, 7.2337, 7.2334, 7.2331, 7.2328, 7.2325, 7.2326, 7.2314, 7.2302, 7.2299, 7.2296, 7.2303, 7.23, 7.2287, 7.2294, 7.229, 7.2288, 7.2285, 7.2282, 7.2284, 7.2281, 7.228, 7.2278, 7.2275, 7.2272, 7.2269, 7.2265, 7.2262, 7.2258, 7.2266, 7.2274, 7.227, 7.2267, 7.2272, 7.2269, 7.2276, 7.2272, 7.2268, 7.2265, 7.2272, 7.2279, 7.2276, 7.2273, 7.2281, 7.2279, 7.2276, 7.2273, 7.227, 7.2267, 7.2264, 7.226, 7.2257, 7.2254, 7.2251, 7.2247, 7.2244, 7.2241, 7.2238, 7.2235, 7.2223, 7.221, 7.2206, 7.2203, 7.221, 7.2208, 7.2205, 7.2201, 7.2208, 7.2205, 7.2201, 7.2201, 7.2199, 7.2196, 7.2192, 7.219, 7.2196, 7.2202, 7.2198, 7.2195, 7.2192, 7.2189, 7.2186, 7.2194, 7.2194, 7.2219, 7.2241, 7.2237, 7.2234, 7.2231, 7.2237, 7.2244, 7.2251, 7.2247, 7.2245, 7.2252, 7.2258, 7.2258, 7.2256, 7.2263, 7.226, 7.2257, 7.2255, 7.2252, 7.2248, 7.2244, 7.2241, 7.2238, 7.2235, 7.2232, 7.2229, 7.2235, 7.2231, 7.2228, 7.2225, 7.2222, 7.2219, 7.2217, 7.2235, 7.2232, 7.225, 7.2248, 7.2255, 7.2251, 7.2248, 7.2245, 7.2243, 7.224, 7.2237, 7.2235, 7.2242, 7.224, 7.2247, 7.2244, 7.2231, 7.223, 7.2228, 7.2225, 7.2232, 7.2229, 7.2235, 7.2242, 7.2239, 7.2246, 7.2253, 7.2251, 7.2248, 7.2249, 7.2245, 7.2252, 7.2259, 7.2269, 7.2266, 7.2274, 7.2271, 7.2279, 7.2276, 7.2273, 7.2269, 7.2266, 7.2263, 7.2261, 7.2258, 7.2255, 7.2252, 7.2248, 7.2245, 7.2242, 7.2238, 7.2225, 7.2222, 7.2219, 7.2215, 7.2213, 7.221, 7.2208, 7.2204, 7.22, 7.2197, 7.2194, 7.2202, 7.2208, 7.2215, 7.2212, 7.221, 7.2207, 7.2203, 7.2202, 7.2199, 7.2196, 7.2193, 7.219, 7.2187, 7.2184, 7.2182, 7.2179, 7.2176, 7.2174, 7.2171, 7.2168, 7.2165, 7.2162, 7.2159, 7.2166, 7.2168, 7.2165, 7.2162, 7.2158, 7.2166, 7.2173, 7.216, 7.2158, 7.2156, 7.2154, 7.215, 7.2146, 7.2142, 7.2142, 7.214, 7.2147, 7.2144, 7.2142, 7.215, 7.2147, 7.2154, 7.2181, 7.2171, 7.2169, 7.2166, 7.2164, 7.2161, 7.2159, 7.2157, 7.2154, 7.2151, 7.2148, 7.2146, 7.2142, 7.2139, 7.2136, 7.2143, 7.2139, 7.2137, 7.2135, 7.2132, 7.2129, 7.2127, 7.2124, 7.2121, 7.2117, 7.2114, 7.2121, 7.2117, 7.2114, 7.2121, 7.2118, 7.2124, 7.2112, 7.2119, 7.2115, 7.2121, 7.2119, 7.2137, 7.2135, 7.2132, 7.2131, 7.216, 7.2148, 7.2147, 7.2144, 7.2151, 7.2148, 7.2154, 7.2151, 7.2148, 7.2146, 7.2145, 7.2142, 7.2149, 7.2146, 7.2143, 7.214, 7.2137, 7.2144, 7.2142, 7.2139, 7.2135, 7.2132, 7.2136, 7.2143, 7.214, 7.214, 7.2137, 7.2135, 7.2131, 7.2127, 7.2124, 7.212, 7.2117, 7.2114, 7.2111, 7.2108, 7.2104, 7.2092, 7.2089, 7.2087, 7.2094, 7.2091, 7.2089, 7.2096, 7.2093, 7.2101, 7.2109, 7.2106, 7.2113, 7.211, 7.2107, 7.2103, 7.2103, 7.2111, 7.2101, 7.2099, 7.2096, 7.2093, 7.2101, 7.2099, 7.2097, 7.2122, 7.2119, 7.2116, 7.2115, 7.2122, 7.2119, 7.2126, 7.2124, 7.2131, 7.2138, 7.2135, 7.2142, 7.2139, 7.2136, 7.2133, 7.213, 7.2129, 7.2126, 7.2114, 7.2111, 7.2108, 7.2096, 7.2084, 7.2072, 7.2069, 7.2066, 7.2073, 7.207, 7.2066, 7.2072, 7.206, 7.2058, 7.2065, 7.2071, 7.2088, 7.2094, 7.2091, 7.2108, 7.2114, 7.211, 7.2107, 7.2105, 7.2112, 7.2111, 7.2099, 7.2096, 7.2094, 7.2092, 7.2089, 7.2096, 7.2093, 7.2092, 7.2099, 7.2096, 7.2084, 7.2082, 7.2079, 7.2076, 7.2074, 7.2074, 7.2071, 7.2071, 7.2068, 7.2065, 7.2062, 7.2061, 7.2068, 7.2065, 7.2063, 7.2061, 7.2058, 7.2055, 7.2053, 7.2059, 7.2056, 7.2053, 7.206, 7.2057, 7.2056, 7.2053, 7.2051, 7.2061, 7.2071000000000005, 7.2078, 7.2084, 7.2082, 7.2092, 7.2099, 7.2096, 7.2094, 7.2102, 7.21, 7.2097, 7.2094, 7.21, 7.2097, 7.2095, 7.2092, 7.2089, 7.2086, 7.2086, 7.2092, 7.2089, 7.2087, 7.2085, 7.2084, 7.2081, 7.2077, 7.2073, 7.2072, 7.2078, 7.2075, 7.2072, 7.2069, 7.2066, 7.2076, 7.208600000000001, 7.2093, 7.209, 7.2096, 7.2103, 7.211, 7.2116, 7.2123, 7.2133, 7.214300000000001, 7.214, 7.2137, 7.2135, 7.2133, 7.2141, 7.2139, 7.2139, 7.2138, 7.2137, 7.214700000000001, 7.215700000000001, 7.216700000000001, 7.2165, 7.2162, 7.215, 7.2147, 7.2145, 7.2151, 7.2157, 7.2163, 7.216, 7.216, 7.2157, 7.2165, 7.2162, 7.2159, 7.2156, 7.2153, 7.215, 7.2147, 7.2144, 7.215, 7.2139, 7.2127, 7.2126, 7.2132, 7.2129, 7.2126, 7.2122, 7.2119, 7.2129, 7.213900000000001, 7.2136, 7.2133, 7.2139, 7.2136, 7.2133, 7.214, 7.2137, 7.2134, 7.2131, 7.2119, 7.2117, 7.2114, 7.212400000000001, 7.216, 7.2157, 7.2163, 7.2161, 7.2167, 7.2164, 7.216, 7.2158, 7.2156, 7.2154, 7.2151, 7.215, 7.2157, 7.2155, 7.2159, 7.2156, 7.2162, 7.2159, 7.2147, 7.2144, 7.2141, 7.2148, 7.2145, 7.2142, 7.2139, 7.2136, 7.2133, 7.213, 7.2127, 7.2124, 7.2132, 7.213, 7.2136, 7.2133, 7.213, 7.2128, 7.2126, 7.2126, 7.2123, 7.2121, 7.2118, 7.2116, 7.2113, 7.211, 7.2099, 7.2096, 7.2103, 7.2091, 7.2088, 7.2087, 7.2084, 7.2099, 7.2096, 7.2093, 7.209, 7.2087, 7.2093, 7.2099, 7.2097, 7.2094, 7.2091, 7.2088, 7.2087, 7.209, 7.2088, 7.2085, 7.2082, 7.2079, 7.2085, 7.2083, 7.208, 7.2077, 7.2075, 7.2073, 7.2074, 7.2073, 7.208, 7.2090000000000005, 7.2097, 7.2094, 7.2101, 7.2099, 7.2105, 7.2107, 7.2105, 7.2102, 7.2108, 7.2105, 7.2107, 7.2112, 7.2109, 7.2106, 7.2103, 7.21, 7.2098, 7.2095, 7.2092, 7.209, 7.2088, 7.2098, 7.2096, 7.2093, 7.2091, 7.2088, 7.2086, 7.2083, 7.208, 7.2079, 7.2076, 7.2074, 7.2072, 7.207, 7.2068, 7.2065, 7.2063, 7.206, 7.2057, 7.2063, 7.206, 7.2057, 7.2054, 7.2052, 7.2049, 7.2056, 7.2059, 7.2057, 7.2054, 7.2051, 7.2083, 7.2081, 7.2078, 7.2076, 7.2074, 7.2072, 7.2069, 7.2066, 7.2063, 7.206, 7.2057, 7.2054, 7.2052, 7.205, 7.2047, 7.2053, 7.2051, 7.2059, 7.2057, 7.2063, 7.206, 7.2058, 7.2055, 7.2052, 7.205, 7.2056, 7.2054, 7.2064, 7.207400000000001, 7.2071, 7.2068, 7.2082, 7.2115, 7.2112, 7.2127, 7.2133, 7.213, 7.2119, 7.212, 7.2118, 7.2116, 7.2117, 7.2133, 7.213, 7.2127, 7.2134, 7.2132, 7.2132, 7.2138, 7.2127, 7.2124, 7.213, 7.2127, 7.2173, 7.217, 7.2167, 7.2164, 7.2161, 7.2159, 7.2157, 7.2154, 7.2161, 7.2158, 7.2155, 7.2153, 7.2151, 7.2149, 7.2146, 7.2153, 7.2144, 7.216, 7.2172, 7.217, 7.2167, 7.2173, 7.2171, 7.2168, 7.2165, 7.2164, 7.2153, 7.2165, 7.2162, 7.2172, 7.2169, 7.2166, 7.2163, 7.2169, 7.2166, 7.2173, 7.2182, 7.218, 7.2177, 7.2174, 7.2172, 7.2178, 7.2175, 7.2182, 7.2188, 7.2185, 7.2182, 7.218, 7.2178, 7.2175, 7.2172, 7.2178, 7.2176, 7.2173, 7.217, 7.217, 7.2168, 7.2165, 7.2162, 7.2161, 7.2159, 7.2156, 7.2154, 7.2151, 7.2149, 7.2155, 7.2161, 7.2158, 7.2155, 7.2161, 7.2158, 7.2164, 7.2161, 7.2158, 7.2147, 7.2146, 7.2143, 7.214, 7.2144, 7.2143, 7.2141, 7.2139, 7.2136, 7.2137, 7.2134, 7.2131, 7.2129, 7.2127, 7.2124, 7.2121, 7.211, 7.2109, 7.2107, 7.2122, 7.2128, 7.2125, 7.2122, 7.2128, 7.2127, 7.2125, 7.2114, 7.2112, 7.211, 7.2107, 7.2104, 7.2103, 7.21, 7.2098, 7.2095, 7.2092, 7.2089, 7.2087, 7.2093, 7.209, 7.2091, 7.2098, 7.2088, 7.2086, 7.2084, 7.2081, 7.2079, 7.2076, 7.2065, 7.2062, 7.2059, 7.2057, 7.2055, 7.2052, 7.2059, 7.2058, 7.2064, 7.207, 7.2068, 7.2074, 7.208, 7.2077, 7.2083, 7.2112, 7.2109, 7.2115, 7.2113, 7.2119, 7.2129, 7.2135, 7.2132, 7.2129, 7.2126, 7.2133, 7.213, 7.2136, 7.2134, 7.2131, 7.212, 7.2127, 7.2132, 7.2129, 7.2135, 7.2139, 7.2145, 7.2142, 7.214, 7.2137, 7.2143, 7.2148, 7.2145, 7.2153, 7.2159, 7.2165, 7.2171, 7.2168, 7.2165, 7.2162, 7.2159, 7.2156, 7.2153, 7.2182, 7.2179, 7.2177, 7.2175, 7.2172, 7.217, 7.2176, 7.2182, 7.2179, 7.2185, 7.2183, 7.2189, 7.2187, 7.2185, 7.2174, 7.2172, 7.2169, 7.2166, 7.2173, 7.217, 7.2167, 7.2165, 7.2164, 7.2161, 7.2161, 7.2158, 7.2157, 7.2154, 7.2151, 7.2149, 7.2147, 7.2145, 7.2144, 7.2141, 7.213, 7.2136, 7.2133, 7.2139, 7.2137, 7.2134, 7.214, 7.2137, 7.2134, 7.2131, 7.213, 7.2137, 7.2128, 7.2117, 7.2123, 7.2121, 7.2119, 7.2116, 7.2105, 7.2102, 7.2101, 7.2098, 7.2095, 7.2093, 7.209, 7.2087, 7.2085, 7.2092, 7.2089, 7.2086, 7.2083, 7.2081, 7.2078, 7.2075, 7.2073, 7.207, 7.2077, 7.2075, 7.2072, 7.2079, 7.2076, 7.2074, 7.2072, 7.2078, 7.2076, 7.2073, 7.2072, 7.2069, 7.2084, 7.2086, 7.2084, 7.2081, 7.2079, 7.2085, 7.2075, 7.2072, 7.2072, 7.2072, 7.2061, 7.2058, 7.2064, 7.2062, 7.2087, 7.2085, 7.2082, 7.2079, 7.2076, 7.2065, 7.2063, 7.206, 7.2057, 7.2054, 7.2052, 7.2042, 7.2039, 7.2036, 7.2046, 7.2052, 7.2061, 7.2058, 7.2056, 7.2062, 7.2068, 7.2065, 7.2063, 7.206, 7.2057, 7.2067000000000005, 7.2065, 7.2062, 7.2059, 7.2056, 7.2054, 7.2104, 7.2101, 7.2104, 7.2101, 7.2107, 7.2114, 7.212, 7.2117, 7.2123, 7.2129, 7.2127, 7.2134, 7.2132, 7.213, 7.2136, 7.2133, 7.213, 7.213, 7.2128, 7.2135, 7.2132, 7.2129, 7.2118, 7.2115, 7.2112, 7.2109, 7.2098, 7.2095, 7.2092, 7.2089, 7.2079, 7.2077, 7.2074, 7.2082, 7.2079, 7.2068, 7.2066, 7.2055, 7.2061, 7.206, 7.2057, 7.2055, 7.2062, 7.2059, 7.2069, 7.2079, 7.2077, 7.2074, 7.2071, 7.207, 7.2068, 7.2074, 7.208, 7.2077, 7.2087, 7.2077, 7.2087, 7.2084, 7.2081, 7.2091, 7.2089, 7.2087, 7.2084, 7.2081, 7.208, 7.2078, 7.2085, 7.2083, 7.208, 7.2086, 7.2092, 7.209, 7.2087, 7.2099, 7.2096, 7.2093, 7.2091, 7.2097, 7.2094, 7.2092, 7.2089, 7.2086, 7.2083, 7.2089, 7.2095, 7.2092, 7.2089, 7.2086, 7.2084, 7.2101, 7.2099, 7.2096, 7.2085, 7.2083, 7.2086, 7.2083, 7.208, 7.2069, 7.2067, 7.2064, 7.2102, 7.2099, 7.2096, 7.2103, 7.2107, 7.2104, 7.211, 7.2107, 7.2104, 7.2101, 7.2099, 7.2097, 7.2096, 7.2093, 7.2099, 7.2105, 7.2119, 7.2116, 7.2113, 7.2111, 7.2117, 7.2107, 7.2097, 7.2095, 7.2094, 7.2083, 7.2082, 7.2082, 7.2072, 7.2078, 7.2084, 7.2081, 7.2084, 7.209, 7.2096, 7.2094, 7.2092, 7.2098, 7.2096, 7.2102, 7.21, 7.2106, 7.2103, 7.2101, 7.2099, 7.2097, 7.2103, 7.2101, 7.2103, 7.2101, 7.2099, 7.2108, 7.2105, 7.2111, 7.2109, 7.2106, 7.2103, 7.2104, 7.2102, 7.2108, 7.2105, 7.2111, 7.2109, 7.2115, 7.2113, 7.2111, 7.2109, 7.2106, 7.2103, 7.2102, 7.2099, 7.2106, 7.2103, 7.2101, 7.2106, 7.2104, 7.2102, 7.2092, 7.2089, 7.2087, 7.2085, 7.2091, 7.2088, 7.2086, 7.2092, 7.2098, 7.2095, 7.2085, 7.2083, 7.2089, 7.2087, 7.2094, 7.2091, 7.2088, 7.2089, 7.2095, 7.2093, 7.2106, 7.2103, 7.2101, 7.2098, 7.2097, 7.2094, 7.2092, 7.2082, 7.2088, 7.2119, 7.2116, 7.2114, 7.2111, 7.2108, 7.2114, 7.2119, 7.2125, 7.2122, 7.2119, 7.2116, 7.2122, 7.2119, 7.2117, 7.2114, 7.212, 7.2118, 7.2124, 7.213, 7.2144, 7.2141, 7.2147, 7.2149, 7.2151, 7.2151, 7.2149, 7.2146, 7.2144, 7.2159, 7.2158, 7.2156, 7.2154, 7.2152, 7.215, 7.2148, 7.2137, 7.2134, 7.214, 7.2138, 7.2136, 7.2135, 7.2141, 7.2139, 7.2136, 7.2166, 7.2163, 7.2168, 7.2174, 7.2171, 7.2169, 7.2167, 7.2164, 7.2169, 7.2166, 7.2164, 7.2162, 7.2159, 7.2156, 7.2153, 7.2159, 7.2157, 7.2162, 7.2167, 7.2164, 7.2172, 7.2162, 7.2159, 7.2157, 7.2173, 7.2172, 7.2169, 7.2175, 7.219, 7.2196, 7.2194, 7.2192, 7.2197, 7.2195, 7.2192, 7.2198, 7.2195, 7.2201, 7.2206, 7.2204, 7.2202, 7.2208, 7.2205, 7.2211, 7.2209, 7.2215, 7.2212, 7.2209, 7.2214, 7.222, 7.2218, 7.2217, 7.2223, 7.2221, 7.2222, 7.2221, 7.2219, 7.2216, 7.2225, 7.223, 7.2227, 7.2234, 7.2232, 7.223, 7.222, 7.222, 7.2217, 7.2214, 7.223, 7.2244, 7.2242, 7.2241, 7.2239, 7.2262, 7.226, 7.2258, 7.2264, 7.227, 7.2275, 7.228, 7.2278, 7.2275, 7.228, 7.2286, 7.2291, 7.2288, 7.2294, 7.2291, 7.2288, 7.2285, 7.2291, 7.2289, 7.2286, 7.2283, 7.2281, 7.2295, 7.2292, 7.2297, 7.2294, 7.23, 7.2314, 7.2312, 7.2318, 7.2324, 7.233, 7.2328, 7.2325, 7.2322, 7.2319, 7.2316, 7.2313, 7.2311, 7.2309, 7.2306, 7.2309, 7.2307, 7.2304, 7.2302, 7.2292, 7.229, 7.2288, 7.2293, 7.229, 7.2287, 7.2293, 7.2291, 7.2288, 7.2294, 7.2291, 7.2289, 7.2295, 7.2293, 7.2324, 7.233, 7.2328, 7.2326, 7.2324, 7.233, 7.2327, 7.2333, 7.233, 7.2336, 7.2333, 7.233, 7.2327, 7.2337, 7.2334, 7.2347, 7.2344, 7.2341, 7.2331, 7.2336, 7.2341, 7.2346, 7.2351, 7.2348, 7.2346, 7.2351, 7.2356, 7.2361, 7.2366, 7.2363, 7.2368, 7.2365, 7.237, 7.2375, 7.2381, 7.2372, 7.2378, 7.2383, 7.2397, 7.2406, 7.2403, 7.2402, 7.24, 7.2398, 7.2396, 7.2402, 7.2407, 7.2413, 7.2413, 7.2423, 7.2434, 7.2431, 7.2429, 7.2437, 7.2435, 7.2433, 7.2425, 7.2422, 7.2438, 7.2436, 7.2434, 7.2431, 7.2423, 7.2433, 7.2431, 7.2431, 7.2437, 7.2435, 7.2433, 7.243, 7.2428, 7.2425, 7.2427, 7.2433, 7.2424, 7.2421, 7.2418, 7.2423, 7.2421, 7.2435, 7.2432, 7.2438, 7.2435, 7.2432, 7.2429, 7.2427, 7.2432, 7.2429, 7.2434, 7.244, 7.2446, 7.246, 7.2461, 7.2461, 7.2466, 7.2464, 7.2464, 7.2461, 7.2497, 7.2494, 7.25, 7.2497, 7.2494, 7.2491, 7.2489, 7.2503, 7.2502, 7.2501, 7.2499, 7.2491, 7.2489, 7.2487, 7.2486, 7.2484, 7.249, 7.2487, 7.2493, 7.2483, 7.2489, 7.2486, 7.2484, 7.2489, 7.2495, 7.2492, 7.249, 7.2487, 7.2492, 7.2489, 7.2486, 7.2483, 7.2489, 7.2496, 7.2493, 7.249, 7.2496, 7.2493, 7.2491, 7.2497, 7.2487, 7.2485, 7.2483, 7.2482, 7.2487, 7.2501, 7.2507, 7.2512, 7.2519, 7.2516, 7.2513, 7.2511, 7.2516, 7.2521, 7.2519, 7.2516, 7.2521, 7.2527, 7.2525, 7.2515, 7.2513, 7.2534, 7.2532, 7.2538, 7.2536, 7.2534, 7.2531, 7.2537, 7.2542, 7.254, 7.2537, 7.2534, 7.2531, 7.2528, 7.2533, 7.2531, 7.2579, 7.2586, 7.2583, 7.2589, 7.2586, 7.2585, 7.2583, 7.258, 7.2578, 7.2576, 7.2582, 7.258, 7.2579, 7.2577, 7.2577, 7.2575, 7.2572, 7.257, 7.2576, 7.2574, 7.2581, 7.2571, 7.2569, 7.2566, 7.2563, 7.2561, 7.2561, 7.2553, 7.255, 7.2548, 7.2561, 7.2559, 7.2556, 7.2548, 7.2546, 7.2544, 7.2541, 7.2539, 7.2537, 7.2542, 7.2548, 7.2554, 7.2551, 7.2548, 7.2546, 7.2551, 7.2556, 7.2561, 7.2566, 7.2564, 7.2562, 7.256, 7.2558, 7.2564, 7.2561, 7.2566, 7.2563, 7.256, 7.2574, 7.258, 7.2586, 7.2583, 7.2588, 7.2585, 7.2582, 7.2579, 7.2584, 7.259, 7.2596, 7.2594, 7.26, 7.2606, 7.2619, 7.2616, 7.2614, 7.2611, 7.2601, 7.2606, 7.2603, 7.26, 7.2599, 7.2596, 7.2601, 7.2598, 7.2605, 7.2603, 7.26, 7.2598, 7.2595, 7.2592, 7.2589, 7.2586, 7.2583, 7.258, 7.2585, 7.259, 7.2587, 7.2625, 7.2622, 7.2627, 7.2624, 7.2622, 7.262, 7.2625, 7.2622, 7.2619, 7.2616, 7.2621, 7.2634, 7.2624, 7.2621, 7.2628, 7.2625, 7.2631, 7.2636, 7.2642, 7.2648, 7.2646, 7.2644, 7.2649, 7.2654, 7.2651, 7.2648, 7.2646, 7.2644, 7.2642, 7.2639, 7.2637], '192.168.122.116': [8.3165, 7.1263, 6.6252, 6.3727, 6.1836, 6.9492, 6.7511, 6.6381, 7.1247, 6.5315, 6.4767, 6.8352, 7.0941, 6.9616, 6.8629, 6.7767, 7.0683, 7.3196, 7.2649, 7.1905, 7.1251, 7.0388, 6.9821, 6.9255, 7.0921, 7.2585, 7.2078, 7.1539, 7.1168, 7.2599, 7.2199, 7.1614, 7.1212, 7.0774, 7.1024, 7.0597, 7.0582, 7.0103, 6.9775, 6.9488, 6.9326, 6.908, 6.8712, 6.8349, 6.86, 6.8373, 6.8176, 6.792, 6.7674, 6.7457, 6.7403, 6.7274, 6.7144, 6.8812, 6.8546, 7.0785, 7.0635, 6.9511, 6.9314, 6.9202, 6.8329, 6.8366, 6.8176, 6.7984, 6.7854, 6.7853, 6.7636, 6.7551, 6.8171, 6.9746, 6.9539, 6.9333, 6.8494, 6.8281, 6.8086, 6.7886, 6.7805, 6.8361, 6.8168, 6.8689, 6.8503, 6.7784, 6.7605, 6.804, 6.8714, 6.8535, 6.8475, 6.8316, 6.8735, 6.8654, 6.8546, 6.898, 6.9962, 6.9777, 6.9674, 7.0521, 7.0395, 7.0218, 7.0588, 7.0957, 7.0826, 7.0666, 7.0569, 7.0478, 7.0321, 7.0169, 7.0129, 6.996, 6.9379, 6.9276, 6.9195, 6.9531, 6.9385, 6.9464, 6.9401, 6.9319, 6.9232, 6.9546, 6.9411, 6.9313, 6.9177, 6.9046, 6.9372, 6.9672, 6.975, 6.9623, 6.9496, 7.0209, 7.1002, 7.0866, 7.0777, 7.112, 7.1007, 7.1004, 7.0906, 7.0791, 7.1098, 7.101, 7.0939, 7.0823, 7.1096, 7.106, 7.0947, 7.1185, 7.1453, 7.1338, 7.1238, 7.1168, 7.1459, 7.1403, 7.1284, 7.1197, 7.1099, 7.136, 7.1573, 7.1477, 7.1435, 7.3019, 7.2913, 7.279, 7.2683, 7.2575, 7.2474, 7.2364, 7.2281, 7.2191, 7.2126, 7.2049, 7.2264, 7.2157, 7.2472, 7.2398, 7.2303, 7.2188, 7.208, 7.1977, 7.2186, 7.2083, 7.2287, 7.2512, 7.2408, 7.2351, 7.2254, 7.2169, 7.2077, 7.2002, 7.1937, 7.1833, 7.2077, 7.2047, 7.1952, 7.2149, 7.1854, 7.2019, 7.1929, 7.1842, 7.1785, 7.1704, 7.1666, 7.1571, 7.1622, 7.1794, 7.1709, 7.1651, 7.183, 7.1989, 7.2203, 7.2117, 7.2047, 7.1953, 7.2147, 7.2134, 7.2146, 7.2902, 7.2812, 7.2759, 7.267, 7.2584, 7.2506, 7.2468, 7.2409, 7.2346, 7.2371, 7.233, 7.2255, 7.225, 7.2191, 7.211, 7.2056, 7.1972, 7.2121, 7.2037, 7.1962, 7.1884, 7.2035, 7.1979, 7.1902, 7.1839, 7.1787, 7.1759, 7.1686, 7.1612, 7.1535, 7.1463, 7.1389, 7.1354, 7.15, 7.1507, 7.1435, 7.1365, 7.1339, 7.1298, 7.1259, 7.1194, 7.1126, 7.1064, 7.0996, 7.0926, 7.0879, 7.0629, 7.0568, 7.0712, 7.068, 7.0618, 7.0751, 7.0697, 7.0632, 7.0574, 7.0515, 7.0655, 7.0588, 7.0713, 7.0652, 7.0595, 7.0357, 7.0318, 7.0262, 7.0204, 7.0144, 7.0104, 7.0064, 7.0006, 7.0181, 7.0144, 7.0236, 7.0181, 7.0332, 7.0293, 7.0254, 7.02, 7.0181, 7.0137, 7.0085, 7.0216, 7.0157, 7.0282, 7.0226, 7.0205, 7.0155, 7.0282, 7.0243, 7.0207, 7.0176, 7.0332, 7.0289, 7.0438, 7.0573, 7.0522, 7.0658, 7.0603, 7.0576, 7.053, 7.0666, 7.0628, 7.0594, 7.0556, 7.0513, 7.0675, 7.0789, 7.0738, 7.0684, 7.0632, 7.0428, 7.0401, 7.0386, 7.0514, 7.0323, 7.0431, 7.0379, 7.0489, 7.044, 7.0385, 7.0344, 7.0296, 7.0258, 7.0236, 7.035, 7.0315, 7.0272, 7.0225, 7.0179, 7.0127, 7.0082, 7.0036, 6.9991, 6.9948, 6.9905, 6.9868, 6.9842, 6.9798, 6.9904, 6.9864, 6.9815, 7.0121, 7.0205, 7.017, 7.0142, 7.0096, 7.0073, 7.0045, 7.0007, 6.9976, 6.9928, 6.9885, 7.0005, 6.996, 6.9919, 6.9877, 6.9873, 6.9851, 6.9807, 6.9773, 6.9978, 6.9932, 6.9898, 6.9879, 6.9859, 6.9886, 6.9872, 6.986, 6.9824, 6.9918, 6.9897, 6.9871, 6.9837, 6.9817, 6.9804, 6.9811, 6.9647, 6.9626, 6.96, 6.9569, 6.9681, 6.9776, 6.9744, 6.9706, 6.97, 6.9681, 6.9654, 6.9624, 6.9596, 6.9692, 6.978, 6.9822, 6.9807, 6.9768, 6.9741, 6.97, 6.9661, 6.9787, 6.9748, 6.9706, 6.9665, 6.9624, 6.9587, 6.9681, 6.9693, 6.9657, 6.9622, 6.9597, 6.969, 6.9664, 6.9639, 6.9636, 6.9595, 6.9577, 6.9553, 6.956300000000001, 6.9532, 6.9385, 6.9351, 6.9446, 6.9411, 6.938, 6.9272, 6.9237, 6.92, 6.9163, 6.9381, 6.9365, 6.9452, 6.9415, 6.9393, 6.9357, 6.9323, 6.9289, 6.9267, 6.913, 6.9224, 6.9086, 6.9057, 6.9029, 6.8997, 6.897, 6.8941, 6.8913, 6.8882, 6.8858, 6.893, 6.9014, 6.8983, 6.896, 6.8832, 6.8799, 6.8769, 6.8753, 6.8722, 6.8694, 6.8776, 6.8744, 6.8715, 6.8685, 6.8667, 6.8634, 6.8609, 6.8619, 6.8817, 6.9128, 6.9097, 6.918, 6.915, 6.9238, 6.931, 6.9279, 6.9469, 6.9455, 6.9536, 6.9406, 6.9373, 6.9351, 6.9227, 6.9314, 6.928, 6.9256, 6.9128, 6.9002, 6.9012, 6.9105, 6.9078, 6.9054, 6.9033, 6.9008, 6.899, 6.9079, 6.9056, 6.9145, 6.9122, 6.9104, 6.9073, 6.9041, 6.9018, 6.8986, 6.9075, 6.9052, 6.9043, 6.9121, 6.9191, 6.9175, 6.9145, 6.9121, 6.9092, 6.952, 6.9488, 6.9561, 6.9529, 6.9616, 6.9586, 6.9581, 6.9569, 6.9544, 6.9552, 6.9532, 6.9512, 6.9579, 6.9664, 6.9661, 6.9639, 6.9619, 6.9587, 6.9575, 6.9563, 6.9551, 6.953, 6.9606, 6.9576, 6.9615, 6.968, 6.965, 6.9733, 6.9794, 6.9864, 6.9859, 6.9833, 6.9805, 6.9775, 6.9753, 6.9726, 6.9796, 6.9767, 6.9836, 6.9807, 6.9776, 6.9747, 6.9721, 6.9794, 6.9865, 6.9857, 6.9891, 6.9864, 6.9837, 6.9809, 6.9782, 6.9854, 6.9839, 6.9909, 6.9884, 6.9979, 6.9949, 6.9923, 6.9911, 6.9899, 6.9875, 6.9885, 6.9863, 6.984, 6.985, 6.986000000000001, 6.9845, 6.9818, 6.9804, 6.9809, 6.9784, 6.9996, 7.0066, 6.9958, 6.9936, 6.9913, 6.9889, 6.996, 7.0008, 7.0169, 7.0147, 7.0133, 7.0205, 7.0192, 7.0169, 7.0252, 7.0238, 7.0218, 7.0287, 7.0261, 7.0246, 7.0235, 7.0216, 7.0202, 7.0185, 7.016, 7.0131, 7.0111, 7.0093, 7.0075, 7.01, 7.008, 7.0073, 7.0048, 7.0031, 7.027, 7.0169, 7.0144, 7.0119, 7.0092, 7.0082, 7.0142, 7.021, 7.0183, 7.0243, 7.0226, 7.0199, 7.0172, 7.0149, 7.0214, 7.0188, 7.0161, 7.0142, 7.0127, 7.0109, 7.0167, 7.0152, 7.0136, 7.012, 7.01, 7.0075, 7.0135, 7.0198, 7.0252, 7.0228, 7.0214, 7.0276, 7.0251, 7.0236, 7.0213, 7.02, 7.0257, 7.0233, 7.0293, 7.0349, 7.0403, 7.0457, 7.0448, 7.0423, 7.0397, 7.0453, 7.0431, 7.0509, 7.0563, 7.0546, 7.0522, 7.0509, 7.0488, 7.0537, 7.0514, 7.0492, 7.0466, 7.0517, 7.0495, 7.0559, 7.0541, 7.0603, 7.0661, 7.0635, 7.0693, 7.0675, 7.0649, 7.0705, 7.0687, 7.0736, 7.0721, 7.0704, 7.0759, 7.074, 7.0727, 7.0778, 7.0754, 7.0744, 7.0799, 7.0775, 7.0896, 7.0947, 7.1055, 7.103, 7.1024, 7.1, 7.0976, 7.103, 7.1004, 7.098, 7.0964, 7.1019, 7.1004, 7.098, 7.0964, 7.0941, 7.0924, 7.09, 7.0878, 7.0802, 7.0856, 7.092, 7.0908, 7.0822, 7.0965, 7.0884, 7.0892, 7.0871, 7.0846, 7.0829, 7.0805, 7.0782, 7.0833, 7.0808, 7.0865, 7.0849, 7.0836, 7.0831, 7.0807, 7.0786, 7.0798, 7.0779, 7.0902, 7.0957, 7.0937, 7.0917, 7.0896, 7.0962, 7.1011, 7.0995, 7.0972, 7.095, 7.0933, 7.0911, 7.0892, 7.087, 7.0846, 7.0825, 7.0803, 7.0782, 7.0792, 7.0774, 7.0753, 7.0681, 7.0683, 7.0823, 7.0803, 7.0798, 7.0783, 7.0761, 7.0742, 7.0729, 7.0724, 7.0701, 7.0693, 7.0678, 7.0728, 7.071, 7.0687, 7.073, 7.0779, 7.0763, 7.0748, 7.0727, 7.0706, 7.0855, 7.0834, 7.1005, 7.0927, 7.0979, 7.0968, 7.1017, 7.1067, 7.1047, 7.1034, 7.1019, 7.1, 7.098, 7.0959, 7.1004, 7.0991, 7.0911, 7.0894, 7.0989, 7.0975, 7.0954, 7.1001, 7.1046, 7.1038, 7.1085, 7.1078, 7.1062, 7.1048, 7.1028, 7.1006, 7.0985, 7.0979, 7.0957, 7.0946, 7.0929, 7.0913, 7.0892, 7.0878, 7.0873, 7.0853, 7.0836, 7.0819, 7.0804, 7.0849, 7.0829, 7.0809, 7.0852, 7.0891, 7.094, 7.0926, 7.0974, 7.0962, 7.0945, 7.0937, 7.0918, 7.0897, 7.0879, 7.0927, 7.091, 7.0891, 7.0878, 7.0862, 7.0842, 7.0887, 7.0866, 7.0844, 7.0824, 7.0844, 7.0822, 7.0802, 7.0786, 7.0768, 7.0753, 7.0798, 7.0777, 7.082, 7.0801, 7.0844, 7.0887, 7.0873, 7.0855, 7.0836, 7.0818, 7.0863, 7.0846, 7.083, 7.0812, 7.0797, 7.0783, 7.0766, 7.0776, 7.0759, 7.0746, 7.0811, 7.0849, 7.0888, 7.0926, 7.0919, 7.0962, 7.095, 7.0932, 7.0914, 7.0897, 7.0938, 7.0975, 7.0956, 7.0949, 7.0946, 7.0934, 7.0918, 7.09, 7.088, 7.0861, 7.0843, 7.0828, 7.0815, 7.0854, 7.0835, 7.0819, 7.0812, 7.0805, 7.0791, 7.078, 7.0822, 7.0809, 7.0791, 7.0778, 7.0759, 7.0741, 7.0782, 7.0778, 7.0771, 7.0776, 7.0758, 7.0743, 7.0733, 7.0716, 7.0699, 7.0793, 7.0951, 7.0933, 7.0978, 7.1014, 7.1001, 7.0988, 7.0976, 7.0963, 7.0945, 7.0924, 7.0908, 7.089, 7.0925, 7.0908, 7.089, 7.0881, 7.0863, 7.0846, 7.0828, 7.076, 7.0743, 7.0726, 7.071, 7.0756, 7.0739, 7.0722, 7.0732, 7.0719, 7.0767, 7.0752, 7.0735, 7.072, 7.0705, 7.069, 7.0672, 7.0655, 7.0695, 7.0677, 7.066, 7.0643, 7.0629, 7.0614, 7.0558, 7.0597, 7.0636, 7.0675, 7.0664, 7.0702, 7.0684, 7.0668, 7.0706, 7.0689, 7.0671, 7.0653, 7.0639, 7.0688, 7.0683, 7.0617, 7.0656, 7.0694, 7.068, 7.0666, 7.0653, 7.069, 7.0684, 7.0667, 7.0706, 7.0689, 7.0682, 7.0707, 7.0691, 7.0674, 7.069, 7.0674, 7.0656, 7.0645, 7.068, 7.071, 7.0699, 7.064, 7.0626, 7.0691, 7.0674, 7.0713, 7.0649, 7.0634, 7.057, 7.0614, 7.0699, 7.0681, 7.0669, 7.0668, 7.0665, 7.0699, 7.0683, 7.0666, 7.0603, 7.0586, 7.0571, 7.0608, 7.0592, 7.0629, 7.0667, 7.0722, 7.0761, 7.0746, 7.073, 7.0715, 7.0701, 7.0688, 7.0734, 7.0727, 7.0732, 7.0715, 7.0703, 7.0723, 7.0763, 7.0746, 7.0729, 7.0683, 7.068, 7.0664, 7.0657, 7.064, 7.0624, 7.0611, 7.0597, 7.0584, 7.0567, 7.0599, 7.0585, 7.0619, 7.0602, 7.0594, 7.0584, 7.0568, 7.0553, 7.0539, 7.0525, 7.0512, 7.0496, 7.0482, 7.0569, 7.0558, 7.0548, 7.0537, 7.052, 7.0506, 7.049, 7.0475, 7.0511, 7.0496, 7.048, 7.0471, 7.0468, 7.0454, 7.0439, 7.0434, 7.0384, 7.052, 7.0505, 7.0491, 7.0478, 7.0512, 7.05, 7.0486, 7.0474, 7.0508, 7.0493, 7.0478, 7.0509, 7.0496, 7.0528, 7.056, 7.0545, 7.053, 7.0559, 7.0593, 7.0577, 7.0568, 7.0557, 7.0595, 7.0625, 7.0759, 7.0743, 7.0728, 7.0726, 7.0731, 7.0719, 7.0703, 7.0689, 7.0682, 7.0671, 7.0657, 7.0691, 7.0724, 7.071, 7.0698, 7.0683, 7.0716, 7.0704, 7.0706, 7.0796, 7.0864, 7.0913, 7.0954, 7.0945, 7.0933, 7.0965, 7.095, 7.0945, 7.0933, 7.0918, 7.0903, 7.0893, 7.0879, 7.0866, 7.0851, 7.0836, 7.0868, 7.0899, 7.0883, 7.0869, 7.0858, 7.0851, 7.0889, 7.0877, 7.0864, 7.0849, 7.0835, 7.0825, 7.0811, 7.0811, 7.08, 7.0789, 7.0779, 7.0799, 7.0788, 7.0822, 7.0808, 7.0795, 7.0831, 7.0835, 7.0826, 7.0829, 7.0859, 7.0847, 7.0833, 7.0822, 7.0808, 7.0858, 7.0845, 7.0836, 7.0821, 7.0814, 7.0856, 7.0809, 7.0796, 7.0783, 7.0772, 7.0761, 7.0747, 7.07, 7.0699, 7.0688, 7.0675, 7.066, 7.0691, 7.072, 7.0884, 7.0913, 7.0989, 7.1108, 7.1182, 7.1168, 7.1154, 7.114, 7.1128, 7.1114, 7.1143, 7.1133, 7.112, 7.115, 7.1136, 7.1123, 7.1112, 7.1098, 7.1085, 7.107, 7.1062, 7.1047, 7.1039, 7.1069, 7.1054, 7.1083, 7.1075, 7.1106, 7.1097, 7.1084, 7.107, 7.1061, 7.1097, 7.1088, 7.1087, 7.1073, 7.106, 7.1046, 7.1035, 7.1021, 7.1053, 7.1045, 7.1035, 7.1064, 7.1092, 7.1121, 7.1107, 7.1136, 7.1122, 7.111, 7.1095, 7.1081, 7.1115, 7.1102, 7.1131, 7.1118, 7.1106, 7.1092, 7.1119, 7.1151, 7.1139, 7.1146, 7.1134, 7.1126, 7.1156, 7.1147, 7.1178, 7.1208, 7.12, 7.119, 7.1223, 7.1212, 7.1204, 7.1189, 7.118, 7.1174, 7.1206, 7.1241, 7.1227, 7.1215, 7.1204, 7.1195, 7.1183, 7.1173, 7.1163, 7.1149, 7.1135, 7.1121, 7.115, 7.1182, 7.1171, 7.116, 7.1149, 7.1138, 7.1127, 7.1114, 7.1155, 7.1143, 7.1132, 7.112, 7.119, 7.1219, 7.1208, 7.1198, 7.1187, 7.1175, 7.1169, 7.1157, 7.1155, 7.1143, 7.1257, 7.1244, 7.1234, 7.1267, 7.1296, 7.1284, 7.127, 7.1264, 7.1252, 7.1203, 7.1189, 7.1176, 7.1163, 7.115, 7.1139, 7.1132, 7.112, 7.115, 7.1142, 7.1129, 7.1122, 7.1116, 7.1106, 7.1093, 7.1084, 7.1035, 7.1023, 7.1014, 7.1043, 7.1034, 7.1022, 7.1008, 7.1016, 7.1006, 7.0995, 7.102, 7.1009, 7.0998, 7.0996, 7.0984, 7.0972, 7.0963, 7.095, 7.0938, 7.0891, 7.0878, 7.0866, 7.0852, 7.0842, 7.0833, 7.0865, 7.0875, 7.0865, 7.0893, 7.0881, 7.0909, 7.0895, 7.0883, 7.0873, 7.0829, 7.083900000000001, 7.084900000000001, 7.0846, 7.0833, 7.0823, 7.0811, 7.0842, 7.0796, 7.0823, 7.0833, 7.084300000000001, 7.0834, 7.0826, 7.082, 7.0808, 7.08, 7.0791, 7.0785, 7.0778, 7.0765, 7.0752, 7.0742, 7.077, 7.0758, 7.0783, 7.0775, 7.0802, 7.083, 7.0817, 7.081, 7.0765, 7.0792, 7.0779, 7.0806, 7.0795, 7.0824, 7.0816, 7.0806, 7.0832, 7.0828, 7.0822, 7.081, 7.0804, 7.0793, 7.0784, 7.0797, 7.0807, 7.0817000000000005, 7.0805, 7.08, 7.0788, 7.0776, 7.0768, 7.0756, 7.0745, 7.0738, 7.0764, 7.0752, 7.0742, 7.0769, 7.0757, 7.0745, 7.0742, 7.073, 7.0719, 7.0746, 7.0772, 7.0798, 7.0786, 7.0886, 7.0913, 7.0903, 7.089, 7.0879, 7.0867, 7.0893, 7.0919, 7.0909, 7.09, 7.0887, 7.091, 7.0899, 7.089, 7.0879, 7.0908, 7.0898, 7.0889, 7.0881, 7.087, 7.0897, 7.0923, 7.0919, 7.0907, 7.0897, 7.0908, 7.0928, 7.096, 7.0968, 7.0956, 7.098, 7.097, 7.0993, 7.0984, 7.0975, 7.0963, 7.0988, 7.0975, 7.1, 7.0991, 7.0979, 7.0967, 7.0992, 7.1016, 7.1004, 7.0993, 7.0985, 7.1011, 7.0999, 7.0991, 7.098, 7.1007, 7.1001, 7.0993, 7.0983, 7.0972, 7.0966, 7.0956, 7.0946, 7.0972, 7.096, 7.095, 7.0941, 7.093, 7.0942, 7.0941, 7.0933, 7.1, 7.1025, 7.1013, 7.1005, 7.0999, 7.1023, 7.1017, 7.1011, 7.1001, 7.099, 7.1017, 7.1046, 7.101, 7.1005, 7.1032, 7.106, 7.1051, 7.1042, 7.1033, 7.1024, 7.1016, 7.1006, 7.0964, 7.0955, 7.0946, 7.0939, 7.0935, 7.0931, 7.092, 7.0908, 7.0933, 7.0922, 7.091, 7.0898, 7.0903, 7.0891, 7.0883, 7.0872, 7.0862, 7.0885, 7.0875, 7.0873, 7.0861, 7.085, 7.0847, 7.0836, 7.0794, 7.0784, 7.0773, 7.0762, 7.0751, 7.074, 7.073, 7.0723, 7.0712, 7.0702, 7.0692, 7.0692, 7.0691, 7.068, 7.0688, 7.0687, 7.0713, 7.0703, 7.0691, 7.0682, 7.0673, 7.0663, 7.0653, 7.068, 7.0673, 7.0639, 7.0663, 7.0689, 7.0678, 7.0669, 7.0657, 7.0646, 7.0637, 7.0626, 7.0652, 7.0675, 7.0668, 7.066, 7.0657, 7.0648, 7.067, 7.0659, 7.0658, 7.0647, 7.0638, 7.066, 7.0683, 7.0675, 7.0664, 7.066, 7.065, 7.0679, 7.0669, 7.0692, 7.0689, 7.0682, 7.0672, 7.0672, 7.0732, 7.073, 7.072, 7.071, 7.0703, 7.0693, 7.0685, 7.0675, 7.0696, 7.0686, 7.0676, 7.0703, 7.0704, 7.073, 7.072, 7.0709, 7.0699, 7.0724, 7.0714, 7.0725, 7.0715, 7.0705, 7.0699, 7.0713, 7.0703, 7.0693, 7.0688, 7.0713, 7.0703, 7.0695, 7.0686, 7.0782, 7.0792, 7.0802000000000005, 7.0793, 7.0785, 7.0776, 7.0802, 7.0826, 7.0818, 7.084, 7.0833, 7.0825, 7.0817, 7.0807, 7.0798, 7.0822, 7.0815, 7.0804, 7.0765, 7.0729, 7.075, 7.0742, 7.0737, 7.0726, 7.0747, 7.0741, 7.0763, 7.0783, 7.0805, 7.0829, 7.0849, 7.0845, 7.0867, 7.086, 7.0882, 7.0872, 7.0862, 7.0885, 7.0908, 7.0905, 7.0925, 7.0939, 7.093, 7.0921, 7.0882, 7.0877, 7.087, 7.0861, 7.0886, 7.0877, 7.0868, 7.0859, 7.0849, 7.0838, 7.083, 7.0851, 7.084, 7.0836, 7.0856, 7.0845, 7.0834, 7.0856, 7.0847, 7.087, 7.0862, 7.0827, 7.0818, 7.0813, 7.0835, 7.0886, 7.0879, 7.087, 7.0859, 7.085, 7.084, 7.0864, 7.0854, 7.0846, 7.0837, 7.0826, 7.0817, 7.0976, 7.0966, 7.0996, 7.0988, 7.0979, 7.1002, 7.102, 7.104, 7.103, 7.1022, 7.1014, 7.1035, 7.1025, 7.1015, 7.1025, 7.1021, 7.1064, 7.1054, 7.106400000000001, 7.1059, 7.1049, 7.1059, 7.1081, 7.1102, 7.1093, 7.1083, 7.1074, 7.1066, 7.1057, 7.1047, 7.1039, 7.1077, 7.1069, 7.1064, 7.1076, 7.1086, 7.1096, 7.1089, 7.1116, 7.1141, 7.1133, 7.1126, 7.1136, 7.1128, 7.1091, 7.109, 7.1082, 7.1072, 7.1092, 7.1085, 7.1106, 7.1127, 7.112, 7.1142, 7.1194, 7.1187, 7.1181, 7.117, 7.1182, 7.1172, 7.1168, 7.1158, 7.1184, 7.1174, 7.1167, 7.113, 7.112, 7.111, 7.1101, 7.1091, 7.1081, 7.1101, 7.1065, 7.1056, 7.1111, 7.1102, 7.1092, 7.111, 7.1102, 7.1123, 7.1116, 7.1106, 7.1096, 7.109, 7.1082, 7.1105, 7.107, 7.106, 7.1057, 7.1051, 7.1078, 7.1099, 7.109, 7.1082, 7.1074, 7.1066, 7.1057, 7.1078, 7.1099, 7.109, 7.1145, 7.1136, 7.1225, 7.1217, 7.1182, 7.1173, 7.1224, 7.1222, 7.1233, 7.1225, 7.122, 7.1211, 7.1202, 7.1195, 7.1199, 7.1189, 7.1247, 7.1239, 7.123, 7.122, 7.1216, 7.1236, 7.1255, 7.1247, 7.1243, 7.1235, 7.1255, 7.1246, 7.1211, 7.1203, 7.1194, 7.1215, 7.1225000000000005, 7.1218, 7.1208, 7.1228, 7.1246, 7.1237, 7.1228, 7.1224, 7.1214, 7.1205, 7.1225, 7.1218, 7.1209, 7.1229, 7.122, 7.121, 7.1202, 7.1222, 7.1215, 7.1205, 7.1196, 7.1215, 7.1209, 7.1201, 7.1166, 7.1189, 7.1181, 7.1172, 7.1191, 7.1182, 7.1175, 7.1167, 7.1162, 7.1156, 7.1152, 7.1144, 7.1135, 7.1101, 7.1094, 7.1114, 7.1105, 7.1098, 7.109, 7.1109, 7.1104, 7.1095, 7.1086, 7.1078, 7.107, 7.115, 7.117, 7.1162, 7.1182, 7.1173, 7.1164, 7.1184, 7.115, 7.1143, 7.1163, 7.1165, 7.1157, 7.1148, 7.1114, 7.1105, 7.1101, 7.1094, 7.1085, 7.1078, 7.1069, 7.1089, 7.1087, 7.108, 7.107, 7.1063, 7.1054, 7.1048, 7.1041, 7.1031, 7.1059, 7.1052, 7.1045, 7.1063, 7.1055, 7.1047, 7.104, 7.1058, 7.105, 7.1071, 7.1063, 7.1057, 7.1081, 7.1076, 7.1086, 7.1096, 7.110600000000001, 7.1127, 7.1122, 7.1116, 7.1115, 7.1106, 7.1097, 7.1089, 7.1081, 7.1111, 7.1129, 7.112, 7.1139, 7.1132, 7.1124, 7.1116, 7.1106, 7.1097, 7.1123, 7.1118, 7.1085, 7.1103, 7.1096, 7.1088, 7.1079, 7.1074, 7.1096, 7.1087, 7.1078, 7.1074, 7.1092, 7.1087, 7.1078, 7.1071, 7.1065, 7.1063, 7.1068, 7.1089, 7.1082, 7.1074, 7.1066, 7.1059, 7.1051, 7.1047, 7.1042, 7.1039, 7.103, 7.1023, 7.1014, 7.1035, 7.1028, 7.1021, 7.1014, 7.1033, 7.1024, 7.1017, 7.1009, 7.1028, 7.1044, 7.1062, 7.1078, 7.1088000000000005, 7.1079, 7.107, 7.1087, 7.1081, 7.1049, 7.1042, 7.1039, 7.104, 7.1035, 7.1053, 7.1025, 7.1028, 7.1022, 7.1013, 7.1033, 7.1043, 7.105300000000001, 7.1075, 7.1076, 7.1074, 7.1092, 7.1083, 7.1077, 7.1069, 7.1063, 7.1031, 7.1051, 7.1071, 7.1062, 7.1056, 7.1057, 7.1027, 7.1046, 7.104, 7.1039, 7.1031, 7.1024, 7.1023, 7.1015, 7.1007, 7.1001, 7.0992, 7.0985, 7.0995, 7.1005, 7.101500000000001, 7.1059, 7.105, 7.1044, 7.1072, 7.1066, 7.1057, 7.1026, 7.1017, 7.1009, 7.1023, 7.1015, 7.1007, 7.1001, 7.0993, 7.100300000000001, 7.101300000000001, 7.1005, 7.1029, 7.1021, 7.1039, 7.1163, 7.1155, 7.1147, 7.1139, 7.1137, 7.1129, 7.1129, 7.1122, 7.1115, 7.1107, 7.1101, 7.1101, 7.107, 7.107, 7.1062, 7.1058, 7.1049, 7.1083, 7.1074, 7.1066, 7.1057, 7.1051, 7.1047, 7.1095, 7.1114, 7.1107, 7.1098, 7.1091, 7.1086, 7.1078, 7.1096, 7.1065, 7.1084, 7.1076, 7.1092, 7.1083, 7.1077, 7.1096, 7.1093, 7.1088, 7.1098, 7.1114, 7.1105, 7.1096, 7.1091, 7.1118, 7.111, 7.1106, 7.1122, 7.1114, 7.1106, 7.11, 7.1092, 7.1116, 7.1109, 7.1128, 7.1145, 7.1142, 7.1137, 7.1133, 7.1151, 7.1145, 7.1137, 7.1164, 7.1158, 7.1153, 7.1146, 7.1164, 7.1157, 7.1152, 7.1146, 7.1139, 7.1131, 7.1124, 7.1116, 7.1135, 7.113, 7.1147, 7.114, 7.1133, 7.1125, 7.112, 7.1115, 7.1108, 7.1128, 7.1119, 7.1111, 7.1081, 7.1101, 7.1094, 7.1114, 7.1109, 7.1104, 7.1096, 7.109, 7.1082, 7.1077, 7.1099, 7.1095, 7.1088, 7.1103, 7.1096, 7.1089, 7.1085, 7.1126, 7.112, 7.1113, 7.1129, 7.1121, 7.1138, 7.1144, 7.1138, 7.114800000000001, 7.1144, 7.1135, 7.1153, 7.1146, 7.1141, 7.1134, 7.1155, 7.1175, 7.1192, 7.1185, 7.1202, 7.1196, 7.1216, 7.1233, 7.1227, 7.1222, 7.1217, 7.1216, 7.121, 7.1204, 7.1198, 7.1195, 7.1188, 7.1181, 7.1175, 7.1168, 7.116, 7.118, 7.1173, 7.1167, 7.1162, 7.1155, 7.1172, 7.1164, 7.1158, 7.1173, 7.1144, 7.1115, 7.1112, 7.1127, 7.1122, 7.1118, 7.111, 7.1128, 7.1129, 7.1145, 7.1166, 7.1183, 7.1179, 7.1149, 7.1141, 7.1133, 7.1125, 7.1117, 7.111, 7.1103, 7.1096, 7.1115, 7.113, 7.1102, 7.1074, 7.1088, 7.1105, 7.1097, 7.1096, 7.1091, 7.1107, 7.1124, 7.1118, 7.1112, 7.1105, 7.1097, 7.1089, 7.1084, 7.11, 7.1116, 7.1111, 7.1104, 7.1099, 7.1093, 7.1088, 7.1081, 7.109100000000001, 7.1107, 7.1099, 7.1091, 7.1084, 7.1076, 7.1068, 7.1084, 7.1078, 7.1052, 7.1044, 7.1036, 7.1028, 7.1022, 7.1016, 7.1009, 7.1027, 7.1021, 7.1017, 7.101, 7.1004, 7.0998, 7.0992, 7.0984, 7.0976, 7.0947, 7.0919, 7.0915, 7.0907, 7.0924, 7.0917, 7.091, 7.0903, 7.09, 7.0895, 7.0889, 7.0881, 7.0874, 7.0891, 7.0908, 7.0902, 7.091200000000001, 7.0924, 7.0918, 7.0911, 7.0911, 7.0909, 7.0902, 7.0918, 7.0913, 7.0939, 7.0933, 7.0927, 7.0941, 7.0935, 7.0949, 7.0944, 7.0936, 7.0931, 7.0946, 7.0939, 7.0934, 7.0951, 7.0944, 7.0916, 7.0909, 7.0902, 7.0875, 7.089, 7.0883, 7.0898, 7.0891, 7.0884, 7.0899, 7.0892, 7.0887, 7.0882, 7.0876, 7.0869, 7.0885, 7.0878, 7.087, 7.0865, 7.0859, 7.0851, 7.0869, 7.0862, 7.0855, 7.085, 7.086, 7.0852, 7.0846, 7.0847, 7.0842, 7.0856, 7.0849, 7.0845, 7.0839, 7.0841, 7.0853, 7.0867, 7.0859, 7.0852, 7.0866, 7.0882, 7.0896, 7.0869, 7.0863, 7.0857, 7.0857, 7.085, 7.0865, 7.0858, 7.0851, 7.0867, 7.086, 7.0876, 7.0891, 7.0885, 7.0901, 7.0894, 7.0887, 7.0882, 7.0898, 7.0891, 7.0885, 7.0878, 7.0871, 7.0866, 7.0859, 7.0852, 7.0869, 7.0863, 7.0835, 7.083, 7.0824, 7.084, 7.0857, 7.0852, 7.0845, 7.0862, 7.0861, 7.0855, 7.0848, 7.0842, 7.0835, 7.0828, 7.0842, 7.0834, 7.0828, 7.0844, 7.0837, 7.0836, 7.0829, 7.0822, 7.0818, 7.0811, 7.0825, 7.0823, 7.0837, 7.0833, 7.0826, 7.082, 7.0836, 7.083, 7.0824, 7.0819, 7.0814, 7.0829, 7.0822, 7.0817, 7.081, 7.0806, 7.0821, 7.0815, 7.0815, 7.081, 7.0803, 7.0818, 7.0832, 7.0827, 7.082, 7.0813, 7.0829, 7.0871, 7.0866, 7.0883, 7.0877, 7.087, 7.0886, 7.0884, 7.0879, 7.0853, 7.0848, 7.0842, 7.0836, 7.0854, 7.0849, 7.0844, 7.0859, 7.0851, 7.085, 7.0847, 7.0841, 7.0864, 7.0858, 7.0873, 7.0869, 7.0884, 7.0877, 7.0871, 7.0866, 7.086, 7.0856, 7.085, 7.0864, 7.088, 7.0897, 7.0912, 7.0905, 7.0919, 7.0913, 7.0909, 7.0913, 7.0913, 7.0907, 7.09, 7.0893, 7.0909, 7.0885, 7.0879, 7.0882, 7.0875, 7.0869, 7.0879, 7.0853, 7.0846, 7.0841, 7.0855, 7.0867, 7.0881, 7.0964, 7.0959, 7.0975, 7.0969, 7.0967, 7.096, 7.0976, 7.097, 7.0964, 7.096, 7.0934, 7.0927, 7.0942, 7.0937, 7.0953, 7.0968, 7.0961, 7.0984, 7.0998, 7.1013, 7.1029, 7.1023, 7.1038, 7.1031, 7.1046, 7.1059, 7.1054, 7.1048, 7.1043, 7.1037, 7.1031, 7.1046, 7.1041, 7.1035, 7.1028, 7.1022, 7.1015, 7.1008, 7.1005, 7.1001, 7.1018, 7.1011, 7.1026, 7.102, 7.1013, 7.1006, 7.1, 7.0994, 7.0988, 7.1007, 7.1004, 7.0998, 7.0993, 7.1006, 7.1003, 7.1, 7.0996, 7.0989, 7.0982, 7.0997, 7.100700000000001, 7.1002, 7.0999, 7.0993, 7.0988, 7.0983, 7.0978, 7.0971, 7.0965, 7.098, 7.0975, 7.0968, 7.0983, 7.0977, 7.0973, 7.0968, 7.0963, 7.0961, 7.0961, 7.0977, 7.0972, 7.0966, 7.0961, 7.0995, 7.0973, 7.097, 7.0965, 7.096, 7.1003, 7.1018, 7.1013, 7.1029, 7.1055, 7.1056, 7.1074, 7.1068, 7.1063, 7.1083, 7.1083, 7.1098, 7.1112, 7.1105, 7.1119, 7.1133, 7.1127, 7.1124, 7.1119, 7.1098, 7.1097, 7.1092, 7.1088, 7.1089, 7.1147, 7.116, 7.1157, 7.1173, 7.1179, 7.1172, 7.1206, 7.1203, 7.1217, 7.1211, 7.1225, 7.1239, 7.1234, 7.1228, 7.1242, 7.1238, 7.1232, 7.1225, 7.1218, 7.1211, 7.1208, 7.1203, 7.12, 7.1193, 7.121, 7.1225, 7.1218, 7.1214, 7.1209, 7.1202, 7.1218, 7.1215, 7.1209, 7.1205, 7.1198, 7.1192, 7.1185, 7.1182, 7.1178, 7.1174, 7.1169, 7.1163, 7.1159, 7.1155, 7.1152, 7.1147, 7.116, 7.1153, 7.1152, 7.1164, 7.1158, 7.1153, 7.1128, 7.1141, 7.1155, 7.1169, 7.1163, 7.1178, 7.1172, 7.1186, 7.118, 7.1173, 7.1167, 7.1181, 7.1175, 7.1191, 7.1186, 7.1199, 7.1194, 7.1187, 7.1182, 7.1192, 7.1192, 7.1187, 7.1182, 7.1199, 7.1192, 7.1186, 7.1199, 7.1192, 7.1187, 7.118, 7.1177, 7.1171, 7.1184, 7.1178, 7.1172, 7.1165, 7.1162, 7.1176, 7.1152, 7.1128, 7.1122, 7.1116, 7.1112, 7.1106, 7.1101, 7.1095, 7.1088, 7.1082, 7.1092, 7.1085, 7.108, 7.1076, 7.109, 7.1104, 7.1101, 7.1095, 7.109, 7.1102, 7.1118, 7.1112, 7.1107, 7.112, 7.1133, 7.1127, 7.1123, 7.1136, 7.1131, 7.1127, 7.112, 7.1096, 7.1091, 7.1104, 7.1097, 7.1093, 7.1108, 7.1085, 7.1081, 7.1078, 7.1074, 7.1069, 7.1047, 7.1042, 7.1041, 7.1037, 7.1033, 7.1027, 7.1003, 7.0997, 7.100700000000001, 7.101700000000001, 7.1013, 7.1007, 7.1003, 7.1, 7.0996, 7.0995, 7.0988, 7.0984, 7.0998, 7.101, 7.1005, 7.1018, 7.1015, 7.1012, 7.1009, 7.1006, 7.1019, 7.1012, 7.1008, 7.1003, 7.1016, 7.1011, 7.1007, 7.1003, 7.1003, 7.0999, 7.0997, 7.0991, 7.0985, 7.0981, 7.0994, 7.1006, 7.1, 7.0995, 7.1009, 7.1005, 7.1, 7.0995, 7.1008, 7.1021, 7.1015, 7.1009, 7.1005, 7.0999, 7.1011, 7.1023, 7.1016, 7.1049, 7.1043, 7.1037, 7.1031, 7.1044, 7.1038, 7.1051, 7.1045, 7.104, 7.1054, 7.1031, 7.1043, 7.1056, 7.1069, 7.1082, 7.1095, 7.1089, 7.1102, 7.1115, 7.1112, 7.1108, 7.1103, 7.1115, 7.1109, 7.1102, 7.1116, 7.1112, 7.1091, 7.1086, 7.1081, 7.109100000000001, 7.1088, 7.1101, 7.1095, 7.1108, 7.1121, 7.1133, 7.1147, 7.1141, 7.1135, 7.1148, 7.1179, 7.1192, 7.1186, 7.1198, 7.1192, 7.1206, 7.12, 7.1209, 7.1205, 7.12, 7.1194, 7.1188, 7.1182, 7.1176, 7.1171, 7.1185, 7.1198, 7.1194, 7.119, 7.1202, 7.1196, 7.1192, 7.1186, 7.1182, 7.1176, 7.1189, 7.1208, 7.1203, 7.1197, 7.1199, 7.120900000000001, 7.1203, 7.1243, 7.1258, 7.1254, 7.1231, 7.1225, 7.124, 7.1218, 7.122800000000001, 7.1222, 7.1218, 7.1212, 7.1206, 7.1201, 7.1252, 7.1251, 7.1265, 7.126, 7.1255, 7.1232, 7.1243, 7.1237, 7.1236, 7.1231, 7.1244, 7.124, 7.1235, 7.1231, 7.1263, 7.1257, 7.1251, 7.1246, 7.1242, 7.1236, 7.1233, 7.123, 7.1243, 7.1237, 7.1249, 7.1248, 7.1408, 7.1405, 7.1399, 7.1396, 7.1408, 7.1407, 7.1407, 7.1401, 7.141100000000001, 7.1405, 7.1418, 7.1415, 7.143, 7.1436, 7.143, 7.1432, 7.1428, 7.144, 7.1438, 7.1438, 7.1452, 7.1446, 7.1441, 7.1474, 7.147, 7.1465, 7.1461, 7.1463, 7.1457, 7.147, 7.1475, 7.1478, 7.1472, 7.1529, 7.156, 7.1564, 7.1579, 7.1573, 7.1567, 7.1579, 7.1591, 7.1601, 7.1611, 7.162100000000001, 7.1635, 7.1617, 7.1596, 7.161, 7.162, 7.1654, 7.1648, 7.1642, 7.1636, 7.1631, 7.1626, 7.1623, 7.1617, 7.1611, 7.1605, 7.16, 7.1594, 7.1606, 7.1619, 7.1613, 7.1625, 7.1619, 7.1613, 7.1607, 7.1601, 7.1595, 7.1589, 7.1583, 7.158, 7.1559, 7.1537, 7.1515, 7.1509, 7.1503, 7.1517, 7.1529, 7.1539, 7.1549000000000005, 7.1548, 7.156, 7.1556, 7.1567, 7.1579, 7.1573, 7.1567, 7.1566, 7.1561, 7.1573, 7.158, 7.1574, 7.1568, 7.1564, 7.1565, 7.156, 7.1555, 7.1553, 7.1547, 7.1543, 7.1556, 7.1568, 7.1562, 7.1574, 7.1568, 7.1563, 7.1557, 7.1555, 7.1567, 7.1561, 7.1562, 7.1575, 7.1587, 7.1583, 7.1579, 7.1575, 7.1569, 7.1581, 7.1579, 7.1581, 7.1594, 7.1588, 7.1601, 7.1595, 7.159, 7.1585, 7.1581, 7.1595, 7.1608, 7.1605, 7.1636, 7.1647, 7.1644, 7.1659, 7.1672, 7.1668, 7.1663, 7.1641, 7.165100000000001, 7.166100000000001, 7.1674, 7.1711, 7.1723, 7.1701, 7.1713, 7.1708, 7.1721, 7.1716, 7.171, 7.1723, 7.1736, 7.1749, 7.1762, 7.1788, 7.1782, 7.1777, 7.1773, 7.177, 7.1764, 7.176, 7.1773, 7.1808, 7.1837, 7.1832, 7.1863, 7.1859, 7.1872, 7.187, 7.1865, 7.1862, 7.1856, 7.185, 7.1844, 7.1839, 7.1833, 7.1845, 7.1856, 7.1868, 7.1863, 7.1858, 7.1887, 7.1898, 7.1893, 7.1887, 7.1881, 7.1876, 7.1879, 7.1874, 7.1885, 7.1896, 7.1907, 7.1904, 7.19, 7.1894, 7.1888, 7.19, 7.1895, 7.1939, 7.1933, 7.1946, 7.194, 7.1953, 7.1947, 7.1943, 7.1942, 7.1936, 7.1946, 7.1941, 7.1953, 7.1983, 7.1978, 7.1957, 7.1936, 7.1982, 7.1977, 7.2023, 7.2019, 7.2019, 7.2014, 7.2009, 7.2019, 7.2026, 7.2005, 7.2001, 7.1995, 7.1989, 7.2, 7.1994, 7.1989, 7.1984, 7.198, 7.1976, 7.199, 7.1984, 7.1986, 7.1983, 7.1995, 7.1989, 7.1983, 7.1977, 7.1987000000000005, 7.199700000000001, 7.1992, 7.1989, 7.1983, 7.1979, 7.1979, 7.1992, 7.1986, 7.1998, 7.1994, 7.1988, 7.1982, 7.1976, 7.1971, 7.1984, 7.1978, 7.1989, 7.1988, 7.1999, 7.1997, 7.2009, 7.2004, 7.1983, 7.1993, 7.1987, 7.1982, 7.198, 7.1974, 7.1972, 7.1966, 7.196, 7.1955, 7.195, 7.1945, 7.1944, 7.194, 7.1938, 7.1933, 7.1912, 7.1908, 7.1903, 7.1899, 7.1898, 7.1894, 7.1889, 7.1885, 7.1885, 7.1896, 7.1892, 7.1872, 7.1885, 7.188, 7.1875, 7.1871, 7.1867, 7.1863, 7.1857, 7.1852, 7.1833, 7.1833, 7.1828, 7.1823, 7.1833, 7.1843, 7.1839, 7.1835, 7.183, 7.1825, 7.1808, 7.1802, 7.1832, 7.1861, 7.1871, 7.1867, 7.1872, 7.1867, 7.1862, 7.1857, 7.1854, 7.185, 7.1844, 7.1838, 7.1817, 7.1811, 7.1805, 7.1801, 7.1795, 7.1806, 7.18, 7.1797, 7.1798, 7.1826, 7.182, 7.1816, 7.1811, 7.1808, 7.1804, 7.1816, 7.1813, 7.1824, 7.1818, 7.1818, 7.1829, 7.1825, 7.1805, 7.181500000000001, 7.182500000000001, 7.1822, 7.1817, 7.1813, 7.1807, 7.1807, 7.1817, 7.1811, 7.1825, 7.182, 7.1815, 7.1812, 7.1794, 7.1789, 7.1783, 7.1779, 7.1774, 7.1768, 7.1763, 7.1759, 7.1739, 7.1734, 7.1728, 7.1723, 7.1718, 7.1729, 7.1726, 7.1722, 7.1716, 7.1726, 7.1736, 7.1747, 7.1743, 7.1723, 7.1718, 7.1712, 7.1707, 7.1718, 7.1713, 7.1724, 7.1718, 7.1712, 7.1707, 7.1718, 7.1729, 7.1725, 7.1719, 7.1715, 7.1713, 7.1693, 7.1707, 7.1702, 7.1697, 7.1694, 7.1707, 7.1719, 7.1751, 7.1749, 7.1747, 7.1746, 7.1756, 7.1751, 7.1748, 7.1744, 7.1744, 7.1742, 7.174, 7.1737, 7.1749, 7.1745, 7.1775, 7.1771, 7.1784, 7.1778, 7.1772, 7.1767, 7.1762, 7.1758, 7.1754, 7.1766, 7.1762, 7.1758, 7.1753, 7.1764, 7.1775, 7.1769, 7.1765, 7.1746, 7.1744, 7.1739, 7.1735, 7.1752, 7.1747, 7.1742, 7.1738, 7.175, 7.176, 7.1755, 7.175, 7.1761, 7.1755, 7.1766, 7.1761, 7.1758, 7.177, 7.1766, 7.1761, 7.1794, 7.1788, 7.1784, 7.1779, 7.1775, 7.1757, 7.1758, 7.1753, 7.1748, 7.1758, 7.1754, 7.1749, 7.1744, 7.1741, 7.1736, 7.1731, 7.1744, 7.174, 7.1736, 7.1733, 7.173, 7.1729, 7.1724, 7.1721, 7.1716, 7.1726, 7.1722, 7.1717, 7.1713, 7.1709, 7.1703, 7.1698, 7.1695, 7.1693, 7.1689, 7.17, 7.171, 7.1692, 7.169, 7.17, 7.171, 7.1705, 7.1717, 7.1712, 7.1707, 7.1718, 7.1748, 7.1743, 7.1739, 7.175, 7.1746, 7.1766, 7.1762, 7.1765, 7.1762, 7.1774, 7.1769, 7.1765, 7.1762, 7.1757, 7.1768, 7.1779, 7.1774, 7.1769, 7.1779, 7.1789, 7.1785, 7.1795, 7.18, 7.1796, 7.1806, 7.18, 7.1796, 7.1807, 7.1808, 7.1805, 7.1801, 7.1783, 7.1778, 7.1773, 7.1783, 7.1778, 7.1793, 7.1788, 7.1783, 7.1793, 7.182, 7.1815, 7.181, 7.1821, 7.1816, 7.1811, 7.1806, 7.1801, 7.1809, 7.179, 7.1787, 7.1797, 7.1806, 7.1801, 7.1812, 7.1807, 7.1806, 7.1802, 7.1805, 7.1818, 7.1828, 7.183800000000001, 7.1833, 7.1828, 7.1825, 7.1826, 7.1822, 7.1818, 7.1814, 7.181, 7.1809, 7.1804, 7.1807, 7.182, 7.1815, 7.1811, 7.1824, 7.1831, 7.1862, 7.1861, 7.1858, 7.1855, 7.1865000000000006, 7.186, 7.1882, 7.1892, 7.1903, 7.1884, 7.1865, 7.1846, 7.1841, 7.1823, 7.1833, 7.1829, 7.1825, 7.1834, 7.1831, 7.183, 7.1825, 7.1834, 7.1815, 7.1811, 7.1807, 7.1817, 7.1813, 7.1808, 7.1803, 7.1798, 7.1794, 7.1789, 7.1787, 7.1798, 7.1795, 7.1791, 7.1788, 7.1799, 7.1794, 7.1789, 7.1784, 7.1782, 7.1778, 7.1773, 7.1783, 7.1781, 7.1776, 7.1785, 7.178, 7.1776, 7.1772, 7.1783, 7.1778, 7.178800000000001, 7.179800000000001, 7.181, 7.1819, 7.1815, 7.1824, 7.1833, 7.1829, 7.1824, 7.1819, 7.1815, 7.1811, 7.1824, 7.182, 7.1829, 7.181, 7.1841, 7.1851, 7.1846, 7.1846, 7.1843, 7.1838, 7.1836, 7.1846, 7.1841, 7.1836, 7.1847, 7.1843, 7.1844, 7.1846, 7.1879, 7.1875, 7.1886, 7.1882, 7.1877, 7.1872, 7.1868, 7.1864, 7.186, 7.1855, 7.1851, 7.1862, 7.1873, 7.1914, 7.1909, 7.1935, 7.193, 7.1956, 7.1953, 7.1952, 7.1947, 7.1942, 7.1952, 7.1934, 7.1916, 7.1935, 7.193, 7.1926, 7.1923, 7.1932, 7.1927, 7.1922, 7.1933, 7.1944, 7.1953, 7.1949, 7.1945, 7.194, 7.1936, 7.1933, 7.1943, 7.194, 7.1935, 7.193, 7.1925, 7.192, 7.1917, 7.1927, 7.1922, 7.1904, 7.1914, 7.1909, 7.1919, 7.1915, 7.191, 7.1905, 7.1915, 7.1925, 7.1921, 7.1917, 7.1927, 7.1923, 7.1918, 7.1914, 7.1909, 7.1905, 7.1902, 7.1906, 7.1902, 7.1901, 7.1898, 7.1915, 7.1901, 7.1897, 7.1896, 7.1913, 7.191, 7.1906, 7.1907, 7.1892, 7.1922, 7.1918, 7.1928, 7.1927, 7.1923, 7.1933, 7.193, 7.1926, 7.1924, 7.192, 7.1916, 7.1927, 7.1924, 7.192, 7.1931, 7.1926, 7.1923, 7.1906, 7.1917, 7.1914, 7.1911, 7.1906, 7.1902, 7.1903, 7.1898, 7.1893, 7.1903, 7.1901, 7.191, 7.1906, 7.1901, 7.1897, 7.1893, 7.1889, 7.1884, 7.188, 7.1862, 7.1861, 7.1857, 7.1853, 7.1849, 7.1845, 7.1841, 7.1837, 7.1834, 7.183, 7.1841, 7.1837, 7.1849, 7.1844, 7.1839, 7.1823, 7.1805, 7.1803, 7.1798, 7.1795, 7.179, 7.1785, 7.1781, 7.1777, 7.1773, 7.1769, 7.1769, 7.1765, 7.1761, 7.1773, 7.177, 7.1753, 7.1735, 7.1746, 7.1741, 7.1737, 7.1744, 7.1726, 7.1735, 7.173, 7.1727, 7.1724, 7.1721, 7.1719, 7.1719, 7.1715, 7.1729, 7.1725, 7.175, 7.1748, 7.1758, 7.1755, 7.1765, 7.1774, 7.1771, 7.178100000000001, 7.1764, 7.1766, 7.1762, 7.1771, 7.1767, 7.1777, 7.1788, 7.1784, 7.1779, 7.1789, 7.1827, 7.1823, 7.1849, 7.1859, 7.1855, 7.1851, 7.1861, 7.1871, 7.1866, 7.1863, 7.1858, 7.1867, 7.1878, 7.1888, 7.1883, 7.1893, 7.1889, 7.1898, 7.1908, 7.189, 7.1886, 7.1896, 7.1891, 7.189, 7.1885, 7.1883, 7.1879, 7.1888, 7.1887, 7.1884, 7.1879, 7.1875, 7.1871, 7.1866, 7.1861, 7.1843, 7.1839, 7.1836, 7.1845, 7.1842, 7.1837, 7.1833, 7.1829, 7.1825, 7.1821, 7.1831, 7.1826, 7.1836, 7.1845, 7.1847, 7.1843, 7.1838, 7.1835, 7.1844, 7.1842, 7.184, 7.1837, 7.1833, 7.1828, 7.1823, 7.1832, 7.1828, 7.1823, 7.182, 7.1817, 7.1812, 7.1808, 7.1818, 7.1815, 7.181, 7.1806, 7.1801, 7.1796, 7.1791, 7.1788, 7.1798, 7.1807, 7.1804, 7.1799, 7.1795, 7.179, 7.1786, 7.1781, 7.1809, 7.1817, 7.1813, 7.1808, 7.1803, 7.1829, 7.1825, 7.182, 7.1815, 7.1813, 7.181, 7.1806, 7.1803, 7.1798, 7.1793, 7.1802, 7.1799, 7.1794, 7.1793, 7.1803, 7.1812, 7.1808, 7.1818, 7.1828, 7.1825, 7.1821, 7.1817, 7.1814, 7.1811, 7.1808, 7.1804, 7.1802, 7.1798, 7.1807, 7.1803, 7.1798, 7.1809, 7.1809, 7.1822, 7.1818, 7.1814, 7.181, 7.1805, 7.1801, 7.1797, 7.1794, 7.1804, 7.1799, 7.1794, 7.18, 7.1811, 7.1807, 7.1792, 7.1788, 7.1784, 7.1779, 7.1777, 7.1776, 7.1785, 7.1794, 7.1803, 7.1798, 7.1794, 7.1791, 7.1787, 7.1771, 7.1767, 7.1763, 7.1759, 7.1755, 7.1752, 7.1749, 7.1732, 7.1727, 7.1737, 7.1732, 7.1727, 7.1724, 7.1721, 7.1716, 7.1716, 7.1712, 7.1709, 7.1717, 7.1713, 7.1721, 7.1717, 7.1713, 7.1722, 7.1718, 7.1713, 7.1712, 7.1724, 7.172, 7.1717, 7.1774, 7.1772, 7.1769, 7.1766, 7.1778, 7.1775, 7.1772, 7.1768, 7.1779, 7.1789, 7.1785, 7.1783, 7.1779, 7.1788, 7.1798, 7.1782, 7.1779, 7.1775, 7.1779, 7.1775, 7.1771, 7.1755, 7.1765, 7.1763, 7.1759, 7.176, 7.1758, 7.1764, 7.1762, 7.1772, 7.1768, 7.1764, 7.176, 7.1745, 7.1741, 7.1738, 7.1733, 7.1728, 7.1724, 7.1734, 7.1743, 7.1749, 7.1744, 7.1753, 7.1749, 7.1749, 7.1756, 7.1765, 7.1774, 7.1769, 7.1778, 7.1787, 7.1782, 7.1777, 7.1787, 7.1782, 7.179200000000001, 7.1801, 7.1798, 7.1793, 7.1788, 7.1797, 7.1798, 7.1795, 7.1803, 7.1799, 7.1796, 7.1793, 7.1789, 7.1785, 7.1784, 7.1768, 7.1777, 7.1785, 7.1782, 7.1792, 7.1789, 7.1784, 7.1781, 7.1777, 7.1773, 7.1769, 7.1764, 7.176, 7.1768, 7.1765, 7.1774, 7.177, 7.1754, 7.175, 7.1771, 7.1766, 7.1764, 7.1773, 7.1786, 7.1812, 7.1808, 7.1806, 7.1802, 7.18, 7.1809, 7.1806, 7.1847, 7.185700000000001, 7.1855, 7.1852, 7.1861, 7.1857, 7.1854, 7.185, 7.1847, 7.1844, 7.184, 7.1824, 7.182, 7.1829, 7.1827, 7.1823, 7.182, 7.1816, 7.1813, 7.1822, 7.1819, 7.1815, 7.1824, 7.1823, 7.1819, 7.1828, 7.1824, 7.1821, 7.1817, 7.1802, 7.1786, 7.1783, 7.1793, 7.1789, 7.1784, 7.1768, 7.1765, 7.1761, 7.1757, 7.1741, 7.1725, 7.1734, 7.1743, 7.1751, 7.1749, 7.1752, 7.1749, 7.1745, 7.1743, 7.1752, 7.1748, 7.1744, 7.1742, 7.1739, 7.1749, 7.1758, 7.1754, 7.1763, 7.1759, 7.1757, 7.1742, 7.1739, 7.1735, 7.1731, 7.1727, 7.1724, 7.1732, 7.1728, 7.1726, 7.1721, 7.1717, 7.1752, 7.1762, 7.1757, 7.1756, 7.1752, 7.1762, 7.1772, 7.1768, 7.1764, 7.1773, 7.177, 7.1767, 7.1776, 7.1772, 7.1768, 7.1764, 7.1761, 7.1758, 7.1755, 7.176500000000001, 7.1776, 7.1773, 7.1783, 7.178, 7.1776, 7.1785, 7.1794, 7.179, 7.1794, 7.1792, 7.1788, 7.1798, 7.1794, 7.1803, 7.1801, 7.1797, 7.1793, 7.179, 7.1785, 7.1782, 7.1778, 7.1786, 7.1782, 7.1779, 7.1775, 7.1771, 7.178, 7.1776, 7.1772, 7.1768, 7.1753, 7.1748, 7.1745, 7.1742, 7.1737, 7.1734, 7.1743, 7.1752, 7.1749, 7.1745, 7.1741, 7.1738, 7.1747, 7.1744, 7.1741, 7.1737, 7.1732, 7.173, 7.1726, 7.1735, 7.1732, 7.1729, 7.175, 7.1763, 7.176, 7.1756, 7.1764, 7.1772, 7.1768, 7.1766, 7.1762, 7.1759, 7.1755, 7.175, 7.1759, 7.1781, 7.179, 7.1789, 7.1789, 7.1786, 7.1812, 7.181, 7.1807, 7.1791, 7.1788, 7.1784, 7.1781, 7.1779, 7.1775, 7.1783, 7.1784, 7.178, 7.1776, 7.1772, 7.1769, 7.1788, 7.1785, 7.1782, 7.1779, 7.1777, 7.1772, 7.1769, 7.1765, 7.1774, 7.1772, 7.1768, 7.1776, 7.1772, 7.1757, 7.1766, 7.1775, 7.1771, 7.1768, 7.1764, 7.176, 7.1756, 7.176, 7.1747, 7.1756, 7.1752, 7.1763, 7.1772, 7.1768, 7.1765, 7.1793, 7.1778, 7.1763, 7.1771, 7.1768, 7.1764, 7.176, 7.1784, 7.1792, 7.18, 7.1786, 7.1783, 7.178, 7.1789, 7.1787, 7.1774, 7.1771, 7.177, 7.1778, 7.1774, 7.177, 7.1779, 7.1775, 7.176, 7.1757, 7.1753, 7.1752, 7.1748, 7.1744, 7.1741, 7.1737, 7.1733, 7.1729, 7.1726, 7.1735, 7.1731, 7.1739, 7.1735, 7.1722, 7.1731, 7.1729, 7.1737, 7.1734, 7.1748, 7.1758, 7.1755, 7.1751, 7.1747, 7.1744, 7.174, 7.1737, 7.1734, 7.1719, 7.1716, 7.1736, 7.1732, 7.174, 7.1751, 7.1748, 7.1745, 7.1741, 7.1741, 7.1749, 7.1745, 7.1742, 7.1752, 7.1749, 7.1759, 7.1756, 7.1752, 7.1752, 7.1791, 7.1788, 7.1798, 7.1795, 7.1792, 7.1801, 7.1798, 7.1806, 7.1802, 7.1799, 7.1808, 7.1804, 7.1801, 7.1797, 7.1817, 7.1802, 7.1798, 7.1838, 7.1834, 7.183, 7.1838, 7.1835, 7.1844, 7.1829, 7.1826, 7.1823, 7.1819, 7.1815, 7.1811, 7.1808, 7.1805, 7.1801, 7.1809, 7.1805, 7.18, 7.1796, 7.1804, 7.18, 7.1796, 7.1792, 7.1788, 7.1785, 7.1781, 7.1779, 7.1776, 7.1785, 7.178, 7.1782, 7.1777, 7.1788, 7.1785, 7.1782, 7.1791, 7.1788, 7.1784, 7.1783, 7.1779, 7.1787, 7.1783, 7.178, 7.1777, 7.1773, 7.1769, 7.1754, 7.1763, 7.177, 7.1766, 7.1751, 7.1754, 7.175, 7.1759, 7.1756, 7.1752, 7.1749, 7.1734, 7.1731, 7.1739, 7.1735, 7.1745, 7.1753, 7.1753, 7.1749, 7.1745, 7.1742, 7.1727, 7.1724, 7.1721, 7.1722, 7.1744, 7.1753, 7.1738, 7.1735, 7.1731, 7.174, 7.1737, 7.1745, 7.1754, 7.175, 7.1747, 7.1743, 7.1739, 7.1736, 7.1733, 7.1729, 7.1725, 7.1733, 7.1729, 7.1725, 7.1733, 7.1816, 7.1824, 7.1821, 7.1817, 7.1814, 7.181, 7.1806, 7.1802, 7.1798, 7.1806, 7.1802, 7.1799, 7.1807, 7.1803, 7.1805, 7.1801, 7.1797, 7.1805, 7.1801, 7.1816, 7.1812, 7.1816, 7.1812, 7.1809, 7.1817, 7.1813, 7.1809, 7.1806, 7.1814, 7.1813, 7.1809, 7.181, 7.181, 7.1812, 7.1808, 7.1795, 7.1793, 7.179, 7.1786, 7.1799, 7.1797, 7.1795, 7.1791, 7.1787, 7.1783, 7.1779, 7.1766, 7.1774, 7.1774, 7.177, 7.1779, 7.1788, 7.1801, 7.1801, 7.1822, 7.183, 7.1815, 7.1811, 7.1819, 7.1815, 7.1812, 7.1808, 7.1805, 7.1812, 7.1809, 7.1805, 7.1803, 7.18, 7.1809, 7.1818, 7.1816, 7.1825, 7.1822, 7.1818, 7.1829, 7.1826, 7.1846, 7.1844, 7.1841, 7.1838, 7.1827, 7.1834, 7.1842, 7.1849, 7.1857, 7.1854, 7.1861, 7.1861, 7.1869, 7.1865, 7.1873, 7.1869, 7.1866, 7.1874, 7.187, 7.1867, 7.1863, 7.1859, 7.1866, 7.1862, 7.1858, 7.1857, 7.1865, 7.1861, 7.1857, 7.1854, 7.1851, 7.1847, 7.1846, 7.1832, 7.1828, 7.1836, 7.1833, 7.1829, 7.1837, 7.1833, 7.1831, 7.1827, 7.1837, 7.1833, 7.183, 7.1837, 7.1845, 7.1853, 7.1849, 7.1866, 7.1874, 7.1884, 7.188, 7.1878, 7.1875, 7.1872, 7.187, 7.1866, 7.187600000000001, 7.188600000000001, 7.1883, 7.1881, 7.1868, 7.1865, 7.1865, 7.1875, 7.1871, 7.1868, 7.1864, 7.1871, 7.1868, 7.1876, 7.1885, 7.189500000000001, 7.1892, 7.1889, 7.1888, 7.1884, 7.1893, 7.189, 7.1887, 7.1897, 7.1893, 7.1889, 7.1897, 7.1894, 7.189, 7.1898, 7.1905, 7.1901, 7.1908, 7.1905, 7.1902, 7.1899, 7.1908, 7.1904, 7.1913, 7.1917, 7.1914, 7.191, 7.1907, 7.1904, 7.19, 7.1898, 7.1894, 7.1894, 7.1897, 7.1899, 7.1896, 7.1904, 7.1901, 7.1909, 7.1908, 7.1916, 7.1913, 7.192, 7.1916, 7.1924, 7.1921, 7.1918, 7.1914, 7.19, 7.1898, 7.1895, 7.1903, 7.1911, 7.1908, 7.1905, 7.1903, 7.1913, 7.1921, 7.1917, 7.1914, 7.1922, 7.1919, 7.1915, 7.1923, 7.1933, 7.1933, 7.1921, 7.1923, 7.192, 7.1917, 7.1918, 7.1919, 7.191, 7.1906, 7.191, 7.1907, 7.1904, 7.1901, 7.1898, 7.1911, 7.1908, 7.1905, 7.1901, 7.1898, 7.1896, 7.1892, 7.1889, 7.1875, 7.1872, 7.1881, 7.1877, 7.1885, 7.1881, 7.1879, 7.1877, 7.1893, 7.1901, 7.1909, 7.1906, 7.1905, 7.1913, 7.1921, 7.1917, 7.1913, 7.1921, 7.1917, 7.1913, 7.1899, 7.1895, 7.1881, 7.1879, 7.1878, 7.1874, 7.187, 7.1868, 7.1864, 7.1861, 7.1858, 7.1854, 7.184, 7.1847, 7.1844, 7.1873, 7.187, 7.188000000000001, 7.1867, 7.1864, 7.185, 7.1847, 7.1854, 7.1851, 7.1848, 7.1845, 7.1853, 7.1861, 7.1847, 7.1843, 7.184, 7.1836, 7.1844, 7.183, 7.1828, 7.1837, 7.1833, 7.1829, 7.1827, 7.1834, 7.1843, 7.1839, 7.1836, 7.1833, 7.183, 7.1838, 7.1836, 7.1844, 7.1841, 7.1849, 7.1845, 7.1842, 7.1839, 7.1836, 7.1856, 7.1865, 7.1873, 7.188, 7.1877, 7.1874, 7.1882, 7.1879, 7.1876, 7.1872, 7.1868, 7.1865, 7.1862, 7.1858, 7.1854, 7.1864, 7.1874, 7.1871, 7.1867, 7.1863, 7.1859, 7.1856, 7.1852, 7.1848, 7.1836, 7.185, 7.1846, 7.1853, 7.1861, 7.1857, 7.1853, 7.1852, 7.1838, 7.1835, 7.1831, 7.1828, 7.1825, 7.1822, 7.1818, 7.1816, 7.1813, 7.1822, 7.182, 7.1827, 7.1824, 7.182, 7.1816, 7.1812, 7.1798, 7.1794, 7.1802, 7.1799, 7.1796, 7.1792, 7.18, 7.1796, 7.1794, 7.179, 7.1799, 7.1817, 7.1813, 7.1821, 7.182, 7.1827, 7.1823, 7.183, 7.1827, 7.1824, 7.1832, 7.1828, 7.183800000000001, 7.184800000000001, 7.1857, 7.1865, 7.1861, 7.1858, 7.1856, 7.1864, 7.1872, 7.188, 7.19, 7.191000000000001, 7.1906, 7.1902, 7.1909, 7.1905, 7.1912, 7.1908, 7.191800000000001, 7.1915, 7.1912, 7.1919, 7.1916, 7.1924, 7.192, 7.1916, 7.1902, 7.1899, 7.1896, 7.1893, 7.1889, 7.1886, 7.1884, 7.1892, 7.1888, 7.1885, 7.1893, 7.1889, 7.1886, 7.1883, 7.188, 7.1876, 7.1874, 7.1871, 7.1868, 7.1865, 7.1863, 7.1861, 7.1868, 7.1872, 7.1869, 7.1866, 7.1864, 7.1862, 7.1859, 7.1868, 7.1878, 7.1876, 7.1896, 7.1893, 7.189, 7.1886, 7.1893, 7.1892, 7.1889, 7.1887, 7.1884, 7.1882, 7.188, 7.1898, 7.1895, 7.1894, 7.189, 7.189, 7.1887, 7.1885, 7.1882, 7.1892000000000005, 7.19, 7.19, 7.1896, 7.1904, 7.1912, 7.1909, 7.1905, 7.1901, 7.1898, 7.1905, 7.1901, 7.1898, 7.1905, 7.1901, 7.1908, 7.1906, 7.1895, 7.1893, 7.1893, 7.189, 7.1886, 7.1883, 7.1881, 7.188, 7.1876, 7.1872, 7.1869, 7.1876, 7.1872, 7.188, 7.1876, 7.1873, 7.1869, 7.1866, 7.1874, 7.1871, 7.1878, 7.1874, 7.187, 7.1883, 7.188, 7.1877, 7.1873, 7.1881, 7.1878, 7.1874, 7.1872, 7.1869, 7.1871, 7.1867, 7.1863, 7.187, 7.1866, 7.1873, 7.187, 7.1868, 7.1865, 7.1861, 7.1858, 7.1856, 7.1862, 7.1879, 7.1866, 7.1873, 7.1869, 7.1866, 7.1862, 7.187, 7.1866, 7.1863, 7.187, 7.1866, 7.1865, 7.1873, 7.1869, 7.1865, 7.1862, 7.1858, 7.1856, 7.1863, 7.187, 7.1867, 7.1864, 7.1863, 7.1861, 7.1857, 7.1864, 7.1862, 7.1869, 7.1866, 7.1863, 7.186, 7.1848, 7.1835, 7.1832, 7.1829, 7.1826, 7.1833, 7.1831, 7.1828, 7.1825, 7.1822, 7.1819, 7.1816, 7.1813, 7.1811, 7.1809, 7.1806, 7.1804, 7.1801, 7.181, 7.1807, 7.1804, 7.1801, 7.18, 7.1808, 7.1795, 7.1792, 7.18, 7.1797, 7.1784, 7.1781, 7.1778, 7.1786, 7.1784, 7.1791, 7.181, 7.1856, 7.1853, 7.185, 7.1857, 7.1853, 7.1861, 7.1899, 7.1909, 7.1906, 7.1904, 7.19, 7.1903, 7.19, 7.1896, 7.1883, 7.1881, 7.1888, 7.1899, 7.1909, 7.1916, 7.1905, 7.1902, 7.1899, 7.1888, 7.1885, 7.1885, 7.1882, 7.1892000000000005, 7.1889, 7.1886, 7.1882, 7.1869, 7.1856, 7.1865, 7.1862, 7.1858, 7.1855, 7.1852, 7.1849, 7.1856, 7.1845, 7.1845, 7.1841, 7.1837, 7.1844, 7.1841, 7.1838, 7.1835, 7.1831, 7.1827, 7.1837, 7.1839, 7.1836, 7.1843, 7.184, 7.1847, 7.1845, 7.1844, 7.1841, 7.1837, 7.1835, 7.1842, 7.1849, 7.1859, 7.1867, 7.1854, 7.185, 7.1857, 7.1854, 7.1861, 7.1857, 7.1854, 7.1851, 7.1848, 7.1846, 7.1844, 7.184, 7.1837, 7.1834, 7.1851, 7.1858, 7.1858, 7.1854, 7.1862, 7.1858, 7.1857, 7.1864, 7.1862, 7.1859, 7.1855, 7.1863, 7.186, 7.1859, 7.1856, 7.1853, 7.185, 7.1847, 7.1844, 7.1841, 7.1838, 7.1835, 7.1832, 7.1829, 7.1826, 7.1823, 7.182, 7.1818, 7.1816, 7.1803, 7.18, 7.1797, 7.1804, 7.1811, 7.1818, 7.1815, 7.1812, 7.1819, 7.1806, 7.1804, 7.1801, 7.1799, 7.1797, 7.1794, 7.179, 7.180000000000001, 7.181000000000001, 7.1807, 7.1826, 7.1836, 7.1832, 7.1839, 7.1835, 7.1833, 7.184, 7.1849, 7.1846, 7.1843, 7.183, 7.1871, 7.1869, 7.1907, 7.1894, 7.1911, 7.1908, 7.1906, 7.1914, 7.1952, 7.1959, 7.1946, 7.1944, 7.194, 7.1947, 7.1944, 7.1951, 7.1949, 7.1977, 7.1994, 7.1999, 7.1987, 7.1984, 7.1981, 7.1995, 7.1992, 7.199, 7.1978, 7.1985, 7.1983, 7.199, 7.1987, 7.1974, 7.197, 7.1968, 7.1955, 7.1963, 7.197, 7.1969, 7.1967, 7.1965, 7.1961, 7.1958, 7.1955, 7.1943, 7.194, 7.1937, 7.1934, 7.194, 7.1938, 7.1925, 7.1925, 7.1922, 7.1929, 7.1937, 7.1943, 7.1951, 7.1958, 7.1954, 7.1961, 7.1958, 7.1945, 7.1942, 7.1939, 7.1946, 7.1943, 7.1963, 7.1961, 7.1957, 7.1964, 7.1962, 7.1972000000000005, 7.1978, 7.1975, 7.1971, 7.1968, 7.1964, 7.1961, 7.1958, 7.1956, 7.1954, 7.1952, 7.195, 7.1946, 7.1944, 7.194, 7.1937, 7.1934, 7.1941, 7.1938, 7.1935, 7.1931, 7.1927, 7.1933, 7.193, 7.1926, 7.1932, 7.193, 7.1937, 7.1934, 7.1931, 7.1928, 7.1925, 7.1922, 7.193, 7.1926, 7.1934, 7.1941, 7.1938, 7.1936, 7.1943, 7.1953, 7.195, 7.1946, 7.1944, 7.1942, 7.1939, 7.1946, 7.1942, 7.1939, 7.1936, 7.1946, 7.1944, 7.1942, 7.194, 7.1937, 7.1934, 7.193, 7.1937, 7.1934, 7.1922, 7.1919, 7.1916, 7.1914, 7.1911, 7.1908, 7.1917, 7.1925, 7.1922, 7.1919, 7.1916, 7.1919, 7.1916, 7.1915, 7.1923, 7.1921, 7.1918, 7.1907, 7.1905, 7.1902, 7.191, 7.1918, 7.1916, 7.1912, 7.192, 7.1929, 7.1927, 7.1915, 7.1903, 7.1891, 7.1889, 7.1886, 7.1884, 7.1894, 7.19, 7.1918, 7.1926, 7.1934, 7.194, 7.1937, 7.1967, 7.1966, 7.1976, 7.1973, 7.1971, 7.1968, 7.1965, 7.1962, 7.1958, 7.1954, 7.1952, 7.195, 7.1946, 7.1934, 7.1941, 7.1947, 7.1943, 7.1949, 7.1948, 7.1945, 7.1955, 7.1953, 7.1949, 7.1956, 7.1963, 7.197, 7.1977, 7.1974, 7.1981, 7.1978, 7.1985, 7.1981, 7.1979, 7.2024, 7.2021, 7.202, 7.2008, 7.2015, 7.2012, 7.2009, 7.2007, 7.2014, 7.2011, 7.2, 7.1988, 7.1985, 7.1983, 7.198, 7.1987, 7.1984, 7.1984, 7.1981, 7.1978, 7.1974, 7.1971, 7.1967, 7.1964, 7.1964, 7.1981, 7.1979, 7.1976, 7.1964, 7.1978, 7.1976, 7.1995, 7.1992, 7.199, 7.1987, 7.1984, 7.1983, 7.198, 7.1977, 7.1994, 7.1986, 7.1991, 7.1989, 7.1996, 7.1993, 7.201, 7.201, 7.2008, 7.2015, 7.2011, 7.2008, 7.2028, 7.2025, 7.2024, 7.2012, 7.2009, 7.2006, 7.2003, 7.1999, 7.1996, 7.1997, 7.1994, 7.1991, 7.1988, 7.1976, 7.1983, 7.198, 7.1977, 7.1974, 7.1972, 7.1979, 7.1977, 7.1975, 7.1982, 7.1979, 7.1976, 7.1973, 7.199, 7.1987, 7.2062, 7.2059, 7.2055, 7.2053, 7.206, 7.2058, 7.2055, 7.2052, 7.2049, 7.2046, 7.2042, 7.2039, 7.2036, 7.2062, 7.2061, 7.2067, 7.2064, 7.2061, 7.2059, 7.2059, 7.2056, 7.2044, 7.2063, 7.2098, 7.2096, 7.2115, 7.2122, 7.212, 7.2117, 7.2115, 7.2131, 7.213, 7.2118, 7.2106, 7.2102, 7.2099, 7.2095, 7.2091, 7.2097, 7.2094, 7.2091, 7.2088, 7.2114, 7.212, 7.2117, 7.2113, 7.211, 7.2106, 7.2112, 7.2101, 7.2097, 7.2094, 7.209, 7.2096, 7.2109, 7.2115, 7.2112, 7.2119, 7.2116, 7.2114, 7.2113, 7.211, 7.2107, 7.2114, 7.2121, 7.212, 7.2128, 7.2125, 7.2122, 7.2122, 7.2119, 7.2126, 7.2133, 7.214, 7.2147, 7.2143, 7.2139, 7.2137, 7.2143, 7.2151, 7.2148, 7.2146, 7.2152, 7.2149, 7.2146, 7.2143, 7.2141, 7.2139, 7.2137, 7.2144, 7.2141, 7.2138, 7.2135, 7.2133, 7.2129, 7.2145, 7.2143, 7.2159, 7.2166, 7.2164, 7.217, 7.2177, 7.2175, 7.2163, 7.216, 7.2158, 7.2156, 7.2154, 7.2151, 7.2149, 7.2147, 7.2153, 7.215, 7.2147, 7.2184, 7.2181, 7.2178, 7.2196, 7.2202, 7.2209, 7.2206, 7.2194, 7.2191, 7.2188, 7.2192, 7.219, 7.2187, 7.2184, 7.2181, 7.2179, 7.2167, 7.2164, 7.2171, 7.2177, 7.2184, 7.2181, 7.219, 7.2206, 7.2212, 7.2218, 7.2215, 7.2241, 7.2238, 7.2236, 7.2233, 7.223, 7.2228, 7.2245, 7.2252, 7.225, 7.2256, 7.2253, 7.2259, 7.2255, 7.2261, 7.2249, 7.2247, 7.2244, 7.2246, 7.2243, 7.2241, 7.2238, 7.2235, 7.2234, 7.2232, 7.2229, 7.2217, 7.2214, 7.2212, 7.221, 7.2208, 7.2205, 7.2203, 7.22, 7.2198, 7.2196, 7.2203, 7.22, 7.2198, 7.2198, 7.2196, 7.2194, 7.2192, 7.22, 7.2197, 7.2195, 7.2192, 7.2198, 7.2195, 7.2192, 7.2189, 7.2186, 7.2182, 7.2179, 7.2176, 7.2174, 7.2172, 7.2169, 7.2158, 7.2165, 7.2162, 7.2159, 7.215, 7.2147, 7.2144, 7.215, 7.2157, 7.2154, 7.2151, 7.2158, 7.2165, 7.2169, 7.2167, 7.2173, 7.217, 7.2168, 7.2157, 7.2145, 7.2151, 7.2148, 7.2145, 7.2151, 7.2157, 7.2154, 7.2151, 7.2141, 7.2147, 7.2144, 7.215, 7.2147, 7.2144, 7.2141, 7.2138, 7.2127, 7.2125, 7.2122, 7.212, 7.2117, 7.2114, 7.2111, 7.2109, 7.2115, 7.2121, 7.2127, 7.2133, 7.213, 7.2136, 7.2133, 7.2121, 7.2118, 7.2115, 7.2122, 7.2119, 7.2116, 7.2113, 7.212, 7.2117, 7.2125, 7.2123, 7.2129, 7.2126, 7.2123, 7.2129, 7.2139, 7.2146, 7.2144, 7.2142, 7.2149, 7.2155, 7.2152, 7.215, 7.2147, 7.2144, 7.2144, 7.2141, 7.2139, 7.2136, 7.2133, 7.213, 7.2136, 7.2142, 7.2149, 7.2148, 7.2145, 7.2153, 7.215, 7.2147, 7.2145, 7.215, 7.2147, 7.2144, 7.2142, 7.2139, 7.2136, 7.2134, 7.2132, 7.2138, 7.2135, 7.2142, 7.214, 7.2146, 7.2143, 7.214, 7.2137, 7.2143, 7.2149, 7.2156, 7.2153, 7.215, 7.2148, 7.2145, 7.2143, 7.214, 7.215000000000001, 7.2148, 7.2154, 7.216, 7.2166, 7.2163, 7.2169, 7.2157, 7.2155, 7.2161, 7.2158, 7.2155, 7.2152, 7.2149, 7.2147, 7.2144, 7.2159, 7.2156, 7.2153, 7.2151, 7.2142, 7.2139, 7.2136, 7.2134, 7.2132, 7.2142, 7.214, 7.2137, 7.2134, 7.2152, 7.2149, 7.2146, 7.2149, 7.2146, 7.2144, 7.2141, 7.2138, 7.2135, 7.2132, 7.2158, 7.2155, 7.2152, 7.2158, 7.2155, 7.2152, 7.2149, 7.2155, 7.2152, 7.2149, 7.2146, 7.2152, 7.2158, 7.2184, 7.2182, 7.2179, 7.2185, 7.2182, 7.2179, 7.2185, 7.2183, 7.218, 7.2187, 7.2194, 7.2192, 7.2189, 7.2195, 7.2193, 7.219, 7.2188, 7.2228, 7.2225, 7.2222, 7.2219, 7.2216, 7.2213, 7.2211, 7.2208, 7.2205, 7.221, 7.2208, 7.2205, 7.2202, 7.2208, 7.2205, 7.2211, 7.2217, 7.2206, 7.2203, 7.22, 7.2197, 7.2195, 7.2201, 7.2198, 7.2195, 7.2201, 7.2199, 7.2188, 7.2186, 7.2184, 7.2191, 7.2215, 7.2212, 7.2209, 7.2206, 7.2203, 7.2206, 7.2204, 7.2211, 7.2209, 7.2206, 7.2217, 7.2214, 7.222, 7.2226, 7.2224, 7.2221, 7.2227, 7.2225, 7.2223, 7.2229, 7.2227, 7.2224, 7.2239, 7.2236, 7.2242, 7.2239, 7.2236, 7.2233, 7.2232, 7.2238, 7.2236, 7.2233, 7.223, 7.2227, 7.2234, 7.2223, 7.222, 7.2217, 7.2222, 7.2229, 7.2227, 7.2224, 7.2231, 7.2238, 7.2241, 7.2238, 7.2235, 7.2232, 7.2229, 7.2236, 7.2233, 7.2239, 7.2243, 7.2242, 7.224, 7.2246, 7.2243, 7.225, 7.2256, 7.2263, 7.2261, 7.2258, 7.2264, 7.2262, 7.226, 7.2257, 7.2254, 7.2251, 7.2249, 7.2254, 7.2254, 7.2254, 7.2251, 7.2248, 7.225, 7.2266, 7.2264, 7.2261, 7.2268, 7.2265, 7.2265, 7.2264, 7.2263, 7.2261, 7.2268, 7.2267, 7.2264, 7.2261, 7.226, 7.2258, 7.2255, 7.2254, 7.226, 7.2266, 7.2264, 7.2262, 7.2259, 7.2256, 7.2262, 7.2259, 7.2257, 7.2254, 7.2261, 7.2267, 7.2264, 7.2313, 7.231, 7.2308, 7.2305, 7.2303, 7.2306, 7.232, 7.2336, 7.2334, 7.2331, 7.2328, 7.2334, 7.2335, 7.2332, 7.2331, 7.2329, 7.2327, 7.2325, 7.2323, 7.2321, 7.2328, 7.2326, 7.2323, 7.232, 7.2327, 7.2324, 7.2323, 7.232, 7.2317, 7.2314, 7.232, 7.2317, 7.2314, 7.232, 7.2318, 7.2316, 7.2322, 7.232, 7.2317, 7.2316, 7.2313, 7.231, 7.2307, 7.2305, 7.2303, 7.23, 7.2306, 7.2304, 7.2301, 7.23, 7.2289, 7.2287, 7.2293, 7.229, 7.2287, 7.2285, 7.2283, 7.2281, 7.2278, 7.2277, 7.2274, 7.2282, 7.2283, 7.2284, 7.2282, 7.228, 7.2278, 7.2275, 7.2282, 7.2279, 7.2276, 7.2274, 7.2271, 7.2262, 7.226, 7.2263, 7.2261, 7.2259, 7.2256, 7.2254, 7.2252, 7.2249, 7.2256, 7.2254, 7.2251, 7.2249, 7.2247, 7.2273, 7.2271, 7.2268, 7.2265, 7.2271, 7.2279, 7.2276, 7.2282, 7.2279, 7.2285, 7.2282, 7.2279, 7.2277, 7.2274, 7.2272, 7.2269, 7.2275, 7.2281, 7.2278, 7.2284, 7.229, 7.2288, 7.2286, 7.2283, 7.2288, 7.2294, 7.2291, 7.229, 7.2287, 7.2285, 7.2282, 7.228, 7.2278, 7.2275, 7.2276, 7.2273, 7.2301, 7.2301, 7.2307, 7.2304, 7.2321, 7.2318, 7.2317, 7.2314, 7.2313, 7.231, 7.2308, 7.2305, 7.2304, 7.2301, 7.2309, 7.2316, 7.2305, 7.2304, 7.2311, 7.2308, 7.2305, 7.2311, 7.2312, 7.231, 7.2309, 7.2307, 7.2313, 7.2319, 7.2317, 7.2315, 7.2313, 7.231, 7.2307, 7.2304, 7.2304, 7.2302, 7.23, 7.2306, 7.2321, 7.2318, 7.2324, 7.233, 7.2327, 7.2333, 7.2344, 7.2342, 7.2348, 7.2337, 7.2334, 7.2331, 7.2328, 7.2325, 7.2352, 7.2359, 7.2358, 7.2364, 7.2361, 7.2374, 7.2381, 7.2384, 7.2381, 7.2387, 7.2393, 7.239, 7.2388, 7.2394, 7.24, 7.2397, 7.2395, 7.2392, 7.239, 7.2396, 7.2393, 7.239, 7.2387, 7.2384, 7.2381, 7.2378, 7.2375, 7.2381, 7.2379, 7.2377, 7.2374, 7.2372, 7.2369, 7.2366, 7.2363, 7.2368, 7.2358, 7.2365, 7.2365, 7.2371, 7.2378, 7.2376, 7.2373, 7.2371, 7.2369, 7.2366, 7.2372, 7.237, 7.2376, 7.2382, 7.2379, 7.2377, 7.2374, 7.2379, 7.2376, 7.2374, 7.2372, 7.2377, 7.2375, 7.238, 7.2378, 7.2384, 7.2381, 7.2387, 7.2384, 7.2389, 7.2386, 7.2392, 7.239, 7.2379, 7.2376, 7.2373, 7.238, 7.2379, 7.2377, 7.2385, 7.2382, 7.2371, 7.2369, 7.2387, 7.2386, 7.2384, 7.2382, 7.2379, 7.2378, 7.2383, 7.2382, 7.2381, 7.2379, 7.2377, 7.2375, 7.2382, 7.2379, 7.2376, 7.2383, 7.2393, 7.2391, 7.2398, 7.2396, 7.2393, 7.2402, 7.2399, 7.2397, 7.2394, 7.2391, 7.2389, 7.2387, 7.2386, 7.2391, 7.2388, 7.2378, 7.2384, 7.2373, 7.237, 7.2359, 7.2357, 7.2347, 7.2344, 7.2344, 7.2341, 7.234, 7.2346, 7.2343, 7.2348, 7.2346, 7.2344, 7.2341, 7.2338, 7.2336, 7.2325, 7.2322, 7.2319, 7.2316, 7.2314, 7.2311, 7.2309, 7.2307, 7.2304, 7.231, 7.2307, 7.2304, 7.2304, 7.231, 7.2316, 7.2313, 7.231, 7.2308, 7.2308, 7.2305, 7.2311, 7.2309, 7.2315, 7.2304, 7.2314, 7.2311, 7.2309, 7.2306, 7.2321, 7.2352, 7.235, 7.2348, 7.2346, 7.2352, 7.2358, 7.2356, 7.2353, 7.2351, 7.2348, 7.2337, 7.2334, 7.2334, 7.2332, 7.2337, 7.2326, 7.2324, 7.2321, 7.2326, 7.2323, 7.2329, 7.2335, 7.234, 7.2337, 7.2371, 7.2377, 7.2375, 7.2365, 7.2374, 7.2381, 7.2394, 7.2393, 7.239, 7.2396, 7.2393, 7.2391, 7.2388, 7.2394, 7.24, 7.2397, 7.2394, 7.24, 7.2407, 7.2413, 7.241, 7.2407, 7.2414, 7.2411, 7.2408, 7.2398, 7.2398, 7.2395, 7.2394, 7.2391, 7.2391, 7.2389, 7.2387, 7.2384, 7.239, 7.2394, 7.2394, 7.2392, 7.239, 7.2388, 7.2399, 7.2397, 7.2411, 7.2417, 7.2414, 7.2411, 7.2409, 7.2407, 7.2405, 7.2436, 7.2433, 7.2439, 7.2436, 7.2442, 7.2439, 7.2436, 7.2444, 7.2441, 7.2431, 7.2428, 7.2426, 7.2431, 7.243, 7.2428, 7.2425, 7.2439, 7.2445, 7.245, 7.2448, 7.2445, 7.2442, 7.2439, 7.2436, 7.2434, 7.2431, 7.2437, 7.2435, 7.2432, 7.2429, 7.2419, 7.2426, 7.2416, 7.2406, 7.2403, 7.24, 7.239, 7.2388, 7.2385, 7.2376, 7.2382, 7.2406, 7.2413, 7.2414, 7.242, 7.2425, 7.2423, 7.2422, 7.242, 7.2425, 7.2423, 7.242, 7.2418, 7.2417, 7.2414, 7.2419, 7.2417, 7.2415, 7.2412, 7.2418, 7.2416, 7.2413, 7.2411, 7.2417, 7.2415, 7.2405, 7.2403, 7.2401, 7.2398, 7.2395, 7.2392, 7.239, 7.2388, 7.2386, 7.2384, 7.2381, 7.2387, 7.2384, 7.239, 7.2396, 7.2393, 7.2391, 7.2388, 7.2386, 7.2384, 7.2391, 7.2398, 7.2396, 7.2385, 7.2383, 7.2381, 7.2389, 7.2388, 7.2385, 7.2383, 7.238, 7.2377, 7.2374, 7.2364, 7.2361, 7.2366, 7.2364, 7.2361, 7.2358, 7.2359, 7.2361, 7.2359, 7.2365, 7.2371, 7.2373, 7.237, 7.2367, 7.2367, 7.2372, 7.2369, 7.2366, 7.2363, 7.2361, 7.2358, 7.2364, 7.2366, 7.2365, 7.2364, 7.2361, 7.2358, 7.2355, 7.2369, 7.2374, 7.2376, 7.2381, 7.2378, 7.2375, 7.2384, 7.2383, 7.2389, 7.2387, 7.2384, 7.2381, 7.2378, 7.2383, 7.2389, 7.2387, 7.2385, 7.2375, 7.2372, 7.2377, 7.2382, 7.2379, 7.2384, 7.239, 7.2395, 7.2385, 7.2391, 7.2388, 7.2385, 7.2384, 7.2381, 7.2378, 7.2386, 7.2383, 7.238, 7.2377, 7.2375, 7.2373, 7.2387, 7.2385, 7.2382, 7.2379, 7.2376, 7.2373, 7.237, 7.2368, 7.2373, 7.2378, 7.2383, 7.2388, 7.2385, 7.2383, 7.238, 7.2427, 7.2433, 7.2444, 7.2455, 7.2445, 7.2435, 7.2425, 7.243, 7.2428, 7.2434, 7.2431, 7.2428, 7.2418, 7.2423, 7.2428, 7.2425, 7.2422, 7.242, 7.2426, 7.2424, 7.2422, 7.2427, 7.2433, 7.2459, 7.2457, 7.2486, 7.2484, 7.2475, 7.2475, 7.2493, 7.2499, 7.2504, 7.2509, 7.2506, 7.2503, 7.2503, 7.2517, 7.2547, 7.2561, 7.2559, 7.2565, 7.2564, 7.2563, 7.2577, 7.2575, 7.2572, 7.2586, 7.259, 7.2596, 7.2595, 7.2592, 7.259, 7.2587, 7.2609, 7.2606, 7.2611, 7.261, 7.2615, 7.2628, 7.2625, 7.263, 7.2627, 7.2641, 7.2639, 7.2637, 7.2635, 7.264, 7.2637, 7.2642, 7.2639, 7.2636, 7.2642, 7.264, 7.2638, 7.2643, 7.2641, 7.2638, 7.2638, 7.2643, 7.264, 7.2637, 7.2634, 7.2632, 7.2637, 7.2643, 7.2633, 7.2646, 7.2643, 7.2649, 7.2646, 7.2643, 7.2648, 7.2654, 7.2659, 7.2656, 7.2653, 7.2652, 7.265, 7.2655, 7.2664, 7.2661, 7.2651, 7.2648, 7.267, 7.2676, 7.2682, 7.2687, 7.2692, 7.269, 7.2696, 7.2693, 7.269, 7.2695, 7.2692, 7.2689, 7.2694, 7.2699, 7.2704, 7.2701, 7.2708, 7.2722, 7.2752, 7.2749, 7.2746, 7.2759, 7.2773, 7.2771, 7.2769, 7.2774, 7.2771, 7.2768, 7.2758, 7.2755, 7.2752, 7.2749, 7.2746, 7.2744, 7.2741, 7.2746, 7.2743, 7.2756, 7.2753, 7.2758, 7.2755, 7.2761, 7.2766, 7.2763, 7.2785, 7.2775, 7.2773, 7.2771, 7.2777, 7.2769, 7.2775, 7.2773, 7.2771, 7.2768, 7.2758, 7.2755, 7.2761, 7.2774, 7.2778, 7.2784, 7.2782, 7.2779, 7.2776, 7.2773, 7.2778, 7.2784, 7.2774, 7.2787, 7.2793, 7.2799, 7.2797, 7.2795, 7.2792, 7.279, 7.2795, 7.28, 7.2806, 7.2803, 7.2817, 7.2814, 7.2819, 7.2834, 7.2831, 7.2861, 7.2859, 7.2864, 7.2877, 7.2875, 7.2882, 7.2879, 7.2884, 7.2882, 7.289, 7.2903, 7.2902, 7.29, 7.2914, 7.2923, 7.2928, 7.2926, 7.2924, 7.2921, 7.2926, 7.2924, 7.2921, 7.2918, 7.2916, 7.2921, 7.2919, 7.294, 7.2944, 7.2957, 7.2955, 7.2953, 7.2958, 7.2956, 7.2946, 7.2951, 7.2949, 7.2947, 7.2944, 7.2946, 7.295, 7.2955, 7.2953, 7.2963, 7.2969, 7.2967, 7.2966, 7.2963, 7.2962, 7.2959, 7.2956, 7.2953, 7.2977, 7.299, 7.2996, 7.3003, 7.3007, 7.3011, 7.3009, 7.3007, 7.3005, 7.3003, 7.3, 7.2997, 7.2989, 7.2994, 7.2993, 7.3008, 7.3005, 7.2998, 7.2997, 7.2994, 7.3, 7.3006, 7.3003, 7.3, 7.2999, 7.3005, 7.3003, 7.3001, 7.3007, 7.3005, 7.301, 7.3015, 7.3012, 7.3017, 7.3022, 7.3019, 7.3019, 7.3016, 7.3013, 7.3018, 7.3015, 7.3013, 7.3017, 7.3014], '192.168.122.120': [10.6947, 10.968, 10.7904, 9.414, 10.8624, 10.9016, 10.1753, 9.6234, 9.2708, 8.9542, 9.1234, 8.8404, 8.6506, 8.848, 8.6484, 8.4689, 8.2962, 8.1666, 8.0476, 7.952, 7.8317, 7.7518, 7.6616, 7.609, 7.5311, 7.6589, 7.6113, 7.5676, 7.53, 7.4573, 7.5202, 7.4509, 7.3848, 7.4758, 7.5641, 7.5048, 7.4575, 7.4098, 7.3707, 7.322, 7.4107, 7.8761, 7.8302, 7.7868, 7.6311, 7.591, 7.5455, 7.4205, 7.3908, 7.3587, 7.35, 7.4339, 7.4175, 7.3787, 7.4362, 7.4072, 7.3713, 7.2535, 7.2237, 7.2811, 7.2549, 7.3184, 7.2987, 7.2813, 7.2565, 7.2301, 7.2269, 7.1996, 7.1115, 7.1013, 7.0992, 7.0982, 7.0892, 7.0688, 7.0523, 7.0309, 7.0845, 7.077, 7.1245, 7.1018, 7.087, 7.0663, 7.0451, 7.0274, 7.0709, 7.0676, 7.1192, 7.108, 7.1535, 7.1324, 7.115, 7.0961, 7.0786, 7.0615, 7.1079, 7.1536, 7.1499, 7.1313, 7.1156, 7.1522, 7.2107, 7.2001, 7.1398, 7.1216, 7.1548, 7.1441, 7.176, 7.164, 7.1582, 7.1416, 7.1252, 7.0672, 7.0523, 7.0858, 7.0724, 7.0573, 7.0421, 7.0361, 7.0279, 7.0362, 7.0222, 7.0523, 7.0386, 7.0247, 7.011, 7.0057, 6.9975, 7.0296, 7.0175, 7.0074, 6.9995, 6.9997, 6.9879, 7.0173, 7.0049, 6.9982, 6.9864, 6.9791, 7.0063, 6.9956, 7.0208, 7.0084, 7.0005, 7.1644, 7.1511, 7.1766, 7.1733, 7.1961, 7.1831, 7.1744, 7.1738, 7.1652, 7.1545, 7.145, 7.1353, 7.1246, 7.1544, 7.1464, 7.1374, 7.133, 7.1243, 7.1171, 7.1455, 7.1346, 7.1265, 7.1208, 7.1135, 7.1081, 7.1148, 7.1276, 7.1255, 7.119, 7.1108, 7.1343, 7.1263, 7.1189, 7.1088, 7.0987, 7.1251, 7.1156, 7.1082, 7.0982, 7.0905, 7.1116, 7.1057, 7.1257, 7.1454, 7.1389, 7.1328, 7.1259, 7.1456, 7.1376, 7.1279, 7.1194, 7.1109, 7.1023, 7.0939, 7.1131, 7.1042, 7.0977, 7.0949, 7.0914, 7.0828, 7.1012, 7.1038, 7.1224, 7.1172, 7.1091, 7.131, 7.1325, 7.1247, 7.1263, 7.1206, 7.1401, 7.1335, 7.1315, 7.1259, 7.1001, 7.1441, 7.1607, 7.1529, 7.1679, 7.1824, 7.1756, 7.169, 7.1615, 7.1544, 7.1496, 7.141, 7.1348, 7.1293, 7.1433, 7.1384, 7.1306, 7.128, 7.1225, 7.1173, 7.1118, 7.1061, 7.1025, 7.1212, 7.1136, 7.1083, 7.1012, 7.1164, 7.1314, 7.1257, 7.118, 7.1126, 7.1271, 7.1204, 7.1155, 7.1151, 7.1114, 7.1066, 7.1032, 7.0966, 7.0901, 7.1038, 7.118, 7.111, 7.129, 7.1426, 7.1367, 7.1294, 7.142, 7.1425, 7.1361, 7.1491, 7.165, 7.1584, 7.152, 7.1459, 7.1419, 7.1556, 7.1495, 7.1451, 7.1402, 7.1544, 7.1483, 7.1423, 7.1556, 7.1497, 7.2014, 7.1953, 7.1892, 7.2019, 7.1965, 7.1916, 7.1869, 7.1843, 7.1972, 7.1921, 7.2251, 7.2206, 7.2161, 7.2434, 7.2374, 7.241, 7.2532, 7.2469, 7.2442, 7.2422, 7.2376, 7.2167, 7.2116, 7.2243, 7.2193, 7.2141, 7.2273, 7.2402, 7.2351, 7.2457, 7.2408, 7.2537, 7.2496, 7.2445, 7.239, 7.2337, 7.2287, 7.2394, 7.2354, 7.2298, 7.2401, 7.2344, 7.2134, 7.2094, 7.2075, 7.2046, 7.2004, 7.1969, 7.1908, 7.188, 7.1844, 7.1796, 7.175, 7.1695, 7.1644, 7.1593, 7.1704, 7.1652, 7.179, 7.1896, 7.1844, 7.1795, 7.1771, 7.1716, 7.1669, 7.1774, 7.1881, 7.1854, 7.181, 7.1764, 7.1869, 7.2, 7.1947, 7.1897, 7.1846, 7.1944, 7.1899, 7.1848, 7.1819, 7.1787, 7.1749, 7.1699, 7.1517, 7.1614, 7.1573, 7.1522, 7.1477, 7.1437, 7.1392, 7.1377, 7.133, 7.1289, 7.1242, 7.1333, 7.1688, 7.1784, 7.1749, 7.185, 7.1944, 7.1908, 7.187, 7.1825, 7.1777, 7.173, 7.1695, 7.1649, 7.16, 7.1693, 7.1787, 7.1746, 7.1707, 7.1662, 7.1754, 7.2009, 7.1976, 7.2076, 7.2196, 7.2296, 7.2252, 7.2341, 7.2203, 7.2288, 7.2407, 7.2363, 7.2332, 7.2308, 7.2261, 7.2217, 7.2308, 7.2262, 7.2231, 7.2198, 7.2157, 7.2126, 7.2123, 7.208, 7.2168, 7.2255, 7.2342, 7.2295, 7.2256, 7.2216, 7.2233, 7.2316, 7.2273, 7.2314, 7.241, 7.2368, 7.2452, 7.2434, 7.2396, 7.2351, 7.2435, 7.2392, 7.2242, 7.22, 7.2162, 7.2134, 7.2112, 7.207, 7.1979, 7.1837, 7.1798, 7.1759, 7.1787, 7.1755, 7.1615, 7.1586, 7.1555, 7.1519, 7.1609, 7.1575, 7.1533, 7.1499, 7.1475, 7.1444, 7.1532, 7.1492, 7.1455, 7.1316, 7.1395, 7.1358, 7.1335, 7.1299, 7.1378, 7.1343, 7.1303, 7.1389, 7.1357, 7.1321, 7.1362, 7.1325, 7.129, 7.1369, 7.1445, 7.1523, 7.1497, 7.1575, 7.1538, 7.1502, 7.1468, 7.1441, 7.1421, 7.1388, 7.1381, 7.1252, 7.1229, 7.112, 7.109, 7.0963, 7.0832, 7.0914, 7.0994, 7.097, 7.0943, 7.0917, 7.089, 7.0967, 7.1261, 7.1341, 7.1406, 7.1373, 7.1358, 7.133, 7.1319, 7.1281, 7.1251, 7.1215, 7.1191, 7.1172, 7.1242, 7.1315, 7.1287, 7.1268, 7.1239, 7.1204, 7.1175, 7.115, 7.1222, 7.1185, 7.1255, 7.1238, 7.1208, 7.1185, 7.1168, 7.1132, 7.1104, 7.1071, 7.1046, 7.1011, 7.098, 7.0954, 7.103, 7.1025, 7.0999, 7.0974, 7.1037, 7.1101, 7.1181, 7.1154, 7.1218, 7.1282, 7.1252, 7.1222, 7.1289, 7.1263, 7.133, 7.13, 7.1184, 7.1252, 7.1136, 7.1108, 7.1078, 7.105, 7.1116, 7.1089, 7.1075, 7.1043, 7.111, 7.1085, 7.1055, 7.1045, 7.1023, 7.0995, 7.0965, 7.0943, 7.0914, 7.0886, 7.0857, 7.0826, 7.0795, 7.0859, 7.0833, 7.0802, 7.0802, 7.0778, 7.0855, 7.0828, 7.0804, 7.0796, 7.078, 7.0751, 7.0808, 7.0779, 7.0752, 7.0737, 7.0801, 7.087, 7.0949, 7.1019, 7.0992, 7.0965, 7.0944, 7.092, 7.0906, 7.088, 7.0861, 7.0832, 7.0808, 7.0784, 7.076, 7.0829, 7.0814, 7.0966, 7.0946, 7.0928, 7.0902, 7.0874, 7.0854, 7.0846, 7.0817, 7.0804, 7.0788, 7.076, 7.074, 7.0744, 7.0716, 7.0689, 7.0661, 7.0634, 7.0695, 7.0763, 7.0821, 7.0802, 7.078, 7.0759, 7.0739, 7.0711, 7.0684, 7.0686, 7.0657, 7.0628, 7.0603, 7.0666, 7.0725, 7.078, 7.0848, 7.0821, 7.0795, 7.0853, 7.0843, 7.0815, 7.079, 7.0764, 7.0744, 7.0715, 7.0689, 7.059, 7.0572, 7.0546, 7.0522, 7.0506, 7.0482, 7.0457, 7.0432, 7.0422, 7.0409, 7.0383, 7.0367, 7.0341, 7.0244, 7.0299, 7.0276, 7.0255, 7.0231, 7.0215, 7.0271, 7.0244, 7.0225, 7.0201, 7.0184, 7.0161, 7.0141, 7.012, 7.0096, 7.0078, 7.0449, 7.0448, 7.0502, 7.048, 7.0539, 7.0603, 7.0901, 7.0886, 7.0934, 7.1023, 7.0998, 7.1056, 7.1114, 7.1175, 7.1151, 7.1129, 7.1108, 7.1158, 7.1248, 7.1221, 7.1212, 7.1261, 7.1411, 7.1389, 7.1367, 7.1275, 7.1401, 7.1377, 7.143, 7.1338, 7.1253, 7.1227, 7.1277, 7.1252, 7.1302, 7.1283, 7.1336, 7.1384, 7.1431, 7.141, 7.1386, 7.1438, 7.1488, 7.1482, 7.1686, 7.1735, 7.1714, 7.169, 7.174, 7.165, 7.1625, 7.1599, 7.1581, 7.1629, 7.1611, 7.1586, 7.1571, 7.1556, 7.1539, 7.1515, 7.1496, 7.1483, 7.1469, 7.1456, 7.1431, 7.15, 7.1559, 7.1538, 7.1517, 7.164, 7.1617, 7.1666, 7.1643, 7.1695, 7.1764, 7.1813, 7.1801, 7.1792, 7.1772, 7.1749, 7.1728, 7.1798, 7.1778, 7.1775, 7.1829, 7.1806, 7.1786, 7.1836, 7.1813, 7.1791, 7.1773, 7.1761, 7.175, 7.1728, 7.1706, 7.1753, 7.1802, 7.1782, 7.1825, 7.1948, 7.1925, 7.1907, 7.1948, 7.1927, 7.1903, 7.1888, 7.1935, 7.1912, 7.1896, 7.1873, 7.1854, 7.1854, 7.1833, 7.181, 7.1788, 7.1773, 7.1972, 7.2047, 7.2027, 7.1949, 7.1996, 7.2325, 7.237, 7.2358, 7.2342, 7.2319, 7.2297, 7.2274, 7.2319, 7.2298, 7.2276, 7.2253, 7.2233, 7.2229, 7.2212, 7.2189, 7.2177, 7.2224, 7.2207, 7.2191, 7.2123, 7.217, 7.2147, 7.2131, 7.2111, 7.209, 7.2091, 7.2069, 7.2061, 7.2045, 7.2029, 7.201, 7.2059, 7.2042, 7.203, 7.2081, 7.2058, 7.2038, 7.2017, 7.1994, 7.2115, 7.2098, 7.2075, 7.2054, 7.2034, 7.2019, 7.2061, 7.2038, 7.2021, 7.2009, 7.1989, 7.1971, 7.1949, 7.1936, 7.1919, 7.1898, 7.1883, 7.1861, 7.1847, 7.1827, 7.1808, 7.179, 7.1838, 7.1824, 7.1749, 7.1728, 7.1707, 7.1696, 7.168, 7.166, 7.1702, 7.1684, 7.1663, 7.1599, 7.1677, 7.1659, 7.1637, 7.1616, 7.1597, 7.1548, 7.1607, 7.1645, 7.1694, 7.1683, 7.1662, 7.1644, 7.1622, 7.1605, 7.1589, 7.1579, 7.1558, 7.1601, 7.1591, 7.1576, 7.1561, 7.1545, 7.1591, 7.1572, 7.1556, 7.1542, 7.1523, 7.1503, 7.1484, 7.1475, 7.1461, 7.1441, 7.1422, 7.1402, 7.1443, 7.1423, 7.1407, 7.1387, 7.1428, 7.1415, 7.1459, 7.1498, 7.1482, 7.1522, 7.1561, 7.1543, 7.1525, 7.1517, 7.1557, 7.1538, 7.1541, 7.1529, 7.1509, 7.1498, 7.1481, 7.1413, 7.1393, 7.1381, 7.1362, 7.1347, 7.1394, 7.1375, 7.1418, 7.1398, 7.1379, 7.1363, 7.1344, 7.1324, 7.1311, 7.1308, 7.1348, 7.1449, 7.1445, 7.1379, 7.1361, 7.1342, 7.1327, 7.1312, 7.1292, 7.1389, 7.137, 7.1411, 7.1401, 7.1444, 7.1484, 7.1527, 7.1561, 7.1544, 7.1525, 7.1513, 7.1551, 7.1533, 7.1514, 7.1505, 7.173, 7.1768, 7.175, 7.1733, 7.1773, 7.1754, 7.1735, 7.1772, 7.1778, 7.176, 7.1743, 7.1726, 7.1764, 7.1745, 7.178, 7.1766, 7.1756, 7.1797, 7.178, 7.1762, 7.1743, 7.1727, 7.171, 7.1747, 7.1734, 7.1716, 7.1702, 7.1688, 7.1671, 7.1709, 7.1702, 7.1685, 7.1723, 7.1706, 7.1688, 7.1679, 7.1661, 7.1648, 7.1636, 7.1618, 7.16, 7.1636, 7.1622, 7.162, 7.1609, 7.1648, 7.1584, 7.1624, 7.1613, 7.1598, 7.1581, 7.162, 7.1656, 7.164, 7.1627, 7.1664, 7.1667, 7.1653, 7.1589, 7.1574, 7.1557, 7.1595, 7.1576, 7.1561, 7.161, 7.1599, 7.1587, 7.1589, 7.1583, 7.1571, 7.1556, 7.1544, 7.1529, 7.1511, 7.1543, 7.1529, 7.1511, 7.1449, 7.1436, 7.1432, 7.1415, 7.1403, 7.1385, 7.1368, 7.1362, 7.1357, 7.1339, 7.1321, 7.1306, 7.1289, 7.1271, 7.1255, 7.1238, 7.1227, 7.1211, 7.12, 7.1186, 7.1172, 7.1171, 7.1163, 7.1273, 7.1308, 7.1293, 7.1278, 7.1262, 7.1248, 7.1232, 7.1232, 7.1215, 7.1204, 7.1238, 7.123, 7.1213, 7.1198, 7.1297, 7.1324, 7.1309, 7.1345, 7.1375, 7.1363, 7.1348, 7.1434, 7.1424, 7.1457, 7.1504, 7.15, 7.153, 7.1563, 7.1549, 7.1585, 7.1614, 7.16, 7.1583, 7.162, 7.1691, 7.1679, 7.1664, 7.1701, 7.1687, 7.172, 7.1706, 7.169, 7.1723, 7.1734, 7.1719, 7.1702, 7.1684, 7.1716, 7.1702, 7.1828, 7.1863, 7.1847, 7.1831, 7.2004, 7.1987, 7.1979, 7.1962, 7.1959, 7.1951, 7.1982, 7.1968, 7.1952, 7.1941, 7.1926, 7.1908, 7.1904, 7.1892, 7.1876, 7.1863, 7.1857, 7.1847, 7.1833, 7.1824, 7.1827, 7.1863, 7.1847, 7.1879, 7.1862, 7.1888, 7.1885, 7.1918, 7.1903, 7.1935, 7.1968, 7.1951, 7.1979, 7.1962, 7.1993, 7.1979, 7.1969, 7.1954, 7.1944, 7.1927, 7.1869, 7.1852, 7.1796, 7.1783, 7.1766, 7.1795, 7.1778, 7.1766, 7.1755, 7.1742, 7.1729, 7.1716, 7.1704, 7.1744, 7.1732, 7.1764, 7.1751, 7.1738, 7.1726, 7.1755, 7.1743, 7.1728, 7.1672, 7.1656, 7.1686, 7.1714, 7.1791, 7.178, 7.1809, 7.1797, 7.1786, 7.1815, 7.1803, 7.1756, 7.1746, 7.174, 7.1724, 7.1715, 7.1835, 7.1867, 7.1854, 7.1838, 7.1826, 7.1816, 7.1813, 7.1799, 7.1795, 7.1741, 7.1776, 7.1721, 7.1887, 7.1876, 7.1912, 7.19, 7.1888, 7.1922, 7.1914, 7.1945, 7.1931, 7.1916, 7.1901, 7.1885, 7.1886, 7.1916, 7.1994, 7.198, 7.201, 7.2105, 7.2097, 7.2082, 7.2069, 7.2058, 7.2047, 7.2031, 7.202, 7.2005, 7.2079, 7.2068, 7.2057, 7.2043, 7.2031, 7.2019, 7.2006, 7.1993, 7.1978, 7.1963, 7.1951, 7.1982, 7.1968, 7.1954, 7.1938, 7.1928, 7.1922, 7.1958, 7.1945, 7.1935, 7.1963, 7.1948, 7.196, 7.1949, 7.2021, 7.2012, 7.2005, 7.2033, 7.2025, 7.198, 7.1965, 7.1996, 7.1986, 7.1934, 7.1922, 7.1914, 7.1902, 7.1895, 7.1928, 7.1955, 7.1945, 7.1929, 7.1914, 7.1899, 7.1888, 7.1918, 7.1944, 7.1974, 7.1963, 7.1951, 7.1942, 7.1927, 7.1912, 7.19, 7.1886, 7.1882, 7.1869, 7.1868, 7.1856, 7.1842, 7.1829, 7.1856, 7.1842, 7.1829, 7.182, 7.1815, 7.1843, 7.1829, 7.1816, 7.1801, 7.1787, 7.1773, 7.1769, 7.1755, 7.1745, 7.1731, 7.1758, 7.1751, 7.1738, 7.1725, 7.1754, 7.1783, 7.1854, 7.1844, 7.1833, 7.1862, 7.1847, 7.1832, 7.1817, 7.1804, 7.1791, 7.1785, 7.1772, 7.1797, 7.1789, 7.1775, 7.1763, 7.1784, 7.177, 7.1758, 7.1746, 7.1738, 7.1724, 7.1709, 7.1698, 7.1725, 7.1793, 7.1782, 7.1769, 7.1756, 7.1747, 7.1778, 7.1765, 7.1874, 7.1921, 7.192, 7.1906, 7.1891, 7.1877, 7.1904, 7.1891, 7.1878, 7.1906, 7.1893, 7.1917, 7.187, 7.1821, 7.1773, 7.1768, 7.1762, 7.1755, 7.1781, 7.1778, 7.1765, 7.1753, 7.1787, 7.1856, 7.189, 7.1916, 7.1874, 7.1869, 7.1859, 7.185, 7.184, 7.1828, 7.1817, 7.1803, 7.1795, 7.1783, 7.1805, 7.1793, 7.1779, 7.1766, 7.1756, 7.1743, 7.1729, 7.1716, 7.1743, 7.1769, 7.177, 7.1762, 7.1752, 7.1739, 7.173, 7.172, 7.1707, 7.1694, 7.1682, 7.1668, 7.1655, 7.1643, 7.1667, 7.1659, 7.1647, 7.1599, 7.1629, 7.1616, 7.1604, 7.1592, 7.1582, 7.1569, 7.1556, 7.1545, 7.1572, 7.1559, 7.1546, 7.1569, 7.1592, 7.1582, 7.1608, 7.1596, 7.1584, 7.1572, 7.1566, 7.1554, 7.1587, 7.1574, 7.1567, 7.1593, 7.1582, 7.1573, 7.1564, 7.1557, 7.1545, 7.1534, 7.1525, 7.1551, 7.1579, 7.158, 7.1591, 7.1591, 7.1616, 7.1604, 7.1592, 7.1582, 7.1575, 7.1568, 7.1565, 7.157, 7.156, 7.1548, 7.154, 7.1528, 7.1515, 7.1587, 7.1582, 7.1608, 7.1597, 7.1586, 7.1575, 7.157, 7.1561, 7.1516, 7.1504, 7.1497, 7.1485, 7.1473, 7.1461, 7.149, 7.1519, 7.1545, 7.1532, 7.1521, 7.1509, 7.15, 7.1491, 7.1516, 7.1522, 7.1512, 7.1501, 7.1491, 7.1491, 7.1479, 7.1504, 7.1529, 7.1553, 7.1546, 7.1546, 7.154, 7.1531, 7.1558, 7.1546, 7.157, 7.1562, 7.155, 7.1574, 7.1562, 7.1555, 7.1579, 7.1607, 7.1597, 7.1588, 7.1581, 7.1608, 7.1608, 7.1599, 7.1623, 7.1646, 7.1669, 7.1658, 7.1647, 7.1637, 7.163, 7.162, 7.1641, 7.1605, 7.1594, 7.1583, 7.1646, 7.1637, 7.1656, 7.1647, 7.1671, 7.1659, 7.1654, 7.1653, 7.1647, 7.1635, 7.1629, 7.1696, 7.1685, 7.1712, 7.1735, 7.1723, 7.1747, 7.1738, 7.1763, 7.1756, 7.1812, 7.1801, 7.1839, 7.1863, 7.1854, 7.1857, 7.1854, 7.1845, 7.1838, 7.1836, 7.1833, 7.1863, 7.1861, 7.1869, 7.1861, 7.185, 7.1845, 7.1833, 7.1821, 7.1818, 7.1897, 7.1885, 7.1877, 7.1871, 7.1859, 7.1849, 7.1871, 7.1864, 7.1853, 7.1878, 7.1866, 7.1825, 7.1813, 7.1801, 7.179, 7.1782, 7.1804, 7.1795, 7.1783, 7.1775, 7.1735, 7.1758, 7.1749, 7.1769, 7.1766, 7.1755, 7.175, 7.1764, 7.1757, 7.1745, 7.1766, 7.1755, 7.1744, 7.1807, 7.1798, 7.1821, 7.1844, 7.1867, 7.1889, 7.1877, 7.1866, 7.1824, 7.1847, 7.1869, 7.186, 7.1852, 7.1841, 7.1834, 7.1857, 7.1849, 7.1838, 7.1828, 7.1821, 7.1842, 7.1831, 7.1823, 7.1847, 7.1876, 7.1899, 7.1888, 7.1876, 7.1867, 7.1859, 7.1855, 7.1843, 7.1843, 7.1838, 7.1828, 7.1822, 7.1813, 7.1802, 7.1826, 7.1814, 7.1811, 7.1771, 7.1732, 7.172, 7.1741, 7.1729, 7.1717, 7.1715, 7.1736, 7.175, 7.1738, 7.1727, 7.1716, 7.1704, 7.1696, 7.1685, 7.1706, 7.1696, 7.1689, 7.1679, 7.174, 7.1729, 7.1748, 7.1739, 7.1731, 7.1724, 7.1715, 7.1714, 7.1676, 7.1699, 7.1719, 7.171, 7.1702, 7.1723, 7.1718, 7.1708, 7.1729, 7.1718, 7.1711, 7.1733, 7.1759, 7.1861, 7.1892, 7.1882, 7.187, 7.1866, 7.1857, 7.1846, 7.1866, 7.1856, 7.1876, 7.1867, 7.1855, 7.1845, 7.1844, 7.1866, 7.1878, 7.188, 7.191, 7.1903, 7.1893, 7.1886, 7.1875, 7.1837, 7.1829, 7.188, 7.1847, 7.1841, 7.1844, 7.1806, 7.1798, 7.1819, 7.1808, 7.1797, 7.1819, 7.1808, 7.1798, 7.182, 7.1809, 7.1926, 7.1946, 7.1937, 7.1959, 7.1951, 7.1941, 7.1931, 7.1923, 7.1946, 7.1941, 7.1931, 7.1923, 7.1945, 7.1934, 7.1928, 7.1916, 7.1909, 7.1909, 7.1901, 7.1892, 7.1881, 7.1874, 7.1894, 7.1891, 7.1881, 7.1902, 7.1922, 7.1969, 7.1962, 7.1983, 7.2002, 7.1992, 7.1954, 7.1943, 7.1963, 7.1954, 7.1975, 7.1995, 7.2016, 7.1978, 7.1998, 7.199, 7.198, 7.2002, 7.2053, 7.2042, 7.2064, 7.2119, 7.2081, 7.2071, 7.2034, 7.2027, 7.2022, 7.1985, 7.1976, 7.1966, 7.1984, 7.1976, 7.1996, 7.1987, 7.2017, 7.2037, 7.2057, 7.2053, 7.2044, 7.2036, 7.2057, 7.202, 7.201, 7.2, 7.1991, 7.1985, 7.2006, 7.1999, 7.1989, 7.1979, 7.2, 7.199, 7.2012, 7.2003, 7.1994, 7.2012, 7.1986, 7.2013, 7.2003, 7.1995, 7.199, 7.198, 7.197, 7.1964, 7.1985, 7.1976, 7.1967, 7.1957, 7.1965, 7.1957, 7.2016, 7.2008, 7.2, 7.1992, 7.1988, 7.198, 7.1973, 7.1963, 7.1927, 7.192, 7.1912, 7.1902, 7.1869, 7.1892, 7.1882, 7.1874, 7.1839, 7.1859, 7.188, 7.1853, 7.1852, 7.1843, 7.1807, 7.1802, 7.1833, 7.1841, 7.1843, 7.1834, 7.1828, 7.1829, 7.1819, 7.1811, 7.1805, 7.1797, 7.1849, 7.1841, 7.1861, 7.1854, 7.1874, 7.1874, 7.1868, 7.1832, 7.1852, 7.1842, 7.1863, 7.1853, 7.1846, 7.1838, 7.1835, 7.1829, 7.1825, 7.1815, 7.1809, 7.1801, 7.1765, 7.1759, 7.1752, 7.1743, 7.1768, 7.1758, 7.1752, 7.1749, 7.1768, 7.1763, 7.1753, 7.1744, 7.1764, 7.173, 7.1749, 7.1742, 7.1735, 7.1726, 7.1717, 7.171, 7.1701, 7.1693, 7.1745, 7.1711, 7.1806, 7.1855, 7.1879, 7.1873, 7.1867, 7.1858, 7.1876, 7.1866, 7.1856, 7.1848, 7.1866, 7.1859, 7.1851, 7.187, 7.1921, 7.1974, 7.1996, 7.1986, 7.1978, 7.197, 7.1969, 7.1964, 7.1956, 7.1973, 7.1995, 7.1987, 7.196, 7.1951, 7.1942, 7.1936, 7.1936, 7.1939, 7.1932, 7.1924, 7.1915, 7.1934, 7.1953, 7.1971, 7.1988, 7.2016, 7.2008, 7.1998, 7.1988, 7.1978, 7.1996, 7.1986, 7.1978, 7.1968, 7.1959, 7.1976, 7.1966, 7.1989, 7.1979, 7.1998, 7.199, 7.1981, 7.1974, 7.1992, 7.1985, 7.1976, 7.1967, 7.1957, 7.1948, 7.1966, 7.1965, 7.1959, 7.198, 7.1971, 7.1962, 7.1953, 7.1924, 7.1942, 7.1961, 7.1951, 7.197, 7.1963, 7.1981, 7.1977, 7.1969, 7.1935, 7.1925, 7.1917, 7.1935, 7.1955, 7.204, 7.2073, 7.2182, 7.2173, 7.2167, 7.216, 7.2153, 7.2145, 7.2136, 7.2127, 7.2123, 7.2115, 7.2134, 7.2125, 7.2118, 7.2135, 7.2125, 7.2116, 7.2109, 7.2126, 7.2116, 7.2109, 7.2101, 7.2094, 7.2084, 7.2104, 7.2186, 7.2176, 7.2166, 7.2159, 7.2189, 7.2183, 7.2225, 7.2218, 7.2209, 7.2208, 7.2199, 7.2191, 7.2209, 7.2201, 7.2192, 7.2208, 7.2201, 7.2193, 7.2187, 7.2181, 7.2199, 7.2193, 7.2265, 7.2232, 7.2224, 7.2244, 7.2235, 7.2202, 7.2199, 7.2244, 7.2264, 7.2255, 7.2248, 7.2238, 7.2228, 7.2219, 7.2211, 7.2205, 7.2221, 7.2212, 7.2204, 7.2196, 7.2188, 7.218, 7.2171, 7.219, 7.2208, 7.22, 7.2312, 7.2304, 7.2324, 7.2318, 7.231, 7.2329, 7.2325, 7.2315, 7.2307, 7.2327, 7.2319, 7.2337, 7.2329, 7.2297, 7.2289, 7.228, 7.2272, 7.2289, 7.2332, 7.234, 7.2359, 7.235, 7.2341, 7.2308, 7.2299, 7.2291, 7.2287, 7.2278, 7.2272, 7.229, 7.2305, 7.2299, 7.2289, 7.2282, 7.2274, 7.2266, 7.2283, 7.2274, 7.2291, 7.2282, 7.2273, 7.229, 7.2359, 7.2352, 7.2344, 7.2335, 7.2349, 7.2345, 7.2336, 7.2327, 7.2418, 7.2413, 7.2405, 7.2421, 7.2418, 7.2461, 7.2454, 7.2449, 7.2441, 7.2435, 7.2427, 7.242, 7.2421, 7.244, 7.2432, 7.2423, 7.2428, 7.2464, 7.2458, 7.2452, 7.2448, 7.2443, 7.2463, 7.2455, 7.245, 7.2444, 7.2436, 7.2454, 7.2447, 7.2438, 7.243, 7.2421, 7.2412, 7.2405, 7.2397, 7.239, 7.2383, 7.2352, 7.2343, 7.2335, 7.2328, 7.2343, 7.234, 7.2333, 7.2326, 7.2343, 7.2338, 7.2329, 7.2298, 7.2315, 7.2308, 7.2299, 7.229, 7.2283, 7.2274, 7.2272, 7.2269, 7.2261, 7.2254, 7.2247, 7.2239, 7.2232, 7.2224, 7.2238, 7.223, 7.2223, 7.2238, 7.2234, 7.2227, 7.2219, 7.2188, 7.2181, 7.2176, 7.2248, 7.224, 7.2232, 7.2251, 7.2246, 7.2239, 7.2232, 7.2251, 7.2245, 7.2243, 7.2236, 7.2206, 7.2345, 7.2361, 7.2353, 7.2369, 7.2361, 7.2352, 7.2371, 7.2387, 7.2385, 7.2378, 7.2397, 7.2414, 7.2408, 7.2402, 7.2394, 7.2385, 7.2401, 7.2393, 7.2387, 7.2384, 7.2354, 7.2324, 7.2294, 7.2311, 7.2306, 7.2322, 7.2314, 7.2306, 7.2297, 7.2314, 7.2308, 7.2299, 7.2294, 7.2286, 7.2301, 7.2293, 7.2286, 7.2282, 7.2274, 7.2266, 7.2258, 7.2249, 7.2267, 7.2283, 7.2276, 7.2269, 7.2263, 7.2255, 7.2271, 7.2287, 7.2279, 7.2249, 7.222, 7.2212, 7.2206, 7.2198, 7.219, 7.2182, 7.2176, 7.2172, 7.2165, 7.2157, 7.2173, 7.2165, 7.2158, 7.2155, 7.2146, 7.2164, 7.2194, 7.2188, 7.2182, 7.2175, 7.217, 7.2162, 7.2156, 7.2149, 7.2143, 7.2136, 7.2162, 7.2155, 7.2147, 7.214, 7.2132, 7.2151, 7.2155, 7.2173, 7.2167, 7.216, 7.2151, 7.2182, 7.2175, 7.2193, 7.2188, 7.2181, 7.2275, 7.2268, 7.2295, 7.2287, 7.2281, 7.232, 7.2377, 7.2371, 7.2374, 7.239, 7.239, 7.236, 7.2448, 7.244, 7.2432, 7.2448, 7.2442, 7.2437, 7.2431, 7.2424, 7.2416, 7.2408, 7.2422, 7.2457, 7.245, 7.2442, 7.2434, 7.2426, 7.2418, 7.2411, 7.2427, 7.2423, 7.2415, 7.2454, 7.247, 7.2463, 7.2456, 7.2449, 7.2465, 7.2459, 7.2459, 7.2452, 7.2447, 7.2446, 7.2438, 7.246, 7.2458, 7.2454, 7.2446, 7.2438, 7.2432, 7.2424, 7.242, 7.2412, 7.2427, 7.2419, 7.2434, 7.2427, 7.2419, 7.2433, 7.2439, 7.2433, 7.2425, 7.244, 7.2432, 7.2423, 7.2415, 7.2407, 7.2402, 7.2394, 7.2388, 7.238, 7.2372, 7.2365, 7.2358, 7.2352, 7.2345, 7.2359, 7.2352, 7.2345, 7.2339, 7.2333, 7.2326, 7.232, 7.2316, 7.2333, 7.2327, 7.2343, 7.2337, 7.2329, 7.239, 7.2382, 7.2377, 7.2372, 7.2366, 7.2359, 7.2351, 7.2433, 7.2425, 7.2418, 7.2412, 7.2448, 7.2485, 7.2499, 7.2491, 7.2483, 7.2478, 7.247, 7.2468, 7.2483, 7.2482, 7.2498, 7.249, 7.2485, 7.2481, 7.2499, 7.2494, 7.2488, 7.2481, 7.2476, 7.2468, 7.246, 7.2454, 7.2447, 7.2439, 7.2454, 7.2469, 7.2466, 7.2458, 7.2454, 7.2448, 7.244, 7.2456, 7.2454, 7.2457, 7.2449, 7.2441, 7.2433, 7.2428, 7.242, 7.2412, 7.2404, 7.2396, 7.2389, 7.2383, 7.2376, 7.239, 7.2384, 7.2399, 7.2391, 7.2405, 7.2399, 7.2397, 7.2412, 7.2406, 7.24, 7.2394, 7.2386, 7.2378, 7.2371, 7.2386, 7.2383, 7.2379, 7.2372, 7.2367, 7.2363, 7.2359, 7.2374, 7.2391, 7.2384, 7.2387, 7.2381, 7.2354, 7.2348, 7.2321, 7.2314, 7.2307, 7.2299, 7.2293, 7.229, 7.2263, 7.2255, 7.2251, 7.2245, 7.224, 7.2232, 7.2224, 7.2217, 7.221, 7.2224, 7.2299, 7.2294, 7.2287, 7.2262, 7.2258, 7.2252, 7.2245, 7.224, 7.2305, 7.2299, 7.2292, 7.2286, 7.2279, 7.2252, 7.2225, 7.222, 7.222, 7.2213, 7.2206, 7.2199, 7.2214, 7.2207, 7.2204, 7.2197, 7.219, 7.2183, 7.2175, 7.2169, 7.2182, 7.2174, 7.2168, 7.2164, 7.2157, 7.2151, 7.2164, 7.216, 7.2174, 7.2187, 7.218, 7.2174, 7.2187, 7.2201, 7.2195, 7.2187, 7.2187, 7.218, 7.2175, 7.2169, 7.2161, 7.2176, 7.2191, 7.2187, 7.2181, 7.2176, 7.217, 7.2185, 7.2181, 7.2175, 7.217, 7.2164, 7.2158, 7.2152, 7.2161, 7.2155, 7.2149, 7.2143, 7.2136, 7.2129, 7.2123, 7.212, 7.2114, 7.2108, 7.2104, 7.2099, 7.2093, 7.2087, 7.2081, 7.2097, 7.2112, 7.2107, 7.21, 7.2115, 7.2111, 7.2104, 7.2097, 7.2122, 7.218, 7.2175, 7.2168, 7.2245, 7.2241, 7.2236, 7.2246, 7.2241, 7.2234, 7.2249, 7.2272, 7.2267, 7.2263, 7.2261, 7.2254, 7.2247, 7.224, 7.2238, 7.2231, 7.2224, 7.2219, 7.2211, 7.2203, 7.2197, 7.2211, 7.2204, 7.2212, 7.2208, 7.2203, 7.2217, 7.221, 7.2237, 7.2234, 7.2229, 7.2222, 7.2197, 7.219, 7.2182, 7.2175, 7.2188, 7.2219, 7.2197, 7.2192, 7.2207, 7.2224, 7.2218, 7.2239, 7.2253, 7.2246, 7.2242, 7.2257, 7.2271, 7.2264, 7.2257, 7.2252, 7.2246, 7.226, 7.2253, 7.2248, 7.2242, 7.2256, 7.227, 7.2264, 7.226, 7.2257, 7.2271, 7.2265, 7.2272, 7.2266, 7.2278, 7.2273, 7.2267, 7.226, 7.2253, 7.2248, 7.2241, 7.2235, 7.225, 7.2243, 7.2238, 7.224, 7.2234, 7.2228, 7.2222, 7.2218, 7.2222, 7.2217, 7.221, 7.2233, 7.2246, 7.2239, 7.2233, 7.2228, 7.2221, 7.2217, 7.2213, 7.2209, 7.2222, 7.2219, 7.2213, 7.2207, 7.2201, 7.2194, 7.2188, 7.2222, 7.2237, 7.223, 7.2224, 7.222, 7.2215, 7.2228, 7.2262, 7.2255, 7.2247, 7.224, 7.2253, 7.2246, 7.2239, 7.2234, 7.2248, 7.2262, 7.2257, 7.2232, 7.2227, 7.2239, 7.2235, 7.223, 7.2225, 7.2221, 7.2233, 7.2226, 7.224, 7.2235, 7.2228, 7.2241, 7.2254, 7.225, 7.2243, 7.2238, 7.2251, 7.2244, 7.2257, 7.2251, 7.2264, 7.2277, 7.227, 7.2283, 7.2276, 7.2271, 7.2284, 7.2277, 7.2276, 7.2269, 7.2262, 7.2275, 7.2268, 7.2261, 7.2256, 7.227, 7.2264, 7.2258, 7.2251, 7.2244, 7.2237, 7.2231, 7.2244, 7.2237, 7.2231, 7.2243, 7.2236, 7.2229, 7.2222, 7.2234, 7.2227, 7.2222, 7.2234, 7.2228, 7.2222, 7.2219, 7.2212, 7.2205, 7.2218, 7.2213, 7.2208, 7.2207, 7.2202, 7.2197, 7.2191, 7.2184, 7.2178, 7.2172, 7.2165, 7.214, 7.2133, 7.213, 7.2125, 7.2119, 7.2158, 7.2158, 7.2151, 7.2146, 7.2159, 7.2154, 7.2167, 7.218, 7.2194, 7.2188, 7.2183, 7.2177, 7.2171, 7.2171, 7.2165, 7.2179, 7.2175, 7.2188, 7.2196, 7.2211, 7.2226, 7.222, 7.2215, 7.2218, 7.2212, 7.221, 7.2203, 7.2197, 7.2191, 7.2186, 7.2199, 7.2194, 7.2207, 7.2201, 7.2196, 7.2192, 7.2186, 7.2181, 7.2208, 7.2204, 7.2198, 7.2191, 7.2185, 7.218, 7.2173, 7.2167, 7.2161, 7.2174, 7.2169, 7.2165, 7.2178, 7.2171, 7.2164, 7.2177, 7.2175, 7.2188, 7.2203, 7.2197, 7.219, 7.2203, 7.22, 7.2194, 7.2209, 7.2203, 7.2198, 7.2231, 7.2246, 7.2265, 7.2278, 7.2272, 7.2285, 7.2278, 7.2272, 7.2266, 7.226, 7.2273, 7.2267, 7.2245, 7.2239, 7.2233, 7.2227, 7.2223, 7.2216, 7.2209, 7.2203, 7.2197, 7.2273, 7.2285, 7.2278, 7.229, 7.2284, 7.2297, 7.2293, 7.2307, 7.2322, 7.2327, 7.2321, 7.2334, 7.2327, 7.232, 7.2321, 7.232, 7.2316, 7.2328, 7.2322, 7.2319, 7.2315, 7.2308, 7.2301, 7.2313, 7.2307, 7.2306, 7.2299, 7.2312, 7.2306, 7.23, 7.2318, 7.2311, 7.2304, 7.2298, 7.2312, 7.2305, 7.2316, 7.2327, 7.2339, 7.2355, 7.2348, 7.2341, 7.2354, 7.2387, 7.2399, 7.2394, 7.2388, 7.2402, 7.2395, 7.2388, 7.2385, 7.238, 7.2373, 7.2366, 7.236, 7.2356, 7.2349, 7.2361, 7.2373, 7.2371, 7.2365, 7.2359, 7.2355, 7.2368, 7.2382, 7.2376, 7.2388, 7.2462, 7.2456, 7.2451, 7.2445, 7.2459, 7.2472, 7.2484, 7.2478, 7.2472, 7.2485, 7.2482, 7.2495, 7.2489, 7.2482, 7.2524, 7.2518, 7.2512, 7.2489, 7.252, 7.2513, 7.2508, 7.2502, 7.2495, 7.2489, 7.2483, 7.2478, 7.249, 7.2488, 7.2482, 7.2494, 7.2491, 7.2485, 7.2478, 7.2471, 7.2483, 7.2476, 7.247, 7.2465, 7.2442, 7.242, 7.2434, 7.2428, 7.244, 7.2433, 7.2427, 7.2423, 7.2435, 7.243, 7.2407, 7.2419, 7.2412, 7.2408, 7.2405, 7.2431, 7.2443, 7.2438, 7.245, 7.2463, 7.2458, 7.249, 7.2497, 7.2516, 7.2519, 7.2531, 7.2525, 7.2519, 7.2515, 7.2508, 7.2503, 7.2496, 7.249, 7.2484, 7.2477, 7.2471, 7.2468, 7.2462, 7.2473, 7.247, 7.2483, 7.2476, 7.247, 7.2464, 7.2476, 7.2489, 7.2483, 7.2496, 7.2509, 7.2505, 7.2516, 7.2527, 7.2537, 7.2532, 7.2526, 7.254, 7.2534, 7.2528, 7.2522, 7.2516, 7.2531, 7.2544, 7.2557, 7.2551, 7.2565, 7.2584, 7.2562, 7.2558, 7.2627, 7.2621, 7.2615, 7.261, 7.2604, 7.2582, 7.2576, 7.2587, 7.2581, 7.2593, 7.2587, 7.26, 7.2596, 7.2609, 7.2603, 7.2597, 7.2591, 7.2585, 7.2579, 7.2573, 7.2567, 7.2561, 7.2557, 7.2556, 7.2569, 7.2563, 7.2557, 7.2551, 7.2547, 7.2542, 7.2537, 7.2534, 7.2516, 7.2512, 7.2528, 7.2525, 7.2536, 7.2534, 7.2545, 7.2557, 7.2551, 7.2545, 7.2541, 7.2536, 7.2534, 7.2528, 7.2524, 7.2534, 7.2531, 7.2542, 7.2537, 7.2532, 7.2527, 7.2522, 7.2535, 7.2529, 7.2523, 7.2517, 7.2535, 7.2531, 7.251, 7.2509, 7.2523, 7.2517, 7.2512, 7.2507, 7.2503, 7.2497, 7.2509, 7.2504, 7.2482, 7.2476, 7.247, 7.2482, 7.2495, 7.2508, 7.2508, 7.2502, 7.2496, 7.249, 7.2484, 7.2496, 7.249, 7.2486, 7.2482, 7.2476, 7.2476, 7.2473, 7.2467, 7.2481, 7.2475, 7.247, 7.2466, 7.2461, 7.2457, 7.2468, 7.2462, 7.2475, 7.2472, 7.2466, 7.246, 7.2455, 7.2449, 7.2445, 7.244, 7.2434, 7.2463, 7.2458, 7.2452, 7.2463, 7.2457, 7.2452, 7.2446, 7.2441, 7.2452, 7.2464, 7.2458, 7.2469, 7.2463, 7.248, 7.2492, 7.2486, 7.248, 7.2476, 7.2472, 7.2466, 7.2464, 7.2477, 7.249, 7.2484, 7.248, 7.2475, 7.2471, 7.2469, 7.2466, 7.2478, 7.2476, 7.249, 7.2504, 7.2504, 7.2498, 7.2498, 7.2492, 7.2486, 7.248, 7.2475, 7.247, 7.2519, 7.2514, 7.2526, 7.2521, 7.2522, 7.2567, 7.2561, 7.2573, 7.2585, 7.2579, 7.2574, 7.2569, 7.2581, 7.2611, 7.2606, 7.2607, 7.2618, 7.2638, 7.2672, 7.2686, 7.2681, 7.2681, 7.2709, 7.2721, 7.2718, 7.2712, 7.2723, 7.2719, 7.2715, 7.2712, 7.2707, 7.2701, 7.2695, 7.2694, 7.2688, 7.2746, 7.2741, 7.2735, 7.2729, 7.2723, 7.2717, 7.2712, 7.2724, 7.2736, 7.273, 7.2724, 7.2718, 7.2728, 7.2757, 7.2752, 7.2765, 7.2759, 7.2754, 7.2749, 7.2762, 7.2756, 7.2751, 7.2746, 7.2757, 7.2768, 7.2762, 7.2756, 7.275, 7.2731, 7.271, 7.2708, 7.2767, 7.278, 7.2791, 7.2802, 7.2817, 7.2815, 7.2795, 7.2791, 7.2802, 7.2781, 7.2787, 7.2784, 7.2764, 7.2765, 7.276, 7.2757, 7.2767, 7.2761, 7.2756, 7.2784, 7.2778, 7.2775, 7.2833, 7.2832, 7.2846, 7.284, 7.2834, 7.2828, 7.2842, 7.2854, 7.2852, 7.2846, 7.2825, 7.282, 7.2832, 7.2828, 7.2825, 7.2821, 7.2817, 7.2812, 7.2806, 7.28, 7.2797, 7.2791, 7.2787, 7.2781, 7.2791, 7.2787, 7.2783, 7.2777, 7.2771, 7.2766, 7.2761, 7.2756, 7.2752, 7.2763, 7.2758, 7.2752, 7.2747, 7.2758, 7.2752, 7.2748, 7.2743, 7.2738, 7.2732, 7.2727, 7.2721, 7.2717, 7.2711, 7.2721, 7.2716, 7.2712, 7.2707, 7.2703, 7.2714, 7.2709, 7.275, 7.2744, 7.2756, 7.275, 7.2746, 7.274, 7.2735, 7.273, 7.2725, 7.272, 7.2714, 7.2709, 7.272, 7.2714, 7.2725, 7.272, 7.2714, 7.2725, 7.2736, 7.2747, 7.2741, 7.2737, 7.2733, 7.2728, 7.2724, 7.2757, 7.2751, 7.2746, 7.2778, 7.2805, 7.2801, 7.2816, 7.2813, 7.2815, 7.281, 7.2804, 7.2801, 7.2797, 7.2793, 7.2788, 7.2788, 7.2783, 7.2778, 7.2774, 7.2787, 7.2783, 7.278, 7.2778, 7.2773, 7.2771, 7.2766, 7.2778, 7.2773, 7.2753, 7.2751, 7.2763, 7.2758, 7.2768, 7.2762, 7.2759, 7.2754, 7.2748, 7.2743, 7.2738, 7.2733, 7.273, 7.2724, 7.2718, 7.2713, 7.2709, 7.2706, 7.2701, 7.2711, 7.2707, 7.2702, 7.2698, 7.2708, 7.2702, 7.2696, 7.269, 7.2701, 7.2681, 7.2662, 7.2657, 7.2652, 7.2647, 7.2641, 7.2635, 7.2629, 7.264, 7.2653, 7.2648, 7.2642, 7.2636, 7.2647, 7.2642, 7.2653, 7.2664, 7.2658, 7.2639, 7.2633, 7.2628, 7.2623, 7.2634, 7.2629, 7.2624, 7.2619, 7.2616, 7.2627, 7.2621, 7.2615, 7.2626, 7.2622, 7.2616, 7.2627, 7.2621, 7.2616, 7.2611, 7.2606, 7.26, 7.2594, 7.2589, 7.2585, 7.2568, 7.2563, 7.2558, 7.2553, 7.258, 7.2592, 7.2589, 7.2601, 7.2598, 7.2592, 7.2602, 7.2582, 7.2563, 7.2544, 7.2539, 7.2536, 7.2547, 7.2543, 7.2539, 7.2534, 7.2529, 7.2523, 7.2517, 7.2497, 7.2478, 7.2478, 7.2473, 7.2483, 7.2493, 7.2489, 7.2483, 7.2477, 7.2471, 7.2466, 7.2461, 7.2457, 7.2452, 7.2447, 7.2441, 7.2452, 7.2461, 7.246, 7.2455, 7.245, 7.2447, 7.2442, 7.2438, 7.2434, 7.2436, 7.2448, 7.2509, 7.2505, 7.2516, 7.2517, 7.2542, 7.2538, 7.2533, 7.2528, 7.2524, 7.252, 7.2515, 7.2509, 7.252, 7.2515, 7.2532, 7.2528, 7.2538, 7.2549, 7.2544, 7.2557, 7.2558, 7.2553, 7.2549, 7.2544, 7.2539, 7.2534, 7.256, 7.2555, 7.2551, 7.2545, 7.254, 7.2618, 7.2612, 7.2623, 7.2617, 7.2613, 7.2608, 7.2588, 7.2599, 7.2594, 7.2589, 7.2599, 7.261, 7.262, 7.2615, 7.2626, 7.2621, 7.2616, 7.2627, 7.2637, 7.2619, 7.2601, 7.2596, 7.261, 7.2607, 7.2618, 7.2627, 7.2625, 7.263, 7.2626, 7.2622, 7.2631, 7.2629, 7.2626, 7.2623, 7.2617, 7.263, 7.2625, 7.2635, 7.2629, 7.2625, 7.262, 7.2629, 7.2625, 7.2635, 7.2646, 7.2641, 7.2651, 7.2659, 7.2653, 7.2651, 7.2645, 7.2655, 7.265, 7.266, 7.2656, 7.265, 7.2645, 7.2655, 7.265, 7.2644, 7.2639, 7.2635, 7.2631, 7.2627, 7.2622, 7.2618, 7.2658, 7.2654, 7.265, 7.2661, 7.2656, 7.2651, 7.2649, 7.2643, 7.264, 7.2635, 7.263, 7.2626, 7.2621, 7.263, 7.2625, 7.2624, 7.2634, 7.2645, 7.264, 7.2636, 7.2647, 7.2649, 7.2645, 7.2672, 7.2667, 7.2679, 7.2674, 7.2701, 7.2732, 7.2749, 7.2745, 7.2741, 7.2737, 7.2763, 7.2758, 7.2742, 7.2727, 7.2725, 7.272, 7.273, 7.2726, 7.2721, 7.2716, 7.2711, 7.2707, 7.2703, 7.27, 7.271, 7.2705, 7.27, 7.2698, 7.2694, 7.269, 7.2672, 7.2683, 7.2678, 7.2688, 7.2685, 7.268, 7.2676, 7.2658, 7.264, 7.2635, 7.263, 7.2625, 7.262, 7.2615, 7.2625, 7.262, 7.2615, 7.261, 7.2619, 7.2614, 7.2624, 7.2634, 7.2644, 7.2653, 7.2649, 7.2644, 7.2639, 7.2664, 7.2659, 7.2656, 7.2653, 7.2648, 7.2643, 7.2652, 7.2647, 7.2645, 7.2641, 7.2636, 7.2635, 7.2636, 7.2632, 7.263, 7.264, 7.265, 7.2646, 7.2671, 7.2685, 7.2695, 7.269, 7.2686, 7.2696, 7.2691, 7.2686, 7.2696, 7.2705, 7.2715, 7.271, 7.2724, 7.2719, 7.2715, 7.2711, 7.2721, 7.2717, 7.2712, 7.2697, 7.2692, 7.2691, 7.2686, 7.2688, 7.2683, 7.2678, 7.2673, 7.2683, 7.2693, 7.2689, 7.2687, 7.2683, 7.2678, 7.2673, 7.267, 7.2666, 7.2662, 7.2671, 7.2667, 7.2662, 7.2657, 7.2653, 7.2635, 7.2618, 7.2613, 7.2609, 7.2604, 7.26, 7.2595, 7.2592, 7.2589, 7.2599, 7.2597, 7.2592, 7.259, 7.2619, 7.2614, 7.2597, 7.2592, 7.2587, 7.2582, 7.2577, 7.2577, 7.2574, 7.2569, 7.2567, 7.2562, 7.2572, 7.2567, 7.2576, 7.2572, 7.2581, 7.259, 7.2585, 7.258, 7.2575, 7.2616, 7.2626, 7.2621, 7.263, 7.2641, 7.2636, 7.2633, 7.2643, 7.2639, 7.2634, 7.2629, 7.2638, 7.2634, 7.263, 7.2625, 7.2622, 7.2619, 7.2614, 7.2612, 7.2608, 7.2605, 7.26, 7.2596, 7.2591, 7.2586, 7.2583, 7.2578, 7.2586, 7.2583, 7.2578, 7.2574, 7.2571, 7.2566, 7.2575, 7.257, 7.2566, 7.2562, 7.257, 7.2565, 7.2561, 7.2556, 7.2566, 7.2562, 7.2561, 7.2557, 7.2568, 7.2563, 7.256, 7.2555, 7.2552, 7.2547, 7.2544, 7.2553, 7.2562, 7.2559, 7.2569, 7.2565, 7.2561, 7.2557, 7.2553, 7.2549, 7.2545, 7.2541, 7.2536, 7.2532, 7.2528, 7.2526, 7.2535, 7.253, 7.2525, 7.252, 7.253, 7.2555, 7.2552, 7.2561, 7.2556, 7.2551, 7.2561, 7.2571, 7.2567, 7.2577, 7.2573, 7.2569, 7.2579, 7.2589, 7.2585, 7.2582, 7.2577, 7.2588, 7.2583, 7.2578, 7.2573, 7.2569, 7.258, 7.258, 7.2593, 7.259, 7.2585, 7.2596, 7.2593, 7.2605, 7.2602, 7.2599, 7.2595, 7.2578, 7.2573, 7.2584, 7.258, 7.2577, 7.2573, 7.2569, 7.2564, 7.2562, 7.2545, 7.2541, 7.2536, 7.2532, 7.2527, 7.2523, 7.2506, 7.2514, 7.2509, 7.2504, 7.2499, 7.2494, 7.2503, 7.2498, 7.2493, 7.2488, 7.2483, 7.248, 7.2463, 7.2459, 7.2468, 7.2464, 7.2501, 7.2498, 7.2493, 7.2489, 7.2484, 7.2479, 7.2475, 7.2477, 7.2472, 7.2481, 7.2478, 7.2487, 7.2496, 7.2491, 7.25, 7.2509, 7.2504, 7.2501, 7.2496, 7.2504, 7.25, 7.2495, 7.249, 7.2499, 7.2496, 7.2506, 7.2502, 7.2497, 7.2492, 7.2489, 7.2488, 7.2483, 7.2479, 7.2488, 7.2485, 7.2481, 7.249, 7.2486, 7.2482, 7.2477, 7.2472, 7.2468, 7.2463, 7.2472, 7.248, 7.2529, 7.2527, 7.2522, 7.253, 7.2525, 7.2521, 7.2516, 7.2525, 7.2534, 7.2531, 7.2528, 7.2524, 7.2522, 7.2517, 7.2543, 7.2539, 7.2569, 7.2565, 7.2562, 7.2559, 7.2555, 7.255, 7.2561, 7.2558, 7.2568, 7.2581, 7.2577, 7.2574, 7.2569, 7.2578, 7.2574, 7.2571, 7.2583, 7.2581, 7.2579, 7.2644, 7.2642, 7.2638, 7.2635, 7.263, 7.2625, 7.262, 7.2603, 7.26, 7.2609, 7.2618, 7.2614, 7.2609, 7.2593, 7.2602, 7.2599, 7.2595, 7.2579, 7.2564, 7.256, 7.2596, 7.2592, 7.26, 7.2598, 7.2609, 7.2607, 7.2602, 7.2611, 7.2607, 7.2603, 7.2598, 7.2593, 7.2592, 7.2601, 7.2597, 7.2593, 7.2608, 7.2606, 7.2601, 7.2599, 7.2598, 7.2595, 7.2591, 7.2587, 7.2573, 7.2581, 7.259, 7.2585, 7.258, 7.2589, 7.2587, 7.2584, 7.258, 7.2576, 7.2585, 7.2594, 7.259, 7.2586, 7.2595, 7.2591, 7.2601, 7.2598, 7.2594, 7.2591, 7.2589, 7.2585, 7.2581, 7.2579, 7.2587, 7.2596, 7.2592, 7.2588, 7.2584, 7.258, 7.2578, 7.2576, 7.2591, 7.2587, 7.2583, 7.258, 7.2578, 7.2586, 7.2581, 7.2577, 7.2572, 7.2568, 7.2564, 7.2561, 7.257, 7.2566, 7.2563, 7.2558, 7.2553, 7.2562, 7.2558, 7.2555, 7.255, 7.2545, 7.2541, 7.2536, 7.2532, 7.2529, 7.2538, 7.2534, 7.2529, 7.2524, 7.2519, 7.2528, 7.2524, 7.2521, 7.2517, 7.2513, 7.2508, 7.2503, 7.2511, 7.2506, 7.2502, 7.2512, 7.2508, 7.2505, 7.2501, 7.2498, 7.2494, 7.2477, 7.2474, 7.2471, 7.2467, 7.2464, 7.246, 7.2456, 7.244, 7.2435, 7.243, 7.2425, 7.2432, 7.243, 7.2425, 7.2427, 7.2423, 7.2466, 7.2464, 7.2462, 7.2459, 7.2455, 7.2465, 7.2461, 7.2469, 7.2478, 7.2475, 7.2471, 7.2455, 7.2466, 7.2462, 7.2458, 7.2442, 7.2437, 7.2432, 7.2428, 7.2437, 7.245, 7.2445, 7.2429, 7.2424, 7.2432, 7.2428, 7.2423, 7.242, 7.2443, 7.2438, 7.2435, 7.2431, 7.2428, 7.2424, 7.2436, 7.2432, 7.2442, 7.2443, 7.2455, 7.2462, 7.2446, 7.243, 7.2439, 7.2434, 7.2472, 7.2467, 7.2463, 7.2459, 7.2468, 7.2464, 7.2459, 7.2456, 7.2453, 7.245, 7.2435, 7.2431, 7.2427, 7.2422, 7.2418, 7.2415, 7.2413, 7.2397, 7.2396, 7.2392, 7.2394, 7.239, 7.2386, 7.2395, 7.2391, 7.2387, 7.2382, 7.2378, 7.2374, 7.237, 7.2366, 7.2374, 7.2382, 7.2379, 7.2376, 7.2385, 7.2371, 7.2367, 7.2364, 7.2359, 7.2357, 7.2341, 7.2337, 7.2363, 7.236, 7.2368, 7.2366, 7.235, 7.2359, 7.2356, 7.2352, 7.2374, 7.2383, 7.238, 7.2377, 7.2374, 7.2371, 7.2367, 7.2364, 7.236, 7.2357, 7.2353, 7.2362, 7.2371, 7.2366, 7.2361, 7.236, 7.2355, 7.2352, 7.2349, 7.2346, 7.2342, 7.2338, 7.2324, 7.2324, 7.232, 7.2317, 7.2314, 7.2311, 7.2296, 7.2292, 7.2288, 7.2285, 7.2282, 7.2279, 7.2276, 7.2271, 7.2256, 7.2265, 7.2263, 7.2271, 7.2268, 7.2263, 7.226, 7.2257, 7.2266, 7.2262, 7.2258, 7.2242, 7.2239, 7.2235, 7.223, 7.2239, 7.2235, 7.2231, 7.2239, 7.2236, 7.2232, 7.2228, 7.2224, 7.222, 7.2217, 7.2214, 7.2222, 7.2219, 7.2215, 7.2212, 7.222, 7.2229, 7.2225, 7.2247, 7.2256, 7.2265, 7.2261, 7.2257, 7.2256, 7.2241, 7.2236, 7.2232, 7.2241, 7.2238, 7.2246, 7.2255, 7.2251, 7.2248, 7.2233, 7.2229, 7.2225, 7.2224, 7.222, 7.2217, 7.2215, 7.2226, 7.2234, 7.2231, 7.224, 7.2225, 7.2221, 7.2218, 7.2227, 7.2223, 7.2232, 7.2219, 7.2216, 7.2213, 7.2209, 7.2206, 7.2208, 7.2205, 7.2214, 7.221, 7.2218, 7.2214, 7.2209, 7.2204, 7.2213, 7.221, 7.221, 7.2195, 7.2191, 7.2179, 7.2206, 7.2202, 7.2199, 7.2195, 7.2207, 7.2195, 7.2207, 7.2194, 7.2194, 7.219, 7.2186, 7.2183, 7.2192, 7.22, 7.2199, 7.2195, 7.2191, 7.2187, 7.2196, 7.2192, 7.2188, 7.2185, 7.2182, 7.2178, 7.2174, 7.217, 7.2167, 7.2163, 7.2148, 7.2144, 7.2152, 7.2149, 7.2159, 7.2144, 7.2142, 7.2139, 7.2135, 7.2144, 7.2152, 7.2148, 7.2145, 7.2154, 7.2162, 7.2158, 7.2143, 7.214, 7.2137, 7.2133, 7.2141, 7.215, 7.2158, 7.2154, 7.2163, 7.217, 7.2166, 7.2162, 7.2159, 7.2155, 7.2164, 7.2175, 7.2172, 7.218, 7.2188, 7.2186, 7.2181, 7.2179, 7.2188, 7.2184, 7.2181, 7.2178, 7.2185, 7.2193, 7.2189, 7.2184, 7.218, 7.2177, 7.2187, 7.2184, 7.218, 7.2188, 7.2196, 7.2193, 7.219, 7.2186, 7.2195, 7.2191, 7.2203, 7.22, 7.2197, 7.2193, 7.2178, 7.2178, 7.2174, 7.217, 7.2166, 7.2162, 7.2172, 7.2168, 7.2153, 7.2161, 7.2157, 7.2153, 7.2149, 7.2157, 7.2153, 7.2149, 7.2146, 7.2153, 7.2161, 7.2157, 7.2142, 7.215, 7.2158, 7.2166, 7.2173, 7.2169, 7.2166, 7.2162, 7.2158, 7.2154, 7.2139, 7.215, 7.2148, 7.2145, 7.2142, 7.2151, 7.2148, 7.2145, 7.2141, 7.2149, 7.2158, 7.2166, 7.2175, 7.2172, 7.2168, 7.2164, 7.2172, 7.2173, 7.2185, 7.2192, 7.2188, 7.2186, 7.2182, 7.2178, 7.2174, 7.2183, 7.2181, 7.2182, 7.2179, 7.2187, 7.2184, 7.2193, 7.219, 7.2186, 7.2183, 7.2192, 7.2188, 7.2196, 7.2204, 7.2213, 7.2221, 7.2206, 7.2216, 7.2212, 7.222, 7.2218, 7.2227, 7.2236, 7.2248, 7.2245, 7.2242, 7.2238, 7.2246, 7.2243, 7.2252, 7.2248, 7.2245, 7.2253, 7.2262, 7.2261, 7.2257, 7.2266, 7.2273, 7.227, 7.2255, 7.2253, 7.225, 7.2246, 7.2254, 7.2253, 7.225, 7.2238, 7.2235, 7.2232, 7.2229, 7.2225, 7.2265, 7.2272, 7.227, 7.2267, 7.2263, 7.2248, 7.2245, 7.2254, 7.2272, 7.228, 7.2277, 7.2273, 7.228, 7.2276, 7.2273, 7.2269, 7.2265, 7.2261, 7.2257, 7.2265, 7.2262, 7.2272, 7.2289, 7.2299, 7.2306, 7.2303, 7.23, 7.2296, 7.2294, 7.229, 7.2287, 7.2272, 7.2268, 7.2277, 7.2273, 7.2281, 7.2277, 7.2273, 7.227, 7.2278, 7.2274, 7.2271, 7.2258, 7.2255, 7.2241, 7.2237, 7.2233, 7.223, 7.2227, 7.2223, 7.2219, 7.2218, 7.2215, 7.2211, 7.2219, 7.2227, 7.2223, 7.2231, 7.2227, 7.2212, 7.2209, 7.2206, 7.2204, 7.2223, 7.2231, 7.2228, 7.2247, 7.2243, 7.2252, 7.225, 7.2247, 7.2245, 7.2241, 7.2226, 7.2235, 7.2232, 7.2229, 7.2227, 7.2214, 7.2212, 7.2221, 7.223, 7.2232, 7.2229, 7.2227, 7.2224, 7.222, 7.2216, 7.2224, 7.2232, 7.2247, 7.2232, 7.2229, 7.2237, 7.2244, 7.2252, 7.2248, 7.2246, 7.2243, 7.2251, 7.2248, 7.2246, 7.2254, 7.225, 7.2246, 7.2254, 7.225, 7.2246, 7.2242, 7.2238, 7.2235, 7.2232, 7.2228, 7.2237, 7.2236, 7.2243, 7.2242, 7.2238, 7.2236, 7.2222, 7.2218, 7.2204, 7.2202, 7.22, 7.2197, 7.2194, 7.2191, 7.2188, 7.2193, 7.219, 7.2187, 7.2183, 7.2191, 7.2188, 7.2184, 7.2183, 7.2179, 7.2166, 7.2163, 7.2159, 7.2156, 7.2153, 7.2149, 7.2147, 7.216, 7.2156, 7.2163, 7.2149, 7.2146, 7.2154, 7.214, 7.2148, 7.2144, 7.214, 7.2148, 7.2145, 7.2142, 7.2138, 7.2136, 7.2144, 7.214, 7.2137, 7.2134, 7.2142, 7.214, 7.2137, 7.2145, 7.2154, 7.215, 7.2147, 7.2155, 7.2154, 7.2151, 7.2148, 7.2157, 7.2154, 7.2151, 7.2171, 7.2167, 7.2176, 7.2162, 7.2159, 7.2168, 7.2165, 7.2162, 7.2159, 7.2157, 7.2154, 7.2151, 7.2147, 7.2155, 7.2152, 7.2148, 7.2144, 7.2153, 7.2161, 7.2169, 7.2166, 7.2174, 7.2182, 7.2194, 7.219, 7.2198, 7.2194, 7.219, 7.2188, 7.2185, 7.2182, 7.219, 7.2187, 7.2183, 7.2179, 7.2188, 7.2184, 7.2191, 7.2187, 7.2183, 7.2179, 7.2175, 7.2172, 7.2181, 7.2178, 7.2186, 7.2183, 7.218, 7.2177, 7.2174, 7.217, 7.2177, 7.2174, 7.2171, 7.2168, 7.2164, 7.2162, 7.2158, 7.2155, 7.2151, 7.2159, 7.2168, 7.2187, 7.2183, 7.218, 7.2176, 7.2172, 7.2168, 7.2164, 7.216, 7.2158, 7.2155, 7.2152, 7.216, 7.2168, 7.2165, 7.2162, 7.2158, 7.2165, 7.2163, 7.2227, 7.2223, 7.2219, 7.222, 7.2228, 7.2227, 7.2223, 7.222, 7.2236, 7.2232, 7.2241, 7.2238, 7.2234, 7.2232, 7.2229, 7.2236, 7.2244, 7.224, 7.2238, 7.2234, 7.2241, 7.2237, 7.2234, 7.2231, 7.2238, 7.2235, 7.2221, 7.2208, 7.2204, 7.2213, 7.2221, 7.2219, 7.2226, 7.2212, 7.2209, 7.2208, 7.2217, 7.2228, 7.2227, 7.2228, 7.2225, 7.2222, 7.2229, 7.2237, 7.2245, 7.2254, 7.2251, 7.2256, 7.2253, 7.2262, 7.2258, 7.2255, 7.2263, 7.2259, 7.2256, 7.2253, 7.2262, 7.2258, 7.2255, 7.2252, 7.2248, 7.2247, 7.2233, 7.224, 7.2236, 7.2232, 7.2239, 7.2236, 7.2242, 7.2239, 7.2236, 7.2232, 7.2228, 7.2226, 7.2222, 7.2232, 7.224, 7.2236, 7.2233, 7.223, 7.2228, 7.2224, 7.2231, 7.2218, 7.222, 7.2227, 7.2234, 7.222, 7.223, 7.2227, 7.2259, 7.2266, 7.2262, 7.2259, 7.2266, 7.2263, 7.2272, 7.2268, 7.2265, 7.2262, 7.2258, 7.2254, 7.2251, 7.2251, 7.2247, 7.2244, 7.2241, 7.2238, 7.2234, 7.223, 7.2227, 7.2225, 7.2221, 7.2207, 7.2203, 7.22, 7.2211, 7.2218, 7.2214, 7.2211, 7.2207, 7.2204, 7.2191, 7.2178, 7.2186, 7.2182, 7.2189, 7.2185, 7.2181, 7.2188, 7.2185, 7.2183, 7.218, 7.2177, 7.2186, 7.2193, 7.22, 7.2198, 7.2194, 7.2192, 7.2243, 7.2261, 7.2249, 7.2246, 7.2253, 7.2261, 7.2247, 7.2247, 7.2254, 7.224, 7.2239, 7.2238, 7.2235, 7.2245, 7.229, 7.2297, 7.235, 7.2347, 7.2345, 7.2342, 7.2349, 7.2385, 7.2381, 7.2378, 7.2375, 7.2384, 7.238, 7.2391, 7.2391, 7.239, 7.2398, 7.2394, 7.2403, 7.24, 7.2396, 7.2393, 7.2389, 7.2401, 7.2412, 7.2409, 7.2406, 7.2403, 7.24, 7.2397, 7.2406, 7.2414, 7.2411, 7.2408, 7.2408, 7.2408, 7.2416, 7.2441, 7.2437, 7.2434, 7.2431, 7.2438, 7.2458, 7.2448, 7.2445, 7.2443, 7.244, 7.2436, 7.2434, 7.243, 7.2417, 7.2413, 7.2409, 7.2405, 7.2401, 7.2409, 7.2405, 7.2403, 7.2399, 7.2397, 7.2406, 7.2403, 7.24, 7.2407, 7.2405, 7.2394, 7.2401, 7.2397, 7.2394, 7.239, 7.2388, 7.2387, 7.2374, 7.2371, 7.2367, 7.2366, 7.2362, 7.2359, 7.2366, 7.2384, 7.2381, 7.2378, 7.2385, 7.2382, 7.2378, 7.2377, 7.2364, 7.2371, 7.2368, 7.2366, 7.2373, 7.238, 7.2377, 7.2377, 7.2373, 7.237, 7.2367, 7.2363, 7.2359, 7.2346, 7.2342, 7.2349, 7.2359, 7.2366, 7.2362, 7.2359, 7.2356, 7.2365, 7.2353, 7.2349, 7.2345, 7.2341, 7.2338, 7.2334, 7.2342, 7.235, 7.2348, 7.2344, 7.2351, 7.2357, 7.2355, 7.2351, 7.2347, 7.2343, 7.235, 7.2337, 7.2334, 7.233, 7.2326, 7.2324, 7.2331, 7.2339, 7.2326, 7.2323, 7.2319, 7.2316, 7.2313, 7.2311, 7.2308, 7.2315, 7.2302, 7.2298, 7.2305, 7.2312, 7.2319, 7.2318, 7.2314, 7.231, 7.2311, 7.2307, 7.2314, 7.2311, 7.2308, 7.2305, 7.2302, 7.23, 7.2308, 7.2305, 7.2303, 7.23, 7.2296, 7.2292, 7.2289, 7.2285, 7.2283, 7.229, 7.2296, 7.2303, 7.23, 7.2307, 7.2306, 7.2302, 7.2299, 7.2306, 7.2312, 7.2308, 7.2305, 7.2302, 7.2298, 7.2294, 7.2291, 7.2309, 7.2307, 7.2305, 7.2301, 7.2308, 7.2305, 7.2292, 7.2279, 7.2276, 7.2273, 7.2272, 7.2269, 7.2266, 7.2263, 7.227, 7.2267, 7.2264, 7.2273, 7.2269, 7.2257, 7.2254, 7.2251, 7.2259, 7.2257, 7.2264, 7.2261, 7.2269, 7.2266, 7.2263, 7.2259, 7.2267, 7.2264, 7.226, 7.2247, 7.2236, 7.2224, 7.2221, 7.2218, 7.2215, 7.2222, 7.2219, 7.2216, 7.2224, 7.2221, 7.2229, 7.2226, 7.2224, 7.2222, 7.221, 7.2206, 7.2202, 7.2198, 7.2196, 7.2196, 7.2203, 7.2199, 7.2195, 7.2192, 7.2188, 7.2195, 7.2192, 7.2199, 7.2221, 7.2218, 7.2226, 7.2222, 7.2218, 7.2225, 7.2232, 7.2228, 7.2225, 7.2221, 7.2217, 7.2224, 7.2232, 7.2228, 7.2225, 7.2215, 7.2213, 7.221, 7.2208, 7.2206, 7.2224, 7.2221, 7.2228, 7.2215, 7.2203, 7.2191, 7.2188, 7.2185, 7.2182, 7.2179, 7.2176, 7.2173, 7.217, 7.2167, 7.2163, 7.2159, 7.2155, 7.2151, 7.2148, 7.2154, 7.2161, 7.2167, 7.2163, 7.2159, 7.2167, 7.2164, 7.2161, 7.2159, 7.2165, 7.2172, 7.2171, 7.2169, 7.2167, 7.2164, 7.216, 7.2147, 7.2145, 7.2152, 7.2159, 7.2156, 7.2153, 7.215, 7.2146, 7.2154, 7.215, 7.2148, 7.2135, 7.2131, 7.2137, 7.2144, 7.2131, 7.2129, 7.2125, 7.2122, 7.2112, 7.2137, 7.2134, 7.2131, 7.2129, 7.2117, 7.2136, 7.2143, 7.2141, 7.2148, 7.2145, 7.2142, 7.2143, 7.2141, 7.214, 7.2137, 7.2133, 7.214, 7.2141, 7.214, 7.2137, 7.2144, 7.2143, 7.2141, 7.2138, 7.2134, 7.2131, 7.2128, 7.2125, 7.2121, 7.2118, 7.2117, 7.2114, 7.211, 7.2118, 7.2131, 7.2152, 7.215, 7.2147, 7.2143, 7.2141, 7.2138, 7.2141, 7.2149, 7.2145, 7.2141, 7.2138, 7.2137, 7.2125, 7.2132, 7.2129, 7.2125, 7.2122, 7.2118, 7.2114, 7.212, 7.2117, 7.2123, 7.2124, 7.2121, 7.2118, 7.2114, 7.2111, 7.2108, 7.2105, 7.2093, 7.2091, 7.2088, 7.2095, 7.2092, 7.2089, 7.209, 7.2087, 7.2084, 7.2071, 7.2067, 7.2066, 7.2054, 7.2051, 7.2048, 7.2057, 7.2053, 7.2052, 7.2059, 7.2056, 7.2053, 7.205, 7.2047, 7.2034, 7.2031, 7.2047, 7.2054, 7.2053, 7.206, 7.2057, 7.2053, 7.206, 7.2059, 7.2055, 7.2052, 7.2048, 7.206, 7.2057, 7.2054, 7.2051, 7.2047, 7.2053, 7.2061, 7.2069, 7.2077, 7.2065, 7.2062, 7.206, 7.2057, 7.2053, 7.2063, 7.2065, 7.2095, 7.2095, 7.2093, 7.2089, 7.2088, 7.2106, 7.2104, 7.2113, 7.2111, 7.2118, 7.2124, 7.2122, 7.2129, 7.2128, 7.2124, 7.2121, 7.2118, 7.2115, 7.2112, 7.211, 7.2107, 7.2104, 7.2101, 7.2108, 7.2114, 7.2111, 7.2108, 7.2106, 7.2103, 7.2101, 7.2121, 7.2117, 7.2114, 7.2113, 7.2103, 7.21, 7.2096, 7.2096, 7.2093, 7.21, 7.2097, 7.2094, 7.2091, 7.2097, 7.2105, 7.2101, 7.2098, 7.2094, 7.21, 7.2107, 7.2094, 7.214, 7.2137, 7.2134, 7.2131, 7.2138, 7.2135, 7.2132, 7.2129, 7.2128, 7.2124, 7.2122, 7.2119, 7.2125, 7.2134, 7.2131, 7.2128, 7.2124, 7.2123, 7.212, 7.2117, 7.2116, 7.2113, 7.211, 7.2108, 7.2096, 7.2096, 7.2093, 7.2092, 7.2089, 7.2087, 7.2095, 7.2092, 7.2099, 7.212, 7.2127, 7.2124, 7.2131, 7.2127, 7.2124, 7.2152, 7.2149, 7.2147, 7.2144, 7.214, 7.2147, 7.2144, 7.2143, 7.2158, 7.2156, 7.2163, 7.2169, 7.2166, 7.2163, 7.216, 7.2159, 7.2157, 7.2164, 7.217, 7.2167, 7.2173, 7.2161, 7.215, 7.214, 7.2147, 7.2144, 7.2141, 7.2147, 7.2153, 7.216, 7.2148, 7.2146, 7.2162, 7.2159, 7.2156, 7.2154, 7.2151, 7.2149, 7.2146, 7.2153, 7.2151, 7.2148, 7.2144, 7.2161, 7.2168, 7.2165, 7.2162, 7.2168, 7.2165, 7.2162, 7.216, 7.2156, 7.2153, 7.2152, 7.2149, 7.2146, 7.2152, 7.2159, 7.2157, 7.2183, 7.2181, 7.2188, 7.2185, 7.2191, 7.2189, 7.2196, 7.2215, 7.2212, 7.2209, 7.2206, 7.2203, 7.221, 7.2217, 7.2213, 7.221, 7.2207, 7.2204, 7.2201, 7.2198, 7.2195, 7.2193, 7.219, 7.2188, 7.2185, 7.2181, 7.2187, 7.2194, 7.2195, 7.2193, 7.2199, 7.2206, 7.2204, 7.2223, 7.222, 7.2218, 7.2215, 7.2212, 7.221, 7.2216, 7.2213, 7.222, 7.2229, 7.2226, 7.2224, 7.2221, 7.2217, 7.2214, 7.2212, 7.2211, 7.2209, 7.2205, 7.2201, 7.2208, 7.2205, 7.2202, 7.2199, 7.2207, 7.2204, 7.2202, 7.2199, 7.2195, 7.2192, 7.2181, 7.2178, 7.2175, 7.2173, 7.217, 7.2167, 7.2173, 7.217, 7.2181, 7.2189, 7.2195, 7.2196, 7.2193, 7.219, 7.2189, 7.2187, 7.2193, 7.219, 7.2187, 7.2184, 7.2181, 7.2177, 7.2165, 7.2162, 7.2159, 7.2156, 7.2153, 7.2151, 7.2148, 7.2161, 7.2163, 7.2161, 7.2159, 7.2156, 7.2154, 7.216, 7.2157, 7.2154, 7.2151, 7.2148, 7.2145, 7.2142, 7.2139, 7.2136, 7.2133, 7.2129, 7.2126, 7.2123, 7.212, 7.2117, 7.2114, 7.2121, 7.2118, 7.2117, 7.2105, 7.2104, 7.2102, 7.2099, 7.2097, 7.2094, 7.2093, 7.209, 7.2087, 7.2084, 7.2081, 7.2079, 7.2085, 7.2082, 7.2079, 7.2076, 7.2073, 7.207, 7.2067, 7.2073, 7.2079, 7.2076, 7.2075, 7.2075, 7.2072, 7.2069, 7.2066, 7.2063, 7.206, 7.2058, 7.2068, 7.207800000000001, 7.208800000000001, 7.2085, 7.2082, 7.207, 7.2068, 7.2066, 7.2054, 7.2052, 7.205, 7.2055, 7.2052, 7.205, 7.2057, 7.2054, 7.2051, 7.205, 7.2047, 7.2045, 7.2047, 7.2046, 7.2056000000000004, 7.206600000000001, 7.207600000000001, 7.2075, 7.2072, 7.208, 7.2077, 7.2091, 7.2089, 7.2088, 7.2094, 7.2095, 7.2092, 7.2089, 7.2086, 7.2083, 7.2089, 7.2086, 7.2096, 7.2093, 7.2094, 7.2092, 7.209, 7.2087, 7.2084, 7.2082, 7.2092, 7.2101, 7.21, 7.2107, 7.2114, 7.2112, 7.211, 7.2107, 7.2104, 7.2101, 7.2098, 7.2095, 7.2092, 7.209, 7.2096, 7.2093, 7.209, 7.21, 7.211, 7.2119, 7.2126, 7.2123, 7.212, 7.2119, 7.2117, 7.2114, 7.2102, 7.21, 7.2097, 7.2094, 7.2096, 7.2094, 7.2092, 7.2109, 7.2107, 7.2105, 7.2102, 7.21, 7.2097, 7.2085, 7.2083, 7.2081, 7.2088, 7.209, 7.2087, 7.2084, 7.2082, 7.2079, 7.2085, 7.2082, 7.208, 7.2077, 7.2075, 7.2064, 7.2062, 7.2059, 7.2066, 7.2066, 7.2064, 7.2062, 7.2059, 7.2047, 7.2053, 7.205, 7.206, 7.2058, 7.2058, 7.2055, 7.2065, 7.2063, 7.2069, 7.2066, 7.2064, 7.2062, 7.2059, 7.2056, 7.2062, 7.2059, 7.2056, 7.2055, 7.2072, 7.2069, 7.2076, 7.2075, 7.2073, 7.207, 7.2076, 7.2074, 7.208, 7.2078, 7.2075, 7.2081, 7.2087, 7.2125, 7.2122, 7.2119, 7.2117, 7.2114, 7.212, 7.213, 7.2128, 7.2125, 7.2121, 7.2137, 7.2134, 7.2131, 7.2128, 7.2138, 7.2148, 7.2146, 7.2151, 7.2158, 7.2166, 7.2165, 7.2172, 7.2172, 7.2179, 7.2176, 7.2173, 7.2162, 7.2168, 7.2167, 7.2164, 7.217, 7.2167, 7.2174, 7.2171, 7.2177, 7.2174, 7.2191, 7.2188, 7.2186, 7.2184, 7.2181, 7.2179, 7.2185, 7.2182, 7.2179, 7.2186, 7.2201, 7.2198, 7.2195, 7.2193, 7.2191, 7.2188, 7.2185, 7.2183, 7.2189, 7.2195, 7.2193, 7.2191, 7.2188, 7.2185, 7.2183, 7.218, 7.2177, 7.2175, 7.2172, 7.2169, 7.2168, 7.2165, 7.2162, 7.216, 7.2157, 7.2163, 7.216, 7.2175, 7.2172, 7.217, 7.2167, 7.2165, 7.2162, 7.216, 7.2166, 7.2163, 7.2162, 7.2159, 7.2167, 7.2173, 7.217, 7.2176, 7.2182, 7.2189, 7.2186, 7.2184, 7.2181, 7.2187, 7.2184, 7.219, 7.2187, 7.2192, 7.219, 7.2196, 7.2194, 7.2192, 7.2202, 7.2199, 7.2205, 7.2202, 7.2209, 7.2207, 7.2213, 7.2212, 7.2201, 7.2198, 7.2204, 7.2202, 7.2225, 7.2223, 7.222, 7.2218, 7.2225, 7.2222, 7.2219, 7.2226, 7.2224, 7.2222, 7.2229, 7.2218, 7.2225, 7.2222, 7.2219, 7.2225, 7.2231, 7.2237, 7.2234, 7.224, 7.2237, 7.2243, 7.2255, 7.2253, 7.225, 7.2258, 7.2273, 7.227, 7.2282, 7.2281, 7.2281, 7.2279, 7.2278, 7.2286, 7.2283, 7.2289, 7.2286, 7.2283, 7.2282, 7.2279, 7.2286, 7.2283, 7.228, 7.2286, 7.2293, 7.229, 7.2288, 7.2294, 7.2296, 7.2293, 7.2306, 7.2304, 7.2302, 7.2308, 7.2305, 7.2302, 7.2304, 7.231, 7.2308, 7.2306, 7.2303, 7.23, 7.2298, 7.2297, 7.2304, 7.2301, 7.2307, 7.2305, 7.2311, 7.2317, 7.2315, 7.2312, 7.2317, 7.2323, 7.232, 7.2318, 7.2324, 7.2322, 7.2322, 7.2319, 7.2325, 7.2325, 7.2333, 7.2332, 7.2336, 7.2333, 7.234, 7.2339, 7.2336, 7.2333, 7.233, 7.2328, 7.2326, 7.2316, 7.2314, 7.2311, 7.2308, 7.2306, 7.2312, 7.2309, 7.2306, 7.2303, 7.2301, 7.229, 7.2287, 7.2285, 7.2291, 7.2288, 7.2294, 7.2292, 7.2291, 7.2288, 7.2286, 7.2284, 7.2281, 7.228, 7.2278, 7.2276, 7.2274, 7.2281, 7.2279, 7.2276, 7.2283, 7.229, 7.2287, 7.2285, 7.2282, 7.228, 7.2278, 7.2275, 7.2264, 7.2261, 7.2258, 7.2255, 7.2253, 7.225, 7.2247, 7.2245, 7.2243, 7.2243, 7.224, 7.2237, 7.2234, 7.2232, 7.2229, 7.2226, 7.2232, 7.2229, 7.2226, 7.2224, 7.2229, 7.2227, 7.2224, 7.2241, 7.2238, 7.2243, 7.2249, 7.2246, 7.2243, 7.224, 7.2237, 7.2234, 7.2232, 7.223, 7.2229, 7.2235, 7.2233, 7.2231, 7.2229, 7.2226, 7.2232, 7.223, 7.2228, 7.2234, 7.2231, 7.2228, 7.2225, 7.2222, 7.222, 7.2217, 7.2214, 7.2211, 7.2209, 7.2207, 7.2205, 7.2213, 7.2221, 7.2221, 7.2227, 7.2225, 7.2222, 7.222, 7.2227, 7.2224, 7.223, 7.2233, 7.223, 7.2236, 7.2233, 7.2232, 7.223, 7.2253, 7.2242, 7.2239, 7.2237, 7.2243, 7.224, 7.2237, 7.2243, 7.2234, 7.2241, 7.2238, 7.2236, 7.2234, 7.2232, 7.2229, 7.2235, 7.2232, 7.2229, 7.2226, 7.2224, 7.2221, 7.2218, 7.2224, 7.2239, 7.2236, 7.2235, 7.2232, 7.2221, 7.2218, 7.2217, 7.2214, 7.2213, 7.226, 7.2257, 7.2255, 7.2253, 7.2252, 7.2258, 7.2255, 7.2253, 7.2259, 7.2256, 7.2253, 7.2259, 7.2256, 7.2253, 7.225, 7.2256, 7.2254, 7.2259, 7.2265, 7.2262, 7.226, 7.2278, 7.2275, 7.2289, 7.2287, 7.2284, 7.2282, 7.2292, 7.2298, 7.2295, 7.2285, 7.2282, 7.2279, 7.2276, 7.2281, 7.2278, 7.2277, 7.2275, 7.2273, 7.2278, 7.2275, 7.228, 7.2277, 7.2276, 7.2274, 7.2271, 7.2269, 7.2268, 7.2265, 7.2267, 7.2265, 7.2263, 7.2252, 7.2249, 7.2254, 7.2255, 7.2244, 7.2233, 7.225, 7.2239, 7.228, 7.2277, 7.2283, 7.2282, 7.2279, 7.2286, 7.2299, 7.2296, 7.2293, 7.229, 7.2314, 7.2312, 7.2309, 7.231, 7.2308, 7.2306, 7.2304, 7.2301, 7.2299, 7.2297, 7.2294, 7.2291, 7.2289, 7.2295, 7.2292, 7.2298, 7.2295, 7.23, 7.2298, 7.2295, 7.2293, 7.2292, 7.2297, 7.2296, 7.2293, 7.2292, 7.2299, 7.2296, 7.2294, 7.2291, 7.2289, 7.2287, 7.2294, 7.2292, 7.2289, 7.2278, 7.2275, 7.2272, 7.227, 7.2275, 7.2281, 7.2281, 7.2278, 7.2275, 7.2264, 7.2253, 7.225, 7.2247, 7.2253, 7.2255, 7.2252, 7.2258, 7.2255, 7.2262, 7.2268, 7.2266, 7.2272, 7.2269, 7.2266, 7.2263, 7.226, 7.2266, 7.2272, 7.2272, 7.2278, 7.2275, 7.2272, 7.227, 7.2268, 7.2281, 7.2279, 7.2276, 7.2273, 7.227, 7.2267, 7.2268, 7.2269, 7.2266, 7.2271, 7.2277, 7.2283, 7.228, 7.2277, 7.2306, 7.232, 7.2343, 7.234, 7.2329, 7.2318, 7.2315, 7.2312, 7.2318, 7.2316, 7.2313, 7.2311, 7.2317, 7.2314, 7.2311, 7.2308, 7.2314, 7.2312, 7.2301, 7.2298, 7.2296, 7.2293, 7.229, 7.2287, 7.2293, 7.2283, 7.2288, 7.2285, 7.229, 7.2287, 7.2298, 7.2295, 7.2292, 7.2297, 7.2294, 7.23, 7.2297, 7.2303, 7.2303, 7.2309, 7.2306, 7.2312, 7.2339, 7.2336, 7.2343, 7.2349, 7.2347, 7.2336, 7.2342, 7.2347, 7.2345, 7.2343, 7.234, 7.233, 7.2327, 7.2332, 7.2329, 7.2326, 7.2323, 7.2321, 7.2327, 7.2325, 7.2331, 7.2336, 7.2333, 7.233, 7.2327, 7.2324, 7.2329, 7.2326, 7.2323, 7.232, 7.2325, 7.233, 7.2328, 7.2325, 7.2331, 7.2362, 7.2359, 7.2356, 7.2355, 7.236, 7.2366, 7.2363, 7.236, 7.2365, 7.237, 7.2367, 7.2365, 7.2363, 7.2352, 7.2357, 7.2371, 7.2391, 7.2397, 7.2403, 7.24, 7.2405, 7.2402, 7.2408, 7.2406, 7.2408, 7.2406, 7.2415, 7.2413, 7.2418, 7.2415, 7.2412, 7.2418, 7.2415, 7.2421, 7.2418, 7.2424, 7.243, 7.2427, 7.2433, 7.243, 7.2427, 7.2424, 7.2421, 7.2418, 7.2415, 7.242, 7.2428, 7.2425, 7.2422, 7.242, 7.2417, 7.2415, 7.2413, 7.241, 7.2407, 7.2404, 7.2427, 7.2424, 7.2431, 7.2436, 7.245, 7.2456, 7.2453, 7.2459, 7.2457, 7.2463, 7.246, 7.2457, 7.2462, 7.246, 7.2474, 7.2465, 7.2466, 7.2471, 7.2468, 7.2467, 7.2465, 7.2462, 7.2468, 7.2465, 7.2454, 7.2459, 7.2456, 7.2458, 7.2464, 7.2476, 7.2474, 7.248, 7.248, 7.2477, 7.2485, 7.2495, 7.2493, 7.2503, 7.2495, 7.2496, 7.2494, 7.2496, 7.2501, 7.2499, 7.2489, 7.2486, 7.2487, 7.2501, 7.2499, 7.2505, 7.251, 7.2509, 7.2507, 7.2521, 7.2511, 7.2508, 7.2518, 7.2523, 7.2537, 7.256, 7.256, 7.2567, 7.2565, 7.2566, 7.2568, 7.2573, 7.257, 7.2575, 7.258, 7.2585, 7.2591, 7.2596, 7.2594, 7.2591, 7.2608, 7.2607, 7.2615, 7.2605, 7.261, 7.2608, 7.2606, 7.2624, 7.2621, 7.2618, 7.2631, 7.2637, 7.2642, 7.2639, 7.2644, 7.2643, 7.2649, 7.2663, 7.266, 7.2657, 7.2655, 7.2661, 7.2667, 7.2679, 7.2676, 7.2677, 7.2682, 7.268, 7.2686, 7.2692, 7.2689, 7.2694, 7.2699, 7.2705, 7.2702, 7.2699, 7.2699, 7.2696, 7.2686, 7.27, 7.2705, 7.2718, 7.2723, 7.2721, 7.2719, 7.2724, 7.2721, 7.2718, 7.2732, 7.2729, 7.2727, 7.2725, 7.2722, 7.272, 7.2725, 7.2723, 7.2721, 7.2711, 7.2717, 7.2715, 7.2728, 7.2725, 7.2748, 7.2748, 7.2748, 7.2748, 7.2746, 7.2763, 7.2754, 7.2752, 7.275, 7.2747, 7.2753, 7.275, 7.2748, 7.2754, 7.2777, 7.2767, 7.2764, 7.277, 7.2768, 7.2766, 7.2763, 7.276, 7.2757, 7.2755, 7.2754, 7.2752, 7.2749, 7.2746, 7.2743, 7.2748, 7.2753, 7.2766, 7.2763, 7.2769, 7.2774, 7.2787, 7.2785, 7.279, 7.2789, 7.2786, 7.2783, 7.278, 7.2777, 7.2774, 7.2777, 7.2774, 7.2764, 7.2762, 7.2762, 7.2761, 7.2766, 7.2763, 7.2768, 7.2765, 7.2763, 7.2775, 7.2788, 7.2793, 7.279, 7.2787, 7.2785, 7.279, 7.2787, 7.2792, 7.2798, 7.2797, 7.2803, 7.28, 7.2805, 7.281, 7.2808, 7.2805, 7.2811, 7.2813, 7.2811, 7.2808, 7.2805, 7.2811, 7.2809, 7.2806, 7.2811, 7.2809, 7.2807, 7.2812, 7.2809, 7.2814, 7.2812, 7.2827, 7.2832, 7.2831, 7.2836, 7.2833, 7.283, 7.282, 7.2817, 7.2814, 7.2819, 7.2817, 7.2814, 7.2804, 7.2801, 7.2806, 7.2803, 7.28, 7.2798, 7.2804, 7.2809, 7.2814, 7.282, 7.2817, 7.2814, 7.2819, 7.2816, 7.2813, 7.2811, 7.2809, 7.2807, 7.2805, 7.2811, 7.2816, 7.2829, 7.2819, 7.2818, 7.2818, 7.2821, 7.2828, 7.2836, 7.2856, 7.2856, 7.2861, 7.2861, 7.2876, 7.2881, 7.2879, 7.2876, 7.2882, 7.288, 7.2878, 7.2891, 7.2888, 7.2886, 7.2891, 7.2897, 7.2895, 7.2917, 7.2914, 7.2912, 7.2909, 7.2907, 7.2904, 7.2902, 7.29, 7.2898, 7.2897, 7.2902, 7.2899, 7.2904, 7.2901, 7.2906, 7.2903, 7.2908, 7.2913, 7.291, 7.2908, 7.2905, 7.2905, 7.2911, 7.2916, 7.2914, 7.2911, 7.2908, 7.2906, 7.2903, 7.2902, 7.2893, 7.2891, 7.2888, 7.2889, 7.2886, 7.2883, 7.2883, 7.2881, 7.2879, 7.2877, 7.2882, 7.288, 7.2878, 7.2878, 7.2895, 7.2893, 7.289, 7.2887, 7.2885, 7.2882, 7.288, 7.2877, 7.2894, 7.2884, 7.2889, 7.2893, 7.2899, 7.2925, 7.2938, 7.2951, 7.2949, 7.2954, 7.2962, 7.296, 7.2952, 7.2958, 7.2955, 7.2964, 7.2977, 7.2975, 7.2972, 7.297, 7.2978, 7.2976, 7.2974, 7.2972, 7.297, 7.2977, 7.2976, 7.299, 7.2991, 7.299, 7.2989, 7.2986, 7.3, 7.3006, 7.3004, 7.3003, 7.3001, 7.2998, 7.2996, 7.2995, 7.2992, 7.2991, 7.2989, 7.2989, 7.2995, 7.2994, 7.2993, 7.2991, 7.299, 7.2987, 7.2985, 7.2983, 7.298, 7.2986, 7.2992, 7.2998, 7.2998, 7.3, 7.2999, 7.2997, 7.3003, 7.3003, 7.3003, 7.3001, 7.3007, 7.3012, 7.301, 7.3016, 7.3013, 7.3019], '192.168.122.118': [13.4807, 9.6689, 10.0505, 10.2537, 9.5238, 8.8835, 8.4629, 8.7424, 8.372, 8.1164, 8.4154, 8.1847, 7.9775, 8.174, 8.3503, 8.1903, 7.7367, 7.9358, 8.1009, 8.0165, 7.9229, 7.8178, 7.7231, 7.6248, 7.7826, 7.6858, 7.599, 7.7459, 7.6622, 7.5827, 7.5358, 7.4945, 7.3123, 7.2801, 7.3733, 7.3258, 7.2783, 7.2283, 7.2063, 7.1697, 7.1263, 7.0827, 7.0493, 7.0891, 7.1634, 7.1353, 7.095, 7.0746, 7.0373, 6.9072, 6.9296, 6.9174, 6.8993, 6.877, 6.9417, 6.9356, 6.8248, 6.803, 6.7799, 6.7597, 6.7498, 6.8223, 6.8934, 6.8707, 6.859, 6.8445, 6.9025, 6.9696, 6.955, 6.9622, 7.0179, 7.0271, 7.0779, 7.0597, 6.9869, 6.9701, 6.9501, 6.999, 6.9777, 6.9658, 6.9479, 6.9302, 6.9742, 6.954, 6.9406, 6.9827, 6.9652, 7.0087, 7.0766, 7.058, 7.0993, 7.1415, 7.1354, 7.1246, 7.1047, 7.0876, 7.022, 7.1789, 7.1605, 7.0984, 7.0803, 7.1154, 7.1007, 7.0875, 7.0763, 7.0671, 7.0597, 7.0478, 7.0318, 7.0165, 7.0511, 7.0395, 7.0349, 7.0265, 6.9695, 6.9148, 6.9094, 7.0204, 7.0061, 6.9981, 7.0306, 7.0786, 7.065, 7.1154, 7.1039, 7.0909, 7.0791, 7.0901, 7.0898, 7.0779, 7.0637, 7.0927, 7.0807, 7.1131, 7.103, 7.141, 7.1299, 7.1178, 7.108, 7.1067, 7.0943, 7.2036, 7.2001, 7.187, 7.1752, 7.2035, 7.229, 7.185, 7.1796, 7.1731, 7.1662, 7.1546, 7.1818, 7.1742, 7.1647, 7.1546, 7.1479, 7.1721, 7.198, 7.1861, 7.2087, 7.1977, 7.1869, 7.181, 7.1848, 7.1743, 7.1357, 7.1262, 7.1185, 7.1086, 7.0981, 7.0897, 7.1102, 7.0994, 7.09, 7.1453, 7.1375, 7.1291, 7.1192, 7.1092, 7.1023, 7.0945, 7.0855, 7.1059, 7.1136, 7.1057, 7.0966, 7.0871, 7.1151, 7.0867, 7.0826, 7.0739, 7.068, 7.0879, 7.0793, 7.0986, 7.1175, 7.1406, 7.1323, 7.1235, 7.1149, 7.1069, 7.0992, 7.0937, 7.0904, 7.0846, 7.0776, 7.0728, 7.0678, 7.0961, 7.0879, 7.1053, 7.0971, 7.0914, 7.1089, 7.1009, 7.0954, 7.1868, 7.1804, 7.1755, 7.1903, 7.1827, 7.1743, 7.1926, 7.1846, 7.202, 7.2173, 7.2163, 7.2078, 7.2018, 7.1934, 7.1877, 7.1799, 7.1727, 7.2387, 7.2536, 7.2455, 7.239, 7.2309, 7.2232, 7.2317, 7.2237, 7.2161, 7.2083, 7.2042, 7.1781, 7.1727, 7.1651, 7.1629, 7.1579, 7.192, 7.1853, 7.2001, 7.2146, 7.2071, 7.2, 7.193, 7.1862, 7.2007, 7.1948, 7.2092, 7.2015, 7.1956, 7.193, 7.1857, 7.1997, 7.2137, 7.2072, 7.2005, 7.1937, 7.1907, 7.1856, 7.1803, 7.1746, 7.2143, 7.2292, 7.2252, 7.2204, 7.2154, 7.2093, 7.2029, 7.206, 7.2175, 7.23, 7.2239, 7.2367, 7.2312, 7.2446, 7.243, 7.2384, 7.234, 7.2282, 7.2225, 7.2164, 7.2124, 7.206, 7.2001, 7.2126, 7.2082, 7.203, 7.1984, 7.1941, 7.1892, 7.2027, 7.1995, 7.2143, 7.211, 7.2051, 7.2009, 7.198, 7.1972, 7.198, 7.1928, 7.1881, 7.1822, 7.1765, 7.1738, 7.185, 7.1798, 7.1922, 7.1864, 7.1675, 7.1828, 7.1778, 7.1906, 7.1877, 7.1821, 7.1783, 7.1749, 7.171, 7.2135, 7.218, 7.2479, 7.2429, 7.2378, 7.2356, 7.2306, 7.2248, 7.2195, 7.2189, 7.2157, 7.2105, 7.2052, 7.2001, 7.1956, 7.1911, 7.1859, 7.1822, 7.1941, 7.1892, 7.1855, 7.196, 7.1923, 7.1872, 7.182, 7.1885, 7.1836, 7.1784, 7.1738, 7.1685, 7.1652, 7.1609, 7.1558, 7.1507, 7.146, 7.1443, 7.1398, 7.1352, 7.1174, 7.1131, 7.1225, 7.1187, 7.1139, 7.1097, 7.1052, 7.1013, 7.1118, 7.1072, 7.1117, 7.108, 7.1045, 7.1007, 7.1099, 7.1191, 7.1282, 7.1375, 7.133, 7.162, 7.1724, 7.1675, 7.1637, 7.1595, 7.1686, 7.1652, 7.163, 7.1713, 7.1882, 7.1836, 7.1807, 7.1778, 7.1864, 7.1827, 7.1905, 7.1859, 7.1812, 7.1782, 7.1735, 7.1702, 7.1686, 7.1644, 7.1602, 7.1682, 7.1719, 7.1808, 7.1785, 7.175, 7.1711, 7.1672, 7.164, 7.1807, 7.1765, 7.1726, 7.1688, 7.1715, 7.1673, 7.1677, 7.1653, 7.1751, 7.1837, 7.18, 7.1766, 7.1726, 7.1693, 7.1651, 7.1612, 7.1577, 7.1654, 7.1614, 7.1697, 7.1653, 7.1624, 7.1582, 7.1438, 7.1445, 7.1407, 7.1492, 7.137, 7.133, 7.13, 7.1265, 7.1362, 7.1365, 7.1455, 7.1426, 7.1399, 7.136, 7.1339, 7.1425, 7.1391, 7.1356, 7.1326, 7.1288, 7.1369, 7.1469, 7.1435, 7.1398, 7.1361, 7.1339, 7.1304, 7.1265, 7.1235, 7.1212, 7.1176, 7.1251, 7.1232, 7.131, 7.1277, 7.1241, 7.1211, 7.1188, 7.1267, 7.1263, 7.1233, 7.1306, 7.1276, 7.1247, 7.1318, 7.1185, 7.1158, 7.1125, 7.1089, 7.0956, 7.0833, 7.0916, 7.0997, 7.0968, 7.095, 7.0914, 7.0989, 7.1074, 7.1045, 7.1017, 7.099, 7.0975, 7.1051, 7.1014, 7.0986, 7.0998, 7.0965, 7.0928, 7.0901, 7.0874, 7.0848, 7.0823, 7.0803, 7.0768, 7.0735, 7.0809, 7.0794, 7.0762, 7.0839, 7.0716, 7.0697, 7.0775, 7.0847, 7.0927, 7.0998, 7.0974, 7.0951, 7.0928, 7.1008, 7.0985, 7.0965, 7.094, 7.1021, 7.0991, 7.096, 7.0981, 7.0956, 7.1036, 7.1117, 7.1181, 7.1155, 7.1136, 7.1107, 7.1079, 7.1055, 7.1028, 7.1017, 7.0903, 7.0783, 7.0861, 7.0831, 7.0895, 7.0865, 7.0834, 7.0803, 7.0771, 7.074, 7.072, 7.0688, 7.0661, 7.0741, 7.0811, 7.0795, 7.0764, 7.0831, 7.0825, 7.0803, 7.0774, 7.0788, 7.0775, 7.0842, 7.0817, 7.0874, 7.1124, 7.1091, 7.1064, 7.1033, 7.1004, 7.098, 7.1039, 7.1019, 7.0996, 7.0965, 7.0943, 7.0916, 7.0807, 7.078, 7.0751, 7.0725, 7.0696, 7.0673, 7.0734, 7.071, 7.0688, 7.0661, 7.0637, 7.0694, 7.0667, 7.0638, 7.0636, 7.0617, 7.0619, 7.0685, 7.0663, 7.0648, 7.0717, 7.069, 7.0721, 7.0707, 7.0679, 7.0654, 7.0632, 7.0615, 7.068, 7.0651, 7.0637, 7.063, 7.06, 7.0572, 7.0749, 7.0805, 7.0865, 7.0925, 7.0916, 7.0888, 7.0908, 7.0882, 7.0858, 7.0833, 7.0826, 7.0811, 7.0793, 7.0766, 7.0683, 7.066, 7.0637, 7.0533, 7.043, 7.0402, 7.0377, 7.0353, 7.0413, 7.0386, 7.036, 7.0334, 7.0316, 7.029, 7.0267, 7.0246, 7.0221, 7.0202, 7.0179, 7.0238, 7.0294, 7.0268, 7.0243, 7.0222, 7.0205, 7.018, 7.0236, 7.0294, 7.0359, 7.0335, 7.0401, 7.0395, 7.037, 7.0274, 7.0267, 7.0324, 7.0378, 7.0766, 7.0744, 7.0782, 7.0835, 7.0898, 7.0875, 7.0849, 7.0824, 7.0797, 7.0776, 7.076, 7.0811, 7.0787, 7.0772, 7.0748, 7.0808, 7.0786, 7.0761, 7.0673, 7.0653, 7.0711, 7.0692, 7.0675, 7.0661, 7.0643, 7.0623, 7.0606, 7.0588, 7.0569, 7.0481, 7.0461, 7.0511, 7.0689, 7.0674, 7.0584, 7.057, 7.0545, 7.0727, 7.0781, 7.069, 7.0664, 7.0717, 7.0712, 7.0696, 7.0677, 7.0653, 7.0564, 7.0541, 7.0518, 7.0493, 7.0482, 7.0463, 7.0514, 7.0492, 7.0469, 7.0525, 7.0503, 7.048, 7.0457, 7.0446, 7.0421, 7.048, 7.046, 7.0456, 7.0518, 7.0507, 7.0496, 7.0473, 7.0521, 7.0572, 7.062, 7.0672, 7.0647, 7.0624, 7.063400000000001, 7.064400000000001, 7.0622, 7.0674, 7.0726, 7.0716, 7.0699, 7.0685, 7.0668, 7.0667, 7.072, 7.0703, 7.0751, 7.0798, 7.0844, 7.0891, 7.0883, 7.0863, 7.0911, 7.0899, 7.0814, 7.0863, 7.085, 7.0902, 7.0946, 7.0995, 7.0984, 7.0961, 7.0941, 7.092, 7.091, 7.101, 7.1006, 7.0987, 7.0989, 7.0972, 7.0951, 7.093, 7.0909, 7.0887, 7.0865, 7.091, 7.0889, 7.0866, 7.0843, 7.0893, 7.0877, 7.0887, 7.0873, 7.1242, 7.1287, 7.1266, 7.1244, 7.1292, 7.1271, 7.1257, 7.1306, 7.1286, 7.1398, 7.1375, 7.1419, 7.14, 7.1442, 7.1495, 7.1483, 7.1464, 7.1725, 7.1704, 7.169, 7.1669, 7.1787, 7.1781, 7.1827, 7.1805, 7.1787, 7.2447, 7.2428, 7.2492, 7.2469, 7.2451, 7.2429, 7.247, 7.2448, 7.2426, 7.241, 7.2454, 7.2433, 7.2411, 7.2453, 7.2491, 7.2498, 7.2481, 7.2416, 7.2457, 7.2498, 7.2541, 7.2588, 7.257, 7.2556, 7.2533, 7.2511, 7.2492, 7.2478, 7.2458, 7.2436, 7.2365, 7.2342, 7.2322, 7.2301, 7.2342, 7.2272, 7.2267, 7.2251, 7.2228, 7.2247, 7.2294, 7.2342, 7.2384, 7.2364, 7.2411, 7.239, 7.2432, 7.2413, 7.2393, 7.238, 7.2357, 7.2399, 7.2439, 7.2416, 7.2459, 7.2499, 7.2486, 7.2468, 7.2462, 7.2506, 7.2495, 7.2481, 7.2607, 7.265, 7.2627, 7.2662, 7.2648, 7.2751, 7.279, 7.2768, 7.2745, 7.2732, 7.2715, 7.2693, 7.2689, 7.2849, 7.2885, 7.287, 7.2906, 7.2887, 7.2867, 7.2866, 7.2845, 7.2827, 7.2866, 7.2849, 7.2833, 7.2814, 7.2791, 7.2769, 7.2754, 7.2823, 7.2858, 7.286, 7.2922, 7.291, 7.289, 7.288, 7.2859, 7.2896, 7.2935, 7.2913, 7.2893, 7.295, 7.2932, 7.2914, 7.2839, 7.2821, 7.2805, 7.2784, 7.2764, 7.2747, 7.2727, 7.2706, 7.274, 7.2885, 7.2866, 7.2851, 7.2839, 7.2877, 7.2862, 7.2843, 7.2823, 7.2861, 7.2895, 7.2932, 7.2978, 7.2958, 7.2994, 7.3028, 7.301, 7.3054, 7.3045, 7.3045, 7.3083, 7.3064, 7.3047, 7.2977, 7.3012, 7.2992, 7.2971, 7.2952, 7.2931, 7.3024, 7.3005, 7.299, 7.2983, 7.302, 7.3, 7.2979, 7.3015, 7.3003, 7.2986, 7.2964, 7.2946, 7.2981, 7.2977, 7.2962, 7.2946, 7.2933, 7.2923, 7.2908, 7.2891, 7.2942, 7.2927, 7.3044, 7.308, 7.307, 7.3107, 7.3087, 7.3124, 7.3112, 7.3095, 7.308, 7.3065, 7.3046, 7.3069, 7.3104, 7.3135, 7.3115, 7.3151, 7.3135, 7.3116, 7.3152, 7.3137, 7.312, 7.312, 7.316, 7.3141, 7.3084, 7.3065, 7.3006, 7.2989, 7.2972, 7.2954, 7.2992, 7.2975, 7.2956, 7.2938, 7.2921, 7.2902, 7.2883, 7.2872, 7.2859, 7.2841, 7.2843, 7.2824, 7.282, 7.2804, 7.2792, 7.2775, 7.2811, 7.2792, 7.2782, 7.2824, 7.281, 7.2796, 7.2826, 7.2862, 7.2893, 7.2877, 7.301, 7.304, 7.3071, 7.3052, 7.3039, 7.302, 7.3052, 7.3034, 7.3066, 7.3096, 7.3083, 7.307, 7.3101, 7.3107, 7.3093, 7.3129, 7.3115, 7.3185, 7.3165, 7.3146, 7.3176, 7.3162, 7.3143, 7.3176, 7.3208, 7.3189, 7.3175, 7.3164, 7.3146, 7.313, 7.3117, 7.3099, 7.3084, 7.3067, 7.31, 7.3086, 7.3124, 7.3062, 7.3099, 7.3084, 7.3117, 7.31, 7.3092, 7.318, 7.3169, 7.3154, 7.3139, 7.3122, 7.311, 7.3095, 7.3128, 7.3116, 7.3148, 7.3138, 7.3129, 7.3158, 7.3221, 7.3439, 7.342, 7.3406, 7.3388, 7.3374, 7.3356, 7.3344, 7.3326, 7.3355, 7.3388, 7.3416, 7.3397, 7.3427, 7.3415, 7.3356, 7.3341, 7.3328, 7.3269, 7.3256, 7.3241, 7.3276, 7.3339, 7.3326, 7.3307, 7.3291, 7.3274, 7.3256, 7.3238, 7.3224, 7.321, 7.3196, 7.3181, 7.3217, 7.3246, 7.3234, 7.3222, 7.3275, 7.3269, 7.3257, 7.3287, 7.3269, 7.3303, 7.3285, 7.3279, 7.3262, 7.3245, 7.3228, 7.3211, 7.3194, 7.3177, 7.316, 7.3161, 7.3143, 7.3175, 7.3157, 7.3186, 7.3172, 7.3156, 7.3187, 7.3177, 7.316, 7.3172, 7.3203, 7.3186, 7.3168, 7.3199, 7.3229, 7.3212, 7.3242, 7.3228, 7.3303, 7.3291, 7.3276, 7.3303, 7.3338, 7.3368, 7.3394, 7.3555, 7.3586, 7.3569, 7.356, 7.3675, 7.3617, 7.3601, 7.3631, 7.3617, 7.3606, 7.3592, 7.362, 7.3606, 7.3593, 7.362, 7.3603, 7.3588, 7.3614, 7.3648, 7.3631, 7.3658, 7.369, 7.3673, 7.3664, 7.3647, 7.3629, 7.3616, 7.3603, 7.3589, 7.3621, 7.3604, 7.3589, 7.3581, 7.3564, 7.3508, 7.3494, 7.3525, 7.356, 7.3551, 7.355, 7.3538, 7.3524, 7.3508, 7.3494, 7.3479, 7.3508, 7.3492, 7.3534, 7.3518, 7.3506, 7.3495, 7.3485, 7.3514, 7.3539, 7.3525, 7.3555, 7.3539, 7.3574, 7.3602, 7.3587, 7.3577, 7.3561, 7.3589, 7.3574, 7.356, 7.3543, 7.3527, 7.3519, 7.3547, 7.3538, 7.3523, 7.3506, 7.3494, 7.3529, 7.3515, 7.35, 7.3484, 7.3472, 7.3457, 7.3441, 7.3426, 7.3455, 7.3441, 7.3489, 7.3475, 7.3461, 7.3469, 7.3499, 7.3483, 7.351, 7.354, 7.3526, 7.3512, 7.3502, 7.3527, 7.3473, 7.3467, 7.3452, 7.3439, 7.3463, 7.3491, 7.3477, 7.3462, 7.3489, 7.3474, 7.3461, 7.3445, 7.3429, 7.3414, 7.3401, 7.3384, 7.3368, 7.3392, 7.338, 7.3408, 7.3394, 7.3392, 7.3377, 7.3369, 7.3353, 7.3344, 7.3333, 7.3322, 7.3308, 7.3293, 7.3358, 7.3343, 7.3369, 7.3354, 7.3346, 7.333, 7.336, 7.3346, 7.3338, 7.3331, 7.3356, 7.3344, 7.3331, 7.332, 7.3304, 7.3333, 7.3324, 7.335, 7.3338, 7.3328, 7.3313, 7.3307, 7.3294, 7.3251, 7.3245, 7.323, 7.3332, 7.3402, 7.3392, 7.3386, 7.3375, 7.3364, 7.3352, 7.3339, 7.3325, 7.3313, 7.33, 7.3287, 7.3274, 7.33, 7.3286, 7.3272, 7.3295, 7.332, 7.327, 7.3258, 7.3286, 7.3274, 7.3224, 7.3175, 7.3164, 7.317, 7.3317, 7.3277, 7.3275, 7.3331, 7.3323, 7.3354, 7.3343, 7.3341, 7.3326, 7.3312, 7.3307, 7.3297, 7.3414, 7.3364, 7.3389, 7.3375, 7.3366, 7.3406, 7.34, 7.3424, 7.341, 7.3407, 7.3393, 7.3379, 7.3416, 7.3404, 7.3442, 7.3428, 7.3417, 7.344, 7.3427, 7.3417, 7.3441, 7.3427, 7.3425, 7.3417, 7.3403, 7.3432, 7.3428, 7.3469, 7.3496, 7.3482, 7.3468, 7.3537, 7.353, 7.3519, 7.3507, 7.3495, 7.3523, 7.3549, 7.3538, 7.3524, 7.3516, 7.3505, 7.3516, 7.3503, 7.3528, 7.3515, 7.3503, 7.3488, 7.3513, 7.35, 7.3486, 7.3472, 7.3465, 7.3452, 7.3477, 7.347, 7.346, 7.3449, 7.3462, 7.3497, 7.3522, 7.3547, 7.3571, 7.3595, 7.3585, 7.361, 7.3603, 7.359, 7.3615, 7.3601, 7.3624, 7.361, 7.362, 7.3643, 7.3629, 7.3655, 7.3645, 7.3636, 7.366, 7.3678, 7.3666, 7.3652, 7.3677, 7.3667, 7.3654, 7.3639, 7.3628, 7.3617, 7.3606, 7.3596, 7.362, 7.3608, 7.3594, 7.3654, 7.3645, 7.3632, 7.3625, 7.3614, 7.3638, 7.3627, 7.3614, 7.3638, 7.3624, 7.361, 7.3596, 7.3557, 7.3543, 7.3531, 7.3554, 7.3543, 7.3532, 7.3522, 7.3508, 7.3494, 7.3487, 7.3474, 7.3501, 7.3524, 7.3511, 7.3498, 7.3521, 7.3507, 7.3496, 7.3483, 7.3472, 7.3468, 7.3457, 7.3444, 7.3434, 7.3421, 7.348, 7.3467, 7.349, 7.3478, 7.3465, 7.3453, 7.3442, 7.3429, 7.3417, 7.3404, 7.3392, 7.3379, 7.3366, 7.3354, 7.3377, 7.3367, 7.3357, 7.3313, 7.3303, 7.3292, 7.3285, 7.3274, 7.3263, 7.3255, 7.3242, 7.3269, 7.3255, 7.3243, 7.323, 7.3253, 7.3241, 7.3231, 7.3218, 7.3207, 7.3197, 7.3188, 7.3175, 7.3162, 7.3176, 7.3166, 7.3157, 7.3115, 7.3105, 7.3094, 7.3082, 7.3053, 7.304, 7.3062, 7.305, 7.3076, 7.3099, 7.3088, 7.3141, 7.3164, 7.3152, 7.3142, 7.3134, 7.3122, 7.3122, 7.3144, 7.3201, 7.3364, 7.3352, 7.3414, 7.3441, 7.3401, 7.3394, 7.3387, 7.3411, 7.3435, 7.3429, 7.3387, 7.3377, 7.3366, 7.3355, 7.3312, 7.3305, 7.3293, 7.3282, 7.3302, 7.3292, 7.3282, 7.3273, 7.3264, 7.3255, 7.3245, 7.3238, 7.3229, 7.3273, 7.3269, 7.329, 7.3277, 7.3265, 7.3253, 7.3274, 7.3298, 7.3286, 7.3307, 7.3296, 7.3286, 7.3274, 7.3262, 7.3343, 7.3332, 7.332, 7.3307, 7.3329, 7.3351, 7.3342, 7.3329, 7.3316, 7.3337, 7.3359, 7.3358, 7.3349, 7.3337, 7.3359, 7.3346, 7.3305, 7.3327, 7.3315, 7.3306, 7.3331, 7.3319, 7.3309, 7.333, 7.3332, 7.332, 7.3342, 7.3331, 7.3319, 7.334, 7.3351, 7.3344, 7.3331, 7.3321, 7.3315, 7.3307, 7.3297, 7.332, 7.3314, 7.3304, 7.3297, 7.3286, 7.3278, 7.3437, 7.3433, 7.3432, 7.3456, 7.3513, 7.3504, 7.3571, 7.3564, 7.3554, 7.358, 7.3539, 7.3559, 7.3581, 7.3578, 7.3609, 7.3598, 7.3618, 7.3606, 7.3594, 7.3582, 7.3572, 7.3559, 7.3581, 7.3572, 7.3594, 7.3616, 7.3607, 7.3567, 7.3555, 7.3544, 7.358, 7.3572, 7.3562, 7.3553, 7.3543, 7.3561, 7.3552, 7.3542, 7.3533, 7.3523, 7.3515, 7.3503, 7.3494, 7.3485, 7.3472, 7.3459, 7.3478, 7.3496, 7.349, 7.3509, 7.3531, 7.3558, 7.3546, 7.3533, 7.3521, 7.3511, 7.3502, 7.3494, 7.3488, 7.3476, 7.3466, 7.3457, 7.3446, 7.3434, 7.3422, 7.3411, 7.3401, 7.3393, 7.3382, 7.3372, 7.336, 7.3348, 7.334, 7.333, 7.329, 7.3279, 7.3267, 7.3256, 7.3245, 7.3268, 7.3261, 7.325, 7.3239, 7.3228, 7.3216, 7.3208, 7.3175, 7.3169, 7.3158, 7.3178, 7.3168, 7.3157, 7.3148, 7.3141, 7.313, 7.312, 7.3109, 7.3097, 7.3116, 7.3107, 7.31, 7.3119, 7.312, 7.3111, 7.3103, 7.3123, 7.3143, 7.3132, 7.3121, 7.314, 7.3129, 7.312, 7.3111, 7.3131, 7.3126, 7.3115, 7.3106, 7.3104, 7.3093, 7.3083, 7.3073, 7.3063, 7.3052, 7.3115, 7.3124, 7.3155, 7.3118, 7.3114, 7.3127, 7.3148, 7.3168, 7.3159, 7.3147, 7.3137, 7.3155, 7.315, 7.3171, 7.3161, 7.315, 7.3143, 7.3134, 7.3175, 7.3169, 7.3191, 7.3182, 7.317, 7.316, 7.3179, 7.3169, 7.3158, 7.315, 7.314, 7.3133, 7.3096, 7.3116, 7.3105, 7.3102, 7.3092, 7.3087, 7.3077, 7.3067, 7.3058, 7.3051, 7.3043, 7.3034, 7.3025, 7.3014, 7.3006, 7.2997, 7.3018, 7.3008, 7.3001, 7.3021, 7.3011, 7.3004, 7.2996, 7.2986, 7.2985, 7.2977, 7.2966, 7.2955, 7.2945, 7.2941, 7.293, 7.2925, 7.2914, 7.2934, 7.2986, 7.2974, 7.2992, 7.2956, 7.2949, 7.297, 7.296, 7.298, 7.297, 7.296, 7.2954, 7.2973, 7.2963, 7.2995, 7.2987, 7.3006, 7.2996, 7.2986, 7.2976, 7.2965, 7.2955, 7.2944, 7.2936, 7.2931, 7.2921, 7.2915, 7.2909, 7.2927, 7.2917, 7.2909, 7.2873, 7.2863, 7.2855, 7.2875, 7.2865, 7.2856, 7.2846, 7.2837, 7.2855, 7.2845, 7.2863, 7.288, 7.287, 7.289, 7.2893, 7.2913, 7.2904, 7.2894, 7.2885, 7.2905, 7.2895, 7.286, 7.285, 7.2839, 7.2857, 7.2847, 7.2836, 7.2855, 7.2846, 7.2836, 7.283, 7.2849, 7.2844, 7.2834, 7.2823, 7.2813, 7.2805, 7.2856, 7.2904, 7.2894, 7.2973, 7.2937, 7.2958, 7.2951, 7.2942, 7.2934, 7.2926, 7.2945, 7.2962, 7.2954, 7.2946, 7.2917, 7.2916, 7.2996, 7.2986, 7.2983, 7.2981, 7.2971, 7.2965, 7.2957, 7.2947, 7.2999, 7.2991, 7.2983, 7.2975, 7.2993, 7.3011, 7.3029, 7.3019, 7.3009, 7.3005, 7.2995, 7.2989, 7.3007, 7.2999, 7.2991, 7.2981, 7.2973, 7.2963, 7.296, 7.3021, 7.308, 7.307, 7.3098, 7.3115, 7.3132, 7.3149, 7.314, 7.313, 7.3148, 7.3165, 7.3157, 7.3147, 7.3137, 7.3155, 7.3147, 7.314, 7.3156, 7.3147, 7.314, 7.3161, 7.3151, 7.3146, 7.3136, 7.313, 7.3125, 7.3118, 7.3133, 7.3153, 7.3144, 7.3163, 7.3154, 7.3173, 7.3181, 7.3173, 7.319, 7.3186, 7.3178, 7.3172, 7.3163, 7.3154, 7.3144, 7.3134, 7.3125, 7.3115, 7.3115, 7.3106, 7.3097, 7.3116, 7.3133, 7.3125, 7.3115, 7.3116, 7.3108, 7.3101, 7.3117, 7.3107, 7.3097, 7.3113, 7.3105, 7.3095, 7.3087, 7.3077, 7.3095, 7.3142, 7.3132, 7.3099, 7.3095, 7.3088, 7.3078, 7.3098, 7.3088, 7.3078, 7.3068, 7.3085, 7.3075, 7.307, 7.3043, 7.3038, 7.3028, 7.3019, 7.3014, 7.3005, 7.3023, 7.3013, 7.3006, 7.2998, 7.2993, 7.2986, 7.296, 7.2952, 7.2952, 7.2942, 7.2932, 7.295, 7.2946, 7.2913, 7.2903, 7.2895, 7.2893, 7.2937, 7.293, 7.2921, 7.2911, 7.2903, 7.2894, 7.2888, 7.2879, 7.2896, 7.2912, 7.2903, 7.292, 7.2913, 7.2931, 7.2922, 7.2913, 7.2904, 7.2925, 7.2943, 7.2935, 7.2926, 7.2894, 7.2885, 7.2876, 7.2867, 7.2883, 7.2901, 7.2898, 7.2898, 7.2888, 7.2906, 7.2897, 7.2887, 7.2879, 7.2875, 7.2866, 7.2883, 7.2873, 7.2867, 7.2857, 7.2847, 7.2841, 7.2859, 7.2876, 7.2867, 7.286, 7.2878, 7.2868, 7.2865, 7.2873, 7.2864, 7.2856, 7.2873, 7.289, 7.288, 7.2871, 7.2862, 7.2855, 7.2846, 7.2836, 7.2827, 7.2819, 7.281, 7.2805, 7.2796, 7.2813, 7.2804, 7.2821, 7.2838, 7.2855, 7.2846, 7.2838, 7.2879, 7.287, 7.2934, 7.2925, 7.2967, 7.3008, 7.3, 7.3017, 7.3036, 7.3053, 7.3044, 7.3061, 7.3078, 7.307, 7.3088, 7.308, 7.3072, 7.3065, 7.3057, 7.3052, 7.3043, 7.3035, 7.3026, 7.3043, 7.3034, 7.3006, 7.3024, 7.3034, 7.3028, 7.3019, 7.3035, 7.3027, 7.3024, 7.3015, 7.3031, 7.3021, 7.3014, 7.303, 7.3043, 7.3011, 7.3002, 7.2993, 7.2984, 7.3, 7.2993, 7.2985, 7.2954, 7.2946, 7.294, 7.2931, 7.2947, 7.2939, 7.2933, 7.2948, 7.2938, 7.2934, 7.2951, 7.2971, 7.2963, 7.2962, 7.2954, 7.297, 7.2966, 7.2957, 7.2953, 7.2946, 7.2938, 7.2931, 7.2922, 7.2914, 7.2907, 7.29, 7.2891, 7.2883, 7.2874, 7.2866, 7.2862, 7.2854, 7.2845, 7.2838, 7.283, 7.2846, 7.2837, 7.2806, 7.2797, 7.2788, 7.2779, 7.2774, 7.2782, 7.2775, 7.2769, 7.2808, 7.28, 7.2816, 7.2807, 7.2777, 7.2771, 7.2763, 7.2755, 7.2746, 7.274, 7.2738, 7.2735, 7.2727, 7.2743, 7.2724, 7.2739, 7.2734, 7.2726, 7.2718, 7.271, 7.2703, 7.2694, 7.2685, 7.2678, 7.2672, 7.2688, 7.2681, 7.2696, 7.2709, 7.2724, 7.2716, 7.2686, 7.2678, 7.2672, 7.267, 7.2663, 7.2658, 7.2652, 7.2668, 7.2661, 7.2653, 7.2629, 7.2623, 7.2614, 7.261, 7.2601, 7.2598, 7.2596, 7.2591, 7.2607, 7.2602, 7.2596, 7.2592, 7.2608, 7.2601, 7.2593, 7.2587, 7.2584, 7.2576, 7.2571, 7.2566, 7.256, 7.2553, 7.2545, 7.2559, 7.2552, 7.2544, 7.2538, 7.2531, 7.2524, 7.2516, 7.2511, 7.2506, 7.25, 7.2515, 7.2509, 7.2501, 7.2494, 7.2489, 7.2506, 7.252, 7.2513, 7.2528, 7.2543, 7.2536, 7.2554, 7.2547, 7.2542, 7.2536, 7.2507, 7.2501, 7.2519, 7.2535, 7.2532, 7.2524, 7.2539, 7.2556, 7.2572, 7.2564, 7.2581, 7.2572, 7.2568, 7.256, 7.2552, 7.2546, 7.2545, 7.256, 7.2577, 7.2581, 7.2575, 7.2569, 7.2562, 7.2576, 7.2567, 7.2565, 7.2583, 7.2607, 7.2601, 7.2577, 7.257, 7.2586, 7.2604, 7.2618, 7.2636, 7.263, 7.2623, 7.264, 7.2632, 7.2652, 7.2645, 7.2661, 7.2657, 7.2649, 7.2644, 7.2637, 7.2633, 7.2626, 7.2619, 7.2651, 7.2666, 7.2658, 7.265, 7.2642, 7.2634, 7.2649, 7.2641, 7.2656, 7.2651, 7.2643, 7.2658, 7.265, 7.2666, 7.2658, 7.265, 7.2646, 7.2661, 7.2654, 7.2669, 7.2663, 7.2659, 7.2674, 7.2668, 7.2661, 7.2657, 7.2671, 7.2687, 7.2707, 7.2699, 7.2692, 7.2684, 7.2677, 7.2695, 7.2711, 7.2704, 7.2705, 7.2699, 7.2725, 7.2742, 7.2735, 7.2726, 7.272, 7.2712, 7.2706, 7.2722, 7.2716, 7.271, 7.2704, 7.2696, 7.269, 7.2704, 7.272, 7.2715, 7.2711, 7.2705, 7.2697, 7.2694, 7.2686, 7.2681, 7.2675, 7.2667, 7.267, 7.2662, 7.2654, 7.2668, 7.2662, 7.2638, 7.2635, 7.2628, 7.2643, 7.2658, 7.265, 7.2665, 7.266, 7.2675, 7.2669, 7.2661, 7.2654, 7.2648, 7.2642, 7.2636, 7.2666, 7.268, 7.2694, 7.2687, 7.2679, 7.2671, 7.2676, 7.2669, 7.2663, 7.2677, 7.267, 7.2684, 7.2676, 7.2669, 7.2661, 7.2656, 7.265, 7.2661, 7.2653, 7.2645, 7.2637, 7.2629, 7.2623, 7.2615, 7.263, 7.2644, 7.2639, 7.2655, 7.2648, 7.2733, 7.277, 7.2806, 7.2799, 7.2792, 7.2787, 7.2781, 7.2795, 7.2788, 7.2762, 7.2754, 7.2729, 7.2722, 7.2756, 7.2749, 7.2742, 7.2737, 7.2732, 7.2725, 7.2719, 7.2712, 7.2706, 7.27, 7.2736, 7.2729, 7.2748, 7.2742, 7.2735, 7.2729, 7.2791, 7.2783, 7.2797, 7.2818, 7.2813, 7.2834, 7.2829, 7.2826, 7.2842, 7.2835, 7.2827, 7.2841, 7.2836, 7.2855, 7.287, 7.2862, 7.2877, 7.2892, 7.2887, 7.288, 7.2874, 7.2868, 7.2861, 7.2876, 7.2871, 7.2886, 7.2882, 7.2874, 7.2866, 7.288, 7.2872, 7.2866, 7.2878, 7.289, 7.2884, 7.2886, 7.2879, 7.2896, 7.289, 7.2903, 7.2917, 7.2909, 7.2924, 7.2937, 7.2929, 7.2943, 7.2937, 7.293, 7.2923, 7.2937, 7.293, 7.2924, 7.2956, 7.2949, 7.2944, 7.2938, 7.2931, 7.2925, 7.2917, 7.2912, 7.2906, 7.2899, 7.2893, 7.2886, 7.2883, 7.2876, 7.2868, 7.2862, 7.2856, 7.2848, 7.2844, 7.2837, 7.2832, 7.2846, 7.284, 7.2855, 7.2868, 7.2863, 7.2856, 7.287, 7.2865, 7.2858, 7.2873, 7.2867, 7.286, 7.2861, 7.2857, 7.2869, 7.2883, 7.2896, 7.2889, 7.2884, 7.2981, 7.2975, 7.2969, 7.2985, 7.3039, 7.3053, 7.3066, 7.3078, 7.3091, 7.3101, 7.3115, 7.3129, 7.3124, 7.3159, 7.3152, 7.3144, 7.3178, 7.317, 7.3163, 7.3219, 7.3231, 7.3263, 7.3257, 7.3292, 7.3287, 7.3281, 7.3275, 7.3268, 7.326, 7.3252, 7.3265, 7.3259, 7.3256, 7.3268, 7.3281, 7.3273, 7.3268, 7.3291, 7.3286, 7.3279, 7.3257, 7.3252, 7.3266, 7.3263, 7.3256, 7.329, 7.3283, 7.3279, 7.3272, 7.3287, 7.3281, 7.3274, 7.3266, 7.326, 7.3255, 7.3268, 7.3262, 7.3256, 7.325, 7.3244, 7.3238, 7.3232, 7.3232, 7.3224, 7.3236, 7.325, 7.3244, 7.3241, 7.3234, 7.3239, 7.3253, 7.3246, 7.3238, 7.3231, 7.3226, 7.3239, 7.3233, 7.3248, 7.3242, 7.3236, 7.3249, 7.3242, 7.3236, 7.323, 7.3223, 7.3216, 7.3218, 7.3212, 7.3204, 7.3198, 7.3191, 7.3184, 7.3177, 7.3169, 7.3163, 7.3155, 7.3168, 7.3163, 7.3158, 7.3159, 7.3151, 7.3146, 7.314, 7.3115, 7.3132, 7.3125, 7.3118, 7.3115, 7.3112, 7.3104, 7.3097, 7.3095, 7.3111, 7.3103, 7.3096, 7.3109, 7.3103, 7.31, 7.3113, 7.3107, 7.3119, 7.3132, 7.3124, 7.3138, 7.3138, 7.315, 7.3162, 7.3155, 7.3147, 7.3154, 7.3147, 7.3139, 7.3133, 7.3148, 7.3161, 7.3154, 7.315, 7.3143, 7.3155, 7.3148, 7.3141, 7.3134, 7.3127, 7.312, 7.3119, 7.3112, 7.3202, 7.3196, 7.3189, 7.3202, 7.3195, 7.3188, 7.3181, 7.3271, 7.3284, 7.3283, 7.3278, 7.3271, 7.3264, 7.3258, 7.3251, 7.3247, 7.324, 7.3253, 7.3245, 7.324, 7.3235, 7.3246, 7.3239, 7.3232, 7.3232, 7.3248, 7.3242, 7.3236, 7.325, 7.3242, 7.3235, 7.3228, 7.3222, 7.3218, 7.3212, 7.3208, 7.3221, 7.3215, 7.3208, 7.3205, 7.3197, 7.319, 7.3183, 7.3176, 7.3169, 7.3162, 7.3157, 7.3152, 7.3164, 7.3176, 7.3187, 7.3183, 7.3176, 7.3171, 7.3164, 7.3164, 7.3176, 7.3172, 7.3204, 7.32, 7.3214, 7.3209, 7.3202, 7.3196, 7.319, 7.3186, 7.3179, 7.3176, 7.3175, 7.3169, 7.3162, 7.3156, 7.3149, 7.3146, 7.314, 7.3134, 7.311, 7.3106, 7.31, 7.3094, 7.3087, 7.3121, 7.3153, 7.3169, 7.3166, 7.316, 7.3155, 7.3148, 7.3141, 7.3134, 7.3131, 7.3125, 7.3122, 7.3115, 7.3109, 7.3102, 7.3095, 7.3095, 7.3089, 7.3102, 7.3095, 7.309, 7.3106, 7.3109, 7.3104, 7.3097, 7.3128, 7.3141, 7.3136, 7.3129, 7.3122, 7.3117, 7.3111, 7.3107, 7.3104, 7.3101, 7.3094, 7.3088, 7.3082, 7.3077, 7.3072, 7.3068, 7.3064, 7.3082, 7.3076, 7.309, 7.3103, 7.3096, 7.3089, 7.3083, 7.3077, 7.3108, 7.3121, 7.3114, 7.3108, 7.3105, 7.31, 7.3093, 7.3089, 7.3102, 7.3097, 7.3098, 7.3137, 7.3151, 7.3146, 7.3158, 7.3153, 7.315, 7.3167, 7.3159, 7.3152, 7.3145, 7.3156, 7.3151, 7.3144, 7.3138, 7.3149, 7.3142, 7.3157, 7.3153, 7.3164, 7.3158, 7.3169, 7.3183, 7.3176, 7.3175, 7.3189, 7.3183, 7.3179, 7.3176, 7.3171, 7.3166, 7.3159, 7.3152, 7.3145, 7.3156, 7.3149, 7.3144, 7.3144, 7.3137, 7.3148, 7.3143, 7.3159, 7.3172, 7.3165, 7.3158, 7.3158, 7.3151, 7.3145, 7.314, 7.3152, 7.3149, 7.3143, 7.3137, 7.3131, 7.3125, 7.3118, 7.313, 7.3124, 7.3117, 7.3112, 7.3108, 7.3101, 7.3095, 7.3108, 7.3117, 7.311, 7.3122, 7.3117, 7.3113, 7.3106, 7.3118, 7.3113, 7.3107, 7.3107, 7.31, 7.3094, 7.3087, 7.308, 7.3074, 7.3086, 7.3079, 7.3095, 7.3107, 7.3105, 7.3099, 7.3101, 7.3078, 7.3055, 7.3051, 7.3046, 7.3039, 7.305, 7.3045, 7.304, 7.3087, 7.3081, 7.3058, 7.3057, 7.305, 7.3046, 7.3059, 7.3054, 7.3048, 7.3044, 7.3037, 7.3032, 7.3026, 7.3076, 7.3081, 7.3079, 7.3073, 7.3068, 7.3062, 7.3057, 7.3052, 7.3047, 7.3059, 7.3071, 7.3067, 7.3074, 7.3086, 7.308, 7.3074, 7.3067, 7.3079, 7.3073, 7.3067, 7.308, 7.3074, 7.3067, 7.308, 7.3092, 7.3089, 7.3083, 7.3076, 7.307, 7.308, 7.3076, 7.3069, 7.3064, 7.3059, 7.3071, 7.3065, 7.3059, 7.3056, 7.3051, 7.3083, 7.3095, 7.3089, 7.3083, 7.3096, 7.3108, 7.3108, 7.3102, 7.308, 7.3074, 7.3068, 7.3062, 7.306, 7.3054, 7.3065, 7.3061, 7.3055, 7.3049, 7.3044, 7.3042, 7.3054, 7.3048, 7.3042, 7.3037, 7.3031, 7.3044, 7.3039, 7.3033, 7.3027, 7.3022, 7.3, 7.2994, 7.2989, 7.3002, 7.2996, 7.2991, 7.2986, 7.2999, 7.2993, 7.2989, 7.2987, 7.2981, 7.2975, 7.2954, 7.2948, 7.2943, 7.2938, 7.2933, 7.2928, 7.2944, 7.2956, 7.2953, 7.2965, 7.2962, 7.2957, 7.2955, 7.2949, 7.2963, 7.2958, 7.2957, 7.2954, 7.2949, 7.2944, 7.2938, 7.2934, 7.2929, 7.2939, 7.2935, 7.2929, 7.294, 7.2935, 7.2929, 7.2941, 7.2953, 7.2947, 7.2942, 7.2953, 7.2952, 7.293, 7.2941, 7.2953, 7.2932, 7.2926, 7.2921, 7.2934, 7.2928, 7.2939, 7.2933, 7.2927, 7.2921, 7.2915, 7.2909, 7.2921, 7.2932, 7.2926, 7.292, 7.293, 7.2924, 7.2919, 7.2915, 7.291, 7.2923, 7.2919, 7.2913, 7.2911, 7.2921, 7.2917, 7.2912, 7.2907, 7.2901, 7.2897, 7.2892, 7.2873, 7.2886, 7.2903, 7.2932, 7.2927, 7.2921, 7.2916, 7.2912, 7.2918, 7.2913, 7.2906, 7.29, 7.2911, 7.2921, 7.2916, 7.2927, 7.2924, 7.2936, 7.2948, 7.295, 7.2944, 7.2938, 7.3072, 7.3067, 7.3062, 7.3056, 7.3068, 7.3063, 7.3059, 7.3055, 7.3048, 7.3047, 7.3043, 7.3037, 7.3073, 7.3085, 7.308, 7.3074, 7.3069, 7.3065, 7.306, 7.3054, 7.3052, 7.3047, 7.3045, 7.3039, 7.3052, 7.3047, 7.3042, 7.3042, 7.3037, 7.3034, 7.3028, 7.3075, 7.3087, 7.3082, 7.3094, 7.3089, 7.3106, 7.3101, 7.3113, 7.3107, 7.3101, 7.3112, 7.3123, 7.3134, 7.3129, 7.3123, 7.3134, 7.3128, 7.3121, 7.3118, 7.3129, 7.3147, 7.3142, 7.3137, 7.3132, 7.316, 7.3139, 7.315, 7.3144, 7.314, 7.3135, 7.3158, 7.3152, 7.3147, 7.3157, 7.3167, 7.3164, 7.316, 7.3171, 7.3165, 7.3159, 7.3153, 7.3147, 7.3141, 7.3163, 7.3191, 7.3185, 7.318, 7.3191, 7.32, 7.3194, 7.3189, 7.3185, 7.318, 7.3174, 7.3153, 7.3147, 7.3142, 7.3154, 7.3152, 7.3165, 7.316, 7.3155, 7.3149, 7.316, 7.3154, 7.3149, 7.3159, 7.3157, 7.3185, 7.3185, 7.3179, 7.3246, 7.3272, 7.33, 7.3319, 7.3313, 7.3308, 7.3319, 7.3329, 7.3323, 7.3317, 7.3312, 7.3306, 7.3317, 7.3311, 7.3305, 7.3316, 7.3351, 7.3346, 7.3342, 7.3355, 7.3351, 7.3378, 7.3373, 7.3368, 7.3364, 7.3408, 7.3404, 7.3415, 7.3425, 7.3421, 7.342, 7.3416, 7.3412, 7.3407, 7.3402, 7.3415, 7.3428, 7.3442, 7.3436, 7.3432, 7.3426, 7.3407, 7.3417, 7.3429, 7.3425, 7.3437, 7.3432, 7.3427, 7.3438, 7.3433, 7.3428, 7.3422, 7.3416, 7.3427, 7.3437, 7.3432, 7.3426, 7.3406, 7.3419, 7.3414, 7.3408, 7.3404, 7.3398, 7.341, 7.3405, 7.3401, 7.3396, 7.3439, 7.3433, 7.3427, 7.3422, 7.3434, 7.3429, 7.3424, 7.3419, 7.3414, 7.3396, 7.3391, 7.3402, 7.3398, 7.3392, 7.3386, 7.338, 7.3376, 7.3374, 7.3369, 7.3363, 7.3358, 7.3354, 7.3348, 7.3359, 7.3355, 7.3349, 7.3329, 7.3324, 7.3318, 7.3312, 7.3308, 7.3319, 7.3313, 7.331, 7.3306, 7.3301, 7.3301, 7.3312, 7.331, 7.3305, 7.3301, 7.3295, 7.3289, 7.3286, 7.3283, 7.3294, 7.3289, 7.3286, 7.3283, 7.3278, 7.3289, 7.3284, 7.3279, 7.329, 7.3286, 7.3281, 7.3292, 7.3291, 7.3287, 7.3282, 7.3277, 7.3272, 7.3267, 7.3267, 7.3264, 7.326, 7.327, 7.3266, 7.3261, 7.3256, 7.3252, 7.3246, 7.3241, 7.3236, 7.323, 7.3224, 7.3234, 7.3217, 7.3212, 7.3206, 7.32, 7.3195, 7.3191, 7.3188, 7.3184, 7.318, 7.3205, 7.3231, 7.3226, 7.3249, 7.3249, 7.3292, 7.3288, 7.3282, 7.3278, 7.3272, 7.3267, 7.3262, 7.326, 7.3259, 7.3254, 7.3249, 7.3244, 7.3238, 7.3232, 7.3228, 7.3224, 7.3237, 7.3231, 7.3228, 7.3208, 7.3203, 7.3198, 7.3208, 7.3203, 7.3214, 7.3209, 7.3205, 7.32, 7.3211, 7.3206, 7.3215, 7.3225, 7.3221, 7.3232, 7.3242, 7.3236, 7.3246, 7.3227, 7.3207, 7.32, 7.3195, 7.3205, 7.3199, 7.3193, 7.3187, 7.3197, 7.3199, 7.3213, 7.321, 7.3191, 7.3171, 7.3184, 7.318, 7.3176, 7.3172, 7.3166, 7.316, 7.3155, 7.3158, 7.3153, 7.3163, 7.3161, 7.3156, 7.3151, 7.3197, 7.3192, 7.3189, 7.3203, 7.3197, 7.3192, 7.3186, 7.3181, 7.3191, 7.3187, 7.3182, 7.3176, 7.3171, 7.3166, 7.3161, 7.3157, 7.3153, 7.3149, 7.315, 7.3167, 7.3178, 7.3207, 7.3205, 7.32, 7.3194, 7.3204, 7.3199, 7.3194, 7.3188, 7.3171, 7.3183, 7.318, 7.3175, 7.3171, 7.3165, 7.3159, 7.3154, 7.315, 7.3144, 7.314, 7.315, 7.3146, 7.314, 7.3134, 7.3128, 7.3123, 7.3132, 7.3142, 7.3137, 7.3147, 7.3145, 7.3139, 7.3135, 7.3146, 7.3159, 7.3156, 7.3151, 7.3162, 7.3157, 7.3153, 7.3148, 7.3143, 7.3153, 7.3148, 7.3192, 7.3172, 7.3153, 7.3137, 7.3132, 7.3127, 7.3122, 7.3118, 7.3116, 7.3126, 7.3137, 7.3147, 7.313, 7.3127, 7.3122, 7.3133, 7.3131, 7.3127, 7.3138, 7.3133, 7.3143, 7.3141, 7.3136, 7.3145, 7.3155, 7.3153, 7.3157, 7.3152, 7.3147, 7.3129, 7.3124, 7.3123, 7.3107, 7.3101, 7.3097, 7.3092, 7.3086, 7.3083, 7.3109, 7.3105, 7.3145, 7.314, 7.315, 7.3148, 7.3142, 7.3155, 7.3151, 7.3148, 7.3144, 7.3139, 7.315, 7.3145, 7.314, 7.3135, 7.3146, 7.3142, 7.3137, 7.3132, 7.3127, 7.3122, 7.3117, 7.3113, 7.3108, 7.3105, 7.3116, 7.3111, 7.3106, 7.3117, 7.3112, 7.3107, 7.3089, 7.3084, 7.308, 7.3075, 7.307, 7.3067, 7.3078, 7.3074, 7.3068, 7.3063, 7.3073, 7.3069, 7.3065, 7.306, 7.307, 7.3065, 7.3069, 7.3064, 7.3059, 7.3054, 7.3049, 7.3045, 7.304, 7.3053, 7.3048, 7.3043, 7.304, 7.3038, 7.3033, 7.3043, 7.3038, 7.3033, 7.3028, 7.3022, 7.3003, 7.2985, 7.2979, 7.2989, 7.2999, 7.2994, 7.299, 7.2985, 7.2981, 7.2976, 7.2971, 7.2981, 7.2979, 7.2989, 7.2984, 7.2979, 7.2993, 7.2988, 7.2983, 7.2978, 7.2988, 7.2983, 7.2978, 7.2973, 7.2968, 7.2967, 7.2978, 7.2975, 7.3001, 7.2997, 7.3008, 7.3005, 7.3015, 7.301, 7.3007, 7.3002, 7.2984, 7.2979, 7.2991, 7.2985, 7.2979, 7.2974, 7.2998, 7.2997, 7.2993, 7.3018, 7.3028, 7.3038, 7.302, 7.3032, 7.3072, 7.3067, 7.3078, 7.3073, 7.3069, 7.3065, 7.306, 7.3055, 7.3065, 7.306, 7.3055, 7.3051, 7.3046, 7.3056, 7.3066, 7.3063, 7.3073, 7.3082, 7.3083, 7.3078, 7.3074, 7.3071, 7.3066, 7.3076, 7.3071, 7.3156, 7.3181, 7.3176, 7.3158, 7.3154, 7.3149, 7.3144, 7.3139, 7.3135, 7.3131, 7.3126, 7.3121, 7.3132, 7.3142, 7.314, 7.3136, 7.3145, 7.3141, 7.3136, 7.3133, 7.3116, 7.3111, 7.3106, 7.3101, 7.3096, 7.3107, 7.3103, 7.3112, 7.3107, 7.3103, 7.3098, 7.3093, 7.3088, 7.3097, 7.3107, 7.3116, 7.3111, 7.3121, 7.3116, 7.3125, 7.312, 7.3158, 7.3153, 7.3148, 7.313, 7.3112, 7.3121, 7.3118, 7.3114, 7.311, 7.3118, 7.3112, 7.312, 7.3118, 7.3114, 7.3123, 7.3118, 7.3113, 7.3108, 7.3103, 7.3085, 7.3094, 7.3089, 7.3084, 7.308, 7.3089, 7.3084, 7.3079, 7.3088, 7.3089, 7.3106, 7.3103, 7.31, 7.3095, 7.309, 7.3087, 7.3126, 7.3125, 7.3126, 7.3122, 7.3117, 7.3126, 7.3121, 7.3117, 7.3113, 7.3111, 7.3123, 7.3153, 7.3163, 7.3161, 7.3159, 7.3154, 7.315, 7.3148, 7.3145, 7.3142, 7.3152, 7.3148, 7.3157, 7.3168, 7.3164, 7.3159, 7.3155, 7.315, 7.3146, 7.3141, 7.3137, 7.3131, 7.3127, 7.3122, 7.3117, 7.3126, 7.3122, 7.3117, 7.3111, 7.3108, 7.3122, 7.3105, 7.31, 7.311, 7.3105, 7.31, 7.3096, 7.3091, 7.3086, 7.3081, 7.3089, 7.3084, 7.3094, 7.309, 7.3098, 7.3112, 7.312, 7.3115, 7.311, 7.3107, 7.3106, 7.3101, 7.311, 7.3106, 7.3118, 7.3113, 7.3125, 7.3121, 7.3119, 7.3129, 7.3124, 7.312, 7.3116, 7.3112, 7.3109, 7.3118, 7.3127, 7.3128, 7.3123, 7.3119, 7.3114, 7.3109, 7.3105, 7.3114, 7.3109, 7.3092, 7.3101, 7.3111, 7.3108, 7.3103, 7.31, 7.3096, 7.3091, 7.3086, 7.3069, 7.3065, 7.3074, 7.307, 7.3065, 7.306, 7.3099, 7.3094, 7.3098, 7.3107, 7.3102, 7.3097, 7.3092, 7.3087, 7.3082, 7.3077, 7.3073, 7.3068, 7.3065, 7.306, 7.3058, 7.3053, 7.3049, 7.3045, 7.3041, 7.3036, 7.3031, 7.3027, 7.3038, 7.3033, 7.3043, 7.3053, 7.3048, 7.3043, 7.3026, 7.3021, 7.3018, 7.3016, 7.3024, 7.3019, 7.3028, 7.3039, 7.3036, 7.3033, 7.3032, 7.303, 7.3026, 7.3022, 7.3017, 7.3013, 7.2997, 7.2992, 7.2987, 7.2974, 7.2987, 7.2983, 7.3004, 7.2999, 7.2994, 7.2989, 7.3019, 7.3029, 7.3024, 7.3019, 7.3029, 7.3024, 7.3033, 7.3029, 7.3038, 7.3033, 7.3028, 7.3037, 7.3032, 7.3028, 7.3011, 7.302, 7.3015, 7.301, 7.3009, 7.3005, 7.3001, 7.301, 7.3021, 7.3017, 7.3026, 7.3035, 7.3032, 7.303, 7.304, 7.3037, 7.3033, 7.3032, 7.3042, 7.3037, 7.306, 7.3055, 7.3052, 7.3035, 7.3031, 7.3026, 7.3021, 7.3005, 7.299, 7.2987, 7.2982, 7.2977, 7.2974, 7.2969, 7.2978, 7.2974, 7.2984, 7.298, 7.2976, 7.2959, 7.2968, 7.2964, 7.2974, 7.2969, 7.2978, 7.2973, 7.2968, 7.2964, 7.296, 7.2969, 7.2964, 7.296, 7.2972, 7.297, 7.2979, 7.2988, 7.2983, 7.2978, 7.2988, 7.2985, 7.298, 7.2975, 7.2971, 7.2968, 7.2965, 7.2961, 7.2958, 7.2958, 7.2968, 7.2978, 7.2986, 7.2995, 7.3005, 7.3001, 7.2997, 7.3006, 7.3003, 7.2999, 7.2994, 7.2989, 7.2987, 7.2982, 7.2979, 7.2988, 7.2984, 7.2993, 7.299, 7.2985, 7.2982, 7.2978, 7.2973, 7.2968, 7.2978, 7.2987, 7.2982, 7.2991, 7.2986, 7.2982, 7.2991, 7.2999, 7.2996, 7.2979, 7.2988, 7.2983, 7.2967, 7.2962, 7.2957, 7.2953, 7.2963, 7.2958, 7.2953, 7.2963, 7.296, 7.297, 7.2966, 7.2962, 7.2959, 7.297, 7.2967, 7.2964, 7.2972, 7.2967, 7.2962, 7.297, 7.2968, 7.2965, 7.2974, 7.297, 7.2966, 7.2962, 7.2971, 7.2967, 7.2975, 7.2971, 7.2979, 7.2977, 7.2972, 7.2967, 7.2975, 7.2984, 7.2981, 7.298, 7.2977, 7.2973, 7.2968, 7.2963, 7.2958, 7.2955, 7.2951, 7.2949, 7.2947, 7.2943, 7.2938, 7.2946, 7.2954, 7.2962, 7.2971, 7.2967, 7.2964, 7.2959, 7.2946, 7.2957, 7.2967, 7.2967, 7.2962, 7.2958, 7.2958, 7.2953, 7.295, 7.2946, 7.293, 7.2926, 7.2921, 7.2916, 7.2925, 7.2933, 7.2935, 7.2932, 7.2918, 7.2914, 7.2964, 7.2959, 7.2954, 7.295, 7.2946, 7.2954, 7.2965, 7.2949, 7.2957, 7.2952, 7.2947, 7.2955, 7.295, 7.2946, 7.2941, 7.2938, 7.2946, 7.2941, 7.2936, 7.2935, 7.2931, 7.2927, 7.2911, 7.2907, 7.2902, 7.29, 7.2895, 7.289, 7.2885, 7.2881, 7.2877, 7.2886, 7.2895, 7.2892, 7.2901, 7.2897, 7.2892, 7.2889, 7.2898, 7.2893, 7.289, 7.2887, 7.2882, 7.2877, 7.2886, 7.2883, 7.2893, 7.289, 7.2885, 7.2881, 7.2877, 7.2874, 7.287, 7.2867, 7.2865, 7.286, 7.2857, 7.2866, 7.2863, 7.2859, 7.2868, 7.2863, 7.2871, 7.2866, 7.2862, 7.2871, 7.288, 7.2889, 7.2884, 7.2881, 7.2878, 7.2874, 7.2869, 7.2865, 7.286, 7.2857, 7.2852, 7.2864, 7.2859, 7.2855, 7.2852, 7.2848, 7.2843, 7.2838, 7.2846, 7.2844, 7.2852, 7.2849, 7.2844, 7.284, 7.2848, 7.2845, 7.2853, 7.2863, 7.2847, 7.2843, 7.2838, 7.2834, 7.2819, 7.2803, 7.28, 7.2795, 7.2792, 7.2787, 7.2783, 7.2793, 7.2789, 7.2786, 7.2789, 7.2786, 7.2795, 7.2804, 7.2812, 7.282, 7.2815, 7.2811, 7.2809, 7.2804, 7.2816, 7.2813, 7.281, 7.2805, 7.2813, 7.281, 7.2805, 7.2801, 7.281, 7.2806, 7.2814, 7.281, 7.2806, 7.2802, 7.2787, 7.2783, 7.278, 7.2776, 7.2761, 7.2784, 7.278, 7.2776, 7.2772, 7.2805, 7.2801, 7.2785, 7.2781, 7.2788, 7.2796, 7.2793, 7.2826, 7.2821, 7.2817, 7.2814, 7.2799, 7.2807, 7.2816, 7.2813, 7.2809, 7.2818, 7.2804, 7.28, 7.2796, 7.282, 7.2818, 7.2827, 7.2837, 7.2845, 7.2853, 7.2849, 7.2844, 7.2841, 7.2837, 7.2833, 7.2829, 7.2825, 7.282, 7.2816, 7.2821, 7.283, 7.2826, 7.2824, 7.282, 7.2828, 7.2825, 7.2821, 7.2817, 7.2813, 7.2809, 7.2804, 7.2802, 7.2836, 7.2831, 7.2828, 7.2823, 7.282, 7.2828, 7.2813, 7.2812, 7.2808, 7.2806, 7.2819, 7.2816, 7.2812, 7.2824, 7.282, 7.282, 7.2816, 7.2812, 7.2807, 7.2803, 7.2802, 7.2786, 7.2811, 7.2798, 7.2794, 7.279, 7.2786, 7.2795, 7.2791, 7.2787, 7.2796, 7.2792, 7.2783, 7.2821, 7.2818, 7.2818, 7.2827, 7.2823, 7.2819, 7.2816, 7.2837, 7.2833, 7.283, 7.2868, 7.2877, 7.2874, 7.2882, 7.2879, 7.2875, 7.2871, 7.2867, 7.2864, 7.286, 7.2868, 7.2876, 7.2893, 7.289, 7.2889, 7.2884, 7.2879, 7.2875, 7.287, 7.2865, 7.2872, 7.2869, 7.2868, 7.2876, 7.2871, 7.2867, 7.2864, 7.286, 7.2855, 7.2852, 7.2847, 7.2842, 7.2839, 7.2835, 7.2842, 7.2838, 7.2835, 7.2833, 7.2829, 7.2825, 7.2822, 7.283, 7.2837, 7.2845, 7.2841, 7.2836, 7.2831, 7.2827, 7.2822, 7.2818, 7.2827, 7.2824, 7.2819, 7.2805, 7.28, 7.2797, 7.2792, 7.2789, 7.2786, 7.2783, 7.2791, 7.2787, 7.2783, 7.2792, 7.2789, 7.2784, 7.2769, 7.2778, 7.2774, 7.2783, 7.2792, 7.2789, 7.2786, 7.2783, 7.279, 7.2799, 7.2806, 7.2825, 7.2833, 7.283, 7.2827, 7.2824, 7.2821, 7.2816, 7.2812, 7.2819, 7.2826, 7.2822, 7.2818, 7.2825, 7.2832, 7.2829, 7.2824, 7.2832, 7.2827, 7.2822, 7.2819, 7.2827, 7.2834, 7.2829, 7.2826, 7.2833, 7.283, 7.2827, 7.2823, 7.2819, 7.2815, 7.2811, 7.281, 7.2806, 7.2803, 7.2801, 7.2798, 7.2807, 7.2792, 7.2789, 7.2798, 7.2794, 7.2791, 7.28, 7.2807, 7.2806, 7.2802, 7.2809, 7.2805, 7.2801, 7.2797, 7.2806, 7.2802, 7.2798, 7.2801, 7.2797, 7.2796, 7.2792, 7.2788, 7.2784, 7.278, 7.2778, 7.2775, 7.2771, 7.2768, 7.2766, 7.2762, 7.2769, 7.2777, 7.2775, 7.2782, 7.2778, 7.2799, 7.2798, 7.2805, 7.2798, 7.2807, 7.2803, 7.28, 7.2797, 7.2794, 7.279, 7.2786, 7.2793, 7.2801, 7.2798, 7.2794, 7.279, 7.2787, 7.2795, 7.2791, 7.2787, 7.2783, 7.2779, 7.2775, 7.2783, 7.278, 7.2777, 7.2774, 7.277, 7.2777, 7.2773, 7.2781, 7.2778, 7.2775, 7.276, 7.2757, 7.2753, 7.2749, 7.2745, 7.2741, 7.2738, 7.2734, 7.2733, 7.2718, 7.2704, 7.2713, 7.2709, 7.2717, 7.2713, 7.2709, 7.2705, 7.2702, 7.271, 7.2707, 7.2693, 7.269, 7.2706, 7.2702, 7.27, 7.2697, 7.2693, 7.2689, 7.2689, 7.2688, 7.2684, 7.268, 7.268, 7.2677, 7.2685, 7.2683, 7.268, 7.2687, 7.2684, 7.2698, 7.2685, 7.2693, 7.2704, 7.2701, 7.2687, 7.2696, 7.2706, 7.2714, 7.2712, 7.2709, 7.2706, 7.2702, 7.2699, 7.2707, 7.2715, 7.2711, 7.2708, 7.2704, 7.269, 7.2686, 7.2682, 7.269, 7.2687, 7.2683, 7.2691, 7.2688, 7.2696, 7.2703, 7.27, 7.2707, 7.2703, 7.27, 7.2712, 7.271, 7.2706, 7.2714, 7.271, 7.2708, 7.2716, 7.2713, 7.271, 7.2718, 7.2727, 7.2724, 7.2731, 7.2727, 7.2724, 7.272, 7.2717, 7.2715, 7.2711, 7.2714, 7.2721, 7.2726, 7.2722, 7.2719, 7.272, 7.2728, 7.2724, 7.272, 7.2727, 7.2723, 7.2719, 7.2715, 7.2701, 7.271, 7.2706, 7.2703, 7.2699, 7.2695, 7.2694, 7.2702, 7.2698, 7.2707, 7.2703, 7.271, 7.2706, 7.2706, 7.2705, 7.2702, 7.2699, 7.2695, 7.2692, 7.2701, 7.2697, 7.2695, 7.2708, 7.2704, 7.2701, 7.2708, 7.2704, 7.27, 7.27, 7.2696, 7.2704, 7.2701, 7.2709, 7.2706, 7.2704, 7.2701, 7.2697, 7.2705, 7.2702, 7.2698, 7.2697, 7.2693, 7.269, 7.2687, 7.2695, 7.2691, 7.2688, 7.2685, 7.2681, 7.2678, 7.2674, 7.267, 7.2666, 7.2663, 7.266, 7.2656, 7.2664, 7.2671, 7.2669, 7.2677, 7.2675, 7.2671, 7.2667, 7.2663, 7.2671, 7.2668, 7.2664, 7.266, 7.2657, 7.2653, 7.2649, 7.2645, 7.2641, 7.2637, 7.2637, 7.2623, 7.2619, 7.2639, 7.2648, 7.2656, 7.2668, 7.2665, 7.2673, 7.2669, 7.2665, 7.2663, 7.2661, 7.2668, 7.2665, 7.2661, 7.2668, 7.2675, 7.2671, 7.2672, 7.2669, 7.2665, 7.2661, 7.2657, 7.2664, 7.2661, 7.2647, 7.2654, 7.265, 7.2658, 7.2667, 7.2663, 7.2659, 7.2655, 7.2663, 7.2659, 7.2658, 7.2656, 7.2652, 7.2649, 7.2648, 7.266, 7.2658, 7.2666, 7.2662, 7.2659, 7.2667, 7.2663, 7.2659, 7.2667, 7.2663, 7.2659, 7.2656, 7.2653, 7.2649, 7.2646, 7.2642, 7.2639, 7.2647, 7.2655, 7.2651, 7.2658, 7.2655, 7.2652, 7.2648, 7.2656, 7.2663, 7.2659, 7.2655, 7.2652, 7.2648, 7.2645, 7.2664, 7.265, 7.2636, 7.2632, 7.2628, 7.2693, 7.2697, 7.2705, 7.2702, 7.2701, 7.2687, 7.2685, 7.2698, 7.2709, 7.2733, 7.2729, 7.2726, 7.2723, 7.2731, 7.2737, 7.2744, 7.273, 7.2739, 7.2746, 7.2743, 7.2739, 7.2769, 7.2776, 7.2783, 7.2781, 7.2779, 7.2765, 7.2752, 7.2754, 7.275, 7.2756, 7.2752, 7.2749, 7.2746, 7.2743, 7.274, 7.2737, 7.2734, 7.2731, 7.2728, 7.2725, 7.2721, 7.2717, 7.2724, 7.2732, 7.2729, 7.2726, 7.2734, 7.2742, 7.2739, 7.2759, 7.2756, 7.2764, 7.2762, 7.277, 7.277, 7.2767, 7.2763, 7.276, 7.2767, 7.2786, 7.2782, 7.2778, 7.2774, 7.277, 7.2777, 7.2773, 7.2769, 7.2765, 7.2761, 7.2758, 7.2754, 7.2752, 7.2749, 7.2746, 7.2742, 7.2738, 7.2745, 7.2741, 7.2737, 7.2733, 7.2741, 7.2749, 7.2745, 7.2743, 7.2741, 7.275, 7.2746, 7.2742, 7.2749, 7.2746, 7.2748, 7.2754, 7.275, 7.2746, 7.2743, 7.2739, 7.2746, 7.2742, 7.2749, 7.2745, 7.2742, 7.2738, 7.2736, 7.2734, 7.273, 7.2727, 7.2729, 7.2727, 7.2725, 7.2723, 7.2719, 7.2717, 7.2704, 7.2704, 7.2711, 7.2709, 7.2705, 7.2701, 7.2698, 7.2705, 7.2701, 7.2709, 7.2706, 7.2702, 7.2698, 7.2706, 7.2703, 7.271, 7.2706, 7.2702, 7.2709, 7.2705, 7.2702, 7.2709, 7.2705, 7.2702, 7.2698, 7.2694, 7.2691, 7.2688, 7.2697, 7.2705, 7.2701, 7.2697, 7.2694, 7.2702, 7.271, 7.2706, 7.2703, 7.271, 7.2717, 7.2714, 7.2723, 7.272, 7.2717, 7.2714, 7.27, 7.2697, 7.2693, 7.269, 7.2687, 7.2694, 7.2701, 7.2688, 7.2685, 7.2682, 7.2689, 7.2695, 7.2703, 7.2699, 7.2696, 7.2694, 7.2683, 7.269, 7.2686, 7.2682, 7.2678, 7.2675, 7.2716, 7.2712, 7.2729, 7.2725, 7.2732, 7.2729, 7.2737, 7.2744, 7.274, 7.2736, 7.2732, 7.2739, 7.2736, 7.2746, 7.2742, 7.274, 7.2737, 7.2733, 7.2729, 7.2727, 7.2723, 7.2743, 7.274, 7.2737, 7.2733, 7.2729, 7.2736, 7.2732, 7.2729, 7.2726, 7.2733, 7.2741, 7.2748, 7.2746, 7.2753, 7.2751, 7.2748, 7.2755, 7.2751, 7.2767, 7.2765, 7.2762, 7.2758, 7.2763, 7.275, 7.2747, 7.2747, 7.2736, 7.2733, 7.2734, 7.2756, 7.2757, 7.2754, 7.2744, 7.2741, 7.2768, 7.2775, 7.2771, 7.2769, 7.2767, 7.2763, 7.275, 7.2747, 7.2744, 7.2741, 7.2748, 7.2745, 7.2742, 7.274, 7.2737, 7.2748, 7.2735, 7.2731, 7.2728, 7.2725, 7.2721, 7.2718, 7.2714, 7.2711, 7.2707, 7.2703, 7.2718, 7.2716, 7.2713, 7.2709, 7.2705, 7.2701, 7.2699, 7.2696, 7.2692, 7.2699, 7.2695, 7.2692, 7.2689, 7.2685, 7.2684, 7.2681, 7.2678, 7.2675, 7.2671, 7.2669, 7.2666, 7.2664, 7.2663, 7.2659, 7.2655, 7.2651, 7.2648, 7.2665, 7.2662, 7.2658, 7.2654, 7.2682, 7.2689, 7.2685, 7.2681, 7.2678, 7.2674, 7.2681, 7.2678, 7.2675, 7.2671, 7.2679, 7.2686, 7.2693, 7.2689, 7.2687, 7.2684, 7.2681, 7.2678, 7.2675, 7.2671, 7.2669, 7.2675, 7.2687, 7.2684, 7.2681, 7.2678, 7.2676, 7.2673, 7.2669, 7.2656, 7.2664, 7.2662, 7.2649, 7.2645, 7.2642, 7.2629, 7.2625, 7.2623, 7.262, 7.2616, 7.2613, 7.26, 7.2598, 7.2595, 7.2593, 7.2589, 7.2587, 7.2585, 7.2582, 7.2579, 7.2566, 7.2553, 7.255, 7.2548, 7.2545, 7.2554, 7.2551, 7.2558, 7.2566, 7.2564, 7.2561, 7.2558, 7.2554, 7.255, 7.2548, 7.2545, 7.2541, 7.2537, 7.2533, 7.254, 7.2536, 7.2532, 7.2529, 7.2527, 7.2523, 7.252, 7.2522, 7.252, 7.2517, 7.2515, 7.2512, 7.2515, 7.2512, 7.2509, 7.2515, 7.2511, 7.2507, 7.2506, 7.2503, 7.249, 7.2488, 7.2484, 7.2481, 7.2477, 7.2475, 7.2482, 7.2488, 7.2487, 7.2483, 7.2479, 7.2475, 7.2472, 7.2459, 7.2446, 7.2442, 7.2438, 7.2434, 7.243, 7.2428, 7.2427, 7.2424, 7.2421, 7.2417, 7.2413, 7.2411, 7.241, 7.2416, 7.2412, 7.2408, 7.2405, 7.2401, 7.2398, 7.2405, 7.2402, 7.2399, 7.2396, 7.2402, 7.2399, 7.2405, 7.2401, 7.2397, 7.2394, 7.2391, 7.2388, 7.2384, 7.2382, 7.2381, 7.2378, 7.2384, 7.239, 7.2388, 7.2386, 7.2382, 7.2389, 7.2385, 7.2382, 7.2369, 7.2365, 7.2361, 7.2358, 7.2365, 7.2363, 7.2361, 7.2392, 7.239, 7.2388, 7.2385, 7.2374, 7.2371, 7.2368, 7.2364, 7.2361, 7.2357, 7.2365, 7.2362, 7.2359, 7.2356, 7.2353, 7.234, 7.2337, 7.2344, 7.2351, 7.2348, 7.2345, 7.2352, 7.2348, 7.2345, 7.2342, 7.2339, 7.2336, 7.2333, 7.2329, 7.2325, 7.2332, 7.2328, 7.2325, 7.2378, 7.2375, 7.2373, 7.2381, 7.237, 7.2368, 7.2365, 7.2363, 7.2361, 7.2358, 7.2355, 7.2353, 7.2352, 7.236, 7.2357, 7.2389, 7.2385, 7.2382, 7.2433, 7.2429, 7.2427, 7.2426, 7.2423, 7.241, 7.2407, 7.2403, 7.2399, 7.2396, 7.2402, 7.2398, 7.2406, 7.2403, 7.2399, 7.2396, 7.2393, 7.24, 7.2417, 7.2414, 7.241, 7.2417, 7.2415, 7.2413, 7.241, 7.2408, 7.2405, 7.2402, 7.24, 7.2397, 7.2394, 7.2391, 7.2388, 7.2385, 7.2392, 7.2399, 7.2405, 7.2412, 7.2409, 7.2406, 7.2402, 7.2399, 7.2398, 7.2394, 7.2391, 7.2388, 7.2385, 7.2381, 7.2378, 7.2374, 7.237, 7.2378, 7.2376, 7.2373, 7.2391, 7.2399, 7.2396, 7.2393, 7.239, 7.2388, 7.2385, 7.2382, 7.2379, 7.2376, 7.2373, 7.2361, 7.235, 7.2347, 7.2355, 7.2352, 7.2348, 7.2346, 7.2345, 7.2343, 7.234, 7.2339, 7.2346, 7.2343, 7.2332, 7.233, 7.2337, 7.2334, 7.2331, 7.2328, 7.2335, 7.2332, 7.2329, 7.2326, 7.2323, 7.2324, 7.2321, 7.2318, 7.2315, 7.2311, 7.2307, 7.2304, 7.2301, 7.2307, 7.2314, 7.232, 7.2317, 7.2334, 7.2349, 7.2345, 7.2342, 7.234, 7.2336, 7.2343, 7.2341, 7.2338, 7.2337, 7.2343, 7.2341, 7.2341, 7.2348, 7.2345, 7.2333, 7.233, 7.2337, 7.2334, 7.2331, 7.2329, 7.2326, 7.2323, 7.2329, 7.2335, 7.2353, 7.236, 7.2368, 7.2365, 7.2363, 7.2361, 7.2358, 7.2355, 7.2355, 7.2352, 7.235, 7.2348, 7.2354, 7.2352, 7.235, 7.2349, 7.2357, 7.2354, 7.235, 7.2346, 7.2344, 7.2351, 7.2347, 7.2354, 7.2352, 7.2368, 7.2364, 7.2365, 7.2355, 7.2352, 7.2348, 7.2345, 7.2341, 7.2337, 7.2334, 7.2331, 7.2328, 7.2325, 7.2331, 7.2328, 7.2335, 7.2333, 7.233, 7.2326, 7.2361, 7.2358, 7.2355, 7.2343, 7.2331, 7.2328, 7.2325, 7.2322, 7.2319, 7.2325, 7.2321, 7.232, 7.2326, 7.2324, 7.2321, 7.2317, 7.2314, 7.2311, 7.2309, 7.2315, 7.2314, 7.2313, 7.2311, 7.2308, 7.2305, 7.2303, 7.23, 7.2307, 7.2304, 7.2301, 7.2298, 7.2295, 7.2292, 7.2289, 7.2287, 7.2284, 7.2281, 7.2278, 7.2276, 7.2273, 7.2272, 7.2279, 7.2276, 7.2283, 7.229, 7.2287, 7.2285, 7.2292, 7.229, 7.2288, 7.2285, 7.2292, 7.2288, 7.2294, 7.2292, 7.229, 7.2286, 7.2283, 7.229, 7.2297, 7.2294, 7.2294, 7.2292, 7.2309, 7.2316, 7.2317, 7.2314, 7.2311, 7.2308, 7.2305, 7.2302, 7.2308, 7.2306, 7.2313, 7.231, 7.2308, 7.2298, 7.2298, 7.2295, 7.2292, 7.2294, 7.2291, 7.2288, 7.2285, 7.2283, 7.2281, 7.2277, 7.2274, 7.228, 7.2276, 7.2273, 7.228, 7.2277, 7.2274, 7.2271, 7.2268, 7.2266, 7.2262, 7.226, 7.2257, 7.2255, 7.2261, 7.2268, 7.2265, 7.2264, 7.2261, 7.2278, 7.2275, 7.2272, 7.2269, 7.2266, 7.2263, 7.226, 7.2258, 7.2255, 7.2252, 7.2251, 7.2248, 7.2245, 7.2242, 7.224, 7.2237, 7.2243, 7.224, 7.2247, 7.2246, 7.2243, 7.2243, 7.224, 7.2237, 7.2243, 7.224, 7.2246, 7.2253, 7.225, 7.2257, 7.2254, 7.2262, 7.2269, 7.2267, 7.2264, 7.2261, 7.2258, 7.2255, 7.2262, 7.2259, 7.2256, 7.2253, 7.2251, 7.2248, 7.2254, 7.2251, 7.2248, 7.2245, 7.2242, 7.2241, 7.2259, 7.2256, 7.2254, 7.2251, 7.225, 7.2249, 7.2246, 7.2244, 7.2241, 7.2238, 7.2235, 7.2232, 7.2239, 7.2236, 7.2243, 7.2263, 7.226, 7.2256, 7.2252, 7.2259, 7.2265, 7.2272, 7.2272, 7.2261, 7.2258, 7.2264, 7.2261, 7.2258, 7.2255, 7.2261, 7.2259, 7.2265, 7.2262, 7.226, 7.2297, 7.2305, 7.2302, 7.2299, 7.2297, 7.2294, 7.2294, 7.2292, 7.2292, 7.2289, 7.2295, 7.2292, 7.2289, 7.2286, 7.2283, 7.2291, 7.2289, 7.2295, 7.2294, 7.2291, 7.2288, 7.2285, 7.2282, 7.2279, 7.23, 7.2297, 7.2294, 7.2291, 7.228, 7.2286, 7.2283, 7.2289, 7.2305, 7.2311, 7.2319, 7.2317, 7.2314, 7.232, 7.2308, 7.2315, 7.2318, 7.2317, 7.2314, 7.2312, 7.231, 7.2306, 7.2303, 7.2308, 7.2306, 7.2313, 7.231, 7.2308, 7.2305, 7.2303, 7.2291, 7.2288, 7.2294, 7.2291, 7.2297, 7.2294, 7.2301, 7.2299, 7.2297, 7.2293, 7.23, 7.2297, 7.2303, 7.23, 7.2296, 7.2293, 7.229, 7.2288, 7.2285, 7.2282, 7.2281, 7.2278, 7.2287, 7.2295, 7.2305, 7.2302, 7.2299, 7.2305, 7.2311, 7.2318, 7.2315, 7.2312, 7.2309, 7.2307, 7.2308, 7.2306, 7.2303, 7.2301, 7.2298, 7.2296, 7.2294, 7.2291, 7.2279, 7.2276, 7.2283, 7.229, 7.2324, 7.2322, 7.232, 7.2318, 7.2317, 7.2327, 7.2323, 7.232, 7.2316, 7.2305, 7.2302, 7.2299, 7.2296, 7.2294, 7.2292, 7.2289, 7.2286, 7.2292, 7.229, 7.2288, 7.2338, 7.2335, 7.2333, 7.2331, 7.2328, 7.2325, 7.2322, 7.2319, 7.2325, 7.2322, 7.2319, 7.2317, 7.2314, 7.2321, 7.2318, 7.2315, 7.2312, 7.2309, 7.2307, 7.2304, 7.2311, 7.2308, 7.2305, 7.2312, 7.231, 7.2308, 7.2305, 7.2312, 7.231, 7.2308, 7.2309, 7.2307, 7.2315, 7.2312, 7.2313, 7.2312, 7.2318, 7.2315, 7.2312, 7.2309, 7.2306, 7.2303, 7.2301, 7.2298, 7.2297, 7.2294, 7.2292, 7.2282, 7.229, 7.2287, 7.2285, 7.2282, 7.228, 7.2277, 7.2274, 7.2271, 7.2259, 7.2256, 7.2253, 7.2259, 7.2265, 7.2271, 7.2268, 7.2275, 7.2272, 7.227, 7.2276, 7.2273, 7.227, 7.2276, 7.2273, 7.227, 7.2267, 7.2273, 7.2271, 7.2269, 7.2267, 7.2264, 7.2261, 7.2267, 7.2264, 7.2261, 7.2258, 7.2265, 7.2273, 7.2271, 7.2277, 7.2274, 7.2281, 7.2278, 7.2275, 7.2272, 7.227, 7.2259, 7.2256, 7.2254, 7.226, 7.2257, 7.2254, 7.2252, 7.2249, 7.2247, 7.2244, 7.2242, 7.2239, 7.2245, 7.2242, 7.2248, 7.2246, 7.2243, 7.224, 7.2237, 7.2243, 7.2241, 7.224, 7.2237, 7.2236, 7.2242, 7.224, 7.2237, 7.2234, 7.2231, 7.2228, 7.2234, 7.2231, 7.2229, 7.2226, 7.2224, 7.2221, 7.222, 7.2218, 7.2215, 7.2213, 7.222, 7.2218, 7.2215, 7.2221, 7.2218, 7.2215, 7.2212, 7.222, 7.2234, 7.2231, 7.2237, 7.2235, 7.2233, 7.223, 7.2237, 7.2231, 7.2228, 7.2225, 7.2238, 7.2241, 7.2239, 7.2236, 7.2244, 7.2251, 7.2242, 7.2239, 7.2255, 7.2252, 7.2249, 7.2255, 7.2252, 7.2257, 7.2254, 7.226, 7.2257, 7.2254, 7.2252, 7.225, 7.2256, 7.2254, 7.2251, 7.2248, 7.2245, 7.2242, 7.2242, 7.2249, 7.2255, 7.2246, 7.2243, 7.2241, 7.2248, 7.2246, 7.2245, 7.2243, 7.2241, 7.2248, 7.2246, 7.2245, 7.2245, 7.2243, 7.224, 7.2238, 7.2279, 7.2277, 7.2274, 7.2274, 7.228, 7.2278, 7.2276, 7.2274, 7.2271, 7.2268, 7.2265, 7.2263, 7.226, 7.2276, 7.2274, 7.2272, 7.2269, 7.2267, 7.2265, 7.2265, 7.2271, 7.2268, 7.2266, 7.2263, 7.2262, 7.2268, 7.2266, 7.2272, 7.2278, 7.2284, 7.2281, 7.227, 7.2267, 7.2264, 7.227, 7.2276, 7.2273, 7.228, 7.2286, 7.2284, 7.2281, 7.2287, 7.2285, 7.2291, 7.2288, 7.2285, 7.2292, 7.2289, 7.2288, 7.2285, 7.2283, 7.2281, 7.228, 7.2277, 7.2283, 7.2281, 7.2287, 7.2293, 7.2291, 7.2297, 7.2303, 7.23, 7.2298, 7.2287, 7.2302, 7.2311, 7.2302, 7.2309, 7.2306, 7.2312, 7.231, 7.2299, 7.2305, 7.2302, 7.23, 7.2306, 7.2311, 7.2308, 7.2313, 7.231, 7.2309, 7.2315, 7.2321, 7.2318, 7.2316, 7.2322, 7.2328, 7.2325, 7.233, 7.2336, 7.2341, 7.2338, 7.2335, 7.2352, 7.2349, 7.2346, 7.2343, 7.2351, 7.234, 7.2346, 7.2345, 7.2351, 7.2348, 7.2338, 7.2357, 7.2364, 7.2362, 7.2369, 7.2358, 7.2356, 7.2354, 7.236, 7.2357, 7.2355, 7.2352, 7.2349, 7.2346, 7.2335, 7.2334, 7.2331, 7.232, 7.232, 7.2309, 7.2306, 7.2311, 7.2308, 7.2302, 7.2299, 7.2297, 7.2303, 7.2311, 7.2316, 7.2322, 7.2321, 7.2318, 7.2315, 7.2322, 7.2321, 7.232, 7.2317, 7.2326, 7.2332, 7.233, 7.2328, 7.2326, 7.2323, 7.2321, 7.2318, 7.2307, 7.2305, 7.2302, 7.23, 7.2297, 7.2294, 7.2291, 7.2297, 7.2286, 7.2283, 7.2283, 7.2272, 7.227, 7.2281, 7.2278, 7.2275, 7.2274, 7.2274, 7.2271, 7.2268, 7.2266, 7.2264, 7.2268, 7.2265, 7.2262, 7.2259, 7.2256, 7.2253, 7.225, 7.2247, 7.2244, 7.2242, 7.2239, 7.2245, 7.2242, 7.2239, 7.2245, 7.2234, 7.2239, 7.2245, 7.2251, 7.2256, 7.225, 7.2248, 7.2245, 7.2242, 7.2241, 7.2238, 7.2244, 7.2251, 7.2248, 7.2248, 7.2247, 7.2253, 7.225, 7.2258, 7.2255, 7.2261, 7.2252, 7.2242, 7.2232, 7.2238, 7.2235, 7.2233, 7.223, 7.2221, 7.2219, 7.2223, 7.222, 7.2217, 7.2246, 7.2252, 7.2257, 7.2255, 7.2261, 7.226, 7.2265, 7.2271, 7.2269, 7.2275, 7.2272, 7.2282, 7.228, 7.2277, 7.2274, 7.2274, 7.2272, 7.2278, 7.2284, 7.2282, 7.2279, 7.2276, 7.2275, 7.2274, 7.2266, 7.2264, 7.227, 7.2276, 7.2273, 7.2279, 7.2287, 7.2293, 7.229, 7.2304, 7.231, 7.2345, 7.2343, 7.2341, 7.2338, 7.2336, 7.2334, 7.2332, 7.2332, 7.2329, 7.2326, 7.2323, 7.2321, 7.2327, 7.2325, 7.2314, 7.2305, 7.2303, 7.2293, 7.2291, 7.2288, 7.2285, 7.2282, 7.2279, 7.228, 7.2278, 7.2277, 7.2294, 7.2291, 7.2288, 7.2294, 7.2291, 7.2289, 7.2289, 7.2278, 7.2284, 7.2282, 7.2279, 7.2285, 7.2282, 7.228, 7.2288, 7.2285, 7.2282, 7.2279, 7.2302, 7.2308, 7.2315, 7.232, 7.2317, 7.2314, 7.2311, 7.2318, 7.2315, 7.2312, 7.2318, 7.2324, 7.2321, 7.2337, 7.2342, 7.2339, 7.2337, 7.2334, 7.2343, 7.2358, 7.2373, 7.2382, 7.238, 7.2387, 7.2389, 7.2387, 7.2378, 7.2375, 7.2366, 7.2371, 7.2368, 7.2382, 7.2379, 7.2377, 7.2383, 7.2388, 7.2386, 7.2409, 7.2407, 7.2416, 7.2422, 7.2419, 7.2416, 7.2422, 7.2419, 7.2425, 7.2422, 7.2419, 7.2416, 7.2413, 7.241, 7.2416, 7.2413, 7.241, 7.2407, 7.2405, 7.2395, 7.2393, 7.2399, 7.2388, 7.2386, 7.2396, 7.2394, 7.2408, 7.2405, 7.2403, 7.2409, 7.2415, 7.2412, 7.241, 7.2416, 7.2414, 7.2411, 7.2409, 7.2406, 7.2404, 7.2402, 7.2407, 7.2404, 7.2401, 7.2407, 7.2413, 7.241, 7.2408, 7.2431, 7.2428, 7.2434, 7.2431, 7.2429, 7.2426, 7.2416, 7.2413, 7.241, 7.2417, 7.2415, 7.2412, 7.2402, 7.2416, 7.2455, 7.2453, 7.245, 7.2456, 7.2454, 7.2451, 7.2448, 7.2446, 7.2444, 7.2448, 7.244, 7.2446, 7.246, 7.2474, 7.2471, 7.2487, 7.2484, 7.2489, 7.2496, 7.2501, 7.2498, 7.2495, 7.2493, 7.249, 7.2487, 7.2485, 7.2492, 7.2492, 7.249, 7.2488, 7.2485, 7.2482, 7.2479, 7.2476, 7.2473, 7.2478, 7.2475, 7.2472, 7.2478, 7.2483, 7.248, 7.2477, 7.2478, 7.2484, 7.2481, 7.2479, 7.2493, 7.2499, 7.2505, 7.2511, 7.2502, 7.25, 7.2498, 7.2488, 7.2485, 7.2475, 7.2473, 7.2479, 7.2484, 7.2489, 7.2495, 7.25, 7.2497, 7.2494, 7.2508, 7.2506, 7.2505, 7.2524, 7.2521, 7.2518, 7.2516, 7.253, 7.2519, 7.2525, 7.2526, 7.2523, 7.252, 7.2518, 7.2541, 7.2539, 7.2536, 7.2533, 7.253, 7.2527, 7.2535, 7.2532, 7.2522, 7.2528, 7.2534, 7.2532, 7.2522, 7.2519, 7.2524, 7.2521, 7.2536, 7.2533, 7.2531, 7.2529, 7.2554, 7.2559, 7.2556, 7.2563, 7.256, 7.257, 7.2571, 7.2577, 7.2574, 7.2571, 7.2577, 7.2574, 7.258, 7.2585, 7.259, 7.2595, 7.26, 7.2597, 7.2602, 7.2608, 7.2614, 7.2612, 7.261, 7.2608, 7.2614, 7.2612, 7.2618, 7.264, 7.2638, 7.2644, 7.2642, 7.2648, 7.2646, 7.2643, 7.2641, 7.2638, 7.2635, 7.2633, 7.263, 7.2627, 7.2624, 7.2621, 7.2619, 7.2617, 7.2615, 7.2624, 7.2621, 7.2619, 7.2617, 7.2614, 7.2612, 7.2609, 7.2606, 7.2603, 7.26, 7.2597, 7.2603, 7.2609, 7.2606, 7.2612, 7.2609, 7.2615, 7.2613, 7.261, 7.2616, 7.2614, 7.2613, 7.2611, 7.2616, 7.2614, 7.262, 7.2634, 7.2631, 7.263, 7.2627, 7.2632, 7.2638, 7.2636, 7.2634, 7.2632, 7.2637, 7.2627, 7.2624, 7.2621, 7.2637, 7.2643, 7.2665, 7.267, 7.2672, 7.267, 7.2675, 7.269, 7.2693, 7.269, 7.2688, 7.2685, 7.2683, 7.268, 7.2679, 7.2685, 7.2683, 7.2681, 7.2678, 7.2692, 7.2689, 7.2694, 7.2699, 7.2696, 7.2705, 7.2705, 7.2703, 7.2704, 7.2701, 7.2698, 7.2696, 7.2699, 7.2697, 7.2702, 7.2699, 7.2696, 7.2702, 7.2699, 7.2712, 7.271, 7.2708, 7.271, 7.2708, 7.2706, 7.2696, 7.2694, 7.2693, 7.2691, 7.269, 7.269, 7.2687, 7.2692, 7.2697, 7.2694, 7.2691, 7.2696, 7.2701, 7.2698, 7.2703, 7.27, 7.2697, 7.2702, 7.27, 7.2697, 7.2702, 7.2708, 7.2713, 7.2719, 7.2716, 7.2722, 7.2719, 7.2716, 7.2721, 7.2727, 7.2733, 7.2738, 7.2735, 7.2741, 7.2738, 7.2736, 7.2749, 7.2754, 7.2752, 7.275, 7.2747, 7.2748, 7.2748, 7.2747, 7.2753, 7.2751, 7.2748, 7.2745, 7.2742, 7.274, 7.273, 7.2727, 7.2727, 7.273, 7.276, 7.2771, 7.2768, 7.2773, 7.2771, 7.2777, 7.2774, 7.2771, 7.277, 7.2768, 7.2766, 7.2763, 7.2762, 7.2768, 7.2766, 7.2772, 7.2771, 7.2776, 7.2779, 7.2782, 7.2779, 7.2777, 7.2775, 7.2788, 7.2785, 7.2791, 7.2792, 7.279, 7.2787, 7.2784, 7.2781, 7.2771, 7.2777, 7.2783, 7.2781, 7.2786, 7.2784, 7.2798, 7.279, 7.2787, 7.2785, 7.2783, 7.2786, 7.2785, 7.2783, 7.2781, 7.2786, 7.2776, 7.2773, 7.277, 7.2775, 7.2772, 7.2769, 7.2767, 7.2772, 7.2775, 7.2772, 7.277, 7.277, 7.2767, 7.2764, 7.2761, 7.2761, 7.2815, 7.2813, 7.281, 7.2807, 7.2804, 7.2801, 7.2798, 7.2796, 7.2793, 7.2799, 7.2797, 7.2795, 7.2793, 7.2792, 7.279, 7.2787, 7.2785, 7.2783, 7.2789, 7.2794, 7.2793, 7.2791, 7.2796, 7.2802, 7.2799, 7.2797, 7.2798, 7.2796, 7.2801, 7.2798, 7.2795, 7.2801, 7.2798, 7.2803, 7.28, 7.2798, 7.2796, 7.2795, 7.2793, 7.2791, 7.2788, 7.278, 7.2779, 7.2779, 7.2777, 7.2775, 7.2773, 7.2804, 7.2802, 7.2799, 7.2798, 7.2795, 7.2793, 7.2831, 7.2828, 7.2833, 7.2831, 7.2837, 7.2835, 7.2841, 7.2842, 7.284, 7.2856, 7.2855, 7.2854, 7.2852]}
rtt9_2_10 = {'192.168.122.118': [5.6372, 5.8014, 12.1615, 12.8789, 5.78, 10.8988, 10.7007, 6.4399, 26.7017, 5.2509, 11.322, 11.8017, 10.7222, 5.487, 1.06, 7.3147, 22.8429, 5.4646, 5.6717, 6.2959, 5.6365, 6.1867, 5.626, 6.5484, 5.2974, 5.6798, 6.2745, 5.5165, 5.3756, 9.6674, 5.3608, 5.7142, 11.3716, 10.9122, 5.7235, 5.4834, 5.9304, 14.2114, 14.8087, 5.46, 6.2666, 5.4436, 6.3202, 17.123, 5.482, 5.2667, 10.8037, 5.5232, 5.3253, 6.8021, 5.888, 5.3985, 10.8349, 0.5996, 5.6479, 5.4958, 5.4526, 6.1822, 11.4498, 5.3921, 5.8386, 5.9288, 5.4233, 5.2552, 5.4364, 10.9029, 5.3804, 10.7567, 5.7945, 5.4274, 5.3527, 5.476, 0.8903, 5.3046, 5.5244, 11.3842, 5.5518, 10.9906, 5.3134, 6.5522, 6.1955, 5.4603, 5.3031, 5.2998, 10.9246, 5.5733, 5.6314, 5.6024, 6.2745, 0.695, 1.1871, 12.0847, 11.5054, 5.2667, 11.282, 6.8135, 6.4132, 10.6924, 5.6906, 5.5351, 1.1613, 5.2288, 5.4507, 5.4057, 5.3358, 10.7126, 10.6947, 5.5282, 11.503, 10.4544, 15.8994, 5.2848, 5.4049, 5.4114, 5.6372, 0.8566, 5.5997, 5.815, 1.3599, 5.7364, 5.9006, 5.6574, 5.7178, 5.2743, 5.4636, 5.2574, 6.2926, 5.9888, 5.7428, 5.549, 5.2381, 5.4216, 5.4026, 21.4818, 11.1115, 5.4827, 5.6837, 5.4154, 5.5637, 5.636, 6.1095, 5.4355, 17.823, 11.147, 5.3334, 6.7599, 5.4717, 6.1123, 5.4901, 10.9613, 10.8664, 10.9177, 5.5776, 10.9241, 5.754, 5.3918, 5.5377, 5.5079, 6.6228, 5.2893, 5.4107, 5.2915, 6.043, 5.7912, 12.121, 5.6026, 6.0804, 6.1023, 5.3849, 16.8769, 6.1193, 6.3052, 6.644, 6.5556, 5.3275, 6.4859, 5.4486, 6.2792, 10.8993, 5.4066, 11.2255, 5.3136, 5.2884, 21.4887, 5.281, 6.5041, 10.4356, 5.6794, 5.7793, 5.6999, 6.0716, 6.1417, 11.2982, 10.7229, 5.821, 5.5957, 5.5311, 10.7594, 11.8964, 5.3718, 0.8163, 6.103, 5.29, 5.4762, 6.3708, 6.4538, 5.4607, 5.2979, 5.9187, 5.4381, 5.4784, 5.5399, 0.7224, 5.7604, 5.8782, 5.6181, 6.3283, 6.1932, 5.6443, 10.5758, 5.2531, 10.7005, 11.1151, 5.6846, 11.0099, 10.7987, 11.5573, 5.5618, 6.3076, 5.7364, 5.9061, 10.9699, 5.3883, 0.6163, 5.518, 10.7512, 5.4982, 5.6696, 21.4689, 11.2548, 10.6425, 6.156, 12.1419, 5.6095, 5.7361, 5.5647, 5.6043, 5.7774, 11.0316, 5.702, 5.6374, 5.4882, 11.2183, 10.921, 11.5821, 11.2023, 6.0081, 11.0168], '192.168.122.120': [5.3389, 5.2979, 10.6449, 5.5182, 5.4321, 11.0307, 5.271, 11.4996, 21.8787, 5.3382, 5.3325, 5.8768, 5.404, 11.0693, 1.0018, 5.548, 5.42, 10.8585, 11.2846, 6.7844, 6.1026, 11.1456, 11.2894, 5.4395, 10.865, 5.4288, 10.8533, 10.4458, 10.6573, 5.6422, 10.7179, 5.3499, 5.5192, 10.8955, 5.7948, 5.3616, 5.3043, 5.213, 5.477, 11.1146, 5.4092, 5.2788, 10.9334, 6.3026, 11.2722, 10.8228, 10.8182, 5.8742, 5.4331, 5.8591, 5.9199, 5.3253, 0.5937, 5.3239, 5.5425, 6.2039, 5.8427, 6.3655, 11.6084, 10.8192, 5.9276, 11.692, 5.8374, 5.5993, 5.3723, 5.8057, 5.3005, 6.4502, 10.9413, 10.9091, 5.7163, 5.4305, 0.5448, 5.2993, 10.8714, 5.9304, 5.2085, 5.3909, 5.5223, 16.0122, 5.8851, 5.5172, 11.0106, 10.6113, 21.4698, 5.6961, 5.7135, 18.5823, 6.4161, 16.4645, 0.6027, 5.3992, 5.6889, 7.2615, 5.5907, 5.4708, 5.2166, 11.5004, 5.7414, 5.5814, 0.3939, 5.3251, 10.9992, 5.5904, 5.3976, 5.4312, 5.6438, 5.8041, 5.9805, 36.5558, 5.321, 5.2896, 5.4116, 10.6239, 6.0003, 6.6659, 5.5685, 10.8531, 0.9997, 6.0475, 5.3265, 11.219, 11.6038, 10.9935, 11.0083, 11.296, 10.7417, 11.1849, 5.923, 5.383, 5.9307, 10.9193, 11.3015, 10.957, 11.0729, 6.5427, 5.5454, 5.4748, 10.673, 10.9911, 5.954, 11.4019, 26.6867, 16.4061, 17.0908, 10.7434, 11.1499, 5.7852, 5.2655, 5.6167, 5.4922, 5.9114, 11.1909, 5.353, 5.5125, 5.2476, 10.9546, 11.1623, 5.527, 15.3942, 10.6723, 10.6165, 5.5029, 5.223, 17.1223, 6.0833, 6.2709, 5.964, 5.3902, 10.7737, 5.594, 6.7258, 11.0152, 5.9984, 5.718, 6.0074, 5.842, 5.9099, 5.5571, 10.9491, 5.4018, 5.8136, 5.3086, 5.8954, 5.8165, 1.0517, 5.8665, 6.1219, 12.465, 6.3217, 25.6908, 22.063, 11.4996, 6.1786, 5.4679, 5.5394, 11.1818, 5.6992, 5.5201, 5.8975, 0.8354, 5.821, 22.2709, 6.0327, 5.2788, 6.1879, 10.7837, 10.6792, 5.2712, 5.4631, 5.2145, 5.8315, 0.9053, 11.327, 5.2943, 6.0554, 5.4924, 5.3227, 5.7755, 15.8093, 5.4212, 29.7122, 5.3589, 6.336, 10.6459, 5.5468, 11.5361, 0.6688, 11.5564, 5.6722, 16.948, 5.4269, 5.4917, 18.0912, 5.861, 5.2819, 10.9203, 10.7002, 6.1424, 10.9296, 6.0072, 5.5847, 10.8485, 17.0085, 5.2185, 5.8498, 6.2294, 5.8935, 5.4007, 0.8121, 5.7087, 13.5405, 16.4635, 11.6947, 6.0916, 17.02, 5.4195, 5.3837], '192.168.122.116': [10.4778, 5.6241, 5.5871, 5.6801, 5.4953, 6.0337, 12.274, 5.9338, 5.8968, 10.6201, 5.3604, 5.4815, 5.3709, 5.4719, 0.828, 5.4932, 10.9193, 5.3117, 5.5695, 5.748, 6.1851, 22.6943, 5.553, 5.5838, 5.7459, 5.4708, 5.8441, 5.2714, 10.7372, 8.1327, 5.5861, 12.6009, 10.8581, 5.3382, 6.7067, 5.3835, 16.3214, 15.9595, 10.951, 10.5305, 6.5989, 7.6399, 10.8576, 6.1345, 6.391, 6.8698, 5.95, 6.4795, 5.4269, 9.0592, 5.4765, 5.3422, 5.7976, 10.6289, 5.4069, 5.5976, 5.337, 5.6965, 22.7885, 5.4278, 5.357, 10.5488, 5.8577, 21.9724, 5.3313, 5.275, 5.388, 6.3219, 5.3778, 5.4197, 16.175, 5.5568, 0.6611, 5.4498, 10.9007, 22.3031, 10.3078, 16.9127, 21.6551, 10.9327, 5.3837, 5.553, 10.9499, 5.2159, 11.1475, 10.9103, 5.645, 17.0417, 10.8869, 15.7313, 2.1183, 5.4083, 5.6295, 5.9161, 5.5649, 10.844, 10.9205, 5.5816, 17.4272, 5.6405, 0.7341, 5.3465, 5.3875, 11.287, 11.0924, 5.7149, 11.3673, 10.952, 10.4852, 10.5324, 10.5853, 10.7236, 6.2845, 10.4477, 10.797, 5.4367, 5.7123, 11.1709, 0.9913, 5.5263, 10.9415, 5.554, 16.8397, 10.7532, 5.512, 6.5324, 5.9075, 5.3425, 5.363, 5.4958, 5.7945, 5.2226, 5.4944, 5.5354, 6.0058, 16.3007, 16.3956, 5.471, 5.5296, 11.1392, 6.0043, 10.9251, 16.8355, 5.7836, 5.9896, 11.3325, 5.5506, 5.4164, 5.343, 5.2402, 5.8315, 5.4088, 5.4774, 10.586, 11.2708, 5.1746, 5.5676, 16.7038, 10.8442, 6.1774, 6.1047, 5.7106, 22.2719, 5.5711, 15.6949, 6.1703, 5.4562, 5.3248, 10.8693, 10.8171, 5.8053, 10.7718, 11.7958, 11.3254, 6.3798, 10.8058, 10.9167, 5.3573, 5.4514, 6.0849, 10.5743, 6.3994, 5.61, 11.1725, 11.0815, 0.6878, 5.5354, 11.0078, 5.6767, 11.445, 10.412, 6.8383, 5.7201, 5.7302, 5.5211, 5.517, 6.0203, 10.9112, 5.651, 5.7917, 0.8624, 16.9063, 5.2598, 11.1065, 10.6254, 10.8132, 16.3822, 10.4005, 11.1518, 6.0792, 5.4185, 12.079, 0.9983, 5.6715, 5.8172, 10.3259, 5.4917, 5.3911, 5.8439, 10.5557, 5.8355, 6.0949, 11.0986, 10.8585, 11.1477, 5.4708, 5.5215, 0.9229, 10.9096, 7.0319, 6.1436, 10.5271, 22.0187, 6.18, 5.8467, 10.4525, 5.604, 5.2328, 5.6317, 11.9276, 15.8184, 5.7857, 10.6115, 5.6286, 5.6748, 5.9276, 10.6149, 5.3606, 5.8775, 0.7706, 5.4879, 10.9231, 5.5258, 5.8053, 5.7642, 5.7397, 12.3734, 8.0087], '192.168.122.115': [5.2693, 5.3256, 5.671, 0.7539, 5.5201, 5.4109, 6.4662, 11.3938, 11.1294, 10.8361, 5.9118, 5.5103, 11.0726, 10.8619, 0.6058, 16.5758, 10.8602, 11.2116, 5.6007, 11.4713, 6.0289, 11.2903, 11.0736, 11.0047, 5.698, 11.2414, 13.1881, 5.2428, 5.3878, 5.2552, 5.9054, 5.8544, 18.0724, 5.95, 5.4457, 10.9296, 11.2996, 5.3232, 10.8838, 10.9756, 5.3959, 5.5382, 6.9592, 5.4469, 5.4464, 1.0657, 5.2745, 5.8546, 5.99, 0.4413, 5.3682, 5.321, 5.7993, 10.854, 5.3384, 6.3641, 5.4967, 6.0575, 11.5016, 6.5148, 10.8438, 11.4102, 5.9078, 6.0644, 11.8945, 5.1987, 10.7219, 5.347, 5.3883, 0.7904, 5.8196, 5.3866, 0.6025, 5.4517, 5.4746, 10.8628, 5.6512, 10.6575, 5.6508, 5.4626, 5.9712, 10.9622, 11.1027, 10.6494, 5.3971, 5.5156, 11.0066, 5.7323, 10.9146, 11.0343, 5.7189, 10.8123, 10.4926, 10.8781, 5.6114, 11.2195, 5.3425, 10.8378, 5.7917, 10.6773, 0.6814, 5.388, 5.8136, 5.2741, 16.8638, 5.3606, 28.2779, 5.4183, 5.2345, 13.8595, 5.3618, 5.6911, 5.3439, 11.1752, 10.781, 5.4178, 6.4445, 11.637, 0.927, 11.03, 5.5985, 11.1525, 6.2268, 6.1388, 5.7771, 11.5523, 5.6233, 5.6069, 5.9953, 5.9946, 6.6085, 5.3399, 12.1195, 11.3423, 5.5249, 10.8433, 5.5144, 5.3241, 10.3025, 6.1707, 6.043, 8.5621, 16.9826, 5.2655, 5.8908, 5.3215, 6.0785, 5.5301, 5.5299, 5.316, 5.9969, 5.8041, 6.1069, 5.3771, 11.09, 10.879, 5.8572, 10.9591, 16.4304, 11.903, 13.5646, 5.996, 10.7727, 5.372, 5.461, 6.2377, 10.5963, 11.1072, 5.8639, 5.3864, 5.2695, 10.6924, 10.9692, 10.8209, 16.6619, 16.3543, 5.3637, 5.4018, 5.5025, 5.4426, 5.4896, 5.7933, 5.2884, 5.3136, 27.7646, 1.0407, 5.7311, 11.5776, 5.4801, 6.5017, 11.5535, 10.4392, 5.6891, 5.6901, 16.5071, 5.5783, 11.0984, 5.9106, 10.937, 11.0464, 1.1542, 5.954, 5.2161, 5.4438, 21.8978, 11.3447, 5.5983, 6.1967, 21.5709, 5.8861, 5.4317, 16.6717, 1.0476, 5.9624, 5.2788, 11.529, 5.2588, 10.8948, 6.0093, 11.004, 12.929, 0.7043, 11.2584, 11.0364, 34.307, 5.4595, 5.6489, 5.7108, 11.2119, 5.5087, 11.1492, 5.6756, 5.7824, 5.3725, 5.7609, 5.3728, 5.4111, 5.4564, 11.1833, 10.7505, 5.5251, 10.53, 10.8111, 5.9752, 6.2439, 5.7845, 6.1326, 10.7529, 5.2059, 1.0462, 11.4086, 5.9841, 5.4433, 5.5203, 5.8582, 5.7335, 11.5542, 6.3939], '192.168.122.114': [5.3151, 5.2912, 5.2073, 0.7594, 5.5549, 10.8476, 5.4464, 11.5678, 5.9075, 16.4778, 5.4173, 10.6792, 5.3072, 5.3909, 0.7598, 5.5783, 5.378, 11.6608, 5.6796, 11.4658, 5.4793, 5.4748, 16.9499, 10.7398, 6.166, 5.7645, 5.971, 5.5737, 5.8208, 27.1983, 5.3422, 5.9495, 5.6405, 5.7099, 5.8343, 17.343, 10.9708, 5.4176, 10.8254, 10.8829, 5.4269, 17.354, 10.7739, 6.2144, 5.8825, 0.8314, 10.9041, 5.5375, 10.9253, 5.5573, 5.5912, 10.5052, 5.7402, 16.6533, 5.2903, 10.6566, 6.495, 10.941, 11.1699, 9.3474, 5.6593, 11.1334, 5.4646, 5.6405, 5.8782, 5.2018, 5.7735, 5.4414, 5.4126, 0.8411, 6.1178, 11.2982, 0.5519, 5.4603, 5.4643, 5.6963, 5.352, 10.6912, 5.4226, 6.2568, 17.3893, 11.0443, 10.973, 11.1783, 10.8449, 22.033, 10.6859, 6.5601, 5.6479, 5.4026, 10.7617, 5.7249, 10.421, 5.3382, 11.3666, 5.9593, 5.2168, 5.3771, 5.2707, 6.3517, 0.6711, 11.4636, 16.1655, 5.6057, 5.3911, 10.9031, 24.4596, 6.2866, 11.374, 11.5814, 5.3144, 6.7668, 10.8521, 6.2466, 5.3368, 11.4799, 5.6915, 11.0307, 0.6585, 10.926, 5.6188, 5.5144, 16.0239, 6.3603, 12.9664, 11.0917, 5.3673, 11.5049, 11.6038, 5.4665, 21.4829, 10.8349, 5.465, 5.5649, 5.4336, 10.8955, 6.021, 21.6415, 5.8351, 11.7445, 10.823, 5.7552, 5.3627, 11.0214, 5.7724, 10.6175, 21.6305, 5.4653, 10.932, 11.0013, 10.447, 11.4892, 5.6069, 5.1811, 11.2286, 5.5432, 22.3949, 10.8488, 6.0194, 5.9941, 5.9519, 5.5835, 15.3525, 5.4202, 5.2834, 5.63, 5.2474, 11.1165, 5.985, 5.4877, 5.6279, 10.6406, 5.7938, 10.8955, 6.4797, 5.2428, 11.1825, 5.4054, 5.5325, 11.0881, 10.8154, 6.5007, 5.7504, 6.0468, 5.2807, 0.6051, 6.0916, 5.5838, 5.9366, 6.1235, 21.7957, 10.8752, 5.6036, 5.414, 11.8847, 5.5478, 5.7564, 10.8936, 5.7356, 6.5196, 0.9201, 5.3976, 5.964, 10.9658, 11.1518, 11.3759, 10.5152, 5.8386, 10.5, 16.34, 5.3494, 5.4102, 0.7851, 10.778, 5.4996, 6.2792, 10.8075, 5.4672, 6.1209, 5.7101, 5.8212, 7.0138, 5.511, 5.4967, 10.9584, 16.1984, 6.2413, 10.6363, 5.9407, 5.6446, 5.7461, 6.2137, 11.5819, 5.5809, 5.5332, 10.8535, 5.9741, 5.5757, 6.3841, 5.4569, 6.3365, 29.7973, 11.4572, 6.3174, 10.5343, 10.8836, 5.5726, 10.704, 5.3132, 0.865, 5.3999, 5.6095, 5.4371, 6.7728, 16.5946, 11.2851, 11.2827, 11.2355], '192.168.122.113': [5.7201, 5.3546, 5.3508, 1.0886, 5.2645, 10.6683, 5.8887, 5.6689, 5.6655, 10.7203, 5.4011, 5.3301, 11.2164, 10.7102, 6.6142, 5.6474, 16.3336, 5.7971, 5.6489, 5.2981, 11.0204, 5.6727, 5.8353, 5.5161, 5.2876, 5.3046, 6.0816, 5.78, 5.9907, 12.2178, 5.5752, 5.5957, 11.3418, 5.3542, 6.3128, 21.7912, 5.5046, 5.2326, 5.3818, 5.4615, 5.4188, 5.6729, 5.4255, 11.2317, 10.9208, 0.5941, 6.263, 16.5772, 5.4216, 10.684, 16.2518, 10.6544, 10.7667, 13.8841, 10.7226, 6.1271, 11.2901, 10.9916, 11.4009, 5.9006, 5.3439, 6.4633, 5.3694, 12.0089, 10.675, 10.4129, 11.1709, 5.343, 5.4281, 6.0656, 5.9602, 10.9367, 0.5381, 5.7797, 10.9196, 5.6863, 10.8182, 10.4923, 21.7757, 5.5006, 5.2361, 11.333, 5.2726, 5.7201, 5.4011, 5.6345, 16.428, 5.7912, 10.9217, 10.9179, 5.2264, 6.6836, 10.3812, 5.779, 5.9526, 22.2578, 5.5211, 6.1998, 6.048, 5.9519, 5.8112, 10.5865, 5.46, 5.4388, 5.3785, 10.8938, 16.0534, 10.7336, 5.285, 5.6691, 10.5863, 6.9573, 5.4665, 11.7483, 11.7762, 10.7958, 11.2035, 11.0903, 0.643, 5.7395, 11.0691, 11.1768, 10.4403, 10.932, 5.224, 5.3797, 10.6597, 16.5052, 5.6098, 5.5881, 5.2819, 10.8483, 6.5153, 25.5721, 5.3906, 10.9763, 5.4455, 10.9234, 5.7802, 5.3763, 5.3546, 5.336, 11.0214, 5.8193, 5.4584, 5.5249, 11.0016, 10.8273, 27.4563, 11.3325, 5.4841, 10.8857, 6.1007, 5.5022, 5.7659, 11.302, 5.707, 5.4152, 5.801, 5.5668, 5.7917, 5.2321, 6.1879, 5.5642, 6.0294, 16.8667, 11.2648, 5.383, 10.8783, 10.8545, 5.5387, 19.3026, 5.8322, 6.2578, 11.9882, 10.951, 10.7558, 5.4591, 5.5399, 6.4254, 5.2965, 5.827, 10.9599, 16.1667, 5.3134, 0.7067, 10.9076, 11.3685, 5.5783, 5.7924, 10.4599, 16.2356, 6.3369, 5.2259, 5.2025, 5.5609, 5.6226, 5.4202, 6.4733, 5.9774, 10.6091, 10.9434, 5.4197, 5.2786, 10.7286, 5.5954, 10.9766, 10.7281, 5.4455, 5.7361, 48.0845, 11.2724, 0.6244, 5.8851, 10.9065, 6.3684, 5.415, 5.3992, 5.7497, 5.2481, 6.0346, 11.6003, 6.8471, 5.6453, 5.6019, 6.6576, 5.6489, 5.5718, 5.4548, 10.9885, 5.1877, 17.1158, 6.3229, 5.3532, 15.8548, 5.6098, 5.5976, 0.7126, 7.7901, 11.2946, 5.543, 5.2698, 6.0618, 15.9957, 5.5604, 5.4624, 11.3981, 10.6728, 5.5926, 0.7031, 10.8662, 5.2397, 5.4798, 6.2571, 0.8247, 5.4176, 10.9358, 11.0936], '192.168.122.112': [5.6481, 6.2492, 10.499, 1.3008, 5.3587, 10.8161, 6.4039, 0.6554, 10.056, 5.3525, 5.4796, 9.5713, 5.3473, 5.446, 5.2226, 11.2367, 5.615, 5.4817, 5.6827, 10.8397, 11.1206, 5.6341, 18.0471, 11.0486, 27.3361, 5.3396, 5.4891, 6.0327, 16.3276, 11.1442, 5.1911, 11.0714, 10.8011, 5.4309, 5.2617, 11.0116, 10.9842, 5.785, 5.6303, 5.5912, 5.8837, 21.8129, 5.4674, 5.4607, 10.879, 0.7682, 5.8589, 5.3298, 16.4571, 5.8703, 5.3999, 10.7875, 5.3811, 10.8056, 5.6849, 11.2143, 5.5001, 5.6081, 6.5286, 5.3208, 10.7679, 10.8888, 5.4789, 5.6145, 5.3294, 10.3023, 16.4676, 10.74, 11.2553, 16.7859, 5.4939, 11.1814, 0.7432, 10.875, 10.6745, 5.2178, 5.702, 6.0215, 5.3158, 11.1845, 6.1569, 10.9544, 5.6636, 6.1657, 5.4212, 10.8321, 16.017, 5.276, 5.4724, 5.4049, 10.7079, 5.6515, 10.8676, 10.3476, 27.8502, 5.6727, 10.849, 5.723, 0.6135, 6.1522, 5.5027, 5.3561, 5.5144, 5.2495, 5.398, 5.4786, 6.0575, 5.9257, 5.9574, 5.8217, 12.0199, 5.3537, 5.4235, 5.5673, 21.6322, 5.4867, 5.5044, 5.9278, 0.7637, 5.4834, 5.6806, 5.9149, 10.5255, 6.3086, 21.7168, 10.5164, 5.5053, 10.91, 5.7051, 10.3831, 5.2624, 10.9205, 16.2673, 5.6434, 6.1033, 10.9425, 5.6968, 11.1754, 5.8427, 6.7506, 10.879, 10.5689, 5.311, 5.7878, 21.7652, 5.7001, 6.8438, 5.4448, 10.8581, 10.7489, 5.6069, 10.8082, 11.091, 10.9916, 6.6652, 27.1001, 11.4069, 6.4356, 5.475, 5.4274, 5.444, 16.0761, 6.0475, 5.5904, 5.707, 11.2689, 16.0418, 5.3077, 5.4269, 6.053, 5.5728, 5.3754, 11.9078, 5.2564, 1.009, 6.047, 10.9687, 6.8517, 5.4679, 6.1026, 10.4585, 5.5122, 10.4849, 5.7263, 5.4884, 0.6747, 5.7886, 16.6011, 14.1411, 5.6622, 10.7257, 5.2178, 5.6283, 10.6235, 5.331, 5.6868, 5.682, 5.4171, 10.906, 21.462, 0.7079, 11.3447, 5.3556, 5.5151, 10.6771, 5.2311, 10.581, 5.4197, 5.5828, 27.0448, 6.3298, 5.651, 0.5867, 11.4751, 11.6873, 5.291, 10.8697, 10.5946, 5.7473, 5.3089, 5.7254, 21.5836, 5.389, 5.3713, 5.6162, 16.3319, 6.5606, 5.439, 5.4615, 5.2469, 10.463, 5.3692, 15.878, 10.448, 5.4314, 5.4522, 11.0524, 0.4961, 5.9302, 10.7079, 10.4899, 10.5011, 6.3293, 5.8892, 11.9443, 10.9718, 5.6484, 5.79, 5.5132, 0.8354, 32.1815, 5.4803, 5.5993, 5.4669, 11.2259, 11.1561, 10.8767, 5.9085], '192.168.122.111': [5.8558, 5.5561, 5.2116, 0.6452, 5.4474, 10.9515, 5.7352, 0.5703, 17.9102, 5.6572, 5.3613, 6.3508, 6.0792, 16.4437, 5.7573, 5.2655, 11.8327, 5.357, 5.6551, 11.457, 11.0795, 5.5931, 24.3971, 5.4224, 5.383, 9.3052, 5.9376, 7.1592, 5.4293, 6.2439, 5.6384, 5.5845, 5.8784, 10.8082, 5.9433, 5.2636, 10.8206, 5.332, 22.3286, 10.787, 5.2683, 5.4276, 5.403, 5.46, 5.7335, 0.5479, 5.6825, 10.9694, 5.4405, 11.5681, 5.4262, 11.0462, 26.9573, 5.3523, 10.4594, 10.623, 5.4169, 5.5094, 5.7225, 10.6192, 5.2934, 5.2829, 15.7619, 5.2695, 5.4345, 5.3368, 5.3661, 5.8925, 5.6372, 0.9236, 12.4974, 5.2791, 0.4926, 11.4698, 5.2879, 5.7151, 5.4727, 5.3203, 5.6686, 10.9503, 5.4164, 10.9026, 8.096, 6.501, 6.3913, 5.2178, 10.3295, 11.5147, 10.9785, 5.4328, 5.312, 5.8098, 5.3904, 5.6005, 6.1412, 10.9956, 5.923, 5.2733, 5.8913, 10.5574, 5.4662, 10.6947, 5.3473, 10.5798, 5.2681, 10.7987, 5.6329, 5.5687, 6.1777, 11.3938, 5.2643, 16.4814, 6.5451, 11.9801, 10.9353, 27.4227, 17.0324, 5.2271, 0.9251, 5.527, 5.2903, 12.1436, 10.4384, 6.397, 5.5439, 11.2896, 6.3088, 5.3372, 5.7023, 5.4486, 5.7623, 10.798, 5.4221, 5.3465, 16.4859, 11.9269, 6.5989, 5.939, 6.2752, 16.7964, 11.178, 5.3141, 44.0347, 26.7105, 16.1753, 5.9495, 10.7749, 10.8864, 5.4188, 5.8744, 5.8084, 5.6429, 6.1126, 5.3432, 5.7514, 5.837, 5.6646, 5.6348, 6.5279, 5.4107, 5.3439, 5.2655, 5.5215, 6.5169, 11.5561, 5.3921, 5.5921, 11.8272, 5.3267, 6.2244, 21.0905, 10.7136, 16.9685, 5.5485, 1.6887, 16.6304, 5.4731, 6.9683, 5.4965, 6.0554, 19.1669, 5.9469, 5.4073, 10.5243, 5.9805, 5.5702, 5.795, 22.2852, 8.9333, 5.7054, 10.4108, 6.2664, 11.066, 10.6201, 5.2755, 5.4193, 10.9465, 5.5327, 5.5592, 5.7378, 0.7305, 10.5128, 5.955, 5.4576, 5.707, 10.7582, 10.5453, 10.7174, 10.8874, 10.8693, 5.3861, 11.2174, 0.7024, 10.6809, 5.8043, 5.5864, 5.9862, 10.8573, 10.4785, 5.2853, 5.3616, 6.5336, 5.6829, 10.8314, 26.7529, 10.8638, 16.7325, 5.574, 22.316, 6.0129, 11.0035, 5.435, 5.9383, 5.2752, 11.2731, 10.8924, 5.8322, 0.5455, 11.251, 10.9391, 6.1448, 5.3098, 5.7492, 5.8646, 5.3363, 5.893, 5.7905, 5.7786, 16.2387, 0.9139, 5.3391, 5.501, 5.3358, 5.4693, 10.4067, 0.5519, 6.1939, 5.9707], '192.168.122.110': [5.4092, 5.827, 5.6579, 0.7479, 5.5721, 5.7516, 5.3988, 0.6657, 5.9195, 5.3389, 5.3735, 5.8217, 10.7152, 5.3875, 5.2984, 10.957, 5.4619, 5.4786, 5.6207, 5.4164, 21.6162, 5.5416, 11.1911, 10.9546, 11.2357, 6.5899, 6.1104, 5.676, 27.3697, 6.3543, 5.619, 5.4007, 5.3811, 16.3231, 11.0655, 5.3718, 10.9024, 5.7507, 5.8489, 5.3966, 5.4836, 5.486, 11.4126, 10.9227, 5.3561, 0.8814, 10.9489, 10.8643, 5.4927, 10.9093, 10.7763, 5.6334, 5.3473, 10.721, 5.1844, 5.9068, 16.2094, 5.9192, 11.3564, 5.3377, 10.7751, 11.368, 10.9091, 6.6199, 5.4266, 5.2729, 5.5296, 5.3921, 5.785, 5.5213, 5.8496, 5.3513, 0.7768, 6.4666, 5.3921, 5.5029, 21.4705, 10.8073, 5.9123, 5.3189, 6.4068, 16.7916, 5.7111, 5.7409, 7.324, 5.6376, 5.6705, 10.8829, 10.8294, 5.6663, 5.3945, 1.6327, 5.7378, 10.7858, 6.2704, 5.4262, 5.3654, 5.5015, 10.9336, 5.5232, 5.4524, 10.6471, 16.109, 5.2166, 5.3191, 5.2929, 10.6511, 11.7126, 6.0699, 5.6186, 5.8377, 5.8489, 5.7378, 11.1687, 5.4276, 16.9258, 6.0718, 11.5216, 6.6733, 5.6477, 11.0605, 5.585, 5.6965, 5.5754, 10.3896, 5.513, 10.5758, 5.5254, 5.693, 0.7746, 10.4373, 6.4347, 5.4488, 5.6975, 10.952, 5.331, 5.6791, 5.5811, 5.6407, 6.0756, 5.2722, 5.3024, 5.8258, 6.0334, 10.9711, 5.4343, 5.3709, 6.0184, 10.9138, 5.857, 5.477, 23.6154, 11.1318, 7.2563, 6.6438, 6.269, 16.0351, 11.096, 10.4587, 10.9367, 5.6026, 5.2626, 11.1561, 5.8942, 5.2702, 5.5022, 11.471, 6.4766, 10.7594, 6.0732, 10.8888, 10.7138, 5.5461, 5.795, 1.1194, 10.8354, 5.7416, 7.9205, 5.4028, 5.5048, 11.0672, 5.2431, 10.8845, 6.3062, 5.7764, 5.9714, 10.7949, 5.7127, 5.441, 5.6598, 5.6705, 11.4098, 5.8672, 5.4233, 11.2057, 5.6415, 11.1911, 6.0213, 5.7218, 5.8279, 0.7465, 10.5605, 11.7002, 17.1711, 11.1492, 16.6333, 5.9144, 5.2495, 10.8027, 5.836, 5.7113, 5.4207, 6.1719, 5.4612, 5.6927, 5.5792, 16.0811, 5.4541, 11.0543, 10.7427, 5.4469, 5.3904, 5.949, 5.3656, 5.3034, 10.7992, 10.9761, 16.5839, 11.0471, 5.6589, 6.5622, 6.2423, 6.0768, 10.566, 5.8191, 10.9663, 10.9375, 0.8323, 5.6982, 16.8164, 6.0861, 16.8803, 5.827, 11.6854, 15.7967, 6.0148, 5.4636, 6.3913, 5.6694, 16.8345, 0.7224, 5.4395, 6.46, 5.4407, 11.2622, 1.0185, 5.4307, 6.5429]}
cpu9_2_10 = [43.3, 24.4, 1.1, 1.2, 0.8, 0.1, 0.1, 0.8, 0.2, 0.1, 1.2, 0.7, 0.4, 0.8, 0.1, 0.5, 0.4, 0.4, 0.4, 0.6, 1.4, 1.3, 0.4, 0.4, 0.1, 0.0, 2.5, 2.9, 0.3, 0.5, 0.5, 0.1, 0.3, 0.3, 0.1, 0.2, 0.8, 1.1, 0.4, 0.1, 0.2, 0.3, 0.6, 0.4, 0.3, 0.2, 0.2, 1.4, 0.3, 1.2, 1.5, 2.2, 3.8, 4.7, 1.0, 0.5, 0.0, 0.4, 0.1, 0.1, 0.2, 0.2, 0.7, 2.5, 4.1, 1.2, 0.5, 1.3, 0.3, 1.7, 1.2, 0.5, 0.9, 0.5, 0.1, 1.0, 0.3, 0.4, 0.1, 0.2, 0.6, 0.4, 0.9, 1.3, 0.5, 0.0, 0.3, 1.1, 0.5, 1.4, 1.5, 0.1, 0.4, 0.4, 0.6, 0.4, 1.2, 1.4, 0.6, 0.8, 1.0, 0.7, 0.7, 0.3, 3.9, 1.5, 2.2, 1.2, 1.0, 0.2, 1.0, 1.4, 0.2, 0.8, 0.9, 0.6, 0.5, 0.2, 0.7, 1.0, 0.7, 0.0, 0.4, 0.5, 0.1, 0.4, 0.4, 0.3, 0.5, 0.2, 0.2, 0.7, 0.4, 0.6, 0.0, 0.0, 3.4, 3.4, 0.2, 0.0, 1.6, 1.3, 0.2, 0.2, 0.1, 0.3, 0.4, 0.5, 0.8, 0.1, 1.0, 0.9, 0.6, 0.4, 0.5, 0.7, 0.8, 1.1, 1.0, 0.1, 0.2, 1.0, 2.1, 3.6, 2.4, 0.1, 1.4, 0.2, 0.3, 0.2, 1.2, 0.9, 0.3, 0.3, 0.7, 0.8, 1.2, 0.1, 0.5, 0.0, 0.6, 0.6, 0.2, 0.6, 1.0, 0.7, 0.9, 0.6, 0.6, 0.6, 0.3, 1.4, 1.8, 0.7, 2.4, 3.2, 1.0, 0.3, 1.0, 0.6, 1.0, 1.4, 0.9, 0.2, 0.4, 0.4, 0.5, 0.1, 1.1, 1.6, 2.9, 1.5, 0.7, 0.1, 0.5, 0.3, 0.4, 1.1, 1.7, 1.1, 0.4, 1.2, 0.3, 0.7, 0.4, 0.5, 1.1, 1.4, 0.1, 0.7, 0.6, 0.8, 0.3, 0.8, 0.0, 0.7, 1.0, 1.0, 0.1, 0.2, 0.0, 1.2, 0.2, 0.3, 1.2, 1.0, 0.6, 0.6, 0.3, 0.1, 0.3, 5.0, 4.9, 0.1, 0.5, 1.3, 0.9, 0.2]
off_mec9_2_10 = 182
off_cloud9_2_10 = 277
inward_mec9_2_10 = 190
loc9_2_10 = 467
deadlock9_2_10 = [9]
memory9_2_10 = [0.2181, 0.219, 0.2191, 0.2187, 0.2188, 0.2188, 0.2189, 0.219, 0.2193, 0.2195, 0.2195, 0.2196, 0.2196, 0.2197, 0.2197, 0.2198, 0.2198, 0.2199, 0.2199, 0.2199, 0.2202, 0.2202, 0.2202, 0.2206, 0.2207, 0.2207, 0.2207, 0.221, 0.221, 0.221, 0.2211, 0.2211, 0.2212, 0.2212, 0.2215, 0.2216, 0.2216, 0.2218, 0.2218, 0.2221, 0.2222, 0.2222, 0.2222, 0.2222, 0.2222, 0.2223, 0.2223, 0.2223, 0.2223, 0.2223, 0.2224, 0.2224, 0.2224, 0.2224, 0.2225, 0.2225, 0.2225, 0.2225, 0.2226, 0.2226, 0.2228, 0.2228, 0.2228, 0.2228, 0.2228, 0.2229, 0.2229, 0.2229, 0.2229, 0.2229, 0.223, 0.223, 0.223, 0.223, 0.2232, 0.2232, 0.2233, 0.2234, 0.2234, 0.2235, 0.2235, 0.2235, 0.2235, 0.2237, 0.2238, 0.2239, 0.224, 0.224, 0.224, 0.2241, 0.2241, 0.2242, 0.2243, 0.2243, 0.2243, 0.2244, 0.2244, 0.2245, 0.2245, 0.2248, 0.2248, 0.2248, 0.2249, 0.2249, 0.225, 0.225, 0.225, 0.225, 0.2251, 0.2251, 0.2251, 0.2251, 0.2251, 0.2252, 0.2254, 0.2254, 0.2255, 0.2256, 0.2256, 0.2257, 0.2257, 0.2258, 0.2258, 0.2258, 0.2259, 0.2259, 0.2259, 0.2259, 0.2259, 0.226, 0.226, 0.2261, 0.2262, 0.2263, 0.2264, 0.2265, 0.2265, 0.2266, 0.2266, 0.2266, 0.2267, 0.2267, 0.2268, 0.2268, 0.2268, 0.2268, 0.2268, 0.2268, 0.2269, 0.2269, 0.227, 0.227, 0.227, 0.2271, 0.2271, 0.2271, 0.2277, 0.2277, 0.2277, 0.2277, 0.2278, 0.2278, 0.2278, 0.2278, 0.2279, 0.228, 0.228, 0.228, 0.228, 0.228, 0.228, 0.228, 0.2282, 0.2284, 0.2284, 0.2284, 0.2285, 0.2285, 0.2293, 0.2293, 0.2293, 0.2294, 0.2294, 0.2294, 0.2296, 0.2296, 0.2296, 0.2296, 0.2297, 0.2297, 0.2297, 0.2297, 0.2297, 0.2298, 0.2298, 0.2298, 0.2299, 0.2299, 0.2299, 0.2299, 0.23, 0.2301, 0.2301, 0.2301, 0.2302, 0.2302, 0.2303, 0.2303, 0.2303, 0.2303, 0.2304, 0.2304, 0.2305, 0.2305, 0.2305, 0.2305, 0.2306, 0.2306, 0.2306, 0.2307, 0.2307, 0.2308, 0.2308, 0.2308, 0.2309, 0.2309, 0.231, 0.231, 0.231, 0.231, 0.231, 0.2311, 0.2311, 0.2312, 0.2312, 0.2313, 0.2313, 0.2313, 0.2313, 0.2313, 0.2313, 0.2313, 0.2313, 0.2314, 0.2314, 0.2315, 0.2315, 0.2315, 0.2316, 0.2316, 0.2317, 0.2319, 0.2322, 0.2322, 0.2322, 0.2324, 0.2326, 0.2327]
task_received9_2_10 = 926
sent_t9_2_10 = {'124': 274, '126': 302, '125': 350}
cooperate9_2_10 = {'mec': 182, 'cloud': 277}
task_record9_2_10 = {}
outward_mec9_2_10 = 206
offload_check9_2_10 = [172, 32]
timed_out_tasks9_2_10 = 0 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.