content
stringlengths 7
1.05M
| fixed_cases
stringlengths 1
1.28M
|
---|---|
class Relogio:
def __init__(self):
self.horas = 6
self.minutos = 0
self.dia = 1
def __str__(self):
return f"{self.horas:02d}:{self.minutos:02d} do dia {self.dia:02d}"
def avancaTempo(self, minutos):
self.minutos += minutos
while(self.minutos >= 60):
self.minutos -= 60
self.horas += 1
if self.horas >= 24:
self.horas = 0
self.dia +=1
| class Relogio:
def __init__(self):
self.horas = 6
self.minutos = 0
self.dia = 1
def __str__(self):
return f'{self.horas:02d}:{self.minutos:02d} do dia {self.dia:02d}'
def avanca_tempo(self, minutos):
self.minutos += minutos
while self.minutos >= 60:
self.minutos -= 60
self.horas += 1
if self.horas >= 24:
self.horas = 0
self.dia += 1 |
# https://www.geeksforgeeks.org/write-a-program-to-reverse-an-array-or-string/
# Time: O(n)
# Space: 1
def reverseByMiddles(arr):
n = len(arr)
limit = n//2
for i in range(limit):
temp = arr[i]
arr[i] = arr[(n-1)-i]
arr[(n-1)-i] = temp
return arr
arr = [1,2,3]
result = reverseByMiddles(arr)
print(result)
print(reverseByMiddles(arr = [1,2,3,4]))
| def reverse_by_middles(arr):
n = len(arr)
limit = n // 2
for i in range(limit):
temp = arr[i]
arr[i] = arr[n - 1 - i]
arr[n - 1 - i] = temp
return arr
arr = [1, 2, 3]
result = reverse_by_middles(arr)
print(result)
print(reverse_by_middles(arr=[1, 2, 3, 4])) |
coordinates_01EE00 = ((121, 126),
(121, 132), (121, 134), (121, 135), (121, 137), (121, 138), (121, 139), (121, 140), (121, 141), (122, 114), (122, 115), (122, 116), (122, 117), (122, 119), (122, 125), (122, 127), (122, 128), (122, 142), (123, 110), (123, 111), (123, 112), (123, 113), (123, 120), (123, 124), (123, 126), (123, 130), (123, 132), (123, 133), (123, 134), (123, 135), (123, 136), (123, 137), (123, 138), (123, 139), (123, 140), (123, 141), (123, 144), (124, 107), (124, 109), (124, 114), (124, 115), (124, 116), (124, 117), (124, 118), (124, 120), (124, 124), (124, 125), (124, 126), (124, 127), (124, 128), (124, 129), (124, 131), (124, 132), (124, 133), (124, 134), (124, 135), (124, 136), (124, 137), (124, 138), (124, 139), (124, 140), (124, 141), (124, 142), (124, 146), (125, 105), (125, 110), (125, 111), (125, 112), (125, 113), (125, 114), (125, 115), (125, 116), (125, 117),
(125, 118), (125, 119), (125, 120), (125, 122), (125, 124), (125, 125), (125, 126), (125, 127), (125, 128), (125, 129), (125, 130), (125, 131), (125, 132), (125, 133), (125, 134), (125, 135), (125, 136), (125, 137), (125, 138), (125, 139), (125, 140), (125, 141), (125, 142), (125, 143), (125, 144), (125, 148), (126, 103), (126, 107), (126, 108), (126, 109), (126, 110), (126, 111), (126, 112), (126, 113), (126, 114), (126, 115), (126, 116), (126, 117), (126, 118), (126, 119), (126, 120), (126, 124), (126, 125), (126, 126), (126, 127), (126, 128), (126, 129), (126, 130), (126, 131), (126, 132), (126, 133), (126, 134), (126, 135), (126, 136), (126, 137), (126, 138), (126, 139), (126, 140), (126, 141), (126, 142), (126, 143), (126, 144), (126, 145), (126, 146), (126, 149), (127, 102), (127, 105), (127, 106), (127, 107), (127, 108), (127, 109), (127, 110),
(127, 111), (127, 112), (127, 113), (127, 114), (127, 115), (127, 116), (127, 117), (127, 118), (127, 119), (127, 120), (127, 121), (127, 122), (127, 123), (127, 124), (127, 125), (127, 126), (127, 127), (127, 128), (127, 129), (127, 130), (127, 131), (127, 132), (127, 133), (127, 134), (127, 135), (127, 136), (127, 137), (127, 138), (127, 139), (127, 140), (127, 141), (127, 142), (127, 143), (127, 144), (127, 145), (127, 146), (127, 147), (127, 148), (127, 150), (128, 103), (128, 105), (128, 106), (128, 107), (128, 108), (128, 109), (128, 110), (128, 111), (128, 112), (128, 113), (128, 114), (128, 115), (128, 116), (128, 117), (128, 118), (128, 119), (128, 120), (128, 121), (128, 122), (128, 123), (128, 124), (128, 125), (128, 126), (128, 127), (128, 128), (128, 129), (128, 130), (128, 131), (128, 132), (128, 133), (128, 134), (128, 135), (128, 136),
(128, 137), (128, 138), (128, 139), (128, 140), (128, 141), (128, 142), (128, 143), (128, 144), (128, 145), (128, 146), (128, 147), (128, 149), (129, 103), (129, 105), (129, 106), (129, 107), (129, 108), (129, 109), (129, 110), (129, 111), (129, 112), (129, 113), (129, 114), (129, 115), (129, 116), (129, 117), (129, 118), (129, 119), (129, 120), (129, 121), (129, 122), (129, 123), (129, 124), (129, 125), (129, 126), (129, 127), (129, 128), (129, 129), (129, 130), (129, 131), (129, 132), (129, 133), (129, 134), (129, 135), (129, 136), (129, 137), (129, 138), (129, 139), (129, 140), (129, 141), (129, 142), (129, 143), (129, 144), (129, 145), (129, 146), (129, 147), (129, 149), (130, 104), (130, 107), (130, 108), (130, 109), (130, 110), (130, 111), (130, 112), (130, 113), (130, 114), (130, 115), (130, 116), (130, 117), (130, 118), (130, 119), (130, 120),
(130, 121), (130, 122), (130, 123), (130, 124), (130, 125), (130, 126), (130, 127), (130, 128), (130, 129), (130, 130), (130, 131), (130, 132), (130, 133), (130, 134), (130, 135), (130, 136), (130, 137), (130, 138), (130, 139), (130, 140), (130, 141), (130, 142), (130, 143), (130, 144), (130, 145), (130, 146), (130, 148), (131, 104), (131, 106), (131, 107), (131, 108), (131, 109), (131, 110), (131, 111), (131, 112), (131, 113), (131, 114), (131, 115), (131, 116), (131, 117), (131, 118), (131, 119), (131, 120), (131, 121), (131, 122), (131, 123), (131, 124), (131, 125), (131, 126), (131, 127), (131, 128), (131, 129), (131, 130), (131, 131), (131, 132), (131, 133), (131, 134), (131, 135), (131, 136), (131, 137), (131, 138), (131, 139), (131, 140), (131, 141), (131, 142), (131, 143), (131, 144), (131, 145), (131, 147), (132, 108), (132, 109), (132, 110),
(132, 111), (132, 112), (132, 113), (132, 114), (132, 115), (132, 116), (132, 117), (132, 118), (132, 119), (132, 120), (132, 121), (132, 122), (132, 123), (132, 124), (132, 125), (132, 126), (132, 127), (132, 128), (132, 129), (132, 130), (132, 131), (132, 132), (132, 133), (132, 134), (132, 135), (132, 136), (132, 137), (132, 138), (132, 139), (132, 140), (132, 141), (132, 142), (132, 143), (132, 144), (132, 146), (133, 108), (133, 110), (133, 111), (133, 112), (133, 113), (133, 114), (133, 115), (133, 116), (133, 117), (133, 118), (133, 119), (133, 120), (133, 121), (133, 122), (133, 123), (133, 124), (133, 125), (133, 126), (133, 127), (133, 128), (133, 129), (133, 130), (133, 131), (133, 132), (133, 133), (133, 134), (133, 135), (133, 136), (133, 137), (133, 138), (133, 139), (133, 140), (133, 141), (133, 142), (133, 143), (133, 144), (133, 146),
(134, 107), (134, 108), (134, 109), (134, 110), (134, 111), (134, 112), (134, 113), (134, 114), (134, 115), (134, 116), (134, 117), (134, 118), (134, 119), (134, 120), (134, 121), (134, 122), (134, 123), (134, 124), (134, 125), (134, 126), (134, 127), (134, 128), (134, 129), (134, 130), (134, 131), (134, 132), (134, 133), (134, 134), (134, 135), (134, 136), (134, 137), (134, 138), (134, 139), (134, 140), (134, 141), (134, 142), (134, 143), (134, 145), (135, 106), (135, 108), (135, 109), (135, 110), (135, 111), (135, 112), (135, 113), (135, 114), (135, 115), (135, 116), (135, 117), (135, 118), (135, 119), (135, 120), (135, 121), (135, 122), (135, 123), (135, 124), (135, 125), (135, 126), (135, 127), (135, 128), (135, 129), (135, 130), (135, 131), (135, 132), (135, 133), (135, 134), (135, 135), (135, 136), (135, 137), (135, 138), (135, 139), (135, 140),
(135, 141), (135, 142), (135, 143), (135, 145), (136, 105), (136, 107), (136, 110), (136, 111), (136, 112), (136, 113), (136, 114), (136, 115), (136, 116), (136, 117), (136, 118), (136, 119), (136, 120), (136, 121), (136, 122), (136, 123), (136, 124), (136, 125), (136, 126), (136, 127), (136, 128), (136, 129), (136, 130), (136, 131), (136, 132), (136, 133), (136, 134), (136, 135), (136, 136), (136, 137), (136, 138), (136, 139), (136, 140), (136, 141), (136, 142), (136, 144), (137, 105), (137, 109), (137, 110), (137, 111), (137, 112), (137, 113), (137, 114), (137, 115), (137, 116), (137, 117), (137, 118), (137, 119), (137, 120), (137, 121), (137, 122), (137, 123), (137, 124), (137, 125), (137, 126), (137, 127), (137, 128), (137, 129), (137, 130), (137, 131), (137, 132), (137, 133), (137, 134), (137, 135), (137, 136), (137, 137), (137, 138), (137, 139),
(137, 140), (137, 141), (137, 142), (137, 144), (138, 105), (138, 107), (138, 110), (138, 112), (138, 113), (138, 114), (138, 115), (138, 116), (138, 117), (138, 118), (138, 119), (138, 120), (138, 121), (138, 122), (138, 123), (138, 124), (138, 125), (138, 126), (138, 127), (138, 128), (138, 129), (138, 130), (138, 131), (138, 132), (138, 133), (138, 134), (138, 135), (138, 136), (138, 137), (138, 138), (138, 139), (138, 140), (138, 141), (138, 143), (139, 106), (139, 110), (139, 112), (139, 113), (139, 114), (139, 115), (139, 116), (139, 117), (139, 118), (139, 119), (139, 120), (139, 121), (139, 122), (139, 123), (139, 124), (139, 125), (139, 126), (139, 127), (139, 128), (139, 129), (139, 130), (139, 131), (139, 132), (139, 133), (139, 134), (139, 135), (139, 136), (139, 137), (139, 138), (139, 139), (139, 140), (139, 142), (140, 110), (140, 112),
(140, 113), (140, 114), (140, 115), (140, 116), (140, 117), (140, 118), (140, 119), (140, 120), (140, 121), (140, 122), (140, 123), (140, 124), (140, 125), (140, 126), (140, 127), (140, 128), (140, 129), (140, 130), (140, 131), (140, 132), (140, 133), (140, 134), (140, 135), (140, 138), (140, 139), (140, 141), (141, 110), (141, 115), (141, 116), (141, 117), (141, 118), (141, 119), (141, 120), (141, 121), (141, 122), (141, 123), (141, 124), (141, 125), (141, 126), (141, 127), (141, 128), (141, 129), (141, 130), (141, 131), (141, 132), (141, 133), (141, 134), (141, 136), (141, 137), (141, 138), (141, 139), (141, 141), (142, 110), (142, 112), (142, 113), (142, 114), (142, 115), (142, 116), (142, 117), (142, 118), (142, 119), (142, 120), (142, 121), (142, 122), (142, 123), (142, 124), (142, 125), (142, 126), (142, 127), (142, 128), (142, 129), (142, 130),
(142, 131), (142, 132), (142, 133), (142, 135), (142, 138), (142, 141), (143, 115), (143, 117), (143, 118), (143, 119), (143, 120), (143, 121), (143, 122), (143, 123), (143, 124), (143, 125), (143, 126), (143, 127), (143, 128), (143, 129), (143, 130), (143, 131), (143, 132), (143, 134), (143, 138), (143, 140), (144, 115), (144, 117), (144, 118), (144, 119), (144, 120), (144, 121), (144, 122), (144, 123), (144, 124), (144, 125), (144, 126), (144, 127), (144, 128), (144, 129), (144, 130), (144, 131), (144, 138), (145, 115), (145, 117), (145, 118), (145, 119), (145, 120), (145, 121), (145, 122), (145, 123), (145, 124), (145, 125), (145, 126), (145, 127), (145, 128), (145, 129), (145, 133), (145, 138), (145, 139), (146, 116), (146, 119), (146, 120), (146, 121), (146, 122), (146, 123), (146, 124), (146, 125), (146, 126), (146, 127), (146, 128), (146, 138),
(147, 117), (147, 119), (147, 120), (147, 121), (147, 122), (147, 123), (147, 124), (147, 125), (147, 126), (147, 127), (147, 129), (148, 119), (148, 121), (148, 122), (148, 123), (148, 124), (148, 125), (148, 126), (148, 128), (149, 119), (149, 121), (149, 122), (149, 123), (149, 128), (150, 118), (150, 120), (150, 121), (150, 125), (150, 126), (150, 129), (151, 118), (151, 123), (151, 127), (151, 128), (151, 130), (151, 132), (152, 120), (152, 121), (152, 128), (152, 133), )
coordinates_00EE00 = ((98, 135),
(99, 121), (99, 122), (99, 135), (99, 136), (100, 120), (100, 122), (100, 135), (101, 114), (101, 120), (101, 123), (101, 129), (101, 135), (101, 137), (102, 114), (102, 119), (102, 121), (102, 123), (102, 128), (102, 130), (102, 136), (103, 114), (103, 119), (103, 121), (103, 122), (103, 123), (103, 125), (103, 126), (103, 130), (104, 112), (104, 115), (104, 118), (104, 120), (104, 123), (104, 128), (104, 130), (105, 111), (105, 114), (105, 116), (105, 117), (105, 119), (105, 120), (105, 121), (105, 122), (105, 123), (105, 124), (105, 125), (105, 126), (105, 127), (105, 128), (105, 129), (105, 130), (105, 132), (106, 111), (106, 113), (106, 114), (106, 115), (106, 118), (106, 120), (106, 123), (106, 125), (106, 126), (106, 127), (106, 128), (106, 129), (106, 130), (106, 134), (107, 111), (107, 113), (107, 114), (107, 115), (107, 116), (107, 117),
(107, 118), (107, 120), (107, 123), (107, 124), (107, 125), (107, 126), (107, 127), (107, 128), (107, 129), (107, 130), (107, 131), (107, 132), (107, 134), (108, 111), (108, 113), (108, 114), (108, 115), (108, 116), (108, 117), (108, 118), (108, 119), (108, 120), (108, 123), (108, 126), (108, 127), (108, 128), (108, 129), (108, 130), (108, 131), (108, 132), (108, 133), (108, 135), (109, 111), (109, 115), (109, 116), (109, 117), (109, 118), (109, 119), (109, 120), (109, 121), (109, 123), (109, 124), (109, 125), (109, 128), (109, 129), (109, 130), (109, 131), (109, 132), (109, 133), (109, 134), (109, 136), (110, 110), (110, 112), (110, 113), (110, 114), (110, 117), (110, 118), (110, 119), (110, 120), (110, 121), (110, 123), (110, 126), (110, 127), (110, 128), (110, 129), (110, 130), (110, 131), (110, 132), (110, 133), (110, 134), (110, 135), (110, 138),
(111, 109), (111, 111), (111, 115), (111, 117), (111, 118), (111, 119), (111, 120), (111, 122), (111, 128), (111, 130), (111, 131), (111, 132), (111, 133), (111, 134), (111, 135), (111, 136), (111, 140), (112, 107), (112, 111), (112, 117), (112, 119), (112, 120), (112, 121), (112, 123), (112, 128), (112, 130), (112, 131), (112, 132), (112, 133), (112, 134), (112, 135), (112, 136), (112, 137), (112, 138), (113, 105), (113, 109), (113, 110), (113, 111), (113, 113), (113, 118), (113, 120), (113, 121), (113, 122), (113, 123), (113, 124), (113, 125), (113, 126), (113, 127), (113, 130), (113, 131), (113, 132), (113, 133), (113, 134), (113, 135), (113, 136), (113, 137), (113, 138), (113, 139), (113, 141), (114, 105), (114, 107), (114, 108), (114, 109), (114, 110), (114, 111), (114, 114), (114, 118), (114, 119), (114, 120), (114, 121), (114, 122), (114, 123),
(114, 128), (114, 129), (114, 131), (114, 132), (114, 133), (114, 134), (114, 135), (114, 136), (114, 137), (114, 138), (114, 139), (114, 141), (115, 105), (115, 107), (115, 108), (115, 109), (115, 110), (115, 111), (115, 112), (115, 113), (115, 116), (115, 117), (115, 118), (115, 119), (115, 120), (115, 121), (115, 122), (115, 123), (115, 124), (115, 127), (115, 130), (115, 132), (115, 133), (115, 134), (115, 135), (115, 136), (115, 137), (115, 138), (115, 139), (115, 141), (116, 105), (116, 126), (116, 131), (116, 133), (116, 134), (116, 135), (116, 136), (116, 137), (116, 138), (116, 139), (116, 141), (117, 106), (117, 108), (117, 109), (117, 110), (117, 111), (117, 112), (117, 113), (117, 114), (117, 115), (117, 116), (117, 117), (117, 118), (117, 119), (117, 120), (117, 121), (117, 122), (117, 124), (117, 131), (117, 140), (118, 132), (118, 134),
(118, 135), (118, 136), (118, 138), (118, 140), (119, 132), (119, 135), (119, 139), (119, 140), )
coordinates_E0E1E1 = ((126, 127),
(126, 134), (127, 118), (127, 126), (127, 134), (128, 118), (128, 125), (128, 128), (129, 119), (129, 128), (129, 129), (130, 123), (130, 128), (130, 130), (131, 122), (131, 128), (131, 129), (132, 122), (132, 128), (134, 122), (136, 121), (137, 121), )
coordinates_E1E1E1 = ((111, 125),
(112, 114), )
| coordinates_01_ee00 = ((121, 126), (121, 132), (121, 134), (121, 135), (121, 137), (121, 138), (121, 139), (121, 140), (121, 141), (122, 114), (122, 115), (122, 116), (122, 117), (122, 119), (122, 125), (122, 127), (122, 128), (122, 142), (123, 110), (123, 111), (123, 112), (123, 113), (123, 120), (123, 124), (123, 126), (123, 130), (123, 132), (123, 133), (123, 134), (123, 135), (123, 136), (123, 137), (123, 138), (123, 139), (123, 140), (123, 141), (123, 144), (124, 107), (124, 109), (124, 114), (124, 115), (124, 116), (124, 117), (124, 118), (124, 120), (124, 124), (124, 125), (124, 126), (124, 127), (124, 128), (124, 129), (124, 131), (124, 132), (124, 133), (124, 134), (124, 135), (124, 136), (124, 137), (124, 138), (124, 139), (124, 140), (124, 141), (124, 142), (124, 146), (125, 105), (125, 110), (125, 111), (125, 112), (125, 113), (125, 114), (125, 115), (125, 116), (125, 117), (125, 118), (125, 119), (125, 120), (125, 122), (125, 124), (125, 125), (125, 126), (125, 127), (125, 128), (125, 129), (125, 130), (125, 131), (125, 132), (125, 133), (125, 134), (125, 135), (125, 136), (125, 137), (125, 138), (125, 139), (125, 140), (125, 141), (125, 142), (125, 143), (125, 144), (125, 148), (126, 103), (126, 107), (126, 108), (126, 109), (126, 110), (126, 111), (126, 112), (126, 113), (126, 114), (126, 115), (126, 116), (126, 117), (126, 118), (126, 119), (126, 120), (126, 124), (126, 125), (126, 126), (126, 127), (126, 128), (126, 129), (126, 130), (126, 131), (126, 132), (126, 133), (126, 134), (126, 135), (126, 136), (126, 137), (126, 138), (126, 139), (126, 140), (126, 141), (126, 142), (126, 143), (126, 144), (126, 145), (126, 146), (126, 149), (127, 102), (127, 105), (127, 106), (127, 107), (127, 108), (127, 109), (127, 110), (127, 111), (127, 112), (127, 113), (127, 114), (127, 115), (127, 116), (127, 117), (127, 118), (127, 119), (127, 120), (127, 121), (127, 122), (127, 123), (127, 124), (127, 125), (127, 126), (127, 127), (127, 128), (127, 129), (127, 130), (127, 131), (127, 132), (127, 133), (127, 134), (127, 135), (127, 136), (127, 137), (127, 138), (127, 139), (127, 140), (127, 141), (127, 142), (127, 143), (127, 144), (127, 145), (127, 146), (127, 147), (127, 148), (127, 150), (128, 103), (128, 105), (128, 106), (128, 107), (128, 108), (128, 109), (128, 110), (128, 111), (128, 112), (128, 113), (128, 114), (128, 115), (128, 116), (128, 117), (128, 118), (128, 119), (128, 120), (128, 121), (128, 122), (128, 123), (128, 124), (128, 125), (128, 126), (128, 127), (128, 128), (128, 129), (128, 130), (128, 131), (128, 132), (128, 133), (128, 134), (128, 135), (128, 136), (128, 137), (128, 138), (128, 139), (128, 140), (128, 141), (128, 142), (128, 143), (128, 144), (128, 145), (128, 146), (128, 147), (128, 149), (129, 103), (129, 105), (129, 106), (129, 107), (129, 108), (129, 109), (129, 110), (129, 111), (129, 112), (129, 113), (129, 114), (129, 115), (129, 116), (129, 117), (129, 118), (129, 119), (129, 120), (129, 121), (129, 122), (129, 123), (129, 124), (129, 125), (129, 126), (129, 127), (129, 128), (129, 129), (129, 130), (129, 131), (129, 132), (129, 133), (129, 134), (129, 135), (129, 136), (129, 137), (129, 138), (129, 139), (129, 140), (129, 141), (129, 142), (129, 143), (129, 144), (129, 145), (129, 146), (129, 147), (129, 149), (130, 104), (130, 107), (130, 108), (130, 109), (130, 110), (130, 111), (130, 112), (130, 113), (130, 114), (130, 115), (130, 116), (130, 117), (130, 118), (130, 119), (130, 120), (130, 121), (130, 122), (130, 123), (130, 124), (130, 125), (130, 126), (130, 127), (130, 128), (130, 129), (130, 130), (130, 131), (130, 132), (130, 133), (130, 134), (130, 135), (130, 136), (130, 137), (130, 138), (130, 139), (130, 140), (130, 141), (130, 142), (130, 143), (130, 144), (130, 145), (130, 146), (130, 148), (131, 104), (131, 106), (131, 107), (131, 108), (131, 109), (131, 110), (131, 111), (131, 112), (131, 113), (131, 114), (131, 115), (131, 116), (131, 117), (131, 118), (131, 119), (131, 120), (131, 121), (131, 122), (131, 123), (131, 124), (131, 125), (131, 126), (131, 127), (131, 128), (131, 129), (131, 130), (131, 131), (131, 132), (131, 133), (131, 134), (131, 135), (131, 136), (131, 137), (131, 138), (131, 139), (131, 140), (131, 141), (131, 142), (131, 143), (131, 144), (131, 145), (131, 147), (132, 108), (132, 109), (132, 110), (132, 111), (132, 112), (132, 113), (132, 114), (132, 115), (132, 116), (132, 117), (132, 118), (132, 119), (132, 120), (132, 121), (132, 122), (132, 123), (132, 124), (132, 125), (132, 126), (132, 127), (132, 128), (132, 129), (132, 130), (132, 131), (132, 132), (132, 133), (132, 134), (132, 135), (132, 136), (132, 137), (132, 138), (132, 139), (132, 140), (132, 141), (132, 142), (132, 143), (132, 144), (132, 146), (133, 108), (133, 110), (133, 111), (133, 112), (133, 113), (133, 114), (133, 115), (133, 116), (133, 117), (133, 118), (133, 119), (133, 120), (133, 121), (133, 122), (133, 123), (133, 124), (133, 125), (133, 126), (133, 127), (133, 128), (133, 129), (133, 130), (133, 131), (133, 132), (133, 133), (133, 134), (133, 135), (133, 136), (133, 137), (133, 138), (133, 139), (133, 140), (133, 141), (133, 142), (133, 143), (133, 144), (133, 146), (134, 107), (134, 108), (134, 109), (134, 110), (134, 111), (134, 112), (134, 113), (134, 114), (134, 115), (134, 116), (134, 117), (134, 118), (134, 119), (134, 120), (134, 121), (134, 122), (134, 123), (134, 124), (134, 125), (134, 126), (134, 127), (134, 128), (134, 129), (134, 130), (134, 131), (134, 132), (134, 133), (134, 134), (134, 135), (134, 136), (134, 137), (134, 138), (134, 139), (134, 140), (134, 141), (134, 142), (134, 143), (134, 145), (135, 106), (135, 108), (135, 109), (135, 110), (135, 111), (135, 112), (135, 113), (135, 114), (135, 115), (135, 116), (135, 117), (135, 118), (135, 119), (135, 120), (135, 121), (135, 122), (135, 123), (135, 124), (135, 125), (135, 126), (135, 127), (135, 128), (135, 129), (135, 130), (135, 131), (135, 132), (135, 133), (135, 134), (135, 135), (135, 136), (135, 137), (135, 138), (135, 139), (135, 140), (135, 141), (135, 142), (135, 143), (135, 145), (136, 105), (136, 107), (136, 110), (136, 111), (136, 112), (136, 113), (136, 114), (136, 115), (136, 116), (136, 117), (136, 118), (136, 119), (136, 120), (136, 121), (136, 122), (136, 123), (136, 124), (136, 125), (136, 126), (136, 127), (136, 128), (136, 129), (136, 130), (136, 131), (136, 132), (136, 133), (136, 134), (136, 135), (136, 136), (136, 137), (136, 138), (136, 139), (136, 140), (136, 141), (136, 142), (136, 144), (137, 105), (137, 109), (137, 110), (137, 111), (137, 112), (137, 113), (137, 114), (137, 115), (137, 116), (137, 117), (137, 118), (137, 119), (137, 120), (137, 121), (137, 122), (137, 123), (137, 124), (137, 125), (137, 126), (137, 127), (137, 128), (137, 129), (137, 130), (137, 131), (137, 132), (137, 133), (137, 134), (137, 135), (137, 136), (137, 137), (137, 138), (137, 139), (137, 140), (137, 141), (137, 142), (137, 144), (138, 105), (138, 107), (138, 110), (138, 112), (138, 113), (138, 114), (138, 115), (138, 116), (138, 117), (138, 118), (138, 119), (138, 120), (138, 121), (138, 122), (138, 123), (138, 124), (138, 125), (138, 126), (138, 127), (138, 128), (138, 129), (138, 130), (138, 131), (138, 132), (138, 133), (138, 134), (138, 135), (138, 136), (138, 137), (138, 138), (138, 139), (138, 140), (138, 141), (138, 143), (139, 106), (139, 110), (139, 112), (139, 113), (139, 114), (139, 115), (139, 116), (139, 117), (139, 118), (139, 119), (139, 120), (139, 121), (139, 122), (139, 123), (139, 124), (139, 125), (139, 126), (139, 127), (139, 128), (139, 129), (139, 130), (139, 131), (139, 132), (139, 133), (139, 134), (139, 135), (139, 136), (139, 137), (139, 138), (139, 139), (139, 140), (139, 142), (140, 110), (140, 112), (140, 113), (140, 114), (140, 115), (140, 116), (140, 117), (140, 118), (140, 119), (140, 120), (140, 121), (140, 122), (140, 123), (140, 124), (140, 125), (140, 126), (140, 127), (140, 128), (140, 129), (140, 130), (140, 131), (140, 132), (140, 133), (140, 134), (140, 135), (140, 138), (140, 139), (140, 141), (141, 110), (141, 115), (141, 116), (141, 117), (141, 118), (141, 119), (141, 120), (141, 121), (141, 122), (141, 123), (141, 124), (141, 125), (141, 126), (141, 127), (141, 128), (141, 129), (141, 130), (141, 131), (141, 132), (141, 133), (141, 134), (141, 136), (141, 137), (141, 138), (141, 139), (141, 141), (142, 110), (142, 112), (142, 113), (142, 114), (142, 115), (142, 116), (142, 117), (142, 118), (142, 119), (142, 120), (142, 121), (142, 122), (142, 123), (142, 124), (142, 125), (142, 126), (142, 127), (142, 128), (142, 129), (142, 130), (142, 131), (142, 132), (142, 133), (142, 135), (142, 138), (142, 141), (143, 115), (143, 117), (143, 118), (143, 119), (143, 120), (143, 121), (143, 122), (143, 123), (143, 124), (143, 125), (143, 126), (143, 127), (143, 128), (143, 129), (143, 130), (143, 131), (143, 132), (143, 134), (143, 138), (143, 140), (144, 115), (144, 117), (144, 118), (144, 119), (144, 120), (144, 121), (144, 122), (144, 123), (144, 124), (144, 125), (144, 126), (144, 127), (144, 128), (144, 129), (144, 130), (144, 131), (144, 138), (145, 115), (145, 117), (145, 118), (145, 119), (145, 120), (145, 121), (145, 122), (145, 123), (145, 124), (145, 125), (145, 126), (145, 127), (145, 128), (145, 129), (145, 133), (145, 138), (145, 139), (146, 116), (146, 119), (146, 120), (146, 121), (146, 122), (146, 123), (146, 124), (146, 125), (146, 126), (146, 127), (146, 128), (146, 138), (147, 117), (147, 119), (147, 120), (147, 121), (147, 122), (147, 123), (147, 124), (147, 125), (147, 126), (147, 127), (147, 129), (148, 119), (148, 121), (148, 122), (148, 123), (148, 124), (148, 125), (148, 126), (148, 128), (149, 119), (149, 121), (149, 122), (149, 123), (149, 128), (150, 118), (150, 120), (150, 121), (150, 125), (150, 126), (150, 129), (151, 118), (151, 123), (151, 127), (151, 128), (151, 130), (151, 132), (152, 120), (152, 121), (152, 128), (152, 133))
coordinates_00_ee00 = ((98, 135), (99, 121), (99, 122), (99, 135), (99, 136), (100, 120), (100, 122), (100, 135), (101, 114), (101, 120), (101, 123), (101, 129), (101, 135), (101, 137), (102, 114), (102, 119), (102, 121), (102, 123), (102, 128), (102, 130), (102, 136), (103, 114), (103, 119), (103, 121), (103, 122), (103, 123), (103, 125), (103, 126), (103, 130), (104, 112), (104, 115), (104, 118), (104, 120), (104, 123), (104, 128), (104, 130), (105, 111), (105, 114), (105, 116), (105, 117), (105, 119), (105, 120), (105, 121), (105, 122), (105, 123), (105, 124), (105, 125), (105, 126), (105, 127), (105, 128), (105, 129), (105, 130), (105, 132), (106, 111), (106, 113), (106, 114), (106, 115), (106, 118), (106, 120), (106, 123), (106, 125), (106, 126), (106, 127), (106, 128), (106, 129), (106, 130), (106, 134), (107, 111), (107, 113), (107, 114), (107, 115), (107, 116), (107, 117), (107, 118), (107, 120), (107, 123), (107, 124), (107, 125), (107, 126), (107, 127), (107, 128), (107, 129), (107, 130), (107, 131), (107, 132), (107, 134), (108, 111), (108, 113), (108, 114), (108, 115), (108, 116), (108, 117), (108, 118), (108, 119), (108, 120), (108, 123), (108, 126), (108, 127), (108, 128), (108, 129), (108, 130), (108, 131), (108, 132), (108, 133), (108, 135), (109, 111), (109, 115), (109, 116), (109, 117), (109, 118), (109, 119), (109, 120), (109, 121), (109, 123), (109, 124), (109, 125), (109, 128), (109, 129), (109, 130), (109, 131), (109, 132), (109, 133), (109, 134), (109, 136), (110, 110), (110, 112), (110, 113), (110, 114), (110, 117), (110, 118), (110, 119), (110, 120), (110, 121), (110, 123), (110, 126), (110, 127), (110, 128), (110, 129), (110, 130), (110, 131), (110, 132), (110, 133), (110, 134), (110, 135), (110, 138), (111, 109), (111, 111), (111, 115), (111, 117), (111, 118), (111, 119), (111, 120), (111, 122), (111, 128), (111, 130), (111, 131), (111, 132), (111, 133), (111, 134), (111, 135), (111, 136), (111, 140), (112, 107), (112, 111), (112, 117), (112, 119), (112, 120), (112, 121), (112, 123), (112, 128), (112, 130), (112, 131), (112, 132), (112, 133), (112, 134), (112, 135), (112, 136), (112, 137), (112, 138), (113, 105), (113, 109), (113, 110), (113, 111), (113, 113), (113, 118), (113, 120), (113, 121), (113, 122), (113, 123), (113, 124), (113, 125), (113, 126), (113, 127), (113, 130), (113, 131), (113, 132), (113, 133), (113, 134), (113, 135), (113, 136), (113, 137), (113, 138), (113, 139), (113, 141), (114, 105), (114, 107), (114, 108), (114, 109), (114, 110), (114, 111), (114, 114), (114, 118), (114, 119), (114, 120), (114, 121), (114, 122), (114, 123), (114, 128), (114, 129), (114, 131), (114, 132), (114, 133), (114, 134), (114, 135), (114, 136), (114, 137), (114, 138), (114, 139), (114, 141), (115, 105), (115, 107), (115, 108), (115, 109), (115, 110), (115, 111), (115, 112), (115, 113), (115, 116), (115, 117), (115, 118), (115, 119), (115, 120), (115, 121), (115, 122), (115, 123), (115, 124), (115, 127), (115, 130), (115, 132), (115, 133), (115, 134), (115, 135), (115, 136), (115, 137), (115, 138), (115, 139), (115, 141), (116, 105), (116, 126), (116, 131), (116, 133), (116, 134), (116, 135), (116, 136), (116, 137), (116, 138), (116, 139), (116, 141), (117, 106), (117, 108), (117, 109), (117, 110), (117, 111), (117, 112), (117, 113), (117, 114), (117, 115), (117, 116), (117, 117), (117, 118), (117, 119), (117, 120), (117, 121), (117, 122), (117, 124), (117, 131), (117, 140), (118, 132), (118, 134), (118, 135), (118, 136), (118, 138), (118, 140), (119, 132), (119, 135), (119, 139), (119, 140))
coordinates_e0_e1_e1 = ((126, 127), (126, 134), (127, 118), (127, 126), (127, 134), (128, 118), (128, 125), (128, 128), (129, 119), (129, 128), (129, 129), (130, 123), (130, 128), (130, 130), (131, 122), (131, 128), (131, 129), (132, 122), (132, 128), (134, 122), (136, 121), (137, 121))
coordinates_e1_e1_e1 = ((111, 125), (112, 114)) |
cars = 100
space_in_a_car = 4.0
drivers = 30
passengers = 90
cars_not_driven = cars -drivers
cars_driven = drivers
carpool_carpacity = cars_driven * space_in_a_car
average_passengers_per_car = passengers / cars_driven
print("There are", cars, "cars available")
print("There are only", drivers, "drivers available")
print("There will be", cars_not_driven, "empty cars today")
print("We can transport", carpool_carpacity, "people today")
print("We have", passengers, "to carpool today")
print("We need to put about", average_passengers_per_car, "people in each car") | cars = 100
space_in_a_car = 4.0
drivers = 30
passengers = 90
cars_not_driven = cars - drivers
cars_driven = drivers
carpool_carpacity = cars_driven * space_in_a_car
average_passengers_per_car = passengers / cars_driven
print('There are', cars, 'cars available')
print('There are only', drivers, 'drivers available')
print('There will be', cars_not_driven, 'empty cars today')
print('We can transport', carpool_carpacity, 'people today')
print('We have', passengers, 'to carpool today')
print('We need to put about', average_passengers_per_car, 'people in each car') |
course = "Python Programming"
print(course.upper())
print(course.lower())
print(course.title())
course = " Python Programming"
print(course)
print(course.strip())
print(course.find("Pro"))
print(course.find("pro"))
print(course.replace("P", "-"))
print("Programming" in course)
print("Programming" not in course)
| course = 'Python Programming'
print(course.upper())
print(course.lower())
print(course.title())
course = ' Python Programming'
print(course)
print(course.strip())
print(course.find('Pro'))
print(course.find('pro'))
print(course.replace('P', '-'))
print('Programming' in course)
print('Programming' not in course) |
def init():
# Set locale environment
# Set config
# Set user and group
# init logger
pass | def init():
pass |
def determinant(matA):
dimA = []
# find dimensions of arrA
a = matA
while type(a) == list:
dimA.append(len(a))
a = a[0]
#is it square
if dimA[0] != dimA[1]:
raise Exception("Matrix is not square")
#find determinant
total = 0
if dimA[0] == 2:
total = matA[0][0] * matA[1][1] - matA[1][0] * matA[0][1]
return total
else:
sign = 1
for i in range(dimA[0]):
temp = matA[1:]
#remove the current column from the temp stuff
for j in range(dimA[0]-1):
temp[j] = temp[j][0:i] + temp[j][i+1:]
sub = determinant(temp)
total = total + sign * matA[0][i] * sub
sign *= -1
return total
matA = [[1,2,3],[4,5,6],[7,8,15]]
print(determinant(matA)) | def determinant(matA):
dim_a = []
a = matA
while type(a) == list:
dimA.append(len(a))
a = a[0]
if dimA[0] != dimA[1]:
raise exception('Matrix is not square')
total = 0
if dimA[0] == 2:
total = matA[0][0] * matA[1][1] - matA[1][0] * matA[0][1]
return total
else:
sign = 1
for i in range(dimA[0]):
temp = matA[1:]
for j in range(dimA[0] - 1):
temp[j] = temp[j][0:i] + temp[j][i + 1:]
sub = determinant(temp)
total = total + sign * matA[0][i] * sub
sign *= -1
return total
mat_a = [[1, 2, 3], [4, 5, 6], [7, 8, 15]]
print(determinant(matA)) |
#
# PySNMP MIB module BAY-STACK-MIB (http://snmplabs.com/pysmi)
# ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/BAY-STACK-MIB
# Produced by pysmi-0.3.4 at Mon Apr 29 17:19:06 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, ObjectIdentifier, Integer = mibBuilder.importSymbols("ASN1", "OctetString", "ObjectIdentifier", "Integer")
NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues")
SingleValueConstraint, ConstraintsUnion, ConstraintsIntersection, ValueSizeConstraint, ValueRangeConstraint = mibBuilder.importSymbols("ASN1-REFINEMENT", "SingleValueConstraint", "ConstraintsUnion", "ConstraintsIntersection", "ValueSizeConstraint", "ValueRangeConstraint")
NotificationGroup, ModuleCompliance = mibBuilder.importSymbols("SNMPv2-CONF", "NotificationGroup", "ModuleCompliance")
TimeTicks, MibScalar, MibTable, MibTableRow, MibTableColumn, Gauge32, Counter64, Bits, Counter32, ModuleIdentity, ObjectIdentity, IpAddress, iso, Integer32, NotificationType, MibIdentifier, Unsigned32 = mibBuilder.importSymbols("SNMPv2-SMI", "TimeTicks", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "Gauge32", "Counter64", "Bits", "Counter32", "ModuleIdentity", "ObjectIdentity", "IpAddress", "iso", "Integer32", "NotificationType", "MibIdentifier", "Unsigned32")
TruthValue, TextualConvention, DisplayString = mibBuilder.importSymbols("SNMPv2-TC", "TruthValue", "TextualConvention", "DisplayString")
bayStackMibs, = mibBuilder.importSymbols("SYNOPTICS-ROOT-MIB", "bayStackMibs")
bayStackMib = ModuleIdentity((1, 3, 6, 1, 4, 1, 45, 5, 13))
bayStackMib.setRevisions(('2013-10-11 00:00', '2012-10-02 00:00', '2009-09-28 00:00', '2007-09-04 00:00', '2005-08-22 00:00',))
if mibBuilder.loadTexts: bayStackMib.setLastUpdated('201310110000Z')
if mibBuilder.loadTexts: bayStackMib.setOrganization('Nortel Networks')
bayStackObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 45, 5, 13, 1))
bayStackConfig = MibIdentifier((1, 3, 6, 1, 4, 1, 45, 5, 13, 1, 1))
bayStackConfigExpectedStackSize = MibScalar((1, 3, 6, 1, 4, 1, 45, 5, 13, 1, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 8))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: bayStackConfigExpectedStackSize.setStatus('current')
bayStackConfigStackErrorNotificationInterval = MibScalar((1, 3, 6, 1, 4, 1, 45, 5, 13, 1, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535)).clone(60)).setUnits('Seconds').setMaxAccess("readwrite")
if mibBuilder.loadTexts: bayStackConfigStackErrorNotificationInterval.setStatus('current')
bayStackConfigStackErrorNotificationEnabled = MibScalar((1, 3, 6, 1, 4, 1, 45, 5, 13, 1, 1, 3), TruthValue()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: bayStackConfigStackErrorNotificationEnabled.setStatus('current')
bayStackConfigStackRebootUnitOnFailure = MibScalar((1, 3, 6, 1, 4, 1, 45, 5, 13, 1, 1, 4), TruthValue()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: bayStackConfigStackRebootUnitOnFailure.setStatus('current')
bayStackConfigStackRetryCount = MibScalar((1, 3, 6, 1, 4, 1, 45, 5, 13, 1, 1, 5), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 4294967295))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: bayStackConfigStackRetryCount.setStatus('current')
bayStackUnitConfigTable = MibTable((1, 3, 6, 1, 4, 1, 45, 5, 13, 1, 2), )
if mibBuilder.loadTexts: bayStackUnitConfigTable.setStatus('current')
bayStackUnitConfigEntry = MibTableRow((1, 3, 6, 1, 4, 1, 45, 5, 13, 1, 2, 1), ).setIndexNames((0, "BAY-STACK-MIB", "bayStackUnitConfigIndex"))
if mibBuilder.loadTexts: bayStackUnitConfigEntry.setStatus('current')
bayStackUnitConfigIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 45, 5, 13, 1, 2, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 8))).setMaxAccess("readonly")
if mibBuilder.loadTexts: bayStackUnitConfigIndex.setStatus('current')
bayStackUnitConfigRearPortAdminMode = MibTableColumn((1, 3, 6, 1, 4, 1, 45, 5, 13, 1, 2, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("standalone", 1), ("stacking", 2), ("spb", 3)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: bayStackUnitConfigRearPortAdminMode.setStatus('current')
bayStackUnitConfigRearPortOperMode = MibTableColumn((1, 3, 6, 1, 4, 1, 45, 5, 13, 1, 2, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("standalone", 1), ("stacking", 2), ("spb", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: bayStackUnitConfigRearPortOperMode.setStatus('current')
mibBuilder.exportSymbols("BAY-STACK-MIB", bayStackMib=bayStackMib, bayStackUnitConfigIndex=bayStackUnitConfigIndex, bayStackConfigStackErrorNotificationEnabled=bayStackConfigStackErrorNotificationEnabled, PYSNMP_MODULE_ID=bayStackMib, bayStackConfigStackRetryCount=bayStackConfigStackRetryCount, bayStackConfigStackErrorNotificationInterval=bayStackConfigStackErrorNotificationInterval, bayStackUnitConfigRearPortOperMode=bayStackUnitConfigRearPortOperMode, bayStackUnitConfigEntry=bayStackUnitConfigEntry, bayStackConfigStackRebootUnitOnFailure=bayStackConfigStackRebootUnitOnFailure, bayStackObjects=bayStackObjects, bayStackUnitConfigRearPortAdminMode=bayStackUnitConfigRearPortAdminMode, bayStackConfig=bayStackConfig, bayStackUnitConfigTable=bayStackUnitConfigTable, bayStackConfigExpectedStackSize=bayStackConfigExpectedStackSize)
| (octet_string, object_identifier, integer) = mibBuilder.importSymbols('ASN1', 'OctetString', 'ObjectIdentifier', 'Integer')
(named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues')
(single_value_constraint, constraints_union, constraints_intersection, value_size_constraint, value_range_constraint) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'SingleValueConstraint', 'ConstraintsUnion', 'ConstraintsIntersection', 'ValueSizeConstraint', 'ValueRangeConstraint')
(notification_group, module_compliance) = mibBuilder.importSymbols('SNMPv2-CONF', 'NotificationGroup', 'ModuleCompliance')
(time_ticks, mib_scalar, mib_table, mib_table_row, mib_table_column, gauge32, counter64, bits, counter32, module_identity, object_identity, ip_address, iso, integer32, notification_type, mib_identifier, unsigned32) = mibBuilder.importSymbols('SNMPv2-SMI', 'TimeTicks', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn', 'Gauge32', 'Counter64', 'Bits', 'Counter32', 'ModuleIdentity', 'ObjectIdentity', 'IpAddress', 'iso', 'Integer32', 'NotificationType', 'MibIdentifier', 'Unsigned32')
(truth_value, textual_convention, display_string) = mibBuilder.importSymbols('SNMPv2-TC', 'TruthValue', 'TextualConvention', 'DisplayString')
(bay_stack_mibs,) = mibBuilder.importSymbols('SYNOPTICS-ROOT-MIB', 'bayStackMibs')
bay_stack_mib = module_identity((1, 3, 6, 1, 4, 1, 45, 5, 13))
bayStackMib.setRevisions(('2013-10-11 00:00', '2012-10-02 00:00', '2009-09-28 00:00', '2007-09-04 00:00', '2005-08-22 00:00'))
if mibBuilder.loadTexts:
bayStackMib.setLastUpdated('201310110000Z')
if mibBuilder.loadTexts:
bayStackMib.setOrganization('Nortel Networks')
bay_stack_objects = mib_identifier((1, 3, 6, 1, 4, 1, 45, 5, 13, 1))
bay_stack_config = mib_identifier((1, 3, 6, 1, 4, 1, 45, 5, 13, 1, 1))
bay_stack_config_expected_stack_size = mib_scalar((1, 3, 6, 1, 4, 1, 45, 5, 13, 1, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 8))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
bayStackConfigExpectedStackSize.setStatus('current')
bay_stack_config_stack_error_notification_interval = mib_scalar((1, 3, 6, 1, 4, 1, 45, 5, 13, 1, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535)).clone(60)).setUnits('Seconds').setMaxAccess('readwrite')
if mibBuilder.loadTexts:
bayStackConfigStackErrorNotificationInterval.setStatus('current')
bay_stack_config_stack_error_notification_enabled = mib_scalar((1, 3, 6, 1, 4, 1, 45, 5, 13, 1, 1, 3), truth_value()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
bayStackConfigStackErrorNotificationEnabled.setStatus('current')
bay_stack_config_stack_reboot_unit_on_failure = mib_scalar((1, 3, 6, 1, 4, 1, 45, 5, 13, 1, 1, 4), truth_value()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
bayStackConfigStackRebootUnitOnFailure.setStatus('current')
bay_stack_config_stack_retry_count = mib_scalar((1, 3, 6, 1, 4, 1, 45, 5, 13, 1, 1, 5), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 4294967295))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
bayStackConfigStackRetryCount.setStatus('current')
bay_stack_unit_config_table = mib_table((1, 3, 6, 1, 4, 1, 45, 5, 13, 1, 2))
if mibBuilder.loadTexts:
bayStackUnitConfigTable.setStatus('current')
bay_stack_unit_config_entry = mib_table_row((1, 3, 6, 1, 4, 1, 45, 5, 13, 1, 2, 1)).setIndexNames((0, 'BAY-STACK-MIB', 'bayStackUnitConfigIndex'))
if mibBuilder.loadTexts:
bayStackUnitConfigEntry.setStatus('current')
bay_stack_unit_config_index = mib_table_column((1, 3, 6, 1, 4, 1, 45, 5, 13, 1, 2, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 8))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
bayStackUnitConfigIndex.setStatus('current')
bay_stack_unit_config_rear_port_admin_mode = mib_table_column((1, 3, 6, 1, 4, 1, 45, 5, 13, 1, 2, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('standalone', 1), ('stacking', 2), ('spb', 3)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
bayStackUnitConfigRearPortAdminMode.setStatus('current')
bay_stack_unit_config_rear_port_oper_mode = mib_table_column((1, 3, 6, 1, 4, 1, 45, 5, 13, 1, 2, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('standalone', 1), ('stacking', 2), ('spb', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
bayStackUnitConfigRearPortOperMode.setStatus('current')
mibBuilder.exportSymbols('BAY-STACK-MIB', bayStackMib=bayStackMib, bayStackUnitConfigIndex=bayStackUnitConfigIndex, bayStackConfigStackErrorNotificationEnabled=bayStackConfigStackErrorNotificationEnabled, PYSNMP_MODULE_ID=bayStackMib, bayStackConfigStackRetryCount=bayStackConfigStackRetryCount, bayStackConfigStackErrorNotificationInterval=bayStackConfigStackErrorNotificationInterval, bayStackUnitConfigRearPortOperMode=bayStackUnitConfigRearPortOperMode, bayStackUnitConfigEntry=bayStackUnitConfigEntry, bayStackConfigStackRebootUnitOnFailure=bayStackConfigStackRebootUnitOnFailure, bayStackObjects=bayStackObjects, bayStackUnitConfigRearPortAdminMode=bayStackUnitConfigRearPortAdminMode, bayStackConfig=bayStackConfig, bayStackUnitConfigTable=bayStackUnitConfigTable, bayStackConfigExpectedStackSize=bayStackConfigExpectedStackSize) |
objects = {}
def instantiate():
# This function is called once during server startup. Modify the global 'objects' dict with of instantiated
# shared objects that you wish to store in the parent process and have access to from child request handler
# processes. Each object must support being shared via the multiproccessing module or else the object will
# just be copied into the children. See http://docs.python.org/library/multiprocessing.html
#
# For example, in this function you might put:
#
# import multiprocessing
# objects['num_requests'] = multiprocessing.Value('i',0)
#
# And in your request handler, put:
#
# from magnum.shared import objects
# objects['num_requests'].value += 1
return
| objects = {}
def instantiate():
return |
host = "localhost"
port = 9999
dboptions = {
"host": "194.67.198.163",
"user": "postgres",
"password": "werdwerd2012",
"database": "zno_bot",
'migrate': True
}
API_PATH = '/api/'
API_VERSION = 'v1'
API_URL = API_PATH + API_VERSION
| host = 'localhost'
port = 9999
dboptions = {'host': '194.67.198.163', 'user': 'postgres', 'password': 'werdwerd2012', 'database': 'zno_bot', 'migrate': True}
api_path = '/api/'
api_version = 'v1'
api_url = API_PATH + API_VERSION |
class Frequency:
def __init__(self):
self.frequency = 0
def increment(self, i):
self.frequency = self.frequency + i
def decrement(self, i):
self.frequency = self.frequency - i
def __str__(self):
return str(self.frequency)
def __repr__(self):
return str(self.frequency)
def get_steps(filename):
with open(f'data/{filename}', 'r') as f:
raw_steps = f.readlines()
steps = []
for i in raw_steps:
steps.append([i[0], int(i[1:])])
return steps
def part_one():
freq = Frequency()
steps = get_steps('day1-1.txt')
ops = {'+': freq.increment, '-': freq.decrement}
for i in steps:
ops[i[0]](i[1])
return freq
def part_two():
freq = Frequency()
steps = get_steps('day1-1.txt')
ops = {'+': freq.increment, '-': freq.decrement}
current = 0
already_seen = []
while current not in already_seen:
for i in steps:
if current in already_seen:
break
already_seen.append(int(str(freq)))
ops[i[0]](i[1])
current = int(str(freq))
return freq
if __name__ == '__main__':
print(f'Part 1: {part_one()}\nPart 2: {part_two()}')
| class Frequency:
def __init__(self):
self.frequency = 0
def increment(self, i):
self.frequency = self.frequency + i
def decrement(self, i):
self.frequency = self.frequency - i
def __str__(self):
return str(self.frequency)
def __repr__(self):
return str(self.frequency)
def get_steps(filename):
with open(f'data/{filename}', 'r') as f:
raw_steps = f.readlines()
steps = []
for i in raw_steps:
steps.append([i[0], int(i[1:])])
return steps
def part_one():
freq = frequency()
steps = get_steps('day1-1.txt')
ops = {'+': freq.increment, '-': freq.decrement}
for i in steps:
ops[i[0]](i[1])
return freq
def part_two():
freq = frequency()
steps = get_steps('day1-1.txt')
ops = {'+': freq.increment, '-': freq.decrement}
current = 0
already_seen = []
while current not in already_seen:
for i in steps:
if current in already_seen:
break
already_seen.append(int(str(freq)))
ops[i[0]](i[1])
current = int(str(freq))
return freq
if __name__ == '__main__':
print(f'Part 1: {part_one()}\nPart 2: {part_two()}') |
'''
Created on Mar 30, 2019
@author: PIKU
'''
def justSayHello():
print("Hello ...")
def getHello():
return "Hello guys"
if __name__ == '__main__':
justSayHello()
x = getHello()
print(x)
| """
Created on Mar 30, 2019
@author: PIKU
"""
def just_say_hello():
print('Hello ...')
def get_hello():
return 'Hello guys'
if __name__ == '__main__':
just_say_hello()
x = get_hello()
print(x) |
DATA_S3 = "bioanalyze-ec2-test-nf-rnaseq-06o3qdtm7v"
JOB_S3 = DATA_S3
# These come from the terraform code in auto-deployment/terraform
ECR = "dabbleofdevops/nextflow-rnaseq-tutorial"
COMPUTE_ENVIRONMENT = "bioanalyze-ec2-test-nf-rnaseq"
JOB_DEF_NAME = "bioanalyze-ec2-test-nf-rnaseq"
JOB_QUEUE_NAME = "bioanalyze-ec2-test-nf-rnaseq-default-job-queue"
JOB_ROLE = "arn:aws:iam::018835827632:role/bioanalyze-ec2-test-nf-rnaseq-batch_execution_role"
SECRET_NAME = "bioanalyze-ec2-test-nf-rnaseq"
SECRET_ARN = "arn:aws:secretsmanager:us-east-1:018835827632:secret:bioanalyze-ec2-test-nf-rnaseq-Zg7kMY" | data_s3 = 'bioanalyze-ec2-test-nf-rnaseq-06o3qdtm7v'
job_s3 = DATA_S3
ecr = 'dabbleofdevops/nextflow-rnaseq-tutorial'
compute_environment = 'bioanalyze-ec2-test-nf-rnaseq'
job_def_name = 'bioanalyze-ec2-test-nf-rnaseq'
job_queue_name = 'bioanalyze-ec2-test-nf-rnaseq-default-job-queue'
job_role = 'arn:aws:iam::018835827632:role/bioanalyze-ec2-test-nf-rnaseq-batch_execution_role'
secret_name = 'bioanalyze-ec2-test-nf-rnaseq'
secret_arn = 'arn:aws:secretsmanager:us-east-1:018835827632:secret:bioanalyze-ec2-test-nf-rnaseq-Zg7kMY' |
#!/usr/bin/env python3
class stressTestPV:
def __init__( self, pvName ):
self._pvName = pvName
self._tsValues = {} # Dict of collected values, keys are float timestamps
self._tsRates = {} # Dict of collection rates, keys are int secPastEpoch values
self._tsMissRates = {} # Dict of missed count rates, keys are int secPastEpoch values
self._timeoutRates= {} # Dict of timeout rates, keys are int secPastEpoch values
self._numMissed = 0 # Cumulative number of missed counts
self._numTimeouts = 0 # Cumulative number of timeouts
self._startTime = None # Earliest timestamp of all collected values
self._endTime = None # Latest timestamp of all collected values
# Accessors
def getName( self ):
return self._pvName
def getNumTsValues( self ):
return len(self._tsValues)
def getNumMissed( self ):
return self._numMissed
def getNumTimeouts( self ):
return self._numTimeouts
def getEndTime( self ):
return self._endTime;
def getStartTime( self ):
return self._startTime;
def getTsValues( self ):
return self._tsValues
def getTsRates( self ):
return self._tsRates
def getTsMissRates( self ):
return self._tsMissRates
def getTimeoutRates( self ):
return self._timeoutRates
def addTsValues( self, tsValues ):
# TODO: check for more than one value for the same timestamp
self._tsValues.update( tsValues )
def addTsTimeouts( self, tsTimeouts ):
self._tsTimeouts.update( tsTimeouts )
# stressTestPV.analyze
def analyze( self ):
( priorSec, priorValue ) = ( None, None )
( count, missed, timeouts ) = ( 0, 0, 0 )
sec = None
for timestamp in self._tsValues:
sec = int(timestamp)
if priorSec is None:
self._endTime = timestamp
self._startTime = timestamp
priorSec = sec - 1
if sec != priorSec:
if self._endTime < sec:
self._endTime = sec
self._tsRates[priorSec] = count
self._tsMissRates[priorSec] = missed
self._timeoutRates[priorSec] = timeouts
self._numMissed += missed
self._numTimeouts += timeouts
( count, missed, timeouts ) = ( 0, 0, 0 )
# Advance priorSec, filling gaps w/ zeroes
while True:
priorSec += 1
if priorSec >= sec:
break
self._tsRates[priorSec] = 0
self._tsMissRates[priorSec] = 0
self._timeoutRates[priorSec] = 0
priorSec = sec
count += 1
value = self._tsValues[timestamp]
if value is None:
timeouts += 1
continue
if priorValue is not None:
if priorValue + 1 != value:
# Keep track of miss incidents
#missed += 1
# or
# Keep track of how many we missed
missed += ( value - priorValue + 1 )
priorValue = value
if sec:
self._tsRates[sec] = count
self._tsMissRates[sec] = missed
self._timeoutRates[sec] = timeouts
| class Stresstestpv:
def __init__(self, pvName):
self._pvName = pvName
self._tsValues = {}
self._tsRates = {}
self._tsMissRates = {}
self._timeoutRates = {}
self._numMissed = 0
self._numTimeouts = 0
self._startTime = None
self._endTime = None
def get_name(self):
return self._pvName
def get_num_ts_values(self):
return len(self._tsValues)
def get_num_missed(self):
return self._numMissed
def get_num_timeouts(self):
return self._numTimeouts
def get_end_time(self):
return self._endTime
def get_start_time(self):
return self._startTime
def get_ts_values(self):
return self._tsValues
def get_ts_rates(self):
return self._tsRates
def get_ts_miss_rates(self):
return self._tsMissRates
def get_timeout_rates(self):
return self._timeoutRates
def add_ts_values(self, tsValues):
self._tsValues.update(tsValues)
def add_ts_timeouts(self, tsTimeouts):
self._tsTimeouts.update(tsTimeouts)
def analyze(self):
(prior_sec, prior_value) = (None, None)
(count, missed, timeouts) = (0, 0, 0)
sec = None
for timestamp in self._tsValues:
sec = int(timestamp)
if priorSec is None:
self._endTime = timestamp
self._startTime = timestamp
prior_sec = sec - 1
if sec != priorSec:
if self._endTime < sec:
self._endTime = sec
self._tsRates[priorSec] = count
self._tsMissRates[priorSec] = missed
self._timeoutRates[priorSec] = timeouts
self._numMissed += missed
self._numTimeouts += timeouts
(count, missed, timeouts) = (0, 0, 0)
while True:
prior_sec += 1
if priorSec >= sec:
break
self._tsRates[priorSec] = 0
self._tsMissRates[priorSec] = 0
self._timeoutRates[priorSec] = 0
prior_sec = sec
count += 1
value = self._tsValues[timestamp]
if value is None:
timeouts += 1
continue
if priorValue is not None:
if priorValue + 1 != value:
missed += value - priorValue + 1
prior_value = value
if sec:
self._tsRates[sec] = count
self._tsMissRates[sec] = missed
self._timeoutRates[sec] = timeouts |
_base_ = ['./rotated-detection_static.py', '../_base_/backends/tensorrt.py']
onnx_config = dict(
output_names=['dets', 'labels'],
input_shape=None,
dynamic_axes={
'input': {
0: 'batch',
2: 'height',
3: 'width'
},
'dets': {
0: 'batch',
1: 'num_dets',
},
'labels': {
0: 'batch',
1: 'num_dets',
},
},
)
backend_config = dict(
common_config=dict(max_workspace_size=1 << 30),
model_inputs=[
dict(
input_shapes=dict(
input=dict(
min_shape=[1, 3, 320, 320],
opt_shape=[1, 3, 1024, 1024],
max_shape=[1, 3, 1024, 1024])))
])
| _base_ = ['./rotated-detection_static.py', '../_base_/backends/tensorrt.py']
onnx_config = dict(output_names=['dets', 'labels'], input_shape=None, dynamic_axes={'input': {0: 'batch', 2: 'height', 3: 'width'}, 'dets': {0: 'batch', 1: 'num_dets'}, 'labels': {0: 'batch', 1: 'num_dets'}})
backend_config = dict(common_config=dict(max_workspace_size=1 << 30), model_inputs=[dict(input_shapes=dict(input=dict(min_shape=[1, 3, 320, 320], opt_shape=[1, 3, 1024, 1024], max_shape=[1, 3, 1024, 1024])))]) |
#!/usr/bin/env python
class Solution:
def twoCitySchedCost(self, costs):
N = len(costs)//2
costs = list(sorted(costs, key=lambda c: c[0]-c[1]))
s = 0
for i, c in enumerate(costs):
s += c[0] if i < N else c[1]
return s
costs = [[10,20],[30,200],[400,50],[30,20]]
sol = Solution()
print(sol.twoCitySchedCost(costs))
| class Solution:
def two_city_sched_cost(self, costs):
n = len(costs) // 2
costs = list(sorted(costs, key=lambda c: c[0] - c[1]))
s = 0
for (i, c) in enumerate(costs):
s += c[0] if i < N else c[1]
return s
costs = [[10, 20], [30, 200], [400, 50], [30, 20]]
sol = solution()
print(sol.twoCitySchedCost(costs)) |
pdu_objects = [
{
'header': {
'command_length': 0,
'command_id': 'bind_transmitter',
'command_status': 'ESME_ROK',
'sequence_number': 0,
},
'body': {
'mandatory_parameters': {
'system_id': 'test_system',
'password': 'abc123',
'system_type': '',
'interface_version': '34',
'addr_ton': 1,
'addr_npi': 1,
'address_range': '',
},
},
},
{
'header': {
'command_length': 0,
'command_id': 'bind_transmitter_resp',
'command_status': 'ESME_ROK',
'sequence_number': 0,
},
'body': {
'mandatory_parameters': {
'system_id': 'test_system',
},
},
},
{
'header': {
'command_length': 0,
'command_id': 'bind_receiver',
'command_status': 'ESME_ROK',
'sequence_number': 0,
},
'body': {
'mandatory_parameters': {
'system_id': 'test_system',
'password': 'abc123',
'system_type': '',
'interface_version': '34',
'addr_ton': 1,
'addr_npi': 1,
'address_range': '',
},
},
},
{
'header': {
'command_length': 0,
'command_id': 'bind_receiver_resp',
'command_status': 'ESME_ROK',
'sequence_number': 0,
},
'body': {
'mandatory_parameters': {
'system_id': 'test_system',
},
},
},
{
'header': {
'command_length': 0,
'command_id': 'bind_transceiver',
'command_status': 'ESME_ROK',
'sequence_number': 0,
},
'body': {
'mandatory_parameters': {
'system_id': 'test_system',
'password': 'abc123',
'system_type': '',
'interface_version': '34',
'addr_ton': 1,
'addr_npi': 1,
'address_range': '',
},
},
},
{
'header': {
'command_length': 0,
'command_id': 'bind_transceiver_resp',
'command_status': 'ESME_ROK',
'sequence_number': 0,
},
'body': {
'mandatory_parameters': {
'system_id': 'test_system',
},
},
},
{
'header': {
'command_length': 0,
'command_id': 'outbind',
'command_status': 'ESME_ROK',
'sequence_number': 0,
},
'body': {
'mandatory_parameters': {
'system_id': 'test_system',
'password': 'abc123',
},
},
},
{
'header': {
'command_length': 0,
'command_id': 'unbind',
'command_status': 'ESME_ROK',
'sequence_number': 0,
},
},
{
'header': {
'command_length': 0,
'command_id': 'unbind_resp',
'command_status': 'ESME_ROK',
'sequence_number': 0,
},
},
{
'header': {
'command_length': 0,
'command_id': 'generic_nack',
'command_status': 'ESME_ROK',
'sequence_number': 0,
},
},
{
'header': {
'command_length': 0,
'command_id': 'submit_sm',
'command_status': 'ESME_ROK',
'sequence_number': 0,
},
'body': {
'mandatory_parameters': {
'service_type': '',
'source_addr_ton': 1,
'source_addr_npi': 1,
'source_addr': '',
'dest_addr_ton': 1,
'dest_addr_npi': 1,
'destination_addr': '',
'esm_class': 0,
'protocol_id': 0,
'priority_flag': 0,
'schedule_delivery_time': '',
'validity_period': '',
'registered_delivery': 0,
'replace_if_present_flag': 0,
'data_coding': 0,
'sm_default_msg_id': 0,
'sm_length': 1,
'short_message': 'testing 123',
},
},
},
{
'header': {
'command_length': 0,
'command_id': 'submit_sm',
'command_status': 'ESME_ROK',
'sequence_number': 0,
},
'body': {
'mandatory_parameters': {
'service_type': '',
'source_addr_ton': 1,
'source_addr_npi': 1,
'source_addr': '',
'dest_addr_ton': 1,
'dest_addr_npi': 1,
'destination_addr': '',
'esm_class': 0,
'protocol_id': 0,
'priority_flag': 0,
'schedule_delivery_time': '',
'validity_period': '',
'registered_delivery': 0,
'replace_if_present_flag': 0,
'data_coding': 0,
'sm_default_msg_id': 0,
'sm_length': 0,
'short_message': None,
# 'short_message' can be of zero length
},
'optional_parameters': [
{
'tag': 'message_payload',
'length': 0,
'value': '5666',
},
],
},
},
# ]
# breaker = [
{
'header': {
'command_length': 0,
'command_id': 'submit_sm_resp',
'command_status': 'ESME_ROK',
'sequence_number': 0,
},
'body': {
'mandatory_parameters': {
'message_id': '',
},
},
},
{
'header': {
'command_length': 0,
'command_id': 'submit_sm_resp',
'command_status': 'ESME_RSYSERR',
'sequence_number': 0,
},
# submit_sm_resp can have no body for failures
},
{
'header': {
'command_length': 0,
'command_id': 'submit_multi',
'command_status': 'ESME_ROK',
'sequence_number': 0,
},
'body': {
'mandatory_parameters': {
'service_type': '',
'source_addr_ton': 1,
'source_addr_npi': 1,
'source_addr': '',
'number_of_dests': 0,
'dest_address': [
{
'dest_flag': 1,
'dest_addr_ton': 1,
'dest_addr_npi': 1,
'destination_addr': 'the address'
},
{
'dest_flag': 2,
'dl_name': 'the list',
},
{
'dest_flag': 2,
'dl_name': 'the other list',
},
# {}
],
'esm_class': 0,
'protocol_id': 0,
'priority_flag': 0,
'schedule_delivery_time': '',
'validity_period': '',
'registered_delivery': 0,
'replace_if_present_flag': 0,
'data_coding': 0,
'sm_default_msg_id': 0,
'sm_length': 1,
'short_message': 'testing 123',
},
},
},
{
'header': {
'command_length': 0,
'command_id': 'submit_multi_resp',
'command_status': 'ESME_ROK',
'sequence_number': 0,
},
'body': {
'mandatory_parameters': {
'message_id': '',
'no_unsuccess': 5,
'unsuccess_sme': [
{
'dest_addr_ton': 1,
'dest_addr_npi': 1,
'destination_addr': '',
'error_status_code': 0,
},
{
'dest_addr_ton': 3,
'dest_addr_npi': 1,
'destination_addr': '555',
'error_status_code': 0,
},
],
},
},
},
# ]
# breaker = [
{
'header': {
'command_length': 0,
'command_id': 'deliver_sm',
'command_status': 'ESME_ROK',
'sequence_number': 0,
},
'body': {
'mandatory_parameters': {
'service_type': '',
'source_addr_ton': 1,
'source_addr_npi': 1,
'source_addr': '',
'dest_addr_ton': 1,
'dest_addr_npi': 1,
'destination_addr': '',
'esm_class': 0,
'protocol_id': 0,
'priority_flag': 0,
'schedule_delivery_time': '',
'validity_period': '',
'registered_delivery': 0,
'replace_if_present_flag': 0,
'data_coding': 0,
'sm_default_msg_id': 0,
'sm_length': 1,
'short_message': '',
},
},
},
{
'header': {
'command_length': 0,
'command_id': 'deliver_sm_resp',
'command_status': 'ESME_ROK',
'sequence_number': 0,
},
'body': {
'mandatory_parameters': {
'message_id': '',
},
},
},
{
'header': {
'command_length': 0,
'command_id': 'data_sm',
'command_status': 'ESME_ROK',
'sequence_number': 0,
},
'body': {
'mandatory_parameters': {
'service_type': '',
'source_addr_ton': 1,
'source_addr_npi': 1,
'source_addr': '',
'dest_addr_ton': 1,
'dest_addr_npi': 1,
'destination_addr': '',
'esm_class': 0,
'registered_delivery': 0,
'data_coding': 0,
},
'optional_parameters': [
{
'tag': 'message_payload',
'length': 0,
'value': '',
},
],
},
},
{
'header': {
'command_length': 0,
'command_id': 'data_sm_resp',
'command_status': 'ESME_ROK',
'sequence_number': 0,
},
'body': {
'mandatory_parameters': {
'message_id': '',
},
},
},
{
'header': {
'command_length': 0,
'command_id': 'query_sm',
'command_status': 'ESME_ROK',
'sequence_number': 0,
},
'body': {
'mandatory_parameters': {
'message_id': '',
'source_addr_ton': 1,
'source_addr_npi': 1,
'source_addr': '',
},
},
},
{
'header': {
'command_length': 0,
'command_id': 'query_sm_resp',
'command_status': 'ESME_ROK',
'sequence_number': 0,
},
'body': {
'mandatory_parameters': {
'message_id': '',
'final_date': '',
'message_state': 0,
'error_code': 0,
},
},
},
{
'header': {
'command_length': 0,
'command_id': 'cancel_sm',
'command_status': 'ESME_ROK',
'sequence_number': 0,
},
'body': {
'mandatory_parameters': {
'service_type': '',
'message_id': '',
'source_addr_ton': 1,
'source_addr_npi': 1,
'source_addr': '',
'dest_addr_ton': 1,
'dest_addr_npi': 1,
'destination_addr': '',
},
},
},
{
'header': {
'command_length': 0,
'command_id': 'cancel_sm_resp',
'command_status': 'ESME_ROK',
'sequence_number': 0,
},
},
{
'header': {
'command_length': 0,
'command_id': 'replace_sm',
'command_status': 'ESME_ROK',
'sequence_number': 0,
},
'body': {
'mandatory_parameters': {
'message_id': '',
'source_addr_ton': 1,
'source_addr_npi': 1,
'source_addr': '',
'schedule_delivery_time': '',
'validity_period': '',
'registered_delivery': 0,
'replace_if_present_flag': 0,
'data_coding': 0,
'sm_default_msg_id': 0,
'sm_length': 1,
'short_message': 'is this an = sign?',
},
},
},
{
'header': {
'command_length': 0,
'command_id': 'replace_sm_resp',
'command_status': 'ESME_ROK',
'sequence_number': 0,
},
},
{
'header': {
'command_length': 0,
'command_id': 'enquire_link',
'command_status': 'ESME_ROK',
'sequence_number': 0,
},
},
{
'header': {
'command_length': 0,
'command_id': 'enquire_link_resp',
'command_status': 'ESME_ROK',
'sequence_number': 0,
},
},
{
'header': {
'command_length': 0,
'command_id': 'alert_notification',
'command_status': 'ESME_ROK',
'sequence_number': 0,
},
'body': {
'mandatory_parameters': {
'source_addr_ton': 'international',
'source_addr_npi': 1,
'source_addr': '',
'esme_addr_ton': 9,
'esme_addr_npi': '',
'esme_addr': '',
},
},
},
]
| pdu_objects = [{'header': {'command_length': 0, 'command_id': 'bind_transmitter', 'command_status': 'ESME_ROK', 'sequence_number': 0}, 'body': {'mandatory_parameters': {'system_id': 'test_system', 'password': 'abc123', 'system_type': '', 'interface_version': '34', 'addr_ton': 1, 'addr_npi': 1, 'address_range': ''}}}, {'header': {'command_length': 0, 'command_id': 'bind_transmitter_resp', 'command_status': 'ESME_ROK', 'sequence_number': 0}, 'body': {'mandatory_parameters': {'system_id': 'test_system'}}}, {'header': {'command_length': 0, 'command_id': 'bind_receiver', 'command_status': 'ESME_ROK', 'sequence_number': 0}, 'body': {'mandatory_parameters': {'system_id': 'test_system', 'password': 'abc123', 'system_type': '', 'interface_version': '34', 'addr_ton': 1, 'addr_npi': 1, 'address_range': ''}}}, {'header': {'command_length': 0, 'command_id': 'bind_receiver_resp', 'command_status': 'ESME_ROK', 'sequence_number': 0}, 'body': {'mandatory_parameters': {'system_id': 'test_system'}}}, {'header': {'command_length': 0, 'command_id': 'bind_transceiver', 'command_status': 'ESME_ROK', 'sequence_number': 0}, 'body': {'mandatory_parameters': {'system_id': 'test_system', 'password': 'abc123', 'system_type': '', 'interface_version': '34', 'addr_ton': 1, 'addr_npi': 1, 'address_range': ''}}}, {'header': {'command_length': 0, 'command_id': 'bind_transceiver_resp', 'command_status': 'ESME_ROK', 'sequence_number': 0}, 'body': {'mandatory_parameters': {'system_id': 'test_system'}}}, {'header': {'command_length': 0, 'command_id': 'outbind', 'command_status': 'ESME_ROK', 'sequence_number': 0}, 'body': {'mandatory_parameters': {'system_id': 'test_system', 'password': 'abc123'}}}, {'header': {'command_length': 0, 'command_id': 'unbind', 'command_status': 'ESME_ROK', 'sequence_number': 0}}, {'header': {'command_length': 0, 'command_id': 'unbind_resp', 'command_status': 'ESME_ROK', 'sequence_number': 0}}, {'header': {'command_length': 0, 'command_id': 'generic_nack', 'command_status': 'ESME_ROK', 'sequence_number': 0}}, {'header': {'command_length': 0, 'command_id': 'submit_sm', 'command_status': 'ESME_ROK', 'sequence_number': 0}, 'body': {'mandatory_parameters': {'service_type': '', 'source_addr_ton': 1, 'source_addr_npi': 1, 'source_addr': '', 'dest_addr_ton': 1, 'dest_addr_npi': 1, 'destination_addr': '', 'esm_class': 0, 'protocol_id': 0, 'priority_flag': 0, 'schedule_delivery_time': '', 'validity_period': '', 'registered_delivery': 0, 'replace_if_present_flag': 0, 'data_coding': 0, 'sm_default_msg_id': 0, 'sm_length': 1, 'short_message': 'testing 123'}}}, {'header': {'command_length': 0, 'command_id': 'submit_sm', 'command_status': 'ESME_ROK', 'sequence_number': 0}, 'body': {'mandatory_parameters': {'service_type': '', 'source_addr_ton': 1, 'source_addr_npi': 1, 'source_addr': '', 'dest_addr_ton': 1, 'dest_addr_npi': 1, 'destination_addr': '', 'esm_class': 0, 'protocol_id': 0, 'priority_flag': 0, 'schedule_delivery_time': '', 'validity_period': '', 'registered_delivery': 0, 'replace_if_present_flag': 0, 'data_coding': 0, 'sm_default_msg_id': 0, 'sm_length': 0, 'short_message': None}, 'optional_parameters': [{'tag': 'message_payload', 'length': 0, 'value': '5666'}]}}, {'header': {'command_length': 0, 'command_id': 'submit_sm_resp', 'command_status': 'ESME_ROK', 'sequence_number': 0}, 'body': {'mandatory_parameters': {'message_id': ''}}}, {'header': {'command_length': 0, 'command_id': 'submit_sm_resp', 'command_status': 'ESME_RSYSERR', 'sequence_number': 0}}, {'header': {'command_length': 0, 'command_id': 'submit_multi', 'command_status': 'ESME_ROK', 'sequence_number': 0}, 'body': {'mandatory_parameters': {'service_type': '', 'source_addr_ton': 1, 'source_addr_npi': 1, 'source_addr': '', 'number_of_dests': 0, 'dest_address': [{'dest_flag': 1, 'dest_addr_ton': 1, 'dest_addr_npi': 1, 'destination_addr': 'the address'}, {'dest_flag': 2, 'dl_name': 'the list'}, {'dest_flag': 2, 'dl_name': 'the other list'}], 'esm_class': 0, 'protocol_id': 0, 'priority_flag': 0, 'schedule_delivery_time': '', 'validity_period': '', 'registered_delivery': 0, 'replace_if_present_flag': 0, 'data_coding': 0, 'sm_default_msg_id': 0, 'sm_length': 1, 'short_message': 'testing 123'}}}, {'header': {'command_length': 0, 'command_id': 'submit_multi_resp', 'command_status': 'ESME_ROK', 'sequence_number': 0}, 'body': {'mandatory_parameters': {'message_id': '', 'no_unsuccess': 5, 'unsuccess_sme': [{'dest_addr_ton': 1, 'dest_addr_npi': 1, 'destination_addr': '', 'error_status_code': 0}, {'dest_addr_ton': 3, 'dest_addr_npi': 1, 'destination_addr': '555', 'error_status_code': 0}]}}}, {'header': {'command_length': 0, 'command_id': 'deliver_sm', 'command_status': 'ESME_ROK', 'sequence_number': 0}, 'body': {'mandatory_parameters': {'service_type': '', 'source_addr_ton': 1, 'source_addr_npi': 1, 'source_addr': '', 'dest_addr_ton': 1, 'dest_addr_npi': 1, 'destination_addr': '', 'esm_class': 0, 'protocol_id': 0, 'priority_flag': 0, 'schedule_delivery_time': '', 'validity_period': '', 'registered_delivery': 0, 'replace_if_present_flag': 0, 'data_coding': 0, 'sm_default_msg_id': 0, 'sm_length': 1, 'short_message': ''}}}, {'header': {'command_length': 0, 'command_id': 'deliver_sm_resp', 'command_status': 'ESME_ROK', 'sequence_number': 0}, 'body': {'mandatory_parameters': {'message_id': ''}}}, {'header': {'command_length': 0, 'command_id': 'data_sm', 'command_status': 'ESME_ROK', 'sequence_number': 0}, 'body': {'mandatory_parameters': {'service_type': '', 'source_addr_ton': 1, 'source_addr_npi': 1, 'source_addr': '', 'dest_addr_ton': 1, 'dest_addr_npi': 1, 'destination_addr': '', 'esm_class': 0, 'registered_delivery': 0, 'data_coding': 0}, 'optional_parameters': [{'tag': 'message_payload', 'length': 0, 'value': ''}]}}, {'header': {'command_length': 0, 'command_id': 'data_sm_resp', 'command_status': 'ESME_ROK', 'sequence_number': 0}, 'body': {'mandatory_parameters': {'message_id': ''}}}, {'header': {'command_length': 0, 'command_id': 'query_sm', 'command_status': 'ESME_ROK', 'sequence_number': 0}, 'body': {'mandatory_parameters': {'message_id': '', 'source_addr_ton': 1, 'source_addr_npi': 1, 'source_addr': ''}}}, {'header': {'command_length': 0, 'command_id': 'query_sm_resp', 'command_status': 'ESME_ROK', 'sequence_number': 0}, 'body': {'mandatory_parameters': {'message_id': '', 'final_date': '', 'message_state': 0, 'error_code': 0}}}, {'header': {'command_length': 0, 'command_id': 'cancel_sm', 'command_status': 'ESME_ROK', 'sequence_number': 0}, 'body': {'mandatory_parameters': {'service_type': '', 'message_id': '', 'source_addr_ton': 1, 'source_addr_npi': 1, 'source_addr': '', 'dest_addr_ton': 1, 'dest_addr_npi': 1, 'destination_addr': ''}}}, {'header': {'command_length': 0, 'command_id': 'cancel_sm_resp', 'command_status': 'ESME_ROK', 'sequence_number': 0}}, {'header': {'command_length': 0, 'command_id': 'replace_sm', 'command_status': 'ESME_ROK', 'sequence_number': 0}, 'body': {'mandatory_parameters': {'message_id': '', 'source_addr_ton': 1, 'source_addr_npi': 1, 'source_addr': '', 'schedule_delivery_time': '', 'validity_period': '', 'registered_delivery': 0, 'replace_if_present_flag': 0, 'data_coding': 0, 'sm_default_msg_id': 0, 'sm_length': 1, 'short_message': 'is this an = sign?'}}}, {'header': {'command_length': 0, 'command_id': 'replace_sm_resp', 'command_status': 'ESME_ROK', 'sequence_number': 0}}, {'header': {'command_length': 0, 'command_id': 'enquire_link', 'command_status': 'ESME_ROK', 'sequence_number': 0}}, {'header': {'command_length': 0, 'command_id': 'enquire_link_resp', 'command_status': 'ESME_ROK', 'sequence_number': 0}}, {'header': {'command_length': 0, 'command_id': 'alert_notification', 'command_status': 'ESME_ROK', 'sequence_number': 0}, 'body': {'mandatory_parameters': {'source_addr_ton': 'international', 'source_addr_npi': 1, 'source_addr': '', 'esme_addr_ton': 9, 'esme_addr_npi': '', 'esme_addr': ''}}}] |
#!/usr/bin/env python
# -*- coding: utf-8 -*--
# Copyright (c) 2021, 2022 Oracle and/or its affiliates.
# Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl/
class Parser:
@property
def pos(self):
raise NotImplementedError()
@property
def noun(self):
raise NotImplementedError()
@property
def adjective(self):
raise NotImplementedError()
@property
def adverb(self):
raise NotImplementedError()
@property
def verb(self):
raise NotImplementedError()
@property
def word(self):
raise NotImplementedError()
@property
def sentence(self):
raise NotImplementedError()
@property
def word_count(self):
raise NotImplementedError()
@property
def bigram(self):
raise NotImplementedError()
@property
def trigram(self):
raise NotImplementedError()
| class Parser:
@property
def pos(self):
raise not_implemented_error()
@property
def noun(self):
raise not_implemented_error()
@property
def adjective(self):
raise not_implemented_error()
@property
def adverb(self):
raise not_implemented_error()
@property
def verb(self):
raise not_implemented_error()
@property
def word(self):
raise not_implemented_error()
@property
def sentence(self):
raise not_implemented_error()
@property
def word_count(self):
raise not_implemented_error()
@property
def bigram(self):
raise not_implemented_error()
@property
def trigram(self):
raise not_implemented_error() |
def strategy(history, memory):
round = history.shape[1]
GRUDGE = 0
LASTACTION = 1
if round == 0:
mem = []
mem.append(False)
mem.append(0)
return "cooperate", mem
mem = memory
if mem[GRUDGE]:
return "defect", mem
if round >= 5:
sin = 0
for i in range(1, 5):
if history[1, -i] == 0:
sin += 1
if sin == 4:
mem[GRUDGE] = True
return "defect", mem
if mem[LASTACTION] == 0:
mem[LASTACTION] = 1
return "cooperate", mem
else:
mem[LASTACTION] = 0
return "defect", mem
| def strategy(history, memory):
round = history.shape[1]
grudge = 0
lastaction = 1
if round == 0:
mem = []
mem.append(False)
mem.append(0)
return ('cooperate', mem)
mem = memory
if mem[GRUDGE]:
return ('defect', mem)
if round >= 5:
sin = 0
for i in range(1, 5):
if history[1, -i] == 0:
sin += 1
if sin == 4:
mem[GRUDGE] = True
return ('defect', mem)
if mem[LASTACTION] == 0:
mem[LASTACTION] = 1
return ('cooperate', mem)
else:
mem[LASTACTION] = 0
return ('defect', mem) |
test = [
'nop +0',
'acc +1',
'jmp +4',
'acc +3',
'jmp -3',
'acc -99',
'acc +1',
'jmp -4',
'acc +6',
]
actual = [
'acc +17',
'acc +37',
'acc -13',
'jmp +173',
'nop +100',
'acc -7',
'jmp +447',
'nop +283',
'acc +41',
'acc +32',
'jmp +1',
'jmp +585',
'jmp +1',
'acc -5',
'nop +71',
'acc +49',
'acc -18',
'jmp +527',
'jmp +130',
'jmp +253',
'acc +11',
'acc -11',
'jmp +390',
'jmp +597',
'jmp +1',
'acc +6',
'acc +0',
'jmp +588',
'acc -17',
'jmp +277',
'acc +2',
'nop +163',
'jmp +558',
'acc +38',
'jmp +369',
'acc +13',
'jmp +536',
'acc +38',
'acc +39',
'acc +6',
'jmp +84',
'acc +11',
'nop +517',
'acc +48',
'acc +47',
'jmp +1',
'acc +42',
'acc +0',
'acc +2',
'acc +24',
'jmp +335',
'acc +44',
'acc +47',
'jmp +446',
'nop +42',
'nop +74',
'acc +45',
'jmp +548',
'jmp +66',
'acc +1',
'jmp +212',
'acc +18',
'jmp +1',
'acc +4',
'acc -16',
'jmp +366',
'acc +0',
'jmp +398',
'acc +45',
'jmp +93',
'acc +40',
'acc +38',
'acc +21',
'nop +184',
'jmp -46',
'nop -9',
'jmp +53',
'acc +46',
'acc +36',
'jmp +368',
'acc +16',
'acc +8',
'acc -9',
'acc -4',
'jmp +328',
'acc -15',
'acc -5',
'acc +21',
'jmp +435',
'acc -5',
'acc +36',
'jmp +362',
'acc +26',
'jmp +447',
'jmp +1',
'jmp +412',
'acc +11',
'acc +41',
'nop -32',
'acc +17',
'jmp -63',
'jmp +1',
'nop +393',
'jmp +62',
'acc +18',
'acc +30',
'nop +417',
'jmp +74',
'acc +29',
'acc +23',
'jmp +455',
'jmp +396',
'jmp +395',
'acc +33',
'nop +137',
'nop +42',
'jmp +57',
'jmp +396',
'acc +7',
'acc +0',
'jmp +354',
'acc +15',
'acc +50',
'jmp -12',
'jmp +84',
'nop +175',
'acc +5',
'acc -2',
'jmp -82',
'acc +1',
'acc +26',
'jmp +288',
'nop -113',
'nop +366',
'acc +45',
'jmp +388',
'acc +21',
'acc +38',
'jmp +427',
'acc +33',
'jmp -94',
'nop -118',
'nop +411',
'jmp +472',
'nop +231',
'nop +470',
'acc +48',
'jmp -124',
'jmp +1',
'acc +5',
'acc +37',
'acc +42',
'jmp +301',
'acc -11',
'acc -17',
'acc +14',
'jmp +357',
'acc +6',
'acc +20',
'acc +13',
'jmp +361',
'jmp -65',
'acc +29',
'jmp +26',
'jmp +329',
'acc +32',
'acc +32',
'acc +17',
'jmp -102',
'acc -6',
'acc +33',
'acc +9',
'jmp +189',
'acc +3',
'jmp -128',
'jmp -142',
'acc +24',
'acc -5',
'jmp +403',
'acc +28',
'jmp +310',
'acc +34',
'acc +4',
'acc +33',
'acc +18',
'jmp +227',
'acc -8',
'acc -15',
'jmp +112',
'jmp +54',
'acc +21',
'acc +23',
'acc +20',
'jmp +320',
'acc +13',
'jmp -77',
'acc +15',
'nop +310',
'nop +335',
'jmp +232',
'acc -3',
'nop +50',
'acc +41',
'jmp +112',
'nop -10',
'acc +29',
'acc +27',
'jmp +52',
'acc +40',
'nop -132',
'acc -16',
'acc +27',
'jmp +309',
'acc -8',
'nop +147',
'acc +20',
'acc +46',
'jmp +202',
'acc +27',
'jmp -43',
'jmp +1',
'acc +33',
'acc -13',
'jmp +300',
'acc +1',
'jmp -202',
'acc -17',
'acc +0',
'acc +34',
'jmp -5',
'nop +335',
'acc -16',
'acc -17',
'jmp -120',
'acc -19',
'acc -13',
'acc +4',
'jmp +368',
'jmp +21',
'acc +39',
'acc +39',
'acc -18',
'jmp -157',
'nop +280',
'acc +33',
'nop -37',
'jmp +32',
'acc -16',
'acc +18',
'acc +46',
'jmp -121',
'acc -19',
'jmp +195',
'acc +28',
'jmp +124',
'jmp +331',
'jmp -228',
'jmp -146',
'jmp +85',
'jmp +60',
'acc +20',
'acc -9',
'jmp +303',
'jmp -122',
'jmp +111',
'acc +32',
'acc +0',
'acc +39',
'acc +29',
'jmp -31',
'nop +320',
'jmp -63',
'jmp +223',
'nop -149',
'acc -12',
'acc -11',
'acc +32',
'jmp +309',
'jmp -13',
'acc -19',
'jmp -123',
'acc +21',
'acc +18',
'acc +49',
'jmp +175',
'acc -14',
'nop -129',
'acc -2',
'acc +31',
'jmp +79',
'acc +23',
'acc +50',
'acc +39',
'acc +7',
'jmp -235',
'jmp -166',
'acc +9',
'jmp +293',
'acc -11',
'jmp +76',
'acc +44',
'acc +3',
'acc +37',
'jmp +123',
'nop -104',
'jmp -157',
'acc +14',
'acc +10',
'acc +28',
'jmp +25',
'acc +37',
'jmp +188',
'jmp -49',
'acc -11',
'jmp -90',
'acc -8',
'jmp +197',
'acc +5',
'jmp +115',
'acc +44',
'jmp -228',
'nop -2',
'acc +46',
'jmp +130',
'nop +183',
'nop +106',
'acc +27',
'acc +37',
'jmp -309',
'acc +28',
'acc -4',
'acc -12',
'acc +38',
'jmp +93',
'acc +8',
'acc +23',
'acc -9',
'acc +6',
'jmp -42',
'acc +10',
'acc +35',
'acc +4',
'jmp -231',
'acc +19',
'acc +7',
'acc +23',
'acc +11',
'jmp -90',
'acc +0',
'nop +158',
'nop -150',
'acc +33',
'jmp +107',
'acc +48',
'acc -2',
'jmp -104',
'acc +6',
'nop -57',
'nop +172',
'acc -11',
'jmp -7',
'acc +6',
'acc +50',
'acc -9',
'acc +12',
'jmp -171',
'acc +3',
'jmp +26',
'acc +42',
'acc +31',
'acc +20',
'acc +32',
'jmp -48',
'acc +13',
'jmp -6',
'jmp +178',
'acc +47',
'jmp -153',
'acc +28',
'nop +74',
'jmp -162',
'acc -15',
'nop -104',
'acc -9',
'jmp -227',
'acc +49',
'acc -19',
'acc +41',
'jmp -318',
'acc +9',
'acc +12',
'acc +7',
'jmp +34',
'jmp +137',
'nop -143',
'acc -8',
'acc +5',
'acc +31',
'jmp -20',
'jmp -237',
'acc +39',
'acc +0',
'jmp -298',
'acc +45',
'acc -19',
'acc +11',
'jmp -151',
'acc +40',
'acc +27',
'nop +150',
'nop -391',
'jmp -341',
'acc +1',
'acc +11',
'acc +18',
'nop -234',
'jmp +77',
'nop +104',
'jmp -65',
'acc +32',
'jmp -27',
'nop -317',
'nop +159',
'acc +14',
'acc -10',
'jmp -348',
'acc +29',
'jmp +32',
'acc +48',
'acc -19',
'jmp +17',
'jmp -201',
'jmp -224',
'nop +26',
'acc -7',
'acc +23',
'acc +46',
'jmp -6',
'acc +22',
'acc +39',
'acc +9',
'acc +23',
'jmp -30',
'jmp -243',
'acc +47',
'acc -15',
'jmp -298',
'jmp -393',
'jmp +1',
'acc +3',
'nop -24',
'acc +7',
'jmp -59',
'acc -6',
'acc +26',
'jmp -102',
'acc +34',
'acc +24',
'jmp -207',
'acc +36',
'acc +40',
'acc +41',
'jmp +1',
'jmp -306',
'jmp +57',
'jmp +1',
'nop +99',
'acc +28',
'jmp -391',
'acc +50',
'jmp -359',
'acc -5',
'jmp +9',
'jmp -355',
'acc +5',
'acc +2',
'jmp -77',
'acc +40',
'acc +28',
'acc +22',
'jmp -262',
'nop -287',
'acc +34',
'acc -4',
'nop +112',
'jmp -195',
'acc +29',
'nop -94',
'nop -418',
'jmp +24',
'jmp -190',
'acc +2',
'jmp -311',
'jmp -178',
'jmp -276',
'acc -12',
'acc -18',
'jmp +62',
'jmp -174',
'nop +31',
'acc +33',
'nop -158',
'jmp -417',
'acc +3',
'acc +21',
'acc +47',
'jmp +87',
'acc +45',
'jmp -77',
'acc +6',
'acc -10',
'jmp +1',
'jmp -240',
'acc +7',
'acc +47',
'jmp -379',
'acc -14',
'acc +50',
'nop -75',
'acc +30',
'jmp +70',
'jmp -392',
'jmp -430',
'acc +22',
'acc -2',
'jmp -492',
'jmp +1',
'acc -6',
'acc +38',
'jmp -36',
'nop -336',
'jmp -32',
'jmp +61',
'acc +20',
'acc -9',
'acc +2',
'jmp -175',
'acc +21',
'acc -2',
'jmp -6',
'jmp -527',
'acc +11',
'acc +16',
'jmp -262',
'jmp +1',
'nop -327',
'acc +29',
'jmp -114',
'acc +11',
'acc +17',
'acc +26',
'nop -104',
'jmp -428',
'nop -178',
'nop -242',
'acc +29',
'acc +5',
'jmp -245',
'jmp -417',
'jmp -278',
'acc +35',
'acc +21',
'jmp +1',
'nop -263',
'jmp +8',
'acc +42',
'jmp -95',
'nop -312',
'acc -11',
'acc +34',
'acc +0',
'jmp +19',
'acc +8',
'acc -13',
'acc +32',
'acc +21',
'jmp -208',
'acc +15',
'acc +39',
'nop -194',
'jmp -280',
'jmp +24',
'nop -516',
'acc +21',
'acc +48',
'jmp -367',
'jmp -121',
'acc +49',
'acc -16',
'jmp -136',
'acc +0',
'jmp -148',
'jmp -85',
'jmp -103',
'nop -446',
'jmp -242',
'acc -12',
'acc +13',
'acc +31',
'acc -1',
'jmp -435',
'nop -420',
'acc +22',
'acc -5',
'jmp -567',
'nop -354',
'acc +11',
'acc +33',
'acc +45',
'jmp -76',
'acc -2',
'acc +0',
'acc +25',
'acc +46',
'jmp -555',
'acc +0',
'acc +11',
'nop -2',
'jmp -394',
'jmp -395',
'acc +8',
'acc +14',
'acc +47',
'acc +22',
'jmp +1',]
| test = ['nop +0', 'acc +1', 'jmp +4', 'acc +3', 'jmp -3', 'acc -99', 'acc +1', 'jmp -4', 'acc +6']
actual = ['acc +17', 'acc +37', 'acc -13', 'jmp +173', 'nop +100', 'acc -7', 'jmp +447', 'nop +283', 'acc +41', 'acc +32', 'jmp +1', 'jmp +585', 'jmp +1', 'acc -5', 'nop +71', 'acc +49', 'acc -18', 'jmp +527', 'jmp +130', 'jmp +253', 'acc +11', 'acc -11', 'jmp +390', 'jmp +597', 'jmp +1', 'acc +6', 'acc +0', 'jmp +588', 'acc -17', 'jmp +277', 'acc +2', 'nop +163', 'jmp +558', 'acc +38', 'jmp +369', 'acc +13', 'jmp +536', 'acc +38', 'acc +39', 'acc +6', 'jmp +84', 'acc +11', 'nop +517', 'acc +48', 'acc +47', 'jmp +1', 'acc +42', 'acc +0', 'acc +2', 'acc +24', 'jmp +335', 'acc +44', 'acc +47', 'jmp +446', 'nop +42', 'nop +74', 'acc +45', 'jmp +548', 'jmp +66', 'acc +1', 'jmp +212', 'acc +18', 'jmp +1', 'acc +4', 'acc -16', 'jmp +366', 'acc +0', 'jmp +398', 'acc +45', 'jmp +93', 'acc +40', 'acc +38', 'acc +21', 'nop +184', 'jmp -46', 'nop -9', 'jmp +53', 'acc +46', 'acc +36', 'jmp +368', 'acc +16', 'acc +8', 'acc -9', 'acc -4', 'jmp +328', 'acc -15', 'acc -5', 'acc +21', 'jmp +435', 'acc -5', 'acc +36', 'jmp +362', 'acc +26', 'jmp +447', 'jmp +1', 'jmp +412', 'acc +11', 'acc +41', 'nop -32', 'acc +17', 'jmp -63', 'jmp +1', 'nop +393', 'jmp +62', 'acc +18', 'acc +30', 'nop +417', 'jmp +74', 'acc +29', 'acc +23', 'jmp +455', 'jmp +396', 'jmp +395', 'acc +33', 'nop +137', 'nop +42', 'jmp +57', 'jmp +396', 'acc +7', 'acc +0', 'jmp +354', 'acc +15', 'acc +50', 'jmp -12', 'jmp +84', 'nop +175', 'acc +5', 'acc -2', 'jmp -82', 'acc +1', 'acc +26', 'jmp +288', 'nop -113', 'nop +366', 'acc +45', 'jmp +388', 'acc +21', 'acc +38', 'jmp +427', 'acc +33', 'jmp -94', 'nop -118', 'nop +411', 'jmp +472', 'nop +231', 'nop +470', 'acc +48', 'jmp -124', 'jmp +1', 'acc +5', 'acc +37', 'acc +42', 'jmp +301', 'acc -11', 'acc -17', 'acc +14', 'jmp +357', 'acc +6', 'acc +20', 'acc +13', 'jmp +361', 'jmp -65', 'acc +29', 'jmp +26', 'jmp +329', 'acc +32', 'acc +32', 'acc +17', 'jmp -102', 'acc -6', 'acc +33', 'acc +9', 'jmp +189', 'acc +3', 'jmp -128', 'jmp -142', 'acc +24', 'acc -5', 'jmp +403', 'acc +28', 'jmp +310', 'acc +34', 'acc +4', 'acc +33', 'acc +18', 'jmp +227', 'acc -8', 'acc -15', 'jmp +112', 'jmp +54', 'acc +21', 'acc +23', 'acc +20', 'jmp +320', 'acc +13', 'jmp -77', 'acc +15', 'nop +310', 'nop +335', 'jmp +232', 'acc -3', 'nop +50', 'acc +41', 'jmp +112', 'nop -10', 'acc +29', 'acc +27', 'jmp +52', 'acc +40', 'nop -132', 'acc -16', 'acc +27', 'jmp +309', 'acc -8', 'nop +147', 'acc +20', 'acc +46', 'jmp +202', 'acc +27', 'jmp -43', 'jmp +1', 'acc +33', 'acc -13', 'jmp +300', 'acc +1', 'jmp -202', 'acc -17', 'acc +0', 'acc +34', 'jmp -5', 'nop +335', 'acc -16', 'acc -17', 'jmp -120', 'acc -19', 'acc -13', 'acc +4', 'jmp +368', 'jmp +21', 'acc +39', 'acc +39', 'acc -18', 'jmp -157', 'nop +280', 'acc +33', 'nop -37', 'jmp +32', 'acc -16', 'acc +18', 'acc +46', 'jmp -121', 'acc -19', 'jmp +195', 'acc +28', 'jmp +124', 'jmp +331', 'jmp -228', 'jmp -146', 'jmp +85', 'jmp +60', 'acc +20', 'acc -9', 'jmp +303', 'jmp -122', 'jmp +111', 'acc +32', 'acc +0', 'acc +39', 'acc +29', 'jmp -31', 'nop +320', 'jmp -63', 'jmp +223', 'nop -149', 'acc -12', 'acc -11', 'acc +32', 'jmp +309', 'jmp -13', 'acc -19', 'jmp -123', 'acc +21', 'acc +18', 'acc +49', 'jmp +175', 'acc -14', 'nop -129', 'acc -2', 'acc +31', 'jmp +79', 'acc +23', 'acc +50', 'acc +39', 'acc +7', 'jmp -235', 'jmp -166', 'acc +9', 'jmp +293', 'acc -11', 'jmp +76', 'acc +44', 'acc +3', 'acc +37', 'jmp +123', 'nop -104', 'jmp -157', 'acc +14', 'acc +10', 'acc +28', 'jmp +25', 'acc +37', 'jmp +188', 'jmp -49', 'acc -11', 'jmp -90', 'acc -8', 'jmp +197', 'acc +5', 'jmp +115', 'acc +44', 'jmp -228', 'nop -2', 'acc +46', 'jmp +130', 'nop +183', 'nop +106', 'acc +27', 'acc +37', 'jmp -309', 'acc +28', 'acc -4', 'acc -12', 'acc +38', 'jmp +93', 'acc +8', 'acc +23', 'acc -9', 'acc +6', 'jmp -42', 'acc +10', 'acc +35', 'acc +4', 'jmp -231', 'acc +19', 'acc +7', 'acc +23', 'acc +11', 'jmp -90', 'acc +0', 'nop +158', 'nop -150', 'acc +33', 'jmp +107', 'acc +48', 'acc -2', 'jmp -104', 'acc +6', 'nop -57', 'nop +172', 'acc -11', 'jmp -7', 'acc +6', 'acc +50', 'acc -9', 'acc +12', 'jmp -171', 'acc +3', 'jmp +26', 'acc +42', 'acc +31', 'acc +20', 'acc +32', 'jmp -48', 'acc +13', 'jmp -6', 'jmp +178', 'acc +47', 'jmp -153', 'acc +28', 'nop +74', 'jmp -162', 'acc -15', 'nop -104', 'acc -9', 'jmp -227', 'acc +49', 'acc -19', 'acc +41', 'jmp -318', 'acc +9', 'acc +12', 'acc +7', 'jmp +34', 'jmp +137', 'nop -143', 'acc -8', 'acc +5', 'acc +31', 'jmp -20', 'jmp -237', 'acc +39', 'acc +0', 'jmp -298', 'acc +45', 'acc -19', 'acc +11', 'jmp -151', 'acc +40', 'acc +27', 'nop +150', 'nop -391', 'jmp -341', 'acc +1', 'acc +11', 'acc +18', 'nop -234', 'jmp +77', 'nop +104', 'jmp -65', 'acc +32', 'jmp -27', 'nop -317', 'nop +159', 'acc +14', 'acc -10', 'jmp -348', 'acc +29', 'jmp +32', 'acc +48', 'acc -19', 'jmp +17', 'jmp -201', 'jmp -224', 'nop +26', 'acc -7', 'acc +23', 'acc +46', 'jmp -6', 'acc +22', 'acc +39', 'acc +9', 'acc +23', 'jmp -30', 'jmp -243', 'acc +47', 'acc -15', 'jmp -298', 'jmp -393', 'jmp +1', 'acc +3', 'nop -24', 'acc +7', 'jmp -59', 'acc -6', 'acc +26', 'jmp -102', 'acc +34', 'acc +24', 'jmp -207', 'acc +36', 'acc +40', 'acc +41', 'jmp +1', 'jmp -306', 'jmp +57', 'jmp +1', 'nop +99', 'acc +28', 'jmp -391', 'acc +50', 'jmp -359', 'acc -5', 'jmp +9', 'jmp -355', 'acc +5', 'acc +2', 'jmp -77', 'acc +40', 'acc +28', 'acc +22', 'jmp -262', 'nop -287', 'acc +34', 'acc -4', 'nop +112', 'jmp -195', 'acc +29', 'nop -94', 'nop -418', 'jmp +24', 'jmp -190', 'acc +2', 'jmp -311', 'jmp -178', 'jmp -276', 'acc -12', 'acc -18', 'jmp +62', 'jmp -174', 'nop +31', 'acc +33', 'nop -158', 'jmp -417', 'acc +3', 'acc +21', 'acc +47', 'jmp +87', 'acc +45', 'jmp -77', 'acc +6', 'acc -10', 'jmp +1', 'jmp -240', 'acc +7', 'acc +47', 'jmp -379', 'acc -14', 'acc +50', 'nop -75', 'acc +30', 'jmp +70', 'jmp -392', 'jmp -430', 'acc +22', 'acc -2', 'jmp -492', 'jmp +1', 'acc -6', 'acc +38', 'jmp -36', 'nop -336', 'jmp -32', 'jmp +61', 'acc +20', 'acc -9', 'acc +2', 'jmp -175', 'acc +21', 'acc -2', 'jmp -6', 'jmp -527', 'acc +11', 'acc +16', 'jmp -262', 'jmp +1', 'nop -327', 'acc +29', 'jmp -114', 'acc +11', 'acc +17', 'acc +26', 'nop -104', 'jmp -428', 'nop -178', 'nop -242', 'acc +29', 'acc +5', 'jmp -245', 'jmp -417', 'jmp -278', 'acc +35', 'acc +21', 'jmp +1', 'nop -263', 'jmp +8', 'acc +42', 'jmp -95', 'nop -312', 'acc -11', 'acc +34', 'acc +0', 'jmp +19', 'acc +8', 'acc -13', 'acc +32', 'acc +21', 'jmp -208', 'acc +15', 'acc +39', 'nop -194', 'jmp -280', 'jmp +24', 'nop -516', 'acc +21', 'acc +48', 'jmp -367', 'jmp -121', 'acc +49', 'acc -16', 'jmp -136', 'acc +0', 'jmp -148', 'jmp -85', 'jmp -103', 'nop -446', 'jmp -242', 'acc -12', 'acc +13', 'acc +31', 'acc -1', 'jmp -435', 'nop -420', 'acc +22', 'acc -5', 'jmp -567', 'nop -354', 'acc +11', 'acc +33', 'acc +45', 'jmp -76', 'acc -2', 'acc +0', 'acc +25', 'acc +46', 'jmp -555', 'acc +0', 'acc +11', 'nop -2', 'jmp -394', 'jmp -395', 'acc +8', 'acc +14', 'acc +47', 'acc +22', 'jmp +1'] |
class Solution:
def generateMatrix(self, n):
matrix = []
num = 1
for i in range(n):
matrix.append([0 for i in range(n)])
top = 0
bottom = n - 1
left = 0
right = n - 1
while top <= bottom and left <= right:
for i in range(left, right + 1):
matrix[top][i] = num
num += 1
for j in range(top + 1, bottom + 1):
matrix[j][right] = num
num += 1
if top < bottom and left < right:
for i in range(right - 1, left - 1, -1):
matrix[bottom][i] = num
num += 1
for j in range(bottom - 1, top, -1):
matrix[j][left] = num
num += 1
top, bottom, left, right = top + 1, bottom - 1, left + 1, right - 1
return matrix | class Solution:
def generate_matrix(self, n):
matrix = []
num = 1
for i in range(n):
matrix.append([0 for i in range(n)])
top = 0
bottom = n - 1
left = 0
right = n - 1
while top <= bottom and left <= right:
for i in range(left, right + 1):
matrix[top][i] = num
num += 1
for j in range(top + 1, bottom + 1):
matrix[j][right] = num
num += 1
if top < bottom and left < right:
for i in range(right - 1, left - 1, -1):
matrix[bottom][i] = num
num += 1
for j in range(bottom - 1, top, -1):
matrix[j][left] = num
num += 1
(top, bottom, left, right) = (top + 1, bottom - 1, left + 1, right - 1)
return matrix |
# classification related details
classification_datasets = ['imagenet', 'coco']
classification_schedulers = ['fixed', 'clr', 'hybrid', 'linear', 'poly']
classification_models = ['espnetv2', 'dicenet', 'shufflenetv2']
classification_exp_choices = ['main', 'ablation']
# segmentation related details
segmentation_schedulers = ['poly', 'fixed', 'clr', 'linear', 'hybrid']
segmentation_datasets = ['pascal', 'city']
segmentation_models = ['espnetv2', 'dicenet']
segmentation_loss_fns = ['ce', 'bce']
# detection related details
detection_datasets = ['coco', 'pascal']
detection_models = ['espnetv2', 'dicenet']
detection_schedulers = ['poly', 'hybrid', 'clr', 'cosine']
| classification_datasets = ['imagenet', 'coco']
classification_schedulers = ['fixed', 'clr', 'hybrid', 'linear', 'poly']
classification_models = ['espnetv2', 'dicenet', 'shufflenetv2']
classification_exp_choices = ['main', 'ablation']
segmentation_schedulers = ['poly', 'fixed', 'clr', 'linear', 'hybrid']
segmentation_datasets = ['pascal', 'city']
segmentation_models = ['espnetv2', 'dicenet']
segmentation_loss_fns = ['ce', 'bce']
detection_datasets = ['coco', 'pascal']
detection_models = ['espnetv2', 'dicenet']
detection_schedulers = ['poly', 'hybrid', 'clr', 'cosine'] |
def checkrot(str1,str2):
if len(str1)==len(str2):
str3=str1+str1
ad=str3.__contains__(str2)
if ad==True:
print("it is right rotate")
else:
print("It is not right rotate ")
else:
print("It is invalid string.Out of range")
def main():
str1=input(" Enter the first String : ")
str2=input("Enter the second String: ")
checkrot(str1,str2)
if __name__ =='__main__':
main()
| def checkrot(str1, str2):
if len(str1) == len(str2):
str3 = str1 + str1
ad = str3.__contains__(str2)
if ad == True:
print('it is right rotate')
else:
print('It is not right rotate ')
else:
print('It is invalid string.Out of range')
def main():
str1 = input(' Enter the first String : ')
str2 = input('Enter the second String: ')
checkrot(str1, str2)
if __name__ == '__main__':
main() |
#
# This file is part of the Ingram Micro CloudBlue Connect EaaS Extension Runner.
#
# Copyright (c) 2021 Ingram Micro. All Rights Reserved.
#
class EaaSError(Exception):
pass
class MaintenanceError(EaaSError):
pass
class CommunicationError(EaaSError):
pass
class StopBackoffError(EaaSError):
pass
| class Eaaserror(Exception):
pass
class Maintenanceerror(EaaSError):
pass
class Communicationerror(EaaSError):
pass
class Stopbackofferror(EaaSError):
pass |
a=int(input('enter a:'))
b=int(input('enter b:'))
c=int(input('enter c:'))
min_value= a if a<b and a<c else b if b<c else c
print(min_value) | a = int(input('enter a:'))
b = int(input('enter b:'))
c = int(input('enter c:'))
min_value = a if a < b and a < c else b if b < c else c
print(min_value) |
class Animals:
def comer(self):
print("Comiendo")
def dormir(self):
print("Durmiendo")
class Perro:
def __init__(self, nombre):
self.nombre = nombre
def comer(self):
print("Comiendo")
def dormir(self):
print("Durmiendo")
def ladrar(self):
print("Ladrando")
print("--------------------------------------------------")
firulais = Perro("Firulais")
firulais.comer()
firulais.dormir()
firulais.ladrar()
print("--------------------------------------------------") | class Animals:
def comer(self):
print('Comiendo')
def dormir(self):
print('Durmiendo')
class Perro:
def __init__(self, nombre):
self.nombre = nombre
def comer(self):
print('Comiendo')
def dormir(self):
print('Durmiendo')
def ladrar(self):
print('Ladrando')
print('--------------------------------------------------')
firulais = perro('Firulais')
firulais.comer()
firulais.dormir()
firulais.ladrar()
print('--------------------------------------------------') |
_base_ = [
'../_base_/models/resnet50.py', '../_base_/datasets/cancer_bs32_pil_resize.py',
'../_base_/schedules/imagenet_bs256_coslr.py', '../_base_/default_runtime.py'
]
model = dict(
head=dict(
num_classes=2,
topk=(1,))
)
data = dict(
train=dict(
data_prefix='/data3/zzhang/tmp/classification/train'),
val=dict(
data_prefix='/data3/zzhang/tmp/classification/test'),
test=dict(
data_prefix='/data3/zzhang/tmp/classification/test'))
optimizer = dict(type='SGD', lr=0.01, momentum=0.9, weight_decay=0.0001)
load_from = 'https://download.openmmlab.com/mmclassification/v0/resnet/resnet50_batch256_imagenet_20200708-cfb998bf.pth' | _base_ = ['../_base_/models/resnet50.py', '../_base_/datasets/cancer_bs32_pil_resize.py', '../_base_/schedules/imagenet_bs256_coslr.py', '../_base_/default_runtime.py']
model = dict(head=dict(num_classes=2, topk=(1,)))
data = dict(train=dict(data_prefix='/data3/zzhang/tmp/classification/train'), val=dict(data_prefix='/data3/zzhang/tmp/classification/test'), test=dict(data_prefix='/data3/zzhang/tmp/classification/test'))
optimizer = dict(type='SGD', lr=0.01, momentum=0.9, weight_decay=0.0001)
load_from = 'https://download.openmmlab.com/mmclassification/v0/resnet/resnet50_batch256_imagenet_20200708-cfb998bf.pth' |
XPAHS_CONSULT = {
'jobs_urls': '//div[contains(@class, "listResults")]//div[contains(@data-jobid, "")]//h2//a/@href',
'results': '//span[@class="description fc-light fs-body1"]//text()',
'pagination_indicator': '//a[contains(@class, "s-pagination--item")][last()]//span[contains(text(), "next")]',
'pagination_url': '//a[contains(@class, "s-pagination--item")][last()]/@href',
}
START_URL = 'https://stackoverflow.com/jobs/'
| xpahs_consult = {'jobs_urls': '//div[contains(@class, "listResults")]//div[contains(@data-jobid, "")]//h2//a/@href', 'results': '//span[@class="description fc-light fs-body1"]//text()', 'pagination_indicator': '//a[contains(@class, "s-pagination--item")][last()]//span[contains(text(), "next")]', 'pagination_url': '//a[contains(@class, "s-pagination--item")][last()]/@href'}
start_url = 'https://stackoverflow.com/jobs/' |
# https://docs.djangoproject.com/en/dev/ref/settings/#secure-proxy-ssl-header
SECURE_PROXY_SSL_HEADER = ("HTTP_X_FORWARDED_PROTO", "https")
# https://docs.djangoproject.com/en/dev/ref/settings/#secure-ssl-redirect
SECURE_SSL_REDIRECT = True
# https://docs.djangoproject.com/en/dev/ref/settings/#session-cookie-secure
SESSION_COOKIE_SECURE = True
# https://docs.djangoproject.com/en/dev/ref/settings/#csrf-cookie-secure
CSRF_COOKIE_SECURE = True
# https://docs.djangoproject.com/en/dev/topics/security/#ssl-https
# https://docs.djangoproject.com/en/dev/ref/settings/#secure-hsts-preload
SECURE_HSTS_PRELOAD = True
# https://docs.djangoproject.com/en/dev/ref/settings/#secure-hsts-include-subdomains
SECURE_HSTS_INCLUDE_SUBDOMAINS = True
# https://docs.djangoproject.com/en/dev/ref/settings/#secure-hsts-seconds
SECURE_HSTS_SECONDS = 31536000
# https://docs.djangoproject.com/en/dev/ref/middleware/#x-content-type-options-nosniff
SECURE_CONTENT_TYPE_NOSNIFF = True
| secure_proxy_ssl_header = ('HTTP_X_FORWARDED_PROTO', 'https')
secure_ssl_redirect = True
session_cookie_secure = True
csrf_cookie_secure = True
secure_hsts_preload = True
secure_hsts_include_subdomains = True
secure_hsts_seconds = 31536000
secure_content_type_nosniff = True |
# The `Environment` class represents the dynamic environment of McCarthy's original Lisp. The creation of
# this class is actually an interesting story. As many of you probably know, [Paul Graham wrote a paper and
# code for McCarthy's original Lisp](http://www.paulgraham.com/rootsoflisp.html) and it was my first exposure to
# the stark simplicity of the language. The simplicity is breath-taking!
#
# However, while playing around with the code I found that in using the core functions (i.e. `null.`, `not.`, etc.)
# I was not experiencing the full effect of the original. That is, the original Lisp was dynamically scoped, but
# the Common Lisp used to implement and run (CLisp in the latter case) Graham's code was lexically scoped. Therefore,
# by attempting to write high-level functions using only the magnificent 7 and Graham's core functions in the Common Lisp
# I was taking advantage of lexical scope; something not available to McCarthy and company. Of course, the whole reason
# that Graham wrote `eval.` was to enforce dynamic scoping (he used a list of symbol-value pairs where the dynamic variables
# were added to its front when introduced). However, that was extremely cumbersome to use:
#
# (eval. 'a '((a 1) (a 2)))
# ;=> 1
#
# So I then implemented a simple REPL in Common Lisp that fed input into `eval.` and maintained the current environment list.
# That was fun, but I wasn't sure that I was learning anything at all. Therefore, years later I came across the simple
# REPL and decided to try to implement my own core environment for the magnificent 7 to truly get a feel for what it took
# to build a simple language up from scratch. I suppose if I were a real manly guy then I would have found an IBM 704, but
# that would be totally insane. (email me if you have one that you'd like to sell for cheap)
#
# Anyway, the point of this is that I needed to start with creating an `Environment` that provided dynamic scoping, and the
# result is this.
class Environment:
# The binding are stored in a simple dict and the stack discipline is emulated through the `parent` link
def __init__(self, par=None, bnd=None):
if bnd:
self.binds = bnd
else:
self.binds = {}
self.parent = par
if par:
self.level = self.parent.level + 1
else:
self.level = 0
# Getting a binding potentially requires the traversal of the parent link
def get(self, key):
if key in self.binds:
return self.binds[key]
elif self.parent:
return self.parent.get(key)
else:
raise ValueError("Invalid symbol " + key)
# Setting a binding is symmetric to getting
def set(self, key, value):
if key in self.binds:
self.binds[key] = value
elif self.parent:
self.parent.set(key,value)
else:
self.binds[key] = value
def definedp(self, key):
if key in self.binds.keys():
return True
return False
# Push a new binding by creating a new Env
#
# Dynamic scope works like a stack. Whenever a variable is created it's binding is pushed onto a
# global stack. In this case, the stack is simulated through a chain of parent links. So if you were to
# create the following:
#
# (label a nil)
# (label frobnicate (lambda () (cons a nil)))
#
# ((lambda (a)
# (frobnicate))
# (quote x))
#
# Then the stack would look like the figure below within the body of `frobnicate`:
#
# | |
# | |
# | a = 'x |
# | ------- |
# | a = nil |
# +---------+
#
# Meaning that when accessing `a`, `frobnicate` will get the binding at the top of the stack, producing the result `(x)`. This push/pop
# can become difficult, so people have to do all kinds of tricks to avoid confusion (i.e. pseudo-namespace via variable naming schemes).
#
def push(self, bnd=None):
return Environment(self, bnd)
def pop(self):
return self.parent
def __repr__( self):
ret = "\nEnvironment %s:\n" % self.level
keys = [i for i in self.binds.keys() if not i[:2] == "__"]
for key in keys:
ret = ret + " %5s: %s\n" % (key, self.binds[key])
return ret
| class Environment:
def __init__(self, par=None, bnd=None):
if bnd:
self.binds = bnd
else:
self.binds = {}
self.parent = par
if par:
self.level = self.parent.level + 1
else:
self.level = 0
def get(self, key):
if key in self.binds:
return self.binds[key]
elif self.parent:
return self.parent.get(key)
else:
raise value_error('Invalid symbol ' + key)
def set(self, key, value):
if key in self.binds:
self.binds[key] = value
elif self.parent:
self.parent.set(key, value)
else:
self.binds[key] = value
def definedp(self, key):
if key in self.binds.keys():
return True
return False
def push(self, bnd=None):
return environment(self, bnd)
def pop(self):
return self.parent
def __repr__(self):
ret = '\nEnvironment %s:\n' % self.level
keys = [i for i in self.binds.keys() if not i[:2] == '__']
for key in keys:
ret = ret + ' %5s: %s\n' % (key, self.binds[key])
return ret |
class Exercises:
def __init__(self, topic, course_name, judge_contest_link, problems):
self.topic = topic
self.course_name = course_name
self.judge_contest_link = judge_contest_link
self.problems = [*problems]
def get_info(self):
info = f'Exercises: {self.topic}\n' \
f'Problems for exercises and homework for the "{self.course_name}" course @ SoftUni.' \
f'\nCheck your solutions here: {self.judge_contest_link}\n'
for p in range(len(self.problems)):
if p == len(self.problems) - 1:
info += f'{p + 1}. {self.problems[p]}'
else:
info += f'{p + 1}. {self.problems[p]}\n'
return info
num = 1
items = []
while True:
line_input = input()
if line_input == 'go go go':
break
topic, course_name, judge_contest_link, all_problems = list(line_input.split(' -> '))
problems = all_problems.split(', ')
items.append(Exercises(topic, course_name, judge_contest_link, problems))
for i in items:
print(i.get_info())
| class Exercises:
def __init__(self, topic, course_name, judge_contest_link, problems):
self.topic = topic
self.course_name = course_name
self.judge_contest_link = judge_contest_link
self.problems = [*problems]
def get_info(self):
info = f'Exercises: {self.topic}\nProblems for exercises and homework for the "{self.course_name}" course @ SoftUni.\nCheck your solutions here: {self.judge_contest_link}\n'
for p in range(len(self.problems)):
if p == len(self.problems) - 1:
info += f'{p + 1}. {self.problems[p]}'
else:
info += f'{p + 1}. {self.problems[p]}\n'
return info
num = 1
items = []
while True:
line_input = input()
if line_input == 'go go go':
break
(topic, course_name, judge_contest_link, all_problems) = list(line_input.split(' -> '))
problems = all_problems.split(', ')
items.append(exercises(topic, course_name, judge_contest_link, problems))
for i in items:
print(i.get_info()) |
# =================================================
# SERVER CONFIGURATIONS
# =================================================
CLIENT_ID=''
CLIENT_SECRET=''
REDIRECT_URI='http://ROCKOPY/'
# =================================================
# SERVER CONFIGURATIONS
# =================================================
SERVER_IP = "127.0.0.1"
SERVER_PORT = 5043
# =================================================
# OTHER OPTIONS
# =================================================
# how many track search results show:
TRACKS_TO_SEARCH = 5
| client_id = ''
client_secret = ''
redirect_uri = 'http://ROCKOPY/'
server_ip = '127.0.0.1'
server_port = 5043
tracks_to_search = 5 |
allData = {'AK': {'Aleutians East': {'pop': 3141, 'tracts': 1},
'Aleutians West': {'pop': 5561, 'tracts': 2},
'Anchorage': {'pop': 291826, 'tracts': 55},
'Bethel': {'pop': 17013, 'tracts': 3},
'Bristol Bay': {'pop': 997, 'tracts': 1},
'Denali': {'pop': 1826, 'tracts': 1},
'Dillingham': {'pop': 4847, 'tracts': 2},
'Fairbanks North Star': {'pop': 97581, 'tracts': 19},
'Haines': {'pop': 2508, 'tracts': 1},
'Hoonah-Angoon': {'pop': 2150, 'tracts': 2},
'Juneau': {'pop': 31275, 'tracts': 6},
'Kenai Peninsula': {'pop': 55400, 'tracts': 13},
'Ketchikan Gateway': {'pop': 13477, 'tracts': 4},
'Kodiak Island': {'pop': 13592, 'tracts': 5},
'Lake and Peninsula': {'pop': 1631, 'tracts': 1},
'Matanuska-Susitna': {'pop': 88995, 'tracts': 24},
'Nome': {'pop': 9492, 'tracts': 2},
'North Slope': {'pop': 9430, 'tracts': 3},
'Northwest Arctic': {'pop': 7523, 'tracts': 2},
'Petersburg': {'pop': 3815, 'tracts': 1},
'Prince of Wales-Hyder': {'pop': 5559, 'tracts': 4},
'Sitka': {'pop': 8881, 'tracts': 2},
'Skagway': {'pop': 968, 'tracts': 1},
'Southeast Fairbanks': {'pop': 7029, 'tracts': 2},
'Valdez-Cordova': {'pop': 9636, 'tracts': 3},
'Wade Hampton': {'pop': 7459, 'tracts': 1},
'Wrangell': {'pop': 2369, 'tracts': 1},
'Yakutat': {'pop': 662, 'tracts': 1},
'Yukon-Koyukuk': {'pop': 5588, 'tracts': 4}},
'AL': {'Autauga': {'pop': 54571, 'tracts': 12},
'Baldwin': {'pop': 182265, 'tracts': 31},
'Barbour': {'pop': 27457, 'tracts': 9},
'Bibb': {'pop': 22915, 'tracts': 4},
'Blount': {'pop': 57322, 'tracts': 9},
'Bullock': {'pop': 10914, 'tracts': 3},
'Butler': {'pop': 20947, 'tracts': 9},
'Calhoun': {'pop': 118572, 'tracts': 31},
'Chambers': {'pop': 34215, 'tracts': 9},
'Cherokee': {'pop': 25989, 'tracts': 6},
'Chilton': {'pop': 43643, 'tracts': 9},
'Choctaw': {'pop': 13859, 'tracts': 4},
'Clarke': {'pop': 25833, 'tracts': 9},
'Clay': {'pop': 13932, 'tracts': 4},
'Cleburne': {'pop': 14972, 'tracts': 4},
'Coffee': {'pop': 49948, 'tracts': 14},
'Colbert': {'pop': 54428, 'tracts': 14},
'Conecuh': {'pop': 13228, 'tracts': 5},
'Coosa': {'pop': 11539, 'tracts': 3},
'Covington': {'pop': 37765, 'tracts': 14},
'Crenshaw': {'pop': 13906, 'tracts': 6},
'Cullman': {'pop': 80406, 'tracts': 18},
'Dale': {'pop': 50251, 'tracts': 14},
'Dallas': {'pop': 43820, 'tracts': 15},
'DeKalb': {'pop': 71109, 'tracts': 14},
'Elmore': {'pop': 79303, 'tracts': 15},
'Escambia': {'pop': 38319, 'tracts': 9},
'Etowah': {'pop': 104430, 'tracts': 30},
'Fayette': {'pop': 17241, 'tracts': 5},
'Franklin': {'pop': 31704, 'tracts': 9},
'Geneva': {'pop': 26790, 'tracts': 6},
'Greene': {'pop': 9045, 'tracts': 3},
'Hale': {'pop': 15760, 'tracts': 6},
'Henry': {'pop': 17302, 'tracts': 6},
'Houston': {'pop': 101547, 'tracts': 22},
'Jackson': {'pop': 53227, 'tracts': 11},
'Jefferson': {'pop': 658466, 'tracts': 163},
'Lamar': {'pop': 14564, 'tracts': 3},
'Lauderdale': {'pop': 92709, 'tracts': 22},
'Lawrence': {'pop': 34339, 'tracts': 9},
'Lee': {'pop': 140247, 'tracts': 27},
'Limestone': {'pop': 82782, 'tracts': 16},
'Lowndes': {'pop': 11299, 'tracts': 4},
'Macon': {'pop': 21452, 'tracts': 12},
'Madison': {'pop': 334811, 'tracts': 73},
'Marengo': {'pop': 21027, 'tracts': 6},
'Marion': {'pop': 30776, 'tracts': 8},
'Marshall': {'pop': 93019, 'tracts': 18},
'Mobile': {'pop': 412992, 'tracts': 114},
'Monroe': {'pop': 23068, 'tracts': 7},
'Montgomery': {'pop': 229363, 'tracts': 65},
'Morgan': {'pop': 119490, 'tracts': 27},
'Perry': {'pop': 10591, 'tracts': 3},
'Pickens': {'pop': 19746, 'tracts': 5},
'Pike': {'pop': 32899, 'tracts': 8},
'Randolph': {'pop': 22913, 'tracts': 6},
'Russell': {'pop': 52947, 'tracts': 13},
'Shelby': {'pop': 195085, 'tracts': 48},
'St. Clair': {'pop': 83593, 'tracts': 13},
'Sumter': {'pop': 13763, 'tracts': 4},
'Talladega': {'pop': 82291, 'tracts': 22},
'Tallapoosa': {'pop': 41616, 'tracts': 10},
'Tuscaloosa': {'pop': 194656, 'tracts': 47},
'Walker': {'pop': 67023, 'tracts': 18},
'Washington': {'pop': 17581, 'tracts': 5},
'Wilcox': {'pop': 11670, 'tracts': 4},
'Winston': {'pop': 24484, 'tracts': 7}},
'AR': {'Arkansas': {'pop': 19019, 'tracts': 8},
'Ashley': {'pop': 21853, 'tracts': 7},
'Baxter': {'pop': 41513, 'tracts': 9},
'Benton': {'pop': 221339, 'tracts': 49},
'Boone': {'pop': 36903, 'tracts': 7},
'Bradley': {'pop': 11508, 'tracts': 5},
'Calhoun': {'pop': 5368, 'tracts': 2},
'Carroll': {'pop': 27446, 'tracts': 5},
'Chicot': {'pop': 11800, 'tracts': 4},
'Clark': {'pop': 22995, 'tracts': 5},
'Clay': {'pop': 16083, 'tracts': 6},
'Cleburne': {'pop': 25970, 'tracts': 7},
'Cleveland': {'pop': 8689, 'tracts': 2},
'Columbia': {'pop': 24552, 'tracts': 5},
'Conway': {'pop': 21273, 'tracts': 6},
'Craighead': {'pop': 96443, 'tracts': 17},
'Crawford': {'pop': 61948, 'tracts': 11},
'Crittenden': {'pop': 50902, 'tracts': 20},
'Cross': {'pop': 17870, 'tracts': 6},
'Dallas': {'pop': 8116, 'tracts': 3},
'Desha': {'pop': 13008, 'tracts': 5},
'Drew': {'pop': 18509, 'tracts': 5},
'Faulkner': {'pop': 113237, 'tracts': 25},
'Franklin': {'pop': 18125, 'tracts': 3},
'Fulton': {'pop': 12245, 'tracts': 2},
'Garland': {'pop': 96024, 'tracts': 20},
'Grant': {'pop': 17853, 'tracts': 4},
'Greene': {'pop': 42090, 'tracts': 9},
'Hempstead': {'pop': 22609, 'tracts': 5},
'Hot Spring': {'pop': 32923, 'tracts': 7},
'Howard': {'pop': 13789, 'tracts': 3},
'Independence': {'pop': 36647, 'tracts': 8},
'Izard': {'pop': 13696, 'tracts': 4},
'Jackson': {'pop': 17997, 'tracts': 5},
'Jefferson': {'pop': 77435, 'tracts': 24},
'Johnson': {'pop': 25540, 'tracts': 6},
'Lafayette': {'pop': 7645, 'tracts': 2},
'Lawrence': {'pop': 17415, 'tracts': 6},
'Lee': {'pop': 10424, 'tracts': 4},
'Lincoln': {'pop': 14134, 'tracts': 4},
'Little River': {'pop': 13171, 'tracts': 4},
'Logan': {'pop': 22353, 'tracts': 6},
'Lonoke': {'pop': 68356, 'tracts': 16},
'Madison': {'pop': 15717, 'tracts': 4},
'Marion': {'pop': 16653, 'tracts': 4},
'Miller': {'pop': 43462, 'tracts': 12},
'Mississippi': {'pop': 46480, 'tracts': 12},
'Monroe': {'pop': 8149, 'tracts': 3},
'Montgomery': {'pop': 9487, 'tracts': 3},
'Nevada': {'pop': 8997, 'tracts': 3},
'Newton': {'pop': 8330, 'tracts': 2},
'Ouachita': {'pop': 26120, 'tracts': 6},
'Perry': {'pop': 10445, 'tracts': 3},
'Phillips': {'pop': 21757, 'tracts': 6},
'Pike': {'pop': 11291, 'tracts': 3},
'Poinsett': {'pop': 24583, 'tracts': 7},
'Polk': {'pop': 20662, 'tracts': 6},
'Pope': {'pop': 61754, 'tracts': 11},
'Prairie': {'pop': 8715, 'tracts': 3},
'Pulaski': {'pop': 382748, 'tracts': 95},
'Randolph': {'pop': 17969, 'tracts': 4},
'Saline': {'pop': 107118, 'tracts': 21},
'Scott': {'pop': 11233, 'tracts': 3},
'Searcy': {'pop': 8195, 'tracts': 3},
'Sebastian': {'pop': 125744, 'tracts': 26},
'Sevier': {'pop': 17058, 'tracts': 4},
'Sharp': {'pop': 17264, 'tracts': 4},
'St. Francis': {'pop': 28258, 'tracts': 6},
'Stone': {'pop': 12394, 'tracts': 3},
'Union': {'pop': 41639, 'tracts': 10},
'Van Buren': {'pop': 17295, 'tracts': 5},
'Washington': {'pop': 203065, 'tracts': 32},
'White': {'pop': 77076, 'tracts': 13},
'Woodruff': {'pop': 7260, 'tracts': 2},
'Yell': {'pop': 22185, 'tracts': 6}},
'AZ': {'Apache': {'pop': 71518, 'tracts': 16},
'Cochise': {'pop': 131346, 'tracts': 32},
'Coconino': {'pop': 134421, 'tracts': 28},
'Gila': {'pop': 53597, 'tracts': 16},
'Graham': {'pop': 37220, 'tracts': 9},
'Greenlee': {'pop': 8437, 'tracts': 3},
'La Paz': {'pop': 20489, 'tracts': 9},
'Maricopa': {'pop': 3817117, 'tracts': 916},
'Mohave': {'pop': 200186, 'tracts': 43},
'Navajo': {'pop': 107449, 'tracts': 31},
'Pima': {'pop': 980263, 'tracts': 241},
'Pinal': {'pop': 375770, 'tracts': 75},
'Santa Cruz': {'pop': 47420, 'tracts': 10},
'Yavapai': {'pop': 211033, 'tracts': 42},
'Yuma': {'pop': 195751, 'tracts': 55}},
'CA': {'Alameda': {'pop': 1510271, 'tracts': 360},
'Alpine': {'pop': 1175, 'tracts': 1},
'Amador': {'pop': 38091, 'tracts': 9},
'Butte': {'pop': 220000, 'tracts': 51},
'Calaveras': {'pop': 45578, 'tracts': 10},
'Colusa': {'pop': 21419, 'tracts': 5},
'Contra Costa': {'pop': 1049025, 'tracts': 208},
'Del Norte': {'pop': 28610, 'tracts': 7},
'El Dorado': {'pop': 181058, 'tracts': 43},
'Fresno': {'pop': 930450, 'tracts': 199},
'Glenn': {'pop': 28122, 'tracts': 6},
'Humboldt': {'pop': 134623, 'tracts': 30},
'Imperial': {'pop': 174528, 'tracts': 31},
'Inyo': {'pop': 18546, 'tracts': 6},
'Kern': {'pop': 839631, 'tracts': 151},
'Kings': {'pop': 152982, 'tracts': 27},
'Lake': {'pop': 64665, 'tracts': 15},
'Lassen': {'pop': 34895, 'tracts': 9},
'Los Angeles': {'pop': 9818605, 'tracts': 2343},
'Madera': {'pop': 150865, 'tracts': 23},
'Marin': {'pop': 252409, 'tracts': 55},
'Mariposa': {'pop': 18251, 'tracts': 6},
'Mendocino': {'pop': 87841, 'tracts': 20},
'Merced': {'pop': 255793, 'tracts': 49},
'Modoc': {'pop': 9686, 'tracts': 4},
'Mono': {'pop': 14202, 'tracts': 3},
'Monterey': {'pop': 415057, 'tracts': 93},
'Napa': {'pop': 136484, 'tracts': 40},
'Nevada': {'pop': 98764, 'tracts': 20},
'Orange': {'pop': 3010232, 'tracts': 583},
'Placer': {'pop': 348432, 'tracts': 85},
'Plumas': {'pop': 20007, 'tracts': 7},
'Riverside': {'pop': 2189641, 'tracts': 453},
'Sacramento': {'pop': 1418788, 'tracts': 317},
'San Benito': {'pop': 55269, 'tracts': 11},
'San Bernardino': {'pop': 2035210, 'tracts': 369},
'San Diego': {'pop': 3095313, 'tracts': 628},
'San Francisco': {'pop': 805235, 'tracts': 196},
'San Joaquin': {'pop': 685306, 'tracts': 139},
'San Luis Obispo': {'pop': 269637, 'tracts': 53},
'San Mateo': {'pop': 718451, 'tracts': 158},
'Santa Barbara': {'pop': 423895, 'tracts': 90},
'Santa Clara': {'pop': 1781642, 'tracts': 372},
'Santa Cruz': {'pop': 262382, 'tracts': 52},
'Shasta': {'pop': 177223, 'tracts': 48},
'Sierra': {'pop': 3240, 'tracts': 1},
'Siskiyou': {'pop': 44900, 'tracts': 14},
'Solano': {'pop': 413344, 'tracts': 96},
'Sonoma': {'pop': 483878, 'tracts': 99},
'Stanislaus': {'pop': 514453, 'tracts': 94},
'Sutter': {'pop': 94737, 'tracts': 21},
'Tehama': {'pop': 63463, 'tracts': 11},
'Trinity': {'pop': 13786, 'tracts': 5},
'Tulare': {'pop': 442179, 'tracts': 78},
'Tuolumne': {'pop': 55365, 'tracts': 11},
'Ventura': {'pop': 823318, 'tracts': 174},
'Yolo': {'pop': 200849, 'tracts': 41},
'Yuba': {'pop': 72155, 'tracts': 14}},
'CO': {'Adams': {'pop': 441603, 'tracts': 97},
'Alamosa': {'pop': 15445, 'tracts': 4},
'Arapahoe': {'pop': 572003, 'tracts': 147},
'Archuleta': {'pop': 12084, 'tracts': 4},
'Baca': {'pop': 3788, 'tracts': 2},
'Bent': {'pop': 6499, 'tracts': 1},
'Boulder': {'pop': 294567, 'tracts': 68},
'Broomfield': {'pop': 55889, 'tracts': 18},
'Chaffee': {'pop': 17809, 'tracts': 5},
'Cheyenne': {'pop': 1836, 'tracts': 1},
'Clear Creek': {'pop': 9088, 'tracts': 3},
'Conejos': {'pop': 8256, 'tracts': 2},
'Costilla': {'pop': 3524, 'tracts': 2},
'Crowley': {'pop': 5823, 'tracts': 1},
'Custer': {'pop': 4255, 'tracts': 1},
'Delta': {'pop': 30952, 'tracts': 7},
'Denver': {'pop': 600158, 'tracts': 144},
'Dolores': {'pop': 2064, 'tracts': 1},
'Douglas': {'pop': 285465, 'tracts': 61},
'Eagle': {'pop': 52197, 'tracts': 14},
'El Paso': {'pop': 622263, 'tracts': 130},
'Elbert': {'pop': 23086, 'tracts': 7},
'Fremont': {'pop': 46824, 'tracts': 14},
'Garfield': {'pop': 56389, 'tracts': 11},
'Gilpin': {'pop': 5441, 'tracts': 1},
'Grand': {'pop': 14843, 'tracts': 3},
'Gunnison': {'pop': 15324, 'tracts': 4},
'Hinsdale': {'pop': 843, 'tracts': 1},
'Huerfano': {'pop': 6711, 'tracts': 2},
'Jackson': {'pop': 1394, 'tracts': 1},
'Jefferson': {'pop': 534543, 'tracts': 138},
'Kiowa': {'pop': 1398, 'tracts': 1},
'Kit Carson': {'pop': 8270, 'tracts': 3},
'La Plata': {'pop': 51334, 'tracts': 10},
'Lake': {'pop': 7310, 'tracts': 2},
'Larimer': {'pop': 299630, 'tracts': 73},
'Las Animas': {'pop': 15507, 'tracts': 6},
'Lincoln': {'pop': 5467, 'tracts': 2},
'Logan': {'pop': 22709, 'tracts': 6},
'Mesa': {'pop': 146723, 'tracts': 29},
'Mineral': {'pop': 712, 'tracts': 1},
'Moffat': {'pop': 13795, 'tracts': 4},
'Montezuma': {'pop': 25535, 'tracts': 7},
'Montrose': {'pop': 41276, 'tracts': 10},
'Morgan': {'pop': 28159, 'tracts': 8},
'Otero': {'pop': 18831, 'tracts': 7},
'Ouray': {'pop': 4436, 'tracts': 1},
'Park': {'pop': 16206, 'tracts': 5},
'Phillips': {'pop': 4442, 'tracts': 2},
'Pitkin': {'pop': 17148, 'tracts': 4},
'Prowers': {'pop': 12551, 'tracts': 5},
'Pueblo': {'pop': 159063, 'tracts': 55},
'Rio Blanco': {'pop': 6666, 'tracts': 2},
'Rio Grande': {'pop': 11982, 'tracts': 3},
'Routt': {'pop': 23509, 'tracts': 8},
'Saguache': {'pop': 6108, 'tracts': 2},
'San Juan': {'pop': 699, 'tracts': 1},
'San Miguel': {'pop': 7359, 'tracts': 4},
'Sedgwick': {'pop': 2379, 'tracts': 1},
'Summit': {'pop': 27994, 'tracts': 5},
'Teller': {'pop': 23350, 'tracts': 6},
'Washington': {'pop': 4814, 'tracts': 2},
'Weld': {'pop': 252825, 'tracts': 77},
'Yuma': {'pop': 10043, 'tracts': 2}},
'CT': {'Fairfield': {'pop': 916829, 'tracts': 211},
'Hartford': {'pop': 894014, 'tracts': 224},
'Litchfield': {'pop': 189927, 'tracts': 51},
'Middlesex': {'pop': 165676, 'tracts': 36},
'New Haven': {'pop': 862477, 'tracts': 190},
'New London': {'pop': 274055, 'tracts': 66},
'Tolland': {'pop': 152691, 'tracts': 29},
'Windham': {'pop': 118428, 'tracts': 25}},
'DC': {'District of Columbia': {'pop': 601723, 'tracts': 179}},
'DE': {'Kent': {'pop': 162310, 'tracts': 33},
'New Castle': {'pop': 538479, 'tracts': 131},
'Sussex': {'pop': 197145, 'tracts': 54}},
'FL': {'Alachua': {'pop': 247336, 'tracts': 56},
'Baker': {'pop': 27115, 'tracts': 4},
'Bay': {'pop': 168852, 'tracts': 44},
'Bradford': {'pop': 28520, 'tracts': 4},
'Brevard': {'pop': 543376, 'tracts': 113},
'Broward': {'pop': 1748066, 'tracts': 361},
'Calhoun': {'pop': 14625, 'tracts': 3},
'Charlotte': {'pop': 159978, 'tracts': 39},
'Citrus': {'pop': 141236, 'tracts': 27},
'Clay': {'pop': 190865, 'tracts': 30},
'Collier': {'pop': 321520, 'tracts': 73},
'Columbia': {'pop': 67531, 'tracts': 12},
'DeSoto': {'pop': 34862, 'tracts': 9},
'Dixie': {'pop': 16422, 'tracts': 3},
'Duval': {'pop': 864263, 'tracts': 173},
'Escambia': {'pop': 297619, 'tracts': 71},
'Flagler': {'pop': 95696, 'tracts': 20},
'Franklin': {'pop': 11549, 'tracts': 4},
'Gadsden': {'pop': 46389, 'tracts': 9},
'Gilchrist': {'pop': 16939, 'tracts': 5},
'Glades': {'pop': 12884, 'tracts': 4},
'Gulf': {'pop': 15863, 'tracts': 3},
'Hamilton': {'pop': 14799, 'tracts': 3},
'Hardee': {'pop': 27731, 'tracts': 6},
'Hendry': {'pop': 39140, 'tracts': 7},
'Hernando': {'pop': 172778, 'tracts': 45},
'Highlands': {'pop': 98786, 'tracts': 27},
'Hillsborough': {'pop': 1229226, 'tracts': 321},
'Holmes': {'pop': 19927, 'tracts': 4},
'Indian River': {'pop': 138028, 'tracts': 30},
'Jackson': {'pop': 49746, 'tracts': 11},
'Jefferson': {'pop': 14761, 'tracts': 3},
'Lafayette': {'pop': 8870, 'tracts': 2},
'Lake': {'pop': 297052, 'tracts': 56},
'Lee': {'pop': 618754, 'tracts': 166},
'Leon': {'pop': 275487, 'tracts': 68},
'Levy': {'pop': 40801, 'tracts': 9},
'Liberty': {'pop': 8365, 'tracts': 2},
'Madison': {'pop': 19224, 'tracts': 5},
'Manatee': {'pop': 322833, 'tracts': 78},
'Marion': {'pop': 331298, 'tracts': 63},
'Martin': {'pop': 146318, 'tracts': 35},
'Miami-Dade': {'pop': 2496435, 'tracts': 519},
'Monroe': {'pop': 73090, 'tracts': 30},
'Nassau': {'pop': 73314, 'tracts': 12},
'Okaloosa': {'pop': 180822, 'tracts': 41},
'Okeechobee': {'pop': 39996, 'tracts': 12},
'Orange': {'pop': 1145956, 'tracts': 207},
'Osceola': {'pop': 268685, 'tracts': 41},
'Palm Beach': {'pop': 1320134, 'tracts': 337},
'Pasco': {'pop': 464697, 'tracts': 134},
'Pinellas': {'pop': 916542, 'tracts': 245},
'Polk': {'pop': 602095, 'tracts': 154},
'Putnam': {'pop': 74364, 'tracts': 17},
'Santa Rosa': {'pop': 151372, 'tracts': 25},
'Sarasota': {'pop': 379448, 'tracts': 94},
'Seminole': {'pop': 422718, 'tracts': 86},
'St. Johns': {'pop': 190039, 'tracts': 40},
'St. Lucie': {'pop': 277789, 'tracts': 44},
'Sumter': {'pop': 93420, 'tracts': 19},
'Suwannee': {'pop': 41551, 'tracts': 7},
'Taylor': {'pop': 22570, 'tracts': 4},
'Union': {'pop': 15535, 'tracts': 3},
'Volusia': {'pop': 494593, 'tracts': 113},
'Wakulla': {'pop': 30776, 'tracts': 4},
'Walton': {'pop': 55043, 'tracts': 11},
'Washington': {'pop': 24896, 'tracts': 7}},
'GA': {'Appling': {'pop': 18236, 'tracts': 5},
'Atkinson': {'pop': 8375, 'tracts': 3},
'Bacon': {'pop': 11096, 'tracts': 3},
'Baker': {'pop': 3451, 'tracts': 2},
'Baldwin': {'pop': 45720, 'tracts': 9},
'Banks': {'pop': 18395, 'tracts': 4},
'Barrow': {'pop': 69367, 'tracts': 18},
'Bartow': {'pop': 100157, 'tracts': 15},
'Ben Hill': {'pop': 17634, 'tracts': 5},
'Berrien': {'pop': 19286, 'tracts': 6},
'Bibb': {'pop': 155547, 'tracts': 44},
'Bleckley': {'pop': 13063, 'tracts': 3},
'Brantley': {'pop': 18411, 'tracts': 3},
'Brooks': {'pop': 16243, 'tracts': 5},
'Bryan': {'pop': 30233, 'tracts': 7},
'Bulloch': {'pop': 70217, 'tracts': 12},
'Burke': {'pop': 23316, 'tracts': 6},
'Butts': {'pop': 23655, 'tracts': 3},
'Calhoun': {'pop': 6694, 'tracts': 2},
'Camden': {'pop': 50513, 'tracts': 10},
'Candler': {'pop': 10998, 'tracts': 3},
'Carroll': {'pop': 110527, 'tracts': 17},
'Catoosa': {'pop': 63942, 'tracts': 11},
'Charlton': {'pop': 12171, 'tracts': 2},
'Chatham': {'pop': 265128, 'tracts': 72},
'Chattahoochee': {'pop': 11267, 'tracts': 5},
'Chattooga': {'pop': 26015, 'tracts': 6},
'Cherokee': {'pop': 214346, 'tracts': 26},
'Clarke': {'pop': 116714, 'tracts': 30},
'Clay': {'pop': 3183, 'tracts': 1},
'Clayton': {'pop': 259424, 'tracts': 50},
'Clinch': {'pop': 6798, 'tracts': 2},
'Cobb': {'pop': 688078, 'tracts': 120},
'Coffee': {'pop': 42356, 'tracts': 9},
'Colquitt': {'pop': 45498, 'tracts': 10},
'Columbia': {'pop': 124053, 'tracts': 20},
'Cook': {'pop': 17212, 'tracts': 4},
'Coweta': {'pop': 127317, 'tracts': 20},
'Crawford': {'pop': 12630, 'tracts': 3},
'Crisp': {'pop': 23439, 'tracts': 6},
'Dade': {'pop': 16633, 'tracts': 4},
'Dawson': {'pop': 22330, 'tracts': 3},
'DeKalb': {'pop': 691893, 'tracts': 145},
'Decatur': {'pop': 27842, 'tracts': 7},
'Dodge': {'pop': 21796, 'tracts': 6},
'Dooly': {'pop': 14918, 'tracts': 3},
'Dougherty': {'pop': 94565, 'tracts': 27},
'Douglas': {'pop': 132403, 'tracts': 20},
'Early': {'pop': 11008, 'tracts': 5},
'Echols': {'pop': 4034, 'tracts': 2},
'Effingham': {'pop': 52250, 'tracts': 10},
'Elbert': {'pop': 20166, 'tracts': 5},
'Emanuel': {'pop': 22598, 'tracts': 6},
'Evans': {'pop': 11000, 'tracts': 3},
'Fannin': {'pop': 23682, 'tracts': 5},
'Fayette': {'pop': 106567, 'tracts': 20},
'Floyd': {'pop': 96317, 'tracts': 20},
'Forsyth': {'pop': 175511, 'tracts': 45},
'Franklin': {'pop': 22084, 'tracts': 5},
'Fulton': {'pop': 920581, 'tracts': 204},
'Gilmer': {'pop': 28292, 'tracts': 5},
'Glascock': {'pop': 3082, 'tracts': 1},
'Glynn': {'pop': 79626, 'tracts': 15},
'Gordon': {'pop': 55186, 'tracts': 9},
'Grady': {'pop': 25011, 'tracts': 6},
'Greene': {'pop': 15994, 'tracts': 7},
'Gwinnett': {'pop': 805321, 'tracts': 113},
'Habersham': {'pop': 43041, 'tracts': 8},
'Hall': {'pop': 179684, 'tracts': 36},
'Hancock': {'pop': 9429, 'tracts': 2},
'Haralson': {'pop': 28780, 'tracts': 5},
'Harris': {'pop': 32024, 'tracts': 5},
'Hart': {'pop': 25213, 'tracts': 5},
'Heard': {'pop': 11834, 'tracts': 3},
'Henry': {'pop': 203922, 'tracts': 25},
'Houston': {'pop': 139900, 'tracts': 23},
'Irwin': {'pop': 9538, 'tracts': 2},
'Jackson': {'pop': 60485, 'tracts': 11},
'Jasper': {'pop': 13900, 'tracts': 3},
'Jeff Davis': {'pop': 15068, 'tracts': 3},
'Jefferson': {'pop': 16930, 'tracts': 4},
'Jenkins': {'pop': 8340, 'tracts': 2},
'Johnson': {'pop': 9980, 'tracts': 3},
'Jones': {'pop': 28669, 'tracts': 6},
'Lamar': {'pop': 18317, 'tracts': 3},
'Lanier': {'pop': 10078, 'tracts': 2},
'Laurens': {'pop': 48434, 'tracts': 13},
'Lee': {'pop': 28298, 'tracts': 5},
'Liberty': {'pop': 63453, 'tracts': 14},
'Lincoln': {'pop': 7996, 'tracts': 2},
'Long': {'pop': 14464, 'tracts': 3},
'Lowndes': {'pop': 109233, 'tracts': 25},
'Lumpkin': {'pop': 29966, 'tracts': 4},
'Macon': {'pop': 14740, 'tracts': 4},
'Madison': {'pop': 28120, 'tracts': 6},
'Marion': {'pop': 8742, 'tracts': 2},
'McDuffie': {'pop': 21875, 'tracts': 5},
'McIntosh': {'pop': 14333, 'tracts': 4},
'Meriwether': {'pop': 21992, 'tracts': 4},
'Miller': {'pop': 6125, 'tracts': 3},
'Mitchell': {'pop': 23498, 'tracts': 5},
'Monroe': {'pop': 26424, 'tracts': 5},
'Montgomery': {'pop': 9123, 'tracts': 3},
'Morgan': {'pop': 17868, 'tracts': 5},
'Murray': {'pop': 39628, 'tracts': 8},
'Muscogee': {'pop': 189885, 'tracts': 53},
'Newton': {'pop': 99958, 'tracts': 13},
'Oconee': {'pop': 32808, 'tracts': 6},
'Oglethorpe': {'pop': 14899, 'tracts': 4},
'Paulding': {'pop': 142324, 'tracts': 19},
'Peach': {'pop': 27695, 'tracts': 6},
'Pickens': {'pop': 29431, 'tracts': 6},
'Pierce': {'pop': 18758, 'tracts': 4},
'Pike': {'pop': 17869, 'tracts': 4},
'Polk': {'pop': 41475, 'tracts': 7},
'Pulaski': {'pop': 12010, 'tracts': 3},
'Putnam': {'pop': 21218, 'tracts': 5},
'Quitman': {'pop': 2513, 'tracts': 1},
'Rabun': {'pop': 16276, 'tracts': 5},
'Randolph': {'pop': 7719, 'tracts': 2},
'Richmond': {'pop': 200549, 'tracts': 47},
'Rockdale': {'pop': 85215, 'tracts': 15},
'Schley': {'pop': 5010, 'tracts': 2},
'Screven': {'pop': 14593, 'tracts': 5},
'Seminole': {'pop': 8729, 'tracts': 3},
'Spalding': {'pop': 64073, 'tracts': 12},
'Stephens': {'pop': 26175, 'tracts': 5},
'Stewart': {'pop': 6058, 'tracts': 2},
'Sumter': {'pop': 32819, 'tracts': 8},
'Talbot': {'pop': 6865, 'tracts': 3},
'Taliaferro': {'pop': 1717, 'tracts': 1},
'Tattnall': {'pop': 25520, 'tracts': 5},
'Taylor': {'pop': 8906, 'tracts': 3},
'Telfair': {'pop': 16500, 'tracts': 3},
'Terrell': {'pop': 9315, 'tracts': 4},
'Thomas': {'pop': 44720, 'tracts': 11},
'Tift': {'pop': 40118, 'tracts': 9},
'Toombs': {'pop': 27223, 'tracts': 6},
'Towns': {'pop': 10471, 'tracts': 3},
'Treutlen': {'pop': 6885, 'tracts': 2},
'Troup': {'pop': 67044, 'tracts': 14},
'Turner': {'pop': 8930, 'tracts': 2},
'Twiggs': {'pop': 9023, 'tracts': 2},
'Union': {'pop': 21356, 'tracts': 6},
'Upson': {'pop': 27153, 'tracts': 7},
'Walker': {'pop': 68756, 'tracts': 13},
'Walton': {'pop': 83768, 'tracts': 15},
'Ware': {'pop': 36312, 'tracts': 9},
'Warren': {'pop': 5834, 'tracts': 2},
'Washington': {'pop': 21187, 'tracts': 5},
'Wayne': {'pop': 30099, 'tracts': 6},
'Webster': {'pop': 2799, 'tracts': 2},
'Wheeler': {'pop': 7421, 'tracts': 2},
'White': {'pop': 27144, 'tracts': 5},
'Whitfield': {'pop': 102599, 'tracts': 18},
'Wilcox': {'pop': 9255, 'tracts': 4},
'Wilkes': {'pop': 10593, 'tracts': 4},
'Wilkinson': {'pop': 9563, 'tracts': 3},
'Worth': {'pop': 21679, 'tracts': 5}},
'HI': {'Hawaii': {'pop': 185079, 'tracts': 34},
'Honolulu': {'pop': 953207, 'tracts': 244},
'Kalawao': {'pop': 90, 'tracts': 1},
'Kauai': {'pop': 67091, 'tracts': 16},
'Maui': {'pop': 154834, 'tracts': 37}},
'IA': {'Adair': {'pop': 7682, 'tracts': 3},
'Adams': {'pop': 4029, 'tracts': 2},
'Allamakee': {'pop': 14330, 'tracts': 5},
'Appanoose': {'pop': 12887, 'tracts': 5},
'Audubon': {'pop': 6119, 'tracts': 3},
'Benton': {'pop': 26076, 'tracts': 7},
'Black Hawk': {'pop': 131090, 'tracts': 38},
'Boone': {'pop': 26306, 'tracts': 7},
'Bremer': {'pop': 24276, 'tracts': 8},
'Buchanan': {'pop': 20958, 'tracts': 6},
'Buena Vista': {'pop': 20260, 'tracts': 6},
'Butler': {'pop': 14867, 'tracts': 5},
'Calhoun': {'pop': 9670, 'tracts': 4},
'Carroll': {'pop': 20816, 'tracts': 6},
'Cass': {'pop': 13956, 'tracts': 5},
'Cedar': {'pop': 18499, 'tracts': 5},
'Cerro Gordo': {'pop': 44151, 'tracts': 11},
'Cherokee': {'pop': 12072, 'tracts': 4},
'Chickasaw': {'pop': 12439, 'tracts': 4},
'Clarke': {'pop': 9286, 'tracts': 3},
'Clay': {'pop': 16667, 'tracts': 4},
'Clayton': {'pop': 18129, 'tracts': 6},
'Clinton': {'pop': 49116, 'tracts': 12},
'Crawford': {'pop': 17096, 'tracts': 5},
'Dallas': {'pop': 66135, 'tracts': 15},
'Davis': {'pop': 8753, 'tracts': 2},
'Decatur': {'pop': 8457, 'tracts': 3},
'Delaware': {'pop': 17764, 'tracts': 4},
'Des Moines': {'pop': 40325, 'tracts': 11},
'Dickinson': {'pop': 16667, 'tracts': 5},
'Dubuque': {'pop': 93653, 'tracts': 26},
'Emmet': {'pop': 10302, 'tracts': 4},
'Fayette': {'pop': 20880, 'tracts': 7},
'Floyd': {'pop': 16303, 'tracts': 5},
'Franklin': {'pop': 10680, 'tracts': 3},
'Fremont': {'pop': 7441, 'tracts': 3},
'Greene': {'pop': 9336, 'tracts': 4},
'Grundy': {'pop': 12453, 'tracts': 4},
'Guthrie': {'pop': 10954, 'tracts': 3},
'Hamilton': {'pop': 15673, 'tracts': 5},
'Hancock': {'pop': 11341, 'tracts': 4},
'Hardin': {'pop': 17534, 'tracts': 6},
'Harrison': {'pop': 14928, 'tracts': 5},
'Henry': {'pop': 20145, 'tracts': 5},
'Howard': {'pop': 9566, 'tracts': 3},
'Humboldt': {'pop': 9815, 'tracts': 4},
'Ida': {'pop': 7089, 'tracts': 3},
'Iowa': {'pop': 16355, 'tracts': 4},
'Jackson': {'pop': 19848, 'tracts': 6},
'Jasper': {'pop': 36842, 'tracts': 9},
'Jefferson': {'pop': 16843, 'tracts': 4},
'Johnson': {'pop': 130882, 'tracts': 24},
'Jones': {'pop': 20638, 'tracts': 5},
'Keokuk': {'pop': 10511, 'tracts': 4},
'Kossuth': {'pop': 15543, 'tracts': 6},
'Lee': {'pop': 35862, 'tracts': 11},
'Linn': {'pop': 211226, 'tracts': 45},
'Louisa': {'pop': 11387, 'tracts': 3},
'Lucas': {'pop': 8898, 'tracts': 4},
'Lyon': {'pop': 11581, 'tracts': 3},
'Madison': {'pop': 15679, 'tracts': 3},
'Mahaska': {'pop': 22381, 'tracts': 7},
'Marion': {'pop': 33309, 'tracts': 8},
'Marshall': {'pop': 40648, 'tracts': 10},
'Mills': {'pop': 15059, 'tracts': 5},
'Mitchell': {'pop': 10776, 'tracts': 3},
'Monona': {'pop': 9243, 'tracts': 4},
'Monroe': {'pop': 7970, 'tracts': 3},
'Montgomery': {'pop': 10740, 'tracts': 4},
'Muscatine': {'pop': 42745, 'tracts': 10},
"O'Brien": {'pop': 14398, 'tracts': 4},
'Osceola': {'pop': 6462, 'tracts': 2},
'Page': {'pop': 15932, 'tracts': 6},
'Palo Alto': {'pop': 9421, 'tracts': 4},
'Plymouth': {'pop': 24986, 'tracts': 6},
'Pocahontas': {'pop': 7310, 'tracts': 3},
'Polk': {'pop': 430640, 'tracts': 98},
'Pottawattamie': {'pop': 93158, 'tracts': 30},
'Poweshiek': {'pop': 18914, 'tracts': 5},
'Ringgold': {'pop': 5131, 'tracts': 2},
'Sac': {'pop': 10350, 'tracts': 4},
'Scott': {'pop': 165224, 'tracts': 47},
'Shelby': {'pop': 12167, 'tracts': 4},
'Sioux': {'pop': 33704, 'tracts': 7},
'Story': {'pop': 89542, 'tracts': 20},
'Tama': {'pop': 17767, 'tracts': 6},
'Taylor': {'pop': 6317, 'tracts': 3},
'Union': {'pop': 12534, 'tracts': 4},
'Van Buren': {'pop': 7570, 'tracts': 2},
'Wapello': {'pop': 35625, 'tracts': 11},
'Warren': {'pop': 46225, 'tracts': 12},
'Washington': {'pop': 21704, 'tracts': 5},
'Wayne': {'pop': 6403, 'tracts': 3},
'Webster': {'pop': 38013, 'tracts': 12},
'Winnebago': {'pop': 10866, 'tracts': 3},
'Winneshiek': {'pop': 21056, 'tracts': 5},
'Woodbury': {'pop': 102172, 'tracts': 26},
'Worth': {'pop': 7598, 'tracts': 3},
'Wright': {'pop': 13229, 'tracts': 5}},
'ID': {'Ada': {'pop': 392365, 'tracts': 59},
'Adams': {'pop': 3976, 'tracts': 2},
'Bannock': {'pop': 82839, 'tracts': 22},
'Bear Lake': {'pop': 5986, 'tracts': 2},
'Benewah': {'pop': 9285, 'tracts': 2},
'Bingham': {'pop': 45607, 'tracts': 8},
'Blaine': {'pop': 21376, 'tracts': 4},
'Boise': {'pop': 7028, 'tracts': 1},
'Bonner': {'pop': 40877, 'tracts': 9},
'Bonneville': {'pop': 104234, 'tracts': 21},
'Boundary': {'pop': 10972, 'tracts': 2},
'Butte': {'pop': 2891, 'tracts': 1},
'Camas': {'pop': 1117, 'tracts': 1},
'Canyon': {'pop': 188923, 'tracts': 29},
'Caribou': {'pop': 6963, 'tracts': 2},
'Cassia': {'pop': 22952, 'tracts': 6},
'Clark': {'pop': 982, 'tracts': 1},
'Clearwater': {'pop': 8761, 'tracts': 2},
'Custer': {'pop': 4368, 'tracts': 1},
'Elmore': {'pop': 27038, 'tracts': 5},
'Franklin': {'pop': 12786, 'tracts': 2},
'Fremont': {'pop': 13242, 'tracts': 3},
'Gem': {'pop': 16719, 'tracts': 3},
'Gooding': {'pop': 15464, 'tracts': 2},
'Idaho': {'pop': 16267, 'tracts': 5},
'Jefferson': {'pop': 26140, 'tracts': 4},
'Jerome': {'pop': 22374, 'tracts': 5},
'Kootenai': {'pop': 138494, 'tracts': 25},
'Latah': {'pop': 37244, 'tracts': 7},
'Lemhi': {'pop': 7936, 'tracts': 3},
'Lewis': {'pop': 3821, 'tracts': 3},
'Lincoln': {'pop': 5208, 'tracts': 1},
'Madison': {'pop': 37536, 'tracts': 6},
'Minidoka': {'pop': 20069, 'tracts': 5},
'Nez Perce': {'pop': 39265, 'tracts': 10},
'Oneida': {'pop': 4286, 'tracts': 1},
'Owyhee': {'pop': 11526, 'tracts': 3},
'Payette': {'pop': 22623, 'tracts': 4},
'Power': {'pop': 7817, 'tracts': 2},
'Shoshone': {'pop': 12765, 'tracts': 3},
'Teton': {'pop': 10170, 'tracts': 1},
'Twin Falls': {'pop': 77230, 'tracts': 14},
'Valley': {'pop': 9862, 'tracts': 3},
'Washington': {'pop': 10198, 'tracts': 3}},
'IL': {'Adams': {'pop': 67103, 'tracts': 18},
'Alexander': {'pop': 8238, 'tracts': 4},
'Bond': {'pop': 17768, 'tracts': 4},
'Boone': {'pop': 54165, 'tracts': 7},
'Brown': {'pop': 6937, 'tracts': 2},
'Bureau': {'pop': 34978, 'tracts': 10},
'Calhoun': {'pop': 5089, 'tracts': 2},
'Carroll': {'pop': 15387, 'tracts': 6},
'Cass': {'pop': 13642, 'tracts': 5},
'Champaign': {'pop': 201081, 'tracts': 43},
'Christian': {'pop': 34800, 'tracts': 10},
'Clark': {'pop': 16335, 'tracts': 4},
'Clay': {'pop': 13815, 'tracts': 4},
'Clinton': {'pop': 37762, 'tracts': 8},
'Coles': {'pop': 53873, 'tracts': 12},
'Cook': {'pop': 5194675, 'tracts': 1318},
'Crawford': {'pop': 19817, 'tracts': 6},
'Cumberland': {'pop': 11048, 'tracts': 3},
'De Witt': {'pop': 16561, 'tracts': 5},
'DeKalb': {'pop': 105160, 'tracts': 21},
'Douglas': {'pop': 19980, 'tracts': 5},
'DuPage': {'pop': 916924, 'tracts': 216},
'Edgar': {'pop': 18576, 'tracts': 5},
'Edwards': {'pop': 6721, 'tracts': 3},
'Effingham': {'pop': 34242, 'tracts': 8},
'Fayette': {'pop': 22140, 'tracts': 7},
'Ford': {'pop': 14081, 'tracts': 5},
'Franklin': {'pop': 39561, 'tracts': 12},
'Fulton': {'pop': 37069, 'tracts': 12},
'Gallatin': {'pop': 5589, 'tracts': 2},
'Greene': {'pop': 13886, 'tracts': 5},
'Grundy': {'pop': 50063, 'tracts': 10},
'Hamilton': {'pop': 8457, 'tracts': 3},
'Hancock': {'pop': 19104, 'tracts': 7},
'Hardin': {'pop': 4320, 'tracts': 2},
'Henderson': {'pop': 7331, 'tracts': 3},
'Henry': {'pop': 50486, 'tracts': 13},
'Iroquois': {'pop': 29718, 'tracts': 9},
'Jackson': {'pop': 60218, 'tracts': 14},
'Jasper': {'pop': 9698, 'tracts': 3},
'Jefferson': {'pop': 38827, 'tracts': 11},
'Jersey': {'pop': 22985, 'tracts': 6},
'Jo Daviess': {'pop': 22678, 'tracts': 6},
'Johnson': {'pop': 12582, 'tracts': 4},
'Kane': {'pop': 515269, 'tracts': 82},
'Kankakee': {'pop': 113449, 'tracts': 29},
'Kendall': {'pop': 114736, 'tracts': 10},
'Knox': {'pop': 52919, 'tracts': 16},
'La Salle': {'pop': 113924, 'tracts': 28},
'Lake': {'pop': 703462, 'tracts': 153},
'Lawrence': {'pop': 16833, 'tracts': 5},
'Lee': {'pop': 36031, 'tracts': 9},
'Livingston': {'pop': 38950, 'tracts': 10},
'Logan': {'pop': 30305, 'tracts': 8},
'Macon': {'pop': 110768, 'tracts': 34},
'Macoupin': {'pop': 47765, 'tracts': 13},
'Madison': {'pop': 269282, 'tracts': 61},
'Marion': {'pop': 39437, 'tracts': 12},
'Marshall': {'pop': 12640, 'tracts': 5},
'Mason': {'pop': 14666, 'tracts': 6},
'Massac': {'pop': 15429, 'tracts': 4},
'McDonough': {'pop': 32612, 'tracts': 10},
'McHenry': {'pop': 308760, 'tracts': 52},
'McLean': {'pop': 169572, 'tracts': 41},
'Menard': {'pop': 12705, 'tracts': 3},
'Mercer': {'pop': 16434, 'tracts': 4},
'Monroe': {'pop': 32957, 'tracts': 6},
'Montgomery': {'pop': 30104, 'tracts': 8},
'Morgan': {'pop': 35547, 'tracts': 10},
'Moultrie': {'pop': 14846, 'tracts': 4},
'Ogle': {'pop': 53497, 'tracts': 11},
'Peoria': {'pop': 186494, 'tracts': 48},
'Perry': {'pop': 22350, 'tracts': 6},
'Piatt': {'pop': 16729, 'tracts': 4},
'Pike': {'pop': 16430, 'tracts': 5},
'Pope': {'pop': 4470, 'tracts': 2},
'Pulaski': {'pop': 6161, 'tracts': 2},
'Putnam': {'pop': 6006, 'tracts': 2},
'Randolph': {'pop': 33476, 'tracts': 9},
'Richland': {'pop': 16233, 'tracts': 5},
'Rock Island': {'pop': 147546, 'tracts': 40},
'Saline': {'pop': 24913, 'tracts': 9},
'Sangamon': {'pop': 197465, 'tracts': 53},
'Schuyler': {'pop': 7544, 'tracts': 3},
'Scott': {'pop': 5355, 'tracts': 2},
'Shelby': {'pop': 22363, 'tracts': 6},
'St. Clair': {'pop': 270056, 'tracts': 60},
'Stark': {'pop': 5994, 'tracts': 2},
'Stephenson': {'pop': 47711, 'tracts': 13},
'Tazewell': {'pop': 135394, 'tracts': 30},
'Union': {'pop': 17808, 'tracts': 5},
'Vermilion': {'pop': 81625, 'tracts': 24},
'Wabash': {'pop': 11947, 'tracts': 4},
'Warren': {'pop': 17707, 'tracts': 5},
'Washington': {'pop': 14716, 'tracts': 4},
'Wayne': {'pop': 16760, 'tracts': 5},
'White': {'pop': 14665, 'tracts': 5},
'Whiteside': {'pop': 58498, 'tracts': 18},
'Will': {'pop': 677560, 'tracts': 152},
'Williamson': {'pop': 66357, 'tracts': 15},
'Winnebago': {'pop': 295266, 'tracts': 77},
'Woodford': {'pop': 38664, 'tracts': 9}},
'IN': {'Adams': {'pop': 34387, 'tracts': 7},
'Allen': {'pop': 355329, 'tracts': 96},
'Bartholomew': {'pop': 76794, 'tracts': 15},
'Benton': {'pop': 8854, 'tracts': 3},
'Blackford': {'pop': 12766, 'tracts': 4},
'Boone': {'pop': 56640, 'tracts': 10},
'Brown': {'pop': 15242, 'tracts': 4},
'Carroll': {'pop': 20155, 'tracts': 7},
'Cass': {'pop': 38966, 'tracts': 11},
'Clark': {'pop': 110232, 'tracts': 26},
'Clay': {'pop': 26890, 'tracts': 6},
'Clinton': {'pop': 33224, 'tracts': 8},
'Crawford': {'pop': 10713, 'tracts': 3},
'Daviess': {'pop': 31648, 'tracts': 7},
'DeKalb': {'pop': 42223, 'tracts': 9},
'Dearborn': {'pop': 50047, 'tracts': 10},
'Decatur': {'pop': 25740, 'tracts': 6},
'Delaware': {'pop': 117671, 'tracts': 30},
'Dubois': {'pop': 41889, 'tracts': 7},
'Elkhart': {'pop': 197559, 'tracts': 36},
'Fayette': {'pop': 24277, 'tracts': 7},
'Floyd': {'pop': 74578, 'tracts': 20},
'Fountain': {'pop': 17240, 'tracts': 5},
'Franklin': {'pop': 23087, 'tracts': 5},
'Fulton': {'pop': 20836, 'tracts': 6},
'Gibson': {'pop': 33503, 'tracts': 7},
'Grant': {'pop': 70061, 'tracts': 16},
'Greene': {'pop': 33165, 'tracts': 9},
'Hamilton': {'pop': 274569, 'tracts': 39},
'Hancock': {'pop': 70002, 'tracts': 10},
'Harrison': {'pop': 39364, 'tracts': 6},
'Hendricks': {'pop': 145448, 'tracts': 21},
'Henry': {'pop': 49462, 'tracts': 13},
'Howard': {'pop': 82752, 'tracts': 20},
'Huntington': {'pop': 37124, 'tracts': 9},
'Jackson': {'pop': 42376, 'tracts': 10},
'Jasper': {'pop': 33478, 'tracts': 8},
'Jay': {'pop': 21253, 'tracts': 7},
'Jefferson': {'pop': 32428, 'tracts': 7},
'Jennings': {'pop': 28525, 'tracts': 6},
'Johnson': {'pop': 139654, 'tracts': 22},
'Knox': {'pop': 38440, 'tracts': 10},
'Kosciusko': {'pop': 77358, 'tracts': 19},
'LaGrange': {'pop': 37128, 'tracts': 8},
'LaPorte': {'pop': 111467, 'tracts': 28},
'Lake': {'pop': 496005, 'tracts': 117},
'Lawrence': {'pop': 46134, 'tracts': 10},
'Madison': {'pop': 131636, 'tracts': 37},
'Marion': {'pop': 903393, 'tracts': 224},
'Marshall': {'pop': 47051, 'tracts': 12},
'Martin': {'pop': 10334, 'tracts': 3},
'Miami': {'pop': 36903, 'tracts': 10},
'Monroe': {'pop': 137974, 'tracts': 31},
'Montgomery': {'pop': 38124, 'tracts': 9},
'Morgan': {'pop': 68894, 'tracts': 13},
'Newton': {'pop': 14244, 'tracts': 4},
'Noble': {'pop': 47536, 'tracts': 10},
'Ohio': {'pop': 6128, 'tracts': 2},
'Orange': {'pop': 19840, 'tracts': 6},
'Owen': {'pop': 21575, 'tracts': 5},
'Parke': {'pop': 17339, 'tracts': 4},
'Perry': {'pop': 19338, 'tracts': 5},
'Pike': {'pop': 12845, 'tracts': 4},
'Porter': {'pop': 164343, 'tracts': 32},
'Posey': {'pop': 25910, 'tracts': 7},
'Pulaski': {'pop': 13402, 'tracts': 4},
'Putnam': {'pop': 37963, 'tracts': 7},
'Randolph': {'pop': 26171, 'tracts': 8},
'Ripley': {'pop': 28818, 'tracts': 6},
'Rush': {'pop': 17392, 'tracts': 5},
'Scott': {'pop': 24181, 'tracts': 5},
'Shelby': {'pop': 44436, 'tracts': 10},
'Spencer': {'pop': 20952, 'tracts': 5},
'St. Joseph': {'pop': 266931, 'tracts': 75},
'Starke': {'pop': 23363, 'tracts': 7},
'Steuben': {'pop': 34185, 'tracts': 9},
'Sullivan': {'pop': 21475, 'tracts': 5},
'Switzerland': {'pop': 10613, 'tracts': 3},
'Tippecanoe': {'pop': 172780, 'tracts': 37},
'Tipton': {'pop': 15936, 'tracts': 4},
'Union': {'pop': 7516, 'tracts': 2},
'Vanderburgh': {'pop': 179703, 'tracts': 49},
'Vermillion': {'pop': 16212, 'tracts': 5},
'Vigo': {'pop': 107848, 'tracts': 28},
'Wabash': {'pop': 32888, 'tracts': 8},
'Warren': {'pop': 8508, 'tracts': 2},
'Warrick': {'pop': 59689, 'tracts': 11},
'Washington': {'pop': 28262, 'tracts': 6},
'Wayne': {'pop': 68917, 'tracts': 17},
'Wells': {'pop': 27636, 'tracts': 7},
'White': {'pop': 24643, 'tracts': 8},
'Whitley': {'pop': 33292, 'tracts': 7}},
'KS': {'Allen': {'pop': 13371, 'tracts': 5},
'Anderson': {'pop': 8102, 'tracts': 2},
'Atchison': {'pop': 16924, 'tracts': 4},
'Barber': {'pop': 4861, 'tracts': 2},
'Barton': {'pop': 27674, 'tracts': 8},
'Bourbon': {'pop': 15173, 'tracts': 5},
'Brown': {'pop': 9984, 'tracts': 3},
'Butler': {'pop': 65880, 'tracts': 13},
'Chase': {'pop': 2790, 'tracts': 1},
'Chautauqua': {'pop': 3669, 'tracts': 1},
'Cherokee': {'pop': 21603, 'tracts': 6},
'Cheyenne': {'pop': 2726, 'tracts': 1},
'Clark': {'pop': 2215, 'tracts': 1},
'Clay': {'pop': 8535, 'tracts': 2},
'Cloud': {'pop': 9533, 'tracts': 4},
'Coffey': {'pop': 8601, 'tracts': 3},
'Comanche': {'pop': 1891, 'tracts': 1},
'Cowley': {'pop': 36311, 'tracts': 11},
'Crawford': {'pop': 39134, 'tracts': 11},
'Decatur': {'pop': 2961, 'tracts': 2},
'Dickinson': {'pop': 19754, 'tracts': 6},
'Doniphan': {'pop': 7945, 'tracts': 3},
'Douglas': {'pop': 110826, 'tracts': 22},
'Edwards': {'pop': 3037, 'tracts': 2},
'Elk': {'pop': 2882, 'tracts': 1},
'Ellis': {'pop': 28452, 'tracts': 6},
'Ellsworth': {'pop': 6497, 'tracts': 2},
'Finney': {'pop': 36776, 'tracts': 12},
'Ford': {'pop': 33848, 'tracts': 7},
'Franklin': {'pop': 25992, 'tracts': 5},
'Geary': {'pop': 34362, 'tracts': 8},
'Gove': {'pop': 2695, 'tracts': 2},
'Graham': {'pop': 2597, 'tracts': 2},
'Grant': {'pop': 7829, 'tracts': 2},
'Gray': {'pop': 6006, 'tracts': 2},
'Greeley': {'pop': 1247, 'tracts': 1},
'Greenwood': {'pop': 6689, 'tracts': 3},
'Hamilton': {'pop': 2690, 'tracts': 1},
'Harper': {'pop': 6034, 'tracts': 3},
'Harvey': {'pop': 34684, 'tracts': 6},
'Haskell': {'pop': 4256, 'tracts': 1},
'Hodgeman': {'pop': 1916, 'tracts': 1},
'Jackson': {'pop': 13462, 'tracts': 3},
'Jefferson': {'pop': 19126, 'tracts': 4},
'Jewell': {'pop': 3077, 'tracts': 2},
'Johnson': {'pop': 544179, 'tracts': 130},
'Kearny': {'pop': 3977, 'tracts': 1},
'Kingman': {'pop': 7858, 'tracts': 3},
'Kiowa': {'pop': 2553, 'tracts': 1},
'Labette': {'pop': 21607, 'tracts': 8},
'Lane': {'pop': 1750, 'tracts': 1},
'Leavenworth': {'pop': 76227, 'tracts': 16},
'Lincoln': {'pop': 3241, 'tracts': 1},
'Linn': {'pop': 9656, 'tracts': 2},
'Logan': {'pop': 2756, 'tracts': 1},
'Lyon': {'pop': 33690, 'tracts': 8},
'Marion': {'pop': 12660, 'tracts': 4},
'Marshall': {'pop': 10117, 'tracts': 4},
'McPherson': {'pop': 29180, 'tracts': 7},
'Meade': {'pop': 4575, 'tracts': 2},
'Miami': {'pop': 32787, 'tracts': 8},
'Mitchell': {'pop': 6373, 'tracts': 2},
'Montgomery': {'pop': 35471, 'tracts': 13},
'Morris': {'pop': 5923, 'tracts': 2},
'Morton': {'pop': 3233, 'tracts': 1},
'Nemaha': {'pop': 10178, 'tracts': 3},
'Neosho': {'pop': 16512, 'tracts': 5},
'Ness': {'pop': 3107, 'tracts': 2},
'Norton': {'pop': 5671, 'tracts': 1},
'Osage': {'pop': 16295, 'tracts': 5},
'Osborne': {'pop': 3858, 'tracts': 1},
'Ottawa': {'pop': 6091, 'tracts': 2},
'Pawnee': {'pop': 6973, 'tracts': 2},
'Phillips': {'pop': 5642, 'tracts': 3},
'Pottawatomie': {'pop': 21604, 'tracts': 4},
'Pratt': {'pop': 9656, 'tracts': 3},
'Rawlins': {'pop': 2519, 'tracts': 1},
'Reno': {'pop': 64511, 'tracts': 17},
'Republic': {'pop': 4980, 'tracts': 3},
'Rice': {'pop': 10083, 'tracts': 3},
'Riley': {'pop': 71115, 'tracts': 14},
'Rooks': {'pop': 5181, 'tracts': 2},
'Rush': {'pop': 3307, 'tracts': 2},
'Russell': {'pop': 6970, 'tracts': 2},
'Saline': {'pop': 55606, 'tracts': 12},
'Scott': {'pop': 4936, 'tracts': 1},
'Sedgwick': {'pop': 498365, 'tracts': 124},
'Seward': {'pop': 22952, 'tracts': 5},
'Shawnee': {'pop': 177934, 'tracts': 43},
'Sheridan': {'pop': 2556, 'tracts': 2},
'Sherman': {'pop': 6010, 'tracts': 2},
'Smith': {'pop': 3853, 'tracts': 2},
'Stafford': {'pop': 4437, 'tracts': 2},
'Stanton': {'pop': 2235, 'tracts': 1},
'Stevens': {'pop': 5724, 'tracts': 2},
'Sumner': {'pop': 24132, 'tracts': 6},
'Thomas': {'pop': 7900, 'tracts': 2},
'Trego': {'pop': 3001, 'tracts': 1},
'Wabaunsee': {'pop': 7053, 'tracts': 2},
'Wallace': {'pop': 1485, 'tracts': 1},
'Washington': {'pop': 5799, 'tracts': 2},
'Wichita': {'pop': 2234, 'tracts': 1},
'Wilson': {'pop': 9409, 'tracts': 4},
'Woodson': {'pop': 3309, 'tracts': 2},
'Wyandotte': {'pop': 157505, 'tracts': 70}},
'KY': {'Adair': {'pop': 18656, 'tracts': 7},
'Allen': {'pop': 19956, 'tracts': 6},
'Anderson': {'pop': 21421, 'tracts': 5},
'Ballard': {'pop': 8249, 'tracts': 3},
'Barren': {'pop': 42173, 'tracts': 10},
'Bath': {'pop': 11591, 'tracts': 3},
'Bell': {'pop': 28691, 'tracts': 9},
'Boone': {'pop': 118811, 'tracts': 22},
'Bourbon': {'pop': 19985, 'tracts': 6},
'Boyd': {'pop': 49542, 'tracts': 13},
'Boyle': {'pop': 28432, 'tracts': 7},
'Bracken': {'pop': 8488, 'tracts': 3},
'Breathitt': {'pop': 13878, 'tracts': 7},
'Breckinridge': {'pop': 20059, 'tracts': 6},
'Bullitt': {'pop': 74319, 'tracts': 18},
'Butler': {'pop': 12690, 'tracts': 5},
'Caldwell': {'pop': 12984, 'tracts': 3},
'Calloway': {'pop': 37191, 'tracts': 9},
'Campbell': {'pop': 90336, 'tracts': 25},
'Carlisle': {'pop': 5104, 'tracts': 3},
'Carroll': {'pop': 10811, 'tracts': 3},
'Carter': {'pop': 27720, 'tracts': 7},
'Casey': {'pop': 15955, 'tracts': 5},
'Christian': {'pop': 73955, 'tracts': 19},
'Clark': {'pop': 35613, 'tracts': 10},
'Clay': {'pop': 21730, 'tracts': 6},
'Clinton': {'pop': 10272, 'tracts': 3},
'Crittenden': {'pop': 9315, 'tracts': 4},
'Cumberland': {'pop': 6856, 'tracts': 2},
'Daviess': {'pop': 96656, 'tracts': 23},
'Edmonson': {'pop': 12161, 'tracts': 4},
'Elliott': {'pop': 7852, 'tracts': 2},
'Estill': {'pop': 14672, 'tracts': 4},
'Fayette': {'pop': 295803, 'tracts': 82},
'Fleming': {'pop': 14348, 'tracts': 4},
'Floyd': {'pop': 39451, 'tracts': 10},
'Franklin': {'pop': 49285, 'tracts': 11},
'Fulton': {'pop': 6813, 'tracts': 2},
'Gallatin': {'pop': 8589, 'tracts': 2},
'Garrard': {'pop': 16912, 'tracts': 4},
'Grant': {'pop': 24662, 'tracts': 4},
'Graves': {'pop': 37121, 'tracts': 9},
'Grayson': {'pop': 25746, 'tracts': 7},
'Green': {'pop': 11258, 'tracts': 4},
'Greenup': {'pop': 36910, 'tracts': 9},
'Hancock': {'pop': 8565, 'tracts': 3},
'Hardin': {'pop': 105543, 'tracts': 22},
'Harlan': {'pop': 29278, 'tracts': 11},
'Harrison': {'pop': 18846, 'tracts': 5},
'Hart': {'pop': 18199, 'tracts': 5},
'Henderson': {'pop': 46250, 'tracts': 11},
'Henry': {'pop': 15416, 'tracts': 5},
'Hickman': {'pop': 4902, 'tracts': 1},
'Hopkins': {'pop': 46920, 'tracts': 12},
'Jackson': {'pop': 13494, 'tracts': 3},
'Jefferson': {'pop': 741096, 'tracts': 191},
'Jessamine': {'pop': 48586, 'tracts': 9},
'Johnson': {'pop': 23356, 'tracts': 6},
'Kenton': {'pop': 159720, 'tracts': 41},
'Knott': {'pop': 16346, 'tracts': 5},
'Knox': {'pop': 31883, 'tracts': 8},
'Larue': {'pop': 14193, 'tracts': 4},
'Laurel': {'pop': 58849, 'tracts': 13},
'Lawrence': {'pop': 15860, 'tracts': 5},
'Lee': {'pop': 7887, 'tracts': 3},
'Leslie': {'pop': 11310, 'tracts': 3},
'Letcher': {'pop': 24519, 'tracts': 7},
'Lewis': {'pop': 13870, 'tracts': 4},
'Lincoln': {'pop': 24742, 'tracts': 6},
'Livingston': {'pop': 9519, 'tracts': 2},
'Logan': {'pop': 26835, 'tracts': 6},
'Lyon': {'pop': 8314, 'tracts': 3},
'Madison': {'pop': 82916, 'tracts': 19},
'Magoffin': {'pop': 13333, 'tracts': 4},
'Marion': {'pop': 19820, 'tracts': 6},
'Marshall': {'pop': 31448, 'tracts': 6},
'Martin': {'pop': 12929, 'tracts': 3},
'Mason': {'pop': 17490, 'tracts': 5},
'McCracken': {'pop': 65565, 'tracts': 17},
'McCreary': {'pop': 18306, 'tracts': 4},
'McLean': {'pop': 9531, 'tracts': 3},
'Meade': {'pop': 28602, 'tracts': 8},
'Menifee': {'pop': 6306, 'tracts': 2},
'Mercer': {'pop': 21331, 'tracts': 5},
'Metcalfe': {'pop': 10099, 'tracts': 3},
'Monroe': {'pop': 10963, 'tracts': 4},
'Montgomery': {'pop': 26499, 'tracts': 6},
'Morgan': {'pop': 13923, 'tracts': 5},
'Muhlenberg': {'pop': 31499, 'tracts': 9},
'Nelson': {'pop': 43437, 'tracts': 9},
'Nicholas': {'pop': 7135, 'tracts': 2},
'Ohio': {'pop': 23842, 'tracts': 7},
'Oldham': {'pop': 60316, 'tracts': 14},
'Owen': {'pop': 10841, 'tracts': 3},
'Owsley': {'pop': 4755, 'tracts': 2},
'Pendleton': {'pop': 14877, 'tracts': 3},
'Perry': {'pop': 28712, 'tracts': 8},
'Pike': {'pop': 65024, 'tracts': 19},
'Powell': {'pop': 12613, 'tracts': 2},
'Pulaski': {'pop': 63063, 'tracts': 14},
'Robertson': {'pop': 2282, 'tracts': 1},
'Rockcastle': {'pop': 17056, 'tracts': 4},
'Rowan': {'pop': 23333, 'tracts': 4},
'Russell': {'pop': 17565, 'tracts': 5},
'Scott': {'pop': 47173, 'tracts': 14},
'Shelby': {'pop': 42074, 'tracts': 9},
'Simpson': {'pop': 17327, 'tracts': 4},
'Spencer': {'pop': 17061, 'tracts': 4},
'Taylor': {'pop': 24512, 'tracts': 5},
'Todd': {'pop': 12460, 'tracts': 4},
'Trigg': {'pop': 14339, 'tracts': 5},
'Trimble': {'pop': 8809, 'tracts': 2},
'Union': {'pop': 15007, 'tracts': 4},
'Warren': {'pop': 113792, 'tracts': 24},
'Washington': {'pop': 11717, 'tracts': 3},
'Wayne': {'pop': 20813, 'tracts': 5},
'Webster': {'pop': 13621, 'tracts': 4},
'Whitley': {'pop': 35637, 'tracts': 8},
'Wolfe': {'pop': 7355, 'tracts': 2},
'Woodford': {'pop': 24939, 'tracts': 8}},
'LA': {'Acadia': {'pop': 61773, 'tracts': 12},
'Allen': {'pop': 25764, 'tracts': 5},
'Ascension': {'pop': 107215, 'tracts': 14},
'Assumption': {'pop': 23421, 'tracts': 6},
'Avoyelles': {'pop': 42073, 'tracts': 9},
'Beauregard': {'pop': 35654, 'tracts': 7},
'Bienville': {'pop': 14353, 'tracts': 5},
'Bossier': {'pop': 116979, 'tracts': 22},
'Caddo': {'pop': 254969, 'tracts': 64},
'Calcasieu': {'pop': 192768, 'tracts': 44},
'Caldwell': {'pop': 10132, 'tracts': 3},
'Cameron': {'pop': 6839, 'tracts': 3},
'Catahoula': {'pop': 10407, 'tracts': 3},
'Claiborne': {'pop': 17195, 'tracts': 5},
'Concordia': {'pop': 20822, 'tracts': 5},
'De Soto': {'pop': 26656, 'tracts': 7},
'East Baton Rouge': {'pop': 440171, 'tracts': 92},
'East Carroll': {'pop': 7759, 'tracts': 3},
'East Feliciana': {'pop': 20267, 'tracts': 5},
'Evangeline': {'pop': 33984, 'tracts': 8},
'Franklin': {'pop': 20767, 'tracts': 6},
'Grant': {'pop': 22309, 'tracts': 5},
'Iberia': {'pop': 73240, 'tracts': 15},
'Iberville': {'pop': 33387, 'tracts': 7},
'Jackson': {'pop': 16274, 'tracts': 5},
'Jefferson': {'pop': 432552, 'tracts': 127},
'Jefferson Davis': {'pop': 31594, 'tracts': 7},
'La Salle': {'pop': 14890, 'tracts': 3},
'Lafayette': {'pop': 221578, 'tracts': 43},
'Lafourche': {'pop': 96318, 'tracts': 23},
'Lincoln': {'pop': 46735, 'tracts': 10},
'Livingston': {'pop': 128026, 'tracts': 17},
'Madison': {'pop': 12093, 'tracts': 5},
'Morehouse': {'pop': 27979, 'tracts': 8},
'Natchitoches': {'pop': 39566, 'tracts': 9},
'Orleans': {'pop': 343829, 'tracts': 177},
'Ouachita': {'pop': 153720, 'tracts': 40},
'Plaquemines': {'pop': 23042, 'tracts': 9},
'Pointe Coupee': {'pop': 22802, 'tracts': 6},
'Rapides': {'pop': 131613, 'tracts': 33},
'Red River': {'pop': 9091, 'tracts': 2},
'Richland': {'pop': 20725, 'tracts': 6},
'Sabine': {'pop': 24233, 'tracts': 7},
'St. Bernard': {'pop': 35897, 'tracts': 18},
'St. Charles': {'pop': 52780, 'tracts': 13},
'St. Helena': {'pop': 11203, 'tracts': 2},
'St. James': {'pop': 22102, 'tracts': 7},
'St. John the Baptist': {'pop': 45924, 'tracts': 11},
'St. Landry': {'pop': 83384, 'tracts': 19},
'St. Martin': {'pop': 52160, 'tracts': 11},
'St. Mary': {'pop': 54650, 'tracts': 16},
'St. Tammany': {'pop': 233740, 'tracts': 43},
'Tangipahoa': {'pop': 121097, 'tracts': 20},
'Tensas': {'pop': 5252, 'tracts': 3},
'Terrebonne': {'pop': 111860, 'tracts': 21},
'Union': {'pop': 22721, 'tracts': 6},
'Vermilion': {'pop': 57999, 'tracts': 12},
'Vernon': {'pop': 52334, 'tracts': 12},
'Washington': {'pop': 47168, 'tracts': 11},
'Webster': {'pop': 41207, 'tracts': 11},
'West Baton Rouge': {'pop': 23788, 'tracts': 5},
'West Carroll': {'pop': 11604, 'tracts': 3},
'West Feliciana': {'pop': 15625, 'tracts': 3},
'Winn': {'pop': 15313, 'tracts': 4}},
'MA': {'Barnstable': {'pop': 215888, 'tracts': 57},
'Berkshire': {'pop': 131219, 'tracts': 39},
'Bristol': {'pop': 548285, 'tracts': 126},
'Dukes': {'pop': 16535, 'tracts': 4},
'Essex': {'pop': 743159, 'tracts': 163},
'Franklin': {'pop': 71372, 'tracts': 18},
'Hampden': {'pop': 463490, 'tracts': 103},
'Hampshire': {'pop': 158080, 'tracts': 36},
'Middlesex': {'pop': 1503085, 'tracts': 318},
'Nantucket': {'pop': 10172, 'tracts': 6},
'Norfolk': {'pop': 670850, 'tracts': 130},
'Plymouth': {'pop': 494919, 'tracts': 100},
'Suffolk': {'pop': 722023, 'tracts': 204},
'Worcester': {'pop': 798552, 'tracts': 172}},
'MD': {'Allegany': {'pop': 75087, 'tracts': 23},
'Anne Arundel': {'pop': 537656, 'tracts': 104},
'Baltimore': {'pop': 805029, 'tracts': 214},
'Baltimore City': {'pop': 620961, 'tracts': 200},
'Calvert': {'pop': 88737, 'tracts': 18},
'Caroline': {'pop': 33066, 'tracts': 9},
'Carroll': {'pop': 167134, 'tracts': 38},
'Cecil': {'pop': 101108, 'tracts': 19},
'Charles': {'pop': 146551, 'tracts': 30},
'Dorchester': {'pop': 32618, 'tracts': 10},
'Frederick': {'pop': 233385, 'tracts': 61},
'Garrett': {'pop': 30097, 'tracts': 7},
'Harford': {'pop': 244826, 'tracts': 57},
'Howard': {'pop': 287085, 'tracts': 55},
'Kent': {'pop': 20197, 'tracts': 5},
'Montgomery': {'pop': 971777, 'tracts': 215},
"Prince George's": {'pop': 863420, 'tracts': 218},
"Queen Anne's": {'pop': 47798, 'tracts': 12},
'Somerset': {'pop': 26470, 'tracts': 8},
"St. Mary's": {'pop': 105151, 'tracts': 18},
'Talbot': {'pop': 37782, 'tracts': 10},
'Washington': {'pop': 147430, 'tracts': 32},
'Wicomico': {'pop': 98733, 'tracts': 19},
'Worcester': {'pop': 51454, 'tracts': 17}},
'ME': {'Androscoggin': {'pop': 107702, 'tracts': 28},
'Aroostook': {'pop': 71870, 'tracts': 24},
'Cumberland': {'pop': 281674, 'tracts': 67},
'Franklin': {'pop': 30768, 'tracts': 9},
'Hancock': {'pop': 54418, 'tracts': 17},
'Kennebec': {'pop': 122151, 'tracts': 31},
'Knox': {'pop': 39736, 'tracts': 11},
'Lincoln': {'pop': 34457, 'tracts': 9},
'Oxford': {'pop': 57833, 'tracts': 17},
'Penobscot': {'pop': 153923, 'tracts': 46},
'Piscataquis': {'pop': 17535, 'tracts': 8},
'Sagadahoc': {'pop': 35293, 'tracts': 8},
'Somerset': {'pop': 52228, 'tracts': 17},
'Waldo': {'pop': 38786, 'tracts': 8},
'Washington': {'pop': 32856, 'tracts': 14},
'York': {'pop': 197131, 'tracts': 41}},
'MI': {'Alcona': {'pop': 10942, 'tracts': 5},
'Alger': {'pop': 9601, 'tracts': 3},
'Allegan': {'pop': 111408, 'tracts': 25},
'Alpena': {'pop': 29598, 'tracts': 10},
'Antrim': {'pop': 23580, 'tracts': 7},
'Arenac': {'pop': 15899, 'tracts': 5},
'Baraga': {'pop': 8860, 'tracts': 2},
'Barry': {'pop': 59173, 'tracts': 11},
'Bay': {'pop': 107771, 'tracts': 26},
'Benzie': {'pop': 17525, 'tracts': 5},
'Berrien': {'pop': 156813, 'tracts': 48},
'Branch': {'pop': 45248, 'tracts': 12},
'Calhoun': {'pop': 136146, 'tracts': 39},
'Cass': {'pop': 52293, 'tracts': 11},
'Charlevoix': {'pop': 25949, 'tracts': 13},
'Cheboygan': {'pop': 26152, 'tracts': 8},
'Chippewa': {'pop': 38520, 'tracts': 14},
'Clare': {'pop': 30926, 'tracts': 11},
'Clinton': {'pop': 75382, 'tracts': 22},
'Crawford': {'pop': 14074, 'tracts': 5},
'Delta': {'pop': 37069, 'tracts': 11},
'Dickinson': {'pop': 26168, 'tracts': 7},
'Eaton': {'pop': 107759, 'tracts': 28},
'Emmet': {'pop': 32694, 'tracts': 8},
'Genesee': {'pop': 425790, 'tracts': 131},
'Gladwin': {'pop': 25692, 'tracts': 9},
'Gogebic': {'pop': 16427, 'tracts': 7},
'Grand Traverse': {'pop': 86986, 'tracts': 16},
'Gratiot': {'pop': 42476, 'tracts': 10},
'Hillsdale': {'pop': 46688, 'tracts': 12},
'Houghton': {'pop': 36628, 'tracts': 11},
'Huron': {'pop': 33118, 'tracts': 12},
'Ingham': {'pop': 280895, 'tracts': 81},
'Ionia': {'pop': 63905, 'tracts': 13},
'Iosco': {'pop': 25887, 'tracts': 9},
'Iron': {'pop': 11817, 'tracts': 5},
'Isabella': {'pop': 70311, 'tracts': 15},
'Jackson': {'pop': 160248, 'tracts': 38},
'Kalamazoo': {'pop': 250331, 'tracts': 57},
'Kalkaska': {'pop': 17153, 'tracts': 5},
'Kent': {'pop': 602622, 'tracts': 128},
'Keweenaw': {'pop': 2156, 'tracts': 2},
'Lake': {'pop': 11539, 'tracts': 4},
'Lapeer': {'pop': 88319, 'tracts': 24},
'Leelanau': {'pop': 21708, 'tracts': 6},
'Lenawee': {'pop': 99892, 'tracts': 23},
'Livingston': {'pop': 180967, 'tracts': 61},
'Luce': {'pop': 6631, 'tracts': 3},
'Mackinac': {'pop': 11113, 'tracts': 6},
'Macomb': {'pop': 840978, 'tracts': 216},
'Manistee': {'pop': 24733, 'tracts': 9},
'Marquette': {'pop': 67077, 'tracts': 24},
'Mason': {'pop': 28705, 'tracts': 8},
'Mecosta': {'pop': 42798, 'tracts': 11},
'Menominee': {'pop': 24029, 'tracts': 7},
'Midland': {'pop': 83629, 'tracts': 19},
'Missaukee': {'pop': 14849, 'tracts': 4},
'Monroe': {'pop': 152021, 'tracts': 39},
'Montcalm': {'pop': 63342, 'tracts': 13},
'Montmorency': {'pop': 9765, 'tracts': 5},
'Muskegon': {'pop': 172188, 'tracts': 42},
'Newaygo': {'pop': 48460, 'tracts': 11},
'Oakland': {'pop': 1202362, 'tracts': 338},
'Oceana': {'pop': 26570, 'tracts': 7},
'Ogemaw': {'pop': 21699, 'tracts': 7},
'Ontonagon': {'pop': 6780, 'tracts': 4},
'Osceola': {'pop': 23528, 'tracts': 6},
'Oscoda': {'pop': 8640, 'tracts': 5},
'Otsego': {'pop': 24164, 'tracts': 6},
'Ottawa': {'pop': 263801, 'tracts': 53},
'Presque Isle': {'pop': 13376, 'tracts': 6},
'Roscommon': {'pop': 24449, 'tracts': 10},
'Saginaw': {'pop': 200169, 'tracts': 56},
'Sanilac': {'pop': 43114, 'tracts': 12},
'Schoolcraft': {'pop': 8485, 'tracts': 3},
'Shiawassee': {'pop': 70648, 'tracts': 17},
'St. Clair': {'pop': 163040, 'tracts': 49},
'St. Joseph': {'pop': 61295, 'tracts': 17},
'Tuscola': {'pop': 55729, 'tracts': 13},
'Van Buren': {'pop': 76258, 'tracts': 15},
'Washtenaw': {'pop': 344791, 'tracts': 100},
'Wayne': {'pop': 1820584, 'tracts': 610},
'Wexford': {'pop': 32735, 'tracts': 8}},
'MN': {'Aitkin': {'pop': 16202, 'tracts': 6},
'Anoka': {'pop': 330844, 'tracts': 83},
'Becker': {'pop': 32504, 'tracts': 10},
'Beltrami': {'pop': 44442, 'tracts': 10},
'Benton': {'pop': 38451, 'tracts': 9},
'Big Stone': {'pop': 5269, 'tracts': 3},
'Blue Earth': {'pop': 64013, 'tracts': 16},
'Brown': {'pop': 25893, 'tracts': 8},
'Carlton': {'pop': 35386, 'tracts': 7},
'Carver': {'pop': 91042, 'tracts': 19},
'Cass': {'pop': 28567, 'tracts': 10},
'Chippewa': {'pop': 12441, 'tracts': 4},
'Chisago': {'pop': 53887, 'tracts': 10},
'Clay': {'pop': 58999, 'tracts': 13},
'Clearwater': {'pop': 8695, 'tracts': 3},
'Cook': {'pop': 5176, 'tracts': 3},
'Cottonwood': {'pop': 11687, 'tracts': 4},
'Crow Wing': {'pop': 62500, 'tracts': 16},
'Dakota': {'pop': 398552, 'tracts': 95},
'Dodge': {'pop': 20087, 'tracts': 5},
'Douglas': {'pop': 36009, 'tracts': 9},
'Faribault': {'pop': 14553, 'tracts': 6},
'Fillmore': {'pop': 20866, 'tracts': 6},
'Freeborn': {'pop': 31255, 'tracts': 10},
'Goodhue': {'pop': 46183, 'tracts': 10},
'Grant': {'pop': 6018, 'tracts': 2},
'Hennepin': {'pop': 1152425, 'tracts': 299},
'Houston': {'pop': 19027, 'tracts': 5},
'Hubbard': {'pop': 20428, 'tracts': 7},
'Isanti': {'pop': 37816, 'tracts': 8},
'Itasca': {'pop': 45058, 'tracts': 11},
'Jackson': {'pop': 10266, 'tracts': 4},
'Kanabec': {'pop': 16239, 'tracts': 4},
'Kandiyohi': {'pop': 42239, 'tracts': 12},
'Kittson': {'pop': 4552, 'tracts': 2},
'Koochiching': {'pop': 13311, 'tracts': 4},
'Lac qui Parle': {'pop': 7259, 'tracts': 3},
'Lake': {'pop': 10866, 'tracts': 3},
'Lake of the Woods': {'pop': 4045, 'tracts': 2},
'Le Sueur': {'pop': 27703, 'tracts': 6},
'Lincoln': {'pop': 5896, 'tracts': 2},
'Lyon': {'pop': 25857, 'tracts': 7},
'Mahnomen': {'pop': 5413, 'tracts': 2},
'Marshall': {'pop': 9439, 'tracts': 4},
'Martin': {'pop': 20840, 'tracts': 6},
'McLeod': {'pop': 36651, 'tracts': 7},
'Meeker': {'pop': 23300, 'tracts': 6},
'Mille Lacs': {'pop': 26097, 'tracts': 7},
'Morrison': {'pop': 33198, 'tracts': 8},
'Mower': {'pop': 39163, 'tracts': 11},
'Murray': {'pop': 8725, 'tracts': 3},
'Nicollet': {'pop': 32727, 'tracts': 7},
'Nobles': {'pop': 21378, 'tracts': 6},
'Norman': {'pop': 6852, 'tracts': 3},
'Olmsted': {'pop': 144248, 'tracts': 33},
'Otter Tail': {'pop': 57303, 'tracts': 17},
'Pennington': {'pop': 13930, 'tracts': 5},
'Pine': {'pop': 29750, 'tracts': 8},
'Pipestone': {'pop': 9596, 'tracts': 5},
'Polk': {'pop': 31600, 'tracts': 10},
'Pope': {'pop': 10995, 'tracts': 4},
'Ramsey': {'pop': 508640, 'tracts': 137},
'Red Lake': {'pop': 4089, 'tracts': 2},
'Redwood': {'pop': 16059, 'tracts': 6},
'Renville': {'pop': 15730, 'tracts': 6},
'Rice': {'pop': 64142, 'tracts': 13},
'Rock': {'pop': 9687, 'tracts': 3},
'Roseau': {'pop': 15629, 'tracts': 5},
'Scott': {'pop': 129928, 'tracts': 21},
'Sherburne': {'pop': 88499, 'tracts': 11},
'Sibley': {'pop': 15226, 'tracts': 4},
'St. Louis': {'pop': 200226, 'tracts': 66},
'Stearns': {'pop': 150642, 'tracts': 29},
'Steele': {'pop': 36576, 'tracts': 8},
'Stevens': {'pop': 9726, 'tracts': 3},
'Swift': {'pop': 9783, 'tracts': 4},
'Todd': {'pop': 24895, 'tracts': 8},
'Traverse': {'pop': 3558, 'tracts': 2},
'Wabasha': {'pop': 21676, 'tracts': 6},
'Wadena': {'pop': 13843, 'tracts': 3},
'Waseca': {'pop': 19136, 'tracts': 5},
'Washington': {'pop': 238136, 'tracts': 50},
'Watonwan': {'pop': 11211, 'tracts': 3},
'Wilkin': {'pop': 6576, 'tracts': 2},
'Winona': {'pop': 51461, 'tracts': 10},
'Wright': {'pop': 124700, 'tracts': 17},
'Yellow Medicine': {'pop': 10438, 'tracts': 4}},
'MO': {'Adair': {'pop': 25607, 'tracts': 7},
'Andrew': {'pop': 17291, 'tracts': 4},
'Atchison': {'pop': 5685, 'tracts': 2},
'Audrain': {'pop': 25529, 'tracts': 7},
'Barry': {'pop': 35597, 'tracts': 7},
'Barton': {'pop': 12402, 'tracts': 3},
'Bates': {'pop': 17049, 'tracts': 4},
'Benton': {'pop': 19056, 'tracts': 6},
'Bollinger': {'pop': 12363, 'tracts': 3},
'Boone': {'pop': 162642, 'tracts': 29},
'Buchanan': {'pop': 89201, 'tracts': 25},
'Butler': {'pop': 42794, 'tracts': 10},
'Caldwell': {'pop': 9424, 'tracts': 2},
'Callaway': {'pop': 44332, 'tracts': 8},
'Camden': {'pop': 44002, 'tracts': 11},
'Cape Girardeau': {'pop': 75674, 'tracts': 16},
'Carroll': {'pop': 9295, 'tracts': 3},
'Carter': {'pop': 6265, 'tracts': 2},
'Cass': {'pop': 99478, 'tracts': 20},
'Cedar': {'pop': 13982, 'tracts': 3},
'Chariton': {'pop': 7831, 'tracts': 3},
'Christian': {'pop': 77422, 'tracts': 14},
'Clark': {'pop': 7139, 'tracts': 3},
'Clay': {'pop': 221939, 'tracts': 44},
'Clinton': {'pop': 20743, 'tracts': 4},
'Cole': {'pop': 75990, 'tracts': 15},
'Cooper': {'pop': 17601, 'tracts': 5},
'Crawford': {'pop': 24696, 'tracts': 6},
'Dade': {'pop': 7883, 'tracts': 2},
'Dallas': {'pop': 16777, 'tracts': 3},
'Daviess': {'pop': 8433, 'tracts': 2},
'DeKalb': {'pop': 12892, 'tracts': 2},
'Dent': {'pop': 15657, 'tracts': 4},
'Douglas': {'pop': 13684, 'tracts': 3},
'Dunklin': {'pop': 31953, 'tracts': 10},
'Franklin': {'pop': 101492, 'tracts': 17},
'Gasconade': {'pop': 15222, 'tracts': 5},
'Gentry': {'pop': 6738, 'tracts': 2},
'Greene': {'pop': 275174, 'tracts': 62},
'Grundy': {'pop': 10261, 'tracts': 4},
'Harrison': {'pop': 8957, 'tracts': 3},
'Henry': {'pop': 22272, 'tracts': 6},
'Hickory': {'pop': 9627, 'tracts': 3},
'Holt': {'pop': 4912, 'tracts': 3},
'Howard': {'pop': 10144, 'tracts': 3},
'Howell': {'pop': 40400, 'tracts': 8},
'Iron': {'pop': 10630, 'tracts': 4},
'Jackson': {'pop': 674158, 'tracts': 199},
'Jasper': {'pop': 117404, 'tracts': 22},
'Jefferson': {'pop': 218733, 'tracts': 42},
'Johnson': {'pop': 52595, 'tracts': 9},
'Knox': {'pop': 4131, 'tracts': 2},
'Laclede': {'pop': 35571, 'tracts': 6},
'Lafayette': {'pop': 33381, 'tracts': 7},
'Lawrence': {'pop': 38634, 'tracts': 7},
'Lewis': {'pop': 10211, 'tracts': 4},
'Lincoln': {'pop': 52566, 'tracts': 7},
'Linn': {'pop': 12761, 'tracts': 5},
'Livingston': {'pop': 15195, 'tracts': 5},
'Macon': {'pop': 15566, 'tracts': 5},
'Madison': {'pop': 12226, 'tracts': 3},
'Maries': {'pop': 9176, 'tracts': 3},
'Marion': {'pop': 28781, 'tracts': 8},
'McDonald': {'pop': 23083, 'tracts': 4},
'Mercer': {'pop': 3785, 'tracts': 2},
'Miller': {'pop': 24748, 'tracts': 5},
'Mississippi': {'pop': 14358, 'tracts': 4},
'Moniteau': {'pop': 15607, 'tracts': 4},
'Monroe': {'pop': 8840, 'tracts': 3},
'Montgomery': {'pop': 12236, 'tracts': 4},
'Morgan': {'pop': 20565, 'tracts': 5},
'New Madrid': {'pop': 18956, 'tracts': 6},
'Newton': {'pop': 58114, 'tracts': 12},
'Nodaway': {'pop': 23370, 'tracts': 5},
'Oregon': {'pop': 10881, 'tracts': 3},
'Osage': {'pop': 13878, 'tracts': 4},
'Ozark': {'pop': 9723, 'tracts': 2},
'Pemiscot': {'pop': 18296, 'tracts': 6},
'Perry': {'pop': 18971, 'tracts': 5},
'Pettis': {'pop': 42201, 'tracts': 11},
'Phelps': {'pop': 45156, 'tracts': 10},
'Pike': {'pop': 18516, 'tracts': 5},
'Platte': {'pop': 89322, 'tracts': 20},
'Polk': {'pop': 31137, 'tracts': 4},
'Pulaski': {'pop': 52274, 'tracts': 9},
'Putnam': {'pop': 4979, 'tracts': 2},
'Ralls': {'pop': 10167, 'tracts': 3},
'Randolph': {'pop': 25414, 'tracts': 6},
'Ray': {'pop': 23494, 'tracts': 4},
'Reynolds': {'pop': 6696, 'tracts': 2},
'Ripley': {'pop': 14100, 'tracts': 4},
'Saline': {'pop': 23370, 'tracts': 8},
'Schuyler': {'pop': 4431, 'tracts': 2},
'Scotland': {'pop': 4843, 'tracts': 2},
'Scott': {'pop': 39191, 'tracts': 10},
'Shannon': {'pop': 8441, 'tracts': 2},
'Shelby': {'pop': 6373, 'tracts': 3},
'St. Charles': {'pop': 360485, 'tracts': 79},
'St. Clair': {'pop': 9805, 'tracts': 3},
'St. Francois': {'pop': 65359, 'tracts': 11},
'St. Louis': {'pop': 998954, 'tracts': 199},
'St. Louis City': {'pop': 319294, 'tracts': 106},
'Ste. Genevieve': {'pop': 18145, 'tracts': 4},
'Stoddard': {'pop': 29968, 'tracts': 8},
'Stone': {'pop': 32202, 'tracts': 6},
'Sullivan': {'pop': 6714, 'tracts': 3},
'Taney': {'pop': 51675, 'tracts': 10},
'Texas': {'pop': 26008, 'tracts': 4},
'Vernon': {'pop': 21159, 'tracts': 6},
'Warren': {'pop': 32513, 'tracts': 5},
'Washington': {'pop': 25195, 'tracts': 5},
'Wayne': {'pop': 13521, 'tracts': 4},
'Webster': {'pop': 36202, 'tracts': 8},
'Worth': {'pop': 2171, 'tracts': 1},
'Wright': {'pop': 18815, 'tracts': 4}},
'MS': {'Adams': {'pop': 32297, 'tracts': 9},
'Alcorn': {'pop': 37057, 'tracts': 7},
'Amite': {'pop': 13131, 'tracts': 3},
'Attala': {'pop': 19564, 'tracts': 6},
'Benton': {'pop': 8729, 'tracts': 2},
'Bolivar': {'pop': 34145, 'tracts': 8},
'Calhoun': {'pop': 14962, 'tracts': 5},
'Carroll': {'pop': 10597, 'tracts': 2},
'Chickasaw': {'pop': 17392, 'tracts': 4},
'Choctaw': {'pop': 8547, 'tracts': 3},
'Claiborne': {'pop': 9604, 'tracts': 3},
'Clarke': {'pop': 16732, 'tracts': 4},
'Clay': {'pop': 20634, 'tracts': 5},
'Coahoma': {'pop': 26151, 'tracts': 7},
'Copiah': {'pop': 29449, 'tracts': 6},
'Covington': {'pop': 19568, 'tracts': 4},
'DeSoto': {'pop': 161252, 'tracts': 33},
'Forrest': {'pop': 74934, 'tracts': 17},
'Franklin': {'pop': 8118, 'tracts': 2},
'George': {'pop': 22578, 'tracts': 5},
'Greene': {'pop': 14400, 'tracts': 2},
'Grenada': {'pop': 21906, 'tracts': 5},
'Hancock': {'pop': 43929, 'tracts': 7},
'Harrison': {'pop': 187105, 'tracts': 46},
'Hinds': {'pop': 245285, 'tracts': 64},
'Holmes': {'pop': 19198, 'tracts': 5},
'Humphreys': {'pop': 9375, 'tracts': 3},
'Issaquena': {'pop': 1406, 'tracts': 1},
'Itawamba': {'pop': 23401, 'tracts': 5},
'Jackson': {'pop': 139668, 'tracts': 28},
'Jasper': {'pop': 17062, 'tracts': 4},
'Jefferson': {'pop': 7726, 'tracts': 2},
'Jefferson Davis': {'pop': 12487, 'tracts': 3},
'Jones': {'pop': 67761, 'tracts': 14},
'Kemper': {'pop': 10456, 'tracts': 2},
'Lafayette': {'pop': 47351, 'tracts': 10},
'Lamar': {'pop': 55658, 'tracts': 8},
'Lauderdale': {'pop': 80261, 'tracts': 19},
'Lawrence': {'pop': 12929, 'tracts': 3},
'Leake': {'pop': 23805, 'tracts': 5},
'Lee': {'pop': 82910, 'tracts': 19},
'Leflore': {'pop': 32317, 'tracts': 8},
'Lincoln': {'pop': 34869, 'tracts': 6},
'Lowndes': {'pop': 59779, 'tracts': 14},
'Madison': {'pop': 95203, 'tracts': 21},
'Marion': {'pop': 27088, 'tracts': 6},
'Marshall': {'pop': 37144, 'tracts': 6},
'Monroe': {'pop': 36989, 'tracts': 9},
'Montgomery': {'pop': 10925, 'tracts': 3},
'Neshoba': {'pop': 29676, 'tracts': 7},
'Newton': {'pop': 21720, 'tracts': 5},
'Noxubee': {'pop': 11545, 'tracts': 3},
'Oktibbeha': {'pop': 47671, 'tracts': 8},
'Panola': {'pop': 34707, 'tracts': 6},
'Pearl River': {'pop': 55834, 'tracts': 9},
'Perry': {'pop': 12250, 'tracts': 3},
'Pike': {'pop': 40404, 'tracts': 8},
'Pontotoc': {'pop': 29957, 'tracts': 6},
'Prentiss': {'pop': 25276, 'tracts': 5},
'Quitman': {'pop': 8223, 'tracts': 3},
'Rankin': {'pop': 141617, 'tracts': 27},
'Scott': {'pop': 28264, 'tracts': 6},
'Sharkey': {'pop': 4916, 'tracts': 2},
'Simpson': {'pop': 27503, 'tracts': 5},
'Smith': {'pop': 16491, 'tracts': 3},
'Stone': {'pop': 17786, 'tracts': 3},
'Sunflower': {'pop': 29450, 'tracts': 7},
'Tallahatchie': {'pop': 15378, 'tracts': 4},
'Tate': {'pop': 28886, 'tracts': 5},
'Tippah': {'pop': 22232, 'tracts': 4},
'Tishomingo': {'pop': 19593, 'tracts': 4},
'Tunica': {'pop': 10778, 'tracts': 3},
'Union': {'pop': 27134, 'tracts': 6},
'Walthall': {'pop': 15443, 'tracts': 3},
'Warren': {'pop': 48773, 'tracts': 12},
'Washington': {'pop': 51137, 'tracts': 19},
'Wayne': {'pop': 20747, 'tracts': 4},
'Webster': {'pop': 10253, 'tracts': 3},
'Wilkinson': {'pop': 9878, 'tracts': 2},
'Winston': {'pop': 19198, 'tracts': 5},
'Yalobusha': {'pop': 12678, 'tracts': 3},
'Yazoo': {'pop': 28065, 'tracts': 6}},
'MT': {'Beaverhead': {'pop': 9246, 'tracts': 3},
'Big Horn': {'pop': 12865, 'tracts': 5},
'Blaine': {'pop': 6491, 'tracts': 4},
'Broadwater': {'pop': 5612, 'tracts': 2},
'Carbon': {'pop': 10078, 'tracts': 5},
'Carter': {'pop': 1160, 'tracts': 1},
'Cascade': {'pop': 81327, 'tracts': 22},
'Chouteau': {'pop': 5813, 'tracts': 2},
'Custer': {'pop': 11699, 'tracts': 6},
'Daniels': {'pop': 1751, 'tracts': 1},
'Dawson': {'pop': 8966, 'tracts': 3},
'Deer Lodge': {'pop': 9298, 'tracts': 3},
'Fallon': {'pop': 2890, 'tracts': 1},
'Fergus': {'pop': 11586, 'tracts': 2},
'Flathead': {'pop': 90928, 'tracts': 19},
'Gallatin': {'pop': 89513, 'tracts': 22},
'Garfield': {'pop': 1206, 'tracts': 1},
'Glacier': {'pop': 13399, 'tracts': 4},
'Golden Valley': {'pop': 884, 'tracts': 1},
'Granite': {'pop': 3079, 'tracts': 1},
'Hill': {'pop': 16096, 'tracts': 6},
'Jefferson': {'pop': 11406, 'tracts': 3},
'Judith Basin': {'pop': 2072, 'tracts': 1},
'Lake': {'pop': 28746, 'tracts': 8},
'Lewis and Clark': {'pop': 63395, 'tracts': 14},
'Liberty': {'pop': 2339, 'tracts': 1},
'Lincoln': {'pop': 19687, 'tracts': 5},
'Madison': {'pop': 7691, 'tracts': 3},
'McCone': {'pop': 1734, 'tracts': 1},
'Meagher': {'pop': 1891, 'tracts': 1},
'Mineral': {'pop': 4223, 'tracts': 2},
'Missoula': {'pop': 109299, 'tracts': 20},
'Musselshell': {'pop': 4538, 'tracts': 2},
'Park': {'pop': 15636, 'tracts': 6},
'Petroleum': {'pop': 494, 'tracts': 1},
'Phillips': {'pop': 4253, 'tracts': 1},
'Pondera': {'pop': 6153, 'tracts': 2},
'Powder River': {'pop': 1743, 'tracts': 1},
'Powell': {'pop': 7027, 'tracts': 2},
'Prairie': {'pop': 1179, 'tracts': 1},
'Ravalli': {'pop': 40212, 'tracts': 10},
'Richland': {'pop': 9746, 'tracts': 4},
'Roosevelt': {'pop': 10425, 'tracts': 3},
'Rosebud': {'pop': 9233, 'tracts': 4},
'Sanders': {'pop': 11413, 'tracts': 3},
'Sheridan': {'pop': 3384, 'tracts': 2},
'Silver Bow': {'pop': 34200, 'tracts': 8},
'Stillwater': {'pop': 9117, 'tracts': 3},
'Sweet Grass': {'pop': 3651, 'tracts': 1},
'Teton': {'pop': 6073, 'tracts': 3},
'Toole': {'pop': 5324, 'tracts': 3},
'Treasure': {'pop': 718, 'tracts': 1},
'Valley': {'pop': 7369, 'tracts': 3},
'Wheatland': {'pop': 2168, 'tracts': 1},
'Wibaux': {'pop': 1017, 'tracts': 1},
'Yellowstone': {'pop': 147972, 'tracts': 32}},
'NC': {'Alamance': {'pop': 151131, 'tracts': 36},
'Alexander': {'pop': 37198, 'tracts': 7},
'Alleghany': {'pop': 11155, 'tracts': 3},
'Anson': {'pop': 26948, 'tracts': 6},
'Ashe': {'pop': 27281, 'tracts': 6},
'Avery': {'pop': 17797, 'tracts': 5},
'Beaufort': {'pop': 47759, 'tracts': 11},
'Bertie': {'pop': 21282, 'tracts': 4},
'Bladen': {'pop': 35190, 'tracts': 6},
'Brunswick': {'pop': 107431, 'tracts': 33},
'Buncombe': {'pop': 238318, 'tracts': 56},
'Burke': {'pop': 90912, 'tracts': 18},
'Cabarrus': {'pop': 178011, 'tracts': 37},
'Caldwell': {'pop': 83029, 'tracts': 17},
'Camden': {'pop': 9980, 'tracts': 2},
'Carteret': {'pop': 66469, 'tracts': 38},
'Caswell': {'pop': 23719, 'tracts': 6},
'Catawba': {'pop': 154358, 'tracts': 31},
'Chatham': {'pop': 63505, 'tracts': 13},
'Cherokee': {'pop': 27444, 'tracts': 7},
'Chowan': {'pop': 14793, 'tracts': 3},
'Clay': {'pop': 10587, 'tracts': 2},
'Cleveland': {'pop': 98078, 'tracts': 22},
'Columbus': {'pop': 58098, 'tracts': 13},
'Craven': {'pop': 103505, 'tracts': 21},
'Cumberland': {'pop': 319431, 'tracts': 68},
'Currituck': {'pop': 23547, 'tracts': 8},
'Dare': {'pop': 33920, 'tracts': 11},
'Davidson': {'pop': 162878, 'tracts': 34},
'Davie': {'pop': 41240, 'tracts': 7},
'Duplin': {'pop': 58505, 'tracts': 11},
'Durham': {'pop': 267587, 'tracts': 60},
'Edgecombe': {'pop': 56552, 'tracts': 14},
'Forsyth': {'pop': 350670, 'tracts': 93},
'Franklin': {'pop': 60619, 'tracts': 12},
'Gaston': {'pop': 206086, 'tracts': 65},
'Gates': {'pop': 12197, 'tracts': 3},
'Graham': {'pop': 8861, 'tracts': 3},
'Granville': {'pop': 59916, 'tracts': 13},
'Greene': {'pop': 21362, 'tracts': 4},
'Guilford': {'pop': 488406, 'tracts': 119},
'Halifax': {'pop': 54691, 'tracts': 12},
'Harnett': {'pop': 114678, 'tracts': 27},
'Haywood': {'pop': 59036, 'tracts': 16},
'Henderson': {'pop': 106740, 'tracts': 27},
'Hertford': {'pop': 24669, 'tracts': 5},
'Hoke': {'pop': 46952, 'tracts': 9},
'Hyde': {'pop': 5810, 'tracts': 2},
'Iredell': {'pop': 159437, 'tracts': 44},
'Jackson': {'pop': 40271, 'tracts': 9},
'Johnston': {'pop': 168878, 'tracts': 25},
'Jones': {'pop': 10153, 'tracts': 3},
'Lee': {'pop': 57866, 'tracts': 13},
'Lenoir': {'pop': 59495, 'tracts': 15},
'Lincoln': {'pop': 78265, 'tracts': 18},
'Macon': {'pop': 33922, 'tracts': 9},
'Madison': {'pop': 20764, 'tracts': 6},
'Martin': {'pop': 24505, 'tracts': 6},
'McDowell': {'pop': 44996, 'tracts': 10},
'Mecklenburg': {'pop': 919628, 'tracts': 233},
'Mitchell': {'pop': 15579, 'tracts': 4},
'Montgomery': {'pop': 27798, 'tracts': 6},
'Moore': {'pop': 88247, 'tracts': 18},
'Nash': {'pop': 95840, 'tracts': 18},
'New Hanover': {'pop': 202667, 'tracts': 45},
'Northampton': {'pop': 22099, 'tracts': 5},
'Onslow': {'pop': 177772, 'tracts': 32},
'Orange': {'pop': 133801, 'tracts': 28},
'Pamlico': {'pop': 13144, 'tracts': 4},
'Pasquotank': {'pop': 40661, 'tracts': 10},
'Pender': {'pop': 52217, 'tracts': 16},
'Perquimans': {'pop': 13453, 'tracts': 3},
'Person': {'pop': 39464, 'tracts': 7},
'Pitt': {'pop': 168148, 'tracts': 32},
'Polk': {'pop': 20510, 'tracts': 7},
'Randolph': {'pop': 141752, 'tracts': 28},
'Richmond': {'pop': 46639, 'tracts': 11},
'Robeson': {'pop': 134168, 'tracts': 31},
'Rockingham': {'pop': 93643, 'tracts': 21},
'Rowan': {'pop': 138428, 'tracts': 30},
'Rutherford': {'pop': 67810, 'tracts': 13},
'Sampson': {'pop': 63431, 'tracts': 11},
'Scotland': {'pop': 36157, 'tracts': 7},
'Stanly': {'pop': 60585, 'tracts': 13},
'Stokes': {'pop': 47401, 'tracts': 9},
'Surry': {'pop': 73673, 'tracts': 22},
'Swain': {'pop': 13981, 'tracts': 5},
'Transylvania': {'pop': 33090, 'tracts': 7},
'Tyrrell': {'pop': 4407, 'tracts': 1},
'Union': {'pop': 201292, 'tracts': 41},
'Vance': {'pop': 45422, 'tracts': 10},
'Wake': {'pop': 900993, 'tracts': 187},
'Warren': {'pop': 20972, 'tracts': 6},
'Washington': {'pop': 13228, 'tracts': 3},
'Watauga': {'pop': 51079, 'tracts': 13},
'Wayne': {'pop': 122623, 'tracts': 26},
'Wilkes': {'pop': 69340, 'tracts': 14},
'Wilson': {'pop': 81234, 'tracts': 19},
'Yadkin': {'pop': 38406, 'tracts': 7},
'Yancey': {'pop': 17818, 'tracts': 5}},
'ND': {'Adams': {'pop': 2343, 'tracts': 1},
'Barnes': {'pop': 11066, 'tracts': 4},
'Benson': {'pop': 6660, 'tracts': 4},
'Billings': {'pop': 783, 'tracts': 1},
'Bottineau': {'pop': 6429, 'tracts': 3},
'Bowman': {'pop': 3151, 'tracts': 2},
'Burke': {'pop': 1968, 'tracts': 1},
'Burleigh': {'pop': 81308, 'tracts': 19},
'Cass': {'pop': 149778, 'tracts': 33},
'Cavalier': {'pop': 3993, 'tracts': 2},
'Dickey': {'pop': 5289, 'tracts': 3},
'Divide': {'pop': 2071, 'tracts': 1},
'Dunn': {'pop': 3536, 'tracts': 1},
'Eddy': {'pop': 2385, 'tracts': 1},
'Emmons': {'pop': 3550, 'tracts': 1},
'Foster': {'pop': 3343, 'tracts': 1},
'Golden Valley': {'pop': 1680, 'tracts': 1},
'Grand Forks': {'pop': 66861, 'tracts': 18},
'Grant': {'pop': 2394, 'tracts': 1},
'Griggs': {'pop': 2420, 'tracts': 1},
'Hettinger': {'pop': 2477, 'tracts': 2},
'Kidder': {'pop': 2435, 'tracts': 1},
'LaMoure': {'pop': 4139, 'tracts': 2},
'Logan': {'pop': 1990, 'tracts': 1},
'McHenry': {'pop': 5395, 'tracts': 2},
'McIntosh': {'pop': 2809, 'tracts': 1},
'McKenzie': {'pop': 6360, 'tracts': 4},
'McLean': {'pop': 8962, 'tracts': 2},
'Mercer': {'pop': 8424, 'tracts': 3},
'Morton': {'pop': 27471, 'tracts': 5},
'Mountrail': {'pop': 7673, 'tracts': 3},
'Nelson': {'pop': 3126, 'tracts': 1},
'Oliver': {'pop': 1846, 'tracts': 1},
'Pembina': {'pop': 7413, 'tracts': 5},
'Pierce': {'pop': 4357, 'tracts': 2},
'Ramsey': {'pop': 11451, 'tracts': 3},
'Ransom': {'pop': 5457, 'tracts': 3},
'Renville': {'pop': 2470, 'tracts': 1},
'Richland': {'pop': 16321, 'tracts': 6},
'Rolette': {'pop': 13937, 'tracts': 4},
'Sargent': {'pop': 3829, 'tracts': 2},
'Sheridan': {'pop': 1321, 'tracts': 1},
'Sioux': {'pop': 4153, 'tracts': 2},
'Slope': {'pop': 727, 'tracts': 1},
'Stark': {'pop': 24199, 'tracts': 8},
'Steele': {'pop': 1975, 'tracts': 1},
'Stutsman': {'pop': 21100, 'tracts': 6},
'Towner': {'pop': 2246, 'tracts': 1},
'Traill': {'pop': 8121, 'tracts': 4},
'Walsh': {'pop': 11119, 'tracts': 6},
'Ward': {'pop': 61675, 'tracts': 13},
'Wells': {'pop': 4207, 'tracts': 2},
'Williams': {'pop': 22398, 'tracts': 7}},
'NE': {'Adams': {'pop': 31364, 'tracts': 9},
'Antelope': {'pop': 6685, 'tracts': 3},
'Arthur': {'pop': 460, 'tracts': 1},
'Banner': {'pop': 690, 'tracts': 1},
'Blaine': {'pop': 478, 'tracts': 1},
'Boone': {'pop': 5505, 'tracts': 2},
'Box Butte': {'pop': 11308, 'tracts': 3},
'Boyd': {'pop': 2099, 'tracts': 1},
'Brown': {'pop': 3145, 'tracts': 1},
'Buffalo': {'pop': 46102, 'tracts': 11},
'Burt': {'pop': 6858, 'tracts': 3},
'Butler': {'pop': 8395, 'tracts': 3},
'Cass': {'pop': 25241, 'tracts': 6},
'Cedar': {'pop': 8852, 'tracts': 2},
'Chase': {'pop': 3966, 'tracts': 1},
'Cherry': {'pop': 5713, 'tracts': 2},
'Cheyenne': {'pop': 9998, 'tracts': 3},
'Clay': {'pop': 6542, 'tracts': 2},
'Colfax': {'pop': 10515, 'tracts': 3},
'Cuming': {'pop': 9139, 'tracts': 3},
'Custer': {'pop': 10939, 'tracts': 4},
'Dakota': {'pop': 21006, 'tracts': 4},
'Dawes': {'pop': 9182, 'tracts': 2},
'Dawson': {'pop': 24326, 'tracts': 7},
'Deuel': {'pop': 1941, 'tracts': 1},
'Dixon': {'pop': 6000, 'tracts': 2},
'Dodge': {'pop': 36691, 'tracts': 9},
'Douglas': {'pop': 517110, 'tracts': 156},
'Dundy': {'pop': 2008, 'tracts': 1},
'Fillmore': {'pop': 5890, 'tracts': 2},
'Franklin': {'pop': 3225, 'tracts': 2},
'Frontier': {'pop': 2756, 'tracts': 1},
'Furnas': {'pop': 4959, 'tracts': 1},
'Gage': {'pop': 22311, 'tracts': 7},
'Garden': {'pop': 2057, 'tracts': 1},
'Garfield': {'pop': 2049, 'tracts': 1},
'Gosper': {'pop': 2044, 'tracts': 1},
'Grant': {'pop': 614, 'tracts': 1},
'Greeley': {'pop': 2538, 'tracts': 1},
'Hall': {'pop': 58607, 'tracts': 14},
'Hamilton': {'pop': 9124, 'tracts': 3},
'Harlan': {'pop': 3423, 'tracts': 1},
'Hayes': {'pop': 967, 'tracts': 1},
'Hitchcock': {'pop': 2908, 'tracts': 1},
'Holt': {'pop': 10435, 'tracts': 4},
'Hooker': {'pop': 736, 'tracts': 1},
'Howard': {'pop': 6274, 'tracts': 2},
'Jefferson': {'pop': 7547, 'tracts': 3},
'Johnson': {'pop': 5217, 'tracts': 2},
'Kearney': {'pop': 6489, 'tracts': 2},
'Keith': {'pop': 8368, 'tracts': 3},
'Keya Paha': {'pop': 824, 'tracts': 1},
'Kimball': {'pop': 3821, 'tracts': 1},
'Knox': {'pop': 8701, 'tracts': 3},
'Lancaster': {'pop': 285407, 'tracts': 74},
'Lincoln': {'pop': 36288, 'tracts': 8},
'Logan': {'pop': 763, 'tracts': 1},
'Loup': {'pop': 632, 'tracts': 1},
'Madison': {'pop': 34876, 'tracts': 9},
'McPherson': {'pop': 539, 'tracts': 1},
'Merrick': {'pop': 7845, 'tracts': 3},
'Morrill': {'pop': 5042, 'tracts': 1},
'Nance': {'pop': 3735, 'tracts': 1},
'Nemaha': {'pop': 7248, 'tracts': 2},
'Nuckolls': {'pop': 4500, 'tracts': 2},
'Otoe': {'pop': 15740, 'tracts': 5},
'Pawnee': {'pop': 2773, 'tracts': 1},
'Perkins': {'pop': 2970, 'tracts': 1},
'Phelps': {'pop': 9188, 'tracts': 3},
'Pierce': {'pop': 7266, 'tracts': 2},
'Platte': {'pop': 32237, 'tracts': 7},
'Polk': {'pop': 5406, 'tracts': 2},
'Red Willow': {'pop': 11055, 'tracts': 3},
'Richardson': {'pop': 8363, 'tracts': 3},
'Rock': {'pop': 1526, 'tracts': 1},
'Saline': {'pop': 14200, 'tracts': 4},
'Sarpy': {'pop': 158840, 'tracts': 43},
'Saunders': {'pop': 20780, 'tracts': 5},
'Scotts Bluff': {'pop': 36970, 'tracts': 11},
'Seward': {'pop': 16750, 'tracts': 4},
'Sheridan': {'pop': 5469, 'tracts': 2},
'Sherman': {'pop': 3152, 'tracts': 1},
'Sioux': {'pop': 1311, 'tracts': 1},
'Stanton': {'pop': 6129, 'tracts': 2},
'Thayer': {'pop': 5228, 'tracts': 2},
'Thomas': {'pop': 647, 'tracts': 1},
'Thurston': {'pop': 6940, 'tracts': 2},
'Valley': {'pop': 4260, 'tracts': 2},
'Washington': {'pop': 20234, 'tracts': 5},
'Wayne': {'pop': 9595, 'tracts': 2},
'Webster': {'pop': 3812, 'tracts': 2},
'Wheeler': {'pop': 818, 'tracts': 1},
'York': {'pop': 13665, 'tracts': 4}},
'NH': {'Belknap': {'pop': 60088, 'tracts': 15},
'Carroll': {'pop': 47818, 'tracts': 11},
'Cheshire': {'pop': 77117, 'tracts': 16},
'Coos': {'pop': 33055, 'tracts': 11},
'Grafton': {'pop': 89118, 'tracts': 19},
'Hillsborough': {'pop': 400721, 'tracts': 86},
'Merrimack': {'pop': 146445, 'tracts': 36},
'Rockingham': {'pop': 295223, 'tracts': 66},
'Strafford': {'pop': 123143, 'tracts': 25},
'Sullivan': {'pop': 43742, 'tracts': 10}},
'NJ': {'Atlantic': {'pop': 274549, 'tracts': 69},
'Bergen': {'pop': 905116, 'tracts': 179},
'Burlington': {'pop': 448734, 'tracts': 114},
'Camden': {'pop': 513657, 'tracts': 127},
'Cape May': {'pop': 97265, 'tracts': 32},
'Cumberland': {'pop': 156898, 'tracts': 35},
'Essex': {'pop': 783969, 'tracts': 210},
'Gloucester': {'pop': 288288, 'tracts': 63},
'Hudson': {'pop': 634266, 'tracts': 166},
'Hunterdon': {'pop': 128349, 'tracts': 26},
'Mercer': {'pop': 366513, 'tracts': 77},
'Middlesex': {'pop': 809858, 'tracts': 175},
'Monmouth': {'pop': 630380, 'tracts': 144},
'Morris': {'pop': 492276, 'tracts': 100},
'Ocean': {'pop': 576567, 'tracts': 126},
'Passaic': {'pop': 501226, 'tracts': 100},
'Salem': {'pop': 66083, 'tracts': 24},
'Somerset': {'pop': 323444, 'tracts': 68},
'Sussex': {'pop': 149265, 'tracts': 41},
'Union': {'pop': 536499, 'tracts': 108},
'Warren': {'pop': 108692, 'tracts': 23}},
'NM': {'Bernalillo': {'pop': 662564, 'tracts': 153},
'Catron': {'pop': 3725, 'tracts': 1},
'Chaves': {'pop': 65645, 'tracts': 16},
'Cibola': {'pop': 27213, 'tracts': 7},
'Colfax': {'pop': 13750, 'tracts': 3},
'Curry': {'pop': 48376, 'tracts': 12},
'De Baca': {'pop': 2022, 'tracts': 1},
'Dona Ana': {'pop': 209233, 'tracts': 41},
'Eddy': {'pop': 53829, 'tracts': 12},
'Grant': {'pop': 29514, 'tracts': 8},
'Guadalupe': {'pop': 4687, 'tracts': 1},
'Harding': {'pop': 695, 'tracts': 1},
'Hidalgo': {'pop': 4894, 'tracts': 2},
'Lea': {'pop': 64727, 'tracts': 18},
'Lincoln': {'pop': 20497, 'tracts': 5},
'Los Alamos': {'pop': 17950, 'tracts': 4},
'Luna': {'pop': 25095, 'tracts': 6},
'McKinley': {'pop': 71492, 'tracts': 17},
'Mora': {'pop': 4881, 'tracts': 1},
'Otero': {'pop': 63797, 'tracts': 16},
'Quay': {'pop': 9041, 'tracts': 3},
'Rio Arriba': {'pop': 40246, 'tracts': 9},
'Roosevelt': {'pop': 19846, 'tracts': 5},
'San Juan': {'pop': 130044, 'tracts': 33},
'San Miguel': {'pop': 29393, 'tracts': 7},
'Sandoval': {'pop': 131561, 'tracts': 28},
'Santa Fe': {'pop': 144170, 'tracts': 50},
'Sierra': {'pop': 11988, 'tracts': 4},
'Socorro': {'pop': 17866, 'tracts': 6},
'Taos': {'pop': 32937, 'tracts': 6},
'Torrance': {'pop': 16383, 'tracts': 4},
'Union': {'pop': 4549, 'tracts': 1},
'Valencia': {'pop': 76569, 'tracts': 18}},
'NV': {'Carson City': {'pop': 55274, 'tracts': 14},
'Churchill': {'pop': 24877, 'tracts': 7},
'Clark': {'pop': 1951269, 'tracts': 487},
'Douglas': {'pop': 46997, 'tracts': 17},
'Elko': {'pop': 48818, 'tracts': 14},
'Esmeralda': {'pop': 783, 'tracts': 1},
'Eureka': {'pop': 1987, 'tracts': 1},
'Humboldt': {'pop': 16528, 'tracts': 4},
'Lander': {'pop': 5775, 'tracts': 1},
'Lincoln': {'pop': 5345, 'tracts': 2},
'Lyon': {'pop': 51980, 'tracts': 10},
'Mineral': {'pop': 4772, 'tracts': 2},
'Nye': {'pop': 43946, 'tracts': 10},
'Pershing': {'pop': 6753, 'tracts': 1},
'Storey': {'pop': 4010, 'tracts': 1},
'Washoe': {'pop': 421407, 'tracts': 112},
'White Pine': {'pop': 10030, 'tracts': 3}},
'NY': {'Albany': {'pop': 304204, 'tracts': 75},
'Allegany': {'pop': 48946, 'tracts': 13},
'Bronx': {'pop': 1385108, 'tracts': 339},
'Broome': {'pop': 200600, 'tracts': 55},
'Cattaraugus': {'pop': 80317, 'tracts': 21},
'Cayuga': {'pop': 80026, 'tracts': 20},
'Chautauqua': {'pop': 134905, 'tracts': 35},
'Chemung': {'pop': 88830, 'tracts': 22},
'Chenango': {'pop': 50477, 'tracts': 12},
'Clinton': {'pop': 82128, 'tracts': 19},
'Columbia': {'pop': 63096, 'tracts': 21},
'Cortland': {'pop': 49336, 'tracts': 12},
'Delaware': {'pop': 47980, 'tracts': 14},
'Dutchess': {'pop': 297488, 'tracts': 79},
'Erie': {'pop': 919040, 'tracts': 237},
'Essex': {'pop': 39370, 'tracts': 13},
'Franklin': {'pop': 51599, 'tracts': 14},
'Fulton': {'pop': 55531, 'tracts': 15},
'Genesee': {'pop': 60079, 'tracts': 15},
'Greene': {'pop': 49221, 'tracts': 15},
'Hamilton': {'pop': 4836, 'tracts': 4},
'Herkimer': {'pop': 64519, 'tracts': 19},
'Jefferson': {'pop': 116229, 'tracts': 26},
'Kings': {'pop': 2504700, 'tracts': 760},
'Lewis': {'pop': 27087, 'tracts': 7},
'Livingston': {'pop': 65393, 'tracts': 15},
'Madison': {'pop': 73442, 'tracts': 16},
'Monroe': {'pop': 744344, 'tracts': 192},
'Montgomery': {'pop': 50219, 'tracts': 16},
'Nassau': {'pop': 1339532, 'tracts': 280},
'New York': {'pop': 1585873, 'tracts': 288},
'Niagara': {'pop': 216469, 'tracts': 61},
'Oneida': {'pop': 234878, 'tracts': 74},
'Onondaga': {'pop': 467026, 'tracts': 140},
'Ontario': {'pop': 107931, 'tracts': 25},
'Orange': {'pop': 372813, 'tracts': 79},
'Orleans': {'pop': 42883, 'tracts': 11},
'Oswego': {'pop': 122109, 'tracts': 29},
'Otsego': {'pop': 62259, 'tracts': 17},
'Putnam': {'pop': 99710, 'tracts': 19},
'Queens': {'pop': 2230722, 'tracts': 669},
'Rensselaer': {'pop': 159429, 'tracts': 42},
'Richmond': {'pop': 468730, 'tracts': 109},
'Rockland': {'pop': 311687, 'tracts': 65},
'Saratoga': {'pop': 219607, 'tracts': 50},
'Schenectady': {'pop': 154727, 'tracts': 43},
'Schoharie': {'pop': 32749, 'tracts': 8},
'Schuyler': {'pop': 18343, 'tracts': 5},
'Seneca': {'pop': 35251, 'tracts': 10},
'St. Lawrence': {'pop': 111944, 'tracts': 28},
'Steuben': {'pop': 98990, 'tracts': 30},
'Suffolk': {'pop': 1493350, 'tracts': 322},
'Sullivan': {'pop': 77547, 'tracts': 24},
'Tioga': {'pop': 51125, 'tracts': 10},
'Tompkins': {'pop': 101564, 'tracts': 23},
'Ulster': {'pop': 182493, 'tracts': 47},
'Warren': {'pop': 65707, 'tracts': 19},
'Washington': {'pop': 63216, 'tracts': 17},
'Wayne': {'pop': 93772, 'tracts': 23},
'Westchester': {'pop': 949113, 'tracts': 223},
'Wyoming': {'pop': 42155, 'tracts': 11},
'Yates': {'pop': 25348, 'tracts': 5}},
'OH': {'Adams': {'pop': 28550, 'tracts': 6},
'Allen': {'pop': 106331, 'tracts': 33},
'Ashland': {'pop': 53139, 'tracts': 11},
'Ashtabula': {'pop': 101497, 'tracts': 25},
'Athens': {'pop': 64757, 'tracts': 15},
'Auglaize': {'pop': 45949, 'tracts': 11},
'Belmont': {'pop': 70400, 'tracts': 20},
'Brown': {'pop': 44846, 'tracts': 9},
'Butler': {'pop': 368130, 'tracts': 80},
'Carroll': {'pop': 28836, 'tracts': 7},
'Champaign': {'pop': 40097, 'tracts': 10},
'Clark': {'pop': 138333, 'tracts': 44},
'Clermont': {'pop': 197363, 'tracts': 40},
'Clinton': {'pop': 42040, 'tracts': 9},
'Columbiana': {'pop': 107841, 'tracts': 24},
'Coshocton': {'pop': 36901, 'tracts': 10},
'Crawford': {'pop': 43784, 'tracts': 13},
'Cuyahoga': {'pop': 1280122, 'tracts': 447},
'Darke': {'pop': 52959, 'tracts': 12},
'Defiance': {'pop': 39037, 'tracts': 9},
'Delaware': {'pop': 174214, 'tracts': 35},
'Erie': {'pop': 77079, 'tracts': 19},
'Fairfield': {'pop': 146156, 'tracts': 28},
'Fayette': {'pop': 29030, 'tracts': 7},
'Franklin': {'pop': 1163414, 'tracts': 284},
'Fulton': {'pop': 42698, 'tracts': 9},
'Gallia': {'pop': 30934, 'tracts': 7},
'Geauga': {'pop': 93389, 'tracts': 21},
'Greene': {'pop': 161573, 'tracts': 35},
'Guernsey': {'pop': 40087, 'tracts': 10},
'Hamilton': {'pop': 802374, 'tracts': 222},
'Hancock': {'pop': 74782, 'tracts': 13},
'Hardin': {'pop': 32058, 'tracts': 7},
'Harrison': {'pop': 15864, 'tracts': 5},
'Henry': {'pop': 28215, 'tracts': 7},
'Highland': {'pop': 43589, 'tracts': 9},
'Hocking': {'pop': 29380, 'tracts': 7},
'Holmes': {'pop': 42366, 'tracts': 8},
'Huron': {'pop': 59626, 'tracts': 13},
'Jackson': {'pop': 33225, 'tracts': 7},
'Jefferson': {'pop': 69709, 'tracts': 23},
'Knox': {'pop': 60921, 'tracts': 12},
'Lake': {'pop': 230041, 'tracts': 59},
'Lawrence': {'pop': 62450, 'tracts': 16},
'Licking': {'pop': 166492, 'tracts': 32},
'Logan': {'pop': 45858, 'tracts': 11},
'Lorain': {'pop': 301356, 'tracts': 73},
'Lucas': {'pop': 441815, 'tracts': 127},
'Madison': {'pop': 43435, 'tracts': 12},
'Mahoning': {'pop': 238823, 'tracts': 70},
'Marion': {'pop': 66501, 'tracts': 18},
'Medina': {'pop': 172332, 'tracts': 37},
'Meigs': {'pop': 23770, 'tracts': 6},
'Mercer': {'pop': 40814, 'tracts': 9},
'Miami': {'pop': 102506, 'tracts': 21},
'Monroe': {'pop': 14642, 'tracts': 4},
'Montgomery': {'pop': 535153, 'tracts': 153},
'Morgan': {'pop': 15054, 'tracts': 4},
'Morrow': {'pop': 34827, 'tracts': 6},
'Muskingum': {'pop': 86074, 'tracts': 19},
'Noble': {'pop': 14645, 'tracts': 3},
'Ottawa': {'pop': 41428, 'tracts': 13},
'Paulding': {'pop': 19614, 'tracts': 5},
'Perry': {'pop': 36058, 'tracts': 6},
'Pickaway': {'pop': 55698, 'tracts': 13},
'Pike': {'pop': 28709, 'tracts': 6},
'Portage': {'pop': 161419, 'tracts': 35},
'Preble': {'pop': 42270, 'tracts': 12},
'Putnam': {'pop': 34499, 'tracts': 7},
'Richland': {'pop': 124475, 'tracts': 30},
'Ross': {'pop': 78064, 'tracts': 17},
'Sandusky': {'pop': 60944, 'tracts': 15},
'Scioto': {'pop': 79499, 'tracts': 20},
'Seneca': {'pop': 56745, 'tracts': 14},
'Shelby': {'pop': 49423, 'tracts': 10},
'Stark': {'pop': 375586, 'tracts': 86},
'Summit': {'pop': 541781, 'tracts': 135},
'Trumbull': {'pop': 210312, 'tracts': 55},
'Tuscarawas': {'pop': 92582, 'tracts': 21},
'Union': {'pop': 52300, 'tracts': 10},
'Van Wert': {'pop': 28744, 'tracts': 9},
'Vinton': {'pop': 13435, 'tracts': 3},
'Warren': {'pop': 212693, 'tracts': 33},
'Washington': {'pop': 61778, 'tracts': 16},
'Wayne': {'pop': 114520, 'tracts': 32},
'Williams': {'pop': 37642, 'tracts': 9},
'Wood': {'pop': 125488, 'tracts': 28},
'Wyandot': {'pop': 22615, 'tracts': 6}},
'OK': {'Adair': {'pop': 22683, 'tracts': 5},
'Alfalfa': {'pop': 5642, 'tracts': 3},
'Atoka': {'pop': 14182, 'tracts': 4},
'Beaver': {'pop': 5636, 'tracts': 3},
'Beckham': {'pop': 22119, 'tracts': 4},
'Blaine': {'pop': 11943, 'tracts': 5},
'Bryan': {'pop': 42416, 'tracts': 11},
'Caddo': {'pop': 29600, 'tracts': 8},
'Canadian': {'pop': 115541, 'tracts': 29},
'Carter': {'pop': 47557, 'tracts': 11},
'Cherokee': {'pop': 46987, 'tracts': 9},
'Choctaw': {'pop': 15205, 'tracts': 5},
'Cimarron': {'pop': 2475, 'tracts': 2},
'Cleveland': {'pop': 255755, 'tracts': 62},
'Coal': {'pop': 5925, 'tracts': 2},
'Comanche': {'pop': 124098, 'tracts': 32},
'Cotton': {'pop': 6193, 'tracts': 2},
'Craig': {'pop': 15029, 'tracts': 5},
'Creek': {'pop': 69967, 'tracts': 21},
'Custer': {'pop': 27469, 'tracts': 5},
'Delaware': {'pop': 41487, 'tracts': 9},
'Dewey': {'pop': 4810, 'tracts': 3},
'Ellis': {'pop': 4151, 'tracts': 2},
'Garfield': {'pop': 60580, 'tracts': 12},
'Garvin': {'pop': 27576, 'tracts': 9},
'Grady': {'pop': 52431, 'tracts': 10},
'Grant': {'pop': 4527, 'tracts': 2},
'Greer': {'pop': 6239, 'tracts': 2},
'Harmon': {'pop': 2922, 'tracts': 1},
'Harper': {'pop': 3685, 'tracts': 2},
'Haskell': {'pop': 12769, 'tracts': 4},
'Hughes': {'pop': 14003, 'tracts': 5},
'Jackson': {'pop': 26446, 'tracts': 8},
'Jefferson': {'pop': 6472, 'tracts': 3},
'Johnston': {'pop': 10957, 'tracts': 3},
'Kay': {'pop': 46562, 'tracts': 11},
'Kingfisher': {'pop': 15034, 'tracts': 4},
'Kiowa': {'pop': 9446, 'tracts': 3},
'Latimer': {'pop': 11154, 'tracts': 3},
'Le Flore': {'pop': 50384, 'tracts': 12},
'Lincoln': {'pop': 34273, 'tracts': 7},
'Logan': {'pop': 41848, 'tracts': 8},
'Love': {'pop': 9423, 'tracts': 3},
'Major': {'pop': 7527, 'tracts': 3},
'Marshall': {'pop': 15840, 'tracts': 4},
'Mayes': {'pop': 41259, 'tracts': 9},
'McClain': {'pop': 34506, 'tracts': 6},
'McCurtain': {'pop': 33151, 'tracts': 8},
'McIntosh': {'pop': 20252, 'tracts': 6},
'Murray': {'pop': 13488, 'tracts': 3},
'Muskogee': {'pop': 70990, 'tracts': 16},
'Noble': {'pop': 11561, 'tracts': 4},
'Nowata': {'pop': 10536, 'tracts': 4},
'Okfuskee': {'pop': 12191, 'tracts': 4},
'Oklahoma': {'pop': 718633, 'tracts': 241},
'Okmulgee': {'pop': 40069, 'tracts': 10},
'Osage': {'pop': 47472, 'tracts': 11},
'Ottawa': {'pop': 31848, 'tracts': 9},
'Pawnee': {'pop': 16577, 'tracts': 5},
'Payne': {'pop': 77350, 'tracts': 17},
'Pittsburg': {'pop': 45837, 'tracts': 13},
'Pontotoc': {'pop': 37492, 'tracts': 10},
'Pottawatomie': {'pop': 69442, 'tracts': 16},
'Pushmataha': {'pop': 11572, 'tracts': 3},
'Roger Mills': {'pop': 3647, 'tracts': 1},
'Rogers': {'pop': 86905, 'tracts': 28},
'Seminole': {'pop': 25482, 'tracts': 9},
'Sequoyah': {'pop': 42391, 'tracts': 9},
'Stephens': {'pop': 45048, 'tracts': 11},
'Texas': {'pop': 20640, 'tracts': 5},
'Tillman': {'pop': 7992, 'tracts': 5},
'Tulsa': {'pop': 603403, 'tracts': 175},
'Wagoner': {'pop': 73085, 'tracts': 22},
'Washington': {'pop': 50976, 'tracts': 13},
'Washita': {'pop': 11629, 'tracts': 4},
'Woods': {'pop': 8878, 'tracts': 3},
'Woodward': {'pop': 20081, 'tracts': 5}},
'OR': {'Baker': {'pop': 16134, 'tracts': 6},
'Benton': {'pop': 85579, 'tracts': 18},
'Clackamas': {'pop': 375992, 'tracts': 80},
'Clatsop': {'pop': 37039, 'tracts': 12},
'Columbia': {'pop': 49351, 'tracts': 10},
'Coos': {'pop': 63043, 'tracts': 13},
'Crook': {'pop': 20978, 'tracts': 4},
'Curry': {'pop': 22364, 'tracts': 6},
'Deschutes': {'pop': 157733, 'tracts': 24},
'Douglas': {'pop': 107667, 'tracts': 22},
'Gilliam': {'pop': 1871, 'tracts': 1},
'Grant': {'pop': 7445, 'tracts': 2},
'Harney': {'pop': 7422, 'tracts': 2},
'Hood River': {'pop': 22346, 'tracts': 4},
'Jackson': {'pop': 203206, 'tracts': 41},
'Jefferson': {'pop': 21720, 'tracts': 6},
'Josephine': {'pop': 82713, 'tracts': 16},
'Klamath': {'pop': 66380, 'tracts': 20},
'Lake': {'pop': 7895, 'tracts': 2},
'Lane': {'pop': 351715, 'tracts': 86},
'Lincoln': {'pop': 46034, 'tracts': 18},
'Linn': {'pop': 116672, 'tracts': 21},
'Malheur': {'pop': 31313, 'tracts': 8},
'Marion': {'pop': 315335, 'tracts': 58},
'Morrow': {'pop': 11173, 'tracts': 2},
'Multnomah': {'pop': 735334, 'tracts': 171},
'Polk': {'pop': 75403, 'tracts': 12},
'Sherman': {'pop': 1765, 'tracts': 1},
'Tillamook': {'pop': 25250, 'tracts': 8},
'Umatilla': {'pop': 75889, 'tracts': 15},
'Union': {'pop': 25748, 'tracts': 8},
'Wallowa': {'pop': 7008, 'tracts': 3},
'Wasco': {'pop': 25213, 'tracts': 8},
'Washington': {'pop': 529710, 'tracts': 104},
'Wheeler': {'pop': 1441, 'tracts': 1},
'Yamhill': {'pop': 99193, 'tracts': 17}},
'PA': {'Adams': {'pop': 101407, 'tracts': 23},
'Allegheny': {'pop': 1223348, 'tracts': 402},
'Armstrong': {'pop': 68941, 'tracts': 19},
'Beaver': {'pop': 170539, 'tracts': 51},
'Bedford': {'pop': 49762, 'tracts': 11},
'Berks': {'pop': 411442, 'tracts': 90},
'Blair': {'pop': 127089, 'tracts': 34},
'Bradford': {'pop': 62622, 'tracts': 14},
'Bucks': {'pop': 625249, 'tracts': 143},
'Butler': {'pop': 183862, 'tracts': 44},
'Cambria': {'pop': 143679, 'tracts': 42},
'Cameron': {'pop': 5085, 'tracts': 2},
'Carbon': {'pop': 65249, 'tracts': 12},
'Centre': {'pop': 153990, 'tracts': 31},
'Chester': {'pop': 498886, 'tracts': 116},
'Clarion': {'pop': 39988, 'tracts': 10},
'Clearfield': {'pop': 81642, 'tracts': 20},
'Clinton': {'pop': 39238, 'tracts': 9},
'Columbia': {'pop': 67295, 'tracts': 15},
'Crawford': {'pop': 88765, 'tracts': 23},
'Cumberland': {'pop': 235406, 'tracts': 49},
'Dauphin': {'pop': 268100, 'tracts': 65},
'Delaware': {'pop': 558979, 'tracts': 144},
'Elk': {'pop': 31946, 'tracts': 9},
'Erie': {'pop': 280566, 'tracts': 72},
'Fayette': {'pop': 136606, 'tracts': 36},
'Forest': {'pop': 7716, 'tracts': 3},
'Franklin': {'pop': 149618, 'tracts': 27},
'Fulton': {'pop': 14845, 'tracts': 3},
'Greene': {'pop': 38686, 'tracts': 9},
'Huntingdon': {'pop': 45913, 'tracts': 12},
'Indiana': {'pop': 88880, 'tracts': 23},
'Jefferson': {'pop': 45200, 'tracts': 13},
'Juniata': {'pop': 24636, 'tracts': 5},
'Lackawanna': {'pop': 214437, 'tracts': 59},
'Lancaster': {'pop': 519445, 'tracts': 98},
'Lawrence': {'pop': 91108, 'tracts': 28},
'Lebanon': {'pop': 133568, 'tracts': 31},
'Lehigh': {'pop': 349497, 'tracts': 76},
'Luzerne': {'pop': 320918, 'tracts': 104},
'Lycoming': {'pop': 116111, 'tracts': 29},
'McKean': {'pop': 43450, 'tracts': 12},
'Mercer': {'pop': 116638, 'tracts': 30},
'Mifflin': {'pop': 46682, 'tracts': 12},
'Monroe': {'pop': 169842, 'tracts': 33},
'Montgomery': {'pop': 799874, 'tracts': 211},
'Montour': {'pop': 18267, 'tracts': 4},
'Northampton': {'pop': 297735, 'tracts': 68},
'Northumberland': {'pop': 94528, 'tracts': 24},
'Perry': {'pop': 45969, 'tracts': 10},
'Philadelphia': {'pop': 1526006, 'tracts': 384},
'Pike': {'pop': 57369, 'tracts': 18},
'Potter': {'pop': 17457, 'tracts': 5},
'Schuylkill': {'pop': 148289, 'tracts': 40},
'Snyder': {'pop': 39702, 'tracts': 8},
'Somerset': {'pop': 77742, 'tracts': 21},
'Sullivan': {'pop': 6428, 'tracts': 2},
'Susquehanna': {'pop': 43356, 'tracts': 11},
'Tioga': {'pop': 41981, 'tracts': 10},
'Union': {'pop': 44947, 'tracts': 10},
'Venango': {'pop': 54984, 'tracts': 16},
'Warren': {'pop': 41815, 'tracts': 13},
'Washington': {'pop': 207820, 'tracts': 59},
'Wayne': {'pop': 52822, 'tracts': 14},
'Westmoreland': {'pop': 365169, 'tracts': 100},
'Wyoming': {'pop': 28276, 'tracts': 7},
'York': {'pop': 434972, 'tracts': 90}},
'RI': {'Bristol': {'pop': 49875, 'tracts': 11},
'Kent': {'pop': 166158, 'tracts': 39},
'Newport': {'pop': 82888, 'tracts': 22},
'Providence': {'pop': 626667, 'tracts': 141},
'Washington': {'pop': 126979, 'tracts': 29}},
'SC': {'Abbeville': {'pop': 25417, 'tracts': 6},
'Aiken': {'pop': 160099, 'tracts': 33},
'Allendale': {'pop': 10419, 'tracts': 3},
'Anderson': {'pop': 187126, 'tracts': 39},
'Bamberg': {'pop': 15987, 'tracts': 4},
'Barnwell': {'pop': 22621, 'tracts': 6},
'Beaufort': {'pop': 162233, 'tracts': 41},
'Berkeley': {'pop': 177843, 'tracts': 45},
'Calhoun': {'pop': 15175, 'tracts': 3},
'Charleston': {'pop': 350209, 'tracts': 86},
'Cherokee': {'pop': 55342, 'tracts': 13},
'Chester': {'pop': 33140, 'tracts': 11},
'Chesterfield': {'pop': 46734, 'tracts': 10},
'Clarendon': {'pop': 34971, 'tracts': 12},
'Colleton': {'pop': 38892, 'tracts': 10},
'Darlington': {'pop': 68681, 'tracts': 16},
'Dillon': {'pop': 32062, 'tracts': 6},
'Dorchester': {'pop': 136555, 'tracts': 25},
'Edgefield': {'pop': 26985, 'tracts': 6},
'Fairfield': {'pop': 23956, 'tracts': 5},
'Florence': {'pop': 136885, 'tracts': 33},
'Georgetown': {'pop': 60158, 'tracts': 15},
'Greenville': {'pop': 451225, 'tracts': 111},
'Greenwood': {'pop': 69661, 'tracts': 14},
'Hampton': {'pop': 21090, 'tracts': 5},
'Horry': {'pop': 269291, 'tracts': 72},
'Jasper': {'pop': 24777, 'tracts': 5},
'Kershaw': {'pop': 61697, 'tracts': 15},
'Lancaster': {'pop': 76652, 'tracts': 14},
'Laurens': {'pop': 66537, 'tracts': 17},
'Lee': {'pop': 19220, 'tracts': 7},
'Lexington': {'pop': 262391, 'tracts': 74},
'Marion': {'pop': 33062, 'tracts': 8},
'Marlboro': {'pop': 28933, 'tracts': 7},
'McCormick': {'pop': 10233, 'tracts': 3},
'Newberry': {'pop': 37508, 'tracts': 8},
'Oconee': {'pop': 74273, 'tracts': 15},
'Orangeburg': {'pop': 92501, 'tracts': 20},
'Pickens': {'pop': 119224, 'tracts': 28},
'Richland': {'pop': 384504, 'tracts': 89},
'Saluda': {'pop': 19875, 'tracts': 5},
'Spartanburg': {'pop': 284307, 'tracts': 69},
'Sumter': {'pop': 107456, 'tracts': 23},
'Union': {'pop': 28961, 'tracts': 9},
'Williamsburg': {'pop': 34423, 'tracts': 11},
'York': {'pop': 226073, 'tracts': 46}},
'SD': {'Aurora': {'pop': 2710, 'tracts': 1},
'Beadle': {'pop': 17398, 'tracts': 6},
'Bennett': {'pop': 3431, 'tracts': 2},
'Bon Homme': {'pop': 7070, 'tracts': 2},
'Brookings': {'pop': 31965, 'tracts': 6},
'Brown': {'pop': 36531, 'tracts': 8},
'Brule': {'pop': 5255, 'tracts': 2},
'Buffalo': {'pop': 1912, 'tracts': 1},
'Butte': {'pop': 10110, 'tracts': 2},
'Campbell': {'pop': 1466, 'tracts': 1},
'Charles Mix': {'pop': 9129, 'tracts': 3},
'Clark': {'pop': 3691, 'tracts': 1},
'Clay': {'pop': 13864, 'tracts': 3},
'Codington': {'pop': 27227, 'tracts': 7},
'Corson': {'pop': 4050, 'tracts': 2},
'Custer': {'pop': 8216, 'tracts': 2},
'Davison': {'pop': 19504, 'tracts': 4},
'Day': {'pop': 5710, 'tracts': 3},
'Deuel': {'pop': 4364, 'tracts': 2},
'Dewey': {'pop': 5301, 'tracts': 2},
'Douglas': {'pop': 3002, 'tracts': 1},
'Edmunds': {'pop': 4071, 'tracts': 2},
'Fall River': {'pop': 7094, 'tracts': 2},
'Faulk': {'pop': 2364, 'tracts': 1},
'Grant': {'pop': 7356, 'tracts': 2},
'Gregory': {'pop': 4271, 'tracts': 2},
'Haakon': {'pop': 1937, 'tracts': 1},
'Hamlin': {'pop': 5903, 'tracts': 2},
'Hand': {'pop': 3431, 'tracts': 2},
'Hanson': {'pop': 3331, 'tracts': 1},
'Harding': {'pop': 1255, 'tracts': 1},
'Hughes': {'pop': 17022, 'tracts': 4},
'Hutchinson': {'pop': 7343, 'tracts': 3},
'Hyde': {'pop': 1420, 'tracts': 1},
'Jackson': {'pop': 3031, 'tracts': 2},
'Jerauld': {'pop': 2071, 'tracts': 1},
'Jones': {'pop': 1006, 'tracts': 1},
'Kingsbury': {'pop': 5148, 'tracts': 2},
'Lake': {'pop': 11200, 'tracts': 3},
'Lawrence': {'pop': 24097, 'tracts': 5},
'Lincoln': {'pop': 44828, 'tracts': 11},
'Lyman': {'pop': 3755, 'tracts': 2},
'Marshall': {'pop': 4656, 'tracts': 1},
'McCook': {'pop': 5618, 'tracts': 2},
'McPherson': {'pop': 2459, 'tracts': 1},
'Meade': {'pop': 25434, 'tracts': 5},
'Mellette': {'pop': 2048, 'tracts': 1},
'Miner': {'pop': 2389, 'tracts': 1},
'Minnehaha': {'pop': 169468, 'tracts': 42},
'Moody': {'pop': 6486, 'tracts': 2},
'Pennington': {'pop': 100948, 'tracts': 23},
'Perkins': {'pop': 2982, 'tracts': 1},
'Potter': {'pop': 2329, 'tracts': 1},
'Roberts': {'pop': 10149, 'tracts': 4},
'Sanborn': {'pop': 2355, 'tracts': 1},
'Shannon': {'pop': 13586, 'tracts': 3},
'Spink': {'pop': 6415, 'tracts': 3},
'Stanley': {'pop': 2966, 'tracts': 1},
'Sully': {'pop': 1373, 'tracts': 1},
'Todd': {'pop': 9612, 'tracts': 2},
'Tripp': {'pop': 5644, 'tracts': 2},
'Turner': {'pop': 8347, 'tracts': 2},
'Union': {'pop': 14399, 'tracts': 3},
'Walworth': {'pop': 5438, 'tracts': 2},
'Yankton': {'pop': 22438, 'tracts': 5},
'Ziebach': {'pop': 2801, 'tracts': 1}},
'TN': {'Anderson': {'pop': 75129, 'tracts': 18},
'Bedford': {'pop': 45058, 'tracts': 9},
'Benton': {'pop': 16489, 'tracts': 5},
'Bledsoe': {'pop': 12876, 'tracts': 3},
'Blount': {'pop': 123010, 'tracts': 28},
'Bradley': {'pop': 98963, 'tracts': 19},
'Campbell': {'pop': 40716, 'tracts': 11},
'Cannon': {'pop': 13801, 'tracts': 3},
'Carroll': {'pop': 28522, 'tracts': 8},
'Carter': {'pop': 57424, 'tracts': 17},
'Cheatham': {'pop': 39105, 'tracts': 9},
'Chester': {'pop': 17131, 'tracts': 3},
'Claiborne': {'pop': 32213, 'tracts': 9},
'Clay': {'pop': 7861, 'tracts': 2},
'Cocke': {'pop': 35662, 'tracts': 9},
'Coffee': {'pop': 52796, 'tracts': 12},
'Crockett': {'pop': 14586, 'tracts': 5},
'Cumberland': {'pop': 56053, 'tracts': 14},
'Davidson': {'pop': 626681, 'tracts': 161},
'DeKalb': {'pop': 18723, 'tracts': 4},
'Decatur': {'pop': 11757, 'tracts': 4},
'Dickson': {'pop': 49666, 'tracts': 10},
'Dyer': {'pop': 38335, 'tracts': 8},
'Fayette': {'pop': 38413, 'tracts': 11},
'Fentress': {'pop': 17959, 'tracts': 4},
'Franklin': {'pop': 41052, 'tracts': 9},
'Gibson': {'pop': 49683, 'tracts': 14},
'Giles': {'pop': 29485, 'tracts': 8},
'Grainger': {'pop': 22657, 'tracts': 5},
'Greene': {'pop': 68831, 'tracts': 15},
'Grundy': {'pop': 13703, 'tracts': 4},
'Hamblen': {'pop': 62544, 'tracts': 12},
'Hamilton': {'pop': 336463, 'tracts': 82},
'Hancock': {'pop': 6819, 'tracts': 2},
'Hardeman': {'pop': 27253, 'tracts': 6},
'Hardin': {'pop': 26026, 'tracts': 6},
'Hawkins': {'pop': 56833, 'tracts': 13},
'Haywood': {'pop': 18787, 'tracts': 6},
'Henderson': {'pop': 27769, 'tracts': 6},
'Henry': {'pop': 32330, 'tracts': 9},
'Hickman': {'pop': 24690, 'tracts': 6},
'Houston': {'pop': 8426, 'tracts': 3},
'Humphreys': {'pop': 18538, 'tracts': 5},
'Jackson': {'pop': 11638, 'tracts': 4},
'Jefferson': {'pop': 51407, 'tracts': 9},
'Johnson': {'pop': 18244, 'tracts': 5},
'Knox': {'pop': 432226, 'tracts': 112},
'Lake': {'pop': 7832, 'tracts': 2},
'Lauderdale': {'pop': 27815, 'tracts': 9},
'Lawrence': {'pop': 41869, 'tracts': 11},
'Lewis': {'pop': 12161, 'tracts': 2},
'Lincoln': {'pop': 33361, 'tracts': 9},
'Loudon': {'pop': 48556, 'tracts': 10},
'Macon': {'pop': 22248, 'tracts': 4},
'Madison': {'pop': 98294, 'tracts': 27},
'Marion': {'pop': 28237, 'tracts': 6},
'Marshall': {'pop': 30617, 'tracts': 6},
'Maury': {'pop': 80956, 'tracts': 17},
'McMinn': {'pop': 52266, 'tracts': 10},
'McNairy': {'pop': 26075, 'tracts': 7},
'Meigs': {'pop': 11753, 'tracts': 3},
'Monroe': {'pop': 44519, 'tracts': 7},
'Montgomery': {'pop': 172331, 'tracts': 39},
'Moore': {'pop': 6362, 'tracts': 2},
'Morgan': {'pop': 21987, 'tracts': 5},
'Obion': {'pop': 31807, 'tracts': 10},
'Overton': {'pop': 22083, 'tracts': 7},
'Perry': {'pop': 7915, 'tracts': 2},
'Pickett': {'pop': 5077, 'tracts': 1},
'Polk': {'pop': 16825, 'tracts': 5},
'Putnam': {'pop': 72321, 'tracts': 15},
'Rhea': {'pop': 31809, 'tracts': 6},
'Roane': {'pop': 54181, 'tracts': 11},
'Robertson': {'pop': 66283, 'tracts': 14},
'Rutherford': {'pop': 262604, 'tracts': 49},
'Scott': {'pop': 22228, 'tracts': 5},
'Sequatchie': {'pop': 14112, 'tracts': 3},
'Sevier': {'pop': 89889, 'tracts': 18},
'Shelby': {'pop': 927644, 'tracts': 221},
'Smith': {'pop': 19166, 'tracts': 5},
'Stewart': {'pop': 13324, 'tracts': 5},
'Sullivan': {'pop': 156823, 'tracts': 39},
'Sumner': {'pop': 160645, 'tracts': 42},
'Tipton': {'pop': 61081, 'tracts': 13},
'Trousdale': {'pop': 7870, 'tracts': 2},
'Unicoi': {'pop': 18313, 'tracts': 4},
'Union': {'pop': 19109, 'tracts': 4},
'Van Buren': {'pop': 5548, 'tracts': 2},
'Warren': {'pop': 39839, 'tracts': 9},
'Washington': {'pop': 122979, 'tracts': 23},
'Wayne': {'pop': 17021, 'tracts': 4},
'Weakley': {'pop': 35021, 'tracts': 11},
'White': {'pop': 25841, 'tracts': 6},
'Williamson': {'pop': 183182, 'tracts': 37},
'Wilson': {'pop': 113993, 'tracts': 21}},
'TX': {'Anderson': {'pop': 58458, 'tracts': 11},
'Andrews': {'pop': 14786, 'tracts': 4},
'Angelina': {'pop': 86771, 'tracts': 17},
'Aransas': {'pop': 23158, 'tracts': 5},
'Archer': {'pop': 9054, 'tracts': 3},
'Armstrong': {'pop': 1901, 'tracts': 1},
'Atascosa': {'pop': 44911, 'tracts': 8},
'Austin': {'pop': 28417, 'tracts': 6},
'Bailey': {'pop': 7165, 'tracts': 1},
'Bandera': {'pop': 20485, 'tracts': 5},
'Bastrop': {'pop': 74171, 'tracts': 10},
'Baylor': {'pop': 3726, 'tracts': 1},
'Bee': {'pop': 31861, 'tracts': 7},
'Bell': {'pop': 310235, 'tracts': 65},
'Bexar': {'pop': 1714773, 'tracts': 366},
'Blanco': {'pop': 10497, 'tracts': 2},
'Borden': {'pop': 641, 'tracts': 1},
'Bosque': {'pop': 18212, 'tracts': 7},
'Bowie': {'pop': 92565, 'tracts': 18},
'Brazoria': {'pop': 313166, 'tracts': 51},
'Brazos': {'pop': 194851, 'tracts': 42},
'Brewster': {'pop': 9232, 'tracts': 3},
'Briscoe': {'pop': 1637, 'tracts': 1},
'Brooks': {'pop': 7223, 'tracts': 2},
'Brown': {'pop': 38106, 'tracts': 12},
'Burleson': {'pop': 17187, 'tracts': 5},
'Burnet': {'pop': 42750, 'tracts': 8},
'Caldwell': {'pop': 38066, 'tracts': 8},
'Calhoun': {'pop': 21381, 'tracts': 6},
'Callahan': {'pop': 13544, 'tracts': 3},
'Cameron': {'pop': 406220, 'tracts': 86},
'Camp': {'pop': 12401, 'tracts': 3},
'Carson': {'pop': 6182, 'tracts': 2},
'Cass': {'pop': 30464, 'tracts': 7},
'Castro': {'pop': 8062, 'tracts': 3},
'Chambers': {'pop': 35096, 'tracts': 6},
'Cherokee': {'pop': 50845, 'tracts': 12},
'Childress': {'pop': 7041, 'tracts': 2},
'Clay': {'pop': 10752, 'tracts': 3},
'Cochran': {'pop': 3127, 'tracts': 1},
'Coke': {'pop': 3320, 'tracts': 2},
'Coleman': {'pop': 8895, 'tracts': 3},
'Collin': {'pop': 782341, 'tracts': 152},
'Collingsworth': {'pop': 3057, 'tracts': 1},
'Colorado': {'pop': 20874, 'tracts': 5},
'Comal': {'pop': 108472, 'tracts': 24},
'Comanche': {'pop': 13974, 'tracts': 4},
'Concho': {'pop': 4087, 'tracts': 1},
'Cooke': {'pop': 38437, 'tracts': 8},
'Coryell': {'pop': 75388, 'tracts': 19},
'Cottle': {'pop': 1505, 'tracts': 1},
'Crane': {'pop': 4375, 'tracts': 1},
'Crockett': {'pop': 3719, 'tracts': 1},
'Crosby': {'pop': 6059, 'tracts': 3},
'Culberson': {'pop': 2398, 'tracts': 1},
'Dallam': {'pop': 6703, 'tracts': 2},
'Dallas': {'pop': 2368139, 'tracts': 529},
'Dawson': {'pop': 13833, 'tracts': 4},
'DeWitt': {'pop': 20097, 'tracts': 5},
'Deaf Smith': {'pop': 19372, 'tracts': 4},
'Delta': {'pop': 5231, 'tracts': 2},
'Denton': {'pop': 662614, 'tracts': 137},
'Dickens': {'pop': 2444, 'tracts': 1},
'Dimmit': {'pop': 9996, 'tracts': 2},
'Donley': {'pop': 3677, 'tracts': 2},
'Duval': {'pop': 11782, 'tracts': 3},
'Eastland': {'pop': 18583, 'tracts': 5},
'Ector': {'pop': 137130, 'tracts': 28},
'Edwards': {'pop': 2002, 'tracts': 1},
'El Paso': {'pop': 800647, 'tracts': 161},
'Ellis': {'pop': 149610, 'tracts': 31},
'Erath': {'pop': 37890, 'tracts': 8},
'Falls': {'pop': 17866, 'tracts': 6},
'Fannin': {'pop': 33915, 'tracts': 9},
'Fayette': {'pop': 24554, 'tracts': 7},
'Fisher': {'pop': 3974, 'tracts': 2},
'Floyd': {'pop': 6446, 'tracts': 2},
'Foard': {'pop': 1336, 'tracts': 1},
'Fort Bend': {'pop': 585375, 'tracts': 76},
'Franklin': {'pop': 10605, 'tracts': 3},
'Freestone': {'pop': 19816, 'tracts': 7},
'Frio': {'pop': 17217, 'tracts': 3},
'Gaines': {'pop': 17526, 'tracts': 3},
'Galveston': {'pop': 291309, 'tracts': 67},
'Garza': {'pop': 6461, 'tracts': 1},
'Gillespie': {'pop': 24837, 'tracts': 5},
'Glasscock': {'pop': 1226, 'tracts': 1},
'Goliad': {'pop': 7210, 'tracts': 2},
'Gonzales': {'pop': 19807, 'tracts': 6},
'Gray': {'pop': 22535, 'tracts': 7},
'Grayson': {'pop': 120877, 'tracts': 26},
'Gregg': {'pop': 121730, 'tracts': 25},
'Grimes': {'pop': 26604, 'tracts': 6},
'Guadalupe': {'pop': 131533, 'tracts': 29},
'Hale': {'pop': 36273, 'tracts': 9},
'Hall': {'pop': 3353, 'tracts': 1},
'Hamilton': {'pop': 8517, 'tracts': 3},
'Hansford': {'pop': 5613, 'tracts': 2},
'Hardeman': {'pop': 4139, 'tracts': 1},
'Hardin': {'pop': 54635, 'tracts': 11},
'Harris': {'pop': 4092459, 'tracts': 786},
'Harrison': {'pop': 65631, 'tracts': 14},
'Hartley': {'pop': 6062, 'tracts': 1},
'Haskell': {'pop': 5899, 'tracts': 2},
'Hays': {'pop': 157107, 'tracts': 25},
'Hemphill': {'pop': 3807, 'tracts': 1},
'Henderson': {'pop': 78532, 'tracts': 17},
'Hidalgo': {'pop': 774769, 'tracts': 113},
'Hill': {'pop': 35089, 'tracts': 11},
'Hockley': {'pop': 22935, 'tracts': 7},
'Hood': {'pop': 51182, 'tracts': 10},
'Hopkins': {'pop': 35161, 'tracts': 9},
'Houston': {'pop': 23732, 'tracts': 7},
'Howard': {'pop': 35012, 'tracts': 10},
'Hudspeth': {'pop': 3476, 'tracts': 1},
'Hunt': {'pop': 86129, 'tracts': 19},
'Hutchinson': {'pop': 22150, 'tracts': 7},
'Irion': {'pop': 1599, 'tracts': 1},
'Jack': {'pop': 9044, 'tracts': 3},
'Jackson': {'pop': 14075, 'tracts': 3},
'Jasper': {'pop': 35710, 'tracts': 8},
'Jeff Davis': {'pop': 2342, 'tracts': 1},
'Jefferson': {'pop': 252273, 'tracts': 72},
'Jim Hogg': {'pop': 5300, 'tracts': 2},
'Jim Wells': {'pop': 40838, 'tracts': 7},
'Johnson': {'pop': 150934, 'tracts': 28},
'Jones': {'pop': 20202, 'tracts': 6},
'Karnes': {'pop': 14824, 'tracts': 4},
'Kaufman': {'pop': 103350, 'tracts': 18},
'Kendall': {'pop': 33410, 'tracts': 6},
'Kenedy': {'pop': 416, 'tracts': 1},
'Kent': {'pop': 808, 'tracts': 1},
'Kerr': {'pop': 49625, 'tracts': 10},
'Kimble': {'pop': 4607, 'tracts': 2},
'King': {'pop': 286, 'tracts': 1},
'Kinney': {'pop': 3598, 'tracts': 1},
'Kleberg': {'pop': 32061, 'tracts': 6},
'Knox': {'pop': 3719, 'tracts': 2},
'La Salle': {'pop': 6886, 'tracts': 1},
'Lamar': {'pop': 49793, 'tracts': 12},
'Lamb': {'pop': 13977, 'tracts': 5},
'Lampasas': {'pop': 19677, 'tracts': 5},
'Lavaca': {'pop': 19263, 'tracts': 6},
'Lee': {'pop': 16612, 'tracts': 4},
'Leon': {'pop': 16801, 'tracts': 3},
'Liberty': {'pop': 75643, 'tracts': 14},
'Limestone': {'pop': 23384, 'tracts': 8},
'Lipscomb': {'pop': 3302, 'tracts': 2},
'Live Oak': {'pop': 11531, 'tracts': 4},
'Llano': {'pop': 19301, 'tracts': 6},
'Loving': {'pop': 82, 'tracts': 1},
'Lubbock': {'pop': 278831, 'tracts': 68},
'Lynn': {'pop': 5915, 'tracts': 3},
'Madison': {'pop': 13664, 'tracts': 4},
'Marion': {'pop': 10546, 'tracts': 4},
'Martin': {'pop': 4799, 'tracts': 2},
'Mason': {'pop': 4012, 'tracts': 2},
'Matagorda': {'pop': 36702, 'tracts': 10},
'Maverick': {'pop': 54258, 'tracts': 9},
'McCulloch': {'pop': 8283, 'tracts': 3},
'McLennan': {'pop': 234906, 'tracts': 51},
'McMullen': {'pop': 707, 'tracts': 1},
'Medina': {'pop': 46006, 'tracts': 8},
'Menard': {'pop': 2242, 'tracts': 1},
'Midland': {'pop': 136872, 'tracts': 27},
'Milam': {'pop': 24757, 'tracts': 7},
'Mills': {'pop': 4936, 'tracts': 2},
'Mitchell': {'pop': 9403, 'tracts': 2},
'Montague': {'pop': 19719, 'tracts': 6},
'Montgomery': {'pop': 455746, 'tracts': 59},
'Moore': {'pop': 21904, 'tracts': 4},
'Morris': {'pop': 12934, 'tracts': 3},
'Motley': {'pop': 1210, 'tracts': 1},
'Nacogdoches': {'pop': 64524, 'tracts': 13},
'Navarro': {'pop': 47735, 'tracts': 10},
'Newton': {'pop': 14445, 'tracts': 4},
'Nolan': {'pop': 15216, 'tracts': 5},
'Nueces': {'pop': 340223, 'tracts': 81},
'Ochiltree': {'pop': 10223, 'tracts': 3},
'Oldham': {'pop': 2052, 'tracts': 1},
'Orange': {'pop': 81837, 'tracts': 21},
'Palo Pinto': {'pop': 28111, 'tracts': 9},
'Panola': {'pop': 23796, 'tracts': 6},
'Parker': {'pop': 116927, 'tracts': 19},
'Parmer': {'pop': 10269, 'tracts': 2},
'Pecos': {'pop': 15507, 'tracts': 4},
'Polk': {'pop': 45413, 'tracts': 10},
'Potter': {'pop': 121073, 'tracts': 34},
'Presidio': {'pop': 7818, 'tracts': 2},
'Rains': {'pop': 10914, 'tracts': 2},
'Randall': {'pop': 120725, 'tracts': 29},
'Reagan': {'pop': 3367, 'tracts': 1},
'Real': {'pop': 3309, 'tracts': 1},
'Red River': {'pop': 12860, 'tracts': 4},
'Reeves': {'pop': 13783, 'tracts': 5},
'Refugio': {'pop': 7383, 'tracts': 2},
'Roberts': {'pop': 929, 'tracts': 1},
'Robertson': {'pop': 16622, 'tracts': 5},
'Rockwall': {'pop': 78337, 'tracts': 11},
'Runnels': {'pop': 10501, 'tracts': 4},
'Rusk': {'pop': 53330, 'tracts': 13},
'Sabine': {'pop': 10834, 'tracts': 3},
'San Augustine': {'pop': 8865, 'tracts': 3},
'San Jacinto': {'pop': 26384, 'tracts': 4},
'San Patricio': {'pop': 64804, 'tracts': 16},
'San Saba': {'pop': 6131, 'tracts': 2},
'Schleicher': {'pop': 3461, 'tracts': 1},
'Scurry': {'pop': 16921, 'tracts': 4},
'Shackelford': {'pop': 3378, 'tracts': 1},
'Shelby': {'pop': 25448, 'tracts': 6},
'Sherman': {'pop': 3034, 'tracts': 1},
'Smith': {'pop': 209714, 'tracts': 41},
'Somervell': {'pop': 8490, 'tracts': 2},
'Starr': {'pop': 60968, 'tracts': 15},
'Stephens': {'pop': 9630, 'tracts': 3},
'Sterling': {'pop': 1143, 'tracts': 1},
'Stonewall': {'pop': 1490, 'tracts': 1},
'Sutton': {'pop': 4128, 'tracts': 1},
'Swisher': {'pop': 7854, 'tracts': 3},
'Tarrant': {'pop': 1809034, 'tracts': 357},
'Taylor': {'pop': 131506, 'tracts': 38},
'Terrell': {'pop': 984, 'tracts': 1},
'Terry': {'pop': 12651, 'tracts': 3},
'Throckmorton': {'pop': 1641, 'tracts': 1},
'Titus': {'pop': 32334, 'tracts': 8},
'Tom Green': {'pop': 110224, 'tracts': 25},
'Travis': {'pop': 1024266, 'tracts': 218},
'Trinity': {'pop': 14585, 'tracts': 5},
'Tyler': {'pop': 21766, 'tracts': 5},
'Upshur': {'pop': 39309, 'tracts': 7},
'Upton': {'pop': 3355, 'tracts': 2},
'Uvalde': {'pop': 26405, 'tracts': 5},
'Val Verde': {'pop': 48879, 'tracts': 10},
'Van Zandt': {'pop': 52579, 'tracts': 10},
'Victoria': {'pop': 86793, 'tracts': 23},
'Walker': {'pop': 67861, 'tracts': 10},
'Waller': {'pop': 43205, 'tracts': 6},
'Ward': {'pop': 10658, 'tracts': 3},
'Washington': {'pop': 33718, 'tracts': 6},
'Webb': {'pop': 250304, 'tracts': 61},
'Wharton': {'pop': 41280, 'tracts': 11},
'Wheeler': {'pop': 5410, 'tracts': 2},
'Wichita': {'pop': 131500, 'tracts': 37},
'Wilbarger': {'pop': 13535, 'tracts': 4},
'Willacy': {'pop': 22134, 'tracts': 6},
'Williamson': {'pop': 422679, 'tracts': 89},
'Wilson': {'pop': 42918, 'tracts': 11},
'Winkler': {'pop': 7110, 'tracts': 3},
'Wise': {'pop': 59127, 'tracts': 11},
'Wood': {'pop': 41964, 'tracts': 10},
'Yoakum': {'pop': 7879, 'tracts': 2},
'Young': {'pop': 18550, 'tracts': 4},
'Zapata': {'pop': 14018, 'tracts': 3},
'Zavala': {'pop': 11677, 'tracts': 4}},
'UT': {'Beaver': {'pop': 6629, 'tracts': 2},
'Box Elder': {'pop': 49975, 'tracts': 11},
'Cache': {'pop': 112656, 'tracts': 26},
'Carbon': {'pop': 21403, 'tracts': 5},
'Daggett': {'pop': 1059, 'tracts': 1},
'Davis': {'pop': 306479, 'tracts': 54},
'Duchesne': {'pop': 18607, 'tracts': 3},
'Emery': {'pop': 10976, 'tracts': 3},
'Garfield': {'pop': 5172, 'tracts': 2},
'Grand': {'pop': 9225, 'tracts': 2},
'Iron': {'pop': 46163, 'tracts': 8},
'Juab': {'pop': 10246, 'tracts': 2},
'Kane': {'pop': 7125, 'tracts': 2},
'Millard': {'pop': 12503, 'tracts': 3},
'Morgan': {'pop': 9469, 'tracts': 2},
'Piute': {'pop': 1556, 'tracts': 1},
'Rich': {'pop': 2264, 'tracts': 1},
'Salt Lake': {'pop': 1029655, 'tracts': 212},
'San Juan': {'pop': 14746, 'tracts': 4},
'Sanpete': {'pop': 27822, 'tracts': 5},
'Sevier': {'pop': 20802, 'tracts': 5},
'Summit': {'pop': 36324, 'tracts': 13},
'Tooele': {'pop': 58218, 'tracts': 11},
'Uintah': {'pop': 32588, 'tracts': 6},
'Utah': {'pop': 516564, 'tracts': 128},
'Wasatch': {'pop': 23530, 'tracts': 4},
'Washington': {'pop': 138115, 'tracts': 21},
'Wayne': {'pop': 2778, 'tracts': 1},
'Weber': {'pop': 231236, 'tracts': 50}},
'VA': {'Accomack': {'pop': 33164, 'tracts': 11},
'Albemarle': {'pop': 98970, 'tracts': 22},
'Alexandria': {'pop': 139966, 'tracts': 38},
'Alleghany': {'pop': 16250, 'tracts': 6},
'Amelia': {'pop': 12690, 'tracts': 2},
'Amherst': {'pop': 32353, 'tracts': 9},
'Appomattox': {'pop': 14973, 'tracts': 3},
'Arlington': {'pop': 207627, 'tracts': 59},
'Augusta': {'pop': 73750, 'tracts': 13},
'Bath': {'pop': 4731, 'tracts': 1},
'Bedford': {'pop': 68676, 'tracts': 16},
'Bedford City': {'pop': 6222, 'tracts': 1},
'Bland': {'pop': 6824, 'tracts': 2},
'Botetourt': {'pop': 33148, 'tracts': 8},
'Bristol': {'pop': 17835, 'tracts': 4},
'Brunswick': {'pop': 17434, 'tracts': 5},
'Buchanan': {'pop': 24098, 'tracts': 7},
'Buckingham': {'pop': 17146, 'tracts': 4},
'Buena Vista': {'pop': 6650, 'tracts': 1},
'Campbell': {'pop': 54842, 'tracts': 12},
'Caroline': {'pop': 28545, 'tracts': 7},
'Carroll': {'pop': 30042, 'tracts': 7},
'Charles City': {'pop': 7256, 'tracts': 3},
'Charlotte': {'pop': 12586, 'tracts': 3},
'Charlottesville': {'pop': 43475, 'tracts': 12},
'Chesapeake': {'pop': 222209, 'tracts': 41},
'Chesterfield': {'pop': 316236, 'tracts': 71},
'Clarke': {'pop': 14034, 'tracts': 3},
'Colonial Heights': {'pop': 17411, 'tracts': 5},
'Covington': {'pop': 5961, 'tracts': 2},
'Craig': {'pop': 5190, 'tracts': 1},
'Culpeper': {'pop': 46689, 'tracts': 8},
'Cumberland': {'pop': 10052, 'tracts': 2},
'Danville': {'pop': 43055, 'tracts': 16},
'Dickenson': {'pop': 15903, 'tracts': 4},
'Dinwiddie': {'pop': 28001, 'tracts': 7},
'Emporia': {'pop': 5927, 'tracts': 2},
'Essex': {'pop': 11151, 'tracts': 3},
'Fairfax': {'pop': 1081726, 'tracts': 258},
'Fairfax City': {'pop': 22565, 'tracts': 5},
'Falls Church': {'pop': 12332, 'tracts': 3},
'Fauquier': {'pop': 65203, 'tracts': 17},
'Floyd': {'pop': 15279, 'tracts': 3},
'Fluvanna': {'pop': 25691, 'tracts': 4},
'Franklin': {'pop': 56159, 'tracts': 10},
'Franklin City': {'pop': 8582, 'tracts': 2},
'Frederick': {'pop': 78305, 'tracts': 14},
'Fredericksburg': {'pop': 24286, 'tracts': 6},
'Galax': {'pop': 7042, 'tracts': 2},
'Giles': {'pop': 17286, 'tracts': 4},
'Gloucester': {'pop': 36858, 'tracts': 8},
'Goochland': {'pop': 21717, 'tracts': 5},
'Grayson': {'pop': 15533, 'tracts': 5},
'Greene': {'pop': 18403, 'tracts': 3},
'Greensville': {'pop': 12243, 'tracts': 3},
'Halifax': {'pop': 36241, 'tracts': 9},
'Hampton': {'pop': 137436, 'tracts': 34},
'Hanover': {'pop': 99863, 'tracts': 23},
'Harrisonburg': {'pop': 48914, 'tracts': 11},
'Henrico': {'pop': 306935, 'tracts': 64},
'Henry': {'pop': 54151, 'tracts': 14},
'Highland': {'pop': 2321, 'tracts': 1},
'Hopewell': {'pop': 22591, 'tracts': 7},
'Isle of Wight': {'pop': 35270, 'tracts': 8},
'James City': {'pop': 67009, 'tracts': 11},
'King George': {'pop': 23584, 'tracts': 5},
'King William': {'pop': 15935, 'tracts': 4},
'King and Queen': {'pop': 6945, 'tracts': 2},
'Lancaster': {'pop': 11391, 'tracts': 3},
'Lee': {'pop': 25587, 'tracts': 6},
'Lexington': {'pop': 7042, 'tracts': 1},
'Loudoun': {'pop': 312311, 'tracts': 65},
'Louisa': {'pop': 33153, 'tracts': 6},
'Lunenburg': {'pop': 12914, 'tracts': 3},
'Lynchburg': {'pop': 75568, 'tracts': 19},
'Madison': {'pop': 13308, 'tracts': 2},
'Manassas': {'pop': 37821, 'tracts': 7},
'Manassas Park': {'pop': 14273, 'tracts': 2},
'Martinsville': {'pop': 13821, 'tracts': 5},
'Mathews': {'pop': 8978, 'tracts': 2},
'Mecklenburg': {'pop': 32727, 'tracts': 9},
'Middlesex': {'pop': 10959, 'tracts': 4},
'Montgomery': {'pop': 94392, 'tracts': 16},
'Nelson': {'pop': 15020, 'tracts': 3},
'New Kent': {'pop': 18429, 'tracts': 3},
'Newport News': {'pop': 180719, 'tracts': 44},
'Norfolk': {'pop': 242803, 'tracts': 81},
'Northampton': {'pop': 12389, 'tracts': 4},
'Northumberland': {'pop': 12330, 'tracts': 3},
'Norton': {'pop': 3958, 'tracts': 1},
'Nottoway': {'pop': 15853, 'tracts': 4},
'Orange': {'pop': 33481, 'tracts': 5},
'Page': {'pop': 24042, 'tracts': 5},
'Patrick': {'pop': 18490, 'tracts': 4},
'Petersburg': {'pop': 32420, 'tracts': 11},
'Pittsylvania': {'pop': 63506, 'tracts': 16},
'Poquoson': {'pop': 12150, 'tracts': 3},
'Portsmouth': {'pop': 95535, 'tracts': 31},
'Powhatan': {'pop': 28046, 'tracts': 5},
'Prince Edward': {'pop': 23368, 'tracts': 5},
'Prince George': {'pop': 35725, 'tracts': 7},
'Prince William': {'pop': 402002, 'tracts': 83},
'Pulaski': {'pop': 34872, 'tracts': 10},
'Radford': {'pop': 16408, 'tracts': 3},
'Rappahannock': {'pop': 7373, 'tracts': 2},
'Richmond': {'pop': 9254, 'tracts': 2},
'Richmond City': {'pop': 204214, 'tracts': 66},
'Roanoke': {'pop': 92376, 'tracts': 18},
'Roanoke City': {'pop': 97032, 'tracts': 23},
'Rockbridge': {'pop': 22307, 'tracts': 4},
'Rockingham': {'pop': 76314, 'tracts': 19},
'Russell': {'pop': 28897, 'tracts': 7},
'Salem': {'pop': 24802, 'tracts': 5},
'Scott': {'pop': 23177, 'tracts': 6},
'Shenandoah': {'pop': 41993, 'tracts': 9},
'Smyth': {'pop': 32208, 'tracts': 9},
'Southampton': {'pop': 18570, 'tracts': 5},
'Spotsylvania': {'pop': 122397, 'tracts': 30},
'Stafford': {'pop': 128961, 'tracts': 27},
'Staunton': {'pop': 23746, 'tracts': 6},
'Suffolk': {'pop': 84585, 'tracts': 28},
'Surry': {'pop': 7058, 'tracts': 2},
'Sussex': {'pop': 12087, 'tracts': 5},
'Tazewell': {'pop': 45078, 'tracts': 11},
'Virginia Beach': {'pop': 437994, 'tracts': 100},
'Warren': {'pop': 37575, 'tracts': 8},
'Washington': {'pop': 54876, 'tracts': 13},
'Waynesboro': {'pop': 21006, 'tracts': 5},
'Westmoreland': {'pop': 17454, 'tracts': 4},
'Williamsburg': {'pop': 14068, 'tracts': 3},
'Winchester': {'pop': 26203, 'tracts': 5},
'Wise': {'pop': 41452, 'tracts': 11},
'Wythe': {'pop': 29235, 'tracts': 6},
'York': {'pop': 65464, 'tracts': 14}},
'VT': {'Addison': {'pop': 36821, 'tracts': 10},
'Bennington': {'pop': 37125, 'tracts': 12},
'Caledonia': {'pop': 31227, 'tracts': 10},
'Chittenden': {'pop': 156545, 'tracts': 35},
'Essex': {'pop': 6306, 'tracts': 3},
'Franklin': {'pop': 47746, 'tracts': 10},
'Grand Isle': {'pop': 6970, 'tracts': 2},
'Lamoille': {'pop': 24475, 'tracts': 7},
'Orange': {'pop': 28936, 'tracts': 10},
'Orleans': {'pop': 27231, 'tracts': 10},
'Rutland': {'pop': 61642, 'tracts': 20},
'Washington': {'pop': 59534, 'tracts': 19},
'Windham': {'pop': 44513, 'tracts': 18},
'Windsor': {'pop': 56670, 'tracts': 18}},
'WA': {'Adams': {'pop': 18728, 'tracts': 5},
'Asotin': {'pop': 21623, 'tracts': 6},
'Benton': {'pop': 175177, 'tracts': 37},
'Chelan': {'pop': 72453, 'tracts': 14},
'Clallam': {'pop': 71404, 'tracts': 22},
'Clark': {'pop': 425363, 'tracts': 104},
'Columbia': {'pop': 4078, 'tracts': 1},
'Cowlitz': {'pop': 102410, 'tracts': 24},
'Douglas': {'pop': 38431, 'tracts': 8},
'Ferry': {'pop': 7551, 'tracts': 3},
'Franklin': {'pop': 78163, 'tracts': 13},
'Garfield': {'pop': 2266, 'tracts': 1},
'Grant': {'pop': 89120, 'tracts': 16},
'Grays Harbor': {'pop': 72797, 'tracts': 17},
'Island': {'pop': 78506, 'tracts': 22},
'Jefferson': {'pop': 29872, 'tracts': 7},
'King': {'pop': 1931249, 'tracts': 397},
'Kitsap': {'pop': 251133, 'tracts': 55},
'Kittitas': {'pop': 40915, 'tracts': 8},
'Klickitat': {'pop': 20318, 'tracts': 3},
'Lewis': {'pop': 75455, 'tracts': 20},
'Lincoln': {'pop': 10570, 'tracts': 4},
'Mason': {'pop': 60699, 'tracts': 14},
'Okanogan': {'pop': 41120, 'tracts': 10},
'Pacific': {'pop': 20920, 'tracts': 8},
'Pend Oreille': {'pop': 13001, 'tracts': 5},
'Pierce': {'pop': 795225, 'tracts': 172},
'San Juan': {'pop': 15769, 'tracts': 5},
'Skagit': {'pop': 116901, 'tracts': 30},
'Skamania': {'pop': 11066, 'tracts': 5},
'Snohomish': {'pop': 713335, 'tracts': 151},
'Spokane': {'pop': 471221, 'tracts': 105},
'Stevens': {'pop': 43531, 'tracts': 12},
'Thurston': {'pop': 252264, 'tracts': 49},
'Wahkiakum': {'pop': 3978, 'tracts': 1},
'Walla Walla': {'pop': 58781, 'tracts': 12},
'Whatcom': {'pop': 201140, 'tracts': 34},
'Whitman': {'pop': 44776, 'tracts': 10},
'Yakima': {'pop': 243231, 'tracts': 45}},
'WI': {'Adams': {'pop': 20875, 'tracts': 7},
'Ashland': {'pop': 16157, 'tracts': 7},
'Barron': {'pop': 45870, 'tracts': 10},
'Bayfield': {'pop': 15014, 'tracts': 5},
'Brown': {'pop': 248007, 'tracts': 54},
'Buffalo': {'pop': 13587, 'tracts': 5},
'Burnett': {'pop': 15457, 'tracts': 6},
'Calumet': {'pop': 48971, 'tracts': 11},
'Chippewa': {'pop': 62415, 'tracts': 11},
'Clark': {'pop': 34690, 'tracts': 8},
'Columbia': {'pop': 56833, 'tracts': 12},
'Crawford': {'pop': 16644, 'tracts': 6},
'Dane': {'pop': 488073, 'tracts': 107},
'Dodge': {'pop': 88759, 'tracts': 20},
'Door': {'pop': 27785, 'tracts': 9},
'Douglas': {'pop': 44159, 'tracts': 12},
'Dunn': {'pop': 43857, 'tracts': 8},
'Eau Claire': {'pop': 98736, 'tracts': 20},
'Florence': {'pop': 4423, 'tracts': 2},
'Fond du Lac': {'pop': 101633, 'tracts': 20},
'Forest': {'pop': 9304, 'tracts': 4},
'Grant': {'pop': 51208, 'tracts': 12},
'Green': {'pop': 36842, 'tracts': 8},
'Green Lake': {'pop': 19051, 'tracts': 6},
'Iowa': {'pop': 23687, 'tracts': 6},
'Iron': {'pop': 5916, 'tracts': 3},
'Jackson': {'pop': 20449, 'tracts': 5},
'Jefferson': {'pop': 83686, 'tracts': 20},
'Juneau': {'pop': 26664, 'tracts': 7},
'Kenosha': {'pop': 166426, 'tracts': 35},
'Kewaunee': {'pop': 20574, 'tracts': 4},
'La Crosse': {'pop': 114638, 'tracts': 25},
'Lafayette': {'pop': 16836, 'tracts': 5},
'Langlade': {'pop': 19977, 'tracts': 6},
'Lincoln': {'pop': 28743, 'tracts': 10},
'Manitowoc': {'pop': 81442, 'tracts': 19},
'Marathon': {'pop': 134063, 'tracts': 27},
'Marinette': {'pop': 41749, 'tracts': 12},
'Marquette': {'pop': 15404, 'tracts': 5},
'Menominee': {'pop': 4232, 'tracts': 2},
'Milwaukee': {'pop': 947735, 'tracts': 297},
'Monroe': {'pop': 44673, 'tracts': 9},
'Oconto': {'pop': 37660, 'tracts': 10},
'Oneida': {'pop': 35998, 'tracts': 14},
'Outagamie': {'pop': 176695, 'tracts': 40},
'Ozaukee': {'pop': 86395, 'tracts': 18},
'Pepin': {'pop': 7469, 'tracts': 2},
'Pierce': {'pop': 41019, 'tracts': 8},
'Polk': {'pop': 44205, 'tracts': 10},
'Portage': {'pop': 70019, 'tracts': 14},
'Price': {'pop': 14159, 'tracts': 6},
'Racine': {'pop': 195408, 'tracts': 44},
'Richland': {'pop': 18021, 'tracts': 5},
'Rock': {'pop': 160331, 'tracts': 38},
'Rusk': {'pop': 14755, 'tracts': 5},
'Sauk': {'pop': 61976, 'tracts': 13},
'Sawyer': {'pop': 16557, 'tracts': 6},
'Shawano': {'pop': 41949, 'tracts': 11},
'Sheboygan': {'pop': 115507, 'tracts': 26},
'St. Croix': {'pop': 84345, 'tracts': 14},
'Taylor': {'pop': 20689, 'tracts': 6},
'Trempealeau': {'pop': 28816, 'tracts': 8},
'Vernon': {'pop': 29773, 'tracts': 7},
'Vilas': {'pop': 21430, 'tracts': 5},
'Walworth': {'pop': 102228, 'tracts': 22},
'Washburn': {'pop': 15911, 'tracts': 5},
'Washington': {'pop': 131887, 'tracts': 28},
'Waukesha': {'pop': 389891, 'tracts': 86},
'Waupaca': {'pop': 52410, 'tracts': 12},
'Waushara': {'pop': 24496, 'tracts': 7},
'Winnebago': {'pop': 166994, 'tracts': 41},
'Wood': {'pop': 74749, 'tracts': 17}},
'WV': {'Barbour': {'pop': 16589, 'tracts': 4},
'Berkeley': {'pop': 104169, 'tracts': 14},
'Boone': {'pop': 24629, 'tracts': 8},
'Braxton': {'pop': 14523, 'tracts': 3},
'Brooke': {'pop': 24069, 'tracts': 6},
'Cabell': {'pop': 96319, 'tracts': 29},
'Calhoun': {'pop': 7627, 'tracts': 2},
'Clay': {'pop': 9386, 'tracts': 3},
'Doddridge': {'pop': 8202, 'tracts': 2},
'Fayette': {'pop': 46039, 'tracts': 12},
'Gilmer': {'pop': 8693, 'tracts': 2},
'Grant': {'pop': 11937, 'tracts': 3},
'Greenbrier': {'pop': 35480, 'tracts': 7},
'Hampshire': {'pop': 23964, 'tracts': 5},
'Hancock': {'pop': 30676, 'tracts': 8},
'Hardy': {'pop': 14025, 'tracts': 3},
'Harrison': {'pop': 69099, 'tracts': 22},
'Jackson': {'pop': 29211, 'tracts': 6},
'Jefferson': {'pop': 53498, 'tracts': 15},
'Kanawha': {'pop': 193063, 'tracts': 53},
'Lewis': {'pop': 16372, 'tracts': 5},
'Lincoln': {'pop': 21720, 'tracts': 5},
'Logan': {'pop': 36743, 'tracts': 9},
'Marion': {'pop': 56418, 'tracts': 18},
'Marshall': {'pop': 33107, 'tracts': 9},
'Mason': {'pop': 27324, 'tracts': 6},
'McDowell': {'pop': 22113, 'tracts': 8},
'Mercer': {'pop': 62264, 'tracts': 16},
'Mineral': {'pop': 28212, 'tracts': 7},
'Mingo': {'pop': 26839, 'tracts': 7},
'Monongalia': {'pop': 96189, 'tracts': 24},
'Monroe': {'pop': 13502, 'tracts': 3},
'Morgan': {'pop': 17541, 'tracts': 4},
'Nicholas': {'pop': 26233, 'tracts': 7},
'Ohio': {'pop': 44443, 'tracts': 18},
'Pendleton': {'pop': 7695, 'tracts': 3},
'Pleasants': {'pop': 7605, 'tracts': 2},
'Pocahontas': {'pop': 8719, 'tracts': 4},
'Preston': {'pop': 33520, 'tracts': 8},
'Putnam': {'pop': 55486, 'tracts': 10},
'Raleigh': {'pop': 78859, 'tracts': 17},
'Randolph': {'pop': 29405, 'tracts': 7},
'Ritchie': {'pop': 10449, 'tracts': 3},
'Roane': {'pop': 14926, 'tracts': 4},
'Summers': {'pop': 13927, 'tracts': 4},
'Taylor': {'pop': 16895, 'tracts': 4},
'Tucker': {'pop': 7141, 'tracts': 3},
'Tyler': {'pop': 9208, 'tracts': 3},
'Upshur': {'pop': 24254, 'tracts': 6},
'Wayne': {'pop': 42481, 'tracts': 11},
'Webster': {'pop': 9154, 'tracts': 3},
'Wetzel': {'pop': 16583, 'tracts': 5},
'Wirt': {'pop': 5717, 'tracts': 2},
'Wood': {'pop': 86956, 'tracts': 26},
'Wyoming': {'pop': 23796, 'tracts': 6}},
'WY': {'Albany': {'pop': 36299, 'tracts': 10},
'Big Horn': {'pop': 11668, 'tracts': 3},
'Campbell': {'pop': 46133, 'tracts': 7},
'Carbon': {'pop': 15885, 'tracts': 5},
'Converse': {'pop': 13833, 'tracts': 4},
'Crook': {'pop': 7083, 'tracts': 2},
'Fremont': {'pop': 40123, 'tracts': 10},
'Goshen': {'pop': 13249, 'tracts': 4},
'Hot Springs': {'pop': 4812, 'tracts': 2},
'Johnson': {'pop': 8569, 'tracts': 2},
'Laramie': {'pop': 91738, 'tracts': 21},
'Lincoln': {'pop': 18106, 'tracts': 4},
'Natrona': {'pop': 75450, 'tracts': 18},
'Niobrara': {'pop': 2484, 'tracts': 1},
'Park': {'pop': 28205, 'tracts': 5},
'Platte': {'pop': 8667, 'tracts': 2},
'Sheridan': {'pop': 29116, 'tracts': 6},
'Sublette': {'pop': 10247, 'tracts': 2},
'Sweetwater': {'pop': 43806, 'tracts': 12},
'Teton': {'pop': 21294, 'tracts': 4},
'Uinta': {'pop': 21118, 'tracts': 3},
'Washakie': {'pop': 8533, 'tracts': 3},
'Weston': {'pop': 7208, 'tracts': 2}}} | all_data = {'AK': {'Aleutians East': {'pop': 3141, 'tracts': 1}, 'Aleutians West': {'pop': 5561, 'tracts': 2}, 'Anchorage': {'pop': 291826, 'tracts': 55}, 'Bethel': {'pop': 17013, 'tracts': 3}, 'Bristol Bay': {'pop': 997, 'tracts': 1}, 'Denali': {'pop': 1826, 'tracts': 1}, 'Dillingham': {'pop': 4847, 'tracts': 2}, 'Fairbanks North Star': {'pop': 97581, 'tracts': 19}, 'Haines': {'pop': 2508, 'tracts': 1}, 'Hoonah-Angoon': {'pop': 2150, 'tracts': 2}, 'Juneau': {'pop': 31275, 'tracts': 6}, 'Kenai Peninsula': {'pop': 55400, 'tracts': 13}, 'Ketchikan Gateway': {'pop': 13477, 'tracts': 4}, 'Kodiak Island': {'pop': 13592, 'tracts': 5}, 'Lake and Peninsula': {'pop': 1631, 'tracts': 1}, 'Matanuska-Susitna': {'pop': 88995, 'tracts': 24}, 'Nome': {'pop': 9492, 'tracts': 2}, 'North Slope': {'pop': 9430, 'tracts': 3}, 'Northwest Arctic': {'pop': 7523, 'tracts': 2}, 'Petersburg': {'pop': 3815, 'tracts': 1}, 'Prince of Wales-Hyder': {'pop': 5559, 'tracts': 4}, 'Sitka': {'pop': 8881, 'tracts': 2}, 'Skagway': {'pop': 968, 'tracts': 1}, 'Southeast Fairbanks': {'pop': 7029, 'tracts': 2}, 'Valdez-Cordova': {'pop': 9636, 'tracts': 3}, 'Wade Hampton': {'pop': 7459, 'tracts': 1}, 'Wrangell': {'pop': 2369, 'tracts': 1}, 'Yakutat': {'pop': 662, 'tracts': 1}, 'Yukon-Koyukuk': {'pop': 5588, 'tracts': 4}}, 'AL': {'Autauga': {'pop': 54571, 'tracts': 12}, 'Baldwin': {'pop': 182265, 'tracts': 31}, 'Barbour': {'pop': 27457, 'tracts': 9}, 'Bibb': {'pop': 22915, 'tracts': 4}, 'Blount': {'pop': 57322, 'tracts': 9}, 'Bullock': {'pop': 10914, 'tracts': 3}, 'Butler': {'pop': 20947, 'tracts': 9}, 'Calhoun': {'pop': 118572, 'tracts': 31}, 'Chambers': {'pop': 34215, 'tracts': 9}, 'Cherokee': {'pop': 25989, 'tracts': 6}, 'Chilton': {'pop': 43643, 'tracts': 9}, 'Choctaw': {'pop': 13859, 'tracts': 4}, 'Clarke': {'pop': 25833, 'tracts': 9}, 'Clay': {'pop': 13932, 'tracts': 4}, 'Cleburne': {'pop': 14972, 'tracts': 4}, 'Coffee': {'pop': 49948, 'tracts': 14}, 'Colbert': {'pop': 54428, 'tracts': 14}, 'Conecuh': {'pop': 13228, 'tracts': 5}, 'Coosa': {'pop': 11539, 'tracts': 3}, 'Covington': {'pop': 37765, 'tracts': 14}, 'Crenshaw': {'pop': 13906, 'tracts': 6}, 'Cullman': {'pop': 80406, 'tracts': 18}, 'Dale': {'pop': 50251, 'tracts': 14}, 'Dallas': {'pop': 43820, 'tracts': 15}, 'DeKalb': {'pop': 71109, 'tracts': 14}, 'Elmore': {'pop': 79303, 'tracts': 15}, 'Escambia': {'pop': 38319, 'tracts': 9}, 'Etowah': {'pop': 104430, 'tracts': 30}, 'Fayette': {'pop': 17241, 'tracts': 5}, 'Franklin': {'pop': 31704, 'tracts': 9}, 'Geneva': {'pop': 26790, 'tracts': 6}, 'Greene': {'pop': 9045, 'tracts': 3}, 'Hale': {'pop': 15760, 'tracts': 6}, 'Henry': {'pop': 17302, 'tracts': 6}, 'Houston': {'pop': 101547, 'tracts': 22}, 'Jackson': {'pop': 53227, 'tracts': 11}, 'Jefferson': {'pop': 658466, 'tracts': 163}, 'Lamar': {'pop': 14564, 'tracts': 3}, 'Lauderdale': {'pop': 92709, 'tracts': 22}, 'Lawrence': {'pop': 34339, 'tracts': 9}, 'Lee': {'pop': 140247, 'tracts': 27}, 'Limestone': {'pop': 82782, 'tracts': 16}, 'Lowndes': {'pop': 11299, 'tracts': 4}, 'Macon': {'pop': 21452, 'tracts': 12}, 'Madison': {'pop': 334811, 'tracts': 73}, 'Marengo': {'pop': 21027, 'tracts': 6}, 'Marion': {'pop': 30776, 'tracts': 8}, 'Marshall': {'pop': 93019, 'tracts': 18}, 'Mobile': {'pop': 412992, 'tracts': 114}, 'Monroe': {'pop': 23068, 'tracts': 7}, 'Montgomery': {'pop': 229363, 'tracts': 65}, 'Morgan': {'pop': 119490, 'tracts': 27}, 'Perry': {'pop': 10591, 'tracts': 3}, 'Pickens': {'pop': 19746, 'tracts': 5}, 'Pike': {'pop': 32899, 'tracts': 8}, 'Randolph': {'pop': 22913, 'tracts': 6}, 'Russell': {'pop': 52947, 'tracts': 13}, 'Shelby': {'pop': 195085, 'tracts': 48}, 'St. Clair': {'pop': 83593, 'tracts': 13}, 'Sumter': {'pop': 13763, 'tracts': 4}, 'Talladega': {'pop': 82291, 'tracts': 22}, 'Tallapoosa': {'pop': 41616, 'tracts': 10}, 'Tuscaloosa': {'pop': 194656, 'tracts': 47}, 'Walker': {'pop': 67023, 'tracts': 18}, 'Washington': {'pop': 17581, 'tracts': 5}, 'Wilcox': {'pop': 11670, 'tracts': 4}, 'Winston': {'pop': 24484, 'tracts': 7}}, 'AR': {'Arkansas': {'pop': 19019, 'tracts': 8}, 'Ashley': {'pop': 21853, 'tracts': 7}, 'Baxter': {'pop': 41513, 'tracts': 9}, 'Benton': {'pop': 221339, 'tracts': 49}, 'Boone': {'pop': 36903, 'tracts': 7}, 'Bradley': {'pop': 11508, 'tracts': 5}, 'Calhoun': {'pop': 5368, 'tracts': 2}, 'Carroll': {'pop': 27446, 'tracts': 5}, 'Chicot': {'pop': 11800, 'tracts': 4}, 'Clark': {'pop': 22995, 'tracts': 5}, 'Clay': {'pop': 16083, 'tracts': 6}, 'Cleburne': {'pop': 25970, 'tracts': 7}, 'Cleveland': {'pop': 8689, 'tracts': 2}, 'Columbia': {'pop': 24552, 'tracts': 5}, 'Conway': {'pop': 21273, 'tracts': 6}, 'Craighead': {'pop': 96443, 'tracts': 17}, 'Crawford': {'pop': 61948, 'tracts': 11}, 'Crittenden': {'pop': 50902, 'tracts': 20}, 'Cross': {'pop': 17870, 'tracts': 6}, 'Dallas': {'pop': 8116, 'tracts': 3}, 'Desha': {'pop': 13008, 'tracts': 5}, 'Drew': {'pop': 18509, 'tracts': 5}, 'Faulkner': {'pop': 113237, 'tracts': 25}, 'Franklin': {'pop': 18125, 'tracts': 3}, 'Fulton': {'pop': 12245, 'tracts': 2}, 'Garland': {'pop': 96024, 'tracts': 20}, 'Grant': {'pop': 17853, 'tracts': 4}, 'Greene': {'pop': 42090, 'tracts': 9}, 'Hempstead': {'pop': 22609, 'tracts': 5}, 'Hot Spring': {'pop': 32923, 'tracts': 7}, 'Howard': {'pop': 13789, 'tracts': 3}, 'Independence': {'pop': 36647, 'tracts': 8}, 'Izard': {'pop': 13696, 'tracts': 4}, 'Jackson': {'pop': 17997, 'tracts': 5}, 'Jefferson': {'pop': 77435, 'tracts': 24}, 'Johnson': {'pop': 25540, 'tracts': 6}, 'Lafayette': {'pop': 7645, 'tracts': 2}, 'Lawrence': {'pop': 17415, 'tracts': 6}, 'Lee': {'pop': 10424, 'tracts': 4}, 'Lincoln': {'pop': 14134, 'tracts': 4}, 'Little River': {'pop': 13171, 'tracts': 4}, 'Logan': {'pop': 22353, 'tracts': 6}, 'Lonoke': {'pop': 68356, 'tracts': 16}, 'Madison': {'pop': 15717, 'tracts': 4}, 'Marion': {'pop': 16653, 'tracts': 4}, 'Miller': {'pop': 43462, 'tracts': 12}, 'Mississippi': {'pop': 46480, 'tracts': 12}, 'Monroe': {'pop': 8149, 'tracts': 3}, 'Montgomery': {'pop': 9487, 'tracts': 3}, 'Nevada': {'pop': 8997, 'tracts': 3}, 'Newton': {'pop': 8330, 'tracts': 2}, 'Ouachita': {'pop': 26120, 'tracts': 6}, 'Perry': {'pop': 10445, 'tracts': 3}, 'Phillips': {'pop': 21757, 'tracts': 6}, 'Pike': {'pop': 11291, 'tracts': 3}, 'Poinsett': {'pop': 24583, 'tracts': 7}, 'Polk': {'pop': 20662, 'tracts': 6}, 'Pope': {'pop': 61754, 'tracts': 11}, 'Prairie': {'pop': 8715, 'tracts': 3}, 'Pulaski': {'pop': 382748, 'tracts': 95}, 'Randolph': {'pop': 17969, 'tracts': 4}, 'Saline': {'pop': 107118, 'tracts': 21}, 'Scott': {'pop': 11233, 'tracts': 3}, 'Searcy': {'pop': 8195, 'tracts': 3}, 'Sebastian': {'pop': 125744, 'tracts': 26}, 'Sevier': {'pop': 17058, 'tracts': 4}, 'Sharp': {'pop': 17264, 'tracts': 4}, 'St. Francis': {'pop': 28258, 'tracts': 6}, 'Stone': {'pop': 12394, 'tracts': 3}, 'Union': {'pop': 41639, 'tracts': 10}, 'Van Buren': {'pop': 17295, 'tracts': 5}, 'Washington': {'pop': 203065, 'tracts': 32}, 'White': {'pop': 77076, 'tracts': 13}, 'Woodruff': {'pop': 7260, 'tracts': 2}, 'Yell': {'pop': 22185, 'tracts': 6}}, 'AZ': {'Apache': {'pop': 71518, 'tracts': 16}, 'Cochise': {'pop': 131346, 'tracts': 32}, 'Coconino': {'pop': 134421, 'tracts': 28}, 'Gila': {'pop': 53597, 'tracts': 16}, 'Graham': {'pop': 37220, 'tracts': 9}, 'Greenlee': {'pop': 8437, 'tracts': 3}, 'La Paz': {'pop': 20489, 'tracts': 9}, 'Maricopa': {'pop': 3817117, 'tracts': 916}, 'Mohave': {'pop': 200186, 'tracts': 43}, 'Navajo': {'pop': 107449, 'tracts': 31}, 'Pima': {'pop': 980263, 'tracts': 241}, 'Pinal': {'pop': 375770, 'tracts': 75}, 'Santa Cruz': {'pop': 47420, 'tracts': 10}, 'Yavapai': {'pop': 211033, 'tracts': 42}, 'Yuma': {'pop': 195751, 'tracts': 55}}, 'CA': {'Alameda': {'pop': 1510271, 'tracts': 360}, 'Alpine': {'pop': 1175, 'tracts': 1}, 'Amador': {'pop': 38091, 'tracts': 9}, 'Butte': {'pop': 220000, 'tracts': 51}, 'Calaveras': {'pop': 45578, 'tracts': 10}, 'Colusa': {'pop': 21419, 'tracts': 5}, 'Contra Costa': {'pop': 1049025, 'tracts': 208}, 'Del Norte': {'pop': 28610, 'tracts': 7}, 'El Dorado': {'pop': 181058, 'tracts': 43}, 'Fresno': {'pop': 930450, 'tracts': 199}, 'Glenn': {'pop': 28122, 'tracts': 6}, 'Humboldt': {'pop': 134623, 'tracts': 30}, 'Imperial': {'pop': 174528, 'tracts': 31}, 'Inyo': {'pop': 18546, 'tracts': 6}, 'Kern': {'pop': 839631, 'tracts': 151}, 'Kings': {'pop': 152982, 'tracts': 27}, 'Lake': {'pop': 64665, 'tracts': 15}, 'Lassen': {'pop': 34895, 'tracts': 9}, 'Los Angeles': {'pop': 9818605, 'tracts': 2343}, 'Madera': {'pop': 150865, 'tracts': 23}, 'Marin': {'pop': 252409, 'tracts': 55}, 'Mariposa': {'pop': 18251, 'tracts': 6}, 'Mendocino': {'pop': 87841, 'tracts': 20}, 'Merced': {'pop': 255793, 'tracts': 49}, 'Modoc': {'pop': 9686, 'tracts': 4}, 'Mono': {'pop': 14202, 'tracts': 3}, 'Monterey': {'pop': 415057, 'tracts': 93}, 'Napa': {'pop': 136484, 'tracts': 40}, 'Nevada': {'pop': 98764, 'tracts': 20}, 'Orange': {'pop': 3010232, 'tracts': 583}, 'Placer': {'pop': 348432, 'tracts': 85}, 'Plumas': {'pop': 20007, 'tracts': 7}, 'Riverside': {'pop': 2189641, 'tracts': 453}, 'Sacramento': {'pop': 1418788, 'tracts': 317}, 'San Benito': {'pop': 55269, 'tracts': 11}, 'San Bernardino': {'pop': 2035210, 'tracts': 369}, 'San Diego': {'pop': 3095313, 'tracts': 628}, 'San Francisco': {'pop': 805235, 'tracts': 196}, 'San Joaquin': {'pop': 685306, 'tracts': 139}, 'San Luis Obispo': {'pop': 269637, 'tracts': 53}, 'San Mateo': {'pop': 718451, 'tracts': 158}, 'Santa Barbara': {'pop': 423895, 'tracts': 90}, 'Santa Clara': {'pop': 1781642, 'tracts': 372}, 'Santa Cruz': {'pop': 262382, 'tracts': 52}, 'Shasta': {'pop': 177223, 'tracts': 48}, 'Sierra': {'pop': 3240, 'tracts': 1}, 'Siskiyou': {'pop': 44900, 'tracts': 14}, 'Solano': {'pop': 413344, 'tracts': 96}, 'Sonoma': {'pop': 483878, 'tracts': 99}, 'Stanislaus': {'pop': 514453, 'tracts': 94}, 'Sutter': {'pop': 94737, 'tracts': 21}, 'Tehama': {'pop': 63463, 'tracts': 11}, 'Trinity': {'pop': 13786, 'tracts': 5}, 'Tulare': {'pop': 442179, 'tracts': 78}, 'Tuolumne': {'pop': 55365, 'tracts': 11}, 'Ventura': {'pop': 823318, 'tracts': 174}, 'Yolo': {'pop': 200849, 'tracts': 41}, 'Yuba': {'pop': 72155, 'tracts': 14}}, 'CO': {'Adams': {'pop': 441603, 'tracts': 97}, 'Alamosa': {'pop': 15445, 'tracts': 4}, 'Arapahoe': {'pop': 572003, 'tracts': 147}, 'Archuleta': {'pop': 12084, 'tracts': 4}, 'Baca': {'pop': 3788, 'tracts': 2}, 'Bent': {'pop': 6499, 'tracts': 1}, 'Boulder': {'pop': 294567, 'tracts': 68}, 'Broomfield': {'pop': 55889, 'tracts': 18}, 'Chaffee': {'pop': 17809, 'tracts': 5}, 'Cheyenne': {'pop': 1836, 'tracts': 1}, 'Clear Creek': {'pop': 9088, 'tracts': 3}, 'Conejos': {'pop': 8256, 'tracts': 2}, 'Costilla': {'pop': 3524, 'tracts': 2}, 'Crowley': {'pop': 5823, 'tracts': 1}, 'Custer': {'pop': 4255, 'tracts': 1}, 'Delta': {'pop': 30952, 'tracts': 7}, 'Denver': {'pop': 600158, 'tracts': 144}, 'Dolores': {'pop': 2064, 'tracts': 1}, 'Douglas': {'pop': 285465, 'tracts': 61}, 'Eagle': {'pop': 52197, 'tracts': 14}, 'El Paso': {'pop': 622263, 'tracts': 130}, 'Elbert': {'pop': 23086, 'tracts': 7}, 'Fremont': {'pop': 46824, 'tracts': 14}, 'Garfield': {'pop': 56389, 'tracts': 11}, 'Gilpin': {'pop': 5441, 'tracts': 1}, 'Grand': {'pop': 14843, 'tracts': 3}, 'Gunnison': {'pop': 15324, 'tracts': 4}, 'Hinsdale': {'pop': 843, 'tracts': 1}, 'Huerfano': {'pop': 6711, 'tracts': 2}, 'Jackson': {'pop': 1394, 'tracts': 1}, 'Jefferson': {'pop': 534543, 'tracts': 138}, 'Kiowa': {'pop': 1398, 'tracts': 1}, 'Kit Carson': {'pop': 8270, 'tracts': 3}, 'La Plata': {'pop': 51334, 'tracts': 10}, 'Lake': {'pop': 7310, 'tracts': 2}, 'Larimer': {'pop': 299630, 'tracts': 73}, 'Las Animas': {'pop': 15507, 'tracts': 6}, 'Lincoln': {'pop': 5467, 'tracts': 2}, 'Logan': {'pop': 22709, 'tracts': 6}, 'Mesa': {'pop': 146723, 'tracts': 29}, 'Mineral': {'pop': 712, 'tracts': 1}, 'Moffat': {'pop': 13795, 'tracts': 4}, 'Montezuma': {'pop': 25535, 'tracts': 7}, 'Montrose': {'pop': 41276, 'tracts': 10}, 'Morgan': {'pop': 28159, 'tracts': 8}, 'Otero': {'pop': 18831, 'tracts': 7}, 'Ouray': {'pop': 4436, 'tracts': 1}, 'Park': {'pop': 16206, 'tracts': 5}, 'Phillips': {'pop': 4442, 'tracts': 2}, 'Pitkin': {'pop': 17148, 'tracts': 4}, 'Prowers': {'pop': 12551, 'tracts': 5}, 'Pueblo': {'pop': 159063, 'tracts': 55}, 'Rio Blanco': {'pop': 6666, 'tracts': 2}, 'Rio Grande': {'pop': 11982, 'tracts': 3}, 'Routt': {'pop': 23509, 'tracts': 8}, 'Saguache': {'pop': 6108, 'tracts': 2}, 'San Juan': {'pop': 699, 'tracts': 1}, 'San Miguel': {'pop': 7359, 'tracts': 4}, 'Sedgwick': {'pop': 2379, 'tracts': 1}, 'Summit': {'pop': 27994, 'tracts': 5}, 'Teller': {'pop': 23350, 'tracts': 6}, 'Washington': {'pop': 4814, 'tracts': 2}, 'Weld': {'pop': 252825, 'tracts': 77}, 'Yuma': {'pop': 10043, 'tracts': 2}}, 'CT': {'Fairfield': {'pop': 916829, 'tracts': 211}, 'Hartford': {'pop': 894014, 'tracts': 224}, 'Litchfield': {'pop': 189927, 'tracts': 51}, 'Middlesex': {'pop': 165676, 'tracts': 36}, 'New Haven': {'pop': 862477, 'tracts': 190}, 'New London': {'pop': 274055, 'tracts': 66}, 'Tolland': {'pop': 152691, 'tracts': 29}, 'Windham': {'pop': 118428, 'tracts': 25}}, 'DC': {'District of Columbia': {'pop': 601723, 'tracts': 179}}, 'DE': {'Kent': {'pop': 162310, 'tracts': 33}, 'New Castle': {'pop': 538479, 'tracts': 131}, 'Sussex': {'pop': 197145, 'tracts': 54}}, 'FL': {'Alachua': {'pop': 247336, 'tracts': 56}, 'Baker': {'pop': 27115, 'tracts': 4}, 'Bay': {'pop': 168852, 'tracts': 44}, 'Bradford': {'pop': 28520, 'tracts': 4}, 'Brevard': {'pop': 543376, 'tracts': 113}, 'Broward': {'pop': 1748066, 'tracts': 361}, 'Calhoun': {'pop': 14625, 'tracts': 3}, 'Charlotte': {'pop': 159978, 'tracts': 39}, 'Citrus': {'pop': 141236, 'tracts': 27}, 'Clay': {'pop': 190865, 'tracts': 30}, 'Collier': {'pop': 321520, 'tracts': 73}, 'Columbia': {'pop': 67531, 'tracts': 12}, 'DeSoto': {'pop': 34862, 'tracts': 9}, 'Dixie': {'pop': 16422, 'tracts': 3}, 'Duval': {'pop': 864263, 'tracts': 173}, 'Escambia': {'pop': 297619, 'tracts': 71}, 'Flagler': {'pop': 95696, 'tracts': 20}, 'Franklin': {'pop': 11549, 'tracts': 4}, 'Gadsden': {'pop': 46389, 'tracts': 9}, 'Gilchrist': {'pop': 16939, 'tracts': 5}, 'Glades': {'pop': 12884, 'tracts': 4}, 'Gulf': {'pop': 15863, 'tracts': 3}, 'Hamilton': {'pop': 14799, 'tracts': 3}, 'Hardee': {'pop': 27731, 'tracts': 6}, 'Hendry': {'pop': 39140, 'tracts': 7}, 'Hernando': {'pop': 172778, 'tracts': 45}, 'Highlands': {'pop': 98786, 'tracts': 27}, 'Hillsborough': {'pop': 1229226, 'tracts': 321}, 'Holmes': {'pop': 19927, 'tracts': 4}, 'Indian River': {'pop': 138028, 'tracts': 30}, 'Jackson': {'pop': 49746, 'tracts': 11}, 'Jefferson': {'pop': 14761, 'tracts': 3}, 'Lafayette': {'pop': 8870, 'tracts': 2}, 'Lake': {'pop': 297052, 'tracts': 56}, 'Lee': {'pop': 618754, 'tracts': 166}, 'Leon': {'pop': 275487, 'tracts': 68}, 'Levy': {'pop': 40801, 'tracts': 9}, 'Liberty': {'pop': 8365, 'tracts': 2}, 'Madison': {'pop': 19224, 'tracts': 5}, 'Manatee': {'pop': 322833, 'tracts': 78}, 'Marion': {'pop': 331298, 'tracts': 63}, 'Martin': {'pop': 146318, 'tracts': 35}, 'Miami-Dade': {'pop': 2496435, 'tracts': 519}, 'Monroe': {'pop': 73090, 'tracts': 30}, 'Nassau': {'pop': 73314, 'tracts': 12}, 'Okaloosa': {'pop': 180822, 'tracts': 41}, 'Okeechobee': {'pop': 39996, 'tracts': 12}, 'Orange': {'pop': 1145956, 'tracts': 207}, 'Osceola': {'pop': 268685, 'tracts': 41}, 'Palm Beach': {'pop': 1320134, 'tracts': 337}, 'Pasco': {'pop': 464697, 'tracts': 134}, 'Pinellas': {'pop': 916542, 'tracts': 245}, 'Polk': {'pop': 602095, 'tracts': 154}, 'Putnam': {'pop': 74364, 'tracts': 17}, 'Santa Rosa': {'pop': 151372, 'tracts': 25}, 'Sarasota': {'pop': 379448, 'tracts': 94}, 'Seminole': {'pop': 422718, 'tracts': 86}, 'St. Johns': {'pop': 190039, 'tracts': 40}, 'St. Lucie': {'pop': 277789, 'tracts': 44}, 'Sumter': {'pop': 93420, 'tracts': 19}, 'Suwannee': {'pop': 41551, 'tracts': 7}, 'Taylor': {'pop': 22570, 'tracts': 4}, 'Union': {'pop': 15535, 'tracts': 3}, 'Volusia': {'pop': 494593, 'tracts': 113}, 'Wakulla': {'pop': 30776, 'tracts': 4}, 'Walton': {'pop': 55043, 'tracts': 11}, 'Washington': {'pop': 24896, 'tracts': 7}}, 'GA': {'Appling': {'pop': 18236, 'tracts': 5}, 'Atkinson': {'pop': 8375, 'tracts': 3}, 'Bacon': {'pop': 11096, 'tracts': 3}, 'Baker': {'pop': 3451, 'tracts': 2}, 'Baldwin': {'pop': 45720, 'tracts': 9}, 'Banks': {'pop': 18395, 'tracts': 4}, 'Barrow': {'pop': 69367, 'tracts': 18}, 'Bartow': {'pop': 100157, 'tracts': 15}, 'Ben Hill': {'pop': 17634, 'tracts': 5}, 'Berrien': {'pop': 19286, 'tracts': 6}, 'Bibb': {'pop': 155547, 'tracts': 44}, 'Bleckley': {'pop': 13063, 'tracts': 3}, 'Brantley': {'pop': 18411, 'tracts': 3}, 'Brooks': {'pop': 16243, 'tracts': 5}, 'Bryan': {'pop': 30233, 'tracts': 7}, 'Bulloch': {'pop': 70217, 'tracts': 12}, 'Burke': {'pop': 23316, 'tracts': 6}, 'Butts': {'pop': 23655, 'tracts': 3}, 'Calhoun': {'pop': 6694, 'tracts': 2}, 'Camden': {'pop': 50513, 'tracts': 10}, 'Candler': {'pop': 10998, 'tracts': 3}, 'Carroll': {'pop': 110527, 'tracts': 17}, 'Catoosa': {'pop': 63942, 'tracts': 11}, 'Charlton': {'pop': 12171, 'tracts': 2}, 'Chatham': {'pop': 265128, 'tracts': 72}, 'Chattahoochee': {'pop': 11267, 'tracts': 5}, 'Chattooga': {'pop': 26015, 'tracts': 6}, 'Cherokee': {'pop': 214346, 'tracts': 26}, 'Clarke': {'pop': 116714, 'tracts': 30}, 'Clay': {'pop': 3183, 'tracts': 1}, 'Clayton': {'pop': 259424, 'tracts': 50}, 'Clinch': {'pop': 6798, 'tracts': 2}, 'Cobb': {'pop': 688078, 'tracts': 120}, 'Coffee': {'pop': 42356, 'tracts': 9}, 'Colquitt': {'pop': 45498, 'tracts': 10}, 'Columbia': {'pop': 124053, 'tracts': 20}, 'Cook': {'pop': 17212, 'tracts': 4}, 'Coweta': {'pop': 127317, 'tracts': 20}, 'Crawford': {'pop': 12630, 'tracts': 3}, 'Crisp': {'pop': 23439, 'tracts': 6}, 'Dade': {'pop': 16633, 'tracts': 4}, 'Dawson': {'pop': 22330, 'tracts': 3}, 'DeKalb': {'pop': 691893, 'tracts': 145}, 'Decatur': {'pop': 27842, 'tracts': 7}, 'Dodge': {'pop': 21796, 'tracts': 6}, 'Dooly': {'pop': 14918, 'tracts': 3}, 'Dougherty': {'pop': 94565, 'tracts': 27}, 'Douglas': {'pop': 132403, 'tracts': 20}, 'Early': {'pop': 11008, 'tracts': 5}, 'Echols': {'pop': 4034, 'tracts': 2}, 'Effingham': {'pop': 52250, 'tracts': 10}, 'Elbert': {'pop': 20166, 'tracts': 5}, 'Emanuel': {'pop': 22598, 'tracts': 6}, 'Evans': {'pop': 11000, 'tracts': 3}, 'Fannin': {'pop': 23682, 'tracts': 5}, 'Fayette': {'pop': 106567, 'tracts': 20}, 'Floyd': {'pop': 96317, 'tracts': 20}, 'Forsyth': {'pop': 175511, 'tracts': 45}, 'Franklin': {'pop': 22084, 'tracts': 5}, 'Fulton': {'pop': 920581, 'tracts': 204}, 'Gilmer': {'pop': 28292, 'tracts': 5}, 'Glascock': {'pop': 3082, 'tracts': 1}, 'Glynn': {'pop': 79626, 'tracts': 15}, 'Gordon': {'pop': 55186, 'tracts': 9}, 'Grady': {'pop': 25011, 'tracts': 6}, 'Greene': {'pop': 15994, 'tracts': 7}, 'Gwinnett': {'pop': 805321, 'tracts': 113}, 'Habersham': {'pop': 43041, 'tracts': 8}, 'Hall': {'pop': 179684, 'tracts': 36}, 'Hancock': {'pop': 9429, 'tracts': 2}, 'Haralson': {'pop': 28780, 'tracts': 5}, 'Harris': {'pop': 32024, 'tracts': 5}, 'Hart': {'pop': 25213, 'tracts': 5}, 'Heard': {'pop': 11834, 'tracts': 3}, 'Henry': {'pop': 203922, 'tracts': 25}, 'Houston': {'pop': 139900, 'tracts': 23}, 'Irwin': {'pop': 9538, 'tracts': 2}, 'Jackson': {'pop': 60485, 'tracts': 11}, 'Jasper': {'pop': 13900, 'tracts': 3}, 'Jeff Davis': {'pop': 15068, 'tracts': 3}, 'Jefferson': {'pop': 16930, 'tracts': 4}, 'Jenkins': {'pop': 8340, 'tracts': 2}, 'Johnson': {'pop': 9980, 'tracts': 3}, 'Jones': {'pop': 28669, 'tracts': 6}, 'Lamar': {'pop': 18317, 'tracts': 3}, 'Lanier': {'pop': 10078, 'tracts': 2}, 'Laurens': {'pop': 48434, 'tracts': 13}, 'Lee': {'pop': 28298, 'tracts': 5}, 'Liberty': {'pop': 63453, 'tracts': 14}, 'Lincoln': {'pop': 7996, 'tracts': 2}, 'Long': {'pop': 14464, 'tracts': 3}, 'Lowndes': {'pop': 109233, 'tracts': 25}, 'Lumpkin': {'pop': 29966, 'tracts': 4}, 'Macon': {'pop': 14740, 'tracts': 4}, 'Madison': {'pop': 28120, 'tracts': 6}, 'Marion': {'pop': 8742, 'tracts': 2}, 'McDuffie': {'pop': 21875, 'tracts': 5}, 'McIntosh': {'pop': 14333, 'tracts': 4}, 'Meriwether': {'pop': 21992, 'tracts': 4}, 'Miller': {'pop': 6125, 'tracts': 3}, 'Mitchell': {'pop': 23498, 'tracts': 5}, 'Monroe': {'pop': 26424, 'tracts': 5}, 'Montgomery': {'pop': 9123, 'tracts': 3}, 'Morgan': {'pop': 17868, 'tracts': 5}, 'Murray': {'pop': 39628, 'tracts': 8}, 'Muscogee': {'pop': 189885, 'tracts': 53}, 'Newton': {'pop': 99958, 'tracts': 13}, 'Oconee': {'pop': 32808, 'tracts': 6}, 'Oglethorpe': {'pop': 14899, 'tracts': 4}, 'Paulding': {'pop': 142324, 'tracts': 19}, 'Peach': {'pop': 27695, 'tracts': 6}, 'Pickens': {'pop': 29431, 'tracts': 6}, 'Pierce': {'pop': 18758, 'tracts': 4}, 'Pike': {'pop': 17869, 'tracts': 4}, 'Polk': {'pop': 41475, 'tracts': 7}, 'Pulaski': {'pop': 12010, 'tracts': 3}, 'Putnam': {'pop': 21218, 'tracts': 5}, 'Quitman': {'pop': 2513, 'tracts': 1}, 'Rabun': {'pop': 16276, 'tracts': 5}, 'Randolph': {'pop': 7719, 'tracts': 2}, 'Richmond': {'pop': 200549, 'tracts': 47}, 'Rockdale': {'pop': 85215, 'tracts': 15}, 'Schley': {'pop': 5010, 'tracts': 2}, 'Screven': {'pop': 14593, 'tracts': 5}, 'Seminole': {'pop': 8729, 'tracts': 3}, 'Spalding': {'pop': 64073, 'tracts': 12}, 'Stephens': {'pop': 26175, 'tracts': 5}, 'Stewart': {'pop': 6058, 'tracts': 2}, 'Sumter': {'pop': 32819, 'tracts': 8}, 'Talbot': {'pop': 6865, 'tracts': 3}, 'Taliaferro': {'pop': 1717, 'tracts': 1}, 'Tattnall': {'pop': 25520, 'tracts': 5}, 'Taylor': {'pop': 8906, 'tracts': 3}, 'Telfair': {'pop': 16500, 'tracts': 3}, 'Terrell': {'pop': 9315, 'tracts': 4}, 'Thomas': {'pop': 44720, 'tracts': 11}, 'Tift': {'pop': 40118, 'tracts': 9}, 'Toombs': {'pop': 27223, 'tracts': 6}, 'Towns': {'pop': 10471, 'tracts': 3}, 'Treutlen': {'pop': 6885, 'tracts': 2}, 'Troup': {'pop': 67044, 'tracts': 14}, 'Turner': {'pop': 8930, 'tracts': 2}, 'Twiggs': {'pop': 9023, 'tracts': 2}, 'Union': {'pop': 21356, 'tracts': 6}, 'Upson': {'pop': 27153, 'tracts': 7}, 'Walker': {'pop': 68756, 'tracts': 13}, 'Walton': {'pop': 83768, 'tracts': 15}, 'Ware': {'pop': 36312, 'tracts': 9}, 'Warren': {'pop': 5834, 'tracts': 2}, 'Washington': {'pop': 21187, 'tracts': 5}, 'Wayne': {'pop': 30099, 'tracts': 6}, 'Webster': {'pop': 2799, 'tracts': 2}, 'Wheeler': {'pop': 7421, 'tracts': 2}, 'White': {'pop': 27144, 'tracts': 5}, 'Whitfield': {'pop': 102599, 'tracts': 18}, 'Wilcox': {'pop': 9255, 'tracts': 4}, 'Wilkes': {'pop': 10593, 'tracts': 4}, 'Wilkinson': {'pop': 9563, 'tracts': 3}, 'Worth': {'pop': 21679, 'tracts': 5}}, 'HI': {'Hawaii': {'pop': 185079, 'tracts': 34}, 'Honolulu': {'pop': 953207, 'tracts': 244}, 'Kalawao': {'pop': 90, 'tracts': 1}, 'Kauai': {'pop': 67091, 'tracts': 16}, 'Maui': {'pop': 154834, 'tracts': 37}}, 'IA': {'Adair': {'pop': 7682, 'tracts': 3}, 'Adams': {'pop': 4029, 'tracts': 2}, 'Allamakee': {'pop': 14330, 'tracts': 5}, 'Appanoose': {'pop': 12887, 'tracts': 5}, 'Audubon': {'pop': 6119, 'tracts': 3}, 'Benton': {'pop': 26076, 'tracts': 7}, 'Black Hawk': {'pop': 131090, 'tracts': 38}, 'Boone': {'pop': 26306, 'tracts': 7}, 'Bremer': {'pop': 24276, 'tracts': 8}, 'Buchanan': {'pop': 20958, 'tracts': 6}, 'Buena Vista': {'pop': 20260, 'tracts': 6}, 'Butler': {'pop': 14867, 'tracts': 5}, 'Calhoun': {'pop': 9670, 'tracts': 4}, 'Carroll': {'pop': 20816, 'tracts': 6}, 'Cass': {'pop': 13956, 'tracts': 5}, 'Cedar': {'pop': 18499, 'tracts': 5}, 'Cerro Gordo': {'pop': 44151, 'tracts': 11}, 'Cherokee': {'pop': 12072, 'tracts': 4}, 'Chickasaw': {'pop': 12439, 'tracts': 4}, 'Clarke': {'pop': 9286, 'tracts': 3}, 'Clay': {'pop': 16667, 'tracts': 4}, 'Clayton': {'pop': 18129, 'tracts': 6}, 'Clinton': {'pop': 49116, 'tracts': 12}, 'Crawford': {'pop': 17096, 'tracts': 5}, 'Dallas': {'pop': 66135, 'tracts': 15}, 'Davis': {'pop': 8753, 'tracts': 2}, 'Decatur': {'pop': 8457, 'tracts': 3}, 'Delaware': {'pop': 17764, 'tracts': 4}, 'Des Moines': {'pop': 40325, 'tracts': 11}, 'Dickinson': {'pop': 16667, 'tracts': 5}, 'Dubuque': {'pop': 93653, 'tracts': 26}, 'Emmet': {'pop': 10302, 'tracts': 4}, 'Fayette': {'pop': 20880, 'tracts': 7}, 'Floyd': {'pop': 16303, 'tracts': 5}, 'Franklin': {'pop': 10680, 'tracts': 3}, 'Fremont': {'pop': 7441, 'tracts': 3}, 'Greene': {'pop': 9336, 'tracts': 4}, 'Grundy': {'pop': 12453, 'tracts': 4}, 'Guthrie': {'pop': 10954, 'tracts': 3}, 'Hamilton': {'pop': 15673, 'tracts': 5}, 'Hancock': {'pop': 11341, 'tracts': 4}, 'Hardin': {'pop': 17534, 'tracts': 6}, 'Harrison': {'pop': 14928, 'tracts': 5}, 'Henry': {'pop': 20145, 'tracts': 5}, 'Howard': {'pop': 9566, 'tracts': 3}, 'Humboldt': {'pop': 9815, 'tracts': 4}, 'Ida': {'pop': 7089, 'tracts': 3}, 'Iowa': {'pop': 16355, 'tracts': 4}, 'Jackson': {'pop': 19848, 'tracts': 6}, 'Jasper': {'pop': 36842, 'tracts': 9}, 'Jefferson': {'pop': 16843, 'tracts': 4}, 'Johnson': {'pop': 130882, 'tracts': 24}, 'Jones': {'pop': 20638, 'tracts': 5}, 'Keokuk': {'pop': 10511, 'tracts': 4}, 'Kossuth': {'pop': 15543, 'tracts': 6}, 'Lee': {'pop': 35862, 'tracts': 11}, 'Linn': {'pop': 211226, 'tracts': 45}, 'Louisa': {'pop': 11387, 'tracts': 3}, 'Lucas': {'pop': 8898, 'tracts': 4}, 'Lyon': {'pop': 11581, 'tracts': 3}, 'Madison': {'pop': 15679, 'tracts': 3}, 'Mahaska': {'pop': 22381, 'tracts': 7}, 'Marion': {'pop': 33309, 'tracts': 8}, 'Marshall': {'pop': 40648, 'tracts': 10}, 'Mills': {'pop': 15059, 'tracts': 5}, 'Mitchell': {'pop': 10776, 'tracts': 3}, 'Monona': {'pop': 9243, 'tracts': 4}, 'Monroe': {'pop': 7970, 'tracts': 3}, 'Montgomery': {'pop': 10740, 'tracts': 4}, 'Muscatine': {'pop': 42745, 'tracts': 10}, "O'Brien": {'pop': 14398, 'tracts': 4}, 'Osceola': {'pop': 6462, 'tracts': 2}, 'Page': {'pop': 15932, 'tracts': 6}, 'Palo Alto': {'pop': 9421, 'tracts': 4}, 'Plymouth': {'pop': 24986, 'tracts': 6}, 'Pocahontas': {'pop': 7310, 'tracts': 3}, 'Polk': {'pop': 430640, 'tracts': 98}, 'Pottawattamie': {'pop': 93158, 'tracts': 30}, 'Poweshiek': {'pop': 18914, 'tracts': 5}, 'Ringgold': {'pop': 5131, 'tracts': 2}, 'Sac': {'pop': 10350, 'tracts': 4}, 'Scott': {'pop': 165224, 'tracts': 47}, 'Shelby': {'pop': 12167, 'tracts': 4}, 'Sioux': {'pop': 33704, 'tracts': 7}, 'Story': {'pop': 89542, 'tracts': 20}, 'Tama': {'pop': 17767, 'tracts': 6}, 'Taylor': {'pop': 6317, 'tracts': 3}, 'Union': {'pop': 12534, 'tracts': 4}, 'Van Buren': {'pop': 7570, 'tracts': 2}, 'Wapello': {'pop': 35625, 'tracts': 11}, 'Warren': {'pop': 46225, 'tracts': 12}, 'Washington': {'pop': 21704, 'tracts': 5}, 'Wayne': {'pop': 6403, 'tracts': 3}, 'Webster': {'pop': 38013, 'tracts': 12}, 'Winnebago': {'pop': 10866, 'tracts': 3}, 'Winneshiek': {'pop': 21056, 'tracts': 5}, 'Woodbury': {'pop': 102172, 'tracts': 26}, 'Worth': {'pop': 7598, 'tracts': 3}, 'Wright': {'pop': 13229, 'tracts': 5}}, 'ID': {'Ada': {'pop': 392365, 'tracts': 59}, 'Adams': {'pop': 3976, 'tracts': 2}, 'Bannock': {'pop': 82839, 'tracts': 22}, 'Bear Lake': {'pop': 5986, 'tracts': 2}, 'Benewah': {'pop': 9285, 'tracts': 2}, 'Bingham': {'pop': 45607, 'tracts': 8}, 'Blaine': {'pop': 21376, 'tracts': 4}, 'Boise': {'pop': 7028, 'tracts': 1}, 'Bonner': {'pop': 40877, 'tracts': 9}, 'Bonneville': {'pop': 104234, 'tracts': 21}, 'Boundary': {'pop': 10972, 'tracts': 2}, 'Butte': {'pop': 2891, 'tracts': 1}, 'Camas': {'pop': 1117, 'tracts': 1}, 'Canyon': {'pop': 188923, 'tracts': 29}, 'Caribou': {'pop': 6963, 'tracts': 2}, 'Cassia': {'pop': 22952, 'tracts': 6}, 'Clark': {'pop': 982, 'tracts': 1}, 'Clearwater': {'pop': 8761, 'tracts': 2}, 'Custer': {'pop': 4368, 'tracts': 1}, 'Elmore': {'pop': 27038, 'tracts': 5}, 'Franklin': {'pop': 12786, 'tracts': 2}, 'Fremont': {'pop': 13242, 'tracts': 3}, 'Gem': {'pop': 16719, 'tracts': 3}, 'Gooding': {'pop': 15464, 'tracts': 2}, 'Idaho': {'pop': 16267, 'tracts': 5}, 'Jefferson': {'pop': 26140, 'tracts': 4}, 'Jerome': {'pop': 22374, 'tracts': 5}, 'Kootenai': {'pop': 138494, 'tracts': 25}, 'Latah': {'pop': 37244, 'tracts': 7}, 'Lemhi': {'pop': 7936, 'tracts': 3}, 'Lewis': {'pop': 3821, 'tracts': 3}, 'Lincoln': {'pop': 5208, 'tracts': 1}, 'Madison': {'pop': 37536, 'tracts': 6}, 'Minidoka': {'pop': 20069, 'tracts': 5}, 'Nez Perce': {'pop': 39265, 'tracts': 10}, 'Oneida': {'pop': 4286, 'tracts': 1}, 'Owyhee': {'pop': 11526, 'tracts': 3}, 'Payette': {'pop': 22623, 'tracts': 4}, 'Power': {'pop': 7817, 'tracts': 2}, 'Shoshone': {'pop': 12765, 'tracts': 3}, 'Teton': {'pop': 10170, 'tracts': 1}, 'Twin Falls': {'pop': 77230, 'tracts': 14}, 'Valley': {'pop': 9862, 'tracts': 3}, 'Washington': {'pop': 10198, 'tracts': 3}}, 'IL': {'Adams': {'pop': 67103, 'tracts': 18}, 'Alexander': {'pop': 8238, 'tracts': 4}, 'Bond': {'pop': 17768, 'tracts': 4}, 'Boone': {'pop': 54165, 'tracts': 7}, 'Brown': {'pop': 6937, 'tracts': 2}, 'Bureau': {'pop': 34978, 'tracts': 10}, 'Calhoun': {'pop': 5089, 'tracts': 2}, 'Carroll': {'pop': 15387, 'tracts': 6}, 'Cass': {'pop': 13642, 'tracts': 5}, 'Champaign': {'pop': 201081, 'tracts': 43}, 'Christian': {'pop': 34800, 'tracts': 10}, 'Clark': {'pop': 16335, 'tracts': 4}, 'Clay': {'pop': 13815, 'tracts': 4}, 'Clinton': {'pop': 37762, 'tracts': 8}, 'Coles': {'pop': 53873, 'tracts': 12}, 'Cook': {'pop': 5194675, 'tracts': 1318}, 'Crawford': {'pop': 19817, 'tracts': 6}, 'Cumberland': {'pop': 11048, 'tracts': 3}, 'De Witt': {'pop': 16561, 'tracts': 5}, 'DeKalb': {'pop': 105160, 'tracts': 21}, 'Douglas': {'pop': 19980, 'tracts': 5}, 'DuPage': {'pop': 916924, 'tracts': 216}, 'Edgar': {'pop': 18576, 'tracts': 5}, 'Edwards': {'pop': 6721, 'tracts': 3}, 'Effingham': {'pop': 34242, 'tracts': 8}, 'Fayette': {'pop': 22140, 'tracts': 7}, 'Ford': {'pop': 14081, 'tracts': 5}, 'Franklin': {'pop': 39561, 'tracts': 12}, 'Fulton': {'pop': 37069, 'tracts': 12}, 'Gallatin': {'pop': 5589, 'tracts': 2}, 'Greene': {'pop': 13886, 'tracts': 5}, 'Grundy': {'pop': 50063, 'tracts': 10}, 'Hamilton': {'pop': 8457, 'tracts': 3}, 'Hancock': {'pop': 19104, 'tracts': 7}, 'Hardin': {'pop': 4320, 'tracts': 2}, 'Henderson': {'pop': 7331, 'tracts': 3}, 'Henry': {'pop': 50486, 'tracts': 13}, 'Iroquois': {'pop': 29718, 'tracts': 9}, 'Jackson': {'pop': 60218, 'tracts': 14}, 'Jasper': {'pop': 9698, 'tracts': 3}, 'Jefferson': {'pop': 38827, 'tracts': 11}, 'Jersey': {'pop': 22985, 'tracts': 6}, 'Jo Daviess': {'pop': 22678, 'tracts': 6}, 'Johnson': {'pop': 12582, 'tracts': 4}, 'Kane': {'pop': 515269, 'tracts': 82}, 'Kankakee': {'pop': 113449, 'tracts': 29}, 'Kendall': {'pop': 114736, 'tracts': 10}, 'Knox': {'pop': 52919, 'tracts': 16}, 'La Salle': {'pop': 113924, 'tracts': 28}, 'Lake': {'pop': 703462, 'tracts': 153}, 'Lawrence': {'pop': 16833, 'tracts': 5}, 'Lee': {'pop': 36031, 'tracts': 9}, 'Livingston': {'pop': 38950, 'tracts': 10}, 'Logan': {'pop': 30305, 'tracts': 8}, 'Macon': {'pop': 110768, 'tracts': 34}, 'Macoupin': {'pop': 47765, 'tracts': 13}, 'Madison': {'pop': 269282, 'tracts': 61}, 'Marion': {'pop': 39437, 'tracts': 12}, 'Marshall': {'pop': 12640, 'tracts': 5}, 'Mason': {'pop': 14666, 'tracts': 6}, 'Massac': {'pop': 15429, 'tracts': 4}, 'McDonough': {'pop': 32612, 'tracts': 10}, 'McHenry': {'pop': 308760, 'tracts': 52}, 'McLean': {'pop': 169572, 'tracts': 41}, 'Menard': {'pop': 12705, 'tracts': 3}, 'Mercer': {'pop': 16434, 'tracts': 4}, 'Monroe': {'pop': 32957, 'tracts': 6}, 'Montgomery': {'pop': 30104, 'tracts': 8}, 'Morgan': {'pop': 35547, 'tracts': 10}, 'Moultrie': {'pop': 14846, 'tracts': 4}, 'Ogle': {'pop': 53497, 'tracts': 11}, 'Peoria': {'pop': 186494, 'tracts': 48}, 'Perry': {'pop': 22350, 'tracts': 6}, 'Piatt': {'pop': 16729, 'tracts': 4}, 'Pike': {'pop': 16430, 'tracts': 5}, 'Pope': {'pop': 4470, 'tracts': 2}, 'Pulaski': {'pop': 6161, 'tracts': 2}, 'Putnam': {'pop': 6006, 'tracts': 2}, 'Randolph': {'pop': 33476, 'tracts': 9}, 'Richland': {'pop': 16233, 'tracts': 5}, 'Rock Island': {'pop': 147546, 'tracts': 40}, 'Saline': {'pop': 24913, 'tracts': 9}, 'Sangamon': {'pop': 197465, 'tracts': 53}, 'Schuyler': {'pop': 7544, 'tracts': 3}, 'Scott': {'pop': 5355, 'tracts': 2}, 'Shelby': {'pop': 22363, 'tracts': 6}, 'St. Clair': {'pop': 270056, 'tracts': 60}, 'Stark': {'pop': 5994, 'tracts': 2}, 'Stephenson': {'pop': 47711, 'tracts': 13}, 'Tazewell': {'pop': 135394, 'tracts': 30}, 'Union': {'pop': 17808, 'tracts': 5}, 'Vermilion': {'pop': 81625, 'tracts': 24}, 'Wabash': {'pop': 11947, 'tracts': 4}, 'Warren': {'pop': 17707, 'tracts': 5}, 'Washington': {'pop': 14716, 'tracts': 4}, 'Wayne': {'pop': 16760, 'tracts': 5}, 'White': {'pop': 14665, 'tracts': 5}, 'Whiteside': {'pop': 58498, 'tracts': 18}, 'Will': {'pop': 677560, 'tracts': 152}, 'Williamson': {'pop': 66357, 'tracts': 15}, 'Winnebago': {'pop': 295266, 'tracts': 77}, 'Woodford': {'pop': 38664, 'tracts': 9}}, 'IN': {'Adams': {'pop': 34387, 'tracts': 7}, 'Allen': {'pop': 355329, 'tracts': 96}, 'Bartholomew': {'pop': 76794, 'tracts': 15}, 'Benton': {'pop': 8854, 'tracts': 3}, 'Blackford': {'pop': 12766, 'tracts': 4}, 'Boone': {'pop': 56640, 'tracts': 10}, 'Brown': {'pop': 15242, 'tracts': 4}, 'Carroll': {'pop': 20155, 'tracts': 7}, 'Cass': {'pop': 38966, 'tracts': 11}, 'Clark': {'pop': 110232, 'tracts': 26}, 'Clay': {'pop': 26890, 'tracts': 6}, 'Clinton': {'pop': 33224, 'tracts': 8}, 'Crawford': {'pop': 10713, 'tracts': 3}, 'Daviess': {'pop': 31648, 'tracts': 7}, 'DeKalb': {'pop': 42223, 'tracts': 9}, 'Dearborn': {'pop': 50047, 'tracts': 10}, 'Decatur': {'pop': 25740, 'tracts': 6}, 'Delaware': {'pop': 117671, 'tracts': 30}, 'Dubois': {'pop': 41889, 'tracts': 7}, 'Elkhart': {'pop': 197559, 'tracts': 36}, 'Fayette': {'pop': 24277, 'tracts': 7}, 'Floyd': {'pop': 74578, 'tracts': 20}, 'Fountain': {'pop': 17240, 'tracts': 5}, 'Franklin': {'pop': 23087, 'tracts': 5}, 'Fulton': {'pop': 20836, 'tracts': 6}, 'Gibson': {'pop': 33503, 'tracts': 7}, 'Grant': {'pop': 70061, 'tracts': 16}, 'Greene': {'pop': 33165, 'tracts': 9}, 'Hamilton': {'pop': 274569, 'tracts': 39}, 'Hancock': {'pop': 70002, 'tracts': 10}, 'Harrison': {'pop': 39364, 'tracts': 6}, 'Hendricks': {'pop': 145448, 'tracts': 21}, 'Henry': {'pop': 49462, 'tracts': 13}, 'Howard': {'pop': 82752, 'tracts': 20}, 'Huntington': {'pop': 37124, 'tracts': 9}, 'Jackson': {'pop': 42376, 'tracts': 10}, 'Jasper': {'pop': 33478, 'tracts': 8}, 'Jay': {'pop': 21253, 'tracts': 7}, 'Jefferson': {'pop': 32428, 'tracts': 7}, 'Jennings': {'pop': 28525, 'tracts': 6}, 'Johnson': {'pop': 139654, 'tracts': 22}, 'Knox': {'pop': 38440, 'tracts': 10}, 'Kosciusko': {'pop': 77358, 'tracts': 19}, 'LaGrange': {'pop': 37128, 'tracts': 8}, 'LaPorte': {'pop': 111467, 'tracts': 28}, 'Lake': {'pop': 496005, 'tracts': 117}, 'Lawrence': {'pop': 46134, 'tracts': 10}, 'Madison': {'pop': 131636, 'tracts': 37}, 'Marion': {'pop': 903393, 'tracts': 224}, 'Marshall': {'pop': 47051, 'tracts': 12}, 'Martin': {'pop': 10334, 'tracts': 3}, 'Miami': {'pop': 36903, 'tracts': 10}, 'Monroe': {'pop': 137974, 'tracts': 31}, 'Montgomery': {'pop': 38124, 'tracts': 9}, 'Morgan': {'pop': 68894, 'tracts': 13}, 'Newton': {'pop': 14244, 'tracts': 4}, 'Noble': {'pop': 47536, 'tracts': 10}, 'Ohio': {'pop': 6128, 'tracts': 2}, 'Orange': {'pop': 19840, 'tracts': 6}, 'Owen': {'pop': 21575, 'tracts': 5}, 'Parke': {'pop': 17339, 'tracts': 4}, 'Perry': {'pop': 19338, 'tracts': 5}, 'Pike': {'pop': 12845, 'tracts': 4}, 'Porter': {'pop': 164343, 'tracts': 32}, 'Posey': {'pop': 25910, 'tracts': 7}, 'Pulaski': {'pop': 13402, 'tracts': 4}, 'Putnam': {'pop': 37963, 'tracts': 7}, 'Randolph': {'pop': 26171, 'tracts': 8}, 'Ripley': {'pop': 28818, 'tracts': 6}, 'Rush': {'pop': 17392, 'tracts': 5}, 'Scott': {'pop': 24181, 'tracts': 5}, 'Shelby': {'pop': 44436, 'tracts': 10}, 'Spencer': {'pop': 20952, 'tracts': 5}, 'St. Joseph': {'pop': 266931, 'tracts': 75}, 'Starke': {'pop': 23363, 'tracts': 7}, 'Steuben': {'pop': 34185, 'tracts': 9}, 'Sullivan': {'pop': 21475, 'tracts': 5}, 'Switzerland': {'pop': 10613, 'tracts': 3}, 'Tippecanoe': {'pop': 172780, 'tracts': 37}, 'Tipton': {'pop': 15936, 'tracts': 4}, 'Union': {'pop': 7516, 'tracts': 2}, 'Vanderburgh': {'pop': 179703, 'tracts': 49}, 'Vermillion': {'pop': 16212, 'tracts': 5}, 'Vigo': {'pop': 107848, 'tracts': 28}, 'Wabash': {'pop': 32888, 'tracts': 8}, 'Warren': {'pop': 8508, 'tracts': 2}, 'Warrick': {'pop': 59689, 'tracts': 11}, 'Washington': {'pop': 28262, 'tracts': 6}, 'Wayne': {'pop': 68917, 'tracts': 17}, 'Wells': {'pop': 27636, 'tracts': 7}, 'White': {'pop': 24643, 'tracts': 8}, 'Whitley': {'pop': 33292, 'tracts': 7}}, 'KS': {'Allen': {'pop': 13371, 'tracts': 5}, 'Anderson': {'pop': 8102, 'tracts': 2}, 'Atchison': {'pop': 16924, 'tracts': 4}, 'Barber': {'pop': 4861, 'tracts': 2}, 'Barton': {'pop': 27674, 'tracts': 8}, 'Bourbon': {'pop': 15173, 'tracts': 5}, 'Brown': {'pop': 9984, 'tracts': 3}, 'Butler': {'pop': 65880, 'tracts': 13}, 'Chase': {'pop': 2790, 'tracts': 1}, 'Chautauqua': {'pop': 3669, 'tracts': 1}, 'Cherokee': {'pop': 21603, 'tracts': 6}, 'Cheyenne': {'pop': 2726, 'tracts': 1}, 'Clark': {'pop': 2215, 'tracts': 1}, 'Clay': {'pop': 8535, 'tracts': 2}, 'Cloud': {'pop': 9533, 'tracts': 4}, 'Coffey': {'pop': 8601, 'tracts': 3}, 'Comanche': {'pop': 1891, 'tracts': 1}, 'Cowley': {'pop': 36311, 'tracts': 11}, 'Crawford': {'pop': 39134, 'tracts': 11}, 'Decatur': {'pop': 2961, 'tracts': 2}, 'Dickinson': {'pop': 19754, 'tracts': 6}, 'Doniphan': {'pop': 7945, 'tracts': 3}, 'Douglas': {'pop': 110826, 'tracts': 22}, 'Edwards': {'pop': 3037, 'tracts': 2}, 'Elk': {'pop': 2882, 'tracts': 1}, 'Ellis': {'pop': 28452, 'tracts': 6}, 'Ellsworth': {'pop': 6497, 'tracts': 2}, 'Finney': {'pop': 36776, 'tracts': 12}, 'Ford': {'pop': 33848, 'tracts': 7}, 'Franklin': {'pop': 25992, 'tracts': 5}, 'Geary': {'pop': 34362, 'tracts': 8}, 'Gove': {'pop': 2695, 'tracts': 2}, 'Graham': {'pop': 2597, 'tracts': 2}, 'Grant': {'pop': 7829, 'tracts': 2}, 'Gray': {'pop': 6006, 'tracts': 2}, 'Greeley': {'pop': 1247, 'tracts': 1}, 'Greenwood': {'pop': 6689, 'tracts': 3}, 'Hamilton': {'pop': 2690, 'tracts': 1}, 'Harper': {'pop': 6034, 'tracts': 3}, 'Harvey': {'pop': 34684, 'tracts': 6}, 'Haskell': {'pop': 4256, 'tracts': 1}, 'Hodgeman': {'pop': 1916, 'tracts': 1}, 'Jackson': {'pop': 13462, 'tracts': 3}, 'Jefferson': {'pop': 19126, 'tracts': 4}, 'Jewell': {'pop': 3077, 'tracts': 2}, 'Johnson': {'pop': 544179, 'tracts': 130}, 'Kearny': {'pop': 3977, 'tracts': 1}, 'Kingman': {'pop': 7858, 'tracts': 3}, 'Kiowa': {'pop': 2553, 'tracts': 1}, 'Labette': {'pop': 21607, 'tracts': 8}, 'Lane': {'pop': 1750, 'tracts': 1}, 'Leavenworth': {'pop': 76227, 'tracts': 16}, 'Lincoln': {'pop': 3241, 'tracts': 1}, 'Linn': {'pop': 9656, 'tracts': 2}, 'Logan': {'pop': 2756, 'tracts': 1}, 'Lyon': {'pop': 33690, 'tracts': 8}, 'Marion': {'pop': 12660, 'tracts': 4}, 'Marshall': {'pop': 10117, 'tracts': 4}, 'McPherson': {'pop': 29180, 'tracts': 7}, 'Meade': {'pop': 4575, 'tracts': 2}, 'Miami': {'pop': 32787, 'tracts': 8}, 'Mitchell': {'pop': 6373, 'tracts': 2}, 'Montgomery': {'pop': 35471, 'tracts': 13}, 'Morris': {'pop': 5923, 'tracts': 2}, 'Morton': {'pop': 3233, 'tracts': 1}, 'Nemaha': {'pop': 10178, 'tracts': 3}, 'Neosho': {'pop': 16512, 'tracts': 5}, 'Ness': {'pop': 3107, 'tracts': 2}, 'Norton': {'pop': 5671, 'tracts': 1}, 'Osage': {'pop': 16295, 'tracts': 5}, 'Osborne': {'pop': 3858, 'tracts': 1}, 'Ottawa': {'pop': 6091, 'tracts': 2}, 'Pawnee': {'pop': 6973, 'tracts': 2}, 'Phillips': {'pop': 5642, 'tracts': 3}, 'Pottawatomie': {'pop': 21604, 'tracts': 4}, 'Pratt': {'pop': 9656, 'tracts': 3}, 'Rawlins': {'pop': 2519, 'tracts': 1}, 'Reno': {'pop': 64511, 'tracts': 17}, 'Republic': {'pop': 4980, 'tracts': 3}, 'Rice': {'pop': 10083, 'tracts': 3}, 'Riley': {'pop': 71115, 'tracts': 14}, 'Rooks': {'pop': 5181, 'tracts': 2}, 'Rush': {'pop': 3307, 'tracts': 2}, 'Russell': {'pop': 6970, 'tracts': 2}, 'Saline': {'pop': 55606, 'tracts': 12}, 'Scott': {'pop': 4936, 'tracts': 1}, 'Sedgwick': {'pop': 498365, 'tracts': 124}, 'Seward': {'pop': 22952, 'tracts': 5}, 'Shawnee': {'pop': 177934, 'tracts': 43}, 'Sheridan': {'pop': 2556, 'tracts': 2}, 'Sherman': {'pop': 6010, 'tracts': 2}, 'Smith': {'pop': 3853, 'tracts': 2}, 'Stafford': {'pop': 4437, 'tracts': 2}, 'Stanton': {'pop': 2235, 'tracts': 1}, 'Stevens': {'pop': 5724, 'tracts': 2}, 'Sumner': {'pop': 24132, 'tracts': 6}, 'Thomas': {'pop': 7900, 'tracts': 2}, 'Trego': {'pop': 3001, 'tracts': 1}, 'Wabaunsee': {'pop': 7053, 'tracts': 2}, 'Wallace': {'pop': 1485, 'tracts': 1}, 'Washington': {'pop': 5799, 'tracts': 2}, 'Wichita': {'pop': 2234, 'tracts': 1}, 'Wilson': {'pop': 9409, 'tracts': 4}, 'Woodson': {'pop': 3309, 'tracts': 2}, 'Wyandotte': {'pop': 157505, 'tracts': 70}}, 'KY': {'Adair': {'pop': 18656, 'tracts': 7}, 'Allen': {'pop': 19956, 'tracts': 6}, 'Anderson': {'pop': 21421, 'tracts': 5}, 'Ballard': {'pop': 8249, 'tracts': 3}, 'Barren': {'pop': 42173, 'tracts': 10}, 'Bath': {'pop': 11591, 'tracts': 3}, 'Bell': {'pop': 28691, 'tracts': 9}, 'Boone': {'pop': 118811, 'tracts': 22}, 'Bourbon': {'pop': 19985, 'tracts': 6}, 'Boyd': {'pop': 49542, 'tracts': 13}, 'Boyle': {'pop': 28432, 'tracts': 7}, 'Bracken': {'pop': 8488, 'tracts': 3}, 'Breathitt': {'pop': 13878, 'tracts': 7}, 'Breckinridge': {'pop': 20059, 'tracts': 6}, 'Bullitt': {'pop': 74319, 'tracts': 18}, 'Butler': {'pop': 12690, 'tracts': 5}, 'Caldwell': {'pop': 12984, 'tracts': 3}, 'Calloway': {'pop': 37191, 'tracts': 9}, 'Campbell': {'pop': 90336, 'tracts': 25}, 'Carlisle': {'pop': 5104, 'tracts': 3}, 'Carroll': {'pop': 10811, 'tracts': 3}, 'Carter': {'pop': 27720, 'tracts': 7}, 'Casey': {'pop': 15955, 'tracts': 5}, 'Christian': {'pop': 73955, 'tracts': 19}, 'Clark': {'pop': 35613, 'tracts': 10}, 'Clay': {'pop': 21730, 'tracts': 6}, 'Clinton': {'pop': 10272, 'tracts': 3}, 'Crittenden': {'pop': 9315, 'tracts': 4}, 'Cumberland': {'pop': 6856, 'tracts': 2}, 'Daviess': {'pop': 96656, 'tracts': 23}, 'Edmonson': {'pop': 12161, 'tracts': 4}, 'Elliott': {'pop': 7852, 'tracts': 2}, 'Estill': {'pop': 14672, 'tracts': 4}, 'Fayette': {'pop': 295803, 'tracts': 82}, 'Fleming': {'pop': 14348, 'tracts': 4}, 'Floyd': {'pop': 39451, 'tracts': 10}, 'Franklin': {'pop': 49285, 'tracts': 11}, 'Fulton': {'pop': 6813, 'tracts': 2}, 'Gallatin': {'pop': 8589, 'tracts': 2}, 'Garrard': {'pop': 16912, 'tracts': 4}, 'Grant': {'pop': 24662, 'tracts': 4}, 'Graves': {'pop': 37121, 'tracts': 9}, 'Grayson': {'pop': 25746, 'tracts': 7}, 'Green': {'pop': 11258, 'tracts': 4}, 'Greenup': {'pop': 36910, 'tracts': 9}, 'Hancock': {'pop': 8565, 'tracts': 3}, 'Hardin': {'pop': 105543, 'tracts': 22}, 'Harlan': {'pop': 29278, 'tracts': 11}, 'Harrison': {'pop': 18846, 'tracts': 5}, 'Hart': {'pop': 18199, 'tracts': 5}, 'Henderson': {'pop': 46250, 'tracts': 11}, 'Henry': {'pop': 15416, 'tracts': 5}, 'Hickman': {'pop': 4902, 'tracts': 1}, 'Hopkins': {'pop': 46920, 'tracts': 12}, 'Jackson': {'pop': 13494, 'tracts': 3}, 'Jefferson': {'pop': 741096, 'tracts': 191}, 'Jessamine': {'pop': 48586, 'tracts': 9}, 'Johnson': {'pop': 23356, 'tracts': 6}, 'Kenton': {'pop': 159720, 'tracts': 41}, 'Knott': {'pop': 16346, 'tracts': 5}, 'Knox': {'pop': 31883, 'tracts': 8}, 'Larue': {'pop': 14193, 'tracts': 4}, 'Laurel': {'pop': 58849, 'tracts': 13}, 'Lawrence': {'pop': 15860, 'tracts': 5}, 'Lee': {'pop': 7887, 'tracts': 3}, 'Leslie': {'pop': 11310, 'tracts': 3}, 'Letcher': {'pop': 24519, 'tracts': 7}, 'Lewis': {'pop': 13870, 'tracts': 4}, 'Lincoln': {'pop': 24742, 'tracts': 6}, 'Livingston': {'pop': 9519, 'tracts': 2}, 'Logan': {'pop': 26835, 'tracts': 6}, 'Lyon': {'pop': 8314, 'tracts': 3}, 'Madison': {'pop': 82916, 'tracts': 19}, 'Magoffin': {'pop': 13333, 'tracts': 4}, 'Marion': {'pop': 19820, 'tracts': 6}, 'Marshall': {'pop': 31448, 'tracts': 6}, 'Martin': {'pop': 12929, 'tracts': 3}, 'Mason': {'pop': 17490, 'tracts': 5}, 'McCracken': {'pop': 65565, 'tracts': 17}, 'McCreary': {'pop': 18306, 'tracts': 4}, 'McLean': {'pop': 9531, 'tracts': 3}, 'Meade': {'pop': 28602, 'tracts': 8}, 'Menifee': {'pop': 6306, 'tracts': 2}, 'Mercer': {'pop': 21331, 'tracts': 5}, 'Metcalfe': {'pop': 10099, 'tracts': 3}, 'Monroe': {'pop': 10963, 'tracts': 4}, 'Montgomery': {'pop': 26499, 'tracts': 6}, 'Morgan': {'pop': 13923, 'tracts': 5}, 'Muhlenberg': {'pop': 31499, 'tracts': 9}, 'Nelson': {'pop': 43437, 'tracts': 9}, 'Nicholas': {'pop': 7135, 'tracts': 2}, 'Ohio': {'pop': 23842, 'tracts': 7}, 'Oldham': {'pop': 60316, 'tracts': 14}, 'Owen': {'pop': 10841, 'tracts': 3}, 'Owsley': {'pop': 4755, 'tracts': 2}, 'Pendleton': {'pop': 14877, 'tracts': 3}, 'Perry': {'pop': 28712, 'tracts': 8}, 'Pike': {'pop': 65024, 'tracts': 19}, 'Powell': {'pop': 12613, 'tracts': 2}, 'Pulaski': {'pop': 63063, 'tracts': 14}, 'Robertson': {'pop': 2282, 'tracts': 1}, 'Rockcastle': {'pop': 17056, 'tracts': 4}, 'Rowan': {'pop': 23333, 'tracts': 4}, 'Russell': {'pop': 17565, 'tracts': 5}, 'Scott': {'pop': 47173, 'tracts': 14}, 'Shelby': {'pop': 42074, 'tracts': 9}, 'Simpson': {'pop': 17327, 'tracts': 4}, 'Spencer': {'pop': 17061, 'tracts': 4}, 'Taylor': {'pop': 24512, 'tracts': 5}, 'Todd': {'pop': 12460, 'tracts': 4}, 'Trigg': {'pop': 14339, 'tracts': 5}, 'Trimble': {'pop': 8809, 'tracts': 2}, 'Union': {'pop': 15007, 'tracts': 4}, 'Warren': {'pop': 113792, 'tracts': 24}, 'Washington': {'pop': 11717, 'tracts': 3}, 'Wayne': {'pop': 20813, 'tracts': 5}, 'Webster': {'pop': 13621, 'tracts': 4}, 'Whitley': {'pop': 35637, 'tracts': 8}, 'Wolfe': {'pop': 7355, 'tracts': 2}, 'Woodford': {'pop': 24939, 'tracts': 8}}, 'LA': {'Acadia': {'pop': 61773, 'tracts': 12}, 'Allen': {'pop': 25764, 'tracts': 5}, 'Ascension': {'pop': 107215, 'tracts': 14}, 'Assumption': {'pop': 23421, 'tracts': 6}, 'Avoyelles': {'pop': 42073, 'tracts': 9}, 'Beauregard': {'pop': 35654, 'tracts': 7}, 'Bienville': {'pop': 14353, 'tracts': 5}, 'Bossier': {'pop': 116979, 'tracts': 22}, 'Caddo': {'pop': 254969, 'tracts': 64}, 'Calcasieu': {'pop': 192768, 'tracts': 44}, 'Caldwell': {'pop': 10132, 'tracts': 3}, 'Cameron': {'pop': 6839, 'tracts': 3}, 'Catahoula': {'pop': 10407, 'tracts': 3}, 'Claiborne': {'pop': 17195, 'tracts': 5}, 'Concordia': {'pop': 20822, 'tracts': 5}, 'De Soto': {'pop': 26656, 'tracts': 7}, 'East Baton Rouge': {'pop': 440171, 'tracts': 92}, 'East Carroll': {'pop': 7759, 'tracts': 3}, 'East Feliciana': {'pop': 20267, 'tracts': 5}, 'Evangeline': {'pop': 33984, 'tracts': 8}, 'Franklin': {'pop': 20767, 'tracts': 6}, 'Grant': {'pop': 22309, 'tracts': 5}, 'Iberia': {'pop': 73240, 'tracts': 15}, 'Iberville': {'pop': 33387, 'tracts': 7}, 'Jackson': {'pop': 16274, 'tracts': 5}, 'Jefferson': {'pop': 432552, 'tracts': 127}, 'Jefferson Davis': {'pop': 31594, 'tracts': 7}, 'La Salle': {'pop': 14890, 'tracts': 3}, 'Lafayette': {'pop': 221578, 'tracts': 43}, 'Lafourche': {'pop': 96318, 'tracts': 23}, 'Lincoln': {'pop': 46735, 'tracts': 10}, 'Livingston': {'pop': 128026, 'tracts': 17}, 'Madison': {'pop': 12093, 'tracts': 5}, 'Morehouse': {'pop': 27979, 'tracts': 8}, 'Natchitoches': {'pop': 39566, 'tracts': 9}, 'Orleans': {'pop': 343829, 'tracts': 177}, 'Ouachita': {'pop': 153720, 'tracts': 40}, 'Plaquemines': {'pop': 23042, 'tracts': 9}, 'Pointe Coupee': {'pop': 22802, 'tracts': 6}, 'Rapides': {'pop': 131613, 'tracts': 33}, 'Red River': {'pop': 9091, 'tracts': 2}, 'Richland': {'pop': 20725, 'tracts': 6}, 'Sabine': {'pop': 24233, 'tracts': 7}, 'St. Bernard': {'pop': 35897, 'tracts': 18}, 'St. Charles': {'pop': 52780, 'tracts': 13}, 'St. Helena': {'pop': 11203, 'tracts': 2}, 'St. James': {'pop': 22102, 'tracts': 7}, 'St. John the Baptist': {'pop': 45924, 'tracts': 11}, 'St. Landry': {'pop': 83384, 'tracts': 19}, 'St. Martin': {'pop': 52160, 'tracts': 11}, 'St. Mary': {'pop': 54650, 'tracts': 16}, 'St. Tammany': {'pop': 233740, 'tracts': 43}, 'Tangipahoa': {'pop': 121097, 'tracts': 20}, 'Tensas': {'pop': 5252, 'tracts': 3}, 'Terrebonne': {'pop': 111860, 'tracts': 21}, 'Union': {'pop': 22721, 'tracts': 6}, 'Vermilion': {'pop': 57999, 'tracts': 12}, 'Vernon': {'pop': 52334, 'tracts': 12}, 'Washington': {'pop': 47168, 'tracts': 11}, 'Webster': {'pop': 41207, 'tracts': 11}, 'West Baton Rouge': {'pop': 23788, 'tracts': 5}, 'West Carroll': {'pop': 11604, 'tracts': 3}, 'West Feliciana': {'pop': 15625, 'tracts': 3}, 'Winn': {'pop': 15313, 'tracts': 4}}, 'MA': {'Barnstable': {'pop': 215888, 'tracts': 57}, 'Berkshire': {'pop': 131219, 'tracts': 39}, 'Bristol': {'pop': 548285, 'tracts': 126}, 'Dukes': {'pop': 16535, 'tracts': 4}, 'Essex': {'pop': 743159, 'tracts': 163}, 'Franklin': {'pop': 71372, 'tracts': 18}, 'Hampden': {'pop': 463490, 'tracts': 103}, 'Hampshire': {'pop': 158080, 'tracts': 36}, 'Middlesex': {'pop': 1503085, 'tracts': 318}, 'Nantucket': {'pop': 10172, 'tracts': 6}, 'Norfolk': {'pop': 670850, 'tracts': 130}, 'Plymouth': {'pop': 494919, 'tracts': 100}, 'Suffolk': {'pop': 722023, 'tracts': 204}, 'Worcester': {'pop': 798552, 'tracts': 172}}, 'MD': {'Allegany': {'pop': 75087, 'tracts': 23}, 'Anne Arundel': {'pop': 537656, 'tracts': 104}, 'Baltimore': {'pop': 805029, 'tracts': 214}, 'Baltimore City': {'pop': 620961, 'tracts': 200}, 'Calvert': {'pop': 88737, 'tracts': 18}, 'Caroline': {'pop': 33066, 'tracts': 9}, 'Carroll': {'pop': 167134, 'tracts': 38}, 'Cecil': {'pop': 101108, 'tracts': 19}, 'Charles': {'pop': 146551, 'tracts': 30}, 'Dorchester': {'pop': 32618, 'tracts': 10}, 'Frederick': {'pop': 233385, 'tracts': 61}, 'Garrett': {'pop': 30097, 'tracts': 7}, 'Harford': {'pop': 244826, 'tracts': 57}, 'Howard': {'pop': 287085, 'tracts': 55}, 'Kent': {'pop': 20197, 'tracts': 5}, 'Montgomery': {'pop': 971777, 'tracts': 215}, "Prince George's": {'pop': 863420, 'tracts': 218}, "Queen Anne's": {'pop': 47798, 'tracts': 12}, 'Somerset': {'pop': 26470, 'tracts': 8}, "St. Mary's": {'pop': 105151, 'tracts': 18}, 'Talbot': {'pop': 37782, 'tracts': 10}, 'Washington': {'pop': 147430, 'tracts': 32}, 'Wicomico': {'pop': 98733, 'tracts': 19}, 'Worcester': {'pop': 51454, 'tracts': 17}}, 'ME': {'Androscoggin': {'pop': 107702, 'tracts': 28}, 'Aroostook': {'pop': 71870, 'tracts': 24}, 'Cumberland': {'pop': 281674, 'tracts': 67}, 'Franklin': {'pop': 30768, 'tracts': 9}, 'Hancock': {'pop': 54418, 'tracts': 17}, 'Kennebec': {'pop': 122151, 'tracts': 31}, 'Knox': {'pop': 39736, 'tracts': 11}, 'Lincoln': {'pop': 34457, 'tracts': 9}, 'Oxford': {'pop': 57833, 'tracts': 17}, 'Penobscot': {'pop': 153923, 'tracts': 46}, 'Piscataquis': {'pop': 17535, 'tracts': 8}, 'Sagadahoc': {'pop': 35293, 'tracts': 8}, 'Somerset': {'pop': 52228, 'tracts': 17}, 'Waldo': {'pop': 38786, 'tracts': 8}, 'Washington': {'pop': 32856, 'tracts': 14}, 'York': {'pop': 197131, 'tracts': 41}}, 'MI': {'Alcona': {'pop': 10942, 'tracts': 5}, 'Alger': {'pop': 9601, 'tracts': 3}, 'Allegan': {'pop': 111408, 'tracts': 25}, 'Alpena': {'pop': 29598, 'tracts': 10}, 'Antrim': {'pop': 23580, 'tracts': 7}, 'Arenac': {'pop': 15899, 'tracts': 5}, 'Baraga': {'pop': 8860, 'tracts': 2}, 'Barry': {'pop': 59173, 'tracts': 11}, 'Bay': {'pop': 107771, 'tracts': 26}, 'Benzie': {'pop': 17525, 'tracts': 5}, 'Berrien': {'pop': 156813, 'tracts': 48}, 'Branch': {'pop': 45248, 'tracts': 12}, 'Calhoun': {'pop': 136146, 'tracts': 39}, 'Cass': {'pop': 52293, 'tracts': 11}, 'Charlevoix': {'pop': 25949, 'tracts': 13}, 'Cheboygan': {'pop': 26152, 'tracts': 8}, 'Chippewa': {'pop': 38520, 'tracts': 14}, 'Clare': {'pop': 30926, 'tracts': 11}, 'Clinton': {'pop': 75382, 'tracts': 22}, 'Crawford': {'pop': 14074, 'tracts': 5}, 'Delta': {'pop': 37069, 'tracts': 11}, 'Dickinson': {'pop': 26168, 'tracts': 7}, 'Eaton': {'pop': 107759, 'tracts': 28}, 'Emmet': {'pop': 32694, 'tracts': 8}, 'Genesee': {'pop': 425790, 'tracts': 131}, 'Gladwin': {'pop': 25692, 'tracts': 9}, 'Gogebic': {'pop': 16427, 'tracts': 7}, 'Grand Traverse': {'pop': 86986, 'tracts': 16}, 'Gratiot': {'pop': 42476, 'tracts': 10}, 'Hillsdale': {'pop': 46688, 'tracts': 12}, 'Houghton': {'pop': 36628, 'tracts': 11}, 'Huron': {'pop': 33118, 'tracts': 12}, 'Ingham': {'pop': 280895, 'tracts': 81}, 'Ionia': {'pop': 63905, 'tracts': 13}, 'Iosco': {'pop': 25887, 'tracts': 9}, 'Iron': {'pop': 11817, 'tracts': 5}, 'Isabella': {'pop': 70311, 'tracts': 15}, 'Jackson': {'pop': 160248, 'tracts': 38}, 'Kalamazoo': {'pop': 250331, 'tracts': 57}, 'Kalkaska': {'pop': 17153, 'tracts': 5}, 'Kent': {'pop': 602622, 'tracts': 128}, 'Keweenaw': {'pop': 2156, 'tracts': 2}, 'Lake': {'pop': 11539, 'tracts': 4}, 'Lapeer': {'pop': 88319, 'tracts': 24}, 'Leelanau': {'pop': 21708, 'tracts': 6}, 'Lenawee': {'pop': 99892, 'tracts': 23}, 'Livingston': {'pop': 180967, 'tracts': 61}, 'Luce': {'pop': 6631, 'tracts': 3}, 'Mackinac': {'pop': 11113, 'tracts': 6}, 'Macomb': {'pop': 840978, 'tracts': 216}, 'Manistee': {'pop': 24733, 'tracts': 9}, 'Marquette': {'pop': 67077, 'tracts': 24}, 'Mason': {'pop': 28705, 'tracts': 8}, 'Mecosta': {'pop': 42798, 'tracts': 11}, 'Menominee': {'pop': 24029, 'tracts': 7}, 'Midland': {'pop': 83629, 'tracts': 19}, 'Missaukee': {'pop': 14849, 'tracts': 4}, 'Monroe': {'pop': 152021, 'tracts': 39}, 'Montcalm': {'pop': 63342, 'tracts': 13}, 'Montmorency': {'pop': 9765, 'tracts': 5}, 'Muskegon': {'pop': 172188, 'tracts': 42}, 'Newaygo': {'pop': 48460, 'tracts': 11}, 'Oakland': {'pop': 1202362, 'tracts': 338}, 'Oceana': {'pop': 26570, 'tracts': 7}, 'Ogemaw': {'pop': 21699, 'tracts': 7}, 'Ontonagon': {'pop': 6780, 'tracts': 4}, 'Osceola': {'pop': 23528, 'tracts': 6}, 'Oscoda': {'pop': 8640, 'tracts': 5}, 'Otsego': {'pop': 24164, 'tracts': 6}, 'Ottawa': {'pop': 263801, 'tracts': 53}, 'Presque Isle': {'pop': 13376, 'tracts': 6}, 'Roscommon': {'pop': 24449, 'tracts': 10}, 'Saginaw': {'pop': 200169, 'tracts': 56}, 'Sanilac': {'pop': 43114, 'tracts': 12}, 'Schoolcraft': {'pop': 8485, 'tracts': 3}, 'Shiawassee': {'pop': 70648, 'tracts': 17}, 'St. Clair': {'pop': 163040, 'tracts': 49}, 'St. Joseph': {'pop': 61295, 'tracts': 17}, 'Tuscola': {'pop': 55729, 'tracts': 13}, 'Van Buren': {'pop': 76258, 'tracts': 15}, 'Washtenaw': {'pop': 344791, 'tracts': 100}, 'Wayne': {'pop': 1820584, 'tracts': 610}, 'Wexford': {'pop': 32735, 'tracts': 8}}, 'MN': {'Aitkin': {'pop': 16202, 'tracts': 6}, 'Anoka': {'pop': 330844, 'tracts': 83}, 'Becker': {'pop': 32504, 'tracts': 10}, 'Beltrami': {'pop': 44442, 'tracts': 10}, 'Benton': {'pop': 38451, 'tracts': 9}, 'Big Stone': {'pop': 5269, 'tracts': 3}, 'Blue Earth': {'pop': 64013, 'tracts': 16}, 'Brown': {'pop': 25893, 'tracts': 8}, 'Carlton': {'pop': 35386, 'tracts': 7}, 'Carver': {'pop': 91042, 'tracts': 19}, 'Cass': {'pop': 28567, 'tracts': 10}, 'Chippewa': {'pop': 12441, 'tracts': 4}, 'Chisago': {'pop': 53887, 'tracts': 10}, 'Clay': {'pop': 58999, 'tracts': 13}, 'Clearwater': {'pop': 8695, 'tracts': 3}, 'Cook': {'pop': 5176, 'tracts': 3}, 'Cottonwood': {'pop': 11687, 'tracts': 4}, 'Crow Wing': {'pop': 62500, 'tracts': 16}, 'Dakota': {'pop': 398552, 'tracts': 95}, 'Dodge': {'pop': 20087, 'tracts': 5}, 'Douglas': {'pop': 36009, 'tracts': 9}, 'Faribault': {'pop': 14553, 'tracts': 6}, 'Fillmore': {'pop': 20866, 'tracts': 6}, 'Freeborn': {'pop': 31255, 'tracts': 10}, 'Goodhue': {'pop': 46183, 'tracts': 10}, 'Grant': {'pop': 6018, 'tracts': 2}, 'Hennepin': {'pop': 1152425, 'tracts': 299}, 'Houston': {'pop': 19027, 'tracts': 5}, 'Hubbard': {'pop': 20428, 'tracts': 7}, 'Isanti': {'pop': 37816, 'tracts': 8}, 'Itasca': {'pop': 45058, 'tracts': 11}, 'Jackson': {'pop': 10266, 'tracts': 4}, 'Kanabec': {'pop': 16239, 'tracts': 4}, 'Kandiyohi': {'pop': 42239, 'tracts': 12}, 'Kittson': {'pop': 4552, 'tracts': 2}, 'Koochiching': {'pop': 13311, 'tracts': 4}, 'Lac qui Parle': {'pop': 7259, 'tracts': 3}, 'Lake': {'pop': 10866, 'tracts': 3}, 'Lake of the Woods': {'pop': 4045, 'tracts': 2}, 'Le Sueur': {'pop': 27703, 'tracts': 6}, 'Lincoln': {'pop': 5896, 'tracts': 2}, 'Lyon': {'pop': 25857, 'tracts': 7}, 'Mahnomen': {'pop': 5413, 'tracts': 2}, 'Marshall': {'pop': 9439, 'tracts': 4}, 'Martin': {'pop': 20840, 'tracts': 6}, 'McLeod': {'pop': 36651, 'tracts': 7}, 'Meeker': {'pop': 23300, 'tracts': 6}, 'Mille Lacs': {'pop': 26097, 'tracts': 7}, 'Morrison': {'pop': 33198, 'tracts': 8}, 'Mower': {'pop': 39163, 'tracts': 11}, 'Murray': {'pop': 8725, 'tracts': 3}, 'Nicollet': {'pop': 32727, 'tracts': 7}, 'Nobles': {'pop': 21378, 'tracts': 6}, 'Norman': {'pop': 6852, 'tracts': 3}, 'Olmsted': {'pop': 144248, 'tracts': 33}, 'Otter Tail': {'pop': 57303, 'tracts': 17}, 'Pennington': {'pop': 13930, 'tracts': 5}, 'Pine': {'pop': 29750, 'tracts': 8}, 'Pipestone': {'pop': 9596, 'tracts': 5}, 'Polk': {'pop': 31600, 'tracts': 10}, 'Pope': {'pop': 10995, 'tracts': 4}, 'Ramsey': {'pop': 508640, 'tracts': 137}, 'Red Lake': {'pop': 4089, 'tracts': 2}, 'Redwood': {'pop': 16059, 'tracts': 6}, 'Renville': {'pop': 15730, 'tracts': 6}, 'Rice': {'pop': 64142, 'tracts': 13}, 'Rock': {'pop': 9687, 'tracts': 3}, 'Roseau': {'pop': 15629, 'tracts': 5}, 'Scott': {'pop': 129928, 'tracts': 21}, 'Sherburne': {'pop': 88499, 'tracts': 11}, 'Sibley': {'pop': 15226, 'tracts': 4}, 'St. Louis': {'pop': 200226, 'tracts': 66}, 'Stearns': {'pop': 150642, 'tracts': 29}, 'Steele': {'pop': 36576, 'tracts': 8}, 'Stevens': {'pop': 9726, 'tracts': 3}, 'Swift': {'pop': 9783, 'tracts': 4}, 'Todd': {'pop': 24895, 'tracts': 8}, 'Traverse': {'pop': 3558, 'tracts': 2}, 'Wabasha': {'pop': 21676, 'tracts': 6}, 'Wadena': {'pop': 13843, 'tracts': 3}, 'Waseca': {'pop': 19136, 'tracts': 5}, 'Washington': {'pop': 238136, 'tracts': 50}, 'Watonwan': {'pop': 11211, 'tracts': 3}, 'Wilkin': {'pop': 6576, 'tracts': 2}, 'Winona': {'pop': 51461, 'tracts': 10}, 'Wright': {'pop': 124700, 'tracts': 17}, 'Yellow Medicine': {'pop': 10438, 'tracts': 4}}, 'MO': {'Adair': {'pop': 25607, 'tracts': 7}, 'Andrew': {'pop': 17291, 'tracts': 4}, 'Atchison': {'pop': 5685, 'tracts': 2}, 'Audrain': {'pop': 25529, 'tracts': 7}, 'Barry': {'pop': 35597, 'tracts': 7}, 'Barton': {'pop': 12402, 'tracts': 3}, 'Bates': {'pop': 17049, 'tracts': 4}, 'Benton': {'pop': 19056, 'tracts': 6}, 'Bollinger': {'pop': 12363, 'tracts': 3}, 'Boone': {'pop': 162642, 'tracts': 29}, 'Buchanan': {'pop': 89201, 'tracts': 25}, 'Butler': {'pop': 42794, 'tracts': 10}, 'Caldwell': {'pop': 9424, 'tracts': 2}, 'Callaway': {'pop': 44332, 'tracts': 8}, 'Camden': {'pop': 44002, 'tracts': 11}, 'Cape Girardeau': {'pop': 75674, 'tracts': 16}, 'Carroll': {'pop': 9295, 'tracts': 3}, 'Carter': {'pop': 6265, 'tracts': 2}, 'Cass': {'pop': 99478, 'tracts': 20}, 'Cedar': {'pop': 13982, 'tracts': 3}, 'Chariton': {'pop': 7831, 'tracts': 3}, 'Christian': {'pop': 77422, 'tracts': 14}, 'Clark': {'pop': 7139, 'tracts': 3}, 'Clay': {'pop': 221939, 'tracts': 44}, 'Clinton': {'pop': 20743, 'tracts': 4}, 'Cole': {'pop': 75990, 'tracts': 15}, 'Cooper': {'pop': 17601, 'tracts': 5}, 'Crawford': {'pop': 24696, 'tracts': 6}, 'Dade': {'pop': 7883, 'tracts': 2}, 'Dallas': {'pop': 16777, 'tracts': 3}, 'Daviess': {'pop': 8433, 'tracts': 2}, 'DeKalb': {'pop': 12892, 'tracts': 2}, 'Dent': {'pop': 15657, 'tracts': 4}, 'Douglas': {'pop': 13684, 'tracts': 3}, 'Dunklin': {'pop': 31953, 'tracts': 10}, 'Franklin': {'pop': 101492, 'tracts': 17}, 'Gasconade': {'pop': 15222, 'tracts': 5}, 'Gentry': {'pop': 6738, 'tracts': 2}, 'Greene': {'pop': 275174, 'tracts': 62}, 'Grundy': {'pop': 10261, 'tracts': 4}, 'Harrison': {'pop': 8957, 'tracts': 3}, 'Henry': {'pop': 22272, 'tracts': 6}, 'Hickory': {'pop': 9627, 'tracts': 3}, 'Holt': {'pop': 4912, 'tracts': 3}, 'Howard': {'pop': 10144, 'tracts': 3}, 'Howell': {'pop': 40400, 'tracts': 8}, 'Iron': {'pop': 10630, 'tracts': 4}, 'Jackson': {'pop': 674158, 'tracts': 199}, 'Jasper': {'pop': 117404, 'tracts': 22}, 'Jefferson': {'pop': 218733, 'tracts': 42}, 'Johnson': {'pop': 52595, 'tracts': 9}, 'Knox': {'pop': 4131, 'tracts': 2}, 'Laclede': {'pop': 35571, 'tracts': 6}, 'Lafayette': {'pop': 33381, 'tracts': 7}, 'Lawrence': {'pop': 38634, 'tracts': 7}, 'Lewis': {'pop': 10211, 'tracts': 4}, 'Lincoln': {'pop': 52566, 'tracts': 7}, 'Linn': {'pop': 12761, 'tracts': 5}, 'Livingston': {'pop': 15195, 'tracts': 5}, 'Macon': {'pop': 15566, 'tracts': 5}, 'Madison': {'pop': 12226, 'tracts': 3}, 'Maries': {'pop': 9176, 'tracts': 3}, 'Marion': {'pop': 28781, 'tracts': 8}, 'McDonald': {'pop': 23083, 'tracts': 4}, 'Mercer': {'pop': 3785, 'tracts': 2}, 'Miller': {'pop': 24748, 'tracts': 5}, 'Mississippi': {'pop': 14358, 'tracts': 4}, 'Moniteau': {'pop': 15607, 'tracts': 4}, 'Monroe': {'pop': 8840, 'tracts': 3}, 'Montgomery': {'pop': 12236, 'tracts': 4}, 'Morgan': {'pop': 20565, 'tracts': 5}, 'New Madrid': {'pop': 18956, 'tracts': 6}, 'Newton': {'pop': 58114, 'tracts': 12}, 'Nodaway': {'pop': 23370, 'tracts': 5}, 'Oregon': {'pop': 10881, 'tracts': 3}, 'Osage': {'pop': 13878, 'tracts': 4}, 'Ozark': {'pop': 9723, 'tracts': 2}, 'Pemiscot': {'pop': 18296, 'tracts': 6}, 'Perry': {'pop': 18971, 'tracts': 5}, 'Pettis': {'pop': 42201, 'tracts': 11}, 'Phelps': {'pop': 45156, 'tracts': 10}, 'Pike': {'pop': 18516, 'tracts': 5}, 'Platte': {'pop': 89322, 'tracts': 20}, 'Polk': {'pop': 31137, 'tracts': 4}, 'Pulaski': {'pop': 52274, 'tracts': 9}, 'Putnam': {'pop': 4979, 'tracts': 2}, 'Ralls': {'pop': 10167, 'tracts': 3}, 'Randolph': {'pop': 25414, 'tracts': 6}, 'Ray': {'pop': 23494, 'tracts': 4}, 'Reynolds': {'pop': 6696, 'tracts': 2}, 'Ripley': {'pop': 14100, 'tracts': 4}, 'Saline': {'pop': 23370, 'tracts': 8}, 'Schuyler': {'pop': 4431, 'tracts': 2}, 'Scotland': {'pop': 4843, 'tracts': 2}, 'Scott': {'pop': 39191, 'tracts': 10}, 'Shannon': {'pop': 8441, 'tracts': 2}, 'Shelby': {'pop': 6373, 'tracts': 3}, 'St. Charles': {'pop': 360485, 'tracts': 79}, 'St. Clair': {'pop': 9805, 'tracts': 3}, 'St. Francois': {'pop': 65359, 'tracts': 11}, 'St. Louis': {'pop': 998954, 'tracts': 199}, 'St. Louis City': {'pop': 319294, 'tracts': 106}, 'Ste. Genevieve': {'pop': 18145, 'tracts': 4}, 'Stoddard': {'pop': 29968, 'tracts': 8}, 'Stone': {'pop': 32202, 'tracts': 6}, 'Sullivan': {'pop': 6714, 'tracts': 3}, 'Taney': {'pop': 51675, 'tracts': 10}, 'Texas': {'pop': 26008, 'tracts': 4}, 'Vernon': {'pop': 21159, 'tracts': 6}, 'Warren': {'pop': 32513, 'tracts': 5}, 'Washington': {'pop': 25195, 'tracts': 5}, 'Wayne': {'pop': 13521, 'tracts': 4}, 'Webster': {'pop': 36202, 'tracts': 8}, 'Worth': {'pop': 2171, 'tracts': 1}, 'Wright': {'pop': 18815, 'tracts': 4}}, 'MS': {'Adams': {'pop': 32297, 'tracts': 9}, 'Alcorn': {'pop': 37057, 'tracts': 7}, 'Amite': {'pop': 13131, 'tracts': 3}, 'Attala': {'pop': 19564, 'tracts': 6}, 'Benton': {'pop': 8729, 'tracts': 2}, 'Bolivar': {'pop': 34145, 'tracts': 8}, 'Calhoun': {'pop': 14962, 'tracts': 5}, 'Carroll': {'pop': 10597, 'tracts': 2}, 'Chickasaw': {'pop': 17392, 'tracts': 4}, 'Choctaw': {'pop': 8547, 'tracts': 3}, 'Claiborne': {'pop': 9604, 'tracts': 3}, 'Clarke': {'pop': 16732, 'tracts': 4}, 'Clay': {'pop': 20634, 'tracts': 5}, 'Coahoma': {'pop': 26151, 'tracts': 7}, 'Copiah': {'pop': 29449, 'tracts': 6}, 'Covington': {'pop': 19568, 'tracts': 4}, 'DeSoto': {'pop': 161252, 'tracts': 33}, 'Forrest': {'pop': 74934, 'tracts': 17}, 'Franklin': {'pop': 8118, 'tracts': 2}, 'George': {'pop': 22578, 'tracts': 5}, 'Greene': {'pop': 14400, 'tracts': 2}, 'Grenada': {'pop': 21906, 'tracts': 5}, 'Hancock': {'pop': 43929, 'tracts': 7}, 'Harrison': {'pop': 187105, 'tracts': 46}, 'Hinds': {'pop': 245285, 'tracts': 64}, 'Holmes': {'pop': 19198, 'tracts': 5}, 'Humphreys': {'pop': 9375, 'tracts': 3}, 'Issaquena': {'pop': 1406, 'tracts': 1}, 'Itawamba': {'pop': 23401, 'tracts': 5}, 'Jackson': {'pop': 139668, 'tracts': 28}, 'Jasper': {'pop': 17062, 'tracts': 4}, 'Jefferson': {'pop': 7726, 'tracts': 2}, 'Jefferson Davis': {'pop': 12487, 'tracts': 3}, 'Jones': {'pop': 67761, 'tracts': 14}, 'Kemper': {'pop': 10456, 'tracts': 2}, 'Lafayette': {'pop': 47351, 'tracts': 10}, 'Lamar': {'pop': 55658, 'tracts': 8}, 'Lauderdale': {'pop': 80261, 'tracts': 19}, 'Lawrence': {'pop': 12929, 'tracts': 3}, 'Leake': {'pop': 23805, 'tracts': 5}, 'Lee': {'pop': 82910, 'tracts': 19}, 'Leflore': {'pop': 32317, 'tracts': 8}, 'Lincoln': {'pop': 34869, 'tracts': 6}, 'Lowndes': {'pop': 59779, 'tracts': 14}, 'Madison': {'pop': 95203, 'tracts': 21}, 'Marion': {'pop': 27088, 'tracts': 6}, 'Marshall': {'pop': 37144, 'tracts': 6}, 'Monroe': {'pop': 36989, 'tracts': 9}, 'Montgomery': {'pop': 10925, 'tracts': 3}, 'Neshoba': {'pop': 29676, 'tracts': 7}, 'Newton': {'pop': 21720, 'tracts': 5}, 'Noxubee': {'pop': 11545, 'tracts': 3}, 'Oktibbeha': {'pop': 47671, 'tracts': 8}, 'Panola': {'pop': 34707, 'tracts': 6}, 'Pearl River': {'pop': 55834, 'tracts': 9}, 'Perry': {'pop': 12250, 'tracts': 3}, 'Pike': {'pop': 40404, 'tracts': 8}, 'Pontotoc': {'pop': 29957, 'tracts': 6}, 'Prentiss': {'pop': 25276, 'tracts': 5}, 'Quitman': {'pop': 8223, 'tracts': 3}, 'Rankin': {'pop': 141617, 'tracts': 27}, 'Scott': {'pop': 28264, 'tracts': 6}, 'Sharkey': {'pop': 4916, 'tracts': 2}, 'Simpson': {'pop': 27503, 'tracts': 5}, 'Smith': {'pop': 16491, 'tracts': 3}, 'Stone': {'pop': 17786, 'tracts': 3}, 'Sunflower': {'pop': 29450, 'tracts': 7}, 'Tallahatchie': {'pop': 15378, 'tracts': 4}, 'Tate': {'pop': 28886, 'tracts': 5}, 'Tippah': {'pop': 22232, 'tracts': 4}, 'Tishomingo': {'pop': 19593, 'tracts': 4}, 'Tunica': {'pop': 10778, 'tracts': 3}, 'Union': {'pop': 27134, 'tracts': 6}, 'Walthall': {'pop': 15443, 'tracts': 3}, 'Warren': {'pop': 48773, 'tracts': 12}, 'Washington': {'pop': 51137, 'tracts': 19}, 'Wayne': {'pop': 20747, 'tracts': 4}, 'Webster': {'pop': 10253, 'tracts': 3}, 'Wilkinson': {'pop': 9878, 'tracts': 2}, 'Winston': {'pop': 19198, 'tracts': 5}, 'Yalobusha': {'pop': 12678, 'tracts': 3}, 'Yazoo': {'pop': 28065, 'tracts': 6}}, 'MT': {'Beaverhead': {'pop': 9246, 'tracts': 3}, 'Big Horn': {'pop': 12865, 'tracts': 5}, 'Blaine': {'pop': 6491, 'tracts': 4}, 'Broadwater': {'pop': 5612, 'tracts': 2}, 'Carbon': {'pop': 10078, 'tracts': 5}, 'Carter': {'pop': 1160, 'tracts': 1}, 'Cascade': {'pop': 81327, 'tracts': 22}, 'Chouteau': {'pop': 5813, 'tracts': 2}, 'Custer': {'pop': 11699, 'tracts': 6}, 'Daniels': {'pop': 1751, 'tracts': 1}, 'Dawson': {'pop': 8966, 'tracts': 3}, 'Deer Lodge': {'pop': 9298, 'tracts': 3}, 'Fallon': {'pop': 2890, 'tracts': 1}, 'Fergus': {'pop': 11586, 'tracts': 2}, 'Flathead': {'pop': 90928, 'tracts': 19}, 'Gallatin': {'pop': 89513, 'tracts': 22}, 'Garfield': {'pop': 1206, 'tracts': 1}, 'Glacier': {'pop': 13399, 'tracts': 4}, 'Golden Valley': {'pop': 884, 'tracts': 1}, 'Granite': {'pop': 3079, 'tracts': 1}, 'Hill': {'pop': 16096, 'tracts': 6}, 'Jefferson': {'pop': 11406, 'tracts': 3}, 'Judith Basin': {'pop': 2072, 'tracts': 1}, 'Lake': {'pop': 28746, 'tracts': 8}, 'Lewis and Clark': {'pop': 63395, 'tracts': 14}, 'Liberty': {'pop': 2339, 'tracts': 1}, 'Lincoln': {'pop': 19687, 'tracts': 5}, 'Madison': {'pop': 7691, 'tracts': 3}, 'McCone': {'pop': 1734, 'tracts': 1}, 'Meagher': {'pop': 1891, 'tracts': 1}, 'Mineral': {'pop': 4223, 'tracts': 2}, 'Missoula': {'pop': 109299, 'tracts': 20}, 'Musselshell': {'pop': 4538, 'tracts': 2}, 'Park': {'pop': 15636, 'tracts': 6}, 'Petroleum': {'pop': 494, 'tracts': 1}, 'Phillips': {'pop': 4253, 'tracts': 1}, 'Pondera': {'pop': 6153, 'tracts': 2}, 'Powder River': {'pop': 1743, 'tracts': 1}, 'Powell': {'pop': 7027, 'tracts': 2}, 'Prairie': {'pop': 1179, 'tracts': 1}, 'Ravalli': {'pop': 40212, 'tracts': 10}, 'Richland': {'pop': 9746, 'tracts': 4}, 'Roosevelt': {'pop': 10425, 'tracts': 3}, 'Rosebud': {'pop': 9233, 'tracts': 4}, 'Sanders': {'pop': 11413, 'tracts': 3}, 'Sheridan': {'pop': 3384, 'tracts': 2}, 'Silver Bow': {'pop': 34200, 'tracts': 8}, 'Stillwater': {'pop': 9117, 'tracts': 3}, 'Sweet Grass': {'pop': 3651, 'tracts': 1}, 'Teton': {'pop': 6073, 'tracts': 3}, 'Toole': {'pop': 5324, 'tracts': 3}, 'Treasure': {'pop': 718, 'tracts': 1}, 'Valley': {'pop': 7369, 'tracts': 3}, 'Wheatland': {'pop': 2168, 'tracts': 1}, 'Wibaux': {'pop': 1017, 'tracts': 1}, 'Yellowstone': {'pop': 147972, 'tracts': 32}}, 'NC': {'Alamance': {'pop': 151131, 'tracts': 36}, 'Alexander': {'pop': 37198, 'tracts': 7}, 'Alleghany': {'pop': 11155, 'tracts': 3}, 'Anson': {'pop': 26948, 'tracts': 6}, 'Ashe': {'pop': 27281, 'tracts': 6}, 'Avery': {'pop': 17797, 'tracts': 5}, 'Beaufort': {'pop': 47759, 'tracts': 11}, 'Bertie': {'pop': 21282, 'tracts': 4}, 'Bladen': {'pop': 35190, 'tracts': 6}, 'Brunswick': {'pop': 107431, 'tracts': 33}, 'Buncombe': {'pop': 238318, 'tracts': 56}, 'Burke': {'pop': 90912, 'tracts': 18}, 'Cabarrus': {'pop': 178011, 'tracts': 37}, 'Caldwell': {'pop': 83029, 'tracts': 17}, 'Camden': {'pop': 9980, 'tracts': 2}, 'Carteret': {'pop': 66469, 'tracts': 38}, 'Caswell': {'pop': 23719, 'tracts': 6}, 'Catawba': {'pop': 154358, 'tracts': 31}, 'Chatham': {'pop': 63505, 'tracts': 13}, 'Cherokee': {'pop': 27444, 'tracts': 7}, 'Chowan': {'pop': 14793, 'tracts': 3}, 'Clay': {'pop': 10587, 'tracts': 2}, 'Cleveland': {'pop': 98078, 'tracts': 22}, 'Columbus': {'pop': 58098, 'tracts': 13}, 'Craven': {'pop': 103505, 'tracts': 21}, 'Cumberland': {'pop': 319431, 'tracts': 68}, 'Currituck': {'pop': 23547, 'tracts': 8}, 'Dare': {'pop': 33920, 'tracts': 11}, 'Davidson': {'pop': 162878, 'tracts': 34}, 'Davie': {'pop': 41240, 'tracts': 7}, 'Duplin': {'pop': 58505, 'tracts': 11}, 'Durham': {'pop': 267587, 'tracts': 60}, 'Edgecombe': {'pop': 56552, 'tracts': 14}, 'Forsyth': {'pop': 350670, 'tracts': 93}, 'Franklin': {'pop': 60619, 'tracts': 12}, 'Gaston': {'pop': 206086, 'tracts': 65}, 'Gates': {'pop': 12197, 'tracts': 3}, 'Graham': {'pop': 8861, 'tracts': 3}, 'Granville': {'pop': 59916, 'tracts': 13}, 'Greene': {'pop': 21362, 'tracts': 4}, 'Guilford': {'pop': 488406, 'tracts': 119}, 'Halifax': {'pop': 54691, 'tracts': 12}, 'Harnett': {'pop': 114678, 'tracts': 27}, 'Haywood': {'pop': 59036, 'tracts': 16}, 'Henderson': {'pop': 106740, 'tracts': 27}, 'Hertford': {'pop': 24669, 'tracts': 5}, 'Hoke': {'pop': 46952, 'tracts': 9}, 'Hyde': {'pop': 5810, 'tracts': 2}, 'Iredell': {'pop': 159437, 'tracts': 44}, 'Jackson': {'pop': 40271, 'tracts': 9}, 'Johnston': {'pop': 168878, 'tracts': 25}, 'Jones': {'pop': 10153, 'tracts': 3}, 'Lee': {'pop': 57866, 'tracts': 13}, 'Lenoir': {'pop': 59495, 'tracts': 15}, 'Lincoln': {'pop': 78265, 'tracts': 18}, 'Macon': {'pop': 33922, 'tracts': 9}, 'Madison': {'pop': 20764, 'tracts': 6}, 'Martin': {'pop': 24505, 'tracts': 6}, 'McDowell': {'pop': 44996, 'tracts': 10}, 'Mecklenburg': {'pop': 919628, 'tracts': 233}, 'Mitchell': {'pop': 15579, 'tracts': 4}, 'Montgomery': {'pop': 27798, 'tracts': 6}, 'Moore': {'pop': 88247, 'tracts': 18}, 'Nash': {'pop': 95840, 'tracts': 18}, 'New Hanover': {'pop': 202667, 'tracts': 45}, 'Northampton': {'pop': 22099, 'tracts': 5}, 'Onslow': {'pop': 177772, 'tracts': 32}, 'Orange': {'pop': 133801, 'tracts': 28}, 'Pamlico': {'pop': 13144, 'tracts': 4}, 'Pasquotank': {'pop': 40661, 'tracts': 10}, 'Pender': {'pop': 52217, 'tracts': 16}, 'Perquimans': {'pop': 13453, 'tracts': 3}, 'Person': {'pop': 39464, 'tracts': 7}, 'Pitt': {'pop': 168148, 'tracts': 32}, 'Polk': {'pop': 20510, 'tracts': 7}, 'Randolph': {'pop': 141752, 'tracts': 28}, 'Richmond': {'pop': 46639, 'tracts': 11}, 'Robeson': {'pop': 134168, 'tracts': 31}, 'Rockingham': {'pop': 93643, 'tracts': 21}, 'Rowan': {'pop': 138428, 'tracts': 30}, 'Rutherford': {'pop': 67810, 'tracts': 13}, 'Sampson': {'pop': 63431, 'tracts': 11}, 'Scotland': {'pop': 36157, 'tracts': 7}, 'Stanly': {'pop': 60585, 'tracts': 13}, 'Stokes': {'pop': 47401, 'tracts': 9}, 'Surry': {'pop': 73673, 'tracts': 22}, 'Swain': {'pop': 13981, 'tracts': 5}, 'Transylvania': {'pop': 33090, 'tracts': 7}, 'Tyrrell': {'pop': 4407, 'tracts': 1}, 'Union': {'pop': 201292, 'tracts': 41}, 'Vance': {'pop': 45422, 'tracts': 10}, 'Wake': {'pop': 900993, 'tracts': 187}, 'Warren': {'pop': 20972, 'tracts': 6}, 'Washington': {'pop': 13228, 'tracts': 3}, 'Watauga': {'pop': 51079, 'tracts': 13}, 'Wayne': {'pop': 122623, 'tracts': 26}, 'Wilkes': {'pop': 69340, 'tracts': 14}, 'Wilson': {'pop': 81234, 'tracts': 19}, 'Yadkin': {'pop': 38406, 'tracts': 7}, 'Yancey': {'pop': 17818, 'tracts': 5}}, 'ND': {'Adams': {'pop': 2343, 'tracts': 1}, 'Barnes': {'pop': 11066, 'tracts': 4}, 'Benson': {'pop': 6660, 'tracts': 4}, 'Billings': {'pop': 783, 'tracts': 1}, 'Bottineau': {'pop': 6429, 'tracts': 3}, 'Bowman': {'pop': 3151, 'tracts': 2}, 'Burke': {'pop': 1968, 'tracts': 1}, 'Burleigh': {'pop': 81308, 'tracts': 19}, 'Cass': {'pop': 149778, 'tracts': 33}, 'Cavalier': {'pop': 3993, 'tracts': 2}, 'Dickey': {'pop': 5289, 'tracts': 3}, 'Divide': {'pop': 2071, 'tracts': 1}, 'Dunn': {'pop': 3536, 'tracts': 1}, 'Eddy': {'pop': 2385, 'tracts': 1}, 'Emmons': {'pop': 3550, 'tracts': 1}, 'Foster': {'pop': 3343, 'tracts': 1}, 'Golden Valley': {'pop': 1680, 'tracts': 1}, 'Grand Forks': {'pop': 66861, 'tracts': 18}, 'Grant': {'pop': 2394, 'tracts': 1}, 'Griggs': {'pop': 2420, 'tracts': 1}, 'Hettinger': {'pop': 2477, 'tracts': 2}, 'Kidder': {'pop': 2435, 'tracts': 1}, 'LaMoure': {'pop': 4139, 'tracts': 2}, 'Logan': {'pop': 1990, 'tracts': 1}, 'McHenry': {'pop': 5395, 'tracts': 2}, 'McIntosh': {'pop': 2809, 'tracts': 1}, 'McKenzie': {'pop': 6360, 'tracts': 4}, 'McLean': {'pop': 8962, 'tracts': 2}, 'Mercer': {'pop': 8424, 'tracts': 3}, 'Morton': {'pop': 27471, 'tracts': 5}, 'Mountrail': {'pop': 7673, 'tracts': 3}, 'Nelson': {'pop': 3126, 'tracts': 1}, 'Oliver': {'pop': 1846, 'tracts': 1}, 'Pembina': {'pop': 7413, 'tracts': 5}, 'Pierce': {'pop': 4357, 'tracts': 2}, 'Ramsey': {'pop': 11451, 'tracts': 3}, 'Ransom': {'pop': 5457, 'tracts': 3}, 'Renville': {'pop': 2470, 'tracts': 1}, 'Richland': {'pop': 16321, 'tracts': 6}, 'Rolette': {'pop': 13937, 'tracts': 4}, 'Sargent': {'pop': 3829, 'tracts': 2}, 'Sheridan': {'pop': 1321, 'tracts': 1}, 'Sioux': {'pop': 4153, 'tracts': 2}, 'Slope': {'pop': 727, 'tracts': 1}, 'Stark': {'pop': 24199, 'tracts': 8}, 'Steele': {'pop': 1975, 'tracts': 1}, 'Stutsman': {'pop': 21100, 'tracts': 6}, 'Towner': {'pop': 2246, 'tracts': 1}, 'Traill': {'pop': 8121, 'tracts': 4}, 'Walsh': {'pop': 11119, 'tracts': 6}, 'Ward': {'pop': 61675, 'tracts': 13}, 'Wells': {'pop': 4207, 'tracts': 2}, 'Williams': {'pop': 22398, 'tracts': 7}}, 'NE': {'Adams': {'pop': 31364, 'tracts': 9}, 'Antelope': {'pop': 6685, 'tracts': 3}, 'Arthur': {'pop': 460, 'tracts': 1}, 'Banner': {'pop': 690, 'tracts': 1}, 'Blaine': {'pop': 478, 'tracts': 1}, 'Boone': {'pop': 5505, 'tracts': 2}, 'Box Butte': {'pop': 11308, 'tracts': 3}, 'Boyd': {'pop': 2099, 'tracts': 1}, 'Brown': {'pop': 3145, 'tracts': 1}, 'Buffalo': {'pop': 46102, 'tracts': 11}, 'Burt': {'pop': 6858, 'tracts': 3}, 'Butler': {'pop': 8395, 'tracts': 3}, 'Cass': {'pop': 25241, 'tracts': 6}, 'Cedar': {'pop': 8852, 'tracts': 2}, 'Chase': {'pop': 3966, 'tracts': 1}, 'Cherry': {'pop': 5713, 'tracts': 2}, 'Cheyenne': {'pop': 9998, 'tracts': 3}, 'Clay': {'pop': 6542, 'tracts': 2}, 'Colfax': {'pop': 10515, 'tracts': 3}, 'Cuming': {'pop': 9139, 'tracts': 3}, 'Custer': {'pop': 10939, 'tracts': 4}, 'Dakota': {'pop': 21006, 'tracts': 4}, 'Dawes': {'pop': 9182, 'tracts': 2}, 'Dawson': {'pop': 24326, 'tracts': 7}, 'Deuel': {'pop': 1941, 'tracts': 1}, 'Dixon': {'pop': 6000, 'tracts': 2}, 'Dodge': {'pop': 36691, 'tracts': 9}, 'Douglas': {'pop': 517110, 'tracts': 156}, 'Dundy': {'pop': 2008, 'tracts': 1}, 'Fillmore': {'pop': 5890, 'tracts': 2}, 'Franklin': {'pop': 3225, 'tracts': 2}, 'Frontier': {'pop': 2756, 'tracts': 1}, 'Furnas': {'pop': 4959, 'tracts': 1}, 'Gage': {'pop': 22311, 'tracts': 7}, 'Garden': {'pop': 2057, 'tracts': 1}, 'Garfield': {'pop': 2049, 'tracts': 1}, 'Gosper': {'pop': 2044, 'tracts': 1}, 'Grant': {'pop': 614, 'tracts': 1}, 'Greeley': {'pop': 2538, 'tracts': 1}, 'Hall': {'pop': 58607, 'tracts': 14}, 'Hamilton': {'pop': 9124, 'tracts': 3}, 'Harlan': {'pop': 3423, 'tracts': 1}, 'Hayes': {'pop': 967, 'tracts': 1}, 'Hitchcock': {'pop': 2908, 'tracts': 1}, 'Holt': {'pop': 10435, 'tracts': 4}, 'Hooker': {'pop': 736, 'tracts': 1}, 'Howard': {'pop': 6274, 'tracts': 2}, 'Jefferson': {'pop': 7547, 'tracts': 3}, 'Johnson': {'pop': 5217, 'tracts': 2}, 'Kearney': {'pop': 6489, 'tracts': 2}, 'Keith': {'pop': 8368, 'tracts': 3}, 'Keya Paha': {'pop': 824, 'tracts': 1}, 'Kimball': {'pop': 3821, 'tracts': 1}, 'Knox': {'pop': 8701, 'tracts': 3}, 'Lancaster': {'pop': 285407, 'tracts': 74}, 'Lincoln': {'pop': 36288, 'tracts': 8}, 'Logan': {'pop': 763, 'tracts': 1}, 'Loup': {'pop': 632, 'tracts': 1}, 'Madison': {'pop': 34876, 'tracts': 9}, 'McPherson': {'pop': 539, 'tracts': 1}, 'Merrick': {'pop': 7845, 'tracts': 3}, 'Morrill': {'pop': 5042, 'tracts': 1}, 'Nance': {'pop': 3735, 'tracts': 1}, 'Nemaha': {'pop': 7248, 'tracts': 2}, 'Nuckolls': {'pop': 4500, 'tracts': 2}, 'Otoe': {'pop': 15740, 'tracts': 5}, 'Pawnee': {'pop': 2773, 'tracts': 1}, 'Perkins': {'pop': 2970, 'tracts': 1}, 'Phelps': {'pop': 9188, 'tracts': 3}, 'Pierce': {'pop': 7266, 'tracts': 2}, 'Platte': {'pop': 32237, 'tracts': 7}, 'Polk': {'pop': 5406, 'tracts': 2}, 'Red Willow': {'pop': 11055, 'tracts': 3}, 'Richardson': {'pop': 8363, 'tracts': 3}, 'Rock': {'pop': 1526, 'tracts': 1}, 'Saline': {'pop': 14200, 'tracts': 4}, 'Sarpy': {'pop': 158840, 'tracts': 43}, 'Saunders': {'pop': 20780, 'tracts': 5}, 'Scotts Bluff': {'pop': 36970, 'tracts': 11}, 'Seward': {'pop': 16750, 'tracts': 4}, 'Sheridan': {'pop': 5469, 'tracts': 2}, 'Sherman': {'pop': 3152, 'tracts': 1}, 'Sioux': {'pop': 1311, 'tracts': 1}, 'Stanton': {'pop': 6129, 'tracts': 2}, 'Thayer': {'pop': 5228, 'tracts': 2}, 'Thomas': {'pop': 647, 'tracts': 1}, 'Thurston': {'pop': 6940, 'tracts': 2}, 'Valley': {'pop': 4260, 'tracts': 2}, 'Washington': {'pop': 20234, 'tracts': 5}, 'Wayne': {'pop': 9595, 'tracts': 2}, 'Webster': {'pop': 3812, 'tracts': 2}, 'Wheeler': {'pop': 818, 'tracts': 1}, 'York': {'pop': 13665, 'tracts': 4}}, 'NH': {'Belknap': {'pop': 60088, 'tracts': 15}, 'Carroll': {'pop': 47818, 'tracts': 11}, 'Cheshire': {'pop': 77117, 'tracts': 16}, 'Coos': {'pop': 33055, 'tracts': 11}, 'Grafton': {'pop': 89118, 'tracts': 19}, 'Hillsborough': {'pop': 400721, 'tracts': 86}, 'Merrimack': {'pop': 146445, 'tracts': 36}, 'Rockingham': {'pop': 295223, 'tracts': 66}, 'Strafford': {'pop': 123143, 'tracts': 25}, 'Sullivan': {'pop': 43742, 'tracts': 10}}, 'NJ': {'Atlantic': {'pop': 274549, 'tracts': 69}, 'Bergen': {'pop': 905116, 'tracts': 179}, 'Burlington': {'pop': 448734, 'tracts': 114}, 'Camden': {'pop': 513657, 'tracts': 127}, 'Cape May': {'pop': 97265, 'tracts': 32}, 'Cumberland': {'pop': 156898, 'tracts': 35}, 'Essex': {'pop': 783969, 'tracts': 210}, 'Gloucester': {'pop': 288288, 'tracts': 63}, 'Hudson': {'pop': 634266, 'tracts': 166}, 'Hunterdon': {'pop': 128349, 'tracts': 26}, 'Mercer': {'pop': 366513, 'tracts': 77}, 'Middlesex': {'pop': 809858, 'tracts': 175}, 'Monmouth': {'pop': 630380, 'tracts': 144}, 'Morris': {'pop': 492276, 'tracts': 100}, 'Ocean': {'pop': 576567, 'tracts': 126}, 'Passaic': {'pop': 501226, 'tracts': 100}, 'Salem': {'pop': 66083, 'tracts': 24}, 'Somerset': {'pop': 323444, 'tracts': 68}, 'Sussex': {'pop': 149265, 'tracts': 41}, 'Union': {'pop': 536499, 'tracts': 108}, 'Warren': {'pop': 108692, 'tracts': 23}}, 'NM': {'Bernalillo': {'pop': 662564, 'tracts': 153}, 'Catron': {'pop': 3725, 'tracts': 1}, 'Chaves': {'pop': 65645, 'tracts': 16}, 'Cibola': {'pop': 27213, 'tracts': 7}, 'Colfax': {'pop': 13750, 'tracts': 3}, 'Curry': {'pop': 48376, 'tracts': 12}, 'De Baca': {'pop': 2022, 'tracts': 1}, 'Dona Ana': {'pop': 209233, 'tracts': 41}, 'Eddy': {'pop': 53829, 'tracts': 12}, 'Grant': {'pop': 29514, 'tracts': 8}, 'Guadalupe': {'pop': 4687, 'tracts': 1}, 'Harding': {'pop': 695, 'tracts': 1}, 'Hidalgo': {'pop': 4894, 'tracts': 2}, 'Lea': {'pop': 64727, 'tracts': 18}, 'Lincoln': {'pop': 20497, 'tracts': 5}, 'Los Alamos': {'pop': 17950, 'tracts': 4}, 'Luna': {'pop': 25095, 'tracts': 6}, 'McKinley': {'pop': 71492, 'tracts': 17}, 'Mora': {'pop': 4881, 'tracts': 1}, 'Otero': {'pop': 63797, 'tracts': 16}, 'Quay': {'pop': 9041, 'tracts': 3}, 'Rio Arriba': {'pop': 40246, 'tracts': 9}, 'Roosevelt': {'pop': 19846, 'tracts': 5}, 'San Juan': {'pop': 130044, 'tracts': 33}, 'San Miguel': {'pop': 29393, 'tracts': 7}, 'Sandoval': {'pop': 131561, 'tracts': 28}, 'Santa Fe': {'pop': 144170, 'tracts': 50}, 'Sierra': {'pop': 11988, 'tracts': 4}, 'Socorro': {'pop': 17866, 'tracts': 6}, 'Taos': {'pop': 32937, 'tracts': 6}, 'Torrance': {'pop': 16383, 'tracts': 4}, 'Union': {'pop': 4549, 'tracts': 1}, 'Valencia': {'pop': 76569, 'tracts': 18}}, 'NV': {'Carson City': {'pop': 55274, 'tracts': 14}, 'Churchill': {'pop': 24877, 'tracts': 7}, 'Clark': {'pop': 1951269, 'tracts': 487}, 'Douglas': {'pop': 46997, 'tracts': 17}, 'Elko': {'pop': 48818, 'tracts': 14}, 'Esmeralda': {'pop': 783, 'tracts': 1}, 'Eureka': {'pop': 1987, 'tracts': 1}, 'Humboldt': {'pop': 16528, 'tracts': 4}, 'Lander': {'pop': 5775, 'tracts': 1}, 'Lincoln': {'pop': 5345, 'tracts': 2}, 'Lyon': {'pop': 51980, 'tracts': 10}, 'Mineral': {'pop': 4772, 'tracts': 2}, 'Nye': {'pop': 43946, 'tracts': 10}, 'Pershing': {'pop': 6753, 'tracts': 1}, 'Storey': {'pop': 4010, 'tracts': 1}, 'Washoe': {'pop': 421407, 'tracts': 112}, 'White Pine': {'pop': 10030, 'tracts': 3}}, 'NY': {'Albany': {'pop': 304204, 'tracts': 75}, 'Allegany': {'pop': 48946, 'tracts': 13}, 'Bronx': {'pop': 1385108, 'tracts': 339}, 'Broome': {'pop': 200600, 'tracts': 55}, 'Cattaraugus': {'pop': 80317, 'tracts': 21}, 'Cayuga': {'pop': 80026, 'tracts': 20}, 'Chautauqua': {'pop': 134905, 'tracts': 35}, 'Chemung': {'pop': 88830, 'tracts': 22}, 'Chenango': {'pop': 50477, 'tracts': 12}, 'Clinton': {'pop': 82128, 'tracts': 19}, 'Columbia': {'pop': 63096, 'tracts': 21}, 'Cortland': {'pop': 49336, 'tracts': 12}, 'Delaware': {'pop': 47980, 'tracts': 14}, 'Dutchess': {'pop': 297488, 'tracts': 79}, 'Erie': {'pop': 919040, 'tracts': 237}, 'Essex': {'pop': 39370, 'tracts': 13}, 'Franklin': {'pop': 51599, 'tracts': 14}, 'Fulton': {'pop': 55531, 'tracts': 15}, 'Genesee': {'pop': 60079, 'tracts': 15}, 'Greene': {'pop': 49221, 'tracts': 15}, 'Hamilton': {'pop': 4836, 'tracts': 4}, 'Herkimer': {'pop': 64519, 'tracts': 19}, 'Jefferson': {'pop': 116229, 'tracts': 26}, 'Kings': {'pop': 2504700, 'tracts': 760}, 'Lewis': {'pop': 27087, 'tracts': 7}, 'Livingston': {'pop': 65393, 'tracts': 15}, 'Madison': {'pop': 73442, 'tracts': 16}, 'Monroe': {'pop': 744344, 'tracts': 192}, 'Montgomery': {'pop': 50219, 'tracts': 16}, 'Nassau': {'pop': 1339532, 'tracts': 280}, 'New York': {'pop': 1585873, 'tracts': 288}, 'Niagara': {'pop': 216469, 'tracts': 61}, 'Oneida': {'pop': 234878, 'tracts': 74}, 'Onondaga': {'pop': 467026, 'tracts': 140}, 'Ontario': {'pop': 107931, 'tracts': 25}, 'Orange': {'pop': 372813, 'tracts': 79}, 'Orleans': {'pop': 42883, 'tracts': 11}, 'Oswego': {'pop': 122109, 'tracts': 29}, 'Otsego': {'pop': 62259, 'tracts': 17}, 'Putnam': {'pop': 99710, 'tracts': 19}, 'Queens': {'pop': 2230722, 'tracts': 669}, 'Rensselaer': {'pop': 159429, 'tracts': 42}, 'Richmond': {'pop': 468730, 'tracts': 109}, 'Rockland': {'pop': 311687, 'tracts': 65}, 'Saratoga': {'pop': 219607, 'tracts': 50}, 'Schenectady': {'pop': 154727, 'tracts': 43}, 'Schoharie': {'pop': 32749, 'tracts': 8}, 'Schuyler': {'pop': 18343, 'tracts': 5}, 'Seneca': {'pop': 35251, 'tracts': 10}, 'St. Lawrence': {'pop': 111944, 'tracts': 28}, 'Steuben': {'pop': 98990, 'tracts': 30}, 'Suffolk': {'pop': 1493350, 'tracts': 322}, 'Sullivan': {'pop': 77547, 'tracts': 24}, 'Tioga': {'pop': 51125, 'tracts': 10}, 'Tompkins': {'pop': 101564, 'tracts': 23}, 'Ulster': {'pop': 182493, 'tracts': 47}, 'Warren': {'pop': 65707, 'tracts': 19}, 'Washington': {'pop': 63216, 'tracts': 17}, 'Wayne': {'pop': 93772, 'tracts': 23}, 'Westchester': {'pop': 949113, 'tracts': 223}, 'Wyoming': {'pop': 42155, 'tracts': 11}, 'Yates': {'pop': 25348, 'tracts': 5}}, 'OH': {'Adams': {'pop': 28550, 'tracts': 6}, 'Allen': {'pop': 106331, 'tracts': 33}, 'Ashland': {'pop': 53139, 'tracts': 11}, 'Ashtabula': {'pop': 101497, 'tracts': 25}, 'Athens': {'pop': 64757, 'tracts': 15}, 'Auglaize': {'pop': 45949, 'tracts': 11}, 'Belmont': {'pop': 70400, 'tracts': 20}, 'Brown': {'pop': 44846, 'tracts': 9}, 'Butler': {'pop': 368130, 'tracts': 80}, 'Carroll': {'pop': 28836, 'tracts': 7}, 'Champaign': {'pop': 40097, 'tracts': 10}, 'Clark': {'pop': 138333, 'tracts': 44}, 'Clermont': {'pop': 197363, 'tracts': 40}, 'Clinton': {'pop': 42040, 'tracts': 9}, 'Columbiana': {'pop': 107841, 'tracts': 24}, 'Coshocton': {'pop': 36901, 'tracts': 10}, 'Crawford': {'pop': 43784, 'tracts': 13}, 'Cuyahoga': {'pop': 1280122, 'tracts': 447}, 'Darke': {'pop': 52959, 'tracts': 12}, 'Defiance': {'pop': 39037, 'tracts': 9}, 'Delaware': {'pop': 174214, 'tracts': 35}, 'Erie': {'pop': 77079, 'tracts': 19}, 'Fairfield': {'pop': 146156, 'tracts': 28}, 'Fayette': {'pop': 29030, 'tracts': 7}, 'Franklin': {'pop': 1163414, 'tracts': 284}, 'Fulton': {'pop': 42698, 'tracts': 9}, 'Gallia': {'pop': 30934, 'tracts': 7}, 'Geauga': {'pop': 93389, 'tracts': 21}, 'Greene': {'pop': 161573, 'tracts': 35}, 'Guernsey': {'pop': 40087, 'tracts': 10}, 'Hamilton': {'pop': 802374, 'tracts': 222}, 'Hancock': {'pop': 74782, 'tracts': 13}, 'Hardin': {'pop': 32058, 'tracts': 7}, 'Harrison': {'pop': 15864, 'tracts': 5}, 'Henry': {'pop': 28215, 'tracts': 7}, 'Highland': {'pop': 43589, 'tracts': 9}, 'Hocking': {'pop': 29380, 'tracts': 7}, 'Holmes': {'pop': 42366, 'tracts': 8}, 'Huron': {'pop': 59626, 'tracts': 13}, 'Jackson': {'pop': 33225, 'tracts': 7}, 'Jefferson': {'pop': 69709, 'tracts': 23}, 'Knox': {'pop': 60921, 'tracts': 12}, 'Lake': {'pop': 230041, 'tracts': 59}, 'Lawrence': {'pop': 62450, 'tracts': 16}, 'Licking': {'pop': 166492, 'tracts': 32}, 'Logan': {'pop': 45858, 'tracts': 11}, 'Lorain': {'pop': 301356, 'tracts': 73}, 'Lucas': {'pop': 441815, 'tracts': 127}, 'Madison': {'pop': 43435, 'tracts': 12}, 'Mahoning': {'pop': 238823, 'tracts': 70}, 'Marion': {'pop': 66501, 'tracts': 18}, 'Medina': {'pop': 172332, 'tracts': 37}, 'Meigs': {'pop': 23770, 'tracts': 6}, 'Mercer': {'pop': 40814, 'tracts': 9}, 'Miami': {'pop': 102506, 'tracts': 21}, 'Monroe': {'pop': 14642, 'tracts': 4}, 'Montgomery': {'pop': 535153, 'tracts': 153}, 'Morgan': {'pop': 15054, 'tracts': 4}, 'Morrow': {'pop': 34827, 'tracts': 6}, 'Muskingum': {'pop': 86074, 'tracts': 19}, 'Noble': {'pop': 14645, 'tracts': 3}, 'Ottawa': {'pop': 41428, 'tracts': 13}, 'Paulding': {'pop': 19614, 'tracts': 5}, 'Perry': {'pop': 36058, 'tracts': 6}, 'Pickaway': {'pop': 55698, 'tracts': 13}, 'Pike': {'pop': 28709, 'tracts': 6}, 'Portage': {'pop': 161419, 'tracts': 35}, 'Preble': {'pop': 42270, 'tracts': 12}, 'Putnam': {'pop': 34499, 'tracts': 7}, 'Richland': {'pop': 124475, 'tracts': 30}, 'Ross': {'pop': 78064, 'tracts': 17}, 'Sandusky': {'pop': 60944, 'tracts': 15}, 'Scioto': {'pop': 79499, 'tracts': 20}, 'Seneca': {'pop': 56745, 'tracts': 14}, 'Shelby': {'pop': 49423, 'tracts': 10}, 'Stark': {'pop': 375586, 'tracts': 86}, 'Summit': {'pop': 541781, 'tracts': 135}, 'Trumbull': {'pop': 210312, 'tracts': 55}, 'Tuscarawas': {'pop': 92582, 'tracts': 21}, 'Union': {'pop': 52300, 'tracts': 10}, 'Van Wert': {'pop': 28744, 'tracts': 9}, 'Vinton': {'pop': 13435, 'tracts': 3}, 'Warren': {'pop': 212693, 'tracts': 33}, 'Washington': {'pop': 61778, 'tracts': 16}, 'Wayne': {'pop': 114520, 'tracts': 32}, 'Williams': {'pop': 37642, 'tracts': 9}, 'Wood': {'pop': 125488, 'tracts': 28}, 'Wyandot': {'pop': 22615, 'tracts': 6}}, 'OK': {'Adair': {'pop': 22683, 'tracts': 5}, 'Alfalfa': {'pop': 5642, 'tracts': 3}, 'Atoka': {'pop': 14182, 'tracts': 4}, 'Beaver': {'pop': 5636, 'tracts': 3}, 'Beckham': {'pop': 22119, 'tracts': 4}, 'Blaine': {'pop': 11943, 'tracts': 5}, 'Bryan': {'pop': 42416, 'tracts': 11}, 'Caddo': {'pop': 29600, 'tracts': 8}, 'Canadian': {'pop': 115541, 'tracts': 29}, 'Carter': {'pop': 47557, 'tracts': 11}, 'Cherokee': {'pop': 46987, 'tracts': 9}, 'Choctaw': {'pop': 15205, 'tracts': 5}, 'Cimarron': {'pop': 2475, 'tracts': 2}, 'Cleveland': {'pop': 255755, 'tracts': 62}, 'Coal': {'pop': 5925, 'tracts': 2}, 'Comanche': {'pop': 124098, 'tracts': 32}, 'Cotton': {'pop': 6193, 'tracts': 2}, 'Craig': {'pop': 15029, 'tracts': 5}, 'Creek': {'pop': 69967, 'tracts': 21}, 'Custer': {'pop': 27469, 'tracts': 5}, 'Delaware': {'pop': 41487, 'tracts': 9}, 'Dewey': {'pop': 4810, 'tracts': 3}, 'Ellis': {'pop': 4151, 'tracts': 2}, 'Garfield': {'pop': 60580, 'tracts': 12}, 'Garvin': {'pop': 27576, 'tracts': 9}, 'Grady': {'pop': 52431, 'tracts': 10}, 'Grant': {'pop': 4527, 'tracts': 2}, 'Greer': {'pop': 6239, 'tracts': 2}, 'Harmon': {'pop': 2922, 'tracts': 1}, 'Harper': {'pop': 3685, 'tracts': 2}, 'Haskell': {'pop': 12769, 'tracts': 4}, 'Hughes': {'pop': 14003, 'tracts': 5}, 'Jackson': {'pop': 26446, 'tracts': 8}, 'Jefferson': {'pop': 6472, 'tracts': 3}, 'Johnston': {'pop': 10957, 'tracts': 3}, 'Kay': {'pop': 46562, 'tracts': 11}, 'Kingfisher': {'pop': 15034, 'tracts': 4}, 'Kiowa': {'pop': 9446, 'tracts': 3}, 'Latimer': {'pop': 11154, 'tracts': 3}, 'Le Flore': {'pop': 50384, 'tracts': 12}, 'Lincoln': {'pop': 34273, 'tracts': 7}, 'Logan': {'pop': 41848, 'tracts': 8}, 'Love': {'pop': 9423, 'tracts': 3}, 'Major': {'pop': 7527, 'tracts': 3}, 'Marshall': {'pop': 15840, 'tracts': 4}, 'Mayes': {'pop': 41259, 'tracts': 9}, 'McClain': {'pop': 34506, 'tracts': 6}, 'McCurtain': {'pop': 33151, 'tracts': 8}, 'McIntosh': {'pop': 20252, 'tracts': 6}, 'Murray': {'pop': 13488, 'tracts': 3}, 'Muskogee': {'pop': 70990, 'tracts': 16}, 'Noble': {'pop': 11561, 'tracts': 4}, 'Nowata': {'pop': 10536, 'tracts': 4}, 'Okfuskee': {'pop': 12191, 'tracts': 4}, 'Oklahoma': {'pop': 718633, 'tracts': 241}, 'Okmulgee': {'pop': 40069, 'tracts': 10}, 'Osage': {'pop': 47472, 'tracts': 11}, 'Ottawa': {'pop': 31848, 'tracts': 9}, 'Pawnee': {'pop': 16577, 'tracts': 5}, 'Payne': {'pop': 77350, 'tracts': 17}, 'Pittsburg': {'pop': 45837, 'tracts': 13}, 'Pontotoc': {'pop': 37492, 'tracts': 10}, 'Pottawatomie': {'pop': 69442, 'tracts': 16}, 'Pushmataha': {'pop': 11572, 'tracts': 3}, 'Roger Mills': {'pop': 3647, 'tracts': 1}, 'Rogers': {'pop': 86905, 'tracts': 28}, 'Seminole': {'pop': 25482, 'tracts': 9}, 'Sequoyah': {'pop': 42391, 'tracts': 9}, 'Stephens': {'pop': 45048, 'tracts': 11}, 'Texas': {'pop': 20640, 'tracts': 5}, 'Tillman': {'pop': 7992, 'tracts': 5}, 'Tulsa': {'pop': 603403, 'tracts': 175}, 'Wagoner': {'pop': 73085, 'tracts': 22}, 'Washington': {'pop': 50976, 'tracts': 13}, 'Washita': {'pop': 11629, 'tracts': 4}, 'Woods': {'pop': 8878, 'tracts': 3}, 'Woodward': {'pop': 20081, 'tracts': 5}}, 'OR': {'Baker': {'pop': 16134, 'tracts': 6}, 'Benton': {'pop': 85579, 'tracts': 18}, 'Clackamas': {'pop': 375992, 'tracts': 80}, 'Clatsop': {'pop': 37039, 'tracts': 12}, 'Columbia': {'pop': 49351, 'tracts': 10}, 'Coos': {'pop': 63043, 'tracts': 13}, 'Crook': {'pop': 20978, 'tracts': 4}, 'Curry': {'pop': 22364, 'tracts': 6}, 'Deschutes': {'pop': 157733, 'tracts': 24}, 'Douglas': {'pop': 107667, 'tracts': 22}, 'Gilliam': {'pop': 1871, 'tracts': 1}, 'Grant': {'pop': 7445, 'tracts': 2}, 'Harney': {'pop': 7422, 'tracts': 2}, 'Hood River': {'pop': 22346, 'tracts': 4}, 'Jackson': {'pop': 203206, 'tracts': 41}, 'Jefferson': {'pop': 21720, 'tracts': 6}, 'Josephine': {'pop': 82713, 'tracts': 16}, 'Klamath': {'pop': 66380, 'tracts': 20}, 'Lake': {'pop': 7895, 'tracts': 2}, 'Lane': {'pop': 351715, 'tracts': 86}, 'Lincoln': {'pop': 46034, 'tracts': 18}, 'Linn': {'pop': 116672, 'tracts': 21}, 'Malheur': {'pop': 31313, 'tracts': 8}, 'Marion': {'pop': 315335, 'tracts': 58}, 'Morrow': {'pop': 11173, 'tracts': 2}, 'Multnomah': {'pop': 735334, 'tracts': 171}, 'Polk': {'pop': 75403, 'tracts': 12}, 'Sherman': {'pop': 1765, 'tracts': 1}, 'Tillamook': {'pop': 25250, 'tracts': 8}, 'Umatilla': {'pop': 75889, 'tracts': 15}, 'Union': {'pop': 25748, 'tracts': 8}, 'Wallowa': {'pop': 7008, 'tracts': 3}, 'Wasco': {'pop': 25213, 'tracts': 8}, 'Washington': {'pop': 529710, 'tracts': 104}, 'Wheeler': {'pop': 1441, 'tracts': 1}, 'Yamhill': {'pop': 99193, 'tracts': 17}}, 'PA': {'Adams': {'pop': 101407, 'tracts': 23}, 'Allegheny': {'pop': 1223348, 'tracts': 402}, 'Armstrong': {'pop': 68941, 'tracts': 19}, 'Beaver': {'pop': 170539, 'tracts': 51}, 'Bedford': {'pop': 49762, 'tracts': 11}, 'Berks': {'pop': 411442, 'tracts': 90}, 'Blair': {'pop': 127089, 'tracts': 34}, 'Bradford': {'pop': 62622, 'tracts': 14}, 'Bucks': {'pop': 625249, 'tracts': 143}, 'Butler': {'pop': 183862, 'tracts': 44}, 'Cambria': {'pop': 143679, 'tracts': 42}, 'Cameron': {'pop': 5085, 'tracts': 2}, 'Carbon': {'pop': 65249, 'tracts': 12}, 'Centre': {'pop': 153990, 'tracts': 31}, 'Chester': {'pop': 498886, 'tracts': 116}, 'Clarion': {'pop': 39988, 'tracts': 10}, 'Clearfield': {'pop': 81642, 'tracts': 20}, 'Clinton': {'pop': 39238, 'tracts': 9}, 'Columbia': {'pop': 67295, 'tracts': 15}, 'Crawford': {'pop': 88765, 'tracts': 23}, 'Cumberland': {'pop': 235406, 'tracts': 49}, 'Dauphin': {'pop': 268100, 'tracts': 65}, 'Delaware': {'pop': 558979, 'tracts': 144}, 'Elk': {'pop': 31946, 'tracts': 9}, 'Erie': {'pop': 280566, 'tracts': 72}, 'Fayette': {'pop': 136606, 'tracts': 36}, 'Forest': {'pop': 7716, 'tracts': 3}, 'Franklin': {'pop': 149618, 'tracts': 27}, 'Fulton': {'pop': 14845, 'tracts': 3}, 'Greene': {'pop': 38686, 'tracts': 9}, 'Huntingdon': {'pop': 45913, 'tracts': 12}, 'Indiana': {'pop': 88880, 'tracts': 23}, 'Jefferson': {'pop': 45200, 'tracts': 13}, 'Juniata': {'pop': 24636, 'tracts': 5}, 'Lackawanna': {'pop': 214437, 'tracts': 59}, 'Lancaster': {'pop': 519445, 'tracts': 98}, 'Lawrence': {'pop': 91108, 'tracts': 28}, 'Lebanon': {'pop': 133568, 'tracts': 31}, 'Lehigh': {'pop': 349497, 'tracts': 76}, 'Luzerne': {'pop': 320918, 'tracts': 104}, 'Lycoming': {'pop': 116111, 'tracts': 29}, 'McKean': {'pop': 43450, 'tracts': 12}, 'Mercer': {'pop': 116638, 'tracts': 30}, 'Mifflin': {'pop': 46682, 'tracts': 12}, 'Monroe': {'pop': 169842, 'tracts': 33}, 'Montgomery': {'pop': 799874, 'tracts': 211}, 'Montour': {'pop': 18267, 'tracts': 4}, 'Northampton': {'pop': 297735, 'tracts': 68}, 'Northumberland': {'pop': 94528, 'tracts': 24}, 'Perry': {'pop': 45969, 'tracts': 10}, 'Philadelphia': {'pop': 1526006, 'tracts': 384}, 'Pike': {'pop': 57369, 'tracts': 18}, 'Potter': {'pop': 17457, 'tracts': 5}, 'Schuylkill': {'pop': 148289, 'tracts': 40}, 'Snyder': {'pop': 39702, 'tracts': 8}, 'Somerset': {'pop': 77742, 'tracts': 21}, 'Sullivan': {'pop': 6428, 'tracts': 2}, 'Susquehanna': {'pop': 43356, 'tracts': 11}, 'Tioga': {'pop': 41981, 'tracts': 10}, 'Union': {'pop': 44947, 'tracts': 10}, 'Venango': {'pop': 54984, 'tracts': 16}, 'Warren': {'pop': 41815, 'tracts': 13}, 'Washington': {'pop': 207820, 'tracts': 59}, 'Wayne': {'pop': 52822, 'tracts': 14}, 'Westmoreland': {'pop': 365169, 'tracts': 100}, 'Wyoming': {'pop': 28276, 'tracts': 7}, 'York': {'pop': 434972, 'tracts': 90}}, 'RI': {'Bristol': {'pop': 49875, 'tracts': 11}, 'Kent': {'pop': 166158, 'tracts': 39}, 'Newport': {'pop': 82888, 'tracts': 22}, 'Providence': {'pop': 626667, 'tracts': 141}, 'Washington': {'pop': 126979, 'tracts': 29}}, 'SC': {'Abbeville': {'pop': 25417, 'tracts': 6}, 'Aiken': {'pop': 160099, 'tracts': 33}, 'Allendale': {'pop': 10419, 'tracts': 3}, 'Anderson': {'pop': 187126, 'tracts': 39}, 'Bamberg': {'pop': 15987, 'tracts': 4}, 'Barnwell': {'pop': 22621, 'tracts': 6}, 'Beaufort': {'pop': 162233, 'tracts': 41}, 'Berkeley': {'pop': 177843, 'tracts': 45}, 'Calhoun': {'pop': 15175, 'tracts': 3}, 'Charleston': {'pop': 350209, 'tracts': 86}, 'Cherokee': {'pop': 55342, 'tracts': 13}, 'Chester': {'pop': 33140, 'tracts': 11}, 'Chesterfield': {'pop': 46734, 'tracts': 10}, 'Clarendon': {'pop': 34971, 'tracts': 12}, 'Colleton': {'pop': 38892, 'tracts': 10}, 'Darlington': {'pop': 68681, 'tracts': 16}, 'Dillon': {'pop': 32062, 'tracts': 6}, 'Dorchester': {'pop': 136555, 'tracts': 25}, 'Edgefield': {'pop': 26985, 'tracts': 6}, 'Fairfield': {'pop': 23956, 'tracts': 5}, 'Florence': {'pop': 136885, 'tracts': 33}, 'Georgetown': {'pop': 60158, 'tracts': 15}, 'Greenville': {'pop': 451225, 'tracts': 111}, 'Greenwood': {'pop': 69661, 'tracts': 14}, 'Hampton': {'pop': 21090, 'tracts': 5}, 'Horry': {'pop': 269291, 'tracts': 72}, 'Jasper': {'pop': 24777, 'tracts': 5}, 'Kershaw': {'pop': 61697, 'tracts': 15}, 'Lancaster': {'pop': 76652, 'tracts': 14}, 'Laurens': {'pop': 66537, 'tracts': 17}, 'Lee': {'pop': 19220, 'tracts': 7}, 'Lexington': {'pop': 262391, 'tracts': 74}, 'Marion': {'pop': 33062, 'tracts': 8}, 'Marlboro': {'pop': 28933, 'tracts': 7}, 'McCormick': {'pop': 10233, 'tracts': 3}, 'Newberry': {'pop': 37508, 'tracts': 8}, 'Oconee': {'pop': 74273, 'tracts': 15}, 'Orangeburg': {'pop': 92501, 'tracts': 20}, 'Pickens': {'pop': 119224, 'tracts': 28}, 'Richland': {'pop': 384504, 'tracts': 89}, 'Saluda': {'pop': 19875, 'tracts': 5}, 'Spartanburg': {'pop': 284307, 'tracts': 69}, 'Sumter': {'pop': 107456, 'tracts': 23}, 'Union': {'pop': 28961, 'tracts': 9}, 'Williamsburg': {'pop': 34423, 'tracts': 11}, 'York': {'pop': 226073, 'tracts': 46}}, 'SD': {'Aurora': {'pop': 2710, 'tracts': 1}, 'Beadle': {'pop': 17398, 'tracts': 6}, 'Bennett': {'pop': 3431, 'tracts': 2}, 'Bon Homme': {'pop': 7070, 'tracts': 2}, 'Brookings': {'pop': 31965, 'tracts': 6}, 'Brown': {'pop': 36531, 'tracts': 8}, 'Brule': {'pop': 5255, 'tracts': 2}, 'Buffalo': {'pop': 1912, 'tracts': 1}, 'Butte': {'pop': 10110, 'tracts': 2}, 'Campbell': {'pop': 1466, 'tracts': 1}, 'Charles Mix': {'pop': 9129, 'tracts': 3}, 'Clark': {'pop': 3691, 'tracts': 1}, 'Clay': {'pop': 13864, 'tracts': 3}, 'Codington': {'pop': 27227, 'tracts': 7}, 'Corson': {'pop': 4050, 'tracts': 2}, 'Custer': {'pop': 8216, 'tracts': 2}, 'Davison': {'pop': 19504, 'tracts': 4}, 'Day': {'pop': 5710, 'tracts': 3}, 'Deuel': {'pop': 4364, 'tracts': 2}, 'Dewey': {'pop': 5301, 'tracts': 2}, 'Douglas': {'pop': 3002, 'tracts': 1}, 'Edmunds': {'pop': 4071, 'tracts': 2}, 'Fall River': {'pop': 7094, 'tracts': 2}, 'Faulk': {'pop': 2364, 'tracts': 1}, 'Grant': {'pop': 7356, 'tracts': 2}, 'Gregory': {'pop': 4271, 'tracts': 2}, 'Haakon': {'pop': 1937, 'tracts': 1}, 'Hamlin': {'pop': 5903, 'tracts': 2}, 'Hand': {'pop': 3431, 'tracts': 2}, 'Hanson': {'pop': 3331, 'tracts': 1}, 'Harding': {'pop': 1255, 'tracts': 1}, 'Hughes': {'pop': 17022, 'tracts': 4}, 'Hutchinson': {'pop': 7343, 'tracts': 3}, 'Hyde': {'pop': 1420, 'tracts': 1}, 'Jackson': {'pop': 3031, 'tracts': 2}, 'Jerauld': {'pop': 2071, 'tracts': 1}, 'Jones': {'pop': 1006, 'tracts': 1}, 'Kingsbury': {'pop': 5148, 'tracts': 2}, 'Lake': {'pop': 11200, 'tracts': 3}, 'Lawrence': {'pop': 24097, 'tracts': 5}, 'Lincoln': {'pop': 44828, 'tracts': 11}, 'Lyman': {'pop': 3755, 'tracts': 2}, 'Marshall': {'pop': 4656, 'tracts': 1}, 'McCook': {'pop': 5618, 'tracts': 2}, 'McPherson': {'pop': 2459, 'tracts': 1}, 'Meade': {'pop': 25434, 'tracts': 5}, 'Mellette': {'pop': 2048, 'tracts': 1}, 'Miner': {'pop': 2389, 'tracts': 1}, 'Minnehaha': {'pop': 169468, 'tracts': 42}, 'Moody': {'pop': 6486, 'tracts': 2}, 'Pennington': {'pop': 100948, 'tracts': 23}, 'Perkins': {'pop': 2982, 'tracts': 1}, 'Potter': {'pop': 2329, 'tracts': 1}, 'Roberts': {'pop': 10149, 'tracts': 4}, 'Sanborn': {'pop': 2355, 'tracts': 1}, 'Shannon': {'pop': 13586, 'tracts': 3}, 'Spink': {'pop': 6415, 'tracts': 3}, 'Stanley': {'pop': 2966, 'tracts': 1}, 'Sully': {'pop': 1373, 'tracts': 1}, 'Todd': {'pop': 9612, 'tracts': 2}, 'Tripp': {'pop': 5644, 'tracts': 2}, 'Turner': {'pop': 8347, 'tracts': 2}, 'Union': {'pop': 14399, 'tracts': 3}, 'Walworth': {'pop': 5438, 'tracts': 2}, 'Yankton': {'pop': 22438, 'tracts': 5}, 'Ziebach': {'pop': 2801, 'tracts': 1}}, 'TN': {'Anderson': {'pop': 75129, 'tracts': 18}, 'Bedford': {'pop': 45058, 'tracts': 9}, 'Benton': {'pop': 16489, 'tracts': 5}, 'Bledsoe': {'pop': 12876, 'tracts': 3}, 'Blount': {'pop': 123010, 'tracts': 28}, 'Bradley': {'pop': 98963, 'tracts': 19}, 'Campbell': {'pop': 40716, 'tracts': 11}, 'Cannon': {'pop': 13801, 'tracts': 3}, 'Carroll': {'pop': 28522, 'tracts': 8}, 'Carter': {'pop': 57424, 'tracts': 17}, 'Cheatham': {'pop': 39105, 'tracts': 9}, 'Chester': {'pop': 17131, 'tracts': 3}, 'Claiborne': {'pop': 32213, 'tracts': 9}, 'Clay': {'pop': 7861, 'tracts': 2}, 'Cocke': {'pop': 35662, 'tracts': 9}, 'Coffee': {'pop': 52796, 'tracts': 12}, 'Crockett': {'pop': 14586, 'tracts': 5}, 'Cumberland': {'pop': 56053, 'tracts': 14}, 'Davidson': {'pop': 626681, 'tracts': 161}, 'DeKalb': {'pop': 18723, 'tracts': 4}, 'Decatur': {'pop': 11757, 'tracts': 4}, 'Dickson': {'pop': 49666, 'tracts': 10}, 'Dyer': {'pop': 38335, 'tracts': 8}, 'Fayette': {'pop': 38413, 'tracts': 11}, 'Fentress': {'pop': 17959, 'tracts': 4}, 'Franklin': {'pop': 41052, 'tracts': 9}, 'Gibson': {'pop': 49683, 'tracts': 14}, 'Giles': {'pop': 29485, 'tracts': 8}, 'Grainger': {'pop': 22657, 'tracts': 5}, 'Greene': {'pop': 68831, 'tracts': 15}, 'Grundy': {'pop': 13703, 'tracts': 4}, 'Hamblen': {'pop': 62544, 'tracts': 12}, 'Hamilton': {'pop': 336463, 'tracts': 82}, 'Hancock': {'pop': 6819, 'tracts': 2}, 'Hardeman': {'pop': 27253, 'tracts': 6}, 'Hardin': {'pop': 26026, 'tracts': 6}, 'Hawkins': {'pop': 56833, 'tracts': 13}, 'Haywood': {'pop': 18787, 'tracts': 6}, 'Henderson': {'pop': 27769, 'tracts': 6}, 'Henry': {'pop': 32330, 'tracts': 9}, 'Hickman': {'pop': 24690, 'tracts': 6}, 'Houston': {'pop': 8426, 'tracts': 3}, 'Humphreys': {'pop': 18538, 'tracts': 5}, 'Jackson': {'pop': 11638, 'tracts': 4}, 'Jefferson': {'pop': 51407, 'tracts': 9}, 'Johnson': {'pop': 18244, 'tracts': 5}, 'Knox': {'pop': 432226, 'tracts': 112}, 'Lake': {'pop': 7832, 'tracts': 2}, 'Lauderdale': {'pop': 27815, 'tracts': 9}, 'Lawrence': {'pop': 41869, 'tracts': 11}, 'Lewis': {'pop': 12161, 'tracts': 2}, 'Lincoln': {'pop': 33361, 'tracts': 9}, 'Loudon': {'pop': 48556, 'tracts': 10}, 'Macon': {'pop': 22248, 'tracts': 4}, 'Madison': {'pop': 98294, 'tracts': 27}, 'Marion': {'pop': 28237, 'tracts': 6}, 'Marshall': {'pop': 30617, 'tracts': 6}, 'Maury': {'pop': 80956, 'tracts': 17}, 'McMinn': {'pop': 52266, 'tracts': 10}, 'McNairy': {'pop': 26075, 'tracts': 7}, 'Meigs': {'pop': 11753, 'tracts': 3}, 'Monroe': {'pop': 44519, 'tracts': 7}, 'Montgomery': {'pop': 172331, 'tracts': 39}, 'Moore': {'pop': 6362, 'tracts': 2}, 'Morgan': {'pop': 21987, 'tracts': 5}, 'Obion': {'pop': 31807, 'tracts': 10}, 'Overton': {'pop': 22083, 'tracts': 7}, 'Perry': {'pop': 7915, 'tracts': 2}, 'Pickett': {'pop': 5077, 'tracts': 1}, 'Polk': {'pop': 16825, 'tracts': 5}, 'Putnam': {'pop': 72321, 'tracts': 15}, 'Rhea': {'pop': 31809, 'tracts': 6}, 'Roane': {'pop': 54181, 'tracts': 11}, 'Robertson': {'pop': 66283, 'tracts': 14}, 'Rutherford': {'pop': 262604, 'tracts': 49}, 'Scott': {'pop': 22228, 'tracts': 5}, 'Sequatchie': {'pop': 14112, 'tracts': 3}, 'Sevier': {'pop': 89889, 'tracts': 18}, 'Shelby': {'pop': 927644, 'tracts': 221}, 'Smith': {'pop': 19166, 'tracts': 5}, 'Stewart': {'pop': 13324, 'tracts': 5}, 'Sullivan': {'pop': 156823, 'tracts': 39}, 'Sumner': {'pop': 160645, 'tracts': 42}, 'Tipton': {'pop': 61081, 'tracts': 13}, 'Trousdale': {'pop': 7870, 'tracts': 2}, 'Unicoi': {'pop': 18313, 'tracts': 4}, 'Union': {'pop': 19109, 'tracts': 4}, 'Van Buren': {'pop': 5548, 'tracts': 2}, 'Warren': {'pop': 39839, 'tracts': 9}, 'Washington': {'pop': 122979, 'tracts': 23}, 'Wayne': {'pop': 17021, 'tracts': 4}, 'Weakley': {'pop': 35021, 'tracts': 11}, 'White': {'pop': 25841, 'tracts': 6}, 'Williamson': {'pop': 183182, 'tracts': 37}, 'Wilson': {'pop': 113993, 'tracts': 21}}, 'TX': {'Anderson': {'pop': 58458, 'tracts': 11}, 'Andrews': {'pop': 14786, 'tracts': 4}, 'Angelina': {'pop': 86771, 'tracts': 17}, 'Aransas': {'pop': 23158, 'tracts': 5}, 'Archer': {'pop': 9054, 'tracts': 3}, 'Armstrong': {'pop': 1901, 'tracts': 1}, 'Atascosa': {'pop': 44911, 'tracts': 8}, 'Austin': {'pop': 28417, 'tracts': 6}, 'Bailey': {'pop': 7165, 'tracts': 1}, 'Bandera': {'pop': 20485, 'tracts': 5}, 'Bastrop': {'pop': 74171, 'tracts': 10}, 'Baylor': {'pop': 3726, 'tracts': 1}, 'Bee': {'pop': 31861, 'tracts': 7}, 'Bell': {'pop': 310235, 'tracts': 65}, 'Bexar': {'pop': 1714773, 'tracts': 366}, 'Blanco': {'pop': 10497, 'tracts': 2}, 'Borden': {'pop': 641, 'tracts': 1}, 'Bosque': {'pop': 18212, 'tracts': 7}, 'Bowie': {'pop': 92565, 'tracts': 18}, 'Brazoria': {'pop': 313166, 'tracts': 51}, 'Brazos': {'pop': 194851, 'tracts': 42}, 'Brewster': {'pop': 9232, 'tracts': 3}, 'Briscoe': {'pop': 1637, 'tracts': 1}, 'Brooks': {'pop': 7223, 'tracts': 2}, 'Brown': {'pop': 38106, 'tracts': 12}, 'Burleson': {'pop': 17187, 'tracts': 5}, 'Burnet': {'pop': 42750, 'tracts': 8}, 'Caldwell': {'pop': 38066, 'tracts': 8}, 'Calhoun': {'pop': 21381, 'tracts': 6}, 'Callahan': {'pop': 13544, 'tracts': 3}, 'Cameron': {'pop': 406220, 'tracts': 86}, 'Camp': {'pop': 12401, 'tracts': 3}, 'Carson': {'pop': 6182, 'tracts': 2}, 'Cass': {'pop': 30464, 'tracts': 7}, 'Castro': {'pop': 8062, 'tracts': 3}, 'Chambers': {'pop': 35096, 'tracts': 6}, 'Cherokee': {'pop': 50845, 'tracts': 12}, 'Childress': {'pop': 7041, 'tracts': 2}, 'Clay': {'pop': 10752, 'tracts': 3}, 'Cochran': {'pop': 3127, 'tracts': 1}, 'Coke': {'pop': 3320, 'tracts': 2}, 'Coleman': {'pop': 8895, 'tracts': 3}, 'Collin': {'pop': 782341, 'tracts': 152}, 'Collingsworth': {'pop': 3057, 'tracts': 1}, 'Colorado': {'pop': 20874, 'tracts': 5}, 'Comal': {'pop': 108472, 'tracts': 24}, 'Comanche': {'pop': 13974, 'tracts': 4}, 'Concho': {'pop': 4087, 'tracts': 1}, 'Cooke': {'pop': 38437, 'tracts': 8}, 'Coryell': {'pop': 75388, 'tracts': 19}, 'Cottle': {'pop': 1505, 'tracts': 1}, 'Crane': {'pop': 4375, 'tracts': 1}, 'Crockett': {'pop': 3719, 'tracts': 1}, 'Crosby': {'pop': 6059, 'tracts': 3}, 'Culberson': {'pop': 2398, 'tracts': 1}, 'Dallam': {'pop': 6703, 'tracts': 2}, 'Dallas': {'pop': 2368139, 'tracts': 529}, 'Dawson': {'pop': 13833, 'tracts': 4}, 'DeWitt': {'pop': 20097, 'tracts': 5}, 'Deaf Smith': {'pop': 19372, 'tracts': 4}, 'Delta': {'pop': 5231, 'tracts': 2}, 'Denton': {'pop': 662614, 'tracts': 137}, 'Dickens': {'pop': 2444, 'tracts': 1}, 'Dimmit': {'pop': 9996, 'tracts': 2}, 'Donley': {'pop': 3677, 'tracts': 2}, 'Duval': {'pop': 11782, 'tracts': 3}, 'Eastland': {'pop': 18583, 'tracts': 5}, 'Ector': {'pop': 137130, 'tracts': 28}, 'Edwards': {'pop': 2002, 'tracts': 1}, 'El Paso': {'pop': 800647, 'tracts': 161}, 'Ellis': {'pop': 149610, 'tracts': 31}, 'Erath': {'pop': 37890, 'tracts': 8}, 'Falls': {'pop': 17866, 'tracts': 6}, 'Fannin': {'pop': 33915, 'tracts': 9}, 'Fayette': {'pop': 24554, 'tracts': 7}, 'Fisher': {'pop': 3974, 'tracts': 2}, 'Floyd': {'pop': 6446, 'tracts': 2}, 'Foard': {'pop': 1336, 'tracts': 1}, 'Fort Bend': {'pop': 585375, 'tracts': 76}, 'Franklin': {'pop': 10605, 'tracts': 3}, 'Freestone': {'pop': 19816, 'tracts': 7}, 'Frio': {'pop': 17217, 'tracts': 3}, 'Gaines': {'pop': 17526, 'tracts': 3}, 'Galveston': {'pop': 291309, 'tracts': 67}, 'Garza': {'pop': 6461, 'tracts': 1}, 'Gillespie': {'pop': 24837, 'tracts': 5}, 'Glasscock': {'pop': 1226, 'tracts': 1}, 'Goliad': {'pop': 7210, 'tracts': 2}, 'Gonzales': {'pop': 19807, 'tracts': 6}, 'Gray': {'pop': 22535, 'tracts': 7}, 'Grayson': {'pop': 120877, 'tracts': 26}, 'Gregg': {'pop': 121730, 'tracts': 25}, 'Grimes': {'pop': 26604, 'tracts': 6}, 'Guadalupe': {'pop': 131533, 'tracts': 29}, 'Hale': {'pop': 36273, 'tracts': 9}, 'Hall': {'pop': 3353, 'tracts': 1}, 'Hamilton': {'pop': 8517, 'tracts': 3}, 'Hansford': {'pop': 5613, 'tracts': 2}, 'Hardeman': {'pop': 4139, 'tracts': 1}, 'Hardin': {'pop': 54635, 'tracts': 11}, 'Harris': {'pop': 4092459, 'tracts': 786}, 'Harrison': {'pop': 65631, 'tracts': 14}, 'Hartley': {'pop': 6062, 'tracts': 1}, 'Haskell': {'pop': 5899, 'tracts': 2}, 'Hays': {'pop': 157107, 'tracts': 25}, 'Hemphill': {'pop': 3807, 'tracts': 1}, 'Henderson': {'pop': 78532, 'tracts': 17}, 'Hidalgo': {'pop': 774769, 'tracts': 113}, 'Hill': {'pop': 35089, 'tracts': 11}, 'Hockley': {'pop': 22935, 'tracts': 7}, 'Hood': {'pop': 51182, 'tracts': 10}, 'Hopkins': {'pop': 35161, 'tracts': 9}, 'Houston': {'pop': 23732, 'tracts': 7}, 'Howard': {'pop': 35012, 'tracts': 10}, 'Hudspeth': {'pop': 3476, 'tracts': 1}, 'Hunt': {'pop': 86129, 'tracts': 19}, 'Hutchinson': {'pop': 22150, 'tracts': 7}, 'Irion': {'pop': 1599, 'tracts': 1}, 'Jack': {'pop': 9044, 'tracts': 3}, 'Jackson': {'pop': 14075, 'tracts': 3}, 'Jasper': {'pop': 35710, 'tracts': 8}, 'Jeff Davis': {'pop': 2342, 'tracts': 1}, 'Jefferson': {'pop': 252273, 'tracts': 72}, 'Jim Hogg': {'pop': 5300, 'tracts': 2}, 'Jim Wells': {'pop': 40838, 'tracts': 7}, 'Johnson': {'pop': 150934, 'tracts': 28}, 'Jones': {'pop': 20202, 'tracts': 6}, 'Karnes': {'pop': 14824, 'tracts': 4}, 'Kaufman': {'pop': 103350, 'tracts': 18}, 'Kendall': {'pop': 33410, 'tracts': 6}, 'Kenedy': {'pop': 416, 'tracts': 1}, 'Kent': {'pop': 808, 'tracts': 1}, 'Kerr': {'pop': 49625, 'tracts': 10}, 'Kimble': {'pop': 4607, 'tracts': 2}, 'King': {'pop': 286, 'tracts': 1}, 'Kinney': {'pop': 3598, 'tracts': 1}, 'Kleberg': {'pop': 32061, 'tracts': 6}, 'Knox': {'pop': 3719, 'tracts': 2}, 'La Salle': {'pop': 6886, 'tracts': 1}, 'Lamar': {'pop': 49793, 'tracts': 12}, 'Lamb': {'pop': 13977, 'tracts': 5}, 'Lampasas': {'pop': 19677, 'tracts': 5}, 'Lavaca': {'pop': 19263, 'tracts': 6}, 'Lee': {'pop': 16612, 'tracts': 4}, 'Leon': {'pop': 16801, 'tracts': 3}, 'Liberty': {'pop': 75643, 'tracts': 14}, 'Limestone': {'pop': 23384, 'tracts': 8}, 'Lipscomb': {'pop': 3302, 'tracts': 2}, 'Live Oak': {'pop': 11531, 'tracts': 4}, 'Llano': {'pop': 19301, 'tracts': 6}, 'Loving': {'pop': 82, 'tracts': 1}, 'Lubbock': {'pop': 278831, 'tracts': 68}, 'Lynn': {'pop': 5915, 'tracts': 3}, 'Madison': {'pop': 13664, 'tracts': 4}, 'Marion': {'pop': 10546, 'tracts': 4}, 'Martin': {'pop': 4799, 'tracts': 2}, 'Mason': {'pop': 4012, 'tracts': 2}, 'Matagorda': {'pop': 36702, 'tracts': 10}, 'Maverick': {'pop': 54258, 'tracts': 9}, 'McCulloch': {'pop': 8283, 'tracts': 3}, 'McLennan': {'pop': 234906, 'tracts': 51}, 'McMullen': {'pop': 707, 'tracts': 1}, 'Medina': {'pop': 46006, 'tracts': 8}, 'Menard': {'pop': 2242, 'tracts': 1}, 'Midland': {'pop': 136872, 'tracts': 27}, 'Milam': {'pop': 24757, 'tracts': 7}, 'Mills': {'pop': 4936, 'tracts': 2}, 'Mitchell': {'pop': 9403, 'tracts': 2}, 'Montague': {'pop': 19719, 'tracts': 6}, 'Montgomery': {'pop': 455746, 'tracts': 59}, 'Moore': {'pop': 21904, 'tracts': 4}, 'Morris': {'pop': 12934, 'tracts': 3}, 'Motley': {'pop': 1210, 'tracts': 1}, 'Nacogdoches': {'pop': 64524, 'tracts': 13}, 'Navarro': {'pop': 47735, 'tracts': 10}, 'Newton': {'pop': 14445, 'tracts': 4}, 'Nolan': {'pop': 15216, 'tracts': 5}, 'Nueces': {'pop': 340223, 'tracts': 81}, 'Ochiltree': {'pop': 10223, 'tracts': 3}, 'Oldham': {'pop': 2052, 'tracts': 1}, 'Orange': {'pop': 81837, 'tracts': 21}, 'Palo Pinto': {'pop': 28111, 'tracts': 9}, 'Panola': {'pop': 23796, 'tracts': 6}, 'Parker': {'pop': 116927, 'tracts': 19}, 'Parmer': {'pop': 10269, 'tracts': 2}, 'Pecos': {'pop': 15507, 'tracts': 4}, 'Polk': {'pop': 45413, 'tracts': 10}, 'Potter': {'pop': 121073, 'tracts': 34}, 'Presidio': {'pop': 7818, 'tracts': 2}, 'Rains': {'pop': 10914, 'tracts': 2}, 'Randall': {'pop': 120725, 'tracts': 29}, 'Reagan': {'pop': 3367, 'tracts': 1}, 'Real': {'pop': 3309, 'tracts': 1}, 'Red River': {'pop': 12860, 'tracts': 4}, 'Reeves': {'pop': 13783, 'tracts': 5}, 'Refugio': {'pop': 7383, 'tracts': 2}, 'Roberts': {'pop': 929, 'tracts': 1}, 'Robertson': {'pop': 16622, 'tracts': 5}, 'Rockwall': {'pop': 78337, 'tracts': 11}, 'Runnels': {'pop': 10501, 'tracts': 4}, 'Rusk': {'pop': 53330, 'tracts': 13}, 'Sabine': {'pop': 10834, 'tracts': 3}, 'San Augustine': {'pop': 8865, 'tracts': 3}, 'San Jacinto': {'pop': 26384, 'tracts': 4}, 'San Patricio': {'pop': 64804, 'tracts': 16}, 'San Saba': {'pop': 6131, 'tracts': 2}, 'Schleicher': {'pop': 3461, 'tracts': 1}, 'Scurry': {'pop': 16921, 'tracts': 4}, 'Shackelford': {'pop': 3378, 'tracts': 1}, 'Shelby': {'pop': 25448, 'tracts': 6}, 'Sherman': {'pop': 3034, 'tracts': 1}, 'Smith': {'pop': 209714, 'tracts': 41}, 'Somervell': {'pop': 8490, 'tracts': 2}, 'Starr': {'pop': 60968, 'tracts': 15}, 'Stephens': {'pop': 9630, 'tracts': 3}, 'Sterling': {'pop': 1143, 'tracts': 1}, 'Stonewall': {'pop': 1490, 'tracts': 1}, 'Sutton': {'pop': 4128, 'tracts': 1}, 'Swisher': {'pop': 7854, 'tracts': 3}, 'Tarrant': {'pop': 1809034, 'tracts': 357}, 'Taylor': {'pop': 131506, 'tracts': 38}, 'Terrell': {'pop': 984, 'tracts': 1}, 'Terry': {'pop': 12651, 'tracts': 3}, 'Throckmorton': {'pop': 1641, 'tracts': 1}, 'Titus': {'pop': 32334, 'tracts': 8}, 'Tom Green': {'pop': 110224, 'tracts': 25}, 'Travis': {'pop': 1024266, 'tracts': 218}, 'Trinity': {'pop': 14585, 'tracts': 5}, 'Tyler': {'pop': 21766, 'tracts': 5}, 'Upshur': {'pop': 39309, 'tracts': 7}, 'Upton': {'pop': 3355, 'tracts': 2}, 'Uvalde': {'pop': 26405, 'tracts': 5}, 'Val Verde': {'pop': 48879, 'tracts': 10}, 'Van Zandt': {'pop': 52579, 'tracts': 10}, 'Victoria': {'pop': 86793, 'tracts': 23}, 'Walker': {'pop': 67861, 'tracts': 10}, 'Waller': {'pop': 43205, 'tracts': 6}, 'Ward': {'pop': 10658, 'tracts': 3}, 'Washington': {'pop': 33718, 'tracts': 6}, 'Webb': {'pop': 250304, 'tracts': 61}, 'Wharton': {'pop': 41280, 'tracts': 11}, 'Wheeler': {'pop': 5410, 'tracts': 2}, 'Wichita': {'pop': 131500, 'tracts': 37}, 'Wilbarger': {'pop': 13535, 'tracts': 4}, 'Willacy': {'pop': 22134, 'tracts': 6}, 'Williamson': {'pop': 422679, 'tracts': 89}, 'Wilson': {'pop': 42918, 'tracts': 11}, 'Winkler': {'pop': 7110, 'tracts': 3}, 'Wise': {'pop': 59127, 'tracts': 11}, 'Wood': {'pop': 41964, 'tracts': 10}, 'Yoakum': {'pop': 7879, 'tracts': 2}, 'Young': {'pop': 18550, 'tracts': 4}, 'Zapata': {'pop': 14018, 'tracts': 3}, 'Zavala': {'pop': 11677, 'tracts': 4}}, 'UT': {'Beaver': {'pop': 6629, 'tracts': 2}, 'Box Elder': {'pop': 49975, 'tracts': 11}, 'Cache': {'pop': 112656, 'tracts': 26}, 'Carbon': {'pop': 21403, 'tracts': 5}, 'Daggett': {'pop': 1059, 'tracts': 1}, 'Davis': {'pop': 306479, 'tracts': 54}, 'Duchesne': {'pop': 18607, 'tracts': 3}, 'Emery': {'pop': 10976, 'tracts': 3}, 'Garfield': {'pop': 5172, 'tracts': 2}, 'Grand': {'pop': 9225, 'tracts': 2}, 'Iron': {'pop': 46163, 'tracts': 8}, 'Juab': {'pop': 10246, 'tracts': 2}, 'Kane': {'pop': 7125, 'tracts': 2}, 'Millard': {'pop': 12503, 'tracts': 3}, 'Morgan': {'pop': 9469, 'tracts': 2}, 'Piute': {'pop': 1556, 'tracts': 1}, 'Rich': {'pop': 2264, 'tracts': 1}, 'Salt Lake': {'pop': 1029655, 'tracts': 212}, 'San Juan': {'pop': 14746, 'tracts': 4}, 'Sanpete': {'pop': 27822, 'tracts': 5}, 'Sevier': {'pop': 20802, 'tracts': 5}, 'Summit': {'pop': 36324, 'tracts': 13}, 'Tooele': {'pop': 58218, 'tracts': 11}, 'Uintah': {'pop': 32588, 'tracts': 6}, 'Utah': {'pop': 516564, 'tracts': 128}, 'Wasatch': {'pop': 23530, 'tracts': 4}, 'Washington': {'pop': 138115, 'tracts': 21}, 'Wayne': {'pop': 2778, 'tracts': 1}, 'Weber': {'pop': 231236, 'tracts': 50}}, 'VA': {'Accomack': {'pop': 33164, 'tracts': 11}, 'Albemarle': {'pop': 98970, 'tracts': 22}, 'Alexandria': {'pop': 139966, 'tracts': 38}, 'Alleghany': {'pop': 16250, 'tracts': 6}, 'Amelia': {'pop': 12690, 'tracts': 2}, 'Amherst': {'pop': 32353, 'tracts': 9}, 'Appomattox': {'pop': 14973, 'tracts': 3}, 'Arlington': {'pop': 207627, 'tracts': 59}, 'Augusta': {'pop': 73750, 'tracts': 13}, 'Bath': {'pop': 4731, 'tracts': 1}, 'Bedford': {'pop': 68676, 'tracts': 16}, 'Bedford City': {'pop': 6222, 'tracts': 1}, 'Bland': {'pop': 6824, 'tracts': 2}, 'Botetourt': {'pop': 33148, 'tracts': 8}, 'Bristol': {'pop': 17835, 'tracts': 4}, 'Brunswick': {'pop': 17434, 'tracts': 5}, 'Buchanan': {'pop': 24098, 'tracts': 7}, 'Buckingham': {'pop': 17146, 'tracts': 4}, 'Buena Vista': {'pop': 6650, 'tracts': 1}, 'Campbell': {'pop': 54842, 'tracts': 12}, 'Caroline': {'pop': 28545, 'tracts': 7}, 'Carroll': {'pop': 30042, 'tracts': 7}, 'Charles City': {'pop': 7256, 'tracts': 3}, 'Charlotte': {'pop': 12586, 'tracts': 3}, 'Charlottesville': {'pop': 43475, 'tracts': 12}, 'Chesapeake': {'pop': 222209, 'tracts': 41}, 'Chesterfield': {'pop': 316236, 'tracts': 71}, 'Clarke': {'pop': 14034, 'tracts': 3}, 'Colonial Heights': {'pop': 17411, 'tracts': 5}, 'Covington': {'pop': 5961, 'tracts': 2}, 'Craig': {'pop': 5190, 'tracts': 1}, 'Culpeper': {'pop': 46689, 'tracts': 8}, 'Cumberland': {'pop': 10052, 'tracts': 2}, 'Danville': {'pop': 43055, 'tracts': 16}, 'Dickenson': {'pop': 15903, 'tracts': 4}, 'Dinwiddie': {'pop': 28001, 'tracts': 7}, 'Emporia': {'pop': 5927, 'tracts': 2}, 'Essex': {'pop': 11151, 'tracts': 3}, 'Fairfax': {'pop': 1081726, 'tracts': 258}, 'Fairfax City': {'pop': 22565, 'tracts': 5}, 'Falls Church': {'pop': 12332, 'tracts': 3}, 'Fauquier': {'pop': 65203, 'tracts': 17}, 'Floyd': {'pop': 15279, 'tracts': 3}, 'Fluvanna': {'pop': 25691, 'tracts': 4}, 'Franklin': {'pop': 56159, 'tracts': 10}, 'Franklin City': {'pop': 8582, 'tracts': 2}, 'Frederick': {'pop': 78305, 'tracts': 14}, 'Fredericksburg': {'pop': 24286, 'tracts': 6}, 'Galax': {'pop': 7042, 'tracts': 2}, 'Giles': {'pop': 17286, 'tracts': 4}, 'Gloucester': {'pop': 36858, 'tracts': 8}, 'Goochland': {'pop': 21717, 'tracts': 5}, 'Grayson': {'pop': 15533, 'tracts': 5}, 'Greene': {'pop': 18403, 'tracts': 3}, 'Greensville': {'pop': 12243, 'tracts': 3}, 'Halifax': {'pop': 36241, 'tracts': 9}, 'Hampton': {'pop': 137436, 'tracts': 34}, 'Hanover': {'pop': 99863, 'tracts': 23}, 'Harrisonburg': {'pop': 48914, 'tracts': 11}, 'Henrico': {'pop': 306935, 'tracts': 64}, 'Henry': {'pop': 54151, 'tracts': 14}, 'Highland': {'pop': 2321, 'tracts': 1}, 'Hopewell': {'pop': 22591, 'tracts': 7}, 'Isle of Wight': {'pop': 35270, 'tracts': 8}, 'James City': {'pop': 67009, 'tracts': 11}, 'King George': {'pop': 23584, 'tracts': 5}, 'King William': {'pop': 15935, 'tracts': 4}, 'King and Queen': {'pop': 6945, 'tracts': 2}, 'Lancaster': {'pop': 11391, 'tracts': 3}, 'Lee': {'pop': 25587, 'tracts': 6}, 'Lexington': {'pop': 7042, 'tracts': 1}, 'Loudoun': {'pop': 312311, 'tracts': 65}, 'Louisa': {'pop': 33153, 'tracts': 6}, 'Lunenburg': {'pop': 12914, 'tracts': 3}, 'Lynchburg': {'pop': 75568, 'tracts': 19}, 'Madison': {'pop': 13308, 'tracts': 2}, 'Manassas': {'pop': 37821, 'tracts': 7}, 'Manassas Park': {'pop': 14273, 'tracts': 2}, 'Martinsville': {'pop': 13821, 'tracts': 5}, 'Mathews': {'pop': 8978, 'tracts': 2}, 'Mecklenburg': {'pop': 32727, 'tracts': 9}, 'Middlesex': {'pop': 10959, 'tracts': 4}, 'Montgomery': {'pop': 94392, 'tracts': 16}, 'Nelson': {'pop': 15020, 'tracts': 3}, 'New Kent': {'pop': 18429, 'tracts': 3}, 'Newport News': {'pop': 180719, 'tracts': 44}, 'Norfolk': {'pop': 242803, 'tracts': 81}, 'Northampton': {'pop': 12389, 'tracts': 4}, 'Northumberland': {'pop': 12330, 'tracts': 3}, 'Norton': {'pop': 3958, 'tracts': 1}, 'Nottoway': {'pop': 15853, 'tracts': 4}, 'Orange': {'pop': 33481, 'tracts': 5}, 'Page': {'pop': 24042, 'tracts': 5}, 'Patrick': {'pop': 18490, 'tracts': 4}, 'Petersburg': {'pop': 32420, 'tracts': 11}, 'Pittsylvania': {'pop': 63506, 'tracts': 16}, 'Poquoson': {'pop': 12150, 'tracts': 3}, 'Portsmouth': {'pop': 95535, 'tracts': 31}, 'Powhatan': {'pop': 28046, 'tracts': 5}, 'Prince Edward': {'pop': 23368, 'tracts': 5}, 'Prince George': {'pop': 35725, 'tracts': 7}, 'Prince William': {'pop': 402002, 'tracts': 83}, 'Pulaski': {'pop': 34872, 'tracts': 10}, 'Radford': {'pop': 16408, 'tracts': 3}, 'Rappahannock': {'pop': 7373, 'tracts': 2}, 'Richmond': {'pop': 9254, 'tracts': 2}, 'Richmond City': {'pop': 204214, 'tracts': 66}, 'Roanoke': {'pop': 92376, 'tracts': 18}, 'Roanoke City': {'pop': 97032, 'tracts': 23}, 'Rockbridge': {'pop': 22307, 'tracts': 4}, 'Rockingham': {'pop': 76314, 'tracts': 19}, 'Russell': {'pop': 28897, 'tracts': 7}, 'Salem': {'pop': 24802, 'tracts': 5}, 'Scott': {'pop': 23177, 'tracts': 6}, 'Shenandoah': {'pop': 41993, 'tracts': 9}, 'Smyth': {'pop': 32208, 'tracts': 9}, 'Southampton': {'pop': 18570, 'tracts': 5}, 'Spotsylvania': {'pop': 122397, 'tracts': 30}, 'Stafford': {'pop': 128961, 'tracts': 27}, 'Staunton': {'pop': 23746, 'tracts': 6}, 'Suffolk': {'pop': 84585, 'tracts': 28}, 'Surry': {'pop': 7058, 'tracts': 2}, 'Sussex': {'pop': 12087, 'tracts': 5}, 'Tazewell': {'pop': 45078, 'tracts': 11}, 'Virginia Beach': {'pop': 437994, 'tracts': 100}, 'Warren': {'pop': 37575, 'tracts': 8}, 'Washington': {'pop': 54876, 'tracts': 13}, 'Waynesboro': {'pop': 21006, 'tracts': 5}, 'Westmoreland': {'pop': 17454, 'tracts': 4}, 'Williamsburg': {'pop': 14068, 'tracts': 3}, 'Winchester': {'pop': 26203, 'tracts': 5}, 'Wise': {'pop': 41452, 'tracts': 11}, 'Wythe': {'pop': 29235, 'tracts': 6}, 'York': {'pop': 65464, 'tracts': 14}}, 'VT': {'Addison': {'pop': 36821, 'tracts': 10}, 'Bennington': {'pop': 37125, 'tracts': 12}, 'Caledonia': {'pop': 31227, 'tracts': 10}, 'Chittenden': {'pop': 156545, 'tracts': 35}, 'Essex': {'pop': 6306, 'tracts': 3}, 'Franklin': {'pop': 47746, 'tracts': 10}, 'Grand Isle': {'pop': 6970, 'tracts': 2}, 'Lamoille': {'pop': 24475, 'tracts': 7}, 'Orange': {'pop': 28936, 'tracts': 10}, 'Orleans': {'pop': 27231, 'tracts': 10}, 'Rutland': {'pop': 61642, 'tracts': 20}, 'Washington': {'pop': 59534, 'tracts': 19}, 'Windham': {'pop': 44513, 'tracts': 18}, 'Windsor': {'pop': 56670, 'tracts': 18}}, 'WA': {'Adams': {'pop': 18728, 'tracts': 5}, 'Asotin': {'pop': 21623, 'tracts': 6}, 'Benton': {'pop': 175177, 'tracts': 37}, 'Chelan': {'pop': 72453, 'tracts': 14}, 'Clallam': {'pop': 71404, 'tracts': 22}, 'Clark': {'pop': 425363, 'tracts': 104}, 'Columbia': {'pop': 4078, 'tracts': 1}, 'Cowlitz': {'pop': 102410, 'tracts': 24}, 'Douglas': {'pop': 38431, 'tracts': 8}, 'Ferry': {'pop': 7551, 'tracts': 3}, 'Franklin': {'pop': 78163, 'tracts': 13}, 'Garfield': {'pop': 2266, 'tracts': 1}, 'Grant': {'pop': 89120, 'tracts': 16}, 'Grays Harbor': {'pop': 72797, 'tracts': 17}, 'Island': {'pop': 78506, 'tracts': 22}, 'Jefferson': {'pop': 29872, 'tracts': 7}, 'King': {'pop': 1931249, 'tracts': 397}, 'Kitsap': {'pop': 251133, 'tracts': 55}, 'Kittitas': {'pop': 40915, 'tracts': 8}, 'Klickitat': {'pop': 20318, 'tracts': 3}, 'Lewis': {'pop': 75455, 'tracts': 20}, 'Lincoln': {'pop': 10570, 'tracts': 4}, 'Mason': {'pop': 60699, 'tracts': 14}, 'Okanogan': {'pop': 41120, 'tracts': 10}, 'Pacific': {'pop': 20920, 'tracts': 8}, 'Pend Oreille': {'pop': 13001, 'tracts': 5}, 'Pierce': {'pop': 795225, 'tracts': 172}, 'San Juan': {'pop': 15769, 'tracts': 5}, 'Skagit': {'pop': 116901, 'tracts': 30}, 'Skamania': {'pop': 11066, 'tracts': 5}, 'Snohomish': {'pop': 713335, 'tracts': 151}, 'Spokane': {'pop': 471221, 'tracts': 105}, 'Stevens': {'pop': 43531, 'tracts': 12}, 'Thurston': {'pop': 252264, 'tracts': 49}, 'Wahkiakum': {'pop': 3978, 'tracts': 1}, 'Walla Walla': {'pop': 58781, 'tracts': 12}, 'Whatcom': {'pop': 201140, 'tracts': 34}, 'Whitman': {'pop': 44776, 'tracts': 10}, 'Yakima': {'pop': 243231, 'tracts': 45}}, 'WI': {'Adams': {'pop': 20875, 'tracts': 7}, 'Ashland': {'pop': 16157, 'tracts': 7}, 'Barron': {'pop': 45870, 'tracts': 10}, 'Bayfield': {'pop': 15014, 'tracts': 5}, 'Brown': {'pop': 248007, 'tracts': 54}, 'Buffalo': {'pop': 13587, 'tracts': 5}, 'Burnett': {'pop': 15457, 'tracts': 6}, 'Calumet': {'pop': 48971, 'tracts': 11}, 'Chippewa': {'pop': 62415, 'tracts': 11}, 'Clark': {'pop': 34690, 'tracts': 8}, 'Columbia': {'pop': 56833, 'tracts': 12}, 'Crawford': {'pop': 16644, 'tracts': 6}, 'Dane': {'pop': 488073, 'tracts': 107}, 'Dodge': {'pop': 88759, 'tracts': 20}, 'Door': {'pop': 27785, 'tracts': 9}, 'Douglas': {'pop': 44159, 'tracts': 12}, 'Dunn': {'pop': 43857, 'tracts': 8}, 'Eau Claire': {'pop': 98736, 'tracts': 20}, 'Florence': {'pop': 4423, 'tracts': 2}, 'Fond du Lac': {'pop': 101633, 'tracts': 20}, 'Forest': {'pop': 9304, 'tracts': 4}, 'Grant': {'pop': 51208, 'tracts': 12}, 'Green': {'pop': 36842, 'tracts': 8}, 'Green Lake': {'pop': 19051, 'tracts': 6}, 'Iowa': {'pop': 23687, 'tracts': 6}, 'Iron': {'pop': 5916, 'tracts': 3}, 'Jackson': {'pop': 20449, 'tracts': 5}, 'Jefferson': {'pop': 83686, 'tracts': 20}, 'Juneau': {'pop': 26664, 'tracts': 7}, 'Kenosha': {'pop': 166426, 'tracts': 35}, 'Kewaunee': {'pop': 20574, 'tracts': 4}, 'La Crosse': {'pop': 114638, 'tracts': 25}, 'Lafayette': {'pop': 16836, 'tracts': 5}, 'Langlade': {'pop': 19977, 'tracts': 6}, 'Lincoln': {'pop': 28743, 'tracts': 10}, 'Manitowoc': {'pop': 81442, 'tracts': 19}, 'Marathon': {'pop': 134063, 'tracts': 27}, 'Marinette': {'pop': 41749, 'tracts': 12}, 'Marquette': {'pop': 15404, 'tracts': 5}, 'Menominee': {'pop': 4232, 'tracts': 2}, 'Milwaukee': {'pop': 947735, 'tracts': 297}, 'Monroe': {'pop': 44673, 'tracts': 9}, 'Oconto': {'pop': 37660, 'tracts': 10}, 'Oneida': {'pop': 35998, 'tracts': 14}, 'Outagamie': {'pop': 176695, 'tracts': 40}, 'Ozaukee': {'pop': 86395, 'tracts': 18}, 'Pepin': {'pop': 7469, 'tracts': 2}, 'Pierce': {'pop': 41019, 'tracts': 8}, 'Polk': {'pop': 44205, 'tracts': 10}, 'Portage': {'pop': 70019, 'tracts': 14}, 'Price': {'pop': 14159, 'tracts': 6}, 'Racine': {'pop': 195408, 'tracts': 44}, 'Richland': {'pop': 18021, 'tracts': 5}, 'Rock': {'pop': 160331, 'tracts': 38}, 'Rusk': {'pop': 14755, 'tracts': 5}, 'Sauk': {'pop': 61976, 'tracts': 13}, 'Sawyer': {'pop': 16557, 'tracts': 6}, 'Shawano': {'pop': 41949, 'tracts': 11}, 'Sheboygan': {'pop': 115507, 'tracts': 26}, 'St. Croix': {'pop': 84345, 'tracts': 14}, 'Taylor': {'pop': 20689, 'tracts': 6}, 'Trempealeau': {'pop': 28816, 'tracts': 8}, 'Vernon': {'pop': 29773, 'tracts': 7}, 'Vilas': {'pop': 21430, 'tracts': 5}, 'Walworth': {'pop': 102228, 'tracts': 22}, 'Washburn': {'pop': 15911, 'tracts': 5}, 'Washington': {'pop': 131887, 'tracts': 28}, 'Waukesha': {'pop': 389891, 'tracts': 86}, 'Waupaca': {'pop': 52410, 'tracts': 12}, 'Waushara': {'pop': 24496, 'tracts': 7}, 'Winnebago': {'pop': 166994, 'tracts': 41}, 'Wood': {'pop': 74749, 'tracts': 17}}, 'WV': {'Barbour': {'pop': 16589, 'tracts': 4}, 'Berkeley': {'pop': 104169, 'tracts': 14}, 'Boone': {'pop': 24629, 'tracts': 8}, 'Braxton': {'pop': 14523, 'tracts': 3}, 'Brooke': {'pop': 24069, 'tracts': 6}, 'Cabell': {'pop': 96319, 'tracts': 29}, 'Calhoun': {'pop': 7627, 'tracts': 2}, 'Clay': {'pop': 9386, 'tracts': 3}, 'Doddridge': {'pop': 8202, 'tracts': 2}, 'Fayette': {'pop': 46039, 'tracts': 12}, 'Gilmer': {'pop': 8693, 'tracts': 2}, 'Grant': {'pop': 11937, 'tracts': 3}, 'Greenbrier': {'pop': 35480, 'tracts': 7}, 'Hampshire': {'pop': 23964, 'tracts': 5}, 'Hancock': {'pop': 30676, 'tracts': 8}, 'Hardy': {'pop': 14025, 'tracts': 3}, 'Harrison': {'pop': 69099, 'tracts': 22}, 'Jackson': {'pop': 29211, 'tracts': 6}, 'Jefferson': {'pop': 53498, 'tracts': 15}, 'Kanawha': {'pop': 193063, 'tracts': 53}, 'Lewis': {'pop': 16372, 'tracts': 5}, 'Lincoln': {'pop': 21720, 'tracts': 5}, 'Logan': {'pop': 36743, 'tracts': 9}, 'Marion': {'pop': 56418, 'tracts': 18}, 'Marshall': {'pop': 33107, 'tracts': 9}, 'Mason': {'pop': 27324, 'tracts': 6}, 'McDowell': {'pop': 22113, 'tracts': 8}, 'Mercer': {'pop': 62264, 'tracts': 16}, 'Mineral': {'pop': 28212, 'tracts': 7}, 'Mingo': {'pop': 26839, 'tracts': 7}, 'Monongalia': {'pop': 96189, 'tracts': 24}, 'Monroe': {'pop': 13502, 'tracts': 3}, 'Morgan': {'pop': 17541, 'tracts': 4}, 'Nicholas': {'pop': 26233, 'tracts': 7}, 'Ohio': {'pop': 44443, 'tracts': 18}, 'Pendleton': {'pop': 7695, 'tracts': 3}, 'Pleasants': {'pop': 7605, 'tracts': 2}, 'Pocahontas': {'pop': 8719, 'tracts': 4}, 'Preston': {'pop': 33520, 'tracts': 8}, 'Putnam': {'pop': 55486, 'tracts': 10}, 'Raleigh': {'pop': 78859, 'tracts': 17}, 'Randolph': {'pop': 29405, 'tracts': 7}, 'Ritchie': {'pop': 10449, 'tracts': 3}, 'Roane': {'pop': 14926, 'tracts': 4}, 'Summers': {'pop': 13927, 'tracts': 4}, 'Taylor': {'pop': 16895, 'tracts': 4}, 'Tucker': {'pop': 7141, 'tracts': 3}, 'Tyler': {'pop': 9208, 'tracts': 3}, 'Upshur': {'pop': 24254, 'tracts': 6}, 'Wayne': {'pop': 42481, 'tracts': 11}, 'Webster': {'pop': 9154, 'tracts': 3}, 'Wetzel': {'pop': 16583, 'tracts': 5}, 'Wirt': {'pop': 5717, 'tracts': 2}, 'Wood': {'pop': 86956, 'tracts': 26}, 'Wyoming': {'pop': 23796, 'tracts': 6}}, 'WY': {'Albany': {'pop': 36299, 'tracts': 10}, 'Big Horn': {'pop': 11668, 'tracts': 3}, 'Campbell': {'pop': 46133, 'tracts': 7}, 'Carbon': {'pop': 15885, 'tracts': 5}, 'Converse': {'pop': 13833, 'tracts': 4}, 'Crook': {'pop': 7083, 'tracts': 2}, 'Fremont': {'pop': 40123, 'tracts': 10}, 'Goshen': {'pop': 13249, 'tracts': 4}, 'Hot Springs': {'pop': 4812, 'tracts': 2}, 'Johnson': {'pop': 8569, 'tracts': 2}, 'Laramie': {'pop': 91738, 'tracts': 21}, 'Lincoln': {'pop': 18106, 'tracts': 4}, 'Natrona': {'pop': 75450, 'tracts': 18}, 'Niobrara': {'pop': 2484, 'tracts': 1}, 'Park': {'pop': 28205, 'tracts': 5}, 'Platte': {'pop': 8667, 'tracts': 2}, 'Sheridan': {'pop': 29116, 'tracts': 6}, 'Sublette': {'pop': 10247, 'tracts': 2}, 'Sweetwater': {'pop': 43806, 'tracts': 12}, 'Teton': {'pop': 21294, 'tracts': 4}, 'Uinta': {'pop': 21118, 'tracts': 3}, 'Washakie': {'pop': 8533, 'tracts': 3}, 'Weston': {'pop': 7208, 'tracts': 2}}} |
#code https://practice.geeksforgeeks.org/problems/swap-and-maximize/0
for _ in range(int(input())):
n = int(input())
arr = list(map(int, input().split()))
arr.sort()
max = 0
for i in range(n//2):
max -= 2*arr[i]
max += 2*arr[n-i-1]
print(max) | for _ in range(int(input())):
n = int(input())
arr = list(map(int, input().split()))
arr.sort()
max = 0
for i in range(n // 2):
max -= 2 * arr[i]
max += 2 * arr[n - i - 1]
print(max) |
# for loops
# for letter in "Cihat Salik":
# print(letter)
friends = ["Hasan", "Mahmut", "Ali", "Veli"]
for friend in friends:
print(friend)
for index in range(3, 10):
print(index)
for index in range(len(friends)):
print(friends[index])
for index in range(5):
if index == 0:
print("First Iteration")
else:
print("Not first")
| friends = ['Hasan', 'Mahmut', 'Ali', 'Veli']
for friend in friends:
print(friend)
for index in range(3, 10):
print(index)
for index in range(len(friends)):
print(friends[index])
for index in range(5):
if index == 0:
print('First Iteration')
else:
print('Not first') |
"Used to reference the nested workspaces for examples in /WORKSPACE"
ALL_EXAMPLES = [
"angular",
"app",
"kotlin",
"nestjs",
"parcel",
"protocol_buffers",
"user_managed_deps",
"vendored_node",
"vendored_node_and_yarn",
"web_testing",
"webapp",
"worker",
]
| """Used to reference the nested workspaces for examples in /WORKSPACE"""
all_examples = ['angular', 'app', 'kotlin', 'nestjs', 'parcel', 'protocol_buffers', 'user_managed_deps', 'vendored_node', 'vendored_node_and_yarn', 'web_testing', 'webapp', 'worker'] |
def decode_lines(lines_bytes, encoding: str):
if isinstance(lines_bytes[0], bytes):
lines_str = [line.decode(encoding) for line in lines_bytes]
elif isinstance(lines_bytes[0], str):
lines_str = lines_bytes
else:
raise TypeError(type(lines_bytes[0]))
return lines_str
| def decode_lines(lines_bytes, encoding: str):
if isinstance(lines_bytes[0], bytes):
lines_str = [line.decode(encoding) for line in lines_bytes]
elif isinstance(lines_bytes[0], str):
lines_str = lines_bytes
else:
raise type_error(type(lines_bytes[0]))
return lines_str |
# Fitness monday variables
morning_1 = "10:00"
morning_2 = "8:00"
afternoon_1 = "13:00"
afternoon_2 = "14:30"
afternoon_3 = "15:30"
afternoon_4 = "17:55"
evening_1 = "20:30"
evening_2 = "21:10"
date_announce = [1, 2, 3, 4, 5]
image_file_list = [
'Exercise_Three.png',
'Exercise_Two_2.png'
]
# Messages to be display for fitness monday
# messageContentVariables
morning_1_msg = "Do some stretches! @everyone."
morning_2_msg = "Drink water! @everyone."
afternoon_1_msg = "Breath fresh air outside before starting your afternoon shift. @everyone."
afternoon_2_msg = "Drink a glass of water. Stay hydrated, @everyone!"
afternoon_3_msg = "Get up and stretch! @everyone."
afternoon_4_msg = "Go out and breathe before the evening sync. @everyone."
evening_1_msg = "Do some stretches! @everyone."
evening_2_msg = "Drink water. Good night, @everyone."
# Handler for all task in fitness monday
async def health_reminder(current_time, current_week_day, client, channel_id):
'''
current_time - required
current_week_day - Monday=1 ... Sunday=7
client - discord client
channel_id - this is where the bot will sel
discord bot will validate on what to
send to the text channel
'''
text_channel = client.get_channel(channel_id)
if current_week_day in date_announce:
if f'{morning_1}:00' == current_time:
await text_channel.send(morning_1_msg)
if f'{morning_2}:00' == current_time:
await text_channel.send(morning_2_msg)
if f'{afternoon_1}:00' == current_time:
await text_channel.send(afternoon_1_msg)
if f'{afternoon_2}:00' == current_time:
await text_channel.send(afternoon_2_msg)
if f'{afternoon_3}:00' == current_time:
await text_channel.send(afternoon_3_msg)
if f'{afternoon_4}:00' == current_time:
await text_channel.send(afternoon_4_msg)
if f'{evening_1}:00' == current_time:
await text_channel.send(evening_1_msg)
if f'{evening_2}:00' == current_time:
await text_channel.send(evening_2_msg)
| morning_1 = '10:00'
morning_2 = '8:00'
afternoon_1 = '13:00'
afternoon_2 = '14:30'
afternoon_3 = '15:30'
afternoon_4 = '17:55'
evening_1 = '20:30'
evening_2 = '21:10'
date_announce = [1, 2, 3, 4, 5]
image_file_list = ['Exercise_Three.png', 'Exercise_Two_2.png']
morning_1_msg = 'Do some stretches! @everyone.'
morning_2_msg = 'Drink water! @everyone.'
afternoon_1_msg = 'Breath fresh air outside before starting your afternoon shift. @everyone.'
afternoon_2_msg = 'Drink a glass of water. Stay hydrated, @everyone!'
afternoon_3_msg = 'Get up and stretch! @everyone.'
afternoon_4_msg = 'Go out and breathe before the evening sync. @everyone.'
evening_1_msg = 'Do some stretches! @everyone.'
evening_2_msg = 'Drink water. Good night, @everyone.'
async def health_reminder(current_time, current_week_day, client, channel_id):
"""
current_time - required
current_week_day - Monday=1 ... Sunday=7
client - discord client
channel_id - this is where the bot will sel
discord bot will validate on what to
send to the text channel
"""
text_channel = client.get_channel(channel_id)
if current_week_day in date_announce:
if f'{morning_1}:00' == current_time:
await text_channel.send(morning_1_msg)
if f'{morning_2}:00' == current_time:
await text_channel.send(morning_2_msg)
if f'{afternoon_1}:00' == current_time:
await text_channel.send(afternoon_1_msg)
if f'{afternoon_2}:00' == current_time:
await text_channel.send(afternoon_2_msg)
if f'{afternoon_3}:00' == current_time:
await text_channel.send(afternoon_3_msg)
if f'{afternoon_4}:00' == current_time:
await text_channel.send(afternoon_4_msg)
if f'{evening_1}:00' == current_time:
await text_channel.send(evening_1_msg)
if f'{evening_2}:00' == current_time:
await text_channel.send(evening_2_msg) |
#!/usr/bin/python3
# from time import time
# from math import sqrt
# with open("inp.txt", "r") as f:
# a, b = list(i for i in f.read().split())
a, b = input().split()
# print(a,b,c, type(a), type(int(a)))
a = int(a)
b = int(b)
# st = time()
# -----
s1 = a * (a - 1) // 2
cuoi = b - 2
dau = b - a
s2 = (dau + cuoi) * (a - 1) // 2
result = s1 + s2
# -----
print(result)
# print(time() - st) | (a, b) = input().split()
a = int(a)
b = int(b)
s1 = a * (a - 1) // 2
cuoi = b - 2
dau = b - a
s2 = (dau + cuoi) * (a - 1) // 2
result = s1 + s2
print(result) |
n = int(input())
a = input().split()
a = [str(m) for m in a]
for i in a:
if i == "Y":
print("Four")
exit()
print("Three") | n = int(input())
a = input().split()
a = [str(m) for m in a]
for i in a:
if i == 'Y':
print('Four')
exit()
print('Three') |
# Copyright 2020 Thomas Rogers
# SPDX-License-Identifier: Apache-2.0
LOWER_LINK_TAG = 6
UPPER_LINK_TAG = 7
UPPER_WATER_TAG = 9
LOWER_WATER_TAG = 10
UPPER_STACK_TAG = 11
LOWER_STACK_TAG = 12
UPPER_GOO_TAG = 13
LOWER_GOO_TAG = 14
LOWER_LINK_TYPES = {LOWER_LINK_TAG, LOWER_WATER_TAG, LOWER_STACK_TAG, LOWER_GOO_TAG}
UPPER_LINK_TYPES = {UPPER_LINK_TAG, UPPER_WATER_TAG, UPPER_STACK_TAG, UPPER_GOO_TAG}
ROR_TYPE_LINK = "Link"
ROR_TYPE_STACK = "Stack"
ROR_TYPE_WATER = "Water"
ROR_TYPE_GOO = "Goo"
UPPER_TAG_MAPPING = {
ROR_TYPE_LINK: UPPER_LINK_TAG,
ROR_TYPE_STACK: UPPER_STACK_TAG,
ROR_TYPE_WATER: UPPER_WATER_TAG,
ROR_TYPE_GOO: UPPER_GOO_TAG,
}
UPPER_TAG_REVERSE_MAPPING = {
UPPER_LINK_TAG: ROR_TYPE_LINK,
UPPER_STACK_TAG: ROR_TYPE_STACK,
UPPER_WATER_TAG: ROR_TYPE_WATER,
UPPER_GOO_TAG: ROR_TYPE_GOO,
}
LOWER_TAG_MAPPING = {
ROR_TYPE_LINK: LOWER_LINK_TAG,
ROR_TYPE_STACK: LOWER_STACK_TAG,
ROR_TYPE_WATER: LOWER_WATER_TAG,
ROR_TYPE_GOO: LOWER_GOO_TAG,
}
ROR_TILE_MAPPING = {
ROR_TYPE_LINK: 504,
ROR_TYPE_STACK: 504,
ROR_TYPE_WATER: 2915,
ROR_TYPE_GOO: 1120,
}
ROR_TYPES_WITH_WATER = {
ROR_TYPE_WATER,
ROR_TYPE_GOO,
}
| lower_link_tag = 6
upper_link_tag = 7
upper_water_tag = 9
lower_water_tag = 10
upper_stack_tag = 11
lower_stack_tag = 12
upper_goo_tag = 13
lower_goo_tag = 14
lower_link_types = {LOWER_LINK_TAG, LOWER_WATER_TAG, LOWER_STACK_TAG, LOWER_GOO_TAG}
upper_link_types = {UPPER_LINK_TAG, UPPER_WATER_TAG, UPPER_STACK_TAG, UPPER_GOO_TAG}
ror_type_link = 'Link'
ror_type_stack = 'Stack'
ror_type_water = 'Water'
ror_type_goo = 'Goo'
upper_tag_mapping = {ROR_TYPE_LINK: UPPER_LINK_TAG, ROR_TYPE_STACK: UPPER_STACK_TAG, ROR_TYPE_WATER: UPPER_WATER_TAG, ROR_TYPE_GOO: UPPER_GOO_TAG}
upper_tag_reverse_mapping = {UPPER_LINK_TAG: ROR_TYPE_LINK, UPPER_STACK_TAG: ROR_TYPE_STACK, UPPER_WATER_TAG: ROR_TYPE_WATER, UPPER_GOO_TAG: ROR_TYPE_GOO}
lower_tag_mapping = {ROR_TYPE_LINK: LOWER_LINK_TAG, ROR_TYPE_STACK: LOWER_STACK_TAG, ROR_TYPE_WATER: LOWER_WATER_TAG, ROR_TYPE_GOO: LOWER_GOO_TAG}
ror_tile_mapping = {ROR_TYPE_LINK: 504, ROR_TYPE_STACK: 504, ROR_TYPE_WATER: 2915, ROR_TYPE_GOO: 1120}
ror_types_with_water = {ROR_TYPE_WATER, ROR_TYPE_GOO} |
def pattern(n):
res=""
for i in range(n,0,-1):
for j in range(i):
res+=str(n-j)
res+="\n"
return res[:-1] | def pattern(n):
res = ''
for i in range(n, 0, -1):
for j in range(i):
res += str(n - j)
res += '\n'
return res[:-1] |
# Copyright (c) 2016 SwiftStack, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
# implied.
# See the License for the specific language governing permissions and
# limitations under the License.
class MetaMiddleware(object):
def __init__(self, app, conf):
self.app = app
def __call__(self, env, start_response):
hToDel = list()
vToAdd = list()
for h in env:
if h.upper() == 'HTTP_X_PROXYFS_BIMODAL':
hToDel.append(h)
vToAdd.append(env[h])
for h in hToDel:
del env[h]
for v in vToAdd:
env['HTTP_X_ACCOUNT_SYSMETA_PROXYFS_BIMODAL'] = v # only last one, if multiple, will determine value
def meta_response(status, response_headers, exc_info=None):
hvToDel = list()
vToAdd = list()
for (h,v) in response_headers:
if h.upper() == 'X-ACCOUNT-SYSMETA-PROXYFS-BIMODAL':
hvToDel.append((h,v))
vToAdd.append(v)
for hv in hvToDel:
response_headers.remove(hv)
for v in vToAdd:
response_headers.append(('X-ProxyFS-BiModal',v)) # potentially multiple instances of same header
return start_response(status, response_headers, exc_info)
return self.app(env, meta_response)
def filter_factory(global_conf, **local_conf):
conf = global_conf.copy()
conf.update(local_conf)
def meta_filter(app):
return MetaMiddleware(app, conf)
return meta_filter
| class Metamiddleware(object):
def __init__(self, app, conf):
self.app = app
def __call__(self, env, start_response):
h_to_del = list()
v_to_add = list()
for h in env:
if h.upper() == 'HTTP_X_PROXYFS_BIMODAL':
hToDel.append(h)
vToAdd.append(env[h])
for h in hToDel:
del env[h]
for v in vToAdd:
env['HTTP_X_ACCOUNT_SYSMETA_PROXYFS_BIMODAL'] = v
def meta_response(status, response_headers, exc_info=None):
hv_to_del = list()
v_to_add = list()
for (h, v) in response_headers:
if h.upper() == 'X-ACCOUNT-SYSMETA-PROXYFS-BIMODAL':
hvToDel.append((h, v))
vToAdd.append(v)
for hv in hvToDel:
response_headers.remove(hv)
for v in vToAdd:
response_headers.append(('X-ProxyFS-BiModal', v))
return start_response(status, response_headers, exc_info)
return self.app(env, meta_response)
def filter_factory(global_conf, **local_conf):
conf = global_conf.copy()
conf.update(local_conf)
def meta_filter(app):
return meta_middleware(app, conf)
return meta_filter |
class call_if(object):
def __init__(self, cond):
self.condition = cond
def __call__(self, func):
def inner(*args, **kwargs):
if getattr(args[0], self.condition):
return func(*args, **kwargs)
else:
return None
return inner | class Call_If(object):
def __init__(self, cond):
self.condition = cond
def __call__(self, func):
def inner(*args, **kwargs):
if getattr(args[0], self.condition):
return func(*args, **kwargs)
else:
return None
return inner |
# -*- coding: utf-8 -*-
#
# -----------------------------------------------------------------------------------
# Copyright (c) Microsoft Open Technologies (Shanghai) Co. Ltd. All rights reserved.
#
# The MIT License (MIT)
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
# THE SOFTWARE.
# -----------------------------------------------------------------------------------
# "javascript" section for javascript. see @app.route('/config.js') in app/views.py
# NOTE: all following key/secrets for test purpose.
HOSTNAME = "http://localhost" # host name of the UI site
# hacking.kaiyuanshe.cn is used for wechat oauth login
# HOSTNAME = "http://hacking.kaiyuanshe.cn"
# HOSTNAME = "http://open-hackathon-dev.chinacloudapp.cn" # host name of the UI site
# HOSTNAME = "http://hacking.kaiyuanshe.cn"
QQ_OAUTH_STATE = "openhackathon" # todo state should be constant. Actually it should be unguessable to prevent CSFA
HACKATHON_API_ENDPOINT = "http://localhost:15000"
# HACKATHON_API_ENDPOINT = "http://open-hackathon-dev.chinacloudapp.cn:15000"
# HACKATHON_API_ENDPOINT = "http://hacking.kaiyuanshe.cn:15000"
# github key for `localhost`
GITHUB_CLIENT_ID = "b44f3d47bdeb26b9c4e6"
GITHUB_CLIENT_SECRET = "98de14161c4b2ed3ea7a19787d62cda73b8e292c"
# github oauth key for `open-hackathon-dev.chinacloudapp.cn`
# GITHUB_CLIENT_ID = "b8e407813350f26bf537"
# GITHUB_CLIENT_SECRET = "daa78ae27e13c9f5b4a884bd774cadf2f75a199f"
QQ_CLIENT_ID = "101200890"
QQ_CLIENT_SECRET = "88ad67bd4521c4cc47136854781cb9b5"
QQ_META_CONTENT = "274307566465013314076545663016134754100636"
WECHAT_APP_ID = "wxe75b8aef71c2059f"
WECHAT_SECRET = "4532b90750f4c7bc70fcfbc42d881622"
WECHAT_OAUTH_STATE = "openhackathon" # NOTE: may be should be same as QQ_OAUTH_STATE?
WEIBO_CLIENT_ID = "479757037"
WEIBO_CLIENT_SECRET = "efc5e75ff8891be37d90b4eaec5c02de"
WEIBO_META_CONTENT = "ae884e09bc02b700"
LIVE_CLIENT_ID = "000000004414E0A6"
LIVE_CLIENT_SECRET = "b4mkfVqjtwHY2wJh0T4tj74lxM5LgAT2"
ALAUDA_CLIENT_ID = "4VR9kzNZVyWcnk9OnAwMuSus7xOOcozJIpic6W6y"
ALAUDA_CLIENT_SECRET = "E5PUL5h9feLlEirec5HQhjIzYecv7vVbEBjWLBkRMoCoFXdvS1PzNmd4AAeNgu4M2AJ87uGnnJaoDLCcDuVxkBoHRWCn6LmfB4SKK1Dty1SkGukkTcZPEk9wpHLSiRQ3"
Config = {
"environment": "local",
"app": {
"secret_key": "secret_key"
},
"login": {
"github": {
"client_id": GITHUB_CLIENT_ID,
"access_token_url": 'https://github.com/login/oauth/access_token?client_id=%s&client_secret=%s&redirect_uri=%s/github&code=' % (
GITHUB_CLIENT_ID, GITHUB_CLIENT_SECRET, HOSTNAME),
"user_info_url": 'https://api.github.com/user?access_token=',
"emails_info_url": 'https://api.github.com/user/emails?access_token='
},
"qq": {
"client_id": QQ_CLIENT_ID,
"meta_content": QQ_META_CONTENT,
"access_token_url": 'https://graph.qq.com/oauth2.0/token?grant_type=authorization_code&client_id=%s&client_secret=%s&redirect_uri=%s/qq&code=' % (
QQ_CLIENT_ID, QQ_CLIENT_SECRET, HOSTNAME),
"openid_url": 'https://graph.qq.com/oauth2.0/me?access_token=',
"user_info_url": 'https://graph.qq.com/user/get_user_info?access_token=%s&oauth_consumer_key=%s&openid=%s'
},
"wechat": {
"client_id": WECHAT_APP_ID,
"access_token_url": "https://api.weixin.qq.com/sns/oauth2/access_token?appid=%s&secret=%s&code=%%s&grant_type=authorization_code" % (
WECHAT_APP_ID, WECHAT_SECRET),
"user_info_url": "https://api.weixin.qq.com/sns/userinfo?access_token=%s&openid=%s"
},
"weibo": {
"client_id": WEIBO_CLIENT_ID,
"meta_content": WEIBO_META_CONTENT,
"user_info_url": 'https://api.weibo.com/2/users/show.json?access_token=',
"email_info_url": 'https://api.weibo.com/2/account/profile/email.json?access_token=',
"access_token_url": 'https://api.weibo.com/oauth2/access_token?client_id=%s&client_secret=%s&grant_type=authorization_code&redirect_uri=%s/weibo&code=' % (
WEIBO_CLIENT_ID, WEIBO_CLIENT_SECRET, HOSTNAME)
},
"live": {
"client_id": LIVE_CLIENT_ID,
"client_secret": LIVE_CLIENT_SECRET,
"redirect_uri": '%s/live' % HOSTNAME,
"access_token_url": 'https://login.live.com/oauth20_token.srf',
"user_info_url": 'https://apis.live.net/v5.0/me?access_token='
},
"alauda": {
"client_id": ALAUDA_CLIENT_ID,
"client_secret": ALAUDA_CLIENT_SECRET,
"redirect_uri": '%s/alauda' % HOSTNAME,
"access_token_url": 'http://console.int.alauda.io/oauth/token'
},
"provider_enabled": ["github", "wechat"],
"session_valid_time_minutes": 60
},
"hackathon-api": {
"endpoint": HACKATHON_API_ENDPOINT
},
"javascript": {
"github": {
"authorize_url": "https://github.com/login/oauth/authorize?client_id=%s&redirect_uri=%s/github&scope=user" % (
GITHUB_CLIENT_ID, HOSTNAME)
},
"weibo": {
"authorize_url": "https://api.weibo.com/oauth2/authorize?client_id=%s&redirect_uri=%s/weibo&scope=all" % (
WEIBO_CLIENT_ID, HOSTNAME)
},
"qq": {
"authorize_url": "https://graph.qq.com/oauth2.0/authorize?client_id=%s&redirect_uri=%s/qq&scope=get_user_info&state=%s&response_type=code" % (
QQ_CLIENT_ID, HOSTNAME, QQ_OAUTH_STATE)
},
"wechat": {
"authorize_url": "https://open.weixin.qq.com/connect/qrconnect?appid=%s&redirect_uri=%s/wechat&response_type=code&scope=snsapi_login&state=%s#wechat_redirect" % (
WECHAT_APP_ID, HOSTNAME, WECHAT_OAUTH_STATE)
},
"live": {
"authorize_url": "https://login.live.com/oauth20_authorize.srf?client_id=%s&scope=wl.basic+,wl.emails&response_type=code&redirect_uri=%s/live" % (
LIVE_CLIENT_ID, HOSTNAME)
},
"alauda": {
"authorize_url": "http://console.int.alauda.io/oauth/authorize?response_type=code&client_id=%s&state=state&redirect_uri=%s/alauda" % (
ALAUDA_CLIENT_ID, HOSTNAME)
},
"hackathon": {
"endpoint": HACKATHON_API_ENDPOINT
},
"apiconfig": {
"proxy": HACKATHON_API_ENDPOINT,
"api": {
"admin": {
"hackathon": {
"": ["get", "post", "put", "delete"],
"checkname": ["get"],
"list": ["get"],
"online": ["post"],
"applyonline": ["post"],
"offline": ["post"],
"tags": ["get", "post", "put", "delete"],
"config": ["get", "post", "put", "delete"],
"administrator": {
"": ["put", "post", "delete"],
"list": ["get"]
},
"template": {
"": ["post", "delete"],
"list": ["get"],
"check": ["get"]
},
"organizer": {
"": ["get", "post", "put", "delete"]
},
"award": {
"": ["get", "post", "put", "delete"],
"list": ["get"]
},
"notice": {
"": ["get", "post", "put", "delete"]
}
},
"registration": {
"": ["get", "post", "delete", "put"],
"list": ["get"]
},
"azure": {
"": ["get", "post", "delete", "put"],
"checksubid": ["post"]
},
"experiment": {
"list": ["get"],
"": ["post", "put"]
},
"team": {
"list": ["get"],
"score": {
"list": ["get"]
},
"award": ["get", "post", "delete"]
},
"user": {
"list": ["get"]
},
"hostserver": {
"": ["get", "post", "delete", "put"],
"list": ["get"]
}
},
"template": {
"": ["get", "post", "delete", "put"],
"file": ["post"],
"list": ["get"],
"check": ["get"]
},
"user": {
"": ["get"],
"login": ["post", "delete"],
"experiment": {
"": ["get", "post", "delete", "put"]
},
"registration": {
"": ["put", "post", "get"],
"checkemail": ["get"],
"list": ["get"]
},
"profile": {
"": ["post", "put"]
},
"picture": {
"": ["put"]
},
"team": {
"member": ["get"]
},
"hackathon": {
"like": ["get", "post", "delete"]
},
"notice": {
"read": ["put"]
},
"show": {
"list": ["get"]
},
"file": {
"": ["post"]
}
},
"hackathon": {
"": ["get"],
"list": ["get"],
"stat": ["get"],
"template": ["get"],
"team": {
"list": ["get"]
},
"registration": {
"list": ["get"]
},
"show": {
"list": ["get"]
},
"grantedawards": ["get"],
"notice": {
"list": ["get"]
}
},
"team": {
"": ["get", "post", "put", "delete"],
"score": ["get", "post", "put"],
"member": {
"": ["post", "put", "delete"],
"list": ["get"]
},
"show": ["get", "post", "delete"],
"template": ["post", "delete"]
},
"talent": {
"list": ["get"]
},
"grantedawards": ["get"]
}
}
}
}
| hostname = 'http://localhost'
qq_oauth_state = 'openhackathon'
hackathon_api_endpoint = 'http://localhost:15000'
github_client_id = 'b44f3d47bdeb26b9c4e6'
github_client_secret = '98de14161c4b2ed3ea7a19787d62cda73b8e292c'
qq_client_id = '101200890'
qq_client_secret = '88ad67bd4521c4cc47136854781cb9b5'
qq_meta_content = '274307566465013314076545663016134754100636'
wechat_app_id = 'wxe75b8aef71c2059f'
wechat_secret = '4532b90750f4c7bc70fcfbc42d881622'
wechat_oauth_state = 'openhackathon'
weibo_client_id = '479757037'
weibo_client_secret = 'efc5e75ff8891be37d90b4eaec5c02de'
weibo_meta_content = 'ae884e09bc02b700'
live_client_id = '000000004414E0A6'
live_client_secret = 'b4mkfVqjtwHY2wJh0T4tj74lxM5LgAT2'
alauda_client_id = '4VR9kzNZVyWcnk9OnAwMuSus7xOOcozJIpic6W6y'
alauda_client_secret = 'E5PUL5h9feLlEirec5HQhjIzYecv7vVbEBjWLBkRMoCoFXdvS1PzNmd4AAeNgu4M2AJ87uGnnJaoDLCcDuVxkBoHRWCn6LmfB4SKK1Dty1SkGukkTcZPEk9wpHLSiRQ3'
config = {'environment': 'local', 'app': {'secret_key': 'secret_key'}, 'login': {'github': {'client_id': GITHUB_CLIENT_ID, 'access_token_url': 'https://github.com/login/oauth/access_token?client_id=%s&client_secret=%s&redirect_uri=%s/github&code=' % (GITHUB_CLIENT_ID, GITHUB_CLIENT_SECRET, HOSTNAME), 'user_info_url': 'https://api.github.com/user?access_token=', 'emails_info_url': 'https://api.github.com/user/emails?access_token='}, 'qq': {'client_id': QQ_CLIENT_ID, 'meta_content': QQ_META_CONTENT, 'access_token_url': 'https://graph.qq.com/oauth2.0/token?grant_type=authorization_code&client_id=%s&client_secret=%s&redirect_uri=%s/qq&code=' % (QQ_CLIENT_ID, QQ_CLIENT_SECRET, HOSTNAME), 'openid_url': 'https://graph.qq.com/oauth2.0/me?access_token=', 'user_info_url': 'https://graph.qq.com/user/get_user_info?access_token=%s&oauth_consumer_key=%s&openid=%s'}, 'wechat': {'client_id': WECHAT_APP_ID, 'access_token_url': 'https://api.weixin.qq.com/sns/oauth2/access_token?appid=%s&secret=%s&code=%%s&grant_type=authorization_code' % (WECHAT_APP_ID, WECHAT_SECRET), 'user_info_url': 'https://api.weixin.qq.com/sns/userinfo?access_token=%s&openid=%s'}, 'weibo': {'client_id': WEIBO_CLIENT_ID, 'meta_content': WEIBO_META_CONTENT, 'user_info_url': 'https://api.weibo.com/2/users/show.json?access_token=', 'email_info_url': 'https://api.weibo.com/2/account/profile/email.json?access_token=', 'access_token_url': 'https://api.weibo.com/oauth2/access_token?client_id=%s&client_secret=%s&grant_type=authorization_code&redirect_uri=%s/weibo&code=' % (WEIBO_CLIENT_ID, WEIBO_CLIENT_SECRET, HOSTNAME)}, 'live': {'client_id': LIVE_CLIENT_ID, 'client_secret': LIVE_CLIENT_SECRET, 'redirect_uri': '%s/live' % HOSTNAME, 'access_token_url': 'https://login.live.com/oauth20_token.srf', 'user_info_url': 'https://apis.live.net/v5.0/me?access_token='}, 'alauda': {'client_id': ALAUDA_CLIENT_ID, 'client_secret': ALAUDA_CLIENT_SECRET, 'redirect_uri': '%s/alauda' % HOSTNAME, 'access_token_url': 'http://console.int.alauda.io/oauth/token'}, 'provider_enabled': ['github', 'wechat'], 'session_valid_time_minutes': 60}, 'hackathon-api': {'endpoint': HACKATHON_API_ENDPOINT}, 'javascript': {'github': {'authorize_url': 'https://github.com/login/oauth/authorize?client_id=%s&redirect_uri=%s/github&scope=user' % (GITHUB_CLIENT_ID, HOSTNAME)}, 'weibo': {'authorize_url': 'https://api.weibo.com/oauth2/authorize?client_id=%s&redirect_uri=%s/weibo&scope=all' % (WEIBO_CLIENT_ID, HOSTNAME)}, 'qq': {'authorize_url': 'https://graph.qq.com/oauth2.0/authorize?client_id=%s&redirect_uri=%s/qq&scope=get_user_info&state=%s&response_type=code' % (QQ_CLIENT_ID, HOSTNAME, QQ_OAUTH_STATE)}, 'wechat': {'authorize_url': 'https://open.weixin.qq.com/connect/qrconnect?appid=%s&redirect_uri=%s/wechat&response_type=code&scope=snsapi_login&state=%s#wechat_redirect' % (WECHAT_APP_ID, HOSTNAME, WECHAT_OAUTH_STATE)}, 'live': {'authorize_url': 'https://login.live.com/oauth20_authorize.srf?client_id=%s&scope=wl.basic+,wl.emails&response_type=code&redirect_uri=%s/live' % (LIVE_CLIENT_ID, HOSTNAME)}, 'alauda': {'authorize_url': 'http://console.int.alauda.io/oauth/authorize?response_type=code&client_id=%s&state=state&redirect_uri=%s/alauda' % (ALAUDA_CLIENT_ID, HOSTNAME)}, 'hackathon': {'endpoint': HACKATHON_API_ENDPOINT}, 'apiconfig': {'proxy': HACKATHON_API_ENDPOINT, 'api': {'admin': {'hackathon': {'': ['get', 'post', 'put', 'delete'], 'checkname': ['get'], 'list': ['get'], 'online': ['post'], 'applyonline': ['post'], 'offline': ['post'], 'tags': ['get', 'post', 'put', 'delete'], 'config': ['get', 'post', 'put', 'delete'], 'administrator': {'': ['put', 'post', 'delete'], 'list': ['get']}, 'template': {'': ['post', 'delete'], 'list': ['get'], 'check': ['get']}, 'organizer': {'': ['get', 'post', 'put', 'delete']}, 'award': {'': ['get', 'post', 'put', 'delete'], 'list': ['get']}, 'notice': {'': ['get', 'post', 'put', 'delete']}}, 'registration': {'': ['get', 'post', 'delete', 'put'], 'list': ['get']}, 'azure': {'': ['get', 'post', 'delete', 'put'], 'checksubid': ['post']}, 'experiment': {'list': ['get'], '': ['post', 'put']}, 'team': {'list': ['get'], 'score': {'list': ['get']}, 'award': ['get', 'post', 'delete']}, 'user': {'list': ['get']}, 'hostserver': {'': ['get', 'post', 'delete', 'put'], 'list': ['get']}}, 'template': {'': ['get', 'post', 'delete', 'put'], 'file': ['post'], 'list': ['get'], 'check': ['get']}, 'user': {'': ['get'], 'login': ['post', 'delete'], 'experiment': {'': ['get', 'post', 'delete', 'put']}, 'registration': {'': ['put', 'post', 'get'], 'checkemail': ['get'], 'list': ['get']}, 'profile': {'': ['post', 'put']}, 'picture': {'': ['put']}, 'team': {'member': ['get']}, 'hackathon': {'like': ['get', 'post', 'delete']}, 'notice': {'read': ['put']}, 'show': {'list': ['get']}, 'file': {'': ['post']}}, 'hackathon': {'': ['get'], 'list': ['get'], 'stat': ['get'], 'template': ['get'], 'team': {'list': ['get']}, 'registration': {'list': ['get']}, 'show': {'list': ['get']}, 'grantedawards': ['get'], 'notice': {'list': ['get']}}, 'team': {'': ['get', 'post', 'put', 'delete'], 'score': ['get', 'post', 'put'], 'member': {'': ['post', 'put', 'delete'], 'list': ['get']}, 'show': ['get', 'post', 'delete'], 'template': ['post', 'delete']}, 'talent': {'list': ['get']}, 'grantedawards': ['get']}}}} |
def multiple(first,second):
return first * second
def add(x,y):
return x+y
| def multiple(first, second):
return first * second
def add(x, y):
return x + y |
# Copyright 2020 BlueCat Networks. All rights reserved.
# -*- coding: utf-8 -*-
type = 'ui'
sub_pages = [
{
'name' : 'get_audit_info_page',
'title' : u'Get Audit Info',
'endpoint' : 'get_audit_info/get_audit_info_endpoint',
'description' : u'get_audit_info'
},
]
| type = 'ui'
sub_pages = [{'name': 'get_audit_info_page', 'title': u'Get Audit Info', 'endpoint': 'get_audit_info/get_audit_info_endpoint', 'description': u'get_audit_info'}] |
a = str(input('Enter the number you want to reverse:'))
b = (a[::-1])
c = int(b)
print('the reversed number is',c)
| a = str(input('Enter the number you want to reverse:'))
b = a[::-1]
c = int(b)
print('the reversed number is', c) |
class BaseHandler:
def send(self, data, p):
pass
def recv(self, data, p):
pass
def shutdown(self, p, direction=2):
pass
def close(self):
pass
| class Basehandler:
def send(self, data, p):
pass
def recv(self, data, p):
pass
def shutdown(self, p, direction=2):
pass
def close(self):
pass |
enru=open('en-ru.txt','r')
input=open('input.txt','r')
output=open('output.txt','w')
s=enru.read()
x=''
prov={'q','w','e','r','t','y','u','i','o','p','a','s','d','f','g','h','j','k','l','z','x','c','v','b','n','m'}
slovar={}
s=s.replace('\t-\t',' ')
while len(s)>0:
slovar[s[:s.index(' ')]]=s[s.index(' '):s.index('\n')]
s=s[s.index('\n')+1:]
print(slovar)
s=input.read()
s=s.lower()
while len(s)>0:
a=s[0]
if a not in prov:
if x in slovar:
print(slovar[x],a, file=output, sep='',end='')
else:
print(x,a, file=output, sep='',end='')
x=''
else:
x+=a
s=s[1:]
| enru = open('en-ru.txt', 'r')
input = open('input.txt', 'r')
output = open('output.txt', 'w')
s = enru.read()
x = ''
prov = {'q', 'w', 'e', 'r', 't', 'y', 'u', 'i', 'o', 'p', 'a', 's', 'd', 'f', 'g', 'h', 'j', 'k', 'l', 'z', 'x', 'c', 'v', 'b', 'n', 'm'}
slovar = {}
s = s.replace('\t-\t', ' ')
while len(s) > 0:
slovar[s[:s.index(' ')]] = s[s.index(' '):s.index('\n')]
s = s[s.index('\n') + 1:]
print(slovar)
s = input.read()
s = s.lower()
while len(s) > 0:
a = s[0]
if a not in prov:
if x in slovar:
print(slovar[x], a, file=output, sep='', end='')
else:
print(x, a, file=output, sep='', end='')
x = ''
else:
x += a
s = s[1:] |
def conv(x):
return int(''.join(t[c] for c in x))
b = input().split()
N = int(input())
a = [input() for _ in range(N)]
t = {b[i]: str(i) for i in range(10)}
a.sort(key = lambda x: conv(x))
print(*a, sep='\n')
| def conv(x):
return int(''.join((t[c] for c in x)))
b = input().split()
n = int(input())
a = [input() for _ in range(N)]
t = {b[i]: str(i) for i in range(10)}
a.sort(key=lambda x: conv(x))
print(*a, sep='\n') |
IS_TEST = True
REPOSITORY = 'cms-sw/cmssw'
def get_repo_url():
return 'https://github.com/' + REPOSITORY + '/'
CERN_SSO_CERT_FILE = 'private/cert.pem'
CERN_SSO_KEY_FILE = 'private/cert.key'
CERN_SSO_COOKIES_LOCATION = 'private/'
TWIKI_CONTACTS_URL = 'https://ppdcontacts.web.cern.ch/PPDContacts/ppd_contacts'
TWIKI_TAG_COLLECTOR_URL = 'https://twiki.cern.ch/twiki/bin/edit/CMS/DQMP5TagCollector?nowysiwyg=1'
TWIKI_TAG_COLLECTOR_CANCEL_EDIT_URL = 'https://twiki.cern.ch/twiki/bin/save/CMS/DQMP5TagCollector'
CATEGORIES_MAP_URL = 'https://raw.githubusercontent.com/cms-sw/cms-bot/master/categories_map.py'
TWIKI_TIMEOUT_SECONDS = 10
__github_client_id = None
__github_client_secret = None
def get_github_client_id():
global __github_client_id
if __github_client_id == None:
__github_client_id = open('private/github_oauth_data.txt', 'r').readlines()[1].strip()
return __github_client_id
def get_github_client_secret():
global __github_client_secret
if __github_client_secret == None:
__github_client_secret = open('private/github_oauth_data.txt', 'r').readlines()[2].strip()
return __github_client_secret
def get_subsystems():
return ['l1t',
'hlt',
'tracker',
'sistrip',
'pixel',
'ecal',
'hcal',
'dt',
'rpc',
'csc',
'ct-pps',
'ctpps',
'bril',
'gem',
'hgcal',
'tracking',
'btag',
'vertexing',
'e-gamma',
'jetmet',
'lumi',
'muon',
'tau',
'generators',
'hfnose',
'beamspot',
'jme',
'jet',
'eventdisplay',
'castor',
'validation',
]
| is_test = True
repository = 'cms-sw/cmssw'
def get_repo_url():
return 'https://github.com/' + REPOSITORY + '/'
cern_sso_cert_file = 'private/cert.pem'
cern_sso_key_file = 'private/cert.key'
cern_sso_cookies_location = 'private/'
twiki_contacts_url = 'https://ppdcontacts.web.cern.ch/PPDContacts/ppd_contacts'
twiki_tag_collector_url = 'https://twiki.cern.ch/twiki/bin/edit/CMS/DQMP5TagCollector?nowysiwyg=1'
twiki_tag_collector_cancel_edit_url = 'https://twiki.cern.ch/twiki/bin/save/CMS/DQMP5TagCollector'
categories_map_url = 'https://raw.githubusercontent.com/cms-sw/cms-bot/master/categories_map.py'
twiki_timeout_seconds = 10
__github_client_id = None
__github_client_secret = None
def get_github_client_id():
global __github_client_id
if __github_client_id == None:
__github_client_id = open('private/github_oauth_data.txt', 'r').readlines()[1].strip()
return __github_client_id
def get_github_client_secret():
global __github_client_secret
if __github_client_secret == None:
__github_client_secret = open('private/github_oauth_data.txt', 'r').readlines()[2].strip()
return __github_client_secret
def get_subsystems():
return ['l1t', 'hlt', 'tracker', 'sistrip', 'pixel', 'ecal', 'hcal', 'dt', 'rpc', 'csc', 'ct-pps', 'ctpps', 'bril', 'gem', 'hgcal', 'tracking', 'btag', 'vertexing', 'e-gamma', 'jetmet', 'lumi', 'muon', 'tau', 'generators', 'hfnose', 'beamspot', 'jme', 'jet', 'eventdisplay', 'castor', 'validation'] |
# parsetab.py
# This file is automatically generated. Do not edit.
# pylint: disable=W,C,R
_tabversion = '3.10'
_lr_method = 'LALR'
_lr_signature = 'leftIMPLIESSIMPLIESleftANDORleftRPARENLPARENrightNEGATIONALPHABET AND IMPLIES LPAREN NEGATION OR PREDICATE RPAREN SIMPLIESexpr : expr AND exprexpr : ALPHABETexpr : expr OR exprexpr : NEGATION exprexpr : expr IMPLIES exprexpr : expr SIMPLIES exprexpr : LPAREN expr RPAREN'
_lr_action_items = {'ALPHABET':([0,3,4,5,6,7,8,],[2,2,2,2,2,2,2,]),'NEGATION':([0,3,4,5,6,7,8,],[3,3,3,3,3,3,3,]),'LPAREN':([0,3,4,5,6,7,8,],[4,4,4,4,4,4,4,]),'$end':([1,2,9,11,12,13,14,15,],[0,-2,-4,-1,-3,-5,-6,-7,]),'AND':([1,2,9,10,11,12,13,14,15,],[5,-2,-4,5,-1,-3,5,5,-7,]),'OR':([1,2,9,10,11,12,13,14,15,],[6,-2,-4,6,-1,-3,6,6,-7,]),'IMPLIES':([1,2,9,10,11,12,13,14,15,],[7,-2,-4,7,-1,-3,-5,-6,-7,]),'SIMPLIES':([1,2,9,10,11,12,13,14,15,],[8,-2,-4,8,-1,-3,-5,-6,-7,]),'RPAREN':([2,9,10,11,12,13,14,15,],[-2,-4,15,-1,-3,-5,-6,-7,]),}
_lr_action = {}
for _k, _v in _lr_action_items.items():
for _x,_y in zip(_v[0],_v[1]):
if not _x in _lr_action: _lr_action[_x] = {}
_lr_action[_x][_k] = _y
del _lr_action_items
_lr_goto_items = {'expr':([0,3,4,5,6,7,8,],[1,9,10,11,12,13,14,]),}
_lr_goto = {}
for _k, _v in _lr_goto_items.items():
for _x, _y in zip(_v[0], _v[1]):
if not _x in _lr_goto: _lr_goto[_x] = {}
_lr_goto[_x][_k] = _y
del _lr_goto_items
_lr_productions = [
("S' -> expr","S'",1,None,None,None),
('expr -> expr AND expr','expr',3,'p_and','main.py',48),
('expr -> ALPHABET','expr',1,'p_expr','main.py',52),
('expr -> expr OR expr','expr',3,'p_or','main.py',56),
('expr -> NEGATION expr','expr',2,'p_negation','main.py',60),
('expr -> expr IMPLIES expr','expr',3,'p_implies','main.py',64),
('expr -> expr SIMPLIES expr','expr',3,'p_simplies','main.py',69),
('expr -> LPAREN expr RPAREN','expr',3,'p_parens','main.py',73),
]
| _tabversion = '3.10'
_lr_method = 'LALR'
_lr_signature = 'leftIMPLIESSIMPLIESleftANDORleftRPARENLPARENrightNEGATIONALPHABET AND IMPLIES LPAREN NEGATION OR PREDICATE RPAREN SIMPLIESexpr : expr AND exprexpr : ALPHABETexpr : expr OR exprexpr : NEGATION exprexpr : expr IMPLIES exprexpr : expr SIMPLIES exprexpr : LPAREN expr RPAREN'
_lr_action_items = {'ALPHABET': ([0, 3, 4, 5, 6, 7, 8], [2, 2, 2, 2, 2, 2, 2]), 'NEGATION': ([0, 3, 4, 5, 6, 7, 8], [3, 3, 3, 3, 3, 3, 3]), 'LPAREN': ([0, 3, 4, 5, 6, 7, 8], [4, 4, 4, 4, 4, 4, 4]), '$end': ([1, 2, 9, 11, 12, 13, 14, 15], [0, -2, -4, -1, -3, -5, -6, -7]), 'AND': ([1, 2, 9, 10, 11, 12, 13, 14, 15], [5, -2, -4, 5, -1, -3, 5, 5, -7]), 'OR': ([1, 2, 9, 10, 11, 12, 13, 14, 15], [6, -2, -4, 6, -1, -3, 6, 6, -7]), 'IMPLIES': ([1, 2, 9, 10, 11, 12, 13, 14, 15], [7, -2, -4, 7, -1, -3, -5, -6, -7]), 'SIMPLIES': ([1, 2, 9, 10, 11, 12, 13, 14, 15], [8, -2, -4, 8, -1, -3, -5, -6, -7]), 'RPAREN': ([2, 9, 10, 11, 12, 13, 14, 15], [-2, -4, 15, -1, -3, -5, -6, -7])}
_lr_action = {}
for (_k, _v) in _lr_action_items.items():
for (_x, _y) in zip(_v[0], _v[1]):
if not _x in _lr_action:
_lr_action[_x] = {}
_lr_action[_x][_k] = _y
del _lr_action_items
_lr_goto_items = {'expr': ([0, 3, 4, 5, 6, 7, 8], [1, 9, 10, 11, 12, 13, 14])}
_lr_goto = {}
for (_k, _v) in _lr_goto_items.items():
for (_x, _y) in zip(_v[0], _v[1]):
if not _x in _lr_goto:
_lr_goto[_x] = {}
_lr_goto[_x][_k] = _y
del _lr_goto_items
_lr_productions = [("S' -> expr", "S'", 1, None, None, None), ('expr -> expr AND expr', 'expr', 3, 'p_and', 'main.py', 48), ('expr -> ALPHABET', 'expr', 1, 'p_expr', 'main.py', 52), ('expr -> expr OR expr', 'expr', 3, 'p_or', 'main.py', 56), ('expr -> NEGATION expr', 'expr', 2, 'p_negation', 'main.py', 60), ('expr -> expr IMPLIES expr', 'expr', 3, 'p_implies', 'main.py', 64), ('expr -> expr SIMPLIES expr', 'expr', 3, 'p_simplies', 'main.py', 69), ('expr -> LPAREN expr RPAREN', 'expr', 3, 'p_parens', 'main.py', 73)] |
def find_paths(start, connections, visited=None, small_cave_visited_twice=False):
if visited is None:
visited = ["start"]
possible_connections = [e for s, e in connections if s == start] + [s for s, e in connections if e == start]
paths = []
if not possible_connections:
raise ValueError(f"No possible connections from cave {start}.")
for e in possible_connections:
path = []
if start == "start":
path.append(start)
visited_on_path = [] + visited
small_cave_visited_twice_on_path = small_cave_visited_twice
if e == "start":
continue # don't return to the start cave
if e == e.lower() and e in visited_on_path and small_cave_visited_twice_on_path:
continue # don't visit small caves more than once
if e == e.lower() and e in visited_on_path:
small_cave_visited_twice_on_path = True
path.append(e)
if e == "end":
paths.append(path)
continue # path is complete
visited_on_path.append(e)
try:
resulting_paths = find_paths(
start=e,
connections=connections,
visited=visited_on_path,
small_cave_visited_twice=small_cave_visited_twice_on_path
)
resulting_paths = [path + p for p in resulting_paths]
except ValueError:
continue # skip connections which lead to a dead end
paths.extend(resulting_paths)
return paths
def main():
with open("data.txt") as f:
connections = [c.replace("\n", "").split("-") for c in f.readlines()]
print(len(find_paths("start", connections)))
if __name__ == "__main__":
main()
| def find_paths(start, connections, visited=None, small_cave_visited_twice=False):
if visited is None:
visited = ['start']
possible_connections = [e for (s, e) in connections if s == start] + [s for (s, e) in connections if e == start]
paths = []
if not possible_connections:
raise value_error(f'No possible connections from cave {start}.')
for e in possible_connections:
path = []
if start == 'start':
path.append(start)
visited_on_path = [] + visited
small_cave_visited_twice_on_path = small_cave_visited_twice
if e == 'start':
continue
if e == e.lower() and e in visited_on_path and small_cave_visited_twice_on_path:
continue
if e == e.lower() and e in visited_on_path:
small_cave_visited_twice_on_path = True
path.append(e)
if e == 'end':
paths.append(path)
continue
visited_on_path.append(e)
try:
resulting_paths = find_paths(start=e, connections=connections, visited=visited_on_path, small_cave_visited_twice=small_cave_visited_twice_on_path)
resulting_paths = [path + p for p in resulting_paths]
except ValueError:
continue
paths.extend(resulting_paths)
return paths
def main():
with open('data.txt') as f:
connections = [c.replace('\n', '').split('-') for c in f.readlines()]
print(len(find_paths('start', connections)))
if __name__ == '__main__':
main() |
class Tree:
def __init__(self, val,left = None, right = None):
self.val = val
self.left = left
self.right = right
root = Tree(4, left = Tree(3), right=Tree(5, left= Tree(4)))
#InOrderTraversal
def InOrderTraversal(root, res = []):
if root is None:
return res
InOrderTraversal(root.left, res)
InOrderTraversal(root.right, res)
res.append(root.val)
return res
print("In order:", InOrderTraversal(root))
#PreOrderTraversal
def PreOrderTraversal(root, res = []):
if root is None:
return res
res.append(root.val)
InOrderTraversal(root.left, res)
InOrderTraversal(root.right, res)
return res
print("Pre order:", PreOrderTraversal(root))
#PostOrderTraversal
def PostOrderTraversal(root, res = []):
if root is None:
return res
InOrderTraversal(root.left, res)
res.append(root.val)
InOrderTraversal(root.right, res)
return res
print("Post order:", PostOrderTraversal(root))
def LevelOrderTraversal(root, res =[ ]):
if root is None:
return res
queue = []
queue.append(root)
while len(queue)>0:
res.append(queue[0].val)
node = queue.pop(0)
if node.left is not None:
queue.append(node.left)
if node.right is not None:
queue.append(node.right)
return res
print("Level order Traversal: ", LevelOrderTraversal(root)) | class Tree:
def __init__(self, val, left=None, right=None):
self.val = val
self.left = left
self.right = right
root = tree(4, left=tree(3), right=tree(5, left=tree(4)))
def in_order_traversal(root, res=[]):
if root is None:
return res
in_order_traversal(root.left, res)
in_order_traversal(root.right, res)
res.append(root.val)
return res
print('In order:', in_order_traversal(root))
def pre_order_traversal(root, res=[]):
if root is None:
return res
res.append(root.val)
in_order_traversal(root.left, res)
in_order_traversal(root.right, res)
return res
print('Pre order:', pre_order_traversal(root))
def post_order_traversal(root, res=[]):
if root is None:
return res
in_order_traversal(root.left, res)
res.append(root.val)
in_order_traversal(root.right, res)
return res
print('Post order:', post_order_traversal(root))
def level_order_traversal(root, res=[]):
if root is None:
return res
queue = []
queue.append(root)
while len(queue) > 0:
res.append(queue[0].val)
node = queue.pop(0)
if node.left is not None:
queue.append(node.left)
if node.right is not None:
queue.append(node.right)
return res
print('Level order Traversal: ', level_order_traversal(root)) |
def groups_for_user(environ, user):
if user == 'feng':
return ['secret-agents']
return ['']
| def groups_for_user(environ, user):
if user == 'feng':
return ['secret-agents']
return [''] |
SOLIDITY_TO_BQ_TYPES = {
'address': 'STRING',
}
table_description = ''
def abi_to_table_definitions_for_solana(
abi,
dataset_name,
contract_name,
contract_address=None,
include_functions=False
):
result = {}
for a in abi.get('events') if abi.get('events') else []:
parser_type = 'log'
table_name = create_table_name(a, contract_name, parser_type)
result[table_name] = abi_to_table_definition(a, contract_address, dataset_name, contract_name, parser_type)
if include_functions:
for a in abi.get('instructions') if abi.get('instructions') else []:
parser_type = 'instruction'
table_name = create_table_name(a, contract_name, parser_type)
result[table_name] = abi_to_table_definition(a, contract_address, dataset_name, contract_name, parser_type)
return result
def abi_to_table_definition(abi, contract_address, dataset_name, contract_name, parser_type):
table_name = create_table_name(abi, contract_name, parser_type)
result = {}
result['parser'] = {
'type': parser_type,
'contract_address': contract_address,
'idl': abi,
'field_mapping': {}
}
inputs = abi.get('args') if parser_type == 'instruction' else abi.get('fields')
schema = [
{
'name': x.get('name'),
'description': '',
'type': 'STRING' # we sometimes get parsing errors, so safest to make all STRING
} for x in inputs
]
if parser_type == 'instruction' and abi.get('accounts'):
schema.append({
'name': 'accounts',
'description': 'accounts',
'type': 'RECORD',
'fields': [
{
'name': acc.get('name'),
'description': '',
'type': 'STRING'
} for acc in abi.get('accounts')
]
})
result['table'] = {
'dataset_name': dataset_name,
'table_name': table_name,
'table_description': table_description,
'schema': schema
}
return result
def create_table_name(abi, contract_name, parser_type):
if parser_type == 'log':
return contract_name + '_event_' + abi['name']
else:
return contract_name + '_call_' + abi['name']
def get_columns_from_event_abi(event_abi):
return [a.get('name') for a in event_abi['inputs']]
| solidity_to_bq_types = {'address': 'STRING'}
table_description = ''
def abi_to_table_definitions_for_solana(abi, dataset_name, contract_name, contract_address=None, include_functions=False):
result = {}
for a in abi.get('events') if abi.get('events') else []:
parser_type = 'log'
table_name = create_table_name(a, contract_name, parser_type)
result[table_name] = abi_to_table_definition(a, contract_address, dataset_name, contract_name, parser_type)
if include_functions:
for a in abi.get('instructions') if abi.get('instructions') else []:
parser_type = 'instruction'
table_name = create_table_name(a, contract_name, parser_type)
result[table_name] = abi_to_table_definition(a, contract_address, dataset_name, contract_name, parser_type)
return result
def abi_to_table_definition(abi, contract_address, dataset_name, contract_name, parser_type):
table_name = create_table_name(abi, contract_name, parser_type)
result = {}
result['parser'] = {'type': parser_type, 'contract_address': contract_address, 'idl': abi, 'field_mapping': {}}
inputs = abi.get('args') if parser_type == 'instruction' else abi.get('fields')
schema = [{'name': x.get('name'), 'description': '', 'type': 'STRING'} for x in inputs]
if parser_type == 'instruction' and abi.get('accounts'):
schema.append({'name': 'accounts', 'description': 'accounts', 'type': 'RECORD', 'fields': [{'name': acc.get('name'), 'description': '', 'type': 'STRING'} for acc in abi.get('accounts')]})
result['table'] = {'dataset_name': dataset_name, 'table_name': table_name, 'table_description': table_description, 'schema': schema}
return result
def create_table_name(abi, contract_name, parser_type):
if parser_type == 'log':
return contract_name + '_event_' + abi['name']
else:
return contract_name + '_call_' + abi['name']
def get_columns_from_event_abi(event_abi):
return [a.get('name') for a in event_abi['inputs']] |
roman_dict = {
"I" : 1,
"V" : 5,
"X" : 10,
"L" : 50,
"C" : 100,
"D" : 500,
"M" : 1000
}
class Solution:
def romanToInt(self, s: str) -> int:
previous = 0
current = 0
result = 0
for x in s[::-1]:
current = roman_dict[x]
if (previous > current):
result -= current
else:
result += current
previous = current
print(result)
obj = Solution()
obj.romanToInt("III")
obj.romanToInt("XXVII")
obj.romanToInt("IV") | roman_dict = {'I': 1, 'V': 5, 'X': 10, 'L': 50, 'C': 100, 'D': 500, 'M': 1000}
class Solution:
def roman_to_int(self, s: str) -> int:
previous = 0
current = 0
result = 0
for x in s[::-1]:
current = roman_dict[x]
if previous > current:
result -= current
else:
result += current
previous = current
print(result)
obj = solution()
obj.romanToInt('III')
obj.romanToInt('XXVII')
obj.romanToInt('IV') |
# Usage: execute
# $ python support/generate.py
# at wpt/upgrade-insecure-requests/.
#
# Note: Some tests (link-upgrade.sub.https.html and
# websocket-upgrade.https.html) are not covered by this generator script.
template = '''<!DOCTYPE html>
<html>
<head>
<!-- Generated by wpt/upgrade-insecure-requests/support/generate.py -->%(additionalMeta)s
<title>Upgrade Insecure Requests: %(name)s.</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="./support/testharness-helper.sub.js"></script>
<script src="/common/security-features/resources/common.sub.js"></script>
<meta http-equiv="Content-Security-Policy" content="upgrade-insecure-requests">
</head>
<body>
<script>
const tests = %(generatorName)s(ResourceType.%(resourceType)s, %(sameOriginOnly)s);
tests.forEach(test => testMap['%(name)s'](test));
</script>
</body>
</html>
'''
def getLong(file):
testsThatNeedMoreTime = [ "worker-subresource-fetch-redirect-upgrade.https.html" ]
if any(file in item for item in testsThatNeedMoreTime ):
return '\n<meta name="timeout" content="long">'
return ""
# resourceType is |ResourceType| in testharness-helper.sub.js.
for name, resourceType in [
('image', 'IMAGE'), ('iframe', 'FRAME'),
('animation-worklet', 'WORKLET'), ('audio-worklet', 'WORKLET'),
('layout-worklet', 'WORKLET'), ('paint-worklet', 'WORKLET'),
('worker', 'WORKER'),
('module-worker', 'WORKER'),
('worker-subresource-xhr', 'FETCH'),
('worker-subresource-fetch', 'FETCH'),
('shared-worker', 'SHARED_WORKER')]:
# TODO(https://crbug.com/989399): Add tests for subresource requests on shared
# workers, and main/subresource requests on service workers.
sameOriginOnly = 'false'
if resourceType == 'WORKER' or resourceType == 'SHARED_WORKER':
sameOriginOnly = 'true'
types = [('', 'generateTests'), ('-redirect', 'generateRedirectTests')]
if name == 'module-worker' or resourceType == 'WORKLET':
types.append(('-import', 'generateModuleImportTests'))
for typeName, generatorName in types:
filename = '%s%s-upgrade.https.html' % (name, typeName)
with open(filename, 'w') as html_file:
html_file.write(template % {
'name': name,
'additionalMeta': getLong(filename),
'resourceType': resourceType,
'generatorName': generatorName,
'sameOriginOnly': sameOriginOnly})
| template = '<!DOCTYPE html>\n<html>\n<head>\n<!-- Generated by wpt/upgrade-insecure-requests/support/generate.py -->%(additionalMeta)s\n<title>Upgrade Insecure Requests: %(name)s.</title>\n<script src="/resources/testharness.js"></script>\n<script src="/resources/testharnessreport.js"></script>\n<script src="./support/testharness-helper.sub.js"></script>\n<script src="/common/security-features/resources/common.sub.js"></script>\n\n<meta http-equiv="Content-Security-Policy" content="upgrade-insecure-requests">\n</head>\n<body>\n<script>\nconst tests = %(generatorName)s(ResourceType.%(resourceType)s, %(sameOriginOnly)s);\ntests.forEach(test => testMap[\'%(name)s\'](test));\n</script>\n</body>\n</html>\n'
def get_long(file):
tests_that_need_more_time = ['worker-subresource-fetch-redirect-upgrade.https.html']
if any((file in item for item in testsThatNeedMoreTime)):
return '\n<meta name="timeout" content="long">'
return ''
for (name, resource_type) in [('image', 'IMAGE'), ('iframe', 'FRAME'), ('animation-worklet', 'WORKLET'), ('audio-worklet', 'WORKLET'), ('layout-worklet', 'WORKLET'), ('paint-worklet', 'WORKLET'), ('worker', 'WORKER'), ('module-worker', 'WORKER'), ('worker-subresource-xhr', 'FETCH'), ('worker-subresource-fetch', 'FETCH'), ('shared-worker', 'SHARED_WORKER')]:
same_origin_only = 'false'
if resourceType == 'WORKER' or resourceType == 'SHARED_WORKER':
same_origin_only = 'true'
types = [('', 'generateTests'), ('-redirect', 'generateRedirectTests')]
if name == 'module-worker' or resourceType == 'WORKLET':
types.append(('-import', 'generateModuleImportTests'))
for (type_name, generator_name) in types:
filename = '%s%s-upgrade.https.html' % (name, typeName)
with open(filename, 'w') as html_file:
html_file.write(template % {'name': name, 'additionalMeta': get_long(filename), 'resourceType': resourceType, 'generatorName': generatorName, 'sameOriginOnly': sameOriginOnly}) |
#!usr/bin/env python3
color_chart = {
'1C1':[13.24, 88.89, 228.98, 0.], '1N1':[14.2, 95.37, 233.82, 0.], '1N2':[12.95, 91.79, 219.5, 0.],
'1W1':[14.67, 103.64, 229.41, 0.], '1W2':[14.69, 106.34, 227.28, 0.], '2C0':[15.73, 134.68, 222.32, 0.],
'2C1':[14.57, 125.89, 220.69, 0.], '2C3':[13.7, 103.72, 199.46, 0.], '2N1':[15., 104.25, 225.8, 0.],
'2W0':[15., 110.11, 224.22, 0.], '2W1':[14.42, 125.06, 224.55, 0.], '2W2':[17.13, 141.58, 209.99, 0.],
'3C1':[15.7, 118.18, 212.01, 0.], '3C2':[15.7, 118.18, 212.01, 0.], '3N1':[16.1, 150.1, 189.09, 0.],
'3N2':[15.18, 140.68, 202.63, 0.], '3W1':[15.66, 129.81, 209.44, 0.], '3W2':[17.05, 161.56, 184.85, 0.],
'4C3':[14.23, 148.1, 198.74, 0.], '4N1':[15.92, 159.35, 190.71, 0.], '4N2':[17.29, 166.95, 195.76, 0.],
'4W1':[14.67, 143.61, 208.85, 0.], '4W2':[17.76, 162.02, 189.44, 0.], '5C1':[13.09, 179.49, 160.58, 0.],
'5N1':[15.43, 187.36, 180.34, 0.], '5N2':[16.66, 207.88, 147.84, 0.], '5W1':[15.66, 163.85, 182.07, 0.],
'5W2':[14.95, 160.63, 189.17, 0.], '6C2':[12.85, 179.52, 131.66, 0.], '6N1':[14.94, 185.61, 162.16, 0.],
'6N2':[15.7, 183.46, 138.37, 0.], '6W1':[14.76, 166.57, 166.78, 0.], '6W2':[13.79, 176.99, 142.22, 0.],
'7C1':[12.2, 191.5, 121.34, 0.], '7N1':[12.7, 162.67, 109.41, 0.], '7W1':[13.25, 165.64, 126.03, 0.],
'8N1':[12.5, 191.83, 95.43, 0.], 'CR1':[14.09, 173.14, 163.66, 0.]}
color_chart_new = {
'1C1':[14.63, 79.35, 239.58, 0.], '1N1':[16.89, 77.75, 243.46, 0.], '1N2':[13.27, 104.13, 231.18, 0.],
'1W1':[17.78, 104.99, 236.54, 0.], '1W2':[16., 117.24, 234.86, 0.], '2C0':[17.16, 80.90, 240.48, 0.],
'2C1':[14., 116.60, 237.21, 0.], '2C3':[13.36, 94.80, 231.17, 0.], '2N1':[16., 115.65, 238.19, 0.],
'2W0':[15.79, 108.95, 237.93, 0.], '2W1':[15.01, 120.45, 240.01, 0.], '2W2':[17.97, 125.56, 243.83, 0.],
'3C1':[10.99, 115.63, 226.18, 0.], '3C2':[10.84, 117.73, 219.17, 0.], '3N1':[11.9, 126.73, 228.04, 0.],
'3N2':[11.43, 126.97, 224.13, 0.], '3W1':[13.14, 148.12, 229.10, 0.], '3W2':[14.01, 133.06, 234.48, 0.],
'4C3':[11.68, 150.85, 219.34, 0.], '4N1':[12., 151.75, 190.41, 0.], '4N2':[12.24, 138.18, 206.75, 0.],
'4W1':[12., 151.31, 224.04, 0.], '4W2':[12., 165.62, 201.74, 0.], '5C1':[10.4, 184.48, 176.72, 0.],
'5N1':[11.68, 188.46, 210.23, 0.], '5N2':[10.98, 183.80, 195.04, 0.], '5W1':[12.73, 185.75, 221.30, 0.],
'5W2':[10.83, 162.54, 211.10, 0.], '6C2':[9.29, 217.70, 111.99, 0.], '6N1':[11.24, 180.30, 156.76, 0.],
'6N2':[11., 173.55, 145.55, 0.], '6W1':[11.09, 188.43, 171.41, 0.], '6W2':[11., 182.77, 151.02, 0.],
'7C1':[8.07, 199.37, 115.59, 0.], '7N1':[9.93, 187.51, 122.57, 0.], '7W1':[9.86, 192.48, 135.62, 0.],
'8N1':[8.64, 181.83, 109.53, 0.]} | color_chart = {'1C1': [13.24, 88.89, 228.98, 0.0], '1N1': [14.2, 95.37, 233.82, 0.0], '1N2': [12.95, 91.79, 219.5, 0.0], '1W1': [14.67, 103.64, 229.41, 0.0], '1W2': [14.69, 106.34, 227.28, 0.0], '2C0': [15.73, 134.68, 222.32, 0.0], '2C1': [14.57, 125.89, 220.69, 0.0], '2C3': [13.7, 103.72, 199.46, 0.0], '2N1': [15.0, 104.25, 225.8, 0.0], '2W0': [15.0, 110.11, 224.22, 0.0], '2W1': [14.42, 125.06, 224.55, 0.0], '2W2': [17.13, 141.58, 209.99, 0.0], '3C1': [15.7, 118.18, 212.01, 0.0], '3C2': [15.7, 118.18, 212.01, 0.0], '3N1': [16.1, 150.1, 189.09, 0.0], '3N2': [15.18, 140.68, 202.63, 0.0], '3W1': [15.66, 129.81, 209.44, 0.0], '3W2': [17.05, 161.56, 184.85, 0.0], '4C3': [14.23, 148.1, 198.74, 0.0], '4N1': [15.92, 159.35, 190.71, 0.0], '4N2': [17.29, 166.95, 195.76, 0.0], '4W1': [14.67, 143.61, 208.85, 0.0], '4W2': [17.76, 162.02, 189.44, 0.0], '5C1': [13.09, 179.49, 160.58, 0.0], '5N1': [15.43, 187.36, 180.34, 0.0], '5N2': [16.66, 207.88, 147.84, 0.0], '5W1': [15.66, 163.85, 182.07, 0.0], '5W2': [14.95, 160.63, 189.17, 0.0], '6C2': [12.85, 179.52, 131.66, 0.0], '6N1': [14.94, 185.61, 162.16, 0.0], '6N2': [15.7, 183.46, 138.37, 0.0], '6W1': [14.76, 166.57, 166.78, 0.0], '6W2': [13.79, 176.99, 142.22, 0.0], '7C1': [12.2, 191.5, 121.34, 0.0], '7N1': [12.7, 162.67, 109.41, 0.0], '7W1': [13.25, 165.64, 126.03, 0.0], '8N1': [12.5, 191.83, 95.43, 0.0], 'CR1': [14.09, 173.14, 163.66, 0.0]}
color_chart_new = {'1C1': [14.63, 79.35, 239.58, 0.0], '1N1': [16.89, 77.75, 243.46, 0.0], '1N2': [13.27, 104.13, 231.18, 0.0], '1W1': [17.78, 104.99, 236.54, 0.0], '1W2': [16.0, 117.24, 234.86, 0.0], '2C0': [17.16, 80.9, 240.48, 0.0], '2C1': [14.0, 116.6, 237.21, 0.0], '2C3': [13.36, 94.8, 231.17, 0.0], '2N1': [16.0, 115.65, 238.19, 0.0], '2W0': [15.79, 108.95, 237.93, 0.0], '2W1': [15.01, 120.45, 240.01, 0.0], '2W2': [17.97, 125.56, 243.83, 0.0], '3C1': [10.99, 115.63, 226.18, 0.0], '3C2': [10.84, 117.73, 219.17, 0.0], '3N1': [11.9, 126.73, 228.04, 0.0], '3N2': [11.43, 126.97, 224.13, 0.0], '3W1': [13.14, 148.12, 229.1, 0.0], '3W2': [14.01, 133.06, 234.48, 0.0], '4C3': [11.68, 150.85, 219.34, 0.0], '4N1': [12.0, 151.75, 190.41, 0.0], '4N2': [12.24, 138.18, 206.75, 0.0], '4W1': [12.0, 151.31, 224.04, 0.0], '4W2': [12.0, 165.62, 201.74, 0.0], '5C1': [10.4, 184.48, 176.72, 0.0], '5N1': [11.68, 188.46, 210.23, 0.0], '5N2': [10.98, 183.8, 195.04, 0.0], '5W1': [12.73, 185.75, 221.3, 0.0], '5W2': [10.83, 162.54, 211.1, 0.0], '6C2': [9.29, 217.7, 111.99, 0.0], '6N1': [11.24, 180.3, 156.76, 0.0], '6N2': [11.0, 173.55, 145.55, 0.0], '6W1': [11.09, 188.43, 171.41, 0.0], '6W2': [11.0, 182.77, 151.02, 0.0], '7C1': [8.07, 199.37, 115.59, 0.0], '7N1': [9.93, 187.51, 122.57, 0.0], '7W1': [9.86, 192.48, 135.62, 0.0], '8N1': [8.64, 181.83, 109.53, 0.0]} |
# !!!!!!! This file is OBSOLETE. Its content has been absorbed into pilotController.py in the autopilot repository.
# !!!!!!! Questions to Torre Wenaus.
PandaSiteIDs = {
'AGLT2' : {'nickname':'AGLT2-condor','status':'OK'},
'ALBERTA-LCG2' : {'nickname':'ALBERTA-LCG2-lcgce01-atlas-lcgpbs','status':'OK'},
'ANALY_AGLT2' : {'nickname':'ANALY_AGLT2-condor','status':'OK'},
'ANALY_ALBERTA' : {'nickname':'ALBERTA-LCG2-lcgce01-atlas-lcgpbs','status':'OK'},
'ANALY_BEIJING' : {'nickname':'BEIJING-LCG2-lcg002-atlas-lcgpbs','status':'OK'},
'ANALY_BNL' : {'nickname':'BNL_ATLAS_1-condor','status':'OK'},
'ANALY_BNL_ATLAS_1' : {'nickname':'BNL_ATLAS_1-condor','status':'OK'},
'ANALY_BNL_ATLAS_2' : {'nickname':'BNL_ATLAS_2-condor','status':'OK'},
#'ANALY_BNL_LOCAL' : {'nickname':'BNL_ATLAS_1-condor','status':'OK'},
'ANALY_BNL_test' : {'nickname':'BNL_ATLAS_1-condor','status':'OK'},
'ANALY_BNL_test2' : {'nickname':'ANALY_BNL_ATLAS_1-condor','status':'OK'},
'ANALY_BNL_test3' : {'nickname':'BNL_ATLAS_1-condor','status':'OK'},
'ANALY_BRUNEL' : {'nickname':'UKI-LT2-Brunel-dgc-grid-44-atlas-lcgpbs','status':'notOK'},
'ANALY_CERN' : {'nickname':'CERN-PROD-ce123-grid_atlas-lcglsf','status':'notOK'},
'ANALY_CNAF' : {'nickname':'INFN-CNAF-gridit-ce-001-lcg-lcgpbs','status':'notOK'},
'ANALY_CPPM' : {'nickname':'IN2P3-CPPM-marce01-atlas-pbs','status':'OK'},
'ANALY_FZK' : {'nickname':'FZK-LCG2-ce-5-fzk-atlasXS-pbspro','status':'OK'},
'ANALY_GLASGOW' : {'nickname':'UKI-SCOTGRID-GLASGOW-svr021-q3d-lcgpbs','status':'OK'},
'ANALY_GLOW-ATLAS' : {'nickname':'GLOW-ATLAS-condor','status':'OK'},
'ANALY_GRIF-IRFU' : {'nickname':'GRIF-IRFU-node07-atlas-lcgpbs','status':'OK'},
'ANALY_GRIF-LAL' : {'nickname':'GRIF-LAL-grid10-atlasana-pbs','status':'notOK'},
'ANALY_GRIF-LPNHE' : {'nickname':'GRIF-LPNHE-lpnce-atlas-pbs','status':'notOK'},
'ANALY_HU_ATLAS_Tier2' : {'nickname':'ANALY_HU_ATLAS_Tier2-lsf','status':'OK'},
'ANALY_LANCS' : {'nickname':'UKI-NORTHGRID-LANCS-HEP-fal-pygrid-18-atlas-lcgpbs','status':'notOK'},
'ANALY_LAPP' : {'nickname':'IN2P3-LAPP-lapp-ce01-atlas-pbs','status':'notOK'},
'ANALY_LIV' : {'nickname':'UKI-NORTHGRID-LIV-HEP-hepgrid2-atlas-lcgpbs','status':'notOK'},
'ANALY_LONG_BNL' : {'nickname':'BNL_ATLAS_1-condor','status':'OK'},
'ANALY_LONG_BNL_ATLAS' : {'nickname':'BNL_ATLAS_2-condor','status':'OK'},
'ANALY_LONG_BNL_LOCAL' : {'nickname':'BNL_ATLAS_1-condor','status':'OK'},
'ANALY_LONG_LYON' : {'nickname':'IN2P3-CC-T2-cclcgceli05-long-bqs','status':'OK'},
'ANALY_LPC' : {'nickname':'IN2P3-LPC-clrlcgce03-atlas-lcgpbs','status':'notOK'},
'ANALY_LPSC' : {'nickname':'IN2P3-LPSC-lpsc-ce-atlas-pbs','status':'OK'},
'ANALY_LYON' : {'nickname':'IN2P3-CC-T2-cclcgceli05-medium-bqs','status':'OK'},
'ANALY_MANC' : {'nickname':'UKI-NORTHGRID-MAN-HEP-ce01-atlas-lcgpbs','status':'OK'},
'ANALY_MCGILL' : {'nickname':'MCGILL-LCG2-atlas-ce-atlas-lcgpbs','status':'OK'},
'ANALY_MWT2' : {'nickname':'ANALY_MWT2-condor','status':'notOK'},
'ANALY_MWT2_SHORT' : {'nickname':'ANALY_MWT2_SHORT-pbs','status':'notOK'},
'ANALY_NET2' : {'nickname':'ANALY_NET2-pbs','status':'OK'},
'ANALY_OU_OCHEP_SWT2' : {'nickname':'ANALY_OU_OCHEP_SWT2-condor','status':'notOK'},
'ANALY_PIC' : {'nickname':'pic-ce07-gshort-lcgpbs','status':'OK'},
'ANALY_RAL' : {'nickname':'RAL-LCG2-lcgce01-atlasL-lcgpbs','status':'OK'},
'ANALY_ROMANIA02' : {'nickname':'RO-02-NIPNE-tbat01-atlas-lcgpbs','status':'notOK'},
'ANALY_ROMANIA07' : {'nickname':'RO-07-NIPNE-tbit01-atlas-lcgpbs','status':'notOK'},
'ANALY_SARA' : {'nickname':'SARA-MATRIX-mu6-short-pbs','status':'notOK'},
'ANALY_SFU' : {'nickname':'SFU-LCG2-snowpatch-hep-atlas-lcgpbs','status':'notOK'},
'ANALY_SHEF' : {'nickname':'UKI-NORTHGRID-SHEF-HEP-lcgce0-atlas-lcgpbs','status':'OK'},
'ANALY_SLAC' : {'nickname':'ANALY_SLAC-lsf','status':'OK'},
'ANALY_SWT2_CPB' : {'nickname':'ANALY_SWT2_CPB-pbs','status':'OK'},
'ANALY_TAIWAN' : {'nickname':'Taiwan-LCG2-w-ce01-atlas-lcgpbs','status':'OK'},
'ANALY_TEST' : {'nickname':'ANALY_TEST','status':'OK'},
'ANALY_TORONTO' : {'nickname':'TORONTO-LCG2-bigmac-lcg-ce2-atlas-pbs','status':'OK'},
'ANALY_TOKYO' : {'nickname':'TOKYO-LCG2-lcg-ce01-atlas-lcgpbs','status':'OK'},
'ANALY_TRIUMF' : {'nickname':'TRIUMF-LCG2-ce1-atlas-lcgpbs','status':'OK'},
'ANALY_UBC' : {'nickname':'UBC-pbs','status':'OK'},
'ANALY_UIUC-HEP' : {'nickname':'ANALY_UIUC-HEP-condor','status':'OK'},
'ANALY_UTA' : {'nickname':'UTA-DPCC-pbs','status':'OK'},
'ANALY_UTA-DPCC' : {'nickname':'UTA-DPCC-test-pbs','status':'notOK'},
'ANALY_VICTORIA' : {'nickname':'VICTORIA-LCG2-lcg-ce-general-lcgpbs','status':'OK'},
'AUVERGRID' : {'nickname':'AUVERGRID-iut15auvergridce01-atlas-lcgpbs','status':'notOK'},
'ASGC' : {'nickname':'Taiwan-LCG2-w-ce01-atlas-lcgpbs','status':'OK'},
'ASGC_REPRO' : {'nickname':'ASGC_REPRO','status':'notOK'},
'Australia-ATLAS' : {'nickname':'Australia-ATLAS-agh2-atlas-lcgpbs','status':'OK'},
'BARNETT_TEST' : {'nickname':'BARNETT_TEST','status':'notOK'},
'BEIJING' : {'nickname':'BEIJING-LCG2-lcg002-atlas-lcgpbs','status':'OK'},
'BNLPROD' : {'nickname':'BNL_ATLAS_1-condor','status':'notOK'},
'BNL_ATLAS_1' : {'nickname':'BNL_ATLAS_1-condor','status':'OK'},
'BNL_ATLAS_2' : {'nickname':'BNL_ATLAS_2-condor','status':'OK'},
'BNL_ATLAS_DDM' : {'nickname':'BNL_DDM-condor','status':'notOK'},
'BNL_ATLAS_test' : {'nickname':'BNL_ATLAS_2-condor','status':'notOK'},
'BU_ATLAS_Tier2' : {'nickname':'BU_ATLAS_Tier2-pbs','status':'OK'},
'BU_ATLAS_Tier2o' : {'nickname':'BU_ATLAS_Tier2o-pbs','status':'OK'},
'BU_ATLAS_test' : {'nickname':'BU_ATLAS_Tier2-pbs','status':'NOTOK'},
'HU_ATLAS_Tier2' : {'nickname':'HU_ATLAS_Tier2-lsf','status':'OK'},
'CERN-BUILDS' : {'nickname':'CERN-BUILDS','status':'notOK'},
'CERN-RELEASE' : {'nickname':'CERN-RELEASE','status':'notOK'},
'CERN-UNVALID' : {'nickname':'CERN-UNVALID','status':'notOK'},
'CGG' : {'nickname':'CGG-LCG2-ce1-atlas-lcgpbs','status':'notOK'},
'CHARMM' : {'nickname':'CHARMM','status':'notOK'},
'CNR-ILC-PISA' : {'nickname':'CNR-ILC-PISA-gridce-atlas-lcgpbs','status':'notOK'},
'CPPM' : {'nickname':'IN2P3-CPPM-marce01-atlas-pbs','status':'OK'},
'CSCS-LCG2' : {'nickname':'CSCS-LCG2-ce01-egee48h-lcgpbs','status':'OK'},
'csTCDie' : {'nickname':'csTCDie-gridgate-himem-pbs','status':'OK'},
'CYF' : {'nickname':'CYFRONET-LCG2-ce-atlas-pbs','status':'OK'},
'DESY-HH' : {'nickname':'DESY-HH-grid-ce3-default-lcgpbs','status':'OK'},
'DESY-ZN' : {'nickname':'DESY-ZN-lcg-ce0-atlas-lcgpbs','status':'OK'},
'EFDA-JET' : {'nickname':'EFDA-JET-grid002-atlas-lcgpbs','status':'notok'},
'FZK-LCG2' : {'nickname':'FZK-LCG2-ce-1-fzk-atlasXL-pbspro','status':'OK'},
'FZK_REPRO' : {'nickname':'FZK_REPRO','status':'notOK'},
'FZU' : {'nickname':'praguelcg2-golias25-lcgatlas-lcgpbs','status':'OK'},
'GLOW' : {'nickname':'GLOW-CMS-cmsgrid02-atlas-condor','status':'notOK'},
'GLOW-ATLAS' : {'nickname':'GLOW-ATLAS-condor','status':'OK'},
'GoeGrid' : {'nickname':'GoeGrid-ce-goegrid-atlas-lcgpbs','status':'OK'},
'GRIF-IRFU' : {'nickname':'GRIF-IRFU-node07-atlas-lcgpbs','status':'OK'},
'GRIF-LAL' : {'nickname':'GRIF-LAL-grid10-atlas-pbs','status':'OK'},
'GRIF-LPNHE' : {'nickname':'GRIF-LPNHE-lpnce-atlas-pbs','status':'OK'},
'HEPHY-UIBK' : {'nickname':'HEPHY-UIBK-hepx4-atlas-lcgpbs','status':'OK'},
'IFAE' : {'nickname':'ifae-ifaece01-ifae-lcgpbs','status':'OK'},
'IFIC' : {'nickname':'IFIC-LCG2-ce01-atlas-pbs','status':'OK'},
'IHEP' : {'nickname':'BEIJING-LCG2-lcg002-atlas-lcgpbs','status':'OK'},
'ITEP' : {'nickname':'ITEP-ceglite-atlas-lcgpbs','status':'OK'},
'IN2P3-LPSC' : {'nickname':'IN2P3-LPSC-lpsc-ce-atlas-pbs','status':'OK'},
'JINR-LCG2' : {'nickname':'JINR-LCG2-lcgce01-atlas-lcgpbs', 'status':'OK'},
'LAPP' : {'nickname':'IN2P3-LAPP-lapp-ce01-atlas-pbs','status':'OK'},
'LIP-COIMBRA' : {'nickname':'LIP-Coimbra-grid006-atlas-lcgpbs','status':'OK'},
'LIP-LISBON' : {'nickname':'LIP-Lisbon-ce02-atlasgrid-lcgsge','status':'OK'},
'LLR' : {'nickname':'GRIF-LLR-polgrid1-atlas-pbs','status':'notOK'},
'LPC' : {'nickname':'IN2P3-LPC-clrlcgce03-atlas-lcgpbs','status':'OK'},
'LRZ' : {'nickname':'LRZ-LMU-lcg-lrz-ce-atlas-sge','status':'OK'},
'LYON' : {'nickname':'IN2P3-CC-cclcgceli02-long-bqs','status':'OK'},
'LYON_REPRO' : {'nickname':'LYON_REPRO','status':'notOK'},
'Lyon-T2' : {'nickname':'IN2P3-CC-T2-cclcgceli05-long-bqs','status':'OK'},
'LTU_CCT' : {'nickname':'LTU_CCT-pbs','status':'OK'},
'MANC' : {'nickname':'UKI-NORTHGRID-MAN-HEP-ce02-atlas-lcgpbs','status':'OK'},
'MCGILL-LCG2' : {'nickname':'MCGILL-LCG2-atlas-ce-atlas-pbs','status':'OK'},
'MONTREAL' : {'nickname':'Umontreal-LCG2-lcg-ce-atlas-lcgpbs','status':'notOK'},
'MPP' : {'nickname':'MPPMU-grid-ce-long-sge','status':'OK'},
'MWT2_IU' : {'nickname':'MWT2_IU-pbs','status':'OK'},
'MWT2_UC' : {'nickname':'MWT2_UC-pbs','status':'OK'},
'NDGF' : {'nickname':'NDGF-condor','status':'OK'},
'NIKHEF-ELPROD' : {'nickname':'NIKHEF-ELPROD-gazon-atlas-pbs','status':'OK'},
'NIKHEF_REPRO' : {'nickname':'NIKHEF_REPRO','status':'notOK'},
'OUHEP_ITB' : {'nickname':'OUHEP_ITB-condor','status':'notOK'},
'OU_PAUL_TEST' : {'nickname':'OU_OCHEP_SWT2-condor','status':'notOK'},
'OU_OCHEP_SWT2' : {'nickname':'OU_OCHEP_SWT2-condor','status':'OK'},
'OU_OSCER_ATLAS' : {'nickname':'OU_OSCER_ATLAS-lsf','status':'OK'},
'OU_OSCER_ATLASdeb' : {'nickname':'OU_OSCER_ATLASdeb-lsf','status':'notOK'},
'PSNC' : {'nickname':'PSNC-ce-atlas-pbs','status':'OK'},
'PIC' : {'nickname':'pic-ce05-glong-lcgpbs','status':'OK'},
'PIC_REPRO' : {'nickname':'PIC_REPRO','status':'notOK'},
'prague_cesnet_lcg2' : {'nickname':'prague_cesnet_lcg2-skurut17-egee_atlas-lcgpbs','status':'notOK'},
'RAL' : {'nickname':'RAL-LCG2-lcgce02-grid1000M-lcgpbs','status':'OK'},
'RAL_REPRO' : {'nickname':'RAL_REPRO','status':'notOK'},
'ru-Moscow-SINP-LCG2' : {'nickname':'ru-Moscow-SINP-LCG2-lcg02-atlas-lcgpbs','status':'OK'},
'ru-PNPI' : {'nickname':'ru-PNPI-cluster-atlas-pbs','status':'OK'},
'RDIGTEST' : {'nickname':'RDIGTEST','status':'notOK'},
'ROMANIA02' : {'nickname':'RO-02-NIPNE-tbat01-atlas-lcgpbs','status':'OK'},
'ROMANIA07' : {'nickname':'RO-07-NIPNE-tbit01-atlas-lcgpbs','status':'OK'},
'RRC-KI' : {'nickname':'RRC-KI-gate-atlas-lcgpbs','status':'OK'},
'RU-Protvino-IHEP' : {'nickname':'RU-Protvino-IHEP-ce0003-atlas-lcgpbs','status':'OK'},
'SARA_REPRO' : {'nickname':'SARA_REPRO','status':'notOK'},
'SFU-LCG2' : {'nickname':'SFU-LCG2-snowpatch-atlas-lcgpbs','status':'OK'},
'SLACXRD' : {'nickname':'SLACXRD-lsf','status':'OK'},
'SLAC_PAUL_TEST' : {'nickname':'SLACXRD-lsf','status':'notOK'},
'SNS-PISA' : {'nickname':'SNS-PISA-gridce-atlas-lcgpbs','status':'notOK'},
'SPACI-CS-IA64' : {'nickname':'SPACI-CS-IA64-square-atlas-lsf','status':'notOK'},
'SWT2_CPB' : {'nickname':'SWT2_CPB-pbs','status':'OK'},
'Taiwan-IPAS-LCG2' : {'nickname':'Taiwan-IPAS-LCG2-atlasce-atlas-lcgcondor','status':'notOK'},
'TEST1' : {'nickname':'TEST1','status':'notOK'},
'TEST2' : {'nickname':'TEST2','status':'notOK'},
'TEST3' : {'nickname':'TEST3','status':'notOK'},
'TEST4' : {'nickname':'TEST4','status':'notOK'},
'TESTCHARMM' : {'nickname':'TESTCHARMM','status':'notOK'},
'TESTGLIDE' : {'nickname':'TESTGLIDE','status':'notOK'},
'TOKYO' : {'nickname':'TOKYO-LCG2-lcg-ce01-atlas-lcgpbs','status':'OK'},
'TORONTO-LCG2' : {'nickname':'TORONTO-LCG2-bigmac-lcg-ce2-atlas-pbs','status':'OK'},
'TPATHENA' : {'nickname':'TPATHENA','status':'notOK'},
'TPPROD' : {'nickname':'TPPROD','status':'notOK'},
'TRIUMF' : {'nickname':'TRIUMF-LCG2-ce1-atlas-lcgpbs','status':'OK'},
'TRIUMF_DDM' : {'nickname':'TRIUMF_DDM','status':'notOK'},
'TRIUMF_REPRO' : {'nickname':'TRIUMF_REPRO','status':'notOK'},
'TW-FTT' : {'nickname':'TW-FTT-f-ce01-atlas-lcgpbs','status':'OK'},
'TWTEST' : {'nickname':'TWTEST','status':'notOK'},
'TestPilot' : {'nickname':'TestPilot','status':'notOK'},
'UAM-LCG2' : {'nickname':'UAM-LCG2-grid003-atlas-lcgpbs','status':'OK'},
'UBC' : {'nickname':'UBC-pbs','status':'OK'},
'UBC_PAUL_TEST' : {'nickname':'UBC-pbs','status':'notOK'},
'UIUC-HEP' : {'nickname':'UIUC-HEP-condor','status':'OK'},
'UCITB_EDGE7' : {'nickname':'UCITB_EDGE7-pbs','status':'OK'},
'UC_ATLAS_MWT2' : {'nickname':'UC_ATLAS_MWT2-condor','status':'OK'},
'UC_ATLAS_test' : {'nickname':'UC_ATLAS_MWT2-condor','status':'OK'},
'UC_Teraport' : {'nickname':'UC_Teraport-pbs','status':'notOK'},
'UMESHTEST' : {'nickname':'UMESHTEST','status':'notOK'},
'UNI-FREIBURG' : {'nickname':'UNI-FREIBURG-ce-atlas-pbs','status':'OK'},
'UTA-DPCC' : {'nickname':'UTA-DPCC-pbs','status':'OK'},
'UTA-DPCC-test' : {'nickname':'UTA-DPCC-test-pbs','status':'OK'},
'UTA_PAUL_TEST' : {'nickname':'UTA-SWT2-pbs','status':'notOK'},
'UTA_SWT2' : {'nickname':'UTA-SWT2-pbs','status':'OK'},
'UTD-HEP' : {'nickname':'UTD-HEP-pbs','status':'OK'},
'VICTORIA-LCG2' : {'nickname':'VICTORIA-LCG2-lcg-ce-general-lcgpbs','status':'OK'},
'Wuppertal' : {'nickname':'wuppertalprod-grid-ce-dg_long-lcgpbs','status':'OK'},
}
# cloud-MoverID mapping
PandaMoverIDs = {
'US' : 'BNL_ATLAS_DDM',
'CA' : 'TRIUMF_DDM',
'FR' : 'TRIUMF_DDM',
'IT' : 'TRIUMF_DDM',
'NL' : 'TRIUMF_DDM',
'DE' : 'TRIUMF_DDM',
'TW' : 'TRIUMF_DDM',
'UK' : 'TRIUMF_DDM',
'ES' : 'TRIUMF_DDM',
}
| panda_site_i_ds = {'AGLT2': {'nickname': 'AGLT2-condor', 'status': 'OK'}, 'ALBERTA-LCG2': {'nickname': 'ALBERTA-LCG2-lcgce01-atlas-lcgpbs', 'status': 'OK'}, 'ANALY_AGLT2': {'nickname': 'ANALY_AGLT2-condor', 'status': 'OK'}, 'ANALY_ALBERTA': {'nickname': 'ALBERTA-LCG2-lcgce01-atlas-lcgpbs', 'status': 'OK'}, 'ANALY_BEIJING': {'nickname': 'BEIJING-LCG2-lcg002-atlas-lcgpbs', 'status': 'OK'}, 'ANALY_BNL': {'nickname': 'BNL_ATLAS_1-condor', 'status': 'OK'}, 'ANALY_BNL_ATLAS_1': {'nickname': 'BNL_ATLAS_1-condor', 'status': 'OK'}, 'ANALY_BNL_ATLAS_2': {'nickname': 'BNL_ATLAS_2-condor', 'status': 'OK'}, 'ANALY_BNL_test': {'nickname': 'BNL_ATLAS_1-condor', 'status': 'OK'}, 'ANALY_BNL_test2': {'nickname': 'ANALY_BNL_ATLAS_1-condor', 'status': 'OK'}, 'ANALY_BNL_test3': {'nickname': 'BNL_ATLAS_1-condor', 'status': 'OK'}, 'ANALY_BRUNEL': {'nickname': 'UKI-LT2-Brunel-dgc-grid-44-atlas-lcgpbs', 'status': 'notOK'}, 'ANALY_CERN': {'nickname': 'CERN-PROD-ce123-grid_atlas-lcglsf', 'status': 'notOK'}, 'ANALY_CNAF': {'nickname': 'INFN-CNAF-gridit-ce-001-lcg-lcgpbs', 'status': 'notOK'}, 'ANALY_CPPM': {'nickname': 'IN2P3-CPPM-marce01-atlas-pbs', 'status': 'OK'}, 'ANALY_FZK': {'nickname': 'FZK-LCG2-ce-5-fzk-atlasXS-pbspro', 'status': 'OK'}, 'ANALY_GLASGOW': {'nickname': 'UKI-SCOTGRID-GLASGOW-svr021-q3d-lcgpbs', 'status': 'OK'}, 'ANALY_GLOW-ATLAS': {'nickname': 'GLOW-ATLAS-condor', 'status': 'OK'}, 'ANALY_GRIF-IRFU': {'nickname': 'GRIF-IRFU-node07-atlas-lcgpbs', 'status': 'OK'}, 'ANALY_GRIF-LAL': {'nickname': 'GRIF-LAL-grid10-atlasana-pbs', 'status': 'notOK'}, 'ANALY_GRIF-LPNHE': {'nickname': 'GRIF-LPNHE-lpnce-atlas-pbs', 'status': 'notOK'}, 'ANALY_HU_ATLAS_Tier2': {'nickname': 'ANALY_HU_ATLAS_Tier2-lsf', 'status': 'OK'}, 'ANALY_LANCS': {'nickname': 'UKI-NORTHGRID-LANCS-HEP-fal-pygrid-18-atlas-lcgpbs', 'status': 'notOK'}, 'ANALY_LAPP': {'nickname': 'IN2P3-LAPP-lapp-ce01-atlas-pbs', 'status': 'notOK'}, 'ANALY_LIV': {'nickname': 'UKI-NORTHGRID-LIV-HEP-hepgrid2-atlas-lcgpbs', 'status': 'notOK'}, 'ANALY_LONG_BNL': {'nickname': 'BNL_ATLAS_1-condor', 'status': 'OK'}, 'ANALY_LONG_BNL_ATLAS': {'nickname': 'BNL_ATLAS_2-condor', 'status': 'OK'}, 'ANALY_LONG_BNL_LOCAL': {'nickname': 'BNL_ATLAS_1-condor', 'status': 'OK'}, 'ANALY_LONG_LYON': {'nickname': 'IN2P3-CC-T2-cclcgceli05-long-bqs', 'status': 'OK'}, 'ANALY_LPC': {'nickname': 'IN2P3-LPC-clrlcgce03-atlas-lcgpbs', 'status': 'notOK'}, 'ANALY_LPSC': {'nickname': 'IN2P3-LPSC-lpsc-ce-atlas-pbs', 'status': 'OK'}, 'ANALY_LYON': {'nickname': 'IN2P3-CC-T2-cclcgceli05-medium-bqs', 'status': 'OK'}, 'ANALY_MANC': {'nickname': 'UKI-NORTHGRID-MAN-HEP-ce01-atlas-lcgpbs', 'status': 'OK'}, 'ANALY_MCGILL': {'nickname': 'MCGILL-LCG2-atlas-ce-atlas-lcgpbs', 'status': 'OK'}, 'ANALY_MWT2': {'nickname': 'ANALY_MWT2-condor', 'status': 'notOK'}, 'ANALY_MWT2_SHORT': {'nickname': 'ANALY_MWT2_SHORT-pbs', 'status': 'notOK'}, 'ANALY_NET2': {'nickname': 'ANALY_NET2-pbs', 'status': 'OK'}, 'ANALY_OU_OCHEP_SWT2': {'nickname': 'ANALY_OU_OCHEP_SWT2-condor', 'status': 'notOK'}, 'ANALY_PIC': {'nickname': 'pic-ce07-gshort-lcgpbs', 'status': 'OK'}, 'ANALY_RAL': {'nickname': 'RAL-LCG2-lcgce01-atlasL-lcgpbs', 'status': 'OK'}, 'ANALY_ROMANIA02': {'nickname': 'RO-02-NIPNE-tbat01-atlas-lcgpbs', 'status': 'notOK'}, 'ANALY_ROMANIA07': {'nickname': 'RO-07-NIPNE-tbit01-atlas-lcgpbs', 'status': 'notOK'}, 'ANALY_SARA': {'nickname': 'SARA-MATRIX-mu6-short-pbs', 'status': 'notOK'}, 'ANALY_SFU': {'nickname': 'SFU-LCG2-snowpatch-hep-atlas-lcgpbs', 'status': 'notOK'}, 'ANALY_SHEF': {'nickname': 'UKI-NORTHGRID-SHEF-HEP-lcgce0-atlas-lcgpbs', 'status': 'OK'}, 'ANALY_SLAC': {'nickname': 'ANALY_SLAC-lsf', 'status': 'OK'}, 'ANALY_SWT2_CPB': {'nickname': 'ANALY_SWT2_CPB-pbs', 'status': 'OK'}, 'ANALY_TAIWAN': {'nickname': 'Taiwan-LCG2-w-ce01-atlas-lcgpbs', 'status': 'OK'}, 'ANALY_TEST': {'nickname': 'ANALY_TEST', 'status': 'OK'}, 'ANALY_TORONTO': {'nickname': 'TORONTO-LCG2-bigmac-lcg-ce2-atlas-pbs', 'status': 'OK'}, 'ANALY_TOKYO': {'nickname': 'TOKYO-LCG2-lcg-ce01-atlas-lcgpbs', 'status': 'OK'}, 'ANALY_TRIUMF': {'nickname': 'TRIUMF-LCG2-ce1-atlas-lcgpbs', 'status': 'OK'}, 'ANALY_UBC': {'nickname': 'UBC-pbs', 'status': 'OK'}, 'ANALY_UIUC-HEP': {'nickname': 'ANALY_UIUC-HEP-condor', 'status': 'OK'}, 'ANALY_UTA': {'nickname': 'UTA-DPCC-pbs', 'status': 'OK'}, 'ANALY_UTA-DPCC': {'nickname': 'UTA-DPCC-test-pbs', 'status': 'notOK'}, 'ANALY_VICTORIA': {'nickname': 'VICTORIA-LCG2-lcg-ce-general-lcgpbs', 'status': 'OK'}, 'AUVERGRID': {'nickname': 'AUVERGRID-iut15auvergridce01-atlas-lcgpbs', 'status': 'notOK'}, 'ASGC': {'nickname': 'Taiwan-LCG2-w-ce01-atlas-lcgpbs', 'status': 'OK'}, 'ASGC_REPRO': {'nickname': 'ASGC_REPRO', 'status': 'notOK'}, 'Australia-ATLAS': {'nickname': 'Australia-ATLAS-agh2-atlas-lcgpbs', 'status': 'OK'}, 'BARNETT_TEST': {'nickname': 'BARNETT_TEST', 'status': 'notOK'}, 'BEIJING': {'nickname': 'BEIJING-LCG2-lcg002-atlas-lcgpbs', 'status': 'OK'}, 'BNLPROD': {'nickname': 'BNL_ATLAS_1-condor', 'status': 'notOK'}, 'BNL_ATLAS_1': {'nickname': 'BNL_ATLAS_1-condor', 'status': 'OK'}, 'BNL_ATLAS_2': {'nickname': 'BNL_ATLAS_2-condor', 'status': 'OK'}, 'BNL_ATLAS_DDM': {'nickname': 'BNL_DDM-condor', 'status': 'notOK'}, 'BNL_ATLAS_test': {'nickname': 'BNL_ATLAS_2-condor', 'status': 'notOK'}, 'BU_ATLAS_Tier2': {'nickname': 'BU_ATLAS_Tier2-pbs', 'status': 'OK'}, 'BU_ATLAS_Tier2o': {'nickname': 'BU_ATLAS_Tier2o-pbs', 'status': 'OK'}, 'BU_ATLAS_test': {'nickname': 'BU_ATLAS_Tier2-pbs', 'status': 'NOTOK'}, 'HU_ATLAS_Tier2': {'nickname': 'HU_ATLAS_Tier2-lsf', 'status': 'OK'}, 'CERN-BUILDS': {'nickname': 'CERN-BUILDS', 'status': 'notOK'}, 'CERN-RELEASE': {'nickname': 'CERN-RELEASE', 'status': 'notOK'}, 'CERN-UNVALID': {'nickname': 'CERN-UNVALID', 'status': 'notOK'}, 'CGG': {'nickname': 'CGG-LCG2-ce1-atlas-lcgpbs', 'status': 'notOK'}, 'CHARMM': {'nickname': 'CHARMM', 'status': 'notOK'}, 'CNR-ILC-PISA': {'nickname': 'CNR-ILC-PISA-gridce-atlas-lcgpbs', 'status': 'notOK'}, 'CPPM': {'nickname': 'IN2P3-CPPM-marce01-atlas-pbs', 'status': 'OK'}, 'CSCS-LCG2': {'nickname': 'CSCS-LCG2-ce01-egee48h-lcgpbs', 'status': 'OK'}, 'csTCDie': {'nickname': 'csTCDie-gridgate-himem-pbs', 'status': 'OK'}, 'CYF': {'nickname': 'CYFRONET-LCG2-ce-atlas-pbs', 'status': 'OK'}, 'DESY-HH': {'nickname': 'DESY-HH-grid-ce3-default-lcgpbs', 'status': 'OK'}, 'DESY-ZN': {'nickname': 'DESY-ZN-lcg-ce0-atlas-lcgpbs', 'status': 'OK'}, 'EFDA-JET': {'nickname': 'EFDA-JET-grid002-atlas-lcgpbs', 'status': 'notok'}, 'FZK-LCG2': {'nickname': 'FZK-LCG2-ce-1-fzk-atlasXL-pbspro', 'status': 'OK'}, 'FZK_REPRO': {'nickname': 'FZK_REPRO', 'status': 'notOK'}, 'FZU': {'nickname': 'praguelcg2-golias25-lcgatlas-lcgpbs', 'status': 'OK'}, 'GLOW': {'nickname': 'GLOW-CMS-cmsgrid02-atlas-condor', 'status': 'notOK'}, 'GLOW-ATLAS': {'nickname': 'GLOW-ATLAS-condor', 'status': 'OK'}, 'GoeGrid': {'nickname': 'GoeGrid-ce-goegrid-atlas-lcgpbs', 'status': 'OK'}, 'GRIF-IRFU': {'nickname': 'GRIF-IRFU-node07-atlas-lcgpbs', 'status': 'OK'}, 'GRIF-LAL': {'nickname': 'GRIF-LAL-grid10-atlas-pbs', 'status': 'OK'}, 'GRIF-LPNHE': {'nickname': 'GRIF-LPNHE-lpnce-atlas-pbs', 'status': 'OK'}, 'HEPHY-UIBK': {'nickname': 'HEPHY-UIBK-hepx4-atlas-lcgpbs', 'status': 'OK'}, 'IFAE': {'nickname': 'ifae-ifaece01-ifae-lcgpbs', 'status': 'OK'}, 'IFIC': {'nickname': 'IFIC-LCG2-ce01-atlas-pbs', 'status': 'OK'}, 'IHEP': {'nickname': 'BEIJING-LCG2-lcg002-atlas-lcgpbs', 'status': 'OK'}, 'ITEP': {'nickname': 'ITEP-ceglite-atlas-lcgpbs', 'status': 'OK'}, 'IN2P3-LPSC': {'nickname': 'IN2P3-LPSC-lpsc-ce-atlas-pbs', 'status': 'OK'}, 'JINR-LCG2': {'nickname': 'JINR-LCG2-lcgce01-atlas-lcgpbs', 'status': 'OK'}, 'LAPP': {'nickname': 'IN2P3-LAPP-lapp-ce01-atlas-pbs', 'status': 'OK'}, 'LIP-COIMBRA': {'nickname': 'LIP-Coimbra-grid006-atlas-lcgpbs', 'status': 'OK'}, 'LIP-LISBON': {'nickname': 'LIP-Lisbon-ce02-atlasgrid-lcgsge', 'status': 'OK'}, 'LLR': {'nickname': 'GRIF-LLR-polgrid1-atlas-pbs', 'status': 'notOK'}, 'LPC': {'nickname': 'IN2P3-LPC-clrlcgce03-atlas-lcgpbs', 'status': 'OK'}, 'LRZ': {'nickname': 'LRZ-LMU-lcg-lrz-ce-atlas-sge', 'status': 'OK'}, 'LYON': {'nickname': 'IN2P3-CC-cclcgceli02-long-bqs', 'status': 'OK'}, 'LYON_REPRO': {'nickname': 'LYON_REPRO', 'status': 'notOK'}, 'Lyon-T2': {'nickname': 'IN2P3-CC-T2-cclcgceli05-long-bqs', 'status': 'OK'}, 'LTU_CCT': {'nickname': 'LTU_CCT-pbs', 'status': 'OK'}, 'MANC': {'nickname': 'UKI-NORTHGRID-MAN-HEP-ce02-atlas-lcgpbs', 'status': 'OK'}, 'MCGILL-LCG2': {'nickname': 'MCGILL-LCG2-atlas-ce-atlas-pbs', 'status': 'OK'}, 'MONTREAL': {'nickname': 'Umontreal-LCG2-lcg-ce-atlas-lcgpbs', 'status': 'notOK'}, 'MPP': {'nickname': 'MPPMU-grid-ce-long-sge', 'status': 'OK'}, 'MWT2_IU': {'nickname': 'MWT2_IU-pbs', 'status': 'OK'}, 'MWT2_UC': {'nickname': 'MWT2_UC-pbs', 'status': 'OK'}, 'NDGF': {'nickname': 'NDGF-condor', 'status': 'OK'}, 'NIKHEF-ELPROD': {'nickname': 'NIKHEF-ELPROD-gazon-atlas-pbs', 'status': 'OK'}, 'NIKHEF_REPRO': {'nickname': 'NIKHEF_REPRO', 'status': 'notOK'}, 'OUHEP_ITB': {'nickname': 'OUHEP_ITB-condor', 'status': 'notOK'}, 'OU_PAUL_TEST': {'nickname': 'OU_OCHEP_SWT2-condor', 'status': 'notOK'}, 'OU_OCHEP_SWT2': {'nickname': 'OU_OCHEP_SWT2-condor', 'status': 'OK'}, 'OU_OSCER_ATLAS': {'nickname': 'OU_OSCER_ATLAS-lsf', 'status': 'OK'}, 'OU_OSCER_ATLASdeb': {'nickname': 'OU_OSCER_ATLASdeb-lsf', 'status': 'notOK'}, 'PSNC': {'nickname': 'PSNC-ce-atlas-pbs', 'status': 'OK'}, 'PIC': {'nickname': 'pic-ce05-glong-lcgpbs', 'status': 'OK'}, 'PIC_REPRO': {'nickname': 'PIC_REPRO', 'status': 'notOK'}, 'prague_cesnet_lcg2': {'nickname': 'prague_cesnet_lcg2-skurut17-egee_atlas-lcgpbs', 'status': 'notOK'}, 'RAL': {'nickname': 'RAL-LCG2-lcgce02-grid1000M-lcgpbs', 'status': 'OK'}, 'RAL_REPRO': {'nickname': 'RAL_REPRO', 'status': 'notOK'}, 'ru-Moscow-SINP-LCG2': {'nickname': 'ru-Moscow-SINP-LCG2-lcg02-atlas-lcgpbs', 'status': 'OK'}, 'ru-PNPI': {'nickname': 'ru-PNPI-cluster-atlas-pbs', 'status': 'OK'}, 'RDIGTEST': {'nickname': 'RDIGTEST', 'status': 'notOK'}, 'ROMANIA02': {'nickname': 'RO-02-NIPNE-tbat01-atlas-lcgpbs', 'status': 'OK'}, 'ROMANIA07': {'nickname': 'RO-07-NIPNE-tbit01-atlas-lcgpbs', 'status': 'OK'}, 'RRC-KI': {'nickname': 'RRC-KI-gate-atlas-lcgpbs', 'status': 'OK'}, 'RU-Protvino-IHEP': {'nickname': 'RU-Protvino-IHEP-ce0003-atlas-lcgpbs', 'status': 'OK'}, 'SARA_REPRO': {'nickname': 'SARA_REPRO', 'status': 'notOK'}, 'SFU-LCG2': {'nickname': 'SFU-LCG2-snowpatch-atlas-lcgpbs', 'status': 'OK'}, 'SLACXRD': {'nickname': 'SLACXRD-lsf', 'status': 'OK'}, 'SLAC_PAUL_TEST': {'nickname': 'SLACXRD-lsf', 'status': 'notOK'}, 'SNS-PISA': {'nickname': 'SNS-PISA-gridce-atlas-lcgpbs', 'status': 'notOK'}, 'SPACI-CS-IA64': {'nickname': 'SPACI-CS-IA64-square-atlas-lsf', 'status': 'notOK'}, 'SWT2_CPB': {'nickname': 'SWT2_CPB-pbs', 'status': 'OK'}, 'Taiwan-IPAS-LCG2': {'nickname': 'Taiwan-IPAS-LCG2-atlasce-atlas-lcgcondor', 'status': 'notOK'}, 'TEST1': {'nickname': 'TEST1', 'status': 'notOK'}, 'TEST2': {'nickname': 'TEST2', 'status': 'notOK'}, 'TEST3': {'nickname': 'TEST3', 'status': 'notOK'}, 'TEST4': {'nickname': 'TEST4', 'status': 'notOK'}, 'TESTCHARMM': {'nickname': 'TESTCHARMM', 'status': 'notOK'}, 'TESTGLIDE': {'nickname': 'TESTGLIDE', 'status': 'notOK'}, 'TOKYO': {'nickname': 'TOKYO-LCG2-lcg-ce01-atlas-lcgpbs', 'status': 'OK'}, 'TORONTO-LCG2': {'nickname': 'TORONTO-LCG2-bigmac-lcg-ce2-atlas-pbs', 'status': 'OK'}, 'TPATHENA': {'nickname': 'TPATHENA', 'status': 'notOK'}, 'TPPROD': {'nickname': 'TPPROD', 'status': 'notOK'}, 'TRIUMF': {'nickname': 'TRIUMF-LCG2-ce1-atlas-lcgpbs', 'status': 'OK'}, 'TRIUMF_DDM': {'nickname': 'TRIUMF_DDM', 'status': 'notOK'}, 'TRIUMF_REPRO': {'nickname': 'TRIUMF_REPRO', 'status': 'notOK'}, 'TW-FTT': {'nickname': 'TW-FTT-f-ce01-atlas-lcgpbs', 'status': 'OK'}, 'TWTEST': {'nickname': 'TWTEST', 'status': 'notOK'}, 'TestPilot': {'nickname': 'TestPilot', 'status': 'notOK'}, 'UAM-LCG2': {'nickname': 'UAM-LCG2-grid003-atlas-lcgpbs', 'status': 'OK'}, 'UBC': {'nickname': 'UBC-pbs', 'status': 'OK'}, 'UBC_PAUL_TEST': {'nickname': 'UBC-pbs', 'status': 'notOK'}, 'UIUC-HEP': {'nickname': 'UIUC-HEP-condor', 'status': 'OK'}, 'UCITB_EDGE7': {'nickname': 'UCITB_EDGE7-pbs', 'status': 'OK'}, 'UC_ATLAS_MWT2': {'nickname': 'UC_ATLAS_MWT2-condor', 'status': 'OK'}, 'UC_ATLAS_test': {'nickname': 'UC_ATLAS_MWT2-condor', 'status': 'OK'}, 'UC_Teraport': {'nickname': 'UC_Teraport-pbs', 'status': 'notOK'}, 'UMESHTEST': {'nickname': 'UMESHTEST', 'status': 'notOK'}, 'UNI-FREIBURG': {'nickname': 'UNI-FREIBURG-ce-atlas-pbs', 'status': 'OK'}, 'UTA-DPCC': {'nickname': 'UTA-DPCC-pbs', 'status': 'OK'}, 'UTA-DPCC-test': {'nickname': 'UTA-DPCC-test-pbs', 'status': 'OK'}, 'UTA_PAUL_TEST': {'nickname': 'UTA-SWT2-pbs', 'status': 'notOK'}, 'UTA_SWT2': {'nickname': 'UTA-SWT2-pbs', 'status': 'OK'}, 'UTD-HEP': {'nickname': 'UTD-HEP-pbs', 'status': 'OK'}, 'VICTORIA-LCG2': {'nickname': 'VICTORIA-LCG2-lcg-ce-general-lcgpbs', 'status': 'OK'}, 'Wuppertal': {'nickname': 'wuppertalprod-grid-ce-dg_long-lcgpbs', 'status': 'OK'}}
panda_mover_i_ds = {'US': 'BNL_ATLAS_DDM', 'CA': 'TRIUMF_DDM', 'FR': 'TRIUMF_DDM', 'IT': 'TRIUMF_DDM', 'NL': 'TRIUMF_DDM', 'DE': 'TRIUMF_DDM', 'TW': 'TRIUMF_DDM', 'UK': 'TRIUMF_DDM', 'ES': 'TRIUMF_DDM'} |
class ScenarioError(Exception):
pass
class ScenarioTxError(ScenarioError):
pass
class TokenRegistrationError(ScenarioTxError):
pass
class ChannelError(ScenarioError):
pass
class TransferFailed(ScenarioError):
pass
class NodesUnreachableError(ScenarioError):
pass
class RESTAPIError(ScenarioError):
pass
class RESTAPIStatusMismatchError(ScenarioError):
pass
class UnknownTaskTypeError(ScenarioError):
pass
class ScenarioAssertionError(ScenarioError):
pass
| class Scenarioerror(Exception):
pass
class Scenariotxerror(ScenarioError):
pass
class Tokenregistrationerror(ScenarioTxError):
pass
class Channelerror(ScenarioError):
pass
class Transferfailed(ScenarioError):
pass
class Nodesunreachableerror(ScenarioError):
pass
class Restapierror(ScenarioError):
pass
class Restapistatusmismatcherror(ScenarioError):
pass
class Unknowntasktypeerror(ScenarioError):
pass
class Scenarioassertionerror(ScenarioError):
pass |
def convertToHEXForChar(charList):
convertedCharList = []
for message in charList:
convertedCharList.append(ord(message))
return convertedCharList
def displayChar(line, *args):
concatedList = []
for argItem in args:
concatedList.extend(argItem)
print(len(concatedList))
for message in concatedList:
print(message)
def main():
displayChar(0, [0x00], convertToHEXForChar("! Rasbperry Pi"))
main() | def convert_to_hex_for_char(charList):
converted_char_list = []
for message in charList:
convertedCharList.append(ord(message))
return convertedCharList
def display_char(line, *args):
concated_list = []
for arg_item in args:
concatedList.extend(argItem)
print(len(concatedList))
for message in concatedList:
print(message)
def main():
display_char(0, [0], convert_to_hex_for_char('! Rasbperry Pi'))
main() |
# ------------------------------------------------------- class: Constants ------------------------------------------------------- #
class Constants:
# --------------------------------------------------- Public properties -------------------------------------------------- #
USER_AGENT_FILE_NAME = 'ua.txt'
GENERAL_COOKIES_FOLDER_NAME = 'cookies'
GENERAL_PROFILE_FOLDER_NAME = 'selenium-python-profile'
DEFAULT_PROFILE_ID = 'test'
DEFAULT_FIND_FUNC_TIMEOUT = 2.5
# -------------------------------------------------------------------------------------------------------------------------------- # | class Constants:
user_agent_file_name = 'ua.txt'
general_cookies_folder_name = 'cookies'
general_profile_folder_name = 'selenium-python-profile'
default_profile_id = 'test'
default_find_func_timeout = 2.5 |
expected = [
{
"abstract_type": None,
"content": "RET can be activated in cis or trans by its co-receptors and ligands in vitro, but the physiological roles of trans signaling are unclear. Rapidly adapting (RA) mechanoreceptors in dorsal root ganglia (DRGs) express Ret and the co-receptor Gfr\u03b12 and depend on Ret for survival and central projection growth. Here, we show that Ret and Gfr\u03b12 null mice display comparable early central projection deficits, but Gfr\u03b12 null RA mechanoreceptors recover later. Loss of Gfr\u03b11, the co-receptor implicated in activating RET in trans, causes no significant central projection or cell survival deficit, but Gfr\u03b11;Gfr\u03b12 double nulls phenocopy Ret nulls. Finally, we demonstrate that GFR\u03b11 produced by neighboring DRG neurons activates RET in RA mechanoreceptors. Taken together, our results suggest that trans and cis RET signaling could function in the same developmental process and that the availability of both forms of activation likely enhances but not diversifies outcomes of RET signaling.",
"full_content": "<p>RET can be activated in <italic>cis</italic> or <italic>trans</italic> by its co-receptors and ligands <italic>in vitro</italic>, but the physiological roles of <italic>trans</italic> signaling are unclear. Rapidly adapting (RA) mechanoreceptors in dorsal root ganglia (DRGs) express <italic>Ret</italic> and the co-receptor <italic>Gfr\u03b12</italic> and depend on <italic>Ret</italic> for survival and central projection growth. Here, we show that <italic>Ret</italic> and <italic>Gfr\u03b12</italic> null mice display comparable early central projection deficits, but <italic>Gfr\u03b12</italic> null RA mechanoreceptors recover later. Loss of <italic>Gfr\u03b11</italic>, the co-receptor implicated in activating RET <italic>in trans</italic>, causes no significant central projection or cell survival deficit, but <italic>Gfr\u03b11;Gfr\u03b12</italic> double nulls phenocopy <italic>Ret</italic> nulls. Finally, we demonstrate that GFR\u03b11 produced by neighboring DRG neurons activates RET in RA mechanoreceptors. Taken together, our results suggest that <italic>trans</italic> and <italic>cis</italic> RET signaling could function in the same developmental process and that the availability of both forms of activation likely enhances but not diversifies outcomes of RET signaling.</p>",
},
]
| expected = [{'abstract_type': None, 'content': 'RET can be activated in cis or trans by its co-receptors and ligands in vitro, but the physiological roles of trans signaling are unclear. Rapidly adapting (RA) mechanoreceptors in dorsal root ganglia (DRGs) express Ret and the co-receptor Gfrα2 and depend on Ret for survival and central projection growth. Here, we show that Ret and Gfrα2 null mice display comparable early central projection deficits, but Gfrα2 null RA mechanoreceptors recover later. Loss of Gfrα1, the co-receptor implicated in activating RET in trans, causes no significant central projection or cell survival deficit, but Gfrα1;Gfrα2 double nulls phenocopy Ret nulls. Finally, we demonstrate that GFRα1 produced by neighboring DRG neurons activates RET in RA mechanoreceptors. Taken together, our results suggest that trans and cis RET signaling could function in the same developmental process and that the availability of both forms of activation likely enhances but not diversifies outcomes of RET signaling.', 'full_content': '<p>RET can be activated in <italic>cis</italic> or <italic>trans</italic> by its co-receptors and ligands <italic>in vitro</italic>, but the physiological roles of <italic>trans</italic> signaling are unclear. Rapidly adapting (RA) mechanoreceptors in dorsal root ganglia (DRGs) express <italic>Ret</italic> and the co-receptor <italic>Gfrα2</italic> and depend on <italic>Ret</italic> for survival and central projection growth. Here, we show that <italic>Ret</italic> and <italic>Gfrα2</italic> null mice display comparable early central projection deficits, but <italic>Gfrα2</italic> null RA mechanoreceptors recover later. Loss of <italic>Gfrα1</italic>, the co-receptor implicated in activating RET <italic>in trans</italic>, causes no significant central projection or cell survival deficit, but <italic>Gfrα1;Gfrα2</italic> double nulls phenocopy <italic>Ret</italic> nulls. Finally, we demonstrate that GFRα1 produced by neighboring DRG neurons activates RET in RA mechanoreceptors. Taken together, our results suggest that <italic>trans</italic> and <italic>cis</italic> RET signaling could function in the same developmental process and that the availability of both forms of activation likely enhances but not diversifies outcomes of RET signaling.</p>'}] |
# Prim's Algorithm in Python
INF = 9999999
# number of vertices in graph
V = 5
# create a 2d array of size 5x5
# for adjacency matrix to represent graph
G = [
[0, 9, 75, 0, 0],
[9, 0, 95, 19, 42],
[75, 95, 0, 51, 66],
[0, 19, 51, 0, 31],
[0, 42, 66, 31, 0],
]
# create a array to track selected vertex
# selected will become true otherwise false
selected = [0, 0, 0, 0, 0]
# set number of edge to 0
no_edge = 0
# the number of egde in minimum spanning tree will be
# always less than(V - 1), where V is number of vertices in
# graph
# choose 0th vertex and make it true
selected[0] = True
# print for edge and weight
print("Edge : Weight\n")
while no_edge < V - 1:
# For every vertex in the set S, find the all adjacent vertices
# , calculate the distance from the vertex selected at step 1.
# if the vertex is already in the set S, discard it otherwise
# choose another vertex nearest to selected vertex at step 1.
minimum = INF
x = 0
y = 0
for i in range(V):
if selected[i]:
for j in range(V):
if (not selected[j]) and G[i][j]:
# not in selected and there is an edge
if minimum > G[i][j]:
minimum = G[i][j]
x = i
y = j
print(str(x) + "-" + str(y) + ":" + str(G[x][y]))
selected[y] = True
no_edge += 1
| inf = 9999999
v = 5
g = [[0, 9, 75, 0, 0], [9, 0, 95, 19, 42], [75, 95, 0, 51, 66], [0, 19, 51, 0, 31], [0, 42, 66, 31, 0]]
selected = [0, 0, 0, 0, 0]
no_edge = 0
selected[0] = True
print('Edge : Weight\n')
while no_edge < V - 1:
minimum = INF
x = 0
y = 0
for i in range(V):
if selected[i]:
for j in range(V):
if not selected[j] and G[i][j]:
if minimum > G[i][j]:
minimum = G[i][j]
x = i
y = j
print(str(x) + '-' + str(y) + ':' + str(G[x][y]))
selected[y] = True
no_edge += 1 |
def func(a, b):
return a + b
def func2(a):
print(a)
print("Hello")
| def func(a, b):
return a + b
def func2(a):
print(a)
print('Hello') |
# Dimmer Switch class
class DimmerSwitch():
def __init__(self, label):
self.label = label
self.isOn = False
self.brightness = 0
def turnOn(self):
self.isOn = True
# turn the light on at self.brightness
def turnOff(self):
self.isOn = False
# turn the light off
def raiseLevel(self):
if self.brightness < 10:
self.brightness = self.brightness + 1
def lowerLevel(self):
if self.brightness > 0:
self.brightness = self.brightness - 1
# Extra method for debugging
def show(self):
print('Label:', self.label)
print('Light is on?', self.isOn)
print('Brightness is:', self.brightness)
print()
# Main code
# Create first DimmerSwitch, turn on and raise level twice
oDimmer1 = DimmerSwitch('Dimmer1')
oDimmer1.turnOn()
oDimmer1.raiseLevel()
oDimmer1.raiseLevel()
# Create second DimmerSwitch, turn on and raise level 3 times
oDimmer2 = DimmerSwitch('Dimmer2')
oDimmer2.turnOn()
oDimmer2.raiseLevel()
oDimmer2.raiseLevel()
oDimmer2.raiseLevel()
# Create third DimmerSwitch, using the default settings
oDimmer3 = DimmerSwitch('Dimmer3')
# Ask each switch to show itself
oDimmer1.show()
oDimmer2.show()
oDimmer3.show()
| class Dimmerswitch:
def __init__(self, label):
self.label = label
self.isOn = False
self.brightness = 0
def turn_on(self):
self.isOn = True
def turn_off(self):
self.isOn = False
def raise_level(self):
if self.brightness < 10:
self.brightness = self.brightness + 1
def lower_level(self):
if self.brightness > 0:
self.brightness = self.brightness - 1
def show(self):
print('Label:', self.label)
print('Light is on?', self.isOn)
print('Brightness is:', self.brightness)
print()
o_dimmer1 = dimmer_switch('Dimmer1')
oDimmer1.turnOn()
oDimmer1.raiseLevel()
oDimmer1.raiseLevel()
o_dimmer2 = dimmer_switch('Dimmer2')
oDimmer2.turnOn()
oDimmer2.raiseLevel()
oDimmer2.raiseLevel()
oDimmer2.raiseLevel()
o_dimmer3 = dimmer_switch('Dimmer3')
oDimmer1.show()
oDimmer2.show()
oDimmer3.show() |
print(list(range(10, 0, -2)))
# if start > end and step > 0:
# a list generated from start to no more than end with step as constant increment
# if start > end and step < 0:
# an empty list generated
# if start < end and step > 0:
# an empty list generated
# if start < end and step < 0
# a list generated from start to no more than end with step as constant decrement
| print(list(range(10, 0, -2))) |
start = 104200
end = 702648265
for arm1 in range(start, end + 1):
exp = len(str(arm1))
num_sum = 0
c = arm1
while c > 0:
num = c % 10
num_sum += num ** exp
c //= 10
if arm1 != num_sum:
continue
else:
if arm1 == num_sum:
print("The first Armstrong number encountered is:", arm1)
break
#####OUTPUT#####
## The first Armstrong number encountered is: 548834
## Process finished with exit code 0
| start = 104200
end = 702648265
for arm1 in range(start, end + 1):
exp = len(str(arm1))
num_sum = 0
c = arm1
while c > 0:
num = c % 10
num_sum += num ** exp
c //= 10
if arm1 != num_sum:
continue
else:
if arm1 == num_sum:
print('The first Armstrong number encountered is:', arm1)
break |
def _do_set(env, name, value):
if env.contains(name):
env.set(name, value)
elif env.parent is not None:
_do_set(env.parent, name, value)
else:
raise Exception(
"Attempted to set name '%s' but it does not exist." %
name
)
def set_(env, symbol_name, value):
if symbol_name[0] != "string":
raise Exception(
"set() takes a string as its first argument, but was: %s" %
str(symbol_name)
)
_do_set(env, symbol_name[1], value)
return value
| def _do_set(env, name, value):
if env.contains(name):
env.set(name, value)
elif env.parent is not None:
_do_set(env.parent, name, value)
else:
raise exception("Attempted to set name '%s' but it does not exist." % name)
def set_(env, symbol_name, value):
if symbol_name[0] != 'string':
raise exception('set() takes a string as its first argument, but was: %s' % str(symbol_name))
_do_set(env, symbol_name[1], value)
return value |
def email_subject(center_name):
return f"[Urgent Reminder] Vaccine slot is now available at {center_name}"
def email_body(email_data):
return f"Hi, \n" \
f"Vaccine slot is available for below centers \n " \
f"Center name and available data \n {email_data} \n" \
f"Please register at cowin website https://cowin.gov.in \n" \
f"Have a lovely day ahead! :) \n" \
f"Thanks, \n" \
f"Shishir Bondre \n" \
f"To unsubscribe click here http://3.6.160.147:8000/vaccine_tracker/unsubscribe/"
| def email_subject(center_name):
return f'[Urgent Reminder] Vaccine slot is now available at {center_name}'
def email_body(email_data):
return f'Hi, \nVaccine slot is available for below centers \n Center name and available data \n {email_data} \nPlease register at cowin website https://cowin.gov.in \nHave a lovely day ahead! :) \nThanks, \nShishir Bondre \nTo unsubscribe click here http://3.6.160.147:8000/vaccine_tracker/unsubscribe/' |
# -*- coding: utf-8 -*-
#
# Copyright Contributors to the Conu project.
# SPDX-License-Identifier: MIT
#
# TODO: move this line to some generic constants, instead of same in
# docker and nspawn
CONU_ARTIFACT_TAG = 'CONU.'
CONU_IMAGES_STORE = "/opt/conu-nspawn-images/"
CONU_NSPAWN_BASEPACKAGES = [
"dnf",
"iproute",
"dhcp-client",
"initscripts",
"passwd",
"systemd",
"rpm",
"bash",
"shadow-utils",
"sssd-client",
"util-linux",
"libcrypt",
"sssd-client",
"coreutils",
"glibc-all-langpacks",
"vim-minimal"]
BOOTSTRAP_IMAGE_SIZE_IN_MB = 5000
BOOTSTRAP_FS_UTIL = "mkfs.ext4"
BOOTSTRAP_PACKAGER = [
"dnf",
"-y",
"install",
"--nogpgcheck",
"--setopt=install_weak_deps=False",
"--allowerasing"]
DEFAULT_RETRYTIMEOUT = 30
DEFAULT_SLEEP = 1
| conu_artifact_tag = 'CONU.'
conu_images_store = '/opt/conu-nspawn-images/'
conu_nspawn_basepackages = ['dnf', 'iproute', 'dhcp-client', 'initscripts', 'passwd', 'systemd', 'rpm', 'bash', 'shadow-utils', 'sssd-client', 'util-linux', 'libcrypt', 'sssd-client', 'coreutils', 'glibc-all-langpacks', 'vim-minimal']
bootstrap_image_size_in_mb = 5000
bootstrap_fs_util = 'mkfs.ext4'
bootstrap_packager = ['dnf', '-y', 'install', '--nogpgcheck', '--setopt=install_weak_deps=False', '--allowerasing']
default_retrytimeout = 30
default_sleep = 1 |
def get_p_distance(list1, list2):
count = 0
i = 0
while i < len(list1):
if (list1[i] != list2[i]):
count += .1
i += 1
return count
def get_p_distance_matrix(list1, list2, list3, list4):
dna1 = get_p_distance(list1, list1), get_p_distance(list1, list2), get_p_distance(list1, list3), get_p_distance(list1, list4)
dna2 = get_p_distance(list2, list1), get_p_distance(list2, list2), get_p_distance(list2, list3), get_p_distance(list2, list4)
dna3 = get_p_distance(list3, list1), get_p_distance(list3, list2), get_p_distance(list3, list3), get_p_distance(list3, list4)
dna4 = get_p_distance(list4, list1), get_p_distance(list4, list2), get_p_distance(list4, list3), get_p_distance(list4, list4)
return dna1, dna2, dna3, dna4 | def get_p_distance(list1, list2):
count = 0
i = 0
while i < len(list1):
if list1[i] != list2[i]:
count += 0.1
i += 1
return count
def get_p_distance_matrix(list1, list2, list3, list4):
dna1 = (get_p_distance(list1, list1), get_p_distance(list1, list2), get_p_distance(list1, list3), get_p_distance(list1, list4))
dna2 = (get_p_distance(list2, list1), get_p_distance(list2, list2), get_p_distance(list2, list3), get_p_distance(list2, list4))
dna3 = (get_p_distance(list3, list1), get_p_distance(list3, list2), get_p_distance(list3, list3), get_p_distance(list3, list4))
dna4 = (get_p_distance(list4, list1), get_p_distance(list4, list2), get_p_distance(list4, list3), get_p_distance(list4, list4))
return (dna1, dna2, dna3, dna4) |
#
# PySNMP MIB module ZHONE-COM-IP-FILTER-MIB (http://snmplabs.com/pysmi)
# ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/ZHONE-COM-IP-FILTER-MIB
# Produced by pysmi-0.3.4 at Wed May 1 15:47:04 2019
# On host DAVWANG4-M-1475 platform Darwin version 18.5.0 by user davwang4
# Using Python version 3.7.3 (default, Mar 27 2019, 09:23:15)
#
Integer, OctetString, ObjectIdentifier = mibBuilder.importSymbols("ASN1", "Integer", "OctetString", "ObjectIdentifier")
NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues")
ValueSizeConstraint, SingleValueConstraint, ValueRangeConstraint, ConstraintsUnion, ConstraintsIntersection = mibBuilder.importSymbols("ASN1-REFINEMENT", "ValueSizeConstraint", "SingleValueConstraint", "ValueRangeConstraint", "ConstraintsUnion", "ConstraintsIntersection")
ifIndex, = mibBuilder.importSymbols("IF-MIB", "ifIndex")
SnmpAdminString, = mibBuilder.importSymbols("SNMP-FRAMEWORK-MIB", "SnmpAdminString")
ModuleCompliance, NotificationGroup = mibBuilder.importSymbols("SNMPv2-CONF", "ModuleCompliance", "NotificationGroup")
Gauge32, Counter64, iso, Integer32, ModuleIdentity, ObjectIdentity, IpAddress, Unsigned32, MibIdentifier, TimeTicks, MibScalar, MibTable, MibTableRow, MibTableColumn, Bits, NotificationType, Counter32 = mibBuilder.importSymbols("SNMPv2-SMI", "Gauge32", "Counter64", "iso", "Integer32", "ModuleIdentity", "ObjectIdentity", "IpAddress", "Unsigned32", "MibIdentifier", "TimeTicks", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "Bits", "NotificationType", "Counter32")
DisplayString, TextualConvention = mibBuilder.importSymbols("SNMPv2-TC", "DisplayString", "TextualConvention")
zhoneModules, zhoneIp = mibBuilder.importSymbols("Zhone", "zhoneModules", "zhoneIp")
ZhoneRowStatus, ZhoneAdminString = mibBuilder.importSymbols("Zhone-TC", "ZhoneRowStatus", "ZhoneAdminString")
comIpFilter = ModuleIdentity((1, 3, 6, 1, 4, 1, 5504, 6, 58))
comIpFilter.setRevisions(('2005-01-10 10:16', '2005-01-03 09:24', '2004-12-21 09:25', '2004-08-30 11:00', '2004-04-06 00:17', '2001-01-17 08:48', '2000-09-11 16:22',))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
if mibBuilder.loadTexts: comIpFilter.setRevisionsDescriptions(('changed portAccessArg1, portAccessArg2 to more intuitive names.', 'changed portArg1, portArg2 to IP addresses', 'added Port_Access', 'V01.01.02 - Add type field to mcastControlList.', 'V01.01.01 - Implementation of multicast-control-list.', 'V01.01.00 - Added keyword markup, updated SMI, Added the filterStmtRenumTable and filterStatsTable', 'V01.00.00 - Initial Release',))
if mibBuilder.loadTexts: comIpFilter.setLastUpdated('200501100015Z')
if mibBuilder.loadTexts: comIpFilter.setOrganization('Zhone Technologies, Inc.')
if mibBuilder.loadTexts: comIpFilter.setContactInfo(' Postal: Zhone Technologies, Inc. @ Zhone Way 7001 Oakport Street Oakland, CA 94621 USA Toll-Free: +1 877-ZHONE20 (+1 877-946-6320) Tel: +1-510-777-7000 Fax: +1-510-777-7001 E-mail: [email protected]')
if mibBuilder.loadTexts: comIpFilter.setDescription('Zhone IP Filter MIB Module. IP Software Minneapolis, MN')
filter = ObjectIdentity((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8))
if mibBuilder.loadTexts: filter.setStatus('current')
if mibBuilder.loadTexts: filter.setDescription('The MIB module representing IP filter specifications in Zhone Technologies products. IP filtering is typically performed to enhance network security by limiting what access is allowed between two networks. Filtering is also effective in eliminating certain denial-of-service attacks. Packet filtering also provides a framework for sanity checking packet headers, and rejecting packets that are unlikely (or that should be impossible). In this way, packet filtering can prevent certain unfortunate mistakes from shutting a network down.')
if mibBuilder.loadTexts: filter.setReference("RFC1812, 'Requirements for IP Version 4 Routers,' ftp://ftp.isi.edu/in-notes/rfc1812.txt. RFC2267, 'Network Ingress Filtering: Defeating Denial of Service Attacks which employ IP Source Address Spoofing,' ftp://ftp.isi.edu/in-notes/rfc2267.txt. RFC2474, 'Definition of the Differentiated Services Field (DS Field) in the IPv4 and IPv6 Headers', ftp://ftp.isi.edu/in-notes/rfc2474.txt. D. Brent Chapman, 'Network (In)Security Through IP Packet Filtering,' Proceedings of the 3rd USENIX Security Symposium, Sept. 1992. Andrew Molitor, 'An Architecture for Advanced Packet Filtering,' Proceedings of the 5th USENIX Security Symposium, June. 1995. Paul Russell, 'Linux IPCHAINS-HOWTO,' http://www.rustcorp.com/linux/ipchains/HOWTO.html, v1.0.7, Mar. 1999.")
filterGlobal = ObjectIdentity((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 1))
if mibBuilder.loadTexts: filterGlobal.setStatus('current')
if mibBuilder.loadTexts: filterGlobal.setDescription('Global filter provisioning information.')
fltGlobalIndexNext = MibScalar((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 2147483647))).setMaxAccess("readonly")
if mibBuilder.loadTexts: fltGlobalIndexNext.setStatus('current')
if mibBuilder.loadTexts: fltGlobalIndexNext.setDescription('The next available filter spec table index (filterSpecIndex). A GET on this object increments the value by one. A GETNEXT on this object will always return zero.')
fltGlobalTimeout = MibScalar((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 2147483647))).setUnits('seconds').setMaxAccess("readwrite")
if mibBuilder.loadTexts: fltGlobalTimeout.setStatus('current')
if mibBuilder.loadTexts: fltGlobalTimeout.setDescription('Filter inconsistency timeout in seconds. A filter spec is considered to be in an inconsistent state when the value of the objects fltSpecVersion1 and fltSpecVersion2 are not equal. This timeout indicates the minimum number of seconds a filter may be in an inconsistent state before the filter spec becomes invalid and the default action for a filter is used as the filter. Provided fltGlobalTimeout is long enough, it should ensure that both an old modification is permanently stalled (ensuring exclusive access) as well as enough time to repair a filter. Default is five seconds.')
filterSpecTable = MibTable((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 2), )
if mibBuilder.loadTexts: filterSpecTable.setStatus('current')
if mibBuilder.loadTexts: filterSpecTable.setDescription("The filter specification table contains specifications for the IP filtering module. Rows are indexed by a single integer index (filterSpecIndex). The fltGlobalIndexNext object is used to determine the next index value. Each row points to a sequence of rows (statements) in the filterStatementTable. When any row in that sequence is modified, created, or removed, the fltSpecVersion1 and fltSpecVersion2 objects must be incremented. Rows are created by assigning fltSpecIndex and setting fltSpecRowStatus to 'createAndGo'. All columnar objects in this table have default values, so no objects other than the index value need be set to create a row. Rows are removed by setting fltSpecRowStatus to 'destroy'. When a row is removed, each row in filterStatementTable with the same fltSpecIndex is automatically removed.")
filterSpecEntry = MibTableRow((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 2, 1), ).setIndexNames((0, "ZHONE-COM-IP-FILTER-MIB", "fltSpecIndex"))
if mibBuilder.loadTexts: filterSpecEntry.setStatus('current')
if mibBuilder.loadTexts: filterSpecEntry.setDescription('An entry in the filterSpecTable.')
fltSpecIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 2, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 2147483647)))
if mibBuilder.loadTexts: fltSpecIndex.setStatus('current')
if mibBuilder.loadTexts: fltSpecIndex.setDescription('The index that identifies an entry in the filterSpecTable. The fltGlobalIndexNext object is used to determine the next value of this object.')
fltSpecName = MibTableColumn((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 2, 1, 2), ZhoneAdminString()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: fltSpecName.setStatus('current')
if mibBuilder.loadTexts: fltSpecName.setDescription('The filter name associated with this filter specification. This name should indicate the nature of the filter. The default value is an empty string.')
fltSpecDesc = MibTableColumn((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 2, 1, 3), SnmpAdminString()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: fltSpecDesc.setStatus('current')
if mibBuilder.loadTexts: fltSpecDesc.setDescription('Textual description of the filter specification. This should briefly describe the nature of the filter defined by the associated filter statements. The default value is an empty string.')
fltSpecVersion1 = MibTableColumn((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 2, 1, 4), Unsigned32()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: fltSpecVersion1.setStatus('current')
if mibBuilder.loadTexts: fltSpecVersion1.setDescription('The version number of the filter specification. This is used to flag any changes in the statements that comprise a filter. Each time a modification occurs to an object in a filter spec (including the the list of filter statements of the same fltSpecIndex in filterStatementTable), the value of this object, and fltSpecVersion2 must be incremented. The manager adding, deleting, or modifying a filter statement or statements must increment this version number in the following manner. A read of fltSpecVersion1 returns its current value. A write to fltSpecVersion1 must be one greater than its current value. A successful write of this object transfers ownership to the manager, where the manager must subsequently perform any desired modifications to the filter spec and then write the new value of fltSpecVersion1 to the fltSpecVersion2 object to release ownership. When fltSpecVersion1 does not equal to fltSpecVersion2, the filter spec is in an inconsistent state. If the filter spec remains in an inconsistent state longer than the time specified in fltGlobalTimeout, the filter spec is declared invalid and the filter spec does not become active. The previously provisioned filter spec will remain active. If no previous filter spec was provisioned for this interface, a default action is used. It is up to the manager to fix the invalid filter spec and bring it into a consistent state.')
fltSpecVersion2 = MibTableColumn((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 2, 1, 5), Unsigned32()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: fltSpecVersion2.setStatus('current')
if mibBuilder.loadTexts: fltSpecVersion2.setDescription('The version number of the filter specification. The value of this object must be equal to fltSpecVersion1, otherwise the filter spec is inconsistent. See fltSpecVersion1 for details.')
fltSpecLanguageVersion = MibTableColumn((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 2, 1, 6), Unsigned32()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: fltSpecLanguageVersion.setStatus('current')
if mibBuilder.loadTexts: fltSpecLanguageVersion.setDescription('The language version of the filter. The language version further details the meaning and use of the objects in filterStatmentTable. The definitions of the filter languages is beyond the scope of this description.')
fltSpecRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 2, 1, 7), ZhoneRowStatus()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: fltSpecRowStatus.setStatus('current')
if mibBuilder.loadTexts: fltSpecRowStatus.setDescription('Zhone convention to support row creation and deletion. This is the only object required to create or destroy a row in this table.')
filterStatementTable = MibTable((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 3), )
if mibBuilder.loadTexts: filterStatementTable.setStatus('current')
if mibBuilder.loadTexts: filterStatementTable.setDescription("This table contains the filter specification statements for the IP filtering module. A complete filter specification is comprised of all the linked statements (rows) that are pointed to by an entry in the filterSpecTable. Filter statements are linked together by fltSpecIndex, and are ordered within the comprised filter using fltStmtIndex. A statement can only be owned by one filter spec. Rows are created by assigning fltSpecIndex and fltStmtIndex, and setting fltStmtRowStatus to 'createAndGo'. All columnar objects in this table have default values, so no objects other than the index values need be set to create a row. Rows are destroyed by setting fltStmtRowStatus to 'delete'. When rows are created or destroyed, the version of the corresponding filter spec row is incremented.")
filterStatementEntry = MibTableRow((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 3, 1), ).setIndexNames((0, "ZHONE-COM-IP-FILTER-MIB", "fltSpecIndex"), (0, "ZHONE-COM-IP-FILTER-MIB", "fltStmtIndex"))
if mibBuilder.loadTexts: filterStatementEntry.setStatus('current')
if mibBuilder.loadTexts: filterStatementEntry.setDescription('An entry in the filterStatement table. Each entry represents one of a sequence of statements that comprise a filter. Each filter statement consists of an index, specific packet header fields, and arbitrary packet offsets and values. Some objects in this entry define ranges for specific packet header fields. These objects define comparison operations on the field they share in the following manner: Low High Compare Method for field f --- ---- ------------------------------------------- 0 0 no comparison on the field 0 H less than or equal to High (f <= H) L 0 exact match (L == f) L H inclusive between comparison (L <= f <= H) ')
fltStmtIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 3, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 2147483647)))
if mibBuilder.loadTexts: fltStmtIndex.setStatus('current')
if mibBuilder.loadTexts: fltStmtIndex.setDescription('The table index that identifies a filter statement. These indicies should be sparse to allow for insertion into the list.')
fltStmtIpSrcAddrLow = MibTableColumn((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 3, 1, 2), IpAddress().clone(hexValue="00000000")).setMaxAccess("readcreate")
if mibBuilder.loadTexts: fltStmtIpSrcAddrLow.setStatus('current')
if mibBuilder.loadTexts: fltStmtIpSrcAddrLow.setDescription('The inclusive lower bound for the source IP address range. See the filterStatementEntry description for details.')
fltStmtIpSrcAddrHigh = MibTableColumn((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 3, 1, 3), IpAddress().clone(hexValue="00000000")).setMaxAccess("readcreate")
if mibBuilder.loadTexts: fltStmtIpSrcAddrHigh.setStatus('current')
if mibBuilder.loadTexts: fltStmtIpSrcAddrHigh.setDescription('The inclusive upper bound for the source IP address range. See the filterStatementEntry description for details.')
fltStmtSrcPortLow = MibTableColumn((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 3, 1, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: fltStmtSrcPortLow.setStatus('current')
if mibBuilder.loadTexts: fltStmtSrcPortLow.setDescription('The inclusive lower bound for the transport layer source port range. See the filterStatementEntry description for details.')
fltStmtSrcPortHigh = MibTableColumn((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 3, 1, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: fltStmtSrcPortHigh.setStatus('current')
if mibBuilder.loadTexts: fltStmtSrcPortHigh.setDescription('The inclusive upper bound for the transport layer source port range. See the filterStatementEntry description for details.')
fltStmtIpDstAddrLow = MibTableColumn((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 3, 1, 6), IpAddress().clone(hexValue="00000000")).setMaxAccess("readcreate")
if mibBuilder.loadTexts: fltStmtIpDstAddrLow.setStatus('current')
if mibBuilder.loadTexts: fltStmtIpDstAddrLow.setDescription('The inclusive lower bound for the destination IP address range. See the filterStatementEntry description for details.')
fltStmtIpDstAddrHigh = MibTableColumn((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 3, 1, 7), IpAddress().clone(hexValue="00000000")).setMaxAccess("readcreate")
if mibBuilder.loadTexts: fltStmtIpDstAddrHigh.setStatus('current')
if mibBuilder.loadTexts: fltStmtIpDstAddrHigh.setDescription('The inclusive upper bound for the destination IP address range. See the filterStatementEntry description for details.')
fltStmtDstPortLow = MibTableColumn((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 3, 1, 8), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: fltStmtDstPortLow.setStatus('current')
if mibBuilder.loadTexts: fltStmtDstPortLow.setDescription('The inclusive lower bound for the transport layer destination port range. See the filterStatementEntry description for details.')
fltStmtDstPortHigh = MibTableColumn((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 3, 1, 9), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: fltStmtDstPortHigh.setStatus('current')
if mibBuilder.loadTexts: fltStmtDstPortHigh.setDescription('The inclusive upper bound for the transport layer destination port range. See the filterStatementEntry description for details.')
fltStmtIpProtocol = MibTableColumn((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 3, 1, 10), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5))).clone(namedValues=NamedValues(("any", 1), ("ip", 2), ("tcp", 3), ("udp", 4), ("icmp", 5))).clone('any')).setMaxAccess("readcreate")
if mibBuilder.loadTexts: fltStmtIpProtocol.setStatus('current')
if mibBuilder.loadTexts: fltStmtIpProtocol.setDescription('The IP protocol value that is to be matched. The enum values are as follows: any(1) : any protocol type is a match (wildcard) ip(2) : raw IP packet tcp(3) : TCP packet udp(4) : UDP packet icmp(5) : ICMP packet The default value is any(1).')
fltStmtArbValueBase = MibTableColumn((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 3, 1, 11), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=NamedValues(("none", 1), ("ip", 2), ("udp", 3), ("tcp", 4), ("icmp", 5), ("ipOptions", 6), ("tcpOptions", 7))).clone('none')).setMaxAccess("readcreate")
if mibBuilder.loadTexts: fltStmtArbValueBase.setStatus('current')
if mibBuilder.loadTexts: fltStmtArbValueBase.setDescription('This field identifies the protocol header to which the arbitrary value comparison applies. The enum values are as follows: none(1) : no arbitrary value comparison ip(2) : base is IP header udp(3) : base is UDP header tcp(4) : base is TCP header icmp(5) : base is ICMP header ipOptions(6) : base is IP options header tcpOptions(7) : base is TCP options header The default value is none(1).')
fltStmtArbOffset = MibTableColumn((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 3, 1, 12), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 64))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: fltStmtArbOffset.setStatus('current')
if mibBuilder.loadTexts: fltStmtArbOffset.setDescription('The offset, in octets, from the beginning of the header to the most significant octet for the arbitrary value comparison.')
fltStmtArbMask = MibTableColumn((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 3, 1, 13), Unsigned32()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: fltStmtArbMask.setStatus('current')
if mibBuilder.loadTexts: fltStmtArbMask.setDescription('This object is mask for for arbitrary value comparisons. The non-zero bits in this field determine the size of the arbitrary field.')
fltStmtArbValueLow = MibTableColumn((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 3, 1, 14), Unsigned32()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: fltStmtArbValueLow.setStatus('current')
if mibBuilder.loadTexts: fltStmtArbValueLow.setDescription('This object is the inclusive lower bound for arbitrary value comparison. See the filterStatementEntry description for details.')
fltStmtArbValueHigh = MibTableColumn((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 3, 1, 15), Unsigned32()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: fltStmtArbValueHigh.setStatus('current')
if mibBuilder.loadTexts: fltStmtArbValueHigh.setDescription('This object is the inclusive upper bound for arbitrary value comparison. See the filterStatementEntry description for details.')
fltStmtModifier = MibTableColumn((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 3, 1, 16), Bits().clone(namedValues=NamedValues(("notIpSrc", 0), ("notSrcPort", 1), ("notDstIp", 2), ("notPortDst", 3), ("notProtocol", 4), ("notArbitrary", 5), ("notStatement", 6)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: fltStmtModifier.setStatus('current')
if mibBuilder.loadTexts: fltStmtModifier.setDescription('Filter statement modifier. The bits set in this object logically negate the results of the comparisons made on their respecive fields as shown : notIpSrcAddr(1) : fltStmtIpSrcAddrLow, fltStmtIpSrcAddrHigh notSrcPort(2) : fltStmtSrcPortLow, fltStmtSrcPortHigh notIpDstAddr(3) : fltStmtIpDstAddrLow, fltStmtIpDstAddrHigh notDstPort(4) : fltStmtDstPortLow, fltStmtDstPortHigh notIpProtocol(5) : fltStmtIpProtocol notArbitrary(6) : fltStmtArbValueLow, fltStmtArbValueHigh notStatement(7) : negate outcome of the entire statement No bits set (the default) specifies to use all outcomes as is.')
fltStmtAction = MibTableColumn((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 3, 1, 17), Bits().clone(namedValues=NamedValues(("reset", 0), ("permit", 1), ("deny", 2), ("forward", 3), ("reject", 4), ("log", 5))).clone(namedValues=NamedValues(("deny", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: fltStmtAction.setStatus('current')
if mibBuilder.loadTexts: fltStmtAction.setDescription('Filter statement action. The bits set in this object specify actions to take on packets matching this statement. Supported actions are: reset(0) : Return a TCP reset packet to the packet sender and drop the packet. This cannot be specified with permit. permit(1) : Stop filtering the packet and allow it to be sent on the associated interface. This cannot be specified with deny. deny(2) : Stop filtering the packet and discard it. This cannot be specified with permit. forward(3) : Forward the packet the IP address specified in fltStmtActionArg. reject(4) : Return an ICMP destination unreachable packet (type 3) to the packet sender with code 13 (communication administratively prohibited). This cannot be specified permit. log(5) : Write the packet to the log stream. There are some mutually exclusive bits: reset(0) and permit(1), permit(1) and deny(2), permit(1) and reject(4). No bits set implies to continue filtering on the packet.')
fltStmtActionArg = MibTableColumn((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 3, 1, 18), Integer32()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: fltStmtActionArg.setStatus('current')
if mibBuilder.loadTexts: fltStmtActionArg.setDescription('Filter statement action argument. The meaning of this object depends on the value of fltStmtAction: forward(3) : An IP address to forward the packet to. The value of this object must be non-zero. All other values of fltStmtAction have no relation to this object. The default is zero.')
fltStmtRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 3, 1, 19), ZhoneRowStatus()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: fltStmtRowStatus.setStatus('current')
if mibBuilder.loadTexts: fltStmtRowStatus.setDescription('Zhone convention to support row creation and deletion. This is the only object required to create or destroy a row in this table.')
filterStmtRenumTable = MibTable((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 4), )
if mibBuilder.loadTexts: filterStmtRenumTable.setStatus('current')
if mibBuilder.loadTexts: filterStmtRenumTable.setDescription('This table provides a mechanism for renumbering individual filter statments within their particular filter spec.')
filterStmtRenumEntry = MibTableRow((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 4, 1), )
filterStatementEntry.registerAugmentions(("ZHONE-COM-IP-FILTER-MIB", "filterStmtRenumEntry"))
filterStmtRenumEntry.setIndexNames(*filterStatementEntry.getIndexNames())
if mibBuilder.loadTexts: filterStmtRenumEntry.setStatus('current')
if mibBuilder.loadTexts: filterStmtRenumEntry.setDescription('An entry in the filterStmtRenumTable.')
fltStmtIndexNew = MibTableColumn((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 4, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 2147483647))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: fltStmtIndexNew.setStatus('current')
if mibBuilder.loadTexts: fltStmtIndexNew.setDescription("The new statement index for the filter statement. Reading this object will return the same value as the 'fltStmtIndex' portion of its index. Writing to this object will cause the corresponding filter statement to be relocated to the position identified by the value written here. If no statement exists at the current index, 'no such instance' will be returned. If a statement already exists at the new index then 'inconsistent value' is returned. For example, to move the second statement of filter #4 to the third position (e.g. to make room for a new statement #2), the following SNMP set-request would be issued: fltStmtIndexNew.4.2 = 3 There is no default value for this object as it is derived from the fltStmtIndex.")
filterStatsTable = MibTable((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 5), )
if mibBuilder.loadTexts: filterStatsTable.setStatus('current')
if mibBuilder.loadTexts: filterStatsTable.setDescription('This table provides ingress and egress IP filter statistics for each interface. This table is indexed by the ifIndex of the interface and the direction (ingress or egress) of traffic being filtered. This is a read-only table.')
filterStatsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 5, 1), ).setIndexNames((0, "IF-MIB", "ifIndex"), (0, "ZHONE-COM-IP-FILTER-MIB", "fltStatDirection"))
if mibBuilder.loadTexts: filterStatsEntry.setStatus('current')
if mibBuilder.loadTexts: filterStatsEntry.setDescription('An entry in the filterStatsTable. There will be an entry for each filter provisioned on an interface. There can be, at most, two filters provisioned per interface; one for ingress filtering and the other for egress filtering.')
fltStatDirection = MibTableColumn((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 5, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("ingress", 1), ("egress", 2))))
if mibBuilder.loadTexts: fltStatDirection.setStatus('current')
if mibBuilder.loadTexts: fltStatDirection.setDescription('The direction for which this set of statistics is kept: ingress or egress.')
fltStatResetPkts = MibTableColumn((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 5, 1, 2), Counter32()).setUnits('packets').setMaxAccess("readonly")
if mibBuilder.loadTexts: fltStatResetPkts.setStatus('current')
if mibBuilder.loadTexts: fltStatResetPkts.setDescription('The number of discarded packets for which a TCP reset packet was sent.')
fltStatPermitPkts = MibTableColumn((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 5, 1, 3), Counter32()).setUnits('packets').setMaxAccess("readonly")
if mibBuilder.loadTexts: fltStatPermitPkts.setStatus('current')
if mibBuilder.loadTexts: fltStatPermitPkts.setDescription('The number of permitted packets.')
fltStatDenyPkts = MibTableColumn((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 5, 1, 4), Counter32()).setUnits('packets').setMaxAccess("readonly")
if mibBuilder.loadTexts: fltStatDenyPkts.setStatus('current')
if mibBuilder.loadTexts: fltStatDenyPkts.setDescription('The number of discarded packets.')
fltStatForwardPkts = MibTableColumn((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 5, 1, 5), Counter32()).setUnits('packets').setMaxAccess("readonly")
if mibBuilder.loadTexts: fltStatForwardPkts.setStatus('current')
if mibBuilder.loadTexts: fltStatForwardPkts.setDescription('The number of packets forwarded to the IP address specified in the filter.')
fltStatRejectPkts = MibTableColumn((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 5, 1, 6), Counter32()).setUnits('packets').setMaxAccess("readonly")
if mibBuilder.loadTexts: fltStatRejectPkts.setStatus('current')
if mibBuilder.loadTexts: fltStatRejectPkts.setDescription('The number of discarded packets for which an ICMP destination unreachable packet with code 13 was sent.')
fltStatLogPkts = MibTableColumn((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 5, 1, 7), Counter32()).setUnits('packets').setMaxAccess("readonly")
if mibBuilder.loadTexts: fltStatLogPkts.setStatus('current')
if mibBuilder.loadTexts: fltStatLogPkts.setDescription('The number of logged packets.')
fltStatDefaultPkts = MibTableColumn((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 5, 1, 8), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: fltStatDefaultPkts.setStatus('current')
if mibBuilder.loadTexts: fltStatDefaultPkts.setDescription('The number of packets that pass through the filter without matching upon which the default action is used.')
fltStatSpecVersion = MibTableColumn((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 5, 1, 9), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: fltStatSpecVersion.setStatus('current')
if mibBuilder.loadTexts: fltStatSpecVersion.setDescription('The version of the filter being used on this interface.')
fltStatSpecIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 5, 1, 10), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 2147483647))).setMaxAccess("readonly")
if mibBuilder.loadTexts: fltStatSpecIndex.setStatus('current')
if mibBuilder.loadTexts: fltStatSpecIndex.setDescription('The index of the filter specification being used on this interface. If there is no filter configured for an interface, the entry will not exist in this table.')
mcastControl = ObjectIdentity((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 6))
if mibBuilder.loadTexts: mcastControl.setStatus('current')
if mibBuilder.loadTexts: mcastControl.setDescription('The MIB module representing Multicast control list specifications in Zhone Technologies products. The First application of multicast control list is to accept of deny a IGMP request to join or leave a IGMP group. Any IGMP request to join a group is accepted only if the group address is available in the Multicast Control list pointed by a field in the ip-interface-record.')
mcastControlListTable = MibTable((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 6, 1), )
if mibBuilder.loadTexts: mcastControlListTable.setStatus('current')
if mibBuilder.loadTexts: mcastControlListTable.setDescription('Multicast control list table conatins the one of the IP Address that can be allowed to join to by a IGMP join request from IP interface that has the the multicast control list in its ip-interfce-profile. The address to the table is the multicast control list ID and the precedence. The Row status in the table contains indication of whether the row is being created or destroyed. ')
mcastControlListEntry = MibTableRow((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 6, 1, 1), ).setIndexNames((0, "ZHONE-COM-IP-FILTER-MIB", "mcastControlListControlId"), (0, "ZHONE-COM-IP-FILTER-MIB", "mcastControlListControlPrecedence"))
if mibBuilder.loadTexts: mcastControlListEntry.setStatus('current')
if mibBuilder.loadTexts: mcastControlListEntry.setDescription('An entry in the Multicast Control List.')
mcastControlListControlId = MibTableColumn((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 6, 1, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 2147483647)))
if mibBuilder.loadTexts: mcastControlListControlId.setStatus('current')
if mibBuilder.loadTexts: mcastControlListControlId.setDescription('Description.')
mcastControlListControlPrecedence = MibTableColumn((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 6, 1, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 2147483647)))
if mibBuilder.loadTexts: mcastControlListControlPrecedence.setStatus('current')
if mibBuilder.loadTexts: mcastControlListControlPrecedence.setDescription('Description.')
mcastControlListRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 6, 1, 1, 3), ZhoneRowStatus()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: mcastControlListRowStatus.setStatus('current')
if mibBuilder.loadTexts: mcastControlListRowStatus.setDescription('Description.')
mcastControlListIpAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 6, 1, 1, 4), IpAddress()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: mcastControlListIpAddress.setStatus('current')
if mibBuilder.loadTexts: mcastControlListIpAddress.setDescription('multicast ip address.')
mcastControlListType = MibTableColumn((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 6, 1, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("normal", 1), ("always-on", 2), ("periodic", 3))).clone('normal')).setMaxAccess("readcreate")
if mibBuilder.loadTexts: mcastControlListType.setStatus('current')
if mibBuilder.loadTexts: mcastControlListType.setDescription('Defines the video stream type. normal - join and leave when desired. Used for video. always-on - always joined. Meant for EBS, not video. periodic - will join and leave after task complete. Not meant for video. Used to download the tv guide.')
portAccessControl = ObjectIdentity((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 7))
if mibBuilder.loadTexts: portAccessControl.setStatus('current')
if mibBuilder.loadTexts: portAccessControl.setDescription('This MIB represents the port access control list in Zhone products. It is used to control access to internal ports. Initially it is used just for TELNET (23) , but in theory could be used for other ports as well.')
portAccessNextIndex = MibScalar((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 7, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: portAccessNextIndex.setStatus('current')
if mibBuilder.loadTexts: portAccessNextIndex.setDescription('Description: A hint for the next free index should the manager want to create a new entry.')
portAccessTable = MibTable((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 7, 2), )
if mibBuilder.loadTexts: portAccessTable.setStatus('current')
if mibBuilder.loadTexts: portAccessTable.setDescription('Contains the list of entries that control port access on this device.')
portAccessEntry = MibTableRow((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 7, 2, 1), ).setIndexNames((0, "ZHONE-COM-IP-FILTER-MIB", "portAccessIndex"))
if mibBuilder.loadTexts: portAccessEntry.setStatus('current')
if mibBuilder.loadTexts: portAccessEntry.setDescription('This contains the entry that is to be accepted. Currently only used to control access to port 23. arg1, arg2 provide IP Address/mask to allow in.')
portAccessIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 7, 2, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 100)))
if mibBuilder.loadTexts: portAccessIndex.setStatus('current')
if mibBuilder.loadTexts: portAccessIndex.setDescription('The index of this entry in table. 100 entries should be more than enough.')
portAccessRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 7, 2, 1, 2), ZhoneRowStatus()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: portAccessRowStatus.setStatus('current')
if mibBuilder.loadTexts: portAccessRowStatus.setDescription('Description.: used to create/delete entries in the table.')
portAccessNumber = MibTableColumn((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 7, 2, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 1023))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: portAccessNumber.setStatus('current')
if mibBuilder.loadTexts: portAccessNumber.setDescription('PortNumber that this applies to, 1..1023 supported.')
portAccessSrcAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 7, 2, 1, 4), IpAddress()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: portAccessSrcAddr.setStatus('current')
if mibBuilder.loadTexts: portAccessSrcAddr.setDescription('The IP address that we will accept packets from.')
portAccessNetMask = MibTableColumn((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 7, 2, 1, 5), IpAddress()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: portAccessNetMask.setStatus('current')
if mibBuilder.loadTexts: portAccessNetMask.setDescription('portAccessNetMask - used to pass the range that we will accept with regards to portAccessSrcAddr.')
mibBuilder.exportSymbols("ZHONE-COM-IP-FILTER-MIB", fltStmtIpDstAddrLow=fltStmtIpDstAddrLow, fltStmtIpSrcAddrHigh=fltStmtIpSrcAddrHigh, mcastControlListIpAddress=mcastControlListIpAddress, fltSpecVersion1=fltSpecVersion1, fltStatSpecIndex=fltStatSpecIndex, portAccessSrcAddr=portAccessSrcAddr, fltStatSpecVersion=fltStatSpecVersion, portAccessNumber=portAccessNumber, fltStmtIpProtocol=fltStmtIpProtocol, fltStmtModifier=fltStmtModifier, fltSpecLanguageVersion=fltSpecLanguageVersion, fltStmtSrcPortLow=fltStmtSrcPortLow, mcastControlListControlPrecedence=mcastControlListControlPrecedence, fltStmtActionArg=fltStmtActionArg, fltSpecVersion2=fltSpecVersion2, filterStmtRenumEntry=filterStmtRenumEntry, filterStmtRenumTable=filterStmtRenumTable, portAccessTable=portAccessTable, mcastControlListControlId=mcastControlListControlId, fltStmtIpDstAddrHigh=fltStmtIpDstAddrHigh, fltStmtRowStatus=fltStmtRowStatus, comIpFilter=comIpFilter, portAccessControl=portAccessControl, fltStatDirection=fltStatDirection, mcastControl=mcastControl, fltStmtArbValueLow=fltStmtArbValueLow, mcastControlListTable=mcastControlListTable, filterGlobal=filterGlobal, fltSpecIndex=fltSpecIndex, PYSNMP_MODULE_ID=comIpFilter, fltStmtSrcPortHigh=fltStmtSrcPortHigh, filterStatsTable=filterStatsTable, fltStmtArbMask=fltStmtArbMask, fltGlobalIndexNext=fltGlobalIndexNext, fltStmtIndexNew=fltStmtIndexNew, mcastControlListRowStatus=mcastControlListRowStatus, filterStatsEntry=filterStatsEntry, fltStmtArbValueBase=fltStmtArbValueBase, fltStatLogPkts=fltStatLogPkts, fltStatResetPkts=fltStatResetPkts, fltStatPermitPkts=fltStatPermitPkts, mcastControlListType=mcastControlListType, portAccessIndex=portAccessIndex, fltStmtDstPortLow=fltStmtDstPortLow, fltGlobalTimeout=fltGlobalTimeout, filterStatementTable=filterStatementTable, fltStatDefaultPkts=fltStatDefaultPkts, filter=filter, fltStmtArbOffset=fltStmtArbOffset, portAccessEntry=portAccessEntry, portAccessNextIndex=portAccessNextIndex, fltStatRejectPkts=fltStatRejectPkts, mcastControlListEntry=mcastControlListEntry, filterStatementEntry=filterStatementEntry, fltStmtIndex=fltStmtIndex, filterSpecTable=filterSpecTable, fltSpecRowStatus=fltSpecRowStatus, fltStmtArbValueHigh=fltStmtArbValueHigh, portAccessNetMask=portAccessNetMask, portAccessRowStatus=portAccessRowStatus, fltStmtAction=fltStmtAction, fltStmtIpSrcAddrLow=fltStmtIpSrcAddrLow, filterSpecEntry=filterSpecEntry, fltStatDenyPkts=fltStatDenyPkts, fltSpecDesc=fltSpecDesc, fltSpecName=fltSpecName, fltStmtDstPortHigh=fltStmtDstPortHigh, fltStatForwardPkts=fltStatForwardPkts)
| (integer, octet_string, object_identifier) = mibBuilder.importSymbols('ASN1', 'Integer', 'OctetString', 'ObjectIdentifier')
(named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues')
(value_size_constraint, single_value_constraint, value_range_constraint, constraints_union, constraints_intersection) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'ValueSizeConstraint', 'SingleValueConstraint', 'ValueRangeConstraint', 'ConstraintsUnion', 'ConstraintsIntersection')
(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')
(gauge32, counter64, iso, integer32, module_identity, object_identity, ip_address, unsigned32, mib_identifier, time_ticks, mib_scalar, mib_table, mib_table_row, mib_table_column, bits, notification_type, counter32) = mibBuilder.importSymbols('SNMPv2-SMI', 'Gauge32', 'Counter64', 'iso', 'Integer32', 'ModuleIdentity', 'ObjectIdentity', 'IpAddress', 'Unsigned32', 'MibIdentifier', 'TimeTicks', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn', 'Bits', 'NotificationType', 'Counter32')
(display_string, textual_convention) = mibBuilder.importSymbols('SNMPv2-TC', 'DisplayString', 'TextualConvention')
(zhone_modules, zhone_ip) = mibBuilder.importSymbols('Zhone', 'zhoneModules', 'zhoneIp')
(zhone_row_status, zhone_admin_string) = mibBuilder.importSymbols('Zhone-TC', 'ZhoneRowStatus', 'ZhoneAdminString')
com_ip_filter = module_identity((1, 3, 6, 1, 4, 1, 5504, 6, 58))
comIpFilter.setRevisions(('2005-01-10 10:16', '2005-01-03 09:24', '2004-12-21 09:25', '2004-08-30 11:00', '2004-04-06 00:17', '2001-01-17 08:48', '2000-09-11 16:22'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
if mibBuilder.loadTexts:
comIpFilter.setRevisionsDescriptions(('changed portAccessArg1, portAccessArg2 to more intuitive names.', 'changed portArg1, portArg2 to IP addresses', 'added Port_Access', 'V01.01.02 - Add type field to mcastControlList.', 'V01.01.01 - Implementation of multicast-control-list.', 'V01.01.00 - Added keyword markup, updated SMI, Added the filterStmtRenumTable and filterStatsTable', 'V01.00.00 - Initial Release'))
if mibBuilder.loadTexts:
comIpFilter.setLastUpdated('200501100015Z')
if mibBuilder.loadTexts:
comIpFilter.setOrganization('Zhone Technologies, Inc.')
if mibBuilder.loadTexts:
comIpFilter.setContactInfo(' Postal: Zhone Technologies, Inc. @ Zhone Way 7001 Oakport Street Oakland, CA 94621 USA Toll-Free: +1 877-ZHONE20 (+1 877-946-6320) Tel: +1-510-777-7000 Fax: +1-510-777-7001 E-mail: [email protected]')
if mibBuilder.loadTexts:
comIpFilter.setDescription('Zhone IP Filter MIB Module. IP Software Minneapolis, MN')
filter = object_identity((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8))
if mibBuilder.loadTexts:
filter.setStatus('current')
if mibBuilder.loadTexts:
filter.setDescription('The MIB module representing IP filter specifications in Zhone Technologies products. IP filtering is typically performed to enhance network security by limiting what access is allowed between two networks. Filtering is also effective in eliminating certain denial-of-service attacks. Packet filtering also provides a framework for sanity checking packet headers, and rejecting packets that are unlikely (or that should be impossible). In this way, packet filtering can prevent certain unfortunate mistakes from shutting a network down.')
if mibBuilder.loadTexts:
filter.setReference("RFC1812, 'Requirements for IP Version 4 Routers,' ftp://ftp.isi.edu/in-notes/rfc1812.txt. RFC2267, 'Network Ingress Filtering: Defeating Denial of Service Attacks which employ IP Source Address Spoofing,' ftp://ftp.isi.edu/in-notes/rfc2267.txt. RFC2474, 'Definition of the Differentiated Services Field (DS Field) in the IPv4 and IPv6 Headers', ftp://ftp.isi.edu/in-notes/rfc2474.txt. D. Brent Chapman, 'Network (In)Security Through IP Packet Filtering,' Proceedings of the 3rd USENIX Security Symposium, Sept. 1992. Andrew Molitor, 'An Architecture for Advanced Packet Filtering,' Proceedings of the 5th USENIX Security Symposium, June. 1995. Paul Russell, 'Linux IPCHAINS-HOWTO,' http://www.rustcorp.com/linux/ipchains/HOWTO.html, v1.0.7, Mar. 1999.")
filter_global = object_identity((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 1))
if mibBuilder.loadTexts:
filterGlobal.setStatus('current')
if mibBuilder.loadTexts:
filterGlobal.setDescription('Global filter provisioning information.')
flt_global_index_next = mib_scalar((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 2147483647))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
fltGlobalIndexNext.setStatus('current')
if mibBuilder.loadTexts:
fltGlobalIndexNext.setDescription('The next available filter spec table index (filterSpecIndex). A GET on this object increments the value by one. A GETNEXT on this object will always return zero.')
flt_global_timeout = mib_scalar((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(1, 2147483647))).setUnits('seconds').setMaxAccess('readwrite')
if mibBuilder.loadTexts:
fltGlobalTimeout.setStatus('current')
if mibBuilder.loadTexts:
fltGlobalTimeout.setDescription('Filter inconsistency timeout in seconds. A filter spec is considered to be in an inconsistent state when the value of the objects fltSpecVersion1 and fltSpecVersion2 are not equal. This timeout indicates the minimum number of seconds a filter may be in an inconsistent state before the filter spec becomes invalid and the default action for a filter is used as the filter. Provided fltGlobalTimeout is long enough, it should ensure that both an old modification is permanently stalled (ensuring exclusive access) as well as enough time to repair a filter. Default is five seconds.')
filter_spec_table = mib_table((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 2))
if mibBuilder.loadTexts:
filterSpecTable.setStatus('current')
if mibBuilder.loadTexts:
filterSpecTable.setDescription("The filter specification table contains specifications for the IP filtering module. Rows are indexed by a single integer index (filterSpecIndex). The fltGlobalIndexNext object is used to determine the next index value. Each row points to a sequence of rows (statements) in the filterStatementTable. When any row in that sequence is modified, created, or removed, the fltSpecVersion1 and fltSpecVersion2 objects must be incremented. Rows are created by assigning fltSpecIndex and setting fltSpecRowStatus to 'createAndGo'. All columnar objects in this table have default values, so no objects other than the index value need be set to create a row. Rows are removed by setting fltSpecRowStatus to 'destroy'. When a row is removed, each row in filterStatementTable with the same fltSpecIndex is automatically removed.")
filter_spec_entry = mib_table_row((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 2, 1)).setIndexNames((0, 'ZHONE-COM-IP-FILTER-MIB', 'fltSpecIndex'))
if mibBuilder.loadTexts:
filterSpecEntry.setStatus('current')
if mibBuilder.loadTexts:
filterSpecEntry.setDescription('An entry in the filterSpecTable.')
flt_spec_index = mib_table_column((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 2, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 2147483647)))
if mibBuilder.loadTexts:
fltSpecIndex.setStatus('current')
if mibBuilder.loadTexts:
fltSpecIndex.setDescription('The index that identifies an entry in the filterSpecTable. The fltGlobalIndexNext object is used to determine the next value of this object.')
flt_spec_name = mib_table_column((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 2, 1, 2), zhone_admin_string()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
fltSpecName.setStatus('current')
if mibBuilder.loadTexts:
fltSpecName.setDescription('The filter name associated with this filter specification. This name should indicate the nature of the filter. The default value is an empty string.')
flt_spec_desc = mib_table_column((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 2, 1, 3), snmp_admin_string()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
fltSpecDesc.setStatus('current')
if mibBuilder.loadTexts:
fltSpecDesc.setDescription('Textual description of the filter specification. This should briefly describe the nature of the filter defined by the associated filter statements. The default value is an empty string.')
flt_spec_version1 = mib_table_column((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 2, 1, 4), unsigned32()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
fltSpecVersion1.setStatus('current')
if mibBuilder.loadTexts:
fltSpecVersion1.setDescription('The version number of the filter specification. This is used to flag any changes in the statements that comprise a filter. Each time a modification occurs to an object in a filter spec (including the the list of filter statements of the same fltSpecIndex in filterStatementTable), the value of this object, and fltSpecVersion2 must be incremented. The manager adding, deleting, or modifying a filter statement or statements must increment this version number in the following manner. A read of fltSpecVersion1 returns its current value. A write to fltSpecVersion1 must be one greater than its current value. A successful write of this object transfers ownership to the manager, where the manager must subsequently perform any desired modifications to the filter spec and then write the new value of fltSpecVersion1 to the fltSpecVersion2 object to release ownership. When fltSpecVersion1 does not equal to fltSpecVersion2, the filter spec is in an inconsistent state. If the filter spec remains in an inconsistent state longer than the time specified in fltGlobalTimeout, the filter spec is declared invalid and the filter spec does not become active. The previously provisioned filter spec will remain active. If no previous filter spec was provisioned for this interface, a default action is used. It is up to the manager to fix the invalid filter spec and bring it into a consistent state.')
flt_spec_version2 = mib_table_column((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 2, 1, 5), unsigned32()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
fltSpecVersion2.setStatus('current')
if mibBuilder.loadTexts:
fltSpecVersion2.setDescription('The version number of the filter specification. The value of this object must be equal to fltSpecVersion1, otherwise the filter spec is inconsistent. See fltSpecVersion1 for details.')
flt_spec_language_version = mib_table_column((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 2, 1, 6), unsigned32()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
fltSpecLanguageVersion.setStatus('current')
if mibBuilder.loadTexts:
fltSpecLanguageVersion.setDescription('The language version of the filter. The language version further details the meaning and use of the objects in filterStatmentTable. The definitions of the filter languages is beyond the scope of this description.')
flt_spec_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 2, 1, 7), zhone_row_status()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
fltSpecRowStatus.setStatus('current')
if mibBuilder.loadTexts:
fltSpecRowStatus.setDescription('Zhone convention to support row creation and deletion. This is the only object required to create or destroy a row in this table.')
filter_statement_table = mib_table((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 3))
if mibBuilder.loadTexts:
filterStatementTable.setStatus('current')
if mibBuilder.loadTexts:
filterStatementTable.setDescription("This table contains the filter specification statements for the IP filtering module. A complete filter specification is comprised of all the linked statements (rows) that are pointed to by an entry in the filterSpecTable. Filter statements are linked together by fltSpecIndex, and are ordered within the comprised filter using fltStmtIndex. A statement can only be owned by one filter spec. Rows are created by assigning fltSpecIndex and fltStmtIndex, and setting fltStmtRowStatus to 'createAndGo'. All columnar objects in this table have default values, so no objects other than the index values need be set to create a row. Rows are destroyed by setting fltStmtRowStatus to 'delete'. When rows are created or destroyed, the version of the corresponding filter spec row is incremented.")
filter_statement_entry = mib_table_row((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 3, 1)).setIndexNames((0, 'ZHONE-COM-IP-FILTER-MIB', 'fltSpecIndex'), (0, 'ZHONE-COM-IP-FILTER-MIB', 'fltStmtIndex'))
if mibBuilder.loadTexts:
filterStatementEntry.setStatus('current')
if mibBuilder.loadTexts:
filterStatementEntry.setDescription('An entry in the filterStatement table. Each entry represents one of a sequence of statements that comprise a filter. Each filter statement consists of an index, specific packet header fields, and arbitrary packet offsets and values. Some objects in this entry define ranges for specific packet header fields. These objects define comparison operations on the field they share in the following manner: Low High Compare Method for field f --- ---- ------------------------------------------- 0 0 no comparison on the field 0 H less than or equal to High (f <= H) L 0 exact match (L == f) L H inclusive between comparison (L <= f <= H) ')
flt_stmt_index = mib_table_column((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 3, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 2147483647)))
if mibBuilder.loadTexts:
fltStmtIndex.setStatus('current')
if mibBuilder.loadTexts:
fltStmtIndex.setDescription('The table index that identifies a filter statement. These indicies should be sparse to allow for insertion into the list.')
flt_stmt_ip_src_addr_low = mib_table_column((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 3, 1, 2), ip_address().clone(hexValue='00000000')).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
fltStmtIpSrcAddrLow.setStatus('current')
if mibBuilder.loadTexts:
fltStmtIpSrcAddrLow.setDescription('The inclusive lower bound for the source IP address range. See the filterStatementEntry description for details.')
flt_stmt_ip_src_addr_high = mib_table_column((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 3, 1, 3), ip_address().clone(hexValue='00000000')).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
fltStmtIpSrcAddrHigh.setStatus('current')
if mibBuilder.loadTexts:
fltStmtIpSrcAddrHigh.setDescription('The inclusive upper bound for the source IP address range. See the filterStatementEntry description for details.')
flt_stmt_src_port_low = mib_table_column((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 3, 1, 4), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
fltStmtSrcPortLow.setStatus('current')
if mibBuilder.loadTexts:
fltStmtSrcPortLow.setDescription('The inclusive lower bound for the transport layer source port range. See the filterStatementEntry description for details.')
flt_stmt_src_port_high = mib_table_column((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 3, 1, 5), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
fltStmtSrcPortHigh.setStatus('current')
if mibBuilder.loadTexts:
fltStmtSrcPortHigh.setDescription('The inclusive upper bound for the transport layer source port range. See the filterStatementEntry description for details.')
flt_stmt_ip_dst_addr_low = mib_table_column((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 3, 1, 6), ip_address().clone(hexValue='00000000')).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
fltStmtIpDstAddrLow.setStatus('current')
if mibBuilder.loadTexts:
fltStmtIpDstAddrLow.setDescription('The inclusive lower bound for the destination IP address range. See the filterStatementEntry description for details.')
flt_stmt_ip_dst_addr_high = mib_table_column((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 3, 1, 7), ip_address().clone(hexValue='00000000')).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
fltStmtIpDstAddrHigh.setStatus('current')
if mibBuilder.loadTexts:
fltStmtIpDstAddrHigh.setDescription('The inclusive upper bound for the destination IP address range. See the filterStatementEntry description for details.')
flt_stmt_dst_port_low = mib_table_column((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 3, 1, 8), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
fltStmtDstPortLow.setStatus('current')
if mibBuilder.loadTexts:
fltStmtDstPortLow.setDescription('The inclusive lower bound for the transport layer destination port range. See the filterStatementEntry description for details.')
flt_stmt_dst_port_high = mib_table_column((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 3, 1, 9), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
fltStmtDstPortHigh.setStatus('current')
if mibBuilder.loadTexts:
fltStmtDstPortHigh.setDescription('The inclusive upper bound for the transport layer destination port range. See the filterStatementEntry description for details.')
flt_stmt_ip_protocol = mib_table_column((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 3, 1, 10), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5))).clone(namedValues=named_values(('any', 1), ('ip', 2), ('tcp', 3), ('udp', 4), ('icmp', 5))).clone('any')).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
fltStmtIpProtocol.setStatus('current')
if mibBuilder.loadTexts:
fltStmtIpProtocol.setDescription('The IP protocol value that is to be matched. The enum values are as follows: any(1) : any protocol type is a match (wildcard) ip(2) : raw IP packet tcp(3) : TCP packet udp(4) : UDP packet icmp(5) : ICMP packet The default value is any(1).')
flt_stmt_arb_value_base = mib_table_column((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 3, 1, 11), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=named_values(('none', 1), ('ip', 2), ('udp', 3), ('tcp', 4), ('icmp', 5), ('ipOptions', 6), ('tcpOptions', 7))).clone('none')).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
fltStmtArbValueBase.setStatus('current')
if mibBuilder.loadTexts:
fltStmtArbValueBase.setDescription('This field identifies the protocol header to which the arbitrary value comparison applies. The enum values are as follows: none(1) : no arbitrary value comparison ip(2) : base is IP header udp(3) : base is UDP header tcp(4) : base is TCP header icmp(5) : base is ICMP header ipOptions(6) : base is IP options header tcpOptions(7) : base is TCP options header The default value is none(1).')
flt_stmt_arb_offset = mib_table_column((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 3, 1, 12), integer32().subtype(subtypeSpec=value_range_constraint(0, 64))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
fltStmtArbOffset.setStatus('current')
if mibBuilder.loadTexts:
fltStmtArbOffset.setDescription('The offset, in octets, from the beginning of the header to the most significant octet for the arbitrary value comparison.')
flt_stmt_arb_mask = mib_table_column((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 3, 1, 13), unsigned32()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
fltStmtArbMask.setStatus('current')
if mibBuilder.loadTexts:
fltStmtArbMask.setDescription('This object is mask for for arbitrary value comparisons. The non-zero bits in this field determine the size of the arbitrary field.')
flt_stmt_arb_value_low = mib_table_column((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 3, 1, 14), unsigned32()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
fltStmtArbValueLow.setStatus('current')
if mibBuilder.loadTexts:
fltStmtArbValueLow.setDescription('This object is the inclusive lower bound for arbitrary value comparison. See the filterStatementEntry description for details.')
flt_stmt_arb_value_high = mib_table_column((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 3, 1, 15), unsigned32()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
fltStmtArbValueHigh.setStatus('current')
if mibBuilder.loadTexts:
fltStmtArbValueHigh.setDescription('This object is the inclusive upper bound for arbitrary value comparison. See the filterStatementEntry description for details.')
flt_stmt_modifier = mib_table_column((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 3, 1, 16), bits().clone(namedValues=named_values(('notIpSrc', 0), ('notSrcPort', 1), ('notDstIp', 2), ('notPortDst', 3), ('notProtocol', 4), ('notArbitrary', 5), ('notStatement', 6)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
fltStmtModifier.setStatus('current')
if mibBuilder.loadTexts:
fltStmtModifier.setDescription('Filter statement modifier. The bits set in this object logically negate the results of the comparisons made on their respecive fields as shown : notIpSrcAddr(1) : fltStmtIpSrcAddrLow, fltStmtIpSrcAddrHigh notSrcPort(2) : fltStmtSrcPortLow, fltStmtSrcPortHigh notIpDstAddr(3) : fltStmtIpDstAddrLow, fltStmtIpDstAddrHigh notDstPort(4) : fltStmtDstPortLow, fltStmtDstPortHigh notIpProtocol(5) : fltStmtIpProtocol notArbitrary(6) : fltStmtArbValueLow, fltStmtArbValueHigh notStatement(7) : negate outcome of the entire statement No bits set (the default) specifies to use all outcomes as is.')
flt_stmt_action = mib_table_column((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 3, 1, 17), bits().clone(namedValues=named_values(('reset', 0), ('permit', 1), ('deny', 2), ('forward', 3), ('reject', 4), ('log', 5))).clone(namedValues=named_values(('deny', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
fltStmtAction.setStatus('current')
if mibBuilder.loadTexts:
fltStmtAction.setDescription('Filter statement action. The bits set in this object specify actions to take on packets matching this statement. Supported actions are: reset(0) : Return a TCP reset packet to the packet sender and drop the packet. This cannot be specified with permit. permit(1) : Stop filtering the packet and allow it to be sent on the associated interface. This cannot be specified with deny. deny(2) : Stop filtering the packet and discard it. This cannot be specified with permit. forward(3) : Forward the packet the IP address specified in fltStmtActionArg. reject(4) : Return an ICMP destination unreachable packet (type 3) to the packet sender with code 13 (communication administratively prohibited). This cannot be specified permit. log(5) : Write the packet to the log stream. There are some mutually exclusive bits: reset(0) and permit(1), permit(1) and deny(2), permit(1) and reject(4). No bits set implies to continue filtering on the packet.')
flt_stmt_action_arg = mib_table_column((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 3, 1, 18), integer32()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
fltStmtActionArg.setStatus('current')
if mibBuilder.loadTexts:
fltStmtActionArg.setDescription('Filter statement action argument. The meaning of this object depends on the value of fltStmtAction: forward(3) : An IP address to forward the packet to. The value of this object must be non-zero. All other values of fltStmtAction have no relation to this object. The default is zero.')
flt_stmt_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 3, 1, 19), zhone_row_status()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
fltStmtRowStatus.setStatus('current')
if mibBuilder.loadTexts:
fltStmtRowStatus.setDescription('Zhone convention to support row creation and deletion. This is the only object required to create or destroy a row in this table.')
filter_stmt_renum_table = mib_table((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 4))
if mibBuilder.loadTexts:
filterStmtRenumTable.setStatus('current')
if mibBuilder.loadTexts:
filterStmtRenumTable.setDescription('This table provides a mechanism for renumbering individual filter statments within their particular filter spec.')
filter_stmt_renum_entry = mib_table_row((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 4, 1))
filterStatementEntry.registerAugmentions(('ZHONE-COM-IP-FILTER-MIB', 'filterStmtRenumEntry'))
filterStmtRenumEntry.setIndexNames(*filterStatementEntry.getIndexNames())
if mibBuilder.loadTexts:
filterStmtRenumEntry.setStatus('current')
if mibBuilder.loadTexts:
filterStmtRenumEntry.setDescription('An entry in the filterStmtRenumTable.')
flt_stmt_index_new = mib_table_column((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 4, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 2147483647))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
fltStmtIndexNew.setStatus('current')
if mibBuilder.loadTexts:
fltStmtIndexNew.setDescription("The new statement index for the filter statement. Reading this object will return the same value as the 'fltStmtIndex' portion of its index. Writing to this object will cause the corresponding filter statement to be relocated to the position identified by the value written here. If no statement exists at the current index, 'no such instance' will be returned. If a statement already exists at the new index then 'inconsistent value' is returned. For example, to move the second statement of filter #4 to the third position (e.g. to make room for a new statement #2), the following SNMP set-request would be issued: fltStmtIndexNew.4.2 = 3 There is no default value for this object as it is derived from the fltStmtIndex.")
filter_stats_table = mib_table((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 5))
if mibBuilder.loadTexts:
filterStatsTable.setStatus('current')
if mibBuilder.loadTexts:
filterStatsTable.setDescription('This table provides ingress and egress IP filter statistics for each interface. This table is indexed by the ifIndex of the interface and the direction (ingress or egress) of traffic being filtered. This is a read-only table.')
filter_stats_entry = mib_table_row((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 5, 1)).setIndexNames((0, 'IF-MIB', 'ifIndex'), (0, 'ZHONE-COM-IP-FILTER-MIB', 'fltStatDirection'))
if mibBuilder.loadTexts:
filterStatsEntry.setStatus('current')
if mibBuilder.loadTexts:
filterStatsEntry.setDescription('An entry in the filterStatsTable. There will be an entry for each filter provisioned on an interface. There can be, at most, two filters provisioned per interface; one for ingress filtering and the other for egress filtering.')
flt_stat_direction = mib_table_column((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 5, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('ingress', 1), ('egress', 2))))
if mibBuilder.loadTexts:
fltStatDirection.setStatus('current')
if mibBuilder.loadTexts:
fltStatDirection.setDescription('The direction for which this set of statistics is kept: ingress or egress.')
flt_stat_reset_pkts = mib_table_column((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 5, 1, 2), counter32()).setUnits('packets').setMaxAccess('readonly')
if mibBuilder.loadTexts:
fltStatResetPkts.setStatus('current')
if mibBuilder.loadTexts:
fltStatResetPkts.setDescription('The number of discarded packets for which a TCP reset packet was sent.')
flt_stat_permit_pkts = mib_table_column((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 5, 1, 3), counter32()).setUnits('packets').setMaxAccess('readonly')
if mibBuilder.loadTexts:
fltStatPermitPkts.setStatus('current')
if mibBuilder.loadTexts:
fltStatPermitPkts.setDescription('The number of permitted packets.')
flt_stat_deny_pkts = mib_table_column((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 5, 1, 4), counter32()).setUnits('packets').setMaxAccess('readonly')
if mibBuilder.loadTexts:
fltStatDenyPkts.setStatus('current')
if mibBuilder.loadTexts:
fltStatDenyPkts.setDescription('The number of discarded packets.')
flt_stat_forward_pkts = mib_table_column((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 5, 1, 5), counter32()).setUnits('packets').setMaxAccess('readonly')
if mibBuilder.loadTexts:
fltStatForwardPkts.setStatus('current')
if mibBuilder.loadTexts:
fltStatForwardPkts.setDescription('The number of packets forwarded to the IP address specified in the filter.')
flt_stat_reject_pkts = mib_table_column((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 5, 1, 6), counter32()).setUnits('packets').setMaxAccess('readonly')
if mibBuilder.loadTexts:
fltStatRejectPkts.setStatus('current')
if mibBuilder.loadTexts:
fltStatRejectPkts.setDescription('The number of discarded packets for which an ICMP destination unreachable packet with code 13 was sent.')
flt_stat_log_pkts = mib_table_column((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 5, 1, 7), counter32()).setUnits('packets').setMaxAccess('readonly')
if mibBuilder.loadTexts:
fltStatLogPkts.setStatus('current')
if mibBuilder.loadTexts:
fltStatLogPkts.setDescription('The number of logged packets.')
flt_stat_default_pkts = mib_table_column((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 5, 1, 8), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
fltStatDefaultPkts.setStatus('current')
if mibBuilder.loadTexts:
fltStatDefaultPkts.setDescription('The number of packets that pass through the filter without matching upon which the default action is used.')
flt_stat_spec_version = mib_table_column((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 5, 1, 9), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
fltStatSpecVersion.setStatus('current')
if mibBuilder.loadTexts:
fltStatSpecVersion.setDescription('The version of the filter being used on this interface.')
flt_stat_spec_index = mib_table_column((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 5, 1, 10), integer32().subtype(subtypeSpec=value_range_constraint(1, 2147483647))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
fltStatSpecIndex.setStatus('current')
if mibBuilder.loadTexts:
fltStatSpecIndex.setDescription('The index of the filter specification being used on this interface. If there is no filter configured for an interface, the entry will not exist in this table.')
mcast_control = object_identity((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 6))
if mibBuilder.loadTexts:
mcastControl.setStatus('current')
if mibBuilder.loadTexts:
mcastControl.setDescription('The MIB module representing Multicast control list specifications in Zhone Technologies products. The First application of multicast control list is to accept of deny a IGMP request to join or leave a IGMP group. Any IGMP request to join a group is accepted only if the group address is available in the Multicast Control list pointed by a field in the ip-interface-record.')
mcast_control_list_table = mib_table((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 6, 1))
if mibBuilder.loadTexts:
mcastControlListTable.setStatus('current')
if mibBuilder.loadTexts:
mcastControlListTable.setDescription('Multicast control list table conatins the one of the IP Address that can be allowed to join to by a IGMP join request from IP interface that has the the multicast control list in its ip-interfce-profile. The address to the table is the multicast control list ID and the precedence. The Row status in the table contains indication of whether the row is being created or destroyed. ')
mcast_control_list_entry = mib_table_row((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 6, 1, 1)).setIndexNames((0, 'ZHONE-COM-IP-FILTER-MIB', 'mcastControlListControlId'), (0, 'ZHONE-COM-IP-FILTER-MIB', 'mcastControlListControlPrecedence'))
if mibBuilder.loadTexts:
mcastControlListEntry.setStatus('current')
if mibBuilder.loadTexts:
mcastControlListEntry.setDescription('An entry in the Multicast Control List.')
mcast_control_list_control_id = mib_table_column((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 6, 1, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 2147483647)))
if mibBuilder.loadTexts:
mcastControlListControlId.setStatus('current')
if mibBuilder.loadTexts:
mcastControlListControlId.setDescription('Description.')
mcast_control_list_control_precedence = mib_table_column((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 6, 1, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(1, 2147483647)))
if mibBuilder.loadTexts:
mcastControlListControlPrecedence.setStatus('current')
if mibBuilder.loadTexts:
mcastControlListControlPrecedence.setDescription('Description.')
mcast_control_list_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 6, 1, 1, 3), zhone_row_status()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
mcastControlListRowStatus.setStatus('current')
if mibBuilder.loadTexts:
mcastControlListRowStatus.setDescription('Description.')
mcast_control_list_ip_address = mib_table_column((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 6, 1, 1, 4), ip_address()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
mcastControlListIpAddress.setStatus('current')
if mibBuilder.loadTexts:
mcastControlListIpAddress.setDescription('multicast ip address.')
mcast_control_list_type = mib_table_column((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 6, 1, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('normal', 1), ('always-on', 2), ('periodic', 3))).clone('normal')).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
mcastControlListType.setStatus('current')
if mibBuilder.loadTexts:
mcastControlListType.setDescription('Defines the video stream type. normal - join and leave when desired. Used for video. always-on - always joined. Meant for EBS, not video. periodic - will join and leave after task complete. Not meant for video. Used to download the tv guide.')
port_access_control = object_identity((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 7))
if mibBuilder.loadTexts:
portAccessControl.setStatus('current')
if mibBuilder.loadTexts:
portAccessControl.setDescription('This MIB represents the port access control list in Zhone products. It is used to control access to internal ports. Initially it is used just for TELNET (23) , but in theory could be used for other ports as well.')
port_access_next_index = mib_scalar((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 7, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
portAccessNextIndex.setStatus('current')
if mibBuilder.loadTexts:
portAccessNextIndex.setDescription('Description: A hint for the next free index should the manager want to create a new entry.')
port_access_table = mib_table((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 7, 2))
if mibBuilder.loadTexts:
portAccessTable.setStatus('current')
if mibBuilder.loadTexts:
portAccessTable.setDescription('Contains the list of entries that control port access on this device.')
port_access_entry = mib_table_row((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 7, 2, 1)).setIndexNames((0, 'ZHONE-COM-IP-FILTER-MIB', 'portAccessIndex'))
if mibBuilder.loadTexts:
portAccessEntry.setStatus('current')
if mibBuilder.loadTexts:
portAccessEntry.setDescription('This contains the entry that is to be accepted. Currently only used to control access to port 23. arg1, arg2 provide IP Address/mask to allow in.')
port_access_index = mib_table_column((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 7, 2, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 100)))
if mibBuilder.loadTexts:
portAccessIndex.setStatus('current')
if mibBuilder.loadTexts:
portAccessIndex.setDescription('The index of this entry in table. 100 entries should be more than enough.')
port_access_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 7, 2, 1, 2), zhone_row_status()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
portAccessRowStatus.setStatus('current')
if mibBuilder.loadTexts:
portAccessRowStatus.setDescription('Description.: used to create/delete entries in the table.')
port_access_number = mib_table_column((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 7, 2, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(1, 1023))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
portAccessNumber.setStatus('current')
if mibBuilder.loadTexts:
portAccessNumber.setDescription('PortNumber that this applies to, 1..1023 supported.')
port_access_src_addr = mib_table_column((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 7, 2, 1, 4), ip_address()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
portAccessSrcAddr.setStatus('current')
if mibBuilder.loadTexts:
portAccessSrcAddr.setDescription('The IP address that we will accept packets from.')
port_access_net_mask = mib_table_column((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 7, 2, 1, 5), ip_address()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
portAccessNetMask.setStatus('current')
if mibBuilder.loadTexts:
portAccessNetMask.setDescription('portAccessNetMask - used to pass the range that we will accept with regards to portAccessSrcAddr.')
mibBuilder.exportSymbols('ZHONE-COM-IP-FILTER-MIB', fltStmtIpDstAddrLow=fltStmtIpDstAddrLow, fltStmtIpSrcAddrHigh=fltStmtIpSrcAddrHigh, mcastControlListIpAddress=mcastControlListIpAddress, fltSpecVersion1=fltSpecVersion1, fltStatSpecIndex=fltStatSpecIndex, portAccessSrcAddr=portAccessSrcAddr, fltStatSpecVersion=fltStatSpecVersion, portAccessNumber=portAccessNumber, fltStmtIpProtocol=fltStmtIpProtocol, fltStmtModifier=fltStmtModifier, fltSpecLanguageVersion=fltSpecLanguageVersion, fltStmtSrcPortLow=fltStmtSrcPortLow, mcastControlListControlPrecedence=mcastControlListControlPrecedence, fltStmtActionArg=fltStmtActionArg, fltSpecVersion2=fltSpecVersion2, filterStmtRenumEntry=filterStmtRenumEntry, filterStmtRenumTable=filterStmtRenumTable, portAccessTable=portAccessTable, mcastControlListControlId=mcastControlListControlId, fltStmtIpDstAddrHigh=fltStmtIpDstAddrHigh, fltStmtRowStatus=fltStmtRowStatus, comIpFilter=comIpFilter, portAccessControl=portAccessControl, fltStatDirection=fltStatDirection, mcastControl=mcastControl, fltStmtArbValueLow=fltStmtArbValueLow, mcastControlListTable=mcastControlListTable, filterGlobal=filterGlobal, fltSpecIndex=fltSpecIndex, PYSNMP_MODULE_ID=comIpFilter, fltStmtSrcPortHigh=fltStmtSrcPortHigh, filterStatsTable=filterStatsTable, fltStmtArbMask=fltStmtArbMask, fltGlobalIndexNext=fltGlobalIndexNext, fltStmtIndexNew=fltStmtIndexNew, mcastControlListRowStatus=mcastControlListRowStatus, filterStatsEntry=filterStatsEntry, fltStmtArbValueBase=fltStmtArbValueBase, fltStatLogPkts=fltStatLogPkts, fltStatResetPkts=fltStatResetPkts, fltStatPermitPkts=fltStatPermitPkts, mcastControlListType=mcastControlListType, portAccessIndex=portAccessIndex, fltStmtDstPortLow=fltStmtDstPortLow, fltGlobalTimeout=fltGlobalTimeout, filterStatementTable=filterStatementTable, fltStatDefaultPkts=fltStatDefaultPkts, filter=filter, fltStmtArbOffset=fltStmtArbOffset, portAccessEntry=portAccessEntry, portAccessNextIndex=portAccessNextIndex, fltStatRejectPkts=fltStatRejectPkts, mcastControlListEntry=mcastControlListEntry, filterStatementEntry=filterStatementEntry, fltStmtIndex=fltStmtIndex, filterSpecTable=filterSpecTable, fltSpecRowStatus=fltSpecRowStatus, fltStmtArbValueHigh=fltStmtArbValueHigh, portAccessNetMask=portAccessNetMask, portAccessRowStatus=portAccessRowStatus, fltStmtAction=fltStmtAction, fltStmtIpSrcAddrLow=fltStmtIpSrcAddrLow, filterSpecEntry=filterSpecEntry, fltStatDenyPkts=fltStatDenyPkts, fltSpecDesc=fltSpecDesc, fltSpecName=fltSpecName, fltStmtDstPortHigh=fltStmtDstPortHigh, fltStatForwardPkts=fltStatForwardPkts) |
# https://leetcode.com/problems/contains-duplicate/
# We are forming whole set always which isn't optimal though time complexity is O(n).
class Solution:
def containsDuplicate(self, nums: List[int]) -> bool:
return len(nums) != len(set(nums)) | class Solution:
def contains_duplicate(self, nums: List[int]) -> bool:
return len(nums) != len(set(nums)) |
a=''
n=int(input())
while n != 0:
a=str(n%2)+a
n//=2
print(a)
| a = ''
n = int(input())
while n != 0:
a = str(n % 2) + a
n //= 2
print(a) |
class UniErrors(Exception):
pass
class SetupErrors(UniErrors):
pass
class SettingErrors(UniErrors):
pass
class ConfigureSyntaxErrors(UniErrors):
pass
class NoLocationErrors(UniErrors):
pass
class ImportedErrors(UniErrors):
pass
class KernelWaresSettingsErrors(UniErrors):
pass
class RegisterErrors(UniErrors):
pass
class ResoluterErrors(UniErrors):
pass
class VolumeErrors(UniErrors):
pass
class ConnectionErrors(UniErrors):
pass
class RedisOperationErrors(UniErrors):
pass
class SerializerSettingErrors(UniErrors):
pass
class SerializerValidationErrors(UniErrors):
pass
class ParserSettingErrors(UniErrors):
pass
class ContentTypeErrors(UniErrors):
pass
class IllegalParametersErrors(UniErrors):
pass
class CodingErrors(UniErrors):
pass
class AppRuntimeErrors(UniErrors):
pass
| class Unierrors(Exception):
pass
class Setuperrors(UniErrors):
pass
class Settingerrors(UniErrors):
pass
class Configuresyntaxerrors(UniErrors):
pass
class Nolocationerrors(UniErrors):
pass
class Importederrors(UniErrors):
pass
class Kernelwaressettingserrors(UniErrors):
pass
class Registererrors(UniErrors):
pass
class Resolutererrors(UniErrors):
pass
class Volumeerrors(UniErrors):
pass
class Connectionerrors(UniErrors):
pass
class Redisoperationerrors(UniErrors):
pass
class Serializersettingerrors(UniErrors):
pass
class Serializervalidationerrors(UniErrors):
pass
class Parsersettingerrors(UniErrors):
pass
class Contenttypeerrors(UniErrors):
pass
class Illegalparameterserrors(UniErrors):
pass
class Codingerrors(UniErrors):
pass
class Appruntimeerrors(UniErrors):
pass |
def string_to_list(string,array):
x=input(string)
i=1
while x[i]!=']':
if x[i]!=',':
j=i
temp=''
while x[j]!=',':
if x[j]==']':
break
temp+=x[j]
j+=1
i=j
array.append(int(temp))
else:
i+=1
start_time=[]
end_time=[]
query_time=0
students_count=0
string_to_list('start time : ',start_time)
string_to_list('end time : ',end_time)
query_time=int(input('query time : '))
if not(1<=len(start_time)<=100):
print('start time list out of range')
exit()
elif not(1<=len(end_time)<=100):
print('end time list out of range')
exit()
elif len(start_time)!=len(end_time):
print('length of lists start and end are not the same')
exit()
elif not(1<=query_time<=1000):
print('query time out of range')
exit()
for i in range(len(start_time)):
if not(1<=start_time[i]<=1000):
print(f'start time [{i}] out of range')
exit()
elif not(1<=end_time[i]<=1000):
print(f'end time [{i}] out of range')
exit()
if start_time[i]<=end_time[i]:
temp=end_time[i]-start_time[i]
if temp>=query_time:
students_count+=1
print(students_count) | def string_to_list(string, array):
x = input(string)
i = 1
while x[i] != ']':
if x[i] != ',':
j = i
temp = ''
while x[j] != ',':
if x[j] == ']':
break
temp += x[j]
j += 1
i = j
array.append(int(temp))
else:
i += 1
start_time = []
end_time = []
query_time = 0
students_count = 0
string_to_list('start time : ', start_time)
string_to_list('end time : ', end_time)
query_time = int(input('query time : '))
if not 1 <= len(start_time) <= 100:
print('start time list out of range')
exit()
elif not 1 <= len(end_time) <= 100:
print('end time list out of range')
exit()
elif len(start_time) != len(end_time):
print('length of lists start and end are not the same')
exit()
elif not 1 <= query_time <= 1000:
print('query time out of range')
exit()
for i in range(len(start_time)):
if not 1 <= start_time[i] <= 1000:
print(f'start time [{i}] out of range')
exit()
elif not 1 <= end_time[i] <= 1000:
print(f'end time [{i}] out of range')
exit()
if start_time[i] <= end_time[i]:
temp = end_time[i] - start_time[i]
if temp >= query_time:
students_count += 1
print(students_count) |
# You are given an array (which will have a length of at least 3, but could be very large) containing integers. The array is either entirely comprised of odd integers or entirely comprised of even integers except for a single integer N. Write a method that takes the array as an argument and returns this "outlier" N.
# Examples
# find_outlier([2, 4, 6, 7]) => 7
# find_outlier([3, 7, 11, 2]) => 2
def find_outlier(integers):
l = list(filter(lambda x: x%2==0, integers))
return list(filter(lambda x: x%2, integers))[0] if len(l) > 1 else l[0]
| def find_outlier(integers):
l = list(filter(lambda x: x % 2 == 0, integers))
return list(filter(lambda x: x % 2, integers))[0] if len(l) > 1 else l[0] |
#
# Copyright (C) [2020] Futurewei Technologies, Inc.
#
# FORCE-RISCV is 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
#
# THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES
# OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO
# NON-INFRINGEMENT, MERCHANTABILITY OR FIT FOR A PARTICULAR PURPOSE.
# See the License for the specific language governing permissions and
# limitations under the License.
#
# BootPriority.py
#
# This file defines the BootPriority helper class.
# The boot priority class defines helper methods associated with boot priority
class BootPriority:
# Returns the appropriate boot priority based on the name and type of
# register provided along with if the register is write only
def getBootPriority(aName=None, aType=None, aWriteOnly=0):
return 1
| class Bootpriority:
def get_boot_priority(aName=None, aType=None, aWriteOnly=0):
return 1 |
#Assignment 9.4
#print('Hello World')
fname = input('Enter name: ')
if len(fname) < 1 : fname = 'mbox-short.txt'
handle = open(fname)
di = {} #create an empty dictionary
for line in handle:
line = line.rstrip()
wds = line.split()
#the second for-loop to print each word in the list
for w in wds :
#if the key is not in the dictionar the count starts with 0
##oldcount = di.get(w,0)
##print(w, 'old', oldcount)
##newcount = oldcount + 1
##di[w] = newcount
##print(w, 'new', newcount)
di[w] = di.get(w, 0) + 1
#print(w, 'new', di[w])
#workflow: retrieve/created/update counter
#if w in di:
# di[w] = di[w] + 1
#print('*Existing*') #To provide a hint of what the programmes is doing
# else:
# di[w] = 1
#print('**New**') #To provide a hint of what the programmes is doing
#print(di)
#print the Most commoncommon word programme.
#mulitiple for-loop
largest = -1
theword = None
for k, v in di.items() : # times looks for the elements in dictionary
print(k, v)
if v > largest :
largest = v
theword = k # catch/remember the word that was largest
print('Most common', theword,largest)
| fname = input('Enter name: ')
if len(fname) < 1:
fname = 'mbox-short.txt'
handle = open(fname)
di = {}
for line in handle:
line = line.rstrip()
wds = line.split()
for w in wds:
di[w] = di.get(w, 0) + 1
largest = -1
theword = None
for (k, v) in di.items():
print(k, v)
if v > largest:
largest = v
theword = k
print('Most common', theword, largest) |
class TypeRef:
'''Represents temporary type references by an integer; to be resolved
to actual types later
'''
def __init__(self, type_ref: int):
self.type_ref = type_ref
def __hash__(self):
return hash(self.type_ref)
def __eq__(self, other):
return isinstance(other, TypeRef) and self.type_ref == other.type_ref
def __repr__(self):
return '{}({})'.format(self.__class__.__name__, self.type_ref)
| class Typeref:
"""Represents temporary type references by an integer; to be resolved
to actual types later
"""
def __init__(self, type_ref: int):
self.type_ref = type_ref
def __hash__(self):
return hash(self.type_ref)
def __eq__(self, other):
return isinstance(other, TypeRef) and self.type_ref == other.type_ref
def __repr__(self):
return '{}({})'.format(self.__class__.__name__, self.type_ref) |
#!/usr/bin/env python
# encoding: utf-8
def run(whatweb, pluginname):
whatweb.recog_from_file(pluginname, "doc/page/login.asp", "Hikvision")
| def run(whatweb, pluginname):
whatweb.recog_from_file(pluginname, 'doc/page/login.asp', 'Hikvision') |
wt1_10_10 = {'192.168.122.110': [5.5754, 5.5952, 9.2422, 8.5338, 9.0058, 8.4025, 8.7557, 8.4405, 8.1397, 8.1318, 8.0657, 7.8501, 8.1701, 8.0757, 7.8899, 7.7329, 7.6153, 7.9967, 7.9363, 7.838, 8.7936, 8.6351, 8.5151, 8.6381, 8.7262, 8.816, 8.8984, 8.7799, 8.8584, 8.9543, 8.8833, 8.794, 8.6935, 8.735, 8.635, 8.5429, 8.6163, 8.5476, 8.6108, 8.5577, 8.4882, 8.4211, 8.3623, 8.3054, 8.2413, 8.4337, 8.4888, 8.5373, 8.4713, 8.5225, 8.4593, 8.4011, 8.3452, 8.3259, 8.2905, 8.2449, 8.1937, 8.1445, 8.116, 8.1567, 8.1104, 8.0715, 8.115, 8.0737, 8.0345, 8.0136, 8.0019, 8.0049, 8.1192, 8.0796, 8.0452, 8.006, 7.981, 7.9482, 7.9175, 7.8876, 7.8733, 7.9073, 7.8801, 7.9114, 7.8796, 7.8656, 7.8337, 7.8213, 7.792, 7.8309, 7.8041, 7.8059, 7.7952, 7.7718, 7.8096, 7.7388, 7.7266, 7.7471, 7.7399, 7.7186, 7.7135, 7.6918, 7.7212, 7.7565, 7.7335, 7.711, 7.6962, 7.6741, 7.6596, 7.6417, 7.6303, 7.6106, 7.5902, 7.6216, 7.6199, 7.6491, 7.6785, 7.6596, 7.6464, 7.6277, 7.6561, 7.6506, 7.6396, 7.6222, 7.7245, 7.7135, 7.6971, 7.6861, 7.7189, 7.7939, 7.7734, 7.7552, 7.7516, 7.7743, 7.7593, 7.7427, 7.7249, 7.708, 7.6916, 7.6809, 7.703, 7.6865, 7.6734, 7.6572, 7.6484, 7.6386, 7.6612, 7.6835, 7.6686, 7.6592, 7.681, 7.6753, 7.7021, 7.6891, 7.6742, 7.665, 7.6538, 7.6739, 7.7405, 7.7304, 7.7693, 7.759, 7.7492, 7.7403, 7.7253, 7.7102, 7.6962, 7.7249, 7.7124, 7.7071, 7.7291, 7.7147, 7.7307, 7.717, 7.7031, 7.7357, 7.7238, 7.7431, 7.7364, 7.7563, 7.7441, 7.7358, 7.7272, 7.7473, 7.7372, 7.7443, 7.8068, 7.7982, 7.7906, 7.805, 7.7939, 7.7818, 7.8014, 7.7899, 7.7779, 7.7671, 7.7545, 7.9091, 7.8963, 7.8913, 7.8823, 7.8953, 7.9115, 7.9017, 7.9166, 7.9316, 7.9229, 7.9104, 7.9033, 7.8949, 7.8879, 7.9028, 7.8904, 7.8854, 7.8754, 7.8648, 7.8551, 7.8433, 7.8322, 7.8214, 7.8104, 7.8007, 7.7927, 7.7815, 7.7701, 7.783, 7.7734, 7.8037, 7.795, 7.7885, 7.7826, 7.7774, 7.7719, 7.7622, 7.7544, 7.7451, 7.7379, 7.7314, 7.7236, 7.7175, 7.7073, 7.7213, 7.7111, 7.7026, 7.6996, 7.6898, 7.7013, 7.6954, 7.7105, 7.7015, 7.692, 7.708, 7.7, 7.7133, 7.7291, 7.7193, 7.7098, 7.7936, 7.8109, 7.801, 7.7922, 7.8248, 7.8174, 7.809, 7.8018, 7.7969, 7.7876, 7.779, 7.7741, 7.7861, 7.7831, 7.8363, 7.8107, 7.807, 7.7985, 7.796, 7.7884, 7.7791, 7.7699, 7.7609, 7.7524, 7.7279, 7.7216, 7.7341, 7.7316, 7.727, 7.7204, 7.7139, 7.7255, 7.7206, 7.712, 7.7082, 7.7032, 7.6948, 7.7055, 7.6996, 7.6913, 7.6832, 7.6771, 7.6771, 7.687, 7.6898, 7.6686, 7.6639, 7.6614, 7.6572, 7.6555, 7.6487, 7.6588, 7.655, 7.6524, 7.6467, 7.6392, 7.6322, 7.6254, 7.618, 7.6111, 7.6039, 7.5989, 7.6084, 7.6017, 7.5977, 7.5922, 7.585, 7.5781, 7.5713, 7.5656, 7.5759, 7.5726, 7.5822, 7.5757, 7.5783, 7.5718, 7.5816, 7.5745, 7.5838, 7.5775, 7.5755, 7.5815, 7.5755, 7.5693, 7.564, 7.5588, 7.5405, 7.5338, 7.529, 7.5223, 7.5167, 7.526, 7.5195, 7.5056, 7.501, 7.4947, 7.504, 7.5005, 7.4983, 7.4962, 7.5053, 7.5001, 7.4945, 7.4886, 7.4852, 7.495, 7.4917, 7.4858, 7.4924, 7.5016, 7.4958, 7.4925, 7.5451, 7.5396, 7.5365, 7.5315, 7.5263, 7.5266, 7.5212, 7.5177, 7.5142, 7.5084, 7.5043, 7.4986, 7.526, 7.5214, 7.5294, 7.5234, 7.5207, 7.5166, 7.5125, 7.508, 7.5297, 7.5238, 7.521, 7.5162, 7.5259, 7.5214, 7.5166, 7.5263, 7.5209, 7.5181, 7.5129, 7.5073, 7.5034, 7.5056, 7.5024, 7.4975, 7.5072, 7.5537, 7.5498, 7.559, 7.5539, 7.5503, 7.5465, 7.5411, 7.5382, 7.5329, 7.5277, 7.5244, 7.519, 7.5167, 7.5244, 7.5335, 7.5661, 7.5608, 7.5701, 7.565, 7.5598, 7.5548, 7.5499, 7.5468, 7.5543, 7.5405, 7.5418, 7.5497, 7.5588, 7.556, 7.5408, 7.5372, 7.533, 7.5289, 7.5272, 7.522, 7.5192, 7.5044, 7.5113, 7.4982, 7.4835, 7.4797, 7.4871, 7.4821, 7.4794, 7.4755, 7.4705, 7.4669, 7.4621, 7.4572, 7.4548, 7.4508, 7.4483, 7.4561, 7.4521, 7.4605, 7.4562, 7.4529, 7.4485, 7.4487, 7.462, 7.4628, 7.4586, 7.4564, 7.4629, 7.4597, 7.4565, 7.4523, 7.4479, 7.4455, 7.4527, 7.4598, 7.4591, 7.4577, 7.4545, 7.451, 7.458, 7.4552, 7.4535, 7.4606, 7.4913, 7.4891, 7.4851, 7.4821, 7.4889, 7.5473, 7.5482, 7.5979, 7.5935, 7.5905, 7.5882, 7.5835, 7.5811, 7.5777, 7.5754, 7.5711, 7.5779, 7.5838, 7.5814, 7.5772, 7.5731, 7.5696, 7.5674, 7.5641, 7.5596, 7.5574, 7.5533, 7.5505, 7.5472, 7.5427, 7.5405, 7.5468, 7.5435, 7.5505, 7.5479, 7.544, 7.5502, 7.5533, 7.558, 7.5644, 7.5614, 7.5584, 7.554, 7.5503, 7.5566, 7.5522, 7.5501, 7.5458, 7.5515, 7.5473, 7.5444, 7.5401, 7.537, 7.5422, 7.5382, 7.5341, 7.5302, 7.5306, 7.5265, 7.5223, 7.5209, 7.5374, 7.5334, 7.5292, 7.5268, 7.5325, 7.5228, 7.5287, 7.5246, 7.5208, 7.5169, 7.5134, 7.5113, 7.5176, 7.5136, 7.5205, 7.5185, 7.5167, 7.5129, 7.5096, 7.5057, 7.504, 7.5019, 7.4985, 7.4949, 7.4931, 7.4834, 7.4902, 7.4881, 7.4949, 7.4917, 7.4974, 7.5012, 7.4979, 7.4945, 7.4926, 7.4808, 7.478, 7.4742, 7.4717, 7.4778, 7.4752, 7.4803, 7.4766, 7.4732, 7.4806, 7.4769, 7.4733, 7.4697, 7.4677, 7.4731, 7.4789, 7.4795, 7.4773, 7.4748, 7.4711, 7.469, 7.4654, 7.4619, 7.4598, 7.4669, 7.4649, 7.4616, 7.4674, 7.4646, 7.4538, 7.4595, 7.4562, 7.4531, 7.4497, 7.4469, 7.4458, 7.4422, 7.4468, 7.4358, 7.4337, 7.4307, 7.4285, 7.4342, 7.4322, 7.4385, 7.4351, 7.4326, 7.4306, 7.4361, 7.4338, 7.4316, 7.4289, 7.4377, 7.4343, 7.4398, 7.4445, 7.4422, 7.4388, 7.4356, 7.4339, 7.4322, 7.429, 7.4272, 7.4241, 7.4209, 7.418, 7.4157, 7.4124, 7.4091, 7.4062, 7.4031, 7.4009, 7.3981, 7.3986, 7.3959, 7.401, 7.3979, 7.4033, 7.401, 7.3993, 7.4053, 7.3954, 7.3923, 7.3936, 7.3909, 7.4051, 7.4033, 7.4003, 7.3978, 7.3946, 7.3947, 7.3914, 7.3918, 7.3989, 7.4042, 7.4026, 7.4002, 7.3994, 7.398, 7.4041, 7.4025, 7.4041, 7.4012, 7.4002, 7.3972, 7.3941, 7.394, 7.3913, 7.3895, 7.3872, 7.3859, 7.3829, 7.3913, 7.3886, 7.3942, 7.3922, 7.3979, 7.4103, 7.4074, 7.4246, 7.4325, 7.4312, 7.4356, 7.4328, 7.4309, 7.4281, 7.4285, 7.4257, 7.4232, 7.4207, 7.4277, 7.4269, 7.4315, 7.4285, 7.4259, 7.4247, 7.4239, 7.4211, 7.426, 7.4236, 7.421, 7.4259, 7.438, 7.4426, 7.4419, 7.4602, 7.4584, 7.456, 7.4532, 7.458, 7.4628, 7.467, 7.471, 7.4695, 7.4748, 7.4725, 7.4702, 7.4673, 7.4647, 7.4692, 7.4663, 7.4634, 7.4681, 7.4657, 7.4704, 7.4729, 7.4699, 7.468, 7.4589, 7.4562, 7.4537, 7.4522, 7.4575, 7.4548, 7.46, 7.4667, 7.4724, 7.4768, 7.474, 7.4717, 7.469, 7.4674, 7.4721, 7.4713, 7.4753, 7.4737, 7.4778, 7.4765, 7.4752, 7.4725, 7.4697, 7.4671, 7.4658, 7.4632, 7.4648, 7.4622, 7.4535, 7.451, 7.4494, 7.4534, 7.4579, 7.4574, 7.4548, 7.453, 7.4572, 7.4618, 7.4662, 7.4701, 7.4675, 7.4792, 7.4776, 7.4772, 7.4809, 7.4784, 7.4841, 7.4815, 7.4795, 7.4834, 7.4816, 7.4799, 7.4777, 7.4768, 7.4743, 7.4782, 7.4754, 7.4795, 7.4906, 7.4899, 7.491, 7.495, 7.4991, 7.5047, 7.5021, 7.4994, 7.5043, 7.5036, 7.5017, 7.4992, 7.4968, 7.4944, 7.4921, 7.4913, 7.4894, 7.4877, 7.4858, 7.4904, 7.4894, 7.487, 7.4845, 7.4819, 7.4805, 7.4812, 7.4788, 7.4768, 7.4753, 7.4727, 7.4704, 7.4681, 7.4655, 7.463, 7.461, 7.4586, 7.458, 7.4559, 7.4534, 7.4521, 7.4635, 7.4609, 7.4585, 7.4622, 7.4601, 7.4641, 7.4616, 7.4592, 7.4566, 7.4543, 7.4529, 7.4506, 7.4481, 7.4459, 7.4438, 7.4415, 7.4406, 7.4382, 7.4365, 7.435, 7.439, 7.437, 7.4409, 7.4639, 7.4678, 7.4735, 7.4713, 7.4701, 7.4739, 7.4715, 7.4691, 7.4675, 7.4715, 7.4696, 7.4735, 7.4711, 7.475, 7.474, 7.4664, 7.4761, 7.4799, 7.4837, 7.4814, 7.479, 7.4829, 7.4812, 7.4789, 7.4826, 7.4819, 7.4802, 7.4782, 7.476, 7.4794, 7.4772, 7.4811, 7.4911, 7.4888, 7.4867, 7.4847, 7.4773, 7.4763, 7.4743, 7.4723, 7.4706, 7.474, 7.4668, 7.4657, 7.4712, 7.469, 7.4727, 7.4714, 7.4697, 7.4743, 7.4764, 7.4742, 7.4727, 7.4765, 7.4751, 7.4729, 7.4766, 7.4831, 7.4811, 7.4794, 7.4781, 7.4757, 7.4737, 7.4714, 7.4693, 7.467, 7.4647, 7.4681, 7.4667, 7.4643, 7.462, 7.4607, 7.4641, 7.4678, 7.4656, 7.4639, 7.4674, 7.4709, 7.4744, 7.4722, 7.4702, 7.4679, 7.4751, 7.4748, 7.4734, 7.4816, 7.4794, 7.4771, 7.4772, 7.4808, 7.479, 7.4776, 7.4754, 7.4741, 7.4776, 7.4753, 7.4732, 7.4727, 7.4723, 7.47, 7.4682, 7.4672, 7.471, 7.4696, 7.4679, 7.4711, 7.472, 7.4752, 7.473, 7.472, 7.4699, 7.4753, 7.4732, 7.4769, 7.4747, 7.4736, 7.4772, 7.4825, 7.4803, 7.4791, 7.477, 7.4751, 7.473, 7.4715, 7.475, 7.4729, 7.4662, 7.4744, 7.4777, 7.4809, 7.4818, 7.4807, 7.4741, 7.4775, 7.4757, 7.4748, 7.4736, 7.4669, 7.4654, 7.4588, 7.4622, 7.4655, 7.4648, 7.4636, 7.4616, 7.4635, 7.4634, 7.4613, 7.4552, 7.4535, 7.4616, 7.4594, 7.4576, 7.4558, 7.4669, 7.4655, 7.464, 7.4707, 7.4687, 7.4667, 7.4703, 7.4693, 7.4684, 7.4695, 7.468, 7.4672, 7.4662, 7.4652, 7.4648, 7.4657, 7.4688, 7.4722, 7.4703, 7.4739, 7.473, 7.4711, 7.4987, 7.5019, 7.5051, 7.5034, 7.5014, 7.5046, 7.5041, 7.5073, 7.5061, 7.5041, 7.5099, 7.5078, 7.5057, 7.5088, 7.5086, 7.5077, 7.5057, 7.5191, 7.5178, 7.5157, 7.5147, 7.5126, 7.5109, 7.5089, 7.5072, 7.5053, 7.5046, 7.5037, 7.5017, 7.5003, 7.4983, 7.4962, 7.4942, 7.4972, 7.4961, 7.4991, 7.497, 7.5007, 7.4994, 7.4974, 7.5008, 7.5038, 7.5026, 7.5007, 7.5042, 7.5032, 7.5018, 7.4999, 7.4983, 7.4965, 7.4947, 7.4932, 7.4963, 7.495, 7.4946, 7.4977, 7.4958, 7.4938, 7.4931, 7.4981, 7.5012, 7.4993, 7.4989, 7.497, 7.4911, 7.4893, 7.5069, 7.5049, 7.5034, 7.5015, 7.5043, 7.5023, 7.5003, 7.4996, 7.4991, 7.4972, 7.4964, 7.5141, 7.517, 7.5156, 7.514, 7.5121, 7.5111, 7.5093, 7.5074, 7.5055, 7.5037, 7.5022, 7.5004, 7.4996, 7.5046, 7.503, 7.5012, 7.5056, 7.5044, 7.5026, 7.501, 7.4991, 7.4993, 7.4976, 7.492, 7.4902, 7.4889, 7.4871, 7.4857, 7.4802, 7.4805, 7.4787, 7.477, 7.4754, 7.4753, 7.4784, 7.4776, 7.4759, 7.4702, 7.4694, 7.4725, 7.4717, 7.4706, 7.4698, 7.469, 7.4673, 7.4616, 7.4603, 7.4585, 7.4568, 7.4556, 7.4538, 7.4521, 7.4503, 7.4485, 7.452, 7.4502, 7.4532, 7.4518, 7.4504, 7.4532, 7.4517, 7.4546, 7.4711, 7.4739, 7.4765, 7.4747, 7.469, 7.4718, 7.4702, 7.4684, 7.4666, 7.4695, 7.4678, 7.4711, 7.4738, 7.472, 7.4709, 7.469, 7.4693, 7.4676, 7.4667, 7.4651, 7.464, 7.4624, 7.4607, 7.4603, 7.4593, 7.4574, 7.4566, 7.4557, 7.4585, 7.4613, 7.4602, 7.455, 7.4533, 7.452, 7.4511, 7.4493, 7.4478, 7.4462, 7.4453, 7.4449, 7.4433, 7.4427, 7.4412, 7.4408, 7.4396, 7.4385, 7.4414, 7.4445, 7.4432, 7.4421, 7.4407, 7.4431, 7.4459, 7.4444, 7.4471, 7.4468, 7.4495, 7.4485, 7.4474, 7.4466, 7.447, 7.4462, 7.4447, 7.4434, 7.4423, 7.4424, 7.4407, 7.4356, 7.4339, 7.4327, 7.431, 7.4297, 7.4281, 7.4269, 7.4253, 7.4241, 7.4229, 7.4212, 7.4208, 7.4235, 7.4222, 7.4206, 7.4489, 7.4516, 7.4542, 7.4572, 7.4557, 7.4563, 7.4587, 7.4571, 7.4561, 7.455, 7.4543, 7.4572, 7.4597, 7.4582, 7.4568, 7.4596, 7.4622, 7.4608, 7.4592, 7.4621, 7.4569, 7.4561, 7.4546, 7.4532, 7.4559, 7.4543, 7.4538, 7.4573, 7.456, 7.4509, 7.4459, 7.4443, 7.4427, 7.4411, 7.4476, 7.4504, 7.4489, 7.4479, 7.4466, 7.449, 7.4441, 7.447, 7.4453, 7.4443, 7.4428, 7.4429, 7.4412, 7.44, 7.439, 7.4415, 7.4424, 7.4414, 7.4404, 7.4388, 7.4375, 7.4404, 7.4353, 7.4302, 7.4288, 7.4275, 7.4259, 7.4243, 7.4235, 7.4219, 7.4203, 7.4195, 7.418, 7.4169, 7.4157, 7.4141, 7.4126, 7.4111, 7.4101, 7.4086, 7.4071, 7.4056, 7.4042, 7.4068, 7.4052, 7.4037, 7.4064, 7.4088, 7.4079, 7.4065, 7.4049, 7.4001, 7.3987, 7.4005, 7.3991, 7.4059, 7.4046, 7.4032, 7.402, 7.4009, 7.3971, 7.3956, 7.3951, 7.394, 7.3926, 7.3952, 7.3941, 7.3927, 7.3914, 7.3979, 7.3966, 7.3954, 7.3942, 7.3929, 7.3925, 7.392, 7.3916, 7.3944, 7.3971, 7.3958, 7.3945, 7.393, 7.3925, 7.3912, 7.3903, 7.3926, 7.3914, 7.3905, 7.3946, 7.3933, 7.3959, 7.3946, 7.3932, 7.3921, 7.3907, 7.3901, 7.3895, 7.3885, 7.3872, 7.3859, 7.3844, 7.3835, 7.3822, 7.3921, 7.3946, 7.3943, 7.3929, 7.3954, 7.3979, 7.3973, 7.3999, 7.3987, 7.4005, 7.4018, 7.3986, 7.3973, 7.4002, 7.3997, 7.402, 7.401, 7.4004, 7.399, 7.3991, 7.3976, 7.3969, 7.3955, 7.3949, 7.3936, 7.3933, 7.3918, 7.3905, 7.3891, 7.385, 7.3806, 7.3791, 7.378, 7.3792, 7.3777, 7.3765, 7.375, 7.3775, 7.3761, 7.3787, 7.3779, 7.3775, 7.38, 7.3795, 7.3817, 7.3802, 7.3792, 7.3799, 7.3784, 7.381, 7.3798, 7.3789, 7.3777, 7.3765, 7.3786, 7.3778, 7.3763, 7.3748, 7.3733, 7.3742, 7.3765, 7.3752, 7.3738, 7.3724, 7.3749, 7.375, 7.3776, 7.38, 7.3759, 7.3746, 7.3908, 7.3896, 7.3892, 7.3883, 7.3907, 7.3897, 7.3885, 7.3875, 7.3869, 7.3892, 7.3879, 7.3932, 7.3955, 7.3977, 7.3963, 7.3949, 7.3948, 7.3935, 7.3923, 7.3947, 7.3942, 7.3965, 7.3985, 7.3974, 7.3995, 7.4022, 7.401, 7.4005, 7.3995, 7.3983, 7.3978, 7.3935, 7.3957, 7.3948, 7.3935, 7.3923, 7.391, 7.3897, 7.3888, 7.3876, 7.3863, 7.385, 7.3843, 7.383, 7.3816, 7.3839, 7.3826, 7.3817, 7.3805, 7.3762, 7.3752, 7.3738, 7.3724, 7.3716, 7.3703, 7.3689, 7.3676, 7.37, 7.3721, 7.3677, 7.3665, 7.3653, 7.3648, 7.3635, 7.3629, 7.3836, 7.3859, 7.3846, 7.3868, 7.3859, 7.3852, 7.3841, 7.3798, 7.3789, 7.3776, 7.3763, 7.3749, 7.3742, 7.3734, 7.3728, 7.3721, 7.3742, 7.3729, 7.375, 7.3741, 7.3729, 7.3726, 7.3725, 7.3729, 7.3765, 7.376, 7.3721, 7.3708, 7.3766, 7.3786, 7.3921, 7.3909, 7.3919, 7.3906, 7.3893, 7.3881, 7.3921, 7.3913, 7.39, 7.3887, 7.391, 7.3933, 7.3963, 7.3983, 7.3976, 7.3963, 7.3986, 7.3974, 7.3969, 7.3978, 7.397, 7.3998, 7.3992, 7.4014, 7.4035, 7.3994, 7.3982, 7.3976, 7.3963, 7.3987, 7.398, 7.4005, 7.3999, 7.3994, 7.3981, 7.399, 7.3979, 7.3969, 7.3963, 7.3985, 7.4013, 7.4, 7.4017, 7.4005, 7.4027, 7.4016, 7.4046, 7.4034, 7.4022, 7.4112, 7.4104, 7.4096, 7.4083, 7.4075, 7.4062, 7.4054, 7.4041, 7.4063, 7.4052, 7.4045, 7.4032, 7.4021, 7.404, 7.403, 7.4018, 7.4011, 7.4002, 7.3989, 7.3986, 7.4038, 7.4057, 7.4045, 7.4009, 7.3997, 7.4, 7.3994, 7.3991, 7.3982, 7.3979, 7.3945, 7.3938, 7.3927, 7.3921, 7.3915, 7.3906, 7.3906, 7.3902, 7.3897, 7.3952, 7.3973, 7.4041, 7.4062, 7.405, 7.4072, 7.4061, 7.4052, 7.4046, 7.4065, 7.4052, 7.4039, 7.4028, 7.4016, 7.4005, 7.3993, 7.4014, 7.4006, 7.4027, 7.4014, 7.4008, 7.3995, 7.3983, 7.3973, 7.3963, 7.3951, 7.3949, 7.3939, 7.3958, 7.3945, 7.3965, 7.3957, 7.3949, 7.3969, 7.3933, 7.3955, 7.3974, 7.3969, 7.3957, 7.3979, 7.3977, 7.3965, 7.3928, 7.3917, 7.4023, 7.4015, 7.4008, 7.4027, 7.4021, 7.4015, 7.4008, 7.3999, 7.3988, 7.3977, 7.3997, 7.399, 7.3979, 7.3973, 7.3971, 7.396, 7.3977, 7.3965, 7.3987, 7.3976, 7.3965, 7.3953, 7.3946, 7.3938, 7.3957, 7.3949, 7.3943, 7.3931, 7.392, 7.3908, 7.3896, 7.3891, 7.3881, 7.3869, 7.3865, 7.3827, 7.382, 7.3827, 7.3847, 7.3841, 7.3956, 7.3945, 7.3943, 7.3963, 7.3952, 7.394, 7.3928, 7.3916, 7.3906, 7.3896, 7.3889, 7.3877, 7.3895, 7.3884, 7.3905, 7.3894, 7.3883, 7.3872, 7.3891, 7.388, 7.39, 7.3893, 7.3886, 7.3907, 7.3896, 7.3885, 7.3874, 7.3868, 7.3887, 7.3878, 7.3866, 7.3853, 7.3844, 7.3808, 7.3797, 7.3788, 7.378, 7.3769, 7.3823, 7.3815, 7.3807, 7.38, 7.3789, 7.3781, 7.38, 7.3797, 7.3791, 7.378, 7.3808, 7.3797, 7.379, 7.3784, 7.3773, 7.3744, 7.3764, 7.3758, 7.3753, 7.3786, 7.3776, 7.3764, 7.3785, 7.3775, 7.3795, 7.3785, 7.3806, 7.3796, 7.3787, 7.3777, 7.3769, 7.3794, 7.3813, 7.3804, 7.3792, 7.3781, 7.3779, 7.3775, 7.3765, 7.3755, 7.3748, 7.3743, 7.3732, 7.3721, 7.3715, 7.3704, 7.3693, 7.3682, 7.3671, 7.3665, 7.3683, 7.3672, 7.3661, 7.3681, 7.367, 7.3689, 7.3678, 7.3667, 7.3685, 7.3679, 7.3671, 7.3659, 7.3801, 7.3791, 7.3784, 7.3773, 7.3791, 7.387, 7.3865, 7.3861, 7.3855, 7.3874, 7.3892, 7.3881, 7.3871, 7.389, 7.388, 7.387, 7.3889, 7.3883, 7.3877, 7.3872, 7.3905, 7.3927, 7.3916, 7.3909, 7.3898, 7.3889, 7.3881, 7.3873, 7.3897, 7.3888, 7.3882, 7.3877, 7.3871, 7.389, 7.3879, 7.3897, 7.3892, 7.3883, 7.3877, 7.3866, 7.3885, 7.3875, 7.3864, 7.3856, 7.3847, 7.3837, 7.3862, 7.3879, 7.387, 7.3858, 7.385, 7.3839, 7.3828, 7.3817, 7.3806, 7.3798, 7.379, 7.3782, 7.3771, 7.376, 7.3749, 7.3738, 7.3732, 7.3724, 7.3727, 7.3722, 7.3711, 7.3701, 7.369, 7.3708, 7.3703, 7.3723, 7.3713, 7.3702, 7.3691, 7.368, 7.3679, 7.3676, 7.3693, 7.3683, 7.3674, 7.3668, 7.3678, 7.3673, 7.369, 7.3679, 7.3673, 7.3663, 7.3652, 7.3646, 7.3636, 7.3633, 7.3629, 7.3619, 7.3612, 7.3602, 7.3592, 7.3587, 7.3608, 7.3599, 7.3589, 7.3579, 7.36, 7.3653, 7.3649, 7.364, 7.3629, 7.362, 7.3614, 7.3604, 7.3622, 7.3615, 7.3607, 7.36, 7.359, 7.3583, 7.3574, 7.3569, 7.3559, 7.3549, 7.3566, 7.3556, 7.3546, 7.3536, 7.3502, 7.3492, 7.3496, 7.3494, 7.3493, 7.3483, 7.35, 7.3489, 7.3488, 7.3479, 7.3474, 7.3467, 7.3485, 7.3474, 7.3464, 7.3457, 7.345, 7.3483, 7.3474, 7.3491, 7.3493, 7.3483, 7.3508, 7.3504, 7.3499, 7.3516, 7.3506, 7.3496, 7.3551, 7.3546, 7.3536, 7.3526, 7.352, 7.3513, 7.3506, 7.3535, 7.3526, 7.3569, 7.3828, 7.3821, 7.3812, 7.3805, 7.3797, 7.3813, 7.378, 7.3769, 7.3759, 7.3748, 7.3738, 7.373, 7.3723, 7.3714, 7.371, 7.3714, 7.3731, 7.3748, 7.3766, 7.3756, 7.3746, 7.3762, 7.3779, 7.3771, 7.3761, 7.3752, 7.3849, 7.384, 7.383, 7.382, 7.3811, 7.3828, 7.3817, 7.3807, 7.3805, 7.3799, 7.3819, 7.3834, 7.3824, 7.3927, 7.3917, 7.3914, 7.3932, 7.3923, 7.3941, 7.3932, 7.3928, 7.392, 7.3919, 7.3914, 7.3904, 7.3894, 7.3884, 7.3875, 7.3921, 7.3919, 7.3909, 7.3899, 7.3922, 7.3915, 7.3938, 7.393, 7.3925, 7.3915, 7.3932, 7.3949, 7.395, 7.3939, 7.3956, 7.395, 7.395, 7.3941, 7.3939, 7.3946, 7.3935, 7.3956, 7.3949, 7.3949, 7.394, 7.3932, 7.3925, 7.3917, 7.391, 7.3902, 7.3892, 7.389, 7.3907, 7.3899, 7.3998, 7.399, 7.3983, 7.3973, 7.3964, 7.3955, 7.3955, 7.3949, 7.3939, 7.393, 7.3928, 7.3921, 7.3938, 7.3929, 7.3945, 7.3942, 7.3944, 7.3961, 7.3952, 7.3974, 7.3993, 7.3989, 7.398, 7.397, 7.3986, 7.3977, 7.3947, 7.3942, 7.3932, 7.3922, 7.3915, 7.3905, 7.3926, 7.3923, 7.3917, 7.3908, 7.3923, 7.3917, 7.3909, 7.3902, 7.3895, 7.3889, 7.3879, 7.3869, 7.3863, 7.3853, 7.3843, 7.3835, 7.3828, 7.3827, 7.382, 7.3813, 7.3829, 7.3826, 7.3819, 7.3809, 7.3802, 7.3793, 7.3789, 7.3781, 7.3772, 7.3762, 7.3756, 7.3775, 7.3766, 7.3757, 7.3776, 7.3746, 7.3762, 7.3754, 7.3749, 7.3741, 7.3736, 7.3728, 7.3745, 7.3736, 7.3731, 7.3765, 7.3783, 7.3804, 7.3825, 7.3818, 7.3834, 7.3827, 7.3819, 7.3811, 7.3803, 7.3793, 7.3785, 7.3775, 7.3766, 7.376, 7.3751, 7.3767, 7.3785, 7.3777, 7.3769, 7.3785, 7.3777, 7.3769, 7.376, 7.3751, 7.3768, 7.3799, 7.379, 7.3806, 7.3797, 7.3791, 7.3787, 7.3779, 7.377, 7.3761, 7.3751, 7.3742, 7.3733, 7.3772, 7.3788, 7.3779, 7.3797, 7.3795, 7.3786, 7.3801, 7.3792, 7.3783, 7.3799, 7.3793, 7.3785, 7.3778, 7.3748, 7.3744, 7.3736, 7.3727, 7.3719, 7.3712, 7.3705, 7.3695, 7.3709, 7.3729, 7.3724, 7.3741, 7.3737, 7.3732, 7.3757, 7.3747, 7.3741, 7.3732, 7.3723, 7.3715, 7.3731, 7.3722, 7.3718, 7.371, 7.3701, 7.3767, 7.3788, 7.3782, 7.3779, 7.3775, 7.3766, 7.3762, 7.3763, 7.3758, 7.3749, 7.374, 7.3732, 7.3779, 7.3794, 7.3809, 7.38, 7.3794, 7.3789, 7.3783, 7.3778, 7.3775, 7.3789, 7.378, 7.3774, 7.3765, 7.3756, 7.3755, 7.375, 7.3765, 7.3759, 7.3774, 7.3767, 7.3758, 7.3735, 7.3726, 7.374, 7.3747, 7.3764, 7.3767, 7.3758, 7.375, 7.3771, 7.3787, 7.3827, 7.3821, 7.3814, 7.3806, 7.38, 7.3791, 7.3783, 7.382, 7.3816, 7.3807, 7.3799, 7.3792, 7.3783, 7.3774, 7.3789, 7.3803, 7.3817, 7.3813, 7.3827, 7.3818, 7.3814, 7.3805, 7.3797, 7.3811, 7.3802, 7.3793, 7.3789, 7.3806, 7.3798, 7.3815, 7.3829, 7.3822, 7.3817, 7.3861, 7.3852, 7.3843, 7.3837, 7.3837, 7.383, 7.3826, 7.3817, 7.383, 7.3824, 7.3848, 7.384, 7.3835, 7.3827, 7.3819, 7.3838, 7.3833, 7.3895, 7.391, 7.3909, 7.3924, 7.3917, 7.393, 7.3924, 7.3941, 7.3933, 7.3931, 7.3946, 7.3937, 7.3929, 7.3924, 7.3919, 7.3913, 7.3904, 7.3895, 7.3891, 7.3882, 7.3873, 7.3865, 7.3856, 7.3849, 7.3871, 7.3866, 7.3857, 7.3849, 7.3841, 7.3855, 7.3852, 7.3846, 7.3845, 7.385, 7.3845, 7.3843, 7.3834, 7.383, 7.3824, 7.3837, 7.3829, 7.383, 7.3821, 7.3813, 7.3805, 7.3796, 7.3824, 7.3839, 7.3832, 7.3823, 7.3815, 7.3833, 7.3824, 7.382, 7.3816, 7.383, 7.3823, 7.3824, 7.3921, 7.3937, 7.3955, 7.395, 7.3944, 7.3938, 7.393, 7.3936, 7.3927, 7.394, 7.3954, 7.3972, 7.3968, 7.3961, 7.3953, 7.3948, 7.3944, 7.3944, 7.3941, 7.3955, 7.3971, 7.3962, 7.3957, 7.3949, 7.3945, 7.394, 7.3955, 7.3948, 7.3962, 7.3954, 7.3946, 7.3938, 7.393, 7.3927, 7.3919, 7.3911, 7.3902, 7.3899, 7.3914, 7.3908, 7.3902, 7.3897, 7.3888, 7.3884, 7.3882, 7.3875, 7.3867, 7.3859, 7.3873, 7.3865, 7.3857, 7.3872, 7.3888, 7.3885, 7.3881, 7.3896, 7.3891, 7.3883, 7.3882, 7.3917, 7.3954, 7.3946, 7.3938, 7.393, 7.3924, 7.392, 7.3912, 7.3925, 7.3954, 7.3969, 7.3965, 7.398, 7.3993, 7.4031, 7.4047, 7.4041, 7.4039, 7.4035, 7.4035, 7.4049, 7.4111, 7.4125, 7.412, 7.4112, 7.4104, 7.41, 7.4115, 7.4111, 7.4103, 7.4097, 7.409, 7.4082, 7.4098, 7.409, 7.4063, 7.4083, 7.4077, 7.4072, 7.4064, 7.4056, 7.407, 7.4082, 7.4074, 7.4099, 7.409, 7.4085, 7.4077, 7.4069, 7.4107, 7.41, 7.4092, 7.4106, 7.4101, 7.4117, 7.4109, 7.4103, 7.4101, 7.4093, 7.409, 7.4083, 7.408, 7.4074, 7.407, 7.4061, 7.4053, 7.4069, 7.4082, 7.4078, 7.407, 7.4063, 7.4056, 7.4071, 7.4064, 7.4058, 7.4053, 7.4045, 7.402, 7.4015, 7.4028, 7.4021, 7.4014, 7.4031, 7.403, 7.4023, 7.4016, 7.4008, 7.4001, 7.3996, 7.4002, 7.4015, 7.4008, 7.4022, 7.4016, 7.4008, 7.4021, 7.4013, 7.4006, 7.4019, 7.4032, 7.4025, 7.4017, 7.4009, 7.4001, 7.3999, 7.3991, 7.3983, 7.3978, 7.397, 7.3982, 7.3989, 7.4007, 7.4003, 7.3996, 7.3988, 7.3981, 7.3995, 7.4008, 7.4004, 7.4003, 7.3996, 7.399, 7.3983, 7.3977, 7.3969, 7.3965, 7.3958, 7.395, 7.3948, 7.3962, 7.3962, 7.3956, 7.3951, 7.3964, 7.3961, 7.3966, 7.3981, 7.3976, 7.397, 7.3963, 7.3965, 7.3959, 7.3951, 7.3944, 7.396, 7.3961, 7.3955, 7.395, 7.3948, 7.394, 7.3954, 7.3949, 7.3941, 7.3956, 7.3952, 7.3966, 7.3962, 7.3975, 7.397, 7.3985, 7.3978, 7.3953, 7.3948, 7.394, 7.3932, 7.3947, 7.3943, 7.3957, 7.399, 7.3983, 7.3976, 7.3972, 7.3986, 7.3979, 7.3977, 7.3953, 7.3946, 7.3938, 7.3952, 7.3944, 7.3936, 7.3932, 7.3955, 7.3948, 7.3941, 7.3966, 7.4019, 7.4048, 7.4041, 7.4042, 7.4038, 7.4051, 7.4046, 7.404, 7.4035, 7.4054, 7.4046, 7.4042, 7.4034, 7.4047, 7.4044, 7.4057, 7.407, 7.4084, 7.4079, 7.4074, 7.4085, 7.41, 7.4096, 7.4111, 7.4103, 7.4095, 7.4091, 7.4125, 7.4119, 7.4118, 7.411, 7.4102, 7.4114, 7.4106, 7.4098, 7.4097, 7.4091, 7.4083, 7.4137, 7.4131, 7.4153, 7.4145, 7.4199, 7.4193, 7.4189, 7.4181, 7.4156, 7.4149, 7.4141, 7.4118, 7.4172, 7.4186, 7.4199, 7.4193, 7.4186, 7.4181, 7.4179, 7.4172, 7.4168, 7.4161, 7.4173, 7.4186, 7.4179, 7.416, 7.4162, 7.4155, 7.4148, 7.4143, 7.4155, 7.4148, 7.416, 7.4152, 7.4144, 7.4137, 7.4133, 7.413, 7.4143, 7.4137, 7.413, 7.4143, 7.4136, 7.4148, 7.4142, 7.4134, 7.4146, 7.4141, 7.4135, 7.4148, 7.4143, 7.4139, 7.4154, 7.4177, 7.4173, 7.4168, 7.4164, 7.4229, 7.4206, 7.4202, 7.4195, 7.4212, 7.4208, 7.4204, 7.42, 7.4194, 7.4207, 7.4201, 7.4197, 7.4192, 7.4185, 7.4166, 7.4162, 7.4157, 7.4151, 7.4146, 7.4219, 7.4222, 7.4235, 7.4248, 7.4241, 7.4234, 7.4226, 7.4222, 7.4216, 7.4268, 7.4264, 7.4262, 7.427, 7.4284, 7.4296, 7.4289, 7.4283, 7.4279, 7.4271, 7.4264, 7.4256, 7.4252, 7.4248, 7.427, 7.4263, 7.4275, 7.4268, 7.4261, 7.4269, 7.4282, 7.4279, 7.4272, 7.4285, 7.4278, 7.4271, 7.4266, 7.4279, 7.4272, 7.4307, 7.43, 7.4292, 7.4284, 7.4277, 7.4293, 7.4286, 7.4278, 7.4277, 7.4253, 7.4256, 7.4249, 7.4244, 7.4241, 7.4239, 7.4215, 7.4214, 7.4207, 7.4219, 7.4231, 7.4224, 7.4221, 7.4217, 7.421, 7.4205, 7.4199, 7.4211, 7.4206, 7.4217, 7.421, 7.4203, 7.4218, 7.4232, 7.4228, 7.424, 7.4253, 7.4259, 7.4252, 7.4245, 7.4239, 7.4238, 7.425, 7.4242, 7.4235, 7.4258, 7.4251, 7.4248, 7.4226, 7.4203, 7.4197, 7.4209, 7.4202, 7.4195, 7.4187, 7.4165, 7.4159, 7.4155, 7.415, 7.4145, 7.4139, 7.4135, 7.4128, 7.4141, 7.4155, 7.415, 7.4147, 7.4149, 7.4142, 7.4136, 7.4149, 7.4142, 7.4138, 7.415, 7.4143, 7.4136, 7.4129, 7.4128, 7.4123, 7.4117, 7.412, 7.4149, 7.4161, 7.4155, 7.4147, 7.414, 7.4135, 7.4148, 7.4161, 7.4173, 7.4167, 7.416, 7.4155, 7.4149, 7.4142, 7.4134, 7.4129, 7.4125, 7.4118, 7.4113, 7.4109, 7.4105, 7.41, 7.4093, 7.4086, 7.4098, 7.4093, 7.4105, 7.41, 7.4111, 7.4105, 7.41, 7.4104, 7.4097, 7.4094, 7.4089, 7.41, 7.4097, 7.4097, 7.4139, 7.4151, 7.4208, 7.4202, 7.423, 7.4241, 7.4253, 7.4248, 7.4248, 7.4244, 7.4256, 7.4267, 7.4263, 7.4258, 7.4254, 7.4264, 7.4262, 7.4274, 7.4267, 7.4279, 7.4274, 7.4268, 7.4262, 7.4277, 7.4274, 7.4268, 7.4261, 7.4273, 7.4285, 7.428, 7.4294, 7.4306, 7.4318, 7.433, 7.4326, 7.4319, 7.4314, 7.4324, 7.4319, 7.4313, 7.4308, 7.4301, 7.4312, 7.4305, 7.4299, 7.4293, 7.4287, 7.4282, 7.4275, 7.4269, 7.4262, 7.424, 7.4238, 7.4261, 7.4255, 7.4248, 7.4242, 7.4235, 7.4229, 7.4225, 7.4218, 7.4212, 7.4208, 7.4201, 7.4198, 7.4191, 7.4184, 7.4182, 7.4178, 7.4173, 7.4167, 7.418, 7.4228, 7.4221, 7.4218, 7.4216, 7.4233, 7.4227, 7.4238, 7.425, 7.4247, 7.4241, 7.4235, 7.4229, 7.4222, 7.4215, 7.4208, 7.4201, 7.4195, 7.4189, 7.4186, 7.4198, 7.4191, 7.4185, 7.4181, 7.4192, 7.4222, 7.4215, 7.4208, 7.4208, 7.4201, 7.4213, 7.4206, 7.4217, 7.421, 7.4203, 7.4197, 7.4193, 7.4186, 7.418, 7.4173, 7.4188, 7.4181, 7.4175, 7.4172, 7.4165, 7.4158, 7.4152, 7.4163, 7.4163, 7.4156, 7.415, 7.4145, 7.4138, 7.4148, 7.416, 7.4156, 7.4152, 7.4164, 7.4159, 7.4153, 7.4153, 7.415, 7.4144, 7.4139, 7.4136, 7.4133, 7.4127, 7.412, 7.4113, 7.4107, 7.4101, 7.4095, 7.4091, 7.4085, 7.409, 7.4103, 7.4097, 7.4093, 7.4086, 7.4098, 7.411, 7.4107, 7.41, 7.4093, 7.409, 7.4102, 7.4096, 7.4107, 7.4101, 7.4094, 7.409, 7.4088, 7.4084, 7.4081, 7.4101, 7.4112, 7.4106, 7.4102, 7.4095, 7.4106, 7.4099, 7.4095, 7.4088, 7.41, 7.4093, 7.4094, 7.4114, 7.4108, 7.4104, 7.4097, 7.411, 7.4104, 7.4097, 7.4108, 7.4101, 7.4094, 7.4087, 7.408, 7.4092, 7.4092, 7.4102, 7.414, 7.4155, 7.4193, 7.4186, 7.4179, 7.4179, 7.4174, 7.4167, 7.4161, 7.4141, 7.4152, 7.4146, 7.4142, 7.4136, 7.4132, 7.4142, 7.4157, 7.4168, 7.4185, 7.4179, 7.4172, 7.4168, 7.4165, 7.416, 7.4153, 7.4146, 7.414, 7.4137, 7.413, 7.414, 7.4136, 7.413, 7.4123, 7.4117, 7.411, 7.4104, 7.4102, 7.4096, 7.409, 7.4086, 7.4097, 7.409, 7.4084, 7.4078, 7.4075, 7.4086, 7.408, 7.409, 7.4085, 7.4081, 7.4074, 7.407, 7.414, 7.4158, 7.42, 7.4197, 7.4208, 7.4201, 7.4195, 7.419, 7.42, 7.4196, 7.4189, 7.4182, 7.4195, 7.4191, 7.4185, 7.4179, 7.4175, 7.4171, 7.4182, 7.4176, 7.4171, 7.4166, 7.4162, 7.4155, 7.4166, 7.4162, 7.4159, 7.4153, 7.4177, 7.4178, 7.4178, 7.4173, 7.4183, 7.4195, 7.4189, 7.4183, 7.4193, 7.4205, 7.4199, 7.4193, 7.4189, 7.4186, 7.4171, 7.4164, 7.4175, 7.4186, 7.4181, 7.4177, 7.4173, 7.4167, 7.4161, 7.4157, 7.4151, 7.4145, 7.4157, 7.4168, 7.4165, 7.4159, 7.4161, 7.4161, 7.4162, 7.4173, 7.417, 7.415, 7.4145, 7.4141, 7.4138, 7.4135, 7.4146, 7.4139, 7.4151, 7.4153, 7.4148, 7.4144, 7.4141, 7.4135, 7.4129, 7.4128, 7.4122, 7.4115, 7.4108, 7.4102, 7.4116, 7.4126, 7.4122, 7.4122, 7.4117, 7.4128, 7.4122, 7.4132, 7.4128, 7.4139, 7.4149, 7.4142, 7.4146, 7.414, 7.4136, 7.413, 7.4125, 7.4118, 7.4115, 7.411, 7.4104, 7.4098, 7.4094, 7.4087, 7.4084, 7.4093, 7.4103, 7.4105, 7.4102, 7.4097, 7.4107, 7.4102, 7.4097, 7.4098, 7.4095, 7.4089, 7.4083, 7.4077, 7.4075, 7.4069, 7.4063, 7.4057, 7.4067, 7.4118, 7.4113, 7.4125, 7.4119, 7.4113, 7.4124, 7.4156, 7.4178, 7.4173, 7.417, 7.4167, 7.4161, 7.4172, 7.4168, 7.4181, 7.4175, 7.4186, 7.418, 7.4174, 7.4175, 7.4186, 7.4183, 7.4186, 7.4183, 7.4177, 7.4173, 7.4168, 7.4165, 7.4176, 7.4174, 7.4168, 7.4178, 7.4172, 7.4183, 7.4193, 7.4203, 7.42, 7.4206, 7.4216, 7.421, 7.4204, 7.4214, 7.4208, 7.4207, 7.4201, 7.4199, 7.4195, 7.4205, 7.42, 7.421, 7.4194, 7.4188, 7.4182, 7.4181, 7.4175, 7.4172, 7.4153, 7.4147, 7.4141, 7.4155, 7.4149, 7.416, 7.4155, 7.415, 7.4144, 7.414, 7.415, 7.4157, 7.4168, 7.4162, 7.4156, 7.4153, 7.4147, 7.4141, 7.4152, 7.4145, 7.414, 7.4136, 7.4137, 7.4134, 7.4128, 7.4138, 7.4135, 7.4132, 7.4128, 7.4123, 7.4135, 7.413, 7.4124, 7.4118, 7.4114, 7.4111, 7.4121, 7.4131, 7.4157, 7.4151, 7.416, 7.4155, 7.415, 7.4152, 7.4146, 7.4156, 7.4152, 7.4146, 7.4143, 7.4139, 7.4133, 7.4145, 7.4141, 7.4135, 7.4162, 7.4156, 7.4152, 7.4146, 7.4149, 7.4143, 7.4156, 7.415, 7.416, 7.4155, 7.4149, 7.4143, 7.4137, 7.4131, 7.4157, 7.4151, 7.4145, 7.4139, 7.4137, 7.4133, 7.4127, 7.4138, 7.4132, 7.4126, 7.4121, 7.4115, 7.4129, 7.4128, 7.4139, 7.4134, 7.4146, 7.414, 7.4134, 7.413, 7.4124, 7.4118, 7.4114, 7.4153, 7.415, 7.4144, 7.4142, 7.4152, 7.415, 7.4143, 7.4138, 7.4132, 7.4141, 7.4138, 7.4147, 7.4141, 7.4152, 7.4158, 7.4152, 7.4139, 7.4133, 7.4134, 7.413, 7.4124, 7.4123, 7.4118, 7.416, 7.414, 7.4149, 7.4146, 7.4141, 7.4136, 7.4145, 7.414, 7.4158, 7.4155, 7.4173, 7.4167, 7.4161, 7.4157, 7.4151, 7.4146, 7.414, 7.4135, 7.4129, 7.4123, 7.4118, 7.4112, 7.4122, 7.4131, 7.4142, 7.4136, 7.413, 7.4127, 7.4108, 7.4105, 7.4101, 7.4095, 7.409, 7.41, 7.4174, 7.4171, 7.4167, 7.4178, 7.4175, 7.4172, 7.4168, 7.4164, 7.4158, 7.4153, 7.4153, 7.4182, 7.4192, 7.4189, 7.4199, 7.4194, 7.4193, 7.4205, 7.4199, 7.421, 7.4204, 7.4198, 7.4198, 7.4193, 7.419, 7.4201, 7.4198, 7.4194, 7.4188, 7.4182, 7.4182, 7.4178, 7.4173, 7.4168, 7.4165, 7.4177, 7.4172, 7.4167, 7.4167, 7.4163, 7.4157, 7.4154, 7.415, 7.4147, 7.4156, 7.4153, 7.415, 7.4145, 7.4139, 7.4136, 7.4133, 7.4127, 7.4122, 7.4116, 7.4113, 7.411, 7.4104, 7.4098, 7.4093, 7.4087, 7.4097, 7.4107, 7.4101, 7.4095, 7.4106, 7.4102, 7.4096, 7.4106, 7.41, 7.4097, 7.4093, 7.4089, 7.4085, 7.408, 7.4075, 7.4086, 7.4085, 7.409, 7.4084, 7.4081, 7.4091, 7.4086, 7.4097, 7.4092, 7.4102, 7.4099, 7.4094, 7.4106, 7.4118, 7.4127, 7.4124, 7.412, 7.4114, 7.4124, 7.4121, 7.4116, 7.4111, 7.4105, 7.4102, 7.4083, 7.4078, 7.4076, 7.4073, 7.4083, 7.4077, 7.4087, 7.4082, 7.4079, 7.4075, 7.4069, 7.4065, 7.406, 7.4055, 7.4049, 7.4043, 7.4026, 7.4034, 7.4029, 7.4024, 7.4018, 7.4014, 7.4009, 7.4003, 7.4012, 7.4006, 7.4003, 7.4, 7.3999, 7.4019, 7.4043, 7.4053, 7.4062, 7.4071, 7.4103, 7.4099, 7.4094, 7.409, 7.4085, 7.408, 7.4075, 7.4085, 7.4081, 7.4076, 7.4071, 7.4066, 7.4064, 7.4073, 7.4068, 7.4078, 7.4073, 7.4155, 7.4166, 7.4168, 7.4165, 7.4159, 7.4153, 7.415, 7.4145, 7.4139, 7.4135, 7.4133, 7.4128, 7.4123, 7.4118, 7.4113, 7.4107, 7.4131, 7.4125, 7.412, 7.4118, 7.4114, 7.411, 7.4105, 7.4101, 7.4104, 7.41, 7.4095, 7.4107, 7.4102, 7.4099, 7.4094, 7.409, 7.4086, 7.4083, 7.408, 7.4088, 7.4097, 7.4094, 7.4089, 7.4084, 7.4079, 7.4073, 7.4069, 7.4065, 7.406, 7.4043, 7.4052, 7.4049, 7.4043, 7.4038, 7.4032, 7.4041, 7.4038, 7.4033, 7.403, 7.4027, 7.4034, 7.4031, 7.4041, 7.4041, 7.4056, 7.4053, 7.4052, 7.4048, 7.4044, 7.404, 7.4037, 7.4034, 7.403, 7.4039, 7.4036, 7.4044, 7.4039, 7.4034, 7.403, 7.4026, 7.4021, 7.4015, 7.4027, 7.4022, 7.4018, 7.4029, 7.4029, 7.4024, 7.402, 7.4029, 7.4025, 7.402, 7.4014, 7.4009, 7.4004, 7.4018, 7.4013, 7.4007, 7.4002, 7.4, 7.3995, 7.399, 7.399, 7.3985, 7.398, 7.3976, 7.3992, 7.3987, 7.3983, 7.3978, 7.3994, 7.3989, 7.3984, 7.4003, 7.3998, 7.4001, 7.3997, 7.3992, 7.3987, 7.3997, 7.3993, 7.3988, 7.4012, 7.4006, 7.4, 7.3995, 7.3992, 7.3987, 7.3981, 7.3976, 7.3973, 7.3968, 7.3965, 7.3974, 7.3969, 7.3964, 7.3947, 7.3943, 7.3952, 7.401, 7.4019, 7.4016, 7.4012, 7.4007, 7.4003, 7.4, 7.4014, 7.4011, 7.4025, 7.4021, 7.4019, 7.4017, 7.4012, 7.401, 7.402, 7.4015, 7.401, 7.4006, 7.4003, 7.3998, 7.3993, 7.3989, 7.3984, 7.3979, 7.3974, 7.3971, 7.3971, 7.3965, 7.3962, 7.3964, 7.3962, 7.3957, 7.397, 7.3969, 7.3977, 7.3972, 7.3967, 7.3962, 7.3958, 7.3968, 7.3979, 7.3973, 7.3982, 7.3986, 7.3981, 7.3979, 7.3975, 7.397, 7.3964, 7.3963, 7.396, 7.3957, 7.3981, 7.3976, 7.3971, 7.3967, 7.3977, 7.3973, 7.397, 7.3967, 7.3977, 7.3972, 7.3968, 7.3965, 7.3961, 7.3956, 7.395, 7.3945, 7.394, 7.3935, 7.393, 7.394, 7.3935, 7.3929, 7.3926, 7.3955, 7.3983, 7.3993, 7.3988, 7.3985, 7.3968, 7.3995, 7.3993, 7.3988, 7.3987, 7.3996, 7.4005, 7.4, 7.3995, 7.399, 7.3999, 7.3994, 7.4002, 7.4011, 7.4006, 7.4005, 7.4001, 7.3996, 7.4006, 7.4002, 7.3999, 7.3995, 7.3992, 7.3987, 7.399, 7.3986, 7.3992, 7.4002, 7.3997, 7.3993, 7.3988, 7.3983, 7.3978, 7.3975, 7.4026, 7.4023, 7.4018, 7.4018, 7.4012, 7.4023, 7.4019, 7.4014, 7.4019, 7.4024, 7.4018, 7.4013, 7.4026, 7.4024, 7.404, 7.4038, 7.4033, 7.4028, 7.4023, 7.4032, 7.403, 7.4026, 7.4022, 7.4031, 7.4026, 7.4036, 7.4031, 7.4039, 7.4048, 7.4043, 7.4038, 7.4032, 7.4027, 7.4065, 7.4063, 7.406, 7.4056, 7.4054, 7.4051, 7.405, 7.4058, 7.4066, 7.4074, 7.407, 7.4066, 7.4067, 7.4064, 7.4061, 7.4074, 7.4071, 7.4066, 7.4063, 7.4059, 7.4056, 7.4052, 7.4103, 7.4099, 7.4094, 7.4091, 7.4089, 7.4084, 7.4081, 7.4086, 7.4081, 7.411, 7.4105, 7.4101, 7.411, 7.4106, 7.4102, 7.4097, 7.4106, 7.411, 7.4105, 7.41, 7.4083, 7.408, 7.4075, 7.407, 7.4066, 7.4075, 7.4083, 7.408, 7.4075, 7.407, 7.4065, 7.406, 7.4055, 7.405, 7.4072, 7.4069, 7.4065, 7.4073, 7.4068, 7.4067, 7.4063, 7.4059, 7.4054, 7.4063, 7.4058, 7.4065, 7.4087, 7.4083, 7.4078, 7.4088, 7.4085, 7.4095, 7.4092, 7.41, 7.4095, 7.409, 7.4104, 7.4113, 7.4108, 7.4117, 7.4112, 7.4108, 7.4103, 7.4098, 7.4094, 7.4092, 7.4183, 7.4178, 7.4178, 7.4161, 7.4156, 7.4151, 7.4187, 7.4182, 7.4191, 7.4174, 7.4171, 7.418, 7.4175, 7.4171, 7.418, 7.4175, 7.4183, 7.4192, 7.4202, 7.4211, 7.4206, 7.419, 7.4191, 7.4186, 7.4183, 7.4179, 7.4174, 7.4169, 7.4167, 7.4164, 7.416, 7.4156, 7.4152, 7.4149, 7.4138, 7.4134, 7.4133, 7.415, 7.4147, 7.4156, 7.4151, 7.4148, 7.4143, 7.4138, 7.4134, 7.4129, 7.4126, 7.4123, 7.4138, 7.4133, 7.4141, 7.4137, 7.4134, 7.4129, 7.4124, 7.4121, 7.4118, 7.4113, 7.4121, 7.4116, 7.4112, 7.4109, 7.4104, 7.41, 7.4096, 7.4091, 7.4086, 7.4082, 7.409, 7.4085, 7.4086, 7.4083, 7.4078, 7.4073, 7.4068, 7.4076, 7.4073, 7.4081, 7.4068, 7.4067, 7.4064, 7.4077, 7.4072, 7.4067, 7.4062, 7.4069, 7.4064, 7.4074, 7.4075, 7.406, 7.4056, 7.4053, 7.4049, 7.4046, 7.4045, 7.404, 7.4035, 7.4031, 7.4026, 7.4034, 7.403, 7.4014, 7.4009, 7.4007, 7.4002, 7.3997, 7.4034, 7.4029, 7.404, 7.4052, 7.4047, 7.4042, 7.405, 7.4098, 7.4105, 7.41, 7.4108, 7.4103, 7.41, 7.4095, 7.4104, 7.41, 7.4095, 7.4103, 7.4101, 7.4096, 7.4105, 7.4103, 7.4098, 7.4096, 7.4091, 7.4088, 7.4089, 7.4086, 7.4084, 7.4083, 7.4107, 7.4115, 7.4113, 7.4098, 7.4099, 7.4109, 7.4104, 7.4113, 7.4109, 7.4104, 7.4113, 7.4108, 7.4104, 7.4102, 7.4098, 7.4093, 7.4089, 7.4085, 7.4081, 7.4077, 7.4074, 7.4082, 7.4077, 7.4073, 7.4068, 7.4066, 7.4062, 7.4059, 7.4069, 7.4064, 7.4075, 7.4072, 7.4067, 7.4072, 7.4069, 7.4066, 7.4063, 7.406, 7.4065, 7.4061, 7.406, 7.4056, 7.4053, 7.4051, 7.4035, 7.4032, 7.4042, 7.4041, 7.405, 7.4059, 7.4056, 7.4055, 7.4053, 7.4064, 7.4063, 7.407, 7.4066, 7.4064, 7.4059, 7.406, 7.4068, 7.4066, 7.4067, 7.4062, 7.4057, 7.4054, 7.4049, 7.4045, 7.4043, 7.404, 7.4052, 7.4047, 7.4043, 7.4066, 7.4077, 7.4089, 7.4084, 7.4091, 7.4086, 7.4083, 7.408, 7.4076, 7.4073, 7.4068, 7.4063, 7.4065, 7.4061, 7.4058, 7.4055, 7.4068, 7.414, 7.4137, 7.4134, 7.4131, 7.4129, 7.4126, 7.4134, 7.413, 7.4125, 7.4133, 7.4129, 7.4127, 7.4122, 7.4128, 7.4123, 7.4118, 7.4115, 7.4111, 7.4119, 7.4117, 7.4112, 7.4107, 7.4102, 7.4097, 7.4095, 7.4103, 7.411, 7.4108, 7.4105, 7.4103, 7.4098, 7.4106, 7.4103, 7.4099, 7.4085, 7.408, 7.4082, 7.408, 7.4075, 7.4074, 7.4069, 7.4077, 7.4072, 7.408, 7.4088, 7.4086, 7.4082, 7.4078, 7.4074, 7.4083, 7.408, 7.4066, 7.4062, 7.4095, 7.409, 7.4102, 7.4097, 7.4096, 7.4106, 7.4147, 7.4168, 7.4165, 7.4163, 7.4171, 7.4216, 7.4211, 7.4208, 7.4206, 7.4204, 7.42, 7.4196, 7.4193, 7.4202, 7.4199, 7.4194, 7.4189, 7.4187, 7.4219, 7.4216, 7.4225, 7.4224, 7.4232, 7.423, 7.4238, 7.4236, 7.4242, 7.4237, 7.4253, 7.4279, 7.4274, 7.4272, 7.4267, 7.4262, 7.4246, 7.4248, 7.4243, 7.4239, 7.4247, 7.4244, 7.424, 7.4248, 7.4245, 7.424, 7.4251, 7.4248, 7.4269, 7.4267, 7.4275, 7.427, 7.4278, 7.4286, 7.4281, 7.4289, 7.4284, 7.428, 7.4277, 7.4272, 7.4267, 7.4265, 7.4273, 7.427, 7.4266, 7.4262, 7.4258, 7.4253, 7.425, 7.4292, 7.4287, 7.4285, 7.4282, 7.4277, 7.4272, 7.428, 7.4276, 7.4283, 7.4278, 7.4277, 7.4272, 7.4304, 7.43, 7.4297, 7.4295, 7.4291, 7.4299, 7.4296, 7.4299, 7.4295, 7.4303, 7.4311, 7.4308, 7.4308, 7.4308, 7.4303, 7.4311, 7.4307, 7.4315, 7.431, 7.4305, 7.4313, 7.431, 7.4296, 7.4303, 7.431, 7.4306, 7.4304, 7.43, 7.4296, 7.4293, 7.4289, 7.4285, 7.4281, 7.4277, 7.4303, 7.4312, 7.4308, 7.4304, 7.43, 7.43, 7.4296, 7.4304, 7.4334, 7.4329, 7.4324, 7.432, 7.4317, 7.4313, 7.4322, 7.4329, 7.4326, 7.4334, 7.4329, 7.4338, 7.4335, 7.433, 7.4337, 7.4332, 7.4339, 7.4337, 7.4332, 7.434, 7.4347, 7.4344, 7.434, 7.4336, 7.4331, 7.433, 7.4327, 7.4323, 7.4322, 7.4317, 7.4316, 7.4312, 7.4297, 7.4294, 7.4289, 7.4287, 7.4283, 7.428, 7.4276, 7.4276, 7.4272, 7.4269, 7.4264, 7.4272, 7.4274, 7.4272, 7.4257, 7.4253, 7.425, 7.4259, 7.4255, 7.4252, 7.4249, 7.4244, 7.423, 7.4245, 7.4242, 7.4238, 7.4246, 7.4232, 7.424, 7.4235, 7.4232, 7.4229, 7.4226, 7.4226, 7.4224, 7.422, 7.4217, 7.4213, 7.4208, 7.4217, 7.4214, 7.4209, 7.4206, 7.4206, 7.4203, 7.4199, 7.4196, 7.4191, 7.422, 7.4218, 7.4213, 7.4211, 7.4207, 7.4202, 7.4198, 7.4256, 7.4265, 7.4261, 7.4269, 7.4267, 7.4263, 7.426, 7.4257, 7.4253, 7.4261, 7.4257, 7.4253, 7.4249, 7.4245, 7.4243, 7.4243, 7.4239, 7.4235, 7.423, 7.4229, 7.4224, 7.4221, 7.4217, 7.4213, 7.4221, 7.4229, 7.4226, 7.4224, 7.422, 7.4216, 7.4212, 7.4208, 7.4236, 7.4232, 7.4228, 7.4236, 7.4237, 7.4233, 7.4228, 7.4224, 7.4221, 7.4227, 7.4223, 7.4225, 7.4222, 7.4219, 7.4216, 7.4212, 7.4219, 7.4226, 7.4221, 7.4229, 7.4236, 7.4231, 7.4238, 7.4235, 7.4242, 7.4238, 7.4236, 7.4244, 7.424, 7.4238, 7.4236, 7.4245, 7.4244, 7.4243, 7.4239, 7.4239, 7.4235, 7.4237, 7.4234, 7.4264, 7.4261, 7.4257, 7.4253, 7.4249, 7.4246, 7.4242, 7.425, 7.4248, 7.4257, 7.4266, 7.4251, 7.4249, 7.4245, 7.4243, 7.4251, 7.4258, 7.4253, 7.4258, 7.4267, 7.4252, 7.4248, 7.4245, 7.4241, 7.4237, 7.4234, 7.4242, 7.4238, 7.4234, 7.423, 7.4226, 7.4224, 7.422, 7.4216, 7.4213, 7.422, 7.4216, 7.4224, 7.4223, 7.422, 7.4218, 7.4214, 7.4211, 7.4219, 7.4228, 7.4225, 7.4222, 7.4223, 7.4211, 7.4218, 7.4214, 7.4211, 7.421, 7.4229, 7.4228, 7.4214, 7.4212, 7.4219, 7.4217, 7.4212, 7.4209, 7.4204, 7.4225, 7.4222, 7.4219, 7.4217, 7.4225, 7.4234, 7.4244, 7.425, 7.4259, 7.4256, 7.4254, 7.425, 7.4247, 7.4245, 7.4241, 7.425, 7.4246, 7.4243, 7.4239, 7.4235, 7.4242, 7.425, 7.4248, 7.4244, 7.424, 7.4237, 7.4233, 7.423, 7.4226, 7.4223, 7.4209, 7.4208, 7.4206, 7.4203, 7.4211, 7.4208, 7.4204, 7.4201, 7.4197, 7.4194, 7.4194, 7.419, 7.4186, 7.4182, 7.4178, 7.4174, 7.417, 7.4166, 7.4162, 7.4169, 7.4165, 7.4178, 7.4174, 7.4169, 7.4165, 7.4178, 7.4176, 7.4173, 7.4169, 7.4176, 7.4174, 7.4171, 7.4167, 7.4153, 7.4161, 7.4192, 7.4188, 7.4186, 7.4182, 7.4179, 7.4175, 7.4182, 7.4178, 7.4185, 7.4193, 7.4189, 7.4186, 7.4182, 7.4184, 7.418, 7.4177, 7.4173, 7.4187, 7.4183, 7.4179, 7.4186, 7.4182, 7.4178, 7.4175, 7.4171, 7.4172, 7.4167, 7.4164, 7.4162, 7.4158, 7.4157, 7.4153, 7.4151, 7.4148, 7.4134, 7.4141, 7.4137, 7.4134, 7.4145, 7.4141, 7.415, 7.4146, 7.4142, 7.4147, 7.4145, 7.414, 7.4136, 7.4132, 7.413, 7.4138, 7.4135, 7.4151, 7.4147, 7.4154, 7.4161, 7.4157, 7.4153, 7.415, 7.4146, 7.4155, 7.4161, 7.4161, 7.4159, 7.4159, 7.4159, 7.4155, 7.4153, 7.4149, 7.4146, 7.4142, 7.4139, 7.4193, 7.419, 7.4185, 7.4187, 7.4184, 7.4184, 7.4192, 7.4199, 7.4206, 7.4213, 7.4211, 7.4209, 7.4207, 7.4214, 7.421, 7.4206, 7.4202, 7.4198, 7.4207, 7.4225, 7.4234, 7.4287, 7.4283, 7.4291, 7.4299, 7.4297, 7.4293, 7.429, 7.4297, 7.4293, 7.4289, 7.4296, 7.4292, 7.4299, 7.4295, 7.4291, 7.4299, 7.4296, 7.4294, 7.429, 7.4286, 7.4282, 7.428, 7.4276, 7.4272, 7.4269, 7.4265, 7.4261, 7.4257, 7.4255, 7.4262, 7.4257, 7.4253, 7.4249, 7.4276, 7.4272, 7.427, 7.4268, 7.4264, 7.4262, 7.4272, 7.4279, 7.4275, 7.4281, 7.4289, 7.4285, 7.428, 7.4277, 7.4284, 7.428, 7.4287, 7.4283, 7.4281, 7.4278, 7.4285, 7.4282, 7.428, 7.4287, 7.4283, 7.4283, 7.4279, 7.4275, 7.4271, 7.4267, 7.4275, 7.4282, 7.4285, 7.4282, 7.428, 7.4276, 7.4272, 7.427, 7.4269, 7.4276, 7.4273, 7.4269, 7.4265, 7.4263, 7.4259, 7.4268, 7.4266, 7.4261, 7.4259, 7.4255, 7.4253, 7.426, 7.4256, 7.4253, 7.4249, 7.4245, 7.4242, 7.4238, 7.4234, 7.423, 7.4227, 7.4224, 7.422, 7.4216, 7.4213, 7.4237, 7.4235, 7.4232, 7.4228, 7.4224, 7.4231, 7.4229, 7.4225, 7.4226, 7.4223, 7.4219, 7.4215, 7.4217, 7.4213, 7.422, 7.4216, 7.4223, 7.4219, 7.4215, 7.4222, 7.4227, 7.4223, 7.422, 7.4216, 7.4202, 7.4199, 7.4206, 7.4202, 7.4199, 7.4196, 7.4214, 7.421, 7.4206, 7.4204, 7.4203, 7.4199, 7.4195, 7.4191, 7.4188, 7.4186, 7.4194, 7.419, 7.4187, 7.4183, 7.418, 7.4187, 7.4193, 7.4195, 7.4191, 7.4191, 7.419, 7.4186, 7.4172, 7.4169, 7.4167, 7.4164, 7.416, 7.4156, 7.4183, 7.419, 7.4186, 7.4182, 7.4195, 7.4193, 7.4189, 7.4196, 7.4214, 7.4212, 7.421, 7.4229, 7.4237, 7.4236, 7.4232, 7.4229, 7.4227, 7.4224, 7.4231, 7.4239, 7.4235, 7.4243, 7.423, 7.4216, 7.4213, 7.421, 7.4208, 7.4225, 7.4225, 7.4211, 7.4217, 7.4213, 7.4211, 7.4208, 7.4205, 7.4195, 7.4192, 7.4201, 7.4208, 7.4204, 7.42, 7.4208, 7.4204, 7.4203, 7.4199, 7.4195, 7.4191, 7.4187, 7.4174, 7.4172, 7.417, 7.4177, 7.4173, 7.4171, 7.4178, 7.4185, 7.4181, 7.4177, 7.4174, 7.4171, 7.4169, 7.4173, 7.4169, 7.4176, 7.4174, 7.4171, 7.4167, 7.4167, 7.4167, 7.4163, 7.4159, 7.4156, 7.4152, 7.4148, 7.4155, 7.4153, 7.4149, 7.4166, 7.4163, 7.4161, 7.4158, 7.4165, 7.4162, 7.4163, 7.416, 7.4173, 7.4222, 7.4218, 7.4214, 7.422, 7.4228, 7.4226, 7.4222, 7.424, 7.4237, 7.4235, 7.4243, 7.425, 7.4246, 7.4242, 7.4239, 7.4256, 7.4252, 7.4239, 7.4235, 7.4231, 7.4229, 7.4225, 7.4221, 7.4227, 7.4223, 7.422, 7.4216, 7.4212, 7.4199, 7.4195, 7.4203, 7.4199, 7.4197, 7.4203, 7.4201, 7.4197, 7.4204, 7.421, 7.4207, 7.4203, 7.4199, 7.4195, 7.4191, 7.4203, 7.4199, 7.4195, 7.4202, 7.4198, 7.4207, 7.4203, 7.42, 7.4198, 7.4201, 7.4208, 7.4205, 7.4202, 7.4189, 7.4196, 7.4193, 7.4198, 7.4195, 7.4196, 7.4192, 7.4188, 7.4184, 7.418, 7.4176, 7.4183, 7.4189, 7.4185, 7.4181, 7.4177, 7.4183, 7.418, 7.4176, 7.4173, 7.4171, 7.4167, 7.4165, 7.4172, 7.4168, 7.4165, 7.4228, 7.4224, 7.4231, 7.4227, 7.4223, 7.422, 7.4216, 7.4214, 7.421, 7.4207, 7.4208, 7.4214, 7.4221, 7.4219, 7.4225, 7.4222, 7.4218, 7.4216, 7.4212, 7.4228, 7.4225, 7.4222, 7.4228, 7.4224, 7.422, 7.4231, 7.4227, 7.4234, 7.424, 7.4247, 7.4254, 7.4261, 7.4261, 7.4258, 7.4265, 7.4263, 7.4259, 7.4266, 7.4273, 7.4269, 7.4265, 7.4263, 7.426, 7.4256, 7.4253, 7.4243, 7.4241, 7.424, 7.4237, 7.4235, 7.4231, 7.4233, 7.4229, 7.4236, 7.4242, 7.4249, 7.4245, 7.4241, 7.4237, 7.4233, 7.4229, 7.4235, 7.4231, 7.4229, 7.4247, 7.4251, 7.4258, 7.4258, 7.4271, 7.4267, 7.4263, 7.431, 7.4306, 7.4302, 7.4298, 7.4295, 7.4282, 7.4278, 7.4276, 7.4283, 7.4279, 7.4285, 7.4281, 7.4279, 7.4275, 7.4271, 7.4284, 7.4319, 7.4326, 7.4322, 7.4318, 7.4314, 7.431, 7.4306, 7.4302, 7.43, 7.4308, 7.4304, 7.4301, 7.4297, 7.4293, 7.4289, 7.4291, 7.4317, 7.4314, 7.431, 7.4307, 7.4303, 7.43, 7.4287, 7.4294, 7.429, 7.4296, 7.4292, 7.4299, 7.4296, 7.4292, 7.4296, 7.4292, 7.4288, 7.4284, 7.428, 7.4287, 7.4294, 7.429, 7.4286, 7.4282, 7.4278, 7.4275, 7.4271, 7.4273, 7.4272, 7.4279, 7.4276, 7.4275, 7.4282, 7.4289, 7.4285, 7.4291, 7.429, 7.4288, 7.4285, 7.4292, 7.4299, 7.4295, 7.4291, 7.4298, 7.4296, 7.4295, 7.4293, 7.4289, 7.4296, 7.4294, 7.429, 7.429, 7.4278, 7.4285, 7.4281, 7.4268, 7.4268, 7.4278, 7.4265, 7.4261, 7.4268, 7.4266, 7.4263, 7.4259, 7.4255, 7.4252, 7.4248, 7.4245, 7.4241, 7.4238, 7.4244, 7.4248, 7.4254, 7.425, 7.4248, 7.4254, 7.4251, 7.4248, 7.4255, 7.4264, 7.4266, 7.4263, 7.4261, 7.4289, 7.4285, 7.4282, 7.4286, 7.4292, 7.4289, 7.4285, 7.4291, 7.4287, 7.4283, 7.4279, 7.4275, 7.4273, 7.4286, 7.4282, 7.428, 7.4277, 7.4274, 7.4274, 7.428, 7.4268, 7.4265, 7.4262, 7.427, 7.4266, 7.4262, 7.4268, 7.4266, 7.4272, 7.4268, 7.4264, 7.4271, 7.4267, 7.4263, 7.4262, 7.4259, 7.4257, 7.4255, 7.4252, 7.4249, 7.4275, 7.4282, 7.428, 7.4287, 7.4284, 7.428, 7.4276, 7.4273, 7.428, 7.4278, 7.4274, 7.4271, 7.4278, 7.4276, 7.4282, 7.4278, 7.4274, 7.4282, 7.4278, 7.4307, 7.4314, 7.431, 7.4316, 7.4312, 7.4309, 7.4334, 7.434, 7.4347, 7.4354, 7.4351, 7.4358, 7.4354, 7.4352, 7.4358, 7.4364, 7.436, 7.4358, 7.4369, 7.4375, 7.4371, 7.4377, 7.4374, 7.4371, 7.4377, 7.4374, 7.437, 7.4367, 7.4363, 7.4369, 7.4375, 7.4381, 7.438, 7.4386, 7.4382, 7.4388, 7.4384, 7.439, 7.4396, 7.4397, 7.4394, 7.4393, 7.4389, 7.4387, 7.4384, 7.4383, 7.4389, 7.4395, 7.4392, 7.4389, 7.4385, 7.4383, 7.438, 7.4378, 7.4377, 7.4374, 7.437, 7.4367, 7.4365, 7.4371, 7.4368, 7.4376, 7.4382, 7.4379, 7.4377, 7.4375, 7.4382, 7.4388, 7.4386, 7.4382, 7.4379, 7.4377, 7.4374, 7.437, 7.4366, 7.4362, 7.4368, 7.4366, 7.4405, 7.4411, 7.4418, 7.4414, 7.441, 7.4409, 7.4407, 7.441, 7.4407, 7.4404, 7.44, 7.4397, 7.4393, 7.4389, 7.4385, 7.4392, 7.4388, 7.4384, 7.442, 7.4417, 7.4413, 7.441, 7.4398, 7.4397, 7.4396, 7.4392, 7.4399, 7.4398, 7.4405, 7.4401, 7.4399, 7.4396, 7.4393, 7.4389, 7.4396, 7.4403, 7.4401, 7.4426, 7.4422, 7.4419, 7.4416, 7.4413, 7.4419, 7.4415, 7.4414, 7.4411, 7.4399, 7.4395, 7.4392, 7.4392, 7.439, 7.4396, 7.4392, 7.4398, 7.4395, 7.4393, 7.439, 7.4386, 7.4383, 7.4381, 7.4379, 7.4376, 7.4375, 7.4372, 7.4368, 7.4364, 7.436, 7.4358, 7.4356, 7.4357, 7.4367, 7.4363, 7.436, 7.4356, 7.4362, 7.4358, 7.4346, 7.4358, 7.4354, 7.435, 7.4348, 7.4345, 7.4342, 7.4348, 7.4354, 7.4351, 7.435, 7.4346, 7.4343, 7.4341, 7.4337, 7.4333, 7.4331, 7.4354, 7.4351, 7.4347, 7.4344, 7.4341, 7.4339, 7.4345, 7.4342, 7.4338, 7.4334, 7.4341, 7.4337, 7.4343, 7.4339, 7.4336, 7.4337, 7.4335, 7.4341, 7.4337, 7.434, 7.4338, 7.4346, 7.4344, 7.4341, 7.434, 7.4347, 7.4354, 7.4351, 7.4347, 7.4344, 7.4341, 7.4347, 7.4346, 7.4343, 7.435, 7.435, 7.4349, 7.4345, 7.4351, 7.4349, 7.4347, 7.4343, 7.4341, 7.4338, 7.4335, 7.4332, 7.4329, 7.4328, 7.4332, 7.4339, 7.4338, 7.4345, 7.4343, 7.4341, 7.4339, 7.4336, 7.4335, 7.4341, 7.4338, 7.4336, 7.4335, 7.4342, 7.4339, 7.4335, 7.4333, 7.433, 7.4327, 7.4323, 7.433, 7.4336, 7.4342, 7.434, 7.4338, 7.4335, 7.4333, 7.4339, 7.4346, 7.4352, 7.4348, 7.4346, 7.4351, 7.4357, 7.4363, 7.437, 7.4367, 7.4363, 7.4362, 7.4374, 7.438, 7.4378, 7.4366, 7.4364, 7.4361, 7.4359, 7.4355, 7.4352, 7.4349, 7.4355, 7.4351, 7.4357, 7.4363, 7.4369, 7.4375, 7.4372, 7.4369, 7.4365, 7.4361, 7.4367, 7.4365, 7.4363, 7.4383, 7.4379, 7.4375, 7.4373, 7.4379, 7.4376, 7.4372, 7.4369, 7.4367, 7.4374, 7.4362, 7.4369, 7.4366, 7.4365, 7.4362, 7.4369, 7.4366, 7.4354, 7.436, 7.4357, 7.4362, 7.4368, 7.4375, 7.4373, 7.4371, 7.4367, 7.4363, 7.4359, 7.4355, 7.4388, 7.4386, 7.4384, 7.439, 7.4386, 7.4401, 7.4408, 7.4414, 7.442, 7.4418, 7.4419, 7.4415, 7.4411, 7.44, 7.4398, 7.4399, 7.4395, 7.4392, 7.4398, 7.4394, 7.4385, 7.4381, 7.4377, 7.4374, 7.438, 7.4387, 7.4394, 7.439, 7.4387, 7.4385, 7.4383, 7.438, 7.4369, 7.4375, 7.4372, 7.4368, 7.4365, 7.4362, 7.4368, 7.4365, 7.4364, 7.437, 7.4376, 7.4373, 7.437, 7.4368, 7.4364, 7.4361, 7.4358, 7.4386, 7.4383, 7.4379, 7.4385, 7.4381, 7.4377, 7.4383, 7.4383, 7.4379, 7.4385, 7.4382, 7.4378, 7.4375, 7.4378, 7.4367, 7.4364, 7.4361, 7.4359, 7.4365, 7.4371, 7.4368, 7.4365, 7.4363, 7.4361, 7.4358, 7.4354, 7.436, 7.4357, 7.4354, 7.4352, 7.4349, 7.4357, 7.4354, 7.4351, 7.4348, 7.4346, 7.4344, 7.435, 7.4346, 7.4345, 7.4352, 7.4349, 7.4347, 7.4363, 7.4362, 7.4412, 7.4418, 7.4416, 7.4413, 7.4419, 7.4425, 7.4431, 7.4427, 7.4443, 7.4439, 7.4428, 7.4425, 7.4431, 7.4436, 7.4432, 7.4429, 7.4425, 7.4422, 7.4418, 7.4424, 7.442, 7.4423, 7.4419, 7.4416, 7.4413, 7.4409, 7.4398, 7.4395, 7.4391, 7.4389, 7.4395, 7.4391, 7.439, 7.4386, 7.4383, 7.4381, 7.4379, 7.4376, 7.4372, 7.4369, 7.4375, 7.4381, 7.4387, 7.4403, 7.4418, 7.4417, 7.4414, 7.4411, 7.4408, 7.4406, 7.4403, 7.44, 7.4396, 7.4405, 7.4403, 7.44, 7.4398, 7.4395, 7.4392, 7.4398, 7.4395, 7.4393, 7.439, 7.4387, 7.4394, 7.439, 7.4387, 7.4393, 7.4399, 7.4405, 7.4401, 7.4399, 7.4395, 7.4391, 7.4393, 7.4407, 7.4403, 7.4402, 7.44, 7.4397, 7.4396, 7.4401, 7.44, 7.4406, 7.4402, 7.4399, 7.4399, 7.4409, 7.4405, 7.4401, 7.4399, 7.4395, 7.4426, 7.4422, 7.4424, 7.4423, 7.4429, 7.4426, 7.4431, 7.4435, 7.4433, 7.4429, 7.4426, 7.4422, 7.4418, 7.4415, 7.4412, 7.441, 7.4415, 7.4412, 7.441, 7.4409, 7.4408, 7.4414, 7.442, 7.4416, 7.4413, 7.4409, 7.4407, 7.4404, 7.4401, 7.4398, 7.4395, 7.4392, 7.4407, 7.4406, 7.4412, 7.4418, 7.4416, 7.4414, 7.4411, 7.4416, 7.4413, 7.441, 7.4407, 7.4404, 7.4401, 7.44, 7.4397, 7.4394, 7.44, 7.4397, 7.4397, 7.4405, 7.4402, 7.4399, 7.4405, 7.4402, 7.44, 7.4406, 7.4403, 7.44, 7.4405, 7.4402, 7.4408, 7.4414, 7.4413, 7.441, 7.4408, 7.4414, 7.4411, 7.4416, 7.4412, 7.4409, 7.4406, 7.4404, 7.441, 7.441, 7.4416, 7.4452, 7.4448, 7.4454, 7.4452, 7.4449, 7.4446, 7.4465, 7.4462, 7.4459, 7.4465, 7.4471, 7.4468, 7.4465, 7.4462, 7.446, 7.4457, 7.4463, 7.447, 7.4474, 7.4473, 7.447, 7.4466, 7.4462, 7.4459, 7.4457, 7.4453, 7.4453, 7.445, 7.4448, 7.4454, 7.4451, 7.4448, 7.4444, 7.4441, 7.4439, 7.4445, 7.4442, 7.4441, 7.4438, 7.4444, 7.4442, 7.444, 7.4437, 7.4444, 7.4443, 7.4441, 7.4457, 7.4457, 7.4463, 7.4469, 7.4471, 7.4471, 7.447, 7.447, 7.4469, 7.4468, 7.4465, 7.4462, 7.4468, 7.4467, 7.4464, 7.4463, 7.4469, 7.4476, 7.4473, 7.4471, 7.4469, 7.4467, 7.4466, 7.4465, 7.4464, 7.4461, 7.4461, 7.4468, 7.4468, 7.4468, 7.4475, 7.4475, 7.4481, 7.4478, 7.4478, 7.4475, 7.4475, 7.4476, 7.4476, 7.4473, 7.447, 7.4467, 7.4466, 7.4463, 7.4461, 7.4462, 7.4478, 7.4477, 7.4474, 7.4471, 7.4478, 7.4476, 7.4483, 7.4472, 7.4472, 7.4469, 7.4475, 7.4472, 7.4478, 7.4475], '192.168.122.112': [5.4374, 5.6017, 5.5869, 5.5019, 5.5944, 5.6154, 5.7422, 5.7489, 6.3936, 6.3733, 6.3329, 6.3161, 6.3314, 6.2822, 6.2252, 6.2252, 6.237, 6.2496, 6.4751, 6.4505, 6.6715, 6.6209, 6.5924, 6.5475, 6.7619, 6.761, 6.717, 6.8626, 6.83, 6.7829, 6.7566, 6.891, 6.8432, 6.8105, 6.7956, 6.9084, 6.8882, 6.8519, 6.8153, 6.7788, 7.1727, 7.4555, 7.4147, 7.3723, 7.3271, 7.4084, 7.482, 7.4378, 7.3971, 7.3547, 7.3158, 7.2956, 7.2586, 7.2379, 7.3075, 7.2785, 7.3428, 7.4198, 7.4766, 7.4463, 7.4149, 7.3906, 7.3612, 7.4171, 7.3868, 7.3541, 7.3246, 7.2286, 7.2002, 7.1848, 7.169, 7.2183, 7.1931, 7.1804, 7.0927, 7.0706, 7.3733, 7.3644, 7.3458, 7.3866, 7.3607, 7.3378, 7.3149, 7.2914, 7.3396, 7.3199, 7.2985, 7.3379, 7.3217, 7.3615, 7.3411, 7.3315, 7.314, 7.2936, 7.2283, 7.2083, 7.189, 7.1706, 7.157, 7.1395, 7.1212, 7.1602, 7.1437, 7.1314, 7.1183, 7.1527, 7.1882, 7.1784, 7.1622, 7.1491, 7.1806, 7.1693, 7.1549, 7.1424, 7.1309, 7.1277, 7.1132, 7.0982, 7.0849, 7.0761, 7.0657, 7.0588, 7.0495, 7.0424, 6.9899, 6.9785, 6.9694, 6.9579, 6.9475, 6.9425, 6.975, 6.99, 6.9825, 6.9699, 7.0021, 6.991, 6.9816, 6.9705, 6.9618, 6.9886, 6.9799, 6.9684, 6.9654, 6.9562, 6.984, 6.9782, 6.9758, 6.9673, 6.9563, 6.9573, 6.9515, 6.9547, 6.9463, 7.0111, 7.033, 7.0239, 7.0819, 7.0705, 7.0593, 7.0824, 7.0745, 7.0636, 7.0535, 7.0468, 7.0378, 7.027, 7.0494, 7.0728, 7.0636, 7.0874, 7.0801, 7.1035, 7.1255, 7.1154, 7.1052, 7.1266, 7.1209, 7.145, 7.1356, 7.1286, 7.1195, 7.1103, 7.1014, 7.0958, 7.0859, 7.0796, 7.073, 7.0661, 7.0892, 7.0822, 7.1041, 7.0981, 7.0966, 7.0872, 7.0833, 7.1043, 7.2041, 7.1965, 7.1868, 7.1785, 7.1707, 7.1608, 7.1563, 7.1816, 7.1744, 7.1686, 7.1605, 7.1536, 7.1465, 7.141, 7.1583, 7.176, 7.1719, 7.166, 7.1603, 7.1515, 7.1434, 7.1362, 7.1428, 7.1597, 7.2515, 7.3986, 7.3893, 7.3832, 7.4478, 7.4632, 7.454, 7.4464, 7.4377, 7.4314, 7.4262, 7.4444, 7.4359, 7.4273, 7.4189, 7.4139, 7.428, 7.4192, 7.4119, 7.4288, 7.4232, 7.4175, 7.41, 7.4026, 7.3968, 7.3908, 7.3842, 7.3975, 7.4097, 7.4034, 7.4576, 7.4716, 7.4857, 7.4996, 7.5967, 7.6107, 7.6022, 7.6155, 7.6092, 7.6008, 7.613, 7.6059, 7.5992, 7.5723, 7.5644, 7.5575, 7.5722, 7.5655, 7.5798, 7.5726, 7.5847, 7.5985, 7.6123, 7.6072, 7.6013, 7.5929, 7.5846, 7.5784, 7.5703, 7.5626, 7.5742, 7.5855, 7.5798, 7.5724, 7.6023, 7.5995, 7.5935, 7.5879, 7.5995, 7.5923, 7.5849, 7.5962, 7.5912, 7.5848, 7.577, 7.5714, 7.5654, 7.5836, 7.5774, 7.5703, 7.5656, 7.5604, 7.5531, 7.5492, 7.544, 7.5544, 7.5649, 7.5593, 7.5692, 7.5787, 7.5718, 7.565, 7.5582, 7.5528, 7.5457, 7.5388, 7.5521, 7.5335, 7.5441, 7.5373, 7.5348, 7.5298, 7.5243, 7.5186, 7.4971, 7.4904, 7.484, 7.4935, 7.4873, 7.4811, 7.4759, 7.471, 7.4816, 7.4756, 7.47, 7.4664, 7.4609, 7.4563, 7.4512, 7.4447, 7.4403, 7.4359, 7.4302, 7.4271, 7.4212, 7.4307, 7.4256, 7.4212, 7.4175, 7.4136, 7.4078, 7.403, 7.3989, 7.4786, 7.4882, 7.4829, 7.4926, 7.5129, 7.5066, 7.5004, 7.494, 7.4893, 7.4847, 7.4804, 7.4804, 7.4892, 7.498, 7.4921, 7.4864, 7.4804, 7.4802, 7.4896, 7.4983, 7.4932, 7.4898, 7.4989, 7.4934, 7.492, 7.4881, 7.4855, 7.5247, 7.5206, 7.5028, 7.5119, 7.5242, 7.52, 7.5155, 7.5111, 7.493, 7.4887, 7.4844, 7.48, 7.4767, 7.4715, 7.468, 7.4637, 7.4471, 7.4646, 7.4726, 7.4822, 7.4768, 7.4714, 7.48, 7.4745, 7.4707, 7.4669, 7.4748, 7.4718, 7.4678, 7.4627, 7.4579, 7.4526, 7.4483, 7.4431, 7.4519, 7.4469, 7.4437, 7.452, 7.4529, 7.4482, 7.4446, 7.4425, 7.4465, 7.4427, 7.4386, 7.4465, 7.4421, 7.4392, 7.4345, 7.4302, 7.4267, 7.4239, 7.4212, 7.4169, 7.4259, 7.4345, 7.4391, 7.4475, 7.4426, 7.4281, 7.4253, 7.4224, 7.4179, 7.4376, 7.4331, 7.4407, 7.4365, 7.4734, 7.4689, 7.4655, 7.4634, 7.4597, 7.4558, 7.4626, 7.4592, 7.4473, 7.4426, 7.4389, 7.4358, 7.4316, 7.427, 7.4223, 7.4189, 7.4258, 7.4212, 7.4396, 7.436, 7.4541, 7.4529, 7.4978, 7.4986, 7.4949, 7.4908, 7.4874, 7.4838, 7.4806, 7.4667, 7.4739, 7.4707, 7.4719, 7.4794, 7.4755, 7.4724, 7.469, 7.4574, 7.4547, 7.451, 7.4467, 7.4423, 7.4487, 7.4445, 7.4424, 7.4412, 7.4378, 7.4338, 7.4295, 7.4255, 7.4219, 7.4342, 7.4412, 7.4642, 7.4731, 7.4794, 7.4755, 7.4712, 7.4679, 7.4748, 7.4879, 7.4843, 7.4808, 7.4765, 7.4737, 7.4701, 7.4676, 7.4738, 7.4708, 7.4668, 7.4744, 7.4708, 7.4715, 7.4684, 7.4645, 7.4609, 7.4676, 7.4685, 7.4758, 7.473, 7.4703, 7.483, 7.4878, 7.4949, 7.493, 7.4897, 7.4857, 7.4834, 7.4796, 7.4672, 7.4832, 7.4791, 7.4757, 7.4839, 7.4825, 7.4785, 7.4761, 7.4728, 7.4797, 7.4764, 7.473, 7.4693, 7.4654, 7.4715, 7.4683, 7.4643, 7.463, 7.4592, 7.4557, 7.461, 7.4573, 7.4547, 7.463, 7.4595, 7.4576, 7.454, 7.4503, 7.4558, 7.4531, 7.4502, 7.4466, 7.4464, 7.4429, 7.4399, 7.446, 7.4521, 7.4483, 7.4537, 7.4506, 7.4473, 7.4435, 7.4406, 7.4291, 7.4352, 7.441, 7.4383, 7.4347, 7.4325, 7.4298, 7.4307, 7.437, 7.4335, 7.438, 7.4352, 7.4323, 7.4291, 7.4353, 7.4411, 7.4392, 7.4592, 7.4741, 7.4625, 7.4769, 7.4735, 7.4705, 7.4769, 7.4737, 7.4706, 7.5045, 7.5109, 7.5301, 7.5273, 7.5251, 7.5232, 7.5196, 7.51, 7.5169, 7.5138, 7.5109, 7.5085, 7.5067, 7.5037, 7.5004, 7.4983, 7.4962, 7.4932, 7.49, 7.4864, 7.4929, 7.4902, 7.5047, 7.5021, 7.5002, 7.4972, 7.4961, 7.4927, 7.498, 7.5036, 7.5007, 7.4974, 7.4957, 7.4928, 7.49, 7.4867, 7.4918, 7.5202, 7.5172, 7.5141, 7.5148, 7.5248, 7.5215, 7.5268, 7.5232, 7.5278, 7.5244, 7.5213, 7.5179, 7.5145, 7.5113, 7.516, 7.5127, 7.5342, 7.534, 7.54, 7.5378, 7.5345, 7.5322, 7.5311, 7.5287, 7.5288, 7.5261, 7.5336, 7.5312, 7.529, 7.5263, 7.5321, 7.5288, 7.5269, 7.5235, 7.5206, 7.5176, 7.5145, 7.5121, 7.5166, 7.5213, 7.5218, 7.5269, 7.5237, 7.5288, 7.5259, 7.523, 7.5202, 7.5172, 7.5217, 7.5186, 7.5231, 7.5259, 7.5307, 7.5279, 7.5262, 7.5233, 7.5201, 7.5184, 7.5155, 7.5125, 7.5098, 7.507, 7.5054, 7.5106, 7.5076, 7.5052, 7.5096, 7.4997, 7.4972, 7.4949, 7.4919, 7.4901, 7.4871, 7.4854, 7.4829, 7.4918, 7.4966, 7.4935, 7.4908, 7.4878, 7.4853, 7.4833, 7.4807, 7.478, 7.4754, 7.4733, 7.4703, 7.4673, 7.465, 7.4634, 7.4606, 7.4576, 7.4561, 7.4567, 7.4648, 7.4718, 7.4765, 7.4814, 7.4788, 7.4762, 7.4811, 7.4796, 7.4769, 7.4752, 7.4729, 7.5075, 7.5191, 7.5263, 7.5251, 7.5221, 7.5193, 7.5163, 7.5149, 7.5124, 7.5034, 7.5006, 7.4978, 7.495, 7.4928, 7.4899, 7.4869, 7.4845, 7.4893, 7.4937, 7.4946, 7.4917, 7.4964, 7.494, 7.4914, 7.4899, 7.487, 7.485, 7.4821, 7.4794, 7.4774, 7.4756, 7.4794, 7.4768, 7.4742, 7.4745, 7.4718, 7.469, 7.4667, 7.4641, 7.4624, 7.4601, 7.4643, 7.475, 7.4724, 7.4826, 7.4801, 7.4775, 7.475, 7.4737, 7.4783, 7.4756, 7.4801, 7.4776, 7.4755, 7.473, 7.4707, 7.4818, 7.4927, 7.5235, 7.5221, 7.5212, 7.5191, 7.5168, 7.5208, 7.5249, 7.5241, 7.5223, 7.5264, 7.5249, 7.5233, 7.5208, 7.5183, 7.516, 7.5137, 7.5115, 7.5087, 7.5068, 7.5045, 7.5026, 7.501, 7.4989, 7.4978, 7.4951, 7.4928, 7.4906, 7.4906, 7.4914, 7.4891, 7.4929, 7.4969, 7.5007, 7.5045, 7.5019, 7.4998, 7.4988, 7.4962, 7.4939, 7.4915, 7.4964, 7.4944, 7.4919, 7.4964, 7.4999, 7.4972, 7.4946, 7.4928, 7.4906, 7.4893, 7.4935, 7.4913, 7.4831, 7.4806, 7.4783, 7.4762, 7.4742, 7.4716, 7.469, 7.4672, 7.4649, 7.4631, 7.4606, 7.4603, 7.4589, 7.4567, 7.4625, 7.4602, 7.4578, 7.456, 7.4543, 7.4467, 7.4447, 7.4423, 7.4463, 7.4454, 7.4501, 7.4427, 7.4403, 7.4387, 7.4369, 7.4358, 7.4334, 7.4311, 7.4236, 7.4225, 7.4208, 7.4196, 7.4238, 7.4224, 7.4202, 7.418, 7.4157, 7.4134, 7.4174, 7.4154, 7.4136, 7.4117, 7.4106, 7.4087, 7.4076, 7.4052, 7.403, 7.4007, 7.3989, 7.3973, 7.4011, 7.3998, 7.3974, 7.4013, 7.3995, 7.3978, 7.3957, 7.3885, 7.3865, 7.3843, 7.383, 7.3807, 7.3791, 7.377, 7.3755, 7.3792, 7.378, 7.3761, 7.3777, 7.3757, 7.3736, 7.3747, 7.3781, 7.3769, 7.3748, 7.3726, 7.3707, 7.3697, 7.3676, 7.3658, 7.3638, 7.3772, 7.392, 7.39, 7.3934, 7.3913, 7.3955, 7.3935, 7.3931, 7.3871, 7.3909, 7.3888, 7.3868, 7.3847, 7.3838, 7.3818, 7.3799, 7.384, 7.3826, 7.3812, 7.3802, 7.39, 7.388, 7.3862, 7.384, 7.3822, 7.3805, 7.3795, 7.3773, 7.3754, 7.3905, 7.389, 7.3872, 7.3855, 7.3951, 7.396, 7.3906, 7.4011, 7.4104, 7.4114, 7.4096, 7.4089, 7.4074, 7.4117, 7.4153, 7.4133, 7.4079, 7.4149, 7.4186, 7.4171, 7.4217, 7.4203, 7.4244, 7.4278, 7.4257, 7.424, 7.4221, 7.42, 7.4189, 7.4171, 7.4339, 7.4319, 7.435, 7.4329, 7.4317, 7.4297, 7.4283, 7.4316, 7.4349, 7.4332, 7.4316, 7.4296, 7.4276, 7.4255, 7.4237, 7.422, 7.4211, 7.419, 7.417, 7.4153, 7.4138, 7.4119, 7.4153, 7.4133, 7.4114, 7.4096, 7.4079, 7.4111, 7.4094, 7.4032, 7.3964, 7.3952, 7.3933, 7.3912, 7.3895, 7.3881, 7.3865, 7.3898, 7.3931, 7.3917, 7.3897, 7.3879, 7.3859, 7.3894, 7.3875, 7.3861, 7.3797, 7.3779, 7.3814, 7.3795, 7.3776, 7.3756, 7.3742, 7.3795, 7.3777, 7.376, 7.379, 7.382, 7.38, 7.378, 7.376, 7.3747, 7.3729, 7.3667, 7.369, 7.3763, 7.3745, 7.3726, 7.3716, 7.3746, 7.3729, 7.3716, 7.3749, 7.373, 7.3713, 7.3693, 7.3674, 7.3657, 7.3642, 7.3585, 7.357, 7.3602, 7.3633, 7.362, 7.3607, 7.36, 7.3585, 7.3617, 7.3605, 7.3586, 7.3567, 7.3562, 7.3543, 7.3525, 7.3507, 7.3498, 7.348, 7.3462, 7.3446, 7.3433, 7.3421, 7.3404, 7.3393, 7.3422, 7.3406, 7.3439, 7.3385, 7.3368, 7.3309, 7.3296, 7.3295, 7.328, 7.3263, 7.3254, 7.3237, 7.3221, 7.3207, 7.3285, 7.3275, 7.3462, 7.3448, 7.3387, 7.3369, 7.3398, 7.3386, 7.3374, 7.3403, 7.3385, 7.3419, 7.3407, 7.3396, 7.3381, 7.3413, 7.34, 7.3389, 7.3377, 7.3405, 7.339, 7.3372, 7.3353, 7.3337, 7.337, 7.336, 7.3342, 7.3328, 7.341, 7.3393, 7.3377, 7.3363, 7.3365, 7.335, 7.3334, 7.3319, 7.3311, 7.33, 7.3241, 7.3225, 7.3211, 7.3194, 7.3178, 7.3161, 7.3103, 7.3098, 7.3085, 7.3069, 7.3052, 7.3086, 7.3073, 7.3057, 7.3042, 7.3032, 7.3016, 7.3044, 7.3074, 7.3057, 7.3084, 7.3069, 7.3064, 7.3092, 7.3168, 7.315, 7.3133, 7.3122, 7.3106, 7.3134, 7.3123, 7.3152, 7.3181, 7.3168, 7.3164, 7.3152, 7.314, 7.3124, 7.3109, 7.3136, 7.312, 7.315, 7.3209, 7.3193, 7.3175, 7.3159, 7.3146, 7.3131, 7.3075, 7.306, 7.3051, 7.3039, 7.3025, 7.297, 7.2993, 7.2986, 7.2969, 7.2914, 7.2903, 7.2928, 7.2913, 7.2898, 7.2925, 7.2909, 7.2939, 7.2922, 7.2941, 7.2938, 7.2924, 7.291, 7.2898, 7.2884, 7.2879, 7.2829, 7.282, 7.2851, 7.2835, 7.2819, 7.2826, 7.2813, 7.2798, 7.2787, 7.2772, 7.2759, 7.2755, 7.275, 7.2736, 7.2723, 7.271, 7.2699, 7.2685, 7.2673, 7.2702, 7.273, 7.2766, 7.2753, 7.2738, 7.2769, 7.2795, 7.2782, 7.2768, 7.2752, 7.2738, 7.2726, 7.2712, 7.2699, 7.2685, 7.267, 7.2655, 7.2737, 7.2764, 7.2752, 7.2782, 7.2768, 7.2798, 7.2787, 7.2773, 7.2763, 7.2751, 7.2738, 7.2724, 7.2708, 7.2692, 7.2678, 7.2671, 7.2657, 7.2648, 7.2645, 7.2791, 7.2775, 7.2761, 7.2788, 7.2774, 7.2728, 7.2714, 7.2699, 7.2686, 7.2671, 7.262, 7.2608, 7.2594, 7.2581, 7.2567, 7.2557, 7.2541, 7.2526, 7.2515, 7.2504, 7.2529, 7.2522, 7.2546, 7.2547, 7.2536, 7.2528, 7.2557, 7.2584, 7.2629, 7.2655, 7.2642, 7.263, 7.266, 7.265, 7.268, 7.2676, 7.2694, 7.2684, 7.2672, 7.2659, 7.2646, 7.2633, 7.2619, 7.2646, 7.263, 7.2618, 7.2643, 7.2629, 7.2615, 7.2606, 7.2649, 7.2674, 7.2721, 7.2707, 7.2694, 7.2684, 7.2692, 7.272, 7.2758, 7.2743, 7.2734, 7.272, 7.2713, 7.2779, 7.2802, 7.2956, 7.3023, 7.3052, 7.304, 7.3065, 7.3057, 7.3083, 7.3035, 7.3021, 7.3049, 7.3035, 7.3105, 7.31, 7.3093, 7.3122, 7.3147, 7.3133, 7.3121, 7.3125, 7.3111, 7.3136, 7.3163, 7.3149, 7.314, 7.3173, 7.3158, 7.3144, 7.3131, 7.3124, 7.3109, 7.3098, 7.3123, 7.3108, 7.3096, 7.3083, 7.3072, 7.3059, 7.3051, 7.3037, 7.306, 7.3051, 7.3036, 7.3023, 7.3009, 7.3, 7.2989, 7.2979, 7.2966, 7.2957, 7.2947, 7.2938, 7.2932, 7.2924, 7.2913, 7.2899, 7.2889, 7.2879, 7.2865, 7.2853, 7.2841, 7.283, 7.2817, 7.2803, 7.283, 7.2818, 7.2811, 7.2799, 7.2787, 7.2809, 7.2796, 7.2782, 7.2769, 7.2796, 7.2783, 7.2774, 7.2765, 7.2797, 7.2832, 7.2818, 7.2847, 7.2837, 7.2827, 7.2817, 7.2841, 7.2832, 7.2818, 7.2845, 7.2833, 7.2821, 7.2822, 7.2808, 7.2854, 7.2842, 7.2833, 7.2833, 7.2825, 7.2811, 7.2799, 7.2787, 7.2789, 7.2777, 7.2764, 7.2754, 7.2741, 7.2732, 7.2759, 7.2746, 7.2769, 7.2794, 7.2797, 7.2788, 7.2809, 7.2797, 7.2822, 7.281, 7.2798, 7.2786, 7.2778, 7.2767, 7.2758, 7.2749, 7.2739, 7.2763, 7.2752, 7.2747, 7.2736, 7.276, 7.2748, 7.2771, 7.2763, 7.275, 7.2736, 7.2751, 7.2748, 7.2738, 7.2729, 7.2754, 7.2743, 7.2733, 7.2726, 7.2766, 7.2753, 7.2744, 7.2807, 7.2793, 7.2821, 7.2858, 7.2855, 7.2844, 7.287, 7.2864, 7.2855, 7.2844, 7.2836, 7.2824, 7.2842, 7.2798, 7.279, 7.2782, 7.277, 7.2757, 7.2744, 7.2768, 7.2792, 7.278, 7.2775, 7.2763, 7.2793, 7.2818, 7.2806, 7.283, 7.2818, 7.2809, 7.2799, 7.2786, 7.281, 7.2834, 7.2861, 7.285, 7.2838, 7.2826, 7.2817, 7.2804, 7.2798, 7.2791, 7.2815, 7.2802, 7.2826, 7.2849, 7.2837, 7.2824, 7.2815, 7.2805, 7.2865, 7.2853, 7.2843, 7.2867, 7.2889, 7.2877, 7.2867, 7.2857, 7.2879, 7.2867, 7.2866, 7.2858, 7.2847, 7.2869, 7.286, 7.2905, 7.2974, 7.2968, 7.299, 7.3013, 7.3037, 7.3024, 7.3012, 7.3005, 7.2993, 7.2987, 7.2981, 7.3004, 7.2992, 7.298, 7.2973, 7.2996, 7.299, 7.2948, 7.2972, 7.299, 7.2981, 7.2968, 7.299, 7.2978, 7.3002, 7.2991, 7.3086, 7.3074, 7.3084, 7.3109, 7.3098, 7.3091, 7.308, 7.3102, 7.3111, 7.3098, 7.3086, 7.3109, 7.3098, 7.3121, 7.314, 7.316, 7.3147, 7.3135, 7.3094, 7.3103, 7.3091, 7.3081, 7.3069, 7.3091, 7.3115, 7.3108, 7.313, 7.3121, 7.311, 7.31, 7.3088, 7.3077, 7.3067, 7.3055, 7.3044, 7.3055, 7.3076, 7.3133, 7.3155, 7.3179, 7.3167, 7.3158, 7.318, 7.3239, 7.3227, 7.3248, 7.3293, 7.3292, 7.3313, 7.3301, 7.3295, 7.3285, 7.3276, 7.3266, 7.3288, 7.3308, 7.3328, 7.3318, 7.3309, 7.3299, 7.329, 7.328, 7.3269, 7.3259, 7.3249, 7.3279, 7.3267, 7.33, 7.3292, 7.3293, 7.3282, 7.3276, 7.3297, 7.3316, 7.3337, 7.3359, 7.3352, 7.3341, 7.3361, 7.3349, 7.3341, 7.333, 7.332, 7.331, 7.3304, 7.3296, 7.3284, 7.3274, 7.3295, 7.3284, 7.3306, 7.3296, 7.3286, 7.3275, 7.3263, 7.3255, 7.3278, 7.3268, 7.3258, 7.3252, 7.324, 7.3234, 7.3224, 7.3213, 7.3204, 7.3197, 7.3192, 7.3183, 7.3173, 7.3162, 7.3153, 7.3176, 7.3168, 7.3156, 7.3149, 7.3137, 7.3129, 7.3149, 7.3137, 7.3129, 7.3119, 7.314, 7.3129, 7.3125, 7.3115, 7.3108, 7.31, 7.3091, 7.3079, 7.3043, 7.3065, 7.3068, 7.3056, 7.305, 7.3039, 7.3034, 7.3025, 7.3016, 7.3008, 7.2969, 7.2958, 7.295, 7.2944, 7.294, 7.2932, 7.2952, 7.2948, 7.2938, 7.2932, 7.292, 7.2931, 7.2985, 7.3007, 7.3001, 7.2989, 7.2981, 7.3, 7.2991, 7.3012, 7.3001, 7.2989, 7.2984, 7.2975, 7.2966, 7.2955, 7.2948, 7.2937, 7.2929, 7.2926, 7.2918, 7.2909, 7.2901, 7.29, 7.2891, 7.2911, 7.2901, 7.289, 7.2884, 7.288, 7.2869, 7.2858, 7.2847, 7.2849, 7.2868, 7.2859, 7.2848, 7.2838, 7.2831, 7.282, 7.2818, 7.2807, 7.2816, 7.2807, 7.28, 7.2789, 7.2781, 7.28, 7.2789, 7.2781, 7.2773, 7.2792, 7.2785, 7.2782, 7.2773, 7.2768, 7.2786, 7.2784, 7.2804, 7.2794, 7.2784, 7.2785, 7.2781, 7.2801, 7.2794, 7.2784, 7.2821, 7.2841, 7.2833, 7.2852, 7.2851, 7.2869, 7.2918, 7.2882, 7.2873, 7.2891, 7.2883, 7.3015, 7.3004, 7.3022, 7.3015, 7.3005, 7.3023, 7.3018, 7.3014, 7.3006, 7.3003, 7.2992, 7.2985, 7.2975, 7.3014, 7.3005, 7.2995, 7.2987, 7.3006, 7.2995, 7.2991, 7.2981, 7.3009, 7.2999, 7.3019, 7.3012, 7.3005, 7.2996, 7.3036, 7.3027, 7.3018, 7.301, 7.3005, 7.2998, 7.2988, 7.3007, 7.2996, 7.2999, 7.3019, 7.3011, 7.3003, 7.2997, 7.3016, 7.3011, 7.3005, 7.2995, 7.2984, 7.3004, 7.2993, 7.2987, 7.2977, 7.2996, 7.3014, 7.3003, 7.2994, 7.2986, 7.2976, 7.2995, 7.3017, 7.2989, 7.2963, 7.2982, 7.3042, 7.3061, 7.3109, 7.3099, 7.3113, 7.3103, 7.3095, 7.3061, 7.3051, 7.3041, 7.3035, 7.3053, 7.3071, 7.3063, 7.3054, 7.3045, 7.3124, 7.3113, 7.3103, 7.3122, 7.3115, 7.3108, 7.3187, 7.3265, 7.323, 7.3247, 7.3239, 7.3258, 7.3248, 7.3266, 7.3284, 7.3274, 7.3264, 7.3258, 7.3276, 7.3305, 7.3296, 7.3316, 7.3347, 7.3338, 7.3328, 7.3322, 7.3316, 7.3339, 7.3305, 7.3351, 7.3343, 7.3333, 7.3358, 7.335, 7.3366, 7.3356, 7.3346, 7.3336, 7.3327, 7.332, 7.331, 7.3304, 7.3301, 7.3295, 7.3314, 7.3333, 7.3323, 7.334, 7.3335, 7.3329, 7.3346, 7.3365, 7.3384, 7.3403, 7.3395, 7.3413, 7.3403, 7.3393, 7.3383, 7.3378, 7.337, 7.3364, 7.3355, 7.3349, 7.3342, 7.3337, 7.3327, 7.3347, 7.334, 7.3331, 7.3347, 7.3337, 7.3329, 7.3352, 7.3343, 7.3339, 7.3335, 7.333, 7.3347, 7.3338, 7.3328, 7.3345, 7.3335, 7.3351, 7.3342, 7.3335, 7.3327, 7.3318, 7.3334, 7.3324, 7.3315, 7.3332, 7.3323, 7.3342, 7.3332, 7.3299, 7.3292, 7.331, 7.331, 7.3303, 7.3296, 7.3314, 7.3305, 7.3295, 7.3368, 7.3414, 7.3404, 7.3394, 7.3386, 7.3404, 7.342, 7.341, 7.34, 7.3417, 7.3409, 7.338, 7.3399, 7.3414, 7.3406, 7.3398, 7.3393, 7.3411, 7.3403, 7.3394, 7.3411, 7.3402, 7.3369, 7.3415, 7.3381, 7.3468, 7.3462, 7.3452, 7.347, 7.346, 7.3477, 7.3444, 7.3461, 7.3454, 7.3499, 7.3489, 7.3506, 7.3523, 7.3513, 7.3504, 7.3494, 7.3489, 7.3479, 7.3495, 7.3485, 7.3476, 7.3482, 7.3474, 7.3465, 7.3459, 7.3475, 7.3521, 7.3515, 7.3488, 7.3479, 7.3469, 7.3513, 7.3508, 7.3655, 7.3645, 7.366, 7.3657, 7.3649, 7.3644, 7.3636, 7.3666, 7.3668, 7.3725, 7.3725, 7.3716, 7.3707, 7.3699, 7.3718, 7.3709, 7.3738, 7.3733, 7.375, 7.374, 7.3732, 7.3724, 7.3714, 7.3705, 7.3722, 7.3739, 7.3734, 7.3734, 7.3751, 7.3772, 7.3769, 7.3762, 7.3754, 7.375, 7.3759, 7.3758, 7.3753, 7.3745, 7.3737, 7.3729, 7.3719, 7.3709, 7.3735, 7.3702, 7.3693, 7.371, 7.3727, 7.3741, 7.376, 7.3751, 7.3741, 7.3709, 7.37, 7.3691, 7.3684, 7.3701, 7.3691, 7.3708, 7.3698, 7.3739, 7.373, 7.3721, 7.3715, 7.3707, 7.37, 7.3708, 7.3725, 7.3719, 7.371, 7.3706, 7.3696, 7.3688, 7.3681, 7.3675, 7.3667, 7.366, 7.3651, 7.3668, 7.3659, 7.3652, 7.3642, 7.3638, 7.3607, 7.3606, 7.3622, 7.3613, 7.3606, 7.3623, 7.364, 7.3656, 7.3672, 7.3663, 7.3679, 7.3669, 7.3661, 7.3654, 7.3671, 7.3662, 7.3654, 7.3644, 7.3637, 7.3628, 7.362, 7.3638, 7.3628, 7.3669, 7.3758, 7.3752, 7.3769, 7.378, 7.3775, 7.377, 7.3763, 7.378, 7.3774, 7.3767, 7.3762, 7.3752, 7.3745, 7.3736, 7.3726, 7.3718, 7.371, 7.3702, 7.3717, 7.371, 7.3726, 7.3745, 7.3761, 7.3754, 7.3773, 7.3789, 7.3781, 7.3751, 7.3743, 7.3735, 7.3728, 7.3721, 7.3712, 7.3702, 7.3699, 7.3692, 7.3711, 7.3726, 7.3717, 7.3708, 7.3724, 7.374, 7.3708, 7.37, 7.3691, 7.3766, 7.376, 7.3751, 7.3766, 7.3758, 7.375, 7.3747, 7.3741, 7.3738, 7.3732, 7.3725, 7.3741, 7.3733, 7.3725, 7.3718, 7.3711, 7.3702, 7.3692, 7.3683, 7.3675, 7.3676, 7.3667, 7.3686, 7.3705, 7.368, 7.3684, 7.3678, 7.3673, 7.37, 7.3693, 7.3684, 7.3675, 7.369, 7.368, 7.3674, 7.3729, 7.372, 7.3736, 7.373, 7.3745, 7.3752, 7.3744, 7.3735, 7.3728, 7.3722, 7.3714, 7.3707, 7.3698, 7.3691, 7.3684, 7.3675, 7.369, 7.3684, 7.3676, 7.3668, 7.3661, 7.3652, 7.3666, 7.3657, 7.3652, 7.3729, 7.3719, 7.371, 7.3701, 7.3694, 7.3685, 7.3676, 7.3668, 7.3664, 7.3657, 7.3672, 7.3666, 7.368, 7.3671, 7.3663, 7.3654, 7.3646, 7.3638, 7.3629, 7.3622, 7.3614, 7.3629, 7.36, 7.3592, 7.3584, 7.3608, 7.3637, 7.365, 7.3641, 7.3633, 7.3648, 7.3643, 7.3661, 7.3676, 7.3667, 7.3663, 7.3656, 7.3648, 7.3639, 7.3632, 7.3623, 7.3616, 7.3615, 7.3607, 7.3598, 7.3591, 7.3606, 7.3599, 7.3593, 7.359, 7.3583, 7.3581, 7.3596, 7.3615, 7.3613, 7.3606, 7.3702, 7.377, 7.3768, 7.376, 7.3752, 7.3747, 7.3738, 7.3732, 7.3723, 7.3715, 7.3708, 7.3724, 7.3719, 7.3734, 7.3727, 7.372, 7.3713, 7.3727, 7.3719, 7.3714, 7.3709, 7.3704, 7.3721, 7.3714, 7.3732, 7.3725, 7.3718, 7.3712, 7.3726, 7.372, 7.3717, 7.3709, 7.3701, 7.372, 7.3735, 7.3727, 7.3722, 7.3715, 7.3707, 7.3679, 7.3672, 7.3666, 7.3667, 7.3661, 7.366, 7.3655, 7.3647, 7.3756, 7.3748, 7.3742, 7.3758, 7.375, 7.3741, 7.3733, 7.3748, 7.3764, 7.3768, 7.376, 7.3815, 7.3829, 7.3841, 7.3848, 7.384, 7.3878, 7.3879, 7.3872, 7.3866, 7.386, 7.3878, 7.3872, 7.3849, 7.3843, 7.3835, 7.3837, 7.3852, 7.3844, 7.3839, 7.384, 7.3841, 7.3843, 7.3834, 7.3852, 7.386, 7.3853, 7.3867, 7.3881, 7.3875, 7.3889, 7.3881, 7.3878, 7.387, 7.3863, 7.3863, 7.3879, 7.3872, 7.3863, 7.3864, 7.3857, 7.3835, 7.3855, 7.3848, 7.3841, 7.3834, 7.385, 7.3953, 7.3945, 7.3974, 7.3966, 7.3983, 7.4022, 7.4016, 7.4008, 7.4001, 7.4002, 7.4008, 7.4, 7.3996, 7.3988, 7.398, 7.4006, 7.3997, 7.3989, 7.3984, 7.3975, 7.3967, 7.3959, 7.3931, 7.3925, 7.3919, 7.3933, 7.3946, 7.3942, 7.3936, 7.3931, 7.3927, 7.3948, 7.394, 7.3933, 7.3926, 7.397, 7.3963, 7.3968, 7.4051, 7.4046, 7.4038, 7.403, 7.4025, 7.4092, 7.4085, 7.4077, 7.4071, 7.4064, 7.4044, 7.4027, 7.4019, 7.4047, 7.4041, 7.4032, 7.4027, 7.4021, 7.4035, 7.4042, 7.4063, 7.4079, 7.4071, 7.4069, 7.4063, 7.4065, 7.4058, 7.4053, 7.4055, 7.4047, 7.402, 7.4013, 7.4027, 7.4029, 7.4052, 7.4048, 7.4084, 7.4077, 7.4111, 7.4126, 7.4119, 7.4093, 7.4085, 7.408, 7.4072, 7.4064, 7.4056, 7.4051, 7.4043, 7.4057, 7.4049, 7.4065, 7.4079, 7.4093, 7.4087, 7.4079, 7.4074, 7.4066, 7.408, 7.4074, 7.4066, 7.4058, 7.4162, 7.4176, 7.4173, 7.4187, 7.4178, 7.4172, 7.4167, 7.4159, 7.4174, 7.423, 7.4222, 7.4217, 7.4264, 7.4263, 7.4275, 7.4267, 7.4271, 7.4264, 7.4297, 7.4292, 7.4284, 7.4299, 7.4313, 7.433, 7.4321, 7.4315, 7.4307, 7.4298, 7.4312, 7.4325, 7.4337, 7.4372, 7.4348, 7.4341, 7.4314, 7.4306, 7.4318, 7.4309, 7.4305, 7.4298, 7.4291, 7.4287, 7.428, 7.4274, 7.4293, 7.4286, 7.4299, 7.4294, 7.4286, 7.428, 7.4274, 7.4266, 7.4288, 7.428, 7.4255, 7.4247, 7.426, 7.4251, 7.4264, 7.4276, 7.4288, 7.4284, 7.4301, 7.4306, 7.43, 7.4293, 7.4288, 7.4281, 7.4273, 7.4269, 7.426, 7.4252, 7.4265, 7.4278, 7.4254, 7.4268, 7.4281, 7.4275, 7.4267, 7.4264, 7.4258, 7.4273, 7.4266, 7.4279, 7.4275, 7.4267, 7.426, 7.4256, 7.4248, 7.424, 7.4232, 7.4245, 7.4242, 7.4256, 7.4248, 7.4261, 7.4257, 7.4252, 7.4227, 7.4222, 7.4196, 7.4204, 7.4196, 7.4188, 7.4181, 7.4155, 7.4148, 7.4143, 7.4139, 7.4132, 7.4125, 7.4118, 7.4112, 7.4124, 7.4118, 7.413, 7.4122, 7.4136, 7.4129, 7.4121, 7.4135, 7.4127, 7.4121, 7.4115, 7.4108, 7.4103, 7.4097, 7.4089, 7.4063, 7.4058, 7.4071, 7.4045, 7.4042, 7.4036, 7.4028, 7.4023, 7.4015, 7.4009, 7.4023, 7.4035, 7.4028, 7.4042, 7.4037, 7.4052, 7.4066, 7.4078, 7.4071, 7.4064, 7.4079, 7.4072, 7.4064, 7.4039, 7.4014, 7.4007, 7.3999, 7.3992, 7.3984, 7.3996, 7.399, 7.3982, 7.4002, 7.3995, 7.4006, 7.4018, 7.403, 7.4024, 7.4037, 7.403, 7.4022, 7.4014, 7.4008, 7.4001, 7.4014, 7.4028, 7.4041, 7.4054, 7.4046, 7.4039, 7.4034, 7.4031, 7.4035, 7.403, 7.4042, 7.4037, 7.4049, 7.4041, 7.4055, 7.4068, 7.4082, 7.4078, 7.4071, 7.4063, 7.4096, 7.4089, 7.4081, 7.4074, 7.4086, 7.4079, 7.4055, 7.4048, 7.4042, 7.4035, 7.4027, 7.4053, 7.4047, 7.404, 7.4052, 7.4044, 7.4039, 7.4037, 7.4032, 7.4045, 7.4058, 7.406, 7.4055, 7.4048, 7.4061, 7.4036, 7.4028, 7.4023, 7.4018, 7.4013, 7.4025, 7.4019, 7.4041, 7.4049, 7.4044, 7.4038, 7.4051, 7.4045, 7.4037, 7.4051, 7.4047, 7.4041, 7.4016, 7.4008, 7.4002, 7.4015, 7.401, 7.4003, 7.3996, 7.3992, 7.3985, 7.3979, 7.3973, 7.3967, 7.3943, 7.3941, 7.3934, 7.3929, 7.3925, 7.3918, 7.3931, 7.3923, 7.3916, 7.3929, 7.3922, 7.3919, 7.3913, 7.3905, 7.3918, 7.3911, 7.3904, 7.3917, 7.391, 7.3906, 7.3905, 7.3899, 7.3892, 7.3889, 7.3871, 7.3885, 7.3878, 7.3874, 7.3867, 7.386, 7.3854, 7.3848, 7.3843, 7.3819, 7.3813, 7.3825, 7.3818, 7.3811, 7.3824, 7.3821, 7.3834, 7.3829, 7.3824, 7.3821, 7.3814, 7.3809, 7.3837, 7.383, 7.3825, 7.3897, 7.389, 7.3883, 7.3876, 7.3873, 7.3866, 7.3859, 7.3851, 7.3846, 7.3839, 7.3873, 7.3868, 7.3861, 7.3873, 7.3865, 7.388, 7.3893, 7.3886, 7.388, 7.3873, 7.3887, 7.3879, 7.3891, 7.3955, 7.3948, 7.396, 7.3954, 7.3948, 7.3961, 7.3953, 7.3946, 7.3938, 7.3931, 7.3925, 7.3919, 7.3932, 7.3926, 7.3937, 7.3937, 7.395, 7.3944, 7.3958, 7.3972, 7.3986, 7.398, 7.3974, 7.3968, 7.398, 7.3993, 7.3991, 7.3987, 7.398, 7.3974, 7.3967, 7.397, 7.3963, 7.3957, 7.3953, 7.3947, 7.3942, 7.3954, 7.3948, 7.3941, 7.3934, 7.3946, 7.3958, 7.3952, 7.3928, 7.3923, 7.3916, 7.3911, 7.3904, 7.3917, 7.3912, 7.3907, 7.39, 7.3893, 7.3906, 7.3918, 7.393, 7.3923, 7.3917, 7.391, 7.3922, 7.3917, 7.3911, 7.3905, 7.3898, 7.3893, 7.3886, 7.3879, 7.3856, 7.3871, 7.3864, 7.3859, 7.3837, 7.3835, 7.383, 7.3807, 7.3804, 7.3798, 7.3791, 7.3768, 7.3761, 7.3775, 7.3769, 7.3763, 7.3774, 7.3769, 7.3762, 7.3757, 7.375, 7.3761, 7.3772, 7.3766, 7.3759, 7.3752, 7.3764, 7.376, 7.3771, 7.3749, 7.376, 7.3771, 7.3782, 7.3781, 7.3776, 7.3775, 7.3787, 7.3889, 7.3882, 7.3876, 7.3887, 7.3882, 7.3893, 7.3889, 7.3883, 7.3877, 7.3889, 7.3886, 7.3898, 7.3895, 7.3889, 7.389, 7.3901, 7.3894, 7.3887, 7.388, 7.389, 7.3884, 7.3879, 7.3872, 7.3884, 7.388, 7.3878, 7.3873, 7.3912, 7.3905, 7.3913, 7.3933, 7.3953, 7.3946, 7.3947, 7.3943, 7.3955, 7.395, 7.3944, 7.3937, 7.3933, 7.393, 7.3923, 7.3916, 7.391, 7.3905, 7.3899, 7.3892, 7.3886, 7.3898, 7.3892, 7.3888, 7.3866, 7.3861, 7.3857, 7.3851, 7.3844, 7.3837, 7.3848, 7.3842, 7.3836, 7.3834, 7.3831, 7.3824, 7.3835, 7.3846, 7.3828, 7.384, 7.3835, 7.3828, 7.384, 7.3834, 7.3827, 7.3823, 7.3817, 7.3813, 7.3808, 7.382, 7.3814, 7.3823, 7.3817, 7.3811, 7.3827, 7.3821, 7.3814, 7.3826, 7.382, 7.3813, 7.3809, 7.3806, 7.3817, 7.3795, 7.3807, 7.3821, 7.3835, 7.3828, 7.3866, 7.3859, 7.3852, 7.3849, 7.3861, 7.3856, 7.3866, 7.386, 7.3853, 7.3846, 7.3858, 7.3888, 7.3899, 7.3893, 7.3887, 7.3897, 7.389, 7.3885, 7.391, 7.3904, 7.39, 7.3895, 7.389, 7.3885, 7.3878, 7.3928, 7.3922, 7.3916, 7.3909, 7.3906, 7.39, 7.3894, 7.3888, 7.3881, 7.3875, 7.3871, 7.3864, 7.3857, 7.3855, 7.3853, 7.3846, 7.3843, 7.3839, 7.3851, 7.3844, 7.3838, 7.3831, 7.3824, 7.3834, 7.383, 7.3842, 7.3852, 7.3847, 7.3826, 7.3837, 7.3831, 7.3826, 7.3836, 7.3846, 7.384, 7.3839, 7.3834, 7.3829, 7.3807, 7.3803, 7.3797, 7.3808, 7.3819, 7.383, 7.3824, 7.3818, 7.3812, 7.381, 7.3808, 7.3819, 7.3813, 7.3809, 7.3804, 7.3816, 7.381, 7.3804, 7.3783, 7.3777, 7.3756, 7.3751, 7.376, 7.3755, 7.3749, 7.3742, 7.3739, 7.3733, 7.3745, 7.3739, 7.3733, 7.3717, 7.3713, 7.373, 7.373, 7.3734, 7.3727, 7.3739, 7.3733, 7.373, 7.3725, 7.3738, 7.3732, 7.3726, 7.374, 7.3735, 7.3729, 7.3707, 7.37, 7.3694, 7.3691, 7.3685, 7.3679, 7.3673, 7.3667, 7.366, 7.3657, 7.365, 7.3679, 7.3673, 7.3668, 7.3661, 7.3656, 7.3651, 7.3646, 7.3624, 7.3635, 7.3631, 7.363, 7.3625, 7.3635, 7.363, 7.3641, 7.3636, 7.363, 7.3624, 7.3634, 7.3645, 7.364, 7.3634, 7.3628, 7.3622, 7.3617, 7.3613, 7.3607, 7.3601, 7.3644, 7.3655, 7.3649, 7.3643, 7.3637, 7.3631, 7.3643, 7.3638, 7.3649, 7.3643, 7.3643, 7.3654, 7.365, 7.3712, 7.3724, 7.3719, 7.376, 7.3753, 7.3764, 7.3776, 7.377, 7.3783, 7.3837, 7.3837, 7.3832, 7.3829, 7.3845, 7.3873, 7.3868, 7.3864, 7.3858, 7.3837, 7.3849, 7.3846, 7.3857, 7.3868, 7.3861, 7.3858, 7.3852, 7.3845, 7.3842, 7.3821, 7.38, 7.3812, 7.381, 7.3804, 7.38, 7.3811, 7.3824, 7.3819, 7.3814, 7.3825, 7.382, 7.3815, 7.3809, 7.3848, 7.3851, 7.3849, 7.3844, 7.3856, 7.3868, 7.3864, 7.3859, 7.387, 7.3916, 7.391, 7.3906, 7.3905, 7.3916, 7.3911, 7.3905, 7.3902, 7.3897, 7.3908, 7.3903, 7.3883, 7.3878, 7.3873, 7.3883, 7.3877, 7.3871, 7.3864, 7.3858, 7.3854, 7.3848, 7.3845, 7.384, 7.3835, 7.386, 7.3854, 7.3834, 7.3847, 7.3841, 7.3852, 7.3862, 7.3858, 7.3868, 7.3862, 7.3856, 7.385, 7.3843, 7.384, 7.3836, 7.3836, 7.383, 7.3826, 7.3837, 7.3847, 7.3843, 7.3853, 7.385, 7.3844, 7.3854, 7.3848, 7.3842, 7.3852, 7.3863, 7.3873, 7.3884, 7.3894, 7.3888, 7.3898, 7.3896, 7.3891, 7.3885, 7.3879, 7.3873, 7.3867, 7.3861, 7.3873, 7.3868, 7.3862, 7.3856, 7.3866, 7.386, 7.3855, 7.385, 7.3861, 7.3855, 7.3849, 7.3844, 7.3838, 7.3849, 7.3843, 7.3853, 7.3847, 7.3843, 7.3839, 7.3835, 7.3845, 7.384, 7.3851, 7.3845, 7.3854, 7.3848, 7.3857, 7.3857, 7.3868, 7.3863, 7.3874, 7.3868, 7.3866, 7.3862, 7.3874, 7.3868, 7.3864, 7.3859, 7.3853, 7.3848, 7.3859, 7.3871, 7.3881, 7.389, 7.3884, 7.388, 7.3874, 7.3868, 7.3878, 7.3888, 7.3885, 7.3896, 7.389, 7.39, 7.3894, 7.3873, 7.3868, 7.3862, 7.3872, 7.3866, 7.3846, 7.3842, 7.3851, 7.3847, 7.3859, 7.3853, 7.3847, 7.3841, 7.3836, 7.3862, 7.3857, 7.3867, 7.3862, 7.3859, 7.3855, 7.3865, 7.3876, 7.3871, 7.3867, 7.3861, 7.3855, 7.3851, 7.3845, 7.384, 7.3835, 7.3839, 7.3849, 7.3843, 7.3853, 7.3847, 7.3841, 7.3836, 7.3831, 7.3825, 7.382, 7.3818, 7.3812, 7.3807, 7.3805, 7.3799, 7.3809, 7.379, 7.3786, 7.3798, 7.3792, 7.3786, 7.3797, 7.3791, 7.3785, 7.3779, 7.3773, 7.3801, 7.3795, 7.3789, 7.3784, 7.3779, 7.3774, 7.3768, 7.3778, 7.3772, 7.3767, 7.3762, 7.3756, 7.3751, 7.376, 7.3754, 7.3765, 7.3782, 7.3781, 7.3775, 7.3769, 7.3764, 7.3759, 7.3757, 7.3751, 7.3745, 7.3755, 7.3753, 7.375, 7.3732, 7.3726, 7.372, 7.3739, 7.3734, 7.3745, 7.3739, 7.3733, 7.3743, 7.3724, 7.3719, 7.3715, 7.3696, 7.3691, 7.3691, 7.3687, 7.3684, 7.3708, 7.3703, 7.3714, 7.3709, 7.3704, 7.3715, 7.3726, 7.3721, 7.373, 7.3725, 7.372, 7.3715, 7.371, 7.3705, 7.3715, 7.3709, 7.3722, 7.3718, 7.3743, 7.3753, 7.3749, 7.3744, 7.3753, 7.3747, 7.3742, 7.3752, 7.3747, 7.3742, 7.3737, 7.3742, 7.3738, 7.3777, 7.3771, 7.3779, 7.3774, 7.377, 7.3765, 7.3775, 7.3785, 7.3779, 7.3774, 7.3775, 7.3771, 7.3781, 7.3779, 7.3773, 7.3784, 7.3778, 7.3773, 7.3784, 7.3794, 7.3803, 7.3813, 7.381, 7.382, 7.3814, 7.3808, 7.3818, 7.3812, 7.3806, 7.3802, 7.3805, 7.3826, 7.3821, 7.3822, 7.3818, 7.3803, 7.383, 7.3826, 7.3851, 7.3847, 7.3842, 7.3838, 7.3849, 7.386, 7.3855, 7.3849, 7.3844, 7.3839, 7.3834, 7.3828, 7.3822, 7.3817, 7.3826, 7.3821, 7.3815, 7.3812, 7.3808, 7.3803, 7.3797, 7.3808, 7.3803, 7.3798, 7.3793, 7.3789, 7.3784, 7.378, 7.3775, 7.3772, 7.3796, 7.3778, 7.3774, 7.383, 7.3824, 7.3819, 7.3816, 7.3812, 7.3806, 7.38, 7.3794, 7.379, 7.3786, 7.378, 7.3775, 7.377, 7.378, 7.3776, 7.3771, 7.378, 7.3776, 7.3786, 7.3796, 7.3792, 7.3802, 7.3811, 7.3807, 7.3802, 7.3812, 7.3807, 7.3815, 7.3809, 7.379, 7.3785, 7.3787, 7.3784, 7.3778, 7.3788, 7.3798, 7.3807, 7.3789, 7.377, 7.3765, 7.376, 7.3755, 7.3749, 7.3759, 7.3741, 7.3737, 7.3732, 7.3727, 7.3722, 7.3731, 7.3727, 7.3723, 7.3718, 7.3716, 7.3726, 7.372, 7.3715, 7.371, 7.3707, 7.3717, 7.3727, 7.3725, 7.3722, 7.3717, 7.3712, 7.3706, 7.3701, 7.3698, 7.3693, 7.3688, 7.3683, 7.3694, 7.369, 7.3685, 7.3696, 7.3706, 7.3702, 7.3687, 7.3696, 7.3706, 7.3703, 7.3712, 7.3731, 7.3727, 7.3722, 7.3717, 7.3717, 7.3712, 7.3707, 7.3702, 7.3699, 7.3694, 7.3689, 7.3684, 7.3693, 7.3702, 7.3699, 7.3703, 7.3699, 7.3695, 7.369, 7.3684, 7.375, 7.3745, 7.3741, 7.3736, 7.3731, 7.3744, 7.3742, 7.3736, 7.373, 7.3725, 7.3719, 7.3716, 7.3715, 7.3709, 7.3703, 7.3697, 7.3706, 7.37, 7.3696, 7.3692, 7.3686, 7.368, 7.3675, 7.3672, 7.3669, 7.3664, 7.3658, 7.3654, 7.3664, 7.3673, 7.3668, 7.3662, 7.3657, 7.3652, 7.3646, 7.3641, 7.3638, 7.3648, 7.3645, 7.364, 7.3634, 7.3629, 7.3625, 7.362, 7.3617, 7.3612, 7.3606, 7.3603, 7.3626, 7.362, 7.3629, 7.3625, 7.3621, 7.3603, 7.3599, 7.3594, 7.3589, 7.3584, 7.3579, 7.3574, 7.3583, 7.358, 7.3576, 7.3572, 7.3582, 7.3577, 7.3572, 7.3581, 7.3575, 7.3569, 7.3565, 7.3561, 7.3587, 7.3573, 7.3585, 7.3584, 7.358, 7.3576, 7.3588, 7.3585, 7.3595, 7.3614, 7.3624, 7.3623, 7.3618, 7.3615, 7.3612, 7.3607, 7.3603, 7.3599, 7.3615, 7.3626, 7.3621, 7.3645, 7.364, 7.3635, 7.3617, 7.3613, 7.3608, 7.3603, 7.3599, 7.3594, 7.3589, 7.3585, 7.3583, 7.3585, 7.358, 7.3575, 7.357, 7.3565, 7.356, 7.3569, 7.3578, 7.3573, 7.357, 7.3564, 7.3559, 7.3555, 7.3564, 7.3559, 7.3553, 7.3551, 7.356, 7.3557, 7.3566, 7.3561, 7.3557, 7.3553, 7.3563, 7.3585, 7.3582, 7.3578, 7.3574, 7.3569, 7.3567, 7.3564, 7.3573, 7.357, 7.3565, 7.3574, 7.3571, 7.358, 7.3589, 7.3583, 7.3578, 7.3588, 7.3583, 7.3578, 7.3586, 7.3595, 7.3591, 7.3586, 7.3595, 7.3584, 7.3607, 7.3617, 7.3613, 7.3614, 7.3642, 7.3639, 7.3635, 7.363, 7.3627, 7.3636, 7.3633, 7.363, 7.3626, 7.3621, 7.3645, 7.3641, 7.3636, 7.3631, 7.3626, 7.364, 7.3692, 7.3703, 7.3701, 7.3724, 7.3719, 7.3714, 7.3709, 7.3704, 7.3699, 7.3682, 7.3679, 7.3675, 7.3669, 7.3678, 7.37, 7.3697, 7.3706, 7.3734, 7.3743, 7.3737, 7.3745, 7.3767, 7.3762, 7.3757, 7.3754, 7.3766, 7.3777, 7.3786, 7.3781, 7.379, 7.38, 7.3796, 7.3791, 7.3788, 7.3784, 7.3778, 7.3775, 7.377, 7.378, 7.3775, 7.377, 7.3766, 7.3763, 7.3813, 7.3808, 7.3803, 7.3799, 7.3807, 7.3816, 7.3811, 7.3806, 7.3801, 7.3796, 7.3806, 7.3806, 7.3801, 7.3796, 7.3792, 7.3788, 7.3783, 7.3778, 7.3778, 7.3773, 7.3768, 7.3765, 7.3775, 7.3771, 7.3769, 7.3778, 7.3773, 7.3756, 7.3752, 7.3747, 7.3743, 7.3738, 7.3735, 7.377, 7.3766, 7.3761, 7.3756, 7.3742, 7.3739, 7.3776, 7.3773, 7.3797, 7.3807, 7.3816, 7.3824, 7.3819, 7.3814, 7.3837, 7.3832, 7.3827, 7.3823, 7.3818, 7.3813, 7.381, 7.3805, 7.3813, 7.3808, 7.3803, 7.3819, 7.3827, 7.3822, 7.3832, 7.3828, 7.3813, 7.3809, 7.3818, 7.3826, 7.3822, 7.3819, 7.3815, 7.3811, 7.382, 7.3829, 7.3837, 7.3834, 7.3842, 7.3837, 7.3833, 7.3841, 7.3824, 7.382, 7.3816, 7.3826, 7.3822, 7.3832, 7.3827, 7.3835, 7.3832, 7.384, 7.3835, 7.3856, 7.3855, 7.385, 7.3847, 7.3842, 7.3837, 7.3833, 7.3842, 7.3851, 7.3862, 7.3858, 7.3853, 7.386, 7.3858, 7.3857, 7.3856, 7.3851, 7.3846, 7.3845, 7.3855, 7.385, 7.3845, 7.3846, 7.3829, 7.3825, 7.3834, 7.3823, 7.3818, 7.3813, 7.3822, 7.3817, 7.3812, 7.3821, 7.3828, 7.3826, 7.3822, 7.3818, 7.3815, 7.3811, 7.3819, 7.3826, 7.3821, 7.3817, 7.3812, 7.3821, 7.3817, 7.3813, 7.381, 7.3807, 7.3802, 7.3799, 7.3795, 7.3791, 7.3802, 7.3797, 7.3792, 7.3788, 7.3771, 7.378, 7.3775, 7.3784, 7.378, 7.3776, 7.3773, 7.3769, 7.3767, 7.3762, 7.3757, 7.3752, 7.3749, 7.3744, 7.3753, 7.3748, 7.3745, 7.3742, 7.3738, 7.3735, 7.3731, 7.3727, 7.3722, 7.3717, 7.3713, 7.3713, 7.3708, 7.3704, 7.37, 7.3708, 7.3717, 7.3712, 7.3695, 7.3692, 7.3701, 7.3696, 7.3692, 7.3689, 7.3685, 7.368, 7.3676, 7.3671, 7.3666, 7.3662, 7.3671, 7.3668, 7.3677, 7.3683, 7.3679, 7.3674, 7.3669, 7.3665, 7.3682, 7.368, 7.3677, 7.3682, 7.369, 7.3685, 7.368, 7.3678, 7.3675, 7.3684, 7.368, 7.3689, 7.3685, 7.3692, 7.3687, 7.3683, 7.3681, 7.3689, 7.3684, 7.3684, 7.3679, 7.3674, 7.3669, 7.3664, 7.3661, 7.3657, 7.3653, 7.3648, 7.3644, 7.364, 7.3635, 7.3643, 7.3638, 7.3646, 7.3642, 7.3639, 7.3634, 7.363, 7.3626, 7.3622, 7.3617, 7.3612, 7.3621, 7.3617, 7.3614, 7.3611, 7.362, 7.3616, 7.3612, 7.3621, 7.3631, 7.3639, 7.3634, 7.3631, 7.3628, 7.3625, 7.3632, 7.3627, 7.3625, 7.3622, 7.3617, 7.3614, 7.3612, 7.362, 7.3618, 7.3616, 7.3613, 7.3608, 7.3604, 7.36, 7.3592, 7.3601, 7.3596, 7.3604, 7.3612, 7.3608, 7.3604, 7.36, 7.3599, 7.3621, 7.3629, 7.3677, 7.3672, 7.3668, 7.3676, 7.3684, 7.3681, 7.3679, 7.3674, 7.3682, 7.3678, 7.3673, 7.3657, 7.3666, 7.3666, 7.3662, 7.3658, 7.3656, 7.3652, 7.3649, 7.3645, 7.3642, 7.3642, 7.3637, 7.3627, 7.3623, 7.3619, 7.3614, 7.361, 7.3607, 7.3604, 7.36, 7.3623, 7.3633, 7.364, 7.3635, 7.363, 7.363, 7.3639, 7.366, 7.3656, 7.3652, 7.3675, 7.3683, 7.3679, 7.3675, 7.3674, 7.372, 7.3719, 7.3715, 7.3711, 7.3706, 7.3702, 7.3697, 7.372, 7.3727, 7.3722, 7.3719, 7.3714, 7.3709, 7.3708, 7.3704, 7.3706, 7.3703, 7.3711, 7.3708, 7.3704, 7.37, 7.371, 7.3706, 7.3703, 7.3699, 7.3695, 7.3691, 7.3701, 7.3703, 7.3699, 7.3695, 7.3691, 7.3698, 7.3693, 7.3689, 7.3685, 7.3681, 7.3679, 7.3687, 7.3684, 7.3679, 7.3675, 7.3671, 7.3668, 7.3652, 7.365, 7.3659, 7.3655, 7.3653, 7.365, 7.3649, 7.3645, 7.3643, 7.364, 7.3637, 7.3645, 7.3642, 7.3653, 7.366, 7.3644, 7.3641, 7.3636, 7.3632, 7.3628, 7.3637, 7.3633, 7.3628, 7.3625, 7.363, 7.3638, 7.3622, 7.3618, 7.3623, 7.3653, 7.3662, 7.3658, 7.3653, 7.3648, 7.3645, 7.3653, 7.3661, 7.3678, 7.3662, 7.3658, 7.3655, 7.37, 7.3696, 7.3684, 7.3681, 7.3719, 7.3715, 7.3715, 7.3736, 7.3738, 7.3734, 7.3734, 7.373, 7.3739, 7.3762, 7.3759, 7.3754, 7.3751, 7.3746, 7.3747, 7.3743, 7.374, 7.3736, 7.3732, 7.3728, 7.375, 7.3748, 7.3757, 7.3754, 7.3813, 7.3811, 7.3827, 7.3829, 7.3837, 7.3846, 7.385, 7.3847, 7.3846, 7.3868, 7.3864, 7.3861, 7.3869, 7.3864, 7.386, 7.3856, 7.3852, 7.3847, 7.3844, 7.384, 7.3847, 7.3843, 7.3839, 7.3835, 7.3843, 7.3839, 7.3835, 7.383, 7.3827, 7.3822, 7.3831, 7.3828, 7.3855, 7.3853, 7.3851, 7.3859, 7.3843, 7.3852, 7.3848, 7.3869, 7.3882, 7.3878, 7.3888, 7.39, 7.391, 7.3906, 7.3901, 7.3896, 7.3891, 7.3888, 7.3884, 7.388, 7.3878, 7.3874, 7.3896, 7.3892, 7.3887, 7.389, 7.3885, 7.3893, 7.3889, 7.3884, 7.388, 7.3875, 7.3871, 7.3866, 7.3861, 7.3859, 7.3855, 7.3853, 7.3848, 7.3847, 7.3842, 7.3838, 7.3862, 7.386, 7.3856, 7.3851, 7.3859, 7.3855, 7.3851, 7.3851, 7.3848, 7.3847, 7.3842, 7.3839, 7.3836, 7.3832, 7.383, 7.3826, 7.3812, 7.3808, 7.3807, 7.3804, 7.3802, 7.3798, 7.3806, 7.3802, 7.3798, 7.3811, 7.3806, 7.3802, 7.3811, 7.3818, 7.3813, 7.3809, 7.3804, 7.3805, 7.3803, 7.3807, 7.3804, 7.3801, 7.381, 7.3806, 7.3802, 7.3797, 7.3793, 7.379, 7.3786, 7.3794, 7.3793, 7.379, 7.3786, 7.3783, 7.3779, 7.3775, 7.377, 7.3768, 7.3764, 7.376, 7.3757, 7.3752, 7.375, 7.3745, 7.3741, 7.3751, 7.3747, 7.376, 7.3756, 7.3763, 7.376, 7.3756, 7.3752, 7.375, 7.3747, 7.3742, 7.3756, 7.3753, 7.375, 7.3745, 7.3741, 7.3737, 7.3736, 7.3735, 7.3731, 7.3726, 7.3721, 7.3728, 7.3736, 7.3744, 7.3739, 7.3747, 7.3743, 7.3738, 7.3737, 7.3734, 7.3742, 7.3738, 7.3741, 7.3736, 7.3732, 7.3728, 7.3726, 7.3733, 7.3729, 7.3714, 7.371, 7.3718, 7.3728, 7.3724, 7.3722, 7.3729, 7.3724, 7.3722, 7.3718, 7.3726, 7.3724, 7.3745, 7.3741, 7.3727, 7.3724, 7.372, 7.3716, 7.3713, 7.372, 7.3717, 7.3713, 7.3709, 7.3705, 7.3701, 7.3697, 7.3694, 7.369, 7.3715, 7.3736, 7.3734, 7.3731, 7.3727, 7.3771, 7.3767, 7.3774, 7.377, 7.3767, 7.3763, 7.3771, 7.378, 7.3787, 7.3773, 7.3781, 7.3779, 7.3774, 7.377, 7.3767, 7.3753, 7.3761, 7.3757, 7.3753, 7.3753, 7.3749, 7.3745, 7.3741, 7.3737, 7.3732, 7.3739, 7.3735, 7.3731, 7.3727, 7.3722, 7.3721, 7.3718, 7.3714, 7.3721, 7.3718, 7.3704, 7.37, 7.3715, 7.3712, 7.3708, 7.3704, 7.37, 7.3696, 7.3716, 7.3739, 7.3736, 7.3736, 7.3732, 7.3728, 7.3724, 7.3732, 7.374, 7.3737, 7.3733, 7.374, 7.3736, 7.3733, 7.3729, 7.3725, 7.3721, 7.3728, 7.3724, 7.372, 7.3716, 7.3724, 7.372, 7.3728, 7.3736, 7.3731, 7.3727, 7.3723, 7.3719, 7.3719, 7.3715, 7.3711, 7.3719, 7.3717, 7.3725, 7.372, 7.3717, 7.3713, 7.371, 7.3707, 7.3725, 7.3722, 7.3718, 7.3714, 7.371, 7.3718, 7.3713, 7.3721, 7.3716, 7.3712, 7.3724, 7.3719, 7.3716, 7.3712, 7.372, 7.3717, 7.3713, 7.3721, 7.3719, 7.3715, 7.3711, 7.3719, 7.3717, 7.3726, 7.3728, 7.3747, 7.3743, 7.374, 7.3737, 7.3733, 7.3743, 7.374, 7.3748, 7.3743, 7.3739, 7.3753, 7.3749, 7.3749, 7.3756, 7.3752, 7.3748, 7.3744, 7.3741, 7.3737, 7.3761, 7.3769, 7.3765, 7.3772, 7.3802, 7.3798, 7.3801, 7.3798, 7.3789, 7.38, 7.38, 7.3789, 7.3785, 7.3782, 7.3778, 7.3774, 7.3759, 7.3766, 7.3762, 7.3758, 7.3756, 7.3752, 7.3748, 7.3745, 7.3752, 7.3766, 7.3763, 7.3759, 7.3767, 7.3781, 7.3777, 7.3787, 7.3783, 7.38, 7.3808, 7.3843, 7.3842, 7.3838, 7.3833, 7.3869, 7.3864, 7.386, 7.3867, 7.3876, 7.3883, 7.3881, 7.3877, 7.3884, 7.388, 7.3878, 7.3873, 7.387, 7.3877, 7.3874, 7.3871, 7.3884, 7.3891, 7.3902, 7.3898, 7.3894, 7.3891, 7.3892, 7.3888, 7.3874, 7.387, 7.3878, 7.3875, 7.3884, 7.3881, 7.3877, 7.3873, 7.388, 7.3876, 7.3873, 7.3869, 7.3865, 7.3861, 7.3858, 7.3865, 7.3861, 7.389, 7.3886, 7.3882, 7.388, 7.3876, 7.3872, 7.3868, 7.3866, 7.3873, 7.387, 7.3866, 7.3852, 7.3848, 7.3844, 7.384, 7.3837, 7.3846, 7.3842, 7.384, 7.3837, 7.3835, 7.3843, 7.3839, 7.3835, 7.3832, 7.3829, 7.3825, 7.3823, 7.3819, 7.3843, 7.3839, 7.3847, 7.3854, 7.3877, 7.3873, 7.3869, 7.3865, 7.3861, 7.3858, 7.3854, 7.385, 7.3857, 7.3854, 7.3861, 7.3858, 7.3854, 7.3862, 7.3861, 7.3857, 7.3856, 7.3854, 7.385, 7.3846, 7.3843, 7.3839, 7.3835, 7.3832, 7.3829, 7.3825, 7.3813, 7.3811, 7.3849, 7.3845, 7.3844, 7.384, 7.3837, 7.3834, 7.383, 7.384, 7.3838, 7.3834, 7.3821, 7.3817, 7.3815, 7.3812, 7.3819, 7.3816, 7.3824, 7.383, 7.3828, 7.3824, 7.381, 7.3806, 7.3803, 7.3799, 7.3795, 7.3791, 7.3798, 7.3806, 7.3813, 7.381, 7.3807, 7.3805, 7.3801, 7.3798, 7.3795, 7.3791, 7.3787, 7.3794, 7.379, 7.3797, 7.3804, 7.3803, 7.381, 7.3817, 7.3813, 7.3809, 7.3806, 7.3803, 7.3799, 7.3796, 7.3796, 7.3792, 7.3811, 7.3809, 7.3805, 7.3801, 7.3797, 7.3793, 7.3791, 7.3787, 7.3794, 7.3791, 7.3798, 7.3797, 7.3793, 7.3789, 7.3796, 7.3808, 7.3805, 7.3802, 7.3809, 7.3805, 7.3803, 7.3799, 7.3797, 7.3796, 7.3793, 7.379, 7.3786, 7.3782, 7.3778, 7.3776, 7.3783, 7.3789, 7.3785, 7.3815, 7.3811, 7.381, 7.3807, 7.3814, 7.381, 7.3806, 7.3813, 7.3819, 7.3826, 7.3833, 7.3829, 7.3836, 7.3843, 7.385, 7.3846, 7.3842, 7.3838, 7.3834, 7.3831, 7.3829, 7.3825, 7.3832, 7.3868, 7.3864, 7.3863, 7.3859, 7.3855, 7.3851, 7.3848, 7.3835, 7.3851, 7.3847, 7.3843, 7.385, 7.3836, 7.3832, 7.3828, 7.3824, 7.382, 7.3827, 7.3824, 7.382, 7.3827, 7.3823, 7.3819, 7.3827, 7.3827, 7.3823, 7.383, 7.3827, 7.3833, 7.3836, 7.3834, 7.3832, 7.3839, 7.3836, 7.3836, 7.3832, 7.3832, 7.3829, 7.3826, 7.3822, 7.3819, 7.3815, 7.3811, 7.3817, 7.3814, 7.3812, 7.3818, 7.3815, 7.3832, 7.383, 7.3827, 7.3823, 7.3819, 7.3817, 7.3814, 7.3821, 7.3823, 7.3821, 7.3818, 7.3814, 7.381, 7.3806, 7.3813, 7.381, 7.3817, 7.3813, 7.3809, 7.3807, 7.3804, 7.38, 7.3796, 7.3802, 7.3804, 7.3813, 7.382, 7.3821, 7.3817, 7.3824, 7.383, 7.3816, 7.3813, 7.3809, 7.3805, 7.3814, 7.3811, 7.381, 7.3817, 7.3813, 7.3809, 7.3805, 7.3803, 7.38, 7.3829, 7.3869, 7.3878, 7.3875, 7.3875, 7.3882, 7.3878, 7.3874, 7.387, 7.3858, 7.3854, 7.385, 7.3852, 7.385, 7.3846, 7.3853, 7.3849, 7.3845, 7.3842, 7.3838, 7.3844, 7.3832, 7.3828, 7.3846, 7.3843, 7.3849, 7.3845, 7.3841, 7.3848, 7.3844, 7.3841, 7.3837, 7.3833, 7.3832, 7.3828, 7.3839, 7.3835, 7.3831, 7.3827, 7.3825, 7.3832, 7.3829, 7.3827, 7.385, 7.3863, 7.3859, 7.3865, 7.3871, 7.3867, 7.3863, 7.3872, 7.3868, 7.3866, 7.3885, 7.3872, 7.3869, 7.3865, 7.3872, 7.3869, 7.3898, 7.3906, 7.3903, 7.39, 7.3896, 7.3904, 7.3901, 7.3897, 7.3893, 7.3899, 7.3905, 7.3913, 7.3909, 7.3905, 7.3902, 7.3898, 7.3904, 7.39, 7.3898, 7.3957, 7.3953, 7.394, 7.3947, 7.3975, 7.3982, 7.3978, 7.3987, 7.3984, 7.3981, 7.3998, 7.4006, 7.4024, 7.4021, 7.4018, 7.4014, 7.4012, 7.4009, 7.4006, 7.4002, 7.4004, 7.4, 7.4007, 7.4015, 7.4012, 7.4008, 7.4007, 7.4013, 7.402, 7.4017, 7.4015, 7.4012, 7.4019, 7.4015, 7.4012, 7.4009, 7.4006, 7.4003, 7.401, 7.4016, 7.4022, 7.4018, 7.4014, 7.4011, 7.4007, 7.4004, 7.4001, 7.3998, 7.3995, 7.4002, 7.3999, 7.3997, 7.3994, 7.3991, 7.3987, 7.3984, 7.3981, 7.3979, 7.3986, 7.3984, 7.3982, 7.3979, 7.3996, 7.3992, 7.3989, 7.3986, 7.3993, 7.3989, 7.3986, 7.3982, 7.3978, 7.3975, 7.3971, 7.3967, 7.3963, 7.3971, 7.3978, 7.3974, 7.397, 7.3966, 7.3963, 7.396, 7.3966, 7.3962, 7.3958, 7.3954, 7.395, 7.3957, 7.3963, 7.3969, 7.3966, 7.3963, 7.397, 7.3966, 7.3963, 7.3961, 7.3967, 7.3974, 7.3982, 7.3978, 7.3974, 7.3971, 7.3967, 7.3966, 7.3962, 7.3969, 7.3965, 7.3963, 7.3969, 7.3977, 7.3988, 7.3995, 7.4002, 7.401, 7.4017, 7.4014, 7.4014, 7.4011, 7.4007, 7.4014, 7.4021, 7.4018, 7.4015, 7.4047, 7.4045, 7.4041, 7.4047, 7.4054, 7.406, 7.4057, 7.4064, 7.406, 7.4067, 7.4063, 7.407, 7.4069, 7.4066, 7.4064, 7.4061, 7.4057, 7.407, 7.4067, 7.4074, 7.4071, 7.4089, 7.4086, 7.4093, 7.409, 7.4101, 7.4097, 7.4094, 7.411, 7.4117, 7.4107, 7.4104, 7.4091, 7.4088, 7.4085, 7.4082, 7.4129, 7.4136, 7.4132, 7.4139, 7.4146, 7.4153, 7.415, 7.4146, 7.4142, 7.4139, 7.416, 7.4166, 7.4172, 7.4168, 7.4164, 7.417, 7.4168, 7.4175, 7.4171, 7.4167, 7.4173, 7.4171, 7.4177, 7.4173, 7.418, 7.4186, 7.4182, 7.4179, 7.4175, 7.4175, 7.4171, 7.4168, 7.4164, 7.4171, 7.4177, 7.4174, 7.4171, 7.4189, 7.4186, 7.4182, 7.4179, 7.4176, 7.4173, 7.4169, 7.4165, 7.4171, 7.4167, 7.4174, 7.418, 7.4186, 7.4192, 7.4189, 7.4179, 7.421, 7.4218, 7.4216, 7.4223, 7.422, 7.4217, 7.4224, 7.423, 7.4237, 7.4244, 7.424, 7.4236, 7.4242, 7.4239, 7.4236, 7.4232, 7.4238, 7.4244, 7.4251, 7.4258, 7.4254, 7.425, 7.4246, 7.4243, 7.4242, 7.4254, 7.4251, 7.425, 7.4259, 7.4259, 7.4256, 7.4247, 7.4244, 7.4241, 7.4238, 7.4244, 7.425, 7.4246, 7.4253, 7.4249, 7.4246, 7.4252, 7.4259, 7.4255, 7.4262, 7.4269, 7.4276, 7.4283, 7.4291, 7.4298, 7.4295, 7.4292, 7.4299, 7.4295], '192.168.122.113': [10.9024, 8.1601, 7.208, 6.8129, 6.6064, 6.4637, 6.4441, 6.4141, 6.2927, 6.2657, 6.209, 6.2029, 6.1718, 6.2001, 6.1376, 5.7958, 6.0899, 6.3522, 6.3098, 6.2653, 6.2386, 6.4406, 6.4073, 6.3661, 6.5319, 6.5282, 6.4957, 6.4948, 6.4635, 6.4318, 6.933, 7.0558, 7.0084, 6.9785, 6.9424, 6.9036, 7.1504, 7.1154, 7.0698, 7.1662, 7.1418, 7.1303, 6.9857, 6.947, 6.923, 6.8968, 6.8623, 6.8461, 6.824, 6.8033, 6.8758, 7.0579, 7.0411, 7.2128, 7.1765, 7.1528, 7.2253, 7.2043, 7.2593, 7.2253, 7.2802, 7.2483, 7.2173, 7.1963, 7.1785, 7.1777, 7.1604, 7.2144, 7.1857, 7.1723, 7.083, 7.0612, 7.0377, 7.0892, 7.0657, 7.048, 7.2915, 7.3357, 7.3171, 7.3073, 7.3589, 7.3331, 7.3091, 7.2862, 7.2625, 7.2407, 7.2196, 7.2166, 7.1978, 7.1889, 7.1719, 7.2114, 7.2554, 7.3003, 7.2838, 7.2718, 7.2622, 7.2559, 7.3613, 7.3944, 7.3793, 7.3601, 7.3464, 7.3279, 7.309, 7.2957, 7.2875, 7.3211, 7.3541, 7.3348, 7.364, 7.3601, 7.3464, 7.3282, 7.3606, 7.3929, 7.421, 7.4094, 7.3951, 7.3418, 7.3287, 7.362, 7.3493, 7.3777, 7.3701, 7.3957, 7.3879, 7.3787, 7.3739, 7.3635, 7.347, 7.3378, 7.3252, 7.3127, 7.2981, 7.2899, 7.2836, 7.2697, 7.2562, 7.2472, 7.2353, 7.2602, 7.252, 7.2385, 7.2597, 7.2505, 7.2743, 7.2611, 7.2918, 7.3184, 7.3057, 7.3283, 7.3156, 7.3058, 7.2959, 7.2837, 7.2782, 7.2667, 7.2553, 7.2427, 7.2306, 7.22, 7.212, 7.2013, 7.1993, 7.1973, 7.2199, 7.242, 7.2347, 7.2566, 7.2453, 7.2695, 7.2608, 7.2523, 7.2437, 7.2354, 7.2292, 7.2197, 7.1824, 7.1742, 7.1661, 7.16, 7.1501, 7.1678, 7.1881, 7.2053, 7.1967, 7.3323, 7.3216, 7.3966, 7.3854, 7.3783, 7.3726, 7.3912, 7.4113, 7.4294, 7.4185, 7.4074, 7.403, 7.3697, 7.362, 7.3794, 7.3691, 7.3647, 7.3552, 7.3505, 7.3678, 7.3847, 7.3754, 7.3653, 7.3552, 7.395, 7.3896, 7.3597, 7.352, 7.4208, 7.4369, 7.4278, 7.4315, 7.4465, 7.4383, 7.4294, 7.4225, 7.4176, 7.4109, 7.4043, 7.4195, 7.4133, 7.4041, 7.3956, 7.3906, 7.382, 7.3731, 7.3664, 7.3815, 7.3754, 7.3684, 7.4081, 7.4013, 7.3971, 7.3909, 7.3845, 7.3767, 7.37, 7.3647, 7.366, 7.3644, 7.3584, 7.3523, 7.3647, 7.3807, 7.3547, 7.3478, 7.3404, 7.3353, 7.33, 7.3241, 7.3392, 7.3528, 7.3492, 7.3412, 7.3335, 7.3465, 7.3386, 7.3504, 7.3432, 7.3567, 7.3693, 7.3621, 7.3553, 7.3489, 7.3418, 7.3548, 7.3491, 7.361, 7.3541, 7.4057, 7.3987, 7.3931, 7.3879, 7.3842, 7.3773, 7.3754, 7.3881, 7.388, 7.388, 7.3825, 7.3955, 7.3917, 7.3844, 7.3776, 7.3751, 7.3784, 7.3748, 7.3702, 7.4149, 7.4079, 7.4069, 7.4025, 7.4041, 7.3862, 7.3718, 7.4014, 7.3942, 7.4017, 7.3965, 7.4063, 7.4101, 7.4066, 7.4004, 7.3959, 7.3906, 7.3841, 7.3805, 7.3745, 7.3701, 7.3655, 7.3607, 7.3564, 7.3519, 7.3955, 7.3893, 7.3826, 7.393, 7.3886, 7.3825, 7.3812, 7.3751, 7.3691, 7.3796, 7.3732, 7.3695, 7.3639, 7.3579, 7.3528, 7.3474, 7.3582, 7.3526, 7.3489, 7.36, 7.3546, 7.3491, 7.345, 7.3407, 7.3357, 7.3616, 7.3569, 7.3509, 7.3452, 7.3544, 7.3495, 7.3442, 7.3398, 7.3369, 7.3311, 7.3274, 7.3218, 7.319, 7.3164, 7.3111, 7.3059, 7.3003, 7.2956, 7.2906, 7.2861, 7.2864, 7.301, 7.2966, 7.2784, 7.2747, 7.286, 7.2835, 7.2802, 7.2749, 7.2708, 7.253, 7.2516, 7.25, 7.2447, 7.2399, 7.2376, 7.233, 7.2292, 7.2126, 7.2092, 7.2042, 7.203, 7.2128, 7.208, 7.2172, 7.2291, 7.2408, 7.2442, 7.2399, 7.2361, 7.2462, 7.2557, 7.2518, 7.2755, 7.2921, 7.2887, 7.2845, 7.28, 7.3019, 7.2974, 7.3094, 7.2933, 7.2888, 7.2842, 7.2933, 7.2776, 7.274, 7.2702, 7.2658, 7.261, 7.2578, 7.2537, 7.2626, 7.2586, 7.2541, 7.2511, 7.2466, 7.2422, 7.2519, 7.26, 7.2689, 7.2656, 7.2504, 7.2457, 7.2544, 7.2523, 7.2492, 7.2566, 7.2651, 7.2727, 7.2815, 7.2786, 7.2761, 7.2718, 7.2708, 7.2674, 7.2639, 7.2603, 7.2564, 7.2542, 7.2551, 7.2511, 7.2474, 7.2558, 7.2528, 7.2512, 7.2584, 7.2554, 7.2539, 7.2501, 7.2458, 7.242, 7.2405, 7.2486, 7.2562, 7.254, 7.263, 7.2602, 7.256, 7.2532, 7.2391, 7.2351, 7.2426, 7.2393, 7.2466, 7.2423, 7.2608, 7.2681, 7.2655, 7.2613, 7.2594, 7.2574, 7.2541, 7.2503, 7.2468, 7.2427, 7.2506, 7.2477, 7.2448, 7.241, 7.2371, 7.2333, 7.2408, 7.2381, 7.234, 7.2315, 7.2459, 7.2421, 7.2404, 7.2471, 7.2439, 7.2407, 7.2373, 7.2545, 7.2633, 7.262, 7.2599, 7.2577, 7.2543, 7.2618, 7.2689, 7.2777, 7.2749, 7.271, 7.2783, 7.2745, 7.2815, 7.2885, 7.2847, 7.2811, 7.288, 7.2848, 7.3027, 7.2993, 7.306, 7.304, 7.3009, 7.308, 7.3041, 7.311, 7.3089, 7.3128, 7.3556, 7.3524, 7.3495, 7.3461, 7.3432, 7.3499, 7.3573, 7.3679, 7.3648, 7.3612, 7.3682, 7.3657, 7.3722, 7.3701, 7.3662, 7.3627, 7.3588, 7.3649, 7.3614, 7.3578, 7.3691, 7.3663, 7.3626, 7.3592, 7.3478, 7.3442, 7.3407, 7.3383, 7.3365, 7.333, 7.3315, 7.3281, 7.3245, 7.3221, 7.3208, 7.3173, 7.3057, 7.3025, 7.3012, 7.2979, 7.3043, 7.3018, 7.2985, 7.3045, 7.3017, 7.2995, 7.2971, 7.2938, 7.2999, 7.2966, 7.2943, 7.2912, 7.2887, 7.2854, 7.2838, 7.2806, 7.2802, 7.2803, 7.2862, 7.2844, 7.2989, 7.3051, 7.3033, 7.3008, 7.2984, 7.3038, 7.3014, 7.308, 7.3061, 7.313, 7.3112, 7.3084, 7.3144, 7.3114, 7.318, 7.315, 7.3119, 7.3176, 7.317, 7.315, 7.321, 7.318, 7.3148, 7.3116, 7.3162, 7.3134, 7.3101, 7.307, 7.3041, 7.3012, 7.3069, 7.3129, 7.3105, 7.3165, 7.3223, 7.3207, 7.3264, 7.3313, 7.3279, 7.3288, 7.3258, 7.3315, 7.3294, 7.3264, 7.3235, 7.3233, 7.329, 7.3345, 7.3312, 7.3294, 7.3284, 7.3264, 7.3231, 7.3282, 7.325, 7.3217, 7.312, 7.3177, 7.3161, 7.3056, 7.3111, 7.3167, 7.3137, 7.3111, 7.3086, 7.3216, 7.3187, 7.3243, 7.3137, 7.3192, 7.3189, 7.3165, 7.3143, 7.3146, 7.3117, 7.3166, 7.3223, 7.3227, 7.32, 7.3173, 7.3228, 7.3279, 7.3278, 7.3252, 7.3224, 7.3196, 7.3188, 7.3163, 7.3219, 7.319, 7.3161, 7.3131, 7.3103, 7.3243, 7.3214, 7.3199, 7.3171, 7.3219, 7.3192, 7.3164, 7.3143, 7.3115, 7.3086, 7.3066, 7.3114, 7.318, 7.3162, 7.3134, 7.3106, 7.3111, 7.3089, 7.3061, 7.3109, 7.3161, 7.3134, 7.3106, 7.3164, 7.3221, 7.3199, 7.3173, 7.3168, 7.314, 7.3194, 7.3248, 7.3221, 7.3279, 7.3252, 7.3299, 7.3283, 7.3263, 7.3237, 7.3213, 7.3193, 7.3169, 7.3144, 7.3055, 7.303, 7.3015, 7.3015, 7.3007, 7.298, 7.2962, 7.3118, 7.3095, 7.3076, 7.3051, 7.3027, 7.3077, 7.3051, 7.3023, 7.3014, 7.2989, 7.2962, 7.2937, 7.2925, 7.29, 7.2886, 7.2931, 7.2905, 7.2881, 7.2856, 7.2838, 7.2884, 7.2857, 7.2839, 7.2885, 7.2866, 7.2919, 7.2892, 7.2866, 7.2843, 7.2822, 7.2868, 7.291, 7.2921, 7.3001, 7.2975, 7.304, 7.3028, 7.3074, 7.306, 7.3106, 7.3082, 7.3129, 7.3174, 7.3156, 7.3071, 7.3052, 7.3027, 7.3011, 7.3055, 7.2989, 7.3067, 7.3387, 7.3367, 7.342, 7.3404, 7.3384, 7.3364, 7.3406, 7.3391, 7.3372, 7.3289, 7.327, 7.3313, 7.3289, 7.3334, 7.3316, 7.3293, 7.3398, 7.3377, 7.3409, 7.3384, 7.3365, 7.3342, 7.3316, 7.3298, 7.3275, 7.3294, 7.3269, 7.3244, 7.3218, 7.3258, 7.3237, 7.3211, 7.3186, 7.3165, 7.315, 7.3124, 7.3106, 7.3147, 7.3121, 7.3096, 7.3074, 7.3066, 7.3046, 7.3022, 7.2998, 7.2974, 7.2956, 7.2942, 7.292, 7.291, 7.2894, 7.2937, 7.2923, 7.29, 7.2886, 7.288, 7.2856, 7.284, 7.2822, 7.2804, 7.2785, 7.2761, 7.274, 7.2719, 7.2704, 7.2746, 7.2725, 7.2711, 7.2688, 7.2704, 7.2681, 7.2725, 7.2701, 7.2746, 7.2686, 7.2677, 7.2681, 7.2661, 7.2699, 7.2675, 7.2653, 7.2578, 7.2561, 7.2664, 7.2642, 7.2627, 7.2556, 7.2654, 7.2632, 7.2611, 7.2592, 7.2633, 7.2675, 7.2716, 7.2693, 7.2671, 7.2777, 7.2827, 7.2809, 7.2788, 7.2785, 7.282, 7.2863, 7.2839, 7.2827, 7.2808, 7.2845, 7.3067, 7.3045, 7.3085, 7.3147, 7.3124, 7.3102, 7.3142, 7.3181, 7.316, 7.3139, 7.3117, 7.3096, 7.309, 7.3089, 7.3071, 7.3053, 7.3043, 7.3021, 7.3001, 7.2985, 7.2913, 7.2893, 7.2873, 7.291, 7.2892, 7.3075, 7.3115, 7.3096, 7.3085, 7.3132, 7.3112, 7.3091, 7.313, 7.317, 7.3209, 7.3194, 7.3171, 7.315, 7.3413, 7.34, 7.3378, 7.3363, 7.3342, 7.332, 7.336, 7.334, 7.3381, 7.3362, 7.3342, 7.3331, 7.3373, 7.336, 7.3341, 7.3385, 7.3422, 7.3482, 7.3467, 7.3446, 7.3424, 7.3464, 7.3444, 7.3482, 7.341, 7.3389, 7.3432, 7.3468, 7.3503, 7.3553, 7.3532, 7.3575, 7.3563, 7.3552, 7.3536, 7.3521, 7.3506, 7.3485, 7.3417, 7.3449, 7.3432, 7.3418, 7.3398, 7.3384, 7.3369, 7.3353, 7.3336, 7.3315, 7.3296, 7.3331, 7.3315, 7.3298, 7.3334, 7.337, 7.3402, 7.3394, 7.3383, 7.3367, 7.3464, 7.3456, 7.344, 7.3428, 7.3412, 7.3391, 7.3381, 7.3362, 7.3377, 7.3364, 7.3343, 7.3323, 7.3303, 7.3287, 7.3324, 7.3312, 7.3293, 7.3383, 7.3368, 7.3368, 7.3348, 7.333, 7.3313, 7.3294, 7.3276, 7.3256, 7.324, 7.3273, 7.3255, 7.3242, 7.3229, 7.321, 7.3247, 7.3282, 7.3266, 7.3253, 7.3235, 7.3268, 7.3248, 7.3229, 7.3271, 7.3306, 7.329, 7.3321, 7.3307, 7.3289, 7.3274, 7.3208, 7.319, 7.3224, 7.3214, 7.3202, 7.3197, 7.318, 7.3165, 7.3155, 7.3141, 7.3171, 7.316, 7.3143, 7.3134, 7.3069, 7.3167, 7.3203, 7.3201, 7.3212, 7.3204, 7.3263, 7.3257, 7.3241, 7.3228, 7.322, 7.3307, 7.3293, 7.3279, 7.3269, 7.3407, 7.355, 7.3534, 7.3523, 7.353, 7.3588, 7.3577, 7.3563, 7.3544, 7.3529, 7.3466, 7.3448, 7.3429, 7.3467, 7.3448, 7.3436, 7.3417, 7.3409, 7.3443, 7.3473, 7.346, 7.349, 7.3473, 7.3506, 7.3493, 7.3524, 7.3465, 7.3455, 7.3492, 7.3525, 7.3518, 7.3505, 7.3492, 7.3527, 7.3512, 7.3498, 7.3484, 7.3465, 7.3452, 7.3487, 7.3473, 7.3501, 7.3482, 7.3488, 7.3534, 7.3515, 7.3508, 7.3445, 7.3525, 7.3508, 7.3495, 7.348, 7.3463, 7.3463, 7.3453, 7.3438, 7.3473, 7.3456, 7.3441, 7.3426, 7.341, 7.3394, 7.3384, 7.3368, 7.3352, 7.3389, 7.3374, 7.3358, 7.3511, 7.3494, 7.3519, 7.3554, 7.3692, 7.3675, 7.3704, 7.3686, 7.3668, 7.3651, 7.3637, 7.3627, 7.361, 7.3591, 7.3579, 7.361, 7.3601, 7.3627, 7.3618, 7.3605, 7.3633, 7.3661, 7.3643, 7.363, 7.3664, 7.3651, 7.3683, 7.3625, 7.3607, 7.3596, 7.3624, 7.3669, 7.3651, 7.3634, 7.3622, 7.3613, 7.3606, 7.3642, 7.3626, 7.3657, 7.3643, 7.3634, 7.3621, 7.3564, 7.3547, 7.3532, 7.3523, 7.3551, 7.3534, 7.3517, 7.3504, 7.3492, 7.3479, 7.3471, 7.3454, 7.3441, 7.3426, 7.3439, 7.3467, 7.3451, 7.3483, 7.3467, 7.345, 7.3394, 7.334, 7.3284, 7.327, 7.3256, 7.324, 7.3274, 7.3262, 7.3291, 7.3275, 7.3261, 7.3252, 7.3238, 7.3226, 7.3209, 7.3197, 7.3229, 7.3259, 7.3292, 7.3275, 7.3307, 7.3293, 7.3281, 7.3272, 7.3255, 7.3241, 7.3273, 7.3273, 7.3305, 7.3291, 7.3279, 7.3264, 7.3209, 7.3245, 7.3272, 7.3307, 7.3302, 7.3293, 7.3278, 7.3273, 7.3303, 7.3286, 7.3288, 7.3274, 7.3262, 7.3249, 7.3233, 7.3218, 7.3203, 7.3194, 7.314, 7.3178, 7.3166, 7.3149, 7.315, 7.316, 7.3119, 7.3111, 7.3097, 7.3084, 7.3031, 7.3018, 7.301, 7.3039, 7.3026, 7.3012, 7.3006, 7.2999, 7.2987, 7.2972, 7.2965, 7.2953, 7.2938, 7.2923, 7.2994, 7.3069, 7.3096, 7.3097, 7.3046, 7.3071, 7.3057, 7.3083, 7.3067, 7.3055, 7.3046, 7.3034, 7.302, 7.3045, 7.3036, 7.3024, 7.301, 7.3, 7.3025, 7.305, 7.3039, 7.3024, 7.3011, 7.2999, 7.3039, 7.2988, 7.2975, 7.2962, 7.2953, 7.2937, 7.2921, 7.2948, 7.2934, 7.2924, 7.2916, 7.2942, 7.3004, 7.2993, 7.2942, 7.2946, 7.2972, 7.3041, 7.3028, 7.3018, 7.3004, 7.3033, 7.302, 7.3011, 7.2996, 7.3047, 7.3034, 7.3019, 7.3048, 7.3037, 7.3062, 7.3053, 7.3042, 7.3029, 7.3019, 7.2967, 7.2994, 7.2984, 7.2978, 7.2965, 7.2954, 7.2942, 7.2928, 7.2914, 7.2901, 7.2928, 7.2955, 7.298, 7.2968, 7.296, 7.3109, 7.3094, 7.3082, 7.3108, 7.3092, 7.308, 7.3066, 7.3061, 7.305, 7.3036, 7.303, 7.3015, 7.3016, 7.3002, 7.2987, 7.2972, 7.2975, 7.3012, 7.3007, 7.3033, 7.302, 7.3006, 7.2999, 7.2949, 7.3082, 7.3068, 7.3055, 7.3043, 7.3042, 7.3032, 7.3019, 7.3004, 7.3023, 7.3011, 7.3037, 7.3064, 7.3056, 7.3041, 7.3027, 7.305, 7.3041, 7.3108, 7.3097, 7.3088, 7.3077, 7.3066, 7.3052, 7.304, 7.3027, 7.3023, 7.3014, 7.3012, 7.2999, 7.2985, 7.298, 7.2991, 7.3015, 7.304, 7.3028, 7.3217, 7.3244, 7.3276, 7.3231, 7.3217, 7.321, 7.3197, 7.3192, 7.3178, 7.3131, 7.3116, 7.3107, 7.3092, 7.3084, 7.311, 7.3097, 7.3084, 7.307, 7.3056, 7.3042, 7.303, 7.3016, 7.2971, 7.3005, 7.2996, 7.2951, 7.298, 7.2969, 7.2959, 7.2947, 7.2932, 7.2958, 7.2982, 7.3008, 7.2995, 7.2988, 7.298, 7.2974, 7.2964, 7.2951, 7.2939, 7.2925, 7.2913, 7.2904, 7.2891, 7.2879, 7.2869, 7.2859, 7.2851, 7.284, 7.2829, 7.2818, 7.281, 7.2802, 7.2788, 7.2777, 7.2767, 7.2754, 7.2781, 7.2806, 7.2792, 7.2779, 7.277, 7.2776, 7.2781, 7.2767, 7.2762, 7.2803, 7.2802, 7.2792, 7.2782, 7.2768, 7.2757, 7.2747, 7.2733, 7.276, 7.2749, 7.2775, 7.2763, 7.2751, 7.2747, 7.2736, 7.2725, 7.275, 7.2737, 7.2725, 7.2715, 7.2701, 7.2727, 7.2716, 7.2706, 7.2693, 7.2685, 7.2677, 7.267, 7.2657, 7.2647, 7.2671, 7.2659, 7.2649, 7.2652, 7.2639, 7.2627, 7.2614, 7.2635, 7.2622, 7.261, 7.2597, 7.2586, 7.261, 7.2599, 7.2586, 7.2574, 7.2746, 7.2735, 7.276, 7.2748, 7.2743, 7.2738, 7.2725, 7.2713, 7.2704, 7.2696, 7.2684, 7.268, 7.2637, 7.2629, 7.2654, 7.2641, 7.2631, 7.2619, 7.2611, 7.2598, 7.262, 7.2577, 7.2571, 7.264, 7.2628, 7.2616, 7.2606, 7.2629, 7.2652, 7.2639, 7.2628, 7.2651, 7.2639, 7.2642, 7.263, 7.262, 7.2611, 7.26, 7.2589, 7.2546, 7.2534, 7.2527, 7.2518, 7.2509, 7.2504, 7.2494, 7.249, 7.2478, 7.2465, 7.2455, 7.2445, 7.247, 7.2493, 7.2515, 7.2538, 7.2534, 7.2523, 7.2511, 7.2507, 7.2555, 7.2547, 7.2541, 7.2531, 7.252, 7.251, 7.2499, 7.2494, 7.2482, 7.247, 7.2462, 7.2485, 7.2479, 7.2467, 7.2492, 7.2483, 7.2476, 7.2464, 7.246, 7.2448, 7.2439, 7.2427, 7.2441, 7.2435, 7.2426, 7.2414, 7.2437, 7.2427, 7.242, 7.2414, 7.2406, 7.2401, 7.2421, 7.241, 7.24, 7.2426, 7.2423, 7.2413, 7.2406, 7.2402, 7.2394, 7.2382, 7.237, 7.236, 7.2348, 7.2338, 7.2296, 7.2286, 7.2278, 7.2266, 7.2235, 7.2227, 7.2217, 7.2208, 7.22, 7.22, 7.2189, 7.2184, 7.2173, 7.2162, 7.2151, 7.2141, 7.2131, 7.2119, 7.214, 7.2131, 7.2119, 7.2143, 7.2137, 7.2128, 7.2116, 7.2137, 7.2126, 7.2116, 7.2104, 7.2093, 7.2082, 7.2073, 7.2062, 7.2052, 7.2047, 7.2037, 7.2027, 7.2017, 7.201, 7.204, 7.2063, 7.2051, 7.2043, 7.2035, 7.2056, 7.2096, 7.2118, 7.2112, 7.2103, 7.2094, 7.2084, 7.2074, 7.2041, 7.2061, 7.2049, 7.2071, 7.2093, 7.2081, 7.2073, 7.2063, 7.2057, 7.2051, 7.2047, 7.2068, 7.2092, 7.2083, 7.213, 7.215, 7.2177, 7.2165, 7.2186, 7.2175, 7.2197, 7.2158, 7.2215, 7.2204, 7.2225, 7.2214, 7.2226, 7.2215, 7.2236, 7.2263, 7.2256, 7.2244, 7.2253, 7.2242, 7.2235, 7.2228, 7.2224, 7.2214, 7.2205, 7.2195, 7.2186, 7.2185, 7.2178, 7.2173, 7.2196, 7.2184, 7.2172, 7.2163, 7.2183, 7.2175, 7.2166, 7.2156, 7.2177, 7.2184, 7.2205, 7.2221, 7.2212, 7.2205, 7.2198, 7.2187, 7.2179, 7.2201, 7.2192, 7.2182, 7.2202, 7.2196, 7.2186, 7.2175, 7.2164, 7.2155, 7.2149, 7.2172, 7.2191, 7.2185, 7.2178, 7.2174, 7.2166, 7.2156, 7.2145, 7.2138, 7.21, 7.2089, 7.2082, 7.2076, 7.2067, 7.2061, 7.2057, 7.2049, 7.207, 7.2082, 7.2077, 7.2096, 7.2096, 7.209, 7.2123, 7.2144, 7.2165, 7.2187, 7.2178, 7.2201, 7.219, 7.2179, 7.22, 7.2192, 7.22, 7.2221, 7.2289, 7.2282, 7.2272, 7.2293, 7.2282, 7.2304, 7.2332, 7.2357, 7.235, 7.2371, 7.2363, 7.2355, 7.2347, 7.2339, 7.2329, 7.2348, 7.2338, 7.2333, 7.2354, 7.2345, 7.2358, 7.2349, 7.234, 7.2329, 7.2339, 7.2329, 7.2349, 7.2339, 7.2331, 7.2322, 7.2313, 7.2414, 7.2404, 7.2426, 7.242, 7.2412, 7.2433, 7.2423, 7.2413, 7.2433, 7.2434, 7.2455, 7.2446, 7.2468, 7.2488, 7.2479, 7.25, 7.2493, 7.2484, 7.2473, 7.2465, 7.2454, 7.2447, 7.2436, 7.2428, 7.2446, 7.2439, 7.2429, 7.2419, 7.2409, 7.2399, 7.2394, 7.2386, 7.2411, 7.2403, 7.2424, 7.2441, 7.2459, 7.2449, 7.244, 7.2431, 7.245, 7.2442, 7.2433, 7.2425, 7.2442, 7.2432, 7.2422, 7.2416, 7.2405, 7.2421, 7.241, 7.2401, 7.2393, 7.2383, 7.2376, 7.2344, 7.2364, 7.2359, 7.2381, 7.2372, 7.2362, 7.24, 7.2424, 7.2419, 7.2409, 7.2401, 7.2393, 7.2414, 7.2407, 7.2397, 7.2393, 7.241, 7.2405, 7.2395, 7.2385, 7.2395, 7.2415, 7.2406, 7.2396, 7.2387, 7.2382, 7.2374, 7.2367, 7.2359, 7.2355, 7.2346, 7.2339, 7.236, 7.2353, 7.2343, 7.2333, 7.2334, 7.2325, 7.2316, 7.2342, 7.2336, 7.2331, 7.2324, 7.2321, 7.2311, 7.2304, 7.2294, 7.2314, 7.2306, 7.2296, 7.2287, 7.2278, 7.2269, 7.2259, 7.2278, 7.2273, 7.2264, 7.2259, 7.2258, 7.2249, 7.2243, 7.2263, 7.2257, 7.2248, 7.2276, 7.2267, 7.2285, 7.2282, 7.2275, 7.2288, 7.2279, 7.2269, 7.2288, 7.2309, 7.233, 7.2324, 7.2322, 7.2343, 7.2336, 7.2327, 7.2331, 7.2337, 7.2361, 7.2354, 7.2348, 7.234, 7.2332, 7.2324, 7.2343, 7.2335, 7.2326, 7.2319, 7.2337, 7.2327, 7.2318, 7.2325, 7.2315, 7.2311, 7.2328, 7.2324, 7.2322, 7.243, 7.2448, 7.2464, 7.2586, 7.2604, 7.2621, 7.264, 7.2659, 7.2653, 7.2644, 7.2663, 7.2679, 7.2669, 7.2688, 7.2686, 7.2676, 7.2666, 7.2657, 7.2733, 7.27, 7.2691, 7.2687, 7.2707, 7.2673, 7.2696, 7.269, 7.2708, 7.2702, 7.2694, 7.2685, 7.2741, 7.2763, 7.2758, 7.2749, 7.2766, 7.2761, 7.2766, 7.2733, 7.2725, 7.2716, 7.2706, 7.2702, 7.2718, 7.2709, 7.27, 7.2691, 7.2683, 7.2699, 7.2689, 7.271, 7.2701, 7.2695, 7.2685, 7.2675, 7.2665, 7.2657, 7.2654, 7.2644, 7.2635, 7.2626, 7.2643, 7.2659, 7.2653, 7.2671, 7.2689, 7.2657, 7.2648, 7.2666, 7.2661, 7.2678, 7.2675, 7.2757, 7.2774, 7.2791, 7.2784, 7.2792, 7.2759, 7.275, 7.2767, 7.2785, 7.2803, 7.2794, 7.2785, 7.2776, 7.2767, 7.2763, 7.2754, 7.2798, 7.2819, 7.2812, 7.2813, 7.2834, 7.2827, 7.2817, 7.2832, 7.2824, 7.2843, 7.2835, 7.2828, 7.2848, 7.2842, 7.2855, 7.2846, 7.2838, 7.2831, 7.2823, 7.2816, 7.2809, 7.28, 7.2791, 7.2782, 7.2759, 7.2777, 7.2773, 7.2792, 7.2785, 7.2802, 7.2793, 7.2783, 7.2774, 7.2844, 7.286, 7.2857, 7.2874, 7.2865, 7.2855, 7.2851, 7.2842, 7.2833, 7.2825, 7.2816, 7.2808, 7.2799, 7.2792, 7.2808, 7.2825, 7.2854, 7.2844, 7.2861, 7.2852, 7.2843, 7.2862, 7.2879, 7.2896, 7.2886, 7.2903, 7.2894, 7.2915, 7.2933, 7.2924, 7.2915, 7.2906, 7.2897, 7.2888, 7.2882, 7.2911, 7.2928, 7.2918, 7.2909, 7.2901, 7.2892, 7.2884, 7.29, 7.2891, 7.2907, 7.29, 7.2896, 7.289, 7.288, 7.2896, 7.2864, 7.2856, 7.2877, 7.2873, 7.2865, 7.2856, 7.288, 7.2895, 7.2924, 7.2943, 7.2946, 7.3013, 7.3005, 7.3046, 7.3063, 7.3195, 7.321, 7.3227, 7.3248, 7.3241, 7.3234, 7.3227, 7.3219, 7.3236, 7.3241, 7.3272, 7.3269, 7.3262, 7.3253, 7.3244, 7.326, 7.3251, 7.3242, 7.3258, 7.325, 7.3241, 7.3232, 7.3238, 7.3229, 7.3245, 7.3238, 7.3254, 7.3269, 7.3287, 7.3302, 7.3319, 7.3313, 7.3304, 7.3296, 7.3287, 7.3304, 7.332, 7.3336, 7.3328, 7.3322, 7.3313, 7.3308, 7.3335, 7.3331, 7.3323, 7.3372, 7.3369, 7.336, 7.335, 7.3384, 7.3376, 7.3392, 7.3385, 7.3376, 7.3368, 7.336, 7.3376, 7.3368, 7.3359, 7.3356, 7.335, 7.3342, 7.3349, 7.3366, 7.3357, 7.3372, 7.3364, 7.3355, 7.3347, 7.3339, 7.3332, 7.3349, 7.3341, 7.3357, 7.3349, 7.3354, 7.3347, 7.3361, 7.3353, 7.3349, 7.3339, 7.333, 7.3321, 7.3312, 7.3303, 7.3301, 7.3295, 7.3287, 7.3279, 7.3294, 7.3286, 7.3277, 7.3291, 7.3283, 7.3274, 7.3316, 7.3311, 7.3304, 7.3297, 7.3312, 7.3328, 7.3343, 7.3314, 7.3306, 7.3297, 7.3312, 7.3304, 7.3299, 7.3305, 7.3296, 7.3314, 7.3309, 7.3302, 7.3318, 7.3345, 7.3371, 7.3365, 7.3358, 7.3351, 7.3366, 7.3357, 7.3351, 7.3344, 7.3336, 7.3329, 7.3322, 7.3338, 7.3355, 7.3348, 7.334, 7.3332, 7.3325, 7.3316, 7.3309, 7.3301, 7.3293, 7.3284, 7.3276, 7.3268, 7.3262, 7.3278, 7.3273, 7.3265, 7.3281, 7.3275, 7.327, 7.3261, 7.3253, 7.325, 7.3241, 7.3233, 7.3225, 7.3216, 7.3207, 7.3222, 7.3215, 7.3207, 7.3202, 7.3203, 7.3197, 7.3211, 7.3203, 7.3196, 7.3189, 7.3183, 7.3176, 7.3169, 7.3164, 7.3157, 7.3149, 7.3142, 7.3141, 7.3134, 7.3126, 7.3117, 7.3109, 7.3111, 7.3104, 7.3098, 7.3095, 7.3111, 7.3082, 7.3097, 7.309, 7.3062, 7.3055, 7.3048, 7.3042, 7.3037, 7.3029, 7.3023, 7.3014, 7.303, 7.3026, 7.302, 7.3012, 7.3015, 7.3011, 7.3002, 7.2997, 7.3176, 7.3169, 7.3185, 7.3176, 7.3192, 7.3187, 7.3179, 7.3194, 7.3219, 7.3246, 7.3266, 7.3258, 7.3272, 7.3266, 7.3259, 7.3253, 7.3246, 7.3218, 7.3233, 7.3247, 7.3238, 7.3231, 7.3228, 7.3226, 7.3274, 7.3272, 7.3287, 7.3303, 7.3298, 7.3293, 7.3288, 7.328, 7.3272, 7.3264, 7.3259, 7.3251, 7.3243, 7.3216, 7.3211, 7.3224, 7.3224, 7.3239, 7.3254, 7.3247, 7.3261, 7.3326, 7.3317, 7.3309, 7.3302, 7.3295, 7.3295, 7.3288, 7.3305, 7.3296, 7.3311, 7.3304, 7.3297, 7.329, 7.3282, 7.3275, 7.3269, 7.3261, 7.3254, 7.3246, 7.324, 7.3233, 7.3229, 7.3244, 7.3238, 7.3233, 7.3248, 7.3267, 7.3262, 7.3275, 7.327, 7.3286, 7.3301, 7.3292, 7.3292, 7.3309, 7.3304, 7.3295, 7.3288, 7.3282, 7.3297, 7.3288, 7.3285, 7.33, 7.3294, 7.3287, 7.328, 7.3295, 7.3363, 7.3382, 7.3396, 7.3411, 7.3403, 7.3375, 7.3367, 7.336, 7.3354, 7.3369, 7.3383, 7.3377, 7.339, 7.3434, 7.3428, 7.3422, 7.3416, 7.3408, 7.3402, 7.3396, 7.3389, 7.3408, 7.34, 7.3396, 7.3408, 7.3403, 7.3395, 7.3387, 7.3382, 7.3355, 7.3349, 7.3343, 7.3336, 7.3351, 7.3344, 7.336, 7.3353, 7.3344, 7.3356, 7.3348, 7.3341, 7.3336, 7.3331, 7.3344, 7.336, 7.3355, 7.3348, 7.3341, 7.3357, 7.3349, 7.3343, 7.3357, 7.3349, 7.3363, 7.339, 7.3363, 7.3356, 7.3348, 7.3361, 7.3375, 7.3367, 7.3361, 7.3375, 7.3369, 7.3363, 7.3376, 7.3371, 7.3366, 7.3402, 7.3395, 7.3388, 7.3382, 7.3395, 7.3388, 7.3382, 7.3376, 7.3368, 7.3398, 7.3412, 7.3405, 7.342, 7.3433, 7.3447, 7.344, 7.3454, 7.3453, 7.3427, 7.34, 7.35, 7.3494, 7.3467, 7.3465, 7.3463, 7.3457, 7.3451, 7.3447, 7.3441, 7.3457, 7.3474, 7.3468, 7.3482, 7.3474, 7.3469, 7.3472, 7.3465, 7.346, 7.3477, 7.3474, 7.3467, 7.3459, 7.3451, 7.3443, 7.3437, 7.3442, 7.3435, 7.3429, 7.3439, 7.3432, 7.3424, 7.3459, 7.3453, 7.3447, 7.3441, 7.3416, 7.341, 7.3431, 7.3445, 7.3438, 7.3434, 7.3427, 7.3421, 7.3436, 7.3428, 7.3422, 7.3417, 7.3411, 7.3403, 7.3412, 7.3405, 7.3418, 7.3431, 7.3423, 7.3415, 7.3408, 7.3401, 7.3396, 7.341, 7.3424, 7.3436, 7.3428, 7.344, 7.3433, 7.3426, 7.3419, 7.3412, 7.3412, 7.3405, 7.3404, 7.3378, 7.3386, 7.3381, 7.3397, 7.3413, 7.3407, 7.3402, 7.3398, 7.339, 7.3402, 7.3394, 7.3386, 7.3398, 7.3394, 7.3407, 7.3442, 7.3455, 7.3448, 7.3459, 7.3472, 7.3468, 7.3481, 7.3494, 7.3487, 7.348, 7.3472, 7.3467, 7.3441, 7.3455, 7.3447, 7.3442, 7.3434, 7.3448, 7.3441, 7.3434, 7.3469, 7.3483, 7.3475, 7.3468, 7.3463, 7.3458, 7.3452, 7.3463, 7.3476, 7.3469, 7.3486, 7.3461, 7.3435, 7.3448, 7.3447, 7.344, 7.3433, 7.3425, 7.3466, 7.3463, 7.3461, 7.3453, 7.3445, 7.3439, 7.3453, 7.3445, 7.3439, 7.3452, 7.3465, 7.3461, 7.3473, 7.3485, 7.3477, 7.3492, 7.3486, 7.3478, 7.3473, 7.3467, 7.346, 7.3453, 7.3466, 7.3459, 7.3453, 7.3447, 7.344, 7.3432, 7.3445, 7.3441, 7.3434, 7.3427, 7.3421, 7.3434, 7.3455, 7.345, 7.3449, 7.3441, 7.3455, 7.3469, 7.3466, 7.3459, 7.3453, 7.3446, 7.3458, 7.3451, 7.3448, 7.3441, 7.3448, 7.344, 7.3453, 7.3445, 7.3458, 7.348, 7.3473, 7.3486, 7.3479, 7.3473, 7.3467, 7.346, 7.3452, 7.3447, 7.346, 7.3453, 7.3446, 7.3439, 7.344, 7.3433, 7.3428, 7.3439, 7.3435, 7.3434, 7.3427, 7.3422, 7.3415, 7.3408, 7.3429, 7.3435, 7.3431, 7.3426, 7.3421, 7.3415, 7.3408, 7.3445, 7.344, 7.3433, 7.3429, 7.3424, 7.3418, 7.341, 7.3423, 7.3437, 7.3457, 7.347, 7.3465, 7.346, 7.3453, 7.3448, 7.3447, 7.3442, 7.3436, 7.3431, 7.3424, 7.342, 7.3413, 7.3408, 7.342, 7.3433, 7.3427, 7.3422, 7.3415, 7.3408, 7.3406, 7.3419, 7.3433, 7.3428, 7.3423, 7.3435, 7.3411, 7.3443, 7.3439, 7.3431, 7.3444, 7.3438, 7.3433, 7.3426, 7.3423, 7.3435, 7.3429, 7.3426, 7.3452, 7.3447, 7.344, 7.346, 7.3475, 7.3468, 7.346, 7.3455, 7.345, 7.3443, 7.3436, 7.3429, 7.3424, 7.3417, 7.341, 7.3407, 7.3401, 7.3394, 7.3406, 7.3399, 7.3411, 7.3404, 7.3397, 7.341, 7.3422, 7.3415, 7.3427, 7.3439, 7.3432, 7.3425, 7.3438, 7.3451, 7.3444, 7.3421, 7.3416, 7.3409, 7.3402, 7.3395, 7.339, 7.3385, 7.3381, 7.3374, 7.337, 7.3364, 7.3357, 7.3352, 7.3351, 7.3363, 7.3359, 7.3372, 7.3386, 7.3379, 7.3373, 7.3367, 7.3361, 7.3354, 7.3348, 7.3345, 7.3358, 7.3352, 7.3345, 7.3357, 7.335, 7.3344, 7.3337, 7.3332, 7.3345, 7.3361, 7.3341, 7.3336, 7.333, 7.3325, 7.3321, 7.3315, 7.3311, 7.3304, 7.3298, 7.3293, 7.3288, 7.3282, 7.3294, 7.3289, 7.3283, 7.326, 7.3254, 7.3248, 7.3243, 7.3236, 7.3229, 7.3225, 7.3219, 7.3214, 7.3208, 7.3202, 7.3195, 7.3207, 7.3201, 7.3197, 7.3209, 7.3203, 7.3216, 7.3229, 7.3241, 7.3235, 7.3246, 7.324, 7.3235, 7.3229, 7.3223, 7.3236, 7.3247, 7.3241, 7.3254, 7.3249, 7.3243, 7.3239, 7.3232, 7.3229, 7.3242, 7.3254, 7.3248, 7.3242, 7.3239, 7.3232, 7.3225, 7.3237, 7.3253, 7.323, 7.3242, 7.3236, 7.323, 7.3259, 7.3252, 7.3264, 7.3258, 7.3252, 7.3247, 7.324, 7.3236, 7.323, 7.3242, 7.3235, 7.3213, 7.319, 7.3187, 7.3181, 7.3174, 7.3167, 7.316, 7.3155, 7.3166, 7.3161, 7.3154, 7.3148, 7.3141, 7.3136, 7.3148, 7.3143, 7.3143, 7.3139, 7.3151, 7.315, 7.3162, 7.3159, 7.3153, 7.3146, 7.3141, 7.3153, 7.3147, 7.3144, 7.3156, 7.3153, 7.3168, 7.3179, 7.3172, 7.3191, 7.3185, 7.3185, 7.3179, 7.3172, 7.3166, 7.3161, 7.3156, 7.3153, 7.3148, 7.3142, 7.3137, 7.3132, 7.3146, 7.316, 7.3171, 7.3183, 7.3176, 7.3155, 7.3166, 7.316, 7.3137, 7.3132, 7.3143, 7.3138, 7.3135, 7.3131, 7.3124, 7.3119, 7.3112, 7.3123, 7.3116, 7.313, 7.3124, 7.3136, 7.3131, 7.3143, 7.3138, 7.3132, 7.3126, 7.3138, 7.3132, 7.3144, 7.3138, 7.3133, 7.3128, 7.3129, 7.3123, 7.3137, 7.3131, 7.3114, 7.3108, 7.3103, 7.3098, 7.3096, 7.3089, 7.3083, 7.3094, 7.309, 7.3083, 7.3078, 7.3074, 7.3069, 7.3063, 7.3075, 7.3069, 7.3049, 7.3043, 7.3036, 7.3032, 7.3082, 7.3076, 7.3054, 7.3048, 7.3042, 7.3055, 7.3103, 7.3081, 7.3093, 7.311, 7.3104, 7.3117, 7.3112, 7.3106, 7.3103, 7.311, 7.3104, 7.3116, 7.3115, 7.3127, 7.3145, 7.314, 7.3138, 7.3144, 7.3141, 7.3136, 7.3146, 7.3161, 7.3155, 7.3155, 7.3172, 7.3183, 7.3194, 7.3191, 7.3186, 7.318, 7.3173, 7.3167, 7.316, 7.3156, 7.3167, 7.3179, 7.3172, 7.3167, 7.3162, 7.3155, 7.3148, 7.3143, 7.3136, 7.3148, 7.3159, 7.3153, 7.3165, 7.3161, 7.3155, 7.3168, 7.3164, 7.3158, 7.3153, 7.3147, 7.3159, 7.3153, 7.3166, 7.3162, 7.3156, 7.3153, 7.3131, 7.3142, 7.3137, 7.3117, 7.3112, 7.3106, 7.3102, 7.3098, 7.3096, 7.309, 7.3101, 7.3131, 7.3127, 7.3123, 7.3101, 7.3095, 7.3089, 7.3084, 7.3079, 7.309, 7.3086, 7.3082, 7.3079, 7.3074, 7.3085, 7.3095, 7.3108, 7.3103, 7.3097, 7.3092, 7.3087, 7.3081, 7.3077, 7.307, 7.3099, 7.3093, 7.3089, 7.3085, 7.3096, 7.3091, 7.3084, 7.3095, 7.309, 7.3087, 7.3087, 7.3065, 7.3044, 7.3039, 7.3035, 7.3046, 7.3057, 7.3054, 7.3049, 7.3043, 7.3053, 7.3064, 7.3059, 7.3055, 7.3066, 7.3076, 7.3087, 7.3082, 7.3078, 7.3072, 7.3068, 7.3062, 7.3056, 7.3034, 7.3028, 7.3022, 7.3033, 7.3029, 7.3042, 7.3053, 7.3066, 7.3112, 7.3106, 7.3102, 7.3096, 7.309, 7.3085, 7.3079, 7.309, 7.312, 7.3114, 7.3161, 7.3168, 7.3163, 7.3175, 7.317, 7.3165, 7.3162, 7.3157, 7.3152, 7.3147, 7.3157, 7.3168, 7.3162, 7.3172, 7.3166, 7.3162, 7.3156, 7.3168, 7.3162, 7.3156, 7.3151, 7.3146, 7.314, 7.3137, 7.3131, 7.313, 7.3127, 7.3138, 7.3149, 7.3144, 7.3155, 7.3166, 7.3178, 7.3172, 7.3166, 7.3161, 7.3163, 7.3212, 7.3207, 7.3202, 7.3196, 7.3193, 7.3187, 7.3198, 7.3193, 7.3189, 7.3234, 7.3228, 7.3225, 7.3221, 7.3216, 7.321, 7.3208, 7.3253, 7.3248, 7.3242, 7.325, 7.3263, 7.3276, 7.3272, 7.3266, 7.3276, 7.3287, 7.3281, 7.3275, 7.3269, 7.3266, 7.326, 7.3254, 7.3265, 7.3261, 7.3273, 7.3253, 7.3247, 7.3241, 7.3235, 7.3247, 7.3248, 7.3243, 7.3237, 7.3232, 7.3226, 7.322, 7.3232, 7.3242, 7.3237, 7.3233, 7.3229, 7.3224, 7.3223, 7.3217, 7.3227, 7.3221, 7.3215, 7.3211, 7.3222, 7.3216, 7.3243, 7.3238, 7.3232, 7.3226, 7.322, 7.3215, 7.3232, 7.3229, 7.3241, 7.3257, 7.3251, 7.3245, 7.3239, 7.3233, 7.3244, 7.3238, 7.3234, 7.3215, 7.3226, 7.3221, 7.3216, 7.3213, 7.3208, 7.3202, 7.328, 7.3275, 7.3269, 7.3283, 7.3277, 7.3272, 7.3282, 7.3292, 7.3286, 7.3298, 7.3294, 7.3288, 7.3282, 7.3276, 7.3276, 7.3272, 7.3284, 7.328, 7.3292, 7.3286, 7.3281, 7.3277, 7.3276, 7.3273, 7.3268, 7.3296, 7.3306, 7.3317, 7.3327, 7.3339, 7.3336, 7.3333, 7.3327, 7.3322, 7.3318, 7.3328, 7.3324, 7.3334, 7.3329, 7.3324, 7.3335, 7.3363, 7.3359, 7.3355, 7.3349, 7.3359, 7.3354, 7.3348, 7.3343, 7.3337, 7.3332, 7.3342, 7.3337, 7.3348, 7.3342, 7.3336, 7.3333, 7.3327, 7.3323, 7.3318, 7.3329, 7.3324, 7.3318, 7.3328, 7.3338, 7.3332, 7.3358, 7.3358, 7.3353, 7.3348, 7.3358, 7.336, 7.337, 7.3366, 7.336, 7.3361, 7.3355, 7.335, 7.3346, 7.334, 7.3334, 7.333, 7.3329, 7.3325, 7.3321, 7.3331, 7.3326, 7.332, 7.333, 7.3327, 7.3338, 7.3333, 7.3328, 7.3324, 7.3319, 7.3314, 7.3325, 7.332, 7.3315, 7.3309, 7.3306, 7.33, 7.3296, 7.329, 7.3301, 7.3295, 7.3289, 7.3299, 7.3294, 7.3289, 7.3285, 7.3292, 7.3306, 7.3303, 7.3299, 7.3294, 7.3291, 7.3286, 7.3281, 7.3276, 7.327, 7.3265, 7.3259, 7.3254, 7.3248, 7.3242, 7.3254, 7.3248, 7.3229, 7.3238, 7.3232, 7.3242, 7.3238, 7.3258, 7.3275, 7.3271, 7.3283, 7.3279, 7.3273, 7.3268, 7.3279, 7.3289, 7.3286, 7.3282, 7.3263, 7.326, 7.3255, 7.3264, 7.3259, 7.3285, 7.328, 7.3277, 7.3287, 7.3283, 7.3289, 7.3299, 7.3295, 7.329, 7.33, 7.3295, 7.3292, 7.3286, 7.328, 7.3276, 7.327, 7.3264, 7.3261, 7.3255, 7.3251, 7.3246, 7.3241, 7.3235, 7.3232, 7.3226, 7.3315, 7.3325, 7.3335, 7.3331, 7.3327, 7.3308, 7.3335, 7.336, 7.3388, 7.3409, 7.3432, 7.3426, 7.3423, 7.3434, 7.3444, 7.3457, 7.3467, 7.3481, 7.3478, 7.3487, 7.3498, 7.3493, 7.3497, 7.3507, 7.3503, 7.3504, 7.3499, 7.3493, 7.3489, 7.3485, 7.3481, 7.3477, 7.3471, 7.3481, 7.3492, 7.3496, 7.3506, 7.3514, 7.351, 7.3507, 7.3501, 7.35, 7.3502, 7.3499, 7.3493, 7.3487, 7.3499, 7.3493, 7.3521, 7.3518, 7.3513, 7.351, 7.3506, 7.35, 7.3497, 7.3508, 7.3503, 7.3498, 7.3515, 7.351, 7.3506, 7.3501, 7.3495, 7.3505, 7.3501, 7.3495, 7.3492, 7.3488, 7.3484, 7.3494, 7.3493, 7.3487, 7.3481, 7.3477, 7.3486, 7.348, 7.348, 7.3477, 7.348, 7.3475, 7.347, 7.3465, 7.3462, 7.3459, 7.3453, 7.3449, 7.3443, 7.344, 7.3435, 7.343, 7.3424, 7.3418, 7.3412, 7.3408, 7.3403, 7.3412, 7.3408, 7.3403, 7.3398, 7.3393, 7.3402, 7.3384, 7.338, 7.3378, 7.3373, 7.3367, 7.3361, 7.3355, 7.3369, 7.338, 7.3376, 7.337, 7.3365, 7.336, 7.3355, 7.3365, 7.3366, 7.3347, 7.3344, 7.3341, 7.334, 7.3353, 7.3348, 7.3354, 7.3348, 7.3343, 7.3338, 7.3332, 7.3341, 7.3336, 7.3332, 7.3328, 7.3323, 7.3317, 7.3323, 7.3333, 7.3327, 7.3337, 7.3349, 7.3345, 7.334, 7.3322, 7.3334, 7.3331, 7.3328, 7.334, 7.3334, 7.3341, 7.3336, 7.3331, 7.3326, 7.3322, 7.3319, 7.3329, 7.3324, 7.3319, 7.333, 7.3325, 7.332, 7.3315, 7.3351, 7.336, 7.3355, 7.3352, 7.3352, 7.3364, 7.336, 7.3357, 7.3351, 7.3348, 7.3358, 7.3368, 7.3369, 7.3366, 7.3362, 7.3357, 7.3354, 7.3364, 7.3372, 7.3367, 7.3362, 7.3357, 7.3367, 7.3363, 7.3373, 7.3367, 7.3377, 7.3372, 7.3368, 7.3363, 7.3359, 7.3355, 7.3349, 7.3359, 7.3354, 7.3363, 7.3346, 7.3355, 7.3363, 7.3346, 7.3397, 7.3392, 7.3389, 7.3384, 7.3379, 7.3389, 7.3383, 7.3378, 7.3373, 7.3368, 7.3364, 7.3359, 7.3363, 7.3366, 7.3362, 7.3359, 7.3363, 7.3359, 7.3357, 7.3366, 7.3374, 7.3389, 7.3387, 7.3383, 7.338, 7.3375, 7.3384, 7.3379, 7.3373, 7.3368, 7.335, 7.336, 7.3356, 7.3353, 7.3378, 7.3373, 7.3382, 7.3378, 7.3388, 7.3383, 7.3379, 7.3374, 7.3383, 7.3379, 7.3375, 7.337, 7.3366, 7.336, 7.3355, 7.3353, 7.3362, 7.3358, 7.3368, 7.3363, 7.3359, 7.3355, 7.3352, 7.3349, 7.3348, 7.338, 7.3388, 7.3384, 7.338, 7.3376, 7.3372, 7.3366, 7.3362, 7.3374, 7.337, 7.3365, 7.3363, 7.3372, 7.3369, 7.3353, 7.3349, 7.3361, 7.3358, 7.3368, 7.3376, 7.3371, 7.3394, 7.3391, 7.34, 7.3396, 7.3392, 7.34, 7.3396, 7.3391, 7.34, 7.3398, 7.3408, 7.3417, 7.3426, 7.342, 7.3415, 7.341, 7.3404, 7.3399, 7.3393, 7.3391, 7.3399, 7.3408, 7.3417, 7.3414, 7.3409, 7.3404, 7.3414, 7.341, 7.3406, 7.3404, 7.3399, 7.3395, 7.339, 7.3385, 7.3411, 7.3393, 7.3388, 7.3397, 7.3393, 7.3403, 7.3458, 7.3453, 7.3463, 7.3462, 7.3457, 7.3454, 7.3449, 7.3449, 7.3444, 7.3439, 7.3434, 7.3432, 7.3428, 7.3423, 7.3419, 7.3415, 7.3424, 7.3419, 7.3415, 7.341, 7.341, 7.3408, 7.3403, 7.3412, 7.3408, 7.3405, 7.3407, 7.3403, 7.3418, 7.3416, 7.3423, 7.3418, 7.3413, 7.3408, 7.3403, 7.3398, 7.3393, 7.339, 7.3391, 7.34, 7.3397, 7.3392, 7.3391, 7.3393, 7.3402, 7.341, 7.3419, 7.3428, 7.3435, 7.3444, 7.3452, 7.3475, 7.3498, 7.3494, 7.3489, 7.3485, 7.348, 7.3516, 7.3527, 7.3538, 7.3536, 7.3533, 7.3528, 7.3524, 7.352, 7.3516, 7.3525, 7.352, 7.3515, 7.3511, 7.3509, 7.3504, 7.3499, 7.3494, 7.3491, 7.3486, 7.3481, 7.3476, 7.3473, 7.3469, 7.3465, 7.346, 7.3469, 7.3464, 7.3462, 7.3457, 7.3457, 7.3453, 7.3449, 7.3444, 7.3439, 7.3436, 7.3432, 7.3427, 7.3424, 7.342, 7.3415, 7.3411, 7.3408, 7.3403, 7.3399, 7.3397, 7.3392, 7.3388, 7.3397, 7.3394, 7.3389, 7.3384, 7.338, 7.339, 7.3399, 7.3395, 7.3392, 7.3387, 7.3384, 7.3379, 7.3375, 7.337, 7.3365, 7.3375, 7.3371, 7.3366, 7.3362, 7.3357, 7.3379, 7.3374, 7.3383, 7.3378, 7.3374, 7.339, 7.3387, 7.3434, 7.343, 7.3427, 7.3436, 7.3432, 7.3427, 7.3435, 7.3432, 7.3427, 7.3422, 7.3417, 7.3413, 7.3412, 7.3407, 7.3402, 7.34, 7.3402, 7.3399, 7.3396, 7.3394, 7.3391, 7.3387, 7.3383, 7.3379, 7.3375, 7.3371, 7.3367, 7.3363, 7.3357, 7.3366, 7.3363, 7.3358, 7.3356, 7.3352, 7.3378, 7.3386, 7.3381, 7.3377, 7.3372, 7.3367, 7.3375, 7.337, 7.3379, 7.3406, 7.3402, 7.3399, 7.3409, 7.3405, 7.3408, 7.3403, 7.3399, 7.3402, 7.3411, 7.3407, 7.339, 7.3432, 7.3429, 7.3426, 7.3422, 7.3435, 7.3443, 7.3438, 7.3434, 7.343, 7.3426, 7.3452, 7.3448, 7.3444, 7.3439, 7.3453, 7.345, 7.3459, 7.3454, 7.347, 7.3467, 7.3463, 7.3477, 7.3485, 7.3482, 7.3477, 7.3473, 7.3481, 7.3476, 7.3485, 7.3481, 7.3484, 7.3482, 7.3478, 7.3473, 7.3457, 7.3453, 7.3451, 7.3448, 7.346, 7.3456, 7.3439, 7.3434, 7.3432, 7.3443, 7.3451, 7.346, 7.3457, 7.3466, 7.3461, 7.3456, 7.3466, 7.3474, 7.3469, 7.3464, 7.3473, 7.347, 7.3479, 7.3475, 7.3472, 7.3482, 7.348, 7.3475, 7.349, 7.3499, 7.3498, 7.3506, 7.3517, 7.3512, 7.3508, 7.3504, 7.3514, 7.351, 7.3505, 7.3501, 7.3496, 7.3492, 7.3501, 7.3497, 7.3494, 7.349, 7.3499, 7.3508, 7.3504, 7.35, 7.3495, 7.3504, 7.3501, 7.3509, 7.3517, 7.3512, 7.3507, 7.3502, 7.3497, 7.3505, 7.35, 7.3495, 7.3491, 7.3486, 7.3494, 7.3489, 7.3484, 7.3479, 7.3487, 7.3482, 7.348, 7.3476, 7.3472, 7.348, 7.3476, 7.3473, 7.3481, 7.3476, 7.3471, 7.3468, 7.3476, 7.3471, 7.3467, 7.3475, 7.3472, 7.3467, 7.3463, 7.3458, 7.3454, 7.345, 7.3459, 7.3457, 7.3453, 7.3448, 7.3443, 7.3438, 7.3447, 7.3442, 7.3464, 7.346, 7.3456, 7.3452, 7.3448, 7.3457, 7.3466, 7.3461, 7.3469, 7.3465, 7.3461, 7.3444, 7.3458, 7.3458, 7.3453, 7.345, 7.3472, 7.3501, 7.3498, 7.3506, 7.3502, 7.3514, 7.351, 7.3506, 7.3502, 7.3498, 7.3494, 7.3489, 7.3497, 7.3495, 7.349, 7.3485, 7.3482, 7.3477, 7.3474, 7.3469, 7.3464, 7.3459, 7.3464, 7.3459, 7.3455, 7.3451, 7.346, 7.3455, 7.3452, 7.3453, 7.3449, 7.3445, 7.344, 7.3435, 7.3445, 7.3441, 7.3437, 7.3433, 7.3429, 7.3425, 7.3435, 7.343, 7.3429, 7.3425, 7.343, 7.3458, 7.3455, 7.3451, 7.3447, 7.3442, 7.3437, 7.3434, 7.343, 7.3429, 7.3439, 7.3436, 7.342, 7.3418, 7.3414, 7.3423, 7.3419, 7.3427, 7.3422, 7.3418, 7.3414, 7.3409, 7.3405, 7.34, 7.3409, 7.3405, 7.3402, 7.3399, 7.344, 7.3448, 7.3456, 7.3464, 7.3461, 7.3457, 7.3452, 7.3436, 7.3445, 7.3443, 7.3438, 7.3435, 7.343, 7.3426, 7.3435, 7.3431, 7.3454, 7.3449, 7.3458, 7.3453, 7.345, 7.3445, 7.3443, 7.3451, 7.3449, 7.3446, 7.3467, 7.3465, 7.346, 7.3456, 7.3504, 7.3503, 7.3513, 7.3509, 7.3517, 7.3512, 7.3508, 7.3505, 7.3501, 7.3498, 7.3495, 7.3491, 7.3487, 7.3487, 7.3483, 7.348, 7.3476, 7.3472, 7.3468, 7.3484, 7.348, 7.3477, 7.3476, 7.3472, 7.3467, 7.3475, 7.3472, 7.3481, 7.3477, 7.3473, 7.3481, 7.3477, 7.3477, 7.3474, 7.347, 7.3465, 7.3463, 7.347, 7.3465, 7.346, 7.3456, 7.3452, 7.3459, 7.3467, 7.3463, 7.346, 7.3456, 7.3453, 7.345, 7.3447, 7.3443, 7.3439, 7.3434, 7.3429, 7.3479, 7.3475, 7.3471, 7.3468, 7.3476, 7.3491, 7.3488, 7.3508, 7.3503, 7.3498, 7.3483, 7.3479, 7.3475, 7.347, 7.3466, 7.3462, 7.3457, 7.3454, 7.3449, 7.3445, 7.3454, 7.345, 7.3447, 7.3459, 7.3468, 7.3477, 7.3486, 7.3495, 7.3491, 7.351, 7.3505, 7.35, 7.35, 7.3496, 7.3491, 7.3487, 7.3483, 7.3491, 7.3505, 7.35, 7.3495, 7.3492, 7.35, 7.3508, 7.3503, 7.3511, 7.3507, 7.3504, 7.3502, 7.351, 7.3518, 7.3513, 7.351, 7.3516, 7.3511, 7.3507, 7.3503, 7.3512, 7.3507, 7.3515, 7.3513, 7.3521, 7.3516, 7.3524, 7.3519, 7.3515, 7.3523, 7.3518, 7.3527, 7.3535, 7.3543, 7.3539, 7.3547, 7.3555, 7.3551, 7.355, 7.3546, 7.3544, 7.354, 7.3536, 7.3531, 7.3528, 7.3539, 7.3547, 7.3555, 7.3551, 7.3546, 7.3542, 7.3538, 7.3533, 7.3542, 7.3537, 7.3545, 7.3576, 7.3573, 7.3581, 7.3577, 7.3574, 7.3581, 7.3592, 7.3588, 7.3586, 7.3583, 7.3579, 7.3587, 7.3595, 7.359, 7.3598, 7.3594, 7.3602, 7.3597, 7.3605, 7.3613, 7.3609, 7.3605, 7.3601, 7.3609, 7.3618, 7.3613, 7.362, 7.3616, 7.3612, 7.3609, 7.3605, 7.3637, 7.3633, 7.3629, 7.3624, 7.3619, 7.3615, 7.363, 7.3656, 7.3663, 7.3658, 7.3653, 7.3649, 7.3645, 7.3642, 7.3638, 7.3634, 7.3664, 7.3662, 7.3658, 7.366, 7.3672, 7.3668, 7.3664, 7.3659, 7.3667, 7.3663, 7.366, 7.3667, 7.3669, 7.3664, 7.366, 7.3656, 7.3665, 7.3661, 7.3656, 7.3652, 7.3648, 7.3645, 7.3653, 7.3649, 7.3647, 7.3644, 7.3642, 7.365, 7.3646, 7.3642, 7.3662, 7.367, 7.3678, 7.3675, 7.371, 7.3705, 7.3701, 7.3708, 7.374, 7.3748, 7.3743, 7.3757, 7.3753, 7.375, 7.3758, 7.3758, 7.3754, 7.3739, 7.3734, 7.3729, 7.3738, 7.3736, 7.3731, 7.3716, 7.3723, 7.3731, 7.3727, 7.3735, 7.3731, 7.3728, 7.3735, 7.3755, 7.3751, 7.3748, 7.3744, 7.374, 7.3748, 7.3744, 7.3739, 7.3745, 7.3742, 7.374, 7.3737, 7.3733, 7.3743, 7.3739, 7.3734, 7.3742, 7.3738, 7.3734, 7.3743, 7.3739, 7.3736, 7.3733, 7.3729, 7.3736, 7.3732, 7.3742, 7.3738, 7.3734, 7.3742, 7.3739, 7.3743, 7.3767, 7.3765, 7.3761, 7.3758, 7.3754, 7.375, 7.3806, 7.3815, 7.3811, 7.3808, 7.3805, 7.3813, 7.3822, 7.3819, 7.3828, 7.3824, 7.3819, 7.3815, 7.3811, 7.3809, 7.3817, 7.3816, 7.3823, 7.382, 7.3816, 7.3813, 7.3821, 7.3829, 7.3837, 7.3835, 7.3833, 7.3832, 7.3828, 7.3837, 7.3834, 7.3829, 7.3825, 7.3821, 7.3816, 7.3824, 7.382, 7.3818, 7.3815, 7.3823, 7.3819, 7.3815, 7.381, 7.3818, 7.3814, 7.3822, 7.3819, 7.3827, 7.3823, 7.382, 7.3815, 7.3811, 7.3819, 7.3816, 7.3812, 7.3813, 7.382, 7.3816, 7.3816, 7.3813, 7.3809, 7.3807, 7.3803, 7.3799, 7.3795, 7.3804, 7.3812, 7.3821, 7.3817, 7.3814, 7.382, 7.3816, 7.3812, 7.3807, 7.3804, 7.3812, 7.3807, 7.3804, 7.38, 7.3796, 7.3803, 7.381, 7.3814, 7.3811, 7.3807, 7.3827, 7.3823, 7.382, 7.3852, 7.3848, 7.3845, 7.3853, 7.3849, 7.3846, 7.3843, 7.384, 7.3837, 7.3845, 7.3853, 7.3848, 7.3846, 7.3843, 7.3838, 7.3834, 7.3832, 7.3828, 7.3835, 7.3832, 7.3831, 7.3838, 7.3847, 7.3843, 7.3839, 7.3835, 7.3831, 7.3838, 7.3833, 7.3829, 7.3826, 7.3832, 7.3829, 7.3825, 7.3833, 7.3841, 7.3838, 7.3845, 7.383, 7.3827, 7.3823, 7.3819, 7.3826, 7.3833, 7.383, 7.3828, 7.3825, 7.3822, 7.3818, 7.3826, 7.3833, 7.3829, 7.3825, 7.3833, 7.3829, 7.3824, 7.3821, 7.3831, 7.3816, 7.3813, 7.381, 7.3806, 7.3813, 7.381, 7.3818, 7.3814, 7.3821, 7.3854, 7.3861, 7.3902, 7.391, 7.3908, 7.3905, 7.3901, 7.3898, 7.3894, 7.389, 7.3897, 7.3892, 7.3888, 7.3884, 7.3891, 7.3887, 7.3883, 7.3879, 7.3876, 7.3874, 7.3881, 7.3877, 7.3885, 7.3893, 7.389, 7.3886, 7.3884, 7.3881, 7.3888, 7.3918, 7.3914, 7.3915, 7.3916, 7.3922, 7.3919, 7.3924, 7.392, 7.3917, 7.3913, 7.3909, 7.3905, 7.3902, 7.3899, 7.3919, 7.3915, 7.3911, 7.3908, 7.3905, 7.3901, 7.391, 7.3906, 7.3903, 7.3899, 7.3896, 7.3902, 7.3899, 7.3906, 7.3913, 7.392, 7.3917, 7.3925, 7.3921, 7.3918, 7.3915, 7.3911, 7.3907, 7.3903, 7.391, 7.3906, 7.3902, 7.3898, 7.3939, 7.3935, 7.3942, 7.3939, 7.3946, 7.3943, 7.394, 7.3937, 7.3933, 7.3929, 7.3924, 7.392, 7.3916, 7.3912, 7.3919, 7.3926, 7.3934, 7.393, 7.3926, 7.3912, 7.3909, 7.3927, 7.3934, 7.3941, 7.3948, 7.3945, 7.3942, 7.394, 7.3936, 7.3934, 7.3952, 7.3951, 7.3948, 7.3945, 7.4008, 7.4004, 7.4, 7.3986, 7.3981, 7.3977, 7.3973, 7.397, 7.3966, 7.3962, 7.3959, 7.3955, 7.3951, 7.3947, 7.3943, 7.3951, 7.3946, 7.3955, 7.3952, 7.3949, 7.3945, 7.3959, 7.3956, 7.3999, 7.4008, 7.4026, 7.4025, 7.4032, 7.4029, 7.4036, 7.4034, 7.4033, 7.4037, 7.4045, 7.4041, 7.4038, 7.4036, 7.4032, 7.4039, 7.4036, 7.4044, 7.4041, 7.4038, 7.4045, 7.4044, 7.404, 7.4036, 7.4034, 7.403, 7.4037, 7.4044, 7.4041, 7.4038, 7.4024, 7.4032, 7.4039, 7.4046, 7.4043, 7.4051, 7.4058, 7.406, 7.4057, 7.4053, 7.4049, 7.4056, 7.4063, 7.4051, 7.4047, 7.4043, 7.4041, 7.4027, 7.4023, 7.4019, 7.4019, 7.4016, 7.4033, 7.4036, 7.4032, 7.4029, 7.4025, 7.4021, 7.4018, 7.4024, 7.402, 7.4017, 7.4024, 7.402, 7.4016, 7.4002, 7.3998, 7.3996, 7.4004, 7.4001, 7.3999, 7.3997, 7.3994, 7.3991, 7.3998, 7.3994, 7.3991, 7.3998, 7.3994, 7.3991, 7.3988, 7.3985, 7.3982, 7.3978, 7.3974, 7.3972, 7.3969, 7.3966, 7.3973, 7.397, 7.3967, 7.3963, 7.3965, 7.3962, 7.3969, 7.3976, 7.3973, 7.3969, 7.3965, 7.3972, 7.3968, 7.3965, 7.3961, 7.3957, 7.3954, 7.3951, 7.3958, 7.3954, 7.395, 7.3947, 7.3933, 7.394, 7.3937, 7.3933, 7.3929, 7.3926, 7.3922, 7.3919, 7.3926, 7.3923, 7.3909, 7.3906, 7.3902, 7.3909, 7.3916, 7.3913, 7.3909, 7.3916, 7.3923, 7.3919, 7.3915, 7.3912, 7.3908, 7.3904, 7.3911, 7.3908, 7.3905, 7.3901, 7.3898, 7.3895, 7.3892, 7.3888, 7.3884, 7.388, 7.3887, 7.3894, 7.3902, 7.3898, 7.3894, 7.389, 7.3888, 7.3884, 7.3882, 7.3889, 7.3885, 7.3882, 7.3889, 7.3885, 7.3892, 7.3913, 7.3919, 7.3915, 7.3912, 7.3909, 7.3907, 7.3903, 7.3901, 7.3898, 7.3895, 7.3902, 7.3899, 7.3895, 7.3891, 7.3887, 7.3894, 7.3901, 7.3907, 7.3914, 7.3932, 7.3949, 7.3945, 7.3941, 7.3948, 7.3944, 7.3942, 7.3938, 7.3934, 7.3932, 7.3928, 7.3957, 7.3944, 7.3962, 7.3959, 7.3977, 7.3974, 7.3972, 7.397, 7.3967, 7.3972, 7.3979, 7.3975, 7.3971, 7.3968, 7.3965, 7.3971, 7.3968, 7.3974, 7.3971, 7.3968, 7.3964, 7.396, 7.3957, 7.3954, 7.3951, 7.3958, 7.3955, 7.3954, 7.3952, 7.3948, 7.3947, 7.3943, 7.3939, 7.3935, 7.3931, 7.3928, 7.3935, 7.3932, 7.3919, 7.3917, 7.3914, 7.3911, 7.3908, 7.3904, 7.39, 7.3907, 7.3903, 7.3899, 7.3897, 7.3905, 7.3903, 7.39, 7.3907, 7.3915, 7.3912, 7.391, 7.3906, 7.3903, 7.3901, 7.3897, 7.3903, 7.39, 7.3896, 7.3893, 7.3889, 7.3886, 7.3894, 7.3893, 7.3893, 7.3889, 7.3886, 7.3884, 7.3892, 7.3899, 7.3897, 7.3927, 7.3924, 7.3921, 7.3929, 7.3925, 7.3926, 7.3922, 7.3919, 7.3905, 7.3902, 7.3899, 7.3896, 7.3887, 7.3883, 7.3881, 7.3877, 7.3873, 7.3871, 7.3867, 7.3875, 7.3874, 7.3881, 7.388, 7.3887, 7.3884, 7.388, 7.3876, 7.3873, 7.3871, 7.3879, 7.3876, 7.3874, 7.3871, 7.3878, 7.3875, 7.3872, 7.3868, 7.3875, 7.3882, 7.3869, 7.3866, 7.3864, 7.3861, 7.3858, 7.3854, 7.3851, 7.3848, 7.3845, 7.3854, 7.3851, 7.3847, 7.3853, 7.385, 7.3837, 7.3825, 7.3822, 7.3829, 7.3826, 7.3833, 7.383, 7.3826, 7.3824, 7.3821, 7.3818, 7.3816, 7.3812, 7.3808, 7.3804, 7.3801, 7.3798, 7.3795, 7.3792, 7.3799, 7.3796, 7.3813, 7.382, 7.3816, 7.3813, 7.3821, 7.382, 7.3826, 7.3833, 7.3829, 7.3826, 7.3833, 7.3829, 7.3825, 7.3833, 7.3841, 7.3837, 7.3833, 7.384, 7.3847, 7.3845, 7.3842, 7.3844, 7.384, 7.3838, 7.3834, 7.3841, 7.3838, 7.3834, 7.384, 7.3847, 7.3844, 7.384, 7.3847, 7.3843, 7.385, 7.3846, 7.3845, 7.3841, 7.3839, 7.3836, 7.3834, 7.3831, 7.3828, 7.3827, 7.3824, 7.3822, 7.3818, 7.3815, 7.3811, 7.3809, 7.3813, 7.3809, 7.3805, 7.3801, 7.3797, 7.3805, 7.3802, 7.3799, 7.3795, 7.3802, 7.3798, 7.3795, 7.3792, 7.3791, 7.3788, 7.3784, 7.3782, 7.377, 7.3768, 7.3775, 7.3771, 7.3768, 7.3766, 7.3773, 7.3769, 7.3776, 7.3772, 7.3769, 7.3766, 7.3764, 7.376, 7.3757, 7.3755, 7.3754, 7.375, 7.3748, 7.3755, 7.3762, 7.3758, 7.3755, 7.3752, 7.3748, 7.3735, 7.3734, 7.3732, 7.3739, 7.3736, 7.3733, 7.3732, 7.3729, 7.3737, 7.3743, 7.374, 7.3737, 7.3733, 7.373, 7.3728, 7.3724, 7.3721, 7.3717, 7.3716, 7.3712, 7.3708, 7.3706, 7.3702, 7.3709, 7.3696, 7.3702, 7.3708, 7.3704, 7.371, 7.3706, 7.3703, 7.3699, 7.3695, 7.3728, 7.3734, 7.3731, 7.3728, 7.3725, 7.3722, 7.3719, 7.3719, 7.3715, 7.3721, 7.3717, 7.3724, 7.3721, 7.3727, 7.3723, 7.374, 7.3737, 7.3734, 7.373, 7.3737, 7.3765, 7.3762, 7.3769, 7.3765, 7.3771, 7.3767, 7.3773, 7.3779, 7.3786, 7.3782, 7.3779, 7.3776, 7.3783, 7.3789, 7.3785, 7.3802, 7.38, 7.3796, 7.3803, 7.382, 7.3816, 7.3833, 7.383, 7.3826, 7.3822, 7.3828, 7.3824, 7.382, 7.3826, 7.3833, 7.3839, 7.3836, 7.3832, 7.383, 7.3826, 7.3833, 7.384, 7.3838, 7.3835, 7.3841, 7.3847, 7.3843, 7.3849, 7.3855, 7.3861, 7.3858, 7.3855, 7.3851, 7.3848, 7.3855, 7.3862, 7.3858, 7.3854, 7.385, 7.3847, 7.3843, 7.3839, 7.3837, 7.3834, 7.383, 7.3827, 7.3824, 7.382, 7.3817, 7.3823, 7.3819, 7.3826, 7.3822, 7.3828, 7.3825, 7.3821, 7.3817, 7.3813, 7.3809, 7.3816, 7.3813, 7.3821, 7.3819, 7.3827, 7.3834, 7.3831, 7.3828, 7.3825, 7.3821, 7.3827, 7.3824, 7.3823, 7.383, 7.3827, 7.3824, 7.3821, 7.3817, 7.3823], '192.168.122.114': [10.659, 7.9768, 7.2521, 6.8601, 6.6943, 6.5908, 6.4914, 6.3863, 6.2582, 6.1833, 6.5629, 6.8982, 6.8205, 7.1645, 7.0342, 7.2808, 7.8222, 7.7088, 7.5989, 7.8443, 7.5187, 7.2045, 7.2171, 7.1415, 7.3198, 7.2736, 7.2028, 7.1439, 7.094, 7.048, 6.9936, 7.4576, 7.4126, 7.422, 7.5326, 7.5139, 7.475, 7.4167, 7.3863, 7.3442, 7.3047, 7.2591, 7.2351, 7.2003, 7.1796, 7.1567, 7.2283, 7.2985, 7.3786, 7.3456, 7.3048, 7.3748, 7.3439, 7.5064, 7.572, 7.6308, 7.6894, 7.6592, 7.6341, 7.602, 7.5729, 7.535, 7.5892, 7.5537, 7.538, 7.5043, 7.4733, 7.6966, 7.7399, 7.8084, 7.7749, 7.7456, 7.7324, 7.702, 7.6719, 7.6408, 7.6823, 7.7227, 7.6321, 7.6032, 7.6414, 7.6147, 7.5893, 7.6085, 7.582, 7.5583, 7.5576, 7.5339, 7.5105, 7.4872, 7.4661, 7.453, 7.4427, 7.4797, 7.4631, 7.441, 7.4204, 7.4048, 7.385, 7.3652, 7.3476, 7.3284, 7.3595, 7.3921, 7.3796, 7.361, 7.3959, 7.3913, 7.3864, 7.3749, 7.3559, 7.3439, 7.3332, 7.2745, 7.305, 7.2887, 7.2786, 7.2628, 7.2516, 7.2381, 7.2291, 7.2957, 7.3279, 7.3596, 7.3427, 7.3351, 7.3231, 7.3166, 7.3033, 7.2896, 7.2747, 7.3478, 7.3436, 7.331, 7.3185, 7.3101, 7.2956, 7.2962, 7.2886, 7.2779, 7.266, 7.2571, 7.2488, 7.2372, 7.2258, 7.213, 7.1996, 7.1906, 7.1842, 7.1718, 7.1634, 7.1526, 7.1417, 7.1368, 7.125, 7.1203, 7.1507, 7.1461, 7.1346, 7.1268, 7.1222, 7.1442, 7.137, 7.1263, 7.116, 7.1051, 7.0947, 7.085, 7.0752, 7.0649, 7.0868, 7.0808, 7.0745, 7.0648, 7.0579, 7.052, 7.0887, 7.0816, 7.0796, 7.0712, 7.0608, 7.053, 7.0462, 7.049, 7.0409, 7.0356, 7.0286, 7.0218, 7.0568, 7.0522, 7.0757, 7.0702, 7.0908, 7.0811, 7.074, 7.0464, 7.0382, 7.0355, 7.0277, 7.0193, 7.020300000000001, 7.0148, 7.0094, 7.0021, 6.9951, 6.989, 6.9864, 6.9861, 7.0048, 6.9992, 6.9976, 7.0183, 7.034, 7.0258, 7.0179, 7.036, 7.0277, 7.0466, 7.0639, 7.0816, 7.0744, 7.0929, 7.0939000000000005, 7.0907, 7.0835, 7.1006, 7.0931, 7.0864, 7.0796, 7.0835, 7.0795, 7.0745, 7.0717, 7.0729, 7.0877, 7.0828, 7.0767, 7.0732, 7.0665, 7.0609, 7.065, 7.061, 7.0589, 7.0425, 7.0415, 7.0387, 7.0316, 7.0249, 7.0206, 7.0163, 7.0101, 7.0095, 7.0667, 7.0817, 7.0761, 7.0569, 7.05, 7.0542, 7.055, 7.057, 7.0544, 7.0493, 7.0467, 7.0628, 7.0563, 7.0515, 7.0465, 7.0405, 7.0346, 7.0444, 7.0398, 7.0349, 7.031, 7.0079, 7.0022, 6.9989, 7.0116, 7.0101, 7.0122, 7.0062, 7.0005, 6.9961, 6.9912, 6.9871, 6.9825, 6.9963, 6.994, 6.991, 6.9881, 6.9823, 6.9769, 6.9759, 6.9704, 6.9832, 6.98, 6.9747, 6.9692, 6.9636, 6.9585, 6.9534, 6.9501, 6.9626, 6.9751, 6.9872, 6.9997, 6.9943, 6.9895, 7.0028, 6.9972, 7.0085, 7.0214, 7.0348, 7.0297, 7.0292, 7.0238, 7.0183, 7.0299, 7.042, 7.0424, 7.0371, 7.033, 7.0299, 7.0248, 7.0195, 7.0148, 7.0095, 7.0046, 6.9997, 6.9948, 6.9902, 6.9851, 6.9967, 7.0084, 7.0054, 7.0008, 7.0121, 7.0092, 7.0206, 7.0167, 7.0118, 7.0248, 7.0059, 7.0164, 7.0275, 7.0224, 7.0326, 7.0292, 7.0103, 7.0065, 7.089, 7.1072, 7.1284, 7.1498, 7.1445, 7.142, 7.1385, 7.1483, 7.1447, 7.1401, 7.1379, 7.1347, 7.145, 7.1409, 7.1429, 7.1289, 7.1391, 7.1367, 7.1324, 7.1302, 7.1395, 7.1485, 7.1444, 7.1398, 7.1365, 7.119, 7.1158, 7.1264, 7.1386, 7.1355, 7.1488, 7.1439, 7.1541, 7.1502, 7.1463, 7.1428, 7.1524, 7.1495, 7.1456, 7.1424, 7.1445, 7.1396, 7.1483, 7.1437, 7.1398, 7.1433, 7.1389, 7.1504, 7.1463, 7.1436, 7.1537, 7.1492, 7.1474, 7.1457, 7.1422, 7.1385, 7.1347, 7.1445, 7.1406, 7.1387, 7.1345, 7.1427, 7.1416, 7.1407, 7.1389, 7.1481, 7.1563, 7.1528, 7.1502, 7.1461, 7.1546, 7.1507, 7.1597, 7.1559, 7.1539, 7.1542, 7.1498, 7.1717, 7.1679, 7.1635, 7.1595, 7.1446, 7.1528, 7.1612, 7.1571, 7.1535, 7.1512, 7.159, 7.1442, 7.1402, 7.136, 7.1325, 7.1399, 7.1366, 7.1444, 7.1418, 7.1381, 7.1342, 7.1302, 7.1264, 7.1224, 7.1199, 7.1163, 7.1021, 7.1096, 7.1179, 7.1154, 7.1118, 7.1194, 7.1159, 7.1272, 7.1353, 7.1313, 7.1173, 7.1133, 7.115, 7.125, 7.1219, 7.1301, 7.1263, 7.1337, 7.13, 7.1261, 7.1224, 7.1188, 7.1151, 7.1112, 7.1076, 7.1162, 7.1125, 7.1097, 7.1071, 7.1046, 7.1025, 7.0997, 7.0962, 7.0942, 7.0911, 7.0989, 7.0955, 7.0943, 7.0907, 7.0879, 7.085, 7.0816, 7.0789, 7.0866, 7.0838, 7.0915, 7.088, 7.0862, 7.0835, 7.0901, 7.0867, 7.084, 7.0805, 7.0883, 7.0851, 7.0861, 7.094, 7.0906, 7.0973, 7.1039, 7.1037, 7.1005, 7.0974, 7.0943, 7.0907, 7.0875, 7.0941, 7.0912, 7.088, 7.095, 7.0919, 7.0887, 7.0958, 7.1026, 7.0909, 7.0981, 7.0949, 7.0923, 7.0896, 7.0969, 7.0949, 7.0968, 7.0938, 7.0906, 7.0873, 7.0855, 7.0891, 7.0859, 7.1143, 7.1117, 7.1084, 7.1056, 7.1066, 7.1036, 7.1102, 7.108, 7.1148, 7.1127, 7.1108, 7.1075, 7.1052, 7.102, 7.1089, 7.1156, 7.1127, 7.1094, 7.1077, 7.1048, 7.1036, 7.1103, 7.1168, 7.1136, 7.1121, 7.1104, 7.1075, 7.1142, 7.1125, 7.1054, 7.1024, 7.1094, 7.1064, 7.1047, 7.1112, 7.1173, 7.1142, 7.111, 7.1082, 7.1056, 7.1036, 7.1042, 7.0956, 7.0932, 7.0902, 7.1079, 7.1235, 7.1204, 7.1174, 7.1153, 7.1127, 7.1282, 7.1253, 7.1415, 7.1328, 7.1301, 7.1273, 7.1352, 7.1325, 7.1394, 7.1405, 7.139, 7.146, 7.143, 7.1409, 7.1385, 7.1369, 7.1354, 7.141, 7.139, 7.1453, 7.1452, 7.1457, 7.1428, 7.1401, 7.1407, 7.139, 7.1374, 7.1348, 7.1318, 7.1379, 7.1554, 7.1628, 7.1621, 7.1987, 7.1963, 7.2005, 7.1981, 7.2039, 7.2099, 7.2076, 7.2135, 7.2115, 7.2092, 7.208, 7.2063, 7.2036, 7.2081, 7.2052, 7.204, 7.2094, 7.2078, 7.2075, 7.2135, 7.2186, 7.217, 7.214, 7.2125, 7.2105, 7.2076, 7.2047, 7.1952, 7.1923, 7.1895, 7.1866, 7.184, 7.1903, 7.1973, 7.2036, 7.2211, 7.2203, 7.2257, 7.2235, 7.2284, 7.2187, 7.2164, 7.2141, 7.2114, 7.2162, 7.2133, 7.2113, 7.2162, 7.2133, 7.2036, 7.2094, 7.2067, 7.2116, 7.2092, 7.2072, 7.2049, 7.1956, 7.1929, 7.1903, 7.1959, 7.2011, 7.2033, 7.2028, 7.2002, 7.198, 7.2033, 7.2007, 7.1979, 7.2034, 7.2008, 7.1985, 7.196, 7.1934, 7.203, 7.2018, 7.1991, 7.1974, 7.2055, 7.2111, 7.216, 7.2205, 7.2192, 7.2186, 7.2172, 7.2145, 7.2134, 7.2107, 7.2153, 7.2204, 7.2178, 7.2157, 7.2205, 7.2186, 7.2162, 7.2134, 7.2108, 7.2085, 7.2066, 7.2041, 7.2022, 7.2001, 7.1978, 7.1954, 7.1927, 7.1912, 7.1891, 7.1869, 7.1922, 7.1976, 7.2029, 7.2006, 7.1916, 7.19, 7.1886, 7.1869, 7.1926, 7.1903, 7.1881, 7.1929, 7.1917, 7.1991, 7.2334, 7.2315, 7.2298, 7.2303, 7.2349, 7.2325, 7.2372, 7.2347, 7.2327, 7.2307, 7.2361, 7.2336, 7.2385, 7.236, 7.2343, 7.2329, 7.2264, 7.2382, 7.2366, 7.2357, 7.2567, 7.257, 7.2546, 7.2599, 7.2675, 7.2653, 7.2629, 7.2608, 7.2654, 7.2699, 7.2811, 7.2857, 7.2831, 7.2818, 7.2806, 7.2789, 7.2836, 7.2811, 7.2855, 7.2832, 7.2817, 7.28, 7.2846, 7.289, 7.2867, 7.2844, 7.276, 7.2803, 7.2781, 7.2758, 7.2736, 7.2782, 7.2772, 7.2752, 7.2793, 7.2776, 7.2755, 7.2734, 7.2712, 7.2689, 7.2665, 7.2647, 7.2733, 7.2778, 7.2761, 7.2744, 7.2724, 7.2885, 7.3025, 7.3002, 7.3045, 7.3021, 7.2998, 7.3008, 7.2987, 7.2968, 7.2955, 7.2933, 7.2908, 7.2884, 7.286, 7.2842, 7.2942, 7.2918, 7.2895, 7.2871, 7.2857, 7.2964, 7.2941, 7.2919, 7.2975, 7.2954, 7.2995, 7.3047, 7.309, 7.313, 7.3177, 7.316, 7.3137, 7.3182, 7.3166, 7.3169, 7.3148, 7.3135, 7.3111, 7.3089, 7.3066, 7.3054, 7.3041, 7.3025, 7.2947, 7.2925, 7.2908, 7.2955, 7.2933, 7.2911, 7.2895, 7.2875, 7.2851, 7.2838, 7.2881, 7.2857, 7.2836, 7.2815, 7.2738, 7.2761, 7.2739, 7.2663, 7.2703, 7.2688, 7.2673, 7.2656, 7.2641, 7.2619, 7.2597, 7.2575, 7.256, 7.2549, 7.2548, 7.2533, 7.2512, 7.2548, 7.253, 7.2513, 7.2492, 7.2474, 7.2453, 7.2434, 7.2419, 7.2411, 7.2393, 7.2455, 7.2435, 7.2508, 7.2588, 7.253, 7.2514, 7.2498, 7.2441, 7.2419, 7.2405, 7.246, 7.245, 7.2429, 7.2428, 7.2467, 7.2455, 7.2437, 7.243, 7.2423, 7.2654, 7.2635, 7.2621, 7.2601, 7.259, 7.2572, 7.255, 7.255, 7.2568, 7.2555, 7.2535, 7.2574, 7.2554, 7.2539, 7.2527, 7.2508, 7.2488, 7.2473, 7.2458, 7.2438, 7.2418, 7.2406, 7.2387, 7.2367, 7.2354, 7.234, 7.2319, 7.2299, 7.2286, 7.2274, 7.2255, 7.2185, 7.2224, 7.2215, 7.2196, 7.219, 7.2179, 7.2164, 7.2145, 7.2131, 7.2112, 7.2116, 7.2096, 7.2134, 7.2116, 7.2104, 7.2085, 7.2068, 7.2053, 7.2148, 7.2133, 7.2162, 7.2148, 7.2129, 7.2196, 7.2182, 7.2219, 7.22, 7.2182, 7.2164, 7.2146, 7.2129, 7.212, 7.2161, 7.2214, 7.2195, 7.2195, 7.2177, 7.2166, 7.2223, 7.2227, 7.2225, 7.2207, 7.2196, 7.2384, 7.2377, 7.2435, 7.2472, 7.2457, 7.2493, 7.2473, 7.2453, 7.2442, 7.2475, 7.2458, 7.2441, 7.2422, 7.2456, 7.2437, 7.2418, 7.2353, 7.2387, 7.2367, 7.235, 7.2282, 7.2278, 7.231, 7.2293, 7.2275, 7.2258, 7.224, 7.2221, 7.2209, 7.2245, 7.2235, 7.2218, 7.2204, 7.2205, 7.2157, 7.2153, 7.2141, 7.2177, 7.2208, 7.2192, 7.2192, 7.2228, 7.2209, 7.2192, 7.2227, 7.2208, 7.2189, 7.2173, 7.2429, 7.2477, 7.2462, 7.2444, 7.2427, 7.2411, 7.2453, 7.2389, 7.2372, 7.2358, 7.234, 7.2322, 7.2305, 7.2342, 7.2377, 7.2363, 7.2345, 7.2339, 7.232, 7.2305, 7.2292, 7.228, 7.2262, 7.2244, 7.2293, 7.2335, 7.2321, 7.2301, 7.2293, 7.2386, 7.2374, 7.2362, 7.2349, 7.2384, 7.2365, 7.2349, 7.2331, 7.2317, 7.2301, 7.2283, 7.2315, 7.2302, 7.2295, 7.2305, 7.2297, 7.2284, 7.2267, 7.2251, 7.2237, 7.2227, 7.2259, 7.2292, 7.2275, 7.2261, 7.2294, 7.2327, 7.231, 7.2301, 7.229, 7.2277, 7.2263, 7.2255, 7.2263, 7.2251, 7.2241, 7.2223, 7.2207, 7.2191, 7.2183, 7.2172, 7.216, 7.2154, 7.2137, 7.2129, 7.2162, 7.2151, 7.2143, 7.2128, 7.2163, 7.2151, 7.214, 7.2131, 7.2074, 7.2064, 7.2054, 7.2038, 7.2068, 7.2066, 7.2055, 7.2091, 7.2076, 7.2112, 7.21, 7.2084, 7.207, 7.2053, 7.2037, 7.2026, 7.2057, 7.2043, 7.2032, 7.2067, 7.2102, 7.2087, 7.2073, 7.2103, 7.2092, 7.2081, 7.2068, 7.2053, 7.2039, 7.2027, 7.2013, 7.2007, 7.207, 7.2056, 7.2108, 7.2096, 7.208, 7.2065, 7.2099, 7.2093, 7.2078, 7.2062, 7.2098, 7.2082, 7.207, 7.2053, 7.2042, 7.2072, 7.2055, 7.2038, 7.2021, 7.2049, 7.2044, 7.2051, 7.2035, 7.2063, 7.2047, 7.203, 7.2013, 7.2042, 7.1992, 7.2022, 7.2008, 7.1992, 7.1976, 7.1963, 7.1993, 7.2023, 7.2006, 7.2036, 7.1983, 7.1974, 7.1959, 7.1988, 7.198, 7.201, 7.2038, 7.2022, 7.2006, 7.1991, 7.2066, 7.2052, 7.2082, 7.2067, 7.2054, 7.204, 7.1985, 7.1968, 7.1998, 7.2027, 7.1972, 7.1962, 7.1946, 7.1936, 7.1926, 7.191, 7.1896, 7.1886, 7.183, 7.1863, 7.1899, 7.1887, 7.1874, 7.1862, 7.1846, 7.1838, 7.1829, 7.1816, 7.1808, 7.1799, 7.1794, 7.1787, 7.1783, 7.1776, 7.176, 7.1747, 7.178, 7.1772, 7.1763, 7.1752, 7.1737, 7.1769, 7.1758, 7.1749, 7.1737, 7.1723, 7.1708, 7.1735, 7.1683, 7.1669, 7.1655, 7.1645, 7.1636, 7.1622, 7.1612, 7.1597, 7.1582, 7.1568, 7.1596, 7.1624, 7.1611, 7.16, 7.1591, 7.1579, 7.1565, 7.1556, 7.1544, 7.1543, 7.1543, 7.1493, 7.1485, 7.1503, 7.1496, 7.1492, 7.1477, 7.1466, 7.147600000000001, 7.1466, 7.1453, 7.144, 7.1437, 7.1428, 7.1455, 7.1443, 7.1434, 7.1419, 7.1404, 7.1393, 7.1382, 7.1449, 7.1434, 7.1423, 7.1409, 7.1366, 7.1352, 7.1338, 7.1328, 7.1316, 7.1303, 7.1289, 7.1318, 7.1328000000000005, 7.133800000000001, 7.1368, 7.1414, 7.1374, 7.1403, 7.1393, 7.1382, 7.1372, 7.1367, 7.1357, 7.1346, 7.1386, 7.1435, 7.1425, 7.1416, 7.1443, 7.1452, 7.1482, 7.151, 7.1501, 7.149, 7.1565, 7.1595, 7.1583, 7.1574, 7.156, 7.1554, 7.1582, 7.1592, 7.1579, 7.1546, 7.1573, 7.1597, 7.1624, 7.1611, 7.1599, 7.1585, 7.1575, 7.1561, 7.1548, 7.155, 7.158, 7.1604, 7.163, 7.1623, 7.1613, 7.161, 7.1602, 7.1596, 7.1583, 7.1569, 7.1599, 7.1585, 7.161, 7.1603, 7.159, 7.1578, 7.1567, 7.157, 7.1559, 7.1546, 7.1539, 7.1532, 7.1521, 7.1512, 7.15, 7.1527, 7.153700000000001, 7.1524, 7.1513, 7.15, 7.1452, 7.1479, 7.1474, 7.1462, 7.1682, 7.1669, 7.1656, 7.1644, 7.1637, 7.1645, 7.1676, 7.1663, 7.1689, 7.1676, 7.1672, 7.1658, 7.1645, 7.1633, 7.1625, 7.1621, 7.1612, 7.1605, 7.1631, 7.1618, 7.1609, 7.1598, 7.1591, 7.1543, 7.1531, 7.1519, 7.1515, 7.154, 7.1538, 7.1532, 7.1559, 7.1548, 7.1539, 7.1526, 7.1514, 7.1538, 7.1491, 7.1479, 7.1467, 7.1461, 7.1449, 7.1442, 7.1433, 7.1456, 7.1483, 7.147, 7.1458, 7.1449, 7.1437, 7.1426, 7.1413, 7.1405, 7.136, 7.1347, 7.137, 7.1357, 7.1356, 7.1349, 7.1347, 7.1345, 7.1371, 7.1364, 7.1353, 7.1365, 7.1353, 7.1341, 7.1335, 7.1359, 7.1351, 7.138, 7.1369, 7.1361, 7.1317, 7.1343, 7.1333, 7.1324, 7.1318, 7.1315, 7.1325, 7.1314, 7.134, 7.1366, 7.1392, 7.1452, 7.144, 7.143, 7.1435, 7.1448, 7.1436, 7.1428, 7.1417, 7.1406, 7.1399, 7.1389, 7.1379, 7.1344, 7.1373, 7.1337, 7.1329, 7.1325, 7.1316, 7.1342, 7.1367, 7.1323, 7.1316, 7.1307, 7.1333, 7.1325, 7.1313, 7.1309, 7.1406, 7.1393, 7.1422, 7.1409, 7.1432, 7.1431, 7.1422, 7.1413, 7.1404, 7.1393, 7.1384, 7.1374, 7.1364, 7.1353, 7.1344, 7.1337, 7.1324, 7.1315, 7.1307, 7.1332, 7.1325, 7.135, 7.1339, 7.1329, 7.1321, 7.1344, 7.1369, 7.1357, 7.1346, 7.134, 7.1365, 7.136, 7.1385, 7.141, 7.1399, 7.1356, 7.1369, 7.1358, 7.1348, 7.1377, 7.1365, 7.1371, 7.1328, 7.1352, 7.1377, 7.1473, 7.1498, 7.1561, 7.1591, 7.1582, 7.1573, 7.1562, 7.155, 7.1541, 7.1541, 7.1609, 7.1598, 7.1658, 7.172, 7.1745, 7.1734, 7.1725, 7.1717, 7.1712, 7.1703, 7.1799, 7.1787, 7.1778, 7.1766, 7.1756, 7.1749, 7.1773, 7.1796, 7.1785, 7.1848, 7.1837, 7.1826, 7.1815, 7.1837, 7.1829, 7.1827, 7.1817, 7.1805, 7.1795, 7.1783, 7.1771, 7.1765, 7.1788, 7.1781, 7.1772, 7.176, 7.1749, 7.1778, 7.1804, 7.1793, 7.1787, 7.1812, 7.181, 7.1799, 7.1767, 7.179, 7.1813, 7.1805, 7.1793, 7.1815, 7.1837, 7.1863, 7.1904, 7.1925, 7.1913, 7.1903, 7.1894, 7.1897, 7.1886, 7.1878, 7.1911, 7.1899, 7.1907, 7.1896, 7.1885, 7.1882, 7.1871, 7.1871, 7.186, 7.185, 7.184, 7.1832, 7.1821, 7.1816, 7.1775, 7.1785000000000005, 7.1777, 7.18, 7.1791, 7.1813, 7.1803, 7.1799, 7.179, 7.1846, 7.1836, 7.1826, 7.1848, 7.1843, 7.1833, 7.1841, 7.1834, 7.1838, 7.1841, 7.1839, 7.1828, 7.1819, 7.1839, 7.186, 7.1853, 7.1813, 7.1804, 7.1799, 7.1823, 7.1818, 7.1844, 7.1865, 7.1854, 7.1845, 7.1867, 7.1959, 7.196, 7.1982, 7.1972, 7.1962, 7.1987, 7.1982, 7.2003, 7.1991, 7.1982, 7.2002, 7.1991, 7.199, 7.2012, 7.2005, 7.1998, 7.199, 7.1979, 7.1976, 7.1968, 7.1957, 7.1949, 7.194, 7.193, 7.1985, 7.1975, 7.1972, 7.1963, 7.1954, 7.1982, 7.2004, 7.2025, 7.2015, 7.2036, 7.2058, 7.2046, 7.2006, 7.1995, 7.2015, 7.2004, 7.1993, 7.1952, 7.1973, 7.201, 7.2031, 7.2052, 7.2059, 7.2049, 7.2043, 7.2065, 7.2089, 7.2083, 7.2104, 7.2093, 7.2134, 7.2158, 7.2149, 7.2142, 7.2135, 7.2126, 7.2114, 7.2109, 7.2139, 7.2127, 7.2121, 7.214, 7.2161, 7.215, 7.214, 7.2161, 7.215, 7.2139, 7.2128, 7.2117, 7.2109, 7.2099, 7.2093, 7.2084, 7.2105, 7.2125, 7.2114, 7.2108, 7.21, 7.2089, 7.2082, 7.2102, 7.2092, 7.2083, 7.2077, 7.2069, 7.2062, 7.2054, 7.2073, 7.2067, 7.2085, 7.2074, 7.2095, 7.2088, 7.2078, 7.2068, 7.2062, 7.2083, 7.2073, 7.2093, 7.2113, 7.2104, 7.2094, 7.2084, 7.2105, 7.2098, 7.2086, 7.2075, 7.2079, 7.2069, 7.206, 7.2079, 7.2102, 7.2092, 7.2081, 7.207, 7.2061, 7.2057, 7.2051, 7.2046, 7.2036, 7.2026, 7.2015, 7.201, 7.2007, 7.1997, 7.1989, 7.1979, 7.1971, 7.196, 7.1978, 7.1998, 7.2019, 7.2045, 7.2037, 7.2059, 7.2052, 7.2043, 7.2033, 7.2055, 7.2074, 7.2064, 7.2083, 7.2102, 7.2122, 7.2116, 7.2106, 7.2126, 7.2118, 7.2109, 7.2099, 7.2095, 7.2084, 7.2076, 7.2067, 7.2057, 7.2162, 7.2152, 7.2141, 7.2157, 7.2175, 7.2166, 7.2159, 7.2149, 7.2168, 7.2162, 7.2155, 7.2148, 7.2145, 7.2164, 7.2156, 7.2174, 7.2167, 7.2187, 7.2177, 7.2168, 7.216, 7.218, 7.2199, 7.2224, 7.2214, 7.2207, 7.2201, 7.2221, 7.224, 7.2232, 7.2253, 7.2244, 7.2237, 7.2258, 7.2249, 7.2242, 7.2236, 7.2241, 7.2233, 7.2224, 7.2259, 7.2249, 7.2239, 7.2232, 7.2252, 7.2242, 7.2234, 7.2224, 7.2216, 7.2205, 7.2198, 7.219, 7.2208, 7.2201, 7.2193, 7.2188, 7.2193, 7.2212, 7.2201, 7.2191, 7.2223, 7.2217, 7.2211, 7.2205, 7.2198, 7.2189, 7.218, 7.2172, 7.217, 7.2161, 7.2172, 7.2191, 7.2211, 7.2231, 7.2222, 7.2213, 7.2188, 7.2178, 7.2144, 7.2136, 7.2128, 7.2118, 7.2118, 7.2108, 7.2216, 7.2208, 7.2198, 7.2192, 7.2182, 7.2173, 7.2166, 7.2161, 7.2183, 7.2176, 7.2166, 7.2158, 7.2209, 7.2199, 7.2194, 7.219, 7.218, 7.2201, 7.2326, 7.2319, 7.2339, 7.2331, 7.2324, 7.2315, 7.2305, 7.2307, 7.23, 7.2295, 7.229, 7.2284, 7.2276, 7.2266, 7.226, 7.225, 7.2268, 7.2262, 7.2253, 7.2247, 7.2237, 7.2227, 7.2223, 7.2216, 7.2209, 7.2175, 7.2165, 7.2158, 7.2149, 7.214, 7.2137, 7.2128, 7.2135, 7.213, 7.2123, 7.2139, 7.213, 7.2154, 7.2152, 7.2143, 7.2162, 7.2156, 7.2175, 7.2166, 7.2158, 7.2176, 7.2166, 7.2158, 7.215, 7.2169, 7.2163, 7.218, 7.2177, 7.217, 7.2163, 7.2155, 7.2173, 7.2196, 7.2215, 7.2233, 7.2226, 7.2216, 7.2209, 7.2229, 7.2221, 7.2213, 7.2206, 7.2225, 7.2242, 7.2233, 7.2251, 7.2244, 7.2263, 7.2253, 7.2244, 7.2235, 7.2226, 7.2244, 7.2234, 7.2225, 7.2216, 7.2206, 7.2224, 7.2216, 7.2209, 7.2208, 7.2202, 7.2194, 7.2189, 7.2184, 7.218, 7.217, 7.2188, 7.2182, 7.2173, 7.2163, 7.2129, 7.2124, 7.2145, 7.214, 7.2132, 7.2124, 7.2133, 7.2128, 7.2119, 7.2228, 7.2218, 7.2213, 7.2203, 7.2193, 7.2212, 7.2207, 7.2227, 7.2245, 7.2238, 7.2256, 7.2247, 7.2242, 7.226, 7.2252, 7.2245, 7.2263, 7.2253, 7.2247, 7.224, 7.2231, 7.2248, 7.2265, 7.2233, 7.2226, 7.2238, 7.223, 7.2224, 7.222, 7.221, 7.2202, 7.2195, 7.2186, 7.2177, 7.2171, 7.2163, 7.2154, 7.2145, 7.2162, 7.2158, 7.2149, 7.2139, 7.2134, 7.2126, 7.2117, 7.2112, 7.2102, 7.2094, 7.2088, 7.2106, 7.21, 7.2094, 7.2086, 7.208, 7.2072, 7.2077, 7.2068, 7.206, 7.2051, 7.2042, 7.2059, 7.2054, 7.2048, 7.2039, 7.2034, 7.2027, 7.2018, 7.2038, 7.201, 7.202, 7.2012, 7.2031, 7.2025, 7.2044, 7.2044, 7.2035, 7.2051, 7.2072, 7.2066, 7.2058, 7.2052, 7.2043, 7.2041, 7.2059, 7.2051, 7.2041, 7.2032, 7.2031, 7.2027, 7.202, 7.2011, 7.2004, 7.2, 7.1992, 7.1997, 7.1992, 7.2012, 7.2004, 7.1995, 7.2029, 7.202, 7.2011, 7.2003, 7.1995, 7.1989, 7.1987, 7.1981, 7.1972, 7.1964, 7.1955, 7.1947, 7.1939, 7.193, 7.1947, 7.194, 7.1957, 7.2001, 7.2076, 7.2093, 7.2084, 7.2101, 7.2097, 7.2088, 7.2079, 7.2052, 7.2048, 7.2065, 7.2057, 7.2075, 7.2081, 7.2076, 7.2045, 7.2036, 7.2029, 7.2046, 7.2063, 7.2082, 7.2075, 7.2109, 7.21, 7.2092, 7.2084, 7.2079, 7.2074, 7.2066, 7.2061, 7.2055, 7.2072, 7.2065, 7.2064, 7.2058, 7.2051, 7.2088, 7.2081, 7.21, 7.2093, 7.2087, 7.213, 7.2147, 7.2141, 7.2158, 7.2175, 7.2168, 7.2161, 7.2154, 7.2172, 7.2165, 7.2161, 7.2153, 7.2147, 7.2162, 7.2301, 7.2309, 7.2325, 7.2318, 7.2311, 7.2305, 7.2335, 7.2305, 7.232, 7.2314, 7.2306, 7.2297, 7.2291, 7.2308, 7.2325, 7.2318, 7.2334, 7.2306, 7.2297, 7.2289, 7.2281, 7.2296, 7.2291, 7.2284, 7.2301, 7.2293, 7.2316, 7.233, 7.2322, 7.2315, 7.2307, 7.2301, 7.2293, 7.2307, 7.2326, 7.2318, 7.2313, 7.2306, 7.23, 7.2315, 7.2334, 7.2326, 7.2318, 7.2315, 7.2311, 7.2304, 7.2299, 7.2294, 7.2286, 7.2279, 7.2272, 7.2264, 7.2261, 7.2285, 7.2277, 7.227, 7.2247, 7.2264, 7.2256, 7.2248, 7.2241, 7.2257, 7.2249, 7.2241, 7.2234, 7.2226, 7.2218, 7.2234, 7.2226, 7.222, 7.2215, 7.2207, 7.2246, 7.224, 7.2256, 7.2248, 7.2263, 7.2257, 7.2271, 7.2263, 7.2255, 7.2271, 7.2266, 7.2259, 7.2251, 7.2267, 7.2261, 7.2252, 7.2244, 7.2239, 7.2233, 7.2206, 7.2197, 7.2189, 7.2182, 7.2202, 7.2217, 7.2232, 7.2232, 7.2225, 7.222, 7.2214, 7.2208, 7.2201, 7.2194, 7.2189, 7.2198, 7.2193, 7.2188, 7.2182, 7.2176, 7.2169, 7.2164, 7.2156, 7.215, 7.2145, 7.2137, 7.2134, 7.2131, 7.2123, 7.2115, 7.2109, 7.2101, 7.2095, 7.2091, 7.2083, 7.2075, 7.2067, 7.2125, 7.2125, 7.2141, 7.2135, 7.2128, 7.2122, 7.2114, 7.2106, 7.2098, 7.2115, 7.211, 7.2102, 7.2094, 7.2086, 7.2082, 7.2073, 7.2066, 7.2059, 7.2053, 7.2047, 7.2062, 7.2059, 7.2051, 7.2045, 7.2063, 7.2055, 7.2049, 7.2043, 7.2037, 7.2052, 7.2046, 7.2064, 7.2059, 7.2052, 7.2067, 7.2062, 7.2057, 7.205, 7.2045, 7.2037, 7.2053, 7.2045, 7.2062, 7.2057, 7.205, 7.2043, 7.2037, 7.2029, 7.2022, 7.2017, 7.201, 7.2034, 7.2027, 7.2022, 7.2015, 7.2013, 7.201, 7.2008, 7.2003, 7.1999, 7.2015, 7.2007, 7.2071, 7.2064, 7.2056, 7.2052, 7.2055, 7.2048, 7.2042, 7.2041, 7.2062, 7.2059, 7.2075, 7.2068, 7.2084, 7.2094000000000005, 7.2089, 7.2104, 7.2097, 7.2089, 7.2182, 7.2174, 7.2189, 7.2237, 7.223, 7.2225, 7.2219, 7.2212, 7.2206, 7.2216, 7.2231, 7.2223, 7.2219, 7.2212, 7.2225, 7.222, 7.2215, 7.2209, 7.2203, 7.2219, 7.2213, 7.2228, 7.2242, 7.2234, 7.2234, 7.2229, 7.2243, 7.2235, 7.2227, 7.2224, 7.2217, 7.221, 7.2204, 7.2197, 7.2212, 7.2205, 7.2198, 7.2191, 7.2185, 7.2177, 7.2173, 7.2188, 7.2162, 7.2161, 7.2134, 7.2133, 7.2147, 7.2163, 7.2155, 7.2148, 7.214, 7.2156, 7.217, 7.2162, 7.2158, 7.2152, 7.2149, 7.2144, 7.2139, 7.2135, 7.213, 7.2177, 7.2191, 7.2186, 7.2181, 7.2173, 7.2258, 7.2256, 7.2229, 7.2254, 7.2417, 7.243, 7.2424, 7.2418, 7.245, 7.2443, 7.2438, 7.2431, 7.2423, 7.2443, 7.2463, 7.2458, 7.2453, 7.2449, 7.2442, 7.2458, 7.245, 7.2442, 7.2435, 7.2432, 7.2445, 7.2459, 7.2476, 7.247, 7.2464, 7.2456, 7.245, 7.2464, 7.2456, 7.2449, 7.2464, 7.248, 7.2472, 7.2464, 7.2457, 7.2472, 7.2465, 7.2458, 7.245, 7.2448, 7.2421, 7.2436, 7.2429, 7.2422, 7.2415, 7.2409, 7.2423, 7.2415, 7.2431, 7.2445, 7.2437, 7.2434, 7.2431, 7.2424, 7.2416, 7.2411, 7.2384, 7.2378, 7.2393, 7.2386, 7.238, 7.2404, 7.2396, 7.239, 7.2405, 7.2401, 7.2415, 7.2408, 7.2403, 7.2396, 7.2392, 7.2385, 7.2379, 7.2372, 7.2366, 7.2359, 7.2355, 7.2348, 7.2362, 7.2355, 7.2349, 7.2346, 7.2339, 7.2332, 7.2325, 7.2303, 7.2301, 7.2275, 7.2272, 7.2267, 7.226, 7.2274, 7.2247, 7.2243, 7.2237, 7.2235, 7.2252, 7.2268, 7.2269, 7.2285, 7.2278, 7.2291, 7.2285, 7.2278, 7.2273, 7.2267, 7.226, 7.2312, 7.2305, 7.23, 7.2295, 7.2308, 7.2305, 7.2298, 7.2291, 7.2286, 7.2279, 7.2255, 7.2249, 7.2242, 7.2265, 7.2277, 7.227, 7.2263, 7.2312, 7.2306, 7.2303, 7.2317, 7.2312, 7.2307, 7.2321, 7.2314, 7.2311, 7.2307, 7.23, 7.2314, 7.2308, 7.2301, 7.2297, 7.2313, 7.2306, 7.2299, 7.2292, 7.2285, 7.2283, 7.2275, 7.2268, 7.2265, 7.2258, 7.2271, 7.2267, 7.226, 7.2268, 7.2302, 7.2316, 7.231, 7.2303, 7.2284, 7.2279, 7.2254, 7.231, 7.2325, 7.2339, 7.2335, 7.2327, 7.2322, 7.2347, 7.2352, 7.2349, 7.2353, 7.2349, 7.2342, 7.2339, 7.2339, 7.2334, 7.2327, 7.232, 7.2313, 7.2309, 7.2303, 7.2299, 7.2292, 7.2286, 7.23, 7.2295, 7.227, 7.2263, 7.2258, 7.2253, 7.2228, 7.2226, 7.2204, 7.2197, 7.219, 7.2206, 7.22, 7.2214, 7.2231, 7.2224, 7.2218, 7.2212, 7.2227, 7.224, 7.2234, 7.2228, 7.2242, 7.2235, 7.2249, 7.2242, 7.2235, 7.2228, 7.2234, 7.223, 7.2243, 7.2238, 7.2231, 7.2224, 7.2219, 7.2216, 7.2209, 7.2206, 7.2199, 7.2213, 7.2208, 7.2201, 7.2194, 7.2187, 7.22, 7.2193, 7.2187, 7.22, 7.2195, 7.2189, 7.2221, 7.2215, 7.2259, 7.2271, 7.2309, 7.2332, 7.2337, 7.2332, 7.2325, 7.2318, 7.2311, 7.2304, 7.2318, 7.2312, 7.2308, 7.2304, 7.2318, 7.2312, 7.2326, 7.232, 7.2316, 7.231, 7.2316, 7.2309, 7.2302, 7.2297, 7.2312, 7.2306, 7.23, 7.2294, 7.2317, 7.2312, 7.2308, 7.234, 7.2353, 7.2347, 7.2342, 7.2335, 7.233, 7.2344, 7.2337, 7.235, 7.2364, 7.2358, 7.2355, 7.2349, 7.2342, 7.2336, 7.2351, 7.2345, 7.2357, 7.2352, 7.2345, 7.2356, 7.2369, 7.2362, 7.2358, 7.2352, 7.2349, 7.2345, 7.2338, 7.2333, 7.2328, 7.2322, 7.232, 7.2316, 7.2309, 7.2325, 7.2348, 7.2342, 7.2356, 7.2351, 7.2346, 7.2342, 7.2377, 7.2389, 7.2401, 7.2394, 7.2404, 7.241, 7.2405, 7.2398, 7.2391, 7.2404, 7.2418, 7.2433, 7.2429, 7.2426, 7.2419, 7.2415, 7.241, 7.2405, 7.2401, 7.2435, 7.2496, 7.251, 7.2523, 7.2516, 7.2509, 7.2521, 7.2516, 7.251, 7.2506, 7.2482, 7.2486, 7.25, 7.2514, 7.2507, 7.2514, 7.2495, 7.2489, 7.2505, 7.2502, 7.2496, 7.249, 7.2503, 7.2496, 7.2489, 7.2484, 7.2501, 7.2513, 7.2508, 7.2502, 7.2498, 7.2513, 7.2506, 7.25, 7.2512, 7.2524, 7.2517, 7.2532, 7.2526, 7.2522, 7.2551, 7.2568, 7.2564, 7.259, 7.2604, 7.26, 7.2597, 7.2591, 7.2588, 7.2582, 7.2575, 7.2568, 7.2561, 7.2574, 7.2568, 7.2561, 7.2556, 7.255, 7.2545, 7.2539, 7.2573, 7.2588, 7.2601, 7.2614, 7.2608, 7.2603, 7.2597, 7.2593, 7.2586, 7.258, 7.2575, 7.2571, 7.2569, 7.2563, 7.2558, 7.2551, 7.2564, 7.2558, 7.2551, 7.2546, 7.2539, 7.2533, 7.2528, 7.2523, 7.2521, 7.2517, 7.2512, 7.2506, 7.2501, 7.2496, 7.249, 7.2484, 7.2461, 7.2455, 7.2448, 7.2442, 7.2436, 7.2432, 7.2426, 7.2423, 7.242, 7.2418, 7.2414, 7.2407, 7.2401, 7.24, 7.2396, 7.2391, 7.2415, 7.2445, 7.2457, 7.2452, 7.2449, 7.2444, 7.2438, 7.2432, 7.2429, 7.2425, 7.2421, 7.2434, 7.2429, 7.2424, 7.242, 7.2415, 7.2412, 7.2409, 7.2403, 7.2398, 7.2395, 7.2392, 7.2389, 7.2382, 7.2376, 7.2373, 7.2366, 7.2359, 7.2371, 7.2365, 7.238, 7.2375, 7.2373, 7.2367, 7.2379, 7.2391, 7.2395, 7.2389, 7.2383, 7.238, 7.2374, 7.2368, 7.238, 7.2401, 7.2395, 7.2389, 7.2403, 7.2401, 7.2409, 7.2403, 7.2396, 7.2426, 7.2419, 7.2413, 7.2425, 7.2419, 7.2416, 7.2411, 7.241, 7.2407, 7.2401, 7.2378, 7.2373, 7.2368, 7.2361, 7.2355, 7.235, 7.2344, 7.2338, 7.2351, 7.2347, 7.2341, 7.2335, 7.2328, 7.234, 7.2333, 7.2341, 7.2335, 7.2347, 7.2359, 7.2353, 7.2348, 7.2342, 7.2336, 7.2349, 7.2343, 7.2336, 7.2331, 7.2326, 7.2322, 7.2317, 7.2316, 7.2331, 7.2325, 7.232, 7.2315, 7.2328, 7.2323, 7.2318, 7.2311, 7.2307, 7.2285, 7.228, 7.2293, 7.2287, 7.2282, 7.2295, 7.229, 7.2287, 7.2264, 7.226, 7.2256, 7.2252, 7.2264, 7.2275, 7.2269, 7.2281, 7.2275, 7.2287, 7.2298, 7.2292, 7.2286, 7.2298, 7.231, 7.2305, 7.2318, 7.2315, 7.2309, 7.2321, 7.2387, 7.2399, 7.2394, 7.2388, 7.2384, 7.238, 7.2395, 7.239, 7.2386, 7.238, 7.238, 7.2374, 7.2386, 7.2399, 7.2393, 7.2387, 7.2381, 7.2375, 7.237, 7.2364, 7.2358, 7.2352, 7.2347, 7.2325, 7.2337, 7.2331, 7.2326, 7.2321, 7.2333, 7.2327, 7.2338, 7.2335, 7.2332, 7.2326, 7.2322, 7.2334, 7.2332, 7.2327, 7.2323, 7.2316, 7.2312, 7.2306, 7.2304, 7.2334, 7.2329, 7.2323, 7.2318, 7.2314, 7.2326, 7.2337, 7.2348, 7.2345, 7.234, 7.2335, 7.233, 7.2326, 7.232, 7.2332, 7.2326, 7.2338, 7.2333, 7.2327, 7.232, 7.2333, 7.2344, 7.2338, 7.2334, 7.2329, 7.2325, 7.2323, 7.2321, 7.2315, 7.2327, 7.2321, 7.2314, 7.2309, 7.2302, 7.2297, 7.2308, 7.2302, 7.2325, 7.2319, 7.2315, 7.2312, 7.2308, 7.2302, 7.2313, 7.2307, 7.2372, 7.2385, 7.2381, 7.2376, 7.2372, 7.2366, 7.236, 7.2354, 7.2348, 7.2326, 7.232, 7.2314, 7.2312, 7.2308, 7.2302, 7.2296, 7.2291, 7.2289, 7.2284, 7.2296, 7.2291, 7.2286, 7.2282, 7.2278, 7.2292, 7.2304, 7.23, 7.2311, 7.231, 7.2307, 7.2302, 7.2312, 7.2309, 7.2321, 7.2316, 7.231, 7.233, 7.2325, 7.2336, 7.2349, 7.2351, 7.2346, 7.2364, 7.2362, 7.2356, 7.2351, 7.2346, 7.2357, 7.2351, 7.2346, 7.234, 7.2334, 7.2328, 7.2324, 7.2335, 7.2329, 7.234, 7.2337, 7.2331, 7.2329, 7.2323, 7.2345, 7.2358, 7.2418, 7.2423, 7.2419, 7.2416, 7.2411, 7.2412, 7.2407, 7.2402, 7.2416, 7.2433, 7.2428, 7.2438, 7.2467, 7.2462, 7.2456, 7.2468, 7.2462, 7.2457, 7.2451, 7.2445, 7.2439, 7.2433, 7.2427, 7.2421, 7.2427, 7.2422, 7.2405, 7.2418, 7.2431, 7.2443, 7.2448, 7.2442, 7.2437, 7.2448, 7.2442, 7.2436, 7.243, 7.2442, 7.2436, 7.2432, 7.2427, 7.2425, 7.2436, 7.2447, 7.2442, 7.2439, 7.2434, 7.2428, 7.2439, 7.2434, 7.2433, 7.2427, 7.2422, 7.2424, 7.2419, 7.2452, 7.2486, 7.2501, 7.2503, 7.2498, 7.2493, 7.2488, 7.2473, 7.247, 7.2467, 7.2461, 7.2472, 7.2483, 7.2479, 7.2504, 7.2592, 7.2605, 7.2609, 7.2603, 7.26, 7.2596, 7.2591, 7.2587, 7.26, 7.2595, 7.2591, 7.2587, 7.2582, 7.2598, 7.2592, 7.2587, 7.2584, 7.2578, 7.2572, 7.2566, 7.256, 7.2556, 7.2551, 7.2546, 7.2557, 7.2585, 7.2579, 7.2574, 7.2571, 7.2581, 7.2577, 7.2571, 7.2567, 7.2561, 7.2572, 7.2566, 7.256, 7.2571, 7.2601, 7.2596, 7.2606, 7.26, 7.2598, 7.2628, 7.2623, 7.2618, 7.2615, 7.2611, 7.2623, 7.2617, 7.2629, 7.2625, 7.2605, 7.2608, 7.262, 7.2615, 7.2609, 7.262, 7.2617, 7.265, 7.2645, 7.2641, 7.2652, 7.265, 7.2661, 7.2657, 7.2656, 7.265, 7.2663, 7.2658, 7.2653, 7.2647, 7.2644, 7.2638, 7.2633, 7.2629, 7.2626, 7.2637, 7.265, 7.2644, 7.2638, 7.2633, 7.267, 7.2664, 7.2658, 7.2654, 7.265, 7.2646, 7.264, 7.2637, 7.2646, 7.264, 7.2634, 7.2628, 7.2624, 7.2636, 7.2631, 7.2642, 7.2652, 7.2648, 7.2643, 7.2654, 7.2651, 7.2648, 7.2643, 7.2674, 7.2673, 7.2682, 7.2678, 7.2689, 7.2687, 7.2696, 7.2692, 7.2702, 7.2696, 7.2701, 7.2711, 7.2707, 7.2701, 7.2695, 7.2706, 7.2702, 7.2713, 7.2708, 7.2719, 7.2714, 7.2747, 7.2758, 7.2772, 7.277, 7.2766, 7.2762, 7.2774, 7.2768, 7.2762, 7.2761, 7.2774, 7.2775, 7.277, 7.278, 7.2775, 7.2772, 7.2767, 7.2763, 7.2757, 7.2753, 7.2748, 7.2744, 7.2739, 7.2733, 7.273, 7.2742, 7.2744, 7.2739, 7.2737, 7.2746, 7.2741, 7.2753, 7.275, 7.2744, 7.274, 7.2741, 7.2738, 7.2757, 7.276, 7.2755, 7.2749, 7.2775, 7.277, 7.2779, 7.2774, 7.279, 7.2807, 7.2802, 7.2799, 7.2794, 7.2788, 7.2784, 7.2765, 7.2759, 7.2769, 7.2764, 7.276, 7.2755, 7.2749, 7.276, 7.2756, 7.2751, 7.2747, 7.2743, 7.2737, 7.2733, 7.2732, 7.2728, 7.2739, 7.2719, 7.2713, 7.273, 7.2758, 7.2752, 7.2748, 7.2745, 7.274, 7.2734, 7.2728, 7.2722, 7.2727, 7.2722, 7.2725, 7.272, 7.2716, 7.2711, 7.2705, 7.27, 7.2697, 7.2692, 7.2687, 7.2683, 7.2709, 7.2704, 7.2701, 7.2698, 7.2693, 7.2704, 7.2699, 7.2697, 7.2691, 7.2687, 7.2682, 7.2678, 7.2659, 7.2655, 7.2665, 7.266, 7.2657, 7.2654, 7.2649, 7.2647, 7.2643, 7.2638, 7.2634, 7.2641, 7.2652, 7.2662, 7.2656, 7.2651, 7.2647, 7.2642, 7.2636, 7.263, 7.2641, 7.2638, 7.2619, 7.263, 7.2626, 7.2684, 7.2678, 7.269, 7.27, 7.2696, 7.2694, 7.2689, 7.2683, 7.2677, 7.2672, 7.2667, 7.2677, 7.2704, 7.2699, 7.2681, 7.2676, 7.2679, 7.2676, 7.2672, 7.2666, 7.2676, 7.2671, 7.2682, 7.2695, 7.2693, 7.2687, 7.2683, 7.2679, 7.2676, 7.267, 7.2679, 7.2673, 7.2669, 7.2665, 7.266, 7.2656, 7.2665, 7.2675, 7.2669, 7.2679, 7.2675, 7.2685, 7.268, 7.2675, 7.267, 7.2666, 7.2661, 7.2656, 7.2654, 7.2649, 7.2659, 7.267, 7.2665, 7.2659, 7.2654, 7.2636, 7.2631, 7.2626, 7.2623, 7.2622, 7.262, 7.2615, 7.261, 7.2605, 7.26, 7.2597, 7.2592, 7.2587, 7.2582, 7.2591, 7.2586, 7.258, 7.2589, 7.2584, 7.2579, 7.2576, 7.2573, 7.2567, 7.2562, 7.2557, 7.2553, 7.255, 7.256, 7.2555, 7.2551, 7.2546, 7.2561, 7.2557, 7.2552, 7.2561, 7.2558, 7.2553, 7.2563, 7.2558, 7.2555, 7.255, 7.2545, 7.2543, 7.2539, 7.2537, 7.2547, 7.2542, 7.2536, 7.2531, 7.2526, 7.2536, 7.2531, 7.2527, 7.2528, 7.2533, 7.2551, 7.2565, 7.2568, 7.2563, 7.2559, 7.2554, 7.255, 7.2546, 7.2547, 7.2543, 7.2553, 7.2551, 7.2547, 7.2544, 7.2554, 7.2579, 7.2575, 7.2572, 7.2568, 7.2564, 7.2575, 7.2571, 7.2581, 7.2578, 7.2574, 7.2574, 7.2569, 7.2567, 7.2577, 7.2572, 7.2644, 7.2639, 7.2649, 7.2674, 7.2684, 7.268, 7.2676, 7.2672, 7.2711, 7.2707, 7.2732, 7.2761, 7.2757, 7.2754, 7.2752, 7.2762, 7.2757, 7.2757, 7.2752, 7.2747, 7.2742, 7.2737, 7.2734, 7.273, 7.2725, 7.272, 7.2702, 7.2698, 7.2696, 7.2707, 7.2716, 7.271, 7.2705, 7.2701, 7.2696, 7.2706, 7.2701, 7.2686, 7.2695, 7.2694, 7.2689, 7.2672, 7.2667, 7.2676, 7.2671, 7.2653, 7.2648, 7.2659, 7.2667, 7.2663, 7.2679, 7.2674, 7.2685, 7.268, 7.2689, 7.2698, 7.2693, 7.2703, 7.2699, 7.273, 7.2725, 7.272, 7.2729, 7.2732, 7.2742, 7.2737, 7.2747, 7.2743, 7.2753, 7.2763, 7.2773, 7.2768, 7.2787, 7.2783, 7.2778, 7.2789, 7.2784, 7.2781, 7.2776, 7.2801, 7.2796, 7.2792, 7.2787, 7.2795, 7.2777, 7.2773, 7.2784, 7.2781, 7.2763, 7.2758, 7.2767, 7.2764, 7.2759, 7.2769, 7.2764, 7.2759, 7.2754, 7.2749, 7.2746, 7.2741, 7.2752, 7.2761, 7.2758, 7.2755, 7.2754, 7.2752, 7.2749, 7.2746, 7.2742, 7.2738, 7.2735, 7.2733, 7.2728, 7.2724, 7.2736, 7.2733, 7.273, 7.2726, 7.2722, 7.2718, 7.2714, 7.2711, 7.2706, 7.2703, 7.2713, 7.2708, 7.2704, 7.2701, 7.2697, 7.2693, 7.2703, 7.2698, 7.2694, 7.2705, 7.27, 7.2697, 7.2693, 7.269, 7.2696, 7.2705, 7.27, 7.2712, 7.2708, 7.2703, 7.2698, 7.2707, 7.2702, 7.2697, 7.2708, 7.2704, 7.2699, 7.2694, 7.269, 7.2685, 7.268, 7.2675, 7.267, 7.2666, 7.2675, 7.2672, 7.2667, 7.2663, 7.2661, 7.2656, 7.2671, 7.2666, 7.2676, 7.2672, 7.2667, 7.2676, 7.2671, 7.2681, 7.2677, 7.268, 7.2689, 7.2687, 7.2682, 7.268, 7.2663, 7.2673, 7.2669, 7.2651, 7.266, 7.2669, 7.275, 7.2745, 7.2743, 7.2766, 7.2762, 7.2771, 7.2767, 7.2777, 7.2786, 7.2797, 7.2807, 7.2789, 7.2799, 7.2782, 7.2777, 7.2786, 7.2798, 7.2794, 7.279, 7.2807, 7.2808, 7.2803, 7.2813, 7.2809, 7.2806, 7.2793, 7.2802, 7.2797, 7.2792, 7.2787, 7.2796, 7.2818, 7.2814, 7.2809, 7.2805, 7.2813, 7.2822, 7.2818, 7.2823, 7.2818, 7.2813, 7.2809, 7.2806, 7.2815, 7.2812, 7.282, 7.286, 7.2855, 7.285, 7.2845, 7.284, 7.2836, 7.2848, 7.286, 7.2877, 7.2872, 7.289, 7.2893, 7.291, 7.2905, 7.2901, 7.2896, 7.2905, 7.2914, 7.2933, 7.2928, 7.2965, 7.2962, 7.3008, 7.3004, 7.3001, 7.2996, 7.2992, 7.2995, 7.2991, 7.2988, 7.2983, 7.2978, 7.2987, 7.3024, 7.302, 7.3016, 7.3025, 7.3033, 7.303, 7.3041, 7.3037, 7.3046, 7.3043, 7.3039, 7.3036, 7.3034, 7.3029, 7.3025, 7.3022, 7.3019, 7.3016, 7.3011, 7.302, 7.3029, 7.3026, 7.3022, 7.3017, 7.3015, 7.301, 7.3007, 7.3003, 7.2998, 7.2994, 7.299, 7.2999, 7.2995, 7.2992, 7.299, 7.2986, 7.2984, 7.2979, 7.2977, 7.2972, 7.2967, 7.2976, 7.2985, 7.2982, 7.2978, 7.2988, 7.2984, 7.298, 7.2992, 7.2987, 7.2983, 7.2979, 7.2974, 7.2996, 7.2992, 7.2987, 7.2984, 7.2979, 7.2976, 7.2986, 7.2995, 7.2991, 7.2988, 7.2983, 7.2978, 7.2973, 7.2969, 7.2964, 7.2959, 7.2955, 7.2951, 7.2948, 7.2958, 7.2945, 7.2954, 7.2949, 7.2946, 7.2959, 7.2954, 7.295, 7.2947, 7.2944, 7.2952, 7.2948, 7.2984, 7.2991, 7.2987, 7.2983, 7.2984, 7.2981, 7.2978, 7.2987, 7.2983, 7.2979, 7.2976, 7.2979, 7.2975, 7.2976, 7.2989, 7.2984, 7.2981, 7.299, 7.2986, 7.2982, 7.2978, 7.2975, 7.2971, 7.2969, 7.2964, 7.2962, 7.3039, 7.3036, 7.3046, 7.303, 7.3027, 7.3024, 7.3033, 7.3029, 7.3025, 7.3021, 7.3016, 7.3025, 7.3034, 7.3031, 7.3027, 7.3023, 7.3019, 7.3014, 7.3009, 7.3006, 7.3002, 7.2998, 7.2995, 7.2991, 7.2988, 7.2987, 7.2983, 7.2978, 7.2974, 7.2971, 7.2967, 7.2964, 7.2962, 7.2959, 7.2954, 7.2949, 7.2945, 7.2942, 7.2938, 7.2934, 7.2931, 7.2928, 7.2925, 7.2921, 7.2917, 7.2912, 7.2909, 7.2918, 7.2916, 7.2911, 7.2908, 7.2945, 7.2942, 7.295, 7.2947, 7.2943, 7.2939, 7.2934, 7.2931, 7.2927, 7.2924, 7.292, 7.2915, 7.2912, 7.2911, 7.292, 7.2929, 7.2925, 7.292, 7.2917, 7.2912, 7.2908, 7.2905, 7.29, 7.2897, 7.2903, 7.2899, 7.2895, 7.2891, 7.2878, 7.2875, 7.2929, 7.2926, 7.2963, 7.2959, 7.2955, 7.2962, 7.2958, 7.2953, 7.2976, 7.2972, 7.2968, 7.2965, 7.2973, 7.2968, 7.2963, 7.2958, 7.2966, 7.2963, 7.2959, 7.2943, 7.2939, 7.2934, 7.2944, 7.2941, 7.2937, 7.2934, 7.2932, 7.2928, 7.2925, 7.292, 7.2929, 7.2927, 7.2923, 7.2919, 7.2916, 7.2923, 7.2932, 7.294, 7.2939, 7.2935, 7.2932, 7.2917, 7.2913, 7.2909, 7.2904, 7.2902, 7.2897, 7.2906, 7.2915, 7.291, 7.2918, 7.2914, 7.291, 7.2907, 7.2917, 7.2902, 7.2898, 7.2894, 7.2889, 7.2885, 7.2882, 7.289, 7.2886, 7.2881, 7.2877, 7.2873, 7.2869, 7.2865, 7.2863, 7.2868, 7.2876, 7.286, 7.2856, 7.2851, 7.2847, 7.2843, 7.2838, 7.2834, 7.2829, 7.283, 7.2827, 7.2822, 7.2818, 7.2814, 7.281, 7.2823, 7.2821, 7.2816, 7.2829, 7.2826, 7.2822, 7.2823, 7.2819, 7.2815, 7.281, 7.2808, 7.2804, 7.28, 7.2808, 7.2805, 7.279, 7.2786, 7.2796, 7.2794, 7.2815, 7.2825, 7.2821, 7.2819, 7.2817, 7.2814, 7.2825, 7.2821, 7.2819, 7.2815, 7.2824, 7.2821, 7.2817, 7.2814, 7.2809, 7.2818, 7.2814, 7.2836, 7.2858, 7.2856, 7.2852, 7.2848, 7.2845, 7.2841, 7.2836, 7.2831, 7.2826, 7.2823, 7.2819, 7.2815, 7.2811, 7.2819, 7.2828, 7.2824, 7.2808, 7.2804, 7.2802, 7.281, 7.2806, 7.2802, 7.2798, 7.2808, 7.2804, 7.2799, 7.2796, 7.2805, 7.2801, 7.2797, 7.2804, 7.28, 7.2797, 7.2807, 7.2804, 7.2814, 7.281, 7.2806, 7.2815, 7.2812, 7.2816, 7.2813, 7.2834, 7.2831, 7.2827, 7.2824, 7.2847, 7.2843, 7.2839, 7.2835, 7.2833, 7.2836, 7.2832, 7.2841, 7.2838, 7.2835, 7.2845, 7.2842, 7.2837, 7.2833, 7.283, 7.2826, 7.2822, 7.2818, 7.2814, 7.281, 7.2807, 7.2802, 7.281, 7.2806, 7.2802, 7.2798, 7.2794, 7.279, 7.2786, 7.2783, 7.278, 7.2789, 7.2785, 7.2781, 7.2789, 7.2805, 7.2801, 7.2809, 7.2808, 7.2804, 7.28, 7.2796, 7.2804, 7.28, 7.2798, 7.2795, 7.2803, 7.2802, 7.2799, 7.2797, 7.2806, 7.2803, 7.2812, 7.2821, 7.2825, 7.282, 7.283, 7.2827, 7.2823, 7.2833, 7.2842, 7.2851, 7.2847, 7.2855, 7.2864, 7.286, 7.2856, 7.2852, 7.2849, 7.2846, 7.2832, 7.2828, 7.2824, 7.282, 7.2819, 7.2841, 7.2849, 7.2845, 7.2841, 7.2837, 7.2833, 7.2841, 7.2837, 7.2833, 7.2829, 7.2826, 7.2825, 7.2821, 7.2816, 7.2812, 7.2808, 7.2804, 7.28, 7.2808, 7.2805, 7.2802, 7.2797, 7.2794, 7.279, 7.2786, 7.2772, 7.2768, 7.2765, 7.2784, 7.2792, 7.2777, 7.2773, 7.2784, 7.2792, 7.2788, 7.2784, 7.2779, 7.2775, 7.2772, 7.2781, 7.2778, 7.2775, 7.2783, 7.2779, 7.2775, 7.2783, 7.278, 7.2775, 7.2773, 7.2785, 7.278, 7.2777, 7.2773, 7.278, 7.2788, 7.2796, 7.2808, 7.2804, 7.2811, 7.2807, 7.2804, 7.28, 7.2797, 7.2793, 7.279, 7.2788, 7.2796, 7.2795, 7.2804, 7.28, 7.2796, 7.2792, 7.28, 7.2799, 7.2797, 7.2793, 7.2802, 7.281, 7.2812, 7.2819, 7.2815, 7.2823, 7.282, 7.2805, 7.2801, 7.2786, 7.2771, 7.2767, 7.2763, 7.2771, 7.2767, 7.2764, 7.276, 7.2756, 7.2754, 7.2763, 7.276, 7.2756, 7.2751, 7.2737, 7.2733, 7.2729, 7.2716, 7.2711, 7.272, 7.2716, 7.2711, 7.2722, 7.2718, 7.2715, 7.2712, 7.272, 7.2718, 7.2716, 7.2747, 7.2746, 7.2742, 7.2739, 7.2745, 7.2742, 7.2738, 7.2734, 7.2731, 7.2728, 7.2724, 7.272, 7.2716, 7.2705, 7.2705, 7.2713, 7.2712, 7.2744, 7.2752, 7.2748, 7.2746, 7.2755, 7.2766, 7.2799, 7.2795, 7.281, 7.2806, 7.2815, 7.2824, 7.282, 7.2816, 7.2801, 7.2808, 7.2828, 7.2824, 7.2836, 7.2833, 7.283, 7.2827, 7.2835, 7.2831, 7.2827, 7.2823, 7.2831, 7.282, 7.2816, 7.2812, 7.2812, 7.2815, 7.2826, 7.2825, 7.2822, 7.2818, 7.2867, 7.2865, 7.2861, 7.2859, 7.2856, 7.2864, 7.286, 7.2856, 7.2865, 7.2861, 7.2857, 7.2854, 7.285, 7.2846, 7.2844, 7.2841, 7.285, 7.2848, 7.2857, 7.2855, 7.2852, 7.2848, 7.2845, 7.2841, 7.2837, 7.2833, 7.2831, 7.2851, 7.2859, 7.2869, 7.2878, 7.2891, 7.2899, 7.2895, 7.2891, 7.2888, 7.2895, 7.2892, 7.2899, 7.2908, 7.2904, 7.2899, 7.2895, 7.2891, 7.2888, 7.2896, 7.2892, 7.2889, 7.2897, 7.2893, 7.2891, 7.2887, 7.2884, 7.2892, 7.2889, 7.2887, 7.2883, 7.2881, 7.2877, 7.2873, 7.2917, 7.2913, 7.291, 7.2918, 7.2914, 7.291, 7.2906, 7.2902, 7.291, 7.2918, 7.2914, 7.2912, 7.2897, 7.2893, 7.2889, 7.2897, 7.2893, 7.289, 7.2886, 7.2883, 7.2879, 7.2875, 7.2872, 7.2879, 7.2882, 7.2878, 7.2874, 7.2871, 7.2869, 7.2864, 7.286, 7.2858, 7.2854, 7.2851, 7.2847, 7.2843, 7.2839, 7.2846, 7.2853, 7.285, 7.2846, 7.2844, 7.2841, 7.2837, 7.2833, 7.2829, 7.2836, 7.2833, 7.2829, 7.2826, 7.2823, 7.2831, 7.2827, 7.2823, 7.2823, 7.2819, 7.2816, 7.2824, 7.282, 7.2816, 7.2824, 7.282, 7.2818, 7.2816, 7.2812, 7.282, 7.2816, 7.2823, 7.2819, 7.2828, 7.2826, 7.2834, 7.283, 7.2826, 7.2824, 7.282, 7.2828, 7.2824, 7.2821, 7.2817, 7.2825, 7.2833, 7.2829, 7.2837, 7.2845, 7.2844, 7.2841, 7.2837, 7.2845, 7.2843, 7.2839, 7.2837, 7.2836, 7.2845, 7.2841, 7.2837, 7.2833, 7.2829, 7.2825, 7.2823, 7.2819, 7.2817, 7.2813, 7.2809, 7.2838, 7.2846, 7.2855, 7.2863, 7.2871, 7.2882, 7.289, 7.2886, 7.2872, 7.2879, 7.2875, 7.2872, 7.3009, 7.3005, 7.3001, 7.2998, 7.3006, 7.3004, 7.3002, 7.2999, 7.3008, 7.3006, 7.3008, 7.3016, 7.3012, 7.3008, 7.3029, 7.3027, 7.3027, 7.3024, 7.302, 7.3016, 7.3012, 7.3009, 7.3005, 7.3006, 7.3014, 7.301, 7.3018, 7.3015, 7.3013, 7.301, 7.3007, 7.3003, 7.301, 7.3018, 7.3015, 7.3011, 7.3007, 7.3004, 7.3, 7.2996, 7.2992, 7.2989, 7.2987, 7.2984, 7.298, 7.2977, 7.3033, 7.3029, 7.3026, 7.3032, 7.3028, 7.3026, 7.3024, 7.3025, 7.3033, 7.303, 7.3028, 7.3025, 7.3033, 7.3044, 7.3052, 7.3048, 7.3046, 7.3042, 7.305, 7.3057, 7.3053, 7.305, 7.3047, 7.3046, 7.3054, 7.305, 7.3046, 7.3053, 7.3059, 7.3055, 7.304, 7.3037, 7.3033, 7.3031, 7.3027, 7.3026, 7.3022, 7.3018, 7.3025, 7.3022, 7.3022, 7.302, 7.3007, 7.3004, 7.3, 7.2997, 7.2993, 7.299, 7.2986, 7.2982, 7.2982, 7.3003, 7.3, 7.2996, 7.3004, 7.3011, 7.3018, 7.3025, 7.3021, 7.3017, 7.3014, 7.301, 7.3006, 7.3013, 7.3009, 7.3007, 7.3014, 7.3011, 7.3007, 7.3003, 7.2999, 7.2995, 7.2991, 7.2979, 7.2975, 7.2972, 7.2968, 7.2964, 7.2971, 7.2967, 7.2964, 7.2973, 7.298, 7.2989, 7.2986, 7.2982, 7.2989, 7.2986, 7.2982, 7.2979, 7.2976, 7.2976, 7.2974, 7.2973, 7.2973, 7.2969, 7.2956, 7.2954, 7.2962, 7.2959, 7.2956, 7.2953, 7.2949, 7.2945, 7.2943, 7.295, 7.2947, 7.2943, 7.2941, 7.2937, 7.2935, 7.2942, 7.2938, 7.2935, 7.2942, 7.2949, 7.2946, 7.2942, 7.2949, 7.2945, 7.2942, 7.2938, 7.2934, 7.2932, 7.2928, 7.2924, 7.2931, 7.2927, 7.2924, 7.2924, 7.292, 7.2916, 7.2913, 7.291, 7.2908, 7.2906, 7.2913, 7.292, 7.2916, 7.2914, 7.2911, 7.2907, 7.2903, 7.2902, 7.2898, 7.2895, 7.2893, 7.2893, 7.289, 7.2888, 7.2909, 7.2917, 7.2915, 7.2912, 7.2909, 7.2916, 7.2912, 7.292, 7.2916, 7.2913, 7.2911, 7.2918, 7.2916, 7.2923, 7.2919, 7.2916, 7.2912, 7.2914, 7.291, 7.2906, 7.2913, 7.291, 7.2907, 7.2903, 7.2899, 7.2895, 7.2902, 7.2899, 7.2897, 7.2895, 7.2891, 7.2888, 7.2884, 7.289, 7.2903, 7.2899, 7.2906, 7.2903, 7.29, 7.2898, 7.2894, 7.2901, 7.2909, 7.2905, 7.2901, 7.2908, 7.2905, 7.2912, 7.2912, 7.2908, 7.2906, 7.2903, 7.2899, 7.2895, 7.2892, 7.2888, 7.2886, 7.2882, 7.2878, 7.2875, 7.2872, 7.2868, 7.2869, 7.2867, 7.2864, 7.2868, 7.2877, 7.2874, 7.2871, 7.2878, 7.294, 7.2937, 7.2933, 7.293, 7.2927, 7.2934, 7.2931, 7.2939, 7.2936, 7.2933, 7.293, 7.2934, 7.2931, 7.2927, 7.2933, 7.293, 7.2927, 7.2924, 7.292, 7.2928, 7.2924, 7.292, 7.2917, 7.2914, 7.291, 7.2907, 7.2903, 7.2899, 7.2895, 7.2902, 7.2898, 7.2894, 7.2891, 7.2891, 7.2888, 7.2884, 7.288, 7.2878, 7.2874, 7.2872, 7.2868, 7.2864, 7.286, 7.2867, 7.2907, 7.2903, 7.2901, 7.2897, 7.29, 7.2907, 7.2914, 7.2911, 7.2918, 7.2965, 7.2961, 7.2957, 7.2964, 7.2971, 7.2968, 7.2974, 7.297, 7.2967, 7.2974, 7.2982, 7.2979, 7.2976, 7.2972, 7.2979, 7.2975, 7.2981, 7.2977, 7.2974, 7.2981, 7.2978, 7.2975, 7.2972, 7.297, 7.2966, 7.2962, 7.298, 7.2987, 7.2984, 7.2982, 7.2978, 7.2974, 7.297, 7.2977, 7.2973, 7.2971, 7.2968, 7.2967, 7.2963, 7.2962, 7.297, 7.2967, 7.2975, 7.2971, 7.2968, 7.2964, 7.2961, 7.296, 7.2956, 7.2952, 7.295, 7.2946, 7.2942, 7.2949, 7.2945, 7.2952, 7.2948, 7.2956, 7.2953, 7.2961, 7.2958, 7.2968, 7.2976, 7.2973, 7.2971, 7.2968, 7.2967, 7.2965, 7.2968, 7.2976, 7.2972, 7.2969, 7.2966, 7.2988, 7.2995, 7.2993, 7.299, 7.2987, 7.2993, 7.2989, 7.2986, 7.2983, 7.298, 7.2987, 7.2984, 7.298, 7.2976, 7.2973, 7.2969, 7.2969, 7.2965, 7.2963, 7.2959, 7.2966, 7.2962, 7.2969, 7.2966, 7.2973, 7.2969, 7.2967, 7.2964, 7.2952, 7.296, 7.2956, 7.2953, 7.2951, 7.2958, 7.2956, 7.2952, 7.2949, 7.2946, 7.2943, 7.294, 7.2937, 7.2935, 7.2943, 7.294, 7.2937, 7.2934, 7.293, 7.2928, 7.2925, 7.2921, 7.2918, 7.2915, 7.2912, 7.2909, 7.2942, 7.2938, 7.2945, 7.2942, 7.2949, 7.2955, 7.2953, 7.296, 7.2956, 7.2953, 7.2949, 7.2946, 7.2943, 7.295, 7.2947, 7.2954, 7.2961, 7.296, 7.2958, 7.2956, 7.2962, 7.2959, 7.2966, 7.2963, 7.2959, 7.2966, 7.2972, 7.2969, 7.2966, 7.2973, 7.297, 7.2966, 7.2963, 7.2962, 7.2969, 7.2965, 7.2961, 7.2968, 7.2965, 7.2961, 7.2958, 7.2954, 7.2951, 7.2947, 7.2943, 7.2949, 7.2946, 7.2934, 7.2932, 7.2931, 7.2928, 7.293, 7.2926, 7.2924, 7.2931, 7.2928, 7.2934, 7.2931, 7.2938, 7.2935, 7.2942, 7.294, 7.2937, 7.2935, 7.2944, 7.294, 7.2947, 7.2945, 7.2941, 7.2938, 7.2935, 7.2932, 7.294, 7.2937, 7.2934, 7.2931, 7.2928, 7.2925, 7.2921, 7.2918, 7.2915, 7.2916, 7.2915, 7.2912, 7.2909, 7.2906, 7.2904, 7.292, 7.2916, 7.2913, 7.291, 7.2906, 7.2903, 7.2899, 7.2906, 7.2902, 7.2917, 7.2914, 7.291, 7.2898, 7.2908, 7.2905, 7.2933, 7.2949, 7.2946, 7.2943, 7.2961, 7.2957, 7.2963, 7.298, 7.2987, 7.2983, 7.298, 7.2986, 7.3003, 7.301, 7.3007, 7.3003, 7.3001, 7.2998, 7.2995, 7.3002, 7.3025, 7.3022, 7.3034, 7.3038, 7.3046, 7.3044, 7.304, 7.3036, 7.3065, 7.3072, 7.307, 7.3067, 7.3071, 7.3069, 7.3066, 7.3064, 7.3071, 7.3069, 7.3065, 7.3061, 7.3068, 7.3066, 7.3063, 7.307, 7.3077, 7.3077, 7.3074, 7.3081, 7.3077, 7.3073, 7.308, 7.3077, 7.3076, 7.3083, 7.308, 7.3078, 7.3075, 7.3073, 7.307, 7.3069, 7.3067, 7.3074, 7.3082, 7.3089, 7.3096, 7.3093, 7.3091, 7.3087, 7.3092, 7.3099, 7.3097, 7.3096, 7.3103, 7.3099, 7.3096, 7.3103, 7.3101, 7.3099, 7.3096, 7.3092, 7.309, 7.3097, 7.3103, 7.311, 7.3108, 7.3115, 7.3114, 7.3122, 7.3119, 7.3116, 7.3123, 7.3122, 7.3121, 7.3119, 7.3117, 7.3114, 7.3111, 7.3111, 7.3109, 7.3106, 7.3103, 7.31, 7.3098, 7.3129, 7.3128, 7.3134, 7.313, 7.3129, 7.3119, 7.3116, 7.3112, 7.311, 7.3098, 7.3095, 7.3094, 7.309, 7.3097, 7.3094, 7.309, 7.3087, 7.3084, 7.3082, 7.3078, 7.3075, 7.3072, 7.3068, 7.3064, 7.3087, 7.3084, 7.3081, 7.3081, 7.3078, 7.3075, 7.3066, 7.3085, 7.3102, 7.3098, 7.3094, 7.3091, 7.3089, 7.3087, 7.3084, 7.3081, 7.3078, 7.3084, 7.3087, 7.3074, 7.308, 7.3077, 7.3075, 7.3067, 7.3064, 7.3071, 7.3064, 7.3061, 7.3069, 7.3067, 7.3065, 7.3062, 7.3061, 7.3059, 7.3059, 7.3067, 7.3067, 7.3063, 7.3061, 7.3068, 7.3068, 7.3066, 7.3064, 7.3061, 7.3061, 7.3069, 7.3077, 7.3074, 7.3073, 7.3072, 7.3072, 7.308, 7.3079, 7.3078, 7.3075, 7.3075, 7.3072, 7.308, 7.3079, 7.3087, 7.3076, 7.3076, 7.3076, 7.3076, 7.3073], '192.168.122.116': [10.8111, 10.8828, 9.1753, 8.3186, 7.9092, 7.6551, 7.4737, 7.1981, 7.029, 7.4404, 7.2458, 7.129, 7.0411, 6.9245, 6.9201, 6.8585, 6.7923, 7.064, 6.7169, 7.1985, 7.1304, 7.1376, 7.0845, 7.297, 7.081, 7.0172, 7.0267, 7.5454, 7.4673, 7.4348, 7.3962, 7.3295, 7.4259, 7.3906, 7.3321, 7.2881, 7.2688, 7.2326, 7.3389, 7.419, 7.497, 7.4442, 7.4121, 7.3764, 7.3418, 7.4378, 7.4115, 7.3763, 7.3389, 7.3081, 7.2719, 7.2424, 7.4651, 7.4295, 7.3932, 7.3561, 7.319, 7.2837, 7.2559, 7.2215, 7.5617, 7.5397, 7.5042, 7.4772, 7.4734, 7.458, 7.4286, 7.4166, 7.3879, 7.4388, 7.4115, 7.3842, 7.357, 7.3805, 7.3649, 7.3513, 7.3309, 7.3149, 7.2974, 7.3401, 7.3155, 7.3594, 7.3368, 7.3218, 7.3059, 7.3478, 7.3229, 7.3084, 7.3526, 7.3403, 7.3252, 7.3455, 7.3251, 7.3041, 7.2955, 7.3329, 7.3152, 7.3, 7.3002, 7.2798, 7.5208, 7.4998, 7.4345, 7.4199, 7.4533, 7.4842, 7.5139, 7.4939, 7.4789, 7.4753, 7.4618, 7.4531, 7.3924, 7.4285, 7.4139, 7.4474, 7.4327, 7.4668, 7.4521, 7.4398, 7.428, 7.4268, 7.4119, 7.3977, 7.4285, 7.4594, 7.4469, 7.4305, 7.4157, 7.4038, 7.3903, 7.3768, 7.4039, 7.475, 7.4651, 7.495, 7.4839, 7.4708, 7.4546, 7.4406, 7.4988, 7.4884, 7.4799, 7.5034, 7.4948, 7.482, 7.4768, 7.4649, 7.4512, 7.5702, 7.5556, 7.6097, 7.5978, 7.5851, 7.5422, 7.5284, 7.5163, 7.5032, 7.4937, 7.4849, 7.4741, 7.462, 7.4506, 7.437, 7.4251, 7.4234, 7.3841, 7.372, 7.3612, 7.3495, 7.3434, 7.3345, 7.3869, 7.3774, 7.3692, 7.3595, 7.3564, 7.3448, 7.3348, 7.3286, 7.3179, 7.3359, 7.4373, 7.4283, 7.4186, 7.4094, 7.3987, 7.3918, 7.3858, 7.3749, 7.366, 7.357, 7.353, 7.3716, 7.3902, 7.3795, 7.3702, 7.3608, 7.3547, 7.3481, 7.3382, 7.3288, 7.3216, 7.337, 7.3302, 7.3211, 7.3386, 7.3308, 7.322, 7.318, 7.3096, 7.3002, 7.3469, 7.3407, 7.3305, 7.3478, 7.3428, 7.3337, 7.3305, 7.3478, 7.3402, 7.3564, 7.3499, 7.3287, 7.3195, 7.3137, 7.3075, 7.3013, 7.3199, 7.3388, 7.3571, 7.3723, 7.3682, 7.3647, 7.3586, 7.3354, 7.3266, 7.3186, 7.3143, 7.3293, 7.3224, 7.3198, 7.3113, 7.2868, 7.2946, 7.2893, 7.2831, 7.2766, 7.2691, 7.2834, 7.2867, 7.2807, 7.2777, 7.2915, 7.2842, 7.277, 7.2689, 7.2638, 7.2586, 7.2727, 7.2671, 7.2597, 7.2523, 7.2452, 7.2398, 7.233, 7.2462, 7.2391, 7.2529, 7.2664, 7.2614, 7.2572, 7.2519, 7.2453, 7.24, 7.2342, 7.2288, 7.2411, 7.2361, 7.2292, 7.2242, 7.2176, 7.2112, 7.2234, 7.2236, 7.2189, 7.2123, 7.2076, 7.2201, 7.2137, 7.2324, 7.2291, 7.2417, 7.2355, 7.2293, 7.2415, 7.2538, 7.2473, 7.2593, 7.2708, 7.2874, 7.2811, 7.2774, 7.2881, 7.336, 7.3328, 7.3259, 7.3213, 7.3152, 7.3092, 7.3032, 7.3133, 7.3068, 7.301, 7.3124, 7.3058, 7.3003, 7.337, 7.3305, 7.3268, 7.338, 7.3326, 7.3333, 7.3274, 7.3245, 7.3356, 7.3297, 7.3236, 7.3219, 7.3183, 7.3129, 7.3077, 7.3048, 7.3029, 7.2979, 7.2921, 7.2888, 7.2839, 7.2965, 7.3243, 7.3338, 7.33, 7.3405, 7.3351, 7.3317, 7.3322, 7.3312, 7.3271, 7.3223, 7.3225, 7.3197, 7.3624, 7.3601, 7.3855, 7.3799, 7.3738, 7.3843, 7.3653, 7.3778, 7.3586, 7.3708, 7.3821, 7.3638, 7.3678, 7.363, 7.3585, 7.3399, 7.3343, 7.3428, 7.3513, 7.3461, 7.3406, 7.3363, 7.3336, 7.3164, 7.3259, 7.3211, 7.3167, 7.3125, 7.3085, 7.3048, 7.2994, 7.295, 7.2907, 7.299, 7.2944, 7.2916, 7.2875, 7.2833, 7.2827, 7.2797, 7.2759, 7.2862, 7.2829, 7.2798, 7.2747, 7.2704, 7.2656, 7.2756, 7.2856, 7.2938, 7.2902, 7.2853, 7.2825, 7.2801, 7.2777, 7.2868, 7.2718, 7.268, 7.2665, 7.2755, 7.2726, 7.2564, 7.2677, 7.2644, 7.2483, 7.2601, 7.2443, 7.2464, 7.2417, 7.2421, 7.2383, 7.2405, 7.2364, 7.2319, 7.2406, 7.2406, 7.2491, 7.246, 7.2416, 7.2502, 7.2461, 7.2539, 7.2495, 7.2453, 7.2424, 7.238, 7.2348, 7.2322, 7.2284, 7.2262, 7.2403, 7.238, 7.2383, 7.2464, 7.2526, 7.2493, 7.2458, 7.2428, 7.2389, 7.2463, 7.2533, 7.2487, 7.2705, 7.2778, 7.2734, 7.2695, 7.2661, 7.2732, 7.2719, 7.2797, 7.2763, 7.287, 7.2834, 7.2909, 7.2866, 7.2825, 7.2826, 7.2906, 7.2863, 7.2824, 7.2906, 7.2908, 7.2867, 7.2839, 7.2805, 7.2785, 7.2792, 7.2755, 7.2745, 7.2718, 7.2792, 7.2769, 7.2846, 7.281, 7.2899, 7.2966, 7.2981, 7.2982, 7.3062, 7.3021, 7.2982, 7.2946, 7.2956, 7.3028, 7.3108, 7.3068, 7.3138, 7.3209, 7.3256, 7.3216, 7.3193, 7.3161, 7.3127, 7.3107, 7.3067, 7.3047, 7.3135, 7.3104, 7.3076, 7.3052, 7.3012, 7.2974, 7.2939, 7.2905, 7.2964, 7.2931, 7.2999, 7.2967, 7.2932, 7.2912, 7.2887, 7.2956, 7.2917, 7.2881, 7.2844, 7.2812, 7.2781, 7.2743, 7.2719, 7.2796, 7.2768, 7.2733, 7.2694, 7.2667, 7.2646, 7.2638, 7.2611, 7.2575, 7.2642, 7.2606, 7.2572, 7.2534, 7.253, 7.2413, 7.2482, 7.2545, 7.2521, 7.2492, 7.2464, 7.2432, 7.24, 7.2389, 7.2447, 7.2531, 7.2411, 7.2379, 7.2512, 7.2669, 7.2645, 7.2617, 7.2586, 7.2569, 7.2647, 7.2707, 7.2772, 7.2753, 7.2719, 7.2687, 7.2755, 7.272, 7.2699, 7.2683, 7.2666, 7.2644, 7.2624, 7.2609, 7.2584, 7.2644, 7.2612, 7.2684, 7.2672, 7.2749, 7.2804, 7.277, 7.2735, 7.2716, 7.2693, 7.2659, 7.2641, 7.2614, 7.2597, 7.257, 7.2557, 7.2524, 7.2496, 7.2466, 7.2528, 7.2497, 7.2578, 7.2545, 7.2563, 7.2618, 7.259, 7.2557, 7.2609, 7.2584, 7.2555, 7.2521, 7.2578, 7.2569, 7.2536, 7.2508, 7.2477, 7.2552, 7.2532, 7.2511, 7.248, 7.2448, 7.2457, 7.2444, 7.2423, 7.2398, 7.2371, 7.2362, 7.2329, 7.2305, 7.2287, 7.2255, 7.2308, 7.2289, 7.2258, 7.2227, 7.2195, 7.225, 7.2221, 7.2195, 7.2165, 7.2229, 7.2292, 7.2271, 7.2328, 7.2385, 7.3009, 7.3057, 7.3037, 7.301, 7.2978, 7.2954, 7.2935, 7.2992, 7.2977, 7.3033, 7.305, 7.3216, 7.3186, 7.3155, 7.321, 7.319, 7.3162, 7.3139, 7.3107, 7.308, 7.3074, 7.3046, 7.3024, 7.2993, 7.3046, 7.3026, 7.2998, 7.2973, 7.2955, 7.2939, 7.299, 7.3038, 7.3007, 7.2979, 7.2957, 7.293, 7.2901, 7.2873, 7.2853, 7.2826, 7.2801, 7.2774, 7.2745, 7.2809, 7.2783, 7.2756, 7.273, 7.2781, 7.2757, 7.2805, 7.2853, 7.2825, 7.28, 7.2784, 7.276, 7.2812, 7.2863, 7.2914, 7.2888, 7.2943, 7.2914, 7.2885, 7.2869, 7.2845, 7.2819, 7.2875, 7.2856, 7.2829, 7.2803, 7.2782, 7.2836, 7.2823, 7.28, 7.2774, 7.2747, 7.2736, 7.2737, 7.2711, 7.264, 7.2616, 7.2681, 7.2656, 7.2629, 7.2601, 7.2575, 7.2548, 7.2525, 7.25, 7.2475, 7.2462, 7.2437, 7.2421, 7.2335, 7.231, 7.2363, 7.2345, 7.2399, 7.2375, 7.2352, 7.2333, 7.2308, 7.2284, 7.233, 7.2305, 7.2281, 7.2268, 7.2317, 7.2294, 7.2276, 7.2253, 7.2232, 7.228, 7.2263, 7.2239, 7.2284, 7.2272, 7.2341, 7.2317, 7.2292, 7.2341, 7.2318, 7.2299, 7.2275, 7.2394, 7.2458, 7.2435, 7.2495, 7.2544, 7.2601, 7.2642, 7.2689, 7.2665, 7.2641, 7.2641, 7.2689, 7.2671, 7.2646, 7.2626, 7.2601, 7.2587, 7.2567, 7.2545, 7.2521, 7.2574, 7.2549, 7.2491, 7.2568, 7.2558, 7.2548, 7.2594, 7.2571, 7.2617, 7.2797, 7.2774, 7.2781, 7.283, 7.2888, 7.287, 7.2863, 7.2839, 7.2814, 7.2793, 7.2786, 7.2827, 7.2812, 7.2853, 7.2844, 7.2823, 7.2801, 7.2788, 7.2791, 7.2768, 7.2748, 7.2734, 7.271, 7.2701, 7.2687, 7.2732, 7.2777, 7.2754, 7.2797, 7.278, 7.2756, 7.2739, 7.2778, 7.2773, 7.2752, 7.279, 7.2831, 7.2812, 7.279, 7.2766, 7.2747, 7.2725, 7.2732, 7.2955, 7.2931, 7.2973, 7.3073, 7.305, 7.3025, 7.3005, 7.299, 7.2967, 7.3011, 7.2988, 7.2972, 7.2895, 7.2876, 7.2988, 7.2975, 7.2958, 7.2879, 7.2866, 7.2982, 7.3235, 7.3218, 7.3254, 7.3295, 7.3527, 7.351, 7.3492, 7.3472, 7.3544, 7.3525, 7.3565, 7.3605, 7.3589, 7.3528, 7.3511, 7.3488, 7.3525, 7.3506, 7.3489, 7.3468, 7.3705, 7.3683, 7.3664, 7.3702, 7.3688, 7.3669, 7.3646, 7.3627, 7.3667, 7.365, 7.3635, 7.3711, 7.3812, 7.3791, 7.3779, 7.3762, 7.3744, 7.3722, 7.37, 7.3678, 7.3655, 7.3693, 7.3673, 7.3674, 7.3709, 7.369, 7.373, 7.3768, 7.3757, 7.3741, 7.378, 7.3818, 7.3859, 7.3968, 7.3944, 7.3926, 7.3903, 7.3882, 7.3918, 7.3898, 7.3876, 7.3864, 7.3848, 7.3837, 7.3824, 7.3809, 7.389, 7.3926, 7.391, 7.3895, 7.3876, 7.3912, 7.3893, 7.3873, 7.3852, 7.383, 7.3808, 7.3785, 7.3823, 7.3811, 7.3792, 7.378, 7.3758, 7.3797, 7.3798, 7.3831, 7.3813, 7.3791, 7.3775, 7.3704, 7.3741, 7.3779, 7.3758, 7.3736, 7.3716, 7.3752, 7.3788, 7.3718, 7.3699, 7.3678, 7.3714, 7.3693, 7.3675, 7.366, 7.3648, 7.3629, 7.361, 7.3595, 7.3576, 7.3556, 7.3537, 7.3517, 7.3553, 7.3542, 7.3683, 7.3745, 7.3732, 7.3721, 7.371, 7.375, 7.3785, 7.3774, 7.3754, 7.3733, 7.377, 7.3764, 7.383, 7.3809, 7.3842, 7.3876, 7.3808, 7.3798, 7.3835, 7.382, 7.3751, 7.3787, 7.3766, 7.375, 7.3728, 7.3675, 7.3655, 7.3635, 7.3669, 7.3659, 7.3639, 7.362, 7.361, 7.3596, 7.3576, 7.3558, 7.3545, 7.3526, 7.346, 7.3495, 7.353, 7.3522, 7.3503, 7.3537, 7.3525, 7.3557, 7.3551, 7.3541, 7.3476, 7.3463, 7.345, 7.3443, 7.3482, 7.3467, 7.3401, 7.3402, 7.3391, 7.3379, 7.3367, 7.3349, 7.3345, 7.338, 7.336, 7.334, 7.332, 7.3367, 7.335, 7.333, 7.3321, 7.3352, 7.3335, 7.332, 7.3301, 7.3281, 7.3265, 7.3248, 7.3231, 7.3211, 7.3201, 7.314, 7.3121, 7.3104, 7.3138, 7.3119, 7.3157, 7.314, 7.3127, 7.3161, 7.3148, 7.3128, 7.311, 7.3093, 7.3128, 7.3117, 7.3153, 7.3143, 7.3128, 7.3122, 7.3106, 7.3166, 7.3152, 7.3257, 7.3293, 7.3276, 7.3271, 7.3254, 7.3241, 7.3228, 7.3211, 7.3194, 7.3175, 7.3161, 7.3193, 7.3176, 7.3159, 7.3142, 7.3132, 7.3115, 7.3096, 7.3082, 7.3063, 7.3056, 7.3048, 7.3083, 7.3111, 7.3099, 7.3082, 7.3022, 7.301, 7.2997, 7.2982, 7.3016, 7.3007, 7.3043, 7.3025, 7.3009, 7.2994, 7.303, 7.3061, 7.3147, 7.3135, 7.3121, 7.3106, 7.3091, 7.3076, 7.306, 7.3048, 7.3032, 7.3021, 7.3074, 7.3059, 7.3044, 7.3034, 7.3064, 7.3049, 7.3003, 7.3013, 7.2969, 7.3008, 7.2992, 7.2979, 7.2968, 7.2951, 7.2933, 7.2915, 7.2945, 7.2963, 7.2947, 7.2934, 7.2917, 7.2947, 7.2977, 7.3009, 7.2996, 7.2978, 7.3006, 7.3035, 7.3018, 7.3004, 7.2994, 7.2936, 7.2964, 7.2992, 7.302, 7.3048, 7.3036, 7.3023, 7.3051, 7.3042, 7.3076, 7.306, 7.3043, 7.3026, 7.3009, 7.2993, 7.2977, 7.2921, 7.2906, 7.289, 7.2875, 7.2905, 7.2898, 7.2927, 7.2954, 7.2939, 7.2969, 7.2998, 7.3026, 7.3057, 7.3041, 7.2986, 7.2971, 7.2957, 7.294, 7.2929, 7.2925, 7.2868, 7.2858, 7.2849, 7.2833, 7.2863, 7.2901, 7.2932, 7.2934, 7.2922, 7.2906, 7.2891, 7.2875, 7.2905, 7.2933, 7.2926, 7.2959, 7.2945, 7.2938, 7.2926, 7.2919, 7.2902, 7.289, 7.2923, 7.2908, 7.3073, 7.3137, 7.3163, 7.315, 7.3139, 7.3125, 7.3108, 7.3096, 7.3083, 7.3114, 7.3102, 7.3129, 7.3113, 7.3142, 7.3171, 7.3155, 7.3141, 7.3128, 7.3161, 7.3147, 7.3131, 7.3117, 7.3144, 7.3131, 7.3116, 7.3146, 7.3137, 7.3124, 7.3107, 7.31, 7.3091, 7.3084, 7.3114, 7.3111, 7.3139, 7.3123, 7.3112, 7.3096, 7.3082, 7.311, 7.3098, 7.3088, 7.3121, 7.3113, 7.314, 7.3124, 7.3109, 7.3097, 7.3087, 7.3072, 7.3057, 7.3043, 7.3029, 7.3014, 7.2967, 7.2922, 7.2906, 7.2933, 7.2917, 7.2905, 7.2889, 7.2873, 7.2902, 7.2931, 7.2916, 7.29, 7.2893, 7.2882, 7.291, 7.2895, 7.2921, 7.2924, 7.2917, 7.2944, 7.2931, 7.2957, 7.2946, 7.2937, 7.2926, 7.2911, 7.2895, 7.2921, 7.2907, 7.2896, 7.2881, 7.2867, 7.2863, 7.2814, 7.2798, 7.2786, 7.2771, 7.2796, 7.2782, 7.2767, 7.2792, 7.2788, 7.2778, 7.2767, 7.2753, 7.2739, 7.2726, 7.2719, 7.2704, 7.269, 7.2719, 7.2748, 7.274, 7.2729, 7.2756, 7.2784, 7.2769, 7.2764, 7.2754, 7.2793, 7.2784, 7.2773, 7.2764, 7.2752, 7.2739, 7.2768, 7.2756, 7.2781, 7.2732, 7.272, 7.2706, 7.2733, 7.2723, 7.2708, 7.2694, 7.268, 7.2672, 7.2665, 7.2652, 7.2637, 7.2628, 7.2655, 7.2682, 7.2669, 7.2654, 7.2681, 7.281, 7.2796, 7.2782, 7.2808, 7.2794, 7.278, 7.2766, 7.2761, 7.2714, 7.27, 7.2687, 7.2675, 7.2719, 7.2709, 7.2695, 7.2682, 7.2668, 7.2654, 7.2605, 7.2571, 7.2565, 7.2517, 7.2504, 7.254, 7.2533, 7.252, 7.2547, 7.2574, 7.2561, 7.2546, 7.2609, 7.2596, 7.2586, 7.2571, 7.2558, 7.2545, 7.2573, 7.2597, 7.2688, 7.2681, 7.2667, 7.2621, 7.2608, 7.2596, 7.2584, 7.2571, 7.2557, 7.2511, 7.2505, 7.2531, 7.2518, 7.2506, 7.2493, 7.2479, 7.2433, 7.2461, 7.2486, 7.2475, 7.2462, 7.2456, 7.2485, 7.2471, 7.2457, 7.2444, 7.2435, 7.2429, 7.2425, 7.2416, 7.2405, 7.2432, 7.2386, 7.2375, 7.2401, 7.2391, 7.2383, 7.2376, 7.2402, 7.2427, 7.2454, 7.2442, 7.2434, 7.2421, 7.2412, 7.2398, 7.2428, 7.2425, 7.2414, 7.2447, 7.2438, 7.2464, 7.2451, 7.2439, 7.2464, 7.2453, 7.2444, 7.2465, 7.2455, 7.2445, 7.24, 7.2361, 7.2364, 7.2394, 7.242, 7.2409, 7.24, 7.2386, 7.238, 7.2405, 7.2433, 7.242, 7.2376, 7.2399, 7.2425, 7.2412, 7.2402, 7.2392, 7.2383, 7.2373, 7.2362, 7.2352, 7.234, 7.2329, 7.2318, 7.2309, 7.2295, 7.2293, 7.2287, 7.2274, 7.2264, 7.2253, 7.2241, 7.2232, 7.2258, 7.2247, 7.2234, 7.2224, 7.2212, 7.2236, 7.223, 7.2218, 7.221, 7.2276, 7.2265, 7.229, 7.2281, 7.2268, 7.2262, 7.2252, 7.2244, 7.2266, 7.226, 7.2248, 7.2242, 7.223, 7.2251, 7.234, 7.2328, 7.2319, 7.2306, 7.2299, 7.2286, 7.2273, 7.2269, 7.2257, 7.2249, 7.2241, 7.2233, 7.2221, 7.2211, 7.2204, 7.2197, 7.2185, 7.2174, 7.2166, 7.2154, 7.2142, 7.2133, 7.2125, 7.2113, 7.2077, 7.2101, 7.2093, 7.2091, 7.2084, 7.2076, 7.2067, 7.2056, 7.2051, 7.2076, 7.2068, 7.2057, 7.2044, 7.2033, 7.2021, 7.2009, 7.2058, 7.205, 7.2038, 7.2038, 7.2026, 7.202, 7.2013, 7.2006, 7.1995, 7.201, 7.2, 7.1994, 7.2042, 7.203, 7.2062, 7.205, 7.2042, 7.203, 7.2022, 7.2011, 7.2001, 7.1989, 7.2034, 7.2025, 7.2013, 7.2067, 7.2066, 7.2057, 7.2046, 7.2035, 7.2025, 7.2015, 7.1975, 7.1967, 7.1956, 7.1979, 7.1969, 7.1963, 7.1956, 7.1947, 7.1944, 7.1968, 7.196, 7.1981, 7.197, 7.1965, 7.1958, 7.1951, 7.1942, 7.1931, 7.1925, 7.1919, 7.1908, 7.1899, 7.1923, 7.1913, 7.1937, 7.1931, 7.1953, 7.1941, 7.1933, 7.1893, 7.1882, 7.1963, 7.1955, 7.1943, 7.1956, 7.1948, 7.1939, 7.1929, 7.1924, 7.1913, 7.1904, 7.1892, 7.1882, 7.1872, 7.1898, 7.1887, 7.1947, 7.1971, 7.1962, 7.1955, 7.1944, 7.1933, 7.1932, 7.1924, 7.1913, 7.1901, 7.1925, 7.1917, 7.1908, 7.1897, 7.1928, 7.1923, 7.1912, 7.1939, 7.1966, 7.1963, 7.1956, 7.1953, 7.1977, 7.1965, 7.211, 7.2104, 7.2128, 7.2195, 7.2193, 7.2153, 7.2145, 7.2137, 7.2132, 7.2122, 7.2111, 7.2133, 7.2123, 7.2114, 7.2105, 7.2098, 7.209, 7.208, 7.2069, 7.2061, 7.2055, 7.2015, 7.2036, 7.2025, 7.2047, 7.2038, 7.2028, 7.2017, 7.2015, 7.2006, 7.1996, 7.1989, 7.1982, 7.1972, 7.1963, 7.1955, 7.1982, 7.1976, 7.1972, 7.1961, 7.1952, 7.1943, 7.1981, 7.2001, 7.199, 7.1981, 7.2002, 7.1991, 7.1981, 7.1971, 7.1995, 7.1984, 7.1976, 7.1968, 7.196, 7.1953, 7.1947, 7.1969, 7.1961, 7.195, 7.1969, 7.196, 7.1954, 7.1943, 7.1932, 7.1921, 7.1909, 7.1899, 7.1889, 7.1878, 7.1873, 7.1869, 7.1859, 7.1852, 7.1842, 7.1863, 7.1853, 7.1844, 7.1834, 7.1824, 7.1846, 7.1835, 7.1863, 7.1887, 7.1999, 7.1989, 7.1951, 7.194, 7.1961, 7.1925, 7.1916, 7.1907, 7.19, 7.1901, 7.1863, 7.1882, 7.1903, 7.1866, 7.1857, 7.1853, 7.1876, 7.1865, 7.1854, 7.1874, 7.1867, 7.1861, 7.1855, 7.1846, 7.184, 7.1861, 7.1854, 7.1849, 7.1876, 7.1841, 7.1834, 7.183, 7.1819, 7.1838, 7.1827, 7.1821, 7.184, 7.1863, 7.1883, 7.1873, 7.1863, 7.1884, 7.1905, 7.1895, 7.1885, 7.1875, 7.1867, 7.1888, 7.1877, 7.1868, 7.1858, 7.1847, 7.1836, 7.1825, 7.1875, 7.1866, 7.186, 7.185, 7.1842, 7.1861, 7.1881, 7.1871, 7.1865, 7.1854, 7.1871, 7.1891, 7.1881, 7.1871, 7.189, 7.1881, 7.1871, 7.1864, 7.1884, 7.1874, 7.1864, 7.1855, 7.1847, 7.1867, 7.1858, 7.1878, 7.1868, 7.1916, 7.1908, 7.1899, 7.1891, 7.1912, 7.1902, 7.1896, 7.1886, 7.1875, 7.1865, 7.1885, 7.1879, 7.1898, 7.189, 7.1883, 7.1877, 7.187, 7.1889, 7.188, 7.19, 7.189, 7.188, 7.1871, 7.1861, 7.1853, 7.1846, 7.1838, 7.183, 7.1819, 7.1809, 7.1801, 7.1823, 7.1815, 7.181, 7.1803, 7.1825, 7.1791, 7.1781, 7.1801, 7.179, 7.1783, 7.1778, 7.1769, 7.1759, 7.1778, 7.1773, 7.1764, 7.1755, 7.1744, 7.1735, 7.1893, 7.1896, 7.1889, 7.188, 7.1938, 7.1929, 7.192, 7.1911, 7.1967, 7.1963, 7.1953, 7.1922, 7.1941, 7.1932, 7.1953, 7.1973, 7.1966, 7.1986, 7.198, 7.197, 7.1964, 7.1955, 7.1976, 7.197, 7.1964, 7.1982, 7.2006, 7.2028, 7.2018, 7.2009, 7.2, 7.2046, 7.2012, 7.2061, 7.2056, 7.2079, 7.2158, 7.2152, 7.2368, 7.2359, 7.2349, 7.2342, 7.2345, 7.2366, 7.2358, 7.2379, 7.2372, 7.2344, 7.2336, 7.2328, 7.2322, 7.2322, 7.2313, 7.2307, 7.2331, 7.2321, 7.2337, 7.2355, 7.2372, 7.2395, 7.2387, 7.2378, 7.2426, 7.2418, 7.239, 7.2381, 7.2374, 7.2365, 7.2357, 7.2351, 7.2372, 7.2366, 7.2387, 7.2413, 7.2404, 7.2428, 7.2418, 7.2441, 7.2432, 7.2426, 7.2421, 7.2413, 7.2407, 7.2428, 7.2418, 7.2411, 7.2401, 7.2392, 7.2416, 7.241, 7.2448, 7.2466, 7.2457, 7.2476, 7.2472, 7.2492, 7.249, 7.2509, 7.2499, 7.249, 7.248, 7.2472, 7.2518, 7.2623, 7.267, 7.272, 7.2711, 7.2772, 7.2765, 7.2788, 7.2755, 7.2747, 7.2737, 7.2755, 7.2773, 7.2763, 7.2782, 7.2827, 7.2822, 7.2813, 7.286, 7.291, 7.2908, 7.2982, 7.3055, 7.3056, 7.3054, 7.3044, 7.3035, 7.3003, 7.3028, 7.3048, 7.3039, 7.3031, 7.3021, 7.3039, 7.3029, 7.302, 7.3011, 7.3001, 7.2995, 7.299, 7.2981, 7.2971, 7.2964, 7.2955, 7.2948, 7.2944, 7.2935, 7.2926, 7.2949, 7.2941, 7.2931, 7.2921, 7.2911, 7.2927, 7.2921, 7.2915, 7.2906, 7.2922, 7.2913, 7.2904, 7.2897, 7.2893, 7.2883, 7.2876, 7.2867, 7.2861, 7.2852, 7.2869, 7.2861, 7.2856, 7.2874, 7.2865, 7.2857, 7.2847, 7.2843, 7.2859, 7.2853, 7.2844, 7.2835, 7.2852, 7.282, 7.2813, 7.2805, 7.2822, 7.2818, 7.2814, 7.2834, 7.2828, 7.282, 7.2815, 7.2805, 7.2797, 7.2787, 7.2782, 7.2774, 7.2769, 7.2785, 7.2802, 7.2798, 7.2789, 7.2806, 7.2803, 7.2821, 7.2815, 7.2832, 7.2822, 7.2853, 7.2845, 7.2815, 7.2808, 7.28, 7.2793, 7.2811, 7.2802, 7.2797, 7.2789, 7.278, 7.2771, 7.281, 7.2801, 7.2794, 7.2789, 7.278, 7.2771, 7.2765, 7.2783, 7.2774, 7.2771, 7.2765, 7.276, 7.2751, 7.2742, 7.2738, 7.273, 7.2747, 7.2754, 7.2751, 7.2751, 7.2742, 7.2733, 7.2729, 7.2747, 7.2738, 7.2729, 7.2722, 7.2741, 7.2733, 7.2748, 7.2739, 7.2731, 7.2724, 7.272, 7.2712, 7.2708, 7.2702, 7.2694, 7.2685, 7.2726, 7.2719, 7.2712, 7.2756, 7.2748, 7.2844, 7.2843, 7.2837, 7.2828, 7.287, 7.2914, 7.2906, 7.2927, 7.2929, 7.2926, 7.2925, 7.2923, 7.2919, 7.2935, 7.2929, 7.292, 7.2938, 7.2934, 7.2927, 7.292, 7.2936, 7.2953, 7.2948, 7.2941, 7.3009, 7.3004, 7.2995, 7.2989, 7.2982, 7.2976, 7.2969, 7.296, 7.2976, 7.2993, 7.2984, 7.2976, 7.2993, 7.2984, 7.2975, 7.2983, 7.2999, 7.2968, 7.2962, 7.2953, 7.2972, 7.2967, 7.2963, 7.2955, 7.2949, 7.2965, 7.2957, 7.2974, 7.2966, 7.2958, 7.2974, 7.2968, 7.2985, 7.2977, 7.2994, 7.2986, 7.2978, 7.297, 7.2962, 7.2956, 7.2947, 7.2942, 7.2934, 7.293, 7.2923, 7.2918, 7.2934, 7.2925, 7.2919, 7.2911, 7.2902, 7.292, 7.2937, 7.3051, 7.3068, 7.3084, 7.3077, 7.3071, 7.3063, 7.3079, 7.3071, 7.3064, 7.3056, 7.306, 7.3051, 7.3067, 7.3058, 7.308, 7.3074, 7.3065, 7.3058, 7.3049, 7.3043, 7.3038, 7.3054, 7.3024, 7.3016, 7.3013, 7.3006, 7.2997, 7.2988, 7.298, 7.2976, 7.299, 7.2982, 7.2973, 7.2966, 7.2957, 7.2948, 7.294, 7.2958, 7.2974, 7.2965, 7.2957, 7.2948, 7.2944, 7.2935, 7.2926, 7.2921, 7.2918, 7.2913, 7.2908, 7.29, 7.2893, 7.2885, 7.2878, 7.2873, 7.2868, 7.286, 7.2878, 7.2896, 7.2891, 7.2884, 7.2876, 7.2871, 7.2865, 7.2857, 7.2875, 7.2867, 7.2859, 7.2851, 7.2867, 7.286, 7.2852, 7.2845, 7.2836, 7.2851, 7.2846, 7.2838, 7.2851, 7.2842, 7.2857, 7.2848, 7.284, 7.2857, 7.2873, 7.2865, 7.2857, 7.285, 7.2864, 7.2857, 7.2849, 7.2844, 7.2836, 7.285, 7.2841, 7.2855, 7.2853, 7.2846, 7.2837, 7.2829, 7.2823, 7.2816, 7.281, 7.2803, 7.2797, 7.279, 7.2783, 7.2775, 7.279, 7.2786, 7.2803, 7.2797, 7.2791, 7.2786, 7.2779, 7.2773, 7.2768, 7.2765, 7.2758, 7.2756, 7.2748, 7.2739, 7.2738, 7.2733, 7.2726, 7.2742, 7.2735, 7.2738, 7.2736, 7.2728, 7.2722, 7.2714, 7.271, 7.2726, 7.2719, 7.2713, 7.2707, 7.2699, 7.2709, 7.2701, 7.2733, 7.275, 7.2742, 7.2734, 7.2731, 7.2724, 7.2717, 7.271, 7.2706, 7.2698, 7.2692, 7.2688, 7.2682, 7.2675, 7.267, 7.2664, 7.2643, 7.2662, 7.2656, 7.265, 7.2644, 7.2636, 7.263, 7.2624, 7.2682, 7.2676, 7.2667, 7.2639, 7.2633, 7.2646, 7.2639, 7.2631, 7.2646, 7.264, 7.2655, 7.2648, 7.2662, 7.2657, 7.2649, 7.2646, 7.2638, 7.263, 7.2707, 7.2699, 7.2692, 7.2685, 7.27, 7.2692, 7.2686, 7.2702, 7.2696, 7.2691, 7.2692, 7.2705, 7.272, 7.2714, 7.273, 7.2723, 7.2718, 7.271, 7.2702, 7.2717, 7.2711, 7.2703, 7.2695, 7.271, 7.2702, 7.2696, 7.2692, 7.2665, 7.268, 7.2674, 7.2653, 7.2654, 7.2626, 7.2625, 7.262, 7.2614, 7.2611, 7.2604, 7.2597, 7.259, 7.2614, 7.2646, 7.2619, 7.2633, 7.2626, 7.262, 7.2635, 7.2628, 7.263, 7.2631, 7.2666, 7.2665, 7.2684, 7.2679, 7.2673, 7.2666, 7.2681, 7.2678, 7.2678, 7.2671, 7.2665, 7.2657, 7.2672, 7.2666, 7.266, 7.2687, 7.2679, 7.2671, 7.2666, 7.2659, 7.2653, 7.2632, 7.2649, 7.2659, 7.2652, 7.2624, 7.2617, 7.2631, 7.2657, 7.2649, 7.2641, 7.2634, 7.2667, 7.2664, 7.266, 7.2656, 7.265, 7.2643, 7.2636, 7.2628, 7.2621, 7.2614, 7.2606, 7.26, 7.2613, 7.2628, 7.2623, 7.2617, 7.261, 7.2605, 7.2598, 7.259, 7.2582, 7.2616, 7.2615, 7.2611, 7.2584, 7.2579, 7.2574, 7.2567, 7.254, 7.2555, 7.2548, 7.254, 7.2533, 7.2506, 7.2531, 7.2524, 7.2536, 7.2529, 7.2523, 7.2539, 7.2533, 7.2526, 7.2518, 7.2512, 7.2507, 7.25, 7.2514, 7.2507, 7.25, 7.2514, 7.2508, 7.25, 7.2494, 7.2486, 7.2503, 7.2497, 7.2492, 7.2488, 7.2482, 7.2475, 7.2491, 7.2484, 7.2478, 7.247, 7.2484, 7.2476, 7.2491, 7.2485, 7.2478, 7.2493, 7.2486, 7.2479, 7.2496, 7.2501, 7.2514, 7.2511, 7.2524, 7.2537, 7.2533, 7.2527, 7.2542, 7.2556, 7.255, 7.2562, 7.2555, 7.255, 7.2565, 7.2558, 7.2552, 7.2545, 7.2519, 7.2534, 7.2548, 7.2542, 7.2556, 7.2552, 7.2545, 7.2537, 7.2532, 7.2525, 7.2542, 7.2535, 7.2529, 7.2522, 7.2515, 7.2508, 7.2525, 7.2523, 7.2516, 7.2531, 7.2526, 7.254, 7.2533, 7.2526, 7.2541, 7.2535, 7.2532, 7.2528, 7.2526, 7.2519, 7.2532, 7.2525, 7.2577, 7.2574, 7.2593, 7.2586, 7.2598, 7.2593, 7.2585, 7.2577, 7.2571, 7.2563, 7.2556, 7.2548, 7.254, 7.2554, 7.255, 7.2543, 7.2556, 7.256, 7.2553, 7.2546, 7.254, 7.2535, 7.255, 7.2544, 7.2538, 7.2532, 7.2527, 7.2507, 7.2482, 7.2479, 7.2473, 7.2488, 7.251, 7.2511, 7.2506, 7.2521, 7.2516, 7.2508, 7.2522, 7.2515, 7.2551, 7.2544, 7.2537, 7.253, 7.2507, 7.2521, 7.2535, 7.2528, 7.2526, 7.2519, 7.2534, 7.2527, 7.2541, 7.2556, 7.255, 7.2544, 7.2539, 7.2532, 7.2527, 7.252, 7.2515, 7.251, 7.2502, 7.2516, 7.2509, 7.2503, 7.2517, 7.2533, 7.257, 7.2585, 7.2587, 7.2582, 7.2577, 7.2552, 7.2546, 7.2542, 7.2536, 7.2529, 7.2523, 7.2516, 7.2512, 7.2509, 7.2488, 7.2502, 7.2495, 7.2528, 7.2526, 7.2507, 7.25, 7.2493, 7.2491, 7.2505, 7.2498, 7.2497, 7.2511, 7.251, 7.2523, 7.2516, 7.2529, 7.2524, 7.2519, 7.2515, 7.2509, 7.2503, 7.2498, 7.2512, 7.2507, 7.2501, 7.2513, 7.2507, 7.2502, 7.2495, 7.2492, 7.2486, 7.2481, 7.2477, 7.247, 7.2484, 7.2496, 7.2489, 7.2482, 7.2477, 7.2471, 7.2464, 7.2457, 7.245, 7.2443, 7.2436, 7.2435, 7.2429, 7.2423, 7.2417, 7.2421, 7.2417, 7.243, 7.2423, 7.2417, 7.243, 7.2424, 7.2437, 7.243, 7.2424, 7.2418, 7.2394, 7.239, 7.239, 7.2384, 7.2398, 7.2398, 7.2391, 7.2388, 7.2383, 7.2376, 7.237, 7.2365, 7.236, 7.2373, 7.2366, 7.2359, 7.2352, 7.2365, 7.236, 7.2353, 7.2366, 7.2359, 7.2374, 7.2367, 7.2379, 7.2372, 7.2365, 7.2379, 7.2372, 7.2368, 7.2363, 7.2376, 7.237, 7.2346, 7.236, 7.2354, 7.2347, 7.2341, 7.2336, 7.2349, 7.2342, 7.2338, 7.2341, 7.2334, 7.2327, 7.2321, 7.2318, 7.2313, 7.2309, 7.2302, 7.2296, 7.2289, 7.2302, 7.2297, 7.2291, 7.2286, 7.228, 7.2283, 7.2296, 7.2291, 7.2287, 7.2282, 7.2295, 7.2289, 7.2301, 7.2294, 7.2308, 7.2303, 7.2362, 7.2357, 7.2351, 7.2345, 7.2342, 7.2339, 7.2335, 7.2331, 7.2308, 7.2302, 7.2295, 7.229, 7.2284, 7.2289, 7.2283, 7.2281, 7.2275, 7.227, 7.2271, 7.2289, 7.2323, 7.2339, 7.2377, 7.2378, 7.2372, 7.2385, 7.2399, 7.2393, 7.2388, 7.24, 7.2414, 7.2408, 7.2402, 7.2432, 7.2426, 7.2422, 7.2435, 7.2428, 7.2424, 7.2418, 7.2415, 7.2429, 7.2423, 7.2417, 7.2411, 7.2406, 7.242, 7.2414, 7.2408, 7.2387, 7.2383, 7.238, 7.2393, 7.2386, 7.2381, 7.2387, 7.24, 7.2394, 7.2389, 7.2383, 7.2376, 7.2371, 7.2365, 7.2359, 7.2336, 7.233, 7.2323, 7.2344, 7.2339, 7.2374, 7.2367, 7.236, 7.2449, 7.2445, 7.2439, 7.2434, 7.2433, 7.2427, 7.2421, 7.2416, 7.2413, 7.2425, 7.2421, 7.2415, 7.2409, 7.2422, 7.2418, 7.2412, 7.2407, 7.242, 7.2432, 7.2427, 7.2423, 7.2416, 7.2428, 7.2422, 7.2417, 7.2411, 7.2423, 7.2435, 7.243, 7.2425, 7.242, 7.2415, 7.2409, 7.2404, 7.2426, 7.2422, 7.2416, 7.2413, 7.2425, 7.2439, 7.244, 7.2453, 7.2465, 7.246, 7.2457, 7.2469, 7.2465, 7.2478, 7.2474, 7.2469, 7.2466, 7.246, 7.246, 7.2473, 7.247, 7.2464, 7.246, 7.2454, 7.2448, 7.2442, 7.2435, 7.2432, 7.2426, 7.242, 7.2433, 7.2426, 7.2457, 7.2452, 7.2449, 7.2461, 7.246, 7.2455, 7.2452, 7.2469, 7.2463, 7.2457, 7.2455, 7.2451, 7.2447, 7.244, 7.2433, 7.2445, 7.2441, 7.2436, 7.2448, 7.2442, 7.2456, 7.2451, 7.2444, 7.244, 7.2436, 7.2429, 7.2442, 7.2436, 7.2413, 7.2408, 7.2386, 7.2402, 7.2398, 7.2391, 7.2385, 7.2381, 7.2396, 7.2392, 7.2404, 7.2399, 7.2392, 7.2386, 7.2397, 7.239, 7.2387, 7.2384, 7.2378, 7.2375, 7.2369, 7.2382, 7.2375, 7.2369, 7.2346, 7.2339, 7.2333, 7.2345, 7.234, 7.2334, 7.2345, 7.234, 7.2335, 7.2346, 7.2358, 7.2353, 7.2348, 7.2349, 7.2344, 7.234, 7.2336, 7.233, 7.2327, 7.2321, 7.2315, 7.2347, 7.2368, 7.2363, 7.2358, 7.237, 7.2364, 7.2358, 7.2352, 7.2364, 7.2363, 7.2357, 7.2352, 7.2347, 7.2344, 7.2346, 7.2358, 7.2352, 7.2348, 7.236, 7.2355, 7.2349, 7.2399, 7.2394, 7.2406, 7.2401, 7.2395, 7.2389, 7.2386, 7.238, 7.2375, 7.237, 7.2365, 7.2377, 7.2371, 7.2365, 7.2361, 7.2372, 7.2367, 7.2378, 7.2372, 7.2366, 7.2365, 7.236, 7.2357, 7.2351, 7.2346, 7.234, 7.2335, 7.2332, 7.2315, 7.2309, 7.2303, 7.2315, 7.2309, 7.2321, 7.2332, 7.2329, 7.2327, 7.2328, 7.2322, 7.2334, 7.2347, 7.2341, 7.2353, 7.2347, 7.2359, 7.2353, 7.235, 7.2344, 7.2338, 7.2333, 7.2327, 7.2339, 7.2333, 7.2345, 7.2342, 7.2335, 7.235, 7.2344, 7.2338, 7.235, 7.2345, 7.2345, 7.2342, 7.2353, 7.2347, 7.2342, 7.2336, 7.2348, 7.2342, 7.2338, 7.2334, 7.2329, 7.2325, 7.2337, 7.2333, 7.2328, 7.2322, 7.2334, 7.233, 7.2326, 7.2325, 7.2326, 7.2323, 7.2319, 7.2316, 7.233, 7.2324, 7.2319, 7.2332, 7.2326, 7.2321, 7.2316, 7.233, 7.2326, 7.2325, 7.232, 7.2334, 7.2329, 7.2307, 7.2302, 7.2296, 7.229, 7.2287, 7.2284, 7.2281, 7.2275, 7.2269, 7.2269, 7.2263, 7.2258, 7.227, 7.2264, 7.2263, 7.2257, 7.2254, 7.2248, 7.2243, 7.2237, 7.2232, 7.2229, 7.2209, 7.2209, 7.2205, 7.2203, 7.2197, 7.2192, 7.2192, 7.2204, 7.2199, 7.2194, 7.219, 7.2185, 7.2179, 7.2174, 7.2169, 7.2164, 7.216, 7.2158, 7.2154, 7.2198, 7.2192, 7.2189, 7.2183, 7.2177, 7.2173, 7.2184, 7.2181, 7.2179, 7.221, 7.2206, 7.2201, 7.2213, 7.2208, 7.2203, 7.2202, 7.2196, 7.219, 7.22, 7.2194, 7.2189, 7.2184, 7.2186, 7.2199, 7.221, 7.2207, 7.2201, 7.2197, 7.2192, 7.2186, 7.2181, 7.2187, 7.2183, 7.2177, 7.2173, 7.217, 7.2167, 7.2178, 7.2175, 7.2189, 7.2184, 7.2181, 7.2176, 7.2173, 7.2171, 7.2168, 7.2181, 7.2177, 7.2172, 7.2167, 7.2182, 7.2212, 7.2206, 7.2201, 7.2196, 7.2191, 7.2185, 7.2179, 7.2175, 7.217, 7.2164, 7.2158, 7.2153, 7.215, 7.2144, 7.2154, 7.2148, 7.2142, 7.2141, 7.2135, 7.2146, 7.214, 7.215, 7.2144, 7.2138, 7.2135, 7.2115, 7.211, 7.2105, 7.2102, 7.2098, 7.2117, 7.2111, 7.2105, 7.2101, 7.2096, 7.213, 7.2141, 7.2136, 7.213, 7.2131, 7.2126, 7.2137, 7.2148, 7.2159, 7.217, 7.215, 7.2144, 7.2138, 7.2149, 7.2176, 7.2173, 7.2184, 7.2195, 7.2192, 7.2186, 7.2201, 7.2195, 7.2206, 7.22, 7.2195, 7.2189, 7.2184, 7.2179, 7.2174, 7.2169, 7.2165, 7.2175, 7.2172, 7.2173, 7.2186, 7.2197, 7.2215, 7.2209, 7.2205, 7.2213, 7.2223, 7.2233, 7.2249, 7.2244, 7.2255, 7.2249, 7.2244, 7.2243, 7.2238, 7.2235, 7.2229, 7.2223, 7.2234, 7.2248, 7.2244, 7.2239, 7.2233, 7.2248, 7.2244, 7.2239, 7.2234, 7.2228, 7.2223, 7.2218, 7.223, 7.2226, 7.2237, 7.2247, 7.2243, 7.2254, 7.2249, 7.226, 7.2256, 7.2252, 7.2248, 7.2243, 7.2238, 7.2234, 7.2244, 7.2238, 7.2235, 7.2231, 7.2226, 7.2223, 7.2217, 7.2227, 7.2224, 7.2237, 7.2231, 7.2228, 7.2225, 7.222, 7.22, 7.2194, 7.2211, 7.2206, 7.2201, 7.2202, 7.2196, 7.2193, 7.2187, 7.2181, 7.2176, 7.2173, 7.2168, 7.2163, 7.2173, 7.2167, 7.2148, 7.2144, 7.2139, 7.2151, 7.2148, 7.2158, 7.2153, 7.2149, 7.2159, 7.2154, 7.2151, 7.2146, 7.2141, 7.2136, 7.2139, 7.215, 7.2171, 7.2182, 7.2192, 7.2187, 7.2182, 7.2191, 7.2186, 7.2181, 7.2181, 7.2176, 7.2172, 7.2167, 7.2148, 7.2143, 7.2139, 7.2133, 7.213, 7.2125, 7.2136, 7.213, 7.2126, 7.2127, 7.2125, 7.2121, 7.2137, 7.2131, 7.2126, 7.2123, 7.2119, 7.2114, 7.2108, 7.2102, 7.2097, 7.2134, 7.2129, 7.2125, 7.2122, 7.2133, 7.2128, 7.2123, 7.2118, 7.2114, 7.2112, 7.2107, 7.2117, 7.2114, 7.2109, 7.2108, 7.2103, 7.2098, 7.2093, 7.2087, 7.2145, 7.2126, 7.2137, 7.2149, 7.2149, 7.2143, 7.2155, 7.2149, 7.2144, 7.214, 7.2135, 7.2116, 7.2111, 7.2122, 7.2116, 7.2112, 7.2122, 7.2133, 7.2128, 7.2127, 7.214, 7.2122, 7.2116, 7.2113, 7.2108, 7.2103, 7.2099, 7.2094, 7.2104, 7.21, 7.2095, 7.2105, 7.21, 7.2095, 7.2169, 7.2166, 7.216, 7.2154, 7.2149, 7.2145, 7.2141, 7.2137, 7.2146, 7.2144, 7.217, 7.2165, 7.2162, 7.2157, 7.2166, 7.2162, 7.2159, 7.2154, 7.2153, 7.2135, 7.2133, 7.213, 7.214, 7.2136, 7.2133, 7.213, 7.2126, 7.2123, 7.2137, 7.2134, 7.213, 7.2135, 7.2129, 7.2124, 7.2121, 7.2117, 7.2115, 7.2125, 7.2125, 7.212, 7.2137, 7.2163, 7.2159, 7.217, 7.2165, 7.2162, 7.2157, 7.2152, 7.2156, 7.2153, 7.2151, 7.2149, 7.2145, 7.2141, 7.2136, 7.2118, 7.2144, 7.2139, 7.215, 7.2145, 7.214, 7.2135, 7.2129, 7.2138, 7.2134, 7.2131, 7.2142, 7.2137, 7.2132, 7.2128, 7.2124, 7.212, 7.2117, 7.2112, 7.2107, 7.2118, 7.2114, 7.2125, 7.2119, 7.2114, 7.2111, 7.2106, 7.2115, 7.2112, 7.2106, 7.2102, 7.2098, 7.2103, 7.2104, 7.21, 7.211, 7.2109, 7.2107, 7.2106, 7.2118, 7.2115, 7.2096, 7.2105, 7.2124, 7.2122, 7.2131, 7.2126, 7.2122, 7.2118, 7.2113, 7.211, 7.2119, 7.2114, 7.211, 7.2105, 7.2131, 7.2127, 7.2123, 7.2121, 7.2146, 7.2141, 7.2138, 7.2139, 7.2125, 7.2135, 7.213, 7.2125, 7.2138, 7.2133, 7.2129, 7.2139, 7.2135, 7.2146, 7.2155, 7.2151, 7.2148, 7.2144, 7.214, 7.2154, 7.2155, 7.2151, 7.2147, 7.2142, 7.2137, 7.2131, 7.2129, 7.2139, 7.2149, 7.2144, 7.2139, 7.2136, 7.2132, 7.2127, 7.2124, 7.2119, 7.2114, 7.2124, 7.2122, 7.2104, 7.21, 7.2097, 7.2093, 7.2088, 7.2086, 7.2081, 7.2076, 7.2071, 7.2081, 7.2076, 7.2071, 7.2083, 7.2078, 7.2076, 7.2073, 7.2055, 7.205, 7.2045, 7.204, 7.2051, 7.2061, 7.2074, 7.2084, 7.2079, 7.2073, 7.2083, 7.2081, 7.2076, 7.2085, 7.208, 7.2075, 7.2075, 7.2071, 7.2066, 7.2063, 7.2074, 7.2072, 7.2068, 7.2078, 7.2073, 7.2068, 7.2073, 7.2069, 7.2065, 7.2075, 7.2084, 7.2079, 7.2074, 7.2071, 7.2066, 7.2076, 7.2071, 7.2081, 7.2091, 7.2101, 7.2096, 7.2091, 7.2087, 7.2083, 7.2078, 7.2073, 7.2101, 7.2097, 7.2157, 7.2167, 7.2166, 7.2164, 7.2174, 7.217, 7.2165, 7.2162, 7.2159, 7.2156, 7.2152, 7.2164, 7.2159, 7.2155, 7.2165, 7.2162, 7.2159, 7.217, 7.2165, 7.2147, 7.2157, 7.2182, 7.2196, 7.2192, 7.2189, 7.2186, 7.2182, 7.2179, 7.2175, 7.217, 7.2167, 7.2165, 7.2163, 7.216, 7.2156, 7.2168, 7.2164, 7.2169, 7.2179, 7.2175, 7.217, 7.2182, 7.2178, 7.2175, 7.2188, 7.2184, 7.2179, 7.2188, 7.2183, 7.2194, 7.219, 7.22, 7.2212, 7.2207, 7.2204, 7.2214, 7.2209, 7.2219, 7.2214, 7.2224, 7.2219, 7.2216, 7.2225, 7.222, 7.2216, 7.2211, 7.2208, 7.2204, 7.2199, 7.2194, 7.2189, 7.2184, 7.218, 7.2191, 7.2187, 7.2183, 7.2179, 7.2189, 7.2184, 7.2179, 7.2177, 7.2172, 7.2169, 7.2165, 7.2161, 7.2156, 7.2151, 7.2147, 7.2142, 7.2172, 7.2167, 7.2165, 7.216, 7.2155, 7.2151, 7.2146, 7.2144, 7.214, 7.2137, 7.2134, 7.2131, 7.2127, 7.2139, 7.2137, 7.2133, 7.2143, 7.2138, 7.2133, 7.2128, 7.2123, 7.2119, 7.2114, 7.211, 7.2119, 7.2129, 7.2124, 7.2134, 7.2131, 7.2141, 7.2151, 7.2163, 7.216, 7.2155, 7.2154, 7.2152, 7.2149, 7.2146, 7.2142, 7.2138, 7.2133, 7.2129, 7.2125, 7.2121, 7.2119, 7.2114, 7.2109, 7.2105, 7.2103, 7.2155, 7.2156, 7.2166, 7.2163, 7.2173, 7.2169, 7.2164, 7.2159, 7.2154, 7.2164, 7.2162, 7.2178, 7.2179, 7.2175, 7.2172, 7.2169, 7.2165, 7.2148, 7.2143, 7.2154, 7.215, 7.2147, 7.2143, 7.2138, 7.2133, 7.2129, 7.2124, 7.2142, 7.215, 7.2159, 7.2154, 7.215, 7.2146, 7.2162, 7.2158, 7.2168, 7.2165, 7.2173, 7.2168, 7.2163, 7.2172, 7.2168, 7.2163, 7.2158, 7.2153, 7.2163, 7.2159, 7.2156, 7.2166, 7.2161, 7.2158, 7.2167, 7.2162, 7.2157, 7.2154, 7.2137, 7.2151, 7.2148, 7.2145, 7.2141, 7.2137, 7.2121, 7.2119, 7.2115, 7.211, 7.2106, 7.2115, 7.2124, 7.212, 7.2117, 7.2112, 7.2127, 7.2137, 7.2133, 7.213, 7.2125, 7.2135, 7.2131, 7.214, 7.215, 7.2147, 7.2144, 7.2139, 7.2134, 7.2144, 7.214, 7.2141, 7.2144, 7.2143, 7.2139, 7.2135, 7.2118, 7.2114, 7.211, 7.2105, 7.21, 7.2108, 7.2104, 7.21, 7.2109, 7.2106, 7.2103, 7.2111, 7.2106, 7.2102, 7.2097, 7.2094, 7.2103, 7.2086, 7.2081, 7.2089, 7.2085, 7.208, 7.2078, 7.2088, 7.2086, 7.2081, 7.209, 7.2085, 7.208, 7.2078, 7.2076, 7.2071, 7.2081, 7.2077, 7.2074, 7.2084, 7.2081, 7.2078, 7.2101, 7.2099, 7.2164, 7.216, 7.2157, 7.2152, 7.2139, 7.2134, 7.2156, 7.2153, 7.2149, 7.2145, 7.2141, 7.215, 7.2161, 7.2162, 7.2157, 7.2154, 7.2164, 7.2187, 7.2183, 7.2194, 7.219, 7.2187, 7.2182, 7.2193, 7.2206, 7.2202, 7.2198, 7.2207, 7.2204, 7.2204, 7.2202, 7.2198, 7.2196, 7.2205, 7.2214, 7.221, 7.2206, 7.2204, 7.22, 7.2196, 7.2205, 7.2202, 7.2197, 7.2193, 7.2189, 7.2184, 7.2194, 7.2203, 7.2212, 7.2208, 7.2217, 7.2215, 7.2211, 7.222, 7.2229, 7.2224, 7.2221, 7.2217, 7.2214, 7.2217, 7.2214, 7.2223, 7.2219, 7.2216, 7.2226, 7.2224, 7.2224, 7.2223, 7.2243, 7.224, 7.2235, 7.2231, 7.2227, 7.2223, 7.2233, 7.223, 7.2226, 7.2222, 7.2218, 7.2215, 7.2212, 7.2209, 7.2205, 7.2201, 7.2197, 7.2192, 7.219, 7.2186, 7.2238, 7.2233, 7.2229, 7.2224, 7.2221, 7.2216, 7.2225, 7.222, 7.2215, 7.2239, 7.2234, 7.2243, 7.2238, 7.2234, 7.2229, 7.2224, 7.222, 7.2217, 7.2214, 7.2209, 7.2207, 7.2207, 7.2202, 7.2197, 7.2194, 7.2191, 7.2186, 7.2181, 7.2177, 7.2172, 7.2169, 7.2177, 7.2185, 7.2223, 7.222, 7.2216, 7.2212, 7.2209, 7.2205, 7.2214, 7.221, 7.2207, 7.2216, 7.2225, 7.2221, 7.223, 7.2227, 7.2237, 7.2245, 7.2241, 7.2239, 7.2234, 7.223, 7.2227, 7.2282, 7.2281, 7.2278, 7.2274, 7.227, 7.2267, 7.2263, 7.2258, 7.2281, 7.2278, 7.2275, 7.227, 7.227, 7.2266, 7.2276, 7.2273, 7.2272, 7.2282, 7.228, 7.2275, 7.2272, 7.2275, 7.2272, 7.2269, 7.2265, 7.2261, 7.2265, 7.2261, 7.2257, 7.2254, 7.2251, 7.226, 7.2271, 7.2272, 7.2269, 7.2253, 7.225, 7.2248, 7.2246, 7.2243, 7.2238, 7.2236, 7.2237, 7.2247, 7.2289, 7.2284, 7.2289, 7.2286, 7.2283, 7.2291, 7.2288, 7.2284, 7.228, 7.2295, 7.2304, 7.23, 7.2309, 7.2317, 7.2341, 7.2336, 7.2332, 7.2329, 7.2325, 7.2323, 7.2331, 7.2327, 7.2326, 7.2323, 7.2319, 7.2341, 7.2326, 7.2334, 7.233, 7.2339, 7.2335, 7.2343, 7.2339, 7.2348, 7.2344, 7.2353, 7.2349, 7.2344, 7.234, 7.2336, 7.2332, 7.2336, 7.2347, 7.2356, 7.2365, 7.2361, 7.2357, 7.2353, 7.2351, 7.2348, 7.2357, 7.2355, 7.2353, 7.2351, 7.2336, 7.2344, 7.234, 7.2348, 7.2359, 7.2343, 7.2352, 7.2348, 7.2345, 7.2341, 7.2342, 7.2338, 7.2323, 7.2328, 7.2368, 7.2382, 7.2382, 7.2377, 7.2377, 7.2372, 7.2381, 7.2377, 7.239, 7.2386, 7.2395, 7.2391, 7.2399, 7.242, 7.2416, 7.2412, 7.2464, 7.246, 7.2456, 7.2453, 7.2461, 7.2457, 7.2453, 7.2453, 7.2449, 7.2458, 7.2479, 7.2477, 7.2477, 7.2462, 7.2459, 7.2455, 7.245, 7.2446, 7.2443, 7.2451, 7.2447, 7.2443, 7.2452, 7.2437, 7.2445, 7.2441, 7.2449, 7.2446, 7.2442, 7.2451, 7.2448, 7.2444, 7.244, 7.244, 7.2437, 7.2445, 7.2441, 7.2437, 7.2475, 7.2472, 7.2468, 7.2465, 7.2461, 7.2457, 7.2477, 7.2473, 7.2481, 7.2477, 7.2473, 7.247, 7.2476, 7.2474, 7.2499, 7.2495, 7.2503, 7.2499, 7.2509, 7.2518, 7.2515, 7.2511, 7.2519, 7.2516, 7.2534, 7.2533, 7.2518, 7.2514, 7.2513, 7.2522, 7.2531, 7.2528, 7.2525, 7.2522, 7.2531, 7.2529, 7.2525, 7.2521, 7.2519, 7.2515, 7.2526, 7.2521, 7.2527, 7.2525, 7.2523, 7.252, 7.2516, 7.2513, 7.2511, 7.2506, 7.2514, 7.2511, 7.2506, 7.2515, 7.251, 7.2506, 7.2514, 7.2523, 7.252, 7.2516, 7.2512, 7.2508, 7.2492, 7.2488, 7.2484, 7.2481, 7.2477, 7.2476, 7.2484, 7.248, 7.2476, 7.2475, 7.2471, 7.2468, 7.2465, 7.2461, 7.2457, 7.2463, 7.2459, 7.2467, 7.2475, 7.2482, 7.2478, 7.2475, 7.2482, 7.2479, 7.2475, 7.2471, 7.2492, 7.2487, 7.2492, 7.2488, 7.2485, 7.248, 7.2477, 7.2473, 7.2469, 7.2477, 7.2473, 7.2469, 7.2465, 7.2464, 7.246, 7.2457, 7.2454, 7.2462, 7.2458, 7.2454, 7.245, 7.2445, 7.2453, 7.2461, 7.2457, 7.2468, 7.2476, 7.2492, 7.2488, 7.2496, 7.2493, 7.2494, 7.2502, 7.25, 7.2496, 7.2493, 7.2491, 7.2499, 7.252, 7.2505, 7.2502, 7.2498, 7.2509, 7.2518, 7.2561, 7.2557, 7.2555, 7.2541, 7.2537, 7.2546, 7.2554, 7.2553, 7.255, 7.2546, 7.2543, 7.2539, 7.2535, 7.2531, 7.2539, 7.2536, 7.2532, 7.254, 7.2536, 7.2532, 7.2528, 7.2524, 7.2521, 7.2517, 7.2514, 7.2512, 7.2508, 7.2517, 7.2513, 7.2521, 7.2529, 7.2538, 7.2545, 7.2541, 7.2537, 7.2534, 7.2532, 7.2528, 7.2526, 7.2621, 7.2618, 7.2656, 7.2665, 7.2661, 7.2668, 7.2676, 7.2684, 7.2682, 7.2691, 7.2676, 7.2684, 7.2692, 7.2688, 7.2696, 7.2703, 7.2699, 7.2697, 7.2705, 7.2714, 7.2718, 7.2714, 7.2722, 7.2718, 7.2715, 7.2711, 7.2708, 7.2704, 7.2705, 7.2702, 7.2698, 7.2694, 7.2704, 7.2712, 7.2708, 7.2694, 7.2702, 7.271, 7.2719, 7.2715, 7.2711, 7.2719, 7.2715, 7.2711, 7.2719, 7.2715, 7.2711, 7.2718, 7.2738, 7.2735, 7.2731, 7.2727, 7.2728, 7.2736, 7.2744, 7.2741, 7.2737, 7.2734, 7.273, 7.2726, 7.2734, 7.2743, 7.2739, 7.2734, 7.273, 7.2729, 7.2725, 7.2721, 7.273, 7.2739, 7.2748, 7.2744, 7.2753, 7.2749, 7.2746, 7.2743, 7.2738, 7.2734, 7.2731, 7.2727, 7.2723, 7.2719, 7.2741, 7.2738, 7.2734, 7.273, 7.2727, 7.2724, 7.2732, 7.2745, 7.2742, 7.2738, 7.2735, 7.2733, 7.2729, 7.2725, 7.2722, 7.2718, 7.2716, 7.2712, 7.2711, 7.2719, 7.2717, 7.2702, 7.2698, 7.2696, 7.2692, 7.2701, 7.2697, 7.2694, 7.269, 7.2685, 7.2681, 7.2677, 7.2686, 7.2682, 7.2678, 7.2664, 7.2672, 7.268, 7.2676, 7.2673, 7.2681, 7.2677, 7.2673, 7.2681, 7.2678, 7.2674, 7.2671, 7.2669, 7.2665, 7.2681, 7.2677, 7.2674, 7.2681, 7.2678, 7.2697, 7.2695, 7.2691, 7.2688, 7.2685, 7.2692, 7.27, 7.2697, 7.2693, 7.2691, 7.2699, 7.2695, 7.2692, 7.2689, 7.2685, 7.2693, 7.2701, 7.2697, 7.2705, 7.269, 7.2698, 7.2706, 7.2703, 7.271, 7.2708, 7.2705, 7.2701, 7.2698, 7.2696, 7.2695, 7.2714, 7.271, 7.278, 7.2776, 7.2774, 7.2782, 7.2778, 7.2774, 7.2771, 7.278, 7.2787, 7.2784, 7.278, 7.2776, 7.2774, 7.2771, 7.2768, 7.2764, 7.2762, 7.2759, 7.2755, 7.2742, 7.2749, 7.2748, 7.2744, 7.274, 7.2737, 7.2733, 7.273, 7.2727, 7.2724, 7.2723, 7.2727, 7.2725, 7.2745, 7.2741, 7.2761, 7.2748, 7.2798, 7.2795, 7.2791, 7.2776, 7.2783, 7.2813, 7.2798, 7.2794, 7.2791, 7.2805, 7.2801, 7.2798, 7.2819, 7.2815, 7.2811, 7.2807, 7.2826, 7.2824, 7.282, 7.2816, 7.2814, 7.2845, 7.2882, 7.2882, 7.2878, 7.2886, 7.2882, 7.2878, 7.2876, 7.2872, 7.287, 7.2867, 7.2874, 7.2905, 7.2901, 7.2905, 7.2901, 7.2898, 7.2906, 7.2914, 7.2922, 7.2919, 7.2927, 7.2936, 7.2932, 7.294, 7.2948, 7.2945, 7.2941, 7.2938, 7.2934, 7.293, 7.2934, 7.2997, 7.3004, 7.3012, 7.302, 7.3017, 7.3013, 7.301, 7.3006, 7.3003, 7.2999, 7.2997, 7.2995, 7.2991, 7.2987, 7.2995, 7.2991, 7.2999, 7.2995, 7.2993, 7.299, 7.2988, 7.2984, 7.298, 7.2977, 7.2974, 7.2981, 7.2979, 7.2975, 7.2972, 7.2979, 7.2976, 7.2972, 7.2972, 7.2968, 7.2982, 7.2978, 7.2974, 7.296, 7.2968, 7.2975, 7.2976, 7.2974, 7.297, 7.2966, 7.2962, 7.2959, 7.2956, 7.2952, 7.2948, 7.295, 7.2948, 7.2957, 7.2943, 7.295, 7.2958, 7.2956, 7.2963, 7.2959, 7.2955, 7.2962, 7.2958, 7.2954, 7.295, 7.2946, 7.2943, 7.295, 7.2957, 7.2953, 7.2952, 7.296, 7.2956, 7.2953, 7.2961, 7.2958, 7.2955, 7.2951, 7.2947, 7.2943, 7.2939, 7.2991, 7.3, 7.3, 7.2998, 7.2997, 7.3005, 7.3003, 7.299, 7.2997, 7.3005, 7.3013, 7.3032, 7.3031, 7.3027, 7.3046, 7.3055, 7.3076, 7.3073, 7.307, 7.3068, 7.3066, 7.3062, 7.3069, 7.3067, 7.307, 7.3081, 7.308, 7.3089, 7.3087, 7.3084, 7.3081, 7.3077, 7.3074, 7.3105, 7.3107, 7.3096, 7.3094, 7.3093, 7.3089, 7.3085, 7.3118, 7.3117, 7.3113, 7.3109, 7.3126, 7.3122, 7.3129, 7.3126, 7.3122, 7.3118, 7.3115, 7.3112, 7.3119, 7.3125, 7.3121, 7.3128, 7.3126, 7.3122, 7.3119, 7.3116, 7.3112, 7.3108, 7.3104, 7.31, 7.3097, 7.3093, 7.309, 7.3087, 7.3119, 7.3115, 7.3112, 7.3109, 7.3108, 7.3115, 7.3115, 7.3123, 7.3119, 7.3116, 7.3113, 7.3111, 7.3108, 7.3106, 7.3102, 7.309, 7.3097, 7.3093, 7.31, 7.3099, 7.3106, 7.3102, 7.3098, 7.3105, 7.3102, 7.311, 7.3107, 7.3103, 7.3101, 7.3108, 7.3115, 7.3122, 7.3119, 7.3126, 7.3122, 7.3129, 7.3138, 7.3146, 7.3144, 7.314, 7.3136, 7.3132, 7.3129, 7.3125, 7.3132, 7.3129, 7.3126, 7.3122, 7.3185, 7.3181, 7.3168, 7.3164, 7.3161, 7.3159, 7.3155, 7.3154, 7.3162, 7.3158, 7.3165, 7.3161, 7.3157, 7.3155, 7.3151, 7.3147, 7.3143, 7.3139, 7.3146, 7.3143, 7.3151, 7.3148, 7.3147, 7.3145, 7.3154, 7.3151, 7.3157, 7.3165, 7.3162, 7.3159, 7.3158, 7.3165, 7.3161, 7.3158, 7.3155, 7.3152, 7.3154, 7.3161, 7.3213, 7.3209, 7.3206, 7.3202, 7.3198, 7.3195, 7.3203, 7.3201, 7.3199, 7.3195, 7.3192, 7.3198, 7.3196, 7.3201, 7.3197, 7.3204, 7.3201, 7.3208, 7.3204, 7.32, 7.3198, 7.3194, 7.319, 7.3176, 7.3172, 7.3169, 7.3165, 7.3172, 7.3169, 7.3167, 7.3163, 7.3159, 7.3155, 7.3152, 7.3148, 7.3144, 7.314, 7.3137, 7.3135, 7.3142, 7.3128, 7.3125, 7.3121, 7.3119, 7.3116, 7.3112, 7.3109, 7.3105, 7.3112, 7.3108, 7.3104, 7.3101, 7.3097, 7.3093, 7.3094, 7.309, 7.3087, 7.3083, 7.3079, 7.3075, 7.31, 7.3103, 7.3099, 7.3106, 7.3102, 7.3098, 7.3094, 7.3101, 7.3097, 7.3093, 7.3089, 7.3096, 7.3092, 7.3088, 7.3096, 7.3093, 7.309, 7.3087, 7.3085, 7.3105, 7.3101, 7.3109, 7.3105, 7.3112, 7.3108, 7.3105, 7.3102, 7.3099, 7.3096, 7.3094, 7.3113, 7.31, 7.3106, 7.3114, 7.3121, 7.3128, 7.3125, 7.3122, 7.3119, 7.3137, 7.3139, 7.3136, 7.3144, 7.314, 7.3137, 7.3133, 7.3129, 7.3125, 7.3112, 7.3108, 7.3105, 7.3112, 7.311, 7.3108, 7.3116, 7.3114, 7.3111, 7.3118, 7.3105, 7.3102, 7.3098, 7.3095, 7.3091, 7.3088, 7.3084, 7.3091, 7.3109, 7.3106, 7.3113, 7.3109, 7.3118, 7.3125, 7.3125, 7.3125, 7.3121, 7.3117, 7.3107, 7.3104, 7.3101, 7.3107, 7.3113, 7.3111, 7.3107, 7.3104, 7.3111, 7.3118, 7.3125, 7.3121, 7.3117, 7.3114, 7.312, 7.3116, 7.3113, 7.312, 7.3128, 7.3125, 7.3121, 7.3118, 7.3115, 7.3134, 7.3131, 7.3127, 7.3145, 7.3141, 7.3138, 7.3135, 7.3133, 7.3141, 7.3159, 7.3167, 7.3165, 7.3162, 7.3159, 7.3156, 7.3157, 7.3154, 7.3166, 7.3163, 7.3161, 7.3157, 7.3165, 7.3167, 7.3174, 7.3171, 7.3168, 7.3165, 7.3162, 7.3159, 7.3156, 7.3154, 7.3141, 7.3138, 7.3135, 7.3142, 7.3139, 7.3146, 7.3153, 7.316, 7.3157, 7.3153, 7.3149, 7.3145, 7.3152, 7.3159, 7.3157, 7.3164, 7.3171, 7.3167, 7.3174, 7.317, 7.3166, 7.3173, 7.3169, 7.3165, 7.3172, 7.3179, 7.3175, 7.3171, 7.3173, 7.3169, 7.3177, 7.3173, 7.3171, 7.3168, 7.3165, 7.3163, 7.3171, 7.3178, 7.3175, 7.3182, 7.3178, 7.3175, 7.3171, 7.3167, 7.3174, 7.3171, 7.3168, 7.3164, 7.3207, 7.3214, 7.3211, 7.3219, 7.3216, 7.3212, 7.3209, 7.3206, 7.3203, 7.3199, 7.3196, 7.3193, 7.32, 7.3197, 7.3204, 7.3202, 7.3199, 7.3216, 7.3215, 7.3211, 7.3233, 7.3255, 7.3245, 7.3251, 7.3247, 7.3258, 7.3254, 7.3261, 7.3248, 7.3255, 7.3252, 7.3248, 7.3254, 7.325, 7.3247, 7.3244, 7.3262, 7.3249, 7.3256, 7.3244, 7.3241, 7.3238, 7.3234, 7.3231, 7.3228, 7.3225, 7.3222, 7.3229, 7.3237, 7.3234, 7.3231, 7.3239, 7.3255, 7.3251, 7.3249, 7.3246, 7.3246, 7.3252, 7.3249, 7.3247, 7.3254], '192.168.122.115': [10.5276, 8.3502, 7.5139, 7.1993, 7.8743, 7.4328, 7.3273, 7.7374, 7.4819, 7.2691, 7.0982, 6.9504, 6.9125, 6.8052, 6.7264, 6.9861, 6.6075, 6.8479, 6.8006, 6.7602, 6.7243, 6.9063, 6.8384, 6.7833, 6.7498, 6.9079, 6.8861, 6.9515, 7.2796, 7.2167, 7.183, 7.1287, 7.0735, 7.0523, 7.0126, 7.126, 7.1076, 7.196, 7.157, 7.1339, 7.2292, 7.2251, 7.1878, 7.2852, 7.2539, 7.2358, 7.193, 7.168, 7.1383, 7.1182, 7.0838, 7.147, 7.1165, 7.0845, 7.064, 7.1315, 7.099, 7.0826, 7.0539, 7.0359, 7.098, 7.1895, 7.161, 7.1332, 7.1146, 7.102, 7.1577, 7.1446, 7.1179, 7.0951, 7.0847, 7.061, 7.0418, 7.0276, 7.0079, 7.0655, 7.0444, 7.0957, 7.0764, 7.1206, 7.1704, 7.1503, 7.1488, 7.1272, 7.1703, 7.1549, 7.1359, 7.1779, 7.1636, 7.1547, 7.1962, 7.1741, 7.1578, 7.2462, 7.2286, 7.2652, 7.2464, 7.2287, 7.2156, 7.2009, 7.2366, 7.2223, 7.2583, 7.2428, 7.225, 7.2128, 7.2022, 7.1853, 7.168, 7.1997, 7.1855, 7.1283, 7.1603, 7.1468, 7.1342, 7.1226, 7.1145, 7.1013, 7.0991, 7.0863, 7.1208, 7.1543, 7.1873, 7.1801, 7.1708, 7.1572, 7.1485, 7.1356, 7.1255, 7.0748, 7.0654, 7.0941, 7.083, 7.0726, 7.0662, 7.056, 7.0448, 7.036, 7.0233, 7.0922, 7.1163, 7.1036, 7.0944, 7.0832, 7.0944, 7.0831, 7.206, 7.1939, 7.191, 7.1868, 7.1811, 7.3066, 7.296, 7.2853, 7.2776, 7.2655, 7.2534, 7.2423, 7.231, 7.2199, 7.2103, 7.265, 7.2574, 7.2194, 7.2422, 7.2314, 7.2223, 7.2138, 7.2047, 7.2639, 7.2911, 7.3118, 7.3608, 7.3519, 7.3426, 7.3661, 7.3565, 7.3764, 7.366, 7.3557, 7.35, 7.3431, 7.3398, 7.3591, 7.3818, 7.3722, 7.3899, 7.3796, 7.3708, 7.5029, 7.494, 7.4856, 7.4738, 7.4649, 7.4558, 7.4468, 7.4368, 7.4278, 7.4191, 7.4124, 7.455, 7.4716, 7.461, 7.4549, 7.4219, 7.4157, 7.4056, 7.4235, 7.416, 7.4373, 7.4529, 7.4517, 7.4702, 7.4861, 7.4764, 7.5534, 7.5429, 7.5581, 7.5488, 7.5409, 7.5809, 7.5943, 7.5862, 7.5904, 7.5842, 7.5759, 7.5663, 7.5586, 7.5487, 7.5419, 7.5598, 7.5522, 7.5446, 7.5373, 7.5304, 7.525, 7.5179, 7.5112, 7.504, 7.4947, 7.5078, 7.502, 7.5174, 7.5087, 7.4993, 7.4909, 7.5122, 7.5041, 7.5166, 7.5095, 7.5028, 7.495, 7.4903, 7.4827, 7.4761, 7.4895, 7.4817, 7.4781, 7.4705, 7.4648, 7.4578, 7.4511, 7.4462, 7.4402, 7.4339, 7.4268, 7.4392, 7.4515, 7.4538, 7.4464, 7.4388, 7.4344, 7.427, 7.419, 7.4153, 7.4084, 7.403, 7.3974, 7.3905, 7.3829, 7.3776, 7.3705, 7.363, 7.359, 7.3522, 7.3451, 7.3587, 7.3703, 7.3646, 7.3583, 7.3521, 7.3467, 7.3424, 7.3373, 7.3312, 7.3249, 7.3186, 7.3154, 7.3288, 7.3437, 7.3373, 7.3154, 7.3088, 7.3051, 7.2996, 7.2957, 7.2766, 7.2711, 7.2655, 7.2905, 7.3016, 7.2957, 7.3073, 7.3021, 7.2961, 7.2924, 7.3036, 7.2973, 7.2954, 7.3097, 7.3043, 7.2986, 7.2933, 7.2871, 7.2981, 7.2924, 7.2894, 7.3003, 7.2941, 7.2909, 7.2852, 7.2675, 7.2779, 7.29, 7.2852, 7.265, 7.2618, 7.2728, 7.2679, 7.2634, 7.279, 7.2737, 7.2682, 7.2649, 7.275, 7.2693, 7.264, 7.2595, 7.2557, 7.2526, 7.2627, 7.2729, 7.2689, 7.2637, 7.261, 7.2557, 7.2502, 7.2455, 7.2429, 7.2381, 7.2352, 7.2324, 7.2285, 7.2239, 7.2223, 7.2349, 7.2815, 7.2646, 7.2606, 7.2435, 7.2396, 7.2379, 7.2329, 7.2425, 7.2512, 7.2492, 7.244, 7.2431, 7.2381, 7.2334, 7.2302, 7.2259, 7.2214, 7.2172, 7.215, 7.2125, 7.2215, 7.2186, 7.2146, 7.1972, 7.1934, 7.1903, 7.1874, 7.1827, 7.1787, 7.175, 7.1745, 7.1701, 7.1665, 7.1625, 7.1596, 7.1569, 7.1543, 7.1498, 7.1456, 7.1423, 7.1378, 7.1337, 7.1296, 7.1266, 7.1224, 7.1208, 7.1179, 7.1139, 7.11, 7.1063, 7.1164, 7.1143, 7.1237, 7.1212, 7.1199, 7.1195, 7.1169, 7.1129, 7.1103, 7.1071, 7.1033, 7.1123, 7.1664, 7.1513, 7.1524, 7.1502, 7.1598, 7.1555, 7.1593, 7.1638, 7.1611, 7.1703, 7.1661, 7.1619, 7.1581, 7.1545, 7.1512, 7.1504, 7.1466, 7.1321, 7.129, 7.1809, 7.1791, 7.1753, 7.1726, 7.1691, 7.1792, 7.175, 7.173, 7.1906, 7.1894, 7.1851, 7.1831, 7.179, 7.1866, 7.1941, 7.1917, 7.1889, 7.1889, 7.1866, 7.1829, 7.1807, 7.1767, 7.1748, 7.1796, 7.1764, 7.184, 7.1799, 7.1764, 7.1849, 7.1812, 7.1837, 7.1929, 7.1908, 7.1879, 7.1859, 7.1848, 7.1816, 7.1782, 7.1777, 7.1757, 7.1725, 7.1684, 7.165, 7.1615, 7.1588, 7.1552, 7.1514, 7.1476, 7.1468, 7.1449, 7.1417, 7.1383, 7.1349, 7.1429, 7.1405, 7.148, 7.1555, 7.1519, 7.1726, 7.1705, 7.1674, 7.1647, 7.161, 7.1681, 7.1643, 7.1652, 7.162, 7.1592, 7.1576, 7.1557, 7.1522, 7.1497, 7.1471, 7.1553, 7.1529, 7.1428, 7.1403, 7.1374, 7.1355, 7.132, 7.1289, 7.1265, 7.124, 7.1311, 7.1287, 7.1268, 7.1236, 7.1229, 7.1206, 7.1176, 7.1164, 7.1132, 7.1202, 7.1178, 7.117, 7.1138, 7.1131, 7.1099, 7.1077, 7.108700000000001, 7.1154, 7.1124, 7.1193, 7.1161, 7.1138, 7.105, 7.102, 7.0991, 7.0962, 7.0934, 7.0904, 7.0875, 7.086, 7.0839, 7.0732, 7.0701, 7.0686, 7.0755, 7.0725, 7.0793, 7.0868, 7.085, 7.0917, 7.094, 7.0912, 7.0889, 7.0958, 7.0926, 7.0897, 7.0869, 7.0843, 7.0827, 7.0826, 7.0887, 7.0855, 7.0829, 7.0799, 7.0779, 7.076, 7.073, 7.0721, 7.0694, 7.0671, 7.0659, 7.0635, 7.0608, 7.0583, 7.058, 7.0647, 7.0706, 7.0679, 7.0663, 7.0637, 7.0607, 7.0589, 7.0572, 7.0543, 7.0709, 7.0774, 7.0746, 7.072, 7.0706, 7.0766, 7.0745, 7.0718, 7.0783, 7.0755, 7.0818, 7.0792, 7.0854, 7.0828, 7.0884, 7.0936, 7.0917, 7.0909, 7.0969, 7.103, 7.1082, 7.1068, 7.1039, 7.1008, 7.1066, 7.1121, 7.1092, 7.1064, 7.1036, 7.1094, 7.099, 7.0962, 7.0935, 7.0923, 7.0902, 7.0875, 7.0857, 7.0932, 7.1002, 7.09, 7.0878, 7.0932, 7.0992, 7.0979, 7.0951, 7.0937, 7.0916, 7.0939, 7.0917, 7.0891, 7.0874, 7.0846, 7.0916, 7.09, 7.0874, 7.0849, 7.0832, 7.0893, 7.0901, 7.0955, 7.0941, 7.0999, 7.1219, 7.1196, 7.1169, 7.1144, 7.1119, 7.1094, 7.1075, 7.1051, 7.1027, 7.1082, 7.1064, 7.1046, 7.1107, 7.1081, 7.1056, 7.1029, 7.1016, 7.1077, 7.1051, 7.1025, 7.1003, 7.099, 7.0966, 7.1012, 7.0988, 7.1039, 7.1015, 7.0993, 7.0973, 7.0962, 7.0954, 7.1094, 7.1075, 7.105, 7.1028, 7.1077, 7.106, 7.1106, 7.1086, 7.1065, 7.1117, 7.1191, 7.1166, 7.1226, 7.1203, 7.1181, 7.1157, 7.1131, 7.1145, 7.12, 7.1178, 7.1164, 7.1145, 7.1125, 7.1103, 7.1155, 7.1139, 7.1114, 7.1098, 7.1075, 7.1127, 7.1104, 7.108, 7.1057, 7.1032, 7.1009, 7.0988, 7.0966, 7.0887, 7.0871, 7.0848, 7.0898, 7.0929, 7.0911, 7.0889, 7.0875, 7.0853, 7.0833, 7.081, 7.0788, 7.0764, 7.0815, 7.0792, 7.0769, 7.0753, 7.0737, 7.0727, 7.089, 7.0802, 7.0782, 7.0763, 7.0743, 7.0722, 7.0782, 7.0783, 7.083, 7.084, 7.0824, 7.0855, 7.0846, 7.0832, 7.0878, 7.0855, 7.0908, 7.0885, 7.0864, 7.0909, 7.0892, 7.0883, 7.0865, 7.0917, 7.0895, 7.0881, 7.093, 7.0973, 7.1022, 7.1003, 7.1013, 7.0989, 7.1, 7.0994, 7.0981, 7.1036, 7.1021, 7.1209, 7.119, 7.1204, 7.1208, 7.1185, 7.1163, 7.1211, 7.1252, 7.1231, 7.1213, 7.1255, 7.1298, 7.1275, 7.1291, 7.1269, 7.1253, 7.1232, 7.121, 7.1198, 7.1245, 7.1228, 7.1273, 7.1257, 7.1235, 7.1222, 7.1247, 7.1238, 7.1283, 7.1341, 7.1384, 7.1362, 7.1345, 7.139, 7.1435, 7.1482, 7.146, 7.1502, 7.1543, 7.1523, 7.1568, 7.1551, 7.1533, 7.1722, 7.1701, 7.1745, 7.1724, 7.1769, 7.1815, 7.1792, 7.1774, 7.1759, 7.1748, 7.1739, 7.1724, 7.1701, 7.1624, 7.1604, 7.1587, 7.1565, 7.1543, 7.1591, 7.1633, 7.1675, 7.1726, 7.172, 7.1761, 7.1802, 7.1782, 7.1784, 7.1767, 7.1747, 7.1789, 7.177, 7.1749, 7.1734, 7.1718, 7.176, 7.1739, 7.1719, 7.1706, 7.1747, 7.1734, 7.1712, 7.1693, 7.1678, 7.1717, 7.1706, 7.1744, 7.1786, 7.1932, 7.1976, 7.1955, 7.1934, 7.1919, 7.1905, 7.1957, 7.202, 7.2009, 7.1998, 7.2038, 7.2016, 7.2003, 7.1986, 7.1971, 7.1962, 7.1943, 7.1929, 7.1913, 7.1905, 7.1835, 7.1816, 7.1797, 7.1778, 7.1763, 7.1756, 7.1796, 7.1836, 7.1822, 7.183, 7.1811, 7.1794, 7.1799, 7.1846, 7.1826, 7.1812, 7.1917, 7.1904, 7.189, 7.1936, 7.1977, 7.1957, 7.1935, 7.1919, 7.1942, 7.1922, 7.1912, 7.1899, 7.1886, 7.1873, 7.1852, 7.184, 7.1822, 7.1804, 7.1795, 7.1851, 7.1833, 7.1878, 7.1859, 7.1852, 7.1839, 7.182, 7.1871, 7.1852, 7.1842, 7.1822, 7.1813, 7.193, 7.1922, 7.1903, 7.1884, 7.1864, 7.1846, 7.1826, 7.1822, 7.1803, 7.184, 7.182, 7.1752, 7.1745, 7.1736, 7.1729, 7.1767, 7.1749, 7.1788, 7.1771, 7.1762, 7.1754, 7.174, 7.1728, 7.1717, 7.1755, 7.1762, 7.1801, 7.1791, 7.1774, 7.1761, 7.1746, 7.1727, 7.1717, 7.1706, 7.1687, 7.1674, 7.1709, 7.1743, 7.1724, 7.1705, 7.1689, 7.1676, 7.1686000000000005, 7.169600000000001, 7.1678, 7.1669, 7.1705, 7.1693, 7.1687, 7.1724, 7.1707, 7.1689, 7.167, 7.1651, 7.1661, 7.1656, 7.1703, 7.1686, 7.167, 7.1661, 7.1644, 7.1627, 7.1619, 7.1602, 7.1586, 7.1524, 7.1521, 7.1503, 7.1485, 7.1468, 7.1457, 7.145, 7.1433, 7.1417, 7.1353, 7.1337, 7.1321, 7.1313, 7.1296, 7.1285, 7.1335, 7.137, 7.141, 7.1396, 7.1385, 7.1374, 7.1358, 7.134, 7.1328, 7.1309, 7.131, 7.1302, 7.1296, 7.1278, 7.1269, 7.1252, 7.124, 7.1227, 7.1209, 7.1193, 7.1177, 7.1214, 7.1251, 7.1261, 7.1357, 7.1367, 7.1307, 7.1293, 7.1289, 7.1325, 7.1309, 7.1292, 7.1324, 7.1308, 7.1293, 7.1284, 7.1269, 7.1253, 7.1289, 7.1279, 7.1264, 7.1246, 7.1229, 7.1218, 7.1201, 7.1185, 7.118, 7.1163, 7.1157, 7.1146, 7.1129, 7.1167, 7.1207, 7.1193, 7.1185, 7.1189, 7.1172, 7.1209, 7.1194, 7.1179, 7.1202, 7.1188, 7.119800000000001, 7.1181, 7.117, 7.1153, 7.1137, 7.1125, 7.1108, 7.1143, 7.1128, 7.1164, 7.115, 7.1135, 7.1084, 7.1128, 7.1218, 7.1216, 7.1247, 7.1236, 7.1224, 7.1255, 7.1242, 7.123, 7.1217, 7.1232, 7.1238, 7.1224, 7.1215, 7.1202, 7.124, 7.1273, 7.1261, 7.1294, 7.1283, 7.1269, 7.1306, 7.1299, 7.1242, 7.1229, 7.1216, 7.1202, 7.1186, 7.1174, 7.1162, 7.1331, 7.1335, 7.1321, 7.131, 7.1346, 7.1334, 7.132, 7.1304, 7.1289, 7.1234, 7.1364, 7.1349, 7.1337, 7.1327, 7.1313, 7.1297, 7.1341, 7.1328, 7.1357, 7.1341, 7.1331, 7.1325, 7.131, 7.1341, 7.1375, 7.137, 7.1513, 7.1505, 7.149, 7.1523, 7.1507, 7.1499, 7.1492, 7.1522, 7.151, 7.1499, 7.1483, 7.1468, 7.1517, 7.1642, 7.1673, 7.1657, 7.1653, 7.1642, 7.163, 7.1614, 7.1599, 7.1588, 7.1574, 7.1559, 7.1503, 7.1488, 7.1473, 7.1465, 7.1511, 7.1506, 7.1495, 7.1499, 7.1494, 7.1524, 7.1513, 7.1544, 7.1533, 7.1565, 7.1598, 7.1544, 7.1538, 7.1528, 7.1513, 7.1671, 7.1661, 7.1652, 7.1642, 7.1682, 7.1674, 7.1669, 7.1658, 7.1647, 7.1671, 7.1655, 7.1642, 7.1634, 7.1667, 7.1655, 7.1685, 7.1673, 7.166, 7.1647, 7.168, 7.1673, 7.1661, 7.1653, 7.1639, 7.163, 7.1578, 7.1564, 7.1549, 7.1539, 7.1531, 7.1518, 7.1504, 7.1494, 7.148, 7.1465, 7.1451, 7.1436, 7.1425, 7.1416, 7.1425, 7.142, 7.1406, 7.1393, 7.1379, 7.1463, 7.1451, 7.1437, 7.1424, 7.1414, 7.1451, 7.144, 7.1433, 7.1526, 7.1488, 7.1474, 7.1434, 7.1525, 7.1515, 7.1502, 7.1493, 7.1496, 7.1488, 7.1475, 7.1543, 7.1531, 7.1517, 7.1466, 7.146, 7.1519, 7.1505, 7.1495, 7.1569, 7.1619, 7.1607, 7.1594, 7.1583, 7.1833, 7.1822, 7.1811, 7.1841, 7.183, 7.1823, 7.1809, 7.1798, 7.1825, 7.1855, 7.1849, 7.184, 7.1868, 7.1899, 7.1927, 7.1955, 7.1982, 7.201, 7.1998, 7.1982, 7.1971, 7.1965, 7.195, 7.1977, 7.1963, 7.1953, 7.1981, 7.1969, 7.1956, 7.1941, 7.1934, 7.1921, 7.1908, 7.1896, 7.1965, 7.1994, 7.1982, 7.1972, 7.2007, 7.1993, 7.2017, 7.2003, 7.2034, 7.2059, 7.2047, 7.2032, 7.2021, 7.2012, 7.2, 7.2032, 7.2019, 7.2008, 7.1996, 7.1986, 7.1975, 7.1976, 7.1968, 7.1961, 7.1991, 7.198, 7.1967, 7.1954, 7.1904, 7.189, 7.192, 7.1951, 7.1938, 7.193, 7.1917, 7.1945, 7.1931, 7.1958, 7.1949, 7.1939, 7.1926, 7.1912, 7.1899, 7.1892, 7.1885, 7.2002, 7.1988, 7.1976, 7.1967, 7.1956, 7.1955, 7.1941, 7.1927, 7.1914, 7.1903, 7.189, 7.1878, 7.1871, 7.1897, 7.1884, 7.1877, 7.1867, 7.1853, 7.1843, 7.1831, 7.1785, 7.1773, 7.1783, 7.1774, 7.1761, 7.1747, 7.1734, 7.1725, 7.1711, 7.1699, 7.1815, 7.1814, 7.1842, 7.1831, 7.1824, 7.1812, 7.1837, 7.1827, 7.1815, 7.1802, 7.179, 7.1777, 7.1804, 7.1831, 7.1818, 7.1847, 7.1836, 7.1823, 7.1885, 7.1872, 7.186, 7.1909, 7.1935, 7.1923, 7.1911, 7.1907, 7.1894, 7.1886, 7.1877, 7.1864, 7.1857, 7.1843, 7.183, 7.1819, 7.1808, 7.1799, 7.1795, 7.1782, 7.1774, 7.1764, 7.1751, 7.1743, 7.1739, 7.1731, 7.1756, 7.1784, 7.1811, 7.181, 7.1836, 7.1828, 7.189, 7.1918, 7.1909, 7.1896, 7.1923, 7.1949, 7.1982, 7.2006, 7.1997, 7.2019, 7.2007, 7.1995, 7.2017, 7.2043, 7.2033, 7.2024, 7.2011, 7.2001, 7.2024, 7.2049, 7.2037, 7.2024, 7.2011, 7.1998, 7.1955, 7.1942, 7.1966, 7.1958, 7.1947, 7.1936, 7.1965, 7.203, 7.2022, 7.205, 7.204, 7.203, 7.202, 7.2011, 7.2008, 7.1997, 7.2023, 7.2016, 7.2007, 7.1996, 7.1984, 7.1981, 7.2043, 7.2105, 7.2093, 7.2081, 7.2069, 7.2077, 7.2065, 7.2053, 7.2041, 7.2031, 7.2057, 7.2048, 7.2043, 7.2032, 7.202, 7.2014, 7.2002, 7.1989, 7.198, 7.2219, 7.2208, 7.2243, 7.2231, 7.2256, 7.2244, 7.2232, 7.222, 7.2208, 7.2233, 7.2225, 7.225, 7.224, 7.2228, 7.2256, 7.2258, 7.225, 7.2276, 7.2265, 7.2253, 7.2242, 7.2271, 7.2267, 7.2289, 7.2285, 7.2285, 7.2273, 7.2262, 7.2258, 7.2315, 7.2307, 7.2331, 7.232, 7.2312, 7.23, 7.2289, 7.2277, 7.2268, 7.2255, 7.2248, 7.2236, 7.2225, 7.2213, 7.2201, 7.2189, 7.2184, 7.2186, 7.2178, 7.2135, 7.2126, 7.2147, 7.2172, 7.216, 7.2186, 7.2185, 7.2203, 7.226, 7.2255, 7.2247, 7.2305, 7.2293, 7.2282, 7.2272, 7.2259, 7.2247, 7.2235, 7.2223, 7.2246, 7.2272, 7.2259, 7.225, 7.2248, 7.2204, 7.2193, 7.2183, 7.2172, 7.2195, 7.2182, 7.217, 7.2159, 7.2151, 7.2174, 7.2135, 7.2128, 7.2123, 7.2118, 7.2107, 7.2095, 7.2118, 7.2111, 7.2133, 7.2154, 7.2177, 7.217, 7.2159, 7.218, 7.2203, 7.2202, 7.219, 7.2178, 7.2169, 7.2159, 7.2147, 7.2139, 7.2133, 7.2122, 7.2113, 7.2134, 7.2164, 7.2186, 7.2174, 7.2163, 7.2152, 7.2176, 7.2164, 7.2159, 7.2147, 7.2135, 7.2226, 7.2216, 7.2205, 7.2193, 7.2217, 7.2209, 7.2198, 7.2192, 7.218, 7.217, 7.2192, 7.2184, 7.2181, 7.217, 7.2167, 7.2188, 7.2181, 7.2169, 7.2158, 7.2179, 7.2168, 7.2157, 7.2146, 7.2139, 7.2129, 7.2149, 7.2172, 7.2161, 7.2152, 7.2173, 7.2163, 7.2153, 7.2144, 7.2168, 7.2216, 7.2205, 7.2194, 7.2203, 7.2164, 7.2153, 7.2146, 7.2167, 7.2156, 7.2146, 7.2168, 7.2158, 7.2148, 7.2137, 7.2126, 7.2118, 7.2138, 7.2159, 7.2153, 7.2255, 7.2246, 7.2238, 7.2228, 7.2253, 7.2242, 7.2236, 7.2226, 7.2218, 7.2207, 7.2198, 7.2187, 7.2175, 7.2167, 7.2187, 7.2179, 7.2168, 7.2191, 7.218, 7.2169, 7.2165, 7.2154, 7.2143, 7.2132, 7.2124, 7.2113, 7.2104, 7.2094, 7.2119, 7.211, 7.213, 7.2118, 7.2138, 7.2126, 7.2117, 7.2109, 7.2102, 7.2122, 7.2114, 7.2104, 7.2102, 7.2092, 7.2091, 7.2112, 7.2102, 7.2091, 7.2087, 7.2077, 7.2097, 7.2086, 7.2106, 7.2097, 7.2086, 7.2079, 7.2041, 7.203, 7.202, 7.201, 7.2086, 7.2117, 7.2112, 7.2101, 7.2094, 7.2093, 7.2086, 7.2079, 7.2069, 7.2058, 7.2049, 7.2039, 7.206, 7.205, 7.2044, 7.2034, 7.2023, 7.2015, 7.2005, 7.1995, 7.2054, 7.2048, 7.2167, 7.2157, 7.2177, 7.2171, 7.2161, 7.2155, 7.2144, 7.2133, 7.213, 7.2121, 7.211, 7.2102, 7.2094, 7.2084, 7.2074, 7.2038, 7.2076, 7.2096, 7.209, 7.2081, 7.2102, 7.2091, 7.2084, 7.2074, 7.2066, 7.2057, 7.2077, 7.2071, 7.2066, 7.2058, 7.2047, 7.2066, 7.2085, 7.2079, 7.207, 7.2064, 7.2054, 7.2043, 7.2035, 7.2024, 7.2043, 7.2063, 7.2106, 7.2124, 7.2113, 7.2102, 7.2092, 7.2085, 7.2112, 7.2107, 7.2097, 7.2089, 7.2081, 7.2076, 7.2068, 7.2089, 7.2108, 7.2099, 7.2095, 7.2089, 7.2081, 7.2101, 7.2092, 7.2057, 7.2049, 7.2039, 7.2031, 7.2023, 7.2015, 7.2006, 7.2001, 7.1994, 7.2014, 7.2035, 7.2025, 7.2046, 7.2036, 7.2027, 7.2017, 7.2008, 7.2037, 7.2064, 7.2112, 7.2104, 7.2094, 7.2088, 7.208, 7.207, 7.2066, 7.2056, 7.2048, 7.2038, 7.2058, 7.205, 7.2041, 7.2031, 7.2051, 7.2043, 7.2013, 7.2005, 7.2026, 7.2018, 7.2008, 7.2112, 7.2103, 7.2093, 7.209, 7.2081, 7.2071, 7.207, 7.2062, 7.208, 7.207, 7.2061, 7.2055, 7.2075, 7.2095, 7.2093, 7.2113, 7.2104, 7.2123, 7.2115, 7.2105, 7.2099, 7.2094, 7.2115, 7.2135, 7.2131, 7.2124, 7.2148, 7.214, 7.2133, 7.2125, 7.2123, 7.212, 7.2111, 7.2105, 7.2095, 7.2068, 7.206, 7.2051, 7.2129, 7.212, 7.2112, 7.2102, 7.2092, 7.2082, 7.2076, 7.2125, 7.2146, 7.214, 7.2135, 7.2129, 7.2148, 7.2142, 7.2134, 7.2124, 7.2114, 7.2104, 7.2095, 7.2086, 7.2088, 7.2107, 7.2181, 7.2171, 7.2166, 7.2207, 7.2232, 7.2223, 7.2215, 7.2237, 7.227, 7.2262, 7.2253, 7.2243, 7.2239, 7.2231, 7.2196, 7.2268, 7.229, 7.2284, 7.2304, 7.2324, 7.229, 7.2286, 7.2254, 7.2282, 7.2272, 7.229, 7.2307, 7.2297, 7.2287, 7.2361, 7.2353, 7.2347, 7.2368, 7.2394, 7.2386, 7.2386, 7.2381, 7.2372, 7.2365, 7.2384, 7.2402, 7.2392, 7.2383, 7.2376, 7.2369, 7.2387, 7.238, 7.2374, 7.2365, 7.2355, 7.2374, 7.2392, 7.2384, 7.2375, 7.2365, 7.2355, 7.2323, 7.2289, 7.2281, 7.2278, 7.2272, 7.2265, 7.2286, 7.232, 7.2337, 7.2329, 7.2326, 7.2345, 7.2337, 7.2328, 7.2347, 7.2337, 7.233, 7.2297, 7.2294, 7.2285, 7.2282, 7.2301, 7.2268, 7.2259, 7.2252, 7.2243, 7.2247, 7.2268, 7.226, 7.2306, 7.2325, 7.2315, 7.2305, 7.2295, 7.2314, 7.2334, 7.2342, 7.236, 7.2352, 7.2351, 7.2344, 7.2336, 7.2329, 7.2345, 7.2335, 7.2326, 7.2343, 7.2361, 7.2379, 7.2371, 7.2363, 7.236, 7.2407, 7.24, 7.239, 7.2381, 7.2371, 7.2362, 7.2357, 7.2374, 7.2368, 7.2385, 7.2376, 7.2367, 7.2358, 7.2349, 7.2341, 7.2335, 7.2328, 7.2318, 7.2339, 7.233, 7.2321, 7.2342, 7.2359, 7.2352, 7.2402, 7.2393, 7.2384, 7.2404, 7.2396, 7.2388, 7.2381, 7.2374, 7.2389, 7.2407, 7.2402, 7.2394, 7.241, 7.2401, 7.2418, 7.241, 7.2407, 7.2422, 7.242, 7.2411, 7.2402, 7.2401, 7.2391, 7.2382, 7.2374, 7.2392, 7.2383, 7.2374, 7.2365, 7.2356, 7.2373, 7.2367, 7.2358, 7.2375, 7.2392, 7.2382, 7.2402, 7.2399, 7.239, 7.2407, 7.2401, 7.2395, 7.2386, 7.2404, 7.2395, 7.2405, 7.24, 7.2393, 7.2368, 7.2359, 7.2351, 7.2343, 7.2335, 7.2353, 7.2344, 7.2338, 7.2336, 7.2351, 7.2342, 7.2359, 7.235, 7.2341, 7.2332, 7.2323, 7.2314, 7.2307, 7.2298, 7.229, 7.2287, 7.2279, 7.227, 7.2239, 7.2231, 7.2228, 7.2246, 7.2238, 7.2254, 7.2246, 7.2292, 7.2289, 7.228, 7.2272, 7.2263, 7.2257, 7.2251, 7.2246, 7.2243, 7.2233, 7.2227, 7.2218, 7.2213, 7.2206, 7.2211, 7.2204, 7.2223, 7.2222, 7.2215, 7.2233, 7.2224, 7.2217, 7.2223, 7.2216, 7.2234, 7.2227, 7.2227, 7.2218, 7.2214, 7.2213, 7.2204, 7.2195, 7.2188, 7.218, 7.2177, 7.2173, 7.2167, 7.2159, 7.2152, 7.2147, 7.2144, 7.2135, 7.2129, 7.2113, 7.2109, 7.2104, 7.2096, 7.2066, 7.2057, 7.2049, 7.2041, 7.2032, 7.2029, 7.2021, 7.2015, 7.2032, 7.2049, 7.204, 7.2032, 7.2048, 7.2043, 7.2037, 7.2038, 7.2035, 7.2029, 7.2021, 7.2014, 7.2005, 7.2023, 7.2017, 7.2036, 7.2027, 7.2069, 7.2088, 7.2082, 7.2073, 7.2094, 7.2094, 7.2088, 7.2116, 7.2132, 7.2168, 7.2162, 7.2178, 7.2171, 7.2165, 7.2183, 7.2178, 7.2155, 7.216, 7.2161, 7.2177, 7.2173, 7.2166, 7.2161, 7.2154, 7.2146, 7.2144, 7.2147, 7.2143, 7.2159, 7.2153, 7.217, 7.2166, 7.2161, 7.2153, 7.2146, 7.2138, 7.213, 7.2133, 7.2126, 7.2118, 7.2134, 7.2126, 7.2142, 7.2136, 7.213, 7.2167, 7.2158, 7.2149, 7.2141, 7.2139, 7.2133, 7.2148, 7.214, 7.2156, 7.2173, 7.2188, 7.2181, 7.2173, 7.2165, 7.2161, 7.2177, 7.2198, 7.2189, 7.2205, 7.2177, 7.217, 7.2162, 7.2157, 7.215, 7.2144, 7.216, 7.2153, 7.2148, 7.2144, 7.2168, 7.216, 7.2152, 7.2149, 7.2141, 7.2133, 7.2125, 7.2121, 7.2138, 7.2131, 7.2126, 7.2118, 7.211, 7.2102, 7.2118, 7.2112, 7.2128, 7.21, 7.2093, 7.2085, 7.2101, 7.2096, 7.209, 7.2106, 7.2099, 7.2095, 7.2103, 7.2119, 7.2112, 7.2104, 7.2101, 7.2095, 7.2088, 7.2081, 7.2099, 7.2092, 7.2084, 7.2102, 7.2098, 7.2093, 7.209, 7.2083, 7.2098, 7.2093, 7.2086, 7.208, 7.2096, 7.2092, 7.2087, 7.2104, 7.2121, 7.2116, 7.2109, 7.2101, 7.2096, 7.2089, 7.2082, 7.2075, 7.2068, 7.2062, 7.2054, 7.2046, 7.2042, 7.2034, 7.2029, 7.2044, 7.206, 7.2052, 7.2045, 7.2038, 7.2032, 7.205, 7.2043, 7.2036, 7.2031, 7.2078, 7.2102, 7.2095, 7.2158, 7.2174, 7.2168, 7.2161, 7.2157, 7.2172, 7.2187, 7.218, 7.2174, 7.219, 7.2183, 7.2156, 7.217, 7.2165, 7.2182, 7.2176, 7.2191, 7.2222, 7.2214, 7.2229, 7.2221, 7.2213, 7.2205, 7.2197, 7.2191, 7.2206, 7.2199, 7.2198, 7.2213, 7.2251, 7.2243, 7.2236, 7.2229, 7.2224, 7.2218, 7.2193, 7.219, 7.2182, 7.2177, 7.2171, 7.2165, 7.2162, 7.2154, 7.215, 7.2232, 7.2206, 7.22, 7.2193, 7.2186, 7.2178, 7.2171, 7.2164, 7.2158, 7.2151, 7.2143, 7.2143, 7.2135, 7.2127, 7.2142, 7.2165, 7.2164, 7.2156, 7.2148, 7.214, 7.2133, 7.2129, 7.2124, 7.212, 7.2114, 7.2108, 7.2125, 7.2137, 7.2132, 7.2147, 7.214, 7.2133, 7.2143, 7.2167, 7.2161, 7.2153, 7.2167, 7.2159, 7.2199, 7.2214, 7.2207, 7.2202, 7.2175, 7.219, 7.2184, 7.2178, 7.2171, 7.2164, 7.2162, 7.2178, 7.2171, 7.2165, 7.2157, 7.2172, 7.2164, 7.2156, 7.215, 7.2155, 7.2151, 7.2167, 7.2164, 7.2163, 7.2155, 7.2147, 7.2141, 7.2134, 7.2149, 7.2143, 7.2136, 7.2129, 7.2122, 7.2117, 7.211, 7.2103, 7.2096, 7.2111, 7.2104, 7.2119, 7.2112, 7.2106, 7.2124, 7.2119, 7.2114, 7.2134, 7.2108, 7.2103, 7.2116, 7.2113, 7.2107, 7.2121, 7.2114, 7.2129, 7.2123, 7.2137, 7.2151, 7.2146, 7.2143, 7.2136, 7.2129, 7.2126, 7.2119, 7.2115, 7.2107, 7.21, 7.2093, 7.2086, 7.2082, 7.2076, 7.2092, 7.2106, 7.2102, 7.2096, 7.2095, 7.2088, 7.208, 7.2073, 7.2074, 7.2112, 7.2107, 7.21, 7.2095, 7.211, 7.2104, 7.2119, 7.2112, 7.2127, 7.2119, 7.2114, 7.2107, 7.213, 7.2123, 7.2117, 7.2113, 7.2108, 7.2121, 7.2115, 7.2113, 7.2107, 7.2099, 7.2092, 7.2087, 7.2081, 7.2074, 7.2067, 7.2073, 7.2078, 7.2074, 7.2069, 7.2063, 7.2056, 7.2073, 7.2067, 7.206, 7.2074, 7.2067, 7.206, 7.2075, 7.2068, 7.2061, 7.2054, 7.2047, 7.204, 7.2015, 7.2009, 7.2001, 7.2015, 7.2009, 7.2006, 7.2001, 7.1993, 7.1986, 7.1983, 7.1977, 7.1973, 7.1979, 7.1973, 7.1987, 7.1982, 7.1996, 7.1991, 7.1987, 7.198, 7.1973, 7.1967, 7.196, 7.1955, 7.1969, 7.1943, 7.1937, 7.1931, 7.1924, 7.1981, 7.1976, 7.1997, 7.1992, 7.1972, 7.1988, 7.1981, 7.1977, 7.1952, 7.196, 7.1979, 7.1972, 7.1986, 7.1978, 7.1974, 7.1982, 7.1994, 7.2007, 7.1999, 7.1993, 7.1986, 7.1999, 7.1993, 7.1988, 7.1981, 7.1977, 7.1972, 7.1965, 7.1957, 7.1972, 7.1965, 7.1963, 7.1978, 7.1973, 7.1967, 7.1982, 7.1996, 7.1991, 7.1984, 7.1977, 7.1972, 7.1968, 7.1982, 7.1976, 7.1976, 7.1969, 7.1962, 7.1976, 7.1971, 7.1968, 7.1966, 7.196, 7.1954, 7.1947, 7.1941, 7.1938, 7.1932, 7.1926, 7.1919, 7.1913, 7.1906, 7.1904, 7.1897, 7.189, 7.1883, 7.1878, 7.1872, 7.1868, 7.1863, 7.1858, 7.1851, 7.1844, 7.1857, 7.1851, 7.1846, 7.184, 7.1833, 7.185, 7.1847, 7.1842, 7.1835, 7.1828, 7.1822, 7.1817, 7.1832, 7.1849, 7.1843, 7.184, 7.1833, 7.1828, 7.1821, 7.1828, 7.1821, 7.1797, 7.179, 7.1783, 7.1798, 7.1792, 7.1788, 7.1802, 7.1798, 7.1793, 7.1786, 7.178, 7.1793, 7.1786, 7.1783, 7.1776, 7.1773, 7.1771, 7.1767, 7.1764, 7.1757, 7.1752, 7.1746, 7.176, 7.1755, 7.1752, 7.1747, 7.1761, 7.176, 7.1759, 7.1755, 7.1749, 7.1746, 7.1741, 7.1753, 7.1748, 7.1743, 7.1741, 7.1755, 7.1748, 7.1746, 7.1741, 7.1753, 7.1746, 7.1742, 7.1736, 7.1731, 7.1745, 7.1761, 7.1738, 7.1753, 7.1767, 7.1761, 7.1757, 7.1754, 7.175, 7.1763, 7.1777, 7.177, 7.1763, 7.1798, 7.181, 7.1805, 7.181500000000001, 7.1809, 7.1804, 7.1806, 7.1801, 7.1795, 7.1791, 7.1784, 7.1778, 7.1772, 7.1766, 7.1761, 7.1758, 7.1772, 7.1768, 7.1763, 7.18, 7.1813, 7.1807, 7.1806, 7.1801, 7.1794, 7.1809, 7.1824, 7.1818, 7.1814, 7.1847, 7.1864, 7.1877, 7.1875, 7.187, 7.1863, 7.1859, 7.1853, 7.1887, 7.1883, 7.1877, 7.1876, 7.1872, 7.1866, 7.1882, 7.1875, 7.1888, 7.1902, 7.1903, 7.1898, 7.1891, 7.1884, 7.1881, 7.1874, 7.1867, 7.1881, 7.1875, 7.1887, 7.1903, 7.1898, 7.192, 7.1933, 7.1945, 7.1939, 7.1934, 7.1931, 7.1946, 7.1939, 7.1933, 7.1945, 7.1941, 7.1954, 7.1994, 7.1987, 7.198, 7.1974, 7.1969, 7.1965, 7.1977, 7.1991, 7.1984, 7.1979, 7.1993, 7.1989, 7.1982, 7.1978, 7.1976, 7.1972, 7.1966, 7.1962, 7.1958, 7.1953, 7.1948, 7.1944, 7.1958, 7.1952, 7.1946, 7.1961, 7.1977, 7.1972, 7.1966, 7.198, 7.1992, 7.2005, 7.1999, 7.2012, 7.2005, 7.1999, 7.1993, 7.1987, 7.1999, 7.1993, 7.1989, 7.2002, 7.1996, 7.1993, 7.1988, 7.1982, 7.1983, 7.1979, 7.1973, 7.1967, 7.1962, 7.1956, 7.195, 7.1943, 7.1955, 7.1967, 7.196, 7.1957, 7.1997, 7.2009, 7.2017, 7.2011, 7.1988, 7.1982, 7.1977, 7.1971, 7.1964, 7.1941, 7.1937, 7.1932, 7.1926, 7.192, 7.1914, 7.1927, 7.1941, 7.1935, 7.1929, 7.1923, 7.1917, 7.1911, 7.1905, 7.1903, 7.19, 7.1895, 7.1889, 7.19, 7.1893, 7.1905, 7.1917, 7.1929, 7.1926, 7.192, 7.1914, 7.1907, 7.1919, 7.1932, 7.1929, 7.1923, 7.192, 7.1915, 7.1927, 7.1921, 7.1917, 7.1936, 7.1929, 7.1923, 7.1937, 7.1931, 7.1927, 7.1939, 7.1934, 7.193, 7.1924, 7.1918, 7.1912, 7.1907, 7.19, 7.1894, 7.1889, 7.1891, 7.1903, 7.1898, 7.1892, 7.1888, 7.1899, 7.1895, 7.1889, 7.1883, 7.1878, 7.1891, 7.1903, 7.1896, 7.1891, 7.1903, 7.19, 7.1912, 7.1924, 7.1937, 7.195, 7.1944, 7.1957, 7.1952, 7.1965, 7.1977, 7.1971, 7.1965, 7.1976, 7.1973, 7.1971, 7.1964, 7.1958, 7.1953, 7.1946, 7.1941, 7.1936, 7.1931, 7.1926, 7.192, 7.1933, 7.1928, 7.1939, 7.1932, 7.1926, 7.192, 7.1915, 7.191, 7.1921, 7.1916, 7.191, 7.1921, 7.1917, 7.1911, 7.1906, 7.1901, 7.1895, 7.1907, 7.1903, 7.1914, 7.1912, 7.1918, 7.1912, 7.1906, 7.1901, 7.1895, 7.1892, 7.1886, 7.1898, 7.1897, 7.1895, 7.1892, 7.1936, 7.1931, 7.1944, 7.1954, 7.195, 7.1962, 7.1957, 7.1951, 7.1946, 7.1941, 7.1936, 7.1931, 7.1925, 7.1919, 7.1932, 7.1929, 7.1941, 7.1953, 7.1947, 7.1942, 7.1936, 7.1932, 7.1929, 7.1924, 7.1922, 7.1934, 7.1946, 7.194, 7.1951, 7.1945, 7.1939, 7.1951, 7.1945, 7.194, 7.1934, 7.1933, 7.1927, 7.1922, 7.1916, 7.1931, 7.1926, 7.1923, 7.1917, 7.1932, 7.1945, 7.1957, 7.1952, 7.1963, 7.1961, 7.1958, 7.1953, 7.1964, 7.1958, 7.1955, 7.1952, 7.1946, 7.1961, 7.1955, 7.195, 7.1963, 7.1958, 7.1955, 7.1967, 7.1962, 7.1959, 7.1972, 7.1984, 7.1978, 7.1957, 7.1936, 7.1948, 7.1942, 7.1939, 7.1933, 7.1928, 7.1922, 7.1916, 7.1911, 7.1907, 7.1901, 7.1895, 7.1891, 7.1886, 7.188, 7.1893, 7.1887, 7.1898, 7.1899, 7.1896, 7.1891, 7.1901, 7.1896, 7.1892, 7.1904, 7.1898, 7.1902, 7.1898, 7.1904, 7.1887, 7.1881, 7.1877, 7.189, 7.1884, 7.1896, 7.191, 7.1905, 7.1902, 7.1914, 7.1911, 7.1909, 7.1905, 7.19, 7.1898, 7.1894, 7.1889, 7.1885, 7.1899, 7.1894, 7.1891, 7.1887, 7.1899, 7.1893, 7.1889, 7.19, 7.1912, 7.1909, 7.1906, 7.1917, 7.1928, 7.1922, 7.1917, 7.193, 7.1927, 7.1926, 7.194, 7.1935, 7.193, 7.1927, 7.1922, 7.1924, 7.1919, 7.1914, 7.1908, 7.1902, 7.1897, 7.1892, 7.1889, 7.1884, 7.1899, 7.1903, 7.19, 7.1898, 7.1895, 7.1891, 7.1888, 7.1899, 7.1895, 7.189, 7.1885, 7.188, 7.1879, 7.1892, 7.1889, 7.1883, 7.1879, 7.1875, 7.1869, 7.1865, 7.1878, 7.1873, 7.1852, 7.1849, 7.1844, 7.1856, 7.1851, 7.1845, 7.1841, 7.1838, 7.1835, 7.1831, 7.1826, 7.184, 7.1834, 7.1828, 7.1823, 7.1837, 7.1834, 7.1847, 7.1841, 7.1841, 7.1859, 7.1853, 7.1848, 7.1843, 7.1855, 7.185, 7.1846, 7.184, 7.1834, 7.1828, 7.1807, 7.1802, 7.1813, 7.1808, 7.1802, 7.1802, 7.1797, 7.1793, 7.1804, 7.1815, 7.1828, 7.1822, 7.1819, 7.1813, 7.1807, 7.1788, 7.1816, 7.181, 7.1805, 7.1834, 7.185, 7.1844, 7.1839, 7.1836, 7.1831, 7.1841, 7.1869, 7.1863, 7.1857, 7.1854, 7.1866, 7.1862, 7.1874, 7.1869, 7.1864, 7.1858, 7.1868, 7.1864, 7.1874, 7.1869, 7.1864, 7.186, 7.1855, 7.1852, 7.1848, 7.1842, 7.1836, 7.1831, 7.183, 7.1825, 7.1823, 7.1819, 7.1814, 7.1808, 7.182, 7.1814, 7.1808, 7.1802, 7.1797, 7.1797, 7.1792, 7.1787, 7.1783, 7.178, 7.1792, 7.1787, 7.1783, 7.178, 7.179, 7.1784, 7.1796, 7.1791, 7.1835, 7.1832, 7.1829, 7.1842, 7.1836, 7.1832, 7.1827, 7.1835, 7.183, 7.1841, 7.1822, 7.1819, 7.1814, 7.181, 7.1805, 7.18, 7.1795, 7.179, 7.1802, 7.1797, 7.1808, 7.1792, 7.1787, 7.1821, 7.1806, 7.1801, 7.1797, 7.181, 7.1838, 7.1832, 7.1849, 7.1829, 7.1824, 7.1821, 7.1831, 7.1811, 7.1807, 7.1821, 7.1872, 7.187, 7.1866, 7.1864, 7.1876, 7.1876, 7.1873, 7.1868, 7.1863, 7.1858, 7.187, 7.1865, 7.186, 7.1873, 7.1871, 7.1904, 7.1915, 7.1896, 7.1891, 7.1887, 7.1882, 7.1884, 7.1907, 7.192, 7.1915, 7.191, 7.1906, 7.1902, 7.1912, 7.1908, 7.1903, 7.1914, 7.1909, 7.1903, 7.1898, 7.1893, 7.1887, 7.1882, 7.1877, 7.1884, 7.188, 7.1876, 7.1888, 7.1903, 7.1899, 7.191, 7.1921, 7.1931, 7.1927, 7.1922, 7.1918, 7.1914, 7.1908, 7.1903, 7.1913, 7.1907, 7.1902, 7.1899, 7.1912, 7.1908, 7.1928, 7.1923, 7.1934, 7.1945, 7.194, 7.1935, 7.1946, 7.1941, 7.1936, 7.1931, 7.1928, 7.1923, 7.1934, 7.1931, 7.1925, 7.1936, 7.1931, 7.1927, 7.1924, 7.192, 7.1915, 7.191, 7.1904, 7.1914, 7.1895, 7.1891, 7.1919, 7.1914, 7.1914, 7.1924, 7.1919, 7.1914, 7.191, 7.192, 7.1915, 7.1911, 7.1909, 7.1906, 7.1903, 7.1899, 7.1894, 7.1875, 7.1871, 7.1866, 7.1861, 7.1889, 7.1884, 7.188, 7.1877, 7.1874, 7.1872, 7.1867, 7.1862, 7.1873, 7.1868, 7.1865, 7.1876, 7.1871, 7.187, 7.1865, 7.1883, 7.1878, 7.1881, 7.1892, 7.1933, 7.193, 7.1925, 7.1922, 7.1917, 7.1913, 7.1909, 7.192, 7.1915, 7.1909, 7.1904, 7.1899, 7.1894, 7.189, 7.1884, 7.1879, 7.1889, 7.1885, 7.188, 7.1878, 7.1873, 7.1884, 7.1879, 7.1876, 7.1882, 7.1877, 7.1871, 7.1868, 7.1881, 7.1891, 7.1902, 7.1913, 7.1924, 7.1918, 7.1899, 7.191, 7.1905, 7.19, 7.1899, 7.1909, 7.1906, 7.1902, 7.1897, 7.1907, 7.1901, 7.1911, 7.1925, 7.192, 7.1901, 7.1911, 7.1909, 7.1919, 7.1921, 7.1917, 7.1952, 7.1955, 7.1981, 7.1976, 7.1974, 7.1969, 7.1964, 7.1958, 7.1953, 7.1948, 7.1942, 7.1937, 7.1932, 7.1927, 7.1924, 7.1921, 7.1916, 7.1911, 7.1906, 7.1904, 7.1914, 7.1911, 7.1906, 7.19, 7.1896, 7.1892, 7.1889, 7.189, 7.1889, 7.1884, 7.1896, 7.1906, 7.1903, 7.1898, 7.1895, 7.1906, 7.1918, 7.1913, 7.1909, 7.1904, 7.1905, 7.19, 7.1895, 7.1905, 7.19, 7.1897, 7.1893, 7.1888, 7.1883, 7.1878, 7.1873, 7.1871, 7.1868, 7.1863, 7.186, 7.1858, 7.1853, 7.1848, 7.1844, 7.184, 7.1837, 7.1832, 7.1827, 7.1838, 7.1833, 7.1842, 7.1851, 7.1846, 7.1856, 7.1851, 7.1847, 7.1842, 7.1839, 7.1834, 7.1833, 7.1829, 7.1825, 7.1836, 7.183, 7.184, 7.1851, 7.1846, 7.1841, 7.1836, 7.1834, 7.1831, 7.1826, 7.1821, 7.1817, 7.1812, 7.1807, 7.1802, 7.1812, 7.1807, 7.1804, 7.1799, 7.1794, 7.1791, 7.1787, 7.1782, 7.1777, 7.1759, 7.177, 7.1765, 7.1777, 7.1772, 7.1782, 7.1779, 7.1776, 7.1771, 7.1766, 7.1776, 7.1773, 7.1768, 7.1771, 7.1768, 7.1763, 7.1769, 7.1779, 7.1774, 7.1771, 7.178100000000001, 7.1792, 7.1787, 7.1783, 7.178, 7.1776, 7.1792, 7.1788, 7.1784, 7.1795, 7.179, 7.1788, 7.1785, 7.1783, 7.1793, 7.1789, 7.1784, 7.1782, 7.1825, 7.182, 7.1822, 7.1832, 7.1865, 7.1872, 7.1854, 7.1856, 7.1852, 7.1848, 7.1909, 7.1912, 7.1895, 7.189, 7.1887, 7.1897, 7.191, 7.1906, 7.1903, 7.1898, 7.1893, 7.1888, 7.1884, 7.1879, 7.1874, 7.1869, 7.1878, 7.1888, 7.1898, 7.1894, 7.19, 7.1895, 7.1892, 7.1901, 7.1899, 7.1895, 7.1893, 7.1903, 7.1899, 7.1894, 7.189, 7.1886, 7.1912, 7.1922, 7.1917, 7.19, 7.1883, 7.1893, 7.1888, 7.1883, 7.1893, 7.189, 7.19, 7.1897, 7.1892, 7.1887, 7.1882, 7.1879, 7.1874, 7.1869, 7.1864, 7.186, 7.1855, 7.1841, 7.1836, 7.1833, 7.1816, 7.1811, 7.1821, 7.1831, 7.184, 7.1835, 7.183, 7.1825, 7.1831, 7.1826, 7.1843, 7.184, 7.1837, 7.1847, 7.1842, 7.1837, 7.1833, 7.1829, 7.1839, 7.185, 7.1846, 7.1842, 7.1851, 7.1861, 7.1871, 7.1866, 7.1861, 7.1871, 7.1881, 7.1877, 7.1872, 7.1868, 7.1864, 7.186, 7.1857, 7.1854, 7.1864, 7.1874, 7.1888, 7.1885, 7.1898, 7.1895, 7.1905, 7.1902, 7.1898, 7.1894, 7.1891, 7.1889, 7.1874, 7.1871, 7.1867, 7.1864, 7.1859, 7.1855, 7.1854, 7.1851, 7.186, 7.1856, 7.1867, 7.1865, 7.1862, 7.1859, 7.1856, 7.1866, 7.1875, 7.187, 7.1881, 7.1876, 7.1886, 7.1882, 7.1877, 7.1873, 7.1869, 7.1864, 7.186, 7.1855, 7.185, 7.1849, 7.1845, 7.184, 7.1836, 7.186, 7.1855, 7.1851, 7.1848, 7.1845, 7.1854, 7.1851, 7.1846, 7.1856, 7.1852, 7.1861, 7.187, 7.1865, 7.1861, 7.1856, 7.1851, 7.1846, 7.1842, 7.1837, 7.1832, 7.1828, 7.1824, 7.1821, 7.1818, 7.1813, 7.181, 7.1806, 7.1815, 7.1811, 7.1807, 7.1803, 7.18, 7.1796, 7.1792, 7.1774, 7.177, 7.1766, 7.1776, 7.1787, 7.1783, 7.1792, 7.1788, 7.1784, 7.178, 7.1775, 7.1784, 7.1767, 7.1753, 7.1791, 7.1788, 7.1784, 7.1793, 7.1789, 7.1812, 7.1822, 7.1805, 7.18, 7.1813, 7.1824, 7.182, 7.1829, 7.183, 7.184, 7.1836, 7.1861, 7.187, 7.1909, 7.1919, 7.1915, 7.1898, 7.1895, 7.1904, 7.1913, 7.199, 7.1986, 7.1983, 7.1967, 7.1963, 7.1952, 7.1968, 7.1956, 7.1967, 7.1963, 7.1973, 7.1968, 7.1963, 7.1972, 7.1967, 7.1989, 7.2008, 7.2005, 7.2, 7.1996, 7.1992, 7.2002, 7.1985, 7.1995, 7.2005, 7.2001, 7.1996, 7.1991, 7.2, 7.1995, 7.1978, 7.1974, 7.1984, 7.1993, 7.1989, 7.1987, 7.1984, 7.1982, 7.1978, 7.1961, 7.1956, 7.1952, 7.1962, 7.1957, 7.1953, 7.1953, 7.195, 7.1959, 7.1956, 7.1952, 7.1949, 7.1944, 7.194, 7.1936, 7.1933, 7.193, 7.1926, 7.1922, 7.1917, 7.1913, 7.1911, 7.1908, 7.1904, 7.19, 7.1896, 7.1907, 7.1903, 7.1912, 7.1921, 7.1916, 7.1914, 7.1924, 7.1936, 7.1932, 7.1942, 7.1938, 7.1947, 7.1945, 7.1942, 7.1952, 7.1948, 7.1945, 7.1942, 7.1937, 7.1933, 7.193, 7.1927, 7.1937, 7.1933, 7.2008, 7.2004, 7.2013, 7.2009, 7.2018, 7.2003, 7.1998, 7.1994, 7.199, 7.1986, 7.1998, 7.2019, 7.2015, 7.2011, 7.1995, 7.1991, 7.1988, 7.1971, 7.1967, 7.1977, 7.1986, 7.1983, 7.1978, 7.1973, 7.1971, 7.1968, 7.1965, 7.196, 7.1957, 7.1953, 7.1949, 7.1945, 7.1954, 7.1964, 7.1962, 7.1958, 7.1954, 7.1949, 7.1959, 7.1957, 7.1952, 7.1949, 7.1946, 7.1944, 7.194, 7.1936, 7.1932, 7.1928, 7.1923, 7.1932, 7.1928, 7.1937, 7.1933, 7.1943, 7.1953, 7.195, 7.1946, 7.1944, 7.1942, 7.1938, 7.1957, 7.1956, 7.1951, 7.1949, 7.1945, 7.1955, 7.1951, 7.1947, 7.1942, 7.1937, 7.1932, 7.1941, 7.195, 7.1946, 7.1942, 7.1938, 7.1952, 7.195, 7.196, 7.1956, 7.1953, 7.1949, 7.196, 7.1956, 7.1952, 7.1949, 7.1958, 7.1954, 7.1951, 7.195, 7.1958, 7.1954, 7.195, 7.1947, 7.1944, 7.1939, 7.1935, 7.1931, 7.1927, 7.1936, 7.1932, 7.1928, 7.1925, 7.1926, 7.1922, 7.1918, 7.1914, 7.1923, 7.1932, 7.1928, 7.1924, 7.1922, 7.1932, 7.1928, 7.1936, 7.1933, 7.1942, 7.1939, 7.1947, 7.1944, 7.1952, 7.195, 7.1946, 7.1943, 7.194, 7.1938, 7.1947, 7.1943, 7.1939, 7.1935, 7.193, 7.1926, 7.1925, 7.1921, 7.1918, 7.1927, 7.1923, 7.1934, 7.1943, 7.1952, 7.196, 7.1955, 7.1951, 7.1948, 7.1943, 7.194, 7.1936, 7.1944, 7.1953, 7.1974, 7.197, 7.1965, 7.1962, 7.1957, 7.1953, 7.1948, 7.1944, 7.1941, 7.1948, 7.1958, 7.1954, 7.1951, 7.1947, 7.1942, 7.1938, 7.1933, 7.193, 7.1942, 7.1937, 7.1934, 7.1929, 7.1925, 7.1934, 7.1931, 7.1927, 7.1935, 7.1931, 7.1939, 7.1935, 7.1945, 7.1941, 7.1936, 7.1944, 7.194, 7.1949, 7.1945, 7.1955, 7.1977, 7.1973, 7.1982, 7.1978, 7.1974, 7.197, 7.1965, 7.1974, 7.1969, 7.1953, 7.1949, 7.1946, 7.1943, 7.1953, 7.1949, 7.1984, 7.199400000000001, 7.199, 7.1999, 7.1998, 7.1994, 7.1991, 7.2, 7.2009, 7.2007, 7.2026, 7.2023, 7.2032, 7.2029, 7.2037, 7.2047, 7.2043, 7.204, 7.2049, 7.2065, 7.2074, 7.2076, 7.2075, 7.2071, 7.2066, 7.2062, 7.2058, 7.2053, 7.2049, 7.2046, 7.2042, 7.2051, 7.2048, 7.2047, 7.2042, 7.204, 7.2037, 7.2035, 7.2034, 7.2031, 7.204, 7.2036, 7.2046, 7.2054, 7.2051, 7.2046, 7.2042, 7.2037, 7.2033, 7.2031, 7.2028, 7.2024, 7.2021, 7.2018, 7.202, 7.2016, 7.2012, 7.201, 7.2005, 7.2006, 7.2014, 7.2011, 7.201, 7.2007, 7.2004, 7.2, 7.2009, 7.2006, 7.2002, 7.1998, 7.1994, 7.1991, 7.1987, 7.1985, 7.1981, 7.1977, 7.1962, 7.197, 7.1967, 7.1963, 7.1972, 7.1968, 7.1968, 7.1964, 7.1991, 7.1987, 7.1996, 7.1994, 7.2004, 7.2, 7.1996, 7.2003, 7.1999, 7.1994, 7.199, 7.1987, 7.1982, 7.1979, 7.1975, 7.1972, 7.1968, 7.1965, 7.1962, 7.1969, 7.1965, 7.1961, 7.1958, 7.1954, 7.195, 7.1935, 7.1945, 7.1929, 7.1927, 7.1925, 7.1934, 7.193, 7.1926, 7.1922, 7.1917, 7.1925, 7.1933, 7.1928, 7.1925, 7.1933, 7.1934, 7.1931, 7.1927, 7.1923, 7.1931, 7.1927, 7.1937, 7.1921, 7.192, 7.1928, 7.1936, 7.1932, 7.194, 7.1937, 7.1942, 7.1939, 7.1937, 7.1934, 7.1931, 7.1927, 7.1923, 7.1932, 7.1956, 7.1952, 7.196, 7.1959, 7.1955, 7.1951, 7.1937, 7.1934, 7.193, 7.1927, 7.1929, 7.1925, 7.1934, 7.1932, 7.1934, 7.1932, 7.1928, 7.1936, 7.1935, 7.1932, 7.1928, 7.193, 7.1926, 7.1924, 7.1921, 7.1917, 7.1915, 7.1911, 7.1908, 7.1904, 7.1901, 7.1886, 7.1883, 7.1881, 7.1877, 7.1876, 7.1872, 7.187, 7.1879, 7.1889, 7.1897, 7.1905, 7.1903, 7.1901, 7.19, 7.1896, 7.191, 7.1907, 7.1923, 7.1919, 7.1917, 7.1914, 7.1923, 7.1918, 7.1914, 7.1911, 7.1907, 7.1903, 7.1888, 7.1884, 7.1882, 7.1879, 7.1875, 7.1871, 7.1867, 7.1865, 7.1861, 7.1859, 7.1855, 7.1851, 7.1847, 7.1845, 7.1843, 7.1851, 7.1847, 7.1844, 7.184, 7.1837, 7.1834, 7.1831, 7.1827, 7.1823, 7.1832, 7.1841, 7.1837, 7.1834, 7.183, 7.1827, 7.1835, 7.1832, 7.1841, 7.1837, 7.1835, 7.1831, 7.1839, 7.1837, 7.1835, 7.1832, 7.1828, 7.1824, 7.1834, 7.1854, 7.185, 7.1846, 7.1845, 7.1843, 7.1852, 7.1849, 7.1846, 7.1854, 7.1851, 7.1861, 7.1857, 7.1903, 7.1912, 7.1909, 7.193, 7.1927, 7.1924, 7.1948, 7.1957, 7.1967, 7.1964, 7.1973, 7.197, 7.1966, 7.1976, 7.198600000000001, 7.199600000000001, 7.1992, 7.1988, 7.1984, 7.1992, 7.1988, 7.1984, 7.1981, 7.199, 7.1988, 7.1986, 7.1982, 7.1979, 7.1975, 7.1972, 7.1968, 7.1964, 7.1961, 7.1958, 7.1955, 7.1963, 7.1959, 7.1967, 7.1964, 7.1973, 7.1969, 7.1977, 7.1973, 7.197, 7.1978, 7.1974, 7.1972, 7.1981, 7.1978, 7.1974, 7.1982, 7.2001, 7.1999, 7.1996, 7.1992, 7.1988, 7.1996, 7.2005, 7.2001, 7.1997, 7.1994, 7.1991, 7.1987, 7.1996, 7.1993, 7.2001, 7.1998, 7.1994, 7.199, 7.1998, 7.1994, 7.199, 7.1986, 7.1994, 7.2003, 7.202, 7.2018, 7.2014, 7.201, 7.2018, 7.2015, 7.2012, 7.2047, 7.2046, 7.2042, 7.2052, 7.2061, 7.2046, 7.2042, 7.2044, 7.2052, 7.2067, 7.2064, 7.206, 7.2057, 7.2053, 7.2049, 7.2057, 7.2056, 7.2052, 7.206, 7.2068, 7.2077, 7.2073, 7.207, 7.2078, 7.2075, 7.2072, 7.2069, 7.2065, 7.2061, 7.2057, 7.2053, 7.2049, 7.2049, 7.2049, 7.2046, 7.2042, 7.2038, 7.2046, 7.2042, 7.2038, 7.2035, 7.2031, 7.2027, 7.2023, 7.2019, 7.2015, 7.2013, 7.2011, 7.2007, 7.2004, 7.2, 7.1997, 7.1995, 7.1981, 7.1977, 7.1975, 7.2, 7.1997, 7.202, 7.2017, 7.2013, 7.2021, 7.2018, 7.2014, 7.201, 7.2006, 7.2014, 7.2011, 7.2009, 7.2005, 7.1994, 7.1992, 7.2002, 7.2023, 7.2009, 7.2008, 7.2005, 7.2014, 7.2011, 7.2008, 7.2016, 7.2024, 7.2032, 7.2028, 7.2024, 7.2032, 7.2029, 7.2026, 7.2035, 7.2031, 7.2027, 7.2024, 7.2021, 7.2007, 7.2014, 7.2022, 7.202, 7.2016, 7.2012, 7.202, 7.2016, 7.2024, 7.2021, 7.2018, 7.2015, 7.2024, 7.202, 7.2016, 7.2012, 7.2011, 7.2009, 7.2005, 7.2001, 7.1998, 7.1996, 7.2004, 7.2001, 7.1999, 7.1995, 7.1991, 7.1987, 7.1995, 7.2003, 7.2003, 7.2, 7.1997, 7.1995, 7.1991, 7.1989, 7.1988, 7.1984, 7.1992, 7.1989, 7.1985, 7.2008, 7.2004, 7.2012, 7.202, 7.2018, 7.2025, 7.2021, 7.2029, 7.2025, 7.2021, 7.2029, 7.2036, 7.2033, 7.2053, 7.2066, 7.2062, 7.2058, 7.2056, 7.2053, 7.2049, 7.2045, 7.2041, 7.2062, 7.2069, 7.2067, 7.2117, 7.2113, 7.211, 7.2097, 7.2093, 7.2093, 7.2102, 7.211, 7.2096, 7.2093, 7.2091, 7.2099, 7.2096, 7.2093, 7.2102, 7.2113, 7.211, 7.2106, 7.2114, 7.2112, 7.2121, 7.212, 7.2116, 7.2114, 7.211, 7.2107, 7.2105, 7.2124, 7.2121, 7.213, 7.2126, 7.2133, 7.2129, 7.2126, 7.2133, 7.2137, 7.2135, 7.2166, 7.2162, 7.2148, 7.2156, 7.2152, 7.2138, 7.2134, 7.213, 7.2185, 7.2193, 7.2189, 7.2197, 7.2216, 7.2214, 7.2212, 7.222, 7.2216, 7.2212, 7.2209, 7.2206, 7.2202, 7.2209, 7.2205, 7.2201, 7.2199, 7.2196, 7.2204, 7.2213, 7.2209, 7.2206, 7.2213, 7.221, 7.2207, 7.2204, 7.2201, 7.2197, 7.2194, 7.219, 7.2186, 7.219600000000001, 7.220600000000001, 7.2203, 7.22, 7.2208, 7.2216, 7.2224, 7.2221, 7.2217, 7.2214, 7.221, 7.2206, 7.2203, 7.2211, 7.2207, 7.2206, 7.2202, 7.2199, 7.2195, 7.2191, 7.2187, 7.2184, 7.218, 7.2179, 7.2188, 7.2184, 7.218, 7.2187, 7.2189, 7.2185, 7.2193, 7.219, 7.219, 7.2198, 7.2206, 7.2203, 7.2199, 7.2199, 7.2206, 7.2203, 7.22, 7.2197, 7.2193, 7.219, 7.2197, 7.2193, 7.2189, 7.2186, 7.2182, 7.2179, 7.2175, 7.2182, 7.2179, 7.2165, 7.2162, 7.216, 7.2156, 7.2154, 7.2151, 7.2147, 7.2155, 7.2162, 7.2159, 7.2157, 7.2155, 7.2151, 7.2159, 7.2155, 7.2152, 7.2148, 7.2144, 7.2141, 7.2137, 7.2134, 7.2142, 7.2134, 7.2132, 7.2128, 7.2125, 7.2121, 7.2117, 7.212700000000001, 7.2123, 7.2121, 7.2131, 7.2138, 7.2134, 7.2131, 7.2139, 7.2146, 7.2142, 7.2141, 7.2128, 7.2124, 7.2122, 7.2119, 7.2116, 7.2115, 7.2114, 7.2122, 7.2118, 7.2114, 7.2121, 7.2128, 7.2125, 7.2133, 7.213, 7.2128, 7.2135, 7.2143, 7.2141, 7.2141, 7.2137, 7.2144, 7.2142, 7.214, 7.2149, 7.2145, 7.2142, 7.2142, 7.2141, 7.2137, 7.2157, 7.2155, 7.2162, 7.217, 7.2167, 7.2175, 7.2173, 7.2184, 7.218, 7.2178, 7.2174, 7.2177, 7.2193, 7.2201, 7.2198, 7.2204, 7.2206, 7.2204, 7.2203, 7.221, 7.2207, 7.2211, 7.2207, 7.2204, 7.22, 7.2208, 7.2204, 7.2201, 7.2198, 7.2194, 7.219, 7.2211, 7.2208, 7.2216, 7.2224, 7.2223, 7.2233, 7.2233, 7.223, 7.2237, 7.2235, 7.2242, 7.2239, 7.2235, 7.2232, 7.2228, 7.2227, 7.2224, 7.2224, 7.2237, 7.2234, 7.2243, 7.224, 7.2236, 7.2233, 7.2229, 7.2225, 7.2233, 7.2241, 7.2249, 7.2246, 7.2243, 7.2251, 7.2249, 7.2257, 7.2249, 7.2247, 7.2243, 7.2241, 7.2238, 7.2246, 7.2304, 7.2311, 7.2308, 7.2305, 7.2301, 7.23, 7.2297, 7.2305, 7.2301, 7.2309, 7.2305, 7.2313, 7.231, 7.2307, 7.2304, 7.2312, 7.2308, 7.2305, 7.2312, 7.231, 7.2306, 7.2302, 7.2298, 7.2294, 7.229, 7.2297, 7.2295, 7.2302, 7.2299, 7.2295, 7.2293, 7.229, 7.2286, 7.2304, 7.23, 7.2287, 7.2284, 7.2292, 7.2289, 7.2296, 7.2292, 7.23, 7.2296, 7.2303, 7.2299, 7.2306, 7.2302, 7.2298, 7.2294, 7.2303, 7.2301, 7.2298, 7.2295, 7.2292, 7.2289, 7.2286, 7.2284, 7.2281, 7.2268, 7.2264, 7.2261, 7.2258, 7.2265, 7.2262, 7.2259, 7.2257, 7.2255, 7.2253, 7.225, 7.2247, 7.2246, 7.2242, 7.2229, 7.2241, 7.2261, 7.2269, 7.2268, 7.2265, 7.2262, 7.2258, 7.2254, 7.225, 7.2258, 7.2256, 7.2252, 7.2248, 7.2244, 7.224, 7.2237, 7.2266, 7.2264, 7.2262, 7.2258, 7.2256, 7.2253, 7.225, 7.2257, 7.2254, 7.2252, 7.2259, 7.2266, 7.2264, 7.2271, 7.2269, 7.2276, 7.2263, 7.2259, 7.2257, 7.2254, 7.2251, 7.2251, 7.2278, 7.2275, 7.2285, 7.2281, 7.2278, 7.2286, 7.2305, 7.2301, 7.2313, 7.231, 7.2318, 7.2326, 7.2333, 7.234, 7.2336, 7.2332, 7.2339, 7.2346, 7.2342, 7.2338, 7.2338, 7.2334, 7.2331, 7.2328, 7.2325, 7.2323, 7.2319, 7.2327, 7.2324, 7.2322, 7.2318, 7.2324, 7.2322, 7.2318, 7.2314, 7.2311, 7.2307, 7.2304, 7.2301, 7.2311000000000005, 7.2308, 7.2305, 7.2302, 7.2299, 7.2297, 7.2296, 7.2323, 7.231, 7.2307, 7.2304, 7.2302, 7.2309, 7.2307, 7.2305, 7.2312, 7.232, 7.2317, 7.2307, 7.2304, 7.2302, 7.2299, 7.2307, 7.2304, 7.23, 7.2297, 7.2295, 7.2313, 7.2309, 7.2318, 7.2315, 7.2312, 7.231, 7.2307, 7.2316, 7.2313, 7.231, 7.2307, 7.2294, 7.2291, 7.2299, 7.2295, 7.2304, 7.2301, 7.2308, 7.2305, 7.2301, 7.2297, 7.2295, 7.2292, 7.2289, 7.2287, 7.2284, 7.2282, 7.229, 7.2286, 7.2295, 7.2293, 7.2291, 7.2299, 7.2295, 7.2292, 7.2299, 7.2306, 7.2304, 7.2305, 7.2312, 7.2308, 7.2304, 7.2301, 7.2297, 7.2294, 7.2301, 7.2308, 7.2306, 7.2304, 7.23, 7.2297, 7.2295, 7.2301, 7.2297, 7.2295, 7.2292, 7.2302, 7.231, 7.2307, 7.2314, 7.2311, 7.2307, 7.2314, 7.2311, 7.2307, 7.2314, 7.2327, 7.2324, 7.2321, 7.2318, 7.234, 7.2337, 7.2334, 7.233, 7.2327, 7.2324, 7.2322, 7.2329, 7.2325, 7.2333, 7.2329, 7.2326, 7.2323, 7.232, 7.2317, 7.2324, 7.232, 7.2316, 7.2312, 7.2308, 7.2304, 7.2311, 7.2308, 7.2315, 7.2311, 7.2312, 7.231, 7.2307, 7.2303, 7.23, 7.2298, 7.2295, 7.2292, 7.2279, 7.2286, 7.2293, 7.2291, 7.2288, 7.2276, 7.2273, 7.228, 7.2276, 7.2275, 7.2271, 7.2268, 7.2265, 7.2262, 7.2271, 7.2268, 7.2276, 7.2272, 7.2279, 7.2277, 7.2274, 7.2271, 7.2269, 7.2265, 7.2262, 7.2259, 7.2246, 7.2233, 7.224, 7.2237, 7.2234, 7.2231, 7.2227, 7.2238, 7.2226, 7.2222, 7.2219, 7.2215, 7.2222, 7.2218, 7.2215, 7.2212, 7.2209, 7.2205, 7.2212, 7.2209, 7.2205, 7.2212, 7.2209, 7.2216, 7.2213, 7.221, 7.2207, 7.2197, 7.2194, 7.2201, 7.2208, 7.2204, 7.2201, 7.22, 7.2197, 7.2214, 7.2203, 7.2199, 7.2186, 7.2182, 7.22, 7.2198, 7.2216, 7.2223, 7.222, 7.2216, 7.2213, 7.221, 7.2208, 7.2225, 7.2223, 7.2221, 7.2248, 7.2255, 7.2252, 7.225, 7.2247, 7.2244, 7.2251, 7.2258, 7.2265, 7.2264, 7.2271, 7.2267, 7.2274, 7.227, 7.2315, 7.2341, 7.2337, 7.2336, 7.2336, 7.2334, 7.2332, 7.2329, 7.2325, 7.2336, 7.2334, 7.2333, 7.233, 7.2336, 7.2334, 7.2331, 7.2338, 7.2344, 7.2341, 7.2348, 7.2364, 7.2361, 7.2358, 7.2367, 7.2364, 7.2361, 7.2357, 7.2374, 7.2371, 7.2369, 7.2368, 7.2366, 7.2372, 7.2368, 7.2364, 7.237, 7.2367, 7.2374, 7.2371, 7.2377, 7.2383, 7.238, 7.2388, 7.2384, 7.2391, 7.2398, 7.2405, 7.2402, 7.2409, 7.2407, 7.2404, 7.24, 7.2397, 7.2403, 7.2421, 7.2428, 7.2416, 7.2413, 7.241, 7.2407, 7.2404, 7.2411, 7.2418, 7.2424, 7.242, 7.2427, 7.2424, 7.243, 7.2436, 7.2442, 7.244, 7.2437, 7.2433, 7.243, 7.2427, 7.2424, 7.2421, 7.2428, 7.2445, 7.2441, 7.2438, 7.2435, 7.2432, 7.2429, 7.2427, 7.2437, 7.2434, 7.2431, 7.2437, 7.2445, 7.2442, 7.2439, 7.2436, 7.2446, 7.2443, 7.2439, 7.2436, 7.2432, 7.2429, 7.2436, 7.2432, 7.2449], '192.168.122.120': [8.0388, 6.694, 6.3781, 6.3054, 7.2142, 7.0815, 6.1872, 6.1121, 5.5454, 5.5245, 5.5086, 5.6229, 5.5926, 5.589, 5.5738, 7.1955, 7.0895, 6.9976, 6.9587, 6.8847, 6.8159, 7.8499, 7.9814, 7.8916, 7.8402, 7.7616, 7.7233, 7.8511, 7.7724, 7.871, 7.9638, 7.8814, 7.8164, 7.7423, 7.7387, 7.6841, 7.6183, 7.6968, 7.6626, 7.6101, 7.6734, 7.6205, 7.5804, 7.5255, 7.5992, 7.5609, 7.5171, 7.4904, 7.4482, 7.5096, 7.4846, 7.4538, 7.592, 7.5511, 7.5133, 7.4742, 7.4537, 7.4187, 7.3934, 7.3748, 7.3416, 7.3968, 7.3777, 7.3468, 7.415, 7.481, 7.5809, 7.5547, 7.5253, 7.5153, 7.4915, 7.4607, 7.4334, 7.4115, 7.3827, 7.3642, 7.3595, 7.2734, 7.2512, 7.2322, 7.2128, 7.2582, 7.2368, 7.237, 7.2136, 7.1917, 7.1712, 7.1494, 7.194, 7.2343, 7.2803, 7.2602, 7.3015, 7.3433, 7.328, 7.3109, 7.2936, 7.3362, 7.3227, 7.3028, 7.2841, 7.2642, 7.1987, 7.1826, 7.167, 7.1587, 7.1495, 7.0877, 7.0723, 7.0595, 7.098, 7.085, 7.2189, 7.2548, 7.4265, 7.4109, 7.4024, 7.5253, 7.5549, 7.5418, 7.5708, 7.5544, 7.5395, 7.5904, 7.5471, 7.5763, 7.5612, 7.5452, 7.575, 7.5599, 7.5423, 7.5285, 7.5161, 7.5063, 7.5331, 7.5169, 7.549, 7.5326, 7.5267, 7.5123, 7.498, 7.5253, 7.5116, 7.4964, 7.5413, 7.5651, 7.5544, 7.5414, 7.5402, 7.5278, 7.5143, 7.6544, 7.6397, 7.6257, 7.6792, 7.7398, 7.7282, 7.7169, 7.703, 7.6903, 7.6765, 7.6625, 7.6516, 7.672, 7.6891, 7.6766, 7.6652, 7.6842, 7.703, 7.6903, 7.6799, 7.6673, 7.6571, 7.6465, 7.6351, 7.6235, 7.6117, 7.6303, 7.6216, 7.64, 7.6304, 7.6219, 7.6102, 7.6011, 7.5883, 7.578, 7.5704, 7.5884, 7.5835, 7.6006, 7.59, 7.578, 7.5701, 7.5588, 7.5464, 7.5349, 7.5504, 7.541, 7.5372, 7.5538, 7.5426, 7.5344, 7.5259, 7.5158, 7.5059, 7.5207, 7.5117, 7.5042, 7.5009, 7.4955, 7.485, 7.4772, 7.493, 7.4832, 7.4768, 7.4833, 7.4738, 7.4874, 7.5028, 7.4946, 7.4846, 7.4762, 7.4926, 7.5214, 7.5136, 7.5056, 7.6185, 7.6124, 7.6032, 7.5928, 7.606, 7.5988, 7.5895, 7.6102, 7.624, 7.6163, 7.609, 7.606, 7.5989, 7.6117, 7.6022, 7.5943, 7.5886, 7.5605, 7.5526, 7.5679, 7.56, 7.5982, 7.5895, 7.602, 7.5945, 7.5863, 7.5776, 7.5904, 7.603, 7.5948, 7.5878, 7.6006, 7.6125, 7.6463, 7.6421, 7.653, 7.7142, 7.7074, 7.6983, 7.693, 7.6884, 7.6993, 7.6984, 7.6897, 7.683, 7.6791, 7.6733, 7.7463, 7.7395, 7.7308, 7.7222, 7.7141, 7.7119, 7.7048, 7.7168, 7.7102, 7.7014, 7.6932, 7.6875, 7.6636, 7.6557, 7.6665, 7.662, 7.6541, 7.6705, 7.6638, 7.6409, 7.6332, 7.6256, 7.6174, 7.6356, 7.6274, 7.6377, 7.652, 7.6626, 7.6546, 7.6472, 7.6408, 7.6354, 7.6291, 7.6401, 7.6325, 7.627, 7.6376, 7.6478, 7.657, 7.707, 7.7039, 7.6977, 7.691, 7.6838, 7.6817, 7.6745, 7.6676, 7.6608, 7.6549, 7.6478, 7.6409, 7.6361, 7.6302, 7.6263, 7.6198, 7.615, 7.6113, 7.6052, 7.6031, 7.6021, 7.6145, 7.609, 7.6167, 7.6101, 7.6045, 7.5995, 7.5941, 7.5876, 7.5968, 7.5922, 7.5867, 7.5832, 7.577, 7.5709, 7.5646, 7.5735, 7.5695, 7.5632, 7.5572, 7.5675, 7.561, 7.5603, 7.5554, 7.549, 7.5428, 7.5381, 7.5336, 7.5145, 7.5096, 7.5204, 7.5146, 7.5092, 7.506, 7.5136, 7.5233, 7.5173, 7.5113, 7.5089, 7.5038, 7.4997, 7.4947, 7.4896, 7.5059, 7.5144, 7.5084, 7.5038, 7.5121, 7.5064, 7.5023, 7.5225, 7.5176, 7.526, 7.5236, 7.5324, 7.5311, 7.5259, 7.5224, 7.531, 7.5263, 7.5356, 7.5314, 7.5782, 7.5867, 7.5824, 7.5906, 7.5741, 7.5696, 7.5638, 7.5581, 7.5527, 7.5535, 7.5487, 7.5318, 7.5273, 7.5233, 7.5181, 7.515, 7.5484, 7.583, 7.5786, 7.574, 7.5685, 7.5646, 7.5605, 7.5575, 7.554, 7.549, 7.5656, 7.5733, 7.5862, 7.6094, 7.6172, 7.6121, 7.6065, 7.601, 7.5958, 7.5909, 7.5988, 7.5944, 7.589, 7.585, 7.5801, 7.5751, 7.5714, 7.5684, 7.5686, 7.5646, 7.5644, 7.561, 7.5597, 7.556, 7.5749, 7.5713, 7.5666, 7.5614, 7.5702, 7.5666, 7.5629, 7.5599, 7.5672, 7.5633, 7.5585, 7.5543, 7.5388, 7.5339, 7.5292, 7.5355, 7.5306, 7.527, 7.5261, 7.5335, 7.5309, 7.5271, 7.5225, 7.5078, 7.5045, 7.5118, 7.5267, 7.5235, 7.5309, 7.5279, 7.5231, 7.5185, 7.5141, 7.5206, 7.5161, 7.5231, 7.5301, 7.5262, 7.5233, 7.52, 7.5155, 7.5118, 7.5078, 7.5155, 7.5116, 7.5194, 7.5156, 7.5115, 7.5308, 7.5368, 7.5462, 7.5424, 7.5403, 7.5369, 7.534, 7.5405, 7.5466, 7.5433, 7.5398, 7.5355, 7.5313, 7.5321, 7.5301, 7.5259, 7.5217, 7.5187, 7.5158, 7.5126, 7.5102, 7.5062, 7.5035, 7.4998, 7.497, 7.5034, 7.5005, 7.4967, 7.4946, 7.4909, 7.4875, 7.4845, 7.4814, 7.4781, 7.4742, 7.4717, 7.4681, 7.4642, 7.4612, 7.4574, 7.4542, 7.4509, 7.4477, 7.4439, 7.4403, 7.438, 7.4442, 7.4404, 7.4364, 7.4342, 7.4314, 7.4276, 7.424, 7.4203, 7.4165, 7.4135, 7.4108, 7.4179, 7.4144, 7.4605, 7.4581, 7.455, 7.4513, 7.4491, 7.4466, 7.4712, 7.4689, 7.466, 7.4625, 7.4591, 7.4554, 7.4519, 7.4496, 7.4457, 7.4435, 7.4398, 7.4377, 7.4342, 7.4406, 7.4382, 7.4358, 7.4327, 7.4388, 7.4462, 7.452, 7.4486, 7.4561, 7.4621, 7.468, 7.4644, 7.4613, 7.4579, 7.4633, 7.4606, 7.4587, 7.4576, 7.4572, 7.4535, 7.4584, 7.4564, 7.4534, 7.4524, 7.4494, 7.4461, 7.4521, 7.4488, 7.4525, 7.4489, 7.4548, 7.4605, 7.4799, 7.4763, 7.4729, 7.4693, 7.476, 7.4731, 7.4701, 7.4666, 7.464, 7.4608, 7.4664, 7.4632, 7.46, 7.4574, 7.4541, 7.4514, 7.448, 7.4454, 7.451, 7.44, 7.4368, 7.4423, 7.4425, 7.4481, 7.4698, 7.4759, 7.473, 7.4778, 7.4743, 7.4709, 7.4673, 7.4721, 7.4686, 7.4658, 7.4709, 7.4698, 7.4676, 7.4648, 7.4623, 7.4516, 7.4577, 7.4628, 7.4681, 7.4737, 7.471, 7.4688, 7.4661, 7.4632, 7.4605, 7.4656, 7.47, 7.4667, 7.4646, 7.4621, 7.4593, 7.4566, 7.4461, 7.4434, 7.433, 7.4308, 7.4363, 7.4351, 7.4325, 7.4315, 7.4374, 7.4427, 7.4479, 7.4454, 7.4461, 7.4919, 7.4979, 7.4964, 7.4951, 7.4927, 7.4894, 7.4944, 7.4922, 7.4903, 7.4958, 7.4932, 7.4902, 7.487, 7.4841, 7.4818, 7.4788, 7.4838, 7.4884, 7.4867, 7.4841, 7.4829, 7.4876, 7.4845, 7.4814, 7.48, 7.4781, 7.4827, 7.4798, 7.4846, 7.489, 7.4937, 7.4904, 7.4878, 7.4849, 7.4885, 7.4857, 7.4826, 7.4809, 7.4861, 7.4831, 7.48, 7.4776, 7.476, 7.4741, 7.4722, 7.4712, 7.4686, 7.4658, 7.4631, 7.4603, 7.4652, 7.4622, 7.4596, 7.4569, 7.4553, 7.4528, 7.4499, 7.4547, 7.4525, 7.45, 7.4473, 7.4449, 7.4421, 7.4394, 7.4367, 7.4341, 7.4326, 7.4299, 7.4295, 7.4341, 7.4315, 7.4295, 7.4269, 7.4242, 7.422, 7.4201, 7.4172, 7.4151, 7.4209, 7.4182, 7.4159, 7.421, 7.4186, 7.4229, 7.4203, 7.4176, 7.4153, 7.4128, 7.4107, 7.4086, 7.4129, 7.418, 7.4228, 7.421, 7.4198, 7.417, 7.418, 7.4226, 7.4203, 7.4249, 7.4235, 7.4219, 7.4267, 7.433, 7.4339, 7.4364, 7.4406, 7.4398, 7.4442, 7.4425, 7.4399, 7.4373, 7.4416, 7.4394, 7.4368, 7.4342, 7.4383, 7.4355, 7.4332, 7.4307, 7.4374, 7.435, 7.4323, 7.4308, 7.4284, 7.4256, 7.4233, 7.4209, 7.4196, 7.4241, 7.4608, 7.453, 7.4504, 7.4479, 7.4517, 7.449, 7.4477, 7.4516, 7.4554, 7.4592, 7.4578, 7.4778, 7.4758, 7.4748, 7.4722, 7.4697, 7.4672, 7.4651, 7.4626, 7.4666, 7.4644, 7.4619, 7.466, 7.4641, 7.4614, 7.4721, 7.4694, 7.4612, 7.4528, 7.4502, 7.4477, 7.4462, 7.4704, 7.4742, 7.472, 7.4699, 7.4678, 7.4659, 7.4638, 7.4613, 7.4588, 7.4638, 7.4616, 7.459, 7.4571, 7.4679, 7.4658, 7.4699, 7.4675, 7.4651, 7.4626, 7.4612, 7.4597, 7.4594, 7.4513, 7.4495, 7.447, 7.4446, 7.4483, 7.4402, 7.4438, 7.4418, 7.4405, 7.4382, 7.4421, 7.4458, 7.4497, 7.4472, 7.451, 7.4548, 7.4525, 7.4604, 7.464, 7.4616, 7.4597, 7.4573, 7.4613, 7.46, 7.4579, 7.4557, 7.4605, 7.4583, 7.4593, 7.4569, 7.4552, 7.4591, 7.458, 7.4618, 7.4661, 7.4707, 7.4684, 7.4667, 7.4647, 7.463, 7.4667, 7.4594, 7.4577, 7.4562, 7.454, 7.4517, 7.4494, 7.4483, 7.4474, 7.4532, 7.4511, 7.4488, 7.447, 7.445, 7.4426, 7.4526, 7.4508, 7.4544, 7.4528, 7.4687, 7.4665, 7.4701, 7.468, 7.4662, 7.4645, 7.4623, 7.4601, 7.4596, 7.4576, 7.4619, 7.4596, 7.4573, 7.4551, 7.4585, 7.4568, 7.4609, 7.4586, 7.457, 7.455, 7.4615, 7.4557, 7.4593, 7.457, 7.4718, 7.4696, 7.4682, 7.4667, 7.4649, 7.4631, 7.4565, 7.4599, 7.4584, 7.4561, 7.4594, 7.4523, 7.4519, 7.4555, 7.4591, 7.4648, 7.4627, 7.4605, 7.4587, 7.4566, 7.4545, 7.4592, 7.4629, 7.4664, 7.4765, 7.4751, 7.4679, 7.4663, 7.4641, 7.4672, 7.4654, 7.4643, 7.4675, 7.4707, 7.4685, 7.472, 7.4702, 7.4681, 7.4661, 7.4639, 7.4616, 7.4595, 7.4626, 7.4613, 7.4697, 7.4685, 7.4715, 7.47, 7.4737, 7.483, 7.4817, 7.4799, 7.4777, 7.4767, 7.476, 7.4739, 7.4915, 7.4899, 7.4879, 7.4864, 7.4847, 7.486, 7.4845, 7.4836, 7.4819, 7.4838, 7.482, 7.48, 7.4785, 7.4825, 7.4768, 7.4753, 7.4741, 7.4774, 7.4754, 7.4811, 7.4791, 7.4772, 7.4751, 7.4736, 7.4717, 7.4697, 7.4676, 7.4667, 7.4652, 7.4631, 7.4662, 7.4651, 7.4636, 7.457, 7.4604, 7.4584, 7.4565, 7.4545, 7.4526, 7.4513, 7.4545, 7.4527, 7.4557, 7.4535, 7.4514, 7.4507, 7.4487, 7.4522, 7.4504, 7.4484, 7.447, 7.4501, 7.4532, 7.4516, 7.4502, 7.4487, 7.4521, 7.451, 7.4495, 7.4491, 7.4525, 7.4558, 7.4587, 7.4621, 7.4602, 7.4586, 7.4565, 7.4551, 7.4584, 7.4572, 7.4557, 7.4543, 7.4525, 7.4556, 7.4539, 7.452, 7.4507, 7.4535, 7.4563, 7.4546, 7.4528, 7.4511, 7.4502, 7.449, 7.4521, 7.4507, 7.4488, 7.4474, 7.4462, 7.4603, 7.4583, 7.4619, 7.4606, 7.4646, 7.4632, 7.462, 7.4609, 7.4599, 7.4538, 7.4521, 7.4517, 7.4514, 7.4501, 7.4487, 7.4473, 7.4459, 7.4488, 7.4476, 7.4457, 7.4443, 7.4431, 7.4411, 7.4391, 7.4375, 7.4412, 7.4395, 7.4395, 7.438, 7.4405, 7.4417, 7.4451, 7.4435, 7.4416, 7.4446, 7.4526, 7.4508, 7.4543, 7.4577, 7.4559, 7.4543, 7.4529, 7.451, 7.4492, 7.4474, 7.4459, 7.4443, 7.4426, 7.4461, 7.4444, 7.4475, 7.4457, 7.4442, 7.4471, 7.4458, 7.4399, 7.4384, 7.4373, 7.436, 7.436, 7.4559, 7.4548, 7.4529, 7.4514, 7.4459, 7.4446, 7.4473, 7.4458, 7.4443, 7.4436, 7.442, 7.4402, 7.4383, 7.4364, 7.4394, 7.4376, 7.4358, 7.4341, 7.4338, 7.432, 7.4308, 7.429, 7.4272, 7.4214, 7.4195, 7.4224, 7.4219, 7.4201, 7.4183, 7.4166, 7.4156, 7.4141, 7.4141, 7.4133, 7.416, 7.4102, 7.4131, 7.4114, 7.4103, 7.4093, 7.4081, 7.4068, 7.4097, 7.408, 7.4023, 7.4013, 7.4001, 7.4027, 7.4013, 7.3995, 7.3985, 7.3969, 7.3996, 7.4024, 7.4017, 7.3999, 7.3982, 7.397, 7.396, 7.3943, 7.3926, 7.3912, 7.3944, 7.3971, 7.3956, 7.3941, 7.3971, 7.3956, 7.3947, 7.3932, 7.3917, 7.3949, 7.3943, 7.3931, 7.3914, 7.3901, 7.3929, 7.3913, 7.3898, 7.3881, 7.3864, 7.3853, 7.3836, 7.3782, 7.377, 7.3759, 7.3787, 7.3816, 7.3805, 7.3801, 7.3786, 7.3771, 7.3801, 7.3787, 7.3818, 7.382, 7.3852, 7.3838, 7.3827, 7.3809, 7.3793, 7.3781, 7.3769, 7.38, 7.3748, 7.3737, 7.3727, 7.3713, 7.3738, 7.3728, 7.3716, 7.3699, 7.3685, 7.3712, 7.3696, 7.3688, 7.3676, 7.3661, 7.3688, 7.3676, 7.3702, 7.3647, 7.3633, 7.3659, 7.3611, 7.36, 7.3585, 7.3571, 7.3555, 7.3544, 7.3597, 7.3599, 7.3585, 7.3572, 7.3557, 7.3546, 7.353, 7.3518, 7.3507, 7.3491, 7.3484, 7.3481, 7.3468, 7.3493, 7.3484, 7.3474, 7.346, 7.3486, 7.347, 7.3456, 7.3482, 7.3472, 7.3499, 7.3569, 7.3558, 7.3545, 7.353, 7.3515, 7.353, 7.3557, 7.3544, 7.3492, 7.3478, 7.3462, 7.3489, 7.3474, 7.3459, 7.3454, 7.3439, 7.3438, 7.3423, 7.3417, 7.3405, 7.341, 7.3407, 7.342, 7.3407, 7.3396, 7.3388, 7.3471, 7.346, 7.3446, 7.3408, 7.3369, 7.3355, 7.3341, 7.3351, 7.3337, 7.3323, 7.3307, 7.3334, 7.3326, 7.3313, 7.3298, 7.3293, 7.3286, 7.3394, 7.3344, 7.333, 7.332, 7.3314, 7.3299, 7.3292, 7.3278, 7.3268, 7.3258, 7.3243, 7.3287, 7.3272, 7.3258, 7.3289, 7.332, 7.3347, 7.3334, 7.3324, 7.3276, 7.3373, 7.3358, 7.3343, 7.3328, 7.3318, 7.3306, 7.3296, 7.3384, 7.3376, 7.3367, 7.3319, 7.3317, 7.3308, 7.3294, 7.3287, 7.3278, 7.3309, 7.3297, 7.3282, 7.3268, 7.3258, 7.3244, 7.3315, 7.3366, 7.3393, 7.3382, 7.3389, 7.3455, 7.3445, 7.3433, 7.3426, 7.3412, 7.3403, 7.3401, 7.3387, 7.3384, 7.3372, 7.336, 7.3353, 7.3346, 7.3333, 7.3319, 7.3313, 7.33, 7.329, 7.3316, 7.3306, 7.3292, 7.332, 7.3348, 7.3335, 7.3324, 7.331, 7.3311, 7.3297, 7.3284, 7.3274, 7.3261, 7.3283, 7.3271, 7.326, 7.3287, 7.3429, 7.3456, 7.3444, 7.3474, 7.3464, 7.3469, 7.3459, 7.3493, 7.3482, 7.3469, 7.3456, 7.3448, 7.3443, 7.3432, 7.3419, 7.3448, 7.3435, 7.342, 7.3444, 7.3435, 7.3466, 7.3456, 7.3444, 7.3434, 7.3455, 7.3448, 7.3441, 7.3431, 7.3453, 7.3478, 7.3466, 7.3459, 7.3448, 7.3441, 7.3426, 7.3427, 7.345, 7.3438, 7.3424, 7.341, 7.3432, 7.342, 7.3409, 7.3396, 7.3417, 7.3406, 7.3396, 7.3387, 7.3412, 7.3439, 7.3427, 7.3418, 7.3405, 7.3469, 7.3462, 7.345, 7.3438, 7.3461, 7.3448, 7.3436, 7.3425, 7.3411, 7.3436, 7.3428, 7.3452, 7.3476, 7.3488, 7.3482, 7.347, 7.3496, 7.3483, 7.347, 7.3457, 7.3458, 7.3448, 7.3435, 7.3465, 7.3451, 7.3438, 7.3439, 7.3464, 7.3456, 7.3447, 7.3441, 7.3428, 7.3452, 7.3451, 7.3439, 7.3431, 7.3418, 7.3405, 7.3393, 7.3417, 7.3444, 7.3437, 7.3426, 7.3416, 7.3406, 7.3396, 7.3394, 7.3416, 7.3404, 7.3397, 7.3389, 7.3377, 7.3371, 7.3366, 7.3357, 7.3379, 7.3437, 7.3463, 7.3453, 7.348, 7.3468, 7.346, 7.3483, 7.3471, 7.3494, 7.3484, 7.3475, 7.35, 7.3487, 7.3473, 7.3465, 7.3452, 7.3438, 7.3428, 7.3418, 7.3405, 7.3427, 7.3449, 7.3474, 7.3463, 7.3455, 7.3444, 7.3435, 7.3423, 7.3414, 7.3437, 7.3424, 7.3421, 7.3408, 7.3399, 7.3422, 7.3411, 7.3404, 7.3424, 7.3412, 7.3401, 7.3394, 7.3403, 7.3395, 7.3418, 7.3439, 7.3427, 7.3427, 7.3443, 7.343, 7.3452, 7.3473, 7.3477, 7.3464, 7.3489, 7.3512, 7.3536, 7.3526, 7.3618, 7.3605, 7.3591, 7.3614, 7.3602, 7.3593, 7.358, 7.3568, 7.3589, 7.358, 7.3574, 7.3563, 7.3587, 7.3581, 7.3568, 7.3555, 7.3546, 7.3568, 7.3563, 7.3587, 7.3607, 7.3609, 7.3629, 7.3588, 7.3581, 7.3569, 7.3558, 7.3517, 7.3544, 7.3566, 7.3555, 7.3545, 7.3535, 7.3523, 7.3539, 7.3527, 7.3515, 7.3503, 7.3491, 7.3481, 7.3469, 7.3456, 7.3445, 7.344, 7.3428, 7.3417, 7.3406, 7.3427, 7.3414, 7.3411, 7.3399, 7.3394, 7.3382, 7.3372, 7.3363, 7.3353, 7.3341, 7.3336, 7.336, 7.3349, 7.3342, 7.3331, 7.332, 7.3323, 7.3314, 7.3336, 7.3325, 7.3346, 7.3335, 7.3327, 7.3316, 7.3276, 7.3265, 7.3253, 7.3241, 7.3234, 7.3222, 7.3214, 7.3208, 7.3203, 7.3191, 7.318, 7.3172, 7.3185, 7.3177, 7.317, 7.3189, 7.318, 7.3172, 7.3162, 7.3152, 7.3143, 7.3131, 7.3119, 7.3107, 7.3095, 7.3086, 7.3074, 7.3062, 7.3087, 7.3108, 7.3108, 7.3099, 7.3087, 7.3077, 7.3073, 7.3065, 7.3054, 7.3052, 7.3053, 7.3042, 7.303, 7.3019, 7.3008, 7.304, 7.3038, 7.3091, 7.3082, 7.307, 7.3062, 7.3078, 7.3066, 7.3057, 7.312, 7.3195, 7.3183, 7.3202, 7.3192, 7.3185, 7.3174, 7.3165, 7.3217, 7.3206, 7.3195, 7.3254, 7.3243, 7.3263, 7.3285, 7.3277, 7.3265, 7.3257, 7.3279, 7.3269, 7.3258, 7.3246, 7.3351, 7.334, 7.3331, 7.3325, 7.3346, 7.3337, 7.3328, 7.3372, 7.3361, 7.3381, 7.337, 7.3433, 7.3422, 7.3414, 7.3402, 7.3432, 7.3452, 7.344, 7.3464, 7.3455, 7.3481, 7.3475, 7.3464, 7.3487, 7.3476, 7.3468, 7.3465, 7.3456, 7.3447, 7.3439, 7.3429, 7.3454, 7.3444, 7.3434, 7.3423, 7.3387, 7.3376, 7.3368, 7.336, 7.3349, 7.3337, 7.3333, 7.3327, 7.3316, 7.3434, 7.3422, 7.3414, 7.341, 7.3399, 7.3392, 7.338, 7.337, 7.3358, 7.3349, 7.3338, 7.334, 7.3334, 7.3384, 7.3376, 7.3365, 7.3354, 7.3344, 7.3334, 7.3329, 7.332, 7.3331, 7.3351, 7.334, 7.333, 7.3326, 7.3317, 7.3308, 7.3299, 7.3288, 7.3279, 7.3268, 7.326, 7.3256, 7.3307, 7.3302, 7.3292, 7.3317, 7.3307, 7.33, 7.3295, 7.3289, 7.3278, 7.347, 7.349, 7.3485, 7.3475, 7.3463, 7.3482, 7.3473, 7.3462, 7.3453, 7.3444, 7.3476, 7.347, 7.3459, 7.3448, 7.3439, 7.3428, 7.3416, 7.3434, 7.3427, 7.3415, 7.3406, 7.3395, 7.3412, 7.3414, 7.3441, 7.3432, 7.3422, 7.3411, 7.3401, 7.3394, 7.3386, 7.3375, 7.3394, 7.3411, 7.3404, 7.3378, 7.3376, 7.3369, 7.3522, 7.3512, 7.3509, 7.3502, 7.3521, 7.354, 7.3529, 7.352, 7.3539, 7.3557, 7.3549, 7.3515, 7.3709, 7.3734, 7.3727, 7.3717, 7.3737, 7.3755, 7.3748, 7.3745, 7.3763, 7.3786, 7.378, 7.3799, 7.3788, 7.3782, 7.3775, 7.3793, 7.3782, 7.3776, 7.377, 7.3801, 7.3794, 7.3785, 7.3777, 7.3769, 7.3758, 7.3751, 7.3742, 7.3731, 7.3724, 7.3716, 7.3705, 7.3746, 7.3767, 7.3757, 7.3777, 7.3797, 7.379, 7.3837, 7.3854, 7.3845, 7.3839, 7.3829, 7.3818, 7.3808, 7.3798, 7.3817, 7.3807, 7.3797, 7.3786, 7.3815, 7.3833, 7.3852, 7.3842, 7.3832, 7.3823, 7.3845, 7.3834, 7.38, 7.3793, 7.3827, 7.3849, 7.3867, 7.3863, 7.3881, 7.3873, 7.3865, 7.3865, 7.3857, 7.3847, 7.3837, 7.3827, 7.3818, 7.3824, 7.3791, 7.3811, 7.3829, 7.3821, 7.3811, 7.3803, 7.3792, 7.3782, 7.3772, 7.3761, 7.3751, 7.3746, 7.3738, 7.3754, 7.3751, 7.3741, 7.373, 7.3722, 7.3767, 7.377, 7.3765, 7.3784, 7.3787, 7.383, 7.3848, 7.384, 7.383, 7.3846, 7.3837, 7.3828, 7.3829, 7.3819, 7.3837, 7.3853, 7.3855, 7.3873, 7.3942, 7.3932, 7.3921, 7.391, 7.3902, 7.3893, 7.3885, 7.3959, 7.3924, 7.3942, 7.3932, 7.3948, 7.3964, 7.3984, 7.4002, 7.3992, 7.3958, 7.3976, 7.3994, 7.3987, 7.4004, 7.4048, 7.4071, 7.4087, 7.4104, 7.4093, 7.4083, 7.4104, 7.4121, 7.4112, 7.4127, 7.4142, 7.4132, 7.4148, 7.419, 7.4182, 7.4198, 7.419, 7.4182, 7.4198, 7.4216, 7.4208, 7.4198, 7.4188, 7.418, 7.417, 7.4162, 7.4152, 7.4145, 7.4166, 7.4156, 7.4146, 7.4162, 7.4206, 7.4209, 7.4205, 7.4194, 7.4203, 7.4237, 7.4241, 7.4235, 7.4225, 7.4242, 7.4232, 7.4223, 7.4216, 7.4206, 7.4201, 7.4191, 7.4184, 7.4177, 7.4172, 7.4167, 7.4186, 7.418, 7.4171, 7.4164, 7.416, 7.4152, 7.417, 7.4185, 7.4175, 7.4192, 7.4207, 7.42, 7.4216, 7.4206, 7.4196, 7.4186, 7.4203, 7.4195, 7.419, 7.4187, 7.4216, 7.4206, 7.4197, 7.4189, 7.4184, 7.4177, 7.4167, 7.4158, 7.4148, 7.4138, 7.4161, 7.4155, 7.4172, 7.4164, 7.4156, 7.4173, 7.419, 7.4207, 7.4223, 7.4214, 7.4203, 7.421, 7.4202, 7.4194, 7.4186, 7.4202, 7.4192, 7.4182, 7.4173, 7.4192, 7.4194, 7.4186, 7.4178, 7.4196, 7.4188, 7.4181, 7.4214, 7.4245, 7.4261, 7.4277, 7.4246, 7.4214, 7.421, 7.4225, 7.424, 7.423, 7.4221, 7.4212, 7.4202, 7.4222, 7.424, 7.423, 7.4246, 7.424, 7.4256, 7.4248, 7.4241, 7.4233, 7.4223, 7.4216, 7.4209, 7.4201, 7.4234, 7.4227, 7.4281, 7.4308, 7.4301, 7.4302, 7.4276, 7.4268, 7.4288, 7.4357, 7.4349, 7.434, 7.4356, 7.4371, 7.4409, 7.4401, 7.4416, 7.4409, 7.4434, 7.4429, 7.442, 7.4458, 7.4451, 7.4492, 7.4483, 7.4452, 7.4444, 7.4435, 7.445, 7.4466, 7.4482, 7.4475, 7.4492, 7.4483, 7.4473, 7.4466, 7.4459, 7.4473, 7.4488, 7.4479, 7.4469, 7.4485, 7.4476, 7.4466, 7.446, 7.4451, 7.4442, 7.4432, 7.4424, 7.4414, 7.4408, 7.4399, 7.4392, 7.4382, 7.4372, 7.4388, 7.4404, 7.4421, 7.4411, 7.4429, 7.4421, 7.4414, 7.4432, 7.4425, 7.4422, 7.4416, 7.4406, 7.4397, 7.4388, 7.4379, 7.437, 7.4386, 7.4404, 7.442, 7.441, 7.4404, 7.4394, 7.4385, 7.4376, 7.4367, 7.4382, 7.4397, 7.439, 7.436, 7.4354, 7.4354, 7.4363, 7.4378, 7.4372, 7.4365, 7.4383, 7.4374, 7.4373, 7.4366, 7.438, 7.4372, 7.4364, 7.4357, 7.4391, 7.4382, 7.4378, 7.4385, 7.4401, 7.4392, 7.4406, 7.4401, 7.4416, 7.4407, 7.4402, 7.4372, 7.4364, 7.4354, 7.4345, 7.436, 7.4352, 7.4367, 7.4357, 7.4351, 7.4366, 7.4356, 7.437, 7.434, 7.4354, 7.4348, 7.4342, 7.4359, 7.4351, 7.4343, 7.434, 7.4337, 7.433, 7.4324, 7.4337, 7.4331, 7.4326, 7.4318, 7.431, 7.4325, 7.4316, 7.4306, 7.4299, 7.4292, 7.4286, 7.4278, 7.4269, 7.4302, 7.4293, 7.4286, 7.4301, 7.4315, 7.4307, 7.4298, 7.4314, 7.433, 7.4302, 7.4317, 7.4308, 7.4302, 7.4317, 7.4309, 7.4304, 7.4296, 7.4287, 7.4279, 7.4271, 7.4262, 7.4254, 7.4247, 7.426, 7.4252, 7.4244, 7.4238, 7.4233, 7.4224, 7.4242, 7.4257, 7.4249, 7.4241, 7.4256, 7.4248, 7.4241, 7.4232, 7.4225, 7.424, 7.4232, 7.4249, 7.4265, 7.4257, 7.4249, 7.4263, 7.4256, 7.4248, 7.424, 7.4234, 7.4228, 7.4222, 7.4216, 7.4208, 7.4202, 7.4172, 7.4169, 7.416, 7.4152, 7.4144, 7.4137, 7.4161, 7.4153, 7.4145, 7.4139, 7.4156, 7.4163, 7.4154, 7.4145, 7.4162, 7.4155, 7.4146, 7.4161, 7.4175, 7.4168, 7.4183, 7.4195, 7.421, 7.4202, 7.4194, 7.4211, 7.4225, 7.4218, 7.4234, 7.4235, 7.4228, 7.4242, 7.4256, 7.427, 7.4261, 7.4255, 7.4273, 7.4288, 7.4302, 7.4293, 7.4287, 7.4323, 7.4315, 7.4307, 7.4342, 7.4334, 7.4348, 7.434, 7.4331, 7.4323, 7.4315, 7.431, 7.4303, 7.4296, 7.4287, 7.4302, 7.4317, 7.4309, 7.43, 7.4272, 7.4264, 7.4277, 7.4269, 7.4282, 7.4274, 7.4268, 7.4262, 7.4276, 7.429, 7.4281, 7.4272, 7.4287, 7.4282, 7.4295, 7.4307, 7.4347, 7.4349, 7.4363, 7.4357, 7.4349, 7.434, 7.4334, 7.4326, 7.4321, 7.4314, 7.4307, 7.4321, 7.4314, 7.4309, 7.4324, 7.4317, 7.4309, 7.4329, 7.4321, 7.4312, 7.4306, 7.4427, 7.4419, 7.441, 7.4402, 7.4416, 7.441, 7.4402, 7.4396, 7.4393, 7.4404, 7.4398, 7.4389, 7.4381, 7.4373, 7.4366, 7.4358, 7.438, 7.4374, 7.4367, 7.4358, 7.4372, 7.4384, 7.4379, 7.4372, 7.4367, 7.436, 7.4355, 7.4397, 7.439, 7.4382, 7.4374, 7.4346, 7.4337, 7.4354, 7.4372, 7.4364, 7.4356, 7.4352, 7.4347, 7.4343, 7.4358, 7.4372, 7.4365, 7.4358, 7.4349, 7.4342, 7.4336, 7.4328, 7.4323, 7.4314, 7.4309, 7.4302, 7.4295, 7.4286, 7.43, 7.43, 7.4272, 7.4264, 7.4256, 7.425, 7.427, 7.4285, 7.4276, 7.4268, 7.4314, 7.4344, 7.4336, 7.4328, 7.432, 7.4357, 7.4349, 7.4341, 7.4352, 7.4396, 7.441, 7.4425, 7.4418, 7.441, 7.4404, 7.4395, 7.4419, 7.4414, 7.4427, 7.4431, 7.4446, 7.4463, 7.4477, 7.4469, 7.446, 7.4482, 7.4513, 7.4485, 7.4478, 7.4495, 7.4488, 7.4481, 7.4473, 7.4467, 7.4459, 7.4451, 7.447, 7.4462, 7.4455, 7.4448, 7.4443, 7.4436, 7.4428, 7.442, 7.4432, 7.4426, 7.4419, 7.4417, 7.4416, 7.441, 7.4402, 7.4395, 7.4407, 7.4444, 7.444, 7.4432, 7.4424, 7.442, 7.4411, 7.4427, 7.4423, 7.4438, 7.4432, 7.4425, 7.4419, 7.4411, 7.4424, 7.4418, 7.4484, 7.4498, 7.4511, 7.4503, 7.45, 7.4493, 7.4485, 7.4499, 7.4491, 7.4504, 7.4495, 7.4489, 7.4481, 7.4494, 7.4488, 7.4481, 7.4473, 7.4466, 7.4458, 7.445, 7.4424, 7.4438, 7.4433, 7.4427, 7.442, 7.4433, 7.4427, 7.4423, 7.4416, 7.4409, 7.4403, 7.4395, 7.4389, 7.4381, 7.4373, 7.4388, 7.4381, 7.4376, 7.437, 7.4362, 7.4355, 7.4347, 7.4339, 7.4332, 7.4324, 7.4302, 7.4294, 7.4307, 7.4321, 7.4314, 7.4311, 7.4327, 7.432, 7.4334, 7.4327, 7.4325, 7.4339, 7.4333, 7.4326, 7.4319, 7.4333, 7.4346, 7.4339, 7.4333, 7.4327, 7.4326, 7.4319, 7.4312, 7.4286, 7.428, 7.4273, 7.4269, 7.4261, 7.4274, 7.4266, 7.4258, 7.425, 7.4243, 7.4235, 7.4228, 7.4221, 7.4215, 7.4207, 7.4199, 7.4193, 7.4205, 7.4216, 7.4208, 7.4201, 7.4214, 7.4208, 7.4222, 7.4216, 7.4211, 7.4204, 7.4196, 7.4189, 7.4186, 7.4181, 7.4176, 7.4168, 7.4165, 7.4158, 7.415, 7.4162, 7.4154, 7.4148, 7.414, 7.4132, 7.4144, 7.4157, 7.4169, 7.4163, 7.4176, 7.4188, 7.4183, 7.4177, 7.4169, 7.4163, 7.4156, 7.4149, 7.416, 7.4153, 7.4166, 7.416, 7.4136, 7.4129, 7.4142, 7.4155, 7.4154, 7.4147, 7.4139, 7.4152, 7.4144, 7.4136, 7.4131, 7.4124, 7.4117, 7.4131, 7.4124, 7.4136, 7.4139, 7.4131, 7.4125, 7.4118, 7.4131, 7.4142, 7.4136, 7.4132, 7.4143, 7.4141, 7.4135, 7.413, 7.4144, 7.4165, 7.418, 7.4172, 7.4168, 7.4169, 7.4171, 7.4164, 7.4158, 7.4169, 7.4161, 7.4161, 7.4175, 7.4168, 7.4183, 7.4177, 7.417, 7.4183, 7.4178, 7.417, 7.4181, 7.4174, 7.4169, 7.4163, 7.4156, 7.415, 7.4163, 7.4176, 7.4169, 7.4162, 7.4158, 7.428, 7.4273, 7.4286, 7.428, 7.4293, 7.4286, 7.4282, 7.4274, 7.4266, 7.4261, 7.4253, 7.4277, 7.4269, 7.4263, 7.4255, 7.4331, 7.4325, 7.4319, 7.4312, 7.4306, 7.4282, 7.4295, 7.4289, 7.4283, 7.4276, 7.4268, 7.4279, 7.4293, 7.4286, 7.4278, 7.429, 7.4302, 7.4295, 7.4288, 7.4303, 7.4297, 7.4289, 7.4282, 7.4278, 7.4272, 7.4269, 7.4264, 7.4324, 7.4352, 7.4387, 7.444, 7.4417, 7.4411, 7.4425, 7.4417, 7.4413, 7.4406, 7.4401, 7.4394, 7.4406, 7.4399, 7.4412, 7.4424, 7.442, 7.4418, 7.4421, 7.4413, 7.441, 7.4405, 7.4417, 7.4451, 7.4445, 7.444, 7.448, 7.4491, 7.4485, 7.4479, 7.4473, 7.4487, 7.4485, 7.4481, 7.4482, 7.4478, 7.4472, 7.4465, 7.4488, 7.449, 7.4483, 7.448, 7.4472, 7.4465, 7.4504, 7.4555, 7.4548, 7.4541, 7.4553, 7.4546, 7.454, 7.4618, 7.4631, 7.4625, 7.4617, 7.461, 7.4607, 7.46, 7.4614, 7.4608, 7.4605, 7.4581, 7.4574, 7.4568, 7.4561, 7.4556, 7.455, 7.4545, 7.454, 7.4533, 7.4546, 7.4557, 7.4551, 7.4588, 7.4582, 7.4577, 7.4572, 7.4564, 7.4559, 7.4571, 7.4566, 7.4578, 7.4571, 7.4564, 7.4576, 7.4569, 7.4573, 7.4566, 7.456, 7.4572, 7.4584, 7.4577, 7.4589, 7.4582, 7.4574, 7.4567, 7.4599, 7.4619, 7.4612, 7.4607, 7.46, 7.4612, 7.4607, 7.4585, 7.4578, 7.4574, 7.4567, 7.456, 7.4573, 7.4569, 7.4563, 7.4566, 7.4558, 7.457, 7.4582, 7.4579, 7.4573, 7.4567, 7.4562, 7.4577, 7.457, 7.4564, 7.4557, 7.455, 7.4543, 7.4538, 7.4533, 7.4526, 7.4541, 7.4534, 7.4528, 7.452, 7.4518, 7.4513, 7.4507, 7.45, 7.4493, 7.4486, 7.4482, 7.4477, 7.4488, 7.4481, 7.4478, 7.4474, 7.4485, 7.4497, 7.449, 7.4485, 7.4479, 7.449, 7.4485, 7.4478, 7.449, 7.4484, 7.4532, 7.4543, 7.452, 7.4532, 7.4527, 7.452, 7.455, 7.4543, 7.4538, 7.4557, 7.4551, 7.4562, 7.4555, 7.455, 7.4544, 7.4542, 7.4559, 7.4553, 7.4547, 7.4561, 7.4574, 7.4577, 7.4573, 7.4567, 7.4561, 7.4574, 7.4568, 7.4562, 7.4558, 7.4552, 7.4563, 7.4556, 7.4569, 7.4592, 7.4604, 7.4613, 7.4625, 7.4618, 7.4623, 7.4618, 7.4613, 7.4638, 7.4633, 7.4626, 7.4619, 7.4614, 7.4607, 7.4587, 7.4669, 7.468, 7.4692, 7.4703, 7.4696, 7.469, 7.4685, 7.468, 7.4692, 7.4688, 7.4681, 7.4679, 7.4674, 7.4688, 7.4698, 7.4777, 7.4787, 7.478, 7.4775, 7.4791, 7.4784, 7.4778, 7.4789, 7.4782, 7.4777, 7.479, 7.4783, 7.4776, 7.477, 7.4764, 7.4757, 7.4779, 7.478, 7.4774, 7.4767, 7.4764, 7.4742, 7.4735, 7.4728, 7.4721, 7.4714, 7.4709, 7.4703, 7.4697, 7.469, 7.4683, 7.4678, 7.4673, 7.468, 7.469, 7.4683, 7.4696, 7.4691, 7.4701, 7.4711, 7.4707, 7.4703, 7.4698, 7.4694, 7.4688, 7.4681, 7.4674, 7.4667, 7.4662, 7.4657, 7.4669, 7.4663, 7.4658, 7.4651, 7.4647, 7.4641, 7.4634, 7.4627, 7.462, 7.4613, 7.4606, 7.4599, 7.4626, 7.4604, 7.4601, 7.4596, 7.4591, 7.4584, 7.4577, 7.4572, 7.4589, 7.4582, 7.4585, 7.4578, 7.4589, 7.46, 7.4594, 7.4587, 7.458, 7.4573, 7.4584, 7.4579, 7.4572, 7.4565, 7.4559, 7.4564, 7.4557, 7.4552, 7.4545, 7.4538, 7.4551, 7.455, 7.4544, 7.4556, 7.455, 7.456, 7.4555, 7.4552, 7.4564, 7.4557, 7.4552, 7.4547, 7.4615, 7.461, 7.4622, 7.4686, 7.4697, 7.4692, 7.4771, 7.4766, 7.4761, 7.477, 7.4763, 7.4756, 7.4767, 7.4761, 7.4757, 7.4751, 7.475, 7.4746, 7.474, 7.4751, 7.4751, 7.4744, 7.4738, 7.4748, 7.4751, 7.4748, 7.4742, 7.4737, 7.4719, 7.4699, 7.4696, 7.4691, 7.4674, 7.4688, 7.4682, 7.4676, 7.4659, 7.4654, 7.4683, 7.4677, 7.4672, 7.4668, 7.4662, 7.4673, 7.4666, 7.466, 7.4654, 7.4649, 7.4644, 7.4655, 7.4665, 7.4661, 7.4655, 7.4649, 7.4643, 7.4673, 7.4682, 7.4693, 7.4687, 7.4682, 7.4675, 7.467, 7.4663, 7.4668, 7.4678, 7.4674, 7.4685, 7.4681, 7.4676, 7.4675, 7.4693, 7.4693, 7.4706, 7.4702, 7.4712, 7.4793, 7.4787, 7.4781, 7.4797, 7.4855, 7.4833, 7.4826, 7.4836, 7.4886, 7.488, 7.4883, 7.4878, 7.4874, 7.4893, 7.4887, 7.4897, 7.4908, 7.4919, 7.4912, 7.4922, 7.4922, 7.4916, 7.4912, 7.4909, 7.4905, 7.49, 7.4894, 7.4905, 7.4899, 7.4894, 7.4906, 7.4934, 7.4928, 7.4924, 7.4935, 7.4929, 7.4922, 7.4918, 7.4931, 7.4926, 7.4936, 7.493, 7.4924, 7.4937, 7.4931, 7.4925, 7.492, 7.4914, 7.491, 7.4904, 7.4899, 7.4878, 7.4874, 7.4869, 7.4868, 7.4877, 7.487, 7.4881, 7.4892, 7.4901, 7.4895, 7.489, 7.4885, 7.4864, 7.4858, 7.4852, 7.4845, 7.4855, 7.486, 7.4855, 7.4852, 7.4864, 7.4875, 7.4884, 7.4878, 7.4911, 7.492, 7.4913, 7.4924, 7.4934, 7.4927, 7.492, 7.4913, 7.493, 7.4924, 7.4917, 7.491, 7.4905, 7.4898, 7.4908, 7.4968, 7.4979, 7.4984, 7.4978, 7.4987, 7.4998, 7.5009, 7.5004, 7.4998, 7.4992, 7.4986, 7.4979, 7.4972, 7.4965, 7.496, 7.4954, 7.4948, 7.4942, 7.4935, 7.4944, 7.4938, 7.4949, 7.4944, 7.4943, 7.4937, 7.4931, 7.4925, 7.4928, 7.4921, 7.4914, 7.4908, 7.4919, 7.4913, 7.4908, 7.4918, 7.4912, 7.4921, 7.4914, 7.4909, 7.4921, 7.4915, 7.491, 7.4903, 7.4896, 7.489, 7.4884, 7.4877, 7.487, 7.4864, 7.4859, 7.4854, 7.4862, 7.4857, 7.4869, 7.4862, 7.4856, 7.4862, 7.4872, 7.4866, 7.4876, 7.487, 7.4864, 7.4859, 7.4855, 7.4865, 7.4859, 7.4838, 7.4847, 7.4843, 7.4837, 7.4831, 7.4843, 7.4837, 7.4848, 7.4857, 7.4851, 7.4852, 7.4852, 7.4847, 7.4879, 7.4873, 7.4883, 7.4883, 7.4894, 7.4888, 7.4885, 7.4889, 7.4882, 7.4875, 7.4871, 7.4865, 7.4859, 7.4853, 7.4849, 7.4859, 7.4853, 7.4847, 7.4857, 7.4868, 7.4878, 7.4871, 7.4865, 7.4858, 7.4853, 7.4848, 7.4858, 7.4853, 7.4863, 7.4871, 7.4865, 7.486, 7.4856, 7.485, 7.486, 7.487, 7.4865, 7.4861, 7.4855, 7.4849, 7.4843, 7.484, 7.4834, 7.4828, 7.4822, 7.4821, 7.4818, 7.4813, 7.4808, 7.482, 7.4831, 7.4825, 7.482, 7.4821, 7.4818, 7.4815, 7.4812, 7.4806, 7.48, 7.4797, 7.4796, 7.4789, 7.4786, 7.478, 7.4775, 7.4768, 7.4811, 7.4805, 7.4805, 7.48, 7.4825, 7.4834, 7.4829, 7.4825, 7.4805, 7.4815, 7.4809, 7.4819, 7.4813, 7.4807, 7.4802, 7.4796, 7.479, 7.48, 7.4794, 7.4804, 7.48, 7.4795, 7.4836, 7.483, 7.4862, 7.4858, 7.4868, 7.4863, 7.4859, 7.4854, 7.4849, 7.4846, 7.484, 7.4834, 7.4828, 7.4823, 7.4803, 7.4797, 7.4793, 7.4803, 7.4797, 7.4795, 7.4819, 7.4814, 7.4808, 7.4818, 7.4812, 7.4808, 7.4818, 7.4813, 7.4824, 7.482, 7.4837, 7.4822, 7.4816, 7.4825, 7.4819, 7.4813, 7.4807, 7.4801, 7.4809, 7.4818, 7.4814, 7.4823, 7.4803, 7.4798, 7.4795, 7.4792, 7.4773, 7.4787, 7.4796, 7.4791, 7.4785, 7.4782, 7.4776, 7.4772, 7.4766, 7.476, 7.4754, 7.475, 7.4745, 7.474, 7.4734, 7.4728, 7.4723, 7.4724, 7.4734, 7.4729, 7.474, 7.4734, 7.4805, 7.4799, 7.4793, 7.4789, 7.4785, 7.478, 7.4774, 7.4785, 7.4781, 7.4777, 7.4771, 7.4766, 7.478, 7.4798, 7.4792, 7.4787, 7.4782, 7.478, 7.4793, 7.4787, 7.4781, 7.4775, 7.4769, 7.4791, 7.4811, 7.4808, 7.4802, 7.4796, 7.4799, 7.4795, 7.4831, 7.4825, 7.4819, 7.4814, 7.4811, 7.4806, 7.48, 7.4809, 7.4818, 7.4827, 7.4823, 7.4817, 7.4814, 7.4811, 7.482, 7.4814, 7.4811, 7.4806, 7.48, 7.4794, 7.4788, 7.4782, 7.4777, 7.4773, 7.4767, 7.4761, 7.4755, 7.4764, 7.476, 7.4754, 7.4749, 7.4758, 7.4768, 7.4764, 7.4773, 7.4767, 7.4775, 7.477, 7.4764, 7.476, 7.4755, 7.4749, 7.4743, 7.4737, 7.4742, 7.4737, 7.4733, 7.4727, 7.4721, 7.4731, 7.474, 7.4734, 7.4758, 7.4768, 7.4778, 7.4772, 7.4783, 7.4779, 7.4788, 7.4782, 7.4791, 7.4785, 7.478, 7.4774, 7.4768, 7.4762, 7.4758, 7.4753, 7.4749, 7.4759, 7.4754, 7.4766, 7.4777, 7.4772, 7.4793, 7.4803, 7.4812, 7.4807, 7.4803, 7.4802, 7.4797, 7.4822, 7.4833, 7.4814, 7.4809, 7.4805, 7.48, 7.4781, 7.4793, 7.4809, 7.4806, 7.4801, 7.4795, 7.4812, 7.4807, 7.4817, 7.4813, 7.4816, 7.481, 7.4819, 7.4813, 7.4809, 7.4803, 7.4799, 7.4794, 7.4775, 7.4769, 7.4754, 7.4752, 7.476, 7.4754, 7.4748, 7.4757, 7.4751, 7.476, 7.4756, 7.475, 7.4744, 7.4747, 7.4741, 7.475, 7.4744, 7.4726, 7.4708, 7.4705, 7.47, 7.4696, 7.4705, 7.4699, 7.4693, 7.4687, 7.4671, 7.4666, 7.466, 7.467, 7.4664, 7.4658, 7.4653, 7.4662, 7.4656, 7.4654, 7.4652, 7.4661, 7.4665, 7.4674, 7.4668, 7.4663, 7.4659, 7.4654, 7.4663, 7.4658, 7.4654, 7.4648, 7.4642, 7.4637, 7.4634, 7.4628, 7.4623, 7.4617, 7.4612, 7.461, 7.461, 7.4605, 7.4599, 7.4601, 7.4596, 7.4594, 7.4588, 7.4588, 7.4582, 7.4576, 7.4572, 7.4569, 7.4566, 7.456, 7.4571, 7.458, 7.4577, 7.4573, 7.4569, 7.4565, 7.4563, 7.4576, 7.4587, 7.4583, 7.4579, 7.4575, 7.4571, 7.4567, 7.4565, 7.4577, 7.4589, 7.4585, 7.4579, 7.4575, 7.4572, 7.4581, 7.4578, 7.4576, 7.4571, 7.4565, 7.4561, 7.4557, 7.4554, 7.4551, 7.4548, 7.4545, 7.4554, 7.455, 7.4548, 7.4544, 7.4541, 7.455, 7.4559, 7.4555, 7.4565, 7.4575, 7.4585, 7.4582, 7.4577, 7.4572, 7.4572, 7.4633, 7.4627, 7.4635, 7.463, 7.4628, 7.4622, 7.4616, 7.4624, 7.4619, 7.4613, 7.4608, 7.4603, 7.4681, 7.4676, 7.4685, 7.468, 7.4675, 7.4671, 7.4666, 7.4662, 7.4658, 7.4675, 7.467, 7.4665, 7.4662, 7.4657, 7.4655, 7.4651, 7.4647, 7.4642, 7.4638, 7.4634, 7.4629, 7.4624, 7.4628, 7.4623, 7.4618, 7.4614, 7.461, 7.4606, 7.46, 7.4595, 7.4604, 7.4601, 7.461, 7.4619, 7.4615, 7.4612, 7.4606, 7.4601, 7.4595, 7.4604, 7.4615, 7.4616, 7.4625, 7.4662, 7.467, 7.4665, 7.4661, 7.4643, 7.4638, 7.4662, 7.4657, 7.4652, 7.4675, 7.4672, 7.4669, 7.4678, 7.4688, 7.4688, 7.4696, 7.4692, 7.4686, 7.4681, 7.469, 7.4686, 7.4684, 7.4678, 7.4672, 7.4668, 7.4664, 7.4661, 7.4658, 7.4667, 7.4649, 7.4643, 7.4652, 7.4647, 7.4642, 7.464, 7.4635, 7.4631, 7.464, 7.4636, 7.4633, 7.4629, 7.4637, 7.4632, 7.464, 7.4649, 7.4645, 7.4654, 7.4638, 7.4662, 7.4671, 7.4666, 7.4674, 7.467, 7.4665, 7.4661, 7.467, 7.4665, 7.466, 7.4645, 7.4641, 7.4651, 7.4646, 7.4642, 7.4641, 7.4636, 7.4645, 7.464, 7.4635, 7.4632, 7.4626, 7.4635, 7.463, 7.4625, 7.462, 7.4631, 7.4627, 7.4622, 7.4618, 7.46, 7.4596, 7.4591, 7.4587, 7.4582, 7.4565, 7.4574, 7.457, 7.4579, 7.4587, 7.4599, 7.4595, 7.459, 7.4599, 7.4611, 7.4606, 7.4602, 7.4597, 7.4593, 7.4601, 7.4596, 7.4592, 7.46, 7.4609, 7.4625, 7.4622, 7.4619, 7.4628, 7.4637, 7.4633, 7.463, 7.4625, 7.4621, 7.4617, 7.4613, 7.4609, 7.4604, 7.4614, 7.4611, 7.4606, 7.4617, 7.4604, 7.4599, 7.4594, 7.4589, 7.4584, 7.4578, 7.4574, 7.4569, 7.4564, 7.4559, 7.4569, 7.457, 7.4595, 7.4591, 7.4586, 7.4582, 7.4633, 7.4628, 7.4623, 7.4619, 7.4614, 7.4622, 7.4631, 7.4632, 7.4627, 7.4622, 7.4619, 7.4614, 7.4609, 7.4612, 7.4611, 7.4606, 7.46, 7.4597, 7.4592, 7.4588, 7.4584, 7.4581, 7.4576, 7.4571, 7.4579, 7.4576, 7.4573, 7.4581, 7.4576, 7.4571, 7.458, 7.4576, 7.4571, 7.4566, 7.4561, 7.4565, 7.456, 7.4558, 7.4566, 7.4589, 7.4584, 7.4579, 7.4574, 7.4584, 7.4567, 7.4575, 7.4571, 7.4566, 7.4562, 7.456, 7.4556, 7.4552, 7.4548, 7.4556, 7.4551, 7.4546, 7.4554, 7.4537, 7.4533, 7.4529, 7.4529, 7.4537, 7.4547, 7.4542, 7.4549, 7.4545, 7.454, 7.4535, 7.4531, 7.454, 7.4535, 7.4532, 7.4526, 7.4523, 7.4519, 7.4514, 7.4523, 7.4533, 7.4529, 7.4524, 7.4519, 7.4516, 7.4531, 7.454, 7.4536, 7.4531, 7.454, 7.4536, 7.4546, 7.4544, 7.4539, 7.4534, 7.4532, 7.453, 7.4525, 7.452, 7.4516, 7.4512, 7.4562, 7.4559, 7.4554, 7.455, 7.4546, 7.4529, 7.4537, 7.4534, 7.4531, 7.4527, 7.4537, 7.4545, 7.454, 7.4535, 7.4518, 7.4514, 7.4522, 7.4517, 7.4525, 7.4521, 7.4531, 7.4527, 7.4523, 7.4519, 7.4515, 7.451, 7.4507, 7.4503, 7.45, 7.4496, 7.4505, 7.45, 7.4495, 7.4492, 7.4487, 7.4483, 7.448, 7.4475, 7.447, 7.4472, 7.4468, 7.4463, 7.4458, 7.4454, 7.4462, 7.4446, 7.4441, 7.4437, 7.4432, 7.4441, 7.4424, 7.4421, 7.442, 7.4419, 7.4414, 7.4435, 7.443, 7.4426, 7.4435, 7.4444, 7.4439, 7.4434, 7.4429, 7.4427, 7.4424, 7.4419, 7.4415, 7.4418, 7.4427, 7.4423, 7.4421, 7.4416, 7.4414, 7.4409, 7.4407, 7.4402, 7.4399, 7.4394, 7.4389, 7.4397, 7.4392, 7.4401, 7.4398, 7.4394, 7.439, 7.4398, 7.4395, 7.439, 7.4387, 7.4383, 7.4367, 7.4362, 7.4364, 7.4359, 7.4354, 7.4349, 7.4345, 7.4341, 7.4337, 7.4344, 7.434, 7.4336, 7.4332, 7.4327, 7.4323, 7.4331, 7.4366, 7.4362, 7.4358, 7.4358, 7.4354, 7.435, 7.4362, 7.4358, 7.4354, 7.4349, 7.4345, 7.4342, 7.434, 7.4337, 7.4332, 7.4328, 7.4323, 7.433, 7.4327, 7.4322, 7.433, 7.4317, 7.4312, 7.4321, 7.4316, 7.4311, 7.4319, 7.4314, 7.4309, 7.4304, 7.43, 7.4318, 7.4326, 7.4361, 7.4357, 7.4364, 7.4374, 7.4369, 7.4365, 7.436, 7.4412, 7.4395, 7.4379, 7.4386, 7.4381, 7.4376, 7.4371, 7.4366, 7.4364, 7.4361, 7.4356, 7.4364, 7.4386, 7.4382, 7.4379, 7.4376, 7.4372, 7.4368, 7.4379, 7.4374, 7.437, 7.4377, 7.4403, 7.4398, 7.4424, 7.4419, 7.4416, 7.4411, 7.4419, 7.4414, 7.441, 7.4407, 7.4404, 7.4411, 7.4433, 7.4429, 7.4426, 7.4433, 7.443, 7.4426, 7.4423, 7.4418, 7.4427, 7.4424, 7.442, 7.4416, 7.4411, 7.4407, 7.4404, 7.44, 7.4409, 7.4404, 7.4407, 7.4402, 7.44, 7.4396, 7.4392, 7.4401, 7.4397, 7.4392, 7.4387, 7.4422, 7.4419, 7.4416, 7.4425, 7.4421, 7.4416, 7.4429, 7.4437, 7.4424, 7.4419, 7.4415, 7.44, 7.4396, 7.4392, 7.4388, 7.4383, 7.441, 7.4418, 7.4414, 7.4409, 7.4416, 7.4426, 7.4428, 7.444, 7.4448, 7.4444, 7.4439, 7.4434, 7.443, 7.4425, 7.442, 7.4428, 7.4436, 7.4433, 7.4428, 7.4423, 7.4418, 7.4413, 7.4409, 7.4405, 7.4401, 7.4397, 7.4394, 7.4393, 7.44, 7.4395, 7.439, 7.4387, 7.4384, 7.4381, 7.439, 7.4398, 7.4398, 7.4395, 7.4401, 7.4397, 7.4405, 7.441, 7.4405, 7.44, 7.4397, 7.4392, 7.4388, 7.4384, 7.4392, 7.4388, 7.4383, 7.4379, 7.4374, 7.4369, 7.4365, 7.436, 7.4355, 7.4363, 7.4371, 7.4366, 7.4373, 7.4368, 7.4366, 7.4365, 7.436, 7.4369, 7.4367, 7.4363, 7.436, 7.4367, 7.4363, 7.4362, 7.437, 7.4365, 7.4373, 7.4369, 7.4377, 7.4372, 7.4367, 7.4366, 7.4361, 7.4371, 7.4379, 7.4387, 7.4383, 7.4368, 7.4363, 7.4358, 7.4353, 7.4364, 7.4348, 7.4345, 7.4342, 7.4337, 7.4339, 7.4334, 7.4342, 7.4337, 7.4332, 7.4328, 7.4324, 7.4319, 7.4326, 7.4322, 7.433, 7.4338, 7.4334, 7.4368, 7.4376, 7.4372, 7.4367, 7.4363, 7.4359, 7.4367, 7.4375, 7.437, 7.4378, 7.4373, 7.4368, 7.4365, 7.4361, 7.4369, 7.4365, 7.4361, 7.437, 7.4366, 7.4363, 7.4373, 7.4376, 7.4388, 7.4398, 7.4406, 7.4401, 7.4409, 7.4405, 7.44, 7.4407, 7.4403, 7.4399, 7.4395, 7.4397, 7.4393, 7.4389, 7.4396, 7.4394, 7.439, 7.439, 7.4385, 7.438, 7.4375, 7.4395, 7.4393, 7.44, 7.4408, 7.4404, 7.4402, 7.4412, 7.4417, 7.4414, 7.4428, 7.4416, 7.4412, 7.442, 7.4415, 7.441, 7.4406, 7.4414, 7.4421, 7.4483, 7.4479, 7.4464, 7.446, 7.4468, 7.4466, 7.4463, 7.4461, 7.4456, 7.4488, 7.454, 7.4536, 7.4543, 7.4528, 7.4525, 7.4509, 7.4504, 7.45, 7.4496, 7.4491, 7.4486, 7.4483, 7.4481, 7.4466, 7.4463, 7.4469, 7.4477, 7.4485, 7.4481, 7.4477, 7.4484, 7.4481, 7.4476, 7.4471, 7.4466, 7.4463, 7.4471, 7.4468, 7.4463, 7.4459, 7.4455, 7.4453, 7.4451, 7.4436, 7.445, 7.4447, 7.4456, 7.4452, 7.4451, 7.4448, 7.4469, 7.4477, 7.4472, 7.4467, 7.4462, 7.4457, 7.4453, 7.445, 7.4446, 7.4453, 7.445, 7.4445, 7.4432, 7.4429, 7.4426, 7.4472, 7.4468, 7.4465, 7.4461, 7.4457, 7.4464, 7.4462, 7.4458, 7.4454, 7.4452, 7.4447, 7.4443, 7.4439, 7.4434, 7.4441, 7.4448, 7.4456, 7.4452, 7.4449, 7.4445, 7.4441, 7.4438, 7.4435, 7.4432, 7.4427, 7.4435, 7.4502, 7.4497, 7.4504, 7.4557, 7.4552, 7.455, 7.4547, 7.4543, 7.4551, 7.4547, 7.4544, 7.454, 7.4548, 7.4544, 7.4552, 7.4547, 7.4543, 7.4539, 7.4559, 7.4555, 7.4562, 7.4558, 7.4553, 7.4549, 7.4556, 7.4563, 7.4559, 7.4556, 7.4552, 7.4547, 7.4543, 7.454, 7.4546, 7.4542, 7.454, 7.4536, 7.4531, 7.4527, 7.4524, 7.452, 7.4515, 7.4523, 7.4519, 7.4526, 7.4523, 7.4518, 7.4514, 7.451, 7.4517, 7.4513, 7.452, 7.4517, 7.4514, 7.4522, 7.4519, 7.4516, 7.4511, 7.4496, 7.4492, 7.4487, 7.4483, 7.4479, 7.4487, 7.4495, 7.4491, 7.4488, 7.4484, 7.4479, 7.4487, 7.4488, 7.4474, 7.4472, 7.4468, 7.4465, 7.4461, 7.4446, 7.4454, 7.4451, 7.4471, 7.4467, 7.4463, 7.4477, 7.4476, 7.4472, 7.446, 7.4456, 7.4467, 7.4464, 7.4466, 7.4463, 7.4517, 7.4513, 7.4522, 7.4529, 7.4536, 7.4554, 7.4549, 7.4556, 7.4564, 7.456, 7.4555, 7.455, 7.4546, 7.4541, 7.4541, 7.4537, 7.4533, 7.4531, 7.4526, 7.4523, 7.4521, 7.4516, 7.4512, 7.4519, 7.4526, 7.4536, 7.4532, 7.4527, 7.4525, 7.4532, 7.4528, 7.4532, 7.4528, 7.4524, 7.4531, 7.4538, 7.4545, 7.4552, 7.4548, 7.4544, 7.454, 7.4536, 7.4531, 7.4541, 7.4548, 7.4544, 7.4542, 7.4538, 7.4534, 7.4542, 7.4537, 7.4545, 7.4541, 7.4537, 7.4544, 7.454, 7.4541, 7.4538, 7.4545, 7.4551, 7.4547, 7.4543, 7.4562, 7.458, 7.4575, 7.4582, 7.4581, 7.4577, 7.4573, 7.458, 7.4576, 7.4572, 7.4568, 7.4563, 7.4562, 7.4558, 7.4555, 7.4552, 7.4549, 7.4544, 7.454, 7.4536, 7.4534, 7.453, 7.4526, 7.4523, 7.4523, 7.452, 7.4519, 7.4525, 7.4521, 7.4518, 7.4514, 7.4509, 7.4517, 7.4513, 7.4509, 7.4557, 7.4553, 7.4548, 7.4548, 7.4544, 7.454, 7.4547, 7.4544, 7.4542, 7.4549, 7.4549, 7.4546, 7.4542, 7.4539, 7.4546, 7.4544, 7.454, 7.4536, 7.4532, 7.4529, 7.4525, 7.4522, 7.4519, 7.4526, 7.4522, 7.4532, 7.4528, 7.4551, 7.4546, 7.4542, 7.456, 7.4557, 7.4569, 7.4567, 7.4563, 7.457, 7.4566, 7.4573, 7.4579, 7.4586, 7.4582, 7.4589, 7.4586, 7.4593, 7.46, 7.4596, 7.4592, 7.4589, 7.4597, 7.4604, 7.46, 7.4596, 7.4592, 7.4589, 7.4585, 7.4581, 7.4576, 7.4583, 7.4579, 7.4575, 7.4571, 7.4566, 7.4563, 7.4551, 7.4558, 7.4554, 7.4561, 7.4557, 7.4564, 7.456, 7.4556, 7.4552, 7.4549, 7.4547, 7.4543, 7.4539, 7.4536, 7.4532, 7.4528, 7.4525, 7.4521, 7.4517, 7.4524, 7.4533, 7.4534, 7.453, 7.4526, 7.4522, 7.4519, 7.4516, 7.4514, 7.4521, 7.4517, 7.4513, 7.4512, 7.4508, 7.4504, 7.45, 7.4508, 7.4507, 7.4503, 7.4499, 7.4496, 7.4494, 7.449, 7.4538, 7.4534, 7.453, 7.4527, 7.4525, 7.4522, 7.4527, 7.4522, 7.4518, 7.4517, 7.4513, 7.451, 7.4506, 7.4513, 7.452, 7.4517, 7.4514, 7.4512, 7.4508, 7.4505, 7.4501, 7.4528, 7.4535, 7.4532, 7.4539, 7.4546, 7.4556, 7.4554, 7.4561, 7.4557, 7.4567, 7.4574, 7.4578, 7.4585, 7.4593, 7.4589, 7.4585, 7.4582, 7.4578, 7.4585, 7.4581, 7.4577, 7.4573, 7.4569, 7.4566, 7.4563, 7.457, 7.4568, 7.4565, 7.4572, 7.458, 7.4576, 7.4582, 7.4589, 7.4585, 7.4584, 7.458, 7.4576, 7.4573, 7.4569, 7.4565, 7.4561, 7.4557, 7.4564, 7.4571, 7.4568, 7.4564, 7.4563, 7.457, 7.4566, 7.4564, 7.456, 7.4556, 7.4552, 7.4559, 7.4566, 7.4562, 7.4559, 7.4558, 7.457, 7.4568, 7.4564, 7.456, 7.4561, 7.4564, 7.456, 7.4568, 7.4564, 7.457, 7.4567, 7.4553, 7.4549, 7.4547, 7.4542, 7.454, 7.4549, 7.4546, 7.4543, 7.4539, 7.454, 7.4537, 7.4546, 7.4543, 7.4539, 7.4535, 7.4532, 7.4527, 7.4523, 7.4519, 7.4515, 7.4511, 7.4498, 7.4516, 7.4513, 7.4509, 7.4506, 7.4502, 7.4498, 7.4494, 7.4491, 7.4497, 7.4495, 7.4501, 7.4499, 7.4496, 7.4493, 7.4491, 7.4487, 7.4484, 7.448, 7.4476, 7.4472, 7.4479, 7.4477, 7.4473, 7.447, 7.4466, 7.4467, 7.4463, 7.447, 7.4467, 7.4463, 7.4459, 7.4455, 7.4451, 7.4447, 7.4443, 7.444, 7.4447, 7.4451, 7.4475, 7.4472, 7.4468, 7.4464, 7.4471, 7.4468, 7.4466, 7.4474, 7.447, 7.4466, 7.4462, 7.447, 7.4466, 7.4463, 7.447, 7.4465, 7.4461, 7.4468, 7.4497, 7.4493, 7.45, 7.4507, 7.4503, 7.4509, 7.4507, 7.4514, 7.4521, 7.4528, 7.4534, 7.4541, 7.4538, 7.4534, 7.4542, 7.4539, 7.4535, 7.4544, 7.455, 7.4547, 7.4544, 7.454, 7.4537, 7.4544, 7.454, 7.4536, 7.4533, 7.4529, 7.4525, 7.4533, 7.453, 7.4541, 7.4537, 7.4534, 7.4535, 7.4533, 7.4529, 7.4527, 7.4544, 7.4542, 7.455, 7.4548, 7.4544, 7.454, 7.4536, 7.4532, 7.4527, 7.4513, 7.4515, 7.4511, 7.4507, 7.4504, 7.4512, 7.4509, 7.4506, 7.4504, 7.4516, 7.4523, 7.4519, 7.4514, 7.4511, 7.4507, 7.4504, 7.4502, 7.4499, 7.4495, 7.4491, 7.4501, 7.4498, 7.4495, 7.4495, 7.4491, 7.4489, 7.4475, 7.4472, 7.4468, 7.4466, 7.4472, 7.447, 7.4467, 7.4465, 7.4461, 7.4457, 7.4453, 7.4449, 7.4445, 7.4441, 7.4437, 7.4433, 7.443, 7.4427, 7.4423, 7.442, 7.4428, 7.4425, 7.4422, 7.4429, 7.4425, 7.4421, 7.4417, 7.4415, 7.4412, 7.4408, 7.4405, 7.4402, 7.4408, 7.4406, 7.4403, 7.4399, 7.4386, 7.4392, 7.4389, 7.439, 7.4397, 7.4394, 7.439, 7.4397, 7.4394, 7.439, 7.4387, 7.4384, 7.4381, 7.4399, 7.4396, 7.4392, 7.4399, 7.4396, 7.4403, 7.4399, 7.4406, 7.4403, 7.4399, 7.4397, 7.4393, 7.44, 7.4397, 7.4394, 7.4404, 7.4402, 7.4401, 7.44, 7.4396, 7.4403, 7.441, 7.4406, 7.4402, 7.4409, 7.4406, 7.4402, 7.4388, 7.4394, 7.439, 7.4397, 7.4403, 7.439, 7.4387, 7.4384, 7.438, 7.4376, 7.4373, 7.438, 7.4377, 7.4384, 7.4391, 7.4397, 7.4393, 7.4389, 7.4396, 7.4392, 7.4389, 7.4385, 7.4404, 7.4419, 7.4415, 7.4412, 7.4399, 7.4385, 7.4392, 7.4388, 7.4415, 7.4412, 7.4409, 7.4399, 7.4396, 7.4392, 7.4389, 7.439, 7.4401, 7.4414, 7.4421, 7.4427, 7.4423, 7.4429, 7.4435, 7.4432, 7.4439, 7.4435, 7.4462, 7.4479, 7.4486, 7.4482, 7.4478, 7.4478, 7.4474, 7.4471, 7.4482, 7.4479, 7.4475, 7.4476, 7.4479, 7.4477, 7.4491, 7.4487, 7.4474, 7.4512, 7.4509, 7.4527, 7.4524, 7.4522, 7.4559, 7.4565, 7.4561, 7.4558, 7.4576, 7.4574, 7.4575, 7.4572, 7.4579, 7.4576, 7.4572, 7.4569, 7.4565, 7.4571, 7.4579, 7.4585, 7.4581, 7.4577, 7.4574, 7.458, 7.4576, 7.4563, 7.4569, 7.4596, 7.4586, 7.4598, 7.4598, 7.4595, 7.4592, 7.4599, 7.4596, 7.4602, 7.4608, 7.4604, 7.46, 7.4596, 7.4606, 7.4612, 7.4618, 7.4625, 7.4621, 7.4617, 7.4623, 7.462, 7.4616, 7.4622, 7.4629, 7.4627, 7.4623, 7.4619, 7.4625, 7.4621, 7.4627, 7.4633, 7.4639, 7.4646, 7.4643, 7.4639, 7.4646, 7.4643, 7.465, 7.4647, 7.4643, 7.4639, 7.4636, 7.4632, 7.465, 7.4658, 7.4655, 7.4662, 7.4658, 7.4655, 7.4661, 7.4657, 7.4654, 7.467, 7.4676, 7.4694, 7.4683, 7.4679, 7.4675, 7.4672, 7.4668, 7.4675, 7.4671, 7.4668, 7.4674, 7.468, 7.4686, 7.4692, 7.4698, 7.4695, 7.4691, 7.4697, 7.4693, 7.4691, 7.4688, 7.4685, 7.4682, 7.4678, 7.4674, 7.467, 7.4666, 7.4662, 7.4668, 7.4675, 7.4682, 7.4689, 7.4695, 7.4692, 7.4689, 7.4706, 7.4702, 7.4698, 7.4704, 7.471, 7.4706, 7.4713, 7.47, 7.4696, 7.4693, 7.4709, 7.4705, 7.4701, 7.4698, 7.4694, 7.4691, 7.4688, 7.4694, 7.4702, 7.4708, 7.4704, 7.4701, 7.4698, 7.4696, 7.4695, 7.4693, 7.47, 7.469, 7.4694, 7.4684, 7.468, 7.4676, 7.4683, 7.4689, 7.4685, 7.4685, 7.4683, 7.468, 7.4678, 7.4685, 7.4692, 7.4699, 7.4705, 7.4712, 7.4708, 7.4705, 7.4704, 7.4701, 7.4707, 7.4706, 7.4714, 7.471, 7.4719, 7.4715, 7.4712, 7.4709, 7.4707, 7.4714, 7.4711, 7.471, 7.4716, 7.4715, 7.4715, 7.4714, 7.4721, 7.472, 7.4717, 7.4716, 7.4712, 7.4711, 7.4699, 7.4706, 7.4703, 7.47, 7.4699, 7.4699], '192.168.122.118': [5.4498, 5.43, 6.3577, 6.0905, 6.1591, 6.0216, 7.2374, 7.013, 7.4726, 7.3706, 7.2471, 7.0966, 7.1346, 7.0128, 6.9101, 7.1657, 7.4116, 7.3226, 7.4349, 7.3382, 7.3024, 7.2419, 7.3982, 7.3099, 7.2297, 7.1783, 7.5206, 7.4567, 7.8891, 7.6979, 7.6329, 7.5662, 7.7655, 7.8697, 7.7013, 7.726, 7.97, 7.922, 8.0194, 7.9533, 7.9023, 7.8523, 7.8022, 7.9223, 7.8666, 7.9328, 7.9166, 7.8689, 7.8306, 7.8895, 7.8403, 7.7923, 7.7568, 7.7202, 7.6829, 7.6455, 7.608, 7.5861, 7.5572, 7.5351, 7.4996, 7.4665, 7.449, 7.4261, 7.3956, 7.4493, 7.5028, 7.4726, 7.5227, 7.4909, 7.4612, 7.4372, 7.4072, 7.4579, 7.4383, 7.4184, 7.3943, 7.3701, 7.3458, 7.3858, 7.4279, 7.4068, 7.5165, 7.5854, 7.5604, 7.6104, 7.6437, 7.7865, 7.7623, 7.7349, 7.7097, 7.6858, 7.7194, 7.693, 7.7267, 7.7103, 7.6906, 7.7207, 7.702, 7.6818, 7.6128, 7.5918, 7.5741, 7.6033, 7.5868, 7.5659, 7.5547, 7.5541, 7.5395, 7.53, 7.5614, 7.5939, 7.5736, 7.6018, 7.5846, 7.5714, 7.6009, 7.5838, 7.5647, 7.5614, 7.507, 7.4882, 7.4785, 7.4691, 7.4139, 7.4077, 7.3979, 7.3834, 7.3732, 7.3571, 7.3894, 7.3776, 7.3631, 7.4972, 7.485, 7.4772, 7.4666, 7.4511, 7.4763, 7.5023, 7.527, 7.5128, 7.4983, 7.525, 7.5484, 7.5712, 7.557, 7.5424, 7.5278, 7.5129, 7.5083, 7.4974, 7.4854, 7.4726, 7.4592, 7.4808, 7.5028, 7.5243, 7.513, 7.503, 7.5237, 7.5116, 7.5004, 7.4896, 7.4843, 7.4721, 7.4794, 7.4705, 7.4588, 7.4484, 7.4679, 7.4552, 7.4437, 7.4411, 7.4287, 7.4169, 7.4059, 7.395, 7.3832, 7.4021, 7.3914, 7.3853, 7.4085, 7.4545, 7.4992, 7.517, 7.5351, 7.5562, 7.5721, 7.5645, 7.5599, 7.5777, 7.5671, 7.5847, 7.6019, 7.6233, 7.6702, 7.6855, 7.6788, 7.6698, 7.6587, 7.6468, 7.6368, 7.6281, 7.647, 7.6387, 7.6383, 7.6291, 7.6205, 7.6146, 7.6056, 7.5959, 7.6102, 7.6051, 7.5947, 7.5882, 7.5807, 7.5949, 7.588, 7.5803, 7.5713, 7.5658, 7.5575, 7.5498, 7.5403, 7.537, 7.5299, 7.5234, 7.4951, 7.5084, 7.5263, 7.5189, 7.5348, 7.5528, 7.5243, 7.5586, 7.6159, 7.5871, 7.5818, 7.5948, 7.5863, 7.5788, 7.5736, 7.5645, 7.5566, 7.5489, 7.5627, 7.5539, 7.545, 7.5373, 7.5401, 7.5528, 7.5465, 7.5735, 7.5744, 7.5871, 7.5781, 7.5708, 7.5842, 7.5958, 7.5866, 7.5786, 7.5711, 7.5637, 7.5573, 7.5542, 7.546, 7.539, 7.5499, 7.5416, 7.5355, 7.5274, 7.5584, 7.5503, 7.5606, 7.5544, 7.546, 7.5379, 7.5299, 7.5218, 7.5343, 7.5447, 7.5371, 7.532, 7.5433, 7.5545, 7.5683, 7.5609, 7.5377, 7.5307, 7.5235, 7.5175, 7.5118, 7.5227, 7.5158, 7.4928, 7.4883, 7.4854, 7.4785, 7.4563, 7.4676, 7.4632, 7.4747, 7.4676, 7.4609, 7.4561, 7.4495, 7.4427, 7.4485, 7.4596, 7.4707, 7.4643, 7.4744, 7.4674, 7.4604, 7.4538, 7.4469, 7.4578, 7.4511, 7.4616, 7.4722, 7.4827, 7.4802, 7.4905, 7.4697, 7.4491, 7.459, 7.4531, 7.4487, 7.442, 7.4207, 7.4143, 7.4093, 7.4211, 7.4155, 7.4093, 7.4195, 7.4133, 7.4071, 7.4019, 7.396, 7.406, 7.4168, 7.4129, 7.4069, 7.4017, 7.3959, 7.392, 7.3868, 7.3842, 7.3952, 7.4134, 7.408, 7.4022, 7.398, 7.3786, 7.3881, 7.3852, 7.3674, 7.3617, 7.3593, 7.3566, 7.3384, 7.3333, 7.3282, 7.3245, 7.3212, 7.3171, 7.3981, 7.4076, 7.389, 7.399, 7.3935, 7.3891, 7.3847, 7.3793, 7.3881, 7.3827, 7.3786, 7.3756, 7.3832, 7.4056, 7.4007, 7.3832, 7.3778, 7.3733, 7.3681, 7.3776, 7.3743, 7.3694, 7.3647, 7.3598, 7.3545, 7.3632, 7.3582, 7.3547, 7.3629, 7.3591, 7.3677, 7.3655, 7.3619, 7.3576, 7.3528, 7.3362, 7.3452, 7.354, 7.3372, 7.3339, 7.3432, 7.3269, 7.3225, 7.321, 7.3184, 7.3269, 7.323, 7.3073, 7.3026, 7.2977, 7.2945, 7.2898, 7.3383, 7.3338, 7.3311, 7.3267, 7.3217, 7.3301, 7.3315, 7.3348, 7.3302, 7.3272, 7.338, 7.3457, 7.3413, 7.337, 7.333, 7.3412, 7.3466, 7.3436, 7.3391, 7.3416, 7.343, 7.3383, 7.3335, 7.3991, 7.396, 7.3928, 7.3906, 7.3864, 7.394, 7.3892, 7.3876, 7.3947, 7.39, 7.3856, 7.393, 7.4002, 7.3965, 7.4038, 7.411, 7.4077, 7.4147, 7.4103, 7.3955, 7.3911, 7.3869, 7.3824, 7.3789, 7.3746, 7.3705, 7.367, 7.3625, 7.369, 7.3764, 7.3724, 7.3795, 7.3755, 7.3717, 7.3686, 7.3665, 7.3631, 7.3592, 7.3667, 7.3623, 7.3602, 7.375, 7.3717, 7.3699, 7.3766, 7.3732, 7.3692, 7.377, 7.3834, 7.3822, 7.3802, 7.3763, 7.3734, 7.3691, 7.3693, 7.3676, 7.3637, 7.3598, 7.3579, 7.3649, 7.3637, 7.3719, 7.368, 7.3756, 7.3726, 7.3686, 7.3648, 7.3611, 7.358, 7.3555, 7.3625, 7.3587, 7.3548, 7.352, 7.3578, 7.355, 7.3518, 7.3486, 7.3483, 7.3448, 7.3411, 7.3479, 7.3453, 7.3424, 7.3396, 7.3358, 7.3321, 7.3298, 7.3295, 7.3311, 7.3301, 7.3281, 7.3249, 7.3221, 7.3185, 7.3095, 7.3067, 7.2949, 7.3016, 7.2998, 7.2972, 7.3032, 7.2998, 7.2965, 7.2929, 7.2892, 7.2861, 7.2825, 7.2707, 7.2676, 7.264, 7.2624, 7.2687, 7.2653, 7.2619, 7.2685, 7.2673, 7.2657, 7.2626, 7.2591, 7.2561, 7.2538, 7.2534, 7.2508, 7.2482, 7.2449, 7.2416, 7.2383, 7.2447, 7.2431, 7.24, 7.246, 7.2435, 7.2415, 7.2394, 7.2374, 7.2432, 7.2399, 7.2368, 7.2334, 7.2309, 7.2286, 7.2278, 7.2335, 7.2328, 7.2217, 7.2185, 7.2256, 7.2229, 7.2288, 7.2275, 7.2244, 7.2222, 7.2113, 7.2098, 7.2077, 7.2058, 7.2028, 7.2377, 7.2432, 7.2406, 7.2376, 7.2347, 7.2407, 7.2382, 7.2354, 7.2245, 7.2214, 7.2193, 7.2171, 7.2232, 7.221, 7.2264, 7.2318, 7.2286, 7.2261, 7.2229, 7.2201, 7.2173, 7.2233, 7.2298, 7.23, 7.2273, 7.2248, 7.2224, 7.2279, 7.2249, 7.2218, 7.2188, 7.217, 7.2138, 7.2108, 7.2093, 7.2063, 7.2041, 7.2015, 7.1991, 7.1961, 7.1936, 7.1912, 7.1969, 7.1944, 7.2002, 7.1976, 7.1955, 7.1941, 7.1912, 7.1981, 7.1967, 7.1937, 7.191, 7.1897, 7.1869, 7.1772, 7.1746, 7.1722, 7.1704, 7.1754, 7.1741, 7.1802, 7.1784, 7.1836, 7.1892, 7.1864, 7.1846, 7.1827, 7.1802, 7.1865, 7.1837, 7.181, 7.1872, 7.1845, 7.183, 7.1883, 7.1931, 7.1913, 7.1885, 7.1859, 7.1919, 7.1896, 7.1951, 7.1931, 7.1931, 7.1981, 7.1957, 7.2009, 7.2061, 7.211, 7.2113, 7.2091, 7.2065, 7.2039, 7.2014, 7.1991, 7.2043, 7.2017, 7.2074, 7.2131, 7.2119, 7.2144, 7.212, 7.2175, 7.2241, 7.2216, 7.2271, 7.2328, 7.2304, 7.228, 7.226, 7.2337, 7.2326, 7.2561, 7.2537, 7.2511, 7.2484, 7.2595, 7.2571, 7.2548, 7.2678, 7.2661, 7.264, 7.2621, 7.2601, 7.2707, 7.2681, 7.2661, 7.2641, 7.2616, 7.2591, 7.2629, 7.2539, 7.2529, 7.2573, 7.2554, 7.2555, 7.2532, 7.252, 7.2501, 7.2556, 7.2532, 7.2509, 7.2496, 7.2472, 7.2446, 7.2421, 7.2397, 7.2372, 7.2347, 7.2368, 7.2418, 7.2345, 7.2324, 7.2376, 7.2363, 7.2275, 7.2403, 7.2385, 7.2435, 7.2438, 7.2482, 7.247, 7.2451, 7.2501, 7.2483, 7.246, 7.2442, 7.2425, 7.2466, 7.2444, 7.2418, 7.2409, 7.2383, 7.2363, 7.2351, 7.2407, 7.2395, 7.2372, 7.2354, 7.2337, 7.2318, 7.2293, 7.2268, 7.2318, 7.2363, 7.2415, 7.2398, 7.2374, 7.2421, 7.2404, 7.2457, 7.2504, 7.2488, 7.2535, 7.2521, 7.2612, 7.2587, 7.2567, 7.2609, 7.2655, 7.2697, 7.2675, 7.2654, 7.2633, 7.2702, 7.2678, 7.2688, 7.2679, 7.2718, 7.2758, 7.2734, 7.2775, 7.2816, 7.2797, 7.2774, 7.2751, 7.2727, 7.2703, 7.2746, 7.2729, 7.2714, 7.2689, 7.2858, 7.2903, 7.2822, 7.2798, 7.2784, 7.2828, 7.2807, 7.2788, 7.2769, 7.2852, 7.2895, 7.2932, 7.2974, 7.2956, 7.2934, 7.2912, 7.2888, 7.2869, 7.2851, 7.2828, 7.2828, 7.294, 7.3229, 7.3207, 7.3187, 7.3108, 7.3091, 7.307, 7.3049, 7.3028, 7.307, 7.3056, 7.3162, 7.3141, 7.3066, 7.3043, 7.3023, 7.2965, 7.3004, 7.2982, 7.296, 7.2937, 7.2914, 7.2903, 7.2882, 7.2921, 7.2961, 7.2938, 7.2862, 7.2851, 7.2837, 7.2822, 7.2925, 7.2931, 7.2914, 7.2898, 7.2936, 7.2914, 7.2908, 7.2948, 7.2927, 7.291, 7.2889, 7.3026, 7.301, 7.3222, 7.32, 7.3184, 7.3176, 7.3215, 7.3199, 7.3184, 7.3174, 7.3158, 7.3142, 7.3132, 7.311, 7.3102, 7.3087, 7.3077, 7.3056, 7.3038, 7.3074, 7.3052, 7.303, 7.3066, 7.3049, 7.3028, 7.3068, 7.3053, 7.304, 7.308, 7.3059, 7.3042, 7.302, 7.3059, 7.3098, 7.3076, 7.3115, 7.3161, 7.3232, 7.3211, 7.319, 7.3176, 7.3212, 7.3258, 7.3247, 7.3231, 7.321, 7.3191, 7.3231, 7.3214, 7.3252, 7.3289, 7.3267, 7.3246, 7.3229, 7.3224, 7.3212, 7.32, 7.3236, 7.326, 7.3241, 7.3179, 7.3164, 7.3202, 7.3133, 7.3121, 7.31, 7.3086, 7.3069, 7.3053, 7.3035, 7.3018, 7.2957, 7.2891, 7.2871, 7.287, 7.2849, 7.2828, 7.2811, 7.2796, 7.2777, 7.2764, 7.2745, 7.2736, 7.2715, 7.2705, 7.2747, 7.2733, 7.2669, 7.2707, 7.2687, 7.2619, 7.2601, 7.2637, 7.2637, 7.267, 7.2658, 7.2639, 7.2621, 7.2607, 7.2588, 7.2629, 7.2613, 7.2594, 7.2632, 7.2627, 7.2608, 7.2597, 7.2531, 7.2516, 7.2448, 7.2435, 7.2579, 7.2562, 7.2557, 7.2623, 7.2603, 7.2589, 7.2577, 7.2559, 7.2541, 7.2524, 7.2509, 7.249, 7.2566, 7.2551, 7.2484, 7.2467, 7.2448, 7.2481, 7.2463, 7.245, 7.2432, 7.2465, 7.2455, 7.2438, 7.2373, 7.2354, 7.2343, 7.2377, 7.2358, 7.2392, 7.2388, 7.237, 7.2353, 7.2335, 7.2324, 7.2312, 7.2359, 7.2353, 7.2343, 7.2335, 7.2334, 7.2371, 7.2359, 7.234, 7.2327, 7.2308, 7.229, 7.2272, 7.2259, 7.2247, 7.2233, 7.2215, 7.225, 7.2239, 7.2273, 7.2265, 7.2252, 7.2236, 7.227, 7.2256, 7.2241, 7.2229, 7.2265, 7.2248, 7.2233, 7.2216, 7.2249, 7.2281, 7.2268, 7.2398, 7.2384, 7.2372, 7.2404, 7.2393, 7.2379, 7.237, 7.2358, 7.2341, 7.2324, 7.2316, 7.2299, 7.2391, 7.2572, 7.2555, 7.2547, 7.258, 7.2613, 7.2597, 7.259, 7.2572, 7.2619, 7.2653, 7.2639, 7.2672, 7.2654, 7.2686, 7.2669, 7.2673, 7.2656, 7.264, 7.2625, 7.2621, 7.2626, 7.2683, 7.2622, 7.2669, 7.2654, 7.2738, 7.2819, 7.281, 7.2792, 7.2875, 7.2857, 7.2843, 7.2827, 7.2908, 7.2899, 7.2893, 7.2879, 7.2914, 7.2901, 7.2933, 7.2919, 7.291, 7.2925, 7.2914, 7.2899, 7.2884, 7.2869, 7.2852, 7.2884, 7.2874, 7.2857, 7.2841, 7.2881, 7.2865, 7.2809, 7.2794, 7.2828, 7.2861, 7.2891, 7.2833, 7.282, 7.2805, 7.279, 7.279, 7.2787, 7.277, 7.2762, 7.2747, 7.2777, 7.2761, 7.2752, 7.2738, 7.2728, 7.2716, 7.2699, 7.2739, 7.2768, 7.2751, 7.274, 7.2723, 7.2707, 7.2734, 7.2722, 7.2707, 7.2692, 7.2676, 7.2663, 7.2605, 7.2634, 7.2619, 7.2649, 7.2633, 7.2661, 7.2645, 7.2634, 7.2723, 7.2798, 7.2783, 7.2775, 7.276, 7.2743, 7.2728, 7.2758, 7.2749, 7.2734, 7.2735, 7.2728, 7.2711, 7.2704, 7.2687, 7.2677, 7.2624, 7.2611, 7.2595, 7.2583, 7.2572, 7.2647, 7.2639, 7.2624, 7.2611, 7.2597, 7.2586, 7.2616, 7.2602, 7.2595, 7.2579, 7.2566, 7.2593, 7.2584, 7.2572, 7.2559, 7.255, 7.2537, 7.2572, 7.2599, 7.2586, 7.2571, 7.2604, 7.259, 7.2574, 7.256, 7.2545, 7.2575, 7.2559, 7.2544, 7.2536, 7.2522, 7.2512, 7.2498, 7.2484, 7.2482, 7.2469, 7.2453, 7.2441, 7.2471, 7.2503, 7.2489, 7.2519, 7.2505, 7.2497, 7.2483, 7.2469, 7.2455, 7.2445, 7.2435, 7.2432, 7.2464, 7.2451, 7.2438, 7.2429, 7.2416, 7.2441, 7.2433, 7.2421, 7.2413, 7.24, 7.2395, 7.2381, 7.2373, 7.2359, 7.2308, 7.2346, 7.2337, 7.2354, 7.2347, 7.2339, 7.2327, 7.2323, 7.231, 7.2339, 7.2368, 7.2375, 7.2361, 7.2321, 7.2308, 7.2294, 7.2282, 7.2268, 7.2297, 7.2287, 7.2276, 7.231, 7.2299, 7.2287, 7.2273, 7.2262, 7.2255, 7.2247, 7.2237, 7.2223, 7.2215, 7.2247, 7.2239, 7.2228, 7.2256, 7.2246, 7.2276, 7.2264, 7.233, 7.2318, 7.2302, 7.2293, 7.2323, 7.2351, 7.2338, 7.2323, 7.2353, 7.2343, 7.234, 7.2367, 7.2353, 7.2338, 7.237, 7.236, 7.2347, 7.2367, 7.2395, 7.2382, 7.2369, 7.2356, 7.2348, 7.2374, 7.2404, 7.2391, 7.2391, 7.239, 7.2376, 7.2366, 7.2362, 7.2349, 7.2337, 7.2297, 7.2284, 7.2279, 7.2305, 7.2309, 7.2318, 7.2306, 7.2298, 7.2289, 7.2278, 7.2235, 7.2197, 7.2184, 7.2282, 7.2268, 7.2255, 7.2218, 7.2205, 7.2233, 7.2223, 7.221, 7.2202, 7.2188, 7.2174, 7.2166, 7.216, 7.2147, 7.2133, 7.2134, 7.2121, 7.2112, 7.2112, 7.2138, 7.2129, 7.2081, 7.207, 7.2096, 7.2083, 7.2069, 7.2055, 7.2043, 7.207, 7.2061, 7.2051, 7.2038, 7.2024, 7.2015, 7.2002, 7.1989, 7.1977, 7.1966, 7.1992, 7.1983, 7.197, 7.1957, 7.1945, 7.1969, 7.1996, 7.2027, 7.2014, 7.2166, 7.2152, 7.2142, 7.2131, 7.2125, 7.2113, 7.2104, 7.2092, 7.2084, 7.207, 7.2097, 7.2085, 7.2074, 7.2062, 7.2049, 7.2036, 7.2063, 7.2051, 7.2043, 7.2038, 7.2047, 7.2034, 7.2024, 7.1977, 7.2003, 7.203, 7.2056, 7.2046, 7.2075, 7.2077, 7.2103, 7.2094, 7.2126, 7.2156, 7.2109, 7.2113, 7.2158, 7.2222, 7.2213, 7.2235, 7.2225, 7.2302, 7.233, 7.2321, 7.2307, 7.2296, 7.2283, 7.2309, 7.2356, 7.2381, 7.2368, 7.2355, 7.2353, 7.2344, 7.2368, 7.2357, 7.2459, 7.2449, 7.2436, 7.2423, 7.2415, 7.2439, 7.2428, 7.2449, 7.2474, 7.2503, 7.2492, 7.2483, 7.2473, 7.2474, 7.2464, 7.2488, 7.2478, 7.2432, 7.2426, 7.2414, 7.24, 7.239, 7.238, 7.2369, 7.2357, 7.2372, 7.2361, 7.235, 7.2342, 7.233, 7.2358, 7.2345, 7.2376, 7.2398, 7.2405, 7.2392, 7.2381, 7.2377, 7.2366, 7.2356, 7.2348, 7.2335, 7.2325, 7.232, 7.2312, 7.2313, 7.2302, 7.229, 7.2279, 7.2278, 7.2276, 7.2265, 7.2252, 7.2242, 7.2263, 7.2284, 7.2272, 7.2264, 7.2253, 7.224, 7.2236, 7.2224, 7.2212, 7.22, 7.2224, 7.2247, 7.2255, 7.2245, 7.2232, 7.2224, 7.2216, 7.221, 7.2205, 7.2194, 7.2218, 7.221, 7.2167, 7.2161, 7.2155, 7.2143, 7.2137, 7.2128, 7.2221, 7.2213, 7.22, 7.2157, 7.2146, 7.2145, 7.2133, 7.214, 7.2128, 7.2152, 7.2141, 7.2128, 7.2128, 7.2117, 7.2107, 7.213, 7.2119, 7.2113, 7.2105, 7.2128, 7.2119, 7.2108, 7.2095, 7.2089, 7.2078, 7.2168, 7.2189, 7.2178, 7.2171, 7.2262, 7.2252, 7.2244, 7.2305, 7.2293, 7.2316, 7.2339, 7.2331, 7.232, 7.231, 7.2299, 7.2287, 7.2276, 7.2297, 7.2285, 7.2272, 7.2263, 7.2343, 7.2366, 7.2356, 7.2348, 7.237, 7.2362, 7.235, 7.234, 7.2366, 7.2375, 7.2415, 7.2408, 7.2398, 7.2388, 7.2384, 7.2372, 7.2366, 7.2354, 7.2348, 7.2337, 7.2325, 7.2314, 7.2302, 7.2297, 7.2299, 7.2333, 7.2323, 7.2333, 7.2322, 7.231, 7.2333, 7.2321, 7.2309, 7.2297, 7.2289, 7.2277, 7.227, 7.2333, 7.2336, 7.2341, 7.2344, 7.2336, 7.2324, 7.2314, 7.2308, 7.2328, 7.2316, 7.2304, 7.2298, 7.2316, 7.2338, 7.2329, 7.2318, 7.2316, 7.2305, 7.2294, 7.2255, 7.2244, 7.2235, 7.2223, 7.2244, 7.2235, 7.2227, 7.2217, 7.2206, 7.2195, 7.2188, 7.221, 7.2199, 7.2188, 7.2183, 7.2204, 7.2225, 7.2279, 7.2268, 7.229, 7.2281, 7.2274, 7.2263, 7.2252, 7.2246, 7.2243, 7.2232, 7.2221, 7.2213, 7.2205, 7.2194, 7.2199, 7.2187, 7.2179, 7.217, 7.2171, 7.2195, 7.2183, 7.2204, 7.2224, 7.2217, 7.2207, 7.2199, 7.2193, 7.2181, 7.2204, 7.2194, 7.2188, 7.2212, 7.2206, 7.2194, 7.219, 7.2213, 7.2289, 7.2278, 7.227, 7.229, 7.2279, 7.227, 7.2262, 7.2281, 7.2244, 7.2235, 7.2255, 7.2247, 7.2236, 7.2257, 7.2249, 7.2242, 7.2233, 7.2222, 7.2215, 7.2209, 7.2202, 7.2195, 7.2186, 7.2177, 7.2166, 7.2156, 7.2147, 7.2136, 7.2129, 7.2151, 7.2175, 7.2168, 7.219, 7.2179, 7.217, 7.219, 7.2182, 7.2179, 7.2167, 7.2156, 7.2145, 7.2136, 7.2126, 7.2089, 7.2082, 7.2103, 7.2124, 7.2116, 7.211, 7.2195, 7.2157, 7.215, 7.2143, 7.2134, 7.2153, 7.2148, 7.2167, 7.2188, 7.2178, 7.2167, 7.2156, 7.2152, 7.2148, 7.2142, 7.2163, 7.2184, 7.2174, 7.2167, 7.2158, 7.218, 7.217, 7.2173, 7.2165, 7.2158, 7.2179, 7.2168, 7.2187, 7.2179, 7.2201, 7.2225, 7.2218, 7.2215, 7.2204, 7.2193, 7.2187, 7.2176, 7.2168, 7.2159, 7.2177, 7.214, 7.2159, 7.215, 7.217, 7.224, 7.2212, 7.2219, 7.2281, 7.2273, 7.2264, 7.2364, 7.2386, 7.2386, 7.2378, 7.2398, 7.2387, 7.2376, 7.2366, 7.233, 7.2319, 7.2309, 7.2272, 7.2261, 7.225, 7.2248, 7.2269, 7.2287, 7.2308, 7.2298, 7.2296, 7.2288, 7.2282, 7.2272, 7.2332, 7.2325, 7.2314, 7.2305, 7.2294, 7.2287, 7.2305, 7.2295, 7.2286, 7.2304, 7.2295, 7.229, 7.2356, 7.232, 7.2314, 7.2307, 7.2299, 7.232, 7.2342, 7.2337, 7.2327, 7.2319, 7.2309, 7.2329, 7.2349, 7.2344, 7.2369, 7.2389, 7.2378, 7.2368, 7.2374, 7.2391, 7.2381, 7.2417, 7.2438, 7.2411, 7.2374, 7.2347, 7.2399, 7.2417, 7.2408, 7.2398, 7.239, 7.2409, 7.2403, 7.2395, 7.2385, 7.2375, 7.2393, 7.2413, 7.2403, 7.2393, 7.2386, 7.2376, 7.2369, 7.236, 7.235, 7.2472, 7.2492, 7.2482, 7.2476, 7.2466, 7.2485, 7.2518, 7.2509, 7.256, 7.255, 7.2572, 7.2545, 7.2551, 7.2544, 7.2515, 7.2515, 7.2548, 7.2538, 7.253, 7.2532, 7.2523, 7.2577, 7.2595, 7.2587, 7.2583, 7.2574, 7.2624, 7.2668, 7.2663, 7.268, 7.267, 7.2668, 7.2635, 7.2625, 7.2618, 7.2636, 7.2655, 7.2673, 7.2663, 7.2652, 7.267, 7.2689, 7.2679, 7.2675, 7.2698, 7.2689, 7.2679, 7.2699, 7.269, 7.272, 7.2755, 7.2746, 7.2737, 7.2757, 7.2774, 7.2767, 7.2757, 7.2777, 7.2775, 7.2794, 7.2784, 7.2776, 7.2769, 7.2793, 7.2812, 7.2802, 7.2792, 7.2787, 7.2779, 7.2743, 7.2716, 7.2681, 7.2676, 7.2696, 7.2702, 7.2695, 7.2697, 7.269, 7.2709, 7.2703, 7.2693, 7.2683, 7.2676, 7.2681, 7.2685, 7.2677, 7.2669, 7.2691, 7.2683, 7.2673, 7.2641, 7.2635, 7.2714, 7.2705, 7.2722, 7.2715, 7.2708, 7.2698, 7.2688, 7.2732, 7.2722, 7.272, 7.2714, 7.273, 7.2721, 7.2714, 7.2732, 7.2723, 7.2714, 7.2704, 7.2723, 7.2739, 7.2818, 7.2808, 7.2798, 7.2817, 7.2835, 7.283, 7.2822, 7.2834, 7.286, 7.2879, 7.2871, 7.2889, 7.2879, 7.287, 7.2861, 7.2828, 7.282, 7.2814, 7.2805, 7.2796, 7.2788, 7.278, 7.2796, 7.2789, 7.2782, 7.2774, 7.2768, 7.276, 7.2778, 7.2796, 7.2797, 7.2764, 7.2755, 7.2746, 7.2764, 7.276, 7.2756, 7.2774, 7.2765, 7.2756, 7.2748, 7.2764, 7.2757, 7.275, 7.2743, 7.2734, 7.2754, 7.2769, 7.2759, 7.2775, 7.277, 7.2761, 7.2751, 7.2768, 7.2758, 7.2726, 7.2716, 7.2721, 7.2762, 7.2754, 7.2771, 7.2761, 7.2757, 7.2775, 7.2743, 7.2739, 7.2733, 7.2729, 7.2823, 7.2814, 7.2834, 7.2825, 7.2827, 7.2826, 7.2819, 7.2815, 7.2806, 7.2798, 7.2791, 7.2785, 7.2805, 7.2821, 7.2812, 7.2804, 7.2796, 7.2788, 7.2778, 7.2789, 7.2781, 7.2771, 7.2763, 7.2754, 7.2745, 7.2739, 7.2762, 7.2783, 7.28, 7.2818, 7.2811, 7.2829, 7.282, 7.2813, 7.2803, 7.2795, 7.2812, 7.2803, 7.282, 7.2811, 7.2802, 7.2821, 7.2814, 7.2804, 7.2816, 7.2808, 7.2799, 7.2816, 7.2834, 7.2825, 7.2816, 7.2857, 7.2847, 7.2838, 7.2855, 7.2846, 7.2837, 7.2831, 7.2825, 7.2818, 7.2809, 7.2826, 7.284, 7.2831, 7.2826, 7.2819, 7.2787, 7.2804, 7.2823, 7.284, 7.2831, 7.2822, 7.2814, 7.2806, 7.2797, 7.2788, 7.2779, 7.277, 7.2787, 7.2781, 7.2796, 7.2794, 7.2811, 7.2802, 7.2818, 7.2836, 7.2831, 7.2849, 7.2841, 7.2837, 7.2828, 7.282, 7.2813, 7.2805, 7.2796, 7.2786, 7.2807, 7.2825, 7.2818, 7.2817, 7.281, 7.2805, 7.2804, 7.2795, 7.2787, 7.278, 7.2773, 7.2793, 7.2811, 7.2808, 7.28, 7.2808, 7.2801, 7.2771, 7.2762, 7.2753, 7.2747, 7.2762, 7.2755, 7.275, 7.2766, 7.2759, 7.275, 7.2765, 7.2757, 7.2753, 7.2748, 7.2741, 7.2736, 7.2727, 7.2719, 7.2736, 7.2728, 7.2744, 7.2735, 7.275, 7.2747, 7.2739, 7.2732, 7.277, 7.2761, 7.2755, 7.2749, 7.2743, 7.2735, 7.2727, 7.2718, 7.2713, 7.2709, 7.276, 7.2777, 7.2769, 7.2761, 7.2761, 7.2762, 7.2759, 7.2777, 7.277, 7.2767, 7.2758, 7.2752, 7.2746, 7.2738, 7.2731, 7.2743, 7.2737, 7.2736, 7.2752, 7.2743, 7.276, 7.2759, 7.2753, 7.2724, 7.274, 7.2732, 7.275, 7.2743, 7.2734, 7.2727, 7.2746, 7.2738, 7.2731, 7.2723, 7.2715, 7.2708, 7.2733, 7.2725, 7.2718, 7.2714, 7.2709, 7.2724, 7.274, 7.2739, 7.273, 7.2727, 7.2719, 7.2712, 7.2707, 7.2698, 7.269, 7.269, 7.2685, 7.2685, 7.2679, 7.273, 7.2721, 7.2736, 7.2751, 7.2743, 7.2761, 7.2812, 7.2805, 7.2835, 7.2852, 7.2868, 7.2883, 7.2876, 7.2869, 7.2869, 7.2861, 7.2853, 7.2846, 7.2863, 7.2856, 7.2847, 7.284, 7.2831, 7.2829, 7.2823, 7.2815, 7.2807, 7.2799, 7.2793, 7.2785, 7.2779, 7.2775, 7.2793, 7.2785, 7.2777, 7.2792, 7.2786, 7.2802, 7.2793, 7.279, 7.2786, 7.2778, 7.2808, 7.2821, 7.2813, 7.2807, 7.2822, 7.2813, 7.2809, 7.2801, 7.2794, 7.2789, 7.278, 7.2794, 7.2785, 7.2782, 7.2797, 7.279, 7.2783, 7.2778, 7.2775, 7.2771, 7.2788, 7.2781, 7.2778, 7.2773, 7.2749, 7.2741, 7.2735, 7.275, 7.2751, 7.2767, 7.276, 7.2783, 7.2775, 7.2767, 7.276, 7.2752, 7.2769, 7.2762, 7.2755, 7.2748, 7.2742, 7.2734, 7.2726, 7.272, 7.2737, 7.2729, 7.2737, 7.2734, 7.2729, 7.2744, 7.2759, 7.2751, 7.2747, 7.2738, 7.2733, 7.2748, 7.2742, 7.2757, 7.2729, 7.2742, 7.2734, 7.2725, 7.2742, 7.2736, 7.2751, 7.2723, 7.2738, 7.273, 7.2744, 7.2738, 7.2732, 7.2748, 7.2742, 7.2734, 7.2729, 7.2721, 7.2715, 7.273, 7.2722, 7.2736, 7.2732, 7.2726, 7.2718, 7.2711, 7.2703, 7.2695, 7.269, 7.2738, 7.2732, 7.2724, 7.2716, 7.2708, 7.2701, 7.2693, 7.2709, 7.2703, 7.2677, 7.2692, 7.2686, 7.2701, 7.2721, 7.2714, 7.2706, 7.2721, 7.2714, 7.2713, 7.2707, 7.2705, 7.2698, 7.2691, 7.2686, 7.2678, 7.2692, 7.2684, 7.2679, 7.2684, 7.2698, 7.2695, 7.271, 7.2707, 7.2733, 7.2747, 7.274, 7.2734, 7.2729, 7.2722, 7.2715, 7.2709, 7.2703, 7.2697, 7.2712, 7.2727, 7.2719, 7.2734, 7.2729, 7.2721, 7.2714, 7.2708, 7.2722, 7.2714, 7.2728, 7.2722, 7.2736, 7.2729, 7.2721, 7.2736, 7.2729, 7.2791, 7.2783, 7.2776, 7.2791, 7.2783, 7.2777, 7.2772, 7.2765, 7.276, 7.2754, 7.2747, 7.2804, 7.2811, 7.2805, 7.2778, 7.2772, 7.2765, 7.2757, 7.2749, 7.2741, 7.2734, 7.2727, 7.2721, 7.2717, 7.2711, 7.2746, 7.2761, 7.2756, 7.2769, 7.2784, 7.2779, 7.2771, 7.2763, 7.2755, 7.2748, 7.2741, 7.2734, 7.2726, 7.2719, 7.2716, 7.273, 7.2726, 7.275, 7.2746, 7.2738, 7.2752, 7.2749, 7.2764, 7.2756, 7.2749, 7.2742, 7.2739, 7.2739, 7.2753, 7.2752, 7.2745, 7.2763, 7.2758, 7.2774, 7.2769, 7.2761, 7.2753, 7.2745, 7.274, 7.2734, 7.2748, 7.2741, 7.2737, 7.273, 7.2726, 7.2718, 7.271, 7.2703, 7.2695, 7.2689, 7.2703, 7.2695, 7.2687, 7.2662, 7.2659, 7.2652, 7.2645, 7.2637, 7.2623, 7.2618, 7.2613, 7.2607, 7.2624, 7.262, 7.266, 7.2676, 7.2669, 7.2662, 7.2657, 7.2651, 7.2645, 7.2661, 7.2658, 7.2653, 7.2646, 7.2639, 7.2652, 7.2646, 7.2659, 7.2652, 7.2644, 7.2637, 7.2633, 7.2731, 7.2725, 7.2739, 7.2732, 7.2729, 7.2725, 7.2739, 7.2736, 7.2729, 7.2743, 7.2737, 7.2732, 7.2725, 7.2717, 7.2709, 7.2701, 7.2715, 7.2731, 7.2725, 7.2718, 7.2711, 7.2705, 7.2719, 7.2712, 7.2707, 7.2699, 7.2691, 7.2683, 7.2679, 7.2672, 7.2666, 7.266, 7.2653, 7.2648, 7.2662, 7.2676, 7.2671, 7.2664, 7.27, 7.2695, 7.2688, 7.2663, 7.2656, 7.2651, 7.2644, 7.2637, 7.2744, 7.2761, 7.2754, 7.2766, 7.2762, 7.2775, 7.2767, 7.2762, 7.2754, 7.2746, 7.274, 7.2734, 7.2746, 7.2739, 7.2752, 7.2745, 7.2719, 7.2713, 7.2705, 7.2719, 7.2734, 7.2728, 7.2724, 7.2717, 7.2691, 7.2683, 7.2676, 7.2669, 7.2662, 7.2658, 7.2672, 7.2726, 7.2719, 7.2714, 7.2708, 7.2716, 7.2712, 7.2706, 7.2722, 7.2715, 7.2711, 7.2725, 7.2719, 7.2713, 7.2707, 7.27, 7.2714, 7.2708, 7.2701, 7.2694, 7.2706, 7.2719, 7.2711, 7.2716, 7.2709, 7.2702, 7.2715, 7.2707, 7.2701, 7.2694, 7.2686, 7.2699, 7.2692, 7.2686, 7.2698, 7.2695, 7.2689, 7.2681, 7.2695, 7.2689, 7.2683, 7.2676, 7.2671, 7.2686, 7.2679, 7.2672, 7.2666, 7.266, 7.2654, 7.2649, 7.2663, 7.2655, 7.2672, 7.2686, 7.27, 7.2715, 7.2728, 7.2721, 7.2723, 7.2718, 7.2731, 7.2745, 7.274, 7.2747, 7.274, 7.2721, 7.2754, 7.2747, 7.2763, 7.2758, 7.2773, 7.2767, 7.2761, 7.2779, 7.2788, 7.2801, 7.2797, 7.2792, 7.2796, 7.2809, 7.2803, 7.2798, 7.2811, 7.2807, 7.2801, 7.2794, 7.279, 7.2783, 7.2777, 7.277, 7.2764, 7.2759, 7.2752, 7.2766, 7.2759, 7.2753, 7.2769, 7.2784, 7.2778, 7.2771, 7.2768, 7.2762, 7.2776, 7.2769, 7.2763, 7.2775, 7.277, 7.2766, 7.2759, 7.2752, 7.2765, 7.2758, 7.2755, 7.275, 7.2743, 7.2736, 7.2732, 7.2744, 7.2757, 7.2753, 7.2746, 7.2741, 7.2737, 7.2712, 7.2725, 7.272, 7.2733, 7.2732, 7.2725, 7.2718, 7.2711, 7.2723, 7.2741, 7.2735, 7.2729, 7.2722, 7.2717, 7.2711, 7.2709, 7.2702, 7.2695, 7.2698, 7.2694, 7.2687, 7.268, 7.2693, 7.2669, 7.2683, 7.2697, 7.2691, 7.2702, 7.2703, 7.2696, 7.269, 7.274, 7.2735, 7.2728, 7.2721, 7.2717, 7.2731, 7.2724, 7.2717, 7.2729, 7.2743, 7.2736, 7.2729, 7.2722, 7.2715, 7.2728, 7.2778, 7.2773, 7.2766, 7.2759, 7.2773, 7.2788, 7.2781, 7.2774, 7.2768, 7.2761, 7.2756, 7.2751, 7.2765, 7.2796, 7.2812, 7.2805, 7.28, 7.2793, 7.2805, 7.2798, 7.2791, 7.2803, 7.28, 7.2806, 7.2802, 7.2804, 7.2819, 7.2812, 7.2807, 7.2802, 7.2815, 7.2829, 7.2842, 7.2854, 7.2868, 7.2864, 7.2858, 7.2851, 7.2845, 7.2838, 7.2833, 7.2827, 7.2821, 7.2816, 7.2829, 7.2825, 7.2841, 7.2838, 7.2871, 7.2864, 7.2858, 7.2873, 7.2866, 7.2879, 7.2888, 7.2894, 7.2889, 7.2883, 7.2876, 7.2869, 7.2846, 7.2859, 7.2857, 7.285, 7.2863, 7.2857, 7.2851, 7.2844, 7.284, 7.2817, 7.281, 7.2823, 7.2816, 7.2829, 7.2827, 7.284, 7.2836, 7.2843, 7.2844, 7.2839, 7.2832, 7.2826, 7.2824, 7.2887, 7.2883, 7.2894, 7.2889, 7.29, 7.2905, 7.2917, 7.2911, 7.2906, 7.2902, 7.2896, 7.289, 7.2883, 7.2879, 7.2872, 7.2865, 7.2861, 7.2854, 7.2847, 7.2841, 7.2834, 7.2828, 7.2823, 7.2818, 7.2794, 7.2787, 7.278, 7.2775, 7.2769, 7.2762, 7.2756, 7.275, 7.2745, 7.274, 7.2735, 7.2712, 7.2708, 7.2721, 7.2714, 7.271, 7.2703, 7.2697, 7.2692, 7.2686, 7.2679, 7.2673, 7.2667, 7.266, 7.2655, 7.2649, 7.2645, 7.2641, 7.2635, 7.2632, 7.2644, 7.2655, 7.265, 7.2667, 7.2679, 7.2673, 7.2667, 7.2699, 7.273, 7.2725, 7.2738, 7.2733, 7.2745, 7.2758, 7.2808, 7.2813, 7.2826, 7.282, 7.2814, 7.2811, 7.2808, 7.2802, 7.2796, 7.2792, 7.2805, 7.2799, 7.2794, 7.279, 7.2785, 7.2785, 7.2797, 7.2808, 7.2803, 7.28, 7.2811, 7.2823, 7.2817, 7.2813, 7.2808, 7.2786, 7.2781, 7.2776, 7.2771, 7.2766, 7.2762, 7.2774, 7.2771, 7.2764, 7.2776, 7.2771, 7.2768, 7.2762, 7.2773, 7.2766, 7.276, 7.2754, 7.2748, 7.2742, 7.2738, 7.2751, 7.2729, 7.2723, 7.2721, 7.2716, 7.2711, 7.2706, 7.27, 7.2694, 7.2725, 7.2719, 7.2729, 7.2724, 7.2719, 7.2715, 7.2711, 7.2722, 7.2733, 7.2729, 7.2723, 7.2718, 7.2712, 7.2709, 7.2705, 7.2699, 7.2711, 7.2705, 7.2717, 7.2729, 7.2723, 7.2718, 7.273, 7.2742, 7.272, 7.2714, 7.2726, 7.2725, 7.2719, 7.2723, 7.2701, 7.2695, 7.2708, 7.2702, 7.2714, 7.2708, 7.272, 7.2731, 7.2725, 7.2747, 7.2759, 7.2758, 7.2752, 7.2763, 7.2761, 7.2756, 7.275, 7.2761, 7.2772, 7.2766, 7.2762, 7.2773, 7.2769, 7.278, 7.2774, 7.277, 7.2765, 7.2758, 7.2772, 7.2783, 7.2778, 7.2771, 7.2766, 7.2759, 7.2753, 7.2764, 7.2774, 7.2769, 7.2763, 7.2773, 7.2786, 7.2779, 7.2772, 7.2767, 7.276, 7.2753, 7.2747, 7.2741, 7.2752, 7.2746, 7.2741, 7.2737, 7.2731, 7.2725, 7.2739, 7.2736, 7.2731, 7.2725, 7.272, 7.2715, 7.2726, 7.2731, 7.2725, 7.2705, 7.2699, 7.2695, 7.2707, 7.272, 7.2714, 7.2726, 7.2721, 7.2718, 7.2714, 7.2726, 7.2722, 7.2717, 7.2711, 7.2705, 7.2705, 7.27, 7.2695, 7.2691, 7.2726, 7.272, 7.2714, 7.2726, 7.272, 7.2733, 7.2745, 7.274, 7.2737, 7.2731, 7.2728, 7.2723, 7.2718, 7.2712, 7.2708, 7.2703, 7.2698, 7.2711, 7.2707, 7.2718, 7.2713, 7.2724, 7.2738, 7.2734, 7.2728, 7.2723, 7.2717, 7.2729, 7.2723, 7.2719, 7.273, 7.2725, 7.2722, 7.2716, 7.2727, 7.2722, 7.2733, 7.2713, 7.2721, 7.2715, 7.271, 7.2706, 7.27, 7.2694, 7.2688, 7.2683, 7.2677, 7.2672, 7.2667, 7.2663, 7.2658, 7.2652, 7.2664, 7.2658, 7.2653, 7.2648, 7.2644, 7.2639, 7.264, 7.2636, 7.2635, 7.263, 7.2624, 7.2619, 7.2639, 7.2652, 7.2677, 7.2739, 7.2753, 7.2747, 7.2758, 7.2752, 7.2748, 7.2742, 7.2789, 7.2785, 7.2779, 7.2808, 7.2802, 7.2802, 7.2796, 7.2808, 7.2802, 7.2814, 7.2808, 7.2803, 7.2797, 7.2804, 7.2816, 7.288, 7.2874, 7.287, 7.2864, 7.2858, 7.2852, 7.2853, 7.2847, 7.2842, 7.2838, 7.2836, 7.283, 7.2824, 7.2818, 7.2814, 7.2826, 7.2822, 7.2818, 7.2814, 7.2826, 7.2837, 7.2831, 7.2829, 7.2824, 7.2819, 7.2814, 7.2811, 7.2808, 7.2787, 7.2784, 7.2778, 7.2776, 7.2789, 7.2783, 7.2777, 7.2773, 7.2767, 7.2778, 7.2772, 7.2767, 7.2763, 7.2758, 7.2737, 7.2734, 7.2729, 7.2725, 7.272, 7.2732, 7.2716, 7.2726, 7.2721, 7.2717, 7.2727, 7.2741, 7.2752, 7.2746, 7.2742, 7.2744, 7.2748, 7.2746, 7.274, 7.2737, 7.2734, 7.2745, 7.2755, 7.2751, 7.273, 7.2724, 7.2719, 7.273, 7.2726, 7.2721, 7.2715, 7.271, 7.2705, 7.2701, 7.2695, 7.2692, 7.269, 7.2685, 7.2696, 7.269, 7.2685, 7.2696, 7.2707, 7.2704, 7.27, 7.2694, 7.2688, 7.2682, 7.2677, 7.2672, 7.2667, 7.2662, 7.2673, 7.2668, 7.2666, 7.266, 7.2655, 7.2652, 7.2667, 7.2661, 7.2676, 7.2671, 7.2681, 7.2693, 7.2706, 7.2716, 7.2711, 7.2707, 7.2701, 7.2697, 7.2693, 7.2704, 7.2716, 7.2711, 7.2705, 7.2701, 7.2697, 7.2693, 7.2688, 7.2692, 7.2687, 7.2682, 7.2677, 7.2687, 7.2667, 7.2663, 7.2674, 7.2668, 7.2664, 7.2658, 7.2671, 7.2666, 7.2662, 7.2661, 7.2674, 7.2685, 7.268, 7.2674, 7.2688, 7.2706, 7.2704, 7.2715, 7.2709, 7.272, 7.2714, 7.2712, 7.2708, 7.2703, 7.2697, 7.2691, 7.2704, 7.2714, 7.2708, 7.2702, 7.2697, 7.2694, 7.2705, 7.27, 7.2698, 7.2692, 7.2687, 7.2683, 7.2678, 7.2688, 7.2684, 7.2678, 7.2689, 7.2701, 7.2698, 7.2709, 7.2716, 7.2727, 7.2723, 7.2736, 7.2733, 7.2744, 7.2739, 7.2733, 7.2745, 7.2742, 7.2738, 7.2733, 7.2744, 7.2754, 7.2752, 7.2747, 7.2741, 7.2736, 7.2747, 7.2743, 7.274, 7.2735, 7.2731, 7.2741, 7.2737, 7.2732, 7.2727, 7.2726, 7.272, 7.2714, 7.271, 7.2704, 7.2701, 7.2713, 7.2708, 7.2704, 7.2714, 7.2711, 7.2707, 7.2702, 7.2683, 7.2677, 7.2672, 7.2671, 7.2667, 7.2661, 7.2644, 7.2639, 7.2649, 7.2661, 7.2658, 7.2653, 7.2647, 7.2643, 7.2639, 7.2636, 7.2646, 7.2631, 7.2626, 7.2639, 7.265, 7.2646, 7.2642, 7.2623, 7.2618, 7.2614, 7.2626, 7.2621, 7.2616, 7.2613, 7.261, 7.2621, 7.2615, 7.2625, 7.262, 7.2631, 7.2629, 7.2624, 7.2626, 7.2622, 7.2617, 7.2615, 7.2612, 7.2609, 7.2605, 7.2599, 7.2595, 7.2622, 7.2652, 7.2649, 7.2646, 7.264, 7.2635, 7.2631, 7.2627, 7.2623, 7.265, 7.2645, 7.2631, 7.2628, 7.2624, 7.2621, 7.2619, 7.2615, 7.2613, 7.2609, 7.2619, 7.2615, 7.261, 7.2607, 7.2602, 7.2598, 7.2593, 7.2606, 7.2601, 7.2595, 7.2605, 7.2616, 7.2612, 7.2626, 7.2627, 7.2623, 7.2633, 7.2629, 7.2626, 7.2621, 7.2615, 7.2626, 7.2622, 7.2631, 7.2626, 7.2622, 7.2634, 7.263, 7.2642, 7.2651, 7.2661, 7.2659, 7.2671, 7.2666, 7.2661, 7.2671, 7.2682, 7.2678, 7.2673, 7.2668, 7.268, 7.2675, 7.267, 7.2681, 7.2676, 7.2671, 7.2666, 7.2661, 7.2656, 7.2668, 7.2663, 7.2658, 7.2668, 7.2666, 7.2661, 7.2656, 7.2666, 7.2661, 7.2656, 7.2652, 7.2647, 7.2641, 7.2622, 7.2616, 7.2611, 7.2605, 7.2599, 7.2593, 7.2589, 7.2584, 7.2579, 7.2575, 7.2586, 7.2596, 7.2591, 7.2589, 7.2602, 7.2598, 7.2595, 7.2592, 7.2587, 7.2584, 7.2593, 7.2588, 7.2594, 7.2591, 7.2588, 7.2585, 7.2579, 7.2579, 7.2576, 7.2571, 7.2567, 7.2562, 7.2557, 7.2553, 7.2549, 7.2544, 7.2539, 7.2549, 7.2546, 7.2543, 7.2538, 7.2548, 7.2559, 7.2555, 7.2551, 7.2548, 7.2559, 7.2569, 7.2564, 7.2559, 7.2554, 7.255, 7.2545, 7.2555, 7.2564, 7.2574, 7.257, 7.2582, 7.2577, 7.2573, 7.2569, 7.2582, 7.2577, 7.2559, 7.2554, 7.2551, 7.2562, 7.2558, 7.257, 7.2564, 7.2561, 7.2557, 7.2615, 7.2615, 7.261, 7.2635, 7.263, 7.2624, 7.2634, 7.2629, 7.2624, 7.2606, 7.2602, 7.2597, 7.2592, 7.2588, 7.2583, 7.2578, 7.2559, 7.2555, 7.2552, 7.2562, 7.2559, 7.2558, 7.2567, 7.2577, 7.2587, 7.2583, 7.2578, 7.2573, 7.2568, 7.2578, 7.2574, 7.2569, 7.2582, 7.2578, 7.2573, 7.2583, 7.2593, 7.2587, 7.2582, 7.2577, 7.2559, 7.2554, 7.2563, 7.2558, 7.2568, 7.2566, 7.2562, 7.2558, 7.2569, 7.2564, 7.2559, 7.2554, 7.255, 7.2561, 7.2556, 7.2551, 7.2547, 7.2529, 7.2524, 7.252, 7.2529, 7.2524, 7.2536, 7.2531, 7.2526, 7.2535, 7.2541, 7.2536, 7.2547, 7.2552, 7.2548, 7.2545, 7.2544, 7.2544, 7.2539, 7.2534, 7.2544, 7.2541, 7.2537, 7.2535, 7.2531, 7.2527, 7.2522, 7.2533, 7.2528, 7.2523, 7.2518, 7.2528, 7.2537, 7.2532, 7.2529, 7.2537, 7.2532, 7.2542, 7.2539, 7.2535, 7.2532, 7.253, 7.2525, 7.2539, 7.2534, 7.2543, 7.2552, 7.2549, 7.2544, 7.2539, 7.2549, 7.256, 7.2556, 7.2567, 7.2569, 7.2564, 7.2575, 7.2571, 7.2568, 7.2564, 7.256, 7.2557, 7.2567, 7.2562, 7.2558, 7.2554, 7.2551, 7.2546, 7.2557, 7.2553, 7.2549, 7.2544, 7.2539, 7.2534, 7.253, 7.2529, 7.2524, 7.2539, 7.2555, 7.2557, 7.2553, 7.2563, 7.2573, 7.2569, 7.2565, 7.2562, 7.2557, 7.2553, 7.2549, 7.2553, 7.2549, 7.2545, 7.2541, 7.2538, 7.2541, 7.2536, 7.2531, 7.2563, 7.2571, 7.2569, 7.2564, 7.2573, 7.2568, 7.2564, 7.2561, 7.2562, 7.2572, 7.2591, 7.2595, 7.2612, 7.2607, 7.2602, 7.2597, 7.2595, 7.2591, 7.2587, 7.2574, 7.2585, 7.2582, 7.2577, 7.2586, 7.2595, 7.2594, 7.2589, 7.2586, 7.2584, 7.2593, 7.2589, 7.2586, 7.2584, 7.258, 7.2593, 7.2589, 7.2584, 7.2584, 7.2593, 7.2588, 7.2584, 7.2594, 7.2576, 7.2586, 7.2582, 7.2577, 7.2588, 7.2584, 7.2581, 7.262, 7.2615, 7.2611, 7.261, 7.2611, 7.2612, 7.2594, 7.2603, 7.2612, 7.2607, 7.2617, 7.2612, 7.2608, 7.2604, 7.2651, 7.2647, 7.2656, 7.2693, 7.2689, 7.2686, 7.2681, 7.2677, 7.2672, 7.2702, 7.2711, 7.2735, 7.2731, 7.2754, 7.2751, 7.2747, 7.2757, 7.278, 7.2776, 7.2784, 7.2779, 7.2774, 7.2771, 7.2795, 7.2793, 7.2788, 7.2798, 7.2797, 7.2792, 7.279, 7.2788, 7.2798, 7.2795, 7.2792, 7.28, 7.2837, 7.2833, 7.2828, 7.283, 7.2813, 7.2808, 7.2817, 7.2813, 7.2808, 7.2805, 7.2802, 7.2798, 7.2787, 7.2784, 7.2779, 7.2776, 7.2785, 7.2794, 7.279, 7.2813, 7.2822, 7.2817, 7.2813, 7.281, 7.2807, 7.2805, 7.2803, 7.2799, 7.2808, 7.2803, 7.2813, 7.2809, 7.2804, 7.28, 7.2783, 7.2778, 7.2773, 7.2768, 7.2766, 7.2761, 7.2758, 7.2753, 7.2748, 7.2746, 7.2741, 7.2737, 7.2733, 7.273, 7.2725, 7.2723, 7.2718, 7.2713, 7.271, 7.2705, 7.2701, 7.2696, 7.2693, 7.2688, 7.2684, 7.268, 7.2689, 7.2672, 7.2667, 7.2665, 7.2673, 7.2668, 7.2663, 7.266, 7.2669, 7.2666, 7.2675, 7.267, 7.2668, 7.2663, 7.2658, 7.2653, 7.2662, 7.2658, 7.2654, 7.2656, 7.2653, 7.2649, 7.2645, 7.2641, 7.2636, 7.2645, 7.264, 7.2623, 7.2631, 7.2639, 7.2636, 7.2631, 7.2626, 7.2634, 7.2629, 7.2625, 7.2621, 7.2617, 7.2613, 7.2609, 7.2604, 7.26, 7.2596, 7.2593, 7.2588, 7.2583, 7.2578, 7.2573, 7.2582, 7.2592, 7.259, 7.2598, 7.2593, 7.2589, 7.2584, 7.258, 7.2578, 7.2575, 7.257, 7.2566, 7.2561, 7.2556, 7.2552, 7.2561, 7.2557, 7.256, 7.2556, 7.2552, 7.255, 7.2547, 7.2543, 7.2539, 7.2549, 7.2559, 7.2555, 7.2551, 7.2548, 7.2543, 7.2539, 7.2537, 7.2533, 7.2529, 7.2524, 7.2519, 7.2528, 7.2525, 7.251, 7.2505, 7.25, 7.2497, 7.2493, 7.2488, 7.2486, 7.2495, 7.2493, 7.2502, 7.2499, 7.2496, 7.2505, 7.2503, 7.25, 7.2496, 7.2495, 7.2491, 7.25, 7.2496, 7.2506, 7.2502, 7.2498, 7.2493, 7.2502, 7.2497, 7.2492, 7.25, 7.251, 7.2507, 7.2517, 7.2513, 7.2528, 7.2524, 7.2519, 7.2516, 7.2513, 7.251, 7.2507, 7.2504, 7.25, 7.2497, 7.2494, 7.2489, 7.2498, 7.2507, 7.2516, 7.2525, 7.2521, 7.2516, 7.2524, 7.2522, 7.2518, 7.2513, 7.2521, 7.2531, 7.2527, 7.2522, 7.2519, 7.2515, 7.2511, 7.2507, 7.2524, 7.2519, 7.2528, 7.2524, 7.252, 7.2516, 7.2527, 7.2522, 7.2519, 7.2517, 7.2526, 7.2521, 7.2518, 7.2516, 7.2512, 7.251, 7.2508, 7.2505, 7.2523, 7.2519, 7.2515, 7.2512, 7.2508, 7.2504, 7.2502, 7.2512, 7.2508, 7.2504, 7.2501, 7.2502, 7.2498, 7.2493, 7.2489, 7.2498, 7.2495, 7.2491, 7.2486, 7.2482, 7.2478, 7.2474, 7.2471, 7.2469, 7.2467, 7.2465, 7.2461, 7.247, 7.2479, 7.2503, 7.2499, 7.2494, 7.249, 7.2486, 7.2482, 7.2491, 7.2487, 7.2483, 7.2479, 7.2475, 7.2472, 7.2468, 7.2464, 7.2461, 7.2457, 7.2452, 7.2448, 7.2445, 7.2454, 7.2462, 7.2458, 7.2454, 7.245, 7.2446, 7.2442, 7.2438, 7.2447, 7.2443, 7.2439, 7.2437, 7.2432, 7.244, 7.2453, 7.2448, 7.2443, 7.2438, 7.2434, 7.2443, 7.2441, 7.2437, 7.2446, 7.2454, 7.245, 7.2448, 7.2447, 7.2445, 7.244, 7.2462, 7.2458, 7.2453, 7.245, 7.2448, 7.2444, 7.244, 7.2463, 7.2448, 7.2457, 7.2454, 7.245, 7.2446, 7.243, 7.2427, 7.2449, 7.2457, 7.2453, 7.2461, 7.2457, 7.2466, 7.2475, 7.2471, 7.2473, 7.2469, 7.2477, 7.2474, 7.2496, 7.2491, 7.2512, 7.251, 7.2506, 7.249, 7.2485, 7.2481, 7.2479, 7.2488, 7.2484, 7.2493, 7.2492, 7.2489, 7.2498, 7.2494, 7.2504, 7.2501, 7.2497, 7.2494, 7.2522, 7.2532, 7.2541, 7.2527, 7.2525, 7.2521, 7.2549, 7.2545, 7.2554, 7.255, 7.2558, 7.2566, 7.2563, 7.2559, 7.2555, 7.2551, 7.255, 7.2546, 7.2549, 7.2546, 7.2544, 7.2562, 7.2572, 7.2568, 7.2564, 7.2561, 7.2557, 7.2554, 7.255, 7.2546, 7.2543, 7.2551, 7.2548, 7.2556, 7.2565, 7.2563, 7.2559, 7.256, 7.2555, 7.2551, 7.2547, 7.2555, 7.2551, 7.2548, 7.2556, 7.2552, 7.2549, 7.2545, 7.2543, 7.2539, 7.2535, 7.2531, 7.2539, 7.2536, 7.2532, 7.2529, 7.2539, 7.2535, 7.2531, 7.2527, 7.2527, 7.2526, 7.2534, 7.253, 7.2538, 7.2534, 7.2543, 7.2539, 7.2536, 7.2545, 7.2541, 7.2525, 7.2521, 7.2542, 7.2538, 7.2534, 7.2537, 7.2536, 7.2532, 7.253, 7.2527, 7.2525, 7.2521, 7.2518, 7.2518, 7.2514, 7.251, 7.2506, 7.2514, 7.251, 7.2506, 7.2514, 7.2525, 7.2533, 7.2529, 7.2525, 7.2522, 7.253, 7.2525, 7.2521, 7.2541, 7.2539, 7.2536, 7.2533, 7.2528, 7.2535, 7.2531, 7.2528, 7.2549, 7.2559, 7.2554, 7.255, 7.2547, 7.2532, 7.2528, 7.2524, 7.252, 7.2518, 7.2526, 7.2522, 7.252, 7.2528, 7.2524, 7.252, 7.2529, 7.2525, 7.252, 7.2516, 7.2512, 7.2497, 7.2493, 7.2488, 7.2485, 7.2481, 7.2477, 7.2474, 7.247, 7.2466, 7.2462, 7.2457, 7.2443, 7.2451, 7.2447, 7.2443, 7.2438, 7.2446, 7.2456, 7.2465, 7.246, 7.2456, 7.2452, 7.2449, 7.2445, 7.2441, 7.2437, 7.2444, 7.244, 7.2436, 7.2431, 7.2428, 7.2425, 7.2422, 7.2418, 7.2444, 7.2444, 7.244, 7.2438, 7.2434, 7.2443, 7.244, 7.2436, 7.2432, 7.2435, 7.2444, 7.244, 7.2439, 7.2424, 7.2419, 7.2415, 7.2423, 7.2431, 7.244, 7.2437, 7.2446, 7.2442, 7.245, 7.2447, 7.2444, 7.2466, 7.2474, 7.2473, 7.2482, 7.2489, 7.2485, 7.2481, 7.2476, 7.2472, 7.2469, 7.2477, 7.2473, 7.2471, 7.2467, 7.2464, 7.2508, 7.2553, 7.2549, 7.2546, 7.2555, 7.2551, 7.2547, 7.2532, 7.253, 7.2527, 7.2526, 7.2522, 7.2517, 7.2525, 7.2522, 7.253, 7.2526, 7.2535, 7.2544, 7.2541, 7.2548, 7.2545, 7.2542, 7.2537, 7.2545, 7.2554, 7.2562, 7.2571, 7.2578, 7.2587, 7.2595, 7.259, 7.2586, 7.2594, 7.2592, 7.2601, 7.2588, 7.2597, 7.2604, 7.2605, 7.2601, 7.2609, 7.2618, 7.2616, 7.2612, 7.261, 7.2606, 7.2603, 7.2611, 7.2608, 7.2629, 7.2626, 7.2622, 7.2631, 7.2629, 7.2645, 7.2641, 7.2637, 7.2633, 7.2629, 7.2627, 7.2624, 7.2632, 7.2627, 7.2623, 7.2619, 7.2615, 7.2611, 7.2619, 7.2604, 7.26, 7.2596, 7.2593, 7.2589, 7.2603, 7.2599, 7.2584, 7.258, 7.2576, 7.2572, 7.257, 7.2566, 7.2551, 7.2547, 7.2543, 7.2543, 7.2541, 7.2537, 7.2533, 7.253, 7.2526, 7.2534, 7.2531, 7.2527, 7.2531, 7.253, 7.2527, 7.2523, 7.2532, 7.2541, 7.2537, 7.2534, 7.2533, 7.2529, 7.2537, 7.2546, 7.2542, 7.255, 7.2537, 7.2533, 7.2533, 7.2531, 7.2527, 7.2523, 7.2531, 7.2528, 7.2524, 7.2531, 7.2535, 7.2531, 7.2538, 7.2545, 7.2553, 7.2552, 7.2548, 7.2545, 7.2541, 7.2538, 7.2535, 7.2556, 7.2553, 7.2551, 7.2559, 7.2555, 7.2552, 7.2548, 7.2556, 7.2552, 7.2549, 7.2545, 7.2565, 7.2572, 7.2568, 7.2564, 7.256, 7.2557, 7.2553, 7.2561, 7.2558, 7.2565, 7.2561, 7.2558, 7.2555, 7.2553, 7.255, 7.2548, 7.2544, 7.2551, 7.2559, 7.2558, 7.2566, 7.2576, 7.2573, 7.257, 7.2578, 7.262, 7.2617, 7.2613, 7.2613, 7.2609, 7.2605, 7.2602, 7.2609, 7.2605, 7.2613, 7.2609, 7.2676, 7.2673, 7.2669, 7.2665, 7.2661, 7.2668, 7.2664, 7.266, 7.2656, 7.2652, 7.2648, 7.2645, 7.2642, 7.2638, 7.2635, 7.2632, 7.265, 7.2646, 7.2643, 7.2651, 7.2647, 7.2645, 7.2642, 7.2638, 7.2634, 7.2631, 7.2628, 7.2625, 7.2622, 7.262, 7.2617, 7.2614, 7.261, 7.2606, 7.2602, 7.2598, 7.2597, 7.2593, 7.2589, 7.259, 7.2597, 7.2593, 7.2589, 7.2587, 7.2586, 7.2594, 7.2593, 7.2592, 7.26, 7.2596, 7.2592, 7.2588, 7.259, 7.2586, 7.2594, 7.259, 7.2586, 7.2584, 7.2592, 7.26, 7.2597, 7.2605, 7.2601, 7.2598, 7.2605, 7.263, 7.2638, 7.2645, 7.2642, 7.265, 7.265, 7.2646, 7.2642, 7.2638, 7.2636, 7.2632, 7.2661, 7.2669, 7.2665, 7.2661, 7.267, 7.2677, 7.2685, 7.2693, 7.2689, 7.2685, 7.2694, 7.2691, 7.2699, 7.2695, 7.2712, 7.2708, 7.2705, 7.2701, 7.2699, 7.2706, 7.2703, 7.2722, 7.2718, 7.2716, 7.2712, 7.2708, 7.2704, 7.27, 7.2696, 7.2693, 7.2701, 7.2697, 7.2693, 7.2689, 7.2685, 7.2682, 7.2679, 7.2676, 7.2683, 7.269, 7.2697, 7.2684, 7.268, 7.2678, 7.2688, 7.2686, 7.2684, 7.268, 7.2677, 7.2673, 7.2669, 7.2666, 7.2673, 7.2671, 7.2668, 7.2664, 7.2717, 7.2714, 7.271, 7.2707, 7.2703, 7.2689, 7.2685, 7.2692, 7.2688, 7.2696, 7.2693, 7.269, 7.2686, 7.2684, 7.2691, 7.2699, 7.2697, 7.2705, 7.2701, 7.2697, 7.2693, 7.269, 7.2698, 7.2694, 7.2691, 7.2689, 7.2685, 7.2681, 7.2677, 7.2676, 7.2674, 7.267, 7.2668, 7.2664, 7.266, 7.2657, 7.2654, 7.265, 7.2648, 7.2655, 7.2668, 7.2664, 7.2672, 7.2669, 7.2678, 7.2674, 7.2671, 7.2667, 7.2664, 7.2665, 7.2661, 7.2657, 7.2655, 7.2651, 7.2718, 7.2717, 7.2704, 7.27, 7.2697, 7.2723, 7.2719, 7.2716, 7.2747, 7.2744, 7.2742, 7.2738, 7.2736, 7.2732, 7.2728, 7.2727, 7.2725, 7.2721, 7.2717, 7.2713, 7.2709, 7.2706, 7.2715, 7.2712, 7.2709, 7.2706, 7.2702, 7.2709, 7.2716, 7.2771, 7.2779, 7.2783, 7.278, 7.2777, 7.2774, 7.2772, 7.2769, 7.2767, 7.2764, 7.2761, 7.2757, 7.2753, 7.2749, 7.2747, 7.2754, 7.2762, 7.2748, 7.2744, 7.2742, 7.2739, 7.2735, 7.2732, 7.2728, 7.2732, 7.2729, 7.2725, 7.2722, 7.2718, 7.2736, 7.2733, 7.2731, 7.2727, 7.2724, 7.2731, 7.2728, 7.2737, 7.2733, 7.2729, 7.2725, 7.2723, 7.2721, 7.2718, 7.2715, 7.2712, 7.2709, 7.2715, 7.2712, 7.2709, 7.2705, 7.2717, 7.2714, 7.2722, 7.2725, 7.2721, 7.2718, 7.2726, 7.2733, 7.2731, 7.2727, 7.2723, 7.2731, 7.2727, 7.2723, 7.2731, 7.2728, 7.2726, 7.2722, 7.2718, 7.2718, 7.2716, 7.2703, 7.27, 7.2697, 7.2693, 7.269, 7.2686, 7.2682, 7.2679, 7.2675, 7.2673, 7.267, 7.2677, 7.2685, 7.2682, 7.274, 7.2747, 7.2745, 7.2741, 7.2737, 7.2734, 7.2731, 7.2718, 7.2704, 7.2701, 7.2697, 7.2693, 7.269, 7.2688, 7.2687, 7.2683, 7.2679, 7.2687, 7.2683, 7.2679, 7.2675, 7.2671, 7.2668, 7.2664, 7.2676, 7.2673, 7.267, 7.2666, 7.2664, 7.2671, 7.2667, 7.2664, 7.2661, 7.2658, 7.2668, 7.2655, 7.2652, 7.2661, 7.2657, 7.2654, 7.2652, 7.2659, 7.2649, 7.2646, 7.2653, 7.2649, 7.2647, 7.2645, 7.2641, 7.2648, 7.2644, 7.2641, 7.2637, 7.2633, 7.2629, 7.2625, 7.2621, 7.2628, 7.2625, 7.2622, 7.2618, 7.2614, 7.2611, 7.261, 7.2606, 7.2603, 7.26, 7.2605, 7.2609, 7.2605, 7.2604, 7.26, 7.2596, 7.2592, 7.259, 7.2581, 7.2579, 7.2586, 7.2593, 7.259, 7.2588, 7.2597, 7.2593, 7.26, 7.2607, 7.2604, 7.26, 7.2607, 7.2603, 7.2599, 7.2606, 7.2603, 7.2602, 7.2609, 7.2616, 7.2613, 7.2621, 7.2619, 7.2616, 7.2618, 7.2625, 7.2622, 7.2618, 7.2618, 7.2632, 7.2629, 7.2626, 7.2622, 7.2626, 7.2623, 7.262, 7.2621, 7.2618, 7.2614, 7.2622, 7.263, 7.2626, 7.2623, 7.2625, 7.2621, 7.2617, 7.2624, 7.2621, 7.2628, 7.2625, 7.2628, 7.2627, 7.2624, 7.2632, 7.263, 7.2639, 7.2637, 7.2634, 7.2641, 7.2638, 7.2635, 7.2642, 7.2649, 7.2646, 7.2644, 7.2642, 7.2641, 7.2638, 7.2637, 7.2624, 7.2621, 7.2618, 7.2616, 7.2623, 7.2621, 7.2617, 7.2614, 7.2623, 7.263, 7.2638, 7.2624, 7.2632, 7.2639, 7.2636, 7.2633, 7.264, 7.2636, 7.2633, 7.264, 7.2636, 7.2633, 7.2663, 7.267, 7.2677, 7.2675, 7.2733, 7.273, 7.2726, 7.2732, 7.2728, 7.2725, 7.2732, 7.273, 7.2726, 7.2733, 7.273, 7.2727, 7.2725, 7.2721, 7.2717, 7.2713, 7.271, 7.2706, 7.2703, 7.2707, 7.2703, 7.271, 7.2707, 7.2706, 7.2713, 7.27, 7.2708, 7.2705, 7.2712, 7.2709, 7.2717, 7.2704, 7.2702, 7.2699, 7.2696, 7.2694, 7.269, 7.2687, 7.2683, 7.268, 7.2677, 7.2691, 7.2688, 7.2696, 7.2692, 7.2699, 7.2696, 7.2704, 7.2701, 7.2698, 7.2694, 7.2701, 7.2698, 7.2695, 7.2691, 7.2689, 7.2687, 7.2691, 7.2692, 7.2699, 7.2696, 7.2695, 7.2692, 7.269, 7.2693, 7.2689, 7.2686, 7.2693, 7.2689, 7.2686, 7.2682, 7.269, 7.2692, 7.2688, 7.2684, 7.2681, 7.2688, 7.2684, 7.268, 7.2678, 7.2674, 7.2671, 7.2667, 7.2663, 7.267, 7.2657, 7.2654, 7.2651, 7.2648, 7.2646, 7.2643, 7.2639, 7.2637, 7.2635, 7.2632, 7.264, 7.2637, 7.2634, 7.2632, 7.2628, 7.2635, 7.2641, 7.2648, 7.2645, 7.2642, 7.2639, 7.2645, 7.2642, 7.2639, 7.2646, 7.2633, 7.263, 7.2641, 7.2649, 7.2648, 7.2645, 7.2641, 7.2638, 7.2635, 7.2632, 7.2628, 7.2626, 7.2623, 7.2622, 7.2629, 7.2627, 7.2623, 7.263, 7.2637, 7.2634, 7.2641, 7.2638, 7.2636, 7.2633, 7.2631, 7.2627, 7.2625, 7.2632, 7.2628, 7.2625, 7.2623, 7.262, 7.2626, 7.2624, 7.2621, 7.2618, 7.2625, 7.2632, 7.263, 7.2627, 7.2633, 7.263, 7.2627, 7.2624, 7.2621, 7.2618, 7.2615, 7.2622, 7.263, 7.2637, 7.2635, 7.2631, 7.2628, 7.2625, 7.2633, 7.264, 7.2637, 7.2634, 7.263, 7.2626, 7.2622, 7.2618, 7.2615, 7.2613, 7.2609, 7.2605, 7.2612, 7.2609, 7.2606, 7.2603, 7.26, 7.2596, 7.2592, 7.2588, 7.2586, 7.2593, 7.26, 7.2625, 7.2621, 7.2618, 7.2624, 7.2622, 7.2629, 7.2626, 7.2622, 7.2628, 7.2635, 7.2641, 7.2639, 7.2636, 7.2643, 7.265, 7.2646, 7.2642, 7.2649, 7.2645, 7.2642, 7.2639, 7.2646, 7.2643, 7.265, 7.2647, 7.2675, 7.2681, 7.2678, 7.2675, 7.2681, 7.2678, 7.2675, 7.2671, 7.2668, 7.2665, 7.2661, 7.2658, 7.2655, 7.2662, 7.2658, 7.2656, 7.2653, 7.2659, 7.2656, 7.2653, 7.2649, 7.2646, 7.2653, 7.2649, 7.2655, 7.2662, 7.2668, 7.2665, 7.2661, 7.2657, 7.2653, 7.265, 7.265, 7.2648, 7.2645, 7.2642, 7.2639, 7.2636, 7.2633, 7.263, 7.2627, 7.2634, 7.2641, 7.2653, 7.2651, 7.2654, 7.2662, 7.2658, 7.2668, 7.2665, 7.2673, 7.267, 7.2668, 7.2666, 7.2663, 7.2651, 7.2648, 7.2645, 7.2642, 7.2639, 7.2646, 7.266, 7.2656, 7.2653, 7.264, 7.2637, 7.2644, 7.2642, 7.2638, 7.2635, 7.2633, 7.265, 7.2657, 7.2664, 7.2661, 7.2659, 7.2666, 7.2673, 7.267, 7.2668, 7.2665, 7.2672, 7.2669, 7.2666, 7.2675, 7.2683, 7.2693], '192.168.122.119': [11.1458, 9.3222, 8.0368, 7.4878, 6.1125, 6.2764, 6.1505, 6.1014, 6.6108, 6.5736, 6.9628, 6.9601, 6.8781, 7.1709, 7.0542, 7.0211, 6.9493, 6.8548, 6.8132, 6.7333, 6.6898, 6.6908, 6.6342, 6.5946, 6.5736, 6.5474, 6.5153, 6.5013, 6.5635, 6.5391, 6.5211, 6.7801, 6.9324, 7.0575, 7.0751, 7.0441, 7.0037, 7.0082, 6.9776, 6.9642, 6.9255, 6.8895, 6.8577, 6.8354, 6.9274, 6.9028, 7.0044, 6.9797, 6.9472, 7.0244, 6.9959, 6.9969, 6.977, 6.9814, 7.0511, 7.0214, 6.9932, 6.966, 6.9439, 6.9178, 6.9024, 6.9649, 7.0274, 7.087, 7.1499, 7.2059, 7.2607, 7.2408, 7.2142, 7.1943, 7.1925, 7.1764, 7.2305, 7.2813, 7.2543, 7.2327, 7.2264, 7.269, 7.3148, 7.3374, 7.3255, 7.3011, 7.276, 7.2617, 7.2397, 7.2176, 7.1982, 7.1785, 7.1643, 7.2035, 7.2039, 7.1901, 7.2261, 7.2129, 7.1931, 7.1799, 7.174, 7.1547, 7.1912, 7.182, 7.1643, 7.2002, 7.1826, 7.1739, 7.2573, 7.2529, 7.2374, 7.2753, 7.2613, 7.2429, 7.2774, 7.2619, 7.2473, 7.2336, 7.2168, 7.3011, 7.3425, 7.3793, 7.3628, 7.3468, 7.3293, 7.3148, 7.3243, 7.3125, 7.344, 7.3295, 7.3999, 7.3846, 7.3727, 7.3606, 7.3491, 7.3335, 7.3191, 7.3049, 7.2903, 7.276, 7.2262, 7.253, 7.2862, 7.2754, 7.2627, 7.2511, 7.2389, 7.2277, 7.2519, 7.2477, 7.2385, 7.2268, 7.2512, 7.2416, 7.2376, 7.2279, 7.251, 7.2394, 7.2278, 7.2518, 7.2727, 7.2644, 7.2528, 7.2424, 7.2348, 7.2282, 7.2513, 7.2396, 7.2308, 7.2211, 7.2123, 7.2017, 7.1939, 7.184, 7.174, 7.1635, 7.1841, 7.2107, 7.203, 7.1969, 7.1888, 7.1847, 7.1755, 7.1676, 7.1867, 7.1775, 7.1696, 7.19, 7.1805, 7.1738, 7.2338, 7.2526, 7.2448, 7.2351, 7.2259, 7.2463, 7.4137, 7.4195, 7.409, 7.3996, 7.4126, 7.4034, 7.3924, 7.3822, 7.3728, 7.3633, 7.3548, 7.3648, 7.3733, 7.3632, 7.3586, 7.3514, 7.3441, 7.3382, 7.3081, 7.3251, 7.3189, 7.3098, 7.302, 7.2924, 7.2869, 7.3014, 7.2919, 7.2845, 7.3033, 7.2941, 7.2877, 7.2813, 7.2733, 7.2673, 7.2808, 7.2752, 7.2701, 7.2417, 7.236, 7.2276, 7.2196, 7.2342, 7.2255, 7.2276, 7.2003, 7.1929, 7.187, 7.182, 7.1754, 7.172, 7.1687, 7.1616, 7.1539, 7.1464, 7.1415, 7.1365, 7.1298, 7.1229, 7.1174, 7.1143, 7.1094, 7.1237, 7.1371, 7.1328, 7.126, 7.1197, 7.1132, 7.1062, 7.0997, 7.0929, 7.1071, 7.1006, 7.0958, 7.0915, 7.0881, 7.0823, 7.0776, 7.0727, 7.0666, 7.0801, 7.0734, 7.0868, 7.0799, 7.0745, 7.068, 7.063, 7.0789, 7.0736, 7.0671, 7.0612, 7.0556, 7.052, 7.0293, 7.0414, 7.036, 7.0306, 7.0253, 7.0197, 7.014, 7.008, 7.0088, 7.0041, 7.0165, 7.0118, 7.0421, 7.0527, 7.0477, 7.0429, 7.0376, 7.0322, 7.0451, 7.0396, 7.0864, 7.0809, 7.0756, 7.088, 7.0828, 7.0952, 7.0899, 7.0998, 7.1115, 7.1076, 7.1023, 7.097, 7.1086, 7.1056, 7.0998, 7.0942, 7.0909, 7.0944, 7.1053, 7.1009, 7.0974, 7.0935, 7.0887, 7.089, 7.0837, 7.0789, 7.09, 7.1017, 7.0819, 7.0916, 7.0715, 7.0723, 7.0838, 7.0968, 7.0939, 7.0909, 7.0855, 7.0805, 7.0796, 7.0746, 7.0698, 7.0804, 7.0763, 7.0714, 7.0667, 7.0622, 7.0587, 7.0537, 7.0497, 7.0466, 7.0429, 7.0417, 7.0529, 7.0529, 7.0356, 7.031, 7.0276, 7.0247, 7.026, 7.0232, 7.0195, 7.0321, 7.0292, 7.0264, 7.0281, 7.0248, 7.0216, 7.0203, 7.0169, 7.0125, 7.0092, 7.0214, 7.0216, 7.0179, 7.005, 7.0007, 6.999, 6.9954, 6.9914, 6.9872, 7.0048, 7.0022, 6.9994, 6.9952, 6.9914, 6.9902, 7.0024, 6.9997, 6.9957, 7.0056, 7.0139, 7.023, 7.024, 7.025, 7.0207, 7.0166, 7.0132, 7.0104, 7.02, 7.0161, 7.0117, 7.0207, 7.0296, 7.0268, 7.0233, 7.0334, 7.0295, 7.026, 7.0247, 7.0211, 7.0293, 7.0263, 7.0362, 7.0328, 7.0422, 7.0381, 7.0348, 7.037, 7.0331, 7.0423, 7.0396, 7.0363, 7.0337, 7.0299, 7.0263, 7.0225, 7.0244, 7.0205, 7.0171, 7.0255, 7.0235, 7.0323, 7.0287, 7.0366, 7.033, 7.03, 7.0649, 7.0623, 7.0615, 7.0596, 7.0578, 7.0541, 7.0867, 7.1074, 7.1049, 7.1186, 7.1165, 7.1125, 7.1093, 7.1053, 7.1014, 7.0989, 7.1086, 7.1048, 7.1143, 7.1113, 7.108, 7.1045, 7.1138, 7.1264, 7.1229, 7.1214, 7.1199, 7.128, 7.1148, 7.1226, 7.1304, 7.1381, 7.1468, 7.155, 7.1526, 7.1496, 7.1467, 7.1435, 7.1396, 7.1357, 7.1436, 7.1412, 7.1491, 7.1469, 7.1449, 7.1417, 7.1495, 7.1473, 7.1443, 7.1411, 7.1376, 7.1336, 7.13, 7.1275, 7.1241, 7.1204, 7.1178, 7.1143, 7.1109, 7.1073, 7.1043, 7.101, 7.0979, 7.1279, 7.1241, 7.1209, 7.1276, 7.1251, 7.1324, 7.1292, 7.1366, 7.1336, 7.1211, 7.1183, 7.1267, 7.1231, 7.1217, 7.1189, 7.1153, 7.1125, 7.1189, 7.1161, 7.1134, 7.1197, 7.117, 7.114, 7.1109, 7.1084, 7.1155, 7.1129, 7.1191, 7.1211, 7.1194, 7.1263, 7.133, 7.13, 7.1268, 7.1242, 7.1218, 7.1199, 7.1166, 7.123, 7.1297, 7.1276, 7.1246, 7.1216, 7.1189, 7.1176, 7.1252, 7.1222, 7.1193, 7.1167, 7.1055, 7.1028, 7.1101, 7.1076, 7.1054, 7.1122, 7.1094, 7.1065, 7.1034, 7.1098, 7.1085, 7.1061, 7.103, 7.1103, 7.0991, 7.0968, 7.1034, 7.1004, 7.0974, 7.1036, 7.1102, 7.1088, 7.1059, 7.1031, 7.1003, 7.0974, 7.0945, 7.101, 7.0979, 7.1051, 7.1119, 7.1099, 7.1168, 7.1141, 7.1112, 7.1091, 7.1185, 7.1159, 7.1132, 7.1112, 7.1471, 7.145, 7.1425, 7.1396, 7.1553, 7.1545, 7.1515, 7.1574, 7.1547, 7.153, 7.1517, 7.1491, 7.1641, 7.1612, 7.1581, 7.1569, 7.163, 7.1634, 7.1603, 7.1577, 7.1551, 7.1524, 7.1507, 7.1478, 7.1453, 7.1425, 7.1318, 7.1291, 7.1267, 7.1351, 7.1324, 7.1384, 7.1372, 7.1341, 7.1316, 7.1308, 7.1278, 7.1264, 7.1239, 7.121, 7.119, 7.1241, 7.1219, 7.1198, 7.1176, 7.1146, 7.1295, 7.1265, 7.1322, 7.1296, 7.1272, 7.1251, 7.1236, 7.1207, 7.1178, 7.1155, 7.1214, 7.1264, 7.1333, 7.1303, 7.1274, 7.1247, 7.1219, 7.1192, 7.1093, 7.1067, 7.1042, 7.1025, 7.1084, 7.109, 7.1073, 7.1049, 7.1024, 7.0999, 7.1054, 7.1037, 7.1009, 7.1153, 7.1128, 7.1103, 7.1079, 7.1057, 7.1032, 7.1086, 7.1061, 7.1041, 7.1014, 7.099, 7.0962, 7.1016, 7.0999, 7.0973, 7.1025, 7.1012, 7.0986, 7.096, 7.0933, 7.0924, 7.0899, 7.0954, 7.0858, 7.0912, 7.0964, 7.094, 7.0997, 7.1222, 7.1275, 7.1251, 7.1228, 7.1218, 7.1191, 7.1254, 7.1227, 7.1202, 7.1177, 7.1153, 7.114, 7.1119, 7.1032, 7.1014, 7.1065, 7.1045, 7.1175, 7.1153, 7.1215, 7.1271, 7.1414, 7.1391, 7.1368, 7.1349, 7.1404, 7.1388, 7.1751, 7.1726, 7.1703, 7.1742, 7.1716, 7.1693, 7.1667, 7.165, 7.1624, 7.1612, 7.1587, 7.1565, 7.1547, 7.1525, 7.1585, 7.156, 7.1537, 7.1514, 7.1565, 7.1542, 7.1576, 7.1649, 7.1625, 7.1601, 7.1589, 7.1639, 7.1627, 7.1611, 7.1656, 7.1712, 7.169, 7.1843, 7.1893, 7.1877, 7.1927, 7.197, 7.1952, 7.1942, 7.1928, 7.1908, 7.1885, 7.1863, 7.185, 7.1829, 7.2062, 7.2133, 7.2109, 7.2085, 7.2076, 7.2059, 7.2045, 7.2023, 7.1999, 7.1991, 7.204, 7.2016, 7.1998, 7.1986, 7.1971, 7.1946, 7.193, 7.198, 7.1958, 7.2006, 7.1982, 7.1959, 7.1937, 7.1983, 7.1962, 7.2006, 7.2053, 7.21, 7.2084, 7.2133, 7.2176, 7.2162, 7.2257, 7.2304, 7.2285, 7.2261, 7.2243, 7.2219, 7.2217, 7.2193, 7.2168, 7.2233, 7.2217, 7.2194, 7.2171, 7.2159, 7.2222, 7.2204, 7.2207, 7.2191, 7.2173, 7.2151, 7.2159, 7.2204, 7.2245, 7.2226, 7.2212, 7.2197, 7.2176, 7.2224, 7.2207, 7.2186, 7.2167, 7.2211, 7.2197, 7.2185, 7.2173, 7.215, 7.2148, 7.2129, 7.2118, 7.2097, 7.222, 7.2196, 7.2207, 7.2192, 7.2518, 7.2495, 7.2504, 7.2428, 7.2501, 7.2482, 7.2465, 7.2442, 7.2362, 7.2351, 7.2339, 7.2318, 7.2298, 7.2289, 7.2268, 7.2248, 7.2235, 7.2213, 7.2201, 7.2125, 7.2163, 7.2089, 7.2137, 7.2114, 7.21, 7.2078, 7.2118, 7.2098, 7.2139, 7.218, 7.2163, 7.2143, 7.2123, 7.2108, 7.2088, 7.207, 7.2048, 7.2042, 7.2082, 7.2062, 7.2055, 7.2035, 7.2018, 7.1998, 7.2, 7.1979, 7.1966, 7.2008, 7.1987, 7.1968, 7.1947, 7.1932, 7.1973, 7.1953, 7.1939, 7.1925, 7.1904, 7.1891, 7.1876, 7.1857, 7.1837, 7.1819, 7.1858, 7.1838, 7.1819, 7.1803, 7.1784, 7.1765, 7.1765, 7.1746, 7.1726, 7.1707, 7.1686, 7.1676, 7.1663, 7.1699, 7.1679, 7.1609, 7.1591, 7.1575, 7.156, 7.1541, 7.1579, 7.1559, 7.154, 7.152, 7.1557, 7.1558, 7.154, 7.1521, 7.1562, 7.1603, 7.1585, 7.1625, 7.1613, 7.1653, 7.1633, 7.1615, 7.179, 7.1887, 7.187, 7.1855, 7.1895, 7.1882, 7.1864, 7.1846, 7.1828, 7.1815, 7.1804, 7.1787, 7.1771, 7.1753, 7.1787, 7.1826, 7.1809, 7.1795, 7.1835, 7.1878, 7.1865, 7.1909, 7.1945, 7.1876, 7.1914, 7.1953, 7.1938, 7.1975, 7.1968, 7.1957, 7.1939, 7.1978, 7.1962, 7.1961, 7.1942, 7.1929, 7.191, 7.1947, 7.1927, 7.1912, 7.1943, 7.1927, 7.1913, 7.1897, 7.1879, 7.1864, 7.2008, 7.221, 7.225, 7.2234, 7.2225, 7.2209, 7.2194, 7.2179, 7.2215, 7.2251, 7.2232, 7.2215, 7.225, 7.2232, 7.2266, 7.2247, 7.2288, 7.2289, 7.228, 7.2263, 7.2245, 7.2235, 7.222, 7.2203, 7.224, 7.2222, 7.2258, 7.2239, 7.2226, 7.2207, 7.2196, 7.219, 7.2225, 7.2208, 7.2241, 7.2223, 7.2206, 7.22, 7.2183, 7.2165, 7.2197, 7.2184, 7.2167, 7.2152, 7.2088, 7.2078, 7.206, 7.2043, 7.2078, 7.2062, 7.2045, 7.2081, 7.2062, 7.2099, 7.2093, 7.2087, 7.2069, 7.2064, 7.2062, 7.2053, 7.2034, 7.2022, 7.2009, 7.2089, 7.2127, 7.2163, 7.2197, 7.2193, 7.2178, 7.2209, 7.2241, 7.2224, 7.2162, 7.2145, 7.2129, 7.212, 7.2104, 7.2098, 7.2089, 7.2071, 7.2054, 7.2036, 7.2018, 7.2051, 7.2036, 7.2019, 7.2057, 7.2095, 7.213, 7.2117, 7.2101, 7.2271, 7.226, 7.2244, 7.2301, 7.2284, 7.2317, 7.2299, 7.2284, 7.2269, 7.2256, 7.2361, 7.2344, 7.2345, 7.2331, 7.2322, 7.2304, 7.2297, 7.2279, 7.2271, 7.226, 7.2308, 7.2344, 7.2326, 7.2317, 7.2309, 7.2297, 7.2304, 7.234, 7.2326, 7.231, 7.2293, 7.2276, 7.2325, 7.2307, 7.2344, 7.233, 7.2359, 7.2397, 7.2383, 7.2371, 7.2357, 7.234, 7.2325, 7.2317, 7.2452, 7.2446, 7.243, 7.2656, 7.2643, 7.2631, 7.2663, 7.2649, 7.2645, 7.2635, 7.2666, 7.2651, 7.2633, 7.2632, 7.2621, 7.2607, 7.2639, 7.2628, 7.2746, 7.273, 7.2673, 7.2656, 7.2639, 7.267, 7.2653, 7.2595, 7.2629, 7.2616, 7.2605, 7.2588, 7.2579, 7.2608, 7.2635, 7.2622, 7.2608, 7.2613, 7.2595, 7.2624, 7.2606, 7.2591, 7.2577, 7.2568, 7.2557, 7.254, 7.2534, 7.2521, 7.2551, 7.2534, 7.2519, 7.2503, 7.2447, 7.2431, 7.246, 7.2445, 7.2504, 7.2493, 7.2489, 7.2472, 7.2461, 7.2445, 7.2431, 7.2418, 7.2405, 7.2397, 7.2428, 7.2416, 7.24, 7.2431, 7.2461, 7.2406, 7.2351, 7.2294, 7.2279, 7.2268, 7.2298, 7.2286, 7.2278, 7.2263, 7.2247, 7.2232, 7.222, 7.2206, 7.2194, 7.2222, 7.2214, 7.2207, 7.224, 7.2224, 7.2257, 7.2244, 7.2233, 7.222, 7.2211, 7.2203, 7.219, 7.2223, 7.2255, 7.2283, 7.2316, 7.2302, 7.2288, 7.2272, 7.2301, 7.2287, 7.2318, 7.2302, 7.2333, 7.2324, 7.2309, 7.2338, 7.2285, 7.2273, 7.2304, 7.2335, 7.2332, 7.2318, 7.2303, 7.2331, 7.2361, 7.2349, 7.2335, 7.2322, 7.2307, 7.2293, 7.232, 7.2351, 7.2337, 7.2368, 7.2355, 7.2384, 7.237, 7.2355, 7.2346, 7.2331, 7.2321, 7.2305, 7.2335, 7.2364, 7.2405, 7.239, 7.2375, 7.2361, 7.2346, 7.2332, 7.2318, 7.2303, 7.2262, 7.2254, 7.2283, 7.2313, 7.2264, 7.2248, 7.2246, 7.2232, 7.2218, 7.222, 7.2209, 7.2197, 7.2222, 7.2212, 7.2209, 7.2234, 7.222, 7.2212, 7.2205, 7.2197, 7.2226, 7.2215, 7.2245, 7.2231, 7.2218, 7.2205, 7.2233, 7.222, 7.2252, 7.224, 7.2228, 7.2215, 7.2201, 7.2151, 7.21, 7.2085, 7.2073, 7.206, 7.2052, 7.2041, 7.2027, 7.2013, 7.1964, 7.195, 7.1942, 7.1936, 7.196, 7.1976, 7.2004, 7.1995, 7.1983, 7.1971, 7.1957, 7.1943, 7.1933, 7.1995, 7.1988, 7.1978, 7.1966, 7.1952, 7.1943, 7.193, 7.1965, 7.1957, 7.1945, 7.1938, 7.1926, 7.1918, 7.1911, 7.1902, 7.1888, 7.1917, 7.191, 7.1896, 7.1882, 7.1909, 7.1895, 7.1921, 7.1954, 7.1955, 7.1942, 7.1934, 7.1928, 7.1914, 7.1941, 7.1968, 7.1996, 7.1983, 7.1969, 7.1995, 7.1982, 7.2009, 7.1998, 7.1992, 7.1985, 7.1978, 7.1964, 7.1915, 7.1871, 7.1932, 7.1939, 7.1931, 7.1922, 7.1911, 7.1904, 7.1891, 7.1883, 7.191, 7.1925, 7.1918, 7.1944, 7.1932, 7.196, 7.1948, 7.1943, 7.1937, 7.1988, 7.2016, 7.2046, 7.2073, 7.2027, 7.202, 7.2052, 7.2114, 7.21, 7.2093, 7.2087, 7.2077, 7.2049, 7.2075, 7.2067, 7.2029, 7.2021, 7.2012, 7.2038, 7.2025, 7.2127, 7.2118, 7.2109, 7.2098, 7.2162, 7.215, 7.2184, 7.2174, 7.2161, 7.2187, 7.2223, 7.2214, 7.2239, 7.2225, 7.2213, 7.2214, 7.2204, 7.2191, 7.2177, 7.2163, 7.2151, 7.2139, 7.2127, 7.2114, 7.2103, 7.2094, 7.2158, 7.2149, 7.2137, 7.2162, 7.2153, 7.214, 7.2127, 7.2115, 7.2103, 7.2091, 7.2117, 7.2143, 7.2131, 7.2157, 7.218, 7.2171, 7.2195, 7.2184, 7.2171, 7.2196, 7.2222, 7.2212, 7.2202, 7.2188, 7.2175, 7.2172, 7.2159, 7.2148, 7.2139, 7.2127, 7.2117, 7.2104, 7.2102, 7.2125, 7.2148, 7.2138, 7.2127, 7.2121, 7.2118, 7.2127, 7.2117, 7.2108, 7.2125, 7.2122, 7.2145, 7.2139, 7.2257, 7.225, 7.2241, 7.2266, 7.231, 7.2298, 7.2288, 7.2276, 7.2266, 7.2261, 7.2249, 7.2272, 7.2259, 7.225, 7.2206, 7.2196, 7.2184, 7.2173, 7.216, 7.2148, 7.2136, 7.2169, 7.2159, 7.2148, 7.2135, 7.2128, 7.2116, 7.2104, 7.2096, 7.2121, 7.2113, 7.2101, 7.2091, 7.208, 7.2072, 7.2062, 7.2071, 7.2058, 7.2079, 7.2072, 7.2059, 7.2047, 7.2073, 7.2096, 7.2118, 7.2113, 7.2101, 7.2091, 7.2079, 7.2093, 7.2081, 7.2075, 7.2064, 7.2054, 7.2047, 7.2043, 7.2032, 7.2056, 7.208, 7.208, 7.2067, 7.2055, 7.2045, 7.2036, 7.2025, 7.2014, 7.2001, 7.2027, 7.2048, 7.2038, 7.2037, 7.2025, 7.2013, 7.2036, 7.2023, 7.2015, 7.2006, 7.1995, 7.1957, 7.1946, 7.1939, 7.194, 7.1965, 7.1957, 7.1984, 7.2006, 7.2029, 7.2017, 7.2006, 7.1994, 7.1982, 7.1974, 7.1964, 7.1987, 7.1976, 7.1966, 7.1987, 7.1975, 7.1963, 7.1951, 7.194, 7.1964, 7.1952, 7.1942, 7.193, 7.1919, 7.1907, 7.1866, 7.1858, 7.1848, 7.184, 7.1857, 7.1881, 7.1869, 7.1859, 7.1848, 7.1869, 7.186, 7.1854, 7.1846, 7.1835, 7.1824, 7.1818, 7.1813, 7.1807, 7.1796, 7.1816, 7.1839, 7.1852, 7.1842, 7.183, 7.1821, 7.1812, 7.1804, 7.1834, 7.1825, 7.1846, 7.1838, 7.183, 7.1819, 7.1807, 7.1829, 7.1822, 7.1812, 7.1803, 7.1791, 7.1783, 7.1806, 7.1795, 7.1789, 7.1781, 7.1778, 7.177, 7.1759, 7.1752, 7.1741, 7.173, 7.1721, 7.1709, 7.1698, 7.1719, 7.1708, 7.1735, 7.1727, 7.1718, 7.1756, 7.1717, 7.1708, 7.1709, 7.1707, 7.1701, 7.1691, 7.1714, 7.1702, 7.1695, 7.1693, 7.1732, 7.1753, 7.1799, 7.1788, 7.1776, 7.1765, 7.1754, 7.1743, 7.1765, 7.176, 7.1781, 7.1772, 7.1765, 7.1756, 7.1745, 7.1767, 7.1758, 7.1747, 7.171, 7.1705, 7.1727, 7.1719, 7.1709, 7.1698, 7.1687, 7.1708, 7.1669, 7.1664, 7.1656, 7.1647, 7.1667, 7.166, 7.1652, 7.1643, 7.1632, 7.1655, 7.1645, 7.1634, 7.1626, 7.1615, 7.1605, 7.1597, 7.1618, 7.1608, 7.1597, 7.1621, 7.161, 7.16, 7.1621, 7.161, 7.1602, 7.1623, 7.1612, 7.1634, 7.1674, 7.1664, 7.1688, 7.1711, 7.1703, 7.179, 7.1817, 7.1811, 7.18, 7.1796, 7.1786, 7.1808, 7.18, 7.1794, 7.1785, 7.1778, 7.1825, 7.1818, 7.1808, 7.1801, 7.183, 7.182, 7.1814, 7.1804, 7.1795, 7.1786, 7.1805, 7.1766, 7.176, 7.176, 7.1754, 7.1751, 7.174, 7.1762, 7.1762, 7.1782, 7.1801, 7.182, 7.1841, 7.1832, 7.1822, 7.1785, 7.1775, 7.1799, 7.1791, 7.1811, 7.1804, 7.1828, 7.182, 7.1809, 7.1801, 7.1794, 7.1786, 7.1775, 7.1765, 7.1789, 7.1818, 7.1811, 7.18, 7.1798, 7.183, 7.1853, 7.1844, 7.1808, 7.1802, 7.1796, 7.1791, 7.1782, 7.1774, 7.1795, 7.1784, 7.1805, 7.1799, 7.1791, 7.1784, 7.1872, 7.1864, 7.1882, 7.1894, 7.1884, 7.1873, 7.1864, 7.1856, 7.1877, 7.1869, 7.1864, 7.1853, 7.1844, 7.1834, 7.1825, 7.1814, 7.181, 7.1802, 7.1792, 7.1788, 7.1777, 7.1776, 7.1766, 7.1756, 7.1749, 7.1739, 7.1748, 7.1746, 7.1736, 7.1726, 7.1717, 7.1709, 7.1729, 7.1722, 7.1713, 7.1723, 7.1714, 7.1677, 7.1668, 7.1661, 7.1682, 7.1672, 7.1663, 7.1653, 7.1643, 7.1664, 7.1654, 7.1649, 7.1642, 7.1634, 7.1654, 7.1644, 7.1638, 7.1664, 7.1636, 7.1629, 7.1739, 7.1875, 7.1866, 7.1859, 7.1851, 7.1841, 7.1861, 7.1853, 7.1845, 7.1864, 7.1871, 7.1861, 7.1881, 7.1871, 7.1863, 7.1857, 7.1847, 7.1838, 7.1829, 7.1819, 7.181, 7.18, 7.1791, 7.1785, 7.1777, 7.1787, 7.178, 7.1799, 7.182, 7.1969, 7.2008, 7.2004, 7.1997, 7.1987, 7.1987, 7.198, 7.1973, 7.1985, 7.1976, 7.1967, 7.1957, 7.1951, 7.1941, 7.1936, 7.1956, 7.1947, 7.1938, 7.193, 7.195, 7.2, 7.1995, 7.1989, 7.198, 7.1947, 7.197, 7.1961, 7.1951, 7.1969, 7.1964, 7.1983, 7.1977, 7.1968, 7.1989, 7.201, 7.203, 7.2081, 7.2075, 7.2065, 7.2057, 7.2078, 7.2068, 7.2062, 7.2052, 7.207, 7.209, 7.2081, 7.2074, 7.2094, 7.2066, 7.2058, 7.2068, 7.2059, 7.2052, 7.205, 7.207, 7.2062, 7.2053, 7.2044, 7.2034, 7.2054, 7.2044, 7.2035, 7.2055, 7.2075, 7.2095, 7.2086, 7.2105, 7.2107, 7.2097, 7.2107, 7.2099, 7.2144, 7.2136, 7.2131, 7.2127, 7.2123, 7.2129, 7.2122, 7.2115, 7.2107, 7.2099, 7.2092, 7.2086, 7.2076, 7.2072, 7.2062, 7.2053, 7.206300000000001, 7.206, 7.2055, 7.2047, 7.2042, 7.2033, 7.203, 7.2022, 7.2016, 7.2009, 7.2028, 7.2047, 7.2038, 7.2029, 7.202, 7.2013, 7.2117, 7.2107, 7.2097, 7.2088, 7.2112, 7.2105, 7.2123, 7.2114, 7.2109, 7.2103, 7.2094, 7.2084, 7.209, 7.2085, 7.2052, 7.2043, 7.2036, 7.2031, 7.2023, 7.2016, 7.2007, 7.1998, 7.202, 7.2039, 7.2037, 7.2028, 7.2047, 7.2043, 7.2063, 7.2057, 7.2051, 7.2022, 7.2014, 7.2033, 7.2024, 7.2018, 7.2034, 7.2054, 7.2021, 7.2038, 7.2061, 7.2028, 7.2074, 7.2092, 7.2103, 7.2102, 7.2093, 7.2088, 7.2079, 7.2071, 7.2064, 7.2094, 7.2097, 7.2093, 7.2084, 7.2077, 7.207, 7.2061, 7.2078, 7.2075, 7.2118, 7.2113, 7.2108, 7.2099, 7.2089, 7.2106, 7.2097, 7.209, 7.2084, 7.2102, 7.2096, 7.2087, 7.2104, 7.2094, 7.2089, 7.2081, 7.2081, 7.2073, 7.2091, 7.2085, 7.208, 7.2076, 7.2093, 7.2109, 7.2104, 7.2097, 7.2089, 7.2081, 7.2124, 7.2116, 7.2164, 7.2156, 7.215, 7.2144, 7.2173, 7.2167, 7.2164, 7.2188, 7.2181, 7.2202, 7.2195, 7.2187, 7.2207, 7.2223, 7.2218, 7.2209, 7.2204, 7.2195, 7.2187, 7.2178, 7.217, 7.2162, 7.2159, 7.2176, 7.2169, 7.2141, 7.2135, 7.2153, 7.2145, 7.2168, 7.2186, 7.2177, 7.2194, 7.2185, 7.2203, 7.2219, 7.2237, 7.2232, 7.2224, 7.2243, 7.2234, 7.2229, 7.2247, 7.2241, 7.2258, 7.225, 7.2242, 7.2236, 7.2229, 7.2197, 7.219, 7.2182, 7.2176, 7.2168, 7.2164, 7.2157, 7.2193, 7.2186, 7.2178, 7.2195, 7.2186, 7.2178, 7.2247, 7.2264, 7.2281, 7.2274, 7.2292, 7.2263, 7.2255, 7.2248, 7.2242, 7.2259, 7.2324, 7.2318, 7.2311, 7.2307, 7.2301, 7.2293, 7.2285, 7.2277, 7.227, 7.2264, 7.2256, 7.2312, 7.2306, 7.2301, 7.2356, 7.235, 7.2367, 7.2389, 7.2407, 7.2402, 7.2399, 7.239, 7.2412, 7.2414, 7.241, 7.2436, 7.2429, 7.2421, 7.2412, 7.2403, 7.2398, 7.239, 7.2382, 7.2373, 7.2391, 7.2387, 7.238, 7.2371, 7.2364, 7.2356, 7.2373, 7.2373, 7.2367, 7.2359, 7.2354, 7.2345, 7.2339, 7.2331, 7.2326, 7.2317, 7.2312, 7.2304, 7.2296, 7.2314, 7.2307, 7.2298, 7.2291, 7.231, 7.2301, 7.2295, 7.2286, 7.2278, 7.2293, 7.2284, 7.2276, 7.2292, 7.2302, 7.232, 7.2313, 7.2307, 7.2302, 7.2319, 7.2311, 7.2328, 7.2345, 7.2338, 7.2333, 7.2325, 7.2327, 7.2322, 7.2313, 7.231, 7.2302, 7.2294, 7.2287, 7.228, 7.2274, 7.2268, 7.2259, 7.225, 7.2243, 7.2235, 7.2227, 7.222, 7.2212, 7.2189, 7.2183, 7.2175, 7.2191, 7.2184, 7.2201, 7.2197, 7.2192, 7.2208, 7.2202, 7.2244, 7.2264, 7.228, 7.2299, 7.2317, 7.2309, 7.2302, 7.2297, 7.2295, 7.2362, 7.238, 7.2418, 7.2483, 7.2475, 7.2466, 7.246, 7.2452, 7.2445, 7.2436, 7.2428, 7.2423, 7.2415, 7.2407, 7.2401, 7.2393, 7.2385, 7.2378, 7.2369, 7.2362, 7.2356, 7.2358, 7.2356, 7.2371, 7.2368, 7.2363, 7.238, 7.2374, 7.2365, 7.2361, 7.2381, 7.2397, 7.2413, 7.2429, 7.2401, 7.2392, 7.2386, 7.2378, 7.2396, 7.241, 7.2402, 7.2395, 7.2387, 7.2379, 7.2394, 7.2385, 7.238, 7.2374, 7.2366, 7.2359, 7.2351, 7.2368, 7.2384, 7.2385, 7.24, 7.2416, 7.241, 7.2402, 7.2394, 7.2388, 7.2385, 7.2401, 7.2395, 7.2413, 7.2391, 7.2396, 7.2388, 7.2418, 7.241, 7.2402, 7.2396, 7.2424, 7.2416, 7.2408, 7.24, 7.2394, 7.2397, 7.2391, 7.2386, 7.2401, 7.2415, 7.2408, 7.2401, 7.2396, 7.2388, 7.236, 7.2355, 7.238, 7.2373, 7.2416, 7.2433, 7.2426, 7.2421, 7.2437, 7.2435, 7.2427, 7.2419, 7.2414, 7.243, 7.2425, 7.2442, 7.2434, 7.245, 7.2465, 7.2438, 7.2435, 7.245, 7.2442, 7.2434, 7.2426, 7.2442, 7.2481, 7.2473, 7.2489, 7.2481, 7.2495, 7.2491, 7.2483, 7.2476, 7.2468, 7.2462, 7.2493, 7.2521, 7.2515, 7.2577, 7.257, 7.2565, 7.2559, 7.2552, 7.2544, 7.2544, 7.2537, 7.2529, 7.2529, 7.2521, 7.2516, 7.2531, 7.2546, 7.254, 7.2554, 7.2548, 7.254, 7.2532, 7.2525, 7.2546, 7.2563, 7.2558, 7.255, 7.2564, 7.2556, 7.2548, 7.2544, 7.2536, 7.2574, 7.2566, 7.2558, 7.2573, 7.2567, 7.2559, 7.2532, 7.2525, 7.2518, 7.2519, 7.2512, 7.2508, 7.25, 7.2493, 7.2486, 7.2478, 7.2473, 7.249, 7.2482, 7.2476, 7.2471, 7.2466, 7.246, 7.2459, 7.2454, 7.2446, 7.2461, 7.2476, 7.2468, 7.2461, 7.2456, 7.2493, 7.2554, 7.2547, 7.2542, 7.2536, 7.2529, 7.2525, 7.2542, 7.2537, 7.2534, 7.2578, 7.2571, 7.2584, 7.2582, 7.2574, 7.2568, 7.2563, 7.2584, 7.2576, 7.2569, 7.2562, 7.2653, 7.2649, 7.2644, 7.2638, 7.2634, 7.2626, 7.2618, 7.2612, 7.2627, 7.2642, 7.2634, 7.2626, 7.2641, 7.2633, 7.2626, 7.2644, 7.266, 7.2654, 7.265, 7.2644, 7.2636, 7.263, 7.2624, 7.2619, 7.2612, 7.2607, 7.2626, 7.2618, 7.2633, 7.2648, 7.2643, 7.2658, 7.2651, 7.2663, 7.2671, 7.2664, 7.2657, 7.265, 7.2667, 7.2662, 7.2655, 7.2651, 7.2646, 7.2659, 7.2651, 7.2643, 7.2656, 7.2649, 7.2642, 7.2636, 7.2651, 7.2624, 7.2617, 7.2611, 7.2603, 7.2597, 7.259, 7.2583, 7.2575, 7.2568, 7.2572, 7.2565, 7.2558, 7.2558, 7.2572, 7.2586, 7.2579, 7.2574, 7.2566, 7.2559, 7.2556, 7.2638, 7.263, 7.2624, 7.2636, 7.263, 7.2628, 7.262, 7.2594, 7.2572, 7.2565, 7.254, 7.2534, 7.2547, 7.2541, 7.2539, 7.2567, 7.2592, 7.2625, 7.2642, 7.2637, 7.2632, 7.2627, 7.2622, 7.2636, 7.2633, 7.2631, 7.2625, 7.2639, 7.2665, 7.2681, 7.2674, 7.2667, 7.2671, 7.2707, 7.2746, 7.2759, 7.2766, 7.276, 7.2753, 7.2767, 7.2761, 7.2754, 7.2769, 7.2786, 7.2779, 7.2773, 7.2766, 7.278, 7.2773, 7.2767, 7.276, 7.2773, 7.2787, 7.2803, 7.2817, 7.2862, 7.2856, 7.2906, 7.2898, 7.2891, 7.2883, 7.2896, 7.2891, 7.2888, 7.288, 7.2876, 7.2871, 7.2885, 7.2879, 7.2871, 7.2866, 7.286, 7.2852, 7.2845, 7.2859, 7.2861, 7.2875, 7.2888, 7.2882, 7.2874, 7.2848, 7.2862, 7.2956, 7.2951, 7.2945, 7.2959, 7.2951, 7.2943, 7.2955, 7.2955, 7.2968, 7.2981, 7.2974, 7.2987, 7.3009, 7.3005, 7.3001, 7.2994, 7.2989, 7.2981, 7.2976, 7.2969, 7.2983, 7.2997, 7.299, 7.2982, 7.2975, 7.297, 7.2945, 7.2995, 7.303, 7.3024, 7.3024, 7.3017, 7.301, 7.3003, 7.3018, 7.2993, 7.2986, 7.3001, 7.2995, 7.3008, 7.3032, 7.3025, 7.3019, 7.3011, 7.3004, 7.3016, 7.3009, 7.3023, 7.3037, 7.3031, 7.3024, 7.3073, 7.3068, 7.306, 7.3073, 7.3087, 7.31, 7.3114, 7.3108, 7.3121, 7.3135, 7.3138, 7.3133, 7.3126, 7.3122, 7.3131, 7.3125, 7.3119, 7.3114, 7.3107, 7.3101, 7.3094, 7.311, 7.3091, 7.3087, 7.3079, 7.3078, 7.3073, 7.3068, 7.3064, 7.3058, 7.3053, 7.3046, 7.3042, 7.3035, 7.3028, 7.3022, 7.3015, 7.301, 7.3006, 7.3002, 7.2995, 7.2988, 7.2981, 7.2976, 7.2969, 7.2964, 7.2957, 7.297, 7.2965, 7.2962, 7.2955, 7.2988, 7.3093, 7.3088, 7.3101, 7.3094, 7.3087, 7.31, 7.3113, 7.311, 7.3103, 7.3115, 7.3128, 7.3141, 7.3134, 7.3127, 7.3124, 7.3119, 7.312, 7.3114, 7.3107, 7.3101, 7.3103, 7.31, 7.3173, 7.3168, 7.3163, 7.3156, 7.3152, 7.3146, 7.3158, 7.3154, 7.3148, 7.3144, 7.3138, 7.3131, 7.3128, 7.3122, 7.3117, 7.3155, 7.3152, 7.3147, 7.3139, 7.3152, 7.3165, 7.316, 7.3154, 7.3167, 7.316, 7.3153, 7.3166, 7.318, 7.3175, 7.3188, 7.3184, 7.3197, 7.3191, 7.3167, 7.3163, 7.3177, 7.319, 7.3188, 7.32, 7.3193, 7.3189, 7.3188, 7.3181, 7.3174, 7.3168, 7.3201, 7.3214, 7.3226, 7.322, 7.3213, 7.3225, 7.3219, 7.3196, 7.319, 7.3189, 7.3183, 7.3181, 7.3195, 7.3189, 7.3204, 7.3199, 7.3191, 7.3186, 7.3199, 7.3223, 7.3217, 7.3211, 7.3204, 7.3197, 7.319, 7.3183, 7.3178, 7.3172, 7.3185, 7.3178, 7.3178, 7.321, 7.3208, 7.3201, 7.3194, 7.3206, 7.3218, 7.323, 7.3226, 7.3289, 7.3301, 7.3314, 7.3307, 7.33, 7.3296, 7.3307, 7.3303, 7.3316, 7.3316, 7.3311, 7.3308, 7.3306, 7.33, 7.3293, 7.329, 7.3284, 7.3298, 7.3292, 7.3285, 7.3281, 7.3285, 7.3279, 7.3293, 7.3289, 7.3285, 7.3278, 7.3273, 7.3267, 7.33, 7.3294, 7.3288, 7.3319, 7.3333, 7.3347, 7.3341, 7.3354, 7.3367, 7.336, 7.3373, 7.3366, 7.336, 7.3356, 7.3351, 7.3366, 7.3377, 7.3371, 7.3367, 7.336, 7.3353, 7.3424, 7.3418, 7.3411, 7.3405, 7.3399, 7.3393, 7.3387, 7.3381, 7.3378, 7.3371, 7.3382, 7.3377, 7.339, 7.3367, 7.3344, 7.3337, 7.3349, 7.3366, 7.336, 7.3353, 7.333, 7.3324, 7.3336, 7.3347, 7.3341, 7.3336, 7.3332, 7.3325, 7.3336, 7.3331, 7.3327, 7.3322, 7.3318, 7.333, 7.3324, 7.3337, 7.3331, 7.3325, 7.332, 7.3314, 7.331, 7.3321, 7.3315, 7.3311, 7.3322, 7.3315, 7.3328, 7.3324, 7.3335, 7.3328, 7.3321, 7.3333, 7.3352, 7.3345, 7.3339, 7.3333, 7.3329, 7.3324, 7.3319, 7.3313, 7.3317, 7.331, 7.3304, 7.3317, 7.3311, 7.3324, 7.3319, 7.3313, 7.3307, 7.3302, 7.3295, 7.329, 7.3301, 7.3294, 7.3287, 7.3281, 7.3276, 7.3272, 7.3284, 7.3278, 7.3272, 7.3267, 7.3262, 7.3273, 7.3285, 7.3298, 7.3291, 7.3284, 7.328, 7.3279, 7.3291, 7.3286, 7.3279, 7.3272, 7.3267, 7.3262, 7.3256, 7.3251, 7.3246, 7.324, 7.3261, 7.3291, 7.3286, 7.3282, 7.3275, 7.3286, 7.328, 7.3275, 7.3272, 7.3265, 7.326, 7.3253, 7.3251, 7.3246, 7.3257, 7.3251, 7.3245, 7.3238, 7.3268, 7.3251, 7.3247, 7.3242, 7.3237, 7.3248, 7.3241, 7.3236, 7.3249, 7.3245, 7.3257, 7.3251, 7.3262, 7.3274, 7.3284, 7.3278, 7.3271, 7.3265, 7.3264, 7.326, 7.3255, 7.3258, 7.3252, 7.3246, 7.3241, 7.3234, 7.3228, 7.3223, 7.3216, 7.3228, 7.3222, 7.32, 7.3194, 7.3206, 7.322, 7.3231, 7.3226, 7.322, 7.3214, 7.3208, 7.3221, 7.3214, 7.3214, 7.3226, 7.3223, 7.3217, 7.3211, 7.3204, 7.3198, 7.3195, 7.3207, 7.3217, 7.3212, 7.3209, 7.3206, 7.3205, 7.3203, 7.3181, 7.3176, 7.3172, 7.3166, 7.3161, 7.3155, 7.3149, 7.3143, 7.3156, 7.3149, 7.3147, 7.3141, 7.316, 7.3172, 7.3167, 7.3162, 7.3157, 7.3151, 7.3148, 7.3141, 7.3134, 7.3148, 7.3141, 7.3155, 7.3151, 7.3145, 7.3156, 7.3149, 7.3144, 7.3139, 7.3134, 7.3129, 7.3125, 7.3124, 7.3118, 7.3113, 7.3108, 7.3101, 7.3112, 7.3105, 7.31, 7.3094, 7.3088, 7.3083, 7.3094, 7.3088, 7.3083, 7.3077, 7.3072, 7.3101, 7.3095, 7.3093, 7.3086, 7.308, 7.3074, 7.3122, 7.3132, 7.3125, 7.3103, 7.3114, 7.3109, 7.3106, 7.312, 7.3113, 7.3116, 7.311, 7.3104, 7.3101, 7.3096, 7.3092, 7.3087, 7.308, 7.3077, 7.3071, 7.3081, 7.3082, 7.3077, 7.3071, 7.3065, 7.3097, 7.3093, 7.3088, 7.3084, 7.3077, 7.3088, 7.3082, 7.3111, 7.3092, 7.3086, 7.3081, 7.3075, 7.307, 7.3065, 7.3059, 7.3054, 7.305, 7.3045, 7.3043, 7.3038, 7.3031, 7.3025, 7.3021, 7.3018, 7.3014, 7.3008, 7.3004, 7.3, 7.3011, 7.3005, 7.3, 7.2994, 7.3006, 7.3017, 7.3011, 7.3008, 7.3006, 7.3001, 7.2995, 7.2989, 7.2984, 7.2981, 7.2982, 7.2976, 7.297, 7.2964, 7.2958, 7.2955, 7.2949, 7.2945, 7.2956, 7.2968, 7.2962, 7.2959, 7.2955, 7.2966, 7.299, 7.2993, 7.2987, 7.2981, 7.2975, 7.297, 7.2964, 7.2958, 7.2968, 7.2996, 7.299, 7.2987, 7.2981, 7.2993, 7.2988, 7.2998, 7.3014, 7.301, 7.3005, 7.2999, 7.2997, 7.3008, 7.3019, 7.3017, 7.3011, 7.3005, 7.2999, 7.2993, 7.299, 7.3001, 7.2995, 7.2989, 7.2983, 7.2977, 7.2987, 7.2998, 7.2994, 7.2988, 7.2996, 7.299, 7.2985, 7.298, 7.2975, 7.297, 7.2965, 7.2964, 7.2959, 7.2954, 7.2948, 7.2945, 7.294, 7.2935, 7.2929, 7.2924, 7.292, 7.2914, 7.2911, 7.2925, 7.2919, 7.2914, 7.2908, 7.2903, 7.2916, 7.2913, 7.2925, 7.2919, 7.2916, 7.2917, 7.2913, 7.2909, 7.2903, 7.2899, 7.2893, 7.2887, 7.2881, 7.2891, 7.2886, 7.2892, 7.2886, 7.2882, 7.2877, 7.2856, 7.285, 7.2846, 7.2841, 7.2837, 7.2833, 7.2827, 7.2876, 7.2874, 7.2869, 7.2879, 7.2876, 7.2874, 7.2872, 7.2867, 7.2883, 7.2884, 7.2864, 7.2878, 7.2872, 7.2866, 7.286, 7.2856, 7.2851, 7.2862, 7.2856, 7.2851, 7.2863, 7.287, 7.2865, 7.2875, 7.2869, 7.2879, 7.2873, 7.2867, 7.2861, 7.2858, 7.2853, 7.2848, 7.2842, 7.2836, 7.283, 7.2841, 7.2835, 7.283, 7.2841, 7.2852, 7.2846, 7.2841, 7.2837, 7.2834, 7.2828, 7.2822, 7.2832, 7.2826, 7.2821, 7.2861, 7.2856, 7.2868, 7.288, 7.2874, 7.2868, 7.2864, 7.2875, 7.2871, 7.2865, 7.2859, 7.2855, 7.2856, 7.2854, 7.2854, 7.285, 7.2844, 7.2838, 7.2833, 7.2828, 7.2825, 7.2949, 7.2943, 7.2938, 7.2933, 7.2944, 7.2954, 7.2965, 7.2961, 7.2956, 7.2952, 7.295, 7.2973, 7.2969, 7.2971, 7.2982, 7.2977, 7.2988, 7.2985, 7.2981, 7.2976, 7.297, 7.2965, 7.2975, 7.2985, 7.2979, 7.2973, 7.2968, 7.2963, 7.2957, 7.2952, 7.2948, 7.2992, 7.2987, 7.2983, 7.298, 7.2974, 7.297, 7.2966, 7.2962, 7.2957, 7.2951, 7.2947, 7.2945, 7.2939, 7.2952, 7.2946, 7.2942, 7.2937, 7.2933, 7.2945, 7.2956, 7.2952, 7.2946, 7.294, 7.2936, 7.2933, 7.2944, 7.2938, 7.2932, 7.2926, 7.292, 7.2916, 7.2911, 7.2906, 7.2901, 7.2896, 7.2906, 7.2902, 7.2897, 7.2908, 7.2903, 7.2897, 7.2892, 7.2903, 7.2898, 7.2892, 7.2887, 7.2883, 7.288, 7.2876, 7.2871, 7.2867, 7.2861, 7.286, 7.2857, 7.2851, 7.2845, 7.2846, 7.2862, 7.2857, 7.2867, 7.2862, 7.2857, 7.2854, 7.285, 7.2844, 7.284, 7.2836, 7.2833, 7.2845, 7.2839, 7.2849, 7.2846, 7.2841, 7.285, 7.283, 7.2825, 7.2806, 7.28, 7.2794, 7.2791, 7.2786, 7.2781, 7.2791, 7.2786, 7.2781, 7.2792, 7.2788, 7.2784, 7.2779, 7.2774, 7.2769, 7.2764, 7.2758, 7.2752, 7.2747, 7.2742, 7.2753, 7.2748, 7.2743, 7.274, 7.2735, 7.273, 7.274, 7.2735, 7.273, 7.2726, 7.2737, 7.2735, 7.2749, 7.2799, 7.2825, 7.2819, 7.2815, 7.2826, 7.2835, 7.2831, 7.2827, 7.2821, 7.2815, 7.281, 7.2843, 7.2839, 7.2835, 7.2846, 7.2841, 7.2855, 7.2865, 7.2896, 7.2892, 7.2901, 7.2912, 7.2906, 7.2903, 7.2903, 7.29, 7.2895, 7.2892, 7.2902, 7.2897, 7.2896, 7.2891, 7.2909, 7.2905, 7.2901, 7.2899, 7.2894, 7.2889, 7.289, 7.29, 7.291, 7.2923, 7.2919, 7.2938, 7.2949, 7.2962, 7.2958, 7.2953, 7.2964, 7.2961, 7.2958, 7.2957, 7.2953, 7.2948, 7.2943, 7.294, 7.295, 7.2945, 7.294, 7.2935, 7.293, 7.2925, 7.292, 7.2933, 7.2929, 7.2924, 7.292, 7.2916, 7.2911, 7.2912, 7.2909, 7.2904, 7.2899, 7.2894, 7.2889, 7.2884, 7.2879, 7.2873, 7.2867, 7.2861, 7.287, 7.2866, 7.2863, 7.2857, 7.2852, 7.2848, 7.2843, 7.2838, 7.2833, 7.2814, 7.2812, 7.2809, 7.2804, 7.2814, 7.281, 7.2805, 7.2799, 7.2794, 7.2788, 7.2783, 7.2778, 7.2773, 7.2768, 7.2821, 7.2857, 7.2867, 7.2898, 7.2931, 7.2942, 7.2937, 7.2932, 7.2928, 7.2923, 7.2919, 7.2914, 7.291, 7.2905, 7.29, 7.2895, 7.289, 7.2899, 7.2895, 7.2905, 7.2901, 7.2895, 7.2905, 7.2899, 7.2884, 7.2895, 7.2891, 7.2886, 7.2917, 7.2958, 7.2968, 7.2966, 7.2962, 7.2957, 7.2953, 7.2951, 7.2946, 7.2941, 7.2938, 7.2934, 7.2918, 7.2914, 7.2896, 7.2905, 7.29, 7.2899, 7.2927, 7.298, 7.2975, 7.2956, 7.2966, 7.2961, 7.2956, 7.2951, 7.2961, 7.2956, 7.2953, 7.2948, 7.2943, 7.2938, 7.2933, 7.2929, 7.2912, 7.2908, 7.2904, 7.2899, 7.2909, 7.2905, 7.2915, 7.291, 7.2921, 7.2931, 7.2927, 7.2921, 7.2932, 7.2927, 7.2923, 7.2933, 7.2928, 7.2923, 7.2917, 7.2912, 7.2907, 7.2901, 7.2895, 7.2893, 7.289, 7.2871, 7.288, 7.2875, 7.2871, 7.2872, 7.2885, 7.288, 7.2889, 7.2871, 7.287, 7.2865, 7.286, 7.2857, 7.2852, 7.2849, 7.2844, 7.2845, 7.2827, 7.2822, 7.2819, 7.2814, 7.2809, 7.2806, 7.2803, 7.2799, 7.2796, 7.2794, 7.2789, 7.2799, 7.2796, 7.2792, 7.2787, 7.2797, 7.2793, 7.2789, 7.2784, 7.278, 7.279, 7.2784, 7.2781, 7.2776, 7.2772, 7.2767, 7.279, 7.2791, 7.2789, 7.2784, 7.2793, 7.2789, 7.2785, 7.2797, 7.2806, 7.2803, 7.2824, 7.2834, 7.2829, 7.2839, 7.2834, 7.2829, 7.2824, 7.282, 7.2829, 7.2811, 7.2821, 7.2843, 7.2852, 7.2862, 7.2875, 7.2885, 7.2867, 7.2863, 7.2875, 7.287, 7.2866, 7.2876, 7.2872, 7.2882, 7.2878, 7.2888, 7.2898, 7.2893, 7.2906, 7.2917, 7.2913, 7.2923, 7.2919, 7.2915, 7.2912, 7.292, 7.2929, 7.2925, 7.2921, 7.2917, 7.2912, 7.291, 7.2919, 7.2915, 7.2911, 7.2906, 7.2902, 7.2897, 7.2892, 7.2888, 7.2885, 7.2881, 7.2891, 7.2886, 7.2869, 7.2879, 7.2874, 7.287, 7.2864, 7.2861, 7.2858, 7.2868, 7.2863, 7.2858, 7.2853, 7.2862, 7.2858, 7.2853, 7.2851, 7.29, 7.2897, 7.2893, 7.289, 7.2901, 7.2897, 7.288, 7.2876, 7.2885, 7.2882, 7.2893, 7.2889, 7.2884, 7.2892, 7.2887, 7.2883, 7.288, 7.2875, 7.2872, 7.2867, 7.2863, 7.2861, 7.2897, 7.2914, 7.2923, 7.292, 7.2916, 7.2926, 7.2921, 7.2918, 7.2915, 7.291, 7.2906, 7.2906, 7.2903, 7.2898, 7.2881, 7.2894, 7.2904, 7.2916, 7.2916, 7.2911, 7.2907, 7.2902, 7.2898, 7.2914, 7.291, 7.292, 7.2916, 7.2911, 7.2908, 7.2905, 7.2902, 7.2898, 7.2893, 7.2893, 7.29, 7.2895, 7.289, 7.2885, 7.2884, 7.2879, 7.2875, 7.2872, 7.2868, 7.2877, 7.2874, 7.2869, 7.2878, 7.2887, 7.2918, 7.2913, 7.2908, 7.2903, 7.2887, 7.2882, 7.288, 7.2875, 7.2873, 7.287, 7.2865, 7.2874, 7.2869, 7.2878, 7.2887, 7.2888, 7.2883, 7.2892, 7.29, 7.2897, 7.2908, 7.2906, 7.2915, 7.2924, 7.2922, 7.2918, 7.2913, 7.2922, 7.2931, 7.2927, 7.2936, 7.2931, 7.2943, 7.2942, 7.2937, 7.2946, 7.2941, 7.294, 7.2949, 7.2945, 7.294, 7.2936, 7.2936, 7.2931, 7.2926, 7.2936, 7.2936, 7.2932, 7.2929, 7.2916, 7.2914, 7.291, 7.2907, 7.2915, 7.291, 7.2905, 7.29, 7.2895, 7.2904, 7.2899, 7.2907, 7.2916, 7.2912, 7.2907, 7.2902, 7.2899, 7.2896, 7.2891, 7.2886, 7.2884, 7.288, 7.2875, 7.2882, 7.2879, 7.2876, 7.2871, 7.291, 7.292, 7.2942, 7.295, 7.295, 7.2945, 7.294, 7.2937, 7.2933, 7.2928, 7.2965, 7.296, 7.2969, 7.2965, 7.2975, 7.2977, 7.2985, 7.2981, 7.2976, 7.2971, 7.2966, 7.2962, 7.2957, 7.2953, 7.2949, 7.2959, 7.2958, 7.2969, 7.2978, 7.2974, 7.3016, 7.3011, 7.3006, 7.3003, 7.2998, 7.2994, 7.2989, 7.2985, 7.298, 7.2975, 7.297, 7.3008, 7.3003, 7.3006, 7.3002, 7.2997, 7.3006, 7.3018, 7.3029, 7.3026, 7.3022, 7.3018, 7.3026, 7.3023, 7.3018, 7.3026, 7.3021, 7.303, 7.3039, 7.3036, 7.3045, 7.3041, 7.3036, 7.3031, 7.3027, 7.3036, 7.3032, 7.3042, 7.3037, 7.3032, 7.3041, 7.3037, 7.3032, 7.3028, 7.3024, 7.302, 7.3016, 7.3011, 7.3008, 7.3017, 7.3027, 7.3036, 7.3031, 7.303, 7.3028, 7.3023, 7.3032, 7.3043, 7.3052, 7.3049, 7.3058, 7.3055, 7.3064, 7.3073, 7.3082, 7.3127, 7.3131, 7.3126, 7.3121, 7.3116, 7.3111, 7.3122, 7.3117, 7.3114, 7.311, 7.3106, 7.3102, 7.3098, 7.3098, 7.3107, 7.3115, 7.3112, 7.3121, 7.3116, 7.3111, 7.3119, 7.3115, 7.3123, 7.3118, 7.3128, 7.3123, 7.3133, 7.313, 7.3125, 7.312, 7.3116, 7.3111, 7.3106, 7.3114, 7.311, 7.3108, 7.3117, 7.3112, 7.3109, 7.3106, 7.3101, 7.3104, 7.3099, 7.3107, 7.3102, 7.3097, 7.3118, 7.3113, 7.3108, 7.3103, 7.3098, 7.3095, 7.3093, 7.3093, 7.3089, 7.3097, 7.3092, 7.3088, 7.3096, 7.3105, 7.31, 7.3108, 7.3117, 7.3113, 7.311, 7.3105, 7.3104, 7.31, 7.3095, 7.3093, 7.3089, 7.3085, 7.3082, 7.3079, 7.3075, 7.307, 7.3066, 7.3061, 7.3056, 7.3052, 7.3047, 7.3056, 7.3052, 7.3047, 7.3043, 7.3041, 7.3037, 7.3044, 7.3039, 7.3048, 7.3044, 7.304, 7.3049, 7.3045, 7.3053, 7.3048, 7.3044, 7.304, 7.3036, 7.3032, 7.3029, 7.3038, 7.3035, 7.3032, 7.3043, 7.3052, 7.3048, 7.3033, 7.3029, 7.3026, 7.3022, 7.3023, 7.3018, 7.3014, 7.3012, 7.3007, 7.3002, 7.2998, 7.3007, 7.3016, 7.3024, 7.302, 7.303, 7.3027, 7.3023, 7.302, 7.3017, 7.3026, 7.3023, 7.3031, 7.3039, 7.3036, 7.3031, 7.3032, 7.3041, 7.3049, 7.3046, 7.3058, 7.3054, 7.3051, 7.3047, 7.3044, 7.3079, 7.3077, 7.3074, 7.307, 7.3054, 7.3059, 7.3055, 7.3065, 7.3062, 7.3071, 7.3068, 7.3071, 7.3067, 7.3062, 7.3071, 7.3067, 7.3062, 7.306, 7.3056, 7.3052, 7.3048, 7.3049, 7.3045, 7.3044, 7.3068, 7.3063, 7.3059, 7.3056, 7.3052, 7.3047, 7.3055, 7.3064, 7.306, 7.3069, 7.3064, 7.3059, 7.3055, 7.305, 7.3045, 7.3054, 7.3063, 7.3066, 7.3061, 7.3057, 7.3055, 7.305, 7.3046, 7.3043, 7.304, 7.3035, 7.3031, 7.3027, 7.3025, 7.3021, 7.3018, 7.3026, 7.307, 7.3066, 7.3104, 7.3099, 7.3095, 7.3093, 7.31, 7.3108, 7.3103, 7.3099, 7.3095, 7.3092, 7.3089, 7.3101, 7.3098, 7.3097, 7.3106, 7.3107, 7.3115, 7.3115, 7.311, 7.3108, 7.3104, 7.3112, 7.3109, 7.3108, 7.3117, 7.3125, 7.3134, 7.313, 7.3129, 7.3124, 7.3109, 7.3119, 7.3114, 7.3109, 7.3105, 7.3101, 7.3096, 7.3104, 7.3113, 7.3109, 7.3105, 7.3089, 7.3097, 7.3092, 7.3088, 7.3096, 7.3092, 7.3088, 7.3083, 7.308, 7.3077, 7.3072, 7.306, 7.3057, 7.3053, 7.3049, 7.3047, 7.305, 7.3046, 7.3059, 7.3054, 7.3042, 7.3038, 7.3049, 7.307, 7.3078, 7.3073, 7.3071, 7.3066, 7.3063, 7.3058, 7.3054, 7.3052, 7.3049, 7.3059, 7.3056, 7.3093, 7.309, 7.3091, 7.311, 7.3106, 7.3104, 7.3125, 7.3121, 7.3118, 7.3113, 7.3111, 7.3108, 7.3116, 7.3112, 7.3108, 7.3105, 7.3116, 7.3114, 7.311, 7.3107, 7.3105, 7.3103, 7.3098, 7.3095, 7.3091, 7.3087, 7.3084, 7.3081, 7.3077, 7.3085, 7.3093, 7.3088, 7.3098, 7.3095, 7.3104, 7.3113, 7.3114, 7.3116, 7.3113, 7.3109, 7.3108, 7.3105, 7.3104, 7.3111, 7.3119, 7.3128, 7.3124, 7.3132, 7.3129, 7.3133, 7.3129, 7.3137, 7.3133, 7.3129, 7.3137, 7.3145, 7.3141, 7.3149, 7.3165, 7.3173, 7.3169, 7.3167, 7.3162, 7.3159, 7.3154, 7.3162, 7.3158, 7.3154, 7.3163, 7.3151, 7.3164, 7.3172, 7.3179, 7.3177, 7.3172, 7.318, 7.3188, 7.3184, 7.3193, 7.3196, 7.3204, 7.3201, 7.3209, 7.3206, 7.3212, 7.3208, 7.3204, 7.3212, 7.3208, 7.3204, 7.3214, 7.3211, 7.3207, 7.3204, 7.3212, 7.3211, 7.3196, 7.3194, 7.3191, 7.3199, 7.3195, 7.3192, 7.3188, 7.3196, 7.3192, 7.3187, 7.3182, 7.3178, 7.3176, 7.3184, 7.318, 7.3191, 7.3211, 7.3207, 7.3203, 7.3211, 7.3198, 7.3194, 7.3202, 7.3199, 7.3198, 7.3194, 7.319, 7.3192, 7.32, 7.3196, 7.3192, 7.3188, 7.3184, 7.318, 7.3176, 7.3175, 7.3171, 7.3168, 7.3164, 7.3149, 7.315, 7.3147, 7.3143, 7.3141, 7.3137, 7.3133, 7.3129, 7.3138, 7.3135, 7.3132, 7.314, 7.3136, 7.3132, 7.3128, 7.3124, 7.3121, 7.3118, 7.3104, 7.31, 7.3109, 7.3105, 7.3101, 7.3111, 7.3107, 7.3102, 7.3099, 7.3096, 7.3097, 7.3111, 7.3121, 7.3119, 7.3118, 7.3114, 7.311, 7.3106, 7.3113, 7.3133, 7.3141, 7.3138, 7.3134, 7.3142, 7.3138, 7.3136, 7.3132, 7.3129, 7.3125, 7.3124, 7.3121, 7.3117, 7.3113, 7.3108, 7.3104, 7.3101, 7.3097, 7.3105, 7.3091, 7.3099, 7.3099, 7.3095, 7.3091, 7.3098, 7.3095, 7.3093, 7.309, 7.3088, 7.3087, 7.3083, 7.3078, 7.3085, 7.3082, 7.3079, 7.3075, 7.3074, 7.307, 7.3067, 7.3063, 7.3071, 7.3069, 7.3069, 7.3066, 7.3065, 7.305, 7.3046, 7.3044, 7.304, 7.3038, 7.3024, 7.3022, 7.3018, 7.3014, 7.301, 7.3006, 7.3004, 7.3012, 7.3009, 7.3005, 7.3004, 7.3012, 7.3009, 7.3006, 7.3005, 7.3003, 7.301, 7.3007, 7.3004, 7.3, 7.3008, 7.3006, 7.3002, 7.301, 7.3007, 7.3003, 7.3002, 7.3011, 7.3007, 7.3016, 7.3023, 7.3031, 7.3027, 7.3022, 7.303, 7.3026, 7.3022, 7.3019, 7.3016, 7.3024, 7.3032, 7.3028, 7.3036, 7.3032, 7.3028, 7.3024, 7.302, 7.3016, 7.3014, 7.301, 7.3006, 7.3004, 7.3001, 7.2999, 7.2995, 7.2991, 7.2987, 7.299, 7.2987, 7.2994, 7.3025, 7.3022, 7.3019, 7.3036, 7.3032, 7.3052, 7.3048, 7.3046, 7.3043, 7.3043, 7.3073, 7.3069, 7.3088, 7.3085, 7.3081, 7.3078, 7.3086, 7.3083, 7.3081, 7.3093, 7.3101, 7.3097, 7.3093, 7.309, 7.3087, 7.3085, 7.3083, 7.3079, 7.3076, 7.3073, 7.3069, 7.3065, 7.3062, 7.3058, 7.3055, 7.3051, 7.3059, 7.3055, 7.3051, 7.3049, 7.3057, 7.3065, 7.3061, 7.3069, 7.3078, 7.3082, 7.309, 7.3087, 7.3084, 7.307, 7.3078, 7.3076, 7.3072, 7.3069, 7.3066, 7.3062, 7.307, 7.3066, 7.3062, 7.3048, 7.3044, 7.304, 7.3036, 7.3033, 7.3031, 7.304, 7.3037, 7.3037, 7.3033, 7.3019, 7.3033, 7.3029, 7.3026, 7.3024, 7.302, 7.3038, 7.3034, 7.3041, 7.3037, 7.3046, 7.3043, 7.3039, 7.3036, 7.3032, 7.3028, 7.3024, 7.3032, 7.3028, 7.3034, 7.3031, 7.3038, 7.3037, 7.3045, 7.3041, 7.3038, 7.3035, 7.306, 7.3068, 7.3064, 7.306, 7.3056, 7.3066, 7.3062, 7.3058, 7.3054, 7.305, 7.3058, 7.3054, 7.305, 7.3047, 7.3043, 7.3039, 7.3035, 7.3043, 7.3039, 7.3046, 7.3043, 7.3039, 7.3036, 7.3033, 7.3029, 7.3025, 7.3021, 7.3028, 7.3024, 7.3023, 7.3019, 7.3015, 7.3011, 7.3008, 7.302, 7.3016, 7.3013, 7.3009, 7.3016, 7.3012, 7.3009, 7.3005, 7.3002, 7.3009, 7.3016, 7.3012, 7.3009, 7.3005, 7.3002, 7.2998, 7.2994, 7.2991, 7.2987, 7.2983, 7.2979, 7.2976, 7.2973, 7.2969, 7.2966, 7.2962, 7.2958, 7.2955, 7.2952, 7.2959, 7.2967, 7.2975, 7.2972, 7.2968, 7.2967, 7.2963, 7.2961, 7.2947, 7.2943, 7.294, 7.2947, 7.2944, 7.2943, 7.295, 7.2958, 7.2956, 7.2952, 7.2948, 7.2946, 7.2942, 7.2941, 7.2937, 7.2933, 7.2941, 7.2937, 7.2933, 7.2929, 7.2926, 7.2922, 7.2918, 7.2914, 7.2921, 7.2929, 7.2925, 7.2931, 7.2929, 7.2937, 7.2933, 7.295, 7.2968, 7.2975, 7.2982, 7.2989, 7.2988, 7.2985, 7.2983, 7.2979, 7.2976, 7.2984, 7.2981, 7.2979, 7.2976, 7.2973, 7.2969, 7.2976, 7.2975, 7.2983, 7.2991, 7.2987, 7.2994, 7.2991, 7.3, 7.3009, 7.3006, 7.3014, 7.3011, 7.3008, 7.3006, 7.3013, 7.301, 7.3007, 7.3003, 7.2999, 7.2996, 7.2997, 7.2984, 7.2991, 7.2987, 7.2994, 7.2991, 7.2987, 7.2983, 7.298, 7.2976, 7.2973, 7.2969, 7.2965, 7.2962, 7.2971, 7.2968, 7.2976, 7.2974, 7.297, 7.2977, 7.2974, 7.2971, 7.2968, 7.2964, 7.2971, 7.2967, 7.2963, 7.2959, 7.2956, 7.2952, 7.2948, 7.2966, 7.2963, 7.2959, 7.2955, 7.2952, 7.2951, 7.2949, 7.2945, 7.2942, 7.2938, 7.294, 7.2937, 7.2936, 7.2932, 7.2928, 7.2914, 7.2921, 7.2917, 7.2914, 7.291, 7.2919, 7.2926, 7.2923, 7.2919, 7.2916, 7.2913, 7.2921, 7.2928, 7.2924, 7.292, 7.2916, 7.2923, 7.2919, 7.2916, 7.2924, 7.2932, 7.2928, 7.2935, 7.2931, 7.2928, 7.2924, 7.2921, 7.2918, 7.2925, 7.2921, 7.2917, 7.2913, 7.2909, 7.2905, 7.2902, 7.2899, 7.2896, 7.2894, 7.2914, 7.2913, 7.292, 7.2918, 7.2914, 7.291, 7.2906, 7.2902, 7.2899, 7.2895, 7.2902, 7.2907, 7.2903, 7.2899, 7.2897, 7.2893, 7.29, 7.2898, 7.2894, 7.2901, 7.2899, 7.2912, 7.2928, 7.2928, 7.2925, 7.2922, 7.2931, 7.2928, 7.2925, 7.2921, 7.2917, 7.2914, 7.291, 7.2907, 7.2913, 7.2909, 7.2907, 7.2915, 7.2922, 7.2919, 7.2915, 7.2922, 7.2918, 7.2925, 7.2924, 7.2922, 7.2919, 7.2916, 7.2923, 7.2919, 7.2917, 7.2915, 7.2911, 7.2907, 7.2903, 7.29, 7.2897, 7.2904, 7.2901, 7.2899, 7.2896, 7.2886, 7.2895, 7.2924, 7.292, 7.2922, 7.2929, 7.294, 7.2947, 7.2944, 7.2944, 7.294, 7.2937, 7.2944, 7.294, 7.2937, 7.2933, 7.2929, 7.2937, 7.2934, 7.2931, 7.2927, 7.2923, 7.292, 7.2916, 7.2965, 7.2961, 7.2958, 7.2954, 7.2951, 7.2949, 7.2945, 7.2952, 7.2949, 7.2957, 7.2953, 7.2951, 7.2947, 7.2954, 7.295, 7.2948, 7.2955, 7.2951, 7.2947, 7.2943, 7.294, 7.2937, 7.2934, 7.293, 7.2927, 7.2933, 7.2931, 7.2937, 7.2944, 7.2951, 7.2947, 7.2954, 7.2951, 7.2958, 7.2954, 7.2951, 7.2949, 7.2946, 7.2965, 7.2961, 7.2957, 7.2954, 7.295, 7.2949, 7.2946, 7.2942, 7.2949, 7.2946, 7.2944, 7.2941, 7.2938, 7.2935, 7.2942, 7.2949, 7.2957, 7.2979, 7.2978, 7.2975, 7.2974, 7.2971, 7.2969, 7.2966, 7.2963, 7.296, 7.2957, 7.2944, 7.2941, 7.2937, 7.2935, 7.2942, 7.2938, 7.2944, 7.2941, 7.2947, 7.2944, 7.295, 7.2948, 7.2945, 7.2941, 7.2937, 7.2943, 7.2939, 7.2946, 7.2942, 7.2938, 7.2956, 7.2963, 7.296, 7.2956, 7.2957, 7.2964, 7.2961, 7.2959, 7.2955, 7.2953, 7.295, 7.295, 7.2947, 7.2944, 7.2941, 7.2948, 7.2954, 7.2961, 7.2959, 7.2981, 7.2988, 7.2987, 7.2984, 7.2981, 7.2988, 7.2985, 7.2991, 7.2999, 7.2996, 7.2993, 7.299, 7.306, 7.3057, 7.3063, 7.306, 7.3056, 7.3063, 7.3059, 7.3057, 7.3071, 7.3078, 7.3085, 7.3082, 7.3081, 7.309, 7.3088, 7.3086, 7.3084, 7.3083, 7.308, 7.3077, 7.3064, 7.3081, 7.3078, 7.3075, 7.3072, 7.3079, 7.3075, 7.3071, 7.3067, 7.3063, 7.307, 7.3066, 7.3063, 7.3071, 7.3067, 7.3063, 7.306, 7.3057, 7.3054, 7.305, 7.3046, 7.3042, 7.3038, 7.3045, 7.3052, 7.3059, 7.3057, 7.3054, 7.3051, 7.3059, 7.3057, 7.3054, 7.3053, 7.3051, 7.3048, 7.3045, 7.3053, 7.3052, 7.3049, 7.3056, 7.3052, 7.3049, 7.3056, 7.3053, 7.305, 7.3047, 7.3045, 7.3042, 7.3039, 7.3036, 7.3033, 7.303, 7.3037, 7.3033, 7.3038, 7.3035, 7.3031, 7.306, 7.3076, 7.3063, 7.307, 7.3074, 7.3092, 7.3088, 7.3085, 7.3082, 7.3093, 7.3102, 7.31, 7.3097, 7.3104, 7.31, 7.3111, 7.3109, 7.312, 7.3117, 7.3114, 7.3115, 7.3122, 7.3118, 7.3125, 7.3121, 7.3128, 7.3135, 7.3122, 7.3129, 7.3116, 7.3112, 7.3108, 7.3104, 7.3111, 7.3108, 7.3105, 7.3113, 7.312, 7.3117, 7.3124, 7.3131, 7.3139, 7.3136, 7.3133, 7.3139, 7.3135, 7.3162, 7.3158, 7.3155, 7.3152, 7.3169, 7.3177, 7.3164, 7.3162, 7.3169, 7.3177, 7.3199, 7.3196, 7.3203, 7.32, 7.3209, 7.3217, 7.3213, 7.3231, 7.3231, 7.3238, 7.3234, 7.3235, 7.3231, 7.3241, 7.3238, 7.3234, 7.3231, 7.3238, 7.3235, 7.3232, 7.3229, 7.3226, 7.3225, 7.3222, 7.3229, 7.3226, 7.3229, 7.3239, 7.3248, 7.3268, 7.3265, 7.3276, 7.3299, 7.3306, 7.3302, 7.3298, 7.3294, 7.3291, 7.3306, 7.3302, 7.33, 7.3297, 7.3293, 7.3291, 7.3298, 7.3295, 7.3294, 7.3302, 7.3298, 7.3315, 7.3315, 7.3321, 7.3317, 7.3314, 7.3321, 7.3319, 7.3318, 7.3306, 7.3322, 7.334, 7.3357, 7.3353, 7.3351, 7.3348, 7.3354, 7.3352, 7.3359, 7.3355, 7.3362, 7.3418, 7.3415, 7.3412, 7.3418, 7.3425, 7.3421, 7.3418, 7.3414, 7.3411, 7.3408, 7.3405, 7.3402, 7.3408, 7.3405, 7.3412, 7.3419, 7.3415, 7.3411, 7.3407, 7.3414, 7.343, 7.3437, 7.3444, 7.344, 7.3436, 7.3443, 7.3449, 7.3458, 7.3485, 7.3491, 7.3487, 7.3484, 7.3491, 7.3488, 7.3486, 7.3496, 7.3493, 7.349, 7.3487, 7.3491, 7.3489, 7.3485, 7.3481, 7.3478, 7.3474, 7.3472, 7.3469, 7.3466, 7.3462, 7.346, 7.3456, 7.3453, 7.3459, 7.3455, 7.3451, 7.3447, 7.3444, 7.345, 7.3457, 7.3453, 7.346, 7.3469, 7.3468, 7.3465, 7.3472, 7.347, 7.3467, 7.3466, 7.3473, 7.3471, 7.3471, 7.3479, 7.3476, 7.3473, 7.3472, 7.3469, 7.3477, 7.3484, 7.3481, 7.3489, 7.3485, 7.3485, 7.3492, 7.3489, 7.3485, 7.3482, 7.3479, 7.3476, 7.3474, 7.3471, 7.3478, 7.3475, 7.3474, 7.3473, 7.347, 7.3467, 7.3464]}
rtt1_10_10 = {'192.168.122.110': [5.4743, 5.3494, 6.1264, 5.6801, 5.6803, 5.3401, 5.5432, 5.4164, 6.2985, 6.6202, 5.5289, 14.8401, 5.5702, 5.594, 11.6262, 10.8125, 10.9787, 5.5699, 12.6357, 5.3196, 5.4703, 5.3272, 10.9894, 5.5265, 11.3788, 10.9804, 5.4898, 10.4806, 23.1249, 5.6422, 5.4572, 5.3451, 11.3616, 5.2958, 5.9364, 5.4667, 5.4507, 5.441, 6.0833, 10.7987, 11.8411, 5.3022, 11.9996, 10.7069, 5.4467, 11.6322, 6.592, 6.022, 10.7489, 5.2631, 5.5406, 5.5821, 5.2407, 11.6687, 5.9304, 10.9615, 5.8081, 33.3328, 6.1343, 6.3047, 21.8408, 5.4445, 6.2957, 6.2585, 5.8463, 5.3413, 6.4957, 6.7782, 21.9529, 16.515, 5.4755, 0.9091, 0.4644, 6.5014, 5.9791, 5.6658, 5.5196, 5.7685, 5.2876, 5.2054, 17.5219, 5.3947, 16.3548, 0.7474, 10.7291, 5.2938, 6.4175, 6.8312, 6.2172, 6.3863, 21.137, 5.4495, 5.4929, 5.4345, 10.6258, 5.6434, 5.3189, 5.6965, 11.7466, 6.9067, 10.9591, 5.5227, 6.5694, 22.2669, 5.7185, 5.5363, 6.5701, 5.455, 10.9699, 6.2227, 6.3012, 6.516, 5.4939, 5.4932, 5.8544, 5.6686, 6.0461, 27.2543, 5.5583, 5.3248, 5.5125, 5.5528, 6.2103, 5.6121, 5.4743, 6.1758, 5.3842, 6.3469, 5.3337, 10.8922, 5.5189, 5.6913, 5.4085, 5.6396, 11.106, 6.7394, 5.296, 10.7758, 5.656, 11.0726, 5.3959, 10.8948, 5.2907, 6.511, 5.569, 5.9936, 5.7356, 14.2839, 5.8472, 10.8278, 6.3822, 5.4469, 10.6931, 10.8459, 6.4785, 10.8137, 5.5666, 5.5635, 12.5484, 5.6248, 6.427, 6.3379, 5.4667, 5.4395, 5.2822, 5.4109, 5.5265, 5.8708, 5.8453, 6.2609, 5.7456, 11.7643, 5.3473, 5.476, 5.6963, 6.3882, 10.4949, 6.3829, 6.8102, 5.2857, 5.7788, 11.0006, 5.3694, 5.7604, 23.735, 5.3227, 5.5065, 6.1221, 5.1913, 11.152, 5.9829, 16.3114, 6.7067, 5.6107, 8.0097, 6.3746, 5.2645, 6.9292, 5.2867, 5.5764, 5.5425, 6.4383, 5.7833, 11.4999, 6.3012, 6.2726, 5.445, 5.2209, 11.9107, 11.3051, 5.9257, 6.5377, 5.2853, 5.3957, 5.4581, 10.7422, 6.3646, 6.6261, 5.7766, 5.4898, 5.6274, 10.8774, 11.0016, 5.7914, 11.2855, 5.3668, 6.546, 6.3241, 5.3051, 11.2097, 5.5707, 11.1802, 11.1029, 6.1684, 5.4333, 15.8582, 10.6881, 5.4381, 5.7445, 8.7867, 5.2938, 5.6846, 5.5652, 10.9668, 5.3103, 5.4123, 5.698, 0.8152, 10.8788, 10.9882, 6.3384, 6.8235, 7.5333, 5.6643, 6.3145, 0.6075, 5.8537, 6.4731, 5.5528, 20.8216], '192.168.122.119': [5.4898, 5.919, 6.7711, 5.2445, 5.2905, 5.3098, 5.8281, 10.7565, 5.4014, 13.5603, 5.7003, 5.8727, 11.0471, 5.5137, 10.8557, 5.8224, 6.4499, 24.4725, 11.3716, 5.4255, 10.9782, 10.4616, 6.2904, 5.4467, 10.8597, 10.9363, 5.6229, 16.7565, 5.877, 10.4945, 5.3318, 5.542, 5.6205, 16.8185, 10.9622, 5.3828, 6.4118, 5.3456, 5.4064, 5.3928, 5.4896, 5.8503, 5.6958, 5.3024, 5.475, 5.6107, 6.0146, 16.7425, 10.8192, 5.2273, 16.3898, 10.8778, 11.4644, 6.0124, 5.7871, 5.3637, 5.5304, 11.7137, 11.1263, 5.3613, 10.4384, 5.3878, 10.8862, 10.9916, 10.9594, 5.3585, 5.4331, 7.3013, 10.8259, 5.9388, 5.5115, 0.5364, 0.5891, 5.4049, 5.9817, 5.4824, 7.1023, 16.5668, 5.4951, 5.4069, 11.6518, 10.9286, 10.8345, 5.8467, 5.4271, 5.9061, 13.2456, 5.2836, 11.1167, 11.148, 10.7279, 10.9055, 5.4636, 5.9381, 22.9683, 5.6794, 10.7844, 5.8198, 17.4716, 5.4989, 10.993, 11.0393, 6.3081, 6.1691, 6.0198, 5.945, 6.3927, 5.4533, 5.4841, 5.8484, 6.0582, 5.5015, 5.625, 5.5456, 10.9801, 5.2819, 10.5765, 5.4252, 19.6426, 5.3465, 5.5754, 11.1749, 5.3058, 5.6498, 5.9011, 0.644, 11.2929, 15.9781, 11.4264, 5.2335, 5.7051, 5.5268, 5.2688, 10.7658, 10.7017, 12.5816, 5.2266, 5.3725, 10.7448, 6.0303, 11.0171, 5.9261, 5.3606, 5.2724, 5.2636, 26.511, 5.9009, 21.9893, 5.4874, 10.9386, 10.7448, 5.5079, 6.3021, 17.1671, 5.3065, 5.4631, 6.0165, 9.0578, 11.044, 5.518, 5.4498, 10.9499, 5.4224, 5.542, 5.302, 5.82, 5.7111, 11.3692, 11.0817, 5.929, 5.3217, 5.7762, 5.4481, 16.5856, 5.4946, 10.6585, 11.1673, 6.9637, 5.6748, 5.5888, 6.3992, 10.8473, 10.7732, 16.6087, 5.4793, 5.975, 5.4915, 10.9563, 5.271, 5.827, 12.2826, 6.0644, 5.7049, 11.3771, 5.6684, 5.6212, 5.2674, 11.1482, 5.7185, 5.6334, 5.4281, 10.838, 5.5118, 10.8888, 5.713, 11.1566, 5.24, 10.7176, 12.8064, 5.3928, 5.5861, 5.3971, 5.6679, 5.5494, 16.968, 6.0961, 10.9053, 5.6844, 5.4803, 5.527, 5.599, 5.6212, 5.7688, 5.7414, 5.6877, 5.8517, 5.4612, 10.6704, 5.9419, 6.2554, 5.5091, 6.0782, 5.8572, 5.7411, 11.004, 10.6072, 10.7634, 5.4922, 5.7762, 5.6558, 5.1851, 10.9708, 11.4434, 5.4357, 5.4388, 11.147, 6.2675, 0.906, 5.3129, 5.384, 10.9529, 5.3039, 5.1785, 5.7895, 10.8387, 33.2687, 5.6701, 5.6181, 10.9911, 5.2526], '192.168.122.118': [5.4932, 6.741, 13.7329, 5.3694, 10.7343, 10.6883, 5.9149, 10.8676, 5.3399, 12.2643, 11.2214, 11.4198, 5.5759, 6.5, 5.7254, 9.3093, 6.3152, 5.2717, 10.9355, 10.4573, 5.317, 18.4543, 10.8523, 11.1532, 5.6581, 10.9608, 5.3105, 5.6059, 11.3153, 5.7623, 5.6119, 5.6672, 5.295, 5.5254, 11.6978, 10.9184, 5.6467, 5.3701, 5.4529, 5.7921, 5.342, 5.8913, 11.4024, 5.3494, 6.0501, 5.8522, 10.7019, 6.4688, 5.4855, 16.0036, 10.9708, 10.9138, 1.1065, 6.3324, 5.4116, 5.5566, 5.8243, 5.4085, 10.5448, 5.7404, 5.2216, 10.8778, 10.8514, 16.7749, 5.5711, 10.5197, 5.6846, 6.6671, 10.6506, 5.5289, 6.0191, 5.8439, 0.6707, 18.2981, 6.3095, 5.7864, 6.7644, 11.2553, 9.9149, 5.2567, 5.3689, 5.2924, 10.9742, 10.9212, 11.8072, 10.5462, 5.3427, 5.9855, 5.4314, 6.1338, 33.2661, 10.9398, 5.4159, 5.945, 11.2257, 11.3034, 5.444, 15.9364, 5.8615, 6.2366, 5.4998, 6.0277, 5.4309, 10.7667, 5.5897, 11.256, 13.4068, 6.6998, 6.2673, 6.0463, 18.5568, 5.4524, 5.6093, 5.718, 5.4567, 10.6497, 5.8208, 5.4152, 11.0762, 6.402, 5.5737, 5.3294, 5.8362, 5.4877, 5.7259, 0.5834, 6.1448, 1.235, 5.5261, 5.2149, 5.5528, 6.305, 6.3164, 10.7191, 11.214, 5.4088, 10.8089, 10.8423, 11.6351, 11.338, 5.5766, 5.8722, 5.4781, 5.2941, 5.2369, 5.6975, 5.4667, 5.4674, 5.5254, 11.2319, 10.6394, 11.1907, 16.5973, 10.9992, 11.0497, 10.9663, 5.8746, 16.9024, 5.5325, 10.4542, 17.0829, 10.6478, 5.3453, 5.3427, 5.3196, 5.491, 5.2917, 5.2354, 11.0457, 5.3377, 10.7319, 5.564, 5.4886, 11.5385, 5.6047, 17.4575, 6.2525, 5.9233, 5.3422, 5.2617, 5.476, 10.9489, 10.8767, 21.8668, 5.4626, 5.419, 5.6264, 22.4032, 11.4903, 16.3026, 5.6336, 5.2965, 5.6417, 5.4524, 5.6951, 6.3744, 5.2326, 5.4822, 10.7915, 0.5202, 6.0656, 5.8703, 5.6894, 11.6401, 10.8273, 6.31, 5.4677, 5.77, 10.875, 10.8922, 16.6881, 5.8985, 5.4235, 5.4407, 10.9117, 5.5206, 5.4283, 6.2072, 5.2171, 12.5566, 10.7315, 5.7945, 5.2872, 5.6174, 5.9257, 5.9726, 5.6581, 5.4617, 5.3074, 5.4202, 5.6307, 10.7894, 5.5704, 5.6839, 16.4981, 5.2588, 5.3735, 5.2896, 11.3013, 5.3105, 11.2157, 10.9639, 7.324, 10.8273, 5.9409, 5.8274, 5.6567, 0.6344, 5.6224, 5.4834, 11.5101, 6.2382, 5.5153, 5.9047, 6.0086, 11.2641, 6.6147, 5.8818, 5.7783, 6.1812], '192.168.122.120': [6.1116, 5.3353, 11.3487, 5.7242, 11.0874, 5.2655, 16.2282, 5.7423, 5.3267, 9.0251, 17.2536, 11.6396, 5.5244, 5.2896, 5.6782, 5.8973, 6.1352, 5.5456, 11.0059, 5.2879, 5.4467, 5.5439, 5.2941, 5.3864, 5.6331, 5.5242, 21.9083, 5.374, 5.3971, 11.0123, 10.8097, 5.5568, 5.5971, 5.4128, 5.9462, 5.4154, 10.7737, 10.989, 5.6798, 5.3849, 9.45, 5.3978, 5.4963, 5.2812, 11.0216, 5.8119, 5.897, 23.1369, 10.9291, 0.6161, 5.996, 5.8377, 1.2133, 10.8404, 5.7027, 11.7779, 21.5104, 5.5432, 5.7654, 17.3147, 5.4817, 5.3341, 5.4538, 5.4812, 5.4722, 27.8423, 5.6798, 6.7728, 5.5637, 5.8413, 5.4357, 5.2822, 0.7839, 5.3542, 5.872, 11.3769, 11.0967, 6.0384, 5.6841, 10.8836, 5.2645, 5.4138, 10.9012, 5.4274, 5.3608, 5.4324, 6.2892, 5.662, 5.8053, 5.8661, 5.3248, 5.4049, 5.3363, 5.9381, 5.4018, 5.6789, 11.2402, 5.5196, 5.6753, 6.4056, 10.9348, 6.0232, 5.8949, 5.7404, 5.4679, 6.8021, 5.9726, 5.2412, 5.4071, 16.4297, 5.4803, 6.0315, 11.3254, 5.5494, 5.2872, 5.2793, 10.9229, 5.6581, 5.46, 5.9896, 6.0754, 6.202, 5.306, 6.3028, 11.0803, 6.0639, 16.9163, 10.5557, 10.8595, 10.859, 16.8014, 5.3117, 10.9107, 5.3797, 11.1239, 11.1036, 5.4419, 5.4796, 11.1086, 16.5401, 5.9202, 10.8593, 10.7396, 5.4264, 5.399, 11.2166, 5.6903, 11.492, 10.8945, 10.9515, 6.2115, 5.4445, 6.2311, 17.3712, 5.8904, 5.7096, 5.4774, 5.6701, 5.578, 11.27, 5.3258, 5.4817, 6.3667, 6.3579, 10.4315, 5.9371, 11.0972, 5.4696, 16.6979, 11.034, 11.1206, 5.8451, 5.2516, 5.4555, 10.7384, 5.8475, 5.6763, 5.8441, 5.6963, 5.2702, 10.4153, 5.2941, 5.4379, 5.363, 5.4901, 5.5587, 10.7656, 7.0906, 6.1953, 5.6214, 5.4896, 10.9825, 5.7275, 6.6645, 5.615, 22.2278, 5.2676, 10.8421, 5.3174, 5.3921, 0.4516, 22.5308, 5.6882, 5.5971, 5.4665, 5.4622, 5.4295, 6.314, 29.145, 11.4627, 5.6052, 5.4595, 10.5324, 5.4398, 5.9075, 23.3541, 5.9478, 5.5094, 5.543, 5.3835, 5.4955, 5.538, 10.6397, 10.8085, 6.299, 10.4804, 5.5323, 5.482, 10.664, 5.8954, 5.307, 11.0261, 6.0391, 6.2001, 10.8628, 5.6567, 10.7234, 5.5945, 5.6965, 5.4617, 10.848, 5.4936, 10.7398, 10.9916, 10.7853, 6.5479, 10.9878, 0.7052, 10.3955, 10.9072, 11.0652, 5.7919, 11.4145, 5.7149, 11.2021, 29.7606, 5.8854, 6.5169, 11.0128, 10.6828], '192.168.122.115': [6.4092, 5.2743, 10.5462, 11.2517, 10.5469, 10.4134, 10.7787, 6.3963, 5.4398, 7.642, 11.4563, 10.8757, 5.4893, 5.5177, 5.5668, 5.2845, 5.8093, 5.3689, 10.8707, 10.5224, 11.2782, 5.5268, 6.4454, 10.8976, 5.2173, 10.7906, 10.9456, 6.027, 5.414, 10.7725, 10.6978, 5.5809, 5.4982, 11.0278, 5.9888, 5.8873, 10.4814, 5.527, 5.9075, 5.4083, 0.8283, 5.4393, 5.383, 11.3084, 5.4314, 10.0775, 10.7772, 10.8137, 5.4505, 0.5379, 11.0035, 5.6696, 0.6967, 10.8101, 5.3711, 10.9048, 11.2934, 5.9323, 0.5519, 16.3589, 5.5869, 0.845, 15.9073, 5.6098, 10.6206, 10.8857, 5.2145, 6.6352, 6.0742, 5.6589, 16.1438, 0.4218, 6.1021, 5.2688, 6.0766, 6.0387, 6.0267, 12.8775, 5.2907, 22.0454, 11.57, 16.4146, 5.4913, 5.3639, 5.3577, 10.8924, 10.6194, 5.5974, 5.2309, 5.7628, 10.7965, 11.3766, 5.46, 5.9638, 5.404, 11.2782, 10.8795, 11.2734, 0.4916, 5.3756, 5.4097, 5.4514, 5.8763, 5.9769, 6.1285, 5.2953, 5.2507, 5.3458, 5.9936, 10.9627, 5.3921, 5.4505, 22.1748, 10.9146, 16.4201, 5.3327, 5.2617, 11.2472, 5.3711, 5.3549, 12.7895, 5.9507, 5.2822, 10.9668, 10.9756, 19.1066, 5.9116, 6.2358, 6.0821, 5.1992, 5.4114, 5.7127, 5.5518, 5.3551, 11.2429, 5.439, 5.5153, 6.639, 5.332, 22.4376, 10.9677, 5.2578, 5.2166, 10.8654, 10.5264, 10.5777, 10.9954, 11.2135, 10.9448, 10.9818, 5.4164, 6.1154, 6.057, 5.9032, 6.7356, 5.4333, 6.4015, 10.6466, 6.0294, 5.4765, 10.8759, 10.9653, 11.0776, 5.486, 5.3647, 16.5496, 5.5263, 5.7211, 6.0699, 5.3418, 5.4054, 0.6342, 5.4326, 5.3573, 10.9713, 17.205, 16.2618, 7.9532, 5.2166, 5.2159, 11.0917, 10.8378, 5.4493, 10.8902, 5.1906, 5.482, 5.5535, 5.6505, 5.2464, 5.6517, 11.2219, 5.9144, 6.4373, 6.413, 5.6467, 5.5647, 5.3053, 15.9931, 5.4026, 5.893, 6.175, 5.6071, 5.6586, 5.7728, 10.988, 5.8949, 10.8426, 10.9715, 11.4114, 5.7051, 5.619, 10.7677, 5.4753, 5.4083, 11.06, 16.7642, 10.973, 5.9323, 11.4679, 27.7224, 6.0279, 5.5704, 5.2576, 5.5757, 5.3599, 5.682, 10.8745, 10.7558, 10.5917, 10.9646, 10.5798, 6.1214, 11.8647, 10.3481, 5.9297, 10.6416, 5.2614, 21.9574, 6.1765, 5.5361, 5.4634, 5.4507, 6.9408, 11.095, 10.7272, 20.4568, 11.0469, 0.8869, 5.2862, 5.4502, 11.3778, 6.1541, 10.4156, 5.4941, 5.6946, 11.4553, 6.6714, 10.9401, 5.7302, 5.7421], '192.168.122.116': [6.7875, 11.6584, 6.2265, 21.3084, 5.7273, 5.7075, 5.2814, 5.3003, 5.2848, 33.3142, 5.6007, 5.619, 5.7132, 5.441, 6.3224, 5.5742, 5.5151, 6.0394, 10.865, 10.4423, 22.7954, 5.4924, 31.1017, 10.8721, 10.7422, 10.9107, 5.5661, 5.8532, 5.8703, 5.6324, 10.9894, 5.5606, 5.5971, 16.2289, 10.8826, 5.5258, 10.8917, 5.3835, 6.0017, 5.4014, 5.6338, 10.9382, 5.43, 16.6547, 6.238, 5.2712, 5.7361, 10.7784, 5.3558, 0.4265, 5.5065, 6.007, 0.4406, 10.9715, 0.6127, 5.6813, 11.066, 32.939, 0.3369, 21.7905, 27.2505, 0.8023, 21.9402, 5.5294, 16.1669, 16.5114, 11.6334, 5.4858, 10.7136, 10.6645, 5.7068, 0.5829, 11.1232, 6.1817, 6.7155, 10.6843, 11.3978, 5.9545, 15.6221, 5.4252, 5.1899, 5.4803, 10.5314, 10.8042, 5.3566, 10.54, 5.3601, 6.5236, 5.5034, 5.7023, 5.8224, 6.5405, 10.9193, 5.455, 5.2702, 5.7447, 6.3379, 10.7427, 6.0863, 5.4331, 5.466, 10.8538, 17.0724, 10.371, 5.4791, 5.3787, 5.8527, 5.9435, 5.9016, 10.8213, 10.8294, 5.4231, 10.9987, 5.8115, 5.774, 5.321, 10.8502, 5.4202, 5.4595, 6.0201, 5.2886, 10.4327, 5.4259, 11.2205, 10.9937, 11.0195, 5.9218, 6.2857, 5.4624, 5.3728, 5.2505, 10.6316, 5.3823, 10.7536, 6.0892, 10.9868, 10.8294, 6.3384, 5.5368, 11.0741, 5.8143, 16.5162, 22.0973, 5.4021, 5.9607, 10.7958, 5.7189, 10.8459, 10.8404, 5.4824, 5.8155, 12.4726, 10.8562, 10.8721, 5.9071, 5.5385, 10.9143, 5.5242, 10.778, 5.9063, 5.4216, 10.9925, 5.8801, 11.0478, 33.6385, 10.6065, 27.6418, 5.5621, 10.7079, 5.276, 6.1831, 1.08, 22.1651, 5.4264, 5.919, 5.326, 5.2049, 0.5455, 5.3849, 5.3413, 27.5276, 10.7827, 16.3877, 6.0539, 5.564, 5.4095, 5.9707, 5.4028, 16.6113, 11.3237, 5.6691, 5.7933, 5.486, 11.3735, 5.6953, 5.7182, 16.6574, 10.5402, 5.4827, 5.4111, 5.6713, 11.4784, 6.758, 10.9766, 10.8054, 5.9066, 10.9401, 11.5054, 5.6641, 11.2276, 5.5952, 5.2099, 5.8053, 5.4963, 6.0668, 10.9842, 5.5146, 5.7471, 16.609, 21.6875, 11.137, 5.5573, 5.3959, 5.6658, 11.57, 5.8498, 11.6727, 5.326, 6.6059, 5.4481, 10.9422, 16.324, 5.8007, 5.4462, 5.6865, 10.6394, 10.8354, 10.793, 5.8041, 5.2636, 5.3835, 6.1176, 5.4736, 5.6126, 5.4402, 5.2309, 5.7783, 0.55, 10.8476, 16.4533, 5.6126, 5.626, 5.5385, 5.7442, 5.6117, 5.6069, 5.4462, 11.179, 27.307, 10.8814], '192.168.122.114': [6.6602, 21.8852, 10.5515, 10.7384, 5.3139, 5.2032, 10.8378, 5.3453, 5.4469, 11.3225, 5.7368, 0.5617, 6.1603, 6.4385, 5.2454, 21.4033, 9.8453, 0.5288, 6.2032, 10.8514, 10.9289, 6.386, 5.4474, 5.8727, 10.9434, 10.7694, 5.816, 5.5585, 11.3146, 10.4733, 5.4173, 11.1101, 5.7256, 5.4514, 5.5656, 5.9841, 5.5256, 12.8391, 5.3346, 5.3873, 5.2829, 10.6404, 5.2984, 10.735, 11.3688, 5.2152, 11.6599, 5.4834, 5.2633, 0.7706, 5.9247, 11.297, 0.6936, 10.814, 0.6723, 5.8286, 21.5101, 5.6531, 16.9098, 5.9524, 5.6846, 1.9381, 5.7724, 5.2226, 16.7112, 10.9046, 28.079, 6.5997, 5.4221, 5.3272, 5.2323, 0.6273, 5.3895, 0.8469, 10.8831, 5.3515, 10.9792, 5.6858, 10.6702, 5.4193, 10.6556, 10.8099, 10.7358, 16.3391, 10.8671, 5.5833, 5.3592, 5.6574, 5.4653, 0.8097, 10.8008, 10.9386, 5.4307, 5.481, 5.2984, 5.8599, 10.946, 11.0021, 10.8867, 5.3613, 5.3978, 5.3871, 10.9761, 5.5594, 5.224, 5.3334, 10.7236, 5.9152, 5.5037, 10.8681, 5.8761, 11.0388, 10.8972, 10.9205, 5.6214, 5.2702, 5.4736, 5.9876, 5.487, 5.8632, 5.671, 5.5416, 5.7781, 10.6444, 11.0345, 5.3198, 5.2545, 6.8128, 5.3844, 0.7143, 5.2736, 10.8373, 10.6473, 6.4766, 5.4076, 5.429, 5.6283, 11.054, 5.2774, 16.6681, 6.4287, 10.8495, 5.5344, 11.0664, 5.8348, 11.538, 5.5003, 5.7039, 5.3973, 5.8177, 10.7541, 11.601, 5.4624, 5.4364, 5.8844, 5.4607, 10.9727, 5.7366, 5.6095, 5.4739, 5.4507, 6.1328, 22.465, 5.7323, 5.5311, 6.263, 5.4953, 5.4088, 10.946, 5.6095, 10.9441, 0.9241, 13.8288, 10.8461, 6.3396, 5.9497, 5.8663, 5.8923, 5.4107, 10.5145, 27.3979, 5.8808, 6.2306, 11.0424, 5.4908, 5.5108, 6.0928, 7.2417, 5.2519, 11.4858, 28.2805, 5.6825, 5.61, 5.6183, 11.3459, 10.9723, 5.2614, 5.3639, 5.4107, 10.9742, 5.7142, 5.4798, 5.8181, 5.6889, 5.3797, 11.7629, 5.2879, 6.227, 5.3415, 5.2862, 11.1279, 10.7405, 5.4114, 5.3906, 10.9589, 5.3573, 10.8845, 21.9774, 10.8154, 10.8302, 5.5079, 5.5127, 5.3568, 5.7037, 26.2206, 5.8692, 5.446, 10.8614, 5.9435, 10.8948, 5.6939, 11.6425, 5.7316, 10.802, 30.3447, 10.4902, 11.0106, 11.0421, 6.2957, 5.7051, 5.4638, 11.0457, 10.6692, 6.2907, 5.9161, 6.4955, 5.4996, 0.7539, 11.1368, 5.8808, 11.5318, 10.7872, 5.5764, 5.4448, 5.6229, 5.7142, 5.4033, 6.5389, 10.3779, 10.5212], '192.168.122.113': [6.1097, 10.6566, 10.5853, 5.9462, 5.2862, 5.3642, 5.4536, 6.1572, 5.5923, 5.3971, 5.5206, 0.6919, 5.2652, 6.1638, 27.5834, 5.9998, 15.9521, 5.9268, 11.0595, 11.0445, 5.4104, 5.3883, 10.8278, 5.5466, 22.8617, 5.3542, 5.4598, 10.5743, 14.2767, 10.9401, 10.9687, 5.4798, 11.121, 5.4076, 5.4812, 6.4089, 0.6022, 20.9394, 5.336, 5.2462, 10.6268, 5.3275, 10.9079, 5.3456, 5.2767, 11.3921, 5.5587, 5.4827, 10.9241, 0.5558, 5.5449, 5.4462, 0.3741, 5.3287, 0.7129, 7.2215, 5.6663, 6.3317, 10.8392, 10.8936, 5.8303, 0.7582, 5.4543, 5.4324, 10.8788, 5.2931, 11.5926, 10.9506, 10.8185, 5.4824, 10.9649, 0.6731, 5.4259, 0.6688, 5.2674, 10.7324, 6.2621, 6.0894, 5.347, 5.3053, 10.6015, 5.4255, 9.4392, 5.4367, 5.4882, 5.6818, 10.9305, 11.426, 5.4784, 5.7657, 5.2328, 5.3585, 10.8802, 5.5373, 10.7126, 5.8601, 5.4152, 10.855, 11.8136, 10.7396, 5.8227, 5.4305, 10.9522, 5.8999, 6.0475, 6.012, 6.1071, 10.7541, 5.3461, 10.9253, 5.6303, 5.7094, 10.9172, 11.3692, 10.7694, 5.3012, 5.415, 5.3394, 5.3108, 11.1151, 5.4915, 20.6103, 5.8262, 11.1272, 5.4579, 23.2859, 10.6652, 11.3075, 5.4064, 6.2075, 10.4077, 10.2885, 5.672, 10.7863, 17.2386, 6.2072, 16.341, 10.9558, 5.5611, 6.0778, 10.9425, 10.8809, 5.5501, 5.5799, 11.1926, 6.1927, 6.0468, 5.3177, 10.803, 11.6098, 10.653, 6.3229, 6.8505, 10.89, 10.844, 10.6709, 5.465, 11.1008, 5.9712, 5.82, 10.7651, 6.3798, 5.4872, 16.1545, 5.6274, 6.2208, 5.3468, 5.3067, 5.6455, 32.4721, 5.3725, 0.6196, 5.3515, 6.1443, 5.3289, 5.8408, 10.5515, 5.8451, 5.2075, 5.2493, 6.038, 0.8898, 0.479, 5.4631, 10.9499, 5.5001, 5.6102, 5.4748, 5.7282, 6.1636, 6.8934, 10.7191, 11.6618, 5.8141, 11.0447, 5.6381, 5.3296, 10.7074, 11.4055, 10.963, 5.3792, 5.4297, 16.5396, 11.4932, 5.9912, 16.398, 10.8953, 21.0927, 10.9653, 5.4317, 5.4765, 10.6459, 10.3998, 5.4512, 11.0452, 16.9373, 5.3306, 5.4457, 10.7601, 10.7872, 5.486, 5.5089, 5.8868, 5.6283, 5.7862, 5.3961, 5.4438, 10.8128, 10.6032, 5.3902, 6.258, 5.4159, 11.1475, 5.2845, 5.4643, 10.6311, 5.3408, 5.8224, 5.7006, 5.595, 10.8099, 11.0126, 10.896, 12.9991, 10.89, 9.4335, 5.6505, 0.8337, 6.0415, 18.8353, 5.62, 5.5707, 17.1678, 5.7042, 11.3492, 7.1552, 8.1553, 5.4774, 5.6338, 10.798], '192.168.122.112': [6.6125, 5.5645, 10.5946, 11.8713, 15.9001, 11.2586, 10.8254, 16.2265, 10.9048, 6.3736, 5.605, 0.6585, 5.3959, 5.825, 11.2498, 5.2698, 5.7843, 5.2419, 5.8157, 10.6268, 5.3747, 6.341, 10.8926, 5.4038, 11.3842, 5.3983, 5.5132, 5.2459, 10.7982, 5.7573, 5.2838, 5.5094, 5.5149, 5.2421, 5.3141, 6.1073, 0.7484, 5.4691, 5.6562, 5.4846, 5.4369, 11.2696, 16.4752, 5.4097, 5.4548, 10.4196, 5.4026, 5.2888, 10.7374, 0.4601, 5.4896, 22.3451, 0.4125, 5.4975, 0.5937, 5.7178, 10.2999, 5.7499, 10.6742, 5.3937, 5.645, 0.5991, 5.4739, 10.69, 5.4615, 16.9995, 5.4548, 5.8846, 10.7071, 5.9607, 10.8147, 0.6783, 5.4412, 0.7348, 5.43, 5.3463, 5.6548, 5.3339, 10.7553, 5.4016, 5.5573, 5.3976, 21.6773, 5.5156, 11.0281, 10.3321, 5.2509, 5.8064, 5.7478, 11.3142, 10.581, 5.4367, 10.8495, 5.7001, 5.5792, 6.1207, 10.6704, 5.6777, 6.0284, 10.8283, 10.9849, 5.4097, 10.5689, 10.7875, 10.6878, 5.6207, 5.3773, 5.6381, 6.0358, 10.823, 10.9692, 5.2927, 10.9136, 7.3903, 5.2962, 5.4252, 5.8789, 5.4719, 16.3779, 22.0606, 16.4299, 10.8323, 21.1756, 5.7018, 11.0683, 5.7487, 5.3816, 5.645, 10.9463, 5.2621, 10.3791, 5.7228, 16.4721, 5.8875, 5.8603, 5.2803, 6.0284, 5.4231, 5.2381, 10.5226, 5.3709, 5.3816, 5.4293, 11.0567, 6.2199, 11.3499, 16.7074, 5.5611, 11.121, 11.5423, 10.4482, 5.5156, 21.7669, 10.92, 10.8056, 6.2876, 10.9017, 5.6219, 10.8156, 5.3685, 5.8391, 6.1989, 5.5017, 5.5075, 10.6542, 5.8732, 11.1272, 5.4305, 10.7915, 10.9906, 5.512, 3.5157, 5.3892, 10.5278, 5.4975, 5.4121, 5.3742, 5.8405, 5.9125, 5.2276, 5.6586, 6.9728, 0.7064, 5.3751, 6.356, 6.4003, 5.6314, 5.7282, 21.2114, 5.6839, 5.4758, 5.7142, 5.8277, 5.496, 11.5471, 5.5695, 10.926, 6.2068, 6.1648, 10.993, 5.5561, 5.6152, 10.8273, 5.867, 21.6129, 6.0785, 11.2967, 5.2211, 10.4733, 5.3942, 11.0958, 5.9552, 6.0847, 5.4493, 11.1403, 5.3926, 10.9742, 5.4233, 5.5892, 5.4414, 5.6138, 6.4259, 5.348, 0.622, 6.2153, 5.47, 10.9148, 5.4493, 5.8701, 10.7257, 6.2494, 5.9736, 0.9689, 11.4861, 5.4505, 5.1975, 5.1951, 11.0641, 11.4124, 5.9161, 5.4262, 11.0803, 28.1923, 5.5428, 11.0164, 6.4774, 10.9408, 0.5114, 16.1619, 26.4544, 5.758, 5.9094, 5.533, 5.3537, 11.272, 10.9181, 10.9501, 29.7203, 10.3443, 10.9313]}
cpu1_10_10 = [10.4, 57.2, 2.3, 3.6, 1.4, 0.3, 0.4, 0.5, 0.3, 0.3, 0.0, 0.6, 0.3, 1.3, 0.8, 0.1, 0.5, 0.2, 0.8, 1.2, 0.0, 0.8, 0.5, 0.1, 0.6, 0.0, 0.2, 0.1, 0.0, 0.0, 0.0, 0.1, 0.3, 0.2, 0.0, 0.1, 1.7, 2.2, 0.4, 0.5, 0.5, 0.1, 0.2, 0.2, 0.1, 0.3, 0.7, 0.9, 0.8, 0.2, 0.0, 0.4, 0.6, 1.0, 0.7, 2.4, 2.1, 0.1, 0.0, 0.0, 0.2, 0.2, 0.5, 0.9, 0.4, 0.2, 0.2, 0.5, 0.5, 0.2, 0.3, 0.7, 0.6, 0.1, 0.3, 1.2, 1.5, 1.8, 0.8, 0.8, 0.2, 0.2, 0.0, 0.4, 1.2, 0.7, 0.5, 1.6, 1.3, 0.1, 0.0, 0.4, 0.5, 0.1, 0.4, 0.0, 0.3, 0.5, 0.9, 1.1, 0.5, 2.1, 1.7, 0.7, 0.4, 0.3, 1.4, 1.2, 0.5, 0.2, 1.2, 0.4, 0.6, 0.9, 0.0, 0.7, 0.4, 0.0, 0.9, 1.0, 0.7, 0.1, 1.2, 0.9, 0.4, 0.7, 0.3, 1.1, 0.9, 0.1, 0.3, 0.6, 0.2, 0.4, 0.2, 0.5, 0.9, 0.3, 0.3, 0.5, 0.1, 0.7, 0.0, 0.7, 0.1, 0.8, 1.1, 0.8, 2.0, 3.2, 2.6, 0.2, 0.2, 0.4, 0.1, 0.3, 0.5, 1.3, 1.2, 0.3, 0.1, 0.5, 0.3, 1.1, 5.5, 4.8, 0.2, 0.4, 0.4, 1.4, 0.7, 0.2, 0.0, 0.4, 1.1, 0.6, 0.3, 0.1, 0.2, 0.4, 0.7, 0.4, 1.7, 1.8, 0.2, 0.5, 0.8, 0.5, 0.2, 0.2, 0.4, 0.1, 0.2, 0.5, 1.2, 0.4, 0.0, 0.5, 0.3, 0.1, 0.2, 0.1, 0.3, 0.4, 0.1, 0.3, 0.1, 0.1, 0.2, 0.2, 0.2, 1.3, 1.2, 5.0, 5.5, 0.4, 1.0, 0.9, 0.1, 0.3, 0.4, 0.2, 0.5, 0.5, 0.0, 0.8, 0.9, 0.1, 0.5, 3.2, 2.6, 3.5, 3.5, 2.2, 2.3, 0.6, 0.2, 0.6, 0.1, 3.2, 3.4, 0.2, 0.4, 0.8, 0.0, 0.7, 0.4, 0.0, 0.3, 0.1, 0.2, 0.8, 0.2, 1.0, 0.7, 2.1, 1.1, 0.7, 0.7, 0.4]
off_mec1_10_10 = 54
off_cloud1_10_10 = 114
inward_mec1_10_10 = 31
loc1_10_10 = 706
deadlock1_10_10 = [4]
memory1_10_10 = [0.2187, 0.2188, 0.2189, 0.2191, 0.2192, 0.2195, 0.2195, 0.2195, 0.2196, 0.2196, 0.2197, 0.2198, 0.2198, 0.2198, 0.2199, 0.2199, 0.22, 0.2202, 0.2204, 0.2204, 0.2205, 0.2205, 0.2206, 0.2206, 0.2206, 0.2207, 0.2207, 0.2208, 0.2209, 0.2209, 0.2209, 0.2211, 0.2211, 0.2212, 0.2212, 0.2212, 0.2212, 0.2212, 0.2213, 0.2213, 0.2213, 0.2214, 0.2214, 0.2214, 0.2215, 0.2216, 0.2216, 0.2217, 0.2219, 0.222, 0.2221, 0.2221, 0.2221, 0.2221, 0.2222, 0.2222, 0.2222, 0.2222, 0.2223, 0.2224, 0.2225, 0.2226, 0.2226, 0.2227, 0.2227, 0.2227, 0.2227, 0.2227, 0.2227, 0.2229, 0.223, 0.223, 0.2232, 0.2233, 0.2234, 0.2234, 0.2235, 0.2235, 0.2235, 0.2235, 0.2235, 0.2235, 0.2236, 0.2236, 0.2237, 0.2238, 0.2239, 0.2239, 0.2239, 0.2239, 0.2239, 0.2239, 0.2239, 0.2239, 0.2241, 0.2241, 0.2242, 0.2244, 0.2244, 0.2245, 0.2245, 0.2245, 0.2245, 0.2246, 0.2247, 0.2248, 0.2248, 0.225, 0.225, 0.2251, 0.2252, 0.2252, 0.2252, 0.2253, 0.2253, 0.2256, 0.2256, 0.2257, 0.2258, 0.2259, 0.2259, 0.2259, 0.2259, 0.226, 0.226, 0.226, 0.226, 0.226, 0.226, 0.2261, 0.2261, 0.2262, 0.2262, 0.2262, 0.2264, 0.2264, 0.2265, 0.2265, 0.2265, 0.2265, 0.2265, 0.2265, 0.2265, 0.2265, 0.2266, 0.2266, 0.2266, 0.2266, 0.2266, 0.2266, 0.2267, 0.2267, 0.2267, 0.2267, 0.2267, 0.2268, 0.2269, 0.2269, 0.227, 0.227, 0.227, 0.227, 0.227, 0.2271, 0.2271, 0.2271, 0.2273, 0.2273, 0.2273, 0.2273, 0.2274, 0.2274, 0.2274, 0.2274, 0.2275, 0.2275, 0.2275, 0.2276, 0.2276, 0.2276, 0.2276, 0.2282, 0.2282, 0.2282, 0.2283, 0.2283, 0.2283, 0.2283, 0.2283, 0.2284, 0.2284, 0.2284, 0.2284, 0.2284, 0.2284, 0.2284, 0.2285, 0.2285, 0.2285, 0.2286, 0.2286, 0.2286, 0.2287, 0.2287, 0.2287, 0.2287, 0.2288, 0.2288, 0.2288, 0.2288, 0.2291, 0.2291, 0.2296, 0.2296, 0.2297, 0.2297, 0.2297, 0.2298, 0.2298, 0.2298, 0.2299, 0.2299, 0.2299, 0.2299, 0.2299, 0.23, 0.23, 0.23, 0.23, 0.23, 0.2302, 0.2302, 0.2303, 0.2303, 0.2303, 0.2303, 0.2304, 0.2304, 0.2304, 0.2304, 0.2305, 0.231, 0.231, 0.2311, 0.2311, 0.2311, 0.2311, 0.2311, 0.2311, 0.2311, 0.2311, 0.2311, 0.2311, 0.2312, 0.2312, 0.2312, 0.2312, 0.2312, 0.2312, 0.2312]
task_received1_10_10 = 874
sent_t1_10_10 = {'124': 267, '125': 236, '126': 371}
cooperate1_10_10 = {'mec': 54, 'cloud': 114}
task_record1_10_10 = {}
outward_mec1_10_10 = 32
offload_check1_10_10 = [30, 2] | wt1_10_10 = {'192.168.122.110': [5.5754, 5.5952, 9.2422, 8.5338, 9.0058, 8.4025, 8.7557, 8.4405, 8.1397, 8.1318, 8.0657, 7.8501, 8.1701, 8.0757, 7.8899, 7.7329, 7.6153, 7.9967, 7.9363, 7.838, 8.7936, 8.6351, 8.5151, 8.6381, 8.7262, 8.816, 8.8984, 8.7799, 8.8584, 8.9543, 8.8833, 8.794, 8.6935, 8.735, 8.635, 8.5429, 8.6163, 8.5476, 8.6108, 8.5577, 8.4882, 8.4211, 8.3623, 8.3054, 8.2413, 8.4337, 8.4888, 8.5373, 8.4713, 8.5225, 8.4593, 8.4011, 8.3452, 8.3259, 8.2905, 8.2449, 8.1937, 8.1445, 8.116, 8.1567, 8.1104, 8.0715, 8.115, 8.0737, 8.0345, 8.0136, 8.0019, 8.0049, 8.1192, 8.0796, 8.0452, 8.006, 7.981, 7.9482, 7.9175, 7.8876, 7.8733, 7.9073, 7.8801, 7.9114, 7.8796, 7.8656, 7.8337, 7.8213, 7.792, 7.8309, 7.8041, 7.8059, 7.7952, 7.7718, 7.8096, 7.7388, 7.7266, 7.7471, 7.7399, 7.7186, 7.7135, 7.6918, 7.7212, 7.7565, 7.7335, 7.711, 7.6962, 7.6741, 7.6596, 7.6417, 7.6303, 7.6106, 7.5902, 7.6216, 7.6199, 7.6491, 7.6785, 7.6596, 7.6464, 7.6277, 7.6561, 7.6506, 7.6396, 7.6222, 7.7245, 7.7135, 7.6971, 7.6861, 7.7189, 7.7939, 7.7734, 7.7552, 7.7516, 7.7743, 7.7593, 7.7427, 7.7249, 7.708, 7.6916, 7.6809, 7.703, 7.6865, 7.6734, 7.6572, 7.6484, 7.6386, 7.6612, 7.6835, 7.6686, 7.6592, 7.681, 7.6753, 7.7021, 7.6891, 7.6742, 7.665, 7.6538, 7.6739, 7.7405, 7.7304, 7.7693, 7.759, 7.7492, 7.7403, 7.7253, 7.7102, 7.6962, 7.7249, 7.7124, 7.7071, 7.7291, 7.7147, 7.7307, 7.717, 7.7031, 7.7357, 7.7238, 7.7431, 7.7364, 7.7563, 7.7441, 7.7358, 7.7272, 7.7473, 7.7372, 7.7443, 7.8068, 7.7982, 7.7906, 7.805, 7.7939, 7.7818, 7.8014, 7.7899, 7.7779, 7.7671, 7.7545, 7.9091, 7.8963, 7.8913, 7.8823, 7.8953, 7.9115, 7.9017, 7.9166, 7.9316, 7.9229, 7.9104, 7.9033, 7.8949, 7.8879, 7.9028, 7.8904, 7.8854, 7.8754, 7.8648, 7.8551, 7.8433, 7.8322, 7.8214, 7.8104, 7.8007, 7.7927, 7.7815, 7.7701, 7.783, 7.7734, 7.8037, 7.795, 7.7885, 7.7826, 7.7774, 7.7719, 7.7622, 7.7544, 7.7451, 7.7379, 7.7314, 7.7236, 7.7175, 7.7073, 7.7213, 7.7111, 7.7026, 7.6996, 7.6898, 7.7013, 7.6954, 7.7105, 7.7015, 7.692, 7.708, 7.7, 7.7133, 7.7291, 7.7193, 7.7098, 7.7936, 7.8109, 7.801, 7.7922, 7.8248, 7.8174, 7.809, 7.8018, 7.7969, 7.7876, 7.779, 7.7741, 7.7861, 7.7831, 7.8363, 7.8107, 7.807, 7.7985, 7.796, 7.7884, 7.7791, 7.7699, 7.7609, 7.7524, 7.7279, 7.7216, 7.7341, 7.7316, 7.727, 7.7204, 7.7139, 7.7255, 7.7206, 7.712, 7.7082, 7.7032, 7.6948, 7.7055, 7.6996, 7.6913, 7.6832, 7.6771, 7.6771, 7.687, 7.6898, 7.6686, 7.6639, 7.6614, 7.6572, 7.6555, 7.6487, 7.6588, 7.655, 7.6524, 7.6467, 7.6392, 7.6322, 7.6254, 7.618, 7.6111, 7.6039, 7.5989, 7.6084, 7.6017, 7.5977, 7.5922, 7.585, 7.5781, 7.5713, 7.5656, 7.5759, 7.5726, 7.5822, 7.5757, 7.5783, 7.5718, 7.5816, 7.5745, 7.5838, 7.5775, 7.5755, 7.5815, 7.5755, 7.5693, 7.564, 7.5588, 7.5405, 7.5338, 7.529, 7.5223, 7.5167, 7.526, 7.5195, 7.5056, 7.501, 7.4947, 7.504, 7.5005, 7.4983, 7.4962, 7.5053, 7.5001, 7.4945, 7.4886, 7.4852, 7.495, 7.4917, 7.4858, 7.4924, 7.5016, 7.4958, 7.4925, 7.5451, 7.5396, 7.5365, 7.5315, 7.5263, 7.5266, 7.5212, 7.5177, 7.5142, 7.5084, 7.5043, 7.4986, 7.526, 7.5214, 7.5294, 7.5234, 7.5207, 7.5166, 7.5125, 7.508, 7.5297, 7.5238, 7.521, 7.5162, 7.5259, 7.5214, 7.5166, 7.5263, 7.5209, 7.5181, 7.5129, 7.5073, 7.5034, 7.5056, 7.5024, 7.4975, 7.5072, 7.5537, 7.5498, 7.559, 7.5539, 7.5503, 7.5465, 7.5411, 7.5382, 7.5329, 7.5277, 7.5244, 7.519, 7.5167, 7.5244, 7.5335, 7.5661, 7.5608, 7.5701, 7.565, 7.5598, 7.5548, 7.5499, 7.5468, 7.5543, 7.5405, 7.5418, 7.5497, 7.5588, 7.556, 7.5408, 7.5372, 7.533, 7.5289, 7.5272, 7.522, 7.5192, 7.5044, 7.5113, 7.4982, 7.4835, 7.4797, 7.4871, 7.4821, 7.4794, 7.4755, 7.4705, 7.4669, 7.4621, 7.4572, 7.4548, 7.4508, 7.4483, 7.4561, 7.4521, 7.4605, 7.4562, 7.4529, 7.4485, 7.4487, 7.462, 7.4628, 7.4586, 7.4564, 7.4629, 7.4597, 7.4565, 7.4523, 7.4479, 7.4455, 7.4527, 7.4598, 7.4591, 7.4577, 7.4545, 7.451, 7.458, 7.4552, 7.4535, 7.4606, 7.4913, 7.4891, 7.4851, 7.4821, 7.4889, 7.5473, 7.5482, 7.5979, 7.5935, 7.5905, 7.5882, 7.5835, 7.5811, 7.5777, 7.5754, 7.5711, 7.5779, 7.5838, 7.5814, 7.5772, 7.5731, 7.5696, 7.5674, 7.5641, 7.5596, 7.5574, 7.5533, 7.5505, 7.5472, 7.5427, 7.5405, 7.5468, 7.5435, 7.5505, 7.5479, 7.544, 7.5502, 7.5533, 7.558, 7.5644, 7.5614, 7.5584, 7.554, 7.5503, 7.5566, 7.5522, 7.5501, 7.5458, 7.5515, 7.5473, 7.5444, 7.5401, 7.537, 7.5422, 7.5382, 7.5341, 7.5302, 7.5306, 7.5265, 7.5223, 7.5209, 7.5374, 7.5334, 7.5292, 7.5268, 7.5325, 7.5228, 7.5287, 7.5246, 7.5208, 7.5169, 7.5134, 7.5113, 7.5176, 7.5136, 7.5205, 7.5185, 7.5167, 7.5129, 7.5096, 7.5057, 7.504, 7.5019, 7.4985, 7.4949, 7.4931, 7.4834, 7.4902, 7.4881, 7.4949, 7.4917, 7.4974, 7.5012, 7.4979, 7.4945, 7.4926, 7.4808, 7.478, 7.4742, 7.4717, 7.4778, 7.4752, 7.4803, 7.4766, 7.4732, 7.4806, 7.4769, 7.4733, 7.4697, 7.4677, 7.4731, 7.4789, 7.4795, 7.4773, 7.4748, 7.4711, 7.469, 7.4654, 7.4619, 7.4598, 7.4669, 7.4649, 7.4616, 7.4674, 7.4646, 7.4538, 7.4595, 7.4562, 7.4531, 7.4497, 7.4469, 7.4458, 7.4422, 7.4468, 7.4358, 7.4337, 7.4307, 7.4285, 7.4342, 7.4322, 7.4385, 7.4351, 7.4326, 7.4306, 7.4361, 7.4338, 7.4316, 7.4289, 7.4377, 7.4343, 7.4398, 7.4445, 7.4422, 7.4388, 7.4356, 7.4339, 7.4322, 7.429, 7.4272, 7.4241, 7.4209, 7.418, 7.4157, 7.4124, 7.4091, 7.4062, 7.4031, 7.4009, 7.3981, 7.3986, 7.3959, 7.401, 7.3979, 7.4033, 7.401, 7.3993, 7.4053, 7.3954, 7.3923, 7.3936, 7.3909, 7.4051, 7.4033, 7.4003, 7.3978, 7.3946, 7.3947, 7.3914, 7.3918, 7.3989, 7.4042, 7.4026, 7.4002, 7.3994, 7.398, 7.4041, 7.4025, 7.4041, 7.4012, 7.4002, 7.3972, 7.3941, 7.394, 7.3913, 7.3895, 7.3872, 7.3859, 7.3829, 7.3913, 7.3886, 7.3942, 7.3922, 7.3979, 7.4103, 7.4074, 7.4246, 7.4325, 7.4312, 7.4356, 7.4328, 7.4309, 7.4281, 7.4285, 7.4257, 7.4232, 7.4207, 7.4277, 7.4269, 7.4315, 7.4285, 7.4259, 7.4247, 7.4239, 7.4211, 7.426, 7.4236, 7.421, 7.4259, 7.438, 7.4426, 7.4419, 7.4602, 7.4584, 7.456, 7.4532, 7.458, 7.4628, 7.467, 7.471, 7.4695, 7.4748, 7.4725, 7.4702, 7.4673, 7.4647, 7.4692, 7.4663, 7.4634, 7.4681, 7.4657, 7.4704, 7.4729, 7.4699, 7.468, 7.4589, 7.4562, 7.4537, 7.4522, 7.4575, 7.4548, 7.46, 7.4667, 7.4724, 7.4768, 7.474, 7.4717, 7.469, 7.4674, 7.4721, 7.4713, 7.4753, 7.4737, 7.4778, 7.4765, 7.4752, 7.4725, 7.4697, 7.4671, 7.4658, 7.4632, 7.4648, 7.4622, 7.4535, 7.451, 7.4494, 7.4534, 7.4579, 7.4574, 7.4548, 7.453, 7.4572, 7.4618, 7.4662, 7.4701, 7.4675, 7.4792, 7.4776, 7.4772, 7.4809, 7.4784, 7.4841, 7.4815, 7.4795, 7.4834, 7.4816, 7.4799, 7.4777, 7.4768, 7.4743, 7.4782, 7.4754, 7.4795, 7.4906, 7.4899, 7.491, 7.495, 7.4991, 7.5047, 7.5021, 7.4994, 7.5043, 7.5036, 7.5017, 7.4992, 7.4968, 7.4944, 7.4921, 7.4913, 7.4894, 7.4877, 7.4858, 7.4904, 7.4894, 7.487, 7.4845, 7.4819, 7.4805, 7.4812, 7.4788, 7.4768, 7.4753, 7.4727, 7.4704, 7.4681, 7.4655, 7.463, 7.461, 7.4586, 7.458, 7.4559, 7.4534, 7.4521, 7.4635, 7.4609, 7.4585, 7.4622, 7.4601, 7.4641, 7.4616, 7.4592, 7.4566, 7.4543, 7.4529, 7.4506, 7.4481, 7.4459, 7.4438, 7.4415, 7.4406, 7.4382, 7.4365, 7.435, 7.439, 7.437, 7.4409, 7.4639, 7.4678, 7.4735, 7.4713, 7.4701, 7.4739, 7.4715, 7.4691, 7.4675, 7.4715, 7.4696, 7.4735, 7.4711, 7.475, 7.474, 7.4664, 7.4761, 7.4799, 7.4837, 7.4814, 7.479, 7.4829, 7.4812, 7.4789, 7.4826, 7.4819, 7.4802, 7.4782, 7.476, 7.4794, 7.4772, 7.4811, 7.4911, 7.4888, 7.4867, 7.4847, 7.4773, 7.4763, 7.4743, 7.4723, 7.4706, 7.474, 7.4668, 7.4657, 7.4712, 7.469, 7.4727, 7.4714, 7.4697, 7.4743, 7.4764, 7.4742, 7.4727, 7.4765, 7.4751, 7.4729, 7.4766, 7.4831, 7.4811, 7.4794, 7.4781, 7.4757, 7.4737, 7.4714, 7.4693, 7.467, 7.4647, 7.4681, 7.4667, 7.4643, 7.462, 7.4607, 7.4641, 7.4678, 7.4656, 7.4639, 7.4674, 7.4709, 7.4744, 7.4722, 7.4702, 7.4679, 7.4751, 7.4748, 7.4734, 7.4816, 7.4794, 7.4771, 7.4772, 7.4808, 7.479, 7.4776, 7.4754, 7.4741, 7.4776, 7.4753, 7.4732, 7.4727, 7.4723, 7.47, 7.4682, 7.4672, 7.471, 7.4696, 7.4679, 7.4711, 7.472, 7.4752, 7.473, 7.472, 7.4699, 7.4753, 7.4732, 7.4769, 7.4747, 7.4736, 7.4772, 7.4825, 7.4803, 7.4791, 7.477, 7.4751, 7.473, 7.4715, 7.475, 7.4729, 7.4662, 7.4744, 7.4777, 7.4809, 7.4818, 7.4807, 7.4741, 7.4775, 7.4757, 7.4748, 7.4736, 7.4669, 7.4654, 7.4588, 7.4622, 7.4655, 7.4648, 7.4636, 7.4616, 7.4635, 7.4634, 7.4613, 7.4552, 7.4535, 7.4616, 7.4594, 7.4576, 7.4558, 7.4669, 7.4655, 7.464, 7.4707, 7.4687, 7.4667, 7.4703, 7.4693, 7.4684, 7.4695, 7.468, 7.4672, 7.4662, 7.4652, 7.4648, 7.4657, 7.4688, 7.4722, 7.4703, 7.4739, 7.473, 7.4711, 7.4987, 7.5019, 7.5051, 7.5034, 7.5014, 7.5046, 7.5041, 7.5073, 7.5061, 7.5041, 7.5099, 7.5078, 7.5057, 7.5088, 7.5086, 7.5077, 7.5057, 7.5191, 7.5178, 7.5157, 7.5147, 7.5126, 7.5109, 7.5089, 7.5072, 7.5053, 7.5046, 7.5037, 7.5017, 7.5003, 7.4983, 7.4962, 7.4942, 7.4972, 7.4961, 7.4991, 7.497, 7.5007, 7.4994, 7.4974, 7.5008, 7.5038, 7.5026, 7.5007, 7.5042, 7.5032, 7.5018, 7.4999, 7.4983, 7.4965, 7.4947, 7.4932, 7.4963, 7.495, 7.4946, 7.4977, 7.4958, 7.4938, 7.4931, 7.4981, 7.5012, 7.4993, 7.4989, 7.497, 7.4911, 7.4893, 7.5069, 7.5049, 7.5034, 7.5015, 7.5043, 7.5023, 7.5003, 7.4996, 7.4991, 7.4972, 7.4964, 7.5141, 7.517, 7.5156, 7.514, 7.5121, 7.5111, 7.5093, 7.5074, 7.5055, 7.5037, 7.5022, 7.5004, 7.4996, 7.5046, 7.503, 7.5012, 7.5056, 7.5044, 7.5026, 7.501, 7.4991, 7.4993, 7.4976, 7.492, 7.4902, 7.4889, 7.4871, 7.4857, 7.4802, 7.4805, 7.4787, 7.477, 7.4754, 7.4753, 7.4784, 7.4776, 7.4759, 7.4702, 7.4694, 7.4725, 7.4717, 7.4706, 7.4698, 7.469, 7.4673, 7.4616, 7.4603, 7.4585, 7.4568, 7.4556, 7.4538, 7.4521, 7.4503, 7.4485, 7.452, 7.4502, 7.4532, 7.4518, 7.4504, 7.4532, 7.4517, 7.4546, 7.4711, 7.4739, 7.4765, 7.4747, 7.469, 7.4718, 7.4702, 7.4684, 7.4666, 7.4695, 7.4678, 7.4711, 7.4738, 7.472, 7.4709, 7.469, 7.4693, 7.4676, 7.4667, 7.4651, 7.464, 7.4624, 7.4607, 7.4603, 7.4593, 7.4574, 7.4566, 7.4557, 7.4585, 7.4613, 7.4602, 7.455, 7.4533, 7.452, 7.4511, 7.4493, 7.4478, 7.4462, 7.4453, 7.4449, 7.4433, 7.4427, 7.4412, 7.4408, 7.4396, 7.4385, 7.4414, 7.4445, 7.4432, 7.4421, 7.4407, 7.4431, 7.4459, 7.4444, 7.4471, 7.4468, 7.4495, 7.4485, 7.4474, 7.4466, 7.447, 7.4462, 7.4447, 7.4434, 7.4423, 7.4424, 7.4407, 7.4356, 7.4339, 7.4327, 7.431, 7.4297, 7.4281, 7.4269, 7.4253, 7.4241, 7.4229, 7.4212, 7.4208, 7.4235, 7.4222, 7.4206, 7.4489, 7.4516, 7.4542, 7.4572, 7.4557, 7.4563, 7.4587, 7.4571, 7.4561, 7.455, 7.4543, 7.4572, 7.4597, 7.4582, 7.4568, 7.4596, 7.4622, 7.4608, 7.4592, 7.4621, 7.4569, 7.4561, 7.4546, 7.4532, 7.4559, 7.4543, 7.4538, 7.4573, 7.456, 7.4509, 7.4459, 7.4443, 7.4427, 7.4411, 7.4476, 7.4504, 7.4489, 7.4479, 7.4466, 7.449, 7.4441, 7.447, 7.4453, 7.4443, 7.4428, 7.4429, 7.4412, 7.44, 7.439, 7.4415, 7.4424, 7.4414, 7.4404, 7.4388, 7.4375, 7.4404, 7.4353, 7.4302, 7.4288, 7.4275, 7.4259, 7.4243, 7.4235, 7.4219, 7.4203, 7.4195, 7.418, 7.4169, 7.4157, 7.4141, 7.4126, 7.4111, 7.4101, 7.4086, 7.4071, 7.4056, 7.4042, 7.4068, 7.4052, 7.4037, 7.4064, 7.4088, 7.4079, 7.4065, 7.4049, 7.4001, 7.3987, 7.4005, 7.3991, 7.4059, 7.4046, 7.4032, 7.402, 7.4009, 7.3971, 7.3956, 7.3951, 7.394, 7.3926, 7.3952, 7.3941, 7.3927, 7.3914, 7.3979, 7.3966, 7.3954, 7.3942, 7.3929, 7.3925, 7.392, 7.3916, 7.3944, 7.3971, 7.3958, 7.3945, 7.393, 7.3925, 7.3912, 7.3903, 7.3926, 7.3914, 7.3905, 7.3946, 7.3933, 7.3959, 7.3946, 7.3932, 7.3921, 7.3907, 7.3901, 7.3895, 7.3885, 7.3872, 7.3859, 7.3844, 7.3835, 7.3822, 7.3921, 7.3946, 7.3943, 7.3929, 7.3954, 7.3979, 7.3973, 7.3999, 7.3987, 7.4005, 7.4018, 7.3986, 7.3973, 7.4002, 7.3997, 7.402, 7.401, 7.4004, 7.399, 7.3991, 7.3976, 7.3969, 7.3955, 7.3949, 7.3936, 7.3933, 7.3918, 7.3905, 7.3891, 7.385, 7.3806, 7.3791, 7.378, 7.3792, 7.3777, 7.3765, 7.375, 7.3775, 7.3761, 7.3787, 7.3779, 7.3775, 7.38, 7.3795, 7.3817, 7.3802, 7.3792, 7.3799, 7.3784, 7.381, 7.3798, 7.3789, 7.3777, 7.3765, 7.3786, 7.3778, 7.3763, 7.3748, 7.3733, 7.3742, 7.3765, 7.3752, 7.3738, 7.3724, 7.3749, 7.375, 7.3776, 7.38, 7.3759, 7.3746, 7.3908, 7.3896, 7.3892, 7.3883, 7.3907, 7.3897, 7.3885, 7.3875, 7.3869, 7.3892, 7.3879, 7.3932, 7.3955, 7.3977, 7.3963, 7.3949, 7.3948, 7.3935, 7.3923, 7.3947, 7.3942, 7.3965, 7.3985, 7.3974, 7.3995, 7.4022, 7.401, 7.4005, 7.3995, 7.3983, 7.3978, 7.3935, 7.3957, 7.3948, 7.3935, 7.3923, 7.391, 7.3897, 7.3888, 7.3876, 7.3863, 7.385, 7.3843, 7.383, 7.3816, 7.3839, 7.3826, 7.3817, 7.3805, 7.3762, 7.3752, 7.3738, 7.3724, 7.3716, 7.3703, 7.3689, 7.3676, 7.37, 7.3721, 7.3677, 7.3665, 7.3653, 7.3648, 7.3635, 7.3629, 7.3836, 7.3859, 7.3846, 7.3868, 7.3859, 7.3852, 7.3841, 7.3798, 7.3789, 7.3776, 7.3763, 7.3749, 7.3742, 7.3734, 7.3728, 7.3721, 7.3742, 7.3729, 7.375, 7.3741, 7.3729, 7.3726, 7.3725, 7.3729, 7.3765, 7.376, 7.3721, 7.3708, 7.3766, 7.3786, 7.3921, 7.3909, 7.3919, 7.3906, 7.3893, 7.3881, 7.3921, 7.3913, 7.39, 7.3887, 7.391, 7.3933, 7.3963, 7.3983, 7.3976, 7.3963, 7.3986, 7.3974, 7.3969, 7.3978, 7.397, 7.3998, 7.3992, 7.4014, 7.4035, 7.3994, 7.3982, 7.3976, 7.3963, 7.3987, 7.398, 7.4005, 7.3999, 7.3994, 7.3981, 7.399, 7.3979, 7.3969, 7.3963, 7.3985, 7.4013, 7.4, 7.4017, 7.4005, 7.4027, 7.4016, 7.4046, 7.4034, 7.4022, 7.4112, 7.4104, 7.4096, 7.4083, 7.4075, 7.4062, 7.4054, 7.4041, 7.4063, 7.4052, 7.4045, 7.4032, 7.4021, 7.404, 7.403, 7.4018, 7.4011, 7.4002, 7.3989, 7.3986, 7.4038, 7.4057, 7.4045, 7.4009, 7.3997, 7.4, 7.3994, 7.3991, 7.3982, 7.3979, 7.3945, 7.3938, 7.3927, 7.3921, 7.3915, 7.3906, 7.3906, 7.3902, 7.3897, 7.3952, 7.3973, 7.4041, 7.4062, 7.405, 7.4072, 7.4061, 7.4052, 7.4046, 7.4065, 7.4052, 7.4039, 7.4028, 7.4016, 7.4005, 7.3993, 7.4014, 7.4006, 7.4027, 7.4014, 7.4008, 7.3995, 7.3983, 7.3973, 7.3963, 7.3951, 7.3949, 7.3939, 7.3958, 7.3945, 7.3965, 7.3957, 7.3949, 7.3969, 7.3933, 7.3955, 7.3974, 7.3969, 7.3957, 7.3979, 7.3977, 7.3965, 7.3928, 7.3917, 7.4023, 7.4015, 7.4008, 7.4027, 7.4021, 7.4015, 7.4008, 7.3999, 7.3988, 7.3977, 7.3997, 7.399, 7.3979, 7.3973, 7.3971, 7.396, 7.3977, 7.3965, 7.3987, 7.3976, 7.3965, 7.3953, 7.3946, 7.3938, 7.3957, 7.3949, 7.3943, 7.3931, 7.392, 7.3908, 7.3896, 7.3891, 7.3881, 7.3869, 7.3865, 7.3827, 7.382, 7.3827, 7.3847, 7.3841, 7.3956, 7.3945, 7.3943, 7.3963, 7.3952, 7.394, 7.3928, 7.3916, 7.3906, 7.3896, 7.3889, 7.3877, 7.3895, 7.3884, 7.3905, 7.3894, 7.3883, 7.3872, 7.3891, 7.388, 7.39, 7.3893, 7.3886, 7.3907, 7.3896, 7.3885, 7.3874, 7.3868, 7.3887, 7.3878, 7.3866, 7.3853, 7.3844, 7.3808, 7.3797, 7.3788, 7.378, 7.3769, 7.3823, 7.3815, 7.3807, 7.38, 7.3789, 7.3781, 7.38, 7.3797, 7.3791, 7.378, 7.3808, 7.3797, 7.379, 7.3784, 7.3773, 7.3744, 7.3764, 7.3758, 7.3753, 7.3786, 7.3776, 7.3764, 7.3785, 7.3775, 7.3795, 7.3785, 7.3806, 7.3796, 7.3787, 7.3777, 7.3769, 7.3794, 7.3813, 7.3804, 7.3792, 7.3781, 7.3779, 7.3775, 7.3765, 7.3755, 7.3748, 7.3743, 7.3732, 7.3721, 7.3715, 7.3704, 7.3693, 7.3682, 7.3671, 7.3665, 7.3683, 7.3672, 7.3661, 7.3681, 7.367, 7.3689, 7.3678, 7.3667, 7.3685, 7.3679, 7.3671, 7.3659, 7.3801, 7.3791, 7.3784, 7.3773, 7.3791, 7.387, 7.3865, 7.3861, 7.3855, 7.3874, 7.3892, 7.3881, 7.3871, 7.389, 7.388, 7.387, 7.3889, 7.3883, 7.3877, 7.3872, 7.3905, 7.3927, 7.3916, 7.3909, 7.3898, 7.3889, 7.3881, 7.3873, 7.3897, 7.3888, 7.3882, 7.3877, 7.3871, 7.389, 7.3879, 7.3897, 7.3892, 7.3883, 7.3877, 7.3866, 7.3885, 7.3875, 7.3864, 7.3856, 7.3847, 7.3837, 7.3862, 7.3879, 7.387, 7.3858, 7.385, 7.3839, 7.3828, 7.3817, 7.3806, 7.3798, 7.379, 7.3782, 7.3771, 7.376, 7.3749, 7.3738, 7.3732, 7.3724, 7.3727, 7.3722, 7.3711, 7.3701, 7.369, 7.3708, 7.3703, 7.3723, 7.3713, 7.3702, 7.3691, 7.368, 7.3679, 7.3676, 7.3693, 7.3683, 7.3674, 7.3668, 7.3678, 7.3673, 7.369, 7.3679, 7.3673, 7.3663, 7.3652, 7.3646, 7.3636, 7.3633, 7.3629, 7.3619, 7.3612, 7.3602, 7.3592, 7.3587, 7.3608, 7.3599, 7.3589, 7.3579, 7.36, 7.3653, 7.3649, 7.364, 7.3629, 7.362, 7.3614, 7.3604, 7.3622, 7.3615, 7.3607, 7.36, 7.359, 7.3583, 7.3574, 7.3569, 7.3559, 7.3549, 7.3566, 7.3556, 7.3546, 7.3536, 7.3502, 7.3492, 7.3496, 7.3494, 7.3493, 7.3483, 7.35, 7.3489, 7.3488, 7.3479, 7.3474, 7.3467, 7.3485, 7.3474, 7.3464, 7.3457, 7.345, 7.3483, 7.3474, 7.3491, 7.3493, 7.3483, 7.3508, 7.3504, 7.3499, 7.3516, 7.3506, 7.3496, 7.3551, 7.3546, 7.3536, 7.3526, 7.352, 7.3513, 7.3506, 7.3535, 7.3526, 7.3569, 7.3828, 7.3821, 7.3812, 7.3805, 7.3797, 7.3813, 7.378, 7.3769, 7.3759, 7.3748, 7.3738, 7.373, 7.3723, 7.3714, 7.371, 7.3714, 7.3731, 7.3748, 7.3766, 7.3756, 7.3746, 7.3762, 7.3779, 7.3771, 7.3761, 7.3752, 7.3849, 7.384, 7.383, 7.382, 7.3811, 7.3828, 7.3817, 7.3807, 7.3805, 7.3799, 7.3819, 7.3834, 7.3824, 7.3927, 7.3917, 7.3914, 7.3932, 7.3923, 7.3941, 7.3932, 7.3928, 7.392, 7.3919, 7.3914, 7.3904, 7.3894, 7.3884, 7.3875, 7.3921, 7.3919, 7.3909, 7.3899, 7.3922, 7.3915, 7.3938, 7.393, 7.3925, 7.3915, 7.3932, 7.3949, 7.395, 7.3939, 7.3956, 7.395, 7.395, 7.3941, 7.3939, 7.3946, 7.3935, 7.3956, 7.3949, 7.3949, 7.394, 7.3932, 7.3925, 7.3917, 7.391, 7.3902, 7.3892, 7.389, 7.3907, 7.3899, 7.3998, 7.399, 7.3983, 7.3973, 7.3964, 7.3955, 7.3955, 7.3949, 7.3939, 7.393, 7.3928, 7.3921, 7.3938, 7.3929, 7.3945, 7.3942, 7.3944, 7.3961, 7.3952, 7.3974, 7.3993, 7.3989, 7.398, 7.397, 7.3986, 7.3977, 7.3947, 7.3942, 7.3932, 7.3922, 7.3915, 7.3905, 7.3926, 7.3923, 7.3917, 7.3908, 7.3923, 7.3917, 7.3909, 7.3902, 7.3895, 7.3889, 7.3879, 7.3869, 7.3863, 7.3853, 7.3843, 7.3835, 7.3828, 7.3827, 7.382, 7.3813, 7.3829, 7.3826, 7.3819, 7.3809, 7.3802, 7.3793, 7.3789, 7.3781, 7.3772, 7.3762, 7.3756, 7.3775, 7.3766, 7.3757, 7.3776, 7.3746, 7.3762, 7.3754, 7.3749, 7.3741, 7.3736, 7.3728, 7.3745, 7.3736, 7.3731, 7.3765, 7.3783, 7.3804, 7.3825, 7.3818, 7.3834, 7.3827, 7.3819, 7.3811, 7.3803, 7.3793, 7.3785, 7.3775, 7.3766, 7.376, 7.3751, 7.3767, 7.3785, 7.3777, 7.3769, 7.3785, 7.3777, 7.3769, 7.376, 7.3751, 7.3768, 7.3799, 7.379, 7.3806, 7.3797, 7.3791, 7.3787, 7.3779, 7.377, 7.3761, 7.3751, 7.3742, 7.3733, 7.3772, 7.3788, 7.3779, 7.3797, 7.3795, 7.3786, 7.3801, 7.3792, 7.3783, 7.3799, 7.3793, 7.3785, 7.3778, 7.3748, 7.3744, 7.3736, 7.3727, 7.3719, 7.3712, 7.3705, 7.3695, 7.3709, 7.3729, 7.3724, 7.3741, 7.3737, 7.3732, 7.3757, 7.3747, 7.3741, 7.3732, 7.3723, 7.3715, 7.3731, 7.3722, 7.3718, 7.371, 7.3701, 7.3767, 7.3788, 7.3782, 7.3779, 7.3775, 7.3766, 7.3762, 7.3763, 7.3758, 7.3749, 7.374, 7.3732, 7.3779, 7.3794, 7.3809, 7.38, 7.3794, 7.3789, 7.3783, 7.3778, 7.3775, 7.3789, 7.378, 7.3774, 7.3765, 7.3756, 7.3755, 7.375, 7.3765, 7.3759, 7.3774, 7.3767, 7.3758, 7.3735, 7.3726, 7.374, 7.3747, 7.3764, 7.3767, 7.3758, 7.375, 7.3771, 7.3787, 7.3827, 7.3821, 7.3814, 7.3806, 7.38, 7.3791, 7.3783, 7.382, 7.3816, 7.3807, 7.3799, 7.3792, 7.3783, 7.3774, 7.3789, 7.3803, 7.3817, 7.3813, 7.3827, 7.3818, 7.3814, 7.3805, 7.3797, 7.3811, 7.3802, 7.3793, 7.3789, 7.3806, 7.3798, 7.3815, 7.3829, 7.3822, 7.3817, 7.3861, 7.3852, 7.3843, 7.3837, 7.3837, 7.383, 7.3826, 7.3817, 7.383, 7.3824, 7.3848, 7.384, 7.3835, 7.3827, 7.3819, 7.3838, 7.3833, 7.3895, 7.391, 7.3909, 7.3924, 7.3917, 7.393, 7.3924, 7.3941, 7.3933, 7.3931, 7.3946, 7.3937, 7.3929, 7.3924, 7.3919, 7.3913, 7.3904, 7.3895, 7.3891, 7.3882, 7.3873, 7.3865, 7.3856, 7.3849, 7.3871, 7.3866, 7.3857, 7.3849, 7.3841, 7.3855, 7.3852, 7.3846, 7.3845, 7.385, 7.3845, 7.3843, 7.3834, 7.383, 7.3824, 7.3837, 7.3829, 7.383, 7.3821, 7.3813, 7.3805, 7.3796, 7.3824, 7.3839, 7.3832, 7.3823, 7.3815, 7.3833, 7.3824, 7.382, 7.3816, 7.383, 7.3823, 7.3824, 7.3921, 7.3937, 7.3955, 7.395, 7.3944, 7.3938, 7.393, 7.3936, 7.3927, 7.394, 7.3954, 7.3972, 7.3968, 7.3961, 7.3953, 7.3948, 7.3944, 7.3944, 7.3941, 7.3955, 7.3971, 7.3962, 7.3957, 7.3949, 7.3945, 7.394, 7.3955, 7.3948, 7.3962, 7.3954, 7.3946, 7.3938, 7.393, 7.3927, 7.3919, 7.3911, 7.3902, 7.3899, 7.3914, 7.3908, 7.3902, 7.3897, 7.3888, 7.3884, 7.3882, 7.3875, 7.3867, 7.3859, 7.3873, 7.3865, 7.3857, 7.3872, 7.3888, 7.3885, 7.3881, 7.3896, 7.3891, 7.3883, 7.3882, 7.3917, 7.3954, 7.3946, 7.3938, 7.393, 7.3924, 7.392, 7.3912, 7.3925, 7.3954, 7.3969, 7.3965, 7.398, 7.3993, 7.4031, 7.4047, 7.4041, 7.4039, 7.4035, 7.4035, 7.4049, 7.4111, 7.4125, 7.412, 7.4112, 7.4104, 7.41, 7.4115, 7.4111, 7.4103, 7.4097, 7.409, 7.4082, 7.4098, 7.409, 7.4063, 7.4083, 7.4077, 7.4072, 7.4064, 7.4056, 7.407, 7.4082, 7.4074, 7.4099, 7.409, 7.4085, 7.4077, 7.4069, 7.4107, 7.41, 7.4092, 7.4106, 7.4101, 7.4117, 7.4109, 7.4103, 7.4101, 7.4093, 7.409, 7.4083, 7.408, 7.4074, 7.407, 7.4061, 7.4053, 7.4069, 7.4082, 7.4078, 7.407, 7.4063, 7.4056, 7.4071, 7.4064, 7.4058, 7.4053, 7.4045, 7.402, 7.4015, 7.4028, 7.4021, 7.4014, 7.4031, 7.403, 7.4023, 7.4016, 7.4008, 7.4001, 7.3996, 7.4002, 7.4015, 7.4008, 7.4022, 7.4016, 7.4008, 7.4021, 7.4013, 7.4006, 7.4019, 7.4032, 7.4025, 7.4017, 7.4009, 7.4001, 7.3999, 7.3991, 7.3983, 7.3978, 7.397, 7.3982, 7.3989, 7.4007, 7.4003, 7.3996, 7.3988, 7.3981, 7.3995, 7.4008, 7.4004, 7.4003, 7.3996, 7.399, 7.3983, 7.3977, 7.3969, 7.3965, 7.3958, 7.395, 7.3948, 7.3962, 7.3962, 7.3956, 7.3951, 7.3964, 7.3961, 7.3966, 7.3981, 7.3976, 7.397, 7.3963, 7.3965, 7.3959, 7.3951, 7.3944, 7.396, 7.3961, 7.3955, 7.395, 7.3948, 7.394, 7.3954, 7.3949, 7.3941, 7.3956, 7.3952, 7.3966, 7.3962, 7.3975, 7.397, 7.3985, 7.3978, 7.3953, 7.3948, 7.394, 7.3932, 7.3947, 7.3943, 7.3957, 7.399, 7.3983, 7.3976, 7.3972, 7.3986, 7.3979, 7.3977, 7.3953, 7.3946, 7.3938, 7.3952, 7.3944, 7.3936, 7.3932, 7.3955, 7.3948, 7.3941, 7.3966, 7.4019, 7.4048, 7.4041, 7.4042, 7.4038, 7.4051, 7.4046, 7.404, 7.4035, 7.4054, 7.4046, 7.4042, 7.4034, 7.4047, 7.4044, 7.4057, 7.407, 7.4084, 7.4079, 7.4074, 7.4085, 7.41, 7.4096, 7.4111, 7.4103, 7.4095, 7.4091, 7.4125, 7.4119, 7.4118, 7.411, 7.4102, 7.4114, 7.4106, 7.4098, 7.4097, 7.4091, 7.4083, 7.4137, 7.4131, 7.4153, 7.4145, 7.4199, 7.4193, 7.4189, 7.4181, 7.4156, 7.4149, 7.4141, 7.4118, 7.4172, 7.4186, 7.4199, 7.4193, 7.4186, 7.4181, 7.4179, 7.4172, 7.4168, 7.4161, 7.4173, 7.4186, 7.4179, 7.416, 7.4162, 7.4155, 7.4148, 7.4143, 7.4155, 7.4148, 7.416, 7.4152, 7.4144, 7.4137, 7.4133, 7.413, 7.4143, 7.4137, 7.413, 7.4143, 7.4136, 7.4148, 7.4142, 7.4134, 7.4146, 7.4141, 7.4135, 7.4148, 7.4143, 7.4139, 7.4154, 7.4177, 7.4173, 7.4168, 7.4164, 7.4229, 7.4206, 7.4202, 7.4195, 7.4212, 7.4208, 7.4204, 7.42, 7.4194, 7.4207, 7.4201, 7.4197, 7.4192, 7.4185, 7.4166, 7.4162, 7.4157, 7.4151, 7.4146, 7.4219, 7.4222, 7.4235, 7.4248, 7.4241, 7.4234, 7.4226, 7.4222, 7.4216, 7.4268, 7.4264, 7.4262, 7.427, 7.4284, 7.4296, 7.4289, 7.4283, 7.4279, 7.4271, 7.4264, 7.4256, 7.4252, 7.4248, 7.427, 7.4263, 7.4275, 7.4268, 7.4261, 7.4269, 7.4282, 7.4279, 7.4272, 7.4285, 7.4278, 7.4271, 7.4266, 7.4279, 7.4272, 7.4307, 7.43, 7.4292, 7.4284, 7.4277, 7.4293, 7.4286, 7.4278, 7.4277, 7.4253, 7.4256, 7.4249, 7.4244, 7.4241, 7.4239, 7.4215, 7.4214, 7.4207, 7.4219, 7.4231, 7.4224, 7.4221, 7.4217, 7.421, 7.4205, 7.4199, 7.4211, 7.4206, 7.4217, 7.421, 7.4203, 7.4218, 7.4232, 7.4228, 7.424, 7.4253, 7.4259, 7.4252, 7.4245, 7.4239, 7.4238, 7.425, 7.4242, 7.4235, 7.4258, 7.4251, 7.4248, 7.4226, 7.4203, 7.4197, 7.4209, 7.4202, 7.4195, 7.4187, 7.4165, 7.4159, 7.4155, 7.415, 7.4145, 7.4139, 7.4135, 7.4128, 7.4141, 7.4155, 7.415, 7.4147, 7.4149, 7.4142, 7.4136, 7.4149, 7.4142, 7.4138, 7.415, 7.4143, 7.4136, 7.4129, 7.4128, 7.4123, 7.4117, 7.412, 7.4149, 7.4161, 7.4155, 7.4147, 7.414, 7.4135, 7.4148, 7.4161, 7.4173, 7.4167, 7.416, 7.4155, 7.4149, 7.4142, 7.4134, 7.4129, 7.4125, 7.4118, 7.4113, 7.4109, 7.4105, 7.41, 7.4093, 7.4086, 7.4098, 7.4093, 7.4105, 7.41, 7.4111, 7.4105, 7.41, 7.4104, 7.4097, 7.4094, 7.4089, 7.41, 7.4097, 7.4097, 7.4139, 7.4151, 7.4208, 7.4202, 7.423, 7.4241, 7.4253, 7.4248, 7.4248, 7.4244, 7.4256, 7.4267, 7.4263, 7.4258, 7.4254, 7.4264, 7.4262, 7.4274, 7.4267, 7.4279, 7.4274, 7.4268, 7.4262, 7.4277, 7.4274, 7.4268, 7.4261, 7.4273, 7.4285, 7.428, 7.4294, 7.4306, 7.4318, 7.433, 7.4326, 7.4319, 7.4314, 7.4324, 7.4319, 7.4313, 7.4308, 7.4301, 7.4312, 7.4305, 7.4299, 7.4293, 7.4287, 7.4282, 7.4275, 7.4269, 7.4262, 7.424, 7.4238, 7.4261, 7.4255, 7.4248, 7.4242, 7.4235, 7.4229, 7.4225, 7.4218, 7.4212, 7.4208, 7.4201, 7.4198, 7.4191, 7.4184, 7.4182, 7.4178, 7.4173, 7.4167, 7.418, 7.4228, 7.4221, 7.4218, 7.4216, 7.4233, 7.4227, 7.4238, 7.425, 7.4247, 7.4241, 7.4235, 7.4229, 7.4222, 7.4215, 7.4208, 7.4201, 7.4195, 7.4189, 7.4186, 7.4198, 7.4191, 7.4185, 7.4181, 7.4192, 7.4222, 7.4215, 7.4208, 7.4208, 7.4201, 7.4213, 7.4206, 7.4217, 7.421, 7.4203, 7.4197, 7.4193, 7.4186, 7.418, 7.4173, 7.4188, 7.4181, 7.4175, 7.4172, 7.4165, 7.4158, 7.4152, 7.4163, 7.4163, 7.4156, 7.415, 7.4145, 7.4138, 7.4148, 7.416, 7.4156, 7.4152, 7.4164, 7.4159, 7.4153, 7.4153, 7.415, 7.4144, 7.4139, 7.4136, 7.4133, 7.4127, 7.412, 7.4113, 7.4107, 7.4101, 7.4095, 7.4091, 7.4085, 7.409, 7.4103, 7.4097, 7.4093, 7.4086, 7.4098, 7.411, 7.4107, 7.41, 7.4093, 7.409, 7.4102, 7.4096, 7.4107, 7.4101, 7.4094, 7.409, 7.4088, 7.4084, 7.4081, 7.4101, 7.4112, 7.4106, 7.4102, 7.4095, 7.4106, 7.4099, 7.4095, 7.4088, 7.41, 7.4093, 7.4094, 7.4114, 7.4108, 7.4104, 7.4097, 7.411, 7.4104, 7.4097, 7.4108, 7.4101, 7.4094, 7.4087, 7.408, 7.4092, 7.4092, 7.4102, 7.414, 7.4155, 7.4193, 7.4186, 7.4179, 7.4179, 7.4174, 7.4167, 7.4161, 7.4141, 7.4152, 7.4146, 7.4142, 7.4136, 7.4132, 7.4142, 7.4157, 7.4168, 7.4185, 7.4179, 7.4172, 7.4168, 7.4165, 7.416, 7.4153, 7.4146, 7.414, 7.4137, 7.413, 7.414, 7.4136, 7.413, 7.4123, 7.4117, 7.411, 7.4104, 7.4102, 7.4096, 7.409, 7.4086, 7.4097, 7.409, 7.4084, 7.4078, 7.4075, 7.4086, 7.408, 7.409, 7.4085, 7.4081, 7.4074, 7.407, 7.414, 7.4158, 7.42, 7.4197, 7.4208, 7.4201, 7.4195, 7.419, 7.42, 7.4196, 7.4189, 7.4182, 7.4195, 7.4191, 7.4185, 7.4179, 7.4175, 7.4171, 7.4182, 7.4176, 7.4171, 7.4166, 7.4162, 7.4155, 7.4166, 7.4162, 7.4159, 7.4153, 7.4177, 7.4178, 7.4178, 7.4173, 7.4183, 7.4195, 7.4189, 7.4183, 7.4193, 7.4205, 7.4199, 7.4193, 7.4189, 7.4186, 7.4171, 7.4164, 7.4175, 7.4186, 7.4181, 7.4177, 7.4173, 7.4167, 7.4161, 7.4157, 7.4151, 7.4145, 7.4157, 7.4168, 7.4165, 7.4159, 7.4161, 7.4161, 7.4162, 7.4173, 7.417, 7.415, 7.4145, 7.4141, 7.4138, 7.4135, 7.4146, 7.4139, 7.4151, 7.4153, 7.4148, 7.4144, 7.4141, 7.4135, 7.4129, 7.4128, 7.4122, 7.4115, 7.4108, 7.4102, 7.4116, 7.4126, 7.4122, 7.4122, 7.4117, 7.4128, 7.4122, 7.4132, 7.4128, 7.4139, 7.4149, 7.4142, 7.4146, 7.414, 7.4136, 7.413, 7.4125, 7.4118, 7.4115, 7.411, 7.4104, 7.4098, 7.4094, 7.4087, 7.4084, 7.4093, 7.4103, 7.4105, 7.4102, 7.4097, 7.4107, 7.4102, 7.4097, 7.4098, 7.4095, 7.4089, 7.4083, 7.4077, 7.4075, 7.4069, 7.4063, 7.4057, 7.4067, 7.4118, 7.4113, 7.4125, 7.4119, 7.4113, 7.4124, 7.4156, 7.4178, 7.4173, 7.417, 7.4167, 7.4161, 7.4172, 7.4168, 7.4181, 7.4175, 7.4186, 7.418, 7.4174, 7.4175, 7.4186, 7.4183, 7.4186, 7.4183, 7.4177, 7.4173, 7.4168, 7.4165, 7.4176, 7.4174, 7.4168, 7.4178, 7.4172, 7.4183, 7.4193, 7.4203, 7.42, 7.4206, 7.4216, 7.421, 7.4204, 7.4214, 7.4208, 7.4207, 7.4201, 7.4199, 7.4195, 7.4205, 7.42, 7.421, 7.4194, 7.4188, 7.4182, 7.4181, 7.4175, 7.4172, 7.4153, 7.4147, 7.4141, 7.4155, 7.4149, 7.416, 7.4155, 7.415, 7.4144, 7.414, 7.415, 7.4157, 7.4168, 7.4162, 7.4156, 7.4153, 7.4147, 7.4141, 7.4152, 7.4145, 7.414, 7.4136, 7.4137, 7.4134, 7.4128, 7.4138, 7.4135, 7.4132, 7.4128, 7.4123, 7.4135, 7.413, 7.4124, 7.4118, 7.4114, 7.4111, 7.4121, 7.4131, 7.4157, 7.4151, 7.416, 7.4155, 7.415, 7.4152, 7.4146, 7.4156, 7.4152, 7.4146, 7.4143, 7.4139, 7.4133, 7.4145, 7.4141, 7.4135, 7.4162, 7.4156, 7.4152, 7.4146, 7.4149, 7.4143, 7.4156, 7.415, 7.416, 7.4155, 7.4149, 7.4143, 7.4137, 7.4131, 7.4157, 7.4151, 7.4145, 7.4139, 7.4137, 7.4133, 7.4127, 7.4138, 7.4132, 7.4126, 7.4121, 7.4115, 7.4129, 7.4128, 7.4139, 7.4134, 7.4146, 7.414, 7.4134, 7.413, 7.4124, 7.4118, 7.4114, 7.4153, 7.415, 7.4144, 7.4142, 7.4152, 7.415, 7.4143, 7.4138, 7.4132, 7.4141, 7.4138, 7.4147, 7.4141, 7.4152, 7.4158, 7.4152, 7.4139, 7.4133, 7.4134, 7.413, 7.4124, 7.4123, 7.4118, 7.416, 7.414, 7.4149, 7.4146, 7.4141, 7.4136, 7.4145, 7.414, 7.4158, 7.4155, 7.4173, 7.4167, 7.4161, 7.4157, 7.4151, 7.4146, 7.414, 7.4135, 7.4129, 7.4123, 7.4118, 7.4112, 7.4122, 7.4131, 7.4142, 7.4136, 7.413, 7.4127, 7.4108, 7.4105, 7.4101, 7.4095, 7.409, 7.41, 7.4174, 7.4171, 7.4167, 7.4178, 7.4175, 7.4172, 7.4168, 7.4164, 7.4158, 7.4153, 7.4153, 7.4182, 7.4192, 7.4189, 7.4199, 7.4194, 7.4193, 7.4205, 7.4199, 7.421, 7.4204, 7.4198, 7.4198, 7.4193, 7.419, 7.4201, 7.4198, 7.4194, 7.4188, 7.4182, 7.4182, 7.4178, 7.4173, 7.4168, 7.4165, 7.4177, 7.4172, 7.4167, 7.4167, 7.4163, 7.4157, 7.4154, 7.415, 7.4147, 7.4156, 7.4153, 7.415, 7.4145, 7.4139, 7.4136, 7.4133, 7.4127, 7.4122, 7.4116, 7.4113, 7.411, 7.4104, 7.4098, 7.4093, 7.4087, 7.4097, 7.4107, 7.4101, 7.4095, 7.4106, 7.4102, 7.4096, 7.4106, 7.41, 7.4097, 7.4093, 7.4089, 7.4085, 7.408, 7.4075, 7.4086, 7.4085, 7.409, 7.4084, 7.4081, 7.4091, 7.4086, 7.4097, 7.4092, 7.4102, 7.4099, 7.4094, 7.4106, 7.4118, 7.4127, 7.4124, 7.412, 7.4114, 7.4124, 7.4121, 7.4116, 7.4111, 7.4105, 7.4102, 7.4083, 7.4078, 7.4076, 7.4073, 7.4083, 7.4077, 7.4087, 7.4082, 7.4079, 7.4075, 7.4069, 7.4065, 7.406, 7.4055, 7.4049, 7.4043, 7.4026, 7.4034, 7.4029, 7.4024, 7.4018, 7.4014, 7.4009, 7.4003, 7.4012, 7.4006, 7.4003, 7.4, 7.3999, 7.4019, 7.4043, 7.4053, 7.4062, 7.4071, 7.4103, 7.4099, 7.4094, 7.409, 7.4085, 7.408, 7.4075, 7.4085, 7.4081, 7.4076, 7.4071, 7.4066, 7.4064, 7.4073, 7.4068, 7.4078, 7.4073, 7.4155, 7.4166, 7.4168, 7.4165, 7.4159, 7.4153, 7.415, 7.4145, 7.4139, 7.4135, 7.4133, 7.4128, 7.4123, 7.4118, 7.4113, 7.4107, 7.4131, 7.4125, 7.412, 7.4118, 7.4114, 7.411, 7.4105, 7.4101, 7.4104, 7.41, 7.4095, 7.4107, 7.4102, 7.4099, 7.4094, 7.409, 7.4086, 7.4083, 7.408, 7.4088, 7.4097, 7.4094, 7.4089, 7.4084, 7.4079, 7.4073, 7.4069, 7.4065, 7.406, 7.4043, 7.4052, 7.4049, 7.4043, 7.4038, 7.4032, 7.4041, 7.4038, 7.4033, 7.403, 7.4027, 7.4034, 7.4031, 7.4041, 7.4041, 7.4056, 7.4053, 7.4052, 7.4048, 7.4044, 7.404, 7.4037, 7.4034, 7.403, 7.4039, 7.4036, 7.4044, 7.4039, 7.4034, 7.403, 7.4026, 7.4021, 7.4015, 7.4027, 7.4022, 7.4018, 7.4029, 7.4029, 7.4024, 7.402, 7.4029, 7.4025, 7.402, 7.4014, 7.4009, 7.4004, 7.4018, 7.4013, 7.4007, 7.4002, 7.4, 7.3995, 7.399, 7.399, 7.3985, 7.398, 7.3976, 7.3992, 7.3987, 7.3983, 7.3978, 7.3994, 7.3989, 7.3984, 7.4003, 7.3998, 7.4001, 7.3997, 7.3992, 7.3987, 7.3997, 7.3993, 7.3988, 7.4012, 7.4006, 7.4, 7.3995, 7.3992, 7.3987, 7.3981, 7.3976, 7.3973, 7.3968, 7.3965, 7.3974, 7.3969, 7.3964, 7.3947, 7.3943, 7.3952, 7.401, 7.4019, 7.4016, 7.4012, 7.4007, 7.4003, 7.4, 7.4014, 7.4011, 7.4025, 7.4021, 7.4019, 7.4017, 7.4012, 7.401, 7.402, 7.4015, 7.401, 7.4006, 7.4003, 7.3998, 7.3993, 7.3989, 7.3984, 7.3979, 7.3974, 7.3971, 7.3971, 7.3965, 7.3962, 7.3964, 7.3962, 7.3957, 7.397, 7.3969, 7.3977, 7.3972, 7.3967, 7.3962, 7.3958, 7.3968, 7.3979, 7.3973, 7.3982, 7.3986, 7.3981, 7.3979, 7.3975, 7.397, 7.3964, 7.3963, 7.396, 7.3957, 7.3981, 7.3976, 7.3971, 7.3967, 7.3977, 7.3973, 7.397, 7.3967, 7.3977, 7.3972, 7.3968, 7.3965, 7.3961, 7.3956, 7.395, 7.3945, 7.394, 7.3935, 7.393, 7.394, 7.3935, 7.3929, 7.3926, 7.3955, 7.3983, 7.3993, 7.3988, 7.3985, 7.3968, 7.3995, 7.3993, 7.3988, 7.3987, 7.3996, 7.4005, 7.4, 7.3995, 7.399, 7.3999, 7.3994, 7.4002, 7.4011, 7.4006, 7.4005, 7.4001, 7.3996, 7.4006, 7.4002, 7.3999, 7.3995, 7.3992, 7.3987, 7.399, 7.3986, 7.3992, 7.4002, 7.3997, 7.3993, 7.3988, 7.3983, 7.3978, 7.3975, 7.4026, 7.4023, 7.4018, 7.4018, 7.4012, 7.4023, 7.4019, 7.4014, 7.4019, 7.4024, 7.4018, 7.4013, 7.4026, 7.4024, 7.404, 7.4038, 7.4033, 7.4028, 7.4023, 7.4032, 7.403, 7.4026, 7.4022, 7.4031, 7.4026, 7.4036, 7.4031, 7.4039, 7.4048, 7.4043, 7.4038, 7.4032, 7.4027, 7.4065, 7.4063, 7.406, 7.4056, 7.4054, 7.4051, 7.405, 7.4058, 7.4066, 7.4074, 7.407, 7.4066, 7.4067, 7.4064, 7.4061, 7.4074, 7.4071, 7.4066, 7.4063, 7.4059, 7.4056, 7.4052, 7.4103, 7.4099, 7.4094, 7.4091, 7.4089, 7.4084, 7.4081, 7.4086, 7.4081, 7.411, 7.4105, 7.4101, 7.411, 7.4106, 7.4102, 7.4097, 7.4106, 7.411, 7.4105, 7.41, 7.4083, 7.408, 7.4075, 7.407, 7.4066, 7.4075, 7.4083, 7.408, 7.4075, 7.407, 7.4065, 7.406, 7.4055, 7.405, 7.4072, 7.4069, 7.4065, 7.4073, 7.4068, 7.4067, 7.4063, 7.4059, 7.4054, 7.4063, 7.4058, 7.4065, 7.4087, 7.4083, 7.4078, 7.4088, 7.4085, 7.4095, 7.4092, 7.41, 7.4095, 7.409, 7.4104, 7.4113, 7.4108, 7.4117, 7.4112, 7.4108, 7.4103, 7.4098, 7.4094, 7.4092, 7.4183, 7.4178, 7.4178, 7.4161, 7.4156, 7.4151, 7.4187, 7.4182, 7.4191, 7.4174, 7.4171, 7.418, 7.4175, 7.4171, 7.418, 7.4175, 7.4183, 7.4192, 7.4202, 7.4211, 7.4206, 7.419, 7.4191, 7.4186, 7.4183, 7.4179, 7.4174, 7.4169, 7.4167, 7.4164, 7.416, 7.4156, 7.4152, 7.4149, 7.4138, 7.4134, 7.4133, 7.415, 7.4147, 7.4156, 7.4151, 7.4148, 7.4143, 7.4138, 7.4134, 7.4129, 7.4126, 7.4123, 7.4138, 7.4133, 7.4141, 7.4137, 7.4134, 7.4129, 7.4124, 7.4121, 7.4118, 7.4113, 7.4121, 7.4116, 7.4112, 7.4109, 7.4104, 7.41, 7.4096, 7.4091, 7.4086, 7.4082, 7.409, 7.4085, 7.4086, 7.4083, 7.4078, 7.4073, 7.4068, 7.4076, 7.4073, 7.4081, 7.4068, 7.4067, 7.4064, 7.4077, 7.4072, 7.4067, 7.4062, 7.4069, 7.4064, 7.4074, 7.4075, 7.406, 7.4056, 7.4053, 7.4049, 7.4046, 7.4045, 7.404, 7.4035, 7.4031, 7.4026, 7.4034, 7.403, 7.4014, 7.4009, 7.4007, 7.4002, 7.3997, 7.4034, 7.4029, 7.404, 7.4052, 7.4047, 7.4042, 7.405, 7.4098, 7.4105, 7.41, 7.4108, 7.4103, 7.41, 7.4095, 7.4104, 7.41, 7.4095, 7.4103, 7.4101, 7.4096, 7.4105, 7.4103, 7.4098, 7.4096, 7.4091, 7.4088, 7.4089, 7.4086, 7.4084, 7.4083, 7.4107, 7.4115, 7.4113, 7.4098, 7.4099, 7.4109, 7.4104, 7.4113, 7.4109, 7.4104, 7.4113, 7.4108, 7.4104, 7.4102, 7.4098, 7.4093, 7.4089, 7.4085, 7.4081, 7.4077, 7.4074, 7.4082, 7.4077, 7.4073, 7.4068, 7.4066, 7.4062, 7.4059, 7.4069, 7.4064, 7.4075, 7.4072, 7.4067, 7.4072, 7.4069, 7.4066, 7.4063, 7.406, 7.4065, 7.4061, 7.406, 7.4056, 7.4053, 7.4051, 7.4035, 7.4032, 7.4042, 7.4041, 7.405, 7.4059, 7.4056, 7.4055, 7.4053, 7.4064, 7.4063, 7.407, 7.4066, 7.4064, 7.4059, 7.406, 7.4068, 7.4066, 7.4067, 7.4062, 7.4057, 7.4054, 7.4049, 7.4045, 7.4043, 7.404, 7.4052, 7.4047, 7.4043, 7.4066, 7.4077, 7.4089, 7.4084, 7.4091, 7.4086, 7.4083, 7.408, 7.4076, 7.4073, 7.4068, 7.4063, 7.4065, 7.4061, 7.4058, 7.4055, 7.4068, 7.414, 7.4137, 7.4134, 7.4131, 7.4129, 7.4126, 7.4134, 7.413, 7.4125, 7.4133, 7.4129, 7.4127, 7.4122, 7.4128, 7.4123, 7.4118, 7.4115, 7.4111, 7.4119, 7.4117, 7.4112, 7.4107, 7.4102, 7.4097, 7.4095, 7.4103, 7.411, 7.4108, 7.4105, 7.4103, 7.4098, 7.4106, 7.4103, 7.4099, 7.4085, 7.408, 7.4082, 7.408, 7.4075, 7.4074, 7.4069, 7.4077, 7.4072, 7.408, 7.4088, 7.4086, 7.4082, 7.4078, 7.4074, 7.4083, 7.408, 7.4066, 7.4062, 7.4095, 7.409, 7.4102, 7.4097, 7.4096, 7.4106, 7.4147, 7.4168, 7.4165, 7.4163, 7.4171, 7.4216, 7.4211, 7.4208, 7.4206, 7.4204, 7.42, 7.4196, 7.4193, 7.4202, 7.4199, 7.4194, 7.4189, 7.4187, 7.4219, 7.4216, 7.4225, 7.4224, 7.4232, 7.423, 7.4238, 7.4236, 7.4242, 7.4237, 7.4253, 7.4279, 7.4274, 7.4272, 7.4267, 7.4262, 7.4246, 7.4248, 7.4243, 7.4239, 7.4247, 7.4244, 7.424, 7.4248, 7.4245, 7.424, 7.4251, 7.4248, 7.4269, 7.4267, 7.4275, 7.427, 7.4278, 7.4286, 7.4281, 7.4289, 7.4284, 7.428, 7.4277, 7.4272, 7.4267, 7.4265, 7.4273, 7.427, 7.4266, 7.4262, 7.4258, 7.4253, 7.425, 7.4292, 7.4287, 7.4285, 7.4282, 7.4277, 7.4272, 7.428, 7.4276, 7.4283, 7.4278, 7.4277, 7.4272, 7.4304, 7.43, 7.4297, 7.4295, 7.4291, 7.4299, 7.4296, 7.4299, 7.4295, 7.4303, 7.4311, 7.4308, 7.4308, 7.4308, 7.4303, 7.4311, 7.4307, 7.4315, 7.431, 7.4305, 7.4313, 7.431, 7.4296, 7.4303, 7.431, 7.4306, 7.4304, 7.43, 7.4296, 7.4293, 7.4289, 7.4285, 7.4281, 7.4277, 7.4303, 7.4312, 7.4308, 7.4304, 7.43, 7.43, 7.4296, 7.4304, 7.4334, 7.4329, 7.4324, 7.432, 7.4317, 7.4313, 7.4322, 7.4329, 7.4326, 7.4334, 7.4329, 7.4338, 7.4335, 7.433, 7.4337, 7.4332, 7.4339, 7.4337, 7.4332, 7.434, 7.4347, 7.4344, 7.434, 7.4336, 7.4331, 7.433, 7.4327, 7.4323, 7.4322, 7.4317, 7.4316, 7.4312, 7.4297, 7.4294, 7.4289, 7.4287, 7.4283, 7.428, 7.4276, 7.4276, 7.4272, 7.4269, 7.4264, 7.4272, 7.4274, 7.4272, 7.4257, 7.4253, 7.425, 7.4259, 7.4255, 7.4252, 7.4249, 7.4244, 7.423, 7.4245, 7.4242, 7.4238, 7.4246, 7.4232, 7.424, 7.4235, 7.4232, 7.4229, 7.4226, 7.4226, 7.4224, 7.422, 7.4217, 7.4213, 7.4208, 7.4217, 7.4214, 7.4209, 7.4206, 7.4206, 7.4203, 7.4199, 7.4196, 7.4191, 7.422, 7.4218, 7.4213, 7.4211, 7.4207, 7.4202, 7.4198, 7.4256, 7.4265, 7.4261, 7.4269, 7.4267, 7.4263, 7.426, 7.4257, 7.4253, 7.4261, 7.4257, 7.4253, 7.4249, 7.4245, 7.4243, 7.4243, 7.4239, 7.4235, 7.423, 7.4229, 7.4224, 7.4221, 7.4217, 7.4213, 7.4221, 7.4229, 7.4226, 7.4224, 7.422, 7.4216, 7.4212, 7.4208, 7.4236, 7.4232, 7.4228, 7.4236, 7.4237, 7.4233, 7.4228, 7.4224, 7.4221, 7.4227, 7.4223, 7.4225, 7.4222, 7.4219, 7.4216, 7.4212, 7.4219, 7.4226, 7.4221, 7.4229, 7.4236, 7.4231, 7.4238, 7.4235, 7.4242, 7.4238, 7.4236, 7.4244, 7.424, 7.4238, 7.4236, 7.4245, 7.4244, 7.4243, 7.4239, 7.4239, 7.4235, 7.4237, 7.4234, 7.4264, 7.4261, 7.4257, 7.4253, 7.4249, 7.4246, 7.4242, 7.425, 7.4248, 7.4257, 7.4266, 7.4251, 7.4249, 7.4245, 7.4243, 7.4251, 7.4258, 7.4253, 7.4258, 7.4267, 7.4252, 7.4248, 7.4245, 7.4241, 7.4237, 7.4234, 7.4242, 7.4238, 7.4234, 7.423, 7.4226, 7.4224, 7.422, 7.4216, 7.4213, 7.422, 7.4216, 7.4224, 7.4223, 7.422, 7.4218, 7.4214, 7.4211, 7.4219, 7.4228, 7.4225, 7.4222, 7.4223, 7.4211, 7.4218, 7.4214, 7.4211, 7.421, 7.4229, 7.4228, 7.4214, 7.4212, 7.4219, 7.4217, 7.4212, 7.4209, 7.4204, 7.4225, 7.4222, 7.4219, 7.4217, 7.4225, 7.4234, 7.4244, 7.425, 7.4259, 7.4256, 7.4254, 7.425, 7.4247, 7.4245, 7.4241, 7.425, 7.4246, 7.4243, 7.4239, 7.4235, 7.4242, 7.425, 7.4248, 7.4244, 7.424, 7.4237, 7.4233, 7.423, 7.4226, 7.4223, 7.4209, 7.4208, 7.4206, 7.4203, 7.4211, 7.4208, 7.4204, 7.4201, 7.4197, 7.4194, 7.4194, 7.419, 7.4186, 7.4182, 7.4178, 7.4174, 7.417, 7.4166, 7.4162, 7.4169, 7.4165, 7.4178, 7.4174, 7.4169, 7.4165, 7.4178, 7.4176, 7.4173, 7.4169, 7.4176, 7.4174, 7.4171, 7.4167, 7.4153, 7.4161, 7.4192, 7.4188, 7.4186, 7.4182, 7.4179, 7.4175, 7.4182, 7.4178, 7.4185, 7.4193, 7.4189, 7.4186, 7.4182, 7.4184, 7.418, 7.4177, 7.4173, 7.4187, 7.4183, 7.4179, 7.4186, 7.4182, 7.4178, 7.4175, 7.4171, 7.4172, 7.4167, 7.4164, 7.4162, 7.4158, 7.4157, 7.4153, 7.4151, 7.4148, 7.4134, 7.4141, 7.4137, 7.4134, 7.4145, 7.4141, 7.415, 7.4146, 7.4142, 7.4147, 7.4145, 7.414, 7.4136, 7.4132, 7.413, 7.4138, 7.4135, 7.4151, 7.4147, 7.4154, 7.4161, 7.4157, 7.4153, 7.415, 7.4146, 7.4155, 7.4161, 7.4161, 7.4159, 7.4159, 7.4159, 7.4155, 7.4153, 7.4149, 7.4146, 7.4142, 7.4139, 7.4193, 7.419, 7.4185, 7.4187, 7.4184, 7.4184, 7.4192, 7.4199, 7.4206, 7.4213, 7.4211, 7.4209, 7.4207, 7.4214, 7.421, 7.4206, 7.4202, 7.4198, 7.4207, 7.4225, 7.4234, 7.4287, 7.4283, 7.4291, 7.4299, 7.4297, 7.4293, 7.429, 7.4297, 7.4293, 7.4289, 7.4296, 7.4292, 7.4299, 7.4295, 7.4291, 7.4299, 7.4296, 7.4294, 7.429, 7.4286, 7.4282, 7.428, 7.4276, 7.4272, 7.4269, 7.4265, 7.4261, 7.4257, 7.4255, 7.4262, 7.4257, 7.4253, 7.4249, 7.4276, 7.4272, 7.427, 7.4268, 7.4264, 7.4262, 7.4272, 7.4279, 7.4275, 7.4281, 7.4289, 7.4285, 7.428, 7.4277, 7.4284, 7.428, 7.4287, 7.4283, 7.4281, 7.4278, 7.4285, 7.4282, 7.428, 7.4287, 7.4283, 7.4283, 7.4279, 7.4275, 7.4271, 7.4267, 7.4275, 7.4282, 7.4285, 7.4282, 7.428, 7.4276, 7.4272, 7.427, 7.4269, 7.4276, 7.4273, 7.4269, 7.4265, 7.4263, 7.4259, 7.4268, 7.4266, 7.4261, 7.4259, 7.4255, 7.4253, 7.426, 7.4256, 7.4253, 7.4249, 7.4245, 7.4242, 7.4238, 7.4234, 7.423, 7.4227, 7.4224, 7.422, 7.4216, 7.4213, 7.4237, 7.4235, 7.4232, 7.4228, 7.4224, 7.4231, 7.4229, 7.4225, 7.4226, 7.4223, 7.4219, 7.4215, 7.4217, 7.4213, 7.422, 7.4216, 7.4223, 7.4219, 7.4215, 7.4222, 7.4227, 7.4223, 7.422, 7.4216, 7.4202, 7.4199, 7.4206, 7.4202, 7.4199, 7.4196, 7.4214, 7.421, 7.4206, 7.4204, 7.4203, 7.4199, 7.4195, 7.4191, 7.4188, 7.4186, 7.4194, 7.419, 7.4187, 7.4183, 7.418, 7.4187, 7.4193, 7.4195, 7.4191, 7.4191, 7.419, 7.4186, 7.4172, 7.4169, 7.4167, 7.4164, 7.416, 7.4156, 7.4183, 7.419, 7.4186, 7.4182, 7.4195, 7.4193, 7.4189, 7.4196, 7.4214, 7.4212, 7.421, 7.4229, 7.4237, 7.4236, 7.4232, 7.4229, 7.4227, 7.4224, 7.4231, 7.4239, 7.4235, 7.4243, 7.423, 7.4216, 7.4213, 7.421, 7.4208, 7.4225, 7.4225, 7.4211, 7.4217, 7.4213, 7.4211, 7.4208, 7.4205, 7.4195, 7.4192, 7.4201, 7.4208, 7.4204, 7.42, 7.4208, 7.4204, 7.4203, 7.4199, 7.4195, 7.4191, 7.4187, 7.4174, 7.4172, 7.417, 7.4177, 7.4173, 7.4171, 7.4178, 7.4185, 7.4181, 7.4177, 7.4174, 7.4171, 7.4169, 7.4173, 7.4169, 7.4176, 7.4174, 7.4171, 7.4167, 7.4167, 7.4167, 7.4163, 7.4159, 7.4156, 7.4152, 7.4148, 7.4155, 7.4153, 7.4149, 7.4166, 7.4163, 7.4161, 7.4158, 7.4165, 7.4162, 7.4163, 7.416, 7.4173, 7.4222, 7.4218, 7.4214, 7.422, 7.4228, 7.4226, 7.4222, 7.424, 7.4237, 7.4235, 7.4243, 7.425, 7.4246, 7.4242, 7.4239, 7.4256, 7.4252, 7.4239, 7.4235, 7.4231, 7.4229, 7.4225, 7.4221, 7.4227, 7.4223, 7.422, 7.4216, 7.4212, 7.4199, 7.4195, 7.4203, 7.4199, 7.4197, 7.4203, 7.4201, 7.4197, 7.4204, 7.421, 7.4207, 7.4203, 7.4199, 7.4195, 7.4191, 7.4203, 7.4199, 7.4195, 7.4202, 7.4198, 7.4207, 7.4203, 7.42, 7.4198, 7.4201, 7.4208, 7.4205, 7.4202, 7.4189, 7.4196, 7.4193, 7.4198, 7.4195, 7.4196, 7.4192, 7.4188, 7.4184, 7.418, 7.4176, 7.4183, 7.4189, 7.4185, 7.4181, 7.4177, 7.4183, 7.418, 7.4176, 7.4173, 7.4171, 7.4167, 7.4165, 7.4172, 7.4168, 7.4165, 7.4228, 7.4224, 7.4231, 7.4227, 7.4223, 7.422, 7.4216, 7.4214, 7.421, 7.4207, 7.4208, 7.4214, 7.4221, 7.4219, 7.4225, 7.4222, 7.4218, 7.4216, 7.4212, 7.4228, 7.4225, 7.4222, 7.4228, 7.4224, 7.422, 7.4231, 7.4227, 7.4234, 7.424, 7.4247, 7.4254, 7.4261, 7.4261, 7.4258, 7.4265, 7.4263, 7.4259, 7.4266, 7.4273, 7.4269, 7.4265, 7.4263, 7.426, 7.4256, 7.4253, 7.4243, 7.4241, 7.424, 7.4237, 7.4235, 7.4231, 7.4233, 7.4229, 7.4236, 7.4242, 7.4249, 7.4245, 7.4241, 7.4237, 7.4233, 7.4229, 7.4235, 7.4231, 7.4229, 7.4247, 7.4251, 7.4258, 7.4258, 7.4271, 7.4267, 7.4263, 7.431, 7.4306, 7.4302, 7.4298, 7.4295, 7.4282, 7.4278, 7.4276, 7.4283, 7.4279, 7.4285, 7.4281, 7.4279, 7.4275, 7.4271, 7.4284, 7.4319, 7.4326, 7.4322, 7.4318, 7.4314, 7.431, 7.4306, 7.4302, 7.43, 7.4308, 7.4304, 7.4301, 7.4297, 7.4293, 7.4289, 7.4291, 7.4317, 7.4314, 7.431, 7.4307, 7.4303, 7.43, 7.4287, 7.4294, 7.429, 7.4296, 7.4292, 7.4299, 7.4296, 7.4292, 7.4296, 7.4292, 7.4288, 7.4284, 7.428, 7.4287, 7.4294, 7.429, 7.4286, 7.4282, 7.4278, 7.4275, 7.4271, 7.4273, 7.4272, 7.4279, 7.4276, 7.4275, 7.4282, 7.4289, 7.4285, 7.4291, 7.429, 7.4288, 7.4285, 7.4292, 7.4299, 7.4295, 7.4291, 7.4298, 7.4296, 7.4295, 7.4293, 7.4289, 7.4296, 7.4294, 7.429, 7.429, 7.4278, 7.4285, 7.4281, 7.4268, 7.4268, 7.4278, 7.4265, 7.4261, 7.4268, 7.4266, 7.4263, 7.4259, 7.4255, 7.4252, 7.4248, 7.4245, 7.4241, 7.4238, 7.4244, 7.4248, 7.4254, 7.425, 7.4248, 7.4254, 7.4251, 7.4248, 7.4255, 7.4264, 7.4266, 7.4263, 7.4261, 7.4289, 7.4285, 7.4282, 7.4286, 7.4292, 7.4289, 7.4285, 7.4291, 7.4287, 7.4283, 7.4279, 7.4275, 7.4273, 7.4286, 7.4282, 7.428, 7.4277, 7.4274, 7.4274, 7.428, 7.4268, 7.4265, 7.4262, 7.427, 7.4266, 7.4262, 7.4268, 7.4266, 7.4272, 7.4268, 7.4264, 7.4271, 7.4267, 7.4263, 7.4262, 7.4259, 7.4257, 7.4255, 7.4252, 7.4249, 7.4275, 7.4282, 7.428, 7.4287, 7.4284, 7.428, 7.4276, 7.4273, 7.428, 7.4278, 7.4274, 7.4271, 7.4278, 7.4276, 7.4282, 7.4278, 7.4274, 7.4282, 7.4278, 7.4307, 7.4314, 7.431, 7.4316, 7.4312, 7.4309, 7.4334, 7.434, 7.4347, 7.4354, 7.4351, 7.4358, 7.4354, 7.4352, 7.4358, 7.4364, 7.436, 7.4358, 7.4369, 7.4375, 7.4371, 7.4377, 7.4374, 7.4371, 7.4377, 7.4374, 7.437, 7.4367, 7.4363, 7.4369, 7.4375, 7.4381, 7.438, 7.4386, 7.4382, 7.4388, 7.4384, 7.439, 7.4396, 7.4397, 7.4394, 7.4393, 7.4389, 7.4387, 7.4384, 7.4383, 7.4389, 7.4395, 7.4392, 7.4389, 7.4385, 7.4383, 7.438, 7.4378, 7.4377, 7.4374, 7.437, 7.4367, 7.4365, 7.4371, 7.4368, 7.4376, 7.4382, 7.4379, 7.4377, 7.4375, 7.4382, 7.4388, 7.4386, 7.4382, 7.4379, 7.4377, 7.4374, 7.437, 7.4366, 7.4362, 7.4368, 7.4366, 7.4405, 7.4411, 7.4418, 7.4414, 7.441, 7.4409, 7.4407, 7.441, 7.4407, 7.4404, 7.44, 7.4397, 7.4393, 7.4389, 7.4385, 7.4392, 7.4388, 7.4384, 7.442, 7.4417, 7.4413, 7.441, 7.4398, 7.4397, 7.4396, 7.4392, 7.4399, 7.4398, 7.4405, 7.4401, 7.4399, 7.4396, 7.4393, 7.4389, 7.4396, 7.4403, 7.4401, 7.4426, 7.4422, 7.4419, 7.4416, 7.4413, 7.4419, 7.4415, 7.4414, 7.4411, 7.4399, 7.4395, 7.4392, 7.4392, 7.439, 7.4396, 7.4392, 7.4398, 7.4395, 7.4393, 7.439, 7.4386, 7.4383, 7.4381, 7.4379, 7.4376, 7.4375, 7.4372, 7.4368, 7.4364, 7.436, 7.4358, 7.4356, 7.4357, 7.4367, 7.4363, 7.436, 7.4356, 7.4362, 7.4358, 7.4346, 7.4358, 7.4354, 7.435, 7.4348, 7.4345, 7.4342, 7.4348, 7.4354, 7.4351, 7.435, 7.4346, 7.4343, 7.4341, 7.4337, 7.4333, 7.4331, 7.4354, 7.4351, 7.4347, 7.4344, 7.4341, 7.4339, 7.4345, 7.4342, 7.4338, 7.4334, 7.4341, 7.4337, 7.4343, 7.4339, 7.4336, 7.4337, 7.4335, 7.4341, 7.4337, 7.434, 7.4338, 7.4346, 7.4344, 7.4341, 7.434, 7.4347, 7.4354, 7.4351, 7.4347, 7.4344, 7.4341, 7.4347, 7.4346, 7.4343, 7.435, 7.435, 7.4349, 7.4345, 7.4351, 7.4349, 7.4347, 7.4343, 7.4341, 7.4338, 7.4335, 7.4332, 7.4329, 7.4328, 7.4332, 7.4339, 7.4338, 7.4345, 7.4343, 7.4341, 7.4339, 7.4336, 7.4335, 7.4341, 7.4338, 7.4336, 7.4335, 7.4342, 7.4339, 7.4335, 7.4333, 7.433, 7.4327, 7.4323, 7.433, 7.4336, 7.4342, 7.434, 7.4338, 7.4335, 7.4333, 7.4339, 7.4346, 7.4352, 7.4348, 7.4346, 7.4351, 7.4357, 7.4363, 7.437, 7.4367, 7.4363, 7.4362, 7.4374, 7.438, 7.4378, 7.4366, 7.4364, 7.4361, 7.4359, 7.4355, 7.4352, 7.4349, 7.4355, 7.4351, 7.4357, 7.4363, 7.4369, 7.4375, 7.4372, 7.4369, 7.4365, 7.4361, 7.4367, 7.4365, 7.4363, 7.4383, 7.4379, 7.4375, 7.4373, 7.4379, 7.4376, 7.4372, 7.4369, 7.4367, 7.4374, 7.4362, 7.4369, 7.4366, 7.4365, 7.4362, 7.4369, 7.4366, 7.4354, 7.436, 7.4357, 7.4362, 7.4368, 7.4375, 7.4373, 7.4371, 7.4367, 7.4363, 7.4359, 7.4355, 7.4388, 7.4386, 7.4384, 7.439, 7.4386, 7.4401, 7.4408, 7.4414, 7.442, 7.4418, 7.4419, 7.4415, 7.4411, 7.44, 7.4398, 7.4399, 7.4395, 7.4392, 7.4398, 7.4394, 7.4385, 7.4381, 7.4377, 7.4374, 7.438, 7.4387, 7.4394, 7.439, 7.4387, 7.4385, 7.4383, 7.438, 7.4369, 7.4375, 7.4372, 7.4368, 7.4365, 7.4362, 7.4368, 7.4365, 7.4364, 7.437, 7.4376, 7.4373, 7.437, 7.4368, 7.4364, 7.4361, 7.4358, 7.4386, 7.4383, 7.4379, 7.4385, 7.4381, 7.4377, 7.4383, 7.4383, 7.4379, 7.4385, 7.4382, 7.4378, 7.4375, 7.4378, 7.4367, 7.4364, 7.4361, 7.4359, 7.4365, 7.4371, 7.4368, 7.4365, 7.4363, 7.4361, 7.4358, 7.4354, 7.436, 7.4357, 7.4354, 7.4352, 7.4349, 7.4357, 7.4354, 7.4351, 7.4348, 7.4346, 7.4344, 7.435, 7.4346, 7.4345, 7.4352, 7.4349, 7.4347, 7.4363, 7.4362, 7.4412, 7.4418, 7.4416, 7.4413, 7.4419, 7.4425, 7.4431, 7.4427, 7.4443, 7.4439, 7.4428, 7.4425, 7.4431, 7.4436, 7.4432, 7.4429, 7.4425, 7.4422, 7.4418, 7.4424, 7.442, 7.4423, 7.4419, 7.4416, 7.4413, 7.4409, 7.4398, 7.4395, 7.4391, 7.4389, 7.4395, 7.4391, 7.439, 7.4386, 7.4383, 7.4381, 7.4379, 7.4376, 7.4372, 7.4369, 7.4375, 7.4381, 7.4387, 7.4403, 7.4418, 7.4417, 7.4414, 7.4411, 7.4408, 7.4406, 7.4403, 7.44, 7.4396, 7.4405, 7.4403, 7.44, 7.4398, 7.4395, 7.4392, 7.4398, 7.4395, 7.4393, 7.439, 7.4387, 7.4394, 7.439, 7.4387, 7.4393, 7.4399, 7.4405, 7.4401, 7.4399, 7.4395, 7.4391, 7.4393, 7.4407, 7.4403, 7.4402, 7.44, 7.4397, 7.4396, 7.4401, 7.44, 7.4406, 7.4402, 7.4399, 7.4399, 7.4409, 7.4405, 7.4401, 7.4399, 7.4395, 7.4426, 7.4422, 7.4424, 7.4423, 7.4429, 7.4426, 7.4431, 7.4435, 7.4433, 7.4429, 7.4426, 7.4422, 7.4418, 7.4415, 7.4412, 7.441, 7.4415, 7.4412, 7.441, 7.4409, 7.4408, 7.4414, 7.442, 7.4416, 7.4413, 7.4409, 7.4407, 7.4404, 7.4401, 7.4398, 7.4395, 7.4392, 7.4407, 7.4406, 7.4412, 7.4418, 7.4416, 7.4414, 7.4411, 7.4416, 7.4413, 7.441, 7.4407, 7.4404, 7.4401, 7.44, 7.4397, 7.4394, 7.44, 7.4397, 7.4397, 7.4405, 7.4402, 7.4399, 7.4405, 7.4402, 7.44, 7.4406, 7.4403, 7.44, 7.4405, 7.4402, 7.4408, 7.4414, 7.4413, 7.441, 7.4408, 7.4414, 7.4411, 7.4416, 7.4412, 7.4409, 7.4406, 7.4404, 7.441, 7.441, 7.4416, 7.4452, 7.4448, 7.4454, 7.4452, 7.4449, 7.4446, 7.4465, 7.4462, 7.4459, 7.4465, 7.4471, 7.4468, 7.4465, 7.4462, 7.446, 7.4457, 7.4463, 7.447, 7.4474, 7.4473, 7.447, 7.4466, 7.4462, 7.4459, 7.4457, 7.4453, 7.4453, 7.445, 7.4448, 7.4454, 7.4451, 7.4448, 7.4444, 7.4441, 7.4439, 7.4445, 7.4442, 7.4441, 7.4438, 7.4444, 7.4442, 7.444, 7.4437, 7.4444, 7.4443, 7.4441, 7.4457, 7.4457, 7.4463, 7.4469, 7.4471, 7.4471, 7.447, 7.447, 7.4469, 7.4468, 7.4465, 7.4462, 7.4468, 7.4467, 7.4464, 7.4463, 7.4469, 7.4476, 7.4473, 7.4471, 7.4469, 7.4467, 7.4466, 7.4465, 7.4464, 7.4461, 7.4461, 7.4468, 7.4468, 7.4468, 7.4475, 7.4475, 7.4481, 7.4478, 7.4478, 7.4475, 7.4475, 7.4476, 7.4476, 7.4473, 7.447, 7.4467, 7.4466, 7.4463, 7.4461, 7.4462, 7.4478, 7.4477, 7.4474, 7.4471, 7.4478, 7.4476, 7.4483, 7.4472, 7.4472, 7.4469, 7.4475, 7.4472, 7.4478, 7.4475], '192.168.122.112': [5.4374, 5.6017, 5.5869, 5.5019, 5.5944, 5.6154, 5.7422, 5.7489, 6.3936, 6.3733, 6.3329, 6.3161, 6.3314, 6.2822, 6.2252, 6.2252, 6.237, 6.2496, 6.4751, 6.4505, 6.6715, 6.6209, 6.5924, 6.5475, 6.7619, 6.761, 6.717, 6.8626, 6.83, 6.7829, 6.7566, 6.891, 6.8432, 6.8105, 6.7956, 6.9084, 6.8882, 6.8519, 6.8153, 6.7788, 7.1727, 7.4555, 7.4147, 7.3723, 7.3271, 7.4084, 7.482, 7.4378, 7.3971, 7.3547, 7.3158, 7.2956, 7.2586, 7.2379, 7.3075, 7.2785, 7.3428, 7.4198, 7.4766, 7.4463, 7.4149, 7.3906, 7.3612, 7.4171, 7.3868, 7.3541, 7.3246, 7.2286, 7.2002, 7.1848, 7.169, 7.2183, 7.1931, 7.1804, 7.0927, 7.0706, 7.3733, 7.3644, 7.3458, 7.3866, 7.3607, 7.3378, 7.3149, 7.2914, 7.3396, 7.3199, 7.2985, 7.3379, 7.3217, 7.3615, 7.3411, 7.3315, 7.314, 7.2936, 7.2283, 7.2083, 7.189, 7.1706, 7.157, 7.1395, 7.1212, 7.1602, 7.1437, 7.1314, 7.1183, 7.1527, 7.1882, 7.1784, 7.1622, 7.1491, 7.1806, 7.1693, 7.1549, 7.1424, 7.1309, 7.1277, 7.1132, 7.0982, 7.0849, 7.0761, 7.0657, 7.0588, 7.0495, 7.0424, 6.9899, 6.9785, 6.9694, 6.9579, 6.9475, 6.9425, 6.975, 6.99, 6.9825, 6.9699, 7.0021, 6.991, 6.9816, 6.9705, 6.9618, 6.9886, 6.9799, 6.9684, 6.9654, 6.9562, 6.984, 6.9782, 6.9758, 6.9673, 6.9563, 6.9573, 6.9515, 6.9547, 6.9463, 7.0111, 7.033, 7.0239, 7.0819, 7.0705, 7.0593, 7.0824, 7.0745, 7.0636, 7.0535, 7.0468, 7.0378, 7.027, 7.0494, 7.0728, 7.0636, 7.0874, 7.0801, 7.1035, 7.1255, 7.1154, 7.1052, 7.1266, 7.1209, 7.145, 7.1356, 7.1286, 7.1195, 7.1103, 7.1014, 7.0958, 7.0859, 7.0796, 7.073, 7.0661, 7.0892, 7.0822, 7.1041, 7.0981, 7.0966, 7.0872, 7.0833, 7.1043, 7.2041, 7.1965, 7.1868, 7.1785, 7.1707, 7.1608, 7.1563, 7.1816, 7.1744, 7.1686, 7.1605, 7.1536, 7.1465, 7.141, 7.1583, 7.176, 7.1719, 7.166, 7.1603, 7.1515, 7.1434, 7.1362, 7.1428, 7.1597, 7.2515, 7.3986, 7.3893, 7.3832, 7.4478, 7.4632, 7.454, 7.4464, 7.4377, 7.4314, 7.4262, 7.4444, 7.4359, 7.4273, 7.4189, 7.4139, 7.428, 7.4192, 7.4119, 7.4288, 7.4232, 7.4175, 7.41, 7.4026, 7.3968, 7.3908, 7.3842, 7.3975, 7.4097, 7.4034, 7.4576, 7.4716, 7.4857, 7.4996, 7.5967, 7.6107, 7.6022, 7.6155, 7.6092, 7.6008, 7.613, 7.6059, 7.5992, 7.5723, 7.5644, 7.5575, 7.5722, 7.5655, 7.5798, 7.5726, 7.5847, 7.5985, 7.6123, 7.6072, 7.6013, 7.5929, 7.5846, 7.5784, 7.5703, 7.5626, 7.5742, 7.5855, 7.5798, 7.5724, 7.6023, 7.5995, 7.5935, 7.5879, 7.5995, 7.5923, 7.5849, 7.5962, 7.5912, 7.5848, 7.577, 7.5714, 7.5654, 7.5836, 7.5774, 7.5703, 7.5656, 7.5604, 7.5531, 7.5492, 7.544, 7.5544, 7.5649, 7.5593, 7.5692, 7.5787, 7.5718, 7.565, 7.5582, 7.5528, 7.5457, 7.5388, 7.5521, 7.5335, 7.5441, 7.5373, 7.5348, 7.5298, 7.5243, 7.5186, 7.4971, 7.4904, 7.484, 7.4935, 7.4873, 7.4811, 7.4759, 7.471, 7.4816, 7.4756, 7.47, 7.4664, 7.4609, 7.4563, 7.4512, 7.4447, 7.4403, 7.4359, 7.4302, 7.4271, 7.4212, 7.4307, 7.4256, 7.4212, 7.4175, 7.4136, 7.4078, 7.403, 7.3989, 7.4786, 7.4882, 7.4829, 7.4926, 7.5129, 7.5066, 7.5004, 7.494, 7.4893, 7.4847, 7.4804, 7.4804, 7.4892, 7.498, 7.4921, 7.4864, 7.4804, 7.4802, 7.4896, 7.4983, 7.4932, 7.4898, 7.4989, 7.4934, 7.492, 7.4881, 7.4855, 7.5247, 7.5206, 7.5028, 7.5119, 7.5242, 7.52, 7.5155, 7.5111, 7.493, 7.4887, 7.4844, 7.48, 7.4767, 7.4715, 7.468, 7.4637, 7.4471, 7.4646, 7.4726, 7.4822, 7.4768, 7.4714, 7.48, 7.4745, 7.4707, 7.4669, 7.4748, 7.4718, 7.4678, 7.4627, 7.4579, 7.4526, 7.4483, 7.4431, 7.4519, 7.4469, 7.4437, 7.452, 7.4529, 7.4482, 7.4446, 7.4425, 7.4465, 7.4427, 7.4386, 7.4465, 7.4421, 7.4392, 7.4345, 7.4302, 7.4267, 7.4239, 7.4212, 7.4169, 7.4259, 7.4345, 7.4391, 7.4475, 7.4426, 7.4281, 7.4253, 7.4224, 7.4179, 7.4376, 7.4331, 7.4407, 7.4365, 7.4734, 7.4689, 7.4655, 7.4634, 7.4597, 7.4558, 7.4626, 7.4592, 7.4473, 7.4426, 7.4389, 7.4358, 7.4316, 7.427, 7.4223, 7.4189, 7.4258, 7.4212, 7.4396, 7.436, 7.4541, 7.4529, 7.4978, 7.4986, 7.4949, 7.4908, 7.4874, 7.4838, 7.4806, 7.4667, 7.4739, 7.4707, 7.4719, 7.4794, 7.4755, 7.4724, 7.469, 7.4574, 7.4547, 7.451, 7.4467, 7.4423, 7.4487, 7.4445, 7.4424, 7.4412, 7.4378, 7.4338, 7.4295, 7.4255, 7.4219, 7.4342, 7.4412, 7.4642, 7.4731, 7.4794, 7.4755, 7.4712, 7.4679, 7.4748, 7.4879, 7.4843, 7.4808, 7.4765, 7.4737, 7.4701, 7.4676, 7.4738, 7.4708, 7.4668, 7.4744, 7.4708, 7.4715, 7.4684, 7.4645, 7.4609, 7.4676, 7.4685, 7.4758, 7.473, 7.4703, 7.483, 7.4878, 7.4949, 7.493, 7.4897, 7.4857, 7.4834, 7.4796, 7.4672, 7.4832, 7.4791, 7.4757, 7.4839, 7.4825, 7.4785, 7.4761, 7.4728, 7.4797, 7.4764, 7.473, 7.4693, 7.4654, 7.4715, 7.4683, 7.4643, 7.463, 7.4592, 7.4557, 7.461, 7.4573, 7.4547, 7.463, 7.4595, 7.4576, 7.454, 7.4503, 7.4558, 7.4531, 7.4502, 7.4466, 7.4464, 7.4429, 7.4399, 7.446, 7.4521, 7.4483, 7.4537, 7.4506, 7.4473, 7.4435, 7.4406, 7.4291, 7.4352, 7.441, 7.4383, 7.4347, 7.4325, 7.4298, 7.4307, 7.437, 7.4335, 7.438, 7.4352, 7.4323, 7.4291, 7.4353, 7.4411, 7.4392, 7.4592, 7.4741, 7.4625, 7.4769, 7.4735, 7.4705, 7.4769, 7.4737, 7.4706, 7.5045, 7.5109, 7.5301, 7.5273, 7.5251, 7.5232, 7.5196, 7.51, 7.5169, 7.5138, 7.5109, 7.5085, 7.5067, 7.5037, 7.5004, 7.4983, 7.4962, 7.4932, 7.49, 7.4864, 7.4929, 7.4902, 7.5047, 7.5021, 7.5002, 7.4972, 7.4961, 7.4927, 7.498, 7.5036, 7.5007, 7.4974, 7.4957, 7.4928, 7.49, 7.4867, 7.4918, 7.5202, 7.5172, 7.5141, 7.5148, 7.5248, 7.5215, 7.5268, 7.5232, 7.5278, 7.5244, 7.5213, 7.5179, 7.5145, 7.5113, 7.516, 7.5127, 7.5342, 7.534, 7.54, 7.5378, 7.5345, 7.5322, 7.5311, 7.5287, 7.5288, 7.5261, 7.5336, 7.5312, 7.529, 7.5263, 7.5321, 7.5288, 7.5269, 7.5235, 7.5206, 7.5176, 7.5145, 7.5121, 7.5166, 7.5213, 7.5218, 7.5269, 7.5237, 7.5288, 7.5259, 7.523, 7.5202, 7.5172, 7.5217, 7.5186, 7.5231, 7.5259, 7.5307, 7.5279, 7.5262, 7.5233, 7.5201, 7.5184, 7.5155, 7.5125, 7.5098, 7.507, 7.5054, 7.5106, 7.5076, 7.5052, 7.5096, 7.4997, 7.4972, 7.4949, 7.4919, 7.4901, 7.4871, 7.4854, 7.4829, 7.4918, 7.4966, 7.4935, 7.4908, 7.4878, 7.4853, 7.4833, 7.4807, 7.478, 7.4754, 7.4733, 7.4703, 7.4673, 7.465, 7.4634, 7.4606, 7.4576, 7.4561, 7.4567, 7.4648, 7.4718, 7.4765, 7.4814, 7.4788, 7.4762, 7.4811, 7.4796, 7.4769, 7.4752, 7.4729, 7.5075, 7.5191, 7.5263, 7.5251, 7.5221, 7.5193, 7.5163, 7.5149, 7.5124, 7.5034, 7.5006, 7.4978, 7.495, 7.4928, 7.4899, 7.4869, 7.4845, 7.4893, 7.4937, 7.4946, 7.4917, 7.4964, 7.494, 7.4914, 7.4899, 7.487, 7.485, 7.4821, 7.4794, 7.4774, 7.4756, 7.4794, 7.4768, 7.4742, 7.4745, 7.4718, 7.469, 7.4667, 7.4641, 7.4624, 7.4601, 7.4643, 7.475, 7.4724, 7.4826, 7.4801, 7.4775, 7.475, 7.4737, 7.4783, 7.4756, 7.4801, 7.4776, 7.4755, 7.473, 7.4707, 7.4818, 7.4927, 7.5235, 7.5221, 7.5212, 7.5191, 7.5168, 7.5208, 7.5249, 7.5241, 7.5223, 7.5264, 7.5249, 7.5233, 7.5208, 7.5183, 7.516, 7.5137, 7.5115, 7.5087, 7.5068, 7.5045, 7.5026, 7.501, 7.4989, 7.4978, 7.4951, 7.4928, 7.4906, 7.4906, 7.4914, 7.4891, 7.4929, 7.4969, 7.5007, 7.5045, 7.5019, 7.4998, 7.4988, 7.4962, 7.4939, 7.4915, 7.4964, 7.4944, 7.4919, 7.4964, 7.4999, 7.4972, 7.4946, 7.4928, 7.4906, 7.4893, 7.4935, 7.4913, 7.4831, 7.4806, 7.4783, 7.4762, 7.4742, 7.4716, 7.469, 7.4672, 7.4649, 7.4631, 7.4606, 7.4603, 7.4589, 7.4567, 7.4625, 7.4602, 7.4578, 7.456, 7.4543, 7.4467, 7.4447, 7.4423, 7.4463, 7.4454, 7.4501, 7.4427, 7.4403, 7.4387, 7.4369, 7.4358, 7.4334, 7.4311, 7.4236, 7.4225, 7.4208, 7.4196, 7.4238, 7.4224, 7.4202, 7.418, 7.4157, 7.4134, 7.4174, 7.4154, 7.4136, 7.4117, 7.4106, 7.4087, 7.4076, 7.4052, 7.403, 7.4007, 7.3989, 7.3973, 7.4011, 7.3998, 7.3974, 7.4013, 7.3995, 7.3978, 7.3957, 7.3885, 7.3865, 7.3843, 7.383, 7.3807, 7.3791, 7.377, 7.3755, 7.3792, 7.378, 7.3761, 7.3777, 7.3757, 7.3736, 7.3747, 7.3781, 7.3769, 7.3748, 7.3726, 7.3707, 7.3697, 7.3676, 7.3658, 7.3638, 7.3772, 7.392, 7.39, 7.3934, 7.3913, 7.3955, 7.3935, 7.3931, 7.3871, 7.3909, 7.3888, 7.3868, 7.3847, 7.3838, 7.3818, 7.3799, 7.384, 7.3826, 7.3812, 7.3802, 7.39, 7.388, 7.3862, 7.384, 7.3822, 7.3805, 7.3795, 7.3773, 7.3754, 7.3905, 7.389, 7.3872, 7.3855, 7.3951, 7.396, 7.3906, 7.4011, 7.4104, 7.4114, 7.4096, 7.4089, 7.4074, 7.4117, 7.4153, 7.4133, 7.4079, 7.4149, 7.4186, 7.4171, 7.4217, 7.4203, 7.4244, 7.4278, 7.4257, 7.424, 7.4221, 7.42, 7.4189, 7.4171, 7.4339, 7.4319, 7.435, 7.4329, 7.4317, 7.4297, 7.4283, 7.4316, 7.4349, 7.4332, 7.4316, 7.4296, 7.4276, 7.4255, 7.4237, 7.422, 7.4211, 7.419, 7.417, 7.4153, 7.4138, 7.4119, 7.4153, 7.4133, 7.4114, 7.4096, 7.4079, 7.4111, 7.4094, 7.4032, 7.3964, 7.3952, 7.3933, 7.3912, 7.3895, 7.3881, 7.3865, 7.3898, 7.3931, 7.3917, 7.3897, 7.3879, 7.3859, 7.3894, 7.3875, 7.3861, 7.3797, 7.3779, 7.3814, 7.3795, 7.3776, 7.3756, 7.3742, 7.3795, 7.3777, 7.376, 7.379, 7.382, 7.38, 7.378, 7.376, 7.3747, 7.3729, 7.3667, 7.369, 7.3763, 7.3745, 7.3726, 7.3716, 7.3746, 7.3729, 7.3716, 7.3749, 7.373, 7.3713, 7.3693, 7.3674, 7.3657, 7.3642, 7.3585, 7.357, 7.3602, 7.3633, 7.362, 7.3607, 7.36, 7.3585, 7.3617, 7.3605, 7.3586, 7.3567, 7.3562, 7.3543, 7.3525, 7.3507, 7.3498, 7.348, 7.3462, 7.3446, 7.3433, 7.3421, 7.3404, 7.3393, 7.3422, 7.3406, 7.3439, 7.3385, 7.3368, 7.3309, 7.3296, 7.3295, 7.328, 7.3263, 7.3254, 7.3237, 7.3221, 7.3207, 7.3285, 7.3275, 7.3462, 7.3448, 7.3387, 7.3369, 7.3398, 7.3386, 7.3374, 7.3403, 7.3385, 7.3419, 7.3407, 7.3396, 7.3381, 7.3413, 7.34, 7.3389, 7.3377, 7.3405, 7.339, 7.3372, 7.3353, 7.3337, 7.337, 7.336, 7.3342, 7.3328, 7.341, 7.3393, 7.3377, 7.3363, 7.3365, 7.335, 7.3334, 7.3319, 7.3311, 7.33, 7.3241, 7.3225, 7.3211, 7.3194, 7.3178, 7.3161, 7.3103, 7.3098, 7.3085, 7.3069, 7.3052, 7.3086, 7.3073, 7.3057, 7.3042, 7.3032, 7.3016, 7.3044, 7.3074, 7.3057, 7.3084, 7.3069, 7.3064, 7.3092, 7.3168, 7.315, 7.3133, 7.3122, 7.3106, 7.3134, 7.3123, 7.3152, 7.3181, 7.3168, 7.3164, 7.3152, 7.314, 7.3124, 7.3109, 7.3136, 7.312, 7.315, 7.3209, 7.3193, 7.3175, 7.3159, 7.3146, 7.3131, 7.3075, 7.306, 7.3051, 7.3039, 7.3025, 7.297, 7.2993, 7.2986, 7.2969, 7.2914, 7.2903, 7.2928, 7.2913, 7.2898, 7.2925, 7.2909, 7.2939, 7.2922, 7.2941, 7.2938, 7.2924, 7.291, 7.2898, 7.2884, 7.2879, 7.2829, 7.282, 7.2851, 7.2835, 7.2819, 7.2826, 7.2813, 7.2798, 7.2787, 7.2772, 7.2759, 7.2755, 7.275, 7.2736, 7.2723, 7.271, 7.2699, 7.2685, 7.2673, 7.2702, 7.273, 7.2766, 7.2753, 7.2738, 7.2769, 7.2795, 7.2782, 7.2768, 7.2752, 7.2738, 7.2726, 7.2712, 7.2699, 7.2685, 7.267, 7.2655, 7.2737, 7.2764, 7.2752, 7.2782, 7.2768, 7.2798, 7.2787, 7.2773, 7.2763, 7.2751, 7.2738, 7.2724, 7.2708, 7.2692, 7.2678, 7.2671, 7.2657, 7.2648, 7.2645, 7.2791, 7.2775, 7.2761, 7.2788, 7.2774, 7.2728, 7.2714, 7.2699, 7.2686, 7.2671, 7.262, 7.2608, 7.2594, 7.2581, 7.2567, 7.2557, 7.2541, 7.2526, 7.2515, 7.2504, 7.2529, 7.2522, 7.2546, 7.2547, 7.2536, 7.2528, 7.2557, 7.2584, 7.2629, 7.2655, 7.2642, 7.263, 7.266, 7.265, 7.268, 7.2676, 7.2694, 7.2684, 7.2672, 7.2659, 7.2646, 7.2633, 7.2619, 7.2646, 7.263, 7.2618, 7.2643, 7.2629, 7.2615, 7.2606, 7.2649, 7.2674, 7.2721, 7.2707, 7.2694, 7.2684, 7.2692, 7.272, 7.2758, 7.2743, 7.2734, 7.272, 7.2713, 7.2779, 7.2802, 7.2956, 7.3023, 7.3052, 7.304, 7.3065, 7.3057, 7.3083, 7.3035, 7.3021, 7.3049, 7.3035, 7.3105, 7.31, 7.3093, 7.3122, 7.3147, 7.3133, 7.3121, 7.3125, 7.3111, 7.3136, 7.3163, 7.3149, 7.314, 7.3173, 7.3158, 7.3144, 7.3131, 7.3124, 7.3109, 7.3098, 7.3123, 7.3108, 7.3096, 7.3083, 7.3072, 7.3059, 7.3051, 7.3037, 7.306, 7.3051, 7.3036, 7.3023, 7.3009, 7.3, 7.2989, 7.2979, 7.2966, 7.2957, 7.2947, 7.2938, 7.2932, 7.2924, 7.2913, 7.2899, 7.2889, 7.2879, 7.2865, 7.2853, 7.2841, 7.283, 7.2817, 7.2803, 7.283, 7.2818, 7.2811, 7.2799, 7.2787, 7.2809, 7.2796, 7.2782, 7.2769, 7.2796, 7.2783, 7.2774, 7.2765, 7.2797, 7.2832, 7.2818, 7.2847, 7.2837, 7.2827, 7.2817, 7.2841, 7.2832, 7.2818, 7.2845, 7.2833, 7.2821, 7.2822, 7.2808, 7.2854, 7.2842, 7.2833, 7.2833, 7.2825, 7.2811, 7.2799, 7.2787, 7.2789, 7.2777, 7.2764, 7.2754, 7.2741, 7.2732, 7.2759, 7.2746, 7.2769, 7.2794, 7.2797, 7.2788, 7.2809, 7.2797, 7.2822, 7.281, 7.2798, 7.2786, 7.2778, 7.2767, 7.2758, 7.2749, 7.2739, 7.2763, 7.2752, 7.2747, 7.2736, 7.276, 7.2748, 7.2771, 7.2763, 7.275, 7.2736, 7.2751, 7.2748, 7.2738, 7.2729, 7.2754, 7.2743, 7.2733, 7.2726, 7.2766, 7.2753, 7.2744, 7.2807, 7.2793, 7.2821, 7.2858, 7.2855, 7.2844, 7.287, 7.2864, 7.2855, 7.2844, 7.2836, 7.2824, 7.2842, 7.2798, 7.279, 7.2782, 7.277, 7.2757, 7.2744, 7.2768, 7.2792, 7.278, 7.2775, 7.2763, 7.2793, 7.2818, 7.2806, 7.283, 7.2818, 7.2809, 7.2799, 7.2786, 7.281, 7.2834, 7.2861, 7.285, 7.2838, 7.2826, 7.2817, 7.2804, 7.2798, 7.2791, 7.2815, 7.2802, 7.2826, 7.2849, 7.2837, 7.2824, 7.2815, 7.2805, 7.2865, 7.2853, 7.2843, 7.2867, 7.2889, 7.2877, 7.2867, 7.2857, 7.2879, 7.2867, 7.2866, 7.2858, 7.2847, 7.2869, 7.286, 7.2905, 7.2974, 7.2968, 7.299, 7.3013, 7.3037, 7.3024, 7.3012, 7.3005, 7.2993, 7.2987, 7.2981, 7.3004, 7.2992, 7.298, 7.2973, 7.2996, 7.299, 7.2948, 7.2972, 7.299, 7.2981, 7.2968, 7.299, 7.2978, 7.3002, 7.2991, 7.3086, 7.3074, 7.3084, 7.3109, 7.3098, 7.3091, 7.308, 7.3102, 7.3111, 7.3098, 7.3086, 7.3109, 7.3098, 7.3121, 7.314, 7.316, 7.3147, 7.3135, 7.3094, 7.3103, 7.3091, 7.3081, 7.3069, 7.3091, 7.3115, 7.3108, 7.313, 7.3121, 7.311, 7.31, 7.3088, 7.3077, 7.3067, 7.3055, 7.3044, 7.3055, 7.3076, 7.3133, 7.3155, 7.3179, 7.3167, 7.3158, 7.318, 7.3239, 7.3227, 7.3248, 7.3293, 7.3292, 7.3313, 7.3301, 7.3295, 7.3285, 7.3276, 7.3266, 7.3288, 7.3308, 7.3328, 7.3318, 7.3309, 7.3299, 7.329, 7.328, 7.3269, 7.3259, 7.3249, 7.3279, 7.3267, 7.33, 7.3292, 7.3293, 7.3282, 7.3276, 7.3297, 7.3316, 7.3337, 7.3359, 7.3352, 7.3341, 7.3361, 7.3349, 7.3341, 7.333, 7.332, 7.331, 7.3304, 7.3296, 7.3284, 7.3274, 7.3295, 7.3284, 7.3306, 7.3296, 7.3286, 7.3275, 7.3263, 7.3255, 7.3278, 7.3268, 7.3258, 7.3252, 7.324, 7.3234, 7.3224, 7.3213, 7.3204, 7.3197, 7.3192, 7.3183, 7.3173, 7.3162, 7.3153, 7.3176, 7.3168, 7.3156, 7.3149, 7.3137, 7.3129, 7.3149, 7.3137, 7.3129, 7.3119, 7.314, 7.3129, 7.3125, 7.3115, 7.3108, 7.31, 7.3091, 7.3079, 7.3043, 7.3065, 7.3068, 7.3056, 7.305, 7.3039, 7.3034, 7.3025, 7.3016, 7.3008, 7.2969, 7.2958, 7.295, 7.2944, 7.294, 7.2932, 7.2952, 7.2948, 7.2938, 7.2932, 7.292, 7.2931, 7.2985, 7.3007, 7.3001, 7.2989, 7.2981, 7.3, 7.2991, 7.3012, 7.3001, 7.2989, 7.2984, 7.2975, 7.2966, 7.2955, 7.2948, 7.2937, 7.2929, 7.2926, 7.2918, 7.2909, 7.2901, 7.29, 7.2891, 7.2911, 7.2901, 7.289, 7.2884, 7.288, 7.2869, 7.2858, 7.2847, 7.2849, 7.2868, 7.2859, 7.2848, 7.2838, 7.2831, 7.282, 7.2818, 7.2807, 7.2816, 7.2807, 7.28, 7.2789, 7.2781, 7.28, 7.2789, 7.2781, 7.2773, 7.2792, 7.2785, 7.2782, 7.2773, 7.2768, 7.2786, 7.2784, 7.2804, 7.2794, 7.2784, 7.2785, 7.2781, 7.2801, 7.2794, 7.2784, 7.2821, 7.2841, 7.2833, 7.2852, 7.2851, 7.2869, 7.2918, 7.2882, 7.2873, 7.2891, 7.2883, 7.3015, 7.3004, 7.3022, 7.3015, 7.3005, 7.3023, 7.3018, 7.3014, 7.3006, 7.3003, 7.2992, 7.2985, 7.2975, 7.3014, 7.3005, 7.2995, 7.2987, 7.3006, 7.2995, 7.2991, 7.2981, 7.3009, 7.2999, 7.3019, 7.3012, 7.3005, 7.2996, 7.3036, 7.3027, 7.3018, 7.301, 7.3005, 7.2998, 7.2988, 7.3007, 7.2996, 7.2999, 7.3019, 7.3011, 7.3003, 7.2997, 7.3016, 7.3011, 7.3005, 7.2995, 7.2984, 7.3004, 7.2993, 7.2987, 7.2977, 7.2996, 7.3014, 7.3003, 7.2994, 7.2986, 7.2976, 7.2995, 7.3017, 7.2989, 7.2963, 7.2982, 7.3042, 7.3061, 7.3109, 7.3099, 7.3113, 7.3103, 7.3095, 7.3061, 7.3051, 7.3041, 7.3035, 7.3053, 7.3071, 7.3063, 7.3054, 7.3045, 7.3124, 7.3113, 7.3103, 7.3122, 7.3115, 7.3108, 7.3187, 7.3265, 7.323, 7.3247, 7.3239, 7.3258, 7.3248, 7.3266, 7.3284, 7.3274, 7.3264, 7.3258, 7.3276, 7.3305, 7.3296, 7.3316, 7.3347, 7.3338, 7.3328, 7.3322, 7.3316, 7.3339, 7.3305, 7.3351, 7.3343, 7.3333, 7.3358, 7.335, 7.3366, 7.3356, 7.3346, 7.3336, 7.3327, 7.332, 7.331, 7.3304, 7.3301, 7.3295, 7.3314, 7.3333, 7.3323, 7.334, 7.3335, 7.3329, 7.3346, 7.3365, 7.3384, 7.3403, 7.3395, 7.3413, 7.3403, 7.3393, 7.3383, 7.3378, 7.337, 7.3364, 7.3355, 7.3349, 7.3342, 7.3337, 7.3327, 7.3347, 7.334, 7.3331, 7.3347, 7.3337, 7.3329, 7.3352, 7.3343, 7.3339, 7.3335, 7.333, 7.3347, 7.3338, 7.3328, 7.3345, 7.3335, 7.3351, 7.3342, 7.3335, 7.3327, 7.3318, 7.3334, 7.3324, 7.3315, 7.3332, 7.3323, 7.3342, 7.3332, 7.3299, 7.3292, 7.331, 7.331, 7.3303, 7.3296, 7.3314, 7.3305, 7.3295, 7.3368, 7.3414, 7.3404, 7.3394, 7.3386, 7.3404, 7.342, 7.341, 7.34, 7.3417, 7.3409, 7.338, 7.3399, 7.3414, 7.3406, 7.3398, 7.3393, 7.3411, 7.3403, 7.3394, 7.3411, 7.3402, 7.3369, 7.3415, 7.3381, 7.3468, 7.3462, 7.3452, 7.347, 7.346, 7.3477, 7.3444, 7.3461, 7.3454, 7.3499, 7.3489, 7.3506, 7.3523, 7.3513, 7.3504, 7.3494, 7.3489, 7.3479, 7.3495, 7.3485, 7.3476, 7.3482, 7.3474, 7.3465, 7.3459, 7.3475, 7.3521, 7.3515, 7.3488, 7.3479, 7.3469, 7.3513, 7.3508, 7.3655, 7.3645, 7.366, 7.3657, 7.3649, 7.3644, 7.3636, 7.3666, 7.3668, 7.3725, 7.3725, 7.3716, 7.3707, 7.3699, 7.3718, 7.3709, 7.3738, 7.3733, 7.375, 7.374, 7.3732, 7.3724, 7.3714, 7.3705, 7.3722, 7.3739, 7.3734, 7.3734, 7.3751, 7.3772, 7.3769, 7.3762, 7.3754, 7.375, 7.3759, 7.3758, 7.3753, 7.3745, 7.3737, 7.3729, 7.3719, 7.3709, 7.3735, 7.3702, 7.3693, 7.371, 7.3727, 7.3741, 7.376, 7.3751, 7.3741, 7.3709, 7.37, 7.3691, 7.3684, 7.3701, 7.3691, 7.3708, 7.3698, 7.3739, 7.373, 7.3721, 7.3715, 7.3707, 7.37, 7.3708, 7.3725, 7.3719, 7.371, 7.3706, 7.3696, 7.3688, 7.3681, 7.3675, 7.3667, 7.366, 7.3651, 7.3668, 7.3659, 7.3652, 7.3642, 7.3638, 7.3607, 7.3606, 7.3622, 7.3613, 7.3606, 7.3623, 7.364, 7.3656, 7.3672, 7.3663, 7.3679, 7.3669, 7.3661, 7.3654, 7.3671, 7.3662, 7.3654, 7.3644, 7.3637, 7.3628, 7.362, 7.3638, 7.3628, 7.3669, 7.3758, 7.3752, 7.3769, 7.378, 7.3775, 7.377, 7.3763, 7.378, 7.3774, 7.3767, 7.3762, 7.3752, 7.3745, 7.3736, 7.3726, 7.3718, 7.371, 7.3702, 7.3717, 7.371, 7.3726, 7.3745, 7.3761, 7.3754, 7.3773, 7.3789, 7.3781, 7.3751, 7.3743, 7.3735, 7.3728, 7.3721, 7.3712, 7.3702, 7.3699, 7.3692, 7.3711, 7.3726, 7.3717, 7.3708, 7.3724, 7.374, 7.3708, 7.37, 7.3691, 7.3766, 7.376, 7.3751, 7.3766, 7.3758, 7.375, 7.3747, 7.3741, 7.3738, 7.3732, 7.3725, 7.3741, 7.3733, 7.3725, 7.3718, 7.3711, 7.3702, 7.3692, 7.3683, 7.3675, 7.3676, 7.3667, 7.3686, 7.3705, 7.368, 7.3684, 7.3678, 7.3673, 7.37, 7.3693, 7.3684, 7.3675, 7.369, 7.368, 7.3674, 7.3729, 7.372, 7.3736, 7.373, 7.3745, 7.3752, 7.3744, 7.3735, 7.3728, 7.3722, 7.3714, 7.3707, 7.3698, 7.3691, 7.3684, 7.3675, 7.369, 7.3684, 7.3676, 7.3668, 7.3661, 7.3652, 7.3666, 7.3657, 7.3652, 7.3729, 7.3719, 7.371, 7.3701, 7.3694, 7.3685, 7.3676, 7.3668, 7.3664, 7.3657, 7.3672, 7.3666, 7.368, 7.3671, 7.3663, 7.3654, 7.3646, 7.3638, 7.3629, 7.3622, 7.3614, 7.3629, 7.36, 7.3592, 7.3584, 7.3608, 7.3637, 7.365, 7.3641, 7.3633, 7.3648, 7.3643, 7.3661, 7.3676, 7.3667, 7.3663, 7.3656, 7.3648, 7.3639, 7.3632, 7.3623, 7.3616, 7.3615, 7.3607, 7.3598, 7.3591, 7.3606, 7.3599, 7.3593, 7.359, 7.3583, 7.3581, 7.3596, 7.3615, 7.3613, 7.3606, 7.3702, 7.377, 7.3768, 7.376, 7.3752, 7.3747, 7.3738, 7.3732, 7.3723, 7.3715, 7.3708, 7.3724, 7.3719, 7.3734, 7.3727, 7.372, 7.3713, 7.3727, 7.3719, 7.3714, 7.3709, 7.3704, 7.3721, 7.3714, 7.3732, 7.3725, 7.3718, 7.3712, 7.3726, 7.372, 7.3717, 7.3709, 7.3701, 7.372, 7.3735, 7.3727, 7.3722, 7.3715, 7.3707, 7.3679, 7.3672, 7.3666, 7.3667, 7.3661, 7.366, 7.3655, 7.3647, 7.3756, 7.3748, 7.3742, 7.3758, 7.375, 7.3741, 7.3733, 7.3748, 7.3764, 7.3768, 7.376, 7.3815, 7.3829, 7.3841, 7.3848, 7.384, 7.3878, 7.3879, 7.3872, 7.3866, 7.386, 7.3878, 7.3872, 7.3849, 7.3843, 7.3835, 7.3837, 7.3852, 7.3844, 7.3839, 7.384, 7.3841, 7.3843, 7.3834, 7.3852, 7.386, 7.3853, 7.3867, 7.3881, 7.3875, 7.3889, 7.3881, 7.3878, 7.387, 7.3863, 7.3863, 7.3879, 7.3872, 7.3863, 7.3864, 7.3857, 7.3835, 7.3855, 7.3848, 7.3841, 7.3834, 7.385, 7.3953, 7.3945, 7.3974, 7.3966, 7.3983, 7.4022, 7.4016, 7.4008, 7.4001, 7.4002, 7.4008, 7.4, 7.3996, 7.3988, 7.398, 7.4006, 7.3997, 7.3989, 7.3984, 7.3975, 7.3967, 7.3959, 7.3931, 7.3925, 7.3919, 7.3933, 7.3946, 7.3942, 7.3936, 7.3931, 7.3927, 7.3948, 7.394, 7.3933, 7.3926, 7.397, 7.3963, 7.3968, 7.4051, 7.4046, 7.4038, 7.403, 7.4025, 7.4092, 7.4085, 7.4077, 7.4071, 7.4064, 7.4044, 7.4027, 7.4019, 7.4047, 7.4041, 7.4032, 7.4027, 7.4021, 7.4035, 7.4042, 7.4063, 7.4079, 7.4071, 7.4069, 7.4063, 7.4065, 7.4058, 7.4053, 7.4055, 7.4047, 7.402, 7.4013, 7.4027, 7.4029, 7.4052, 7.4048, 7.4084, 7.4077, 7.4111, 7.4126, 7.4119, 7.4093, 7.4085, 7.408, 7.4072, 7.4064, 7.4056, 7.4051, 7.4043, 7.4057, 7.4049, 7.4065, 7.4079, 7.4093, 7.4087, 7.4079, 7.4074, 7.4066, 7.408, 7.4074, 7.4066, 7.4058, 7.4162, 7.4176, 7.4173, 7.4187, 7.4178, 7.4172, 7.4167, 7.4159, 7.4174, 7.423, 7.4222, 7.4217, 7.4264, 7.4263, 7.4275, 7.4267, 7.4271, 7.4264, 7.4297, 7.4292, 7.4284, 7.4299, 7.4313, 7.433, 7.4321, 7.4315, 7.4307, 7.4298, 7.4312, 7.4325, 7.4337, 7.4372, 7.4348, 7.4341, 7.4314, 7.4306, 7.4318, 7.4309, 7.4305, 7.4298, 7.4291, 7.4287, 7.428, 7.4274, 7.4293, 7.4286, 7.4299, 7.4294, 7.4286, 7.428, 7.4274, 7.4266, 7.4288, 7.428, 7.4255, 7.4247, 7.426, 7.4251, 7.4264, 7.4276, 7.4288, 7.4284, 7.4301, 7.4306, 7.43, 7.4293, 7.4288, 7.4281, 7.4273, 7.4269, 7.426, 7.4252, 7.4265, 7.4278, 7.4254, 7.4268, 7.4281, 7.4275, 7.4267, 7.4264, 7.4258, 7.4273, 7.4266, 7.4279, 7.4275, 7.4267, 7.426, 7.4256, 7.4248, 7.424, 7.4232, 7.4245, 7.4242, 7.4256, 7.4248, 7.4261, 7.4257, 7.4252, 7.4227, 7.4222, 7.4196, 7.4204, 7.4196, 7.4188, 7.4181, 7.4155, 7.4148, 7.4143, 7.4139, 7.4132, 7.4125, 7.4118, 7.4112, 7.4124, 7.4118, 7.413, 7.4122, 7.4136, 7.4129, 7.4121, 7.4135, 7.4127, 7.4121, 7.4115, 7.4108, 7.4103, 7.4097, 7.4089, 7.4063, 7.4058, 7.4071, 7.4045, 7.4042, 7.4036, 7.4028, 7.4023, 7.4015, 7.4009, 7.4023, 7.4035, 7.4028, 7.4042, 7.4037, 7.4052, 7.4066, 7.4078, 7.4071, 7.4064, 7.4079, 7.4072, 7.4064, 7.4039, 7.4014, 7.4007, 7.3999, 7.3992, 7.3984, 7.3996, 7.399, 7.3982, 7.4002, 7.3995, 7.4006, 7.4018, 7.403, 7.4024, 7.4037, 7.403, 7.4022, 7.4014, 7.4008, 7.4001, 7.4014, 7.4028, 7.4041, 7.4054, 7.4046, 7.4039, 7.4034, 7.4031, 7.4035, 7.403, 7.4042, 7.4037, 7.4049, 7.4041, 7.4055, 7.4068, 7.4082, 7.4078, 7.4071, 7.4063, 7.4096, 7.4089, 7.4081, 7.4074, 7.4086, 7.4079, 7.4055, 7.4048, 7.4042, 7.4035, 7.4027, 7.4053, 7.4047, 7.404, 7.4052, 7.4044, 7.4039, 7.4037, 7.4032, 7.4045, 7.4058, 7.406, 7.4055, 7.4048, 7.4061, 7.4036, 7.4028, 7.4023, 7.4018, 7.4013, 7.4025, 7.4019, 7.4041, 7.4049, 7.4044, 7.4038, 7.4051, 7.4045, 7.4037, 7.4051, 7.4047, 7.4041, 7.4016, 7.4008, 7.4002, 7.4015, 7.401, 7.4003, 7.3996, 7.3992, 7.3985, 7.3979, 7.3973, 7.3967, 7.3943, 7.3941, 7.3934, 7.3929, 7.3925, 7.3918, 7.3931, 7.3923, 7.3916, 7.3929, 7.3922, 7.3919, 7.3913, 7.3905, 7.3918, 7.3911, 7.3904, 7.3917, 7.391, 7.3906, 7.3905, 7.3899, 7.3892, 7.3889, 7.3871, 7.3885, 7.3878, 7.3874, 7.3867, 7.386, 7.3854, 7.3848, 7.3843, 7.3819, 7.3813, 7.3825, 7.3818, 7.3811, 7.3824, 7.3821, 7.3834, 7.3829, 7.3824, 7.3821, 7.3814, 7.3809, 7.3837, 7.383, 7.3825, 7.3897, 7.389, 7.3883, 7.3876, 7.3873, 7.3866, 7.3859, 7.3851, 7.3846, 7.3839, 7.3873, 7.3868, 7.3861, 7.3873, 7.3865, 7.388, 7.3893, 7.3886, 7.388, 7.3873, 7.3887, 7.3879, 7.3891, 7.3955, 7.3948, 7.396, 7.3954, 7.3948, 7.3961, 7.3953, 7.3946, 7.3938, 7.3931, 7.3925, 7.3919, 7.3932, 7.3926, 7.3937, 7.3937, 7.395, 7.3944, 7.3958, 7.3972, 7.3986, 7.398, 7.3974, 7.3968, 7.398, 7.3993, 7.3991, 7.3987, 7.398, 7.3974, 7.3967, 7.397, 7.3963, 7.3957, 7.3953, 7.3947, 7.3942, 7.3954, 7.3948, 7.3941, 7.3934, 7.3946, 7.3958, 7.3952, 7.3928, 7.3923, 7.3916, 7.3911, 7.3904, 7.3917, 7.3912, 7.3907, 7.39, 7.3893, 7.3906, 7.3918, 7.393, 7.3923, 7.3917, 7.391, 7.3922, 7.3917, 7.3911, 7.3905, 7.3898, 7.3893, 7.3886, 7.3879, 7.3856, 7.3871, 7.3864, 7.3859, 7.3837, 7.3835, 7.383, 7.3807, 7.3804, 7.3798, 7.3791, 7.3768, 7.3761, 7.3775, 7.3769, 7.3763, 7.3774, 7.3769, 7.3762, 7.3757, 7.375, 7.3761, 7.3772, 7.3766, 7.3759, 7.3752, 7.3764, 7.376, 7.3771, 7.3749, 7.376, 7.3771, 7.3782, 7.3781, 7.3776, 7.3775, 7.3787, 7.3889, 7.3882, 7.3876, 7.3887, 7.3882, 7.3893, 7.3889, 7.3883, 7.3877, 7.3889, 7.3886, 7.3898, 7.3895, 7.3889, 7.389, 7.3901, 7.3894, 7.3887, 7.388, 7.389, 7.3884, 7.3879, 7.3872, 7.3884, 7.388, 7.3878, 7.3873, 7.3912, 7.3905, 7.3913, 7.3933, 7.3953, 7.3946, 7.3947, 7.3943, 7.3955, 7.395, 7.3944, 7.3937, 7.3933, 7.393, 7.3923, 7.3916, 7.391, 7.3905, 7.3899, 7.3892, 7.3886, 7.3898, 7.3892, 7.3888, 7.3866, 7.3861, 7.3857, 7.3851, 7.3844, 7.3837, 7.3848, 7.3842, 7.3836, 7.3834, 7.3831, 7.3824, 7.3835, 7.3846, 7.3828, 7.384, 7.3835, 7.3828, 7.384, 7.3834, 7.3827, 7.3823, 7.3817, 7.3813, 7.3808, 7.382, 7.3814, 7.3823, 7.3817, 7.3811, 7.3827, 7.3821, 7.3814, 7.3826, 7.382, 7.3813, 7.3809, 7.3806, 7.3817, 7.3795, 7.3807, 7.3821, 7.3835, 7.3828, 7.3866, 7.3859, 7.3852, 7.3849, 7.3861, 7.3856, 7.3866, 7.386, 7.3853, 7.3846, 7.3858, 7.3888, 7.3899, 7.3893, 7.3887, 7.3897, 7.389, 7.3885, 7.391, 7.3904, 7.39, 7.3895, 7.389, 7.3885, 7.3878, 7.3928, 7.3922, 7.3916, 7.3909, 7.3906, 7.39, 7.3894, 7.3888, 7.3881, 7.3875, 7.3871, 7.3864, 7.3857, 7.3855, 7.3853, 7.3846, 7.3843, 7.3839, 7.3851, 7.3844, 7.3838, 7.3831, 7.3824, 7.3834, 7.383, 7.3842, 7.3852, 7.3847, 7.3826, 7.3837, 7.3831, 7.3826, 7.3836, 7.3846, 7.384, 7.3839, 7.3834, 7.3829, 7.3807, 7.3803, 7.3797, 7.3808, 7.3819, 7.383, 7.3824, 7.3818, 7.3812, 7.381, 7.3808, 7.3819, 7.3813, 7.3809, 7.3804, 7.3816, 7.381, 7.3804, 7.3783, 7.3777, 7.3756, 7.3751, 7.376, 7.3755, 7.3749, 7.3742, 7.3739, 7.3733, 7.3745, 7.3739, 7.3733, 7.3717, 7.3713, 7.373, 7.373, 7.3734, 7.3727, 7.3739, 7.3733, 7.373, 7.3725, 7.3738, 7.3732, 7.3726, 7.374, 7.3735, 7.3729, 7.3707, 7.37, 7.3694, 7.3691, 7.3685, 7.3679, 7.3673, 7.3667, 7.366, 7.3657, 7.365, 7.3679, 7.3673, 7.3668, 7.3661, 7.3656, 7.3651, 7.3646, 7.3624, 7.3635, 7.3631, 7.363, 7.3625, 7.3635, 7.363, 7.3641, 7.3636, 7.363, 7.3624, 7.3634, 7.3645, 7.364, 7.3634, 7.3628, 7.3622, 7.3617, 7.3613, 7.3607, 7.3601, 7.3644, 7.3655, 7.3649, 7.3643, 7.3637, 7.3631, 7.3643, 7.3638, 7.3649, 7.3643, 7.3643, 7.3654, 7.365, 7.3712, 7.3724, 7.3719, 7.376, 7.3753, 7.3764, 7.3776, 7.377, 7.3783, 7.3837, 7.3837, 7.3832, 7.3829, 7.3845, 7.3873, 7.3868, 7.3864, 7.3858, 7.3837, 7.3849, 7.3846, 7.3857, 7.3868, 7.3861, 7.3858, 7.3852, 7.3845, 7.3842, 7.3821, 7.38, 7.3812, 7.381, 7.3804, 7.38, 7.3811, 7.3824, 7.3819, 7.3814, 7.3825, 7.382, 7.3815, 7.3809, 7.3848, 7.3851, 7.3849, 7.3844, 7.3856, 7.3868, 7.3864, 7.3859, 7.387, 7.3916, 7.391, 7.3906, 7.3905, 7.3916, 7.3911, 7.3905, 7.3902, 7.3897, 7.3908, 7.3903, 7.3883, 7.3878, 7.3873, 7.3883, 7.3877, 7.3871, 7.3864, 7.3858, 7.3854, 7.3848, 7.3845, 7.384, 7.3835, 7.386, 7.3854, 7.3834, 7.3847, 7.3841, 7.3852, 7.3862, 7.3858, 7.3868, 7.3862, 7.3856, 7.385, 7.3843, 7.384, 7.3836, 7.3836, 7.383, 7.3826, 7.3837, 7.3847, 7.3843, 7.3853, 7.385, 7.3844, 7.3854, 7.3848, 7.3842, 7.3852, 7.3863, 7.3873, 7.3884, 7.3894, 7.3888, 7.3898, 7.3896, 7.3891, 7.3885, 7.3879, 7.3873, 7.3867, 7.3861, 7.3873, 7.3868, 7.3862, 7.3856, 7.3866, 7.386, 7.3855, 7.385, 7.3861, 7.3855, 7.3849, 7.3844, 7.3838, 7.3849, 7.3843, 7.3853, 7.3847, 7.3843, 7.3839, 7.3835, 7.3845, 7.384, 7.3851, 7.3845, 7.3854, 7.3848, 7.3857, 7.3857, 7.3868, 7.3863, 7.3874, 7.3868, 7.3866, 7.3862, 7.3874, 7.3868, 7.3864, 7.3859, 7.3853, 7.3848, 7.3859, 7.3871, 7.3881, 7.389, 7.3884, 7.388, 7.3874, 7.3868, 7.3878, 7.3888, 7.3885, 7.3896, 7.389, 7.39, 7.3894, 7.3873, 7.3868, 7.3862, 7.3872, 7.3866, 7.3846, 7.3842, 7.3851, 7.3847, 7.3859, 7.3853, 7.3847, 7.3841, 7.3836, 7.3862, 7.3857, 7.3867, 7.3862, 7.3859, 7.3855, 7.3865, 7.3876, 7.3871, 7.3867, 7.3861, 7.3855, 7.3851, 7.3845, 7.384, 7.3835, 7.3839, 7.3849, 7.3843, 7.3853, 7.3847, 7.3841, 7.3836, 7.3831, 7.3825, 7.382, 7.3818, 7.3812, 7.3807, 7.3805, 7.3799, 7.3809, 7.379, 7.3786, 7.3798, 7.3792, 7.3786, 7.3797, 7.3791, 7.3785, 7.3779, 7.3773, 7.3801, 7.3795, 7.3789, 7.3784, 7.3779, 7.3774, 7.3768, 7.3778, 7.3772, 7.3767, 7.3762, 7.3756, 7.3751, 7.376, 7.3754, 7.3765, 7.3782, 7.3781, 7.3775, 7.3769, 7.3764, 7.3759, 7.3757, 7.3751, 7.3745, 7.3755, 7.3753, 7.375, 7.3732, 7.3726, 7.372, 7.3739, 7.3734, 7.3745, 7.3739, 7.3733, 7.3743, 7.3724, 7.3719, 7.3715, 7.3696, 7.3691, 7.3691, 7.3687, 7.3684, 7.3708, 7.3703, 7.3714, 7.3709, 7.3704, 7.3715, 7.3726, 7.3721, 7.373, 7.3725, 7.372, 7.3715, 7.371, 7.3705, 7.3715, 7.3709, 7.3722, 7.3718, 7.3743, 7.3753, 7.3749, 7.3744, 7.3753, 7.3747, 7.3742, 7.3752, 7.3747, 7.3742, 7.3737, 7.3742, 7.3738, 7.3777, 7.3771, 7.3779, 7.3774, 7.377, 7.3765, 7.3775, 7.3785, 7.3779, 7.3774, 7.3775, 7.3771, 7.3781, 7.3779, 7.3773, 7.3784, 7.3778, 7.3773, 7.3784, 7.3794, 7.3803, 7.3813, 7.381, 7.382, 7.3814, 7.3808, 7.3818, 7.3812, 7.3806, 7.3802, 7.3805, 7.3826, 7.3821, 7.3822, 7.3818, 7.3803, 7.383, 7.3826, 7.3851, 7.3847, 7.3842, 7.3838, 7.3849, 7.386, 7.3855, 7.3849, 7.3844, 7.3839, 7.3834, 7.3828, 7.3822, 7.3817, 7.3826, 7.3821, 7.3815, 7.3812, 7.3808, 7.3803, 7.3797, 7.3808, 7.3803, 7.3798, 7.3793, 7.3789, 7.3784, 7.378, 7.3775, 7.3772, 7.3796, 7.3778, 7.3774, 7.383, 7.3824, 7.3819, 7.3816, 7.3812, 7.3806, 7.38, 7.3794, 7.379, 7.3786, 7.378, 7.3775, 7.377, 7.378, 7.3776, 7.3771, 7.378, 7.3776, 7.3786, 7.3796, 7.3792, 7.3802, 7.3811, 7.3807, 7.3802, 7.3812, 7.3807, 7.3815, 7.3809, 7.379, 7.3785, 7.3787, 7.3784, 7.3778, 7.3788, 7.3798, 7.3807, 7.3789, 7.377, 7.3765, 7.376, 7.3755, 7.3749, 7.3759, 7.3741, 7.3737, 7.3732, 7.3727, 7.3722, 7.3731, 7.3727, 7.3723, 7.3718, 7.3716, 7.3726, 7.372, 7.3715, 7.371, 7.3707, 7.3717, 7.3727, 7.3725, 7.3722, 7.3717, 7.3712, 7.3706, 7.3701, 7.3698, 7.3693, 7.3688, 7.3683, 7.3694, 7.369, 7.3685, 7.3696, 7.3706, 7.3702, 7.3687, 7.3696, 7.3706, 7.3703, 7.3712, 7.3731, 7.3727, 7.3722, 7.3717, 7.3717, 7.3712, 7.3707, 7.3702, 7.3699, 7.3694, 7.3689, 7.3684, 7.3693, 7.3702, 7.3699, 7.3703, 7.3699, 7.3695, 7.369, 7.3684, 7.375, 7.3745, 7.3741, 7.3736, 7.3731, 7.3744, 7.3742, 7.3736, 7.373, 7.3725, 7.3719, 7.3716, 7.3715, 7.3709, 7.3703, 7.3697, 7.3706, 7.37, 7.3696, 7.3692, 7.3686, 7.368, 7.3675, 7.3672, 7.3669, 7.3664, 7.3658, 7.3654, 7.3664, 7.3673, 7.3668, 7.3662, 7.3657, 7.3652, 7.3646, 7.3641, 7.3638, 7.3648, 7.3645, 7.364, 7.3634, 7.3629, 7.3625, 7.362, 7.3617, 7.3612, 7.3606, 7.3603, 7.3626, 7.362, 7.3629, 7.3625, 7.3621, 7.3603, 7.3599, 7.3594, 7.3589, 7.3584, 7.3579, 7.3574, 7.3583, 7.358, 7.3576, 7.3572, 7.3582, 7.3577, 7.3572, 7.3581, 7.3575, 7.3569, 7.3565, 7.3561, 7.3587, 7.3573, 7.3585, 7.3584, 7.358, 7.3576, 7.3588, 7.3585, 7.3595, 7.3614, 7.3624, 7.3623, 7.3618, 7.3615, 7.3612, 7.3607, 7.3603, 7.3599, 7.3615, 7.3626, 7.3621, 7.3645, 7.364, 7.3635, 7.3617, 7.3613, 7.3608, 7.3603, 7.3599, 7.3594, 7.3589, 7.3585, 7.3583, 7.3585, 7.358, 7.3575, 7.357, 7.3565, 7.356, 7.3569, 7.3578, 7.3573, 7.357, 7.3564, 7.3559, 7.3555, 7.3564, 7.3559, 7.3553, 7.3551, 7.356, 7.3557, 7.3566, 7.3561, 7.3557, 7.3553, 7.3563, 7.3585, 7.3582, 7.3578, 7.3574, 7.3569, 7.3567, 7.3564, 7.3573, 7.357, 7.3565, 7.3574, 7.3571, 7.358, 7.3589, 7.3583, 7.3578, 7.3588, 7.3583, 7.3578, 7.3586, 7.3595, 7.3591, 7.3586, 7.3595, 7.3584, 7.3607, 7.3617, 7.3613, 7.3614, 7.3642, 7.3639, 7.3635, 7.363, 7.3627, 7.3636, 7.3633, 7.363, 7.3626, 7.3621, 7.3645, 7.3641, 7.3636, 7.3631, 7.3626, 7.364, 7.3692, 7.3703, 7.3701, 7.3724, 7.3719, 7.3714, 7.3709, 7.3704, 7.3699, 7.3682, 7.3679, 7.3675, 7.3669, 7.3678, 7.37, 7.3697, 7.3706, 7.3734, 7.3743, 7.3737, 7.3745, 7.3767, 7.3762, 7.3757, 7.3754, 7.3766, 7.3777, 7.3786, 7.3781, 7.379, 7.38, 7.3796, 7.3791, 7.3788, 7.3784, 7.3778, 7.3775, 7.377, 7.378, 7.3775, 7.377, 7.3766, 7.3763, 7.3813, 7.3808, 7.3803, 7.3799, 7.3807, 7.3816, 7.3811, 7.3806, 7.3801, 7.3796, 7.3806, 7.3806, 7.3801, 7.3796, 7.3792, 7.3788, 7.3783, 7.3778, 7.3778, 7.3773, 7.3768, 7.3765, 7.3775, 7.3771, 7.3769, 7.3778, 7.3773, 7.3756, 7.3752, 7.3747, 7.3743, 7.3738, 7.3735, 7.377, 7.3766, 7.3761, 7.3756, 7.3742, 7.3739, 7.3776, 7.3773, 7.3797, 7.3807, 7.3816, 7.3824, 7.3819, 7.3814, 7.3837, 7.3832, 7.3827, 7.3823, 7.3818, 7.3813, 7.381, 7.3805, 7.3813, 7.3808, 7.3803, 7.3819, 7.3827, 7.3822, 7.3832, 7.3828, 7.3813, 7.3809, 7.3818, 7.3826, 7.3822, 7.3819, 7.3815, 7.3811, 7.382, 7.3829, 7.3837, 7.3834, 7.3842, 7.3837, 7.3833, 7.3841, 7.3824, 7.382, 7.3816, 7.3826, 7.3822, 7.3832, 7.3827, 7.3835, 7.3832, 7.384, 7.3835, 7.3856, 7.3855, 7.385, 7.3847, 7.3842, 7.3837, 7.3833, 7.3842, 7.3851, 7.3862, 7.3858, 7.3853, 7.386, 7.3858, 7.3857, 7.3856, 7.3851, 7.3846, 7.3845, 7.3855, 7.385, 7.3845, 7.3846, 7.3829, 7.3825, 7.3834, 7.3823, 7.3818, 7.3813, 7.3822, 7.3817, 7.3812, 7.3821, 7.3828, 7.3826, 7.3822, 7.3818, 7.3815, 7.3811, 7.3819, 7.3826, 7.3821, 7.3817, 7.3812, 7.3821, 7.3817, 7.3813, 7.381, 7.3807, 7.3802, 7.3799, 7.3795, 7.3791, 7.3802, 7.3797, 7.3792, 7.3788, 7.3771, 7.378, 7.3775, 7.3784, 7.378, 7.3776, 7.3773, 7.3769, 7.3767, 7.3762, 7.3757, 7.3752, 7.3749, 7.3744, 7.3753, 7.3748, 7.3745, 7.3742, 7.3738, 7.3735, 7.3731, 7.3727, 7.3722, 7.3717, 7.3713, 7.3713, 7.3708, 7.3704, 7.37, 7.3708, 7.3717, 7.3712, 7.3695, 7.3692, 7.3701, 7.3696, 7.3692, 7.3689, 7.3685, 7.368, 7.3676, 7.3671, 7.3666, 7.3662, 7.3671, 7.3668, 7.3677, 7.3683, 7.3679, 7.3674, 7.3669, 7.3665, 7.3682, 7.368, 7.3677, 7.3682, 7.369, 7.3685, 7.368, 7.3678, 7.3675, 7.3684, 7.368, 7.3689, 7.3685, 7.3692, 7.3687, 7.3683, 7.3681, 7.3689, 7.3684, 7.3684, 7.3679, 7.3674, 7.3669, 7.3664, 7.3661, 7.3657, 7.3653, 7.3648, 7.3644, 7.364, 7.3635, 7.3643, 7.3638, 7.3646, 7.3642, 7.3639, 7.3634, 7.363, 7.3626, 7.3622, 7.3617, 7.3612, 7.3621, 7.3617, 7.3614, 7.3611, 7.362, 7.3616, 7.3612, 7.3621, 7.3631, 7.3639, 7.3634, 7.3631, 7.3628, 7.3625, 7.3632, 7.3627, 7.3625, 7.3622, 7.3617, 7.3614, 7.3612, 7.362, 7.3618, 7.3616, 7.3613, 7.3608, 7.3604, 7.36, 7.3592, 7.3601, 7.3596, 7.3604, 7.3612, 7.3608, 7.3604, 7.36, 7.3599, 7.3621, 7.3629, 7.3677, 7.3672, 7.3668, 7.3676, 7.3684, 7.3681, 7.3679, 7.3674, 7.3682, 7.3678, 7.3673, 7.3657, 7.3666, 7.3666, 7.3662, 7.3658, 7.3656, 7.3652, 7.3649, 7.3645, 7.3642, 7.3642, 7.3637, 7.3627, 7.3623, 7.3619, 7.3614, 7.361, 7.3607, 7.3604, 7.36, 7.3623, 7.3633, 7.364, 7.3635, 7.363, 7.363, 7.3639, 7.366, 7.3656, 7.3652, 7.3675, 7.3683, 7.3679, 7.3675, 7.3674, 7.372, 7.3719, 7.3715, 7.3711, 7.3706, 7.3702, 7.3697, 7.372, 7.3727, 7.3722, 7.3719, 7.3714, 7.3709, 7.3708, 7.3704, 7.3706, 7.3703, 7.3711, 7.3708, 7.3704, 7.37, 7.371, 7.3706, 7.3703, 7.3699, 7.3695, 7.3691, 7.3701, 7.3703, 7.3699, 7.3695, 7.3691, 7.3698, 7.3693, 7.3689, 7.3685, 7.3681, 7.3679, 7.3687, 7.3684, 7.3679, 7.3675, 7.3671, 7.3668, 7.3652, 7.365, 7.3659, 7.3655, 7.3653, 7.365, 7.3649, 7.3645, 7.3643, 7.364, 7.3637, 7.3645, 7.3642, 7.3653, 7.366, 7.3644, 7.3641, 7.3636, 7.3632, 7.3628, 7.3637, 7.3633, 7.3628, 7.3625, 7.363, 7.3638, 7.3622, 7.3618, 7.3623, 7.3653, 7.3662, 7.3658, 7.3653, 7.3648, 7.3645, 7.3653, 7.3661, 7.3678, 7.3662, 7.3658, 7.3655, 7.37, 7.3696, 7.3684, 7.3681, 7.3719, 7.3715, 7.3715, 7.3736, 7.3738, 7.3734, 7.3734, 7.373, 7.3739, 7.3762, 7.3759, 7.3754, 7.3751, 7.3746, 7.3747, 7.3743, 7.374, 7.3736, 7.3732, 7.3728, 7.375, 7.3748, 7.3757, 7.3754, 7.3813, 7.3811, 7.3827, 7.3829, 7.3837, 7.3846, 7.385, 7.3847, 7.3846, 7.3868, 7.3864, 7.3861, 7.3869, 7.3864, 7.386, 7.3856, 7.3852, 7.3847, 7.3844, 7.384, 7.3847, 7.3843, 7.3839, 7.3835, 7.3843, 7.3839, 7.3835, 7.383, 7.3827, 7.3822, 7.3831, 7.3828, 7.3855, 7.3853, 7.3851, 7.3859, 7.3843, 7.3852, 7.3848, 7.3869, 7.3882, 7.3878, 7.3888, 7.39, 7.391, 7.3906, 7.3901, 7.3896, 7.3891, 7.3888, 7.3884, 7.388, 7.3878, 7.3874, 7.3896, 7.3892, 7.3887, 7.389, 7.3885, 7.3893, 7.3889, 7.3884, 7.388, 7.3875, 7.3871, 7.3866, 7.3861, 7.3859, 7.3855, 7.3853, 7.3848, 7.3847, 7.3842, 7.3838, 7.3862, 7.386, 7.3856, 7.3851, 7.3859, 7.3855, 7.3851, 7.3851, 7.3848, 7.3847, 7.3842, 7.3839, 7.3836, 7.3832, 7.383, 7.3826, 7.3812, 7.3808, 7.3807, 7.3804, 7.3802, 7.3798, 7.3806, 7.3802, 7.3798, 7.3811, 7.3806, 7.3802, 7.3811, 7.3818, 7.3813, 7.3809, 7.3804, 7.3805, 7.3803, 7.3807, 7.3804, 7.3801, 7.381, 7.3806, 7.3802, 7.3797, 7.3793, 7.379, 7.3786, 7.3794, 7.3793, 7.379, 7.3786, 7.3783, 7.3779, 7.3775, 7.377, 7.3768, 7.3764, 7.376, 7.3757, 7.3752, 7.375, 7.3745, 7.3741, 7.3751, 7.3747, 7.376, 7.3756, 7.3763, 7.376, 7.3756, 7.3752, 7.375, 7.3747, 7.3742, 7.3756, 7.3753, 7.375, 7.3745, 7.3741, 7.3737, 7.3736, 7.3735, 7.3731, 7.3726, 7.3721, 7.3728, 7.3736, 7.3744, 7.3739, 7.3747, 7.3743, 7.3738, 7.3737, 7.3734, 7.3742, 7.3738, 7.3741, 7.3736, 7.3732, 7.3728, 7.3726, 7.3733, 7.3729, 7.3714, 7.371, 7.3718, 7.3728, 7.3724, 7.3722, 7.3729, 7.3724, 7.3722, 7.3718, 7.3726, 7.3724, 7.3745, 7.3741, 7.3727, 7.3724, 7.372, 7.3716, 7.3713, 7.372, 7.3717, 7.3713, 7.3709, 7.3705, 7.3701, 7.3697, 7.3694, 7.369, 7.3715, 7.3736, 7.3734, 7.3731, 7.3727, 7.3771, 7.3767, 7.3774, 7.377, 7.3767, 7.3763, 7.3771, 7.378, 7.3787, 7.3773, 7.3781, 7.3779, 7.3774, 7.377, 7.3767, 7.3753, 7.3761, 7.3757, 7.3753, 7.3753, 7.3749, 7.3745, 7.3741, 7.3737, 7.3732, 7.3739, 7.3735, 7.3731, 7.3727, 7.3722, 7.3721, 7.3718, 7.3714, 7.3721, 7.3718, 7.3704, 7.37, 7.3715, 7.3712, 7.3708, 7.3704, 7.37, 7.3696, 7.3716, 7.3739, 7.3736, 7.3736, 7.3732, 7.3728, 7.3724, 7.3732, 7.374, 7.3737, 7.3733, 7.374, 7.3736, 7.3733, 7.3729, 7.3725, 7.3721, 7.3728, 7.3724, 7.372, 7.3716, 7.3724, 7.372, 7.3728, 7.3736, 7.3731, 7.3727, 7.3723, 7.3719, 7.3719, 7.3715, 7.3711, 7.3719, 7.3717, 7.3725, 7.372, 7.3717, 7.3713, 7.371, 7.3707, 7.3725, 7.3722, 7.3718, 7.3714, 7.371, 7.3718, 7.3713, 7.3721, 7.3716, 7.3712, 7.3724, 7.3719, 7.3716, 7.3712, 7.372, 7.3717, 7.3713, 7.3721, 7.3719, 7.3715, 7.3711, 7.3719, 7.3717, 7.3726, 7.3728, 7.3747, 7.3743, 7.374, 7.3737, 7.3733, 7.3743, 7.374, 7.3748, 7.3743, 7.3739, 7.3753, 7.3749, 7.3749, 7.3756, 7.3752, 7.3748, 7.3744, 7.3741, 7.3737, 7.3761, 7.3769, 7.3765, 7.3772, 7.3802, 7.3798, 7.3801, 7.3798, 7.3789, 7.38, 7.38, 7.3789, 7.3785, 7.3782, 7.3778, 7.3774, 7.3759, 7.3766, 7.3762, 7.3758, 7.3756, 7.3752, 7.3748, 7.3745, 7.3752, 7.3766, 7.3763, 7.3759, 7.3767, 7.3781, 7.3777, 7.3787, 7.3783, 7.38, 7.3808, 7.3843, 7.3842, 7.3838, 7.3833, 7.3869, 7.3864, 7.386, 7.3867, 7.3876, 7.3883, 7.3881, 7.3877, 7.3884, 7.388, 7.3878, 7.3873, 7.387, 7.3877, 7.3874, 7.3871, 7.3884, 7.3891, 7.3902, 7.3898, 7.3894, 7.3891, 7.3892, 7.3888, 7.3874, 7.387, 7.3878, 7.3875, 7.3884, 7.3881, 7.3877, 7.3873, 7.388, 7.3876, 7.3873, 7.3869, 7.3865, 7.3861, 7.3858, 7.3865, 7.3861, 7.389, 7.3886, 7.3882, 7.388, 7.3876, 7.3872, 7.3868, 7.3866, 7.3873, 7.387, 7.3866, 7.3852, 7.3848, 7.3844, 7.384, 7.3837, 7.3846, 7.3842, 7.384, 7.3837, 7.3835, 7.3843, 7.3839, 7.3835, 7.3832, 7.3829, 7.3825, 7.3823, 7.3819, 7.3843, 7.3839, 7.3847, 7.3854, 7.3877, 7.3873, 7.3869, 7.3865, 7.3861, 7.3858, 7.3854, 7.385, 7.3857, 7.3854, 7.3861, 7.3858, 7.3854, 7.3862, 7.3861, 7.3857, 7.3856, 7.3854, 7.385, 7.3846, 7.3843, 7.3839, 7.3835, 7.3832, 7.3829, 7.3825, 7.3813, 7.3811, 7.3849, 7.3845, 7.3844, 7.384, 7.3837, 7.3834, 7.383, 7.384, 7.3838, 7.3834, 7.3821, 7.3817, 7.3815, 7.3812, 7.3819, 7.3816, 7.3824, 7.383, 7.3828, 7.3824, 7.381, 7.3806, 7.3803, 7.3799, 7.3795, 7.3791, 7.3798, 7.3806, 7.3813, 7.381, 7.3807, 7.3805, 7.3801, 7.3798, 7.3795, 7.3791, 7.3787, 7.3794, 7.379, 7.3797, 7.3804, 7.3803, 7.381, 7.3817, 7.3813, 7.3809, 7.3806, 7.3803, 7.3799, 7.3796, 7.3796, 7.3792, 7.3811, 7.3809, 7.3805, 7.3801, 7.3797, 7.3793, 7.3791, 7.3787, 7.3794, 7.3791, 7.3798, 7.3797, 7.3793, 7.3789, 7.3796, 7.3808, 7.3805, 7.3802, 7.3809, 7.3805, 7.3803, 7.3799, 7.3797, 7.3796, 7.3793, 7.379, 7.3786, 7.3782, 7.3778, 7.3776, 7.3783, 7.3789, 7.3785, 7.3815, 7.3811, 7.381, 7.3807, 7.3814, 7.381, 7.3806, 7.3813, 7.3819, 7.3826, 7.3833, 7.3829, 7.3836, 7.3843, 7.385, 7.3846, 7.3842, 7.3838, 7.3834, 7.3831, 7.3829, 7.3825, 7.3832, 7.3868, 7.3864, 7.3863, 7.3859, 7.3855, 7.3851, 7.3848, 7.3835, 7.3851, 7.3847, 7.3843, 7.385, 7.3836, 7.3832, 7.3828, 7.3824, 7.382, 7.3827, 7.3824, 7.382, 7.3827, 7.3823, 7.3819, 7.3827, 7.3827, 7.3823, 7.383, 7.3827, 7.3833, 7.3836, 7.3834, 7.3832, 7.3839, 7.3836, 7.3836, 7.3832, 7.3832, 7.3829, 7.3826, 7.3822, 7.3819, 7.3815, 7.3811, 7.3817, 7.3814, 7.3812, 7.3818, 7.3815, 7.3832, 7.383, 7.3827, 7.3823, 7.3819, 7.3817, 7.3814, 7.3821, 7.3823, 7.3821, 7.3818, 7.3814, 7.381, 7.3806, 7.3813, 7.381, 7.3817, 7.3813, 7.3809, 7.3807, 7.3804, 7.38, 7.3796, 7.3802, 7.3804, 7.3813, 7.382, 7.3821, 7.3817, 7.3824, 7.383, 7.3816, 7.3813, 7.3809, 7.3805, 7.3814, 7.3811, 7.381, 7.3817, 7.3813, 7.3809, 7.3805, 7.3803, 7.38, 7.3829, 7.3869, 7.3878, 7.3875, 7.3875, 7.3882, 7.3878, 7.3874, 7.387, 7.3858, 7.3854, 7.385, 7.3852, 7.385, 7.3846, 7.3853, 7.3849, 7.3845, 7.3842, 7.3838, 7.3844, 7.3832, 7.3828, 7.3846, 7.3843, 7.3849, 7.3845, 7.3841, 7.3848, 7.3844, 7.3841, 7.3837, 7.3833, 7.3832, 7.3828, 7.3839, 7.3835, 7.3831, 7.3827, 7.3825, 7.3832, 7.3829, 7.3827, 7.385, 7.3863, 7.3859, 7.3865, 7.3871, 7.3867, 7.3863, 7.3872, 7.3868, 7.3866, 7.3885, 7.3872, 7.3869, 7.3865, 7.3872, 7.3869, 7.3898, 7.3906, 7.3903, 7.39, 7.3896, 7.3904, 7.3901, 7.3897, 7.3893, 7.3899, 7.3905, 7.3913, 7.3909, 7.3905, 7.3902, 7.3898, 7.3904, 7.39, 7.3898, 7.3957, 7.3953, 7.394, 7.3947, 7.3975, 7.3982, 7.3978, 7.3987, 7.3984, 7.3981, 7.3998, 7.4006, 7.4024, 7.4021, 7.4018, 7.4014, 7.4012, 7.4009, 7.4006, 7.4002, 7.4004, 7.4, 7.4007, 7.4015, 7.4012, 7.4008, 7.4007, 7.4013, 7.402, 7.4017, 7.4015, 7.4012, 7.4019, 7.4015, 7.4012, 7.4009, 7.4006, 7.4003, 7.401, 7.4016, 7.4022, 7.4018, 7.4014, 7.4011, 7.4007, 7.4004, 7.4001, 7.3998, 7.3995, 7.4002, 7.3999, 7.3997, 7.3994, 7.3991, 7.3987, 7.3984, 7.3981, 7.3979, 7.3986, 7.3984, 7.3982, 7.3979, 7.3996, 7.3992, 7.3989, 7.3986, 7.3993, 7.3989, 7.3986, 7.3982, 7.3978, 7.3975, 7.3971, 7.3967, 7.3963, 7.3971, 7.3978, 7.3974, 7.397, 7.3966, 7.3963, 7.396, 7.3966, 7.3962, 7.3958, 7.3954, 7.395, 7.3957, 7.3963, 7.3969, 7.3966, 7.3963, 7.397, 7.3966, 7.3963, 7.3961, 7.3967, 7.3974, 7.3982, 7.3978, 7.3974, 7.3971, 7.3967, 7.3966, 7.3962, 7.3969, 7.3965, 7.3963, 7.3969, 7.3977, 7.3988, 7.3995, 7.4002, 7.401, 7.4017, 7.4014, 7.4014, 7.4011, 7.4007, 7.4014, 7.4021, 7.4018, 7.4015, 7.4047, 7.4045, 7.4041, 7.4047, 7.4054, 7.406, 7.4057, 7.4064, 7.406, 7.4067, 7.4063, 7.407, 7.4069, 7.4066, 7.4064, 7.4061, 7.4057, 7.407, 7.4067, 7.4074, 7.4071, 7.4089, 7.4086, 7.4093, 7.409, 7.4101, 7.4097, 7.4094, 7.411, 7.4117, 7.4107, 7.4104, 7.4091, 7.4088, 7.4085, 7.4082, 7.4129, 7.4136, 7.4132, 7.4139, 7.4146, 7.4153, 7.415, 7.4146, 7.4142, 7.4139, 7.416, 7.4166, 7.4172, 7.4168, 7.4164, 7.417, 7.4168, 7.4175, 7.4171, 7.4167, 7.4173, 7.4171, 7.4177, 7.4173, 7.418, 7.4186, 7.4182, 7.4179, 7.4175, 7.4175, 7.4171, 7.4168, 7.4164, 7.4171, 7.4177, 7.4174, 7.4171, 7.4189, 7.4186, 7.4182, 7.4179, 7.4176, 7.4173, 7.4169, 7.4165, 7.4171, 7.4167, 7.4174, 7.418, 7.4186, 7.4192, 7.4189, 7.4179, 7.421, 7.4218, 7.4216, 7.4223, 7.422, 7.4217, 7.4224, 7.423, 7.4237, 7.4244, 7.424, 7.4236, 7.4242, 7.4239, 7.4236, 7.4232, 7.4238, 7.4244, 7.4251, 7.4258, 7.4254, 7.425, 7.4246, 7.4243, 7.4242, 7.4254, 7.4251, 7.425, 7.4259, 7.4259, 7.4256, 7.4247, 7.4244, 7.4241, 7.4238, 7.4244, 7.425, 7.4246, 7.4253, 7.4249, 7.4246, 7.4252, 7.4259, 7.4255, 7.4262, 7.4269, 7.4276, 7.4283, 7.4291, 7.4298, 7.4295, 7.4292, 7.4299, 7.4295], '192.168.122.113': [10.9024, 8.1601, 7.208, 6.8129, 6.6064, 6.4637, 6.4441, 6.4141, 6.2927, 6.2657, 6.209, 6.2029, 6.1718, 6.2001, 6.1376, 5.7958, 6.0899, 6.3522, 6.3098, 6.2653, 6.2386, 6.4406, 6.4073, 6.3661, 6.5319, 6.5282, 6.4957, 6.4948, 6.4635, 6.4318, 6.933, 7.0558, 7.0084, 6.9785, 6.9424, 6.9036, 7.1504, 7.1154, 7.0698, 7.1662, 7.1418, 7.1303, 6.9857, 6.947, 6.923, 6.8968, 6.8623, 6.8461, 6.824, 6.8033, 6.8758, 7.0579, 7.0411, 7.2128, 7.1765, 7.1528, 7.2253, 7.2043, 7.2593, 7.2253, 7.2802, 7.2483, 7.2173, 7.1963, 7.1785, 7.1777, 7.1604, 7.2144, 7.1857, 7.1723, 7.083, 7.0612, 7.0377, 7.0892, 7.0657, 7.048, 7.2915, 7.3357, 7.3171, 7.3073, 7.3589, 7.3331, 7.3091, 7.2862, 7.2625, 7.2407, 7.2196, 7.2166, 7.1978, 7.1889, 7.1719, 7.2114, 7.2554, 7.3003, 7.2838, 7.2718, 7.2622, 7.2559, 7.3613, 7.3944, 7.3793, 7.3601, 7.3464, 7.3279, 7.309, 7.2957, 7.2875, 7.3211, 7.3541, 7.3348, 7.364, 7.3601, 7.3464, 7.3282, 7.3606, 7.3929, 7.421, 7.4094, 7.3951, 7.3418, 7.3287, 7.362, 7.3493, 7.3777, 7.3701, 7.3957, 7.3879, 7.3787, 7.3739, 7.3635, 7.347, 7.3378, 7.3252, 7.3127, 7.2981, 7.2899, 7.2836, 7.2697, 7.2562, 7.2472, 7.2353, 7.2602, 7.252, 7.2385, 7.2597, 7.2505, 7.2743, 7.2611, 7.2918, 7.3184, 7.3057, 7.3283, 7.3156, 7.3058, 7.2959, 7.2837, 7.2782, 7.2667, 7.2553, 7.2427, 7.2306, 7.22, 7.212, 7.2013, 7.1993, 7.1973, 7.2199, 7.242, 7.2347, 7.2566, 7.2453, 7.2695, 7.2608, 7.2523, 7.2437, 7.2354, 7.2292, 7.2197, 7.1824, 7.1742, 7.1661, 7.16, 7.1501, 7.1678, 7.1881, 7.2053, 7.1967, 7.3323, 7.3216, 7.3966, 7.3854, 7.3783, 7.3726, 7.3912, 7.4113, 7.4294, 7.4185, 7.4074, 7.403, 7.3697, 7.362, 7.3794, 7.3691, 7.3647, 7.3552, 7.3505, 7.3678, 7.3847, 7.3754, 7.3653, 7.3552, 7.395, 7.3896, 7.3597, 7.352, 7.4208, 7.4369, 7.4278, 7.4315, 7.4465, 7.4383, 7.4294, 7.4225, 7.4176, 7.4109, 7.4043, 7.4195, 7.4133, 7.4041, 7.3956, 7.3906, 7.382, 7.3731, 7.3664, 7.3815, 7.3754, 7.3684, 7.4081, 7.4013, 7.3971, 7.3909, 7.3845, 7.3767, 7.37, 7.3647, 7.366, 7.3644, 7.3584, 7.3523, 7.3647, 7.3807, 7.3547, 7.3478, 7.3404, 7.3353, 7.33, 7.3241, 7.3392, 7.3528, 7.3492, 7.3412, 7.3335, 7.3465, 7.3386, 7.3504, 7.3432, 7.3567, 7.3693, 7.3621, 7.3553, 7.3489, 7.3418, 7.3548, 7.3491, 7.361, 7.3541, 7.4057, 7.3987, 7.3931, 7.3879, 7.3842, 7.3773, 7.3754, 7.3881, 7.388, 7.388, 7.3825, 7.3955, 7.3917, 7.3844, 7.3776, 7.3751, 7.3784, 7.3748, 7.3702, 7.4149, 7.4079, 7.4069, 7.4025, 7.4041, 7.3862, 7.3718, 7.4014, 7.3942, 7.4017, 7.3965, 7.4063, 7.4101, 7.4066, 7.4004, 7.3959, 7.3906, 7.3841, 7.3805, 7.3745, 7.3701, 7.3655, 7.3607, 7.3564, 7.3519, 7.3955, 7.3893, 7.3826, 7.393, 7.3886, 7.3825, 7.3812, 7.3751, 7.3691, 7.3796, 7.3732, 7.3695, 7.3639, 7.3579, 7.3528, 7.3474, 7.3582, 7.3526, 7.3489, 7.36, 7.3546, 7.3491, 7.345, 7.3407, 7.3357, 7.3616, 7.3569, 7.3509, 7.3452, 7.3544, 7.3495, 7.3442, 7.3398, 7.3369, 7.3311, 7.3274, 7.3218, 7.319, 7.3164, 7.3111, 7.3059, 7.3003, 7.2956, 7.2906, 7.2861, 7.2864, 7.301, 7.2966, 7.2784, 7.2747, 7.286, 7.2835, 7.2802, 7.2749, 7.2708, 7.253, 7.2516, 7.25, 7.2447, 7.2399, 7.2376, 7.233, 7.2292, 7.2126, 7.2092, 7.2042, 7.203, 7.2128, 7.208, 7.2172, 7.2291, 7.2408, 7.2442, 7.2399, 7.2361, 7.2462, 7.2557, 7.2518, 7.2755, 7.2921, 7.2887, 7.2845, 7.28, 7.3019, 7.2974, 7.3094, 7.2933, 7.2888, 7.2842, 7.2933, 7.2776, 7.274, 7.2702, 7.2658, 7.261, 7.2578, 7.2537, 7.2626, 7.2586, 7.2541, 7.2511, 7.2466, 7.2422, 7.2519, 7.26, 7.2689, 7.2656, 7.2504, 7.2457, 7.2544, 7.2523, 7.2492, 7.2566, 7.2651, 7.2727, 7.2815, 7.2786, 7.2761, 7.2718, 7.2708, 7.2674, 7.2639, 7.2603, 7.2564, 7.2542, 7.2551, 7.2511, 7.2474, 7.2558, 7.2528, 7.2512, 7.2584, 7.2554, 7.2539, 7.2501, 7.2458, 7.242, 7.2405, 7.2486, 7.2562, 7.254, 7.263, 7.2602, 7.256, 7.2532, 7.2391, 7.2351, 7.2426, 7.2393, 7.2466, 7.2423, 7.2608, 7.2681, 7.2655, 7.2613, 7.2594, 7.2574, 7.2541, 7.2503, 7.2468, 7.2427, 7.2506, 7.2477, 7.2448, 7.241, 7.2371, 7.2333, 7.2408, 7.2381, 7.234, 7.2315, 7.2459, 7.2421, 7.2404, 7.2471, 7.2439, 7.2407, 7.2373, 7.2545, 7.2633, 7.262, 7.2599, 7.2577, 7.2543, 7.2618, 7.2689, 7.2777, 7.2749, 7.271, 7.2783, 7.2745, 7.2815, 7.2885, 7.2847, 7.2811, 7.288, 7.2848, 7.3027, 7.2993, 7.306, 7.304, 7.3009, 7.308, 7.3041, 7.311, 7.3089, 7.3128, 7.3556, 7.3524, 7.3495, 7.3461, 7.3432, 7.3499, 7.3573, 7.3679, 7.3648, 7.3612, 7.3682, 7.3657, 7.3722, 7.3701, 7.3662, 7.3627, 7.3588, 7.3649, 7.3614, 7.3578, 7.3691, 7.3663, 7.3626, 7.3592, 7.3478, 7.3442, 7.3407, 7.3383, 7.3365, 7.333, 7.3315, 7.3281, 7.3245, 7.3221, 7.3208, 7.3173, 7.3057, 7.3025, 7.3012, 7.2979, 7.3043, 7.3018, 7.2985, 7.3045, 7.3017, 7.2995, 7.2971, 7.2938, 7.2999, 7.2966, 7.2943, 7.2912, 7.2887, 7.2854, 7.2838, 7.2806, 7.2802, 7.2803, 7.2862, 7.2844, 7.2989, 7.3051, 7.3033, 7.3008, 7.2984, 7.3038, 7.3014, 7.308, 7.3061, 7.313, 7.3112, 7.3084, 7.3144, 7.3114, 7.318, 7.315, 7.3119, 7.3176, 7.317, 7.315, 7.321, 7.318, 7.3148, 7.3116, 7.3162, 7.3134, 7.3101, 7.307, 7.3041, 7.3012, 7.3069, 7.3129, 7.3105, 7.3165, 7.3223, 7.3207, 7.3264, 7.3313, 7.3279, 7.3288, 7.3258, 7.3315, 7.3294, 7.3264, 7.3235, 7.3233, 7.329, 7.3345, 7.3312, 7.3294, 7.3284, 7.3264, 7.3231, 7.3282, 7.325, 7.3217, 7.312, 7.3177, 7.3161, 7.3056, 7.3111, 7.3167, 7.3137, 7.3111, 7.3086, 7.3216, 7.3187, 7.3243, 7.3137, 7.3192, 7.3189, 7.3165, 7.3143, 7.3146, 7.3117, 7.3166, 7.3223, 7.3227, 7.32, 7.3173, 7.3228, 7.3279, 7.3278, 7.3252, 7.3224, 7.3196, 7.3188, 7.3163, 7.3219, 7.319, 7.3161, 7.3131, 7.3103, 7.3243, 7.3214, 7.3199, 7.3171, 7.3219, 7.3192, 7.3164, 7.3143, 7.3115, 7.3086, 7.3066, 7.3114, 7.318, 7.3162, 7.3134, 7.3106, 7.3111, 7.3089, 7.3061, 7.3109, 7.3161, 7.3134, 7.3106, 7.3164, 7.3221, 7.3199, 7.3173, 7.3168, 7.314, 7.3194, 7.3248, 7.3221, 7.3279, 7.3252, 7.3299, 7.3283, 7.3263, 7.3237, 7.3213, 7.3193, 7.3169, 7.3144, 7.3055, 7.303, 7.3015, 7.3015, 7.3007, 7.298, 7.2962, 7.3118, 7.3095, 7.3076, 7.3051, 7.3027, 7.3077, 7.3051, 7.3023, 7.3014, 7.2989, 7.2962, 7.2937, 7.2925, 7.29, 7.2886, 7.2931, 7.2905, 7.2881, 7.2856, 7.2838, 7.2884, 7.2857, 7.2839, 7.2885, 7.2866, 7.2919, 7.2892, 7.2866, 7.2843, 7.2822, 7.2868, 7.291, 7.2921, 7.3001, 7.2975, 7.304, 7.3028, 7.3074, 7.306, 7.3106, 7.3082, 7.3129, 7.3174, 7.3156, 7.3071, 7.3052, 7.3027, 7.3011, 7.3055, 7.2989, 7.3067, 7.3387, 7.3367, 7.342, 7.3404, 7.3384, 7.3364, 7.3406, 7.3391, 7.3372, 7.3289, 7.327, 7.3313, 7.3289, 7.3334, 7.3316, 7.3293, 7.3398, 7.3377, 7.3409, 7.3384, 7.3365, 7.3342, 7.3316, 7.3298, 7.3275, 7.3294, 7.3269, 7.3244, 7.3218, 7.3258, 7.3237, 7.3211, 7.3186, 7.3165, 7.315, 7.3124, 7.3106, 7.3147, 7.3121, 7.3096, 7.3074, 7.3066, 7.3046, 7.3022, 7.2998, 7.2974, 7.2956, 7.2942, 7.292, 7.291, 7.2894, 7.2937, 7.2923, 7.29, 7.2886, 7.288, 7.2856, 7.284, 7.2822, 7.2804, 7.2785, 7.2761, 7.274, 7.2719, 7.2704, 7.2746, 7.2725, 7.2711, 7.2688, 7.2704, 7.2681, 7.2725, 7.2701, 7.2746, 7.2686, 7.2677, 7.2681, 7.2661, 7.2699, 7.2675, 7.2653, 7.2578, 7.2561, 7.2664, 7.2642, 7.2627, 7.2556, 7.2654, 7.2632, 7.2611, 7.2592, 7.2633, 7.2675, 7.2716, 7.2693, 7.2671, 7.2777, 7.2827, 7.2809, 7.2788, 7.2785, 7.282, 7.2863, 7.2839, 7.2827, 7.2808, 7.2845, 7.3067, 7.3045, 7.3085, 7.3147, 7.3124, 7.3102, 7.3142, 7.3181, 7.316, 7.3139, 7.3117, 7.3096, 7.309, 7.3089, 7.3071, 7.3053, 7.3043, 7.3021, 7.3001, 7.2985, 7.2913, 7.2893, 7.2873, 7.291, 7.2892, 7.3075, 7.3115, 7.3096, 7.3085, 7.3132, 7.3112, 7.3091, 7.313, 7.317, 7.3209, 7.3194, 7.3171, 7.315, 7.3413, 7.34, 7.3378, 7.3363, 7.3342, 7.332, 7.336, 7.334, 7.3381, 7.3362, 7.3342, 7.3331, 7.3373, 7.336, 7.3341, 7.3385, 7.3422, 7.3482, 7.3467, 7.3446, 7.3424, 7.3464, 7.3444, 7.3482, 7.341, 7.3389, 7.3432, 7.3468, 7.3503, 7.3553, 7.3532, 7.3575, 7.3563, 7.3552, 7.3536, 7.3521, 7.3506, 7.3485, 7.3417, 7.3449, 7.3432, 7.3418, 7.3398, 7.3384, 7.3369, 7.3353, 7.3336, 7.3315, 7.3296, 7.3331, 7.3315, 7.3298, 7.3334, 7.337, 7.3402, 7.3394, 7.3383, 7.3367, 7.3464, 7.3456, 7.344, 7.3428, 7.3412, 7.3391, 7.3381, 7.3362, 7.3377, 7.3364, 7.3343, 7.3323, 7.3303, 7.3287, 7.3324, 7.3312, 7.3293, 7.3383, 7.3368, 7.3368, 7.3348, 7.333, 7.3313, 7.3294, 7.3276, 7.3256, 7.324, 7.3273, 7.3255, 7.3242, 7.3229, 7.321, 7.3247, 7.3282, 7.3266, 7.3253, 7.3235, 7.3268, 7.3248, 7.3229, 7.3271, 7.3306, 7.329, 7.3321, 7.3307, 7.3289, 7.3274, 7.3208, 7.319, 7.3224, 7.3214, 7.3202, 7.3197, 7.318, 7.3165, 7.3155, 7.3141, 7.3171, 7.316, 7.3143, 7.3134, 7.3069, 7.3167, 7.3203, 7.3201, 7.3212, 7.3204, 7.3263, 7.3257, 7.3241, 7.3228, 7.322, 7.3307, 7.3293, 7.3279, 7.3269, 7.3407, 7.355, 7.3534, 7.3523, 7.353, 7.3588, 7.3577, 7.3563, 7.3544, 7.3529, 7.3466, 7.3448, 7.3429, 7.3467, 7.3448, 7.3436, 7.3417, 7.3409, 7.3443, 7.3473, 7.346, 7.349, 7.3473, 7.3506, 7.3493, 7.3524, 7.3465, 7.3455, 7.3492, 7.3525, 7.3518, 7.3505, 7.3492, 7.3527, 7.3512, 7.3498, 7.3484, 7.3465, 7.3452, 7.3487, 7.3473, 7.3501, 7.3482, 7.3488, 7.3534, 7.3515, 7.3508, 7.3445, 7.3525, 7.3508, 7.3495, 7.348, 7.3463, 7.3463, 7.3453, 7.3438, 7.3473, 7.3456, 7.3441, 7.3426, 7.341, 7.3394, 7.3384, 7.3368, 7.3352, 7.3389, 7.3374, 7.3358, 7.3511, 7.3494, 7.3519, 7.3554, 7.3692, 7.3675, 7.3704, 7.3686, 7.3668, 7.3651, 7.3637, 7.3627, 7.361, 7.3591, 7.3579, 7.361, 7.3601, 7.3627, 7.3618, 7.3605, 7.3633, 7.3661, 7.3643, 7.363, 7.3664, 7.3651, 7.3683, 7.3625, 7.3607, 7.3596, 7.3624, 7.3669, 7.3651, 7.3634, 7.3622, 7.3613, 7.3606, 7.3642, 7.3626, 7.3657, 7.3643, 7.3634, 7.3621, 7.3564, 7.3547, 7.3532, 7.3523, 7.3551, 7.3534, 7.3517, 7.3504, 7.3492, 7.3479, 7.3471, 7.3454, 7.3441, 7.3426, 7.3439, 7.3467, 7.3451, 7.3483, 7.3467, 7.345, 7.3394, 7.334, 7.3284, 7.327, 7.3256, 7.324, 7.3274, 7.3262, 7.3291, 7.3275, 7.3261, 7.3252, 7.3238, 7.3226, 7.3209, 7.3197, 7.3229, 7.3259, 7.3292, 7.3275, 7.3307, 7.3293, 7.3281, 7.3272, 7.3255, 7.3241, 7.3273, 7.3273, 7.3305, 7.3291, 7.3279, 7.3264, 7.3209, 7.3245, 7.3272, 7.3307, 7.3302, 7.3293, 7.3278, 7.3273, 7.3303, 7.3286, 7.3288, 7.3274, 7.3262, 7.3249, 7.3233, 7.3218, 7.3203, 7.3194, 7.314, 7.3178, 7.3166, 7.3149, 7.315, 7.316, 7.3119, 7.3111, 7.3097, 7.3084, 7.3031, 7.3018, 7.301, 7.3039, 7.3026, 7.3012, 7.3006, 7.2999, 7.2987, 7.2972, 7.2965, 7.2953, 7.2938, 7.2923, 7.2994, 7.3069, 7.3096, 7.3097, 7.3046, 7.3071, 7.3057, 7.3083, 7.3067, 7.3055, 7.3046, 7.3034, 7.302, 7.3045, 7.3036, 7.3024, 7.301, 7.3, 7.3025, 7.305, 7.3039, 7.3024, 7.3011, 7.2999, 7.3039, 7.2988, 7.2975, 7.2962, 7.2953, 7.2937, 7.2921, 7.2948, 7.2934, 7.2924, 7.2916, 7.2942, 7.3004, 7.2993, 7.2942, 7.2946, 7.2972, 7.3041, 7.3028, 7.3018, 7.3004, 7.3033, 7.302, 7.3011, 7.2996, 7.3047, 7.3034, 7.3019, 7.3048, 7.3037, 7.3062, 7.3053, 7.3042, 7.3029, 7.3019, 7.2967, 7.2994, 7.2984, 7.2978, 7.2965, 7.2954, 7.2942, 7.2928, 7.2914, 7.2901, 7.2928, 7.2955, 7.298, 7.2968, 7.296, 7.3109, 7.3094, 7.3082, 7.3108, 7.3092, 7.308, 7.3066, 7.3061, 7.305, 7.3036, 7.303, 7.3015, 7.3016, 7.3002, 7.2987, 7.2972, 7.2975, 7.3012, 7.3007, 7.3033, 7.302, 7.3006, 7.2999, 7.2949, 7.3082, 7.3068, 7.3055, 7.3043, 7.3042, 7.3032, 7.3019, 7.3004, 7.3023, 7.3011, 7.3037, 7.3064, 7.3056, 7.3041, 7.3027, 7.305, 7.3041, 7.3108, 7.3097, 7.3088, 7.3077, 7.3066, 7.3052, 7.304, 7.3027, 7.3023, 7.3014, 7.3012, 7.2999, 7.2985, 7.298, 7.2991, 7.3015, 7.304, 7.3028, 7.3217, 7.3244, 7.3276, 7.3231, 7.3217, 7.321, 7.3197, 7.3192, 7.3178, 7.3131, 7.3116, 7.3107, 7.3092, 7.3084, 7.311, 7.3097, 7.3084, 7.307, 7.3056, 7.3042, 7.303, 7.3016, 7.2971, 7.3005, 7.2996, 7.2951, 7.298, 7.2969, 7.2959, 7.2947, 7.2932, 7.2958, 7.2982, 7.3008, 7.2995, 7.2988, 7.298, 7.2974, 7.2964, 7.2951, 7.2939, 7.2925, 7.2913, 7.2904, 7.2891, 7.2879, 7.2869, 7.2859, 7.2851, 7.284, 7.2829, 7.2818, 7.281, 7.2802, 7.2788, 7.2777, 7.2767, 7.2754, 7.2781, 7.2806, 7.2792, 7.2779, 7.277, 7.2776, 7.2781, 7.2767, 7.2762, 7.2803, 7.2802, 7.2792, 7.2782, 7.2768, 7.2757, 7.2747, 7.2733, 7.276, 7.2749, 7.2775, 7.2763, 7.2751, 7.2747, 7.2736, 7.2725, 7.275, 7.2737, 7.2725, 7.2715, 7.2701, 7.2727, 7.2716, 7.2706, 7.2693, 7.2685, 7.2677, 7.267, 7.2657, 7.2647, 7.2671, 7.2659, 7.2649, 7.2652, 7.2639, 7.2627, 7.2614, 7.2635, 7.2622, 7.261, 7.2597, 7.2586, 7.261, 7.2599, 7.2586, 7.2574, 7.2746, 7.2735, 7.276, 7.2748, 7.2743, 7.2738, 7.2725, 7.2713, 7.2704, 7.2696, 7.2684, 7.268, 7.2637, 7.2629, 7.2654, 7.2641, 7.2631, 7.2619, 7.2611, 7.2598, 7.262, 7.2577, 7.2571, 7.264, 7.2628, 7.2616, 7.2606, 7.2629, 7.2652, 7.2639, 7.2628, 7.2651, 7.2639, 7.2642, 7.263, 7.262, 7.2611, 7.26, 7.2589, 7.2546, 7.2534, 7.2527, 7.2518, 7.2509, 7.2504, 7.2494, 7.249, 7.2478, 7.2465, 7.2455, 7.2445, 7.247, 7.2493, 7.2515, 7.2538, 7.2534, 7.2523, 7.2511, 7.2507, 7.2555, 7.2547, 7.2541, 7.2531, 7.252, 7.251, 7.2499, 7.2494, 7.2482, 7.247, 7.2462, 7.2485, 7.2479, 7.2467, 7.2492, 7.2483, 7.2476, 7.2464, 7.246, 7.2448, 7.2439, 7.2427, 7.2441, 7.2435, 7.2426, 7.2414, 7.2437, 7.2427, 7.242, 7.2414, 7.2406, 7.2401, 7.2421, 7.241, 7.24, 7.2426, 7.2423, 7.2413, 7.2406, 7.2402, 7.2394, 7.2382, 7.237, 7.236, 7.2348, 7.2338, 7.2296, 7.2286, 7.2278, 7.2266, 7.2235, 7.2227, 7.2217, 7.2208, 7.22, 7.22, 7.2189, 7.2184, 7.2173, 7.2162, 7.2151, 7.2141, 7.2131, 7.2119, 7.214, 7.2131, 7.2119, 7.2143, 7.2137, 7.2128, 7.2116, 7.2137, 7.2126, 7.2116, 7.2104, 7.2093, 7.2082, 7.2073, 7.2062, 7.2052, 7.2047, 7.2037, 7.2027, 7.2017, 7.201, 7.204, 7.2063, 7.2051, 7.2043, 7.2035, 7.2056, 7.2096, 7.2118, 7.2112, 7.2103, 7.2094, 7.2084, 7.2074, 7.2041, 7.2061, 7.2049, 7.2071, 7.2093, 7.2081, 7.2073, 7.2063, 7.2057, 7.2051, 7.2047, 7.2068, 7.2092, 7.2083, 7.213, 7.215, 7.2177, 7.2165, 7.2186, 7.2175, 7.2197, 7.2158, 7.2215, 7.2204, 7.2225, 7.2214, 7.2226, 7.2215, 7.2236, 7.2263, 7.2256, 7.2244, 7.2253, 7.2242, 7.2235, 7.2228, 7.2224, 7.2214, 7.2205, 7.2195, 7.2186, 7.2185, 7.2178, 7.2173, 7.2196, 7.2184, 7.2172, 7.2163, 7.2183, 7.2175, 7.2166, 7.2156, 7.2177, 7.2184, 7.2205, 7.2221, 7.2212, 7.2205, 7.2198, 7.2187, 7.2179, 7.2201, 7.2192, 7.2182, 7.2202, 7.2196, 7.2186, 7.2175, 7.2164, 7.2155, 7.2149, 7.2172, 7.2191, 7.2185, 7.2178, 7.2174, 7.2166, 7.2156, 7.2145, 7.2138, 7.21, 7.2089, 7.2082, 7.2076, 7.2067, 7.2061, 7.2057, 7.2049, 7.207, 7.2082, 7.2077, 7.2096, 7.2096, 7.209, 7.2123, 7.2144, 7.2165, 7.2187, 7.2178, 7.2201, 7.219, 7.2179, 7.22, 7.2192, 7.22, 7.2221, 7.2289, 7.2282, 7.2272, 7.2293, 7.2282, 7.2304, 7.2332, 7.2357, 7.235, 7.2371, 7.2363, 7.2355, 7.2347, 7.2339, 7.2329, 7.2348, 7.2338, 7.2333, 7.2354, 7.2345, 7.2358, 7.2349, 7.234, 7.2329, 7.2339, 7.2329, 7.2349, 7.2339, 7.2331, 7.2322, 7.2313, 7.2414, 7.2404, 7.2426, 7.242, 7.2412, 7.2433, 7.2423, 7.2413, 7.2433, 7.2434, 7.2455, 7.2446, 7.2468, 7.2488, 7.2479, 7.25, 7.2493, 7.2484, 7.2473, 7.2465, 7.2454, 7.2447, 7.2436, 7.2428, 7.2446, 7.2439, 7.2429, 7.2419, 7.2409, 7.2399, 7.2394, 7.2386, 7.2411, 7.2403, 7.2424, 7.2441, 7.2459, 7.2449, 7.244, 7.2431, 7.245, 7.2442, 7.2433, 7.2425, 7.2442, 7.2432, 7.2422, 7.2416, 7.2405, 7.2421, 7.241, 7.2401, 7.2393, 7.2383, 7.2376, 7.2344, 7.2364, 7.2359, 7.2381, 7.2372, 7.2362, 7.24, 7.2424, 7.2419, 7.2409, 7.2401, 7.2393, 7.2414, 7.2407, 7.2397, 7.2393, 7.241, 7.2405, 7.2395, 7.2385, 7.2395, 7.2415, 7.2406, 7.2396, 7.2387, 7.2382, 7.2374, 7.2367, 7.2359, 7.2355, 7.2346, 7.2339, 7.236, 7.2353, 7.2343, 7.2333, 7.2334, 7.2325, 7.2316, 7.2342, 7.2336, 7.2331, 7.2324, 7.2321, 7.2311, 7.2304, 7.2294, 7.2314, 7.2306, 7.2296, 7.2287, 7.2278, 7.2269, 7.2259, 7.2278, 7.2273, 7.2264, 7.2259, 7.2258, 7.2249, 7.2243, 7.2263, 7.2257, 7.2248, 7.2276, 7.2267, 7.2285, 7.2282, 7.2275, 7.2288, 7.2279, 7.2269, 7.2288, 7.2309, 7.233, 7.2324, 7.2322, 7.2343, 7.2336, 7.2327, 7.2331, 7.2337, 7.2361, 7.2354, 7.2348, 7.234, 7.2332, 7.2324, 7.2343, 7.2335, 7.2326, 7.2319, 7.2337, 7.2327, 7.2318, 7.2325, 7.2315, 7.2311, 7.2328, 7.2324, 7.2322, 7.243, 7.2448, 7.2464, 7.2586, 7.2604, 7.2621, 7.264, 7.2659, 7.2653, 7.2644, 7.2663, 7.2679, 7.2669, 7.2688, 7.2686, 7.2676, 7.2666, 7.2657, 7.2733, 7.27, 7.2691, 7.2687, 7.2707, 7.2673, 7.2696, 7.269, 7.2708, 7.2702, 7.2694, 7.2685, 7.2741, 7.2763, 7.2758, 7.2749, 7.2766, 7.2761, 7.2766, 7.2733, 7.2725, 7.2716, 7.2706, 7.2702, 7.2718, 7.2709, 7.27, 7.2691, 7.2683, 7.2699, 7.2689, 7.271, 7.2701, 7.2695, 7.2685, 7.2675, 7.2665, 7.2657, 7.2654, 7.2644, 7.2635, 7.2626, 7.2643, 7.2659, 7.2653, 7.2671, 7.2689, 7.2657, 7.2648, 7.2666, 7.2661, 7.2678, 7.2675, 7.2757, 7.2774, 7.2791, 7.2784, 7.2792, 7.2759, 7.275, 7.2767, 7.2785, 7.2803, 7.2794, 7.2785, 7.2776, 7.2767, 7.2763, 7.2754, 7.2798, 7.2819, 7.2812, 7.2813, 7.2834, 7.2827, 7.2817, 7.2832, 7.2824, 7.2843, 7.2835, 7.2828, 7.2848, 7.2842, 7.2855, 7.2846, 7.2838, 7.2831, 7.2823, 7.2816, 7.2809, 7.28, 7.2791, 7.2782, 7.2759, 7.2777, 7.2773, 7.2792, 7.2785, 7.2802, 7.2793, 7.2783, 7.2774, 7.2844, 7.286, 7.2857, 7.2874, 7.2865, 7.2855, 7.2851, 7.2842, 7.2833, 7.2825, 7.2816, 7.2808, 7.2799, 7.2792, 7.2808, 7.2825, 7.2854, 7.2844, 7.2861, 7.2852, 7.2843, 7.2862, 7.2879, 7.2896, 7.2886, 7.2903, 7.2894, 7.2915, 7.2933, 7.2924, 7.2915, 7.2906, 7.2897, 7.2888, 7.2882, 7.2911, 7.2928, 7.2918, 7.2909, 7.2901, 7.2892, 7.2884, 7.29, 7.2891, 7.2907, 7.29, 7.2896, 7.289, 7.288, 7.2896, 7.2864, 7.2856, 7.2877, 7.2873, 7.2865, 7.2856, 7.288, 7.2895, 7.2924, 7.2943, 7.2946, 7.3013, 7.3005, 7.3046, 7.3063, 7.3195, 7.321, 7.3227, 7.3248, 7.3241, 7.3234, 7.3227, 7.3219, 7.3236, 7.3241, 7.3272, 7.3269, 7.3262, 7.3253, 7.3244, 7.326, 7.3251, 7.3242, 7.3258, 7.325, 7.3241, 7.3232, 7.3238, 7.3229, 7.3245, 7.3238, 7.3254, 7.3269, 7.3287, 7.3302, 7.3319, 7.3313, 7.3304, 7.3296, 7.3287, 7.3304, 7.332, 7.3336, 7.3328, 7.3322, 7.3313, 7.3308, 7.3335, 7.3331, 7.3323, 7.3372, 7.3369, 7.336, 7.335, 7.3384, 7.3376, 7.3392, 7.3385, 7.3376, 7.3368, 7.336, 7.3376, 7.3368, 7.3359, 7.3356, 7.335, 7.3342, 7.3349, 7.3366, 7.3357, 7.3372, 7.3364, 7.3355, 7.3347, 7.3339, 7.3332, 7.3349, 7.3341, 7.3357, 7.3349, 7.3354, 7.3347, 7.3361, 7.3353, 7.3349, 7.3339, 7.333, 7.3321, 7.3312, 7.3303, 7.3301, 7.3295, 7.3287, 7.3279, 7.3294, 7.3286, 7.3277, 7.3291, 7.3283, 7.3274, 7.3316, 7.3311, 7.3304, 7.3297, 7.3312, 7.3328, 7.3343, 7.3314, 7.3306, 7.3297, 7.3312, 7.3304, 7.3299, 7.3305, 7.3296, 7.3314, 7.3309, 7.3302, 7.3318, 7.3345, 7.3371, 7.3365, 7.3358, 7.3351, 7.3366, 7.3357, 7.3351, 7.3344, 7.3336, 7.3329, 7.3322, 7.3338, 7.3355, 7.3348, 7.334, 7.3332, 7.3325, 7.3316, 7.3309, 7.3301, 7.3293, 7.3284, 7.3276, 7.3268, 7.3262, 7.3278, 7.3273, 7.3265, 7.3281, 7.3275, 7.327, 7.3261, 7.3253, 7.325, 7.3241, 7.3233, 7.3225, 7.3216, 7.3207, 7.3222, 7.3215, 7.3207, 7.3202, 7.3203, 7.3197, 7.3211, 7.3203, 7.3196, 7.3189, 7.3183, 7.3176, 7.3169, 7.3164, 7.3157, 7.3149, 7.3142, 7.3141, 7.3134, 7.3126, 7.3117, 7.3109, 7.3111, 7.3104, 7.3098, 7.3095, 7.3111, 7.3082, 7.3097, 7.309, 7.3062, 7.3055, 7.3048, 7.3042, 7.3037, 7.3029, 7.3023, 7.3014, 7.303, 7.3026, 7.302, 7.3012, 7.3015, 7.3011, 7.3002, 7.2997, 7.3176, 7.3169, 7.3185, 7.3176, 7.3192, 7.3187, 7.3179, 7.3194, 7.3219, 7.3246, 7.3266, 7.3258, 7.3272, 7.3266, 7.3259, 7.3253, 7.3246, 7.3218, 7.3233, 7.3247, 7.3238, 7.3231, 7.3228, 7.3226, 7.3274, 7.3272, 7.3287, 7.3303, 7.3298, 7.3293, 7.3288, 7.328, 7.3272, 7.3264, 7.3259, 7.3251, 7.3243, 7.3216, 7.3211, 7.3224, 7.3224, 7.3239, 7.3254, 7.3247, 7.3261, 7.3326, 7.3317, 7.3309, 7.3302, 7.3295, 7.3295, 7.3288, 7.3305, 7.3296, 7.3311, 7.3304, 7.3297, 7.329, 7.3282, 7.3275, 7.3269, 7.3261, 7.3254, 7.3246, 7.324, 7.3233, 7.3229, 7.3244, 7.3238, 7.3233, 7.3248, 7.3267, 7.3262, 7.3275, 7.327, 7.3286, 7.3301, 7.3292, 7.3292, 7.3309, 7.3304, 7.3295, 7.3288, 7.3282, 7.3297, 7.3288, 7.3285, 7.33, 7.3294, 7.3287, 7.328, 7.3295, 7.3363, 7.3382, 7.3396, 7.3411, 7.3403, 7.3375, 7.3367, 7.336, 7.3354, 7.3369, 7.3383, 7.3377, 7.339, 7.3434, 7.3428, 7.3422, 7.3416, 7.3408, 7.3402, 7.3396, 7.3389, 7.3408, 7.34, 7.3396, 7.3408, 7.3403, 7.3395, 7.3387, 7.3382, 7.3355, 7.3349, 7.3343, 7.3336, 7.3351, 7.3344, 7.336, 7.3353, 7.3344, 7.3356, 7.3348, 7.3341, 7.3336, 7.3331, 7.3344, 7.336, 7.3355, 7.3348, 7.3341, 7.3357, 7.3349, 7.3343, 7.3357, 7.3349, 7.3363, 7.339, 7.3363, 7.3356, 7.3348, 7.3361, 7.3375, 7.3367, 7.3361, 7.3375, 7.3369, 7.3363, 7.3376, 7.3371, 7.3366, 7.3402, 7.3395, 7.3388, 7.3382, 7.3395, 7.3388, 7.3382, 7.3376, 7.3368, 7.3398, 7.3412, 7.3405, 7.342, 7.3433, 7.3447, 7.344, 7.3454, 7.3453, 7.3427, 7.34, 7.35, 7.3494, 7.3467, 7.3465, 7.3463, 7.3457, 7.3451, 7.3447, 7.3441, 7.3457, 7.3474, 7.3468, 7.3482, 7.3474, 7.3469, 7.3472, 7.3465, 7.346, 7.3477, 7.3474, 7.3467, 7.3459, 7.3451, 7.3443, 7.3437, 7.3442, 7.3435, 7.3429, 7.3439, 7.3432, 7.3424, 7.3459, 7.3453, 7.3447, 7.3441, 7.3416, 7.341, 7.3431, 7.3445, 7.3438, 7.3434, 7.3427, 7.3421, 7.3436, 7.3428, 7.3422, 7.3417, 7.3411, 7.3403, 7.3412, 7.3405, 7.3418, 7.3431, 7.3423, 7.3415, 7.3408, 7.3401, 7.3396, 7.341, 7.3424, 7.3436, 7.3428, 7.344, 7.3433, 7.3426, 7.3419, 7.3412, 7.3412, 7.3405, 7.3404, 7.3378, 7.3386, 7.3381, 7.3397, 7.3413, 7.3407, 7.3402, 7.3398, 7.339, 7.3402, 7.3394, 7.3386, 7.3398, 7.3394, 7.3407, 7.3442, 7.3455, 7.3448, 7.3459, 7.3472, 7.3468, 7.3481, 7.3494, 7.3487, 7.348, 7.3472, 7.3467, 7.3441, 7.3455, 7.3447, 7.3442, 7.3434, 7.3448, 7.3441, 7.3434, 7.3469, 7.3483, 7.3475, 7.3468, 7.3463, 7.3458, 7.3452, 7.3463, 7.3476, 7.3469, 7.3486, 7.3461, 7.3435, 7.3448, 7.3447, 7.344, 7.3433, 7.3425, 7.3466, 7.3463, 7.3461, 7.3453, 7.3445, 7.3439, 7.3453, 7.3445, 7.3439, 7.3452, 7.3465, 7.3461, 7.3473, 7.3485, 7.3477, 7.3492, 7.3486, 7.3478, 7.3473, 7.3467, 7.346, 7.3453, 7.3466, 7.3459, 7.3453, 7.3447, 7.344, 7.3432, 7.3445, 7.3441, 7.3434, 7.3427, 7.3421, 7.3434, 7.3455, 7.345, 7.3449, 7.3441, 7.3455, 7.3469, 7.3466, 7.3459, 7.3453, 7.3446, 7.3458, 7.3451, 7.3448, 7.3441, 7.3448, 7.344, 7.3453, 7.3445, 7.3458, 7.348, 7.3473, 7.3486, 7.3479, 7.3473, 7.3467, 7.346, 7.3452, 7.3447, 7.346, 7.3453, 7.3446, 7.3439, 7.344, 7.3433, 7.3428, 7.3439, 7.3435, 7.3434, 7.3427, 7.3422, 7.3415, 7.3408, 7.3429, 7.3435, 7.3431, 7.3426, 7.3421, 7.3415, 7.3408, 7.3445, 7.344, 7.3433, 7.3429, 7.3424, 7.3418, 7.341, 7.3423, 7.3437, 7.3457, 7.347, 7.3465, 7.346, 7.3453, 7.3448, 7.3447, 7.3442, 7.3436, 7.3431, 7.3424, 7.342, 7.3413, 7.3408, 7.342, 7.3433, 7.3427, 7.3422, 7.3415, 7.3408, 7.3406, 7.3419, 7.3433, 7.3428, 7.3423, 7.3435, 7.3411, 7.3443, 7.3439, 7.3431, 7.3444, 7.3438, 7.3433, 7.3426, 7.3423, 7.3435, 7.3429, 7.3426, 7.3452, 7.3447, 7.344, 7.346, 7.3475, 7.3468, 7.346, 7.3455, 7.345, 7.3443, 7.3436, 7.3429, 7.3424, 7.3417, 7.341, 7.3407, 7.3401, 7.3394, 7.3406, 7.3399, 7.3411, 7.3404, 7.3397, 7.341, 7.3422, 7.3415, 7.3427, 7.3439, 7.3432, 7.3425, 7.3438, 7.3451, 7.3444, 7.3421, 7.3416, 7.3409, 7.3402, 7.3395, 7.339, 7.3385, 7.3381, 7.3374, 7.337, 7.3364, 7.3357, 7.3352, 7.3351, 7.3363, 7.3359, 7.3372, 7.3386, 7.3379, 7.3373, 7.3367, 7.3361, 7.3354, 7.3348, 7.3345, 7.3358, 7.3352, 7.3345, 7.3357, 7.335, 7.3344, 7.3337, 7.3332, 7.3345, 7.3361, 7.3341, 7.3336, 7.333, 7.3325, 7.3321, 7.3315, 7.3311, 7.3304, 7.3298, 7.3293, 7.3288, 7.3282, 7.3294, 7.3289, 7.3283, 7.326, 7.3254, 7.3248, 7.3243, 7.3236, 7.3229, 7.3225, 7.3219, 7.3214, 7.3208, 7.3202, 7.3195, 7.3207, 7.3201, 7.3197, 7.3209, 7.3203, 7.3216, 7.3229, 7.3241, 7.3235, 7.3246, 7.324, 7.3235, 7.3229, 7.3223, 7.3236, 7.3247, 7.3241, 7.3254, 7.3249, 7.3243, 7.3239, 7.3232, 7.3229, 7.3242, 7.3254, 7.3248, 7.3242, 7.3239, 7.3232, 7.3225, 7.3237, 7.3253, 7.323, 7.3242, 7.3236, 7.323, 7.3259, 7.3252, 7.3264, 7.3258, 7.3252, 7.3247, 7.324, 7.3236, 7.323, 7.3242, 7.3235, 7.3213, 7.319, 7.3187, 7.3181, 7.3174, 7.3167, 7.316, 7.3155, 7.3166, 7.3161, 7.3154, 7.3148, 7.3141, 7.3136, 7.3148, 7.3143, 7.3143, 7.3139, 7.3151, 7.315, 7.3162, 7.3159, 7.3153, 7.3146, 7.3141, 7.3153, 7.3147, 7.3144, 7.3156, 7.3153, 7.3168, 7.3179, 7.3172, 7.3191, 7.3185, 7.3185, 7.3179, 7.3172, 7.3166, 7.3161, 7.3156, 7.3153, 7.3148, 7.3142, 7.3137, 7.3132, 7.3146, 7.316, 7.3171, 7.3183, 7.3176, 7.3155, 7.3166, 7.316, 7.3137, 7.3132, 7.3143, 7.3138, 7.3135, 7.3131, 7.3124, 7.3119, 7.3112, 7.3123, 7.3116, 7.313, 7.3124, 7.3136, 7.3131, 7.3143, 7.3138, 7.3132, 7.3126, 7.3138, 7.3132, 7.3144, 7.3138, 7.3133, 7.3128, 7.3129, 7.3123, 7.3137, 7.3131, 7.3114, 7.3108, 7.3103, 7.3098, 7.3096, 7.3089, 7.3083, 7.3094, 7.309, 7.3083, 7.3078, 7.3074, 7.3069, 7.3063, 7.3075, 7.3069, 7.3049, 7.3043, 7.3036, 7.3032, 7.3082, 7.3076, 7.3054, 7.3048, 7.3042, 7.3055, 7.3103, 7.3081, 7.3093, 7.311, 7.3104, 7.3117, 7.3112, 7.3106, 7.3103, 7.311, 7.3104, 7.3116, 7.3115, 7.3127, 7.3145, 7.314, 7.3138, 7.3144, 7.3141, 7.3136, 7.3146, 7.3161, 7.3155, 7.3155, 7.3172, 7.3183, 7.3194, 7.3191, 7.3186, 7.318, 7.3173, 7.3167, 7.316, 7.3156, 7.3167, 7.3179, 7.3172, 7.3167, 7.3162, 7.3155, 7.3148, 7.3143, 7.3136, 7.3148, 7.3159, 7.3153, 7.3165, 7.3161, 7.3155, 7.3168, 7.3164, 7.3158, 7.3153, 7.3147, 7.3159, 7.3153, 7.3166, 7.3162, 7.3156, 7.3153, 7.3131, 7.3142, 7.3137, 7.3117, 7.3112, 7.3106, 7.3102, 7.3098, 7.3096, 7.309, 7.3101, 7.3131, 7.3127, 7.3123, 7.3101, 7.3095, 7.3089, 7.3084, 7.3079, 7.309, 7.3086, 7.3082, 7.3079, 7.3074, 7.3085, 7.3095, 7.3108, 7.3103, 7.3097, 7.3092, 7.3087, 7.3081, 7.3077, 7.307, 7.3099, 7.3093, 7.3089, 7.3085, 7.3096, 7.3091, 7.3084, 7.3095, 7.309, 7.3087, 7.3087, 7.3065, 7.3044, 7.3039, 7.3035, 7.3046, 7.3057, 7.3054, 7.3049, 7.3043, 7.3053, 7.3064, 7.3059, 7.3055, 7.3066, 7.3076, 7.3087, 7.3082, 7.3078, 7.3072, 7.3068, 7.3062, 7.3056, 7.3034, 7.3028, 7.3022, 7.3033, 7.3029, 7.3042, 7.3053, 7.3066, 7.3112, 7.3106, 7.3102, 7.3096, 7.309, 7.3085, 7.3079, 7.309, 7.312, 7.3114, 7.3161, 7.3168, 7.3163, 7.3175, 7.317, 7.3165, 7.3162, 7.3157, 7.3152, 7.3147, 7.3157, 7.3168, 7.3162, 7.3172, 7.3166, 7.3162, 7.3156, 7.3168, 7.3162, 7.3156, 7.3151, 7.3146, 7.314, 7.3137, 7.3131, 7.313, 7.3127, 7.3138, 7.3149, 7.3144, 7.3155, 7.3166, 7.3178, 7.3172, 7.3166, 7.3161, 7.3163, 7.3212, 7.3207, 7.3202, 7.3196, 7.3193, 7.3187, 7.3198, 7.3193, 7.3189, 7.3234, 7.3228, 7.3225, 7.3221, 7.3216, 7.321, 7.3208, 7.3253, 7.3248, 7.3242, 7.325, 7.3263, 7.3276, 7.3272, 7.3266, 7.3276, 7.3287, 7.3281, 7.3275, 7.3269, 7.3266, 7.326, 7.3254, 7.3265, 7.3261, 7.3273, 7.3253, 7.3247, 7.3241, 7.3235, 7.3247, 7.3248, 7.3243, 7.3237, 7.3232, 7.3226, 7.322, 7.3232, 7.3242, 7.3237, 7.3233, 7.3229, 7.3224, 7.3223, 7.3217, 7.3227, 7.3221, 7.3215, 7.3211, 7.3222, 7.3216, 7.3243, 7.3238, 7.3232, 7.3226, 7.322, 7.3215, 7.3232, 7.3229, 7.3241, 7.3257, 7.3251, 7.3245, 7.3239, 7.3233, 7.3244, 7.3238, 7.3234, 7.3215, 7.3226, 7.3221, 7.3216, 7.3213, 7.3208, 7.3202, 7.328, 7.3275, 7.3269, 7.3283, 7.3277, 7.3272, 7.3282, 7.3292, 7.3286, 7.3298, 7.3294, 7.3288, 7.3282, 7.3276, 7.3276, 7.3272, 7.3284, 7.328, 7.3292, 7.3286, 7.3281, 7.3277, 7.3276, 7.3273, 7.3268, 7.3296, 7.3306, 7.3317, 7.3327, 7.3339, 7.3336, 7.3333, 7.3327, 7.3322, 7.3318, 7.3328, 7.3324, 7.3334, 7.3329, 7.3324, 7.3335, 7.3363, 7.3359, 7.3355, 7.3349, 7.3359, 7.3354, 7.3348, 7.3343, 7.3337, 7.3332, 7.3342, 7.3337, 7.3348, 7.3342, 7.3336, 7.3333, 7.3327, 7.3323, 7.3318, 7.3329, 7.3324, 7.3318, 7.3328, 7.3338, 7.3332, 7.3358, 7.3358, 7.3353, 7.3348, 7.3358, 7.336, 7.337, 7.3366, 7.336, 7.3361, 7.3355, 7.335, 7.3346, 7.334, 7.3334, 7.333, 7.3329, 7.3325, 7.3321, 7.3331, 7.3326, 7.332, 7.333, 7.3327, 7.3338, 7.3333, 7.3328, 7.3324, 7.3319, 7.3314, 7.3325, 7.332, 7.3315, 7.3309, 7.3306, 7.33, 7.3296, 7.329, 7.3301, 7.3295, 7.3289, 7.3299, 7.3294, 7.3289, 7.3285, 7.3292, 7.3306, 7.3303, 7.3299, 7.3294, 7.3291, 7.3286, 7.3281, 7.3276, 7.327, 7.3265, 7.3259, 7.3254, 7.3248, 7.3242, 7.3254, 7.3248, 7.3229, 7.3238, 7.3232, 7.3242, 7.3238, 7.3258, 7.3275, 7.3271, 7.3283, 7.3279, 7.3273, 7.3268, 7.3279, 7.3289, 7.3286, 7.3282, 7.3263, 7.326, 7.3255, 7.3264, 7.3259, 7.3285, 7.328, 7.3277, 7.3287, 7.3283, 7.3289, 7.3299, 7.3295, 7.329, 7.33, 7.3295, 7.3292, 7.3286, 7.328, 7.3276, 7.327, 7.3264, 7.3261, 7.3255, 7.3251, 7.3246, 7.3241, 7.3235, 7.3232, 7.3226, 7.3315, 7.3325, 7.3335, 7.3331, 7.3327, 7.3308, 7.3335, 7.336, 7.3388, 7.3409, 7.3432, 7.3426, 7.3423, 7.3434, 7.3444, 7.3457, 7.3467, 7.3481, 7.3478, 7.3487, 7.3498, 7.3493, 7.3497, 7.3507, 7.3503, 7.3504, 7.3499, 7.3493, 7.3489, 7.3485, 7.3481, 7.3477, 7.3471, 7.3481, 7.3492, 7.3496, 7.3506, 7.3514, 7.351, 7.3507, 7.3501, 7.35, 7.3502, 7.3499, 7.3493, 7.3487, 7.3499, 7.3493, 7.3521, 7.3518, 7.3513, 7.351, 7.3506, 7.35, 7.3497, 7.3508, 7.3503, 7.3498, 7.3515, 7.351, 7.3506, 7.3501, 7.3495, 7.3505, 7.3501, 7.3495, 7.3492, 7.3488, 7.3484, 7.3494, 7.3493, 7.3487, 7.3481, 7.3477, 7.3486, 7.348, 7.348, 7.3477, 7.348, 7.3475, 7.347, 7.3465, 7.3462, 7.3459, 7.3453, 7.3449, 7.3443, 7.344, 7.3435, 7.343, 7.3424, 7.3418, 7.3412, 7.3408, 7.3403, 7.3412, 7.3408, 7.3403, 7.3398, 7.3393, 7.3402, 7.3384, 7.338, 7.3378, 7.3373, 7.3367, 7.3361, 7.3355, 7.3369, 7.338, 7.3376, 7.337, 7.3365, 7.336, 7.3355, 7.3365, 7.3366, 7.3347, 7.3344, 7.3341, 7.334, 7.3353, 7.3348, 7.3354, 7.3348, 7.3343, 7.3338, 7.3332, 7.3341, 7.3336, 7.3332, 7.3328, 7.3323, 7.3317, 7.3323, 7.3333, 7.3327, 7.3337, 7.3349, 7.3345, 7.334, 7.3322, 7.3334, 7.3331, 7.3328, 7.334, 7.3334, 7.3341, 7.3336, 7.3331, 7.3326, 7.3322, 7.3319, 7.3329, 7.3324, 7.3319, 7.333, 7.3325, 7.332, 7.3315, 7.3351, 7.336, 7.3355, 7.3352, 7.3352, 7.3364, 7.336, 7.3357, 7.3351, 7.3348, 7.3358, 7.3368, 7.3369, 7.3366, 7.3362, 7.3357, 7.3354, 7.3364, 7.3372, 7.3367, 7.3362, 7.3357, 7.3367, 7.3363, 7.3373, 7.3367, 7.3377, 7.3372, 7.3368, 7.3363, 7.3359, 7.3355, 7.3349, 7.3359, 7.3354, 7.3363, 7.3346, 7.3355, 7.3363, 7.3346, 7.3397, 7.3392, 7.3389, 7.3384, 7.3379, 7.3389, 7.3383, 7.3378, 7.3373, 7.3368, 7.3364, 7.3359, 7.3363, 7.3366, 7.3362, 7.3359, 7.3363, 7.3359, 7.3357, 7.3366, 7.3374, 7.3389, 7.3387, 7.3383, 7.338, 7.3375, 7.3384, 7.3379, 7.3373, 7.3368, 7.335, 7.336, 7.3356, 7.3353, 7.3378, 7.3373, 7.3382, 7.3378, 7.3388, 7.3383, 7.3379, 7.3374, 7.3383, 7.3379, 7.3375, 7.337, 7.3366, 7.336, 7.3355, 7.3353, 7.3362, 7.3358, 7.3368, 7.3363, 7.3359, 7.3355, 7.3352, 7.3349, 7.3348, 7.338, 7.3388, 7.3384, 7.338, 7.3376, 7.3372, 7.3366, 7.3362, 7.3374, 7.337, 7.3365, 7.3363, 7.3372, 7.3369, 7.3353, 7.3349, 7.3361, 7.3358, 7.3368, 7.3376, 7.3371, 7.3394, 7.3391, 7.34, 7.3396, 7.3392, 7.34, 7.3396, 7.3391, 7.34, 7.3398, 7.3408, 7.3417, 7.3426, 7.342, 7.3415, 7.341, 7.3404, 7.3399, 7.3393, 7.3391, 7.3399, 7.3408, 7.3417, 7.3414, 7.3409, 7.3404, 7.3414, 7.341, 7.3406, 7.3404, 7.3399, 7.3395, 7.339, 7.3385, 7.3411, 7.3393, 7.3388, 7.3397, 7.3393, 7.3403, 7.3458, 7.3453, 7.3463, 7.3462, 7.3457, 7.3454, 7.3449, 7.3449, 7.3444, 7.3439, 7.3434, 7.3432, 7.3428, 7.3423, 7.3419, 7.3415, 7.3424, 7.3419, 7.3415, 7.341, 7.341, 7.3408, 7.3403, 7.3412, 7.3408, 7.3405, 7.3407, 7.3403, 7.3418, 7.3416, 7.3423, 7.3418, 7.3413, 7.3408, 7.3403, 7.3398, 7.3393, 7.339, 7.3391, 7.34, 7.3397, 7.3392, 7.3391, 7.3393, 7.3402, 7.341, 7.3419, 7.3428, 7.3435, 7.3444, 7.3452, 7.3475, 7.3498, 7.3494, 7.3489, 7.3485, 7.348, 7.3516, 7.3527, 7.3538, 7.3536, 7.3533, 7.3528, 7.3524, 7.352, 7.3516, 7.3525, 7.352, 7.3515, 7.3511, 7.3509, 7.3504, 7.3499, 7.3494, 7.3491, 7.3486, 7.3481, 7.3476, 7.3473, 7.3469, 7.3465, 7.346, 7.3469, 7.3464, 7.3462, 7.3457, 7.3457, 7.3453, 7.3449, 7.3444, 7.3439, 7.3436, 7.3432, 7.3427, 7.3424, 7.342, 7.3415, 7.3411, 7.3408, 7.3403, 7.3399, 7.3397, 7.3392, 7.3388, 7.3397, 7.3394, 7.3389, 7.3384, 7.338, 7.339, 7.3399, 7.3395, 7.3392, 7.3387, 7.3384, 7.3379, 7.3375, 7.337, 7.3365, 7.3375, 7.3371, 7.3366, 7.3362, 7.3357, 7.3379, 7.3374, 7.3383, 7.3378, 7.3374, 7.339, 7.3387, 7.3434, 7.343, 7.3427, 7.3436, 7.3432, 7.3427, 7.3435, 7.3432, 7.3427, 7.3422, 7.3417, 7.3413, 7.3412, 7.3407, 7.3402, 7.34, 7.3402, 7.3399, 7.3396, 7.3394, 7.3391, 7.3387, 7.3383, 7.3379, 7.3375, 7.3371, 7.3367, 7.3363, 7.3357, 7.3366, 7.3363, 7.3358, 7.3356, 7.3352, 7.3378, 7.3386, 7.3381, 7.3377, 7.3372, 7.3367, 7.3375, 7.337, 7.3379, 7.3406, 7.3402, 7.3399, 7.3409, 7.3405, 7.3408, 7.3403, 7.3399, 7.3402, 7.3411, 7.3407, 7.339, 7.3432, 7.3429, 7.3426, 7.3422, 7.3435, 7.3443, 7.3438, 7.3434, 7.343, 7.3426, 7.3452, 7.3448, 7.3444, 7.3439, 7.3453, 7.345, 7.3459, 7.3454, 7.347, 7.3467, 7.3463, 7.3477, 7.3485, 7.3482, 7.3477, 7.3473, 7.3481, 7.3476, 7.3485, 7.3481, 7.3484, 7.3482, 7.3478, 7.3473, 7.3457, 7.3453, 7.3451, 7.3448, 7.346, 7.3456, 7.3439, 7.3434, 7.3432, 7.3443, 7.3451, 7.346, 7.3457, 7.3466, 7.3461, 7.3456, 7.3466, 7.3474, 7.3469, 7.3464, 7.3473, 7.347, 7.3479, 7.3475, 7.3472, 7.3482, 7.348, 7.3475, 7.349, 7.3499, 7.3498, 7.3506, 7.3517, 7.3512, 7.3508, 7.3504, 7.3514, 7.351, 7.3505, 7.3501, 7.3496, 7.3492, 7.3501, 7.3497, 7.3494, 7.349, 7.3499, 7.3508, 7.3504, 7.35, 7.3495, 7.3504, 7.3501, 7.3509, 7.3517, 7.3512, 7.3507, 7.3502, 7.3497, 7.3505, 7.35, 7.3495, 7.3491, 7.3486, 7.3494, 7.3489, 7.3484, 7.3479, 7.3487, 7.3482, 7.348, 7.3476, 7.3472, 7.348, 7.3476, 7.3473, 7.3481, 7.3476, 7.3471, 7.3468, 7.3476, 7.3471, 7.3467, 7.3475, 7.3472, 7.3467, 7.3463, 7.3458, 7.3454, 7.345, 7.3459, 7.3457, 7.3453, 7.3448, 7.3443, 7.3438, 7.3447, 7.3442, 7.3464, 7.346, 7.3456, 7.3452, 7.3448, 7.3457, 7.3466, 7.3461, 7.3469, 7.3465, 7.3461, 7.3444, 7.3458, 7.3458, 7.3453, 7.345, 7.3472, 7.3501, 7.3498, 7.3506, 7.3502, 7.3514, 7.351, 7.3506, 7.3502, 7.3498, 7.3494, 7.3489, 7.3497, 7.3495, 7.349, 7.3485, 7.3482, 7.3477, 7.3474, 7.3469, 7.3464, 7.3459, 7.3464, 7.3459, 7.3455, 7.3451, 7.346, 7.3455, 7.3452, 7.3453, 7.3449, 7.3445, 7.344, 7.3435, 7.3445, 7.3441, 7.3437, 7.3433, 7.3429, 7.3425, 7.3435, 7.343, 7.3429, 7.3425, 7.343, 7.3458, 7.3455, 7.3451, 7.3447, 7.3442, 7.3437, 7.3434, 7.343, 7.3429, 7.3439, 7.3436, 7.342, 7.3418, 7.3414, 7.3423, 7.3419, 7.3427, 7.3422, 7.3418, 7.3414, 7.3409, 7.3405, 7.34, 7.3409, 7.3405, 7.3402, 7.3399, 7.344, 7.3448, 7.3456, 7.3464, 7.3461, 7.3457, 7.3452, 7.3436, 7.3445, 7.3443, 7.3438, 7.3435, 7.343, 7.3426, 7.3435, 7.3431, 7.3454, 7.3449, 7.3458, 7.3453, 7.345, 7.3445, 7.3443, 7.3451, 7.3449, 7.3446, 7.3467, 7.3465, 7.346, 7.3456, 7.3504, 7.3503, 7.3513, 7.3509, 7.3517, 7.3512, 7.3508, 7.3505, 7.3501, 7.3498, 7.3495, 7.3491, 7.3487, 7.3487, 7.3483, 7.348, 7.3476, 7.3472, 7.3468, 7.3484, 7.348, 7.3477, 7.3476, 7.3472, 7.3467, 7.3475, 7.3472, 7.3481, 7.3477, 7.3473, 7.3481, 7.3477, 7.3477, 7.3474, 7.347, 7.3465, 7.3463, 7.347, 7.3465, 7.346, 7.3456, 7.3452, 7.3459, 7.3467, 7.3463, 7.346, 7.3456, 7.3453, 7.345, 7.3447, 7.3443, 7.3439, 7.3434, 7.3429, 7.3479, 7.3475, 7.3471, 7.3468, 7.3476, 7.3491, 7.3488, 7.3508, 7.3503, 7.3498, 7.3483, 7.3479, 7.3475, 7.347, 7.3466, 7.3462, 7.3457, 7.3454, 7.3449, 7.3445, 7.3454, 7.345, 7.3447, 7.3459, 7.3468, 7.3477, 7.3486, 7.3495, 7.3491, 7.351, 7.3505, 7.35, 7.35, 7.3496, 7.3491, 7.3487, 7.3483, 7.3491, 7.3505, 7.35, 7.3495, 7.3492, 7.35, 7.3508, 7.3503, 7.3511, 7.3507, 7.3504, 7.3502, 7.351, 7.3518, 7.3513, 7.351, 7.3516, 7.3511, 7.3507, 7.3503, 7.3512, 7.3507, 7.3515, 7.3513, 7.3521, 7.3516, 7.3524, 7.3519, 7.3515, 7.3523, 7.3518, 7.3527, 7.3535, 7.3543, 7.3539, 7.3547, 7.3555, 7.3551, 7.355, 7.3546, 7.3544, 7.354, 7.3536, 7.3531, 7.3528, 7.3539, 7.3547, 7.3555, 7.3551, 7.3546, 7.3542, 7.3538, 7.3533, 7.3542, 7.3537, 7.3545, 7.3576, 7.3573, 7.3581, 7.3577, 7.3574, 7.3581, 7.3592, 7.3588, 7.3586, 7.3583, 7.3579, 7.3587, 7.3595, 7.359, 7.3598, 7.3594, 7.3602, 7.3597, 7.3605, 7.3613, 7.3609, 7.3605, 7.3601, 7.3609, 7.3618, 7.3613, 7.362, 7.3616, 7.3612, 7.3609, 7.3605, 7.3637, 7.3633, 7.3629, 7.3624, 7.3619, 7.3615, 7.363, 7.3656, 7.3663, 7.3658, 7.3653, 7.3649, 7.3645, 7.3642, 7.3638, 7.3634, 7.3664, 7.3662, 7.3658, 7.366, 7.3672, 7.3668, 7.3664, 7.3659, 7.3667, 7.3663, 7.366, 7.3667, 7.3669, 7.3664, 7.366, 7.3656, 7.3665, 7.3661, 7.3656, 7.3652, 7.3648, 7.3645, 7.3653, 7.3649, 7.3647, 7.3644, 7.3642, 7.365, 7.3646, 7.3642, 7.3662, 7.367, 7.3678, 7.3675, 7.371, 7.3705, 7.3701, 7.3708, 7.374, 7.3748, 7.3743, 7.3757, 7.3753, 7.375, 7.3758, 7.3758, 7.3754, 7.3739, 7.3734, 7.3729, 7.3738, 7.3736, 7.3731, 7.3716, 7.3723, 7.3731, 7.3727, 7.3735, 7.3731, 7.3728, 7.3735, 7.3755, 7.3751, 7.3748, 7.3744, 7.374, 7.3748, 7.3744, 7.3739, 7.3745, 7.3742, 7.374, 7.3737, 7.3733, 7.3743, 7.3739, 7.3734, 7.3742, 7.3738, 7.3734, 7.3743, 7.3739, 7.3736, 7.3733, 7.3729, 7.3736, 7.3732, 7.3742, 7.3738, 7.3734, 7.3742, 7.3739, 7.3743, 7.3767, 7.3765, 7.3761, 7.3758, 7.3754, 7.375, 7.3806, 7.3815, 7.3811, 7.3808, 7.3805, 7.3813, 7.3822, 7.3819, 7.3828, 7.3824, 7.3819, 7.3815, 7.3811, 7.3809, 7.3817, 7.3816, 7.3823, 7.382, 7.3816, 7.3813, 7.3821, 7.3829, 7.3837, 7.3835, 7.3833, 7.3832, 7.3828, 7.3837, 7.3834, 7.3829, 7.3825, 7.3821, 7.3816, 7.3824, 7.382, 7.3818, 7.3815, 7.3823, 7.3819, 7.3815, 7.381, 7.3818, 7.3814, 7.3822, 7.3819, 7.3827, 7.3823, 7.382, 7.3815, 7.3811, 7.3819, 7.3816, 7.3812, 7.3813, 7.382, 7.3816, 7.3816, 7.3813, 7.3809, 7.3807, 7.3803, 7.3799, 7.3795, 7.3804, 7.3812, 7.3821, 7.3817, 7.3814, 7.382, 7.3816, 7.3812, 7.3807, 7.3804, 7.3812, 7.3807, 7.3804, 7.38, 7.3796, 7.3803, 7.381, 7.3814, 7.3811, 7.3807, 7.3827, 7.3823, 7.382, 7.3852, 7.3848, 7.3845, 7.3853, 7.3849, 7.3846, 7.3843, 7.384, 7.3837, 7.3845, 7.3853, 7.3848, 7.3846, 7.3843, 7.3838, 7.3834, 7.3832, 7.3828, 7.3835, 7.3832, 7.3831, 7.3838, 7.3847, 7.3843, 7.3839, 7.3835, 7.3831, 7.3838, 7.3833, 7.3829, 7.3826, 7.3832, 7.3829, 7.3825, 7.3833, 7.3841, 7.3838, 7.3845, 7.383, 7.3827, 7.3823, 7.3819, 7.3826, 7.3833, 7.383, 7.3828, 7.3825, 7.3822, 7.3818, 7.3826, 7.3833, 7.3829, 7.3825, 7.3833, 7.3829, 7.3824, 7.3821, 7.3831, 7.3816, 7.3813, 7.381, 7.3806, 7.3813, 7.381, 7.3818, 7.3814, 7.3821, 7.3854, 7.3861, 7.3902, 7.391, 7.3908, 7.3905, 7.3901, 7.3898, 7.3894, 7.389, 7.3897, 7.3892, 7.3888, 7.3884, 7.3891, 7.3887, 7.3883, 7.3879, 7.3876, 7.3874, 7.3881, 7.3877, 7.3885, 7.3893, 7.389, 7.3886, 7.3884, 7.3881, 7.3888, 7.3918, 7.3914, 7.3915, 7.3916, 7.3922, 7.3919, 7.3924, 7.392, 7.3917, 7.3913, 7.3909, 7.3905, 7.3902, 7.3899, 7.3919, 7.3915, 7.3911, 7.3908, 7.3905, 7.3901, 7.391, 7.3906, 7.3903, 7.3899, 7.3896, 7.3902, 7.3899, 7.3906, 7.3913, 7.392, 7.3917, 7.3925, 7.3921, 7.3918, 7.3915, 7.3911, 7.3907, 7.3903, 7.391, 7.3906, 7.3902, 7.3898, 7.3939, 7.3935, 7.3942, 7.3939, 7.3946, 7.3943, 7.394, 7.3937, 7.3933, 7.3929, 7.3924, 7.392, 7.3916, 7.3912, 7.3919, 7.3926, 7.3934, 7.393, 7.3926, 7.3912, 7.3909, 7.3927, 7.3934, 7.3941, 7.3948, 7.3945, 7.3942, 7.394, 7.3936, 7.3934, 7.3952, 7.3951, 7.3948, 7.3945, 7.4008, 7.4004, 7.4, 7.3986, 7.3981, 7.3977, 7.3973, 7.397, 7.3966, 7.3962, 7.3959, 7.3955, 7.3951, 7.3947, 7.3943, 7.3951, 7.3946, 7.3955, 7.3952, 7.3949, 7.3945, 7.3959, 7.3956, 7.3999, 7.4008, 7.4026, 7.4025, 7.4032, 7.4029, 7.4036, 7.4034, 7.4033, 7.4037, 7.4045, 7.4041, 7.4038, 7.4036, 7.4032, 7.4039, 7.4036, 7.4044, 7.4041, 7.4038, 7.4045, 7.4044, 7.404, 7.4036, 7.4034, 7.403, 7.4037, 7.4044, 7.4041, 7.4038, 7.4024, 7.4032, 7.4039, 7.4046, 7.4043, 7.4051, 7.4058, 7.406, 7.4057, 7.4053, 7.4049, 7.4056, 7.4063, 7.4051, 7.4047, 7.4043, 7.4041, 7.4027, 7.4023, 7.4019, 7.4019, 7.4016, 7.4033, 7.4036, 7.4032, 7.4029, 7.4025, 7.4021, 7.4018, 7.4024, 7.402, 7.4017, 7.4024, 7.402, 7.4016, 7.4002, 7.3998, 7.3996, 7.4004, 7.4001, 7.3999, 7.3997, 7.3994, 7.3991, 7.3998, 7.3994, 7.3991, 7.3998, 7.3994, 7.3991, 7.3988, 7.3985, 7.3982, 7.3978, 7.3974, 7.3972, 7.3969, 7.3966, 7.3973, 7.397, 7.3967, 7.3963, 7.3965, 7.3962, 7.3969, 7.3976, 7.3973, 7.3969, 7.3965, 7.3972, 7.3968, 7.3965, 7.3961, 7.3957, 7.3954, 7.3951, 7.3958, 7.3954, 7.395, 7.3947, 7.3933, 7.394, 7.3937, 7.3933, 7.3929, 7.3926, 7.3922, 7.3919, 7.3926, 7.3923, 7.3909, 7.3906, 7.3902, 7.3909, 7.3916, 7.3913, 7.3909, 7.3916, 7.3923, 7.3919, 7.3915, 7.3912, 7.3908, 7.3904, 7.3911, 7.3908, 7.3905, 7.3901, 7.3898, 7.3895, 7.3892, 7.3888, 7.3884, 7.388, 7.3887, 7.3894, 7.3902, 7.3898, 7.3894, 7.389, 7.3888, 7.3884, 7.3882, 7.3889, 7.3885, 7.3882, 7.3889, 7.3885, 7.3892, 7.3913, 7.3919, 7.3915, 7.3912, 7.3909, 7.3907, 7.3903, 7.3901, 7.3898, 7.3895, 7.3902, 7.3899, 7.3895, 7.3891, 7.3887, 7.3894, 7.3901, 7.3907, 7.3914, 7.3932, 7.3949, 7.3945, 7.3941, 7.3948, 7.3944, 7.3942, 7.3938, 7.3934, 7.3932, 7.3928, 7.3957, 7.3944, 7.3962, 7.3959, 7.3977, 7.3974, 7.3972, 7.397, 7.3967, 7.3972, 7.3979, 7.3975, 7.3971, 7.3968, 7.3965, 7.3971, 7.3968, 7.3974, 7.3971, 7.3968, 7.3964, 7.396, 7.3957, 7.3954, 7.3951, 7.3958, 7.3955, 7.3954, 7.3952, 7.3948, 7.3947, 7.3943, 7.3939, 7.3935, 7.3931, 7.3928, 7.3935, 7.3932, 7.3919, 7.3917, 7.3914, 7.3911, 7.3908, 7.3904, 7.39, 7.3907, 7.3903, 7.3899, 7.3897, 7.3905, 7.3903, 7.39, 7.3907, 7.3915, 7.3912, 7.391, 7.3906, 7.3903, 7.3901, 7.3897, 7.3903, 7.39, 7.3896, 7.3893, 7.3889, 7.3886, 7.3894, 7.3893, 7.3893, 7.3889, 7.3886, 7.3884, 7.3892, 7.3899, 7.3897, 7.3927, 7.3924, 7.3921, 7.3929, 7.3925, 7.3926, 7.3922, 7.3919, 7.3905, 7.3902, 7.3899, 7.3896, 7.3887, 7.3883, 7.3881, 7.3877, 7.3873, 7.3871, 7.3867, 7.3875, 7.3874, 7.3881, 7.388, 7.3887, 7.3884, 7.388, 7.3876, 7.3873, 7.3871, 7.3879, 7.3876, 7.3874, 7.3871, 7.3878, 7.3875, 7.3872, 7.3868, 7.3875, 7.3882, 7.3869, 7.3866, 7.3864, 7.3861, 7.3858, 7.3854, 7.3851, 7.3848, 7.3845, 7.3854, 7.3851, 7.3847, 7.3853, 7.385, 7.3837, 7.3825, 7.3822, 7.3829, 7.3826, 7.3833, 7.383, 7.3826, 7.3824, 7.3821, 7.3818, 7.3816, 7.3812, 7.3808, 7.3804, 7.3801, 7.3798, 7.3795, 7.3792, 7.3799, 7.3796, 7.3813, 7.382, 7.3816, 7.3813, 7.3821, 7.382, 7.3826, 7.3833, 7.3829, 7.3826, 7.3833, 7.3829, 7.3825, 7.3833, 7.3841, 7.3837, 7.3833, 7.384, 7.3847, 7.3845, 7.3842, 7.3844, 7.384, 7.3838, 7.3834, 7.3841, 7.3838, 7.3834, 7.384, 7.3847, 7.3844, 7.384, 7.3847, 7.3843, 7.385, 7.3846, 7.3845, 7.3841, 7.3839, 7.3836, 7.3834, 7.3831, 7.3828, 7.3827, 7.3824, 7.3822, 7.3818, 7.3815, 7.3811, 7.3809, 7.3813, 7.3809, 7.3805, 7.3801, 7.3797, 7.3805, 7.3802, 7.3799, 7.3795, 7.3802, 7.3798, 7.3795, 7.3792, 7.3791, 7.3788, 7.3784, 7.3782, 7.377, 7.3768, 7.3775, 7.3771, 7.3768, 7.3766, 7.3773, 7.3769, 7.3776, 7.3772, 7.3769, 7.3766, 7.3764, 7.376, 7.3757, 7.3755, 7.3754, 7.375, 7.3748, 7.3755, 7.3762, 7.3758, 7.3755, 7.3752, 7.3748, 7.3735, 7.3734, 7.3732, 7.3739, 7.3736, 7.3733, 7.3732, 7.3729, 7.3737, 7.3743, 7.374, 7.3737, 7.3733, 7.373, 7.3728, 7.3724, 7.3721, 7.3717, 7.3716, 7.3712, 7.3708, 7.3706, 7.3702, 7.3709, 7.3696, 7.3702, 7.3708, 7.3704, 7.371, 7.3706, 7.3703, 7.3699, 7.3695, 7.3728, 7.3734, 7.3731, 7.3728, 7.3725, 7.3722, 7.3719, 7.3719, 7.3715, 7.3721, 7.3717, 7.3724, 7.3721, 7.3727, 7.3723, 7.374, 7.3737, 7.3734, 7.373, 7.3737, 7.3765, 7.3762, 7.3769, 7.3765, 7.3771, 7.3767, 7.3773, 7.3779, 7.3786, 7.3782, 7.3779, 7.3776, 7.3783, 7.3789, 7.3785, 7.3802, 7.38, 7.3796, 7.3803, 7.382, 7.3816, 7.3833, 7.383, 7.3826, 7.3822, 7.3828, 7.3824, 7.382, 7.3826, 7.3833, 7.3839, 7.3836, 7.3832, 7.383, 7.3826, 7.3833, 7.384, 7.3838, 7.3835, 7.3841, 7.3847, 7.3843, 7.3849, 7.3855, 7.3861, 7.3858, 7.3855, 7.3851, 7.3848, 7.3855, 7.3862, 7.3858, 7.3854, 7.385, 7.3847, 7.3843, 7.3839, 7.3837, 7.3834, 7.383, 7.3827, 7.3824, 7.382, 7.3817, 7.3823, 7.3819, 7.3826, 7.3822, 7.3828, 7.3825, 7.3821, 7.3817, 7.3813, 7.3809, 7.3816, 7.3813, 7.3821, 7.3819, 7.3827, 7.3834, 7.3831, 7.3828, 7.3825, 7.3821, 7.3827, 7.3824, 7.3823, 7.383, 7.3827, 7.3824, 7.3821, 7.3817, 7.3823], '192.168.122.114': [10.659, 7.9768, 7.2521, 6.8601, 6.6943, 6.5908, 6.4914, 6.3863, 6.2582, 6.1833, 6.5629, 6.8982, 6.8205, 7.1645, 7.0342, 7.2808, 7.8222, 7.7088, 7.5989, 7.8443, 7.5187, 7.2045, 7.2171, 7.1415, 7.3198, 7.2736, 7.2028, 7.1439, 7.094, 7.048, 6.9936, 7.4576, 7.4126, 7.422, 7.5326, 7.5139, 7.475, 7.4167, 7.3863, 7.3442, 7.3047, 7.2591, 7.2351, 7.2003, 7.1796, 7.1567, 7.2283, 7.2985, 7.3786, 7.3456, 7.3048, 7.3748, 7.3439, 7.5064, 7.572, 7.6308, 7.6894, 7.6592, 7.6341, 7.602, 7.5729, 7.535, 7.5892, 7.5537, 7.538, 7.5043, 7.4733, 7.6966, 7.7399, 7.8084, 7.7749, 7.7456, 7.7324, 7.702, 7.6719, 7.6408, 7.6823, 7.7227, 7.6321, 7.6032, 7.6414, 7.6147, 7.5893, 7.6085, 7.582, 7.5583, 7.5576, 7.5339, 7.5105, 7.4872, 7.4661, 7.453, 7.4427, 7.4797, 7.4631, 7.441, 7.4204, 7.4048, 7.385, 7.3652, 7.3476, 7.3284, 7.3595, 7.3921, 7.3796, 7.361, 7.3959, 7.3913, 7.3864, 7.3749, 7.3559, 7.3439, 7.3332, 7.2745, 7.305, 7.2887, 7.2786, 7.2628, 7.2516, 7.2381, 7.2291, 7.2957, 7.3279, 7.3596, 7.3427, 7.3351, 7.3231, 7.3166, 7.3033, 7.2896, 7.2747, 7.3478, 7.3436, 7.331, 7.3185, 7.3101, 7.2956, 7.2962, 7.2886, 7.2779, 7.266, 7.2571, 7.2488, 7.2372, 7.2258, 7.213, 7.1996, 7.1906, 7.1842, 7.1718, 7.1634, 7.1526, 7.1417, 7.1368, 7.125, 7.1203, 7.1507, 7.1461, 7.1346, 7.1268, 7.1222, 7.1442, 7.137, 7.1263, 7.116, 7.1051, 7.0947, 7.085, 7.0752, 7.0649, 7.0868, 7.0808, 7.0745, 7.0648, 7.0579, 7.052, 7.0887, 7.0816, 7.0796, 7.0712, 7.0608, 7.053, 7.0462, 7.049, 7.0409, 7.0356, 7.0286, 7.0218, 7.0568, 7.0522, 7.0757, 7.0702, 7.0908, 7.0811, 7.074, 7.0464, 7.0382, 7.0355, 7.0277, 7.0193, 7.020300000000001, 7.0148, 7.0094, 7.0021, 6.9951, 6.989, 6.9864, 6.9861, 7.0048, 6.9992, 6.9976, 7.0183, 7.034, 7.0258, 7.0179, 7.036, 7.0277, 7.0466, 7.0639, 7.0816, 7.0744, 7.0929, 7.0939000000000005, 7.0907, 7.0835, 7.1006, 7.0931, 7.0864, 7.0796, 7.0835, 7.0795, 7.0745, 7.0717, 7.0729, 7.0877, 7.0828, 7.0767, 7.0732, 7.0665, 7.0609, 7.065, 7.061, 7.0589, 7.0425, 7.0415, 7.0387, 7.0316, 7.0249, 7.0206, 7.0163, 7.0101, 7.0095, 7.0667, 7.0817, 7.0761, 7.0569, 7.05, 7.0542, 7.055, 7.057, 7.0544, 7.0493, 7.0467, 7.0628, 7.0563, 7.0515, 7.0465, 7.0405, 7.0346, 7.0444, 7.0398, 7.0349, 7.031, 7.0079, 7.0022, 6.9989, 7.0116, 7.0101, 7.0122, 7.0062, 7.0005, 6.9961, 6.9912, 6.9871, 6.9825, 6.9963, 6.994, 6.991, 6.9881, 6.9823, 6.9769, 6.9759, 6.9704, 6.9832, 6.98, 6.9747, 6.9692, 6.9636, 6.9585, 6.9534, 6.9501, 6.9626, 6.9751, 6.9872, 6.9997, 6.9943, 6.9895, 7.0028, 6.9972, 7.0085, 7.0214, 7.0348, 7.0297, 7.0292, 7.0238, 7.0183, 7.0299, 7.042, 7.0424, 7.0371, 7.033, 7.0299, 7.0248, 7.0195, 7.0148, 7.0095, 7.0046, 6.9997, 6.9948, 6.9902, 6.9851, 6.9967, 7.0084, 7.0054, 7.0008, 7.0121, 7.0092, 7.0206, 7.0167, 7.0118, 7.0248, 7.0059, 7.0164, 7.0275, 7.0224, 7.0326, 7.0292, 7.0103, 7.0065, 7.089, 7.1072, 7.1284, 7.1498, 7.1445, 7.142, 7.1385, 7.1483, 7.1447, 7.1401, 7.1379, 7.1347, 7.145, 7.1409, 7.1429, 7.1289, 7.1391, 7.1367, 7.1324, 7.1302, 7.1395, 7.1485, 7.1444, 7.1398, 7.1365, 7.119, 7.1158, 7.1264, 7.1386, 7.1355, 7.1488, 7.1439, 7.1541, 7.1502, 7.1463, 7.1428, 7.1524, 7.1495, 7.1456, 7.1424, 7.1445, 7.1396, 7.1483, 7.1437, 7.1398, 7.1433, 7.1389, 7.1504, 7.1463, 7.1436, 7.1537, 7.1492, 7.1474, 7.1457, 7.1422, 7.1385, 7.1347, 7.1445, 7.1406, 7.1387, 7.1345, 7.1427, 7.1416, 7.1407, 7.1389, 7.1481, 7.1563, 7.1528, 7.1502, 7.1461, 7.1546, 7.1507, 7.1597, 7.1559, 7.1539, 7.1542, 7.1498, 7.1717, 7.1679, 7.1635, 7.1595, 7.1446, 7.1528, 7.1612, 7.1571, 7.1535, 7.1512, 7.159, 7.1442, 7.1402, 7.136, 7.1325, 7.1399, 7.1366, 7.1444, 7.1418, 7.1381, 7.1342, 7.1302, 7.1264, 7.1224, 7.1199, 7.1163, 7.1021, 7.1096, 7.1179, 7.1154, 7.1118, 7.1194, 7.1159, 7.1272, 7.1353, 7.1313, 7.1173, 7.1133, 7.115, 7.125, 7.1219, 7.1301, 7.1263, 7.1337, 7.13, 7.1261, 7.1224, 7.1188, 7.1151, 7.1112, 7.1076, 7.1162, 7.1125, 7.1097, 7.1071, 7.1046, 7.1025, 7.0997, 7.0962, 7.0942, 7.0911, 7.0989, 7.0955, 7.0943, 7.0907, 7.0879, 7.085, 7.0816, 7.0789, 7.0866, 7.0838, 7.0915, 7.088, 7.0862, 7.0835, 7.0901, 7.0867, 7.084, 7.0805, 7.0883, 7.0851, 7.0861, 7.094, 7.0906, 7.0973, 7.1039, 7.1037, 7.1005, 7.0974, 7.0943, 7.0907, 7.0875, 7.0941, 7.0912, 7.088, 7.095, 7.0919, 7.0887, 7.0958, 7.1026, 7.0909, 7.0981, 7.0949, 7.0923, 7.0896, 7.0969, 7.0949, 7.0968, 7.0938, 7.0906, 7.0873, 7.0855, 7.0891, 7.0859, 7.1143, 7.1117, 7.1084, 7.1056, 7.1066, 7.1036, 7.1102, 7.108, 7.1148, 7.1127, 7.1108, 7.1075, 7.1052, 7.102, 7.1089, 7.1156, 7.1127, 7.1094, 7.1077, 7.1048, 7.1036, 7.1103, 7.1168, 7.1136, 7.1121, 7.1104, 7.1075, 7.1142, 7.1125, 7.1054, 7.1024, 7.1094, 7.1064, 7.1047, 7.1112, 7.1173, 7.1142, 7.111, 7.1082, 7.1056, 7.1036, 7.1042, 7.0956, 7.0932, 7.0902, 7.1079, 7.1235, 7.1204, 7.1174, 7.1153, 7.1127, 7.1282, 7.1253, 7.1415, 7.1328, 7.1301, 7.1273, 7.1352, 7.1325, 7.1394, 7.1405, 7.139, 7.146, 7.143, 7.1409, 7.1385, 7.1369, 7.1354, 7.141, 7.139, 7.1453, 7.1452, 7.1457, 7.1428, 7.1401, 7.1407, 7.139, 7.1374, 7.1348, 7.1318, 7.1379, 7.1554, 7.1628, 7.1621, 7.1987, 7.1963, 7.2005, 7.1981, 7.2039, 7.2099, 7.2076, 7.2135, 7.2115, 7.2092, 7.208, 7.2063, 7.2036, 7.2081, 7.2052, 7.204, 7.2094, 7.2078, 7.2075, 7.2135, 7.2186, 7.217, 7.214, 7.2125, 7.2105, 7.2076, 7.2047, 7.1952, 7.1923, 7.1895, 7.1866, 7.184, 7.1903, 7.1973, 7.2036, 7.2211, 7.2203, 7.2257, 7.2235, 7.2284, 7.2187, 7.2164, 7.2141, 7.2114, 7.2162, 7.2133, 7.2113, 7.2162, 7.2133, 7.2036, 7.2094, 7.2067, 7.2116, 7.2092, 7.2072, 7.2049, 7.1956, 7.1929, 7.1903, 7.1959, 7.2011, 7.2033, 7.2028, 7.2002, 7.198, 7.2033, 7.2007, 7.1979, 7.2034, 7.2008, 7.1985, 7.196, 7.1934, 7.203, 7.2018, 7.1991, 7.1974, 7.2055, 7.2111, 7.216, 7.2205, 7.2192, 7.2186, 7.2172, 7.2145, 7.2134, 7.2107, 7.2153, 7.2204, 7.2178, 7.2157, 7.2205, 7.2186, 7.2162, 7.2134, 7.2108, 7.2085, 7.2066, 7.2041, 7.2022, 7.2001, 7.1978, 7.1954, 7.1927, 7.1912, 7.1891, 7.1869, 7.1922, 7.1976, 7.2029, 7.2006, 7.1916, 7.19, 7.1886, 7.1869, 7.1926, 7.1903, 7.1881, 7.1929, 7.1917, 7.1991, 7.2334, 7.2315, 7.2298, 7.2303, 7.2349, 7.2325, 7.2372, 7.2347, 7.2327, 7.2307, 7.2361, 7.2336, 7.2385, 7.236, 7.2343, 7.2329, 7.2264, 7.2382, 7.2366, 7.2357, 7.2567, 7.257, 7.2546, 7.2599, 7.2675, 7.2653, 7.2629, 7.2608, 7.2654, 7.2699, 7.2811, 7.2857, 7.2831, 7.2818, 7.2806, 7.2789, 7.2836, 7.2811, 7.2855, 7.2832, 7.2817, 7.28, 7.2846, 7.289, 7.2867, 7.2844, 7.276, 7.2803, 7.2781, 7.2758, 7.2736, 7.2782, 7.2772, 7.2752, 7.2793, 7.2776, 7.2755, 7.2734, 7.2712, 7.2689, 7.2665, 7.2647, 7.2733, 7.2778, 7.2761, 7.2744, 7.2724, 7.2885, 7.3025, 7.3002, 7.3045, 7.3021, 7.2998, 7.3008, 7.2987, 7.2968, 7.2955, 7.2933, 7.2908, 7.2884, 7.286, 7.2842, 7.2942, 7.2918, 7.2895, 7.2871, 7.2857, 7.2964, 7.2941, 7.2919, 7.2975, 7.2954, 7.2995, 7.3047, 7.309, 7.313, 7.3177, 7.316, 7.3137, 7.3182, 7.3166, 7.3169, 7.3148, 7.3135, 7.3111, 7.3089, 7.3066, 7.3054, 7.3041, 7.3025, 7.2947, 7.2925, 7.2908, 7.2955, 7.2933, 7.2911, 7.2895, 7.2875, 7.2851, 7.2838, 7.2881, 7.2857, 7.2836, 7.2815, 7.2738, 7.2761, 7.2739, 7.2663, 7.2703, 7.2688, 7.2673, 7.2656, 7.2641, 7.2619, 7.2597, 7.2575, 7.256, 7.2549, 7.2548, 7.2533, 7.2512, 7.2548, 7.253, 7.2513, 7.2492, 7.2474, 7.2453, 7.2434, 7.2419, 7.2411, 7.2393, 7.2455, 7.2435, 7.2508, 7.2588, 7.253, 7.2514, 7.2498, 7.2441, 7.2419, 7.2405, 7.246, 7.245, 7.2429, 7.2428, 7.2467, 7.2455, 7.2437, 7.243, 7.2423, 7.2654, 7.2635, 7.2621, 7.2601, 7.259, 7.2572, 7.255, 7.255, 7.2568, 7.2555, 7.2535, 7.2574, 7.2554, 7.2539, 7.2527, 7.2508, 7.2488, 7.2473, 7.2458, 7.2438, 7.2418, 7.2406, 7.2387, 7.2367, 7.2354, 7.234, 7.2319, 7.2299, 7.2286, 7.2274, 7.2255, 7.2185, 7.2224, 7.2215, 7.2196, 7.219, 7.2179, 7.2164, 7.2145, 7.2131, 7.2112, 7.2116, 7.2096, 7.2134, 7.2116, 7.2104, 7.2085, 7.2068, 7.2053, 7.2148, 7.2133, 7.2162, 7.2148, 7.2129, 7.2196, 7.2182, 7.2219, 7.22, 7.2182, 7.2164, 7.2146, 7.2129, 7.212, 7.2161, 7.2214, 7.2195, 7.2195, 7.2177, 7.2166, 7.2223, 7.2227, 7.2225, 7.2207, 7.2196, 7.2384, 7.2377, 7.2435, 7.2472, 7.2457, 7.2493, 7.2473, 7.2453, 7.2442, 7.2475, 7.2458, 7.2441, 7.2422, 7.2456, 7.2437, 7.2418, 7.2353, 7.2387, 7.2367, 7.235, 7.2282, 7.2278, 7.231, 7.2293, 7.2275, 7.2258, 7.224, 7.2221, 7.2209, 7.2245, 7.2235, 7.2218, 7.2204, 7.2205, 7.2157, 7.2153, 7.2141, 7.2177, 7.2208, 7.2192, 7.2192, 7.2228, 7.2209, 7.2192, 7.2227, 7.2208, 7.2189, 7.2173, 7.2429, 7.2477, 7.2462, 7.2444, 7.2427, 7.2411, 7.2453, 7.2389, 7.2372, 7.2358, 7.234, 7.2322, 7.2305, 7.2342, 7.2377, 7.2363, 7.2345, 7.2339, 7.232, 7.2305, 7.2292, 7.228, 7.2262, 7.2244, 7.2293, 7.2335, 7.2321, 7.2301, 7.2293, 7.2386, 7.2374, 7.2362, 7.2349, 7.2384, 7.2365, 7.2349, 7.2331, 7.2317, 7.2301, 7.2283, 7.2315, 7.2302, 7.2295, 7.2305, 7.2297, 7.2284, 7.2267, 7.2251, 7.2237, 7.2227, 7.2259, 7.2292, 7.2275, 7.2261, 7.2294, 7.2327, 7.231, 7.2301, 7.229, 7.2277, 7.2263, 7.2255, 7.2263, 7.2251, 7.2241, 7.2223, 7.2207, 7.2191, 7.2183, 7.2172, 7.216, 7.2154, 7.2137, 7.2129, 7.2162, 7.2151, 7.2143, 7.2128, 7.2163, 7.2151, 7.214, 7.2131, 7.2074, 7.2064, 7.2054, 7.2038, 7.2068, 7.2066, 7.2055, 7.2091, 7.2076, 7.2112, 7.21, 7.2084, 7.207, 7.2053, 7.2037, 7.2026, 7.2057, 7.2043, 7.2032, 7.2067, 7.2102, 7.2087, 7.2073, 7.2103, 7.2092, 7.2081, 7.2068, 7.2053, 7.2039, 7.2027, 7.2013, 7.2007, 7.207, 7.2056, 7.2108, 7.2096, 7.208, 7.2065, 7.2099, 7.2093, 7.2078, 7.2062, 7.2098, 7.2082, 7.207, 7.2053, 7.2042, 7.2072, 7.2055, 7.2038, 7.2021, 7.2049, 7.2044, 7.2051, 7.2035, 7.2063, 7.2047, 7.203, 7.2013, 7.2042, 7.1992, 7.2022, 7.2008, 7.1992, 7.1976, 7.1963, 7.1993, 7.2023, 7.2006, 7.2036, 7.1983, 7.1974, 7.1959, 7.1988, 7.198, 7.201, 7.2038, 7.2022, 7.2006, 7.1991, 7.2066, 7.2052, 7.2082, 7.2067, 7.2054, 7.204, 7.1985, 7.1968, 7.1998, 7.2027, 7.1972, 7.1962, 7.1946, 7.1936, 7.1926, 7.191, 7.1896, 7.1886, 7.183, 7.1863, 7.1899, 7.1887, 7.1874, 7.1862, 7.1846, 7.1838, 7.1829, 7.1816, 7.1808, 7.1799, 7.1794, 7.1787, 7.1783, 7.1776, 7.176, 7.1747, 7.178, 7.1772, 7.1763, 7.1752, 7.1737, 7.1769, 7.1758, 7.1749, 7.1737, 7.1723, 7.1708, 7.1735, 7.1683, 7.1669, 7.1655, 7.1645, 7.1636, 7.1622, 7.1612, 7.1597, 7.1582, 7.1568, 7.1596, 7.1624, 7.1611, 7.16, 7.1591, 7.1579, 7.1565, 7.1556, 7.1544, 7.1543, 7.1543, 7.1493, 7.1485, 7.1503, 7.1496, 7.1492, 7.1477, 7.1466, 7.147600000000001, 7.1466, 7.1453, 7.144, 7.1437, 7.1428, 7.1455, 7.1443, 7.1434, 7.1419, 7.1404, 7.1393, 7.1382, 7.1449, 7.1434, 7.1423, 7.1409, 7.1366, 7.1352, 7.1338, 7.1328, 7.1316, 7.1303, 7.1289, 7.1318, 7.1328000000000005, 7.133800000000001, 7.1368, 7.1414, 7.1374, 7.1403, 7.1393, 7.1382, 7.1372, 7.1367, 7.1357, 7.1346, 7.1386, 7.1435, 7.1425, 7.1416, 7.1443, 7.1452, 7.1482, 7.151, 7.1501, 7.149, 7.1565, 7.1595, 7.1583, 7.1574, 7.156, 7.1554, 7.1582, 7.1592, 7.1579, 7.1546, 7.1573, 7.1597, 7.1624, 7.1611, 7.1599, 7.1585, 7.1575, 7.1561, 7.1548, 7.155, 7.158, 7.1604, 7.163, 7.1623, 7.1613, 7.161, 7.1602, 7.1596, 7.1583, 7.1569, 7.1599, 7.1585, 7.161, 7.1603, 7.159, 7.1578, 7.1567, 7.157, 7.1559, 7.1546, 7.1539, 7.1532, 7.1521, 7.1512, 7.15, 7.1527, 7.153700000000001, 7.1524, 7.1513, 7.15, 7.1452, 7.1479, 7.1474, 7.1462, 7.1682, 7.1669, 7.1656, 7.1644, 7.1637, 7.1645, 7.1676, 7.1663, 7.1689, 7.1676, 7.1672, 7.1658, 7.1645, 7.1633, 7.1625, 7.1621, 7.1612, 7.1605, 7.1631, 7.1618, 7.1609, 7.1598, 7.1591, 7.1543, 7.1531, 7.1519, 7.1515, 7.154, 7.1538, 7.1532, 7.1559, 7.1548, 7.1539, 7.1526, 7.1514, 7.1538, 7.1491, 7.1479, 7.1467, 7.1461, 7.1449, 7.1442, 7.1433, 7.1456, 7.1483, 7.147, 7.1458, 7.1449, 7.1437, 7.1426, 7.1413, 7.1405, 7.136, 7.1347, 7.137, 7.1357, 7.1356, 7.1349, 7.1347, 7.1345, 7.1371, 7.1364, 7.1353, 7.1365, 7.1353, 7.1341, 7.1335, 7.1359, 7.1351, 7.138, 7.1369, 7.1361, 7.1317, 7.1343, 7.1333, 7.1324, 7.1318, 7.1315, 7.1325, 7.1314, 7.134, 7.1366, 7.1392, 7.1452, 7.144, 7.143, 7.1435, 7.1448, 7.1436, 7.1428, 7.1417, 7.1406, 7.1399, 7.1389, 7.1379, 7.1344, 7.1373, 7.1337, 7.1329, 7.1325, 7.1316, 7.1342, 7.1367, 7.1323, 7.1316, 7.1307, 7.1333, 7.1325, 7.1313, 7.1309, 7.1406, 7.1393, 7.1422, 7.1409, 7.1432, 7.1431, 7.1422, 7.1413, 7.1404, 7.1393, 7.1384, 7.1374, 7.1364, 7.1353, 7.1344, 7.1337, 7.1324, 7.1315, 7.1307, 7.1332, 7.1325, 7.135, 7.1339, 7.1329, 7.1321, 7.1344, 7.1369, 7.1357, 7.1346, 7.134, 7.1365, 7.136, 7.1385, 7.141, 7.1399, 7.1356, 7.1369, 7.1358, 7.1348, 7.1377, 7.1365, 7.1371, 7.1328, 7.1352, 7.1377, 7.1473, 7.1498, 7.1561, 7.1591, 7.1582, 7.1573, 7.1562, 7.155, 7.1541, 7.1541, 7.1609, 7.1598, 7.1658, 7.172, 7.1745, 7.1734, 7.1725, 7.1717, 7.1712, 7.1703, 7.1799, 7.1787, 7.1778, 7.1766, 7.1756, 7.1749, 7.1773, 7.1796, 7.1785, 7.1848, 7.1837, 7.1826, 7.1815, 7.1837, 7.1829, 7.1827, 7.1817, 7.1805, 7.1795, 7.1783, 7.1771, 7.1765, 7.1788, 7.1781, 7.1772, 7.176, 7.1749, 7.1778, 7.1804, 7.1793, 7.1787, 7.1812, 7.181, 7.1799, 7.1767, 7.179, 7.1813, 7.1805, 7.1793, 7.1815, 7.1837, 7.1863, 7.1904, 7.1925, 7.1913, 7.1903, 7.1894, 7.1897, 7.1886, 7.1878, 7.1911, 7.1899, 7.1907, 7.1896, 7.1885, 7.1882, 7.1871, 7.1871, 7.186, 7.185, 7.184, 7.1832, 7.1821, 7.1816, 7.1775, 7.1785000000000005, 7.1777, 7.18, 7.1791, 7.1813, 7.1803, 7.1799, 7.179, 7.1846, 7.1836, 7.1826, 7.1848, 7.1843, 7.1833, 7.1841, 7.1834, 7.1838, 7.1841, 7.1839, 7.1828, 7.1819, 7.1839, 7.186, 7.1853, 7.1813, 7.1804, 7.1799, 7.1823, 7.1818, 7.1844, 7.1865, 7.1854, 7.1845, 7.1867, 7.1959, 7.196, 7.1982, 7.1972, 7.1962, 7.1987, 7.1982, 7.2003, 7.1991, 7.1982, 7.2002, 7.1991, 7.199, 7.2012, 7.2005, 7.1998, 7.199, 7.1979, 7.1976, 7.1968, 7.1957, 7.1949, 7.194, 7.193, 7.1985, 7.1975, 7.1972, 7.1963, 7.1954, 7.1982, 7.2004, 7.2025, 7.2015, 7.2036, 7.2058, 7.2046, 7.2006, 7.1995, 7.2015, 7.2004, 7.1993, 7.1952, 7.1973, 7.201, 7.2031, 7.2052, 7.2059, 7.2049, 7.2043, 7.2065, 7.2089, 7.2083, 7.2104, 7.2093, 7.2134, 7.2158, 7.2149, 7.2142, 7.2135, 7.2126, 7.2114, 7.2109, 7.2139, 7.2127, 7.2121, 7.214, 7.2161, 7.215, 7.214, 7.2161, 7.215, 7.2139, 7.2128, 7.2117, 7.2109, 7.2099, 7.2093, 7.2084, 7.2105, 7.2125, 7.2114, 7.2108, 7.21, 7.2089, 7.2082, 7.2102, 7.2092, 7.2083, 7.2077, 7.2069, 7.2062, 7.2054, 7.2073, 7.2067, 7.2085, 7.2074, 7.2095, 7.2088, 7.2078, 7.2068, 7.2062, 7.2083, 7.2073, 7.2093, 7.2113, 7.2104, 7.2094, 7.2084, 7.2105, 7.2098, 7.2086, 7.2075, 7.2079, 7.2069, 7.206, 7.2079, 7.2102, 7.2092, 7.2081, 7.207, 7.2061, 7.2057, 7.2051, 7.2046, 7.2036, 7.2026, 7.2015, 7.201, 7.2007, 7.1997, 7.1989, 7.1979, 7.1971, 7.196, 7.1978, 7.1998, 7.2019, 7.2045, 7.2037, 7.2059, 7.2052, 7.2043, 7.2033, 7.2055, 7.2074, 7.2064, 7.2083, 7.2102, 7.2122, 7.2116, 7.2106, 7.2126, 7.2118, 7.2109, 7.2099, 7.2095, 7.2084, 7.2076, 7.2067, 7.2057, 7.2162, 7.2152, 7.2141, 7.2157, 7.2175, 7.2166, 7.2159, 7.2149, 7.2168, 7.2162, 7.2155, 7.2148, 7.2145, 7.2164, 7.2156, 7.2174, 7.2167, 7.2187, 7.2177, 7.2168, 7.216, 7.218, 7.2199, 7.2224, 7.2214, 7.2207, 7.2201, 7.2221, 7.224, 7.2232, 7.2253, 7.2244, 7.2237, 7.2258, 7.2249, 7.2242, 7.2236, 7.2241, 7.2233, 7.2224, 7.2259, 7.2249, 7.2239, 7.2232, 7.2252, 7.2242, 7.2234, 7.2224, 7.2216, 7.2205, 7.2198, 7.219, 7.2208, 7.2201, 7.2193, 7.2188, 7.2193, 7.2212, 7.2201, 7.2191, 7.2223, 7.2217, 7.2211, 7.2205, 7.2198, 7.2189, 7.218, 7.2172, 7.217, 7.2161, 7.2172, 7.2191, 7.2211, 7.2231, 7.2222, 7.2213, 7.2188, 7.2178, 7.2144, 7.2136, 7.2128, 7.2118, 7.2118, 7.2108, 7.2216, 7.2208, 7.2198, 7.2192, 7.2182, 7.2173, 7.2166, 7.2161, 7.2183, 7.2176, 7.2166, 7.2158, 7.2209, 7.2199, 7.2194, 7.219, 7.218, 7.2201, 7.2326, 7.2319, 7.2339, 7.2331, 7.2324, 7.2315, 7.2305, 7.2307, 7.23, 7.2295, 7.229, 7.2284, 7.2276, 7.2266, 7.226, 7.225, 7.2268, 7.2262, 7.2253, 7.2247, 7.2237, 7.2227, 7.2223, 7.2216, 7.2209, 7.2175, 7.2165, 7.2158, 7.2149, 7.214, 7.2137, 7.2128, 7.2135, 7.213, 7.2123, 7.2139, 7.213, 7.2154, 7.2152, 7.2143, 7.2162, 7.2156, 7.2175, 7.2166, 7.2158, 7.2176, 7.2166, 7.2158, 7.215, 7.2169, 7.2163, 7.218, 7.2177, 7.217, 7.2163, 7.2155, 7.2173, 7.2196, 7.2215, 7.2233, 7.2226, 7.2216, 7.2209, 7.2229, 7.2221, 7.2213, 7.2206, 7.2225, 7.2242, 7.2233, 7.2251, 7.2244, 7.2263, 7.2253, 7.2244, 7.2235, 7.2226, 7.2244, 7.2234, 7.2225, 7.2216, 7.2206, 7.2224, 7.2216, 7.2209, 7.2208, 7.2202, 7.2194, 7.2189, 7.2184, 7.218, 7.217, 7.2188, 7.2182, 7.2173, 7.2163, 7.2129, 7.2124, 7.2145, 7.214, 7.2132, 7.2124, 7.2133, 7.2128, 7.2119, 7.2228, 7.2218, 7.2213, 7.2203, 7.2193, 7.2212, 7.2207, 7.2227, 7.2245, 7.2238, 7.2256, 7.2247, 7.2242, 7.226, 7.2252, 7.2245, 7.2263, 7.2253, 7.2247, 7.224, 7.2231, 7.2248, 7.2265, 7.2233, 7.2226, 7.2238, 7.223, 7.2224, 7.222, 7.221, 7.2202, 7.2195, 7.2186, 7.2177, 7.2171, 7.2163, 7.2154, 7.2145, 7.2162, 7.2158, 7.2149, 7.2139, 7.2134, 7.2126, 7.2117, 7.2112, 7.2102, 7.2094, 7.2088, 7.2106, 7.21, 7.2094, 7.2086, 7.208, 7.2072, 7.2077, 7.2068, 7.206, 7.2051, 7.2042, 7.2059, 7.2054, 7.2048, 7.2039, 7.2034, 7.2027, 7.2018, 7.2038, 7.201, 7.202, 7.2012, 7.2031, 7.2025, 7.2044, 7.2044, 7.2035, 7.2051, 7.2072, 7.2066, 7.2058, 7.2052, 7.2043, 7.2041, 7.2059, 7.2051, 7.2041, 7.2032, 7.2031, 7.2027, 7.202, 7.2011, 7.2004, 7.2, 7.1992, 7.1997, 7.1992, 7.2012, 7.2004, 7.1995, 7.2029, 7.202, 7.2011, 7.2003, 7.1995, 7.1989, 7.1987, 7.1981, 7.1972, 7.1964, 7.1955, 7.1947, 7.1939, 7.193, 7.1947, 7.194, 7.1957, 7.2001, 7.2076, 7.2093, 7.2084, 7.2101, 7.2097, 7.2088, 7.2079, 7.2052, 7.2048, 7.2065, 7.2057, 7.2075, 7.2081, 7.2076, 7.2045, 7.2036, 7.2029, 7.2046, 7.2063, 7.2082, 7.2075, 7.2109, 7.21, 7.2092, 7.2084, 7.2079, 7.2074, 7.2066, 7.2061, 7.2055, 7.2072, 7.2065, 7.2064, 7.2058, 7.2051, 7.2088, 7.2081, 7.21, 7.2093, 7.2087, 7.213, 7.2147, 7.2141, 7.2158, 7.2175, 7.2168, 7.2161, 7.2154, 7.2172, 7.2165, 7.2161, 7.2153, 7.2147, 7.2162, 7.2301, 7.2309, 7.2325, 7.2318, 7.2311, 7.2305, 7.2335, 7.2305, 7.232, 7.2314, 7.2306, 7.2297, 7.2291, 7.2308, 7.2325, 7.2318, 7.2334, 7.2306, 7.2297, 7.2289, 7.2281, 7.2296, 7.2291, 7.2284, 7.2301, 7.2293, 7.2316, 7.233, 7.2322, 7.2315, 7.2307, 7.2301, 7.2293, 7.2307, 7.2326, 7.2318, 7.2313, 7.2306, 7.23, 7.2315, 7.2334, 7.2326, 7.2318, 7.2315, 7.2311, 7.2304, 7.2299, 7.2294, 7.2286, 7.2279, 7.2272, 7.2264, 7.2261, 7.2285, 7.2277, 7.227, 7.2247, 7.2264, 7.2256, 7.2248, 7.2241, 7.2257, 7.2249, 7.2241, 7.2234, 7.2226, 7.2218, 7.2234, 7.2226, 7.222, 7.2215, 7.2207, 7.2246, 7.224, 7.2256, 7.2248, 7.2263, 7.2257, 7.2271, 7.2263, 7.2255, 7.2271, 7.2266, 7.2259, 7.2251, 7.2267, 7.2261, 7.2252, 7.2244, 7.2239, 7.2233, 7.2206, 7.2197, 7.2189, 7.2182, 7.2202, 7.2217, 7.2232, 7.2232, 7.2225, 7.222, 7.2214, 7.2208, 7.2201, 7.2194, 7.2189, 7.2198, 7.2193, 7.2188, 7.2182, 7.2176, 7.2169, 7.2164, 7.2156, 7.215, 7.2145, 7.2137, 7.2134, 7.2131, 7.2123, 7.2115, 7.2109, 7.2101, 7.2095, 7.2091, 7.2083, 7.2075, 7.2067, 7.2125, 7.2125, 7.2141, 7.2135, 7.2128, 7.2122, 7.2114, 7.2106, 7.2098, 7.2115, 7.211, 7.2102, 7.2094, 7.2086, 7.2082, 7.2073, 7.2066, 7.2059, 7.2053, 7.2047, 7.2062, 7.2059, 7.2051, 7.2045, 7.2063, 7.2055, 7.2049, 7.2043, 7.2037, 7.2052, 7.2046, 7.2064, 7.2059, 7.2052, 7.2067, 7.2062, 7.2057, 7.205, 7.2045, 7.2037, 7.2053, 7.2045, 7.2062, 7.2057, 7.205, 7.2043, 7.2037, 7.2029, 7.2022, 7.2017, 7.201, 7.2034, 7.2027, 7.2022, 7.2015, 7.2013, 7.201, 7.2008, 7.2003, 7.1999, 7.2015, 7.2007, 7.2071, 7.2064, 7.2056, 7.2052, 7.2055, 7.2048, 7.2042, 7.2041, 7.2062, 7.2059, 7.2075, 7.2068, 7.2084, 7.2094000000000005, 7.2089, 7.2104, 7.2097, 7.2089, 7.2182, 7.2174, 7.2189, 7.2237, 7.223, 7.2225, 7.2219, 7.2212, 7.2206, 7.2216, 7.2231, 7.2223, 7.2219, 7.2212, 7.2225, 7.222, 7.2215, 7.2209, 7.2203, 7.2219, 7.2213, 7.2228, 7.2242, 7.2234, 7.2234, 7.2229, 7.2243, 7.2235, 7.2227, 7.2224, 7.2217, 7.221, 7.2204, 7.2197, 7.2212, 7.2205, 7.2198, 7.2191, 7.2185, 7.2177, 7.2173, 7.2188, 7.2162, 7.2161, 7.2134, 7.2133, 7.2147, 7.2163, 7.2155, 7.2148, 7.214, 7.2156, 7.217, 7.2162, 7.2158, 7.2152, 7.2149, 7.2144, 7.2139, 7.2135, 7.213, 7.2177, 7.2191, 7.2186, 7.2181, 7.2173, 7.2258, 7.2256, 7.2229, 7.2254, 7.2417, 7.243, 7.2424, 7.2418, 7.245, 7.2443, 7.2438, 7.2431, 7.2423, 7.2443, 7.2463, 7.2458, 7.2453, 7.2449, 7.2442, 7.2458, 7.245, 7.2442, 7.2435, 7.2432, 7.2445, 7.2459, 7.2476, 7.247, 7.2464, 7.2456, 7.245, 7.2464, 7.2456, 7.2449, 7.2464, 7.248, 7.2472, 7.2464, 7.2457, 7.2472, 7.2465, 7.2458, 7.245, 7.2448, 7.2421, 7.2436, 7.2429, 7.2422, 7.2415, 7.2409, 7.2423, 7.2415, 7.2431, 7.2445, 7.2437, 7.2434, 7.2431, 7.2424, 7.2416, 7.2411, 7.2384, 7.2378, 7.2393, 7.2386, 7.238, 7.2404, 7.2396, 7.239, 7.2405, 7.2401, 7.2415, 7.2408, 7.2403, 7.2396, 7.2392, 7.2385, 7.2379, 7.2372, 7.2366, 7.2359, 7.2355, 7.2348, 7.2362, 7.2355, 7.2349, 7.2346, 7.2339, 7.2332, 7.2325, 7.2303, 7.2301, 7.2275, 7.2272, 7.2267, 7.226, 7.2274, 7.2247, 7.2243, 7.2237, 7.2235, 7.2252, 7.2268, 7.2269, 7.2285, 7.2278, 7.2291, 7.2285, 7.2278, 7.2273, 7.2267, 7.226, 7.2312, 7.2305, 7.23, 7.2295, 7.2308, 7.2305, 7.2298, 7.2291, 7.2286, 7.2279, 7.2255, 7.2249, 7.2242, 7.2265, 7.2277, 7.227, 7.2263, 7.2312, 7.2306, 7.2303, 7.2317, 7.2312, 7.2307, 7.2321, 7.2314, 7.2311, 7.2307, 7.23, 7.2314, 7.2308, 7.2301, 7.2297, 7.2313, 7.2306, 7.2299, 7.2292, 7.2285, 7.2283, 7.2275, 7.2268, 7.2265, 7.2258, 7.2271, 7.2267, 7.226, 7.2268, 7.2302, 7.2316, 7.231, 7.2303, 7.2284, 7.2279, 7.2254, 7.231, 7.2325, 7.2339, 7.2335, 7.2327, 7.2322, 7.2347, 7.2352, 7.2349, 7.2353, 7.2349, 7.2342, 7.2339, 7.2339, 7.2334, 7.2327, 7.232, 7.2313, 7.2309, 7.2303, 7.2299, 7.2292, 7.2286, 7.23, 7.2295, 7.227, 7.2263, 7.2258, 7.2253, 7.2228, 7.2226, 7.2204, 7.2197, 7.219, 7.2206, 7.22, 7.2214, 7.2231, 7.2224, 7.2218, 7.2212, 7.2227, 7.224, 7.2234, 7.2228, 7.2242, 7.2235, 7.2249, 7.2242, 7.2235, 7.2228, 7.2234, 7.223, 7.2243, 7.2238, 7.2231, 7.2224, 7.2219, 7.2216, 7.2209, 7.2206, 7.2199, 7.2213, 7.2208, 7.2201, 7.2194, 7.2187, 7.22, 7.2193, 7.2187, 7.22, 7.2195, 7.2189, 7.2221, 7.2215, 7.2259, 7.2271, 7.2309, 7.2332, 7.2337, 7.2332, 7.2325, 7.2318, 7.2311, 7.2304, 7.2318, 7.2312, 7.2308, 7.2304, 7.2318, 7.2312, 7.2326, 7.232, 7.2316, 7.231, 7.2316, 7.2309, 7.2302, 7.2297, 7.2312, 7.2306, 7.23, 7.2294, 7.2317, 7.2312, 7.2308, 7.234, 7.2353, 7.2347, 7.2342, 7.2335, 7.233, 7.2344, 7.2337, 7.235, 7.2364, 7.2358, 7.2355, 7.2349, 7.2342, 7.2336, 7.2351, 7.2345, 7.2357, 7.2352, 7.2345, 7.2356, 7.2369, 7.2362, 7.2358, 7.2352, 7.2349, 7.2345, 7.2338, 7.2333, 7.2328, 7.2322, 7.232, 7.2316, 7.2309, 7.2325, 7.2348, 7.2342, 7.2356, 7.2351, 7.2346, 7.2342, 7.2377, 7.2389, 7.2401, 7.2394, 7.2404, 7.241, 7.2405, 7.2398, 7.2391, 7.2404, 7.2418, 7.2433, 7.2429, 7.2426, 7.2419, 7.2415, 7.241, 7.2405, 7.2401, 7.2435, 7.2496, 7.251, 7.2523, 7.2516, 7.2509, 7.2521, 7.2516, 7.251, 7.2506, 7.2482, 7.2486, 7.25, 7.2514, 7.2507, 7.2514, 7.2495, 7.2489, 7.2505, 7.2502, 7.2496, 7.249, 7.2503, 7.2496, 7.2489, 7.2484, 7.2501, 7.2513, 7.2508, 7.2502, 7.2498, 7.2513, 7.2506, 7.25, 7.2512, 7.2524, 7.2517, 7.2532, 7.2526, 7.2522, 7.2551, 7.2568, 7.2564, 7.259, 7.2604, 7.26, 7.2597, 7.2591, 7.2588, 7.2582, 7.2575, 7.2568, 7.2561, 7.2574, 7.2568, 7.2561, 7.2556, 7.255, 7.2545, 7.2539, 7.2573, 7.2588, 7.2601, 7.2614, 7.2608, 7.2603, 7.2597, 7.2593, 7.2586, 7.258, 7.2575, 7.2571, 7.2569, 7.2563, 7.2558, 7.2551, 7.2564, 7.2558, 7.2551, 7.2546, 7.2539, 7.2533, 7.2528, 7.2523, 7.2521, 7.2517, 7.2512, 7.2506, 7.2501, 7.2496, 7.249, 7.2484, 7.2461, 7.2455, 7.2448, 7.2442, 7.2436, 7.2432, 7.2426, 7.2423, 7.242, 7.2418, 7.2414, 7.2407, 7.2401, 7.24, 7.2396, 7.2391, 7.2415, 7.2445, 7.2457, 7.2452, 7.2449, 7.2444, 7.2438, 7.2432, 7.2429, 7.2425, 7.2421, 7.2434, 7.2429, 7.2424, 7.242, 7.2415, 7.2412, 7.2409, 7.2403, 7.2398, 7.2395, 7.2392, 7.2389, 7.2382, 7.2376, 7.2373, 7.2366, 7.2359, 7.2371, 7.2365, 7.238, 7.2375, 7.2373, 7.2367, 7.2379, 7.2391, 7.2395, 7.2389, 7.2383, 7.238, 7.2374, 7.2368, 7.238, 7.2401, 7.2395, 7.2389, 7.2403, 7.2401, 7.2409, 7.2403, 7.2396, 7.2426, 7.2419, 7.2413, 7.2425, 7.2419, 7.2416, 7.2411, 7.241, 7.2407, 7.2401, 7.2378, 7.2373, 7.2368, 7.2361, 7.2355, 7.235, 7.2344, 7.2338, 7.2351, 7.2347, 7.2341, 7.2335, 7.2328, 7.234, 7.2333, 7.2341, 7.2335, 7.2347, 7.2359, 7.2353, 7.2348, 7.2342, 7.2336, 7.2349, 7.2343, 7.2336, 7.2331, 7.2326, 7.2322, 7.2317, 7.2316, 7.2331, 7.2325, 7.232, 7.2315, 7.2328, 7.2323, 7.2318, 7.2311, 7.2307, 7.2285, 7.228, 7.2293, 7.2287, 7.2282, 7.2295, 7.229, 7.2287, 7.2264, 7.226, 7.2256, 7.2252, 7.2264, 7.2275, 7.2269, 7.2281, 7.2275, 7.2287, 7.2298, 7.2292, 7.2286, 7.2298, 7.231, 7.2305, 7.2318, 7.2315, 7.2309, 7.2321, 7.2387, 7.2399, 7.2394, 7.2388, 7.2384, 7.238, 7.2395, 7.239, 7.2386, 7.238, 7.238, 7.2374, 7.2386, 7.2399, 7.2393, 7.2387, 7.2381, 7.2375, 7.237, 7.2364, 7.2358, 7.2352, 7.2347, 7.2325, 7.2337, 7.2331, 7.2326, 7.2321, 7.2333, 7.2327, 7.2338, 7.2335, 7.2332, 7.2326, 7.2322, 7.2334, 7.2332, 7.2327, 7.2323, 7.2316, 7.2312, 7.2306, 7.2304, 7.2334, 7.2329, 7.2323, 7.2318, 7.2314, 7.2326, 7.2337, 7.2348, 7.2345, 7.234, 7.2335, 7.233, 7.2326, 7.232, 7.2332, 7.2326, 7.2338, 7.2333, 7.2327, 7.232, 7.2333, 7.2344, 7.2338, 7.2334, 7.2329, 7.2325, 7.2323, 7.2321, 7.2315, 7.2327, 7.2321, 7.2314, 7.2309, 7.2302, 7.2297, 7.2308, 7.2302, 7.2325, 7.2319, 7.2315, 7.2312, 7.2308, 7.2302, 7.2313, 7.2307, 7.2372, 7.2385, 7.2381, 7.2376, 7.2372, 7.2366, 7.236, 7.2354, 7.2348, 7.2326, 7.232, 7.2314, 7.2312, 7.2308, 7.2302, 7.2296, 7.2291, 7.2289, 7.2284, 7.2296, 7.2291, 7.2286, 7.2282, 7.2278, 7.2292, 7.2304, 7.23, 7.2311, 7.231, 7.2307, 7.2302, 7.2312, 7.2309, 7.2321, 7.2316, 7.231, 7.233, 7.2325, 7.2336, 7.2349, 7.2351, 7.2346, 7.2364, 7.2362, 7.2356, 7.2351, 7.2346, 7.2357, 7.2351, 7.2346, 7.234, 7.2334, 7.2328, 7.2324, 7.2335, 7.2329, 7.234, 7.2337, 7.2331, 7.2329, 7.2323, 7.2345, 7.2358, 7.2418, 7.2423, 7.2419, 7.2416, 7.2411, 7.2412, 7.2407, 7.2402, 7.2416, 7.2433, 7.2428, 7.2438, 7.2467, 7.2462, 7.2456, 7.2468, 7.2462, 7.2457, 7.2451, 7.2445, 7.2439, 7.2433, 7.2427, 7.2421, 7.2427, 7.2422, 7.2405, 7.2418, 7.2431, 7.2443, 7.2448, 7.2442, 7.2437, 7.2448, 7.2442, 7.2436, 7.243, 7.2442, 7.2436, 7.2432, 7.2427, 7.2425, 7.2436, 7.2447, 7.2442, 7.2439, 7.2434, 7.2428, 7.2439, 7.2434, 7.2433, 7.2427, 7.2422, 7.2424, 7.2419, 7.2452, 7.2486, 7.2501, 7.2503, 7.2498, 7.2493, 7.2488, 7.2473, 7.247, 7.2467, 7.2461, 7.2472, 7.2483, 7.2479, 7.2504, 7.2592, 7.2605, 7.2609, 7.2603, 7.26, 7.2596, 7.2591, 7.2587, 7.26, 7.2595, 7.2591, 7.2587, 7.2582, 7.2598, 7.2592, 7.2587, 7.2584, 7.2578, 7.2572, 7.2566, 7.256, 7.2556, 7.2551, 7.2546, 7.2557, 7.2585, 7.2579, 7.2574, 7.2571, 7.2581, 7.2577, 7.2571, 7.2567, 7.2561, 7.2572, 7.2566, 7.256, 7.2571, 7.2601, 7.2596, 7.2606, 7.26, 7.2598, 7.2628, 7.2623, 7.2618, 7.2615, 7.2611, 7.2623, 7.2617, 7.2629, 7.2625, 7.2605, 7.2608, 7.262, 7.2615, 7.2609, 7.262, 7.2617, 7.265, 7.2645, 7.2641, 7.2652, 7.265, 7.2661, 7.2657, 7.2656, 7.265, 7.2663, 7.2658, 7.2653, 7.2647, 7.2644, 7.2638, 7.2633, 7.2629, 7.2626, 7.2637, 7.265, 7.2644, 7.2638, 7.2633, 7.267, 7.2664, 7.2658, 7.2654, 7.265, 7.2646, 7.264, 7.2637, 7.2646, 7.264, 7.2634, 7.2628, 7.2624, 7.2636, 7.2631, 7.2642, 7.2652, 7.2648, 7.2643, 7.2654, 7.2651, 7.2648, 7.2643, 7.2674, 7.2673, 7.2682, 7.2678, 7.2689, 7.2687, 7.2696, 7.2692, 7.2702, 7.2696, 7.2701, 7.2711, 7.2707, 7.2701, 7.2695, 7.2706, 7.2702, 7.2713, 7.2708, 7.2719, 7.2714, 7.2747, 7.2758, 7.2772, 7.277, 7.2766, 7.2762, 7.2774, 7.2768, 7.2762, 7.2761, 7.2774, 7.2775, 7.277, 7.278, 7.2775, 7.2772, 7.2767, 7.2763, 7.2757, 7.2753, 7.2748, 7.2744, 7.2739, 7.2733, 7.273, 7.2742, 7.2744, 7.2739, 7.2737, 7.2746, 7.2741, 7.2753, 7.275, 7.2744, 7.274, 7.2741, 7.2738, 7.2757, 7.276, 7.2755, 7.2749, 7.2775, 7.277, 7.2779, 7.2774, 7.279, 7.2807, 7.2802, 7.2799, 7.2794, 7.2788, 7.2784, 7.2765, 7.2759, 7.2769, 7.2764, 7.276, 7.2755, 7.2749, 7.276, 7.2756, 7.2751, 7.2747, 7.2743, 7.2737, 7.2733, 7.2732, 7.2728, 7.2739, 7.2719, 7.2713, 7.273, 7.2758, 7.2752, 7.2748, 7.2745, 7.274, 7.2734, 7.2728, 7.2722, 7.2727, 7.2722, 7.2725, 7.272, 7.2716, 7.2711, 7.2705, 7.27, 7.2697, 7.2692, 7.2687, 7.2683, 7.2709, 7.2704, 7.2701, 7.2698, 7.2693, 7.2704, 7.2699, 7.2697, 7.2691, 7.2687, 7.2682, 7.2678, 7.2659, 7.2655, 7.2665, 7.266, 7.2657, 7.2654, 7.2649, 7.2647, 7.2643, 7.2638, 7.2634, 7.2641, 7.2652, 7.2662, 7.2656, 7.2651, 7.2647, 7.2642, 7.2636, 7.263, 7.2641, 7.2638, 7.2619, 7.263, 7.2626, 7.2684, 7.2678, 7.269, 7.27, 7.2696, 7.2694, 7.2689, 7.2683, 7.2677, 7.2672, 7.2667, 7.2677, 7.2704, 7.2699, 7.2681, 7.2676, 7.2679, 7.2676, 7.2672, 7.2666, 7.2676, 7.2671, 7.2682, 7.2695, 7.2693, 7.2687, 7.2683, 7.2679, 7.2676, 7.267, 7.2679, 7.2673, 7.2669, 7.2665, 7.266, 7.2656, 7.2665, 7.2675, 7.2669, 7.2679, 7.2675, 7.2685, 7.268, 7.2675, 7.267, 7.2666, 7.2661, 7.2656, 7.2654, 7.2649, 7.2659, 7.267, 7.2665, 7.2659, 7.2654, 7.2636, 7.2631, 7.2626, 7.2623, 7.2622, 7.262, 7.2615, 7.261, 7.2605, 7.26, 7.2597, 7.2592, 7.2587, 7.2582, 7.2591, 7.2586, 7.258, 7.2589, 7.2584, 7.2579, 7.2576, 7.2573, 7.2567, 7.2562, 7.2557, 7.2553, 7.255, 7.256, 7.2555, 7.2551, 7.2546, 7.2561, 7.2557, 7.2552, 7.2561, 7.2558, 7.2553, 7.2563, 7.2558, 7.2555, 7.255, 7.2545, 7.2543, 7.2539, 7.2537, 7.2547, 7.2542, 7.2536, 7.2531, 7.2526, 7.2536, 7.2531, 7.2527, 7.2528, 7.2533, 7.2551, 7.2565, 7.2568, 7.2563, 7.2559, 7.2554, 7.255, 7.2546, 7.2547, 7.2543, 7.2553, 7.2551, 7.2547, 7.2544, 7.2554, 7.2579, 7.2575, 7.2572, 7.2568, 7.2564, 7.2575, 7.2571, 7.2581, 7.2578, 7.2574, 7.2574, 7.2569, 7.2567, 7.2577, 7.2572, 7.2644, 7.2639, 7.2649, 7.2674, 7.2684, 7.268, 7.2676, 7.2672, 7.2711, 7.2707, 7.2732, 7.2761, 7.2757, 7.2754, 7.2752, 7.2762, 7.2757, 7.2757, 7.2752, 7.2747, 7.2742, 7.2737, 7.2734, 7.273, 7.2725, 7.272, 7.2702, 7.2698, 7.2696, 7.2707, 7.2716, 7.271, 7.2705, 7.2701, 7.2696, 7.2706, 7.2701, 7.2686, 7.2695, 7.2694, 7.2689, 7.2672, 7.2667, 7.2676, 7.2671, 7.2653, 7.2648, 7.2659, 7.2667, 7.2663, 7.2679, 7.2674, 7.2685, 7.268, 7.2689, 7.2698, 7.2693, 7.2703, 7.2699, 7.273, 7.2725, 7.272, 7.2729, 7.2732, 7.2742, 7.2737, 7.2747, 7.2743, 7.2753, 7.2763, 7.2773, 7.2768, 7.2787, 7.2783, 7.2778, 7.2789, 7.2784, 7.2781, 7.2776, 7.2801, 7.2796, 7.2792, 7.2787, 7.2795, 7.2777, 7.2773, 7.2784, 7.2781, 7.2763, 7.2758, 7.2767, 7.2764, 7.2759, 7.2769, 7.2764, 7.2759, 7.2754, 7.2749, 7.2746, 7.2741, 7.2752, 7.2761, 7.2758, 7.2755, 7.2754, 7.2752, 7.2749, 7.2746, 7.2742, 7.2738, 7.2735, 7.2733, 7.2728, 7.2724, 7.2736, 7.2733, 7.273, 7.2726, 7.2722, 7.2718, 7.2714, 7.2711, 7.2706, 7.2703, 7.2713, 7.2708, 7.2704, 7.2701, 7.2697, 7.2693, 7.2703, 7.2698, 7.2694, 7.2705, 7.27, 7.2697, 7.2693, 7.269, 7.2696, 7.2705, 7.27, 7.2712, 7.2708, 7.2703, 7.2698, 7.2707, 7.2702, 7.2697, 7.2708, 7.2704, 7.2699, 7.2694, 7.269, 7.2685, 7.268, 7.2675, 7.267, 7.2666, 7.2675, 7.2672, 7.2667, 7.2663, 7.2661, 7.2656, 7.2671, 7.2666, 7.2676, 7.2672, 7.2667, 7.2676, 7.2671, 7.2681, 7.2677, 7.268, 7.2689, 7.2687, 7.2682, 7.268, 7.2663, 7.2673, 7.2669, 7.2651, 7.266, 7.2669, 7.275, 7.2745, 7.2743, 7.2766, 7.2762, 7.2771, 7.2767, 7.2777, 7.2786, 7.2797, 7.2807, 7.2789, 7.2799, 7.2782, 7.2777, 7.2786, 7.2798, 7.2794, 7.279, 7.2807, 7.2808, 7.2803, 7.2813, 7.2809, 7.2806, 7.2793, 7.2802, 7.2797, 7.2792, 7.2787, 7.2796, 7.2818, 7.2814, 7.2809, 7.2805, 7.2813, 7.2822, 7.2818, 7.2823, 7.2818, 7.2813, 7.2809, 7.2806, 7.2815, 7.2812, 7.282, 7.286, 7.2855, 7.285, 7.2845, 7.284, 7.2836, 7.2848, 7.286, 7.2877, 7.2872, 7.289, 7.2893, 7.291, 7.2905, 7.2901, 7.2896, 7.2905, 7.2914, 7.2933, 7.2928, 7.2965, 7.2962, 7.3008, 7.3004, 7.3001, 7.2996, 7.2992, 7.2995, 7.2991, 7.2988, 7.2983, 7.2978, 7.2987, 7.3024, 7.302, 7.3016, 7.3025, 7.3033, 7.303, 7.3041, 7.3037, 7.3046, 7.3043, 7.3039, 7.3036, 7.3034, 7.3029, 7.3025, 7.3022, 7.3019, 7.3016, 7.3011, 7.302, 7.3029, 7.3026, 7.3022, 7.3017, 7.3015, 7.301, 7.3007, 7.3003, 7.2998, 7.2994, 7.299, 7.2999, 7.2995, 7.2992, 7.299, 7.2986, 7.2984, 7.2979, 7.2977, 7.2972, 7.2967, 7.2976, 7.2985, 7.2982, 7.2978, 7.2988, 7.2984, 7.298, 7.2992, 7.2987, 7.2983, 7.2979, 7.2974, 7.2996, 7.2992, 7.2987, 7.2984, 7.2979, 7.2976, 7.2986, 7.2995, 7.2991, 7.2988, 7.2983, 7.2978, 7.2973, 7.2969, 7.2964, 7.2959, 7.2955, 7.2951, 7.2948, 7.2958, 7.2945, 7.2954, 7.2949, 7.2946, 7.2959, 7.2954, 7.295, 7.2947, 7.2944, 7.2952, 7.2948, 7.2984, 7.2991, 7.2987, 7.2983, 7.2984, 7.2981, 7.2978, 7.2987, 7.2983, 7.2979, 7.2976, 7.2979, 7.2975, 7.2976, 7.2989, 7.2984, 7.2981, 7.299, 7.2986, 7.2982, 7.2978, 7.2975, 7.2971, 7.2969, 7.2964, 7.2962, 7.3039, 7.3036, 7.3046, 7.303, 7.3027, 7.3024, 7.3033, 7.3029, 7.3025, 7.3021, 7.3016, 7.3025, 7.3034, 7.3031, 7.3027, 7.3023, 7.3019, 7.3014, 7.3009, 7.3006, 7.3002, 7.2998, 7.2995, 7.2991, 7.2988, 7.2987, 7.2983, 7.2978, 7.2974, 7.2971, 7.2967, 7.2964, 7.2962, 7.2959, 7.2954, 7.2949, 7.2945, 7.2942, 7.2938, 7.2934, 7.2931, 7.2928, 7.2925, 7.2921, 7.2917, 7.2912, 7.2909, 7.2918, 7.2916, 7.2911, 7.2908, 7.2945, 7.2942, 7.295, 7.2947, 7.2943, 7.2939, 7.2934, 7.2931, 7.2927, 7.2924, 7.292, 7.2915, 7.2912, 7.2911, 7.292, 7.2929, 7.2925, 7.292, 7.2917, 7.2912, 7.2908, 7.2905, 7.29, 7.2897, 7.2903, 7.2899, 7.2895, 7.2891, 7.2878, 7.2875, 7.2929, 7.2926, 7.2963, 7.2959, 7.2955, 7.2962, 7.2958, 7.2953, 7.2976, 7.2972, 7.2968, 7.2965, 7.2973, 7.2968, 7.2963, 7.2958, 7.2966, 7.2963, 7.2959, 7.2943, 7.2939, 7.2934, 7.2944, 7.2941, 7.2937, 7.2934, 7.2932, 7.2928, 7.2925, 7.292, 7.2929, 7.2927, 7.2923, 7.2919, 7.2916, 7.2923, 7.2932, 7.294, 7.2939, 7.2935, 7.2932, 7.2917, 7.2913, 7.2909, 7.2904, 7.2902, 7.2897, 7.2906, 7.2915, 7.291, 7.2918, 7.2914, 7.291, 7.2907, 7.2917, 7.2902, 7.2898, 7.2894, 7.2889, 7.2885, 7.2882, 7.289, 7.2886, 7.2881, 7.2877, 7.2873, 7.2869, 7.2865, 7.2863, 7.2868, 7.2876, 7.286, 7.2856, 7.2851, 7.2847, 7.2843, 7.2838, 7.2834, 7.2829, 7.283, 7.2827, 7.2822, 7.2818, 7.2814, 7.281, 7.2823, 7.2821, 7.2816, 7.2829, 7.2826, 7.2822, 7.2823, 7.2819, 7.2815, 7.281, 7.2808, 7.2804, 7.28, 7.2808, 7.2805, 7.279, 7.2786, 7.2796, 7.2794, 7.2815, 7.2825, 7.2821, 7.2819, 7.2817, 7.2814, 7.2825, 7.2821, 7.2819, 7.2815, 7.2824, 7.2821, 7.2817, 7.2814, 7.2809, 7.2818, 7.2814, 7.2836, 7.2858, 7.2856, 7.2852, 7.2848, 7.2845, 7.2841, 7.2836, 7.2831, 7.2826, 7.2823, 7.2819, 7.2815, 7.2811, 7.2819, 7.2828, 7.2824, 7.2808, 7.2804, 7.2802, 7.281, 7.2806, 7.2802, 7.2798, 7.2808, 7.2804, 7.2799, 7.2796, 7.2805, 7.2801, 7.2797, 7.2804, 7.28, 7.2797, 7.2807, 7.2804, 7.2814, 7.281, 7.2806, 7.2815, 7.2812, 7.2816, 7.2813, 7.2834, 7.2831, 7.2827, 7.2824, 7.2847, 7.2843, 7.2839, 7.2835, 7.2833, 7.2836, 7.2832, 7.2841, 7.2838, 7.2835, 7.2845, 7.2842, 7.2837, 7.2833, 7.283, 7.2826, 7.2822, 7.2818, 7.2814, 7.281, 7.2807, 7.2802, 7.281, 7.2806, 7.2802, 7.2798, 7.2794, 7.279, 7.2786, 7.2783, 7.278, 7.2789, 7.2785, 7.2781, 7.2789, 7.2805, 7.2801, 7.2809, 7.2808, 7.2804, 7.28, 7.2796, 7.2804, 7.28, 7.2798, 7.2795, 7.2803, 7.2802, 7.2799, 7.2797, 7.2806, 7.2803, 7.2812, 7.2821, 7.2825, 7.282, 7.283, 7.2827, 7.2823, 7.2833, 7.2842, 7.2851, 7.2847, 7.2855, 7.2864, 7.286, 7.2856, 7.2852, 7.2849, 7.2846, 7.2832, 7.2828, 7.2824, 7.282, 7.2819, 7.2841, 7.2849, 7.2845, 7.2841, 7.2837, 7.2833, 7.2841, 7.2837, 7.2833, 7.2829, 7.2826, 7.2825, 7.2821, 7.2816, 7.2812, 7.2808, 7.2804, 7.28, 7.2808, 7.2805, 7.2802, 7.2797, 7.2794, 7.279, 7.2786, 7.2772, 7.2768, 7.2765, 7.2784, 7.2792, 7.2777, 7.2773, 7.2784, 7.2792, 7.2788, 7.2784, 7.2779, 7.2775, 7.2772, 7.2781, 7.2778, 7.2775, 7.2783, 7.2779, 7.2775, 7.2783, 7.278, 7.2775, 7.2773, 7.2785, 7.278, 7.2777, 7.2773, 7.278, 7.2788, 7.2796, 7.2808, 7.2804, 7.2811, 7.2807, 7.2804, 7.28, 7.2797, 7.2793, 7.279, 7.2788, 7.2796, 7.2795, 7.2804, 7.28, 7.2796, 7.2792, 7.28, 7.2799, 7.2797, 7.2793, 7.2802, 7.281, 7.2812, 7.2819, 7.2815, 7.2823, 7.282, 7.2805, 7.2801, 7.2786, 7.2771, 7.2767, 7.2763, 7.2771, 7.2767, 7.2764, 7.276, 7.2756, 7.2754, 7.2763, 7.276, 7.2756, 7.2751, 7.2737, 7.2733, 7.2729, 7.2716, 7.2711, 7.272, 7.2716, 7.2711, 7.2722, 7.2718, 7.2715, 7.2712, 7.272, 7.2718, 7.2716, 7.2747, 7.2746, 7.2742, 7.2739, 7.2745, 7.2742, 7.2738, 7.2734, 7.2731, 7.2728, 7.2724, 7.272, 7.2716, 7.2705, 7.2705, 7.2713, 7.2712, 7.2744, 7.2752, 7.2748, 7.2746, 7.2755, 7.2766, 7.2799, 7.2795, 7.281, 7.2806, 7.2815, 7.2824, 7.282, 7.2816, 7.2801, 7.2808, 7.2828, 7.2824, 7.2836, 7.2833, 7.283, 7.2827, 7.2835, 7.2831, 7.2827, 7.2823, 7.2831, 7.282, 7.2816, 7.2812, 7.2812, 7.2815, 7.2826, 7.2825, 7.2822, 7.2818, 7.2867, 7.2865, 7.2861, 7.2859, 7.2856, 7.2864, 7.286, 7.2856, 7.2865, 7.2861, 7.2857, 7.2854, 7.285, 7.2846, 7.2844, 7.2841, 7.285, 7.2848, 7.2857, 7.2855, 7.2852, 7.2848, 7.2845, 7.2841, 7.2837, 7.2833, 7.2831, 7.2851, 7.2859, 7.2869, 7.2878, 7.2891, 7.2899, 7.2895, 7.2891, 7.2888, 7.2895, 7.2892, 7.2899, 7.2908, 7.2904, 7.2899, 7.2895, 7.2891, 7.2888, 7.2896, 7.2892, 7.2889, 7.2897, 7.2893, 7.2891, 7.2887, 7.2884, 7.2892, 7.2889, 7.2887, 7.2883, 7.2881, 7.2877, 7.2873, 7.2917, 7.2913, 7.291, 7.2918, 7.2914, 7.291, 7.2906, 7.2902, 7.291, 7.2918, 7.2914, 7.2912, 7.2897, 7.2893, 7.2889, 7.2897, 7.2893, 7.289, 7.2886, 7.2883, 7.2879, 7.2875, 7.2872, 7.2879, 7.2882, 7.2878, 7.2874, 7.2871, 7.2869, 7.2864, 7.286, 7.2858, 7.2854, 7.2851, 7.2847, 7.2843, 7.2839, 7.2846, 7.2853, 7.285, 7.2846, 7.2844, 7.2841, 7.2837, 7.2833, 7.2829, 7.2836, 7.2833, 7.2829, 7.2826, 7.2823, 7.2831, 7.2827, 7.2823, 7.2823, 7.2819, 7.2816, 7.2824, 7.282, 7.2816, 7.2824, 7.282, 7.2818, 7.2816, 7.2812, 7.282, 7.2816, 7.2823, 7.2819, 7.2828, 7.2826, 7.2834, 7.283, 7.2826, 7.2824, 7.282, 7.2828, 7.2824, 7.2821, 7.2817, 7.2825, 7.2833, 7.2829, 7.2837, 7.2845, 7.2844, 7.2841, 7.2837, 7.2845, 7.2843, 7.2839, 7.2837, 7.2836, 7.2845, 7.2841, 7.2837, 7.2833, 7.2829, 7.2825, 7.2823, 7.2819, 7.2817, 7.2813, 7.2809, 7.2838, 7.2846, 7.2855, 7.2863, 7.2871, 7.2882, 7.289, 7.2886, 7.2872, 7.2879, 7.2875, 7.2872, 7.3009, 7.3005, 7.3001, 7.2998, 7.3006, 7.3004, 7.3002, 7.2999, 7.3008, 7.3006, 7.3008, 7.3016, 7.3012, 7.3008, 7.3029, 7.3027, 7.3027, 7.3024, 7.302, 7.3016, 7.3012, 7.3009, 7.3005, 7.3006, 7.3014, 7.301, 7.3018, 7.3015, 7.3013, 7.301, 7.3007, 7.3003, 7.301, 7.3018, 7.3015, 7.3011, 7.3007, 7.3004, 7.3, 7.2996, 7.2992, 7.2989, 7.2987, 7.2984, 7.298, 7.2977, 7.3033, 7.3029, 7.3026, 7.3032, 7.3028, 7.3026, 7.3024, 7.3025, 7.3033, 7.303, 7.3028, 7.3025, 7.3033, 7.3044, 7.3052, 7.3048, 7.3046, 7.3042, 7.305, 7.3057, 7.3053, 7.305, 7.3047, 7.3046, 7.3054, 7.305, 7.3046, 7.3053, 7.3059, 7.3055, 7.304, 7.3037, 7.3033, 7.3031, 7.3027, 7.3026, 7.3022, 7.3018, 7.3025, 7.3022, 7.3022, 7.302, 7.3007, 7.3004, 7.3, 7.2997, 7.2993, 7.299, 7.2986, 7.2982, 7.2982, 7.3003, 7.3, 7.2996, 7.3004, 7.3011, 7.3018, 7.3025, 7.3021, 7.3017, 7.3014, 7.301, 7.3006, 7.3013, 7.3009, 7.3007, 7.3014, 7.3011, 7.3007, 7.3003, 7.2999, 7.2995, 7.2991, 7.2979, 7.2975, 7.2972, 7.2968, 7.2964, 7.2971, 7.2967, 7.2964, 7.2973, 7.298, 7.2989, 7.2986, 7.2982, 7.2989, 7.2986, 7.2982, 7.2979, 7.2976, 7.2976, 7.2974, 7.2973, 7.2973, 7.2969, 7.2956, 7.2954, 7.2962, 7.2959, 7.2956, 7.2953, 7.2949, 7.2945, 7.2943, 7.295, 7.2947, 7.2943, 7.2941, 7.2937, 7.2935, 7.2942, 7.2938, 7.2935, 7.2942, 7.2949, 7.2946, 7.2942, 7.2949, 7.2945, 7.2942, 7.2938, 7.2934, 7.2932, 7.2928, 7.2924, 7.2931, 7.2927, 7.2924, 7.2924, 7.292, 7.2916, 7.2913, 7.291, 7.2908, 7.2906, 7.2913, 7.292, 7.2916, 7.2914, 7.2911, 7.2907, 7.2903, 7.2902, 7.2898, 7.2895, 7.2893, 7.2893, 7.289, 7.2888, 7.2909, 7.2917, 7.2915, 7.2912, 7.2909, 7.2916, 7.2912, 7.292, 7.2916, 7.2913, 7.2911, 7.2918, 7.2916, 7.2923, 7.2919, 7.2916, 7.2912, 7.2914, 7.291, 7.2906, 7.2913, 7.291, 7.2907, 7.2903, 7.2899, 7.2895, 7.2902, 7.2899, 7.2897, 7.2895, 7.2891, 7.2888, 7.2884, 7.289, 7.2903, 7.2899, 7.2906, 7.2903, 7.29, 7.2898, 7.2894, 7.2901, 7.2909, 7.2905, 7.2901, 7.2908, 7.2905, 7.2912, 7.2912, 7.2908, 7.2906, 7.2903, 7.2899, 7.2895, 7.2892, 7.2888, 7.2886, 7.2882, 7.2878, 7.2875, 7.2872, 7.2868, 7.2869, 7.2867, 7.2864, 7.2868, 7.2877, 7.2874, 7.2871, 7.2878, 7.294, 7.2937, 7.2933, 7.293, 7.2927, 7.2934, 7.2931, 7.2939, 7.2936, 7.2933, 7.293, 7.2934, 7.2931, 7.2927, 7.2933, 7.293, 7.2927, 7.2924, 7.292, 7.2928, 7.2924, 7.292, 7.2917, 7.2914, 7.291, 7.2907, 7.2903, 7.2899, 7.2895, 7.2902, 7.2898, 7.2894, 7.2891, 7.2891, 7.2888, 7.2884, 7.288, 7.2878, 7.2874, 7.2872, 7.2868, 7.2864, 7.286, 7.2867, 7.2907, 7.2903, 7.2901, 7.2897, 7.29, 7.2907, 7.2914, 7.2911, 7.2918, 7.2965, 7.2961, 7.2957, 7.2964, 7.2971, 7.2968, 7.2974, 7.297, 7.2967, 7.2974, 7.2982, 7.2979, 7.2976, 7.2972, 7.2979, 7.2975, 7.2981, 7.2977, 7.2974, 7.2981, 7.2978, 7.2975, 7.2972, 7.297, 7.2966, 7.2962, 7.298, 7.2987, 7.2984, 7.2982, 7.2978, 7.2974, 7.297, 7.2977, 7.2973, 7.2971, 7.2968, 7.2967, 7.2963, 7.2962, 7.297, 7.2967, 7.2975, 7.2971, 7.2968, 7.2964, 7.2961, 7.296, 7.2956, 7.2952, 7.295, 7.2946, 7.2942, 7.2949, 7.2945, 7.2952, 7.2948, 7.2956, 7.2953, 7.2961, 7.2958, 7.2968, 7.2976, 7.2973, 7.2971, 7.2968, 7.2967, 7.2965, 7.2968, 7.2976, 7.2972, 7.2969, 7.2966, 7.2988, 7.2995, 7.2993, 7.299, 7.2987, 7.2993, 7.2989, 7.2986, 7.2983, 7.298, 7.2987, 7.2984, 7.298, 7.2976, 7.2973, 7.2969, 7.2969, 7.2965, 7.2963, 7.2959, 7.2966, 7.2962, 7.2969, 7.2966, 7.2973, 7.2969, 7.2967, 7.2964, 7.2952, 7.296, 7.2956, 7.2953, 7.2951, 7.2958, 7.2956, 7.2952, 7.2949, 7.2946, 7.2943, 7.294, 7.2937, 7.2935, 7.2943, 7.294, 7.2937, 7.2934, 7.293, 7.2928, 7.2925, 7.2921, 7.2918, 7.2915, 7.2912, 7.2909, 7.2942, 7.2938, 7.2945, 7.2942, 7.2949, 7.2955, 7.2953, 7.296, 7.2956, 7.2953, 7.2949, 7.2946, 7.2943, 7.295, 7.2947, 7.2954, 7.2961, 7.296, 7.2958, 7.2956, 7.2962, 7.2959, 7.2966, 7.2963, 7.2959, 7.2966, 7.2972, 7.2969, 7.2966, 7.2973, 7.297, 7.2966, 7.2963, 7.2962, 7.2969, 7.2965, 7.2961, 7.2968, 7.2965, 7.2961, 7.2958, 7.2954, 7.2951, 7.2947, 7.2943, 7.2949, 7.2946, 7.2934, 7.2932, 7.2931, 7.2928, 7.293, 7.2926, 7.2924, 7.2931, 7.2928, 7.2934, 7.2931, 7.2938, 7.2935, 7.2942, 7.294, 7.2937, 7.2935, 7.2944, 7.294, 7.2947, 7.2945, 7.2941, 7.2938, 7.2935, 7.2932, 7.294, 7.2937, 7.2934, 7.2931, 7.2928, 7.2925, 7.2921, 7.2918, 7.2915, 7.2916, 7.2915, 7.2912, 7.2909, 7.2906, 7.2904, 7.292, 7.2916, 7.2913, 7.291, 7.2906, 7.2903, 7.2899, 7.2906, 7.2902, 7.2917, 7.2914, 7.291, 7.2898, 7.2908, 7.2905, 7.2933, 7.2949, 7.2946, 7.2943, 7.2961, 7.2957, 7.2963, 7.298, 7.2987, 7.2983, 7.298, 7.2986, 7.3003, 7.301, 7.3007, 7.3003, 7.3001, 7.2998, 7.2995, 7.3002, 7.3025, 7.3022, 7.3034, 7.3038, 7.3046, 7.3044, 7.304, 7.3036, 7.3065, 7.3072, 7.307, 7.3067, 7.3071, 7.3069, 7.3066, 7.3064, 7.3071, 7.3069, 7.3065, 7.3061, 7.3068, 7.3066, 7.3063, 7.307, 7.3077, 7.3077, 7.3074, 7.3081, 7.3077, 7.3073, 7.308, 7.3077, 7.3076, 7.3083, 7.308, 7.3078, 7.3075, 7.3073, 7.307, 7.3069, 7.3067, 7.3074, 7.3082, 7.3089, 7.3096, 7.3093, 7.3091, 7.3087, 7.3092, 7.3099, 7.3097, 7.3096, 7.3103, 7.3099, 7.3096, 7.3103, 7.3101, 7.3099, 7.3096, 7.3092, 7.309, 7.3097, 7.3103, 7.311, 7.3108, 7.3115, 7.3114, 7.3122, 7.3119, 7.3116, 7.3123, 7.3122, 7.3121, 7.3119, 7.3117, 7.3114, 7.3111, 7.3111, 7.3109, 7.3106, 7.3103, 7.31, 7.3098, 7.3129, 7.3128, 7.3134, 7.313, 7.3129, 7.3119, 7.3116, 7.3112, 7.311, 7.3098, 7.3095, 7.3094, 7.309, 7.3097, 7.3094, 7.309, 7.3087, 7.3084, 7.3082, 7.3078, 7.3075, 7.3072, 7.3068, 7.3064, 7.3087, 7.3084, 7.3081, 7.3081, 7.3078, 7.3075, 7.3066, 7.3085, 7.3102, 7.3098, 7.3094, 7.3091, 7.3089, 7.3087, 7.3084, 7.3081, 7.3078, 7.3084, 7.3087, 7.3074, 7.308, 7.3077, 7.3075, 7.3067, 7.3064, 7.3071, 7.3064, 7.3061, 7.3069, 7.3067, 7.3065, 7.3062, 7.3061, 7.3059, 7.3059, 7.3067, 7.3067, 7.3063, 7.3061, 7.3068, 7.3068, 7.3066, 7.3064, 7.3061, 7.3061, 7.3069, 7.3077, 7.3074, 7.3073, 7.3072, 7.3072, 7.308, 7.3079, 7.3078, 7.3075, 7.3075, 7.3072, 7.308, 7.3079, 7.3087, 7.3076, 7.3076, 7.3076, 7.3076, 7.3073], '192.168.122.116': [10.8111, 10.8828, 9.1753, 8.3186, 7.9092, 7.6551, 7.4737, 7.1981, 7.029, 7.4404, 7.2458, 7.129, 7.0411, 6.9245, 6.9201, 6.8585, 6.7923, 7.064, 6.7169, 7.1985, 7.1304, 7.1376, 7.0845, 7.297, 7.081, 7.0172, 7.0267, 7.5454, 7.4673, 7.4348, 7.3962, 7.3295, 7.4259, 7.3906, 7.3321, 7.2881, 7.2688, 7.2326, 7.3389, 7.419, 7.497, 7.4442, 7.4121, 7.3764, 7.3418, 7.4378, 7.4115, 7.3763, 7.3389, 7.3081, 7.2719, 7.2424, 7.4651, 7.4295, 7.3932, 7.3561, 7.319, 7.2837, 7.2559, 7.2215, 7.5617, 7.5397, 7.5042, 7.4772, 7.4734, 7.458, 7.4286, 7.4166, 7.3879, 7.4388, 7.4115, 7.3842, 7.357, 7.3805, 7.3649, 7.3513, 7.3309, 7.3149, 7.2974, 7.3401, 7.3155, 7.3594, 7.3368, 7.3218, 7.3059, 7.3478, 7.3229, 7.3084, 7.3526, 7.3403, 7.3252, 7.3455, 7.3251, 7.3041, 7.2955, 7.3329, 7.3152, 7.3, 7.3002, 7.2798, 7.5208, 7.4998, 7.4345, 7.4199, 7.4533, 7.4842, 7.5139, 7.4939, 7.4789, 7.4753, 7.4618, 7.4531, 7.3924, 7.4285, 7.4139, 7.4474, 7.4327, 7.4668, 7.4521, 7.4398, 7.428, 7.4268, 7.4119, 7.3977, 7.4285, 7.4594, 7.4469, 7.4305, 7.4157, 7.4038, 7.3903, 7.3768, 7.4039, 7.475, 7.4651, 7.495, 7.4839, 7.4708, 7.4546, 7.4406, 7.4988, 7.4884, 7.4799, 7.5034, 7.4948, 7.482, 7.4768, 7.4649, 7.4512, 7.5702, 7.5556, 7.6097, 7.5978, 7.5851, 7.5422, 7.5284, 7.5163, 7.5032, 7.4937, 7.4849, 7.4741, 7.462, 7.4506, 7.437, 7.4251, 7.4234, 7.3841, 7.372, 7.3612, 7.3495, 7.3434, 7.3345, 7.3869, 7.3774, 7.3692, 7.3595, 7.3564, 7.3448, 7.3348, 7.3286, 7.3179, 7.3359, 7.4373, 7.4283, 7.4186, 7.4094, 7.3987, 7.3918, 7.3858, 7.3749, 7.366, 7.357, 7.353, 7.3716, 7.3902, 7.3795, 7.3702, 7.3608, 7.3547, 7.3481, 7.3382, 7.3288, 7.3216, 7.337, 7.3302, 7.3211, 7.3386, 7.3308, 7.322, 7.318, 7.3096, 7.3002, 7.3469, 7.3407, 7.3305, 7.3478, 7.3428, 7.3337, 7.3305, 7.3478, 7.3402, 7.3564, 7.3499, 7.3287, 7.3195, 7.3137, 7.3075, 7.3013, 7.3199, 7.3388, 7.3571, 7.3723, 7.3682, 7.3647, 7.3586, 7.3354, 7.3266, 7.3186, 7.3143, 7.3293, 7.3224, 7.3198, 7.3113, 7.2868, 7.2946, 7.2893, 7.2831, 7.2766, 7.2691, 7.2834, 7.2867, 7.2807, 7.2777, 7.2915, 7.2842, 7.277, 7.2689, 7.2638, 7.2586, 7.2727, 7.2671, 7.2597, 7.2523, 7.2452, 7.2398, 7.233, 7.2462, 7.2391, 7.2529, 7.2664, 7.2614, 7.2572, 7.2519, 7.2453, 7.24, 7.2342, 7.2288, 7.2411, 7.2361, 7.2292, 7.2242, 7.2176, 7.2112, 7.2234, 7.2236, 7.2189, 7.2123, 7.2076, 7.2201, 7.2137, 7.2324, 7.2291, 7.2417, 7.2355, 7.2293, 7.2415, 7.2538, 7.2473, 7.2593, 7.2708, 7.2874, 7.2811, 7.2774, 7.2881, 7.336, 7.3328, 7.3259, 7.3213, 7.3152, 7.3092, 7.3032, 7.3133, 7.3068, 7.301, 7.3124, 7.3058, 7.3003, 7.337, 7.3305, 7.3268, 7.338, 7.3326, 7.3333, 7.3274, 7.3245, 7.3356, 7.3297, 7.3236, 7.3219, 7.3183, 7.3129, 7.3077, 7.3048, 7.3029, 7.2979, 7.2921, 7.2888, 7.2839, 7.2965, 7.3243, 7.3338, 7.33, 7.3405, 7.3351, 7.3317, 7.3322, 7.3312, 7.3271, 7.3223, 7.3225, 7.3197, 7.3624, 7.3601, 7.3855, 7.3799, 7.3738, 7.3843, 7.3653, 7.3778, 7.3586, 7.3708, 7.3821, 7.3638, 7.3678, 7.363, 7.3585, 7.3399, 7.3343, 7.3428, 7.3513, 7.3461, 7.3406, 7.3363, 7.3336, 7.3164, 7.3259, 7.3211, 7.3167, 7.3125, 7.3085, 7.3048, 7.2994, 7.295, 7.2907, 7.299, 7.2944, 7.2916, 7.2875, 7.2833, 7.2827, 7.2797, 7.2759, 7.2862, 7.2829, 7.2798, 7.2747, 7.2704, 7.2656, 7.2756, 7.2856, 7.2938, 7.2902, 7.2853, 7.2825, 7.2801, 7.2777, 7.2868, 7.2718, 7.268, 7.2665, 7.2755, 7.2726, 7.2564, 7.2677, 7.2644, 7.2483, 7.2601, 7.2443, 7.2464, 7.2417, 7.2421, 7.2383, 7.2405, 7.2364, 7.2319, 7.2406, 7.2406, 7.2491, 7.246, 7.2416, 7.2502, 7.2461, 7.2539, 7.2495, 7.2453, 7.2424, 7.238, 7.2348, 7.2322, 7.2284, 7.2262, 7.2403, 7.238, 7.2383, 7.2464, 7.2526, 7.2493, 7.2458, 7.2428, 7.2389, 7.2463, 7.2533, 7.2487, 7.2705, 7.2778, 7.2734, 7.2695, 7.2661, 7.2732, 7.2719, 7.2797, 7.2763, 7.287, 7.2834, 7.2909, 7.2866, 7.2825, 7.2826, 7.2906, 7.2863, 7.2824, 7.2906, 7.2908, 7.2867, 7.2839, 7.2805, 7.2785, 7.2792, 7.2755, 7.2745, 7.2718, 7.2792, 7.2769, 7.2846, 7.281, 7.2899, 7.2966, 7.2981, 7.2982, 7.3062, 7.3021, 7.2982, 7.2946, 7.2956, 7.3028, 7.3108, 7.3068, 7.3138, 7.3209, 7.3256, 7.3216, 7.3193, 7.3161, 7.3127, 7.3107, 7.3067, 7.3047, 7.3135, 7.3104, 7.3076, 7.3052, 7.3012, 7.2974, 7.2939, 7.2905, 7.2964, 7.2931, 7.2999, 7.2967, 7.2932, 7.2912, 7.2887, 7.2956, 7.2917, 7.2881, 7.2844, 7.2812, 7.2781, 7.2743, 7.2719, 7.2796, 7.2768, 7.2733, 7.2694, 7.2667, 7.2646, 7.2638, 7.2611, 7.2575, 7.2642, 7.2606, 7.2572, 7.2534, 7.253, 7.2413, 7.2482, 7.2545, 7.2521, 7.2492, 7.2464, 7.2432, 7.24, 7.2389, 7.2447, 7.2531, 7.2411, 7.2379, 7.2512, 7.2669, 7.2645, 7.2617, 7.2586, 7.2569, 7.2647, 7.2707, 7.2772, 7.2753, 7.2719, 7.2687, 7.2755, 7.272, 7.2699, 7.2683, 7.2666, 7.2644, 7.2624, 7.2609, 7.2584, 7.2644, 7.2612, 7.2684, 7.2672, 7.2749, 7.2804, 7.277, 7.2735, 7.2716, 7.2693, 7.2659, 7.2641, 7.2614, 7.2597, 7.257, 7.2557, 7.2524, 7.2496, 7.2466, 7.2528, 7.2497, 7.2578, 7.2545, 7.2563, 7.2618, 7.259, 7.2557, 7.2609, 7.2584, 7.2555, 7.2521, 7.2578, 7.2569, 7.2536, 7.2508, 7.2477, 7.2552, 7.2532, 7.2511, 7.248, 7.2448, 7.2457, 7.2444, 7.2423, 7.2398, 7.2371, 7.2362, 7.2329, 7.2305, 7.2287, 7.2255, 7.2308, 7.2289, 7.2258, 7.2227, 7.2195, 7.225, 7.2221, 7.2195, 7.2165, 7.2229, 7.2292, 7.2271, 7.2328, 7.2385, 7.3009, 7.3057, 7.3037, 7.301, 7.2978, 7.2954, 7.2935, 7.2992, 7.2977, 7.3033, 7.305, 7.3216, 7.3186, 7.3155, 7.321, 7.319, 7.3162, 7.3139, 7.3107, 7.308, 7.3074, 7.3046, 7.3024, 7.2993, 7.3046, 7.3026, 7.2998, 7.2973, 7.2955, 7.2939, 7.299, 7.3038, 7.3007, 7.2979, 7.2957, 7.293, 7.2901, 7.2873, 7.2853, 7.2826, 7.2801, 7.2774, 7.2745, 7.2809, 7.2783, 7.2756, 7.273, 7.2781, 7.2757, 7.2805, 7.2853, 7.2825, 7.28, 7.2784, 7.276, 7.2812, 7.2863, 7.2914, 7.2888, 7.2943, 7.2914, 7.2885, 7.2869, 7.2845, 7.2819, 7.2875, 7.2856, 7.2829, 7.2803, 7.2782, 7.2836, 7.2823, 7.28, 7.2774, 7.2747, 7.2736, 7.2737, 7.2711, 7.264, 7.2616, 7.2681, 7.2656, 7.2629, 7.2601, 7.2575, 7.2548, 7.2525, 7.25, 7.2475, 7.2462, 7.2437, 7.2421, 7.2335, 7.231, 7.2363, 7.2345, 7.2399, 7.2375, 7.2352, 7.2333, 7.2308, 7.2284, 7.233, 7.2305, 7.2281, 7.2268, 7.2317, 7.2294, 7.2276, 7.2253, 7.2232, 7.228, 7.2263, 7.2239, 7.2284, 7.2272, 7.2341, 7.2317, 7.2292, 7.2341, 7.2318, 7.2299, 7.2275, 7.2394, 7.2458, 7.2435, 7.2495, 7.2544, 7.2601, 7.2642, 7.2689, 7.2665, 7.2641, 7.2641, 7.2689, 7.2671, 7.2646, 7.2626, 7.2601, 7.2587, 7.2567, 7.2545, 7.2521, 7.2574, 7.2549, 7.2491, 7.2568, 7.2558, 7.2548, 7.2594, 7.2571, 7.2617, 7.2797, 7.2774, 7.2781, 7.283, 7.2888, 7.287, 7.2863, 7.2839, 7.2814, 7.2793, 7.2786, 7.2827, 7.2812, 7.2853, 7.2844, 7.2823, 7.2801, 7.2788, 7.2791, 7.2768, 7.2748, 7.2734, 7.271, 7.2701, 7.2687, 7.2732, 7.2777, 7.2754, 7.2797, 7.278, 7.2756, 7.2739, 7.2778, 7.2773, 7.2752, 7.279, 7.2831, 7.2812, 7.279, 7.2766, 7.2747, 7.2725, 7.2732, 7.2955, 7.2931, 7.2973, 7.3073, 7.305, 7.3025, 7.3005, 7.299, 7.2967, 7.3011, 7.2988, 7.2972, 7.2895, 7.2876, 7.2988, 7.2975, 7.2958, 7.2879, 7.2866, 7.2982, 7.3235, 7.3218, 7.3254, 7.3295, 7.3527, 7.351, 7.3492, 7.3472, 7.3544, 7.3525, 7.3565, 7.3605, 7.3589, 7.3528, 7.3511, 7.3488, 7.3525, 7.3506, 7.3489, 7.3468, 7.3705, 7.3683, 7.3664, 7.3702, 7.3688, 7.3669, 7.3646, 7.3627, 7.3667, 7.365, 7.3635, 7.3711, 7.3812, 7.3791, 7.3779, 7.3762, 7.3744, 7.3722, 7.37, 7.3678, 7.3655, 7.3693, 7.3673, 7.3674, 7.3709, 7.369, 7.373, 7.3768, 7.3757, 7.3741, 7.378, 7.3818, 7.3859, 7.3968, 7.3944, 7.3926, 7.3903, 7.3882, 7.3918, 7.3898, 7.3876, 7.3864, 7.3848, 7.3837, 7.3824, 7.3809, 7.389, 7.3926, 7.391, 7.3895, 7.3876, 7.3912, 7.3893, 7.3873, 7.3852, 7.383, 7.3808, 7.3785, 7.3823, 7.3811, 7.3792, 7.378, 7.3758, 7.3797, 7.3798, 7.3831, 7.3813, 7.3791, 7.3775, 7.3704, 7.3741, 7.3779, 7.3758, 7.3736, 7.3716, 7.3752, 7.3788, 7.3718, 7.3699, 7.3678, 7.3714, 7.3693, 7.3675, 7.366, 7.3648, 7.3629, 7.361, 7.3595, 7.3576, 7.3556, 7.3537, 7.3517, 7.3553, 7.3542, 7.3683, 7.3745, 7.3732, 7.3721, 7.371, 7.375, 7.3785, 7.3774, 7.3754, 7.3733, 7.377, 7.3764, 7.383, 7.3809, 7.3842, 7.3876, 7.3808, 7.3798, 7.3835, 7.382, 7.3751, 7.3787, 7.3766, 7.375, 7.3728, 7.3675, 7.3655, 7.3635, 7.3669, 7.3659, 7.3639, 7.362, 7.361, 7.3596, 7.3576, 7.3558, 7.3545, 7.3526, 7.346, 7.3495, 7.353, 7.3522, 7.3503, 7.3537, 7.3525, 7.3557, 7.3551, 7.3541, 7.3476, 7.3463, 7.345, 7.3443, 7.3482, 7.3467, 7.3401, 7.3402, 7.3391, 7.3379, 7.3367, 7.3349, 7.3345, 7.338, 7.336, 7.334, 7.332, 7.3367, 7.335, 7.333, 7.3321, 7.3352, 7.3335, 7.332, 7.3301, 7.3281, 7.3265, 7.3248, 7.3231, 7.3211, 7.3201, 7.314, 7.3121, 7.3104, 7.3138, 7.3119, 7.3157, 7.314, 7.3127, 7.3161, 7.3148, 7.3128, 7.311, 7.3093, 7.3128, 7.3117, 7.3153, 7.3143, 7.3128, 7.3122, 7.3106, 7.3166, 7.3152, 7.3257, 7.3293, 7.3276, 7.3271, 7.3254, 7.3241, 7.3228, 7.3211, 7.3194, 7.3175, 7.3161, 7.3193, 7.3176, 7.3159, 7.3142, 7.3132, 7.3115, 7.3096, 7.3082, 7.3063, 7.3056, 7.3048, 7.3083, 7.3111, 7.3099, 7.3082, 7.3022, 7.301, 7.2997, 7.2982, 7.3016, 7.3007, 7.3043, 7.3025, 7.3009, 7.2994, 7.303, 7.3061, 7.3147, 7.3135, 7.3121, 7.3106, 7.3091, 7.3076, 7.306, 7.3048, 7.3032, 7.3021, 7.3074, 7.3059, 7.3044, 7.3034, 7.3064, 7.3049, 7.3003, 7.3013, 7.2969, 7.3008, 7.2992, 7.2979, 7.2968, 7.2951, 7.2933, 7.2915, 7.2945, 7.2963, 7.2947, 7.2934, 7.2917, 7.2947, 7.2977, 7.3009, 7.2996, 7.2978, 7.3006, 7.3035, 7.3018, 7.3004, 7.2994, 7.2936, 7.2964, 7.2992, 7.302, 7.3048, 7.3036, 7.3023, 7.3051, 7.3042, 7.3076, 7.306, 7.3043, 7.3026, 7.3009, 7.2993, 7.2977, 7.2921, 7.2906, 7.289, 7.2875, 7.2905, 7.2898, 7.2927, 7.2954, 7.2939, 7.2969, 7.2998, 7.3026, 7.3057, 7.3041, 7.2986, 7.2971, 7.2957, 7.294, 7.2929, 7.2925, 7.2868, 7.2858, 7.2849, 7.2833, 7.2863, 7.2901, 7.2932, 7.2934, 7.2922, 7.2906, 7.2891, 7.2875, 7.2905, 7.2933, 7.2926, 7.2959, 7.2945, 7.2938, 7.2926, 7.2919, 7.2902, 7.289, 7.2923, 7.2908, 7.3073, 7.3137, 7.3163, 7.315, 7.3139, 7.3125, 7.3108, 7.3096, 7.3083, 7.3114, 7.3102, 7.3129, 7.3113, 7.3142, 7.3171, 7.3155, 7.3141, 7.3128, 7.3161, 7.3147, 7.3131, 7.3117, 7.3144, 7.3131, 7.3116, 7.3146, 7.3137, 7.3124, 7.3107, 7.31, 7.3091, 7.3084, 7.3114, 7.3111, 7.3139, 7.3123, 7.3112, 7.3096, 7.3082, 7.311, 7.3098, 7.3088, 7.3121, 7.3113, 7.314, 7.3124, 7.3109, 7.3097, 7.3087, 7.3072, 7.3057, 7.3043, 7.3029, 7.3014, 7.2967, 7.2922, 7.2906, 7.2933, 7.2917, 7.2905, 7.2889, 7.2873, 7.2902, 7.2931, 7.2916, 7.29, 7.2893, 7.2882, 7.291, 7.2895, 7.2921, 7.2924, 7.2917, 7.2944, 7.2931, 7.2957, 7.2946, 7.2937, 7.2926, 7.2911, 7.2895, 7.2921, 7.2907, 7.2896, 7.2881, 7.2867, 7.2863, 7.2814, 7.2798, 7.2786, 7.2771, 7.2796, 7.2782, 7.2767, 7.2792, 7.2788, 7.2778, 7.2767, 7.2753, 7.2739, 7.2726, 7.2719, 7.2704, 7.269, 7.2719, 7.2748, 7.274, 7.2729, 7.2756, 7.2784, 7.2769, 7.2764, 7.2754, 7.2793, 7.2784, 7.2773, 7.2764, 7.2752, 7.2739, 7.2768, 7.2756, 7.2781, 7.2732, 7.272, 7.2706, 7.2733, 7.2723, 7.2708, 7.2694, 7.268, 7.2672, 7.2665, 7.2652, 7.2637, 7.2628, 7.2655, 7.2682, 7.2669, 7.2654, 7.2681, 7.281, 7.2796, 7.2782, 7.2808, 7.2794, 7.278, 7.2766, 7.2761, 7.2714, 7.27, 7.2687, 7.2675, 7.2719, 7.2709, 7.2695, 7.2682, 7.2668, 7.2654, 7.2605, 7.2571, 7.2565, 7.2517, 7.2504, 7.254, 7.2533, 7.252, 7.2547, 7.2574, 7.2561, 7.2546, 7.2609, 7.2596, 7.2586, 7.2571, 7.2558, 7.2545, 7.2573, 7.2597, 7.2688, 7.2681, 7.2667, 7.2621, 7.2608, 7.2596, 7.2584, 7.2571, 7.2557, 7.2511, 7.2505, 7.2531, 7.2518, 7.2506, 7.2493, 7.2479, 7.2433, 7.2461, 7.2486, 7.2475, 7.2462, 7.2456, 7.2485, 7.2471, 7.2457, 7.2444, 7.2435, 7.2429, 7.2425, 7.2416, 7.2405, 7.2432, 7.2386, 7.2375, 7.2401, 7.2391, 7.2383, 7.2376, 7.2402, 7.2427, 7.2454, 7.2442, 7.2434, 7.2421, 7.2412, 7.2398, 7.2428, 7.2425, 7.2414, 7.2447, 7.2438, 7.2464, 7.2451, 7.2439, 7.2464, 7.2453, 7.2444, 7.2465, 7.2455, 7.2445, 7.24, 7.2361, 7.2364, 7.2394, 7.242, 7.2409, 7.24, 7.2386, 7.238, 7.2405, 7.2433, 7.242, 7.2376, 7.2399, 7.2425, 7.2412, 7.2402, 7.2392, 7.2383, 7.2373, 7.2362, 7.2352, 7.234, 7.2329, 7.2318, 7.2309, 7.2295, 7.2293, 7.2287, 7.2274, 7.2264, 7.2253, 7.2241, 7.2232, 7.2258, 7.2247, 7.2234, 7.2224, 7.2212, 7.2236, 7.223, 7.2218, 7.221, 7.2276, 7.2265, 7.229, 7.2281, 7.2268, 7.2262, 7.2252, 7.2244, 7.2266, 7.226, 7.2248, 7.2242, 7.223, 7.2251, 7.234, 7.2328, 7.2319, 7.2306, 7.2299, 7.2286, 7.2273, 7.2269, 7.2257, 7.2249, 7.2241, 7.2233, 7.2221, 7.2211, 7.2204, 7.2197, 7.2185, 7.2174, 7.2166, 7.2154, 7.2142, 7.2133, 7.2125, 7.2113, 7.2077, 7.2101, 7.2093, 7.2091, 7.2084, 7.2076, 7.2067, 7.2056, 7.2051, 7.2076, 7.2068, 7.2057, 7.2044, 7.2033, 7.2021, 7.2009, 7.2058, 7.205, 7.2038, 7.2038, 7.2026, 7.202, 7.2013, 7.2006, 7.1995, 7.201, 7.2, 7.1994, 7.2042, 7.203, 7.2062, 7.205, 7.2042, 7.203, 7.2022, 7.2011, 7.2001, 7.1989, 7.2034, 7.2025, 7.2013, 7.2067, 7.2066, 7.2057, 7.2046, 7.2035, 7.2025, 7.2015, 7.1975, 7.1967, 7.1956, 7.1979, 7.1969, 7.1963, 7.1956, 7.1947, 7.1944, 7.1968, 7.196, 7.1981, 7.197, 7.1965, 7.1958, 7.1951, 7.1942, 7.1931, 7.1925, 7.1919, 7.1908, 7.1899, 7.1923, 7.1913, 7.1937, 7.1931, 7.1953, 7.1941, 7.1933, 7.1893, 7.1882, 7.1963, 7.1955, 7.1943, 7.1956, 7.1948, 7.1939, 7.1929, 7.1924, 7.1913, 7.1904, 7.1892, 7.1882, 7.1872, 7.1898, 7.1887, 7.1947, 7.1971, 7.1962, 7.1955, 7.1944, 7.1933, 7.1932, 7.1924, 7.1913, 7.1901, 7.1925, 7.1917, 7.1908, 7.1897, 7.1928, 7.1923, 7.1912, 7.1939, 7.1966, 7.1963, 7.1956, 7.1953, 7.1977, 7.1965, 7.211, 7.2104, 7.2128, 7.2195, 7.2193, 7.2153, 7.2145, 7.2137, 7.2132, 7.2122, 7.2111, 7.2133, 7.2123, 7.2114, 7.2105, 7.2098, 7.209, 7.208, 7.2069, 7.2061, 7.2055, 7.2015, 7.2036, 7.2025, 7.2047, 7.2038, 7.2028, 7.2017, 7.2015, 7.2006, 7.1996, 7.1989, 7.1982, 7.1972, 7.1963, 7.1955, 7.1982, 7.1976, 7.1972, 7.1961, 7.1952, 7.1943, 7.1981, 7.2001, 7.199, 7.1981, 7.2002, 7.1991, 7.1981, 7.1971, 7.1995, 7.1984, 7.1976, 7.1968, 7.196, 7.1953, 7.1947, 7.1969, 7.1961, 7.195, 7.1969, 7.196, 7.1954, 7.1943, 7.1932, 7.1921, 7.1909, 7.1899, 7.1889, 7.1878, 7.1873, 7.1869, 7.1859, 7.1852, 7.1842, 7.1863, 7.1853, 7.1844, 7.1834, 7.1824, 7.1846, 7.1835, 7.1863, 7.1887, 7.1999, 7.1989, 7.1951, 7.194, 7.1961, 7.1925, 7.1916, 7.1907, 7.19, 7.1901, 7.1863, 7.1882, 7.1903, 7.1866, 7.1857, 7.1853, 7.1876, 7.1865, 7.1854, 7.1874, 7.1867, 7.1861, 7.1855, 7.1846, 7.184, 7.1861, 7.1854, 7.1849, 7.1876, 7.1841, 7.1834, 7.183, 7.1819, 7.1838, 7.1827, 7.1821, 7.184, 7.1863, 7.1883, 7.1873, 7.1863, 7.1884, 7.1905, 7.1895, 7.1885, 7.1875, 7.1867, 7.1888, 7.1877, 7.1868, 7.1858, 7.1847, 7.1836, 7.1825, 7.1875, 7.1866, 7.186, 7.185, 7.1842, 7.1861, 7.1881, 7.1871, 7.1865, 7.1854, 7.1871, 7.1891, 7.1881, 7.1871, 7.189, 7.1881, 7.1871, 7.1864, 7.1884, 7.1874, 7.1864, 7.1855, 7.1847, 7.1867, 7.1858, 7.1878, 7.1868, 7.1916, 7.1908, 7.1899, 7.1891, 7.1912, 7.1902, 7.1896, 7.1886, 7.1875, 7.1865, 7.1885, 7.1879, 7.1898, 7.189, 7.1883, 7.1877, 7.187, 7.1889, 7.188, 7.19, 7.189, 7.188, 7.1871, 7.1861, 7.1853, 7.1846, 7.1838, 7.183, 7.1819, 7.1809, 7.1801, 7.1823, 7.1815, 7.181, 7.1803, 7.1825, 7.1791, 7.1781, 7.1801, 7.179, 7.1783, 7.1778, 7.1769, 7.1759, 7.1778, 7.1773, 7.1764, 7.1755, 7.1744, 7.1735, 7.1893, 7.1896, 7.1889, 7.188, 7.1938, 7.1929, 7.192, 7.1911, 7.1967, 7.1963, 7.1953, 7.1922, 7.1941, 7.1932, 7.1953, 7.1973, 7.1966, 7.1986, 7.198, 7.197, 7.1964, 7.1955, 7.1976, 7.197, 7.1964, 7.1982, 7.2006, 7.2028, 7.2018, 7.2009, 7.2, 7.2046, 7.2012, 7.2061, 7.2056, 7.2079, 7.2158, 7.2152, 7.2368, 7.2359, 7.2349, 7.2342, 7.2345, 7.2366, 7.2358, 7.2379, 7.2372, 7.2344, 7.2336, 7.2328, 7.2322, 7.2322, 7.2313, 7.2307, 7.2331, 7.2321, 7.2337, 7.2355, 7.2372, 7.2395, 7.2387, 7.2378, 7.2426, 7.2418, 7.239, 7.2381, 7.2374, 7.2365, 7.2357, 7.2351, 7.2372, 7.2366, 7.2387, 7.2413, 7.2404, 7.2428, 7.2418, 7.2441, 7.2432, 7.2426, 7.2421, 7.2413, 7.2407, 7.2428, 7.2418, 7.2411, 7.2401, 7.2392, 7.2416, 7.241, 7.2448, 7.2466, 7.2457, 7.2476, 7.2472, 7.2492, 7.249, 7.2509, 7.2499, 7.249, 7.248, 7.2472, 7.2518, 7.2623, 7.267, 7.272, 7.2711, 7.2772, 7.2765, 7.2788, 7.2755, 7.2747, 7.2737, 7.2755, 7.2773, 7.2763, 7.2782, 7.2827, 7.2822, 7.2813, 7.286, 7.291, 7.2908, 7.2982, 7.3055, 7.3056, 7.3054, 7.3044, 7.3035, 7.3003, 7.3028, 7.3048, 7.3039, 7.3031, 7.3021, 7.3039, 7.3029, 7.302, 7.3011, 7.3001, 7.2995, 7.299, 7.2981, 7.2971, 7.2964, 7.2955, 7.2948, 7.2944, 7.2935, 7.2926, 7.2949, 7.2941, 7.2931, 7.2921, 7.2911, 7.2927, 7.2921, 7.2915, 7.2906, 7.2922, 7.2913, 7.2904, 7.2897, 7.2893, 7.2883, 7.2876, 7.2867, 7.2861, 7.2852, 7.2869, 7.2861, 7.2856, 7.2874, 7.2865, 7.2857, 7.2847, 7.2843, 7.2859, 7.2853, 7.2844, 7.2835, 7.2852, 7.282, 7.2813, 7.2805, 7.2822, 7.2818, 7.2814, 7.2834, 7.2828, 7.282, 7.2815, 7.2805, 7.2797, 7.2787, 7.2782, 7.2774, 7.2769, 7.2785, 7.2802, 7.2798, 7.2789, 7.2806, 7.2803, 7.2821, 7.2815, 7.2832, 7.2822, 7.2853, 7.2845, 7.2815, 7.2808, 7.28, 7.2793, 7.2811, 7.2802, 7.2797, 7.2789, 7.278, 7.2771, 7.281, 7.2801, 7.2794, 7.2789, 7.278, 7.2771, 7.2765, 7.2783, 7.2774, 7.2771, 7.2765, 7.276, 7.2751, 7.2742, 7.2738, 7.273, 7.2747, 7.2754, 7.2751, 7.2751, 7.2742, 7.2733, 7.2729, 7.2747, 7.2738, 7.2729, 7.2722, 7.2741, 7.2733, 7.2748, 7.2739, 7.2731, 7.2724, 7.272, 7.2712, 7.2708, 7.2702, 7.2694, 7.2685, 7.2726, 7.2719, 7.2712, 7.2756, 7.2748, 7.2844, 7.2843, 7.2837, 7.2828, 7.287, 7.2914, 7.2906, 7.2927, 7.2929, 7.2926, 7.2925, 7.2923, 7.2919, 7.2935, 7.2929, 7.292, 7.2938, 7.2934, 7.2927, 7.292, 7.2936, 7.2953, 7.2948, 7.2941, 7.3009, 7.3004, 7.2995, 7.2989, 7.2982, 7.2976, 7.2969, 7.296, 7.2976, 7.2993, 7.2984, 7.2976, 7.2993, 7.2984, 7.2975, 7.2983, 7.2999, 7.2968, 7.2962, 7.2953, 7.2972, 7.2967, 7.2963, 7.2955, 7.2949, 7.2965, 7.2957, 7.2974, 7.2966, 7.2958, 7.2974, 7.2968, 7.2985, 7.2977, 7.2994, 7.2986, 7.2978, 7.297, 7.2962, 7.2956, 7.2947, 7.2942, 7.2934, 7.293, 7.2923, 7.2918, 7.2934, 7.2925, 7.2919, 7.2911, 7.2902, 7.292, 7.2937, 7.3051, 7.3068, 7.3084, 7.3077, 7.3071, 7.3063, 7.3079, 7.3071, 7.3064, 7.3056, 7.306, 7.3051, 7.3067, 7.3058, 7.308, 7.3074, 7.3065, 7.3058, 7.3049, 7.3043, 7.3038, 7.3054, 7.3024, 7.3016, 7.3013, 7.3006, 7.2997, 7.2988, 7.298, 7.2976, 7.299, 7.2982, 7.2973, 7.2966, 7.2957, 7.2948, 7.294, 7.2958, 7.2974, 7.2965, 7.2957, 7.2948, 7.2944, 7.2935, 7.2926, 7.2921, 7.2918, 7.2913, 7.2908, 7.29, 7.2893, 7.2885, 7.2878, 7.2873, 7.2868, 7.286, 7.2878, 7.2896, 7.2891, 7.2884, 7.2876, 7.2871, 7.2865, 7.2857, 7.2875, 7.2867, 7.2859, 7.2851, 7.2867, 7.286, 7.2852, 7.2845, 7.2836, 7.2851, 7.2846, 7.2838, 7.2851, 7.2842, 7.2857, 7.2848, 7.284, 7.2857, 7.2873, 7.2865, 7.2857, 7.285, 7.2864, 7.2857, 7.2849, 7.2844, 7.2836, 7.285, 7.2841, 7.2855, 7.2853, 7.2846, 7.2837, 7.2829, 7.2823, 7.2816, 7.281, 7.2803, 7.2797, 7.279, 7.2783, 7.2775, 7.279, 7.2786, 7.2803, 7.2797, 7.2791, 7.2786, 7.2779, 7.2773, 7.2768, 7.2765, 7.2758, 7.2756, 7.2748, 7.2739, 7.2738, 7.2733, 7.2726, 7.2742, 7.2735, 7.2738, 7.2736, 7.2728, 7.2722, 7.2714, 7.271, 7.2726, 7.2719, 7.2713, 7.2707, 7.2699, 7.2709, 7.2701, 7.2733, 7.275, 7.2742, 7.2734, 7.2731, 7.2724, 7.2717, 7.271, 7.2706, 7.2698, 7.2692, 7.2688, 7.2682, 7.2675, 7.267, 7.2664, 7.2643, 7.2662, 7.2656, 7.265, 7.2644, 7.2636, 7.263, 7.2624, 7.2682, 7.2676, 7.2667, 7.2639, 7.2633, 7.2646, 7.2639, 7.2631, 7.2646, 7.264, 7.2655, 7.2648, 7.2662, 7.2657, 7.2649, 7.2646, 7.2638, 7.263, 7.2707, 7.2699, 7.2692, 7.2685, 7.27, 7.2692, 7.2686, 7.2702, 7.2696, 7.2691, 7.2692, 7.2705, 7.272, 7.2714, 7.273, 7.2723, 7.2718, 7.271, 7.2702, 7.2717, 7.2711, 7.2703, 7.2695, 7.271, 7.2702, 7.2696, 7.2692, 7.2665, 7.268, 7.2674, 7.2653, 7.2654, 7.2626, 7.2625, 7.262, 7.2614, 7.2611, 7.2604, 7.2597, 7.259, 7.2614, 7.2646, 7.2619, 7.2633, 7.2626, 7.262, 7.2635, 7.2628, 7.263, 7.2631, 7.2666, 7.2665, 7.2684, 7.2679, 7.2673, 7.2666, 7.2681, 7.2678, 7.2678, 7.2671, 7.2665, 7.2657, 7.2672, 7.2666, 7.266, 7.2687, 7.2679, 7.2671, 7.2666, 7.2659, 7.2653, 7.2632, 7.2649, 7.2659, 7.2652, 7.2624, 7.2617, 7.2631, 7.2657, 7.2649, 7.2641, 7.2634, 7.2667, 7.2664, 7.266, 7.2656, 7.265, 7.2643, 7.2636, 7.2628, 7.2621, 7.2614, 7.2606, 7.26, 7.2613, 7.2628, 7.2623, 7.2617, 7.261, 7.2605, 7.2598, 7.259, 7.2582, 7.2616, 7.2615, 7.2611, 7.2584, 7.2579, 7.2574, 7.2567, 7.254, 7.2555, 7.2548, 7.254, 7.2533, 7.2506, 7.2531, 7.2524, 7.2536, 7.2529, 7.2523, 7.2539, 7.2533, 7.2526, 7.2518, 7.2512, 7.2507, 7.25, 7.2514, 7.2507, 7.25, 7.2514, 7.2508, 7.25, 7.2494, 7.2486, 7.2503, 7.2497, 7.2492, 7.2488, 7.2482, 7.2475, 7.2491, 7.2484, 7.2478, 7.247, 7.2484, 7.2476, 7.2491, 7.2485, 7.2478, 7.2493, 7.2486, 7.2479, 7.2496, 7.2501, 7.2514, 7.2511, 7.2524, 7.2537, 7.2533, 7.2527, 7.2542, 7.2556, 7.255, 7.2562, 7.2555, 7.255, 7.2565, 7.2558, 7.2552, 7.2545, 7.2519, 7.2534, 7.2548, 7.2542, 7.2556, 7.2552, 7.2545, 7.2537, 7.2532, 7.2525, 7.2542, 7.2535, 7.2529, 7.2522, 7.2515, 7.2508, 7.2525, 7.2523, 7.2516, 7.2531, 7.2526, 7.254, 7.2533, 7.2526, 7.2541, 7.2535, 7.2532, 7.2528, 7.2526, 7.2519, 7.2532, 7.2525, 7.2577, 7.2574, 7.2593, 7.2586, 7.2598, 7.2593, 7.2585, 7.2577, 7.2571, 7.2563, 7.2556, 7.2548, 7.254, 7.2554, 7.255, 7.2543, 7.2556, 7.256, 7.2553, 7.2546, 7.254, 7.2535, 7.255, 7.2544, 7.2538, 7.2532, 7.2527, 7.2507, 7.2482, 7.2479, 7.2473, 7.2488, 7.251, 7.2511, 7.2506, 7.2521, 7.2516, 7.2508, 7.2522, 7.2515, 7.2551, 7.2544, 7.2537, 7.253, 7.2507, 7.2521, 7.2535, 7.2528, 7.2526, 7.2519, 7.2534, 7.2527, 7.2541, 7.2556, 7.255, 7.2544, 7.2539, 7.2532, 7.2527, 7.252, 7.2515, 7.251, 7.2502, 7.2516, 7.2509, 7.2503, 7.2517, 7.2533, 7.257, 7.2585, 7.2587, 7.2582, 7.2577, 7.2552, 7.2546, 7.2542, 7.2536, 7.2529, 7.2523, 7.2516, 7.2512, 7.2509, 7.2488, 7.2502, 7.2495, 7.2528, 7.2526, 7.2507, 7.25, 7.2493, 7.2491, 7.2505, 7.2498, 7.2497, 7.2511, 7.251, 7.2523, 7.2516, 7.2529, 7.2524, 7.2519, 7.2515, 7.2509, 7.2503, 7.2498, 7.2512, 7.2507, 7.2501, 7.2513, 7.2507, 7.2502, 7.2495, 7.2492, 7.2486, 7.2481, 7.2477, 7.247, 7.2484, 7.2496, 7.2489, 7.2482, 7.2477, 7.2471, 7.2464, 7.2457, 7.245, 7.2443, 7.2436, 7.2435, 7.2429, 7.2423, 7.2417, 7.2421, 7.2417, 7.243, 7.2423, 7.2417, 7.243, 7.2424, 7.2437, 7.243, 7.2424, 7.2418, 7.2394, 7.239, 7.239, 7.2384, 7.2398, 7.2398, 7.2391, 7.2388, 7.2383, 7.2376, 7.237, 7.2365, 7.236, 7.2373, 7.2366, 7.2359, 7.2352, 7.2365, 7.236, 7.2353, 7.2366, 7.2359, 7.2374, 7.2367, 7.2379, 7.2372, 7.2365, 7.2379, 7.2372, 7.2368, 7.2363, 7.2376, 7.237, 7.2346, 7.236, 7.2354, 7.2347, 7.2341, 7.2336, 7.2349, 7.2342, 7.2338, 7.2341, 7.2334, 7.2327, 7.2321, 7.2318, 7.2313, 7.2309, 7.2302, 7.2296, 7.2289, 7.2302, 7.2297, 7.2291, 7.2286, 7.228, 7.2283, 7.2296, 7.2291, 7.2287, 7.2282, 7.2295, 7.2289, 7.2301, 7.2294, 7.2308, 7.2303, 7.2362, 7.2357, 7.2351, 7.2345, 7.2342, 7.2339, 7.2335, 7.2331, 7.2308, 7.2302, 7.2295, 7.229, 7.2284, 7.2289, 7.2283, 7.2281, 7.2275, 7.227, 7.2271, 7.2289, 7.2323, 7.2339, 7.2377, 7.2378, 7.2372, 7.2385, 7.2399, 7.2393, 7.2388, 7.24, 7.2414, 7.2408, 7.2402, 7.2432, 7.2426, 7.2422, 7.2435, 7.2428, 7.2424, 7.2418, 7.2415, 7.2429, 7.2423, 7.2417, 7.2411, 7.2406, 7.242, 7.2414, 7.2408, 7.2387, 7.2383, 7.238, 7.2393, 7.2386, 7.2381, 7.2387, 7.24, 7.2394, 7.2389, 7.2383, 7.2376, 7.2371, 7.2365, 7.2359, 7.2336, 7.233, 7.2323, 7.2344, 7.2339, 7.2374, 7.2367, 7.236, 7.2449, 7.2445, 7.2439, 7.2434, 7.2433, 7.2427, 7.2421, 7.2416, 7.2413, 7.2425, 7.2421, 7.2415, 7.2409, 7.2422, 7.2418, 7.2412, 7.2407, 7.242, 7.2432, 7.2427, 7.2423, 7.2416, 7.2428, 7.2422, 7.2417, 7.2411, 7.2423, 7.2435, 7.243, 7.2425, 7.242, 7.2415, 7.2409, 7.2404, 7.2426, 7.2422, 7.2416, 7.2413, 7.2425, 7.2439, 7.244, 7.2453, 7.2465, 7.246, 7.2457, 7.2469, 7.2465, 7.2478, 7.2474, 7.2469, 7.2466, 7.246, 7.246, 7.2473, 7.247, 7.2464, 7.246, 7.2454, 7.2448, 7.2442, 7.2435, 7.2432, 7.2426, 7.242, 7.2433, 7.2426, 7.2457, 7.2452, 7.2449, 7.2461, 7.246, 7.2455, 7.2452, 7.2469, 7.2463, 7.2457, 7.2455, 7.2451, 7.2447, 7.244, 7.2433, 7.2445, 7.2441, 7.2436, 7.2448, 7.2442, 7.2456, 7.2451, 7.2444, 7.244, 7.2436, 7.2429, 7.2442, 7.2436, 7.2413, 7.2408, 7.2386, 7.2402, 7.2398, 7.2391, 7.2385, 7.2381, 7.2396, 7.2392, 7.2404, 7.2399, 7.2392, 7.2386, 7.2397, 7.239, 7.2387, 7.2384, 7.2378, 7.2375, 7.2369, 7.2382, 7.2375, 7.2369, 7.2346, 7.2339, 7.2333, 7.2345, 7.234, 7.2334, 7.2345, 7.234, 7.2335, 7.2346, 7.2358, 7.2353, 7.2348, 7.2349, 7.2344, 7.234, 7.2336, 7.233, 7.2327, 7.2321, 7.2315, 7.2347, 7.2368, 7.2363, 7.2358, 7.237, 7.2364, 7.2358, 7.2352, 7.2364, 7.2363, 7.2357, 7.2352, 7.2347, 7.2344, 7.2346, 7.2358, 7.2352, 7.2348, 7.236, 7.2355, 7.2349, 7.2399, 7.2394, 7.2406, 7.2401, 7.2395, 7.2389, 7.2386, 7.238, 7.2375, 7.237, 7.2365, 7.2377, 7.2371, 7.2365, 7.2361, 7.2372, 7.2367, 7.2378, 7.2372, 7.2366, 7.2365, 7.236, 7.2357, 7.2351, 7.2346, 7.234, 7.2335, 7.2332, 7.2315, 7.2309, 7.2303, 7.2315, 7.2309, 7.2321, 7.2332, 7.2329, 7.2327, 7.2328, 7.2322, 7.2334, 7.2347, 7.2341, 7.2353, 7.2347, 7.2359, 7.2353, 7.235, 7.2344, 7.2338, 7.2333, 7.2327, 7.2339, 7.2333, 7.2345, 7.2342, 7.2335, 7.235, 7.2344, 7.2338, 7.235, 7.2345, 7.2345, 7.2342, 7.2353, 7.2347, 7.2342, 7.2336, 7.2348, 7.2342, 7.2338, 7.2334, 7.2329, 7.2325, 7.2337, 7.2333, 7.2328, 7.2322, 7.2334, 7.233, 7.2326, 7.2325, 7.2326, 7.2323, 7.2319, 7.2316, 7.233, 7.2324, 7.2319, 7.2332, 7.2326, 7.2321, 7.2316, 7.233, 7.2326, 7.2325, 7.232, 7.2334, 7.2329, 7.2307, 7.2302, 7.2296, 7.229, 7.2287, 7.2284, 7.2281, 7.2275, 7.2269, 7.2269, 7.2263, 7.2258, 7.227, 7.2264, 7.2263, 7.2257, 7.2254, 7.2248, 7.2243, 7.2237, 7.2232, 7.2229, 7.2209, 7.2209, 7.2205, 7.2203, 7.2197, 7.2192, 7.2192, 7.2204, 7.2199, 7.2194, 7.219, 7.2185, 7.2179, 7.2174, 7.2169, 7.2164, 7.216, 7.2158, 7.2154, 7.2198, 7.2192, 7.2189, 7.2183, 7.2177, 7.2173, 7.2184, 7.2181, 7.2179, 7.221, 7.2206, 7.2201, 7.2213, 7.2208, 7.2203, 7.2202, 7.2196, 7.219, 7.22, 7.2194, 7.2189, 7.2184, 7.2186, 7.2199, 7.221, 7.2207, 7.2201, 7.2197, 7.2192, 7.2186, 7.2181, 7.2187, 7.2183, 7.2177, 7.2173, 7.217, 7.2167, 7.2178, 7.2175, 7.2189, 7.2184, 7.2181, 7.2176, 7.2173, 7.2171, 7.2168, 7.2181, 7.2177, 7.2172, 7.2167, 7.2182, 7.2212, 7.2206, 7.2201, 7.2196, 7.2191, 7.2185, 7.2179, 7.2175, 7.217, 7.2164, 7.2158, 7.2153, 7.215, 7.2144, 7.2154, 7.2148, 7.2142, 7.2141, 7.2135, 7.2146, 7.214, 7.215, 7.2144, 7.2138, 7.2135, 7.2115, 7.211, 7.2105, 7.2102, 7.2098, 7.2117, 7.2111, 7.2105, 7.2101, 7.2096, 7.213, 7.2141, 7.2136, 7.213, 7.2131, 7.2126, 7.2137, 7.2148, 7.2159, 7.217, 7.215, 7.2144, 7.2138, 7.2149, 7.2176, 7.2173, 7.2184, 7.2195, 7.2192, 7.2186, 7.2201, 7.2195, 7.2206, 7.22, 7.2195, 7.2189, 7.2184, 7.2179, 7.2174, 7.2169, 7.2165, 7.2175, 7.2172, 7.2173, 7.2186, 7.2197, 7.2215, 7.2209, 7.2205, 7.2213, 7.2223, 7.2233, 7.2249, 7.2244, 7.2255, 7.2249, 7.2244, 7.2243, 7.2238, 7.2235, 7.2229, 7.2223, 7.2234, 7.2248, 7.2244, 7.2239, 7.2233, 7.2248, 7.2244, 7.2239, 7.2234, 7.2228, 7.2223, 7.2218, 7.223, 7.2226, 7.2237, 7.2247, 7.2243, 7.2254, 7.2249, 7.226, 7.2256, 7.2252, 7.2248, 7.2243, 7.2238, 7.2234, 7.2244, 7.2238, 7.2235, 7.2231, 7.2226, 7.2223, 7.2217, 7.2227, 7.2224, 7.2237, 7.2231, 7.2228, 7.2225, 7.222, 7.22, 7.2194, 7.2211, 7.2206, 7.2201, 7.2202, 7.2196, 7.2193, 7.2187, 7.2181, 7.2176, 7.2173, 7.2168, 7.2163, 7.2173, 7.2167, 7.2148, 7.2144, 7.2139, 7.2151, 7.2148, 7.2158, 7.2153, 7.2149, 7.2159, 7.2154, 7.2151, 7.2146, 7.2141, 7.2136, 7.2139, 7.215, 7.2171, 7.2182, 7.2192, 7.2187, 7.2182, 7.2191, 7.2186, 7.2181, 7.2181, 7.2176, 7.2172, 7.2167, 7.2148, 7.2143, 7.2139, 7.2133, 7.213, 7.2125, 7.2136, 7.213, 7.2126, 7.2127, 7.2125, 7.2121, 7.2137, 7.2131, 7.2126, 7.2123, 7.2119, 7.2114, 7.2108, 7.2102, 7.2097, 7.2134, 7.2129, 7.2125, 7.2122, 7.2133, 7.2128, 7.2123, 7.2118, 7.2114, 7.2112, 7.2107, 7.2117, 7.2114, 7.2109, 7.2108, 7.2103, 7.2098, 7.2093, 7.2087, 7.2145, 7.2126, 7.2137, 7.2149, 7.2149, 7.2143, 7.2155, 7.2149, 7.2144, 7.214, 7.2135, 7.2116, 7.2111, 7.2122, 7.2116, 7.2112, 7.2122, 7.2133, 7.2128, 7.2127, 7.214, 7.2122, 7.2116, 7.2113, 7.2108, 7.2103, 7.2099, 7.2094, 7.2104, 7.21, 7.2095, 7.2105, 7.21, 7.2095, 7.2169, 7.2166, 7.216, 7.2154, 7.2149, 7.2145, 7.2141, 7.2137, 7.2146, 7.2144, 7.217, 7.2165, 7.2162, 7.2157, 7.2166, 7.2162, 7.2159, 7.2154, 7.2153, 7.2135, 7.2133, 7.213, 7.214, 7.2136, 7.2133, 7.213, 7.2126, 7.2123, 7.2137, 7.2134, 7.213, 7.2135, 7.2129, 7.2124, 7.2121, 7.2117, 7.2115, 7.2125, 7.2125, 7.212, 7.2137, 7.2163, 7.2159, 7.217, 7.2165, 7.2162, 7.2157, 7.2152, 7.2156, 7.2153, 7.2151, 7.2149, 7.2145, 7.2141, 7.2136, 7.2118, 7.2144, 7.2139, 7.215, 7.2145, 7.214, 7.2135, 7.2129, 7.2138, 7.2134, 7.2131, 7.2142, 7.2137, 7.2132, 7.2128, 7.2124, 7.212, 7.2117, 7.2112, 7.2107, 7.2118, 7.2114, 7.2125, 7.2119, 7.2114, 7.2111, 7.2106, 7.2115, 7.2112, 7.2106, 7.2102, 7.2098, 7.2103, 7.2104, 7.21, 7.211, 7.2109, 7.2107, 7.2106, 7.2118, 7.2115, 7.2096, 7.2105, 7.2124, 7.2122, 7.2131, 7.2126, 7.2122, 7.2118, 7.2113, 7.211, 7.2119, 7.2114, 7.211, 7.2105, 7.2131, 7.2127, 7.2123, 7.2121, 7.2146, 7.2141, 7.2138, 7.2139, 7.2125, 7.2135, 7.213, 7.2125, 7.2138, 7.2133, 7.2129, 7.2139, 7.2135, 7.2146, 7.2155, 7.2151, 7.2148, 7.2144, 7.214, 7.2154, 7.2155, 7.2151, 7.2147, 7.2142, 7.2137, 7.2131, 7.2129, 7.2139, 7.2149, 7.2144, 7.2139, 7.2136, 7.2132, 7.2127, 7.2124, 7.2119, 7.2114, 7.2124, 7.2122, 7.2104, 7.21, 7.2097, 7.2093, 7.2088, 7.2086, 7.2081, 7.2076, 7.2071, 7.2081, 7.2076, 7.2071, 7.2083, 7.2078, 7.2076, 7.2073, 7.2055, 7.205, 7.2045, 7.204, 7.2051, 7.2061, 7.2074, 7.2084, 7.2079, 7.2073, 7.2083, 7.2081, 7.2076, 7.2085, 7.208, 7.2075, 7.2075, 7.2071, 7.2066, 7.2063, 7.2074, 7.2072, 7.2068, 7.2078, 7.2073, 7.2068, 7.2073, 7.2069, 7.2065, 7.2075, 7.2084, 7.2079, 7.2074, 7.2071, 7.2066, 7.2076, 7.2071, 7.2081, 7.2091, 7.2101, 7.2096, 7.2091, 7.2087, 7.2083, 7.2078, 7.2073, 7.2101, 7.2097, 7.2157, 7.2167, 7.2166, 7.2164, 7.2174, 7.217, 7.2165, 7.2162, 7.2159, 7.2156, 7.2152, 7.2164, 7.2159, 7.2155, 7.2165, 7.2162, 7.2159, 7.217, 7.2165, 7.2147, 7.2157, 7.2182, 7.2196, 7.2192, 7.2189, 7.2186, 7.2182, 7.2179, 7.2175, 7.217, 7.2167, 7.2165, 7.2163, 7.216, 7.2156, 7.2168, 7.2164, 7.2169, 7.2179, 7.2175, 7.217, 7.2182, 7.2178, 7.2175, 7.2188, 7.2184, 7.2179, 7.2188, 7.2183, 7.2194, 7.219, 7.22, 7.2212, 7.2207, 7.2204, 7.2214, 7.2209, 7.2219, 7.2214, 7.2224, 7.2219, 7.2216, 7.2225, 7.222, 7.2216, 7.2211, 7.2208, 7.2204, 7.2199, 7.2194, 7.2189, 7.2184, 7.218, 7.2191, 7.2187, 7.2183, 7.2179, 7.2189, 7.2184, 7.2179, 7.2177, 7.2172, 7.2169, 7.2165, 7.2161, 7.2156, 7.2151, 7.2147, 7.2142, 7.2172, 7.2167, 7.2165, 7.216, 7.2155, 7.2151, 7.2146, 7.2144, 7.214, 7.2137, 7.2134, 7.2131, 7.2127, 7.2139, 7.2137, 7.2133, 7.2143, 7.2138, 7.2133, 7.2128, 7.2123, 7.2119, 7.2114, 7.211, 7.2119, 7.2129, 7.2124, 7.2134, 7.2131, 7.2141, 7.2151, 7.2163, 7.216, 7.2155, 7.2154, 7.2152, 7.2149, 7.2146, 7.2142, 7.2138, 7.2133, 7.2129, 7.2125, 7.2121, 7.2119, 7.2114, 7.2109, 7.2105, 7.2103, 7.2155, 7.2156, 7.2166, 7.2163, 7.2173, 7.2169, 7.2164, 7.2159, 7.2154, 7.2164, 7.2162, 7.2178, 7.2179, 7.2175, 7.2172, 7.2169, 7.2165, 7.2148, 7.2143, 7.2154, 7.215, 7.2147, 7.2143, 7.2138, 7.2133, 7.2129, 7.2124, 7.2142, 7.215, 7.2159, 7.2154, 7.215, 7.2146, 7.2162, 7.2158, 7.2168, 7.2165, 7.2173, 7.2168, 7.2163, 7.2172, 7.2168, 7.2163, 7.2158, 7.2153, 7.2163, 7.2159, 7.2156, 7.2166, 7.2161, 7.2158, 7.2167, 7.2162, 7.2157, 7.2154, 7.2137, 7.2151, 7.2148, 7.2145, 7.2141, 7.2137, 7.2121, 7.2119, 7.2115, 7.211, 7.2106, 7.2115, 7.2124, 7.212, 7.2117, 7.2112, 7.2127, 7.2137, 7.2133, 7.213, 7.2125, 7.2135, 7.2131, 7.214, 7.215, 7.2147, 7.2144, 7.2139, 7.2134, 7.2144, 7.214, 7.2141, 7.2144, 7.2143, 7.2139, 7.2135, 7.2118, 7.2114, 7.211, 7.2105, 7.21, 7.2108, 7.2104, 7.21, 7.2109, 7.2106, 7.2103, 7.2111, 7.2106, 7.2102, 7.2097, 7.2094, 7.2103, 7.2086, 7.2081, 7.2089, 7.2085, 7.208, 7.2078, 7.2088, 7.2086, 7.2081, 7.209, 7.2085, 7.208, 7.2078, 7.2076, 7.2071, 7.2081, 7.2077, 7.2074, 7.2084, 7.2081, 7.2078, 7.2101, 7.2099, 7.2164, 7.216, 7.2157, 7.2152, 7.2139, 7.2134, 7.2156, 7.2153, 7.2149, 7.2145, 7.2141, 7.215, 7.2161, 7.2162, 7.2157, 7.2154, 7.2164, 7.2187, 7.2183, 7.2194, 7.219, 7.2187, 7.2182, 7.2193, 7.2206, 7.2202, 7.2198, 7.2207, 7.2204, 7.2204, 7.2202, 7.2198, 7.2196, 7.2205, 7.2214, 7.221, 7.2206, 7.2204, 7.22, 7.2196, 7.2205, 7.2202, 7.2197, 7.2193, 7.2189, 7.2184, 7.2194, 7.2203, 7.2212, 7.2208, 7.2217, 7.2215, 7.2211, 7.222, 7.2229, 7.2224, 7.2221, 7.2217, 7.2214, 7.2217, 7.2214, 7.2223, 7.2219, 7.2216, 7.2226, 7.2224, 7.2224, 7.2223, 7.2243, 7.224, 7.2235, 7.2231, 7.2227, 7.2223, 7.2233, 7.223, 7.2226, 7.2222, 7.2218, 7.2215, 7.2212, 7.2209, 7.2205, 7.2201, 7.2197, 7.2192, 7.219, 7.2186, 7.2238, 7.2233, 7.2229, 7.2224, 7.2221, 7.2216, 7.2225, 7.222, 7.2215, 7.2239, 7.2234, 7.2243, 7.2238, 7.2234, 7.2229, 7.2224, 7.222, 7.2217, 7.2214, 7.2209, 7.2207, 7.2207, 7.2202, 7.2197, 7.2194, 7.2191, 7.2186, 7.2181, 7.2177, 7.2172, 7.2169, 7.2177, 7.2185, 7.2223, 7.222, 7.2216, 7.2212, 7.2209, 7.2205, 7.2214, 7.221, 7.2207, 7.2216, 7.2225, 7.2221, 7.223, 7.2227, 7.2237, 7.2245, 7.2241, 7.2239, 7.2234, 7.223, 7.2227, 7.2282, 7.2281, 7.2278, 7.2274, 7.227, 7.2267, 7.2263, 7.2258, 7.2281, 7.2278, 7.2275, 7.227, 7.227, 7.2266, 7.2276, 7.2273, 7.2272, 7.2282, 7.228, 7.2275, 7.2272, 7.2275, 7.2272, 7.2269, 7.2265, 7.2261, 7.2265, 7.2261, 7.2257, 7.2254, 7.2251, 7.226, 7.2271, 7.2272, 7.2269, 7.2253, 7.225, 7.2248, 7.2246, 7.2243, 7.2238, 7.2236, 7.2237, 7.2247, 7.2289, 7.2284, 7.2289, 7.2286, 7.2283, 7.2291, 7.2288, 7.2284, 7.228, 7.2295, 7.2304, 7.23, 7.2309, 7.2317, 7.2341, 7.2336, 7.2332, 7.2329, 7.2325, 7.2323, 7.2331, 7.2327, 7.2326, 7.2323, 7.2319, 7.2341, 7.2326, 7.2334, 7.233, 7.2339, 7.2335, 7.2343, 7.2339, 7.2348, 7.2344, 7.2353, 7.2349, 7.2344, 7.234, 7.2336, 7.2332, 7.2336, 7.2347, 7.2356, 7.2365, 7.2361, 7.2357, 7.2353, 7.2351, 7.2348, 7.2357, 7.2355, 7.2353, 7.2351, 7.2336, 7.2344, 7.234, 7.2348, 7.2359, 7.2343, 7.2352, 7.2348, 7.2345, 7.2341, 7.2342, 7.2338, 7.2323, 7.2328, 7.2368, 7.2382, 7.2382, 7.2377, 7.2377, 7.2372, 7.2381, 7.2377, 7.239, 7.2386, 7.2395, 7.2391, 7.2399, 7.242, 7.2416, 7.2412, 7.2464, 7.246, 7.2456, 7.2453, 7.2461, 7.2457, 7.2453, 7.2453, 7.2449, 7.2458, 7.2479, 7.2477, 7.2477, 7.2462, 7.2459, 7.2455, 7.245, 7.2446, 7.2443, 7.2451, 7.2447, 7.2443, 7.2452, 7.2437, 7.2445, 7.2441, 7.2449, 7.2446, 7.2442, 7.2451, 7.2448, 7.2444, 7.244, 7.244, 7.2437, 7.2445, 7.2441, 7.2437, 7.2475, 7.2472, 7.2468, 7.2465, 7.2461, 7.2457, 7.2477, 7.2473, 7.2481, 7.2477, 7.2473, 7.247, 7.2476, 7.2474, 7.2499, 7.2495, 7.2503, 7.2499, 7.2509, 7.2518, 7.2515, 7.2511, 7.2519, 7.2516, 7.2534, 7.2533, 7.2518, 7.2514, 7.2513, 7.2522, 7.2531, 7.2528, 7.2525, 7.2522, 7.2531, 7.2529, 7.2525, 7.2521, 7.2519, 7.2515, 7.2526, 7.2521, 7.2527, 7.2525, 7.2523, 7.252, 7.2516, 7.2513, 7.2511, 7.2506, 7.2514, 7.2511, 7.2506, 7.2515, 7.251, 7.2506, 7.2514, 7.2523, 7.252, 7.2516, 7.2512, 7.2508, 7.2492, 7.2488, 7.2484, 7.2481, 7.2477, 7.2476, 7.2484, 7.248, 7.2476, 7.2475, 7.2471, 7.2468, 7.2465, 7.2461, 7.2457, 7.2463, 7.2459, 7.2467, 7.2475, 7.2482, 7.2478, 7.2475, 7.2482, 7.2479, 7.2475, 7.2471, 7.2492, 7.2487, 7.2492, 7.2488, 7.2485, 7.248, 7.2477, 7.2473, 7.2469, 7.2477, 7.2473, 7.2469, 7.2465, 7.2464, 7.246, 7.2457, 7.2454, 7.2462, 7.2458, 7.2454, 7.245, 7.2445, 7.2453, 7.2461, 7.2457, 7.2468, 7.2476, 7.2492, 7.2488, 7.2496, 7.2493, 7.2494, 7.2502, 7.25, 7.2496, 7.2493, 7.2491, 7.2499, 7.252, 7.2505, 7.2502, 7.2498, 7.2509, 7.2518, 7.2561, 7.2557, 7.2555, 7.2541, 7.2537, 7.2546, 7.2554, 7.2553, 7.255, 7.2546, 7.2543, 7.2539, 7.2535, 7.2531, 7.2539, 7.2536, 7.2532, 7.254, 7.2536, 7.2532, 7.2528, 7.2524, 7.2521, 7.2517, 7.2514, 7.2512, 7.2508, 7.2517, 7.2513, 7.2521, 7.2529, 7.2538, 7.2545, 7.2541, 7.2537, 7.2534, 7.2532, 7.2528, 7.2526, 7.2621, 7.2618, 7.2656, 7.2665, 7.2661, 7.2668, 7.2676, 7.2684, 7.2682, 7.2691, 7.2676, 7.2684, 7.2692, 7.2688, 7.2696, 7.2703, 7.2699, 7.2697, 7.2705, 7.2714, 7.2718, 7.2714, 7.2722, 7.2718, 7.2715, 7.2711, 7.2708, 7.2704, 7.2705, 7.2702, 7.2698, 7.2694, 7.2704, 7.2712, 7.2708, 7.2694, 7.2702, 7.271, 7.2719, 7.2715, 7.2711, 7.2719, 7.2715, 7.2711, 7.2719, 7.2715, 7.2711, 7.2718, 7.2738, 7.2735, 7.2731, 7.2727, 7.2728, 7.2736, 7.2744, 7.2741, 7.2737, 7.2734, 7.273, 7.2726, 7.2734, 7.2743, 7.2739, 7.2734, 7.273, 7.2729, 7.2725, 7.2721, 7.273, 7.2739, 7.2748, 7.2744, 7.2753, 7.2749, 7.2746, 7.2743, 7.2738, 7.2734, 7.2731, 7.2727, 7.2723, 7.2719, 7.2741, 7.2738, 7.2734, 7.273, 7.2727, 7.2724, 7.2732, 7.2745, 7.2742, 7.2738, 7.2735, 7.2733, 7.2729, 7.2725, 7.2722, 7.2718, 7.2716, 7.2712, 7.2711, 7.2719, 7.2717, 7.2702, 7.2698, 7.2696, 7.2692, 7.2701, 7.2697, 7.2694, 7.269, 7.2685, 7.2681, 7.2677, 7.2686, 7.2682, 7.2678, 7.2664, 7.2672, 7.268, 7.2676, 7.2673, 7.2681, 7.2677, 7.2673, 7.2681, 7.2678, 7.2674, 7.2671, 7.2669, 7.2665, 7.2681, 7.2677, 7.2674, 7.2681, 7.2678, 7.2697, 7.2695, 7.2691, 7.2688, 7.2685, 7.2692, 7.27, 7.2697, 7.2693, 7.2691, 7.2699, 7.2695, 7.2692, 7.2689, 7.2685, 7.2693, 7.2701, 7.2697, 7.2705, 7.269, 7.2698, 7.2706, 7.2703, 7.271, 7.2708, 7.2705, 7.2701, 7.2698, 7.2696, 7.2695, 7.2714, 7.271, 7.278, 7.2776, 7.2774, 7.2782, 7.2778, 7.2774, 7.2771, 7.278, 7.2787, 7.2784, 7.278, 7.2776, 7.2774, 7.2771, 7.2768, 7.2764, 7.2762, 7.2759, 7.2755, 7.2742, 7.2749, 7.2748, 7.2744, 7.274, 7.2737, 7.2733, 7.273, 7.2727, 7.2724, 7.2723, 7.2727, 7.2725, 7.2745, 7.2741, 7.2761, 7.2748, 7.2798, 7.2795, 7.2791, 7.2776, 7.2783, 7.2813, 7.2798, 7.2794, 7.2791, 7.2805, 7.2801, 7.2798, 7.2819, 7.2815, 7.2811, 7.2807, 7.2826, 7.2824, 7.282, 7.2816, 7.2814, 7.2845, 7.2882, 7.2882, 7.2878, 7.2886, 7.2882, 7.2878, 7.2876, 7.2872, 7.287, 7.2867, 7.2874, 7.2905, 7.2901, 7.2905, 7.2901, 7.2898, 7.2906, 7.2914, 7.2922, 7.2919, 7.2927, 7.2936, 7.2932, 7.294, 7.2948, 7.2945, 7.2941, 7.2938, 7.2934, 7.293, 7.2934, 7.2997, 7.3004, 7.3012, 7.302, 7.3017, 7.3013, 7.301, 7.3006, 7.3003, 7.2999, 7.2997, 7.2995, 7.2991, 7.2987, 7.2995, 7.2991, 7.2999, 7.2995, 7.2993, 7.299, 7.2988, 7.2984, 7.298, 7.2977, 7.2974, 7.2981, 7.2979, 7.2975, 7.2972, 7.2979, 7.2976, 7.2972, 7.2972, 7.2968, 7.2982, 7.2978, 7.2974, 7.296, 7.2968, 7.2975, 7.2976, 7.2974, 7.297, 7.2966, 7.2962, 7.2959, 7.2956, 7.2952, 7.2948, 7.295, 7.2948, 7.2957, 7.2943, 7.295, 7.2958, 7.2956, 7.2963, 7.2959, 7.2955, 7.2962, 7.2958, 7.2954, 7.295, 7.2946, 7.2943, 7.295, 7.2957, 7.2953, 7.2952, 7.296, 7.2956, 7.2953, 7.2961, 7.2958, 7.2955, 7.2951, 7.2947, 7.2943, 7.2939, 7.2991, 7.3, 7.3, 7.2998, 7.2997, 7.3005, 7.3003, 7.299, 7.2997, 7.3005, 7.3013, 7.3032, 7.3031, 7.3027, 7.3046, 7.3055, 7.3076, 7.3073, 7.307, 7.3068, 7.3066, 7.3062, 7.3069, 7.3067, 7.307, 7.3081, 7.308, 7.3089, 7.3087, 7.3084, 7.3081, 7.3077, 7.3074, 7.3105, 7.3107, 7.3096, 7.3094, 7.3093, 7.3089, 7.3085, 7.3118, 7.3117, 7.3113, 7.3109, 7.3126, 7.3122, 7.3129, 7.3126, 7.3122, 7.3118, 7.3115, 7.3112, 7.3119, 7.3125, 7.3121, 7.3128, 7.3126, 7.3122, 7.3119, 7.3116, 7.3112, 7.3108, 7.3104, 7.31, 7.3097, 7.3093, 7.309, 7.3087, 7.3119, 7.3115, 7.3112, 7.3109, 7.3108, 7.3115, 7.3115, 7.3123, 7.3119, 7.3116, 7.3113, 7.3111, 7.3108, 7.3106, 7.3102, 7.309, 7.3097, 7.3093, 7.31, 7.3099, 7.3106, 7.3102, 7.3098, 7.3105, 7.3102, 7.311, 7.3107, 7.3103, 7.3101, 7.3108, 7.3115, 7.3122, 7.3119, 7.3126, 7.3122, 7.3129, 7.3138, 7.3146, 7.3144, 7.314, 7.3136, 7.3132, 7.3129, 7.3125, 7.3132, 7.3129, 7.3126, 7.3122, 7.3185, 7.3181, 7.3168, 7.3164, 7.3161, 7.3159, 7.3155, 7.3154, 7.3162, 7.3158, 7.3165, 7.3161, 7.3157, 7.3155, 7.3151, 7.3147, 7.3143, 7.3139, 7.3146, 7.3143, 7.3151, 7.3148, 7.3147, 7.3145, 7.3154, 7.3151, 7.3157, 7.3165, 7.3162, 7.3159, 7.3158, 7.3165, 7.3161, 7.3158, 7.3155, 7.3152, 7.3154, 7.3161, 7.3213, 7.3209, 7.3206, 7.3202, 7.3198, 7.3195, 7.3203, 7.3201, 7.3199, 7.3195, 7.3192, 7.3198, 7.3196, 7.3201, 7.3197, 7.3204, 7.3201, 7.3208, 7.3204, 7.32, 7.3198, 7.3194, 7.319, 7.3176, 7.3172, 7.3169, 7.3165, 7.3172, 7.3169, 7.3167, 7.3163, 7.3159, 7.3155, 7.3152, 7.3148, 7.3144, 7.314, 7.3137, 7.3135, 7.3142, 7.3128, 7.3125, 7.3121, 7.3119, 7.3116, 7.3112, 7.3109, 7.3105, 7.3112, 7.3108, 7.3104, 7.3101, 7.3097, 7.3093, 7.3094, 7.309, 7.3087, 7.3083, 7.3079, 7.3075, 7.31, 7.3103, 7.3099, 7.3106, 7.3102, 7.3098, 7.3094, 7.3101, 7.3097, 7.3093, 7.3089, 7.3096, 7.3092, 7.3088, 7.3096, 7.3093, 7.309, 7.3087, 7.3085, 7.3105, 7.3101, 7.3109, 7.3105, 7.3112, 7.3108, 7.3105, 7.3102, 7.3099, 7.3096, 7.3094, 7.3113, 7.31, 7.3106, 7.3114, 7.3121, 7.3128, 7.3125, 7.3122, 7.3119, 7.3137, 7.3139, 7.3136, 7.3144, 7.314, 7.3137, 7.3133, 7.3129, 7.3125, 7.3112, 7.3108, 7.3105, 7.3112, 7.311, 7.3108, 7.3116, 7.3114, 7.3111, 7.3118, 7.3105, 7.3102, 7.3098, 7.3095, 7.3091, 7.3088, 7.3084, 7.3091, 7.3109, 7.3106, 7.3113, 7.3109, 7.3118, 7.3125, 7.3125, 7.3125, 7.3121, 7.3117, 7.3107, 7.3104, 7.3101, 7.3107, 7.3113, 7.3111, 7.3107, 7.3104, 7.3111, 7.3118, 7.3125, 7.3121, 7.3117, 7.3114, 7.312, 7.3116, 7.3113, 7.312, 7.3128, 7.3125, 7.3121, 7.3118, 7.3115, 7.3134, 7.3131, 7.3127, 7.3145, 7.3141, 7.3138, 7.3135, 7.3133, 7.3141, 7.3159, 7.3167, 7.3165, 7.3162, 7.3159, 7.3156, 7.3157, 7.3154, 7.3166, 7.3163, 7.3161, 7.3157, 7.3165, 7.3167, 7.3174, 7.3171, 7.3168, 7.3165, 7.3162, 7.3159, 7.3156, 7.3154, 7.3141, 7.3138, 7.3135, 7.3142, 7.3139, 7.3146, 7.3153, 7.316, 7.3157, 7.3153, 7.3149, 7.3145, 7.3152, 7.3159, 7.3157, 7.3164, 7.3171, 7.3167, 7.3174, 7.317, 7.3166, 7.3173, 7.3169, 7.3165, 7.3172, 7.3179, 7.3175, 7.3171, 7.3173, 7.3169, 7.3177, 7.3173, 7.3171, 7.3168, 7.3165, 7.3163, 7.3171, 7.3178, 7.3175, 7.3182, 7.3178, 7.3175, 7.3171, 7.3167, 7.3174, 7.3171, 7.3168, 7.3164, 7.3207, 7.3214, 7.3211, 7.3219, 7.3216, 7.3212, 7.3209, 7.3206, 7.3203, 7.3199, 7.3196, 7.3193, 7.32, 7.3197, 7.3204, 7.3202, 7.3199, 7.3216, 7.3215, 7.3211, 7.3233, 7.3255, 7.3245, 7.3251, 7.3247, 7.3258, 7.3254, 7.3261, 7.3248, 7.3255, 7.3252, 7.3248, 7.3254, 7.325, 7.3247, 7.3244, 7.3262, 7.3249, 7.3256, 7.3244, 7.3241, 7.3238, 7.3234, 7.3231, 7.3228, 7.3225, 7.3222, 7.3229, 7.3237, 7.3234, 7.3231, 7.3239, 7.3255, 7.3251, 7.3249, 7.3246, 7.3246, 7.3252, 7.3249, 7.3247, 7.3254], '192.168.122.115': [10.5276, 8.3502, 7.5139, 7.1993, 7.8743, 7.4328, 7.3273, 7.7374, 7.4819, 7.2691, 7.0982, 6.9504, 6.9125, 6.8052, 6.7264, 6.9861, 6.6075, 6.8479, 6.8006, 6.7602, 6.7243, 6.9063, 6.8384, 6.7833, 6.7498, 6.9079, 6.8861, 6.9515, 7.2796, 7.2167, 7.183, 7.1287, 7.0735, 7.0523, 7.0126, 7.126, 7.1076, 7.196, 7.157, 7.1339, 7.2292, 7.2251, 7.1878, 7.2852, 7.2539, 7.2358, 7.193, 7.168, 7.1383, 7.1182, 7.0838, 7.147, 7.1165, 7.0845, 7.064, 7.1315, 7.099, 7.0826, 7.0539, 7.0359, 7.098, 7.1895, 7.161, 7.1332, 7.1146, 7.102, 7.1577, 7.1446, 7.1179, 7.0951, 7.0847, 7.061, 7.0418, 7.0276, 7.0079, 7.0655, 7.0444, 7.0957, 7.0764, 7.1206, 7.1704, 7.1503, 7.1488, 7.1272, 7.1703, 7.1549, 7.1359, 7.1779, 7.1636, 7.1547, 7.1962, 7.1741, 7.1578, 7.2462, 7.2286, 7.2652, 7.2464, 7.2287, 7.2156, 7.2009, 7.2366, 7.2223, 7.2583, 7.2428, 7.225, 7.2128, 7.2022, 7.1853, 7.168, 7.1997, 7.1855, 7.1283, 7.1603, 7.1468, 7.1342, 7.1226, 7.1145, 7.1013, 7.0991, 7.0863, 7.1208, 7.1543, 7.1873, 7.1801, 7.1708, 7.1572, 7.1485, 7.1356, 7.1255, 7.0748, 7.0654, 7.0941, 7.083, 7.0726, 7.0662, 7.056, 7.0448, 7.036, 7.0233, 7.0922, 7.1163, 7.1036, 7.0944, 7.0832, 7.0944, 7.0831, 7.206, 7.1939, 7.191, 7.1868, 7.1811, 7.3066, 7.296, 7.2853, 7.2776, 7.2655, 7.2534, 7.2423, 7.231, 7.2199, 7.2103, 7.265, 7.2574, 7.2194, 7.2422, 7.2314, 7.2223, 7.2138, 7.2047, 7.2639, 7.2911, 7.3118, 7.3608, 7.3519, 7.3426, 7.3661, 7.3565, 7.3764, 7.366, 7.3557, 7.35, 7.3431, 7.3398, 7.3591, 7.3818, 7.3722, 7.3899, 7.3796, 7.3708, 7.5029, 7.494, 7.4856, 7.4738, 7.4649, 7.4558, 7.4468, 7.4368, 7.4278, 7.4191, 7.4124, 7.455, 7.4716, 7.461, 7.4549, 7.4219, 7.4157, 7.4056, 7.4235, 7.416, 7.4373, 7.4529, 7.4517, 7.4702, 7.4861, 7.4764, 7.5534, 7.5429, 7.5581, 7.5488, 7.5409, 7.5809, 7.5943, 7.5862, 7.5904, 7.5842, 7.5759, 7.5663, 7.5586, 7.5487, 7.5419, 7.5598, 7.5522, 7.5446, 7.5373, 7.5304, 7.525, 7.5179, 7.5112, 7.504, 7.4947, 7.5078, 7.502, 7.5174, 7.5087, 7.4993, 7.4909, 7.5122, 7.5041, 7.5166, 7.5095, 7.5028, 7.495, 7.4903, 7.4827, 7.4761, 7.4895, 7.4817, 7.4781, 7.4705, 7.4648, 7.4578, 7.4511, 7.4462, 7.4402, 7.4339, 7.4268, 7.4392, 7.4515, 7.4538, 7.4464, 7.4388, 7.4344, 7.427, 7.419, 7.4153, 7.4084, 7.403, 7.3974, 7.3905, 7.3829, 7.3776, 7.3705, 7.363, 7.359, 7.3522, 7.3451, 7.3587, 7.3703, 7.3646, 7.3583, 7.3521, 7.3467, 7.3424, 7.3373, 7.3312, 7.3249, 7.3186, 7.3154, 7.3288, 7.3437, 7.3373, 7.3154, 7.3088, 7.3051, 7.2996, 7.2957, 7.2766, 7.2711, 7.2655, 7.2905, 7.3016, 7.2957, 7.3073, 7.3021, 7.2961, 7.2924, 7.3036, 7.2973, 7.2954, 7.3097, 7.3043, 7.2986, 7.2933, 7.2871, 7.2981, 7.2924, 7.2894, 7.3003, 7.2941, 7.2909, 7.2852, 7.2675, 7.2779, 7.29, 7.2852, 7.265, 7.2618, 7.2728, 7.2679, 7.2634, 7.279, 7.2737, 7.2682, 7.2649, 7.275, 7.2693, 7.264, 7.2595, 7.2557, 7.2526, 7.2627, 7.2729, 7.2689, 7.2637, 7.261, 7.2557, 7.2502, 7.2455, 7.2429, 7.2381, 7.2352, 7.2324, 7.2285, 7.2239, 7.2223, 7.2349, 7.2815, 7.2646, 7.2606, 7.2435, 7.2396, 7.2379, 7.2329, 7.2425, 7.2512, 7.2492, 7.244, 7.2431, 7.2381, 7.2334, 7.2302, 7.2259, 7.2214, 7.2172, 7.215, 7.2125, 7.2215, 7.2186, 7.2146, 7.1972, 7.1934, 7.1903, 7.1874, 7.1827, 7.1787, 7.175, 7.1745, 7.1701, 7.1665, 7.1625, 7.1596, 7.1569, 7.1543, 7.1498, 7.1456, 7.1423, 7.1378, 7.1337, 7.1296, 7.1266, 7.1224, 7.1208, 7.1179, 7.1139, 7.11, 7.1063, 7.1164, 7.1143, 7.1237, 7.1212, 7.1199, 7.1195, 7.1169, 7.1129, 7.1103, 7.1071, 7.1033, 7.1123, 7.1664, 7.1513, 7.1524, 7.1502, 7.1598, 7.1555, 7.1593, 7.1638, 7.1611, 7.1703, 7.1661, 7.1619, 7.1581, 7.1545, 7.1512, 7.1504, 7.1466, 7.1321, 7.129, 7.1809, 7.1791, 7.1753, 7.1726, 7.1691, 7.1792, 7.175, 7.173, 7.1906, 7.1894, 7.1851, 7.1831, 7.179, 7.1866, 7.1941, 7.1917, 7.1889, 7.1889, 7.1866, 7.1829, 7.1807, 7.1767, 7.1748, 7.1796, 7.1764, 7.184, 7.1799, 7.1764, 7.1849, 7.1812, 7.1837, 7.1929, 7.1908, 7.1879, 7.1859, 7.1848, 7.1816, 7.1782, 7.1777, 7.1757, 7.1725, 7.1684, 7.165, 7.1615, 7.1588, 7.1552, 7.1514, 7.1476, 7.1468, 7.1449, 7.1417, 7.1383, 7.1349, 7.1429, 7.1405, 7.148, 7.1555, 7.1519, 7.1726, 7.1705, 7.1674, 7.1647, 7.161, 7.1681, 7.1643, 7.1652, 7.162, 7.1592, 7.1576, 7.1557, 7.1522, 7.1497, 7.1471, 7.1553, 7.1529, 7.1428, 7.1403, 7.1374, 7.1355, 7.132, 7.1289, 7.1265, 7.124, 7.1311, 7.1287, 7.1268, 7.1236, 7.1229, 7.1206, 7.1176, 7.1164, 7.1132, 7.1202, 7.1178, 7.117, 7.1138, 7.1131, 7.1099, 7.1077, 7.108700000000001, 7.1154, 7.1124, 7.1193, 7.1161, 7.1138, 7.105, 7.102, 7.0991, 7.0962, 7.0934, 7.0904, 7.0875, 7.086, 7.0839, 7.0732, 7.0701, 7.0686, 7.0755, 7.0725, 7.0793, 7.0868, 7.085, 7.0917, 7.094, 7.0912, 7.0889, 7.0958, 7.0926, 7.0897, 7.0869, 7.0843, 7.0827, 7.0826, 7.0887, 7.0855, 7.0829, 7.0799, 7.0779, 7.076, 7.073, 7.0721, 7.0694, 7.0671, 7.0659, 7.0635, 7.0608, 7.0583, 7.058, 7.0647, 7.0706, 7.0679, 7.0663, 7.0637, 7.0607, 7.0589, 7.0572, 7.0543, 7.0709, 7.0774, 7.0746, 7.072, 7.0706, 7.0766, 7.0745, 7.0718, 7.0783, 7.0755, 7.0818, 7.0792, 7.0854, 7.0828, 7.0884, 7.0936, 7.0917, 7.0909, 7.0969, 7.103, 7.1082, 7.1068, 7.1039, 7.1008, 7.1066, 7.1121, 7.1092, 7.1064, 7.1036, 7.1094, 7.099, 7.0962, 7.0935, 7.0923, 7.0902, 7.0875, 7.0857, 7.0932, 7.1002, 7.09, 7.0878, 7.0932, 7.0992, 7.0979, 7.0951, 7.0937, 7.0916, 7.0939, 7.0917, 7.0891, 7.0874, 7.0846, 7.0916, 7.09, 7.0874, 7.0849, 7.0832, 7.0893, 7.0901, 7.0955, 7.0941, 7.0999, 7.1219, 7.1196, 7.1169, 7.1144, 7.1119, 7.1094, 7.1075, 7.1051, 7.1027, 7.1082, 7.1064, 7.1046, 7.1107, 7.1081, 7.1056, 7.1029, 7.1016, 7.1077, 7.1051, 7.1025, 7.1003, 7.099, 7.0966, 7.1012, 7.0988, 7.1039, 7.1015, 7.0993, 7.0973, 7.0962, 7.0954, 7.1094, 7.1075, 7.105, 7.1028, 7.1077, 7.106, 7.1106, 7.1086, 7.1065, 7.1117, 7.1191, 7.1166, 7.1226, 7.1203, 7.1181, 7.1157, 7.1131, 7.1145, 7.12, 7.1178, 7.1164, 7.1145, 7.1125, 7.1103, 7.1155, 7.1139, 7.1114, 7.1098, 7.1075, 7.1127, 7.1104, 7.108, 7.1057, 7.1032, 7.1009, 7.0988, 7.0966, 7.0887, 7.0871, 7.0848, 7.0898, 7.0929, 7.0911, 7.0889, 7.0875, 7.0853, 7.0833, 7.081, 7.0788, 7.0764, 7.0815, 7.0792, 7.0769, 7.0753, 7.0737, 7.0727, 7.089, 7.0802, 7.0782, 7.0763, 7.0743, 7.0722, 7.0782, 7.0783, 7.083, 7.084, 7.0824, 7.0855, 7.0846, 7.0832, 7.0878, 7.0855, 7.0908, 7.0885, 7.0864, 7.0909, 7.0892, 7.0883, 7.0865, 7.0917, 7.0895, 7.0881, 7.093, 7.0973, 7.1022, 7.1003, 7.1013, 7.0989, 7.1, 7.0994, 7.0981, 7.1036, 7.1021, 7.1209, 7.119, 7.1204, 7.1208, 7.1185, 7.1163, 7.1211, 7.1252, 7.1231, 7.1213, 7.1255, 7.1298, 7.1275, 7.1291, 7.1269, 7.1253, 7.1232, 7.121, 7.1198, 7.1245, 7.1228, 7.1273, 7.1257, 7.1235, 7.1222, 7.1247, 7.1238, 7.1283, 7.1341, 7.1384, 7.1362, 7.1345, 7.139, 7.1435, 7.1482, 7.146, 7.1502, 7.1543, 7.1523, 7.1568, 7.1551, 7.1533, 7.1722, 7.1701, 7.1745, 7.1724, 7.1769, 7.1815, 7.1792, 7.1774, 7.1759, 7.1748, 7.1739, 7.1724, 7.1701, 7.1624, 7.1604, 7.1587, 7.1565, 7.1543, 7.1591, 7.1633, 7.1675, 7.1726, 7.172, 7.1761, 7.1802, 7.1782, 7.1784, 7.1767, 7.1747, 7.1789, 7.177, 7.1749, 7.1734, 7.1718, 7.176, 7.1739, 7.1719, 7.1706, 7.1747, 7.1734, 7.1712, 7.1693, 7.1678, 7.1717, 7.1706, 7.1744, 7.1786, 7.1932, 7.1976, 7.1955, 7.1934, 7.1919, 7.1905, 7.1957, 7.202, 7.2009, 7.1998, 7.2038, 7.2016, 7.2003, 7.1986, 7.1971, 7.1962, 7.1943, 7.1929, 7.1913, 7.1905, 7.1835, 7.1816, 7.1797, 7.1778, 7.1763, 7.1756, 7.1796, 7.1836, 7.1822, 7.183, 7.1811, 7.1794, 7.1799, 7.1846, 7.1826, 7.1812, 7.1917, 7.1904, 7.189, 7.1936, 7.1977, 7.1957, 7.1935, 7.1919, 7.1942, 7.1922, 7.1912, 7.1899, 7.1886, 7.1873, 7.1852, 7.184, 7.1822, 7.1804, 7.1795, 7.1851, 7.1833, 7.1878, 7.1859, 7.1852, 7.1839, 7.182, 7.1871, 7.1852, 7.1842, 7.1822, 7.1813, 7.193, 7.1922, 7.1903, 7.1884, 7.1864, 7.1846, 7.1826, 7.1822, 7.1803, 7.184, 7.182, 7.1752, 7.1745, 7.1736, 7.1729, 7.1767, 7.1749, 7.1788, 7.1771, 7.1762, 7.1754, 7.174, 7.1728, 7.1717, 7.1755, 7.1762, 7.1801, 7.1791, 7.1774, 7.1761, 7.1746, 7.1727, 7.1717, 7.1706, 7.1687, 7.1674, 7.1709, 7.1743, 7.1724, 7.1705, 7.1689, 7.1676, 7.1686000000000005, 7.169600000000001, 7.1678, 7.1669, 7.1705, 7.1693, 7.1687, 7.1724, 7.1707, 7.1689, 7.167, 7.1651, 7.1661, 7.1656, 7.1703, 7.1686, 7.167, 7.1661, 7.1644, 7.1627, 7.1619, 7.1602, 7.1586, 7.1524, 7.1521, 7.1503, 7.1485, 7.1468, 7.1457, 7.145, 7.1433, 7.1417, 7.1353, 7.1337, 7.1321, 7.1313, 7.1296, 7.1285, 7.1335, 7.137, 7.141, 7.1396, 7.1385, 7.1374, 7.1358, 7.134, 7.1328, 7.1309, 7.131, 7.1302, 7.1296, 7.1278, 7.1269, 7.1252, 7.124, 7.1227, 7.1209, 7.1193, 7.1177, 7.1214, 7.1251, 7.1261, 7.1357, 7.1367, 7.1307, 7.1293, 7.1289, 7.1325, 7.1309, 7.1292, 7.1324, 7.1308, 7.1293, 7.1284, 7.1269, 7.1253, 7.1289, 7.1279, 7.1264, 7.1246, 7.1229, 7.1218, 7.1201, 7.1185, 7.118, 7.1163, 7.1157, 7.1146, 7.1129, 7.1167, 7.1207, 7.1193, 7.1185, 7.1189, 7.1172, 7.1209, 7.1194, 7.1179, 7.1202, 7.1188, 7.119800000000001, 7.1181, 7.117, 7.1153, 7.1137, 7.1125, 7.1108, 7.1143, 7.1128, 7.1164, 7.115, 7.1135, 7.1084, 7.1128, 7.1218, 7.1216, 7.1247, 7.1236, 7.1224, 7.1255, 7.1242, 7.123, 7.1217, 7.1232, 7.1238, 7.1224, 7.1215, 7.1202, 7.124, 7.1273, 7.1261, 7.1294, 7.1283, 7.1269, 7.1306, 7.1299, 7.1242, 7.1229, 7.1216, 7.1202, 7.1186, 7.1174, 7.1162, 7.1331, 7.1335, 7.1321, 7.131, 7.1346, 7.1334, 7.132, 7.1304, 7.1289, 7.1234, 7.1364, 7.1349, 7.1337, 7.1327, 7.1313, 7.1297, 7.1341, 7.1328, 7.1357, 7.1341, 7.1331, 7.1325, 7.131, 7.1341, 7.1375, 7.137, 7.1513, 7.1505, 7.149, 7.1523, 7.1507, 7.1499, 7.1492, 7.1522, 7.151, 7.1499, 7.1483, 7.1468, 7.1517, 7.1642, 7.1673, 7.1657, 7.1653, 7.1642, 7.163, 7.1614, 7.1599, 7.1588, 7.1574, 7.1559, 7.1503, 7.1488, 7.1473, 7.1465, 7.1511, 7.1506, 7.1495, 7.1499, 7.1494, 7.1524, 7.1513, 7.1544, 7.1533, 7.1565, 7.1598, 7.1544, 7.1538, 7.1528, 7.1513, 7.1671, 7.1661, 7.1652, 7.1642, 7.1682, 7.1674, 7.1669, 7.1658, 7.1647, 7.1671, 7.1655, 7.1642, 7.1634, 7.1667, 7.1655, 7.1685, 7.1673, 7.166, 7.1647, 7.168, 7.1673, 7.1661, 7.1653, 7.1639, 7.163, 7.1578, 7.1564, 7.1549, 7.1539, 7.1531, 7.1518, 7.1504, 7.1494, 7.148, 7.1465, 7.1451, 7.1436, 7.1425, 7.1416, 7.1425, 7.142, 7.1406, 7.1393, 7.1379, 7.1463, 7.1451, 7.1437, 7.1424, 7.1414, 7.1451, 7.144, 7.1433, 7.1526, 7.1488, 7.1474, 7.1434, 7.1525, 7.1515, 7.1502, 7.1493, 7.1496, 7.1488, 7.1475, 7.1543, 7.1531, 7.1517, 7.1466, 7.146, 7.1519, 7.1505, 7.1495, 7.1569, 7.1619, 7.1607, 7.1594, 7.1583, 7.1833, 7.1822, 7.1811, 7.1841, 7.183, 7.1823, 7.1809, 7.1798, 7.1825, 7.1855, 7.1849, 7.184, 7.1868, 7.1899, 7.1927, 7.1955, 7.1982, 7.201, 7.1998, 7.1982, 7.1971, 7.1965, 7.195, 7.1977, 7.1963, 7.1953, 7.1981, 7.1969, 7.1956, 7.1941, 7.1934, 7.1921, 7.1908, 7.1896, 7.1965, 7.1994, 7.1982, 7.1972, 7.2007, 7.1993, 7.2017, 7.2003, 7.2034, 7.2059, 7.2047, 7.2032, 7.2021, 7.2012, 7.2, 7.2032, 7.2019, 7.2008, 7.1996, 7.1986, 7.1975, 7.1976, 7.1968, 7.1961, 7.1991, 7.198, 7.1967, 7.1954, 7.1904, 7.189, 7.192, 7.1951, 7.1938, 7.193, 7.1917, 7.1945, 7.1931, 7.1958, 7.1949, 7.1939, 7.1926, 7.1912, 7.1899, 7.1892, 7.1885, 7.2002, 7.1988, 7.1976, 7.1967, 7.1956, 7.1955, 7.1941, 7.1927, 7.1914, 7.1903, 7.189, 7.1878, 7.1871, 7.1897, 7.1884, 7.1877, 7.1867, 7.1853, 7.1843, 7.1831, 7.1785, 7.1773, 7.1783, 7.1774, 7.1761, 7.1747, 7.1734, 7.1725, 7.1711, 7.1699, 7.1815, 7.1814, 7.1842, 7.1831, 7.1824, 7.1812, 7.1837, 7.1827, 7.1815, 7.1802, 7.179, 7.1777, 7.1804, 7.1831, 7.1818, 7.1847, 7.1836, 7.1823, 7.1885, 7.1872, 7.186, 7.1909, 7.1935, 7.1923, 7.1911, 7.1907, 7.1894, 7.1886, 7.1877, 7.1864, 7.1857, 7.1843, 7.183, 7.1819, 7.1808, 7.1799, 7.1795, 7.1782, 7.1774, 7.1764, 7.1751, 7.1743, 7.1739, 7.1731, 7.1756, 7.1784, 7.1811, 7.181, 7.1836, 7.1828, 7.189, 7.1918, 7.1909, 7.1896, 7.1923, 7.1949, 7.1982, 7.2006, 7.1997, 7.2019, 7.2007, 7.1995, 7.2017, 7.2043, 7.2033, 7.2024, 7.2011, 7.2001, 7.2024, 7.2049, 7.2037, 7.2024, 7.2011, 7.1998, 7.1955, 7.1942, 7.1966, 7.1958, 7.1947, 7.1936, 7.1965, 7.203, 7.2022, 7.205, 7.204, 7.203, 7.202, 7.2011, 7.2008, 7.1997, 7.2023, 7.2016, 7.2007, 7.1996, 7.1984, 7.1981, 7.2043, 7.2105, 7.2093, 7.2081, 7.2069, 7.2077, 7.2065, 7.2053, 7.2041, 7.2031, 7.2057, 7.2048, 7.2043, 7.2032, 7.202, 7.2014, 7.2002, 7.1989, 7.198, 7.2219, 7.2208, 7.2243, 7.2231, 7.2256, 7.2244, 7.2232, 7.222, 7.2208, 7.2233, 7.2225, 7.225, 7.224, 7.2228, 7.2256, 7.2258, 7.225, 7.2276, 7.2265, 7.2253, 7.2242, 7.2271, 7.2267, 7.2289, 7.2285, 7.2285, 7.2273, 7.2262, 7.2258, 7.2315, 7.2307, 7.2331, 7.232, 7.2312, 7.23, 7.2289, 7.2277, 7.2268, 7.2255, 7.2248, 7.2236, 7.2225, 7.2213, 7.2201, 7.2189, 7.2184, 7.2186, 7.2178, 7.2135, 7.2126, 7.2147, 7.2172, 7.216, 7.2186, 7.2185, 7.2203, 7.226, 7.2255, 7.2247, 7.2305, 7.2293, 7.2282, 7.2272, 7.2259, 7.2247, 7.2235, 7.2223, 7.2246, 7.2272, 7.2259, 7.225, 7.2248, 7.2204, 7.2193, 7.2183, 7.2172, 7.2195, 7.2182, 7.217, 7.2159, 7.2151, 7.2174, 7.2135, 7.2128, 7.2123, 7.2118, 7.2107, 7.2095, 7.2118, 7.2111, 7.2133, 7.2154, 7.2177, 7.217, 7.2159, 7.218, 7.2203, 7.2202, 7.219, 7.2178, 7.2169, 7.2159, 7.2147, 7.2139, 7.2133, 7.2122, 7.2113, 7.2134, 7.2164, 7.2186, 7.2174, 7.2163, 7.2152, 7.2176, 7.2164, 7.2159, 7.2147, 7.2135, 7.2226, 7.2216, 7.2205, 7.2193, 7.2217, 7.2209, 7.2198, 7.2192, 7.218, 7.217, 7.2192, 7.2184, 7.2181, 7.217, 7.2167, 7.2188, 7.2181, 7.2169, 7.2158, 7.2179, 7.2168, 7.2157, 7.2146, 7.2139, 7.2129, 7.2149, 7.2172, 7.2161, 7.2152, 7.2173, 7.2163, 7.2153, 7.2144, 7.2168, 7.2216, 7.2205, 7.2194, 7.2203, 7.2164, 7.2153, 7.2146, 7.2167, 7.2156, 7.2146, 7.2168, 7.2158, 7.2148, 7.2137, 7.2126, 7.2118, 7.2138, 7.2159, 7.2153, 7.2255, 7.2246, 7.2238, 7.2228, 7.2253, 7.2242, 7.2236, 7.2226, 7.2218, 7.2207, 7.2198, 7.2187, 7.2175, 7.2167, 7.2187, 7.2179, 7.2168, 7.2191, 7.218, 7.2169, 7.2165, 7.2154, 7.2143, 7.2132, 7.2124, 7.2113, 7.2104, 7.2094, 7.2119, 7.211, 7.213, 7.2118, 7.2138, 7.2126, 7.2117, 7.2109, 7.2102, 7.2122, 7.2114, 7.2104, 7.2102, 7.2092, 7.2091, 7.2112, 7.2102, 7.2091, 7.2087, 7.2077, 7.2097, 7.2086, 7.2106, 7.2097, 7.2086, 7.2079, 7.2041, 7.203, 7.202, 7.201, 7.2086, 7.2117, 7.2112, 7.2101, 7.2094, 7.2093, 7.2086, 7.2079, 7.2069, 7.2058, 7.2049, 7.2039, 7.206, 7.205, 7.2044, 7.2034, 7.2023, 7.2015, 7.2005, 7.1995, 7.2054, 7.2048, 7.2167, 7.2157, 7.2177, 7.2171, 7.2161, 7.2155, 7.2144, 7.2133, 7.213, 7.2121, 7.211, 7.2102, 7.2094, 7.2084, 7.2074, 7.2038, 7.2076, 7.2096, 7.209, 7.2081, 7.2102, 7.2091, 7.2084, 7.2074, 7.2066, 7.2057, 7.2077, 7.2071, 7.2066, 7.2058, 7.2047, 7.2066, 7.2085, 7.2079, 7.207, 7.2064, 7.2054, 7.2043, 7.2035, 7.2024, 7.2043, 7.2063, 7.2106, 7.2124, 7.2113, 7.2102, 7.2092, 7.2085, 7.2112, 7.2107, 7.2097, 7.2089, 7.2081, 7.2076, 7.2068, 7.2089, 7.2108, 7.2099, 7.2095, 7.2089, 7.2081, 7.2101, 7.2092, 7.2057, 7.2049, 7.2039, 7.2031, 7.2023, 7.2015, 7.2006, 7.2001, 7.1994, 7.2014, 7.2035, 7.2025, 7.2046, 7.2036, 7.2027, 7.2017, 7.2008, 7.2037, 7.2064, 7.2112, 7.2104, 7.2094, 7.2088, 7.208, 7.207, 7.2066, 7.2056, 7.2048, 7.2038, 7.2058, 7.205, 7.2041, 7.2031, 7.2051, 7.2043, 7.2013, 7.2005, 7.2026, 7.2018, 7.2008, 7.2112, 7.2103, 7.2093, 7.209, 7.2081, 7.2071, 7.207, 7.2062, 7.208, 7.207, 7.2061, 7.2055, 7.2075, 7.2095, 7.2093, 7.2113, 7.2104, 7.2123, 7.2115, 7.2105, 7.2099, 7.2094, 7.2115, 7.2135, 7.2131, 7.2124, 7.2148, 7.214, 7.2133, 7.2125, 7.2123, 7.212, 7.2111, 7.2105, 7.2095, 7.2068, 7.206, 7.2051, 7.2129, 7.212, 7.2112, 7.2102, 7.2092, 7.2082, 7.2076, 7.2125, 7.2146, 7.214, 7.2135, 7.2129, 7.2148, 7.2142, 7.2134, 7.2124, 7.2114, 7.2104, 7.2095, 7.2086, 7.2088, 7.2107, 7.2181, 7.2171, 7.2166, 7.2207, 7.2232, 7.2223, 7.2215, 7.2237, 7.227, 7.2262, 7.2253, 7.2243, 7.2239, 7.2231, 7.2196, 7.2268, 7.229, 7.2284, 7.2304, 7.2324, 7.229, 7.2286, 7.2254, 7.2282, 7.2272, 7.229, 7.2307, 7.2297, 7.2287, 7.2361, 7.2353, 7.2347, 7.2368, 7.2394, 7.2386, 7.2386, 7.2381, 7.2372, 7.2365, 7.2384, 7.2402, 7.2392, 7.2383, 7.2376, 7.2369, 7.2387, 7.238, 7.2374, 7.2365, 7.2355, 7.2374, 7.2392, 7.2384, 7.2375, 7.2365, 7.2355, 7.2323, 7.2289, 7.2281, 7.2278, 7.2272, 7.2265, 7.2286, 7.232, 7.2337, 7.2329, 7.2326, 7.2345, 7.2337, 7.2328, 7.2347, 7.2337, 7.233, 7.2297, 7.2294, 7.2285, 7.2282, 7.2301, 7.2268, 7.2259, 7.2252, 7.2243, 7.2247, 7.2268, 7.226, 7.2306, 7.2325, 7.2315, 7.2305, 7.2295, 7.2314, 7.2334, 7.2342, 7.236, 7.2352, 7.2351, 7.2344, 7.2336, 7.2329, 7.2345, 7.2335, 7.2326, 7.2343, 7.2361, 7.2379, 7.2371, 7.2363, 7.236, 7.2407, 7.24, 7.239, 7.2381, 7.2371, 7.2362, 7.2357, 7.2374, 7.2368, 7.2385, 7.2376, 7.2367, 7.2358, 7.2349, 7.2341, 7.2335, 7.2328, 7.2318, 7.2339, 7.233, 7.2321, 7.2342, 7.2359, 7.2352, 7.2402, 7.2393, 7.2384, 7.2404, 7.2396, 7.2388, 7.2381, 7.2374, 7.2389, 7.2407, 7.2402, 7.2394, 7.241, 7.2401, 7.2418, 7.241, 7.2407, 7.2422, 7.242, 7.2411, 7.2402, 7.2401, 7.2391, 7.2382, 7.2374, 7.2392, 7.2383, 7.2374, 7.2365, 7.2356, 7.2373, 7.2367, 7.2358, 7.2375, 7.2392, 7.2382, 7.2402, 7.2399, 7.239, 7.2407, 7.2401, 7.2395, 7.2386, 7.2404, 7.2395, 7.2405, 7.24, 7.2393, 7.2368, 7.2359, 7.2351, 7.2343, 7.2335, 7.2353, 7.2344, 7.2338, 7.2336, 7.2351, 7.2342, 7.2359, 7.235, 7.2341, 7.2332, 7.2323, 7.2314, 7.2307, 7.2298, 7.229, 7.2287, 7.2279, 7.227, 7.2239, 7.2231, 7.2228, 7.2246, 7.2238, 7.2254, 7.2246, 7.2292, 7.2289, 7.228, 7.2272, 7.2263, 7.2257, 7.2251, 7.2246, 7.2243, 7.2233, 7.2227, 7.2218, 7.2213, 7.2206, 7.2211, 7.2204, 7.2223, 7.2222, 7.2215, 7.2233, 7.2224, 7.2217, 7.2223, 7.2216, 7.2234, 7.2227, 7.2227, 7.2218, 7.2214, 7.2213, 7.2204, 7.2195, 7.2188, 7.218, 7.2177, 7.2173, 7.2167, 7.2159, 7.2152, 7.2147, 7.2144, 7.2135, 7.2129, 7.2113, 7.2109, 7.2104, 7.2096, 7.2066, 7.2057, 7.2049, 7.2041, 7.2032, 7.2029, 7.2021, 7.2015, 7.2032, 7.2049, 7.204, 7.2032, 7.2048, 7.2043, 7.2037, 7.2038, 7.2035, 7.2029, 7.2021, 7.2014, 7.2005, 7.2023, 7.2017, 7.2036, 7.2027, 7.2069, 7.2088, 7.2082, 7.2073, 7.2094, 7.2094, 7.2088, 7.2116, 7.2132, 7.2168, 7.2162, 7.2178, 7.2171, 7.2165, 7.2183, 7.2178, 7.2155, 7.216, 7.2161, 7.2177, 7.2173, 7.2166, 7.2161, 7.2154, 7.2146, 7.2144, 7.2147, 7.2143, 7.2159, 7.2153, 7.217, 7.2166, 7.2161, 7.2153, 7.2146, 7.2138, 7.213, 7.2133, 7.2126, 7.2118, 7.2134, 7.2126, 7.2142, 7.2136, 7.213, 7.2167, 7.2158, 7.2149, 7.2141, 7.2139, 7.2133, 7.2148, 7.214, 7.2156, 7.2173, 7.2188, 7.2181, 7.2173, 7.2165, 7.2161, 7.2177, 7.2198, 7.2189, 7.2205, 7.2177, 7.217, 7.2162, 7.2157, 7.215, 7.2144, 7.216, 7.2153, 7.2148, 7.2144, 7.2168, 7.216, 7.2152, 7.2149, 7.2141, 7.2133, 7.2125, 7.2121, 7.2138, 7.2131, 7.2126, 7.2118, 7.211, 7.2102, 7.2118, 7.2112, 7.2128, 7.21, 7.2093, 7.2085, 7.2101, 7.2096, 7.209, 7.2106, 7.2099, 7.2095, 7.2103, 7.2119, 7.2112, 7.2104, 7.2101, 7.2095, 7.2088, 7.2081, 7.2099, 7.2092, 7.2084, 7.2102, 7.2098, 7.2093, 7.209, 7.2083, 7.2098, 7.2093, 7.2086, 7.208, 7.2096, 7.2092, 7.2087, 7.2104, 7.2121, 7.2116, 7.2109, 7.2101, 7.2096, 7.2089, 7.2082, 7.2075, 7.2068, 7.2062, 7.2054, 7.2046, 7.2042, 7.2034, 7.2029, 7.2044, 7.206, 7.2052, 7.2045, 7.2038, 7.2032, 7.205, 7.2043, 7.2036, 7.2031, 7.2078, 7.2102, 7.2095, 7.2158, 7.2174, 7.2168, 7.2161, 7.2157, 7.2172, 7.2187, 7.218, 7.2174, 7.219, 7.2183, 7.2156, 7.217, 7.2165, 7.2182, 7.2176, 7.2191, 7.2222, 7.2214, 7.2229, 7.2221, 7.2213, 7.2205, 7.2197, 7.2191, 7.2206, 7.2199, 7.2198, 7.2213, 7.2251, 7.2243, 7.2236, 7.2229, 7.2224, 7.2218, 7.2193, 7.219, 7.2182, 7.2177, 7.2171, 7.2165, 7.2162, 7.2154, 7.215, 7.2232, 7.2206, 7.22, 7.2193, 7.2186, 7.2178, 7.2171, 7.2164, 7.2158, 7.2151, 7.2143, 7.2143, 7.2135, 7.2127, 7.2142, 7.2165, 7.2164, 7.2156, 7.2148, 7.214, 7.2133, 7.2129, 7.2124, 7.212, 7.2114, 7.2108, 7.2125, 7.2137, 7.2132, 7.2147, 7.214, 7.2133, 7.2143, 7.2167, 7.2161, 7.2153, 7.2167, 7.2159, 7.2199, 7.2214, 7.2207, 7.2202, 7.2175, 7.219, 7.2184, 7.2178, 7.2171, 7.2164, 7.2162, 7.2178, 7.2171, 7.2165, 7.2157, 7.2172, 7.2164, 7.2156, 7.215, 7.2155, 7.2151, 7.2167, 7.2164, 7.2163, 7.2155, 7.2147, 7.2141, 7.2134, 7.2149, 7.2143, 7.2136, 7.2129, 7.2122, 7.2117, 7.211, 7.2103, 7.2096, 7.2111, 7.2104, 7.2119, 7.2112, 7.2106, 7.2124, 7.2119, 7.2114, 7.2134, 7.2108, 7.2103, 7.2116, 7.2113, 7.2107, 7.2121, 7.2114, 7.2129, 7.2123, 7.2137, 7.2151, 7.2146, 7.2143, 7.2136, 7.2129, 7.2126, 7.2119, 7.2115, 7.2107, 7.21, 7.2093, 7.2086, 7.2082, 7.2076, 7.2092, 7.2106, 7.2102, 7.2096, 7.2095, 7.2088, 7.208, 7.2073, 7.2074, 7.2112, 7.2107, 7.21, 7.2095, 7.211, 7.2104, 7.2119, 7.2112, 7.2127, 7.2119, 7.2114, 7.2107, 7.213, 7.2123, 7.2117, 7.2113, 7.2108, 7.2121, 7.2115, 7.2113, 7.2107, 7.2099, 7.2092, 7.2087, 7.2081, 7.2074, 7.2067, 7.2073, 7.2078, 7.2074, 7.2069, 7.2063, 7.2056, 7.2073, 7.2067, 7.206, 7.2074, 7.2067, 7.206, 7.2075, 7.2068, 7.2061, 7.2054, 7.2047, 7.204, 7.2015, 7.2009, 7.2001, 7.2015, 7.2009, 7.2006, 7.2001, 7.1993, 7.1986, 7.1983, 7.1977, 7.1973, 7.1979, 7.1973, 7.1987, 7.1982, 7.1996, 7.1991, 7.1987, 7.198, 7.1973, 7.1967, 7.196, 7.1955, 7.1969, 7.1943, 7.1937, 7.1931, 7.1924, 7.1981, 7.1976, 7.1997, 7.1992, 7.1972, 7.1988, 7.1981, 7.1977, 7.1952, 7.196, 7.1979, 7.1972, 7.1986, 7.1978, 7.1974, 7.1982, 7.1994, 7.2007, 7.1999, 7.1993, 7.1986, 7.1999, 7.1993, 7.1988, 7.1981, 7.1977, 7.1972, 7.1965, 7.1957, 7.1972, 7.1965, 7.1963, 7.1978, 7.1973, 7.1967, 7.1982, 7.1996, 7.1991, 7.1984, 7.1977, 7.1972, 7.1968, 7.1982, 7.1976, 7.1976, 7.1969, 7.1962, 7.1976, 7.1971, 7.1968, 7.1966, 7.196, 7.1954, 7.1947, 7.1941, 7.1938, 7.1932, 7.1926, 7.1919, 7.1913, 7.1906, 7.1904, 7.1897, 7.189, 7.1883, 7.1878, 7.1872, 7.1868, 7.1863, 7.1858, 7.1851, 7.1844, 7.1857, 7.1851, 7.1846, 7.184, 7.1833, 7.185, 7.1847, 7.1842, 7.1835, 7.1828, 7.1822, 7.1817, 7.1832, 7.1849, 7.1843, 7.184, 7.1833, 7.1828, 7.1821, 7.1828, 7.1821, 7.1797, 7.179, 7.1783, 7.1798, 7.1792, 7.1788, 7.1802, 7.1798, 7.1793, 7.1786, 7.178, 7.1793, 7.1786, 7.1783, 7.1776, 7.1773, 7.1771, 7.1767, 7.1764, 7.1757, 7.1752, 7.1746, 7.176, 7.1755, 7.1752, 7.1747, 7.1761, 7.176, 7.1759, 7.1755, 7.1749, 7.1746, 7.1741, 7.1753, 7.1748, 7.1743, 7.1741, 7.1755, 7.1748, 7.1746, 7.1741, 7.1753, 7.1746, 7.1742, 7.1736, 7.1731, 7.1745, 7.1761, 7.1738, 7.1753, 7.1767, 7.1761, 7.1757, 7.1754, 7.175, 7.1763, 7.1777, 7.177, 7.1763, 7.1798, 7.181, 7.1805, 7.181500000000001, 7.1809, 7.1804, 7.1806, 7.1801, 7.1795, 7.1791, 7.1784, 7.1778, 7.1772, 7.1766, 7.1761, 7.1758, 7.1772, 7.1768, 7.1763, 7.18, 7.1813, 7.1807, 7.1806, 7.1801, 7.1794, 7.1809, 7.1824, 7.1818, 7.1814, 7.1847, 7.1864, 7.1877, 7.1875, 7.187, 7.1863, 7.1859, 7.1853, 7.1887, 7.1883, 7.1877, 7.1876, 7.1872, 7.1866, 7.1882, 7.1875, 7.1888, 7.1902, 7.1903, 7.1898, 7.1891, 7.1884, 7.1881, 7.1874, 7.1867, 7.1881, 7.1875, 7.1887, 7.1903, 7.1898, 7.192, 7.1933, 7.1945, 7.1939, 7.1934, 7.1931, 7.1946, 7.1939, 7.1933, 7.1945, 7.1941, 7.1954, 7.1994, 7.1987, 7.198, 7.1974, 7.1969, 7.1965, 7.1977, 7.1991, 7.1984, 7.1979, 7.1993, 7.1989, 7.1982, 7.1978, 7.1976, 7.1972, 7.1966, 7.1962, 7.1958, 7.1953, 7.1948, 7.1944, 7.1958, 7.1952, 7.1946, 7.1961, 7.1977, 7.1972, 7.1966, 7.198, 7.1992, 7.2005, 7.1999, 7.2012, 7.2005, 7.1999, 7.1993, 7.1987, 7.1999, 7.1993, 7.1989, 7.2002, 7.1996, 7.1993, 7.1988, 7.1982, 7.1983, 7.1979, 7.1973, 7.1967, 7.1962, 7.1956, 7.195, 7.1943, 7.1955, 7.1967, 7.196, 7.1957, 7.1997, 7.2009, 7.2017, 7.2011, 7.1988, 7.1982, 7.1977, 7.1971, 7.1964, 7.1941, 7.1937, 7.1932, 7.1926, 7.192, 7.1914, 7.1927, 7.1941, 7.1935, 7.1929, 7.1923, 7.1917, 7.1911, 7.1905, 7.1903, 7.19, 7.1895, 7.1889, 7.19, 7.1893, 7.1905, 7.1917, 7.1929, 7.1926, 7.192, 7.1914, 7.1907, 7.1919, 7.1932, 7.1929, 7.1923, 7.192, 7.1915, 7.1927, 7.1921, 7.1917, 7.1936, 7.1929, 7.1923, 7.1937, 7.1931, 7.1927, 7.1939, 7.1934, 7.193, 7.1924, 7.1918, 7.1912, 7.1907, 7.19, 7.1894, 7.1889, 7.1891, 7.1903, 7.1898, 7.1892, 7.1888, 7.1899, 7.1895, 7.1889, 7.1883, 7.1878, 7.1891, 7.1903, 7.1896, 7.1891, 7.1903, 7.19, 7.1912, 7.1924, 7.1937, 7.195, 7.1944, 7.1957, 7.1952, 7.1965, 7.1977, 7.1971, 7.1965, 7.1976, 7.1973, 7.1971, 7.1964, 7.1958, 7.1953, 7.1946, 7.1941, 7.1936, 7.1931, 7.1926, 7.192, 7.1933, 7.1928, 7.1939, 7.1932, 7.1926, 7.192, 7.1915, 7.191, 7.1921, 7.1916, 7.191, 7.1921, 7.1917, 7.1911, 7.1906, 7.1901, 7.1895, 7.1907, 7.1903, 7.1914, 7.1912, 7.1918, 7.1912, 7.1906, 7.1901, 7.1895, 7.1892, 7.1886, 7.1898, 7.1897, 7.1895, 7.1892, 7.1936, 7.1931, 7.1944, 7.1954, 7.195, 7.1962, 7.1957, 7.1951, 7.1946, 7.1941, 7.1936, 7.1931, 7.1925, 7.1919, 7.1932, 7.1929, 7.1941, 7.1953, 7.1947, 7.1942, 7.1936, 7.1932, 7.1929, 7.1924, 7.1922, 7.1934, 7.1946, 7.194, 7.1951, 7.1945, 7.1939, 7.1951, 7.1945, 7.194, 7.1934, 7.1933, 7.1927, 7.1922, 7.1916, 7.1931, 7.1926, 7.1923, 7.1917, 7.1932, 7.1945, 7.1957, 7.1952, 7.1963, 7.1961, 7.1958, 7.1953, 7.1964, 7.1958, 7.1955, 7.1952, 7.1946, 7.1961, 7.1955, 7.195, 7.1963, 7.1958, 7.1955, 7.1967, 7.1962, 7.1959, 7.1972, 7.1984, 7.1978, 7.1957, 7.1936, 7.1948, 7.1942, 7.1939, 7.1933, 7.1928, 7.1922, 7.1916, 7.1911, 7.1907, 7.1901, 7.1895, 7.1891, 7.1886, 7.188, 7.1893, 7.1887, 7.1898, 7.1899, 7.1896, 7.1891, 7.1901, 7.1896, 7.1892, 7.1904, 7.1898, 7.1902, 7.1898, 7.1904, 7.1887, 7.1881, 7.1877, 7.189, 7.1884, 7.1896, 7.191, 7.1905, 7.1902, 7.1914, 7.1911, 7.1909, 7.1905, 7.19, 7.1898, 7.1894, 7.1889, 7.1885, 7.1899, 7.1894, 7.1891, 7.1887, 7.1899, 7.1893, 7.1889, 7.19, 7.1912, 7.1909, 7.1906, 7.1917, 7.1928, 7.1922, 7.1917, 7.193, 7.1927, 7.1926, 7.194, 7.1935, 7.193, 7.1927, 7.1922, 7.1924, 7.1919, 7.1914, 7.1908, 7.1902, 7.1897, 7.1892, 7.1889, 7.1884, 7.1899, 7.1903, 7.19, 7.1898, 7.1895, 7.1891, 7.1888, 7.1899, 7.1895, 7.189, 7.1885, 7.188, 7.1879, 7.1892, 7.1889, 7.1883, 7.1879, 7.1875, 7.1869, 7.1865, 7.1878, 7.1873, 7.1852, 7.1849, 7.1844, 7.1856, 7.1851, 7.1845, 7.1841, 7.1838, 7.1835, 7.1831, 7.1826, 7.184, 7.1834, 7.1828, 7.1823, 7.1837, 7.1834, 7.1847, 7.1841, 7.1841, 7.1859, 7.1853, 7.1848, 7.1843, 7.1855, 7.185, 7.1846, 7.184, 7.1834, 7.1828, 7.1807, 7.1802, 7.1813, 7.1808, 7.1802, 7.1802, 7.1797, 7.1793, 7.1804, 7.1815, 7.1828, 7.1822, 7.1819, 7.1813, 7.1807, 7.1788, 7.1816, 7.181, 7.1805, 7.1834, 7.185, 7.1844, 7.1839, 7.1836, 7.1831, 7.1841, 7.1869, 7.1863, 7.1857, 7.1854, 7.1866, 7.1862, 7.1874, 7.1869, 7.1864, 7.1858, 7.1868, 7.1864, 7.1874, 7.1869, 7.1864, 7.186, 7.1855, 7.1852, 7.1848, 7.1842, 7.1836, 7.1831, 7.183, 7.1825, 7.1823, 7.1819, 7.1814, 7.1808, 7.182, 7.1814, 7.1808, 7.1802, 7.1797, 7.1797, 7.1792, 7.1787, 7.1783, 7.178, 7.1792, 7.1787, 7.1783, 7.178, 7.179, 7.1784, 7.1796, 7.1791, 7.1835, 7.1832, 7.1829, 7.1842, 7.1836, 7.1832, 7.1827, 7.1835, 7.183, 7.1841, 7.1822, 7.1819, 7.1814, 7.181, 7.1805, 7.18, 7.1795, 7.179, 7.1802, 7.1797, 7.1808, 7.1792, 7.1787, 7.1821, 7.1806, 7.1801, 7.1797, 7.181, 7.1838, 7.1832, 7.1849, 7.1829, 7.1824, 7.1821, 7.1831, 7.1811, 7.1807, 7.1821, 7.1872, 7.187, 7.1866, 7.1864, 7.1876, 7.1876, 7.1873, 7.1868, 7.1863, 7.1858, 7.187, 7.1865, 7.186, 7.1873, 7.1871, 7.1904, 7.1915, 7.1896, 7.1891, 7.1887, 7.1882, 7.1884, 7.1907, 7.192, 7.1915, 7.191, 7.1906, 7.1902, 7.1912, 7.1908, 7.1903, 7.1914, 7.1909, 7.1903, 7.1898, 7.1893, 7.1887, 7.1882, 7.1877, 7.1884, 7.188, 7.1876, 7.1888, 7.1903, 7.1899, 7.191, 7.1921, 7.1931, 7.1927, 7.1922, 7.1918, 7.1914, 7.1908, 7.1903, 7.1913, 7.1907, 7.1902, 7.1899, 7.1912, 7.1908, 7.1928, 7.1923, 7.1934, 7.1945, 7.194, 7.1935, 7.1946, 7.1941, 7.1936, 7.1931, 7.1928, 7.1923, 7.1934, 7.1931, 7.1925, 7.1936, 7.1931, 7.1927, 7.1924, 7.192, 7.1915, 7.191, 7.1904, 7.1914, 7.1895, 7.1891, 7.1919, 7.1914, 7.1914, 7.1924, 7.1919, 7.1914, 7.191, 7.192, 7.1915, 7.1911, 7.1909, 7.1906, 7.1903, 7.1899, 7.1894, 7.1875, 7.1871, 7.1866, 7.1861, 7.1889, 7.1884, 7.188, 7.1877, 7.1874, 7.1872, 7.1867, 7.1862, 7.1873, 7.1868, 7.1865, 7.1876, 7.1871, 7.187, 7.1865, 7.1883, 7.1878, 7.1881, 7.1892, 7.1933, 7.193, 7.1925, 7.1922, 7.1917, 7.1913, 7.1909, 7.192, 7.1915, 7.1909, 7.1904, 7.1899, 7.1894, 7.189, 7.1884, 7.1879, 7.1889, 7.1885, 7.188, 7.1878, 7.1873, 7.1884, 7.1879, 7.1876, 7.1882, 7.1877, 7.1871, 7.1868, 7.1881, 7.1891, 7.1902, 7.1913, 7.1924, 7.1918, 7.1899, 7.191, 7.1905, 7.19, 7.1899, 7.1909, 7.1906, 7.1902, 7.1897, 7.1907, 7.1901, 7.1911, 7.1925, 7.192, 7.1901, 7.1911, 7.1909, 7.1919, 7.1921, 7.1917, 7.1952, 7.1955, 7.1981, 7.1976, 7.1974, 7.1969, 7.1964, 7.1958, 7.1953, 7.1948, 7.1942, 7.1937, 7.1932, 7.1927, 7.1924, 7.1921, 7.1916, 7.1911, 7.1906, 7.1904, 7.1914, 7.1911, 7.1906, 7.19, 7.1896, 7.1892, 7.1889, 7.189, 7.1889, 7.1884, 7.1896, 7.1906, 7.1903, 7.1898, 7.1895, 7.1906, 7.1918, 7.1913, 7.1909, 7.1904, 7.1905, 7.19, 7.1895, 7.1905, 7.19, 7.1897, 7.1893, 7.1888, 7.1883, 7.1878, 7.1873, 7.1871, 7.1868, 7.1863, 7.186, 7.1858, 7.1853, 7.1848, 7.1844, 7.184, 7.1837, 7.1832, 7.1827, 7.1838, 7.1833, 7.1842, 7.1851, 7.1846, 7.1856, 7.1851, 7.1847, 7.1842, 7.1839, 7.1834, 7.1833, 7.1829, 7.1825, 7.1836, 7.183, 7.184, 7.1851, 7.1846, 7.1841, 7.1836, 7.1834, 7.1831, 7.1826, 7.1821, 7.1817, 7.1812, 7.1807, 7.1802, 7.1812, 7.1807, 7.1804, 7.1799, 7.1794, 7.1791, 7.1787, 7.1782, 7.1777, 7.1759, 7.177, 7.1765, 7.1777, 7.1772, 7.1782, 7.1779, 7.1776, 7.1771, 7.1766, 7.1776, 7.1773, 7.1768, 7.1771, 7.1768, 7.1763, 7.1769, 7.1779, 7.1774, 7.1771, 7.178100000000001, 7.1792, 7.1787, 7.1783, 7.178, 7.1776, 7.1792, 7.1788, 7.1784, 7.1795, 7.179, 7.1788, 7.1785, 7.1783, 7.1793, 7.1789, 7.1784, 7.1782, 7.1825, 7.182, 7.1822, 7.1832, 7.1865, 7.1872, 7.1854, 7.1856, 7.1852, 7.1848, 7.1909, 7.1912, 7.1895, 7.189, 7.1887, 7.1897, 7.191, 7.1906, 7.1903, 7.1898, 7.1893, 7.1888, 7.1884, 7.1879, 7.1874, 7.1869, 7.1878, 7.1888, 7.1898, 7.1894, 7.19, 7.1895, 7.1892, 7.1901, 7.1899, 7.1895, 7.1893, 7.1903, 7.1899, 7.1894, 7.189, 7.1886, 7.1912, 7.1922, 7.1917, 7.19, 7.1883, 7.1893, 7.1888, 7.1883, 7.1893, 7.189, 7.19, 7.1897, 7.1892, 7.1887, 7.1882, 7.1879, 7.1874, 7.1869, 7.1864, 7.186, 7.1855, 7.1841, 7.1836, 7.1833, 7.1816, 7.1811, 7.1821, 7.1831, 7.184, 7.1835, 7.183, 7.1825, 7.1831, 7.1826, 7.1843, 7.184, 7.1837, 7.1847, 7.1842, 7.1837, 7.1833, 7.1829, 7.1839, 7.185, 7.1846, 7.1842, 7.1851, 7.1861, 7.1871, 7.1866, 7.1861, 7.1871, 7.1881, 7.1877, 7.1872, 7.1868, 7.1864, 7.186, 7.1857, 7.1854, 7.1864, 7.1874, 7.1888, 7.1885, 7.1898, 7.1895, 7.1905, 7.1902, 7.1898, 7.1894, 7.1891, 7.1889, 7.1874, 7.1871, 7.1867, 7.1864, 7.1859, 7.1855, 7.1854, 7.1851, 7.186, 7.1856, 7.1867, 7.1865, 7.1862, 7.1859, 7.1856, 7.1866, 7.1875, 7.187, 7.1881, 7.1876, 7.1886, 7.1882, 7.1877, 7.1873, 7.1869, 7.1864, 7.186, 7.1855, 7.185, 7.1849, 7.1845, 7.184, 7.1836, 7.186, 7.1855, 7.1851, 7.1848, 7.1845, 7.1854, 7.1851, 7.1846, 7.1856, 7.1852, 7.1861, 7.187, 7.1865, 7.1861, 7.1856, 7.1851, 7.1846, 7.1842, 7.1837, 7.1832, 7.1828, 7.1824, 7.1821, 7.1818, 7.1813, 7.181, 7.1806, 7.1815, 7.1811, 7.1807, 7.1803, 7.18, 7.1796, 7.1792, 7.1774, 7.177, 7.1766, 7.1776, 7.1787, 7.1783, 7.1792, 7.1788, 7.1784, 7.178, 7.1775, 7.1784, 7.1767, 7.1753, 7.1791, 7.1788, 7.1784, 7.1793, 7.1789, 7.1812, 7.1822, 7.1805, 7.18, 7.1813, 7.1824, 7.182, 7.1829, 7.183, 7.184, 7.1836, 7.1861, 7.187, 7.1909, 7.1919, 7.1915, 7.1898, 7.1895, 7.1904, 7.1913, 7.199, 7.1986, 7.1983, 7.1967, 7.1963, 7.1952, 7.1968, 7.1956, 7.1967, 7.1963, 7.1973, 7.1968, 7.1963, 7.1972, 7.1967, 7.1989, 7.2008, 7.2005, 7.2, 7.1996, 7.1992, 7.2002, 7.1985, 7.1995, 7.2005, 7.2001, 7.1996, 7.1991, 7.2, 7.1995, 7.1978, 7.1974, 7.1984, 7.1993, 7.1989, 7.1987, 7.1984, 7.1982, 7.1978, 7.1961, 7.1956, 7.1952, 7.1962, 7.1957, 7.1953, 7.1953, 7.195, 7.1959, 7.1956, 7.1952, 7.1949, 7.1944, 7.194, 7.1936, 7.1933, 7.193, 7.1926, 7.1922, 7.1917, 7.1913, 7.1911, 7.1908, 7.1904, 7.19, 7.1896, 7.1907, 7.1903, 7.1912, 7.1921, 7.1916, 7.1914, 7.1924, 7.1936, 7.1932, 7.1942, 7.1938, 7.1947, 7.1945, 7.1942, 7.1952, 7.1948, 7.1945, 7.1942, 7.1937, 7.1933, 7.193, 7.1927, 7.1937, 7.1933, 7.2008, 7.2004, 7.2013, 7.2009, 7.2018, 7.2003, 7.1998, 7.1994, 7.199, 7.1986, 7.1998, 7.2019, 7.2015, 7.2011, 7.1995, 7.1991, 7.1988, 7.1971, 7.1967, 7.1977, 7.1986, 7.1983, 7.1978, 7.1973, 7.1971, 7.1968, 7.1965, 7.196, 7.1957, 7.1953, 7.1949, 7.1945, 7.1954, 7.1964, 7.1962, 7.1958, 7.1954, 7.1949, 7.1959, 7.1957, 7.1952, 7.1949, 7.1946, 7.1944, 7.194, 7.1936, 7.1932, 7.1928, 7.1923, 7.1932, 7.1928, 7.1937, 7.1933, 7.1943, 7.1953, 7.195, 7.1946, 7.1944, 7.1942, 7.1938, 7.1957, 7.1956, 7.1951, 7.1949, 7.1945, 7.1955, 7.1951, 7.1947, 7.1942, 7.1937, 7.1932, 7.1941, 7.195, 7.1946, 7.1942, 7.1938, 7.1952, 7.195, 7.196, 7.1956, 7.1953, 7.1949, 7.196, 7.1956, 7.1952, 7.1949, 7.1958, 7.1954, 7.1951, 7.195, 7.1958, 7.1954, 7.195, 7.1947, 7.1944, 7.1939, 7.1935, 7.1931, 7.1927, 7.1936, 7.1932, 7.1928, 7.1925, 7.1926, 7.1922, 7.1918, 7.1914, 7.1923, 7.1932, 7.1928, 7.1924, 7.1922, 7.1932, 7.1928, 7.1936, 7.1933, 7.1942, 7.1939, 7.1947, 7.1944, 7.1952, 7.195, 7.1946, 7.1943, 7.194, 7.1938, 7.1947, 7.1943, 7.1939, 7.1935, 7.193, 7.1926, 7.1925, 7.1921, 7.1918, 7.1927, 7.1923, 7.1934, 7.1943, 7.1952, 7.196, 7.1955, 7.1951, 7.1948, 7.1943, 7.194, 7.1936, 7.1944, 7.1953, 7.1974, 7.197, 7.1965, 7.1962, 7.1957, 7.1953, 7.1948, 7.1944, 7.1941, 7.1948, 7.1958, 7.1954, 7.1951, 7.1947, 7.1942, 7.1938, 7.1933, 7.193, 7.1942, 7.1937, 7.1934, 7.1929, 7.1925, 7.1934, 7.1931, 7.1927, 7.1935, 7.1931, 7.1939, 7.1935, 7.1945, 7.1941, 7.1936, 7.1944, 7.194, 7.1949, 7.1945, 7.1955, 7.1977, 7.1973, 7.1982, 7.1978, 7.1974, 7.197, 7.1965, 7.1974, 7.1969, 7.1953, 7.1949, 7.1946, 7.1943, 7.1953, 7.1949, 7.1984, 7.199400000000001, 7.199, 7.1999, 7.1998, 7.1994, 7.1991, 7.2, 7.2009, 7.2007, 7.2026, 7.2023, 7.2032, 7.2029, 7.2037, 7.2047, 7.2043, 7.204, 7.2049, 7.2065, 7.2074, 7.2076, 7.2075, 7.2071, 7.2066, 7.2062, 7.2058, 7.2053, 7.2049, 7.2046, 7.2042, 7.2051, 7.2048, 7.2047, 7.2042, 7.204, 7.2037, 7.2035, 7.2034, 7.2031, 7.204, 7.2036, 7.2046, 7.2054, 7.2051, 7.2046, 7.2042, 7.2037, 7.2033, 7.2031, 7.2028, 7.2024, 7.2021, 7.2018, 7.202, 7.2016, 7.2012, 7.201, 7.2005, 7.2006, 7.2014, 7.2011, 7.201, 7.2007, 7.2004, 7.2, 7.2009, 7.2006, 7.2002, 7.1998, 7.1994, 7.1991, 7.1987, 7.1985, 7.1981, 7.1977, 7.1962, 7.197, 7.1967, 7.1963, 7.1972, 7.1968, 7.1968, 7.1964, 7.1991, 7.1987, 7.1996, 7.1994, 7.2004, 7.2, 7.1996, 7.2003, 7.1999, 7.1994, 7.199, 7.1987, 7.1982, 7.1979, 7.1975, 7.1972, 7.1968, 7.1965, 7.1962, 7.1969, 7.1965, 7.1961, 7.1958, 7.1954, 7.195, 7.1935, 7.1945, 7.1929, 7.1927, 7.1925, 7.1934, 7.193, 7.1926, 7.1922, 7.1917, 7.1925, 7.1933, 7.1928, 7.1925, 7.1933, 7.1934, 7.1931, 7.1927, 7.1923, 7.1931, 7.1927, 7.1937, 7.1921, 7.192, 7.1928, 7.1936, 7.1932, 7.194, 7.1937, 7.1942, 7.1939, 7.1937, 7.1934, 7.1931, 7.1927, 7.1923, 7.1932, 7.1956, 7.1952, 7.196, 7.1959, 7.1955, 7.1951, 7.1937, 7.1934, 7.193, 7.1927, 7.1929, 7.1925, 7.1934, 7.1932, 7.1934, 7.1932, 7.1928, 7.1936, 7.1935, 7.1932, 7.1928, 7.193, 7.1926, 7.1924, 7.1921, 7.1917, 7.1915, 7.1911, 7.1908, 7.1904, 7.1901, 7.1886, 7.1883, 7.1881, 7.1877, 7.1876, 7.1872, 7.187, 7.1879, 7.1889, 7.1897, 7.1905, 7.1903, 7.1901, 7.19, 7.1896, 7.191, 7.1907, 7.1923, 7.1919, 7.1917, 7.1914, 7.1923, 7.1918, 7.1914, 7.1911, 7.1907, 7.1903, 7.1888, 7.1884, 7.1882, 7.1879, 7.1875, 7.1871, 7.1867, 7.1865, 7.1861, 7.1859, 7.1855, 7.1851, 7.1847, 7.1845, 7.1843, 7.1851, 7.1847, 7.1844, 7.184, 7.1837, 7.1834, 7.1831, 7.1827, 7.1823, 7.1832, 7.1841, 7.1837, 7.1834, 7.183, 7.1827, 7.1835, 7.1832, 7.1841, 7.1837, 7.1835, 7.1831, 7.1839, 7.1837, 7.1835, 7.1832, 7.1828, 7.1824, 7.1834, 7.1854, 7.185, 7.1846, 7.1845, 7.1843, 7.1852, 7.1849, 7.1846, 7.1854, 7.1851, 7.1861, 7.1857, 7.1903, 7.1912, 7.1909, 7.193, 7.1927, 7.1924, 7.1948, 7.1957, 7.1967, 7.1964, 7.1973, 7.197, 7.1966, 7.1976, 7.198600000000001, 7.199600000000001, 7.1992, 7.1988, 7.1984, 7.1992, 7.1988, 7.1984, 7.1981, 7.199, 7.1988, 7.1986, 7.1982, 7.1979, 7.1975, 7.1972, 7.1968, 7.1964, 7.1961, 7.1958, 7.1955, 7.1963, 7.1959, 7.1967, 7.1964, 7.1973, 7.1969, 7.1977, 7.1973, 7.197, 7.1978, 7.1974, 7.1972, 7.1981, 7.1978, 7.1974, 7.1982, 7.2001, 7.1999, 7.1996, 7.1992, 7.1988, 7.1996, 7.2005, 7.2001, 7.1997, 7.1994, 7.1991, 7.1987, 7.1996, 7.1993, 7.2001, 7.1998, 7.1994, 7.199, 7.1998, 7.1994, 7.199, 7.1986, 7.1994, 7.2003, 7.202, 7.2018, 7.2014, 7.201, 7.2018, 7.2015, 7.2012, 7.2047, 7.2046, 7.2042, 7.2052, 7.2061, 7.2046, 7.2042, 7.2044, 7.2052, 7.2067, 7.2064, 7.206, 7.2057, 7.2053, 7.2049, 7.2057, 7.2056, 7.2052, 7.206, 7.2068, 7.2077, 7.2073, 7.207, 7.2078, 7.2075, 7.2072, 7.2069, 7.2065, 7.2061, 7.2057, 7.2053, 7.2049, 7.2049, 7.2049, 7.2046, 7.2042, 7.2038, 7.2046, 7.2042, 7.2038, 7.2035, 7.2031, 7.2027, 7.2023, 7.2019, 7.2015, 7.2013, 7.2011, 7.2007, 7.2004, 7.2, 7.1997, 7.1995, 7.1981, 7.1977, 7.1975, 7.2, 7.1997, 7.202, 7.2017, 7.2013, 7.2021, 7.2018, 7.2014, 7.201, 7.2006, 7.2014, 7.2011, 7.2009, 7.2005, 7.1994, 7.1992, 7.2002, 7.2023, 7.2009, 7.2008, 7.2005, 7.2014, 7.2011, 7.2008, 7.2016, 7.2024, 7.2032, 7.2028, 7.2024, 7.2032, 7.2029, 7.2026, 7.2035, 7.2031, 7.2027, 7.2024, 7.2021, 7.2007, 7.2014, 7.2022, 7.202, 7.2016, 7.2012, 7.202, 7.2016, 7.2024, 7.2021, 7.2018, 7.2015, 7.2024, 7.202, 7.2016, 7.2012, 7.2011, 7.2009, 7.2005, 7.2001, 7.1998, 7.1996, 7.2004, 7.2001, 7.1999, 7.1995, 7.1991, 7.1987, 7.1995, 7.2003, 7.2003, 7.2, 7.1997, 7.1995, 7.1991, 7.1989, 7.1988, 7.1984, 7.1992, 7.1989, 7.1985, 7.2008, 7.2004, 7.2012, 7.202, 7.2018, 7.2025, 7.2021, 7.2029, 7.2025, 7.2021, 7.2029, 7.2036, 7.2033, 7.2053, 7.2066, 7.2062, 7.2058, 7.2056, 7.2053, 7.2049, 7.2045, 7.2041, 7.2062, 7.2069, 7.2067, 7.2117, 7.2113, 7.211, 7.2097, 7.2093, 7.2093, 7.2102, 7.211, 7.2096, 7.2093, 7.2091, 7.2099, 7.2096, 7.2093, 7.2102, 7.2113, 7.211, 7.2106, 7.2114, 7.2112, 7.2121, 7.212, 7.2116, 7.2114, 7.211, 7.2107, 7.2105, 7.2124, 7.2121, 7.213, 7.2126, 7.2133, 7.2129, 7.2126, 7.2133, 7.2137, 7.2135, 7.2166, 7.2162, 7.2148, 7.2156, 7.2152, 7.2138, 7.2134, 7.213, 7.2185, 7.2193, 7.2189, 7.2197, 7.2216, 7.2214, 7.2212, 7.222, 7.2216, 7.2212, 7.2209, 7.2206, 7.2202, 7.2209, 7.2205, 7.2201, 7.2199, 7.2196, 7.2204, 7.2213, 7.2209, 7.2206, 7.2213, 7.221, 7.2207, 7.2204, 7.2201, 7.2197, 7.2194, 7.219, 7.2186, 7.219600000000001, 7.220600000000001, 7.2203, 7.22, 7.2208, 7.2216, 7.2224, 7.2221, 7.2217, 7.2214, 7.221, 7.2206, 7.2203, 7.2211, 7.2207, 7.2206, 7.2202, 7.2199, 7.2195, 7.2191, 7.2187, 7.2184, 7.218, 7.2179, 7.2188, 7.2184, 7.218, 7.2187, 7.2189, 7.2185, 7.2193, 7.219, 7.219, 7.2198, 7.2206, 7.2203, 7.2199, 7.2199, 7.2206, 7.2203, 7.22, 7.2197, 7.2193, 7.219, 7.2197, 7.2193, 7.2189, 7.2186, 7.2182, 7.2179, 7.2175, 7.2182, 7.2179, 7.2165, 7.2162, 7.216, 7.2156, 7.2154, 7.2151, 7.2147, 7.2155, 7.2162, 7.2159, 7.2157, 7.2155, 7.2151, 7.2159, 7.2155, 7.2152, 7.2148, 7.2144, 7.2141, 7.2137, 7.2134, 7.2142, 7.2134, 7.2132, 7.2128, 7.2125, 7.2121, 7.2117, 7.212700000000001, 7.2123, 7.2121, 7.2131, 7.2138, 7.2134, 7.2131, 7.2139, 7.2146, 7.2142, 7.2141, 7.2128, 7.2124, 7.2122, 7.2119, 7.2116, 7.2115, 7.2114, 7.2122, 7.2118, 7.2114, 7.2121, 7.2128, 7.2125, 7.2133, 7.213, 7.2128, 7.2135, 7.2143, 7.2141, 7.2141, 7.2137, 7.2144, 7.2142, 7.214, 7.2149, 7.2145, 7.2142, 7.2142, 7.2141, 7.2137, 7.2157, 7.2155, 7.2162, 7.217, 7.2167, 7.2175, 7.2173, 7.2184, 7.218, 7.2178, 7.2174, 7.2177, 7.2193, 7.2201, 7.2198, 7.2204, 7.2206, 7.2204, 7.2203, 7.221, 7.2207, 7.2211, 7.2207, 7.2204, 7.22, 7.2208, 7.2204, 7.2201, 7.2198, 7.2194, 7.219, 7.2211, 7.2208, 7.2216, 7.2224, 7.2223, 7.2233, 7.2233, 7.223, 7.2237, 7.2235, 7.2242, 7.2239, 7.2235, 7.2232, 7.2228, 7.2227, 7.2224, 7.2224, 7.2237, 7.2234, 7.2243, 7.224, 7.2236, 7.2233, 7.2229, 7.2225, 7.2233, 7.2241, 7.2249, 7.2246, 7.2243, 7.2251, 7.2249, 7.2257, 7.2249, 7.2247, 7.2243, 7.2241, 7.2238, 7.2246, 7.2304, 7.2311, 7.2308, 7.2305, 7.2301, 7.23, 7.2297, 7.2305, 7.2301, 7.2309, 7.2305, 7.2313, 7.231, 7.2307, 7.2304, 7.2312, 7.2308, 7.2305, 7.2312, 7.231, 7.2306, 7.2302, 7.2298, 7.2294, 7.229, 7.2297, 7.2295, 7.2302, 7.2299, 7.2295, 7.2293, 7.229, 7.2286, 7.2304, 7.23, 7.2287, 7.2284, 7.2292, 7.2289, 7.2296, 7.2292, 7.23, 7.2296, 7.2303, 7.2299, 7.2306, 7.2302, 7.2298, 7.2294, 7.2303, 7.2301, 7.2298, 7.2295, 7.2292, 7.2289, 7.2286, 7.2284, 7.2281, 7.2268, 7.2264, 7.2261, 7.2258, 7.2265, 7.2262, 7.2259, 7.2257, 7.2255, 7.2253, 7.225, 7.2247, 7.2246, 7.2242, 7.2229, 7.2241, 7.2261, 7.2269, 7.2268, 7.2265, 7.2262, 7.2258, 7.2254, 7.225, 7.2258, 7.2256, 7.2252, 7.2248, 7.2244, 7.224, 7.2237, 7.2266, 7.2264, 7.2262, 7.2258, 7.2256, 7.2253, 7.225, 7.2257, 7.2254, 7.2252, 7.2259, 7.2266, 7.2264, 7.2271, 7.2269, 7.2276, 7.2263, 7.2259, 7.2257, 7.2254, 7.2251, 7.2251, 7.2278, 7.2275, 7.2285, 7.2281, 7.2278, 7.2286, 7.2305, 7.2301, 7.2313, 7.231, 7.2318, 7.2326, 7.2333, 7.234, 7.2336, 7.2332, 7.2339, 7.2346, 7.2342, 7.2338, 7.2338, 7.2334, 7.2331, 7.2328, 7.2325, 7.2323, 7.2319, 7.2327, 7.2324, 7.2322, 7.2318, 7.2324, 7.2322, 7.2318, 7.2314, 7.2311, 7.2307, 7.2304, 7.2301, 7.2311000000000005, 7.2308, 7.2305, 7.2302, 7.2299, 7.2297, 7.2296, 7.2323, 7.231, 7.2307, 7.2304, 7.2302, 7.2309, 7.2307, 7.2305, 7.2312, 7.232, 7.2317, 7.2307, 7.2304, 7.2302, 7.2299, 7.2307, 7.2304, 7.23, 7.2297, 7.2295, 7.2313, 7.2309, 7.2318, 7.2315, 7.2312, 7.231, 7.2307, 7.2316, 7.2313, 7.231, 7.2307, 7.2294, 7.2291, 7.2299, 7.2295, 7.2304, 7.2301, 7.2308, 7.2305, 7.2301, 7.2297, 7.2295, 7.2292, 7.2289, 7.2287, 7.2284, 7.2282, 7.229, 7.2286, 7.2295, 7.2293, 7.2291, 7.2299, 7.2295, 7.2292, 7.2299, 7.2306, 7.2304, 7.2305, 7.2312, 7.2308, 7.2304, 7.2301, 7.2297, 7.2294, 7.2301, 7.2308, 7.2306, 7.2304, 7.23, 7.2297, 7.2295, 7.2301, 7.2297, 7.2295, 7.2292, 7.2302, 7.231, 7.2307, 7.2314, 7.2311, 7.2307, 7.2314, 7.2311, 7.2307, 7.2314, 7.2327, 7.2324, 7.2321, 7.2318, 7.234, 7.2337, 7.2334, 7.233, 7.2327, 7.2324, 7.2322, 7.2329, 7.2325, 7.2333, 7.2329, 7.2326, 7.2323, 7.232, 7.2317, 7.2324, 7.232, 7.2316, 7.2312, 7.2308, 7.2304, 7.2311, 7.2308, 7.2315, 7.2311, 7.2312, 7.231, 7.2307, 7.2303, 7.23, 7.2298, 7.2295, 7.2292, 7.2279, 7.2286, 7.2293, 7.2291, 7.2288, 7.2276, 7.2273, 7.228, 7.2276, 7.2275, 7.2271, 7.2268, 7.2265, 7.2262, 7.2271, 7.2268, 7.2276, 7.2272, 7.2279, 7.2277, 7.2274, 7.2271, 7.2269, 7.2265, 7.2262, 7.2259, 7.2246, 7.2233, 7.224, 7.2237, 7.2234, 7.2231, 7.2227, 7.2238, 7.2226, 7.2222, 7.2219, 7.2215, 7.2222, 7.2218, 7.2215, 7.2212, 7.2209, 7.2205, 7.2212, 7.2209, 7.2205, 7.2212, 7.2209, 7.2216, 7.2213, 7.221, 7.2207, 7.2197, 7.2194, 7.2201, 7.2208, 7.2204, 7.2201, 7.22, 7.2197, 7.2214, 7.2203, 7.2199, 7.2186, 7.2182, 7.22, 7.2198, 7.2216, 7.2223, 7.222, 7.2216, 7.2213, 7.221, 7.2208, 7.2225, 7.2223, 7.2221, 7.2248, 7.2255, 7.2252, 7.225, 7.2247, 7.2244, 7.2251, 7.2258, 7.2265, 7.2264, 7.2271, 7.2267, 7.2274, 7.227, 7.2315, 7.2341, 7.2337, 7.2336, 7.2336, 7.2334, 7.2332, 7.2329, 7.2325, 7.2336, 7.2334, 7.2333, 7.233, 7.2336, 7.2334, 7.2331, 7.2338, 7.2344, 7.2341, 7.2348, 7.2364, 7.2361, 7.2358, 7.2367, 7.2364, 7.2361, 7.2357, 7.2374, 7.2371, 7.2369, 7.2368, 7.2366, 7.2372, 7.2368, 7.2364, 7.237, 7.2367, 7.2374, 7.2371, 7.2377, 7.2383, 7.238, 7.2388, 7.2384, 7.2391, 7.2398, 7.2405, 7.2402, 7.2409, 7.2407, 7.2404, 7.24, 7.2397, 7.2403, 7.2421, 7.2428, 7.2416, 7.2413, 7.241, 7.2407, 7.2404, 7.2411, 7.2418, 7.2424, 7.242, 7.2427, 7.2424, 7.243, 7.2436, 7.2442, 7.244, 7.2437, 7.2433, 7.243, 7.2427, 7.2424, 7.2421, 7.2428, 7.2445, 7.2441, 7.2438, 7.2435, 7.2432, 7.2429, 7.2427, 7.2437, 7.2434, 7.2431, 7.2437, 7.2445, 7.2442, 7.2439, 7.2436, 7.2446, 7.2443, 7.2439, 7.2436, 7.2432, 7.2429, 7.2436, 7.2432, 7.2449], '192.168.122.120': [8.0388, 6.694, 6.3781, 6.3054, 7.2142, 7.0815, 6.1872, 6.1121, 5.5454, 5.5245, 5.5086, 5.6229, 5.5926, 5.589, 5.5738, 7.1955, 7.0895, 6.9976, 6.9587, 6.8847, 6.8159, 7.8499, 7.9814, 7.8916, 7.8402, 7.7616, 7.7233, 7.8511, 7.7724, 7.871, 7.9638, 7.8814, 7.8164, 7.7423, 7.7387, 7.6841, 7.6183, 7.6968, 7.6626, 7.6101, 7.6734, 7.6205, 7.5804, 7.5255, 7.5992, 7.5609, 7.5171, 7.4904, 7.4482, 7.5096, 7.4846, 7.4538, 7.592, 7.5511, 7.5133, 7.4742, 7.4537, 7.4187, 7.3934, 7.3748, 7.3416, 7.3968, 7.3777, 7.3468, 7.415, 7.481, 7.5809, 7.5547, 7.5253, 7.5153, 7.4915, 7.4607, 7.4334, 7.4115, 7.3827, 7.3642, 7.3595, 7.2734, 7.2512, 7.2322, 7.2128, 7.2582, 7.2368, 7.237, 7.2136, 7.1917, 7.1712, 7.1494, 7.194, 7.2343, 7.2803, 7.2602, 7.3015, 7.3433, 7.328, 7.3109, 7.2936, 7.3362, 7.3227, 7.3028, 7.2841, 7.2642, 7.1987, 7.1826, 7.167, 7.1587, 7.1495, 7.0877, 7.0723, 7.0595, 7.098, 7.085, 7.2189, 7.2548, 7.4265, 7.4109, 7.4024, 7.5253, 7.5549, 7.5418, 7.5708, 7.5544, 7.5395, 7.5904, 7.5471, 7.5763, 7.5612, 7.5452, 7.575, 7.5599, 7.5423, 7.5285, 7.5161, 7.5063, 7.5331, 7.5169, 7.549, 7.5326, 7.5267, 7.5123, 7.498, 7.5253, 7.5116, 7.4964, 7.5413, 7.5651, 7.5544, 7.5414, 7.5402, 7.5278, 7.5143, 7.6544, 7.6397, 7.6257, 7.6792, 7.7398, 7.7282, 7.7169, 7.703, 7.6903, 7.6765, 7.6625, 7.6516, 7.672, 7.6891, 7.6766, 7.6652, 7.6842, 7.703, 7.6903, 7.6799, 7.6673, 7.6571, 7.6465, 7.6351, 7.6235, 7.6117, 7.6303, 7.6216, 7.64, 7.6304, 7.6219, 7.6102, 7.6011, 7.5883, 7.578, 7.5704, 7.5884, 7.5835, 7.6006, 7.59, 7.578, 7.5701, 7.5588, 7.5464, 7.5349, 7.5504, 7.541, 7.5372, 7.5538, 7.5426, 7.5344, 7.5259, 7.5158, 7.5059, 7.5207, 7.5117, 7.5042, 7.5009, 7.4955, 7.485, 7.4772, 7.493, 7.4832, 7.4768, 7.4833, 7.4738, 7.4874, 7.5028, 7.4946, 7.4846, 7.4762, 7.4926, 7.5214, 7.5136, 7.5056, 7.6185, 7.6124, 7.6032, 7.5928, 7.606, 7.5988, 7.5895, 7.6102, 7.624, 7.6163, 7.609, 7.606, 7.5989, 7.6117, 7.6022, 7.5943, 7.5886, 7.5605, 7.5526, 7.5679, 7.56, 7.5982, 7.5895, 7.602, 7.5945, 7.5863, 7.5776, 7.5904, 7.603, 7.5948, 7.5878, 7.6006, 7.6125, 7.6463, 7.6421, 7.653, 7.7142, 7.7074, 7.6983, 7.693, 7.6884, 7.6993, 7.6984, 7.6897, 7.683, 7.6791, 7.6733, 7.7463, 7.7395, 7.7308, 7.7222, 7.7141, 7.7119, 7.7048, 7.7168, 7.7102, 7.7014, 7.6932, 7.6875, 7.6636, 7.6557, 7.6665, 7.662, 7.6541, 7.6705, 7.6638, 7.6409, 7.6332, 7.6256, 7.6174, 7.6356, 7.6274, 7.6377, 7.652, 7.6626, 7.6546, 7.6472, 7.6408, 7.6354, 7.6291, 7.6401, 7.6325, 7.627, 7.6376, 7.6478, 7.657, 7.707, 7.7039, 7.6977, 7.691, 7.6838, 7.6817, 7.6745, 7.6676, 7.6608, 7.6549, 7.6478, 7.6409, 7.6361, 7.6302, 7.6263, 7.6198, 7.615, 7.6113, 7.6052, 7.6031, 7.6021, 7.6145, 7.609, 7.6167, 7.6101, 7.6045, 7.5995, 7.5941, 7.5876, 7.5968, 7.5922, 7.5867, 7.5832, 7.577, 7.5709, 7.5646, 7.5735, 7.5695, 7.5632, 7.5572, 7.5675, 7.561, 7.5603, 7.5554, 7.549, 7.5428, 7.5381, 7.5336, 7.5145, 7.5096, 7.5204, 7.5146, 7.5092, 7.506, 7.5136, 7.5233, 7.5173, 7.5113, 7.5089, 7.5038, 7.4997, 7.4947, 7.4896, 7.5059, 7.5144, 7.5084, 7.5038, 7.5121, 7.5064, 7.5023, 7.5225, 7.5176, 7.526, 7.5236, 7.5324, 7.5311, 7.5259, 7.5224, 7.531, 7.5263, 7.5356, 7.5314, 7.5782, 7.5867, 7.5824, 7.5906, 7.5741, 7.5696, 7.5638, 7.5581, 7.5527, 7.5535, 7.5487, 7.5318, 7.5273, 7.5233, 7.5181, 7.515, 7.5484, 7.583, 7.5786, 7.574, 7.5685, 7.5646, 7.5605, 7.5575, 7.554, 7.549, 7.5656, 7.5733, 7.5862, 7.6094, 7.6172, 7.6121, 7.6065, 7.601, 7.5958, 7.5909, 7.5988, 7.5944, 7.589, 7.585, 7.5801, 7.5751, 7.5714, 7.5684, 7.5686, 7.5646, 7.5644, 7.561, 7.5597, 7.556, 7.5749, 7.5713, 7.5666, 7.5614, 7.5702, 7.5666, 7.5629, 7.5599, 7.5672, 7.5633, 7.5585, 7.5543, 7.5388, 7.5339, 7.5292, 7.5355, 7.5306, 7.527, 7.5261, 7.5335, 7.5309, 7.5271, 7.5225, 7.5078, 7.5045, 7.5118, 7.5267, 7.5235, 7.5309, 7.5279, 7.5231, 7.5185, 7.5141, 7.5206, 7.5161, 7.5231, 7.5301, 7.5262, 7.5233, 7.52, 7.5155, 7.5118, 7.5078, 7.5155, 7.5116, 7.5194, 7.5156, 7.5115, 7.5308, 7.5368, 7.5462, 7.5424, 7.5403, 7.5369, 7.534, 7.5405, 7.5466, 7.5433, 7.5398, 7.5355, 7.5313, 7.5321, 7.5301, 7.5259, 7.5217, 7.5187, 7.5158, 7.5126, 7.5102, 7.5062, 7.5035, 7.4998, 7.497, 7.5034, 7.5005, 7.4967, 7.4946, 7.4909, 7.4875, 7.4845, 7.4814, 7.4781, 7.4742, 7.4717, 7.4681, 7.4642, 7.4612, 7.4574, 7.4542, 7.4509, 7.4477, 7.4439, 7.4403, 7.438, 7.4442, 7.4404, 7.4364, 7.4342, 7.4314, 7.4276, 7.424, 7.4203, 7.4165, 7.4135, 7.4108, 7.4179, 7.4144, 7.4605, 7.4581, 7.455, 7.4513, 7.4491, 7.4466, 7.4712, 7.4689, 7.466, 7.4625, 7.4591, 7.4554, 7.4519, 7.4496, 7.4457, 7.4435, 7.4398, 7.4377, 7.4342, 7.4406, 7.4382, 7.4358, 7.4327, 7.4388, 7.4462, 7.452, 7.4486, 7.4561, 7.4621, 7.468, 7.4644, 7.4613, 7.4579, 7.4633, 7.4606, 7.4587, 7.4576, 7.4572, 7.4535, 7.4584, 7.4564, 7.4534, 7.4524, 7.4494, 7.4461, 7.4521, 7.4488, 7.4525, 7.4489, 7.4548, 7.4605, 7.4799, 7.4763, 7.4729, 7.4693, 7.476, 7.4731, 7.4701, 7.4666, 7.464, 7.4608, 7.4664, 7.4632, 7.46, 7.4574, 7.4541, 7.4514, 7.448, 7.4454, 7.451, 7.44, 7.4368, 7.4423, 7.4425, 7.4481, 7.4698, 7.4759, 7.473, 7.4778, 7.4743, 7.4709, 7.4673, 7.4721, 7.4686, 7.4658, 7.4709, 7.4698, 7.4676, 7.4648, 7.4623, 7.4516, 7.4577, 7.4628, 7.4681, 7.4737, 7.471, 7.4688, 7.4661, 7.4632, 7.4605, 7.4656, 7.47, 7.4667, 7.4646, 7.4621, 7.4593, 7.4566, 7.4461, 7.4434, 7.433, 7.4308, 7.4363, 7.4351, 7.4325, 7.4315, 7.4374, 7.4427, 7.4479, 7.4454, 7.4461, 7.4919, 7.4979, 7.4964, 7.4951, 7.4927, 7.4894, 7.4944, 7.4922, 7.4903, 7.4958, 7.4932, 7.4902, 7.487, 7.4841, 7.4818, 7.4788, 7.4838, 7.4884, 7.4867, 7.4841, 7.4829, 7.4876, 7.4845, 7.4814, 7.48, 7.4781, 7.4827, 7.4798, 7.4846, 7.489, 7.4937, 7.4904, 7.4878, 7.4849, 7.4885, 7.4857, 7.4826, 7.4809, 7.4861, 7.4831, 7.48, 7.4776, 7.476, 7.4741, 7.4722, 7.4712, 7.4686, 7.4658, 7.4631, 7.4603, 7.4652, 7.4622, 7.4596, 7.4569, 7.4553, 7.4528, 7.4499, 7.4547, 7.4525, 7.45, 7.4473, 7.4449, 7.4421, 7.4394, 7.4367, 7.4341, 7.4326, 7.4299, 7.4295, 7.4341, 7.4315, 7.4295, 7.4269, 7.4242, 7.422, 7.4201, 7.4172, 7.4151, 7.4209, 7.4182, 7.4159, 7.421, 7.4186, 7.4229, 7.4203, 7.4176, 7.4153, 7.4128, 7.4107, 7.4086, 7.4129, 7.418, 7.4228, 7.421, 7.4198, 7.417, 7.418, 7.4226, 7.4203, 7.4249, 7.4235, 7.4219, 7.4267, 7.433, 7.4339, 7.4364, 7.4406, 7.4398, 7.4442, 7.4425, 7.4399, 7.4373, 7.4416, 7.4394, 7.4368, 7.4342, 7.4383, 7.4355, 7.4332, 7.4307, 7.4374, 7.435, 7.4323, 7.4308, 7.4284, 7.4256, 7.4233, 7.4209, 7.4196, 7.4241, 7.4608, 7.453, 7.4504, 7.4479, 7.4517, 7.449, 7.4477, 7.4516, 7.4554, 7.4592, 7.4578, 7.4778, 7.4758, 7.4748, 7.4722, 7.4697, 7.4672, 7.4651, 7.4626, 7.4666, 7.4644, 7.4619, 7.466, 7.4641, 7.4614, 7.4721, 7.4694, 7.4612, 7.4528, 7.4502, 7.4477, 7.4462, 7.4704, 7.4742, 7.472, 7.4699, 7.4678, 7.4659, 7.4638, 7.4613, 7.4588, 7.4638, 7.4616, 7.459, 7.4571, 7.4679, 7.4658, 7.4699, 7.4675, 7.4651, 7.4626, 7.4612, 7.4597, 7.4594, 7.4513, 7.4495, 7.447, 7.4446, 7.4483, 7.4402, 7.4438, 7.4418, 7.4405, 7.4382, 7.4421, 7.4458, 7.4497, 7.4472, 7.451, 7.4548, 7.4525, 7.4604, 7.464, 7.4616, 7.4597, 7.4573, 7.4613, 7.46, 7.4579, 7.4557, 7.4605, 7.4583, 7.4593, 7.4569, 7.4552, 7.4591, 7.458, 7.4618, 7.4661, 7.4707, 7.4684, 7.4667, 7.4647, 7.463, 7.4667, 7.4594, 7.4577, 7.4562, 7.454, 7.4517, 7.4494, 7.4483, 7.4474, 7.4532, 7.4511, 7.4488, 7.447, 7.445, 7.4426, 7.4526, 7.4508, 7.4544, 7.4528, 7.4687, 7.4665, 7.4701, 7.468, 7.4662, 7.4645, 7.4623, 7.4601, 7.4596, 7.4576, 7.4619, 7.4596, 7.4573, 7.4551, 7.4585, 7.4568, 7.4609, 7.4586, 7.457, 7.455, 7.4615, 7.4557, 7.4593, 7.457, 7.4718, 7.4696, 7.4682, 7.4667, 7.4649, 7.4631, 7.4565, 7.4599, 7.4584, 7.4561, 7.4594, 7.4523, 7.4519, 7.4555, 7.4591, 7.4648, 7.4627, 7.4605, 7.4587, 7.4566, 7.4545, 7.4592, 7.4629, 7.4664, 7.4765, 7.4751, 7.4679, 7.4663, 7.4641, 7.4672, 7.4654, 7.4643, 7.4675, 7.4707, 7.4685, 7.472, 7.4702, 7.4681, 7.4661, 7.4639, 7.4616, 7.4595, 7.4626, 7.4613, 7.4697, 7.4685, 7.4715, 7.47, 7.4737, 7.483, 7.4817, 7.4799, 7.4777, 7.4767, 7.476, 7.4739, 7.4915, 7.4899, 7.4879, 7.4864, 7.4847, 7.486, 7.4845, 7.4836, 7.4819, 7.4838, 7.482, 7.48, 7.4785, 7.4825, 7.4768, 7.4753, 7.4741, 7.4774, 7.4754, 7.4811, 7.4791, 7.4772, 7.4751, 7.4736, 7.4717, 7.4697, 7.4676, 7.4667, 7.4652, 7.4631, 7.4662, 7.4651, 7.4636, 7.457, 7.4604, 7.4584, 7.4565, 7.4545, 7.4526, 7.4513, 7.4545, 7.4527, 7.4557, 7.4535, 7.4514, 7.4507, 7.4487, 7.4522, 7.4504, 7.4484, 7.447, 7.4501, 7.4532, 7.4516, 7.4502, 7.4487, 7.4521, 7.451, 7.4495, 7.4491, 7.4525, 7.4558, 7.4587, 7.4621, 7.4602, 7.4586, 7.4565, 7.4551, 7.4584, 7.4572, 7.4557, 7.4543, 7.4525, 7.4556, 7.4539, 7.452, 7.4507, 7.4535, 7.4563, 7.4546, 7.4528, 7.4511, 7.4502, 7.449, 7.4521, 7.4507, 7.4488, 7.4474, 7.4462, 7.4603, 7.4583, 7.4619, 7.4606, 7.4646, 7.4632, 7.462, 7.4609, 7.4599, 7.4538, 7.4521, 7.4517, 7.4514, 7.4501, 7.4487, 7.4473, 7.4459, 7.4488, 7.4476, 7.4457, 7.4443, 7.4431, 7.4411, 7.4391, 7.4375, 7.4412, 7.4395, 7.4395, 7.438, 7.4405, 7.4417, 7.4451, 7.4435, 7.4416, 7.4446, 7.4526, 7.4508, 7.4543, 7.4577, 7.4559, 7.4543, 7.4529, 7.451, 7.4492, 7.4474, 7.4459, 7.4443, 7.4426, 7.4461, 7.4444, 7.4475, 7.4457, 7.4442, 7.4471, 7.4458, 7.4399, 7.4384, 7.4373, 7.436, 7.436, 7.4559, 7.4548, 7.4529, 7.4514, 7.4459, 7.4446, 7.4473, 7.4458, 7.4443, 7.4436, 7.442, 7.4402, 7.4383, 7.4364, 7.4394, 7.4376, 7.4358, 7.4341, 7.4338, 7.432, 7.4308, 7.429, 7.4272, 7.4214, 7.4195, 7.4224, 7.4219, 7.4201, 7.4183, 7.4166, 7.4156, 7.4141, 7.4141, 7.4133, 7.416, 7.4102, 7.4131, 7.4114, 7.4103, 7.4093, 7.4081, 7.4068, 7.4097, 7.408, 7.4023, 7.4013, 7.4001, 7.4027, 7.4013, 7.3995, 7.3985, 7.3969, 7.3996, 7.4024, 7.4017, 7.3999, 7.3982, 7.397, 7.396, 7.3943, 7.3926, 7.3912, 7.3944, 7.3971, 7.3956, 7.3941, 7.3971, 7.3956, 7.3947, 7.3932, 7.3917, 7.3949, 7.3943, 7.3931, 7.3914, 7.3901, 7.3929, 7.3913, 7.3898, 7.3881, 7.3864, 7.3853, 7.3836, 7.3782, 7.377, 7.3759, 7.3787, 7.3816, 7.3805, 7.3801, 7.3786, 7.3771, 7.3801, 7.3787, 7.3818, 7.382, 7.3852, 7.3838, 7.3827, 7.3809, 7.3793, 7.3781, 7.3769, 7.38, 7.3748, 7.3737, 7.3727, 7.3713, 7.3738, 7.3728, 7.3716, 7.3699, 7.3685, 7.3712, 7.3696, 7.3688, 7.3676, 7.3661, 7.3688, 7.3676, 7.3702, 7.3647, 7.3633, 7.3659, 7.3611, 7.36, 7.3585, 7.3571, 7.3555, 7.3544, 7.3597, 7.3599, 7.3585, 7.3572, 7.3557, 7.3546, 7.353, 7.3518, 7.3507, 7.3491, 7.3484, 7.3481, 7.3468, 7.3493, 7.3484, 7.3474, 7.346, 7.3486, 7.347, 7.3456, 7.3482, 7.3472, 7.3499, 7.3569, 7.3558, 7.3545, 7.353, 7.3515, 7.353, 7.3557, 7.3544, 7.3492, 7.3478, 7.3462, 7.3489, 7.3474, 7.3459, 7.3454, 7.3439, 7.3438, 7.3423, 7.3417, 7.3405, 7.341, 7.3407, 7.342, 7.3407, 7.3396, 7.3388, 7.3471, 7.346, 7.3446, 7.3408, 7.3369, 7.3355, 7.3341, 7.3351, 7.3337, 7.3323, 7.3307, 7.3334, 7.3326, 7.3313, 7.3298, 7.3293, 7.3286, 7.3394, 7.3344, 7.333, 7.332, 7.3314, 7.3299, 7.3292, 7.3278, 7.3268, 7.3258, 7.3243, 7.3287, 7.3272, 7.3258, 7.3289, 7.332, 7.3347, 7.3334, 7.3324, 7.3276, 7.3373, 7.3358, 7.3343, 7.3328, 7.3318, 7.3306, 7.3296, 7.3384, 7.3376, 7.3367, 7.3319, 7.3317, 7.3308, 7.3294, 7.3287, 7.3278, 7.3309, 7.3297, 7.3282, 7.3268, 7.3258, 7.3244, 7.3315, 7.3366, 7.3393, 7.3382, 7.3389, 7.3455, 7.3445, 7.3433, 7.3426, 7.3412, 7.3403, 7.3401, 7.3387, 7.3384, 7.3372, 7.336, 7.3353, 7.3346, 7.3333, 7.3319, 7.3313, 7.33, 7.329, 7.3316, 7.3306, 7.3292, 7.332, 7.3348, 7.3335, 7.3324, 7.331, 7.3311, 7.3297, 7.3284, 7.3274, 7.3261, 7.3283, 7.3271, 7.326, 7.3287, 7.3429, 7.3456, 7.3444, 7.3474, 7.3464, 7.3469, 7.3459, 7.3493, 7.3482, 7.3469, 7.3456, 7.3448, 7.3443, 7.3432, 7.3419, 7.3448, 7.3435, 7.342, 7.3444, 7.3435, 7.3466, 7.3456, 7.3444, 7.3434, 7.3455, 7.3448, 7.3441, 7.3431, 7.3453, 7.3478, 7.3466, 7.3459, 7.3448, 7.3441, 7.3426, 7.3427, 7.345, 7.3438, 7.3424, 7.341, 7.3432, 7.342, 7.3409, 7.3396, 7.3417, 7.3406, 7.3396, 7.3387, 7.3412, 7.3439, 7.3427, 7.3418, 7.3405, 7.3469, 7.3462, 7.345, 7.3438, 7.3461, 7.3448, 7.3436, 7.3425, 7.3411, 7.3436, 7.3428, 7.3452, 7.3476, 7.3488, 7.3482, 7.347, 7.3496, 7.3483, 7.347, 7.3457, 7.3458, 7.3448, 7.3435, 7.3465, 7.3451, 7.3438, 7.3439, 7.3464, 7.3456, 7.3447, 7.3441, 7.3428, 7.3452, 7.3451, 7.3439, 7.3431, 7.3418, 7.3405, 7.3393, 7.3417, 7.3444, 7.3437, 7.3426, 7.3416, 7.3406, 7.3396, 7.3394, 7.3416, 7.3404, 7.3397, 7.3389, 7.3377, 7.3371, 7.3366, 7.3357, 7.3379, 7.3437, 7.3463, 7.3453, 7.348, 7.3468, 7.346, 7.3483, 7.3471, 7.3494, 7.3484, 7.3475, 7.35, 7.3487, 7.3473, 7.3465, 7.3452, 7.3438, 7.3428, 7.3418, 7.3405, 7.3427, 7.3449, 7.3474, 7.3463, 7.3455, 7.3444, 7.3435, 7.3423, 7.3414, 7.3437, 7.3424, 7.3421, 7.3408, 7.3399, 7.3422, 7.3411, 7.3404, 7.3424, 7.3412, 7.3401, 7.3394, 7.3403, 7.3395, 7.3418, 7.3439, 7.3427, 7.3427, 7.3443, 7.343, 7.3452, 7.3473, 7.3477, 7.3464, 7.3489, 7.3512, 7.3536, 7.3526, 7.3618, 7.3605, 7.3591, 7.3614, 7.3602, 7.3593, 7.358, 7.3568, 7.3589, 7.358, 7.3574, 7.3563, 7.3587, 7.3581, 7.3568, 7.3555, 7.3546, 7.3568, 7.3563, 7.3587, 7.3607, 7.3609, 7.3629, 7.3588, 7.3581, 7.3569, 7.3558, 7.3517, 7.3544, 7.3566, 7.3555, 7.3545, 7.3535, 7.3523, 7.3539, 7.3527, 7.3515, 7.3503, 7.3491, 7.3481, 7.3469, 7.3456, 7.3445, 7.344, 7.3428, 7.3417, 7.3406, 7.3427, 7.3414, 7.3411, 7.3399, 7.3394, 7.3382, 7.3372, 7.3363, 7.3353, 7.3341, 7.3336, 7.336, 7.3349, 7.3342, 7.3331, 7.332, 7.3323, 7.3314, 7.3336, 7.3325, 7.3346, 7.3335, 7.3327, 7.3316, 7.3276, 7.3265, 7.3253, 7.3241, 7.3234, 7.3222, 7.3214, 7.3208, 7.3203, 7.3191, 7.318, 7.3172, 7.3185, 7.3177, 7.317, 7.3189, 7.318, 7.3172, 7.3162, 7.3152, 7.3143, 7.3131, 7.3119, 7.3107, 7.3095, 7.3086, 7.3074, 7.3062, 7.3087, 7.3108, 7.3108, 7.3099, 7.3087, 7.3077, 7.3073, 7.3065, 7.3054, 7.3052, 7.3053, 7.3042, 7.303, 7.3019, 7.3008, 7.304, 7.3038, 7.3091, 7.3082, 7.307, 7.3062, 7.3078, 7.3066, 7.3057, 7.312, 7.3195, 7.3183, 7.3202, 7.3192, 7.3185, 7.3174, 7.3165, 7.3217, 7.3206, 7.3195, 7.3254, 7.3243, 7.3263, 7.3285, 7.3277, 7.3265, 7.3257, 7.3279, 7.3269, 7.3258, 7.3246, 7.3351, 7.334, 7.3331, 7.3325, 7.3346, 7.3337, 7.3328, 7.3372, 7.3361, 7.3381, 7.337, 7.3433, 7.3422, 7.3414, 7.3402, 7.3432, 7.3452, 7.344, 7.3464, 7.3455, 7.3481, 7.3475, 7.3464, 7.3487, 7.3476, 7.3468, 7.3465, 7.3456, 7.3447, 7.3439, 7.3429, 7.3454, 7.3444, 7.3434, 7.3423, 7.3387, 7.3376, 7.3368, 7.336, 7.3349, 7.3337, 7.3333, 7.3327, 7.3316, 7.3434, 7.3422, 7.3414, 7.341, 7.3399, 7.3392, 7.338, 7.337, 7.3358, 7.3349, 7.3338, 7.334, 7.3334, 7.3384, 7.3376, 7.3365, 7.3354, 7.3344, 7.3334, 7.3329, 7.332, 7.3331, 7.3351, 7.334, 7.333, 7.3326, 7.3317, 7.3308, 7.3299, 7.3288, 7.3279, 7.3268, 7.326, 7.3256, 7.3307, 7.3302, 7.3292, 7.3317, 7.3307, 7.33, 7.3295, 7.3289, 7.3278, 7.347, 7.349, 7.3485, 7.3475, 7.3463, 7.3482, 7.3473, 7.3462, 7.3453, 7.3444, 7.3476, 7.347, 7.3459, 7.3448, 7.3439, 7.3428, 7.3416, 7.3434, 7.3427, 7.3415, 7.3406, 7.3395, 7.3412, 7.3414, 7.3441, 7.3432, 7.3422, 7.3411, 7.3401, 7.3394, 7.3386, 7.3375, 7.3394, 7.3411, 7.3404, 7.3378, 7.3376, 7.3369, 7.3522, 7.3512, 7.3509, 7.3502, 7.3521, 7.354, 7.3529, 7.352, 7.3539, 7.3557, 7.3549, 7.3515, 7.3709, 7.3734, 7.3727, 7.3717, 7.3737, 7.3755, 7.3748, 7.3745, 7.3763, 7.3786, 7.378, 7.3799, 7.3788, 7.3782, 7.3775, 7.3793, 7.3782, 7.3776, 7.377, 7.3801, 7.3794, 7.3785, 7.3777, 7.3769, 7.3758, 7.3751, 7.3742, 7.3731, 7.3724, 7.3716, 7.3705, 7.3746, 7.3767, 7.3757, 7.3777, 7.3797, 7.379, 7.3837, 7.3854, 7.3845, 7.3839, 7.3829, 7.3818, 7.3808, 7.3798, 7.3817, 7.3807, 7.3797, 7.3786, 7.3815, 7.3833, 7.3852, 7.3842, 7.3832, 7.3823, 7.3845, 7.3834, 7.38, 7.3793, 7.3827, 7.3849, 7.3867, 7.3863, 7.3881, 7.3873, 7.3865, 7.3865, 7.3857, 7.3847, 7.3837, 7.3827, 7.3818, 7.3824, 7.3791, 7.3811, 7.3829, 7.3821, 7.3811, 7.3803, 7.3792, 7.3782, 7.3772, 7.3761, 7.3751, 7.3746, 7.3738, 7.3754, 7.3751, 7.3741, 7.373, 7.3722, 7.3767, 7.377, 7.3765, 7.3784, 7.3787, 7.383, 7.3848, 7.384, 7.383, 7.3846, 7.3837, 7.3828, 7.3829, 7.3819, 7.3837, 7.3853, 7.3855, 7.3873, 7.3942, 7.3932, 7.3921, 7.391, 7.3902, 7.3893, 7.3885, 7.3959, 7.3924, 7.3942, 7.3932, 7.3948, 7.3964, 7.3984, 7.4002, 7.3992, 7.3958, 7.3976, 7.3994, 7.3987, 7.4004, 7.4048, 7.4071, 7.4087, 7.4104, 7.4093, 7.4083, 7.4104, 7.4121, 7.4112, 7.4127, 7.4142, 7.4132, 7.4148, 7.419, 7.4182, 7.4198, 7.419, 7.4182, 7.4198, 7.4216, 7.4208, 7.4198, 7.4188, 7.418, 7.417, 7.4162, 7.4152, 7.4145, 7.4166, 7.4156, 7.4146, 7.4162, 7.4206, 7.4209, 7.4205, 7.4194, 7.4203, 7.4237, 7.4241, 7.4235, 7.4225, 7.4242, 7.4232, 7.4223, 7.4216, 7.4206, 7.4201, 7.4191, 7.4184, 7.4177, 7.4172, 7.4167, 7.4186, 7.418, 7.4171, 7.4164, 7.416, 7.4152, 7.417, 7.4185, 7.4175, 7.4192, 7.4207, 7.42, 7.4216, 7.4206, 7.4196, 7.4186, 7.4203, 7.4195, 7.419, 7.4187, 7.4216, 7.4206, 7.4197, 7.4189, 7.4184, 7.4177, 7.4167, 7.4158, 7.4148, 7.4138, 7.4161, 7.4155, 7.4172, 7.4164, 7.4156, 7.4173, 7.419, 7.4207, 7.4223, 7.4214, 7.4203, 7.421, 7.4202, 7.4194, 7.4186, 7.4202, 7.4192, 7.4182, 7.4173, 7.4192, 7.4194, 7.4186, 7.4178, 7.4196, 7.4188, 7.4181, 7.4214, 7.4245, 7.4261, 7.4277, 7.4246, 7.4214, 7.421, 7.4225, 7.424, 7.423, 7.4221, 7.4212, 7.4202, 7.4222, 7.424, 7.423, 7.4246, 7.424, 7.4256, 7.4248, 7.4241, 7.4233, 7.4223, 7.4216, 7.4209, 7.4201, 7.4234, 7.4227, 7.4281, 7.4308, 7.4301, 7.4302, 7.4276, 7.4268, 7.4288, 7.4357, 7.4349, 7.434, 7.4356, 7.4371, 7.4409, 7.4401, 7.4416, 7.4409, 7.4434, 7.4429, 7.442, 7.4458, 7.4451, 7.4492, 7.4483, 7.4452, 7.4444, 7.4435, 7.445, 7.4466, 7.4482, 7.4475, 7.4492, 7.4483, 7.4473, 7.4466, 7.4459, 7.4473, 7.4488, 7.4479, 7.4469, 7.4485, 7.4476, 7.4466, 7.446, 7.4451, 7.4442, 7.4432, 7.4424, 7.4414, 7.4408, 7.4399, 7.4392, 7.4382, 7.4372, 7.4388, 7.4404, 7.4421, 7.4411, 7.4429, 7.4421, 7.4414, 7.4432, 7.4425, 7.4422, 7.4416, 7.4406, 7.4397, 7.4388, 7.4379, 7.437, 7.4386, 7.4404, 7.442, 7.441, 7.4404, 7.4394, 7.4385, 7.4376, 7.4367, 7.4382, 7.4397, 7.439, 7.436, 7.4354, 7.4354, 7.4363, 7.4378, 7.4372, 7.4365, 7.4383, 7.4374, 7.4373, 7.4366, 7.438, 7.4372, 7.4364, 7.4357, 7.4391, 7.4382, 7.4378, 7.4385, 7.4401, 7.4392, 7.4406, 7.4401, 7.4416, 7.4407, 7.4402, 7.4372, 7.4364, 7.4354, 7.4345, 7.436, 7.4352, 7.4367, 7.4357, 7.4351, 7.4366, 7.4356, 7.437, 7.434, 7.4354, 7.4348, 7.4342, 7.4359, 7.4351, 7.4343, 7.434, 7.4337, 7.433, 7.4324, 7.4337, 7.4331, 7.4326, 7.4318, 7.431, 7.4325, 7.4316, 7.4306, 7.4299, 7.4292, 7.4286, 7.4278, 7.4269, 7.4302, 7.4293, 7.4286, 7.4301, 7.4315, 7.4307, 7.4298, 7.4314, 7.433, 7.4302, 7.4317, 7.4308, 7.4302, 7.4317, 7.4309, 7.4304, 7.4296, 7.4287, 7.4279, 7.4271, 7.4262, 7.4254, 7.4247, 7.426, 7.4252, 7.4244, 7.4238, 7.4233, 7.4224, 7.4242, 7.4257, 7.4249, 7.4241, 7.4256, 7.4248, 7.4241, 7.4232, 7.4225, 7.424, 7.4232, 7.4249, 7.4265, 7.4257, 7.4249, 7.4263, 7.4256, 7.4248, 7.424, 7.4234, 7.4228, 7.4222, 7.4216, 7.4208, 7.4202, 7.4172, 7.4169, 7.416, 7.4152, 7.4144, 7.4137, 7.4161, 7.4153, 7.4145, 7.4139, 7.4156, 7.4163, 7.4154, 7.4145, 7.4162, 7.4155, 7.4146, 7.4161, 7.4175, 7.4168, 7.4183, 7.4195, 7.421, 7.4202, 7.4194, 7.4211, 7.4225, 7.4218, 7.4234, 7.4235, 7.4228, 7.4242, 7.4256, 7.427, 7.4261, 7.4255, 7.4273, 7.4288, 7.4302, 7.4293, 7.4287, 7.4323, 7.4315, 7.4307, 7.4342, 7.4334, 7.4348, 7.434, 7.4331, 7.4323, 7.4315, 7.431, 7.4303, 7.4296, 7.4287, 7.4302, 7.4317, 7.4309, 7.43, 7.4272, 7.4264, 7.4277, 7.4269, 7.4282, 7.4274, 7.4268, 7.4262, 7.4276, 7.429, 7.4281, 7.4272, 7.4287, 7.4282, 7.4295, 7.4307, 7.4347, 7.4349, 7.4363, 7.4357, 7.4349, 7.434, 7.4334, 7.4326, 7.4321, 7.4314, 7.4307, 7.4321, 7.4314, 7.4309, 7.4324, 7.4317, 7.4309, 7.4329, 7.4321, 7.4312, 7.4306, 7.4427, 7.4419, 7.441, 7.4402, 7.4416, 7.441, 7.4402, 7.4396, 7.4393, 7.4404, 7.4398, 7.4389, 7.4381, 7.4373, 7.4366, 7.4358, 7.438, 7.4374, 7.4367, 7.4358, 7.4372, 7.4384, 7.4379, 7.4372, 7.4367, 7.436, 7.4355, 7.4397, 7.439, 7.4382, 7.4374, 7.4346, 7.4337, 7.4354, 7.4372, 7.4364, 7.4356, 7.4352, 7.4347, 7.4343, 7.4358, 7.4372, 7.4365, 7.4358, 7.4349, 7.4342, 7.4336, 7.4328, 7.4323, 7.4314, 7.4309, 7.4302, 7.4295, 7.4286, 7.43, 7.43, 7.4272, 7.4264, 7.4256, 7.425, 7.427, 7.4285, 7.4276, 7.4268, 7.4314, 7.4344, 7.4336, 7.4328, 7.432, 7.4357, 7.4349, 7.4341, 7.4352, 7.4396, 7.441, 7.4425, 7.4418, 7.441, 7.4404, 7.4395, 7.4419, 7.4414, 7.4427, 7.4431, 7.4446, 7.4463, 7.4477, 7.4469, 7.446, 7.4482, 7.4513, 7.4485, 7.4478, 7.4495, 7.4488, 7.4481, 7.4473, 7.4467, 7.4459, 7.4451, 7.447, 7.4462, 7.4455, 7.4448, 7.4443, 7.4436, 7.4428, 7.442, 7.4432, 7.4426, 7.4419, 7.4417, 7.4416, 7.441, 7.4402, 7.4395, 7.4407, 7.4444, 7.444, 7.4432, 7.4424, 7.442, 7.4411, 7.4427, 7.4423, 7.4438, 7.4432, 7.4425, 7.4419, 7.4411, 7.4424, 7.4418, 7.4484, 7.4498, 7.4511, 7.4503, 7.45, 7.4493, 7.4485, 7.4499, 7.4491, 7.4504, 7.4495, 7.4489, 7.4481, 7.4494, 7.4488, 7.4481, 7.4473, 7.4466, 7.4458, 7.445, 7.4424, 7.4438, 7.4433, 7.4427, 7.442, 7.4433, 7.4427, 7.4423, 7.4416, 7.4409, 7.4403, 7.4395, 7.4389, 7.4381, 7.4373, 7.4388, 7.4381, 7.4376, 7.437, 7.4362, 7.4355, 7.4347, 7.4339, 7.4332, 7.4324, 7.4302, 7.4294, 7.4307, 7.4321, 7.4314, 7.4311, 7.4327, 7.432, 7.4334, 7.4327, 7.4325, 7.4339, 7.4333, 7.4326, 7.4319, 7.4333, 7.4346, 7.4339, 7.4333, 7.4327, 7.4326, 7.4319, 7.4312, 7.4286, 7.428, 7.4273, 7.4269, 7.4261, 7.4274, 7.4266, 7.4258, 7.425, 7.4243, 7.4235, 7.4228, 7.4221, 7.4215, 7.4207, 7.4199, 7.4193, 7.4205, 7.4216, 7.4208, 7.4201, 7.4214, 7.4208, 7.4222, 7.4216, 7.4211, 7.4204, 7.4196, 7.4189, 7.4186, 7.4181, 7.4176, 7.4168, 7.4165, 7.4158, 7.415, 7.4162, 7.4154, 7.4148, 7.414, 7.4132, 7.4144, 7.4157, 7.4169, 7.4163, 7.4176, 7.4188, 7.4183, 7.4177, 7.4169, 7.4163, 7.4156, 7.4149, 7.416, 7.4153, 7.4166, 7.416, 7.4136, 7.4129, 7.4142, 7.4155, 7.4154, 7.4147, 7.4139, 7.4152, 7.4144, 7.4136, 7.4131, 7.4124, 7.4117, 7.4131, 7.4124, 7.4136, 7.4139, 7.4131, 7.4125, 7.4118, 7.4131, 7.4142, 7.4136, 7.4132, 7.4143, 7.4141, 7.4135, 7.413, 7.4144, 7.4165, 7.418, 7.4172, 7.4168, 7.4169, 7.4171, 7.4164, 7.4158, 7.4169, 7.4161, 7.4161, 7.4175, 7.4168, 7.4183, 7.4177, 7.417, 7.4183, 7.4178, 7.417, 7.4181, 7.4174, 7.4169, 7.4163, 7.4156, 7.415, 7.4163, 7.4176, 7.4169, 7.4162, 7.4158, 7.428, 7.4273, 7.4286, 7.428, 7.4293, 7.4286, 7.4282, 7.4274, 7.4266, 7.4261, 7.4253, 7.4277, 7.4269, 7.4263, 7.4255, 7.4331, 7.4325, 7.4319, 7.4312, 7.4306, 7.4282, 7.4295, 7.4289, 7.4283, 7.4276, 7.4268, 7.4279, 7.4293, 7.4286, 7.4278, 7.429, 7.4302, 7.4295, 7.4288, 7.4303, 7.4297, 7.4289, 7.4282, 7.4278, 7.4272, 7.4269, 7.4264, 7.4324, 7.4352, 7.4387, 7.444, 7.4417, 7.4411, 7.4425, 7.4417, 7.4413, 7.4406, 7.4401, 7.4394, 7.4406, 7.4399, 7.4412, 7.4424, 7.442, 7.4418, 7.4421, 7.4413, 7.441, 7.4405, 7.4417, 7.4451, 7.4445, 7.444, 7.448, 7.4491, 7.4485, 7.4479, 7.4473, 7.4487, 7.4485, 7.4481, 7.4482, 7.4478, 7.4472, 7.4465, 7.4488, 7.449, 7.4483, 7.448, 7.4472, 7.4465, 7.4504, 7.4555, 7.4548, 7.4541, 7.4553, 7.4546, 7.454, 7.4618, 7.4631, 7.4625, 7.4617, 7.461, 7.4607, 7.46, 7.4614, 7.4608, 7.4605, 7.4581, 7.4574, 7.4568, 7.4561, 7.4556, 7.455, 7.4545, 7.454, 7.4533, 7.4546, 7.4557, 7.4551, 7.4588, 7.4582, 7.4577, 7.4572, 7.4564, 7.4559, 7.4571, 7.4566, 7.4578, 7.4571, 7.4564, 7.4576, 7.4569, 7.4573, 7.4566, 7.456, 7.4572, 7.4584, 7.4577, 7.4589, 7.4582, 7.4574, 7.4567, 7.4599, 7.4619, 7.4612, 7.4607, 7.46, 7.4612, 7.4607, 7.4585, 7.4578, 7.4574, 7.4567, 7.456, 7.4573, 7.4569, 7.4563, 7.4566, 7.4558, 7.457, 7.4582, 7.4579, 7.4573, 7.4567, 7.4562, 7.4577, 7.457, 7.4564, 7.4557, 7.455, 7.4543, 7.4538, 7.4533, 7.4526, 7.4541, 7.4534, 7.4528, 7.452, 7.4518, 7.4513, 7.4507, 7.45, 7.4493, 7.4486, 7.4482, 7.4477, 7.4488, 7.4481, 7.4478, 7.4474, 7.4485, 7.4497, 7.449, 7.4485, 7.4479, 7.449, 7.4485, 7.4478, 7.449, 7.4484, 7.4532, 7.4543, 7.452, 7.4532, 7.4527, 7.452, 7.455, 7.4543, 7.4538, 7.4557, 7.4551, 7.4562, 7.4555, 7.455, 7.4544, 7.4542, 7.4559, 7.4553, 7.4547, 7.4561, 7.4574, 7.4577, 7.4573, 7.4567, 7.4561, 7.4574, 7.4568, 7.4562, 7.4558, 7.4552, 7.4563, 7.4556, 7.4569, 7.4592, 7.4604, 7.4613, 7.4625, 7.4618, 7.4623, 7.4618, 7.4613, 7.4638, 7.4633, 7.4626, 7.4619, 7.4614, 7.4607, 7.4587, 7.4669, 7.468, 7.4692, 7.4703, 7.4696, 7.469, 7.4685, 7.468, 7.4692, 7.4688, 7.4681, 7.4679, 7.4674, 7.4688, 7.4698, 7.4777, 7.4787, 7.478, 7.4775, 7.4791, 7.4784, 7.4778, 7.4789, 7.4782, 7.4777, 7.479, 7.4783, 7.4776, 7.477, 7.4764, 7.4757, 7.4779, 7.478, 7.4774, 7.4767, 7.4764, 7.4742, 7.4735, 7.4728, 7.4721, 7.4714, 7.4709, 7.4703, 7.4697, 7.469, 7.4683, 7.4678, 7.4673, 7.468, 7.469, 7.4683, 7.4696, 7.4691, 7.4701, 7.4711, 7.4707, 7.4703, 7.4698, 7.4694, 7.4688, 7.4681, 7.4674, 7.4667, 7.4662, 7.4657, 7.4669, 7.4663, 7.4658, 7.4651, 7.4647, 7.4641, 7.4634, 7.4627, 7.462, 7.4613, 7.4606, 7.4599, 7.4626, 7.4604, 7.4601, 7.4596, 7.4591, 7.4584, 7.4577, 7.4572, 7.4589, 7.4582, 7.4585, 7.4578, 7.4589, 7.46, 7.4594, 7.4587, 7.458, 7.4573, 7.4584, 7.4579, 7.4572, 7.4565, 7.4559, 7.4564, 7.4557, 7.4552, 7.4545, 7.4538, 7.4551, 7.455, 7.4544, 7.4556, 7.455, 7.456, 7.4555, 7.4552, 7.4564, 7.4557, 7.4552, 7.4547, 7.4615, 7.461, 7.4622, 7.4686, 7.4697, 7.4692, 7.4771, 7.4766, 7.4761, 7.477, 7.4763, 7.4756, 7.4767, 7.4761, 7.4757, 7.4751, 7.475, 7.4746, 7.474, 7.4751, 7.4751, 7.4744, 7.4738, 7.4748, 7.4751, 7.4748, 7.4742, 7.4737, 7.4719, 7.4699, 7.4696, 7.4691, 7.4674, 7.4688, 7.4682, 7.4676, 7.4659, 7.4654, 7.4683, 7.4677, 7.4672, 7.4668, 7.4662, 7.4673, 7.4666, 7.466, 7.4654, 7.4649, 7.4644, 7.4655, 7.4665, 7.4661, 7.4655, 7.4649, 7.4643, 7.4673, 7.4682, 7.4693, 7.4687, 7.4682, 7.4675, 7.467, 7.4663, 7.4668, 7.4678, 7.4674, 7.4685, 7.4681, 7.4676, 7.4675, 7.4693, 7.4693, 7.4706, 7.4702, 7.4712, 7.4793, 7.4787, 7.4781, 7.4797, 7.4855, 7.4833, 7.4826, 7.4836, 7.4886, 7.488, 7.4883, 7.4878, 7.4874, 7.4893, 7.4887, 7.4897, 7.4908, 7.4919, 7.4912, 7.4922, 7.4922, 7.4916, 7.4912, 7.4909, 7.4905, 7.49, 7.4894, 7.4905, 7.4899, 7.4894, 7.4906, 7.4934, 7.4928, 7.4924, 7.4935, 7.4929, 7.4922, 7.4918, 7.4931, 7.4926, 7.4936, 7.493, 7.4924, 7.4937, 7.4931, 7.4925, 7.492, 7.4914, 7.491, 7.4904, 7.4899, 7.4878, 7.4874, 7.4869, 7.4868, 7.4877, 7.487, 7.4881, 7.4892, 7.4901, 7.4895, 7.489, 7.4885, 7.4864, 7.4858, 7.4852, 7.4845, 7.4855, 7.486, 7.4855, 7.4852, 7.4864, 7.4875, 7.4884, 7.4878, 7.4911, 7.492, 7.4913, 7.4924, 7.4934, 7.4927, 7.492, 7.4913, 7.493, 7.4924, 7.4917, 7.491, 7.4905, 7.4898, 7.4908, 7.4968, 7.4979, 7.4984, 7.4978, 7.4987, 7.4998, 7.5009, 7.5004, 7.4998, 7.4992, 7.4986, 7.4979, 7.4972, 7.4965, 7.496, 7.4954, 7.4948, 7.4942, 7.4935, 7.4944, 7.4938, 7.4949, 7.4944, 7.4943, 7.4937, 7.4931, 7.4925, 7.4928, 7.4921, 7.4914, 7.4908, 7.4919, 7.4913, 7.4908, 7.4918, 7.4912, 7.4921, 7.4914, 7.4909, 7.4921, 7.4915, 7.491, 7.4903, 7.4896, 7.489, 7.4884, 7.4877, 7.487, 7.4864, 7.4859, 7.4854, 7.4862, 7.4857, 7.4869, 7.4862, 7.4856, 7.4862, 7.4872, 7.4866, 7.4876, 7.487, 7.4864, 7.4859, 7.4855, 7.4865, 7.4859, 7.4838, 7.4847, 7.4843, 7.4837, 7.4831, 7.4843, 7.4837, 7.4848, 7.4857, 7.4851, 7.4852, 7.4852, 7.4847, 7.4879, 7.4873, 7.4883, 7.4883, 7.4894, 7.4888, 7.4885, 7.4889, 7.4882, 7.4875, 7.4871, 7.4865, 7.4859, 7.4853, 7.4849, 7.4859, 7.4853, 7.4847, 7.4857, 7.4868, 7.4878, 7.4871, 7.4865, 7.4858, 7.4853, 7.4848, 7.4858, 7.4853, 7.4863, 7.4871, 7.4865, 7.486, 7.4856, 7.485, 7.486, 7.487, 7.4865, 7.4861, 7.4855, 7.4849, 7.4843, 7.484, 7.4834, 7.4828, 7.4822, 7.4821, 7.4818, 7.4813, 7.4808, 7.482, 7.4831, 7.4825, 7.482, 7.4821, 7.4818, 7.4815, 7.4812, 7.4806, 7.48, 7.4797, 7.4796, 7.4789, 7.4786, 7.478, 7.4775, 7.4768, 7.4811, 7.4805, 7.4805, 7.48, 7.4825, 7.4834, 7.4829, 7.4825, 7.4805, 7.4815, 7.4809, 7.4819, 7.4813, 7.4807, 7.4802, 7.4796, 7.479, 7.48, 7.4794, 7.4804, 7.48, 7.4795, 7.4836, 7.483, 7.4862, 7.4858, 7.4868, 7.4863, 7.4859, 7.4854, 7.4849, 7.4846, 7.484, 7.4834, 7.4828, 7.4823, 7.4803, 7.4797, 7.4793, 7.4803, 7.4797, 7.4795, 7.4819, 7.4814, 7.4808, 7.4818, 7.4812, 7.4808, 7.4818, 7.4813, 7.4824, 7.482, 7.4837, 7.4822, 7.4816, 7.4825, 7.4819, 7.4813, 7.4807, 7.4801, 7.4809, 7.4818, 7.4814, 7.4823, 7.4803, 7.4798, 7.4795, 7.4792, 7.4773, 7.4787, 7.4796, 7.4791, 7.4785, 7.4782, 7.4776, 7.4772, 7.4766, 7.476, 7.4754, 7.475, 7.4745, 7.474, 7.4734, 7.4728, 7.4723, 7.4724, 7.4734, 7.4729, 7.474, 7.4734, 7.4805, 7.4799, 7.4793, 7.4789, 7.4785, 7.478, 7.4774, 7.4785, 7.4781, 7.4777, 7.4771, 7.4766, 7.478, 7.4798, 7.4792, 7.4787, 7.4782, 7.478, 7.4793, 7.4787, 7.4781, 7.4775, 7.4769, 7.4791, 7.4811, 7.4808, 7.4802, 7.4796, 7.4799, 7.4795, 7.4831, 7.4825, 7.4819, 7.4814, 7.4811, 7.4806, 7.48, 7.4809, 7.4818, 7.4827, 7.4823, 7.4817, 7.4814, 7.4811, 7.482, 7.4814, 7.4811, 7.4806, 7.48, 7.4794, 7.4788, 7.4782, 7.4777, 7.4773, 7.4767, 7.4761, 7.4755, 7.4764, 7.476, 7.4754, 7.4749, 7.4758, 7.4768, 7.4764, 7.4773, 7.4767, 7.4775, 7.477, 7.4764, 7.476, 7.4755, 7.4749, 7.4743, 7.4737, 7.4742, 7.4737, 7.4733, 7.4727, 7.4721, 7.4731, 7.474, 7.4734, 7.4758, 7.4768, 7.4778, 7.4772, 7.4783, 7.4779, 7.4788, 7.4782, 7.4791, 7.4785, 7.478, 7.4774, 7.4768, 7.4762, 7.4758, 7.4753, 7.4749, 7.4759, 7.4754, 7.4766, 7.4777, 7.4772, 7.4793, 7.4803, 7.4812, 7.4807, 7.4803, 7.4802, 7.4797, 7.4822, 7.4833, 7.4814, 7.4809, 7.4805, 7.48, 7.4781, 7.4793, 7.4809, 7.4806, 7.4801, 7.4795, 7.4812, 7.4807, 7.4817, 7.4813, 7.4816, 7.481, 7.4819, 7.4813, 7.4809, 7.4803, 7.4799, 7.4794, 7.4775, 7.4769, 7.4754, 7.4752, 7.476, 7.4754, 7.4748, 7.4757, 7.4751, 7.476, 7.4756, 7.475, 7.4744, 7.4747, 7.4741, 7.475, 7.4744, 7.4726, 7.4708, 7.4705, 7.47, 7.4696, 7.4705, 7.4699, 7.4693, 7.4687, 7.4671, 7.4666, 7.466, 7.467, 7.4664, 7.4658, 7.4653, 7.4662, 7.4656, 7.4654, 7.4652, 7.4661, 7.4665, 7.4674, 7.4668, 7.4663, 7.4659, 7.4654, 7.4663, 7.4658, 7.4654, 7.4648, 7.4642, 7.4637, 7.4634, 7.4628, 7.4623, 7.4617, 7.4612, 7.461, 7.461, 7.4605, 7.4599, 7.4601, 7.4596, 7.4594, 7.4588, 7.4588, 7.4582, 7.4576, 7.4572, 7.4569, 7.4566, 7.456, 7.4571, 7.458, 7.4577, 7.4573, 7.4569, 7.4565, 7.4563, 7.4576, 7.4587, 7.4583, 7.4579, 7.4575, 7.4571, 7.4567, 7.4565, 7.4577, 7.4589, 7.4585, 7.4579, 7.4575, 7.4572, 7.4581, 7.4578, 7.4576, 7.4571, 7.4565, 7.4561, 7.4557, 7.4554, 7.4551, 7.4548, 7.4545, 7.4554, 7.455, 7.4548, 7.4544, 7.4541, 7.455, 7.4559, 7.4555, 7.4565, 7.4575, 7.4585, 7.4582, 7.4577, 7.4572, 7.4572, 7.4633, 7.4627, 7.4635, 7.463, 7.4628, 7.4622, 7.4616, 7.4624, 7.4619, 7.4613, 7.4608, 7.4603, 7.4681, 7.4676, 7.4685, 7.468, 7.4675, 7.4671, 7.4666, 7.4662, 7.4658, 7.4675, 7.467, 7.4665, 7.4662, 7.4657, 7.4655, 7.4651, 7.4647, 7.4642, 7.4638, 7.4634, 7.4629, 7.4624, 7.4628, 7.4623, 7.4618, 7.4614, 7.461, 7.4606, 7.46, 7.4595, 7.4604, 7.4601, 7.461, 7.4619, 7.4615, 7.4612, 7.4606, 7.4601, 7.4595, 7.4604, 7.4615, 7.4616, 7.4625, 7.4662, 7.467, 7.4665, 7.4661, 7.4643, 7.4638, 7.4662, 7.4657, 7.4652, 7.4675, 7.4672, 7.4669, 7.4678, 7.4688, 7.4688, 7.4696, 7.4692, 7.4686, 7.4681, 7.469, 7.4686, 7.4684, 7.4678, 7.4672, 7.4668, 7.4664, 7.4661, 7.4658, 7.4667, 7.4649, 7.4643, 7.4652, 7.4647, 7.4642, 7.464, 7.4635, 7.4631, 7.464, 7.4636, 7.4633, 7.4629, 7.4637, 7.4632, 7.464, 7.4649, 7.4645, 7.4654, 7.4638, 7.4662, 7.4671, 7.4666, 7.4674, 7.467, 7.4665, 7.4661, 7.467, 7.4665, 7.466, 7.4645, 7.4641, 7.4651, 7.4646, 7.4642, 7.4641, 7.4636, 7.4645, 7.464, 7.4635, 7.4632, 7.4626, 7.4635, 7.463, 7.4625, 7.462, 7.4631, 7.4627, 7.4622, 7.4618, 7.46, 7.4596, 7.4591, 7.4587, 7.4582, 7.4565, 7.4574, 7.457, 7.4579, 7.4587, 7.4599, 7.4595, 7.459, 7.4599, 7.4611, 7.4606, 7.4602, 7.4597, 7.4593, 7.4601, 7.4596, 7.4592, 7.46, 7.4609, 7.4625, 7.4622, 7.4619, 7.4628, 7.4637, 7.4633, 7.463, 7.4625, 7.4621, 7.4617, 7.4613, 7.4609, 7.4604, 7.4614, 7.4611, 7.4606, 7.4617, 7.4604, 7.4599, 7.4594, 7.4589, 7.4584, 7.4578, 7.4574, 7.4569, 7.4564, 7.4559, 7.4569, 7.457, 7.4595, 7.4591, 7.4586, 7.4582, 7.4633, 7.4628, 7.4623, 7.4619, 7.4614, 7.4622, 7.4631, 7.4632, 7.4627, 7.4622, 7.4619, 7.4614, 7.4609, 7.4612, 7.4611, 7.4606, 7.46, 7.4597, 7.4592, 7.4588, 7.4584, 7.4581, 7.4576, 7.4571, 7.4579, 7.4576, 7.4573, 7.4581, 7.4576, 7.4571, 7.458, 7.4576, 7.4571, 7.4566, 7.4561, 7.4565, 7.456, 7.4558, 7.4566, 7.4589, 7.4584, 7.4579, 7.4574, 7.4584, 7.4567, 7.4575, 7.4571, 7.4566, 7.4562, 7.456, 7.4556, 7.4552, 7.4548, 7.4556, 7.4551, 7.4546, 7.4554, 7.4537, 7.4533, 7.4529, 7.4529, 7.4537, 7.4547, 7.4542, 7.4549, 7.4545, 7.454, 7.4535, 7.4531, 7.454, 7.4535, 7.4532, 7.4526, 7.4523, 7.4519, 7.4514, 7.4523, 7.4533, 7.4529, 7.4524, 7.4519, 7.4516, 7.4531, 7.454, 7.4536, 7.4531, 7.454, 7.4536, 7.4546, 7.4544, 7.4539, 7.4534, 7.4532, 7.453, 7.4525, 7.452, 7.4516, 7.4512, 7.4562, 7.4559, 7.4554, 7.455, 7.4546, 7.4529, 7.4537, 7.4534, 7.4531, 7.4527, 7.4537, 7.4545, 7.454, 7.4535, 7.4518, 7.4514, 7.4522, 7.4517, 7.4525, 7.4521, 7.4531, 7.4527, 7.4523, 7.4519, 7.4515, 7.451, 7.4507, 7.4503, 7.45, 7.4496, 7.4505, 7.45, 7.4495, 7.4492, 7.4487, 7.4483, 7.448, 7.4475, 7.447, 7.4472, 7.4468, 7.4463, 7.4458, 7.4454, 7.4462, 7.4446, 7.4441, 7.4437, 7.4432, 7.4441, 7.4424, 7.4421, 7.442, 7.4419, 7.4414, 7.4435, 7.443, 7.4426, 7.4435, 7.4444, 7.4439, 7.4434, 7.4429, 7.4427, 7.4424, 7.4419, 7.4415, 7.4418, 7.4427, 7.4423, 7.4421, 7.4416, 7.4414, 7.4409, 7.4407, 7.4402, 7.4399, 7.4394, 7.4389, 7.4397, 7.4392, 7.4401, 7.4398, 7.4394, 7.439, 7.4398, 7.4395, 7.439, 7.4387, 7.4383, 7.4367, 7.4362, 7.4364, 7.4359, 7.4354, 7.4349, 7.4345, 7.4341, 7.4337, 7.4344, 7.434, 7.4336, 7.4332, 7.4327, 7.4323, 7.4331, 7.4366, 7.4362, 7.4358, 7.4358, 7.4354, 7.435, 7.4362, 7.4358, 7.4354, 7.4349, 7.4345, 7.4342, 7.434, 7.4337, 7.4332, 7.4328, 7.4323, 7.433, 7.4327, 7.4322, 7.433, 7.4317, 7.4312, 7.4321, 7.4316, 7.4311, 7.4319, 7.4314, 7.4309, 7.4304, 7.43, 7.4318, 7.4326, 7.4361, 7.4357, 7.4364, 7.4374, 7.4369, 7.4365, 7.436, 7.4412, 7.4395, 7.4379, 7.4386, 7.4381, 7.4376, 7.4371, 7.4366, 7.4364, 7.4361, 7.4356, 7.4364, 7.4386, 7.4382, 7.4379, 7.4376, 7.4372, 7.4368, 7.4379, 7.4374, 7.437, 7.4377, 7.4403, 7.4398, 7.4424, 7.4419, 7.4416, 7.4411, 7.4419, 7.4414, 7.441, 7.4407, 7.4404, 7.4411, 7.4433, 7.4429, 7.4426, 7.4433, 7.443, 7.4426, 7.4423, 7.4418, 7.4427, 7.4424, 7.442, 7.4416, 7.4411, 7.4407, 7.4404, 7.44, 7.4409, 7.4404, 7.4407, 7.4402, 7.44, 7.4396, 7.4392, 7.4401, 7.4397, 7.4392, 7.4387, 7.4422, 7.4419, 7.4416, 7.4425, 7.4421, 7.4416, 7.4429, 7.4437, 7.4424, 7.4419, 7.4415, 7.44, 7.4396, 7.4392, 7.4388, 7.4383, 7.441, 7.4418, 7.4414, 7.4409, 7.4416, 7.4426, 7.4428, 7.444, 7.4448, 7.4444, 7.4439, 7.4434, 7.443, 7.4425, 7.442, 7.4428, 7.4436, 7.4433, 7.4428, 7.4423, 7.4418, 7.4413, 7.4409, 7.4405, 7.4401, 7.4397, 7.4394, 7.4393, 7.44, 7.4395, 7.439, 7.4387, 7.4384, 7.4381, 7.439, 7.4398, 7.4398, 7.4395, 7.4401, 7.4397, 7.4405, 7.441, 7.4405, 7.44, 7.4397, 7.4392, 7.4388, 7.4384, 7.4392, 7.4388, 7.4383, 7.4379, 7.4374, 7.4369, 7.4365, 7.436, 7.4355, 7.4363, 7.4371, 7.4366, 7.4373, 7.4368, 7.4366, 7.4365, 7.436, 7.4369, 7.4367, 7.4363, 7.436, 7.4367, 7.4363, 7.4362, 7.437, 7.4365, 7.4373, 7.4369, 7.4377, 7.4372, 7.4367, 7.4366, 7.4361, 7.4371, 7.4379, 7.4387, 7.4383, 7.4368, 7.4363, 7.4358, 7.4353, 7.4364, 7.4348, 7.4345, 7.4342, 7.4337, 7.4339, 7.4334, 7.4342, 7.4337, 7.4332, 7.4328, 7.4324, 7.4319, 7.4326, 7.4322, 7.433, 7.4338, 7.4334, 7.4368, 7.4376, 7.4372, 7.4367, 7.4363, 7.4359, 7.4367, 7.4375, 7.437, 7.4378, 7.4373, 7.4368, 7.4365, 7.4361, 7.4369, 7.4365, 7.4361, 7.437, 7.4366, 7.4363, 7.4373, 7.4376, 7.4388, 7.4398, 7.4406, 7.4401, 7.4409, 7.4405, 7.44, 7.4407, 7.4403, 7.4399, 7.4395, 7.4397, 7.4393, 7.4389, 7.4396, 7.4394, 7.439, 7.439, 7.4385, 7.438, 7.4375, 7.4395, 7.4393, 7.44, 7.4408, 7.4404, 7.4402, 7.4412, 7.4417, 7.4414, 7.4428, 7.4416, 7.4412, 7.442, 7.4415, 7.441, 7.4406, 7.4414, 7.4421, 7.4483, 7.4479, 7.4464, 7.446, 7.4468, 7.4466, 7.4463, 7.4461, 7.4456, 7.4488, 7.454, 7.4536, 7.4543, 7.4528, 7.4525, 7.4509, 7.4504, 7.45, 7.4496, 7.4491, 7.4486, 7.4483, 7.4481, 7.4466, 7.4463, 7.4469, 7.4477, 7.4485, 7.4481, 7.4477, 7.4484, 7.4481, 7.4476, 7.4471, 7.4466, 7.4463, 7.4471, 7.4468, 7.4463, 7.4459, 7.4455, 7.4453, 7.4451, 7.4436, 7.445, 7.4447, 7.4456, 7.4452, 7.4451, 7.4448, 7.4469, 7.4477, 7.4472, 7.4467, 7.4462, 7.4457, 7.4453, 7.445, 7.4446, 7.4453, 7.445, 7.4445, 7.4432, 7.4429, 7.4426, 7.4472, 7.4468, 7.4465, 7.4461, 7.4457, 7.4464, 7.4462, 7.4458, 7.4454, 7.4452, 7.4447, 7.4443, 7.4439, 7.4434, 7.4441, 7.4448, 7.4456, 7.4452, 7.4449, 7.4445, 7.4441, 7.4438, 7.4435, 7.4432, 7.4427, 7.4435, 7.4502, 7.4497, 7.4504, 7.4557, 7.4552, 7.455, 7.4547, 7.4543, 7.4551, 7.4547, 7.4544, 7.454, 7.4548, 7.4544, 7.4552, 7.4547, 7.4543, 7.4539, 7.4559, 7.4555, 7.4562, 7.4558, 7.4553, 7.4549, 7.4556, 7.4563, 7.4559, 7.4556, 7.4552, 7.4547, 7.4543, 7.454, 7.4546, 7.4542, 7.454, 7.4536, 7.4531, 7.4527, 7.4524, 7.452, 7.4515, 7.4523, 7.4519, 7.4526, 7.4523, 7.4518, 7.4514, 7.451, 7.4517, 7.4513, 7.452, 7.4517, 7.4514, 7.4522, 7.4519, 7.4516, 7.4511, 7.4496, 7.4492, 7.4487, 7.4483, 7.4479, 7.4487, 7.4495, 7.4491, 7.4488, 7.4484, 7.4479, 7.4487, 7.4488, 7.4474, 7.4472, 7.4468, 7.4465, 7.4461, 7.4446, 7.4454, 7.4451, 7.4471, 7.4467, 7.4463, 7.4477, 7.4476, 7.4472, 7.446, 7.4456, 7.4467, 7.4464, 7.4466, 7.4463, 7.4517, 7.4513, 7.4522, 7.4529, 7.4536, 7.4554, 7.4549, 7.4556, 7.4564, 7.456, 7.4555, 7.455, 7.4546, 7.4541, 7.4541, 7.4537, 7.4533, 7.4531, 7.4526, 7.4523, 7.4521, 7.4516, 7.4512, 7.4519, 7.4526, 7.4536, 7.4532, 7.4527, 7.4525, 7.4532, 7.4528, 7.4532, 7.4528, 7.4524, 7.4531, 7.4538, 7.4545, 7.4552, 7.4548, 7.4544, 7.454, 7.4536, 7.4531, 7.4541, 7.4548, 7.4544, 7.4542, 7.4538, 7.4534, 7.4542, 7.4537, 7.4545, 7.4541, 7.4537, 7.4544, 7.454, 7.4541, 7.4538, 7.4545, 7.4551, 7.4547, 7.4543, 7.4562, 7.458, 7.4575, 7.4582, 7.4581, 7.4577, 7.4573, 7.458, 7.4576, 7.4572, 7.4568, 7.4563, 7.4562, 7.4558, 7.4555, 7.4552, 7.4549, 7.4544, 7.454, 7.4536, 7.4534, 7.453, 7.4526, 7.4523, 7.4523, 7.452, 7.4519, 7.4525, 7.4521, 7.4518, 7.4514, 7.4509, 7.4517, 7.4513, 7.4509, 7.4557, 7.4553, 7.4548, 7.4548, 7.4544, 7.454, 7.4547, 7.4544, 7.4542, 7.4549, 7.4549, 7.4546, 7.4542, 7.4539, 7.4546, 7.4544, 7.454, 7.4536, 7.4532, 7.4529, 7.4525, 7.4522, 7.4519, 7.4526, 7.4522, 7.4532, 7.4528, 7.4551, 7.4546, 7.4542, 7.456, 7.4557, 7.4569, 7.4567, 7.4563, 7.457, 7.4566, 7.4573, 7.4579, 7.4586, 7.4582, 7.4589, 7.4586, 7.4593, 7.46, 7.4596, 7.4592, 7.4589, 7.4597, 7.4604, 7.46, 7.4596, 7.4592, 7.4589, 7.4585, 7.4581, 7.4576, 7.4583, 7.4579, 7.4575, 7.4571, 7.4566, 7.4563, 7.4551, 7.4558, 7.4554, 7.4561, 7.4557, 7.4564, 7.456, 7.4556, 7.4552, 7.4549, 7.4547, 7.4543, 7.4539, 7.4536, 7.4532, 7.4528, 7.4525, 7.4521, 7.4517, 7.4524, 7.4533, 7.4534, 7.453, 7.4526, 7.4522, 7.4519, 7.4516, 7.4514, 7.4521, 7.4517, 7.4513, 7.4512, 7.4508, 7.4504, 7.45, 7.4508, 7.4507, 7.4503, 7.4499, 7.4496, 7.4494, 7.449, 7.4538, 7.4534, 7.453, 7.4527, 7.4525, 7.4522, 7.4527, 7.4522, 7.4518, 7.4517, 7.4513, 7.451, 7.4506, 7.4513, 7.452, 7.4517, 7.4514, 7.4512, 7.4508, 7.4505, 7.4501, 7.4528, 7.4535, 7.4532, 7.4539, 7.4546, 7.4556, 7.4554, 7.4561, 7.4557, 7.4567, 7.4574, 7.4578, 7.4585, 7.4593, 7.4589, 7.4585, 7.4582, 7.4578, 7.4585, 7.4581, 7.4577, 7.4573, 7.4569, 7.4566, 7.4563, 7.457, 7.4568, 7.4565, 7.4572, 7.458, 7.4576, 7.4582, 7.4589, 7.4585, 7.4584, 7.458, 7.4576, 7.4573, 7.4569, 7.4565, 7.4561, 7.4557, 7.4564, 7.4571, 7.4568, 7.4564, 7.4563, 7.457, 7.4566, 7.4564, 7.456, 7.4556, 7.4552, 7.4559, 7.4566, 7.4562, 7.4559, 7.4558, 7.457, 7.4568, 7.4564, 7.456, 7.4561, 7.4564, 7.456, 7.4568, 7.4564, 7.457, 7.4567, 7.4553, 7.4549, 7.4547, 7.4542, 7.454, 7.4549, 7.4546, 7.4543, 7.4539, 7.454, 7.4537, 7.4546, 7.4543, 7.4539, 7.4535, 7.4532, 7.4527, 7.4523, 7.4519, 7.4515, 7.4511, 7.4498, 7.4516, 7.4513, 7.4509, 7.4506, 7.4502, 7.4498, 7.4494, 7.4491, 7.4497, 7.4495, 7.4501, 7.4499, 7.4496, 7.4493, 7.4491, 7.4487, 7.4484, 7.448, 7.4476, 7.4472, 7.4479, 7.4477, 7.4473, 7.447, 7.4466, 7.4467, 7.4463, 7.447, 7.4467, 7.4463, 7.4459, 7.4455, 7.4451, 7.4447, 7.4443, 7.444, 7.4447, 7.4451, 7.4475, 7.4472, 7.4468, 7.4464, 7.4471, 7.4468, 7.4466, 7.4474, 7.447, 7.4466, 7.4462, 7.447, 7.4466, 7.4463, 7.447, 7.4465, 7.4461, 7.4468, 7.4497, 7.4493, 7.45, 7.4507, 7.4503, 7.4509, 7.4507, 7.4514, 7.4521, 7.4528, 7.4534, 7.4541, 7.4538, 7.4534, 7.4542, 7.4539, 7.4535, 7.4544, 7.455, 7.4547, 7.4544, 7.454, 7.4537, 7.4544, 7.454, 7.4536, 7.4533, 7.4529, 7.4525, 7.4533, 7.453, 7.4541, 7.4537, 7.4534, 7.4535, 7.4533, 7.4529, 7.4527, 7.4544, 7.4542, 7.455, 7.4548, 7.4544, 7.454, 7.4536, 7.4532, 7.4527, 7.4513, 7.4515, 7.4511, 7.4507, 7.4504, 7.4512, 7.4509, 7.4506, 7.4504, 7.4516, 7.4523, 7.4519, 7.4514, 7.4511, 7.4507, 7.4504, 7.4502, 7.4499, 7.4495, 7.4491, 7.4501, 7.4498, 7.4495, 7.4495, 7.4491, 7.4489, 7.4475, 7.4472, 7.4468, 7.4466, 7.4472, 7.447, 7.4467, 7.4465, 7.4461, 7.4457, 7.4453, 7.4449, 7.4445, 7.4441, 7.4437, 7.4433, 7.443, 7.4427, 7.4423, 7.442, 7.4428, 7.4425, 7.4422, 7.4429, 7.4425, 7.4421, 7.4417, 7.4415, 7.4412, 7.4408, 7.4405, 7.4402, 7.4408, 7.4406, 7.4403, 7.4399, 7.4386, 7.4392, 7.4389, 7.439, 7.4397, 7.4394, 7.439, 7.4397, 7.4394, 7.439, 7.4387, 7.4384, 7.4381, 7.4399, 7.4396, 7.4392, 7.4399, 7.4396, 7.4403, 7.4399, 7.4406, 7.4403, 7.4399, 7.4397, 7.4393, 7.44, 7.4397, 7.4394, 7.4404, 7.4402, 7.4401, 7.44, 7.4396, 7.4403, 7.441, 7.4406, 7.4402, 7.4409, 7.4406, 7.4402, 7.4388, 7.4394, 7.439, 7.4397, 7.4403, 7.439, 7.4387, 7.4384, 7.438, 7.4376, 7.4373, 7.438, 7.4377, 7.4384, 7.4391, 7.4397, 7.4393, 7.4389, 7.4396, 7.4392, 7.4389, 7.4385, 7.4404, 7.4419, 7.4415, 7.4412, 7.4399, 7.4385, 7.4392, 7.4388, 7.4415, 7.4412, 7.4409, 7.4399, 7.4396, 7.4392, 7.4389, 7.439, 7.4401, 7.4414, 7.4421, 7.4427, 7.4423, 7.4429, 7.4435, 7.4432, 7.4439, 7.4435, 7.4462, 7.4479, 7.4486, 7.4482, 7.4478, 7.4478, 7.4474, 7.4471, 7.4482, 7.4479, 7.4475, 7.4476, 7.4479, 7.4477, 7.4491, 7.4487, 7.4474, 7.4512, 7.4509, 7.4527, 7.4524, 7.4522, 7.4559, 7.4565, 7.4561, 7.4558, 7.4576, 7.4574, 7.4575, 7.4572, 7.4579, 7.4576, 7.4572, 7.4569, 7.4565, 7.4571, 7.4579, 7.4585, 7.4581, 7.4577, 7.4574, 7.458, 7.4576, 7.4563, 7.4569, 7.4596, 7.4586, 7.4598, 7.4598, 7.4595, 7.4592, 7.4599, 7.4596, 7.4602, 7.4608, 7.4604, 7.46, 7.4596, 7.4606, 7.4612, 7.4618, 7.4625, 7.4621, 7.4617, 7.4623, 7.462, 7.4616, 7.4622, 7.4629, 7.4627, 7.4623, 7.4619, 7.4625, 7.4621, 7.4627, 7.4633, 7.4639, 7.4646, 7.4643, 7.4639, 7.4646, 7.4643, 7.465, 7.4647, 7.4643, 7.4639, 7.4636, 7.4632, 7.465, 7.4658, 7.4655, 7.4662, 7.4658, 7.4655, 7.4661, 7.4657, 7.4654, 7.467, 7.4676, 7.4694, 7.4683, 7.4679, 7.4675, 7.4672, 7.4668, 7.4675, 7.4671, 7.4668, 7.4674, 7.468, 7.4686, 7.4692, 7.4698, 7.4695, 7.4691, 7.4697, 7.4693, 7.4691, 7.4688, 7.4685, 7.4682, 7.4678, 7.4674, 7.467, 7.4666, 7.4662, 7.4668, 7.4675, 7.4682, 7.4689, 7.4695, 7.4692, 7.4689, 7.4706, 7.4702, 7.4698, 7.4704, 7.471, 7.4706, 7.4713, 7.47, 7.4696, 7.4693, 7.4709, 7.4705, 7.4701, 7.4698, 7.4694, 7.4691, 7.4688, 7.4694, 7.4702, 7.4708, 7.4704, 7.4701, 7.4698, 7.4696, 7.4695, 7.4693, 7.47, 7.469, 7.4694, 7.4684, 7.468, 7.4676, 7.4683, 7.4689, 7.4685, 7.4685, 7.4683, 7.468, 7.4678, 7.4685, 7.4692, 7.4699, 7.4705, 7.4712, 7.4708, 7.4705, 7.4704, 7.4701, 7.4707, 7.4706, 7.4714, 7.471, 7.4719, 7.4715, 7.4712, 7.4709, 7.4707, 7.4714, 7.4711, 7.471, 7.4716, 7.4715, 7.4715, 7.4714, 7.4721, 7.472, 7.4717, 7.4716, 7.4712, 7.4711, 7.4699, 7.4706, 7.4703, 7.47, 7.4699, 7.4699], '192.168.122.118': [5.4498, 5.43, 6.3577, 6.0905, 6.1591, 6.0216, 7.2374, 7.013, 7.4726, 7.3706, 7.2471, 7.0966, 7.1346, 7.0128, 6.9101, 7.1657, 7.4116, 7.3226, 7.4349, 7.3382, 7.3024, 7.2419, 7.3982, 7.3099, 7.2297, 7.1783, 7.5206, 7.4567, 7.8891, 7.6979, 7.6329, 7.5662, 7.7655, 7.8697, 7.7013, 7.726, 7.97, 7.922, 8.0194, 7.9533, 7.9023, 7.8523, 7.8022, 7.9223, 7.8666, 7.9328, 7.9166, 7.8689, 7.8306, 7.8895, 7.8403, 7.7923, 7.7568, 7.7202, 7.6829, 7.6455, 7.608, 7.5861, 7.5572, 7.5351, 7.4996, 7.4665, 7.449, 7.4261, 7.3956, 7.4493, 7.5028, 7.4726, 7.5227, 7.4909, 7.4612, 7.4372, 7.4072, 7.4579, 7.4383, 7.4184, 7.3943, 7.3701, 7.3458, 7.3858, 7.4279, 7.4068, 7.5165, 7.5854, 7.5604, 7.6104, 7.6437, 7.7865, 7.7623, 7.7349, 7.7097, 7.6858, 7.7194, 7.693, 7.7267, 7.7103, 7.6906, 7.7207, 7.702, 7.6818, 7.6128, 7.5918, 7.5741, 7.6033, 7.5868, 7.5659, 7.5547, 7.5541, 7.5395, 7.53, 7.5614, 7.5939, 7.5736, 7.6018, 7.5846, 7.5714, 7.6009, 7.5838, 7.5647, 7.5614, 7.507, 7.4882, 7.4785, 7.4691, 7.4139, 7.4077, 7.3979, 7.3834, 7.3732, 7.3571, 7.3894, 7.3776, 7.3631, 7.4972, 7.485, 7.4772, 7.4666, 7.4511, 7.4763, 7.5023, 7.527, 7.5128, 7.4983, 7.525, 7.5484, 7.5712, 7.557, 7.5424, 7.5278, 7.5129, 7.5083, 7.4974, 7.4854, 7.4726, 7.4592, 7.4808, 7.5028, 7.5243, 7.513, 7.503, 7.5237, 7.5116, 7.5004, 7.4896, 7.4843, 7.4721, 7.4794, 7.4705, 7.4588, 7.4484, 7.4679, 7.4552, 7.4437, 7.4411, 7.4287, 7.4169, 7.4059, 7.395, 7.3832, 7.4021, 7.3914, 7.3853, 7.4085, 7.4545, 7.4992, 7.517, 7.5351, 7.5562, 7.5721, 7.5645, 7.5599, 7.5777, 7.5671, 7.5847, 7.6019, 7.6233, 7.6702, 7.6855, 7.6788, 7.6698, 7.6587, 7.6468, 7.6368, 7.6281, 7.647, 7.6387, 7.6383, 7.6291, 7.6205, 7.6146, 7.6056, 7.5959, 7.6102, 7.6051, 7.5947, 7.5882, 7.5807, 7.5949, 7.588, 7.5803, 7.5713, 7.5658, 7.5575, 7.5498, 7.5403, 7.537, 7.5299, 7.5234, 7.4951, 7.5084, 7.5263, 7.5189, 7.5348, 7.5528, 7.5243, 7.5586, 7.6159, 7.5871, 7.5818, 7.5948, 7.5863, 7.5788, 7.5736, 7.5645, 7.5566, 7.5489, 7.5627, 7.5539, 7.545, 7.5373, 7.5401, 7.5528, 7.5465, 7.5735, 7.5744, 7.5871, 7.5781, 7.5708, 7.5842, 7.5958, 7.5866, 7.5786, 7.5711, 7.5637, 7.5573, 7.5542, 7.546, 7.539, 7.5499, 7.5416, 7.5355, 7.5274, 7.5584, 7.5503, 7.5606, 7.5544, 7.546, 7.5379, 7.5299, 7.5218, 7.5343, 7.5447, 7.5371, 7.532, 7.5433, 7.5545, 7.5683, 7.5609, 7.5377, 7.5307, 7.5235, 7.5175, 7.5118, 7.5227, 7.5158, 7.4928, 7.4883, 7.4854, 7.4785, 7.4563, 7.4676, 7.4632, 7.4747, 7.4676, 7.4609, 7.4561, 7.4495, 7.4427, 7.4485, 7.4596, 7.4707, 7.4643, 7.4744, 7.4674, 7.4604, 7.4538, 7.4469, 7.4578, 7.4511, 7.4616, 7.4722, 7.4827, 7.4802, 7.4905, 7.4697, 7.4491, 7.459, 7.4531, 7.4487, 7.442, 7.4207, 7.4143, 7.4093, 7.4211, 7.4155, 7.4093, 7.4195, 7.4133, 7.4071, 7.4019, 7.396, 7.406, 7.4168, 7.4129, 7.4069, 7.4017, 7.3959, 7.392, 7.3868, 7.3842, 7.3952, 7.4134, 7.408, 7.4022, 7.398, 7.3786, 7.3881, 7.3852, 7.3674, 7.3617, 7.3593, 7.3566, 7.3384, 7.3333, 7.3282, 7.3245, 7.3212, 7.3171, 7.3981, 7.4076, 7.389, 7.399, 7.3935, 7.3891, 7.3847, 7.3793, 7.3881, 7.3827, 7.3786, 7.3756, 7.3832, 7.4056, 7.4007, 7.3832, 7.3778, 7.3733, 7.3681, 7.3776, 7.3743, 7.3694, 7.3647, 7.3598, 7.3545, 7.3632, 7.3582, 7.3547, 7.3629, 7.3591, 7.3677, 7.3655, 7.3619, 7.3576, 7.3528, 7.3362, 7.3452, 7.354, 7.3372, 7.3339, 7.3432, 7.3269, 7.3225, 7.321, 7.3184, 7.3269, 7.323, 7.3073, 7.3026, 7.2977, 7.2945, 7.2898, 7.3383, 7.3338, 7.3311, 7.3267, 7.3217, 7.3301, 7.3315, 7.3348, 7.3302, 7.3272, 7.338, 7.3457, 7.3413, 7.337, 7.333, 7.3412, 7.3466, 7.3436, 7.3391, 7.3416, 7.343, 7.3383, 7.3335, 7.3991, 7.396, 7.3928, 7.3906, 7.3864, 7.394, 7.3892, 7.3876, 7.3947, 7.39, 7.3856, 7.393, 7.4002, 7.3965, 7.4038, 7.411, 7.4077, 7.4147, 7.4103, 7.3955, 7.3911, 7.3869, 7.3824, 7.3789, 7.3746, 7.3705, 7.367, 7.3625, 7.369, 7.3764, 7.3724, 7.3795, 7.3755, 7.3717, 7.3686, 7.3665, 7.3631, 7.3592, 7.3667, 7.3623, 7.3602, 7.375, 7.3717, 7.3699, 7.3766, 7.3732, 7.3692, 7.377, 7.3834, 7.3822, 7.3802, 7.3763, 7.3734, 7.3691, 7.3693, 7.3676, 7.3637, 7.3598, 7.3579, 7.3649, 7.3637, 7.3719, 7.368, 7.3756, 7.3726, 7.3686, 7.3648, 7.3611, 7.358, 7.3555, 7.3625, 7.3587, 7.3548, 7.352, 7.3578, 7.355, 7.3518, 7.3486, 7.3483, 7.3448, 7.3411, 7.3479, 7.3453, 7.3424, 7.3396, 7.3358, 7.3321, 7.3298, 7.3295, 7.3311, 7.3301, 7.3281, 7.3249, 7.3221, 7.3185, 7.3095, 7.3067, 7.2949, 7.3016, 7.2998, 7.2972, 7.3032, 7.2998, 7.2965, 7.2929, 7.2892, 7.2861, 7.2825, 7.2707, 7.2676, 7.264, 7.2624, 7.2687, 7.2653, 7.2619, 7.2685, 7.2673, 7.2657, 7.2626, 7.2591, 7.2561, 7.2538, 7.2534, 7.2508, 7.2482, 7.2449, 7.2416, 7.2383, 7.2447, 7.2431, 7.24, 7.246, 7.2435, 7.2415, 7.2394, 7.2374, 7.2432, 7.2399, 7.2368, 7.2334, 7.2309, 7.2286, 7.2278, 7.2335, 7.2328, 7.2217, 7.2185, 7.2256, 7.2229, 7.2288, 7.2275, 7.2244, 7.2222, 7.2113, 7.2098, 7.2077, 7.2058, 7.2028, 7.2377, 7.2432, 7.2406, 7.2376, 7.2347, 7.2407, 7.2382, 7.2354, 7.2245, 7.2214, 7.2193, 7.2171, 7.2232, 7.221, 7.2264, 7.2318, 7.2286, 7.2261, 7.2229, 7.2201, 7.2173, 7.2233, 7.2298, 7.23, 7.2273, 7.2248, 7.2224, 7.2279, 7.2249, 7.2218, 7.2188, 7.217, 7.2138, 7.2108, 7.2093, 7.2063, 7.2041, 7.2015, 7.1991, 7.1961, 7.1936, 7.1912, 7.1969, 7.1944, 7.2002, 7.1976, 7.1955, 7.1941, 7.1912, 7.1981, 7.1967, 7.1937, 7.191, 7.1897, 7.1869, 7.1772, 7.1746, 7.1722, 7.1704, 7.1754, 7.1741, 7.1802, 7.1784, 7.1836, 7.1892, 7.1864, 7.1846, 7.1827, 7.1802, 7.1865, 7.1837, 7.181, 7.1872, 7.1845, 7.183, 7.1883, 7.1931, 7.1913, 7.1885, 7.1859, 7.1919, 7.1896, 7.1951, 7.1931, 7.1931, 7.1981, 7.1957, 7.2009, 7.2061, 7.211, 7.2113, 7.2091, 7.2065, 7.2039, 7.2014, 7.1991, 7.2043, 7.2017, 7.2074, 7.2131, 7.2119, 7.2144, 7.212, 7.2175, 7.2241, 7.2216, 7.2271, 7.2328, 7.2304, 7.228, 7.226, 7.2337, 7.2326, 7.2561, 7.2537, 7.2511, 7.2484, 7.2595, 7.2571, 7.2548, 7.2678, 7.2661, 7.264, 7.2621, 7.2601, 7.2707, 7.2681, 7.2661, 7.2641, 7.2616, 7.2591, 7.2629, 7.2539, 7.2529, 7.2573, 7.2554, 7.2555, 7.2532, 7.252, 7.2501, 7.2556, 7.2532, 7.2509, 7.2496, 7.2472, 7.2446, 7.2421, 7.2397, 7.2372, 7.2347, 7.2368, 7.2418, 7.2345, 7.2324, 7.2376, 7.2363, 7.2275, 7.2403, 7.2385, 7.2435, 7.2438, 7.2482, 7.247, 7.2451, 7.2501, 7.2483, 7.246, 7.2442, 7.2425, 7.2466, 7.2444, 7.2418, 7.2409, 7.2383, 7.2363, 7.2351, 7.2407, 7.2395, 7.2372, 7.2354, 7.2337, 7.2318, 7.2293, 7.2268, 7.2318, 7.2363, 7.2415, 7.2398, 7.2374, 7.2421, 7.2404, 7.2457, 7.2504, 7.2488, 7.2535, 7.2521, 7.2612, 7.2587, 7.2567, 7.2609, 7.2655, 7.2697, 7.2675, 7.2654, 7.2633, 7.2702, 7.2678, 7.2688, 7.2679, 7.2718, 7.2758, 7.2734, 7.2775, 7.2816, 7.2797, 7.2774, 7.2751, 7.2727, 7.2703, 7.2746, 7.2729, 7.2714, 7.2689, 7.2858, 7.2903, 7.2822, 7.2798, 7.2784, 7.2828, 7.2807, 7.2788, 7.2769, 7.2852, 7.2895, 7.2932, 7.2974, 7.2956, 7.2934, 7.2912, 7.2888, 7.2869, 7.2851, 7.2828, 7.2828, 7.294, 7.3229, 7.3207, 7.3187, 7.3108, 7.3091, 7.307, 7.3049, 7.3028, 7.307, 7.3056, 7.3162, 7.3141, 7.3066, 7.3043, 7.3023, 7.2965, 7.3004, 7.2982, 7.296, 7.2937, 7.2914, 7.2903, 7.2882, 7.2921, 7.2961, 7.2938, 7.2862, 7.2851, 7.2837, 7.2822, 7.2925, 7.2931, 7.2914, 7.2898, 7.2936, 7.2914, 7.2908, 7.2948, 7.2927, 7.291, 7.2889, 7.3026, 7.301, 7.3222, 7.32, 7.3184, 7.3176, 7.3215, 7.3199, 7.3184, 7.3174, 7.3158, 7.3142, 7.3132, 7.311, 7.3102, 7.3087, 7.3077, 7.3056, 7.3038, 7.3074, 7.3052, 7.303, 7.3066, 7.3049, 7.3028, 7.3068, 7.3053, 7.304, 7.308, 7.3059, 7.3042, 7.302, 7.3059, 7.3098, 7.3076, 7.3115, 7.3161, 7.3232, 7.3211, 7.319, 7.3176, 7.3212, 7.3258, 7.3247, 7.3231, 7.321, 7.3191, 7.3231, 7.3214, 7.3252, 7.3289, 7.3267, 7.3246, 7.3229, 7.3224, 7.3212, 7.32, 7.3236, 7.326, 7.3241, 7.3179, 7.3164, 7.3202, 7.3133, 7.3121, 7.31, 7.3086, 7.3069, 7.3053, 7.3035, 7.3018, 7.2957, 7.2891, 7.2871, 7.287, 7.2849, 7.2828, 7.2811, 7.2796, 7.2777, 7.2764, 7.2745, 7.2736, 7.2715, 7.2705, 7.2747, 7.2733, 7.2669, 7.2707, 7.2687, 7.2619, 7.2601, 7.2637, 7.2637, 7.267, 7.2658, 7.2639, 7.2621, 7.2607, 7.2588, 7.2629, 7.2613, 7.2594, 7.2632, 7.2627, 7.2608, 7.2597, 7.2531, 7.2516, 7.2448, 7.2435, 7.2579, 7.2562, 7.2557, 7.2623, 7.2603, 7.2589, 7.2577, 7.2559, 7.2541, 7.2524, 7.2509, 7.249, 7.2566, 7.2551, 7.2484, 7.2467, 7.2448, 7.2481, 7.2463, 7.245, 7.2432, 7.2465, 7.2455, 7.2438, 7.2373, 7.2354, 7.2343, 7.2377, 7.2358, 7.2392, 7.2388, 7.237, 7.2353, 7.2335, 7.2324, 7.2312, 7.2359, 7.2353, 7.2343, 7.2335, 7.2334, 7.2371, 7.2359, 7.234, 7.2327, 7.2308, 7.229, 7.2272, 7.2259, 7.2247, 7.2233, 7.2215, 7.225, 7.2239, 7.2273, 7.2265, 7.2252, 7.2236, 7.227, 7.2256, 7.2241, 7.2229, 7.2265, 7.2248, 7.2233, 7.2216, 7.2249, 7.2281, 7.2268, 7.2398, 7.2384, 7.2372, 7.2404, 7.2393, 7.2379, 7.237, 7.2358, 7.2341, 7.2324, 7.2316, 7.2299, 7.2391, 7.2572, 7.2555, 7.2547, 7.258, 7.2613, 7.2597, 7.259, 7.2572, 7.2619, 7.2653, 7.2639, 7.2672, 7.2654, 7.2686, 7.2669, 7.2673, 7.2656, 7.264, 7.2625, 7.2621, 7.2626, 7.2683, 7.2622, 7.2669, 7.2654, 7.2738, 7.2819, 7.281, 7.2792, 7.2875, 7.2857, 7.2843, 7.2827, 7.2908, 7.2899, 7.2893, 7.2879, 7.2914, 7.2901, 7.2933, 7.2919, 7.291, 7.2925, 7.2914, 7.2899, 7.2884, 7.2869, 7.2852, 7.2884, 7.2874, 7.2857, 7.2841, 7.2881, 7.2865, 7.2809, 7.2794, 7.2828, 7.2861, 7.2891, 7.2833, 7.282, 7.2805, 7.279, 7.279, 7.2787, 7.277, 7.2762, 7.2747, 7.2777, 7.2761, 7.2752, 7.2738, 7.2728, 7.2716, 7.2699, 7.2739, 7.2768, 7.2751, 7.274, 7.2723, 7.2707, 7.2734, 7.2722, 7.2707, 7.2692, 7.2676, 7.2663, 7.2605, 7.2634, 7.2619, 7.2649, 7.2633, 7.2661, 7.2645, 7.2634, 7.2723, 7.2798, 7.2783, 7.2775, 7.276, 7.2743, 7.2728, 7.2758, 7.2749, 7.2734, 7.2735, 7.2728, 7.2711, 7.2704, 7.2687, 7.2677, 7.2624, 7.2611, 7.2595, 7.2583, 7.2572, 7.2647, 7.2639, 7.2624, 7.2611, 7.2597, 7.2586, 7.2616, 7.2602, 7.2595, 7.2579, 7.2566, 7.2593, 7.2584, 7.2572, 7.2559, 7.255, 7.2537, 7.2572, 7.2599, 7.2586, 7.2571, 7.2604, 7.259, 7.2574, 7.256, 7.2545, 7.2575, 7.2559, 7.2544, 7.2536, 7.2522, 7.2512, 7.2498, 7.2484, 7.2482, 7.2469, 7.2453, 7.2441, 7.2471, 7.2503, 7.2489, 7.2519, 7.2505, 7.2497, 7.2483, 7.2469, 7.2455, 7.2445, 7.2435, 7.2432, 7.2464, 7.2451, 7.2438, 7.2429, 7.2416, 7.2441, 7.2433, 7.2421, 7.2413, 7.24, 7.2395, 7.2381, 7.2373, 7.2359, 7.2308, 7.2346, 7.2337, 7.2354, 7.2347, 7.2339, 7.2327, 7.2323, 7.231, 7.2339, 7.2368, 7.2375, 7.2361, 7.2321, 7.2308, 7.2294, 7.2282, 7.2268, 7.2297, 7.2287, 7.2276, 7.231, 7.2299, 7.2287, 7.2273, 7.2262, 7.2255, 7.2247, 7.2237, 7.2223, 7.2215, 7.2247, 7.2239, 7.2228, 7.2256, 7.2246, 7.2276, 7.2264, 7.233, 7.2318, 7.2302, 7.2293, 7.2323, 7.2351, 7.2338, 7.2323, 7.2353, 7.2343, 7.234, 7.2367, 7.2353, 7.2338, 7.237, 7.236, 7.2347, 7.2367, 7.2395, 7.2382, 7.2369, 7.2356, 7.2348, 7.2374, 7.2404, 7.2391, 7.2391, 7.239, 7.2376, 7.2366, 7.2362, 7.2349, 7.2337, 7.2297, 7.2284, 7.2279, 7.2305, 7.2309, 7.2318, 7.2306, 7.2298, 7.2289, 7.2278, 7.2235, 7.2197, 7.2184, 7.2282, 7.2268, 7.2255, 7.2218, 7.2205, 7.2233, 7.2223, 7.221, 7.2202, 7.2188, 7.2174, 7.2166, 7.216, 7.2147, 7.2133, 7.2134, 7.2121, 7.2112, 7.2112, 7.2138, 7.2129, 7.2081, 7.207, 7.2096, 7.2083, 7.2069, 7.2055, 7.2043, 7.207, 7.2061, 7.2051, 7.2038, 7.2024, 7.2015, 7.2002, 7.1989, 7.1977, 7.1966, 7.1992, 7.1983, 7.197, 7.1957, 7.1945, 7.1969, 7.1996, 7.2027, 7.2014, 7.2166, 7.2152, 7.2142, 7.2131, 7.2125, 7.2113, 7.2104, 7.2092, 7.2084, 7.207, 7.2097, 7.2085, 7.2074, 7.2062, 7.2049, 7.2036, 7.2063, 7.2051, 7.2043, 7.2038, 7.2047, 7.2034, 7.2024, 7.1977, 7.2003, 7.203, 7.2056, 7.2046, 7.2075, 7.2077, 7.2103, 7.2094, 7.2126, 7.2156, 7.2109, 7.2113, 7.2158, 7.2222, 7.2213, 7.2235, 7.2225, 7.2302, 7.233, 7.2321, 7.2307, 7.2296, 7.2283, 7.2309, 7.2356, 7.2381, 7.2368, 7.2355, 7.2353, 7.2344, 7.2368, 7.2357, 7.2459, 7.2449, 7.2436, 7.2423, 7.2415, 7.2439, 7.2428, 7.2449, 7.2474, 7.2503, 7.2492, 7.2483, 7.2473, 7.2474, 7.2464, 7.2488, 7.2478, 7.2432, 7.2426, 7.2414, 7.24, 7.239, 7.238, 7.2369, 7.2357, 7.2372, 7.2361, 7.235, 7.2342, 7.233, 7.2358, 7.2345, 7.2376, 7.2398, 7.2405, 7.2392, 7.2381, 7.2377, 7.2366, 7.2356, 7.2348, 7.2335, 7.2325, 7.232, 7.2312, 7.2313, 7.2302, 7.229, 7.2279, 7.2278, 7.2276, 7.2265, 7.2252, 7.2242, 7.2263, 7.2284, 7.2272, 7.2264, 7.2253, 7.224, 7.2236, 7.2224, 7.2212, 7.22, 7.2224, 7.2247, 7.2255, 7.2245, 7.2232, 7.2224, 7.2216, 7.221, 7.2205, 7.2194, 7.2218, 7.221, 7.2167, 7.2161, 7.2155, 7.2143, 7.2137, 7.2128, 7.2221, 7.2213, 7.22, 7.2157, 7.2146, 7.2145, 7.2133, 7.214, 7.2128, 7.2152, 7.2141, 7.2128, 7.2128, 7.2117, 7.2107, 7.213, 7.2119, 7.2113, 7.2105, 7.2128, 7.2119, 7.2108, 7.2095, 7.2089, 7.2078, 7.2168, 7.2189, 7.2178, 7.2171, 7.2262, 7.2252, 7.2244, 7.2305, 7.2293, 7.2316, 7.2339, 7.2331, 7.232, 7.231, 7.2299, 7.2287, 7.2276, 7.2297, 7.2285, 7.2272, 7.2263, 7.2343, 7.2366, 7.2356, 7.2348, 7.237, 7.2362, 7.235, 7.234, 7.2366, 7.2375, 7.2415, 7.2408, 7.2398, 7.2388, 7.2384, 7.2372, 7.2366, 7.2354, 7.2348, 7.2337, 7.2325, 7.2314, 7.2302, 7.2297, 7.2299, 7.2333, 7.2323, 7.2333, 7.2322, 7.231, 7.2333, 7.2321, 7.2309, 7.2297, 7.2289, 7.2277, 7.227, 7.2333, 7.2336, 7.2341, 7.2344, 7.2336, 7.2324, 7.2314, 7.2308, 7.2328, 7.2316, 7.2304, 7.2298, 7.2316, 7.2338, 7.2329, 7.2318, 7.2316, 7.2305, 7.2294, 7.2255, 7.2244, 7.2235, 7.2223, 7.2244, 7.2235, 7.2227, 7.2217, 7.2206, 7.2195, 7.2188, 7.221, 7.2199, 7.2188, 7.2183, 7.2204, 7.2225, 7.2279, 7.2268, 7.229, 7.2281, 7.2274, 7.2263, 7.2252, 7.2246, 7.2243, 7.2232, 7.2221, 7.2213, 7.2205, 7.2194, 7.2199, 7.2187, 7.2179, 7.217, 7.2171, 7.2195, 7.2183, 7.2204, 7.2224, 7.2217, 7.2207, 7.2199, 7.2193, 7.2181, 7.2204, 7.2194, 7.2188, 7.2212, 7.2206, 7.2194, 7.219, 7.2213, 7.2289, 7.2278, 7.227, 7.229, 7.2279, 7.227, 7.2262, 7.2281, 7.2244, 7.2235, 7.2255, 7.2247, 7.2236, 7.2257, 7.2249, 7.2242, 7.2233, 7.2222, 7.2215, 7.2209, 7.2202, 7.2195, 7.2186, 7.2177, 7.2166, 7.2156, 7.2147, 7.2136, 7.2129, 7.2151, 7.2175, 7.2168, 7.219, 7.2179, 7.217, 7.219, 7.2182, 7.2179, 7.2167, 7.2156, 7.2145, 7.2136, 7.2126, 7.2089, 7.2082, 7.2103, 7.2124, 7.2116, 7.211, 7.2195, 7.2157, 7.215, 7.2143, 7.2134, 7.2153, 7.2148, 7.2167, 7.2188, 7.2178, 7.2167, 7.2156, 7.2152, 7.2148, 7.2142, 7.2163, 7.2184, 7.2174, 7.2167, 7.2158, 7.218, 7.217, 7.2173, 7.2165, 7.2158, 7.2179, 7.2168, 7.2187, 7.2179, 7.2201, 7.2225, 7.2218, 7.2215, 7.2204, 7.2193, 7.2187, 7.2176, 7.2168, 7.2159, 7.2177, 7.214, 7.2159, 7.215, 7.217, 7.224, 7.2212, 7.2219, 7.2281, 7.2273, 7.2264, 7.2364, 7.2386, 7.2386, 7.2378, 7.2398, 7.2387, 7.2376, 7.2366, 7.233, 7.2319, 7.2309, 7.2272, 7.2261, 7.225, 7.2248, 7.2269, 7.2287, 7.2308, 7.2298, 7.2296, 7.2288, 7.2282, 7.2272, 7.2332, 7.2325, 7.2314, 7.2305, 7.2294, 7.2287, 7.2305, 7.2295, 7.2286, 7.2304, 7.2295, 7.229, 7.2356, 7.232, 7.2314, 7.2307, 7.2299, 7.232, 7.2342, 7.2337, 7.2327, 7.2319, 7.2309, 7.2329, 7.2349, 7.2344, 7.2369, 7.2389, 7.2378, 7.2368, 7.2374, 7.2391, 7.2381, 7.2417, 7.2438, 7.2411, 7.2374, 7.2347, 7.2399, 7.2417, 7.2408, 7.2398, 7.239, 7.2409, 7.2403, 7.2395, 7.2385, 7.2375, 7.2393, 7.2413, 7.2403, 7.2393, 7.2386, 7.2376, 7.2369, 7.236, 7.235, 7.2472, 7.2492, 7.2482, 7.2476, 7.2466, 7.2485, 7.2518, 7.2509, 7.256, 7.255, 7.2572, 7.2545, 7.2551, 7.2544, 7.2515, 7.2515, 7.2548, 7.2538, 7.253, 7.2532, 7.2523, 7.2577, 7.2595, 7.2587, 7.2583, 7.2574, 7.2624, 7.2668, 7.2663, 7.268, 7.267, 7.2668, 7.2635, 7.2625, 7.2618, 7.2636, 7.2655, 7.2673, 7.2663, 7.2652, 7.267, 7.2689, 7.2679, 7.2675, 7.2698, 7.2689, 7.2679, 7.2699, 7.269, 7.272, 7.2755, 7.2746, 7.2737, 7.2757, 7.2774, 7.2767, 7.2757, 7.2777, 7.2775, 7.2794, 7.2784, 7.2776, 7.2769, 7.2793, 7.2812, 7.2802, 7.2792, 7.2787, 7.2779, 7.2743, 7.2716, 7.2681, 7.2676, 7.2696, 7.2702, 7.2695, 7.2697, 7.269, 7.2709, 7.2703, 7.2693, 7.2683, 7.2676, 7.2681, 7.2685, 7.2677, 7.2669, 7.2691, 7.2683, 7.2673, 7.2641, 7.2635, 7.2714, 7.2705, 7.2722, 7.2715, 7.2708, 7.2698, 7.2688, 7.2732, 7.2722, 7.272, 7.2714, 7.273, 7.2721, 7.2714, 7.2732, 7.2723, 7.2714, 7.2704, 7.2723, 7.2739, 7.2818, 7.2808, 7.2798, 7.2817, 7.2835, 7.283, 7.2822, 7.2834, 7.286, 7.2879, 7.2871, 7.2889, 7.2879, 7.287, 7.2861, 7.2828, 7.282, 7.2814, 7.2805, 7.2796, 7.2788, 7.278, 7.2796, 7.2789, 7.2782, 7.2774, 7.2768, 7.276, 7.2778, 7.2796, 7.2797, 7.2764, 7.2755, 7.2746, 7.2764, 7.276, 7.2756, 7.2774, 7.2765, 7.2756, 7.2748, 7.2764, 7.2757, 7.275, 7.2743, 7.2734, 7.2754, 7.2769, 7.2759, 7.2775, 7.277, 7.2761, 7.2751, 7.2768, 7.2758, 7.2726, 7.2716, 7.2721, 7.2762, 7.2754, 7.2771, 7.2761, 7.2757, 7.2775, 7.2743, 7.2739, 7.2733, 7.2729, 7.2823, 7.2814, 7.2834, 7.2825, 7.2827, 7.2826, 7.2819, 7.2815, 7.2806, 7.2798, 7.2791, 7.2785, 7.2805, 7.2821, 7.2812, 7.2804, 7.2796, 7.2788, 7.2778, 7.2789, 7.2781, 7.2771, 7.2763, 7.2754, 7.2745, 7.2739, 7.2762, 7.2783, 7.28, 7.2818, 7.2811, 7.2829, 7.282, 7.2813, 7.2803, 7.2795, 7.2812, 7.2803, 7.282, 7.2811, 7.2802, 7.2821, 7.2814, 7.2804, 7.2816, 7.2808, 7.2799, 7.2816, 7.2834, 7.2825, 7.2816, 7.2857, 7.2847, 7.2838, 7.2855, 7.2846, 7.2837, 7.2831, 7.2825, 7.2818, 7.2809, 7.2826, 7.284, 7.2831, 7.2826, 7.2819, 7.2787, 7.2804, 7.2823, 7.284, 7.2831, 7.2822, 7.2814, 7.2806, 7.2797, 7.2788, 7.2779, 7.277, 7.2787, 7.2781, 7.2796, 7.2794, 7.2811, 7.2802, 7.2818, 7.2836, 7.2831, 7.2849, 7.2841, 7.2837, 7.2828, 7.282, 7.2813, 7.2805, 7.2796, 7.2786, 7.2807, 7.2825, 7.2818, 7.2817, 7.281, 7.2805, 7.2804, 7.2795, 7.2787, 7.278, 7.2773, 7.2793, 7.2811, 7.2808, 7.28, 7.2808, 7.2801, 7.2771, 7.2762, 7.2753, 7.2747, 7.2762, 7.2755, 7.275, 7.2766, 7.2759, 7.275, 7.2765, 7.2757, 7.2753, 7.2748, 7.2741, 7.2736, 7.2727, 7.2719, 7.2736, 7.2728, 7.2744, 7.2735, 7.275, 7.2747, 7.2739, 7.2732, 7.277, 7.2761, 7.2755, 7.2749, 7.2743, 7.2735, 7.2727, 7.2718, 7.2713, 7.2709, 7.276, 7.2777, 7.2769, 7.2761, 7.2761, 7.2762, 7.2759, 7.2777, 7.277, 7.2767, 7.2758, 7.2752, 7.2746, 7.2738, 7.2731, 7.2743, 7.2737, 7.2736, 7.2752, 7.2743, 7.276, 7.2759, 7.2753, 7.2724, 7.274, 7.2732, 7.275, 7.2743, 7.2734, 7.2727, 7.2746, 7.2738, 7.2731, 7.2723, 7.2715, 7.2708, 7.2733, 7.2725, 7.2718, 7.2714, 7.2709, 7.2724, 7.274, 7.2739, 7.273, 7.2727, 7.2719, 7.2712, 7.2707, 7.2698, 7.269, 7.269, 7.2685, 7.2685, 7.2679, 7.273, 7.2721, 7.2736, 7.2751, 7.2743, 7.2761, 7.2812, 7.2805, 7.2835, 7.2852, 7.2868, 7.2883, 7.2876, 7.2869, 7.2869, 7.2861, 7.2853, 7.2846, 7.2863, 7.2856, 7.2847, 7.284, 7.2831, 7.2829, 7.2823, 7.2815, 7.2807, 7.2799, 7.2793, 7.2785, 7.2779, 7.2775, 7.2793, 7.2785, 7.2777, 7.2792, 7.2786, 7.2802, 7.2793, 7.279, 7.2786, 7.2778, 7.2808, 7.2821, 7.2813, 7.2807, 7.2822, 7.2813, 7.2809, 7.2801, 7.2794, 7.2789, 7.278, 7.2794, 7.2785, 7.2782, 7.2797, 7.279, 7.2783, 7.2778, 7.2775, 7.2771, 7.2788, 7.2781, 7.2778, 7.2773, 7.2749, 7.2741, 7.2735, 7.275, 7.2751, 7.2767, 7.276, 7.2783, 7.2775, 7.2767, 7.276, 7.2752, 7.2769, 7.2762, 7.2755, 7.2748, 7.2742, 7.2734, 7.2726, 7.272, 7.2737, 7.2729, 7.2737, 7.2734, 7.2729, 7.2744, 7.2759, 7.2751, 7.2747, 7.2738, 7.2733, 7.2748, 7.2742, 7.2757, 7.2729, 7.2742, 7.2734, 7.2725, 7.2742, 7.2736, 7.2751, 7.2723, 7.2738, 7.273, 7.2744, 7.2738, 7.2732, 7.2748, 7.2742, 7.2734, 7.2729, 7.2721, 7.2715, 7.273, 7.2722, 7.2736, 7.2732, 7.2726, 7.2718, 7.2711, 7.2703, 7.2695, 7.269, 7.2738, 7.2732, 7.2724, 7.2716, 7.2708, 7.2701, 7.2693, 7.2709, 7.2703, 7.2677, 7.2692, 7.2686, 7.2701, 7.2721, 7.2714, 7.2706, 7.2721, 7.2714, 7.2713, 7.2707, 7.2705, 7.2698, 7.2691, 7.2686, 7.2678, 7.2692, 7.2684, 7.2679, 7.2684, 7.2698, 7.2695, 7.271, 7.2707, 7.2733, 7.2747, 7.274, 7.2734, 7.2729, 7.2722, 7.2715, 7.2709, 7.2703, 7.2697, 7.2712, 7.2727, 7.2719, 7.2734, 7.2729, 7.2721, 7.2714, 7.2708, 7.2722, 7.2714, 7.2728, 7.2722, 7.2736, 7.2729, 7.2721, 7.2736, 7.2729, 7.2791, 7.2783, 7.2776, 7.2791, 7.2783, 7.2777, 7.2772, 7.2765, 7.276, 7.2754, 7.2747, 7.2804, 7.2811, 7.2805, 7.2778, 7.2772, 7.2765, 7.2757, 7.2749, 7.2741, 7.2734, 7.2727, 7.2721, 7.2717, 7.2711, 7.2746, 7.2761, 7.2756, 7.2769, 7.2784, 7.2779, 7.2771, 7.2763, 7.2755, 7.2748, 7.2741, 7.2734, 7.2726, 7.2719, 7.2716, 7.273, 7.2726, 7.275, 7.2746, 7.2738, 7.2752, 7.2749, 7.2764, 7.2756, 7.2749, 7.2742, 7.2739, 7.2739, 7.2753, 7.2752, 7.2745, 7.2763, 7.2758, 7.2774, 7.2769, 7.2761, 7.2753, 7.2745, 7.274, 7.2734, 7.2748, 7.2741, 7.2737, 7.273, 7.2726, 7.2718, 7.271, 7.2703, 7.2695, 7.2689, 7.2703, 7.2695, 7.2687, 7.2662, 7.2659, 7.2652, 7.2645, 7.2637, 7.2623, 7.2618, 7.2613, 7.2607, 7.2624, 7.262, 7.266, 7.2676, 7.2669, 7.2662, 7.2657, 7.2651, 7.2645, 7.2661, 7.2658, 7.2653, 7.2646, 7.2639, 7.2652, 7.2646, 7.2659, 7.2652, 7.2644, 7.2637, 7.2633, 7.2731, 7.2725, 7.2739, 7.2732, 7.2729, 7.2725, 7.2739, 7.2736, 7.2729, 7.2743, 7.2737, 7.2732, 7.2725, 7.2717, 7.2709, 7.2701, 7.2715, 7.2731, 7.2725, 7.2718, 7.2711, 7.2705, 7.2719, 7.2712, 7.2707, 7.2699, 7.2691, 7.2683, 7.2679, 7.2672, 7.2666, 7.266, 7.2653, 7.2648, 7.2662, 7.2676, 7.2671, 7.2664, 7.27, 7.2695, 7.2688, 7.2663, 7.2656, 7.2651, 7.2644, 7.2637, 7.2744, 7.2761, 7.2754, 7.2766, 7.2762, 7.2775, 7.2767, 7.2762, 7.2754, 7.2746, 7.274, 7.2734, 7.2746, 7.2739, 7.2752, 7.2745, 7.2719, 7.2713, 7.2705, 7.2719, 7.2734, 7.2728, 7.2724, 7.2717, 7.2691, 7.2683, 7.2676, 7.2669, 7.2662, 7.2658, 7.2672, 7.2726, 7.2719, 7.2714, 7.2708, 7.2716, 7.2712, 7.2706, 7.2722, 7.2715, 7.2711, 7.2725, 7.2719, 7.2713, 7.2707, 7.27, 7.2714, 7.2708, 7.2701, 7.2694, 7.2706, 7.2719, 7.2711, 7.2716, 7.2709, 7.2702, 7.2715, 7.2707, 7.2701, 7.2694, 7.2686, 7.2699, 7.2692, 7.2686, 7.2698, 7.2695, 7.2689, 7.2681, 7.2695, 7.2689, 7.2683, 7.2676, 7.2671, 7.2686, 7.2679, 7.2672, 7.2666, 7.266, 7.2654, 7.2649, 7.2663, 7.2655, 7.2672, 7.2686, 7.27, 7.2715, 7.2728, 7.2721, 7.2723, 7.2718, 7.2731, 7.2745, 7.274, 7.2747, 7.274, 7.2721, 7.2754, 7.2747, 7.2763, 7.2758, 7.2773, 7.2767, 7.2761, 7.2779, 7.2788, 7.2801, 7.2797, 7.2792, 7.2796, 7.2809, 7.2803, 7.2798, 7.2811, 7.2807, 7.2801, 7.2794, 7.279, 7.2783, 7.2777, 7.277, 7.2764, 7.2759, 7.2752, 7.2766, 7.2759, 7.2753, 7.2769, 7.2784, 7.2778, 7.2771, 7.2768, 7.2762, 7.2776, 7.2769, 7.2763, 7.2775, 7.277, 7.2766, 7.2759, 7.2752, 7.2765, 7.2758, 7.2755, 7.275, 7.2743, 7.2736, 7.2732, 7.2744, 7.2757, 7.2753, 7.2746, 7.2741, 7.2737, 7.2712, 7.2725, 7.272, 7.2733, 7.2732, 7.2725, 7.2718, 7.2711, 7.2723, 7.2741, 7.2735, 7.2729, 7.2722, 7.2717, 7.2711, 7.2709, 7.2702, 7.2695, 7.2698, 7.2694, 7.2687, 7.268, 7.2693, 7.2669, 7.2683, 7.2697, 7.2691, 7.2702, 7.2703, 7.2696, 7.269, 7.274, 7.2735, 7.2728, 7.2721, 7.2717, 7.2731, 7.2724, 7.2717, 7.2729, 7.2743, 7.2736, 7.2729, 7.2722, 7.2715, 7.2728, 7.2778, 7.2773, 7.2766, 7.2759, 7.2773, 7.2788, 7.2781, 7.2774, 7.2768, 7.2761, 7.2756, 7.2751, 7.2765, 7.2796, 7.2812, 7.2805, 7.28, 7.2793, 7.2805, 7.2798, 7.2791, 7.2803, 7.28, 7.2806, 7.2802, 7.2804, 7.2819, 7.2812, 7.2807, 7.2802, 7.2815, 7.2829, 7.2842, 7.2854, 7.2868, 7.2864, 7.2858, 7.2851, 7.2845, 7.2838, 7.2833, 7.2827, 7.2821, 7.2816, 7.2829, 7.2825, 7.2841, 7.2838, 7.2871, 7.2864, 7.2858, 7.2873, 7.2866, 7.2879, 7.2888, 7.2894, 7.2889, 7.2883, 7.2876, 7.2869, 7.2846, 7.2859, 7.2857, 7.285, 7.2863, 7.2857, 7.2851, 7.2844, 7.284, 7.2817, 7.281, 7.2823, 7.2816, 7.2829, 7.2827, 7.284, 7.2836, 7.2843, 7.2844, 7.2839, 7.2832, 7.2826, 7.2824, 7.2887, 7.2883, 7.2894, 7.2889, 7.29, 7.2905, 7.2917, 7.2911, 7.2906, 7.2902, 7.2896, 7.289, 7.2883, 7.2879, 7.2872, 7.2865, 7.2861, 7.2854, 7.2847, 7.2841, 7.2834, 7.2828, 7.2823, 7.2818, 7.2794, 7.2787, 7.278, 7.2775, 7.2769, 7.2762, 7.2756, 7.275, 7.2745, 7.274, 7.2735, 7.2712, 7.2708, 7.2721, 7.2714, 7.271, 7.2703, 7.2697, 7.2692, 7.2686, 7.2679, 7.2673, 7.2667, 7.266, 7.2655, 7.2649, 7.2645, 7.2641, 7.2635, 7.2632, 7.2644, 7.2655, 7.265, 7.2667, 7.2679, 7.2673, 7.2667, 7.2699, 7.273, 7.2725, 7.2738, 7.2733, 7.2745, 7.2758, 7.2808, 7.2813, 7.2826, 7.282, 7.2814, 7.2811, 7.2808, 7.2802, 7.2796, 7.2792, 7.2805, 7.2799, 7.2794, 7.279, 7.2785, 7.2785, 7.2797, 7.2808, 7.2803, 7.28, 7.2811, 7.2823, 7.2817, 7.2813, 7.2808, 7.2786, 7.2781, 7.2776, 7.2771, 7.2766, 7.2762, 7.2774, 7.2771, 7.2764, 7.2776, 7.2771, 7.2768, 7.2762, 7.2773, 7.2766, 7.276, 7.2754, 7.2748, 7.2742, 7.2738, 7.2751, 7.2729, 7.2723, 7.2721, 7.2716, 7.2711, 7.2706, 7.27, 7.2694, 7.2725, 7.2719, 7.2729, 7.2724, 7.2719, 7.2715, 7.2711, 7.2722, 7.2733, 7.2729, 7.2723, 7.2718, 7.2712, 7.2709, 7.2705, 7.2699, 7.2711, 7.2705, 7.2717, 7.2729, 7.2723, 7.2718, 7.273, 7.2742, 7.272, 7.2714, 7.2726, 7.2725, 7.2719, 7.2723, 7.2701, 7.2695, 7.2708, 7.2702, 7.2714, 7.2708, 7.272, 7.2731, 7.2725, 7.2747, 7.2759, 7.2758, 7.2752, 7.2763, 7.2761, 7.2756, 7.275, 7.2761, 7.2772, 7.2766, 7.2762, 7.2773, 7.2769, 7.278, 7.2774, 7.277, 7.2765, 7.2758, 7.2772, 7.2783, 7.2778, 7.2771, 7.2766, 7.2759, 7.2753, 7.2764, 7.2774, 7.2769, 7.2763, 7.2773, 7.2786, 7.2779, 7.2772, 7.2767, 7.276, 7.2753, 7.2747, 7.2741, 7.2752, 7.2746, 7.2741, 7.2737, 7.2731, 7.2725, 7.2739, 7.2736, 7.2731, 7.2725, 7.272, 7.2715, 7.2726, 7.2731, 7.2725, 7.2705, 7.2699, 7.2695, 7.2707, 7.272, 7.2714, 7.2726, 7.2721, 7.2718, 7.2714, 7.2726, 7.2722, 7.2717, 7.2711, 7.2705, 7.2705, 7.27, 7.2695, 7.2691, 7.2726, 7.272, 7.2714, 7.2726, 7.272, 7.2733, 7.2745, 7.274, 7.2737, 7.2731, 7.2728, 7.2723, 7.2718, 7.2712, 7.2708, 7.2703, 7.2698, 7.2711, 7.2707, 7.2718, 7.2713, 7.2724, 7.2738, 7.2734, 7.2728, 7.2723, 7.2717, 7.2729, 7.2723, 7.2719, 7.273, 7.2725, 7.2722, 7.2716, 7.2727, 7.2722, 7.2733, 7.2713, 7.2721, 7.2715, 7.271, 7.2706, 7.27, 7.2694, 7.2688, 7.2683, 7.2677, 7.2672, 7.2667, 7.2663, 7.2658, 7.2652, 7.2664, 7.2658, 7.2653, 7.2648, 7.2644, 7.2639, 7.264, 7.2636, 7.2635, 7.263, 7.2624, 7.2619, 7.2639, 7.2652, 7.2677, 7.2739, 7.2753, 7.2747, 7.2758, 7.2752, 7.2748, 7.2742, 7.2789, 7.2785, 7.2779, 7.2808, 7.2802, 7.2802, 7.2796, 7.2808, 7.2802, 7.2814, 7.2808, 7.2803, 7.2797, 7.2804, 7.2816, 7.288, 7.2874, 7.287, 7.2864, 7.2858, 7.2852, 7.2853, 7.2847, 7.2842, 7.2838, 7.2836, 7.283, 7.2824, 7.2818, 7.2814, 7.2826, 7.2822, 7.2818, 7.2814, 7.2826, 7.2837, 7.2831, 7.2829, 7.2824, 7.2819, 7.2814, 7.2811, 7.2808, 7.2787, 7.2784, 7.2778, 7.2776, 7.2789, 7.2783, 7.2777, 7.2773, 7.2767, 7.2778, 7.2772, 7.2767, 7.2763, 7.2758, 7.2737, 7.2734, 7.2729, 7.2725, 7.272, 7.2732, 7.2716, 7.2726, 7.2721, 7.2717, 7.2727, 7.2741, 7.2752, 7.2746, 7.2742, 7.2744, 7.2748, 7.2746, 7.274, 7.2737, 7.2734, 7.2745, 7.2755, 7.2751, 7.273, 7.2724, 7.2719, 7.273, 7.2726, 7.2721, 7.2715, 7.271, 7.2705, 7.2701, 7.2695, 7.2692, 7.269, 7.2685, 7.2696, 7.269, 7.2685, 7.2696, 7.2707, 7.2704, 7.27, 7.2694, 7.2688, 7.2682, 7.2677, 7.2672, 7.2667, 7.2662, 7.2673, 7.2668, 7.2666, 7.266, 7.2655, 7.2652, 7.2667, 7.2661, 7.2676, 7.2671, 7.2681, 7.2693, 7.2706, 7.2716, 7.2711, 7.2707, 7.2701, 7.2697, 7.2693, 7.2704, 7.2716, 7.2711, 7.2705, 7.2701, 7.2697, 7.2693, 7.2688, 7.2692, 7.2687, 7.2682, 7.2677, 7.2687, 7.2667, 7.2663, 7.2674, 7.2668, 7.2664, 7.2658, 7.2671, 7.2666, 7.2662, 7.2661, 7.2674, 7.2685, 7.268, 7.2674, 7.2688, 7.2706, 7.2704, 7.2715, 7.2709, 7.272, 7.2714, 7.2712, 7.2708, 7.2703, 7.2697, 7.2691, 7.2704, 7.2714, 7.2708, 7.2702, 7.2697, 7.2694, 7.2705, 7.27, 7.2698, 7.2692, 7.2687, 7.2683, 7.2678, 7.2688, 7.2684, 7.2678, 7.2689, 7.2701, 7.2698, 7.2709, 7.2716, 7.2727, 7.2723, 7.2736, 7.2733, 7.2744, 7.2739, 7.2733, 7.2745, 7.2742, 7.2738, 7.2733, 7.2744, 7.2754, 7.2752, 7.2747, 7.2741, 7.2736, 7.2747, 7.2743, 7.274, 7.2735, 7.2731, 7.2741, 7.2737, 7.2732, 7.2727, 7.2726, 7.272, 7.2714, 7.271, 7.2704, 7.2701, 7.2713, 7.2708, 7.2704, 7.2714, 7.2711, 7.2707, 7.2702, 7.2683, 7.2677, 7.2672, 7.2671, 7.2667, 7.2661, 7.2644, 7.2639, 7.2649, 7.2661, 7.2658, 7.2653, 7.2647, 7.2643, 7.2639, 7.2636, 7.2646, 7.2631, 7.2626, 7.2639, 7.265, 7.2646, 7.2642, 7.2623, 7.2618, 7.2614, 7.2626, 7.2621, 7.2616, 7.2613, 7.261, 7.2621, 7.2615, 7.2625, 7.262, 7.2631, 7.2629, 7.2624, 7.2626, 7.2622, 7.2617, 7.2615, 7.2612, 7.2609, 7.2605, 7.2599, 7.2595, 7.2622, 7.2652, 7.2649, 7.2646, 7.264, 7.2635, 7.2631, 7.2627, 7.2623, 7.265, 7.2645, 7.2631, 7.2628, 7.2624, 7.2621, 7.2619, 7.2615, 7.2613, 7.2609, 7.2619, 7.2615, 7.261, 7.2607, 7.2602, 7.2598, 7.2593, 7.2606, 7.2601, 7.2595, 7.2605, 7.2616, 7.2612, 7.2626, 7.2627, 7.2623, 7.2633, 7.2629, 7.2626, 7.2621, 7.2615, 7.2626, 7.2622, 7.2631, 7.2626, 7.2622, 7.2634, 7.263, 7.2642, 7.2651, 7.2661, 7.2659, 7.2671, 7.2666, 7.2661, 7.2671, 7.2682, 7.2678, 7.2673, 7.2668, 7.268, 7.2675, 7.267, 7.2681, 7.2676, 7.2671, 7.2666, 7.2661, 7.2656, 7.2668, 7.2663, 7.2658, 7.2668, 7.2666, 7.2661, 7.2656, 7.2666, 7.2661, 7.2656, 7.2652, 7.2647, 7.2641, 7.2622, 7.2616, 7.2611, 7.2605, 7.2599, 7.2593, 7.2589, 7.2584, 7.2579, 7.2575, 7.2586, 7.2596, 7.2591, 7.2589, 7.2602, 7.2598, 7.2595, 7.2592, 7.2587, 7.2584, 7.2593, 7.2588, 7.2594, 7.2591, 7.2588, 7.2585, 7.2579, 7.2579, 7.2576, 7.2571, 7.2567, 7.2562, 7.2557, 7.2553, 7.2549, 7.2544, 7.2539, 7.2549, 7.2546, 7.2543, 7.2538, 7.2548, 7.2559, 7.2555, 7.2551, 7.2548, 7.2559, 7.2569, 7.2564, 7.2559, 7.2554, 7.255, 7.2545, 7.2555, 7.2564, 7.2574, 7.257, 7.2582, 7.2577, 7.2573, 7.2569, 7.2582, 7.2577, 7.2559, 7.2554, 7.2551, 7.2562, 7.2558, 7.257, 7.2564, 7.2561, 7.2557, 7.2615, 7.2615, 7.261, 7.2635, 7.263, 7.2624, 7.2634, 7.2629, 7.2624, 7.2606, 7.2602, 7.2597, 7.2592, 7.2588, 7.2583, 7.2578, 7.2559, 7.2555, 7.2552, 7.2562, 7.2559, 7.2558, 7.2567, 7.2577, 7.2587, 7.2583, 7.2578, 7.2573, 7.2568, 7.2578, 7.2574, 7.2569, 7.2582, 7.2578, 7.2573, 7.2583, 7.2593, 7.2587, 7.2582, 7.2577, 7.2559, 7.2554, 7.2563, 7.2558, 7.2568, 7.2566, 7.2562, 7.2558, 7.2569, 7.2564, 7.2559, 7.2554, 7.255, 7.2561, 7.2556, 7.2551, 7.2547, 7.2529, 7.2524, 7.252, 7.2529, 7.2524, 7.2536, 7.2531, 7.2526, 7.2535, 7.2541, 7.2536, 7.2547, 7.2552, 7.2548, 7.2545, 7.2544, 7.2544, 7.2539, 7.2534, 7.2544, 7.2541, 7.2537, 7.2535, 7.2531, 7.2527, 7.2522, 7.2533, 7.2528, 7.2523, 7.2518, 7.2528, 7.2537, 7.2532, 7.2529, 7.2537, 7.2532, 7.2542, 7.2539, 7.2535, 7.2532, 7.253, 7.2525, 7.2539, 7.2534, 7.2543, 7.2552, 7.2549, 7.2544, 7.2539, 7.2549, 7.256, 7.2556, 7.2567, 7.2569, 7.2564, 7.2575, 7.2571, 7.2568, 7.2564, 7.256, 7.2557, 7.2567, 7.2562, 7.2558, 7.2554, 7.2551, 7.2546, 7.2557, 7.2553, 7.2549, 7.2544, 7.2539, 7.2534, 7.253, 7.2529, 7.2524, 7.2539, 7.2555, 7.2557, 7.2553, 7.2563, 7.2573, 7.2569, 7.2565, 7.2562, 7.2557, 7.2553, 7.2549, 7.2553, 7.2549, 7.2545, 7.2541, 7.2538, 7.2541, 7.2536, 7.2531, 7.2563, 7.2571, 7.2569, 7.2564, 7.2573, 7.2568, 7.2564, 7.2561, 7.2562, 7.2572, 7.2591, 7.2595, 7.2612, 7.2607, 7.2602, 7.2597, 7.2595, 7.2591, 7.2587, 7.2574, 7.2585, 7.2582, 7.2577, 7.2586, 7.2595, 7.2594, 7.2589, 7.2586, 7.2584, 7.2593, 7.2589, 7.2586, 7.2584, 7.258, 7.2593, 7.2589, 7.2584, 7.2584, 7.2593, 7.2588, 7.2584, 7.2594, 7.2576, 7.2586, 7.2582, 7.2577, 7.2588, 7.2584, 7.2581, 7.262, 7.2615, 7.2611, 7.261, 7.2611, 7.2612, 7.2594, 7.2603, 7.2612, 7.2607, 7.2617, 7.2612, 7.2608, 7.2604, 7.2651, 7.2647, 7.2656, 7.2693, 7.2689, 7.2686, 7.2681, 7.2677, 7.2672, 7.2702, 7.2711, 7.2735, 7.2731, 7.2754, 7.2751, 7.2747, 7.2757, 7.278, 7.2776, 7.2784, 7.2779, 7.2774, 7.2771, 7.2795, 7.2793, 7.2788, 7.2798, 7.2797, 7.2792, 7.279, 7.2788, 7.2798, 7.2795, 7.2792, 7.28, 7.2837, 7.2833, 7.2828, 7.283, 7.2813, 7.2808, 7.2817, 7.2813, 7.2808, 7.2805, 7.2802, 7.2798, 7.2787, 7.2784, 7.2779, 7.2776, 7.2785, 7.2794, 7.279, 7.2813, 7.2822, 7.2817, 7.2813, 7.281, 7.2807, 7.2805, 7.2803, 7.2799, 7.2808, 7.2803, 7.2813, 7.2809, 7.2804, 7.28, 7.2783, 7.2778, 7.2773, 7.2768, 7.2766, 7.2761, 7.2758, 7.2753, 7.2748, 7.2746, 7.2741, 7.2737, 7.2733, 7.273, 7.2725, 7.2723, 7.2718, 7.2713, 7.271, 7.2705, 7.2701, 7.2696, 7.2693, 7.2688, 7.2684, 7.268, 7.2689, 7.2672, 7.2667, 7.2665, 7.2673, 7.2668, 7.2663, 7.266, 7.2669, 7.2666, 7.2675, 7.267, 7.2668, 7.2663, 7.2658, 7.2653, 7.2662, 7.2658, 7.2654, 7.2656, 7.2653, 7.2649, 7.2645, 7.2641, 7.2636, 7.2645, 7.264, 7.2623, 7.2631, 7.2639, 7.2636, 7.2631, 7.2626, 7.2634, 7.2629, 7.2625, 7.2621, 7.2617, 7.2613, 7.2609, 7.2604, 7.26, 7.2596, 7.2593, 7.2588, 7.2583, 7.2578, 7.2573, 7.2582, 7.2592, 7.259, 7.2598, 7.2593, 7.2589, 7.2584, 7.258, 7.2578, 7.2575, 7.257, 7.2566, 7.2561, 7.2556, 7.2552, 7.2561, 7.2557, 7.256, 7.2556, 7.2552, 7.255, 7.2547, 7.2543, 7.2539, 7.2549, 7.2559, 7.2555, 7.2551, 7.2548, 7.2543, 7.2539, 7.2537, 7.2533, 7.2529, 7.2524, 7.2519, 7.2528, 7.2525, 7.251, 7.2505, 7.25, 7.2497, 7.2493, 7.2488, 7.2486, 7.2495, 7.2493, 7.2502, 7.2499, 7.2496, 7.2505, 7.2503, 7.25, 7.2496, 7.2495, 7.2491, 7.25, 7.2496, 7.2506, 7.2502, 7.2498, 7.2493, 7.2502, 7.2497, 7.2492, 7.25, 7.251, 7.2507, 7.2517, 7.2513, 7.2528, 7.2524, 7.2519, 7.2516, 7.2513, 7.251, 7.2507, 7.2504, 7.25, 7.2497, 7.2494, 7.2489, 7.2498, 7.2507, 7.2516, 7.2525, 7.2521, 7.2516, 7.2524, 7.2522, 7.2518, 7.2513, 7.2521, 7.2531, 7.2527, 7.2522, 7.2519, 7.2515, 7.2511, 7.2507, 7.2524, 7.2519, 7.2528, 7.2524, 7.252, 7.2516, 7.2527, 7.2522, 7.2519, 7.2517, 7.2526, 7.2521, 7.2518, 7.2516, 7.2512, 7.251, 7.2508, 7.2505, 7.2523, 7.2519, 7.2515, 7.2512, 7.2508, 7.2504, 7.2502, 7.2512, 7.2508, 7.2504, 7.2501, 7.2502, 7.2498, 7.2493, 7.2489, 7.2498, 7.2495, 7.2491, 7.2486, 7.2482, 7.2478, 7.2474, 7.2471, 7.2469, 7.2467, 7.2465, 7.2461, 7.247, 7.2479, 7.2503, 7.2499, 7.2494, 7.249, 7.2486, 7.2482, 7.2491, 7.2487, 7.2483, 7.2479, 7.2475, 7.2472, 7.2468, 7.2464, 7.2461, 7.2457, 7.2452, 7.2448, 7.2445, 7.2454, 7.2462, 7.2458, 7.2454, 7.245, 7.2446, 7.2442, 7.2438, 7.2447, 7.2443, 7.2439, 7.2437, 7.2432, 7.244, 7.2453, 7.2448, 7.2443, 7.2438, 7.2434, 7.2443, 7.2441, 7.2437, 7.2446, 7.2454, 7.245, 7.2448, 7.2447, 7.2445, 7.244, 7.2462, 7.2458, 7.2453, 7.245, 7.2448, 7.2444, 7.244, 7.2463, 7.2448, 7.2457, 7.2454, 7.245, 7.2446, 7.243, 7.2427, 7.2449, 7.2457, 7.2453, 7.2461, 7.2457, 7.2466, 7.2475, 7.2471, 7.2473, 7.2469, 7.2477, 7.2474, 7.2496, 7.2491, 7.2512, 7.251, 7.2506, 7.249, 7.2485, 7.2481, 7.2479, 7.2488, 7.2484, 7.2493, 7.2492, 7.2489, 7.2498, 7.2494, 7.2504, 7.2501, 7.2497, 7.2494, 7.2522, 7.2532, 7.2541, 7.2527, 7.2525, 7.2521, 7.2549, 7.2545, 7.2554, 7.255, 7.2558, 7.2566, 7.2563, 7.2559, 7.2555, 7.2551, 7.255, 7.2546, 7.2549, 7.2546, 7.2544, 7.2562, 7.2572, 7.2568, 7.2564, 7.2561, 7.2557, 7.2554, 7.255, 7.2546, 7.2543, 7.2551, 7.2548, 7.2556, 7.2565, 7.2563, 7.2559, 7.256, 7.2555, 7.2551, 7.2547, 7.2555, 7.2551, 7.2548, 7.2556, 7.2552, 7.2549, 7.2545, 7.2543, 7.2539, 7.2535, 7.2531, 7.2539, 7.2536, 7.2532, 7.2529, 7.2539, 7.2535, 7.2531, 7.2527, 7.2527, 7.2526, 7.2534, 7.253, 7.2538, 7.2534, 7.2543, 7.2539, 7.2536, 7.2545, 7.2541, 7.2525, 7.2521, 7.2542, 7.2538, 7.2534, 7.2537, 7.2536, 7.2532, 7.253, 7.2527, 7.2525, 7.2521, 7.2518, 7.2518, 7.2514, 7.251, 7.2506, 7.2514, 7.251, 7.2506, 7.2514, 7.2525, 7.2533, 7.2529, 7.2525, 7.2522, 7.253, 7.2525, 7.2521, 7.2541, 7.2539, 7.2536, 7.2533, 7.2528, 7.2535, 7.2531, 7.2528, 7.2549, 7.2559, 7.2554, 7.255, 7.2547, 7.2532, 7.2528, 7.2524, 7.252, 7.2518, 7.2526, 7.2522, 7.252, 7.2528, 7.2524, 7.252, 7.2529, 7.2525, 7.252, 7.2516, 7.2512, 7.2497, 7.2493, 7.2488, 7.2485, 7.2481, 7.2477, 7.2474, 7.247, 7.2466, 7.2462, 7.2457, 7.2443, 7.2451, 7.2447, 7.2443, 7.2438, 7.2446, 7.2456, 7.2465, 7.246, 7.2456, 7.2452, 7.2449, 7.2445, 7.2441, 7.2437, 7.2444, 7.244, 7.2436, 7.2431, 7.2428, 7.2425, 7.2422, 7.2418, 7.2444, 7.2444, 7.244, 7.2438, 7.2434, 7.2443, 7.244, 7.2436, 7.2432, 7.2435, 7.2444, 7.244, 7.2439, 7.2424, 7.2419, 7.2415, 7.2423, 7.2431, 7.244, 7.2437, 7.2446, 7.2442, 7.245, 7.2447, 7.2444, 7.2466, 7.2474, 7.2473, 7.2482, 7.2489, 7.2485, 7.2481, 7.2476, 7.2472, 7.2469, 7.2477, 7.2473, 7.2471, 7.2467, 7.2464, 7.2508, 7.2553, 7.2549, 7.2546, 7.2555, 7.2551, 7.2547, 7.2532, 7.253, 7.2527, 7.2526, 7.2522, 7.2517, 7.2525, 7.2522, 7.253, 7.2526, 7.2535, 7.2544, 7.2541, 7.2548, 7.2545, 7.2542, 7.2537, 7.2545, 7.2554, 7.2562, 7.2571, 7.2578, 7.2587, 7.2595, 7.259, 7.2586, 7.2594, 7.2592, 7.2601, 7.2588, 7.2597, 7.2604, 7.2605, 7.2601, 7.2609, 7.2618, 7.2616, 7.2612, 7.261, 7.2606, 7.2603, 7.2611, 7.2608, 7.2629, 7.2626, 7.2622, 7.2631, 7.2629, 7.2645, 7.2641, 7.2637, 7.2633, 7.2629, 7.2627, 7.2624, 7.2632, 7.2627, 7.2623, 7.2619, 7.2615, 7.2611, 7.2619, 7.2604, 7.26, 7.2596, 7.2593, 7.2589, 7.2603, 7.2599, 7.2584, 7.258, 7.2576, 7.2572, 7.257, 7.2566, 7.2551, 7.2547, 7.2543, 7.2543, 7.2541, 7.2537, 7.2533, 7.253, 7.2526, 7.2534, 7.2531, 7.2527, 7.2531, 7.253, 7.2527, 7.2523, 7.2532, 7.2541, 7.2537, 7.2534, 7.2533, 7.2529, 7.2537, 7.2546, 7.2542, 7.255, 7.2537, 7.2533, 7.2533, 7.2531, 7.2527, 7.2523, 7.2531, 7.2528, 7.2524, 7.2531, 7.2535, 7.2531, 7.2538, 7.2545, 7.2553, 7.2552, 7.2548, 7.2545, 7.2541, 7.2538, 7.2535, 7.2556, 7.2553, 7.2551, 7.2559, 7.2555, 7.2552, 7.2548, 7.2556, 7.2552, 7.2549, 7.2545, 7.2565, 7.2572, 7.2568, 7.2564, 7.256, 7.2557, 7.2553, 7.2561, 7.2558, 7.2565, 7.2561, 7.2558, 7.2555, 7.2553, 7.255, 7.2548, 7.2544, 7.2551, 7.2559, 7.2558, 7.2566, 7.2576, 7.2573, 7.257, 7.2578, 7.262, 7.2617, 7.2613, 7.2613, 7.2609, 7.2605, 7.2602, 7.2609, 7.2605, 7.2613, 7.2609, 7.2676, 7.2673, 7.2669, 7.2665, 7.2661, 7.2668, 7.2664, 7.266, 7.2656, 7.2652, 7.2648, 7.2645, 7.2642, 7.2638, 7.2635, 7.2632, 7.265, 7.2646, 7.2643, 7.2651, 7.2647, 7.2645, 7.2642, 7.2638, 7.2634, 7.2631, 7.2628, 7.2625, 7.2622, 7.262, 7.2617, 7.2614, 7.261, 7.2606, 7.2602, 7.2598, 7.2597, 7.2593, 7.2589, 7.259, 7.2597, 7.2593, 7.2589, 7.2587, 7.2586, 7.2594, 7.2593, 7.2592, 7.26, 7.2596, 7.2592, 7.2588, 7.259, 7.2586, 7.2594, 7.259, 7.2586, 7.2584, 7.2592, 7.26, 7.2597, 7.2605, 7.2601, 7.2598, 7.2605, 7.263, 7.2638, 7.2645, 7.2642, 7.265, 7.265, 7.2646, 7.2642, 7.2638, 7.2636, 7.2632, 7.2661, 7.2669, 7.2665, 7.2661, 7.267, 7.2677, 7.2685, 7.2693, 7.2689, 7.2685, 7.2694, 7.2691, 7.2699, 7.2695, 7.2712, 7.2708, 7.2705, 7.2701, 7.2699, 7.2706, 7.2703, 7.2722, 7.2718, 7.2716, 7.2712, 7.2708, 7.2704, 7.27, 7.2696, 7.2693, 7.2701, 7.2697, 7.2693, 7.2689, 7.2685, 7.2682, 7.2679, 7.2676, 7.2683, 7.269, 7.2697, 7.2684, 7.268, 7.2678, 7.2688, 7.2686, 7.2684, 7.268, 7.2677, 7.2673, 7.2669, 7.2666, 7.2673, 7.2671, 7.2668, 7.2664, 7.2717, 7.2714, 7.271, 7.2707, 7.2703, 7.2689, 7.2685, 7.2692, 7.2688, 7.2696, 7.2693, 7.269, 7.2686, 7.2684, 7.2691, 7.2699, 7.2697, 7.2705, 7.2701, 7.2697, 7.2693, 7.269, 7.2698, 7.2694, 7.2691, 7.2689, 7.2685, 7.2681, 7.2677, 7.2676, 7.2674, 7.267, 7.2668, 7.2664, 7.266, 7.2657, 7.2654, 7.265, 7.2648, 7.2655, 7.2668, 7.2664, 7.2672, 7.2669, 7.2678, 7.2674, 7.2671, 7.2667, 7.2664, 7.2665, 7.2661, 7.2657, 7.2655, 7.2651, 7.2718, 7.2717, 7.2704, 7.27, 7.2697, 7.2723, 7.2719, 7.2716, 7.2747, 7.2744, 7.2742, 7.2738, 7.2736, 7.2732, 7.2728, 7.2727, 7.2725, 7.2721, 7.2717, 7.2713, 7.2709, 7.2706, 7.2715, 7.2712, 7.2709, 7.2706, 7.2702, 7.2709, 7.2716, 7.2771, 7.2779, 7.2783, 7.278, 7.2777, 7.2774, 7.2772, 7.2769, 7.2767, 7.2764, 7.2761, 7.2757, 7.2753, 7.2749, 7.2747, 7.2754, 7.2762, 7.2748, 7.2744, 7.2742, 7.2739, 7.2735, 7.2732, 7.2728, 7.2732, 7.2729, 7.2725, 7.2722, 7.2718, 7.2736, 7.2733, 7.2731, 7.2727, 7.2724, 7.2731, 7.2728, 7.2737, 7.2733, 7.2729, 7.2725, 7.2723, 7.2721, 7.2718, 7.2715, 7.2712, 7.2709, 7.2715, 7.2712, 7.2709, 7.2705, 7.2717, 7.2714, 7.2722, 7.2725, 7.2721, 7.2718, 7.2726, 7.2733, 7.2731, 7.2727, 7.2723, 7.2731, 7.2727, 7.2723, 7.2731, 7.2728, 7.2726, 7.2722, 7.2718, 7.2718, 7.2716, 7.2703, 7.27, 7.2697, 7.2693, 7.269, 7.2686, 7.2682, 7.2679, 7.2675, 7.2673, 7.267, 7.2677, 7.2685, 7.2682, 7.274, 7.2747, 7.2745, 7.2741, 7.2737, 7.2734, 7.2731, 7.2718, 7.2704, 7.2701, 7.2697, 7.2693, 7.269, 7.2688, 7.2687, 7.2683, 7.2679, 7.2687, 7.2683, 7.2679, 7.2675, 7.2671, 7.2668, 7.2664, 7.2676, 7.2673, 7.267, 7.2666, 7.2664, 7.2671, 7.2667, 7.2664, 7.2661, 7.2658, 7.2668, 7.2655, 7.2652, 7.2661, 7.2657, 7.2654, 7.2652, 7.2659, 7.2649, 7.2646, 7.2653, 7.2649, 7.2647, 7.2645, 7.2641, 7.2648, 7.2644, 7.2641, 7.2637, 7.2633, 7.2629, 7.2625, 7.2621, 7.2628, 7.2625, 7.2622, 7.2618, 7.2614, 7.2611, 7.261, 7.2606, 7.2603, 7.26, 7.2605, 7.2609, 7.2605, 7.2604, 7.26, 7.2596, 7.2592, 7.259, 7.2581, 7.2579, 7.2586, 7.2593, 7.259, 7.2588, 7.2597, 7.2593, 7.26, 7.2607, 7.2604, 7.26, 7.2607, 7.2603, 7.2599, 7.2606, 7.2603, 7.2602, 7.2609, 7.2616, 7.2613, 7.2621, 7.2619, 7.2616, 7.2618, 7.2625, 7.2622, 7.2618, 7.2618, 7.2632, 7.2629, 7.2626, 7.2622, 7.2626, 7.2623, 7.262, 7.2621, 7.2618, 7.2614, 7.2622, 7.263, 7.2626, 7.2623, 7.2625, 7.2621, 7.2617, 7.2624, 7.2621, 7.2628, 7.2625, 7.2628, 7.2627, 7.2624, 7.2632, 7.263, 7.2639, 7.2637, 7.2634, 7.2641, 7.2638, 7.2635, 7.2642, 7.2649, 7.2646, 7.2644, 7.2642, 7.2641, 7.2638, 7.2637, 7.2624, 7.2621, 7.2618, 7.2616, 7.2623, 7.2621, 7.2617, 7.2614, 7.2623, 7.263, 7.2638, 7.2624, 7.2632, 7.2639, 7.2636, 7.2633, 7.264, 7.2636, 7.2633, 7.264, 7.2636, 7.2633, 7.2663, 7.267, 7.2677, 7.2675, 7.2733, 7.273, 7.2726, 7.2732, 7.2728, 7.2725, 7.2732, 7.273, 7.2726, 7.2733, 7.273, 7.2727, 7.2725, 7.2721, 7.2717, 7.2713, 7.271, 7.2706, 7.2703, 7.2707, 7.2703, 7.271, 7.2707, 7.2706, 7.2713, 7.27, 7.2708, 7.2705, 7.2712, 7.2709, 7.2717, 7.2704, 7.2702, 7.2699, 7.2696, 7.2694, 7.269, 7.2687, 7.2683, 7.268, 7.2677, 7.2691, 7.2688, 7.2696, 7.2692, 7.2699, 7.2696, 7.2704, 7.2701, 7.2698, 7.2694, 7.2701, 7.2698, 7.2695, 7.2691, 7.2689, 7.2687, 7.2691, 7.2692, 7.2699, 7.2696, 7.2695, 7.2692, 7.269, 7.2693, 7.2689, 7.2686, 7.2693, 7.2689, 7.2686, 7.2682, 7.269, 7.2692, 7.2688, 7.2684, 7.2681, 7.2688, 7.2684, 7.268, 7.2678, 7.2674, 7.2671, 7.2667, 7.2663, 7.267, 7.2657, 7.2654, 7.2651, 7.2648, 7.2646, 7.2643, 7.2639, 7.2637, 7.2635, 7.2632, 7.264, 7.2637, 7.2634, 7.2632, 7.2628, 7.2635, 7.2641, 7.2648, 7.2645, 7.2642, 7.2639, 7.2645, 7.2642, 7.2639, 7.2646, 7.2633, 7.263, 7.2641, 7.2649, 7.2648, 7.2645, 7.2641, 7.2638, 7.2635, 7.2632, 7.2628, 7.2626, 7.2623, 7.2622, 7.2629, 7.2627, 7.2623, 7.263, 7.2637, 7.2634, 7.2641, 7.2638, 7.2636, 7.2633, 7.2631, 7.2627, 7.2625, 7.2632, 7.2628, 7.2625, 7.2623, 7.262, 7.2626, 7.2624, 7.2621, 7.2618, 7.2625, 7.2632, 7.263, 7.2627, 7.2633, 7.263, 7.2627, 7.2624, 7.2621, 7.2618, 7.2615, 7.2622, 7.263, 7.2637, 7.2635, 7.2631, 7.2628, 7.2625, 7.2633, 7.264, 7.2637, 7.2634, 7.263, 7.2626, 7.2622, 7.2618, 7.2615, 7.2613, 7.2609, 7.2605, 7.2612, 7.2609, 7.2606, 7.2603, 7.26, 7.2596, 7.2592, 7.2588, 7.2586, 7.2593, 7.26, 7.2625, 7.2621, 7.2618, 7.2624, 7.2622, 7.2629, 7.2626, 7.2622, 7.2628, 7.2635, 7.2641, 7.2639, 7.2636, 7.2643, 7.265, 7.2646, 7.2642, 7.2649, 7.2645, 7.2642, 7.2639, 7.2646, 7.2643, 7.265, 7.2647, 7.2675, 7.2681, 7.2678, 7.2675, 7.2681, 7.2678, 7.2675, 7.2671, 7.2668, 7.2665, 7.2661, 7.2658, 7.2655, 7.2662, 7.2658, 7.2656, 7.2653, 7.2659, 7.2656, 7.2653, 7.2649, 7.2646, 7.2653, 7.2649, 7.2655, 7.2662, 7.2668, 7.2665, 7.2661, 7.2657, 7.2653, 7.265, 7.265, 7.2648, 7.2645, 7.2642, 7.2639, 7.2636, 7.2633, 7.263, 7.2627, 7.2634, 7.2641, 7.2653, 7.2651, 7.2654, 7.2662, 7.2658, 7.2668, 7.2665, 7.2673, 7.267, 7.2668, 7.2666, 7.2663, 7.2651, 7.2648, 7.2645, 7.2642, 7.2639, 7.2646, 7.266, 7.2656, 7.2653, 7.264, 7.2637, 7.2644, 7.2642, 7.2638, 7.2635, 7.2633, 7.265, 7.2657, 7.2664, 7.2661, 7.2659, 7.2666, 7.2673, 7.267, 7.2668, 7.2665, 7.2672, 7.2669, 7.2666, 7.2675, 7.2683, 7.2693], '192.168.122.119': [11.1458, 9.3222, 8.0368, 7.4878, 6.1125, 6.2764, 6.1505, 6.1014, 6.6108, 6.5736, 6.9628, 6.9601, 6.8781, 7.1709, 7.0542, 7.0211, 6.9493, 6.8548, 6.8132, 6.7333, 6.6898, 6.6908, 6.6342, 6.5946, 6.5736, 6.5474, 6.5153, 6.5013, 6.5635, 6.5391, 6.5211, 6.7801, 6.9324, 7.0575, 7.0751, 7.0441, 7.0037, 7.0082, 6.9776, 6.9642, 6.9255, 6.8895, 6.8577, 6.8354, 6.9274, 6.9028, 7.0044, 6.9797, 6.9472, 7.0244, 6.9959, 6.9969, 6.977, 6.9814, 7.0511, 7.0214, 6.9932, 6.966, 6.9439, 6.9178, 6.9024, 6.9649, 7.0274, 7.087, 7.1499, 7.2059, 7.2607, 7.2408, 7.2142, 7.1943, 7.1925, 7.1764, 7.2305, 7.2813, 7.2543, 7.2327, 7.2264, 7.269, 7.3148, 7.3374, 7.3255, 7.3011, 7.276, 7.2617, 7.2397, 7.2176, 7.1982, 7.1785, 7.1643, 7.2035, 7.2039, 7.1901, 7.2261, 7.2129, 7.1931, 7.1799, 7.174, 7.1547, 7.1912, 7.182, 7.1643, 7.2002, 7.1826, 7.1739, 7.2573, 7.2529, 7.2374, 7.2753, 7.2613, 7.2429, 7.2774, 7.2619, 7.2473, 7.2336, 7.2168, 7.3011, 7.3425, 7.3793, 7.3628, 7.3468, 7.3293, 7.3148, 7.3243, 7.3125, 7.344, 7.3295, 7.3999, 7.3846, 7.3727, 7.3606, 7.3491, 7.3335, 7.3191, 7.3049, 7.2903, 7.276, 7.2262, 7.253, 7.2862, 7.2754, 7.2627, 7.2511, 7.2389, 7.2277, 7.2519, 7.2477, 7.2385, 7.2268, 7.2512, 7.2416, 7.2376, 7.2279, 7.251, 7.2394, 7.2278, 7.2518, 7.2727, 7.2644, 7.2528, 7.2424, 7.2348, 7.2282, 7.2513, 7.2396, 7.2308, 7.2211, 7.2123, 7.2017, 7.1939, 7.184, 7.174, 7.1635, 7.1841, 7.2107, 7.203, 7.1969, 7.1888, 7.1847, 7.1755, 7.1676, 7.1867, 7.1775, 7.1696, 7.19, 7.1805, 7.1738, 7.2338, 7.2526, 7.2448, 7.2351, 7.2259, 7.2463, 7.4137, 7.4195, 7.409, 7.3996, 7.4126, 7.4034, 7.3924, 7.3822, 7.3728, 7.3633, 7.3548, 7.3648, 7.3733, 7.3632, 7.3586, 7.3514, 7.3441, 7.3382, 7.3081, 7.3251, 7.3189, 7.3098, 7.302, 7.2924, 7.2869, 7.3014, 7.2919, 7.2845, 7.3033, 7.2941, 7.2877, 7.2813, 7.2733, 7.2673, 7.2808, 7.2752, 7.2701, 7.2417, 7.236, 7.2276, 7.2196, 7.2342, 7.2255, 7.2276, 7.2003, 7.1929, 7.187, 7.182, 7.1754, 7.172, 7.1687, 7.1616, 7.1539, 7.1464, 7.1415, 7.1365, 7.1298, 7.1229, 7.1174, 7.1143, 7.1094, 7.1237, 7.1371, 7.1328, 7.126, 7.1197, 7.1132, 7.1062, 7.0997, 7.0929, 7.1071, 7.1006, 7.0958, 7.0915, 7.0881, 7.0823, 7.0776, 7.0727, 7.0666, 7.0801, 7.0734, 7.0868, 7.0799, 7.0745, 7.068, 7.063, 7.0789, 7.0736, 7.0671, 7.0612, 7.0556, 7.052, 7.0293, 7.0414, 7.036, 7.0306, 7.0253, 7.0197, 7.014, 7.008, 7.0088, 7.0041, 7.0165, 7.0118, 7.0421, 7.0527, 7.0477, 7.0429, 7.0376, 7.0322, 7.0451, 7.0396, 7.0864, 7.0809, 7.0756, 7.088, 7.0828, 7.0952, 7.0899, 7.0998, 7.1115, 7.1076, 7.1023, 7.097, 7.1086, 7.1056, 7.0998, 7.0942, 7.0909, 7.0944, 7.1053, 7.1009, 7.0974, 7.0935, 7.0887, 7.089, 7.0837, 7.0789, 7.09, 7.1017, 7.0819, 7.0916, 7.0715, 7.0723, 7.0838, 7.0968, 7.0939, 7.0909, 7.0855, 7.0805, 7.0796, 7.0746, 7.0698, 7.0804, 7.0763, 7.0714, 7.0667, 7.0622, 7.0587, 7.0537, 7.0497, 7.0466, 7.0429, 7.0417, 7.0529, 7.0529, 7.0356, 7.031, 7.0276, 7.0247, 7.026, 7.0232, 7.0195, 7.0321, 7.0292, 7.0264, 7.0281, 7.0248, 7.0216, 7.0203, 7.0169, 7.0125, 7.0092, 7.0214, 7.0216, 7.0179, 7.005, 7.0007, 6.999, 6.9954, 6.9914, 6.9872, 7.0048, 7.0022, 6.9994, 6.9952, 6.9914, 6.9902, 7.0024, 6.9997, 6.9957, 7.0056, 7.0139, 7.023, 7.024, 7.025, 7.0207, 7.0166, 7.0132, 7.0104, 7.02, 7.0161, 7.0117, 7.0207, 7.0296, 7.0268, 7.0233, 7.0334, 7.0295, 7.026, 7.0247, 7.0211, 7.0293, 7.0263, 7.0362, 7.0328, 7.0422, 7.0381, 7.0348, 7.037, 7.0331, 7.0423, 7.0396, 7.0363, 7.0337, 7.0299, 7.0263, 7.0225, 7.0244, 7.0205, 7.0171, 7.0255, 7.0235, 7.0323, 7.0287, 7.0366, 7.033, 7.03, 7.0649, 7.0623, 7.0615, 7.0596, 7.0578, 7.0541, 7.0867, 7.1074, 7.1049, 7.1186, 7.1165, 7.1125, 7.1093, 7.1053, 7.1014, 7.0989, 7.1086, 7.1048, 7.1143, 7.1113, 7.108, 7.1045, 7.1138, 7.1264, 7.1229, 7.1214, 7.1199, 7.128, 7.1148, 7.1226, 7.1304, 7.1381, 7.1468, 7.155, 7.1526, 7.1496, 7.1467, 7.1435, 7.1396, 7.1357, 7.1436, 7.1412, 7.1491, 7.1469, 7.1449, 7.1417, 7.1495, 7.1473, 7.1443, 7.1411, 7.1376, 7.1336, 7.13, 7.1275, 7.1241, 7.1204, 7.1178, 7.1143, 7.1109, 7.1073, 7.1043, 7.101, 7.0979, 7.1279, 7.1241, 7.1209, 7.1276, 7.1251, 7.1324, 7.1292, 7.1366, 7.1336, 7.1211, 7.1183, 7.1267, 7.1231, 7.1217, 7.1189, 7.1153, 7.1125, 7.1189, 7.1161, 7.1134, 7.1197, 7.117, 7.114, 7.1109, 7.1084, 7.1155, 7.1129, 7.1191, 7.1211, 7.1194, 7.1263, 7.133, 7.13, 7.1268, 7.1242, 7.1218, 7.1199, 7.1166, 7.123, 7.1297, 7.1276, 7.1246, 7.1216, 7.1189, 7.1176, 7.1252, 7.1222, 7.1193, 7.1167, 7.1055, 7.1028, 7.1101, 7.1076, 7.1054, 7.1122, 7.1094, 7.1065, 7.1034, 7.1098, 7.1085, 7.1061, 7.103, 7.1103, 7.0991, 7.0968, 7.1034, 7.1004, 7.0974, 7.1036, 7.1102, 7.1088, 7.1059, 7.1031, 7.1003, 7.0974, 7.0945, 7.101, 7.0979, 7.1051, 7.1119, 7.1099, 7.1168, 7.1141, 7.1112, 7.1091, 7.1185, 7.1159, 7.1132, 7.1112, 7.1471, 7.145, 7.1425, 7.1396, 7.1553, 7.1545, 7.1515, 7.1574, 7.1547, 7.153, 7.1517, 7.1491, 7.1641, 7.1612, 7.1581, 7.1569, 7.163, 7.1634, 7.1603, 7.1577, 7.1551, 7.1524, 7.1507, 7.1478, 7.1453, 7.1425, 7.1318, 7.1291, 7.1267, 7.1351, 7.1324, 7.1384, 7.1372, 7.1341, 7.1316, 7.1308, 7.1278, 7.1264, 7.1239, 7.121, 7.119, 7.1241, 7.1219, 7.1198, 7.1176, 7.1146, 7.1295, 7.1265, 7.1322, 7.1296, 7.1272, 7.1251, 7.1236, 7.1207, 7.1178, 7.1155, 7.1214, 7.1264, 7.1333, 7.1303, 7.1274, 7.1247, 7.1219, 7.1192, 7.1093, 7.1067, 7.1042, 7.1025, 7.1084, 7.109, 7.1073, 7.1049, 7.1024, 7.0999, 7.1054, 7.1037, 7.1009, 7.1153, 7.1128, 7.1103, 7.1079, 7.1057, 7.1032, 7.1086, 7.1061, 7.1041, 7.1014, 7.099, 7.0962, 7.1016, 7.0999, 7.0973, 7.1025, 7.1012, 7.0986, 7.096, 7.0933, 7.0924, 7.0899, 7.0954, 7.0858, 7.0912, 7.0964, 7.094, 7.0997, 7.1222, 7.1275, 7.1251, 7.1228, 7.1218, 7.1191, 7.1254, 7.1227, 7.1202, 7.1177, 7.1153, 7.114, 7.1119, 7.1032, 7.1014, 7.1065, 7.1045, 7.1175, 7.1153, 7.1215, 7.1271, 7.1414, 7.1391, 7.1368, 7.1349, 7.1404, 7.1388, 7.1751, 7.1726, 7.1703, 7.1742, 7.1716, 7.1693, 7.1667, 7.165, 7.1624, 7.1612, 7.1587, 7.1565, 7.1547, 7.1525, 7.1585, 7.156, 7.1537, 7.1514, 7.1565, 7.1542, 7.1576, 7.1649, 7.1625, 7.1601, 7.1589, 7.1639, 7.1627, 7.1611, 7.1656, 7.1712, 7.169, 7.1843, 7.1893, 7.1877, 7.1927, 7.197, 7.1952, 7.1942, 7.1928, 7.1908, 7.1885, 7.1863, 7.185, 7.1829, 7.2062, 7.2133, 7.2109, 7.2085, 7.2076, 7.2059, 7.2045, 7.2023, 7.1999, 7.1991, 7.204, 7.2016, 7.1998, 7.1986, 7.1971, 7.1946, 7.193, 7.198, 7.1958, 7.2006, 7.1982, 7.1959, 7.1937, 7.1983, 7.1962, 7.2006, 7.2053, 7.21, 7.2084, 7.2133, 7.2176, 7.2162, 7.2257, 7.2304, 7.2285, 7.2261, 7.2243, 7.2219, 7.2217, 7.2193, 7.2168, 7.2233, 7.2217, 7.2194, 7.2171, 7.2159, 7.2222, 7.2204, 7.2207, 7.2191, 7.2173, 7.2151, 7.2159, 7.2204, 7.2245, 7.2226, 7.2212, 7.2197, 7.2176, 7.2224, 7.2207, 7.2186, 7.2167, 7.2211, 7.2197, 7.2185, 7.2173, 7.215, 7.2148, 7.2129, 7.2118, 7.2097, 7.222, 7.2196, 7.2207, 7.2192, 7.2518, 7.2495, 7.2504, 7.2428, 7.2501, 7.2482, 7.2465, 7.2442, 7.2362, 7.2351, 7.2339, 7.2318, 7.2298, 7.2289, 7.2268, 7.2248, 7.2235, 7.2213, 7.2201, 7.2125, 7.2163, 7.2089, 7.2137, 7.2114, 7.21, 7.2078, 7.2118, 7.2098, 7.2139, 7.218, 7.2163, 7.2143, 7.2123, 7.2108, 7.2088, 7.207, 7.2048, 7.2042, 7.2082, 7.2062, 7.2055, 7.2035, 7.2018, 7.1998, 7.2, 7.1979, 7.1966, 7.2008, 7.1987, 7.1968, 7.1947, 7.1932, 7.1973, 7.1953, 7.1939, 7.1925, 7.1904, 7.1891, 7.1876, 7.1857, 7.1837, 7.1819, 7.1858, 7.1838, 7.1819, 7.1803, 7.1784, 7.1765, 7.1765, 7.1746, 7.1726, 7.1707, 7.1686, 7.1676, 7.1663, 7.1699, 7.1679, 7.1609, 7.1591, 7.1575, 7.156, 7.1541, 7.1579, 7.1559, 7.154, 7.152, 7.1557, 7.1558, 7.154, 7.1521, 7.1562, 7.1603, 7.1585, 7.1625, 7.1613, 7.1653, 7.1633, 7.1615, 7.179, 7.1887, 7.187, 7.1855, 7.1895, 7.1882, 7.1864, 7.1846, 7.1828, 7.1815, 7.1804, 7.1787, 7.1771, 7.1753, 7.1787, 7.1826, 7.1809, 7.1795, 7.1835, 7.1878, 7.1865, 7.1909, 7.1945, 7.1876, 7.1914, 7.1953, 7.1938, 7.1975, 7.1968, 7.1957, 7.1939, 7.1978, 7.1962, 7.1961, 7.1942, 7.1929, 7.191, 7.1947, 7.1927, 7.1912, 7.1943, 7.1927, 7.1913, 7.1897, 7.1879, 7.1864, 7.2008, 7.221, 7.225, 7.2234, 7.2225, 7.2209, 7.2194, 7.2179, 7.2215, 7.2251, 7.2232, 7.2215, 7.225, 7.2232, 7.2266, 7.2247, 7.2288, 7.2289, 7.228, 7.2263, 7.2245, 7.2235, 7.222, 7.2203, 7.224, 7.2222, 7.2258, 7.2239, 7.2226, 7.2207, 7.2196, 7.219, 7.2225, 7.2208, 7.2241, 7.2223, 7.2206, 7.22, 7.2183, 7.2165, 7.2197, 7.2184, 7.2167, 7.2152, 7.2088, 7.2078, 7.206, 7.2043, 7.2078, 7.2062, 7.2045, 7.2081, 7.2062, 7.2099, 7.2093, 7.2087, 7.2069, 7.2064, 7.2062, 7.2053, 7.2034, 7.2022, 7.2009, 7.2089, 7.2127, 7.2163, 7.2197, 7.2193, 7.2178, 7.2209, 7.2241, 7.2224, 7.2162, 7.2145, 7.2129, 7.212, 7.2104, 7.2098, 7.2089, 7.2071, 7.2054, 7.2036, 7.2018, 7.2051, 7.2036, 7.2019, 7.2057, 7.2095, 7.213, 7.2117, 7.2101, 7.2271, 7.226, 7.2244, 7.2301, 7.2284, 7.2317, 7.2299, 7.2284, 7.2269, 7.2256, 7.2361, 7.2344, 7.2345, 7.2331, 7.2322, 7.2304, 7.2297, 7.2279, 7.2271, 7.226, 7.2308, 7.2344, 7.2326, 7.2317, 7.2309, 7.2297, 7.2304, 7.234, 7.2326, 7.231, 7.2293, 7.2276, 7.2325, 7.2307, 7.2344, 7.233, 7.2359, 7.2397, 7.2383, 7.2371, 7.2357, 7.234, 7.2325, 7.2317, 7.2452, 7.2446, 7.243, 7.2656, 7.2643, 7.2631, 7.2663, 7.2649, 7.2645, 7.2635, 7.2666, 7.2651, 7.2633, 7.2632, 7.2621, 7.2607, 7.2639, 7.2628, 7.2746, 7.273, 7.2673, 7.2656, 7.2639, 7.267, 7.2653, 7.2595, 7.2629, 7.2616, 7.2605, 7.2588, 7.2579, 7.2608, 7.2635, 7.2622, 7.2608, 7.2613, 7.2595, 7.2624, 7.2606, 7.2591, 7.2577, 7.2568, 7.2557, 7.254, 7.2534, 7.2521, 7.2551, 7.2534, 7.2519, 7.2503, 7.2447, 7.2431, 7.246, 7.2445, 7.2504, 7.2493, 7.2489, 7.2472, 7.2461, 7.2445, 7.2431, 7.2418, 7.2405, 7.2397, 7.2428, 7.2416, 7.24, 7.2431, 7.2461, 7.2406, 7.2351, 7.2294, 7.2279, 7.2268, 7.2298, 7.2286, 7.2278, 7.2263, 7.2247, 7.2232, 7.222, 7.2206, 7.2194, 7.2222, 7.2214, 7.2207, 7.224, 7.2224, 7.2257, 7.2244, 7.2233, 7.222, 7.2211, 7.2203, 7.219, 7.2223, 7.2255, 7.2283, 7.2316, 7.2302, 7.2288, 7.2272, 7.2301, 7.2287, 7.2318, 7.2302, 7.2333, 7.2324, 7.2309, 7.2338, 7.2285, 7.2273, 7.2304, 7.2335, 7.2332, 7.2318, 7.2303, 7.2331, 7.2361, 7.2349, 7.2335, 7.2322, 7.2307, 7.2293, 7.232, 7.2351, 7.2337, 7.2368, 7.2355, 7.2384, 7.237, 7.2355, 7.2346, 7.2331, 7.2321, 7.2305, 7.2335, 7.2364, 7.2405, 7.239, 7.2375, 7.2361, 7.2346, 7.2332, 7.2318, 7.2303, 7.2262, 7.2254, 7.2283, 7.2313, 7.2264, 7.2248, 7.2246, 7.2232, 7.2218, 7.222, 7.2209, 7.2197, 7.2222, 7.2212, 7.2209, 7.2234, 7.222, 7.2212, 7.2205, 7.2197, 7.2226, 7.2215, 7.2245, 7.2231, 7.2218, 7.2205, 7.2233, 7.222, 7.2252, 7.224, 7.2228, 7.2215, 7.2201, 7.2151, 7.21, 7.2085, 7.2073, 7.206, 7.2052, 7.2041, 7.2027, 7.2013, 7.1964, 7.195, 7.1942, 7.1936, 7.196, 7.1976, 7.2004, 7.1995, 7.1983, 7.1971, 7.1957, 7.1943, 7.1933, 7.1995, 7.1988, 7.1978, 7.1966, 7.1952, 7.1943, 7.193, 7.1965, 7.1957, 7.1945, 7.1938, 7.1926, 7.1918, 7.1911, 7.1902, 7.1888, 7.1917, 7.191, 7.1896, 7.1882, 7.1909, 7.1895, 7.1921, 7.1954, 7.1955, 7.1942, 7.1934, 7.1928, 7.1914, 7.1941, 7.1968, 7.1996, 7.1983, 7.1969, 7.1995, 7.1982, 7.2009, 7.1998, 7.1992, 7.1985, 7.1978, 7.1964, 7.1915, 7.1871, 7.1932, 7.1939, 7.1931, 7.1922, 7.1911, 7.1904, 7.1891, 7.1883, 7.191, 7.1925, 7.1918, 7.1944, 7.1932, 7.196, 7.1948, 7.1943, 7.1937, 7.1988, 7.2016, 7.2046, 7.2073, 7.2027, 7.202, 7.2052, 7.2114, 7.21, 7.2093, 7.2087, 7.2077, 7.2049, 7.2075, 7.2067, 7.2029, 7.2021, 7.2012, 7.2038, 7.2025, 7.2127, 7.2118, 7.2109, 7.2098, 7.2162, 7.215, 7.2184, 7.2174, 7.2161, 7.2187, 7.2223, 7.2214, 7.2239, 7.2225, 7.2213, 7.2214, 7.2204, 7.2191, 7.2177, 7.2163, 7.2151, 7.2139, 7.2127, 7.2114, 7.2103, 7.2094, 7.2158, 7.2149, 7.2137, 7.2162, 7.2153, 7.214, 7.2127, 7.2115, 7.2103, 7.2091, 7.2117, 7.2143, 7.2131, 7.2157, 7.218, 7.2171, 7.2195, 7.2184, 7.2171, 7.2196, 7.2222, 7.2212, 7.2202, 7.2188, 7.2175, 7.2172, 7.2159, 7.2148, 7.2139, 7.2127, 7.2117, 7.2104, 7.2102, 7.2125, 7.2148, 7.2138, 7.2127, 7.2121, 7.2118, 7.2127, 7.2117, 7.2108, 7.2125, 7.2122, 7.2145, 7.2139, 7.2257, 7.225, 7.2241, 7.2266, 7.231, 7.2298, 7.2288, 7.2276, 7.2266, 7.2261, 7.2249, 7.2272, 7.2259, 7.225, 7.2206, 7.2196, 7.2184, 7.2173, 7.216, 7.2148, 7.2136, 7.2169, 7.2159, 7.2148, 7.2135, 7.2128, 7.2116, 7.2104, 7.2096, 7.2121, 7.2113, 7.2101, 7.2091, 7.208, 7.2072, 7.2062, 7.2071, 7.2058, 7.2079, 7.2072, 7.2059, 7.2047, 7.2073, 7.2096, 7.2118, 7.2113, 7.2101, 7.2091, 7.2079, 7.2093, 7.2081, 7.2075, 7.2064, 7.2054, 7.2047, 7.2043, 7.2032, 7.2056, 7.208, 7.208, 7.2067, 7.2055, 7.2045, 7.2036, 7.2025, 7.2014, 7.2001, 7.2027, 7.2048, 7.2038, 7.2037, 7.2025, 7.2013, 7.2036, 7.2023, 7.2015, 7.2006, 7.1995, 7.1957, 7.1946, 7.1939, 7.194, 7.1965, 7.1957, 7.1984, 7.2006, 7.2029, 7.2017, 7.2006, 7.1994, 7.1982, 7.1974, 7.1964, 7.1987, 7.1976, 7.1966, 7.1987, 7.1975, 7.1963, 7.1951, 7.194, 7.1964, 7.1952, 7.1942, 7.193, 7.1919, 7.1907, 7.1866, 7.1858, 7.1848, 7.184, 7.1857, 7.1881, 7.1869, 7.1859, 7.1848, 7.1869, 7.186, 7.1854, 7.1846, 7.1835, 7.1824, 7.1818, 7.1813, 7.1807, 7.1796, 7.1816, 7.1839, 7.1852, 7.1842, 7.183, 7.1821, 7.1812, 7.1804, 7.1834, 7.1825, 7.1846, 7.1838, 7.183, 7.1819, 7.1807, 7.1829, 7.1822, 7.1812, 7.1803, 7.1791, 7.1783, 7.1806, 7.1795, 7.1789, 7.1781, 7.1778, 7.177, 7.1759, 7.1752, 7.1741, 7.173, 7.1721, 7.1709, 7.1698, 7.1719, 7.1708, 7.1735, 7.1727, 7.1718, 7.1756, 7.1717, 7.1708, 7.1709, 7.1707, 7.1701, 7.1691, 7.1714, 7.1702, 7.1695, 7.1693, 7.1732, 7.1753, 7.1799, 7.1788, 7.1776, 7.1765, 7.1754, 7.1743, 7.1765, 7.176, 7.1781, 7.1772, 7.1765, 7.1756, 7.1745, 7.1767, 7.1758, 7.1747, 7.171, 7.1705, 7.1727, 7.1719, 7.1709, 7.1698, 7.1687, 7.1708, 7.1669, 7.1664, 7.1656, 7.1647, 7.1667, 7.166, 7.1652, 7.1643, 7.1632, 7.1655, 7.1645, 7.1634, 7.1626, 7.1615, 7.1605, 7.1597, 7.1618, 7.1608, 7.1597, 7.1621, 7.161, 7.16, 7.1621, 7.161, 7.1602, 7.1623, 7.1612, 7.1634, 7.1674, 7.1664, 7.1688, 7.1711, 7.1703, 7.179, 7.1817, 7.1811, 7.18, 7.1796, 7.1786, 7.1808, 7.18, 7.1794, 7.1785, 7.1778, 7.1825, 7.1818, 7.1808, 7.1801, 7.183, 7.182, 7.1814, 7.1804, 7.1795, 7.1786, 7.1805, 7.1766, 7.176, 7.176, 7.1754, 7.1751, 7.174, 7.1762, 7.1762, 7.1782, 7.1801, 7.182, 7.1841, 7.1832, 7.1822, 7.1785, 7.1775, 7.1799, 7.1791, 7.1811, 7.1804, 7.1828, 7.182, 7.1809, 7.1801, 7.1794, 7.1786, 7.1775, 7.1765, 7.1789, 7.1818, 7.1811, 7.18, 7.1798, 7.183, 7.1853, 7.1844, 7.1808, 7.1802, 7.1796, 7.1791, 7.1782, 7.1774, 7.1795, 7.1784, 7.1805, 7.1799, 7.1791, 7.1784, 7.1872, 7.1864, 7.1882, 7.1894, 7.1884, 7.1873, 7.1864, 7.1856, 7.1877, 7.1869, 7.1864, 7.1853, 7.1844, 7.1834, 7.1825, 7.1814, 7.181, 7.1802, 7.1792, 7.1788, 7.1777, 7.1776, 7.1766, 7.1756, 7.1749, 7.1739, 7.1748, 7.1746, 7.1736, 7.1726, 7.1717, 7.1709, 7.1729, 7.1722, 7.1713, 7.1723, 7.1714, 7.1677, 7.1668, 7.1661, 7.1682, 7.1672, 7.1663, 7.1653, 7.1643, 7.1664, 7.1654, 7.1649, 7.1642, 7.1634, 7.1654, 7.1644, 7.1638, 7.1664, 7.1636, 7.1629, 7.1739, 7.1875, 7.1866, 7.1859, 7.1851, 7.1841, 7.1861, 7.1853, 7.1845, 7.1864, 7.1871, 7.1861, 7.1881, 7.1871, 7.1863, 7.1857, 7.1847, 7.1838, 7.1829, 7.1819, 7.181, 7.18, 7.1791, 7.1785, 7.1777, 7.1787, 7.178, 7.1799, 7.182, 7.1969, 7.2008, 7.2004, 7.1997, 7.1987, 7.1987, 7.198, 7.1973, 7.1985, 7.1976, 7.1967, 7.1957, 7.1951, 7.1941, 7.1936, 7.1956, 7.1947, 7.1938, 7.193, 7.195, 7.2, 7.1995, 7.1989, 7.198, 7.1947, 7.197, 7.1961, 7.1951, 7.1969, 7.1964, 7.1983, 7.1977, 7.1968, 7.1989, 7.201, 7.203, 7.2081, 7.2075, 7.2065, 7.2057, 7.2078, 7.2068, 7.2062, 7.2052, 7.207, 7.209, 7.2081, 7.2074, 7.2094, 7.2066, 7.2058, 7.2068, 7.2059, 7.2052, 7.205, 7.207, 7.2062, 7.2053, 7.2044, 7.2034, 7.2054, 7.2044, 7.2035, 7.2055, 7.2075, 7.2095, 7.2086, 7.2105, 7.2107, 7.2097, 7.2107, 7.2099, 7.2144, 7.2136, 7.2131, 7.2127, 7.2123, 7.2129, 7.2122, 7.2115, 7.2107, 7.2099, 7.2092, 7.2086, 7.2076, 7.2072, 7.2062, 7.2053, 7.206300000000001, 7.206, 7.2055, 7.2047, 7.2042, 7.2033, 7.203, 7.2022, 7.2016, 7.2009, 7.2028, 7.2047, 7.2038, 7.2029, 7.202, 7.2013, 7.2117, 7.2107, 7.2097, 7.2088, 7.2112, 7.2105, 7.2123, 7.2114, 7.2109, 7.2103, 7.2094, 7.2084, 7.209, 7.2085, 7.2052, 7.2043, 7.2036, 7.2031, 7.2023, 7.2016, 7.2007, 7.1998, 7.202, 7.2039, 7.2037, 7.2028, 7.2047, 7.2043, 7.2063, 7.2057, 7.2051, 7.2022, 7.2014, 7.2033, 7.2024, 7.2018, 7.2034, 7.2054, 7.2021, 7.2038, 7.2061, 7.2028, 7.2074, 7.2092, 7.2103, 7.2102, 7.2093, 7.2088, 7.2079, 7.2071, 7.2064, 7.2094, 7.2097, 7.2093, 7.2084, 7.2077, 7.207, 7.2061, 7.2078, 7.2075, 7.2118, 7.2113, 7.2108, 7.2099, 7.2089, 7.2106, 7.2097, 7.209, 7.2084, 7.2102, 7.2096, 7.2087, 7.2104, 7.2094, 7.2089, 7.2081, 7.2081, 7.2073, 7.2091, 7.2085, 7.208, 7.2076, 7.2093, 7.2109, 7.2104, 7.2097, 7.2089, 7.2081, 7.2124, 7.2116, 7.2164, 7.2156, 7.215, 7.2144, 7.2173, 7.2167, 7.2164, 7.2188, 7.2181, 7.2202, 7.2195, 7.2187, 7.2207, 7.2223, 7.2218, 7.2209, 7.2204, 7.2195, 7.2187, 7.2178, 7.217, 7.2162, 7.2159, 7.2176, 7.2169, 7.2141, 7.2135, 7.2153, 7.2145, 7.2168, 7.2186, 7.2177, 7.2194, 7.2185, 7.2203, 7.2219, 7.2237, 7.2232, 7.2224, 7.2243, 7.2234, 7.2229, 7.2247, 7.2241, 7.2258, 7.225, 7.2242, 7.2236, 7.2229, 7.2197, 7.219, 7.2182, 7.2176, 7.2168, 7.2164, 7.2157, 7.2193, 7.2186, 7.2178, 7.2195, 7.2186, 7.2178, 7.2247, 7.2264, 7.2281, 7.2274, 7.2292, 7.2263, 7.2255, 7.2248, 7.2242, 7.2259, 7.2324, 7.2318, 7.2311, 7.2307, 7.2301, 7.2293, 7.2285, 7.2277, 7.227, 7.2264, 7.2256, 7.2312, 7.2306, 7.2301, 7.2356, 7.235, 7.2367, 7.2389, 7.2407, 7.2402, 7.2399, 7.239, 7.2412, 7.2414, 7.241, 7.2436, 7.2429, 7.2421, 7.2412, 7.2403, 7.2398, 7.239, 7.2382, 7.2373, 7.2391, 7.2387, 7.238, 7.2371, 7.2364, 7.2356, 7.2373, 7.2373, 7.2367, 7.2359, 7.2354, 7.2345, 7.2339, 7.2331, 7.2326, 7.2317, 7.2312, 7.2304, 7.2296, 7.2314, 7.2307, 7.2298, 7.2291, 7.231, 7.2301, 7.2295, 7.2286, 7.2278, 7.2293, 7.2284, 7.2276, 7.2292, 7.2302, 7.232, 7.2313, 7.2307, 7.2302, 7.2319, 7.2311, 7.2328, 7.2345, 7.2338, 7.2333, 7.2325, 7.2327, 7.2322, 7.2313, 7.231, 7.2302, 7.2294, 7.2287, 7.228, 7.2274, 7.2268, 7.2259, 7.225, 7.2243, 7.2235, 7.2227, 7.222, 7.2212, 7.2189, 7.2183, 7.2175, 7.2191, 7.2184, 7.2201, 7.2197, 7.2192, 7.2208, 7.2202, 7.2244, 7.2264, 7.228, 7.2299, 7.2317, 7.2309, 7.2302, 7.2297, 7.2295, 7.2362, 7.238, 7.2418, 7.2483, 7.2475, 7.2466, 7.246, 7.2452, 7.2445, 7.2436, 7.2428, 7.2423, 7.2415, 7.2407, 7.2401, 7.2393, 7.2385, 7.2378, 7.2369, 7.2362, 7.2356, 7.2358, 7.2356, 7.2371, 7.2368, 7.2363, 7.238, 7.2374, 7.2365, 7.2361, 7.2381, 7.2397, 7.2413, 7.2429, 7.2401, 7.2392, 7.2386, 7.2378, 7.2396, 7.241, 7.2402, 7.2395, 7.2387, 7.2379, 7.2394, 7.2385, 7.238, 7.2374, 7.2366, 7.2359, 7.2351, 7.2368, 7.2384, 7.2385, 7.24, 7.2416, 7.241, 7.2402, 7.2394, 7.2388, 7.2385, 7.2401, 7.2395, 7.2413, 7.2391, 7.2396, 7.2388, 7.2418, 7.241, 7.2402, 7.2396, 7.2424, 7.2416, 7.2408, 7.24, 7.2394, 7.2397, 7.2391, 7.2386, 7.2401, 7.2415, 7.2408, 7.2401, 7.2396, 7.2388, 7.236, 7.2355, 7.238, 7.2373, 7.2416, 7.2433, 7.2426, 7.2421, 7.2437, 7.2435, 7.2427, 7.2419, 7.2414, 7.243, 7.2425, 7.2442, 7.2434, 7.245, 7.2465, 7.2438, 7.2435, 7.245, 7.2442, 7.2434, 7.2426, 7.2442, 7.2481, 7.2473, 7.2489, 7.2481, 7.2495, 7.2491, 7.2483, 7.2476, 7.2468, 7.2462, 7.2493, 7.2521, 7.2515, 7.2577, 7.257, 7.2565, 7.2559, 7.2552, 7.2544, 7.2544, 7.2537, 7.2529, 7.2529, 7.2521, 7.2516, 7.2531, 7.2546, 7.254, 7.2554, 7.2548, 7.254, 7.2532, 7.2525, 7.2546, 7.2563, 7.2558, 7.255, 7.2564, 7.2556, 7.2548, 7.2544, 7.2536, 7.2574, 7.2566, 7.2558, 7.2573, 7.2567, 7.2559, 7.2532, 7.2525, 7.2518, 7.2519, 7.2512, 7.2508, 7.25, 7.2493, 7.2486, 7.2478, 7.2473, 7.249, 7.2482, 7.2476, 7.2471, 7.2466, 7.246, 7.2459, 7.2454, 7.2446, 7.2461, 7.2476, 7.2468, 7.2461, 7.2456, 7.2493, 7.2554, 7.2547, 7.2542, 7.2536, 7.2529, 7.2525, 7.2542, 7.2537, 7.2534, 7.2578, 7.2571, 7.2584, 7.2582, 7.2574, 7.2568, 7.2563, 7.2584, 7.2576, 7.2569, 7.2562, 7.2653, 7.2649, 7.2644, 7.2638, 7.2634, 7.2626, 7.2618, 7.2612, 7.2627, 7.2642, 7.2634, 7.2626, 7.2641, 7.2633, 7.2626, 7.2644, 7.266, 7.2654, 7.265, 7.2644, 7.2636, 7.263, 7.2624, 7.2619, 7.2612, 7.2607, 7.2626, 7.2618, 7.2633, 7.2648, 7.2643, 7.2658, 7.2651, 7.2663, 7.2671, 7.2664, 7.2657, 7.265, 7.2667, 7.2662, 7.2655, 7.2651, 7.2646, 7.2659, 7.2651, 7.2643, 7.2656, 7.2649, 7.2642, 7.2636, 7.2651, 7.2624, 7.2617, 7.2611, 7.2603, 7.2597, 7.259, 7.2583, 7.2575, 7.2568, 7.2572, 7.2565, 7.2558, 7.2558, 7.2572, 7.2586, 7.2579, 7.2574, 7.2566, 7.2559, 7.2556, 7.2638, 7.263, 7.2624, 7.2636, 7.263, 7.2628, 7.262, 7.2594, 7.2572, 7.2565, 7.254, 7.2534, 7.2547, 7.2541, 7.2539, 7.2567, 7.2592, 7.2625, 7.2642, 7.2637, 7.2632, 7.2627, 7.2622, 7.2636, 7.2633, 7.2631, 7.2625, 7.2639, 7.2665, 7.2681, 7.2674, 7.2667, 7.2671, 7.2707, 7.2746, 7.2759, 7.2766, 7.276, 7.2753, 7.2767, 7.2761, 7.2754, 7.2769, 7.2786, 7.2779, 7.2773, 7.2766, 7.278, 7.2773, 7.2767, 7.276, 7.2773, 7.2787, 7.2803, 7.2817, 7.2862, 7.2856, 7.2906, 7.2898, 7.2891, 7.2883, 7.2896, 7.2891, 7.2888, 7.288, 7.2876, 7.2871, 7.2885, 7.2879, 7.2871, 7.2866, 7.286, 7.2852, 7.2845, 7.2859, 7.2861, 7.2875, 7.2888, 7.2882, 7.2874, 7.2848, 7.2862, 7.2956, 7.2951, 7.2945, 7.2959, 7.2951, 7.2943, 7.2955, 7.2955, 7.2968, 7.2981, 7.2974, 7.2987, 7.3009, 7.3005, 7.3001, 7.2994, 7.2989, 7.2981, 7.2976, 7.2969, 7.2983, 7.2997, 7.299, 7.2982, 7.2975, 7.297, 7.2945, 7.2995, 7.303, 7.3024, 7.3024, 7.3017, 7.301, 7.3003, 7.3018, 7.2993, 7.2986, 7.3001, 7.2995, 7.3008, 7.3032, 7.3025, 7.3019, 7.3011, 7.3004, 7.3016, 7.3009, 7.3023, 7.3037, 7.3031, 7.3024, 7.3073, 7.3068, 7.306, 7.3073, 7.3087, 7.31, 7.3114, 7.3108, 7.3121, 7.3135, 7.3138, 7.3133, 7.3126, 7.3122, 7.3131, 7.3125, 7.3119, 7.3114, 7.3107, 7.3101, 7.3094, 7.311, 7.3091, 7.3087, 7.3079, 7.3078, 7.3073, 7.3068, 7.3064, 7.3058, 7.3053, 7.3046, 7.3042, 7.3035, 7.3028, 7.3022, 7.3015, 7.301, 7.3006, 7.3002, 7.2995, 7.2988, 7.2981, 7.2976, 7.2969, 7.2964, 7.2957, 7.297, 7.2965, 7.2962, 7.2955, 7.2988, 7.3093, 7.3088, 7.3101, 7.3094, 7.3087, 7.31, 7.3113, 7.311, 7.3103, 7.3115, 7.3128, 7.3141, 7.3134, 7.3127, 7.3124, 7.3119, 7.312, 7.3114, 7.3107, 7.3101, 7.3103, 7.31, 7.3173, 7.3168, 7.3163, 7.3156, 7.3152, 7.3146, 7.3158, 7.3154, 7.3148, 7.3144, 7.3138, 7.3131, 7.3128, 7.3122, 7.3117, 7.3155, 7.3152, 7.3147, 7.3139, 7.3152, 7.3165, 7.316, 7.3154, 7.3167, 7.316, 7.3153, 7.3166, 7.318, 7.3175, 7.3188, 7.3184, 7.3197, 7.3191, 7.3167, 7.3163, 7.3177, 7.319, 7.3188, 7.32, 7.3193, 7.3189, 7.3188, 7.3181, 7.3174, 7.3168, 7.3201, 7.3214, 7.3226, 7.322, 7.3213, 7.3225, 7.3219, 7.3196, 7.319, 7.3189, 7.3183, 7.3181, 7.3195, 7.3189, 7.3204, 7.3199, 7.3191, 7.3186, 7.3199, 7.3223, 7.3217, 7.3211, 7.3204, 7.3197, 7.319, 7.3183, 7.3178, 7.3172, 7.3185, 7.3178, 7.3178, 7.321, 7.3208, 7.3201, 7.3194, 7.3206, 7.3218, 7.323, 7.3226, 7.3289, 7.3301, 7.3314, 7.3307, 7.33, 7.3296, 7.3307, 7.3303, 7.3316, 7.3316, 7.3311, 7.3308, 7.3306, 7.33, 7.3293, 7.329, 7.3284, 7.3298, 7.3292, 7.3285, 7.3281, 7.3285, 7.3279, 7.3293, 7.3289, 7.3285, 7.3278, 7.3273, 7.3267, 7.33, 7.3294, 7.3288, 7.3319, 7.3333, 7.3347, 7.3341, 7.3354, 7.3367, 7.336, 7.3373, 7.3366, 7.336, 7.3356, 7.3351, 7.3366, 7.3377, 7.3371, 7.3367, 7.336, 7.3353, 7.3424, 7.3418, 7.3411, 7.3405, 7.3399, 7.3393, 7.3387, 7.3381, 7.3378, 7.3371, 7.3382, 7.3377, 7.339, 7.3367, 7.3344, 7.3337, 7.3349, 7.3366, 7.336, 7.3353, 7.333, 7.3324, 7.3336, 7.3347, 7.3341, 7.3336, 7.3332, 7.3325, 7.3336, 7.3331, 7.3327, 7.3322, 7.3318, 7.333, 7.3324, 7.3337, 7.3331, 7.3325, 7.332, 7.3314, 7.331, 7.3321, 7.3315, 7.3311, 7.3322, 7.3315, 7.3328, 7.3324, 7.3335, 7.3328, 7.3321, 7.3333, 7.3352, 7.3345, 7.3339, 7.3333, 7.3329, 7.3324, 7.3319, 7.3313, 7.3317, 7.331, 7.3304, 7.3317, 7.3311, 7.3324, 7.3319, 7.3313, 7.3307, 7.3302, 7.3295, 7.329, 7.3301, 7.3294, 7.3287, 7.3281, 7.3276, 7.3272, 7.3284, 7.3278, 7.3272, 7.3267, 7.3262, 7.3273, 7.3285, 7.3298, 7.3291, 7.3284, 7.328, 7.3279, 7.3291, 7.3286, 7.3279, 7.3272, 7.3267, 7.3262, 7.3256, 7.3251, 7.3246, 7.324, 7.3261, 7.3291, 7.3286, 7.3282, 7.3275, 7.3286, 7.328, 7.3275, 7.3272, 7.3265, 7.326, 7.3253, 7.3251, 7.3246, 7.3257, 7.3251, 7.3245, 7.3238, 7.3268, 7.3251, 7.3247, 7.3242, 7.3237, 7.3248, 7.3241, 7.3236, 7.3249, 7.3245, 7.3257, 7.3251, 7.3262, 7.3274, 7.3284, 7.3278, 7.3271, 7.3265, 7.3264, 7.326, 7.3255, 7.3258, 7.3252, 7.3246, 7.3241, 7.3234, 7.3228, 7.3223, 7.3216, 7.3228, 7.3222, 7.32, 7.3194, 7.3206, 7.322, 7.3231, 7.3226, 7.322, 7.3214, 7.3208, 7.3221, 7.3214, 7.3214, 7.3226, 7.3223, 7.3217, 7.3211, 7.3204, 7.3198, 7.3195, 7.3207, 7.3217, 7.3212, 7.3209, 7.3206, 7.3205, 7.3203, 7.3181, 7.3176, 7.3172, 7.3166, 7.3161, 7.3155, 7.3149, 7.3143, 7.3156, 7.3149, 7.3147, 7.3141, 7.316, 7.3172, 7.3167, 7.3162, 7.3157, 7.3151, 7.3148, 7.3141, 7.3134, 7.3148, 7.3141, 7.3155, 7.3151, 7.3145, 7.3156, 7.3149, 7.3144, 7.3139, 7.3134, 7.3129, 7.3125, 7.3124, 7.3118, 7.3113, 7.3108, 7.3101, 7.3112, 7.3105, 7.31, 7.3094, 7.3088, 7.3083, 7.3094, 7.3088, 7.3083, 7.3077, 7.3072, 7.3101, 7.3095, 7.3093, 7.3086, 7.308, 7.3074, 7.3122, 7.3132, 7.3125, 7.3103, 7.3114, 7.3109, 7.3106, 7.312, 7.3113, 7.3116, 7.311, 7.3104, 7.3101, 7.3096, 7.3092, 7.3087, 7.308, 7.3077, 7.3071, 7.3081, 7.3082, 7.3077, 7.3071, 7.3065, 7.3097, 7.3093, 7.3088, 7.3084, 7.3077, 7.3088, 7.3082, 7.3111, 7.3092, 7.3086, 7.3081, 7.3075, 7.307, 7.3065, 7.3059, 7.3054, 7.305, 7.3045, 7.3043, 7.3038, 7.3031, 7.3025, 7.3021, 7.3018, 7.3014, 7.3008, 7.3004, 7.3, 7.3011, 7.3005, 7.3, 7.2994, 7.3006, 7.3017, 7.3011, 7.3008, 7.3006, 7.3001, 7.2995, 7.2989, 7.2984, 7.2981, 7.2982, 7.2976, 7.297, 7.2964, 7.2958, 7.2955, 7.2949, 7.2945, 7.2956, 7.2968, 7.2962, 7.2959, 7.2955, 7.2966, 7.299, 7.2993, 7.2987, 7.2981, 7.2975, 7.297, 7.2964, 7.2958, 7.2968, 7.2996, 7.299, 7.2987, 7.2981, 7.2993, 7.2988, 7.2998, 7.3014, 7.301, 7.3005, 7.2999, 7.2997, 7.3008, 7.3019, 7.3017, 7.3011, 7.3005, 7.2999, 7.2993, 7.299, 7.3001, 7.2995, 7.2989, 7.2983, 7.2977, 7.2987, 7.2998, 7.2994, 7.2988, 7.2996, 7.299, 7.2985, 7.298, 7.2975, 7.297, 7.2965, 7.2964, 7.2959, 7.2954, 7.2948, 7.2945, 7.294, 7.2935, 7.2929, 7.2924, 7.292, 7.2914, 7.2911, 7.2925, 7.2919, 7.2914, 7.2908, 7.2903, 7.2916, 7.2913, 7.2925, 7.2919, 7.2916, 7.2917, 7.2913, 7.2909, 7.2903, 7.2899, 7.2893, 7.2887, 7.2881, 7.2891, 7.2886, 7.2892, 7.2886, 7.2882, 7.2877, 7.2856, 7.285, 7.2846, 7.2841, 7.2837, 7.2833, 7.2827, 7.2876, 7.2874, 7.2869, 7.2879, 7.2876, 7.2874, 7.2872, 7.2867, 7.2883, 7.2884, 7.2864, 7.2878, 7.2872, 7.2866, 7.286, 7.2856, 7.2851, 7.2862, 7.2856, 7.2851, 7.2863, 7.287, 7.2865, 7.2875, 7.2869, 7.2879, 7.2873, 7.2867, 7.2861, 7.2858, 7.2853, 7.2848, 7.2842, 7.2836, 7.283, 7.2841, 7.2835, 7.283, 7.2841, 7.2852, 7.2846, 7.2841, 7.2837, 7.2834, 7.2828, 7.2822, 7.2832, 7.2826, 7.2821, 7.2861, 7.2856, 7.2868, 7.288, 7.2874, 7.2868, 7.2864, 7.2875, 7.2871, 7.2865, 7.2859, 7.2855, 7.2856, 7.2854, 7.2854, 7.285, 7.2844, 7.2838, 7.2833, 7.2828, 7.2825, 7.2949, 7.2943, 7.2938, 7.2933, 7.2944, 7.2954, 7.2965, 7.2961, 7.2956, 7.2952, 7.295, 7.2973, 7.2969, 7.2971, 7.2982, 7.2977, 7.2988, 7.2985, 7.2981, 7.2976, 7.297, 7.2965, 7.2975, 7.2985, 7.2979, 7.2973, 7.2968, 7.2963, 7.2957, 7.2952, 7.2948, 7.2992, 7.2987, 7.2983, 7.298, 7.2974, 7.297, 7.2966, 7.2962, 7.2957, 7.2951, 7.2947, 7.2945, 7.2939, 7.2952, 7.2946, 7.2942, 7.2937, 7.2933, 7.2945, 7.2956, 7.2952, 7.2946, 7.294, 7.2936, 7.2933, 7.2944, 7.2938, 7.2932, 7.2926, 7.292, 7.2916, 7.2911, 7.2906, 7.2901, 7.2896, 7.2906, 7.2902, 7.2897, 7.2908, 7.2903, 7.2897, 7.2892, 7.2903, 7.2898, 7.2892, 7.2887, 7.2883, 7.288, 7.2876, 7.2871, 7.2867, 7.2861, 7.286, 7.2857, 7.2851, 7.2845, 7.2846, 7.2862, 7.2857, 7.2867, 7.2862, 7.2857, 7.2854, 7.285, 7.2844, 7.284, 7.2836, 7.2833, 7.2845, 7.2839, 7.2849, 7.2846, 7.2841, 7.285, 7.283, 7.2825, 7.2806, 7.28, 7.2794, 7.2791, 7.2786, 7.2781, 7.2791, 7.2786, 7.2781, 7.2792, 7.2788, 7.2784, 7.2779, 7.2774, 7.2769, 7.2764, 7.2758, 7.2752, 7.2747, 7.2742, 7.2753, 7.2748, 7.2743, 7.274, 7.2735, 7.273, 7.274, 7.2735, 7.273, 7.2726, 7.2737, 7.2735, 7.2749, 7.2799, 7.2825, 7.2819, 7.2815, 7.2826, 7.2835, 7.2831, 7.2827, 7.2821, 7.2815, 7.281, 7.2843, 7.2839, 7.2835, 7.2846, 7.2841, 7.2855, 7.2865, 7.2896, 7.2892, 7.2901, 7.2912, 7.2906, 7.2903, 7.2903, 7.29, 7.2895, 7.2892, 7.2902, 7.2897, 7.2896, 7.2891, 7.2909, 7.2905, 7.2901, 7.2899, 7.2894, 7.2889, 7.289, 7.29, 7.291, 7.2923, 7.2919, 7.2938, 7.2949, 7.2962, 7.2958, 7.2953, 7.2964, 7.2961, 7.2958, 7.2957, 7.2953, 7.2948, 7.2943, 7.294, 7.295, 7.2945, 7.294, 7.2935, 7.293, 7.2925, 7.292, 7.2933, 7.2929, 7.2924, 7.292, 7.2916, 7.2911, 7.2912, 7.2909, 7.2904, 7.2899, 7.2894, 7.2889, 7.2884, 7.2879, 7.2873, 7.2867, 7.2861, 7.287, 7.2866, 7.2863, 7.2857, 7.2852, 7.2848, 7.2843, 7.2838, 7.2833, 7.2814, 7.2812, 7.2809, 7.2804, 7.2814, 7.281, 7.2805, 7.2799, 7.2794, 7.2788, 7.2783, 7.2778, 7.2773, 7.2768, 7.2821, 7.2857, 7.2867, 7.2898, 7.2931, 7.2942, 7.2937, 7.2932, 7.2928, 7.2923, 7.2919, 7.2914, 7.291, 7.2905, 7.29, 7.2895, 7.289, 7.2899, 7.2895, 7.2905, 7.2901, 7.2895, 7.2905, 7.2899, 7.2884, 7.2895, 7.2891, 7.2886, 7.2917, 7.2958, 7.2968, 7.2966, 7.2962, 7.2957, 7.2953, 7.2951, 7.2946, 7.2941, 7.2938, 7.2934, 7.2918, 7.2914, 7.2896, 7.2905, 7.29, 7.2899, 7.2927, 7.298, 7.2975, 7.2956, 7.2966, 7.2961, 7.2956, 7.2951, 7.2961, 7.2956, 7.2953, 7.2948, 7.2943, 7.2938, 7.2933, 7.2929, 7.2912, 7.2908, 7.2904, 7.2899, 7.2909, 7.2905, 7.2915, 7.291, 7.2921, 7.2931, 7.2927, 7.2921, 7.2932, 7.2927, 7.2923, 7.2933, 7.2928, 7.2923, 7.2917, 7.2912, 7.2907, 7.2901, 7.2895, 7.2893, 7.289, 7.2871, 7.288, 7.2875, 7.2871, 7.2872, 7.2885, 7.288, 7.2889, 7.2871, 7.287, 7.2865, 7.286, 7.2857, 7.2852, 7.2849, 7.2844, 7.2845, 7.2827, 7.2822, 7.2819, 7.2814, 7.2809, 7.2806, 7.2803, 7.2799, 7.2796, 7.2794, 7.2789, 7.2799, 7.2796, 7.2792, 7.2787, 7.2797, 7.2793, 7.2789, 7.2784, 7.278, 7.279, 7.2784, 7.2781, 7.2776, 7.2772, 7.2767, 7.279, 7.2791, 7.2789, 7.2784, 7.2793, 7.2789, 7.2785, 7.2797, 7.2806, 7.2803, 7.2824, 7.2834, 7.2829, 7.2839, 7.2834, 7.2829, 7.2824, 7.282, 7.2829, 7.2811, 7.2821, 7.2843, 7.2852, 7.2862, 7.2875, 7.2885, 7.2867, 7.2863, 7.2875, 7.287, 7.2866, 7.2876, 7.2872, 7.2882, 7.2878, 7.2888, 7.2898, 7.2893, 7.2906, 7.2917, 7.2913, 7.2923, 7.2919, 7.2915, 7.2912, 7.292, 7.2929, 7.2925, 7.2921, 7.2917, 7.2912, 7.291, 7.2919, 7.2915, 7.2911, 7.2906, 7.2902, 7.2897, 7.2892, 7.2888, 7.2885, 7.2881, 7.2891, 7.2886, 7.2869, 7.2879, 7.2874, 7.287, 7.2864, 7.2861, 7.2858, 7.2868, 7.2863, 7.2858, 7.2853, 7.2862, 7.2858, 7.2853, 7.2851, 7.29, 7.2897, 7.2893, 7.289, 7.2901, 7.2897, 7.288, 7.2876, 7.2885, 7.2882, 7.2893, 7.2889, 7.2884, 7.2892, 7.2887, 7.2883, 7.288, 7.2875, 7.2872, 7.2867, 7.2863, 7.2861, 7.2897, 7.2914, 7.2923, 7.292, 7.2916, 7.2926, 7.2921, 7.2918, 7.2915, 7.291, 7.2906, 7.2906, 7.2903, 7.2898, 7.2881, 7.2894, 7.2904, 7.2916, 7.2916, 7.2911, 7.2907, 7.2902, 7.2898, 7.2914, 7.291, 7.292, 7.2916, 7.2911, 7.2908, 7.2905, 7.2902, 7.2898, 7.2893, 7.2893, 7.29, 7.2895, 7.289, 7.2885, 7.2884, 7.2879, 7.2875, 7.2872, 7.2868, 7.2877, 7.2874, 7.2869, 7.2878, 7.2887, 7.2918, 7.2913, 7.2908, 7.2903, 7.2887, 7.2882, 7.288, 7.2875, 7.2873, 7.287, 7.2865, 7.2874, 7.2869, 7.2878, 7.2887, 7.2888, 7.2883, 7.2892, 7.29, 7.2897, 7.2908, 7.2906, 7.2915, 7.2924, 7.2922, 7.2918, 7.2913, 7.2922, 7.2931, 7.2927, 7.2936, 7.2931, 7.2943, 7.2942, 7.2937, 7.2946, 7.2941, 7.294, 7.2949, 7.2945, 7.294, 7.2936, 7.2936, 7.2931, 7.2926, 7.2936, 7.2936, 7.2932, 7.2929, 7.2916, 7.2914, 7.291, 7.2907, 7.2915, 7.291, 7.2905, 7.29, 7.2895, 7.2904, 7.2899, 7.2907, 7.2916, 7.2912, 7.2907, 7.2902, 7.2899, 7.2896, 7.2891, 7.2886, 7.2884, 7.288, 7.2875, 7.2882, 7.2879, 7.2876, 7.2871, 7.291, 7.292, 7.2942, 7.295, 7.295, 7.2945, 7.294, 7.2937, 7.2933, 7.2928, 7.2965, 7.296, 7.2969, 7.2965, 7.2975, 7.2977, 7.2985, 7.2981, 7.2976, 7.2971, 7.2966, 7.2962, 7.2957, 7.2953, 7.2949, 7.2959, 7.2958, 7.2969, 7.2978, 7.2974, 7.3016, 7.3011, 7.3006, 7.3003, 7.2998, 7.2994, 7.2989, 7.2985, 7.298, 7.2975, 7.297, 7.3008, 7.3003, 7.3006, 7.3002, 7.2997, 7.3006, 7.3018, 7.3029, 7.3026, 7.3022, 7.3018, 7.3026, 7.3023, 7.3018, 7.3026, 7.3021, 7.303, 7.3039, 7.3036, 7.3045, 7.3041, 7.3036, 7.3031, 7.3027, 7.3036, 7.3032, 7.3042, 7.3037, 7.3032, 7.3041, 7.3037, 7.3032, 7.3028, 7.3024, 7.302, 7.3016, 7.3011, 7.3008, 7.3017, 7.3027, 7.3036, 7.3031, 7.303, 7.3028, 7.3023, 7.3032, 7.3043, 7.3052, 7.3049, 7.3058, 7.3055, 7.3064, 7.3073, 7.3082, 7.3127, 7.3131, 7.3126, 7.3121, 7.3116, 7.3111, 7.3122, 7.3117, 7.3114, 7.311, 7.3106, 7.3102, 7.3098, 7.3098, 7.3107, 7.3115, 7.3112, 7.3121, 7.3116, 7.3111, 7.3119, 7.3115, 7.3123, 7.3118, 7.3128, 7.3123, 7.3133, 7.313, 7.3125, 7.312, 7.3116, 7.3111, 7.3106, 7.3114, 7.311, 7.3108, 7.3117, 7.3112, 7.3109, 7.3106, 7.3101, 7.3104, 7.3099, 7.3107, 7.3102, 7.3097, 7.3118, 7.3113, 7.3108, 7.3103, 7.3098, 7.3095, 7.3093, 7.3093, 7.3089, 7.3097, 7.3092, 7.3088, 7.3096, 7.3105, 7.31, 7.3108, 7.3117, 7.3113, 7.311, 7.3105, 7.3104, 7.31, 7.3095, 7.3093, 7.3089, 7.3085, 7.3082, 7.3079, 7.3075, 7.307, 7.3066, 7.3061, 7.3056, 7.3052, 7.3047, 7.3056, 7.3052, 7.3047, 7.3043, 7.3041, 7.3037, 7.3044, 7.3039, 7.3048, 7.3044, 7.304, 7.3049, 7.3045, 7.3053, 7.3048, 7.3044, 7.304, 7.3036, 7.3032, 7.3029, 7.3038, 7.3035, 7.3032, 7.3043, 7.3052, 7.3048, 7.3033, 7.3029, 7.3026, 7.3022, 7.3023, 7.3018, 7.3014, 7.3012, 7.3007, 7.3002, 7.2998, 7.3007, 7.3016, 7.3024, 7.302, 7.303, 7.3027, 7.3023, 7.302, 7.3017, 7.3026, 7.3023, 7.3031, 7.3039, 7.3036, 7.3031, 7.3032, 7.3041, 7.3049, 7.3046, 7.3058, 7.3054, 7.3051, 7.3047, 7.3044, 7.3079, 7.3077, 7.3074, 7.307, 7.3054, 7.3059, 7.3055, 7.3065, 7.3062, 7.3071, 7.3068, 7.3071, 7.3067, 7.3062, 7.3071, 7.3067, 7.3062, 7.306, 7.3056, 7.3052, 7.3048, 7.3049, 7.3045, 7.3044, 7.3068, 7.3063, 7.3059, 7.3056, 7.3052, 7.3047, 7.3055, 7.3064, 7.306, 7.3069, 7.3064, 7.3059, 7.3055, 7.305, 7.3045, 7.3054, 7.3063, 7.3066, 7.3061, 7.3057, 7.3055, 7.305, 7.3046, 7.3043, 7.304, 7.3035, 7.3031, 7.3027, 7.3025, 7.3021, 7.3018, 7.3026, 7.307, 7.3066, 7.3104, 7.3099, 7.3095, 7.3093, 7.31, 7.3108, 7.3103, 7.3099, 7.3095, 7.3092, 7.3089, 7.3101, 7.3098, 7.3097, 7.3106, 7.3107, 7.3115, 7.3115, 7.311, 7.3108, 7.3104, 7.3112, 7.3109, 7.3108, 7.3117, 7.3125, 7.3134, 7.313, 7.3129, 7.3124, 7.3109, 7.3119, 7.3114, 7.3109, 7.3105, 7.3101, 7.3096, 7.3104, 7.3113, 7.3109, 7.3105, 7.3089, 7.3097, 7.3092, 7.3088, 7.3096, 7.3092, 7.3088, 7.3083, 7.308, 7.3077, 7.3072, 7.306, 7.3057, 7.3053, 7.3049, 7.3047, 7.305, 7.3046, 7.3059, 7.3054, 7.3042, 7.3038, 7.3049, 7.307, 7.3078, 7.3073, 7.3071, 7.3066, 7.3063, 7.3058, 7.3054, 7.3052, 7.3049, 7.3059, 7.3056, 7.3093, 7.309, 7.3091, 7.311, 7.3106, 7.3104, 7.3125, 7.3121, 7.3118, 7.3113, 7.3111, 7.3108, 7.3116, 7.3112, 7.3108, 7.3105, 7.3116, 7.3114, 7.311, 7.3107, 7.3105, 7.3103, 7.3098, 7.3095, 7.3091, 7.3087, 7.3084, 7.3081, 7.3077, 7.3085, 7.3093, 7.3088, 7.3098, 7.3095, 7.3104, 7.3113, 7.3114, 7.3116, 7.3113, 7.3109, 7.3108, 7.3105, 7.3104, 7.3111, 7.3119, 7.3128, 7.3124, 7.3132, 7.3129, 7.3133, 7.3129, 7.3137, 7.3133, 7.3129, 7.3137, 7.3145, 7.3141, 7.3149, 7.3165, 7.3173, 7.3169, 7.3167, 7.3162, 7.3159, 7.3154, 7.3162, 7.3158, 7.3154, 7.3163, 7.3151, 7.3164, 7.3172, 7.3179, 7.3177, 7.3172, 7.318, 7.3188, 7.3184, 7.3193, 7.3196, 7.3204, 7.3201, 7.3209, 7.3206, 7.3212, 7.3208, 7.3204, 7.3212, 7.3208, 7.3204, 7.3214, 7.3211, 7.3207, 7.3204, 7.3212, 7.3211, 7.3196, 7.3194, 7.3191, 7.3199, 7.3195, 7.3192, 7.3188, 7.3196, 7.3192, 7.3187, 7.3182, 7.3178, 7.3176, 7.3184, 7.318, 7.3191, 7.3211, 7.3207, 7.3203, 7.3211, 7.3198, 7.3194, 7.3202, 7.3199, 7.3198, 7.3194, 7.319, 7.3192, 7.32, 7.3196, 7.3192, 7.3188, 7.3184, 7.318, 7.3176, 7.3175, 7.3171, 7.3168, 7.3164, 7.3149, 7.315, 7.3147, 7.3143, 7.3141, 7.3137, 7.3133, 7.3129, 7.3138, 7.3135, 7.3132, 7.314, 7.3136, 7.3132, 7.3128, 7.3124, 7.3121, 7.3118, 7.3104, 7.31, 7.3109, 7.3105, 7.3101, 7.3111, 7.3107, 7.3102, 7.3099, 7.3096, 7.3097, 7.3111, 7.3121, 7.3119, 7.3118, 7.3114, 7.311, 7.3106, 7.3113, 7.3133, 7.3141, 7.3138, 7.3134, 7.3142, 7.3138, 7.3136, 7.3132, 7.3129, 7.3125, 7.3124, 7.3121, 7.3117, 7.3113, 7.3108, 7.3104, 7.3101, 7.3097, 7.3105, 7.3091, 7.3099, 7.3099, 7.3095, 7.3091, 7.3098, 7.3095, 7.3093, 7.309, 7.3088, 7.3087, 7.3083, 7.3078, 7.3085, 7.3082, 7.3079, 7.3075, 7.3074, 7.307, 7.3067, 7.3063, 7.3071, 7.3069, 7.3069, 7.3066, 7.3065, 7.305, 7.3046, 7.3044, 7.304, 7.3038, 7.3024, 7.3022, 7.3018, 7.3014, 7.301, 7.3006, 7.3004, 7.3012, 7.3009, 7.3005, 7.3004, 7.3012, 7.3009, 7.3006, 7.3005, 7.3003, 7.301, 7.3007, 7.3004, 7.3, 7.3008, 7.3006, 7.3002, 7.301, 7.3007, 7.3003, 7.3002, 7.3011, 7.3007, 7.3016, 7.3023, 7.3031, 7.3027, 7.3022, 7.303, 7.3026, 7.3022, 7.3019, 7.3016, 7.3024, 7.3032, 7.3028, 7.3036, 7.3032, 7.3028, 7.3024, 7.302, 7.3016, 7.3014, 7.301, 7.3006, 7.3004, 7.3001, 7.2999, 7.2995, 7.2991, 7.2987, 7.299, 7.2987, 7.2994, 7.3025, 7.3022, 7.3019, 7.3036, 7.3032, 7.3052, 7.3048, 7.3046, 7.3043, 7.3043, 7.3073, 7.3069, 7.3088, 7.3085, 7.3081, 7.3078, 7.3086, 7.3083, 7.3081, 7.3093, 7.3101, 7.3097, 7.3093, 7.309, 7.3087, 7.3085, 7.3083, 7.3079, 7.3076, 7.3073, 7.3069, 7.3065, 7.3062, 7.3058, 7.3055, 7.3051, 7.3059, 7.3055, 7.3051, 7.3049, 7.3057, 7.3065, 7.3061, 7.3069, 7.3078, 7.3082, 7.309, 7.3087, 7.3084, 7.307, 7.3078, 7.3076, 7.3072, 7.3069, 7.3066, 7.3062, 7.307, 7.3066, 7.3062, 7.3048, 7.3044, 7.304, 7.3036, 7.3033, 7.3031, 7.304, 7.3037, 7.3037, 7.3033, 7.3019, 7.3033, 7.3029, 7.3026, 7.3024, 7.302, 7.3038, 7.3034, 7.3041, 7.3037, 7.3046, 7.3043, 7.3039, 7.3036, 7.3032, 7.3028, 7.3024, 7.3032, 7.3028, 7.3034, 7.3031, 7.3038, 7.3037, 7.3045, 7.3041, 7.3038, 7.3035, 7.306, 7.3068, 7.3064, 7.306, 7.3056, 7.3066, 7.3062, 7.3058, 7.3054, 7.305, 7.3058, 7.3054, 7.305, 7.3047, 7.3043, 7.3039, 7.3035, 7.3043, 7.3039, 7.3046, 7.3043, 7.3039, 7.3036, 7.3033, 7.3029, 7.3025, 7.3021, 7.3028, 7.3024, 7.3023, 7.3019, 7.3015, 7.3011, 7.3008, 7.302, 7.3016, 7.3013, 7.3009, 7.3016, 7.3012, 7.3009, 7.3005, 7.3002, 7.3009, 7.3016, 7.3012, 7.3009, 7.3005, 7.3002, 7.2998, 7.2994, 7.2991, 7.2987, 7.2983, 7.2979, 7.2976, 7.2973, 7.2969, 7.2966, 7.2962, 7.2958, 7.2955, 7.2952, 7.2959, 7.2967, 7.2975, 7.2972, 7.2968, 7.2967, 7.2963, 7.2961, 7.2947, 7.2943, 7.294, 7.2947, 7.2944, 7.2943, 7.295, 7.2958, 7.2956, 7.2952, 7.2948, 7.2946, 7.2942, 7.2941, 7.2937, 7.2933, 7.2941, 7.2937, 7.2933, 7.2929, 7.2926, 7.2922, 7.2918, 7.2914, 7.2921, 7.2929, 7.2925, 7.2931, 7.2929, 7.2937, 7.2933, 7.295, 7.2968, 7.2975, 7.2982, 7.2989, 7.2988, 7.2985, 7.2983, 7.2979, 7.2976, 7.2984, 7.2981, 7.2979, 7.2976, 7.2973, 7.2969, 7.2976, 7.2975, 7.2983, 7.2991, 7.2987, 7.2994, 7.2991, 7.3, 7.3009, 7.3006, 7.3014, 7.3011, 7.3008, 7.3006, 7.3013, 7.301, 7.3007, 7.3003, 7.2999, 7.2996, 7.2997, 7.2984, 7.2991, 7.2987, 7.2994, 7.2991, 7.2987, 7.2983, 7.298, 7.2976, 7.2973, 7.2969, 7.2965, 7.2962, 7.2971, 7.2968, 7.2976, 7.2974, 7.297, 7.2977, 7.2974, 7.2971, 7.2968, 7.2964, 7.2971, 7.2967, 7.2963, 7.2959, 7.2956, 7.2952, 7.2948, 7.2966, 7.2963, 7.2959, 7.2955, 7.2952, 7.2951, 7.2949, 7.2945, 7.2942, 7.2938, 7.294, 7.2937, 7.2936, 7.2932, 7.2928, 7.2914, 7.2921, 7.2917, 7.2914, 7.291, 7.2919, 7.2926, 7.2923, 7.2919, 7.2916, 7.2913, 7.2921, 7.2928, 7.2924, 7.292, 7.2916, 7.2923, 7.2919, 7.2916, 7.2924, 7.2932, 7.2928, 7.2935, 7.2931, 7.2928, 7.2924, 7.2921, 7.2918, 7.2925, 7.2921, 7.2917, 7.2913, 7.2909, 7.2905, 7.2902, 7.2899, 7.2896, 7.2894, 7.2914, 7.2913, 7.292, 7.2918, 7.2914, 7.291, 7.2906, 7.2902, 7.2899, 7.2895, 7.2902, 7.2907, 7.2903, 7.2899, 7.2897, 7.2893, 7.29, 7.2898, 7.2894, 7.2901, 7.2899, 7.2912, 7.2928, 7.2928, 7.2925, 7.2922, 7.2931, 7.2928, 7.2925, 7.2921, 7.2917, 7.2914, 7.291, 7.2907, 7.2913, 7.2909, 7.2907, 7.2915, 7.2922, 7.2919, 7.2915, 7.2922, 7.2918, 7.2925, 7.2924, 7.2922, 7.2919, 7.2916, 7.2923, 7.2919, 7.2917, 7.2915, 7.2911, 7.2907, 7.2903, 7.29, 7.2897, 7.2904, 7.2901, 7.2899, 7.2896, 7.2886, 7.2895, 7.2924, 7.292, 7.2922, 7.2929, 7.294, 7.2947, 7.2944, 7.2944, 7.294, 7.2937, 7.2944, 7.294, 7.2937, 7.2933, 7.2929, 7.2937, 7.2934, 7.2931, 7.2927, 7.2923, 7.292, 7.2916, 7.2965, 7.2961, 7.2958, 7.2954, 7.2951, 7.2949, 7.2945, 7.2952, 7.2949, 7.2957, 7.2953, 7.2951, 7.2947, 7.2954, 7.295, 7.2948, 7.2955, 7.2951, 7.2947, 7.2943, 7.294, 7.2937, 7.2934, 7.293, 7.2927, 7.2933, 7.2931, 7.2937, 7.2944, 7.2951, 7.2947, 7.2954, 7.2951, 7.2958, 7.2954, 7.2951, 7.2949, 7.2946, 7.2965, 7.2961, 7.2957, 7.2954, 7.295, 7.2949, 7.2946, 7.2942, 7.2949, 7.2946, 7.2944, 7.2941, 7.2938, 7.2935, 7.2942, 7.2949, 7.2957, 7.2979, 7.2978, 7.2975, 7.2974, 7.2971, 7.2969, 7.2966, 7.2963, 7.296, 7.2957, 7.2944, 7.2941, 7.2937, 7.2935, 7.2942, 7.2938, 7.2944, 7.2941, 7.2947, 7.2944, 7.295, 7.2948, 7.2945, 7.2941, 7.2937, 7.2943, 7.2939, 7.2946, 7.2942, 7.2938, 7.2956, 7.2963, 7.296, 7.2956, 7.2957, 7.2964, 7.2961, 7.2959, 7.2955, 7.2953, 7.295, 7.295, 7.2947, 7.2944, 7.2941, 7.2948, 7.2954, 7.2961, 7.2959, 7.2981, 7.2988, 7.2987, 7.2984, 7.2981, 7.2988, 7.2985, 7.2991, 7.2999, 7.2996, 7.2993, 7.299, 7.306, 7.3057, 7.3063, 7.306, 7.3056, 7.3063, 7.3059, 7.3057, 7.3071, 7.3078, 7.3085, 7.3082, 7.3081, 7.309, 7.3088, 7.3086, 7.3084, 7.3083, 7.308, 7.3077, 7.3064, 7.3081, 7.3078, 7.3075, 7.3072, 7.3079, 7.3075, 7.3071, 7.3067, 7.3063, 7.307, 7.3066, 7.3063, 7.3071, 7.3067, 7.3063, 7.306, 7.3057, 7.3054, 7.305, 7.3046, 7.3042, 7.3038, 7.3045, 7.3052, 7.3059, 7.3057, 7.3054, 7.3051, 7.3059, 7.3057, 7.3054, 7.3053, 7.3051, 7.3048, 7.3045, 7.3053, 7.3052, 7.3049, 7.3056, 7.3052, 7.3049, 7.3056, 7.3053, 7.305, 7.3047, 7.3045, 7.3042, 7.3039, 7.3036, 7.3033, 7.303, 7.3037, 7.3033, 7.3038, 7.3035, 7.3031, 7.306, 7.3076, 7.3063, 7.307, 7.3074, 7.3092, 7.3088, 7.3085, 7.3082, 7.3093, 7.3102, 7.31, 7.3097, 7.3104, 7.31, 7.3111, 7.3109, 7.312, 7.3117, 7.3114, 7.3115, 7.3122, 7.3118, 7.3125, 7.3121, 7.3128, 7.3135, 7.3122, 7.3129, 7.3116, 7.3112, 7.3108, 7.3104, 7.3111, 7.3108, 7.3105, 7.3113, 7.312, 7.3117, 7.3124, 7.3131, 7.3139, 7.3136, 7.3133, 7.3139, 7.3135, 7.3162, 7.3158, 7.3155, 7.3152, 7.3169, 7.3177, 7.3164, 7.3162, 7.3169, 7.3177, 7.3199, 7.3196, 7.3203, 7.32, 7.3209, 7.3217, 7.3213, 7.3231, 7.3231, 7.3238, 7.3234, 7.3235, 7.3231, 7.3241, 7.3238, 7.3234, 7.3231, 7.3238, 7.3235, 7.3232, 7.3229, 7.3226, 7.3225, 7.3222, 7.3229, 7.3226, 7.3229, 7.3239, 7.3248, 7.3268, 7.3265, 7.3276, 7.3299, 7.3306, 7.3302, 7.3298, 7.3294, 7.3291, 7.3306, 7.3302, 7.33, 7.3297, 7.3293, 7.3291, 7.3298, 7.3295, 7.3294, 7.3302, 7.3298, 7.3315, 7.3315, 7.3321, 7.3317, 7.3314, 7.3321, 7.3319, 7.3318, 7.3306, 7.3322, 7.334, 7.3357, 7.3353, 7.3351, 7.3348, 7.3354, 7.3352, 7.3359, 7.3355, 7.3362, 7.3418, 7.3415, 7.3412, 7.3418, 7.3425, 7.3421, 7.3418, 7.3414, 7.3411, 7.3408, 7.3405, 7.3402, 7.3408, 7.3405, 7.3412, 7.3419, 7.3415, 7.3411, 7.3407, 7.3414, 7.343, 7.3437, 7.3444, 7.344, 7.3436, 7.3443, 7.3449, 7.3458, 7.3485, 7.3491, 7.3487, 7.3484, 7.3491, 7.3488, 7.3486, 7.3496, 7.3493, 7.349, 7.3487, 7.3491, 7.3489, 7.3485, 7.3481, 7.3478, 7.3474, 7.3472, 7.3469, 7.3466, 7.3462, 7.346, 7.3456, 7.3453, 7.3459, 7.3455, 7.3451, 7.3447, 7.3444, 7.345, 7.3457, 7.3453, 7.346, 7.3469, 7.3468, 7.3465, 7.3472, 7.347, 7.3467, 7.3466, 7.3473, 7.3471, 7.3471, 7.3479, 7.3476, 7.3473, 7.3472, 7.3469, 7.3477, 7.3484, 7.3481, 7.3489, 7.3485, 7.3485, 7.3492, 7.3489, 7.3485, 7.3482, 7.3479, 7.3476, 7.3474, 7.3471, 7.3478, 7.3475, 7.3474, 7.3473, 7.347, 7.3467, 7.3464]}
rtt1_10_10 = {'192.168.122.110': [5.4743, 5.3494, 6.1264, 5.6801, 5.6803, 5.3401, 5.5432, 5.4164, 6.2985, 6.6202, 5.5289, 14.8401, 5.5702, 5.594, 11.6262, 10.8125, 10.9787, 5.5699, 12.6357, 5.3196, 5.4703, 5.3272, 10.9894, 5.5265, 11.3788, 10.9804, 5.4898, 10.4806, 23.1249, 5.6422, 5.4572, 5.3451, 11.3616, 5.2958, 5.9364, 5.4667, 5.4507, 5.441, 6.0833, 10.7987, 11.8411, 5.3022, 11.9996, 10.7069, 5.4467, 11.6322, 6.592, 6.022, 10.7489, 5.2631, 5.5406, 5.5821, 5.2407, 11.6687, 5.9304, 10.9615, 5.8081, 33.3328, 6.1343, 6.3047, 21.8408, 5.4445, 6.2957, 6.2585, 5.8463, 5.3413, 6.4957, 6.7782, 21.9529, 16.515, 5.4755, 0.9091, 0.4644, 6.5014, 5.9791, 5.6658, 5.5196, 5.7685, 5.2876, 5.2054, 17.5219, 5.3947, 16.3548, 0.7474, 10.7291, 5.2938, 6.4175, 6.8312, 6.2172, 6.3863, 21.137, 5.4495, 5.4929, 5.4345, 10.6258, 5.6434, 5.3189, 5.6965, 11.7466, 6.9067, 10.9591, 5.5227, 6.5694, 22.2669, 5.7185, 5.5363, 6.5701, 5.455, 10.9699, 6.2227, 6.3012, 6.516, 5.4939, 5.4932, 5.8544, 5.6686, 6.0461, 27.2543, 5.5583, 5.3248, 5.5125, 5.5528, 6.2103, 5.6121, 5.4743, 6.1758, 5.3842, 6.3469, 5.3337, 10.8922, 5.5189, 5.6913, 5.4085, 5.6396, 11.106, 6.7394, 5.296, 10.7758, 5.656, 11.0726, 5.3959, 10.8948, 5.2907, 6.511, 5.569, 5.9936, 5.7356, 14.2839, 5.8472, 10.8278, 6.3822, 5.4469, 10.6931, 10.8459, 6.4785, 10.8137, 5.5666, 5.5635, 12.5484, 5.6248, 6.427, 6.3379, 5.4667, 5.4395, 5.2822, 5.4109, 5.5265, 5.8708, 5.8453, 6.2609, 5.7456, 11.7643, 5.3473, 5.476, 5.6963, 6.3882, 10.4949, 6.3829, 6.8102, 5.2857, 5.7788, 11.0006, 5.3694, 5.7604, 23.735, 5.3227, 5.5065, 6.1221, 5.1913, 11.152, 5.9829, 16.3114, 6.7067, 5.6107, 8.0097, 6.3746, 5.2645, 6.9292, 5.2867, 5.5764, 5.5425, 6.4383, 5.7833, 11.4999, 6.3012, 6.2726, 5.445, 5.2209, 11.9107, 11.3051, 5.9257, 6.5377, 5.2853, 5.3957, 5.4581, 10.7422, 6.3646, 6.6261, 5.7766, 5.4898, 5.6274, 10.8774, 11.0016, 5.7914, 11.2855, 5.3668, 6.546, 6.3241, 5.3051, 11.2097, 5.5707, 11.1802, 11.1029, 6.1684, 5.4333, 15.8582, 10.6881, 5.4381, 5.7445, 8.7867, 5.2938, 5.6846, 5.5652, 10.9668, 5.3103, 5.4123, 5.698, 0.8152, 10.8788, 10.9882, 6.3384, 6.8235, 7.5333, 5.6643, 6.3145, 0.6075, 5.8537, 6.4731, 5.5528, 20.8216], '192.168.122.119': [5.4898, 5.919, 6.7711, 5.2445, 5.2905, 5.3098, 5.8281, 10.7565, 5.4014, 13.5603, 5.7003, 5.8727, 11.0471, 5.5137, 10.8557, 5.8224, 6.4499, 24.4725, 11.3716, 5.4255, 10.9782, 10.4616, 6.2904, 5.4467, 10.8597, 10.9363, 5.6229, 16.7565, 5.877, 10.4945, 5.3318, 5.542, 5.6205, 16.8185, 10.9622, 5.3828, 6.4118, 5.3456, 5.4064, 5.3928, 5.4896, 5.8503, 5.6958, 5.3024, 5.475, 5.6107, 6.0146, 16.7425, 10.8192, 5.2273, 16.3898, 10.8778, 11.4644, 6.0124, 5.7871, 5.3637, 5.5304, 11.7137, 11.1263, 5.3613, 10.4384, 5.3878, 10.8862, 10.9916, 10.9594, 5.3585, 5.4331, 7.3013, 10.8259, 5.9388, 5.5115, 0.5364, 0.5891, 5.4049, 5.9817, 5.4824, 7.1023, 16.5668, 5.4951, 5.4069, 11.6518, 10.9286, 10.8345, 5.8467, 5.4271, 5.9061, 13.2456, 5.2836, 11.1167, 11.148, 10.7279, 10.9055, 5.4636, 5.9381, 22.9683, 5.6794, 10.7844, 5.8198, 17.4716, 5.4989, 10.993, 11.0393, 6.3081, 6.1691, 6.0198, 5.945, 6.3927, 5.4533, 5.4841, 5.8484, 6.0582, 5.5015, 5.625, 5.5456, 10.9801, 5.2819, 10.5765, 5.4252, 19.6426, 5.3465, 5.5754, 11.1749, 5.3058, 5.6498, 5.9011, 0.644, 11.2929, 15.9781, 11.4264, 5.2335, 5.7051, 5.5268, 5.2688, 10.7658, 10.7017, 12.5816, 5.2266, 5.3725, 10.7448, 6.0303, 11.0171, 5.9261, 5.3606, 5.2724, 5.2636, 26.511, 5.9009, 21.9893, 5.4874, 10.9386, 10.7448, 5.5079, 6.3021, 17.1671, 5.3065, 5.4631, 6.0165, 9.0578, 11.044, 5.518, 5.4498, 10.9499, 5.4224, 5.542, 5.302, 5.82, 5.7111, 11.3692, 11.0817, 5.929, 5.3217, 5.7762, 5.4481, 16.5856, 5.4946, 10.6585, 11.1673, 6.9637, 5.6748, 5.5888, 6.3992, 10.8473, 10.7732, 16.6087, 5.4793, 5.975, 5.4915, 10.9563, 5.271, 5.827, 12.2826, 6.0644, 5.7049, 11.3771, 5.6684, 5.6212, 5.2674, 11.1482, 5.7185, 5.6334, 5.4281, 10.838, 5.5118, 10.8888, 5.713, 11.1566, 5.24, 10.7176, 12.8064, 5.3928, 5.5861, 5.3971, 5.6679, 5.5494, 16.968, 6.0961, 10.9053, 5.6844, 5.4803, 5.527, 5.599, 5.6212, 5.7688, 5.7414, 5.6877, 5.8517, 5.4612, 10.6704, 5.9419, 6.2554, 5.5091, 6.0782, 5.8572, 5.7411, 11.004, 10.6072, 10.7634, 5.4922, 5.7762, 5.6558, 5.1851, 10.9708, 11.4434, 5.4357, 5.4388, 11.147, 6.2675, 0.906, 5.3129, 5.384, 10.9529, 5.3039, 5.1785, 5.7895, 10.8387, 33.2687, 5.6701, 5.6181, 10.9911, 5.2526], '192.168.122.118': [5.4932, 6.741, 13.7329, 5.3694, 10.7343, 10.6883, 5.9149, 10.8676, 5.3399, 12.2643, 11.2214, 11.4198, 5.5759, 6.5, 5.7254, 9.3093, 6.3152, 5.2717, 10.9355, 10.4573, 5.317, 18.4543, 10.8523, 11.1532, 5.6581, 10.9608, 5.3105, 5.6059, 11.3153, 5.7623, 5.6119, 5.6672, 5.295, 5.5254, 11.6978, 10.9184, 5.6467, 5.3701, 5.4529, 5.7921, 5.342, 5.8913, 11.4024, 5.3494, 6.0501, 5.8522, 10.7019, 6.4688, 5.4855, 16.0036, 10.9708, 10.9138, 1.1065, 6.3324, 5.4116, 5.5566, 5.8243, 5.4085, 10.5448, 5.7404, 5.2216, 10.8778, 10.8514, 16.7749, 5.5711, 10.5197, 5.6846, 6.6671, 10.6506, 5.5289, 6.0191, 5.8439, 0.6707, 18.2981, 6.3095, 5.7864, 6.7644, 11.2553, 9.9149, 5.2567, 5.3689, 5.2924, 10.9742, 10.9212, 11.8072, 10.5462, 5.3427, 5.9855, 5.4314, 6.1338, 33.2661, 10.9398, 5.4159, 5.945, 11.2257, 11.3034, 5.444, 15.9364, 5.8615, 6.2366, 5.4998, 6.0277, 5.4309, 10.7667, 5.5897, 11.256, 13.4068, 6.6998, 6.2673, 6.0463, 18.5568, 5.4524, 5.6093, 5.718, 5.4567, 10.6497, 5.8208, 5.4152, 11.0762, 6.402, 5.5737, 5.3294, 5.8362, 5.4877, 5.7259, 0.5834, 6.1448, 1.235, 5.5261, 5.2149, 5.5528, 6.305, 6.3164, 10.7191, 11.214, 5.4088, 10.8089, 10.8423, 11.6351, 11.338, 5.5766, 5.8722, 5.4781, 5.2941, 5.2369, 5.6975, 5.4667, 5.4674, 5.5254, 11.2319, 10.6394, 11.1907, 16.5973, 10.9992, 11.0497, 10.9663, 5.8746, 16.9024, 5.5325, 10.4542, 17.0829, 10.6478, 5.3453, 5.3427, 5.3196, 5.491, 5.2917, 5.2354, 11.0457, 5.3377, 10.7319, 5.564, 5.4886, 11.5385, 5.6047, 17.4575, 6.2525, 5.9233, 5.3422, 5.2617, 5.476, 10.9489, 10.8767, 21.8668, 5.4626, 5.419, 5.6264, 22.4032, 11.4903, 16.3026, 5.6336, 5.2965, 5.6417, 5.4524, 5.6951, 6.3744, 5.2326, 5.4822, 10.7915, 0.5202, 6.0656, 5.8703, 5.6894, 11.6401, 10.8273, 6.31, 5.4677, 5.77, 10.875, 10.8922, 16.6881, 5.8985, 5.4235, 5.4407, 10.9117, 5.5206, 5.4283, 6.2072, 5.2171, 12.5566, 10.7315, 5.7945, 5.2872, 5.6174, 5.9257, 5.9726, 5.6581, 5.4617, 5.3074, 5.4202, 5.6307, 10.7894, 5.5704, 5.6839, 16.4981, 5.2588, 5.3735, 5.2896, 11.3013, 5.3105, 11.2157, 10.9639, 7.324, 10.8273, 5.9409, 5.8274, 5.6567, 0.6344, 5.6224, 5.4834, 11.5101, 6.2382, 5.5153, 5.9047, 6.0086, 11.2641, 6.6147, 5.8818, 5.7783, 6.1812], '192.168.122.120': [6.1116, 5.3353, 11.3487, 5.7242, 11.0874, 5.2655, 16.2282, 5.7423, 5.3267, 9.0251, 17.2536, 11.6396, 5.5244, 5.2896, 5.6782, 5.8973, 6.1352, 5.5456, 11.0059, 5.2879, 5.4467, 5.5439, 5.2941, 5.3864, 5.6331, 5.5242, 21.9083, 5.374, 5.3971, 11.0123, 10.8097, 5.5568, 5.5971, 5.4128, 5.9462, 5.4154, 10.7737, 10.989, 5.6798, 5.3849, 9.45, 5.3978, 5.4963, 5.2812, 11.0216, 5.8119, 5.897, 23.1369, 10.9291, 0.6161, 5.996, 5.8377, 1.2133, 10.8404, 5.7027, 11.7779, 21.5104, 5.5432, 5.7654, 17.3147, 5.4817, 5.3341, 5.4538, 5.4812, 5.4722, 27.8423, 5.6798, 6.7728, 5.5637, 5.8413, 5.4357, 5.2822, 0.7839, 5.3542, 5.872, 11.3769, 11.0967, 6.0384, 5.6841, 10.8836, 5.2645, 5.4138, 10.9012, 5.4274, 5.3608, 5.4324, 6.2892, 5.662, 5.8053, 5.8661, 5.3248, 5.4049, 5.3363, 5.9381, 5.4018, 5.6789, 11.2402, 5.5196, 5.6753, 6.4056, 10.9348, 6.0232, 5.8949, 5.7404, 5.4679, 6.8021, 5.9726, 5.2412, 5.4071, 16.4297, 5.4803, 6.0315, 11.3254, 5.5494, 5.2872, 5.2793, 10.9229, 5.6581, 5.46, 5.9896, 6.0754, 6.202, 5.306, 6.3028, 11.0803, 6.0639, 16.9163, 10.5557, 10.8595, 10.859, 16.8014, 5.3117, 10.9107, 5.3797, 11.1239, 11.1036, 5.4419, 5.4796, 11.1086, 16.5401, 5.9202, 10.8593, 10.7396, 5.4264, 5.399, 11.2166, 5.6903, 11.492, 10.8945, 10.9515, 6.2115, 5.4445, 6.2311, 17.3712, 5.8904, 5.7096, 5.4774, 5.6701, 5.578, 11.27, 5.3258, 5.4817, 6.3667, 6.3579, 10.4315, 5.9371, 11.0972, 5.4696, 16.6979, 11.034, 11.1206, 5.8451, 5.2516, 5.4555, 10.7384, 5.8475, 5.6763, 5.8441, 5.6963, 5.2702, 10.4153, 5.2941, 5.4379, 5.363, 5.4901, 5.5587, 10.7656, 7.0906, 6.1953, 5.6214, 5.4896, 10.9825, 5.7275, 6.6645, 5.615, 22.2278, 5.2676, 10.8421, 5.3174, 5.3921, 0.4516, 22.5308, 5.6882, 5.5971, 5.4665, 5.4622, 5.4295, 6.314, 29.145, 11.4627, 5.6052, 5.4595, 10.5324, 5.4398, 5.9075, 23.3541, 5.9478, 5.5094, 5.543, 5.3835, 5.4955, 5.538, 10.6397, 10.8085, 6.299, 10.4804, 5.5323, 5.482, 10.664, 5.8954, 5.307, 11.0261, 6.0391, 6.2001, 10.8628, 5.6567, 10.7234, 5.5945, 5.6965, 5.4617, 10.848, 5.4936, 10.7398, 10.9916, 10.7853, 6.5479, 10.9878, 0.7052, 10.3955, 10.9072, 11.0652, 5.7919, 11.4145, 5.7149, 11.2021, 29.7606, 5.8854, 6.5169, 11.0128, 10.6828], '192.168.122.115': [6.4092, 5.2743, 10.5462, 11.2517, 10.5469, 10.4134, 10.7787, 6.3963, 5.4398, 7.642, 11.4563, 10.8757, 5.4893, 5.5177, 5.5668, 5.2845, 5.8093, 5.3689, 10.8707, 10.5224, 11.2782, 5.5268, 6.4454, 10.8976, 5.2173, 10.7906, 10.9456, 6.027, 5.414, 10.7725, 10.6978, 5.5809, 5.4982, 11.0278, 5.9888, 5.8873, 10.4814, 5.527, 5.9075, 5.4083, 0.8283, 5.4393, 5.383, 11.3084, 5.4314, 10.0775, 10.7772, 10.8137, 5.4505, 0.5379, 11.0035, 5.6696, 0.6967, 10.8101, 5.3711, 10.9048, 11.2934, 5.9323, 0.5519, 16.3589, 5.5869, 0.845, 15.9073, 5.6098, 10.6206, 10.8857, 5.2145, 6.6352, 6.0742, 5.6589, 16.1438, 0.4218, 6.1021, 5.2688, 6.0766, 6.0387, 6.0267, 12.8775, 5.2907, 22.0454, 11.57, 16.4146, 5.4913, 5.3639, 5.3577, 10.8924, 10.6194, 5.5974, 5.2309, 5.7628, 10.7965, 11.3766, 5.46, 5.9638, 5.404, 11.2782, 10.8795, 11.2734, 0.4916, 5.3756, 5.4097, 5.4514, 5.8763, 5.9769, 6.1285, 5.2953, 5.2507, 5.3458, 5.9936, 10.9627, 5.3921, 5.4505, 22.1748, 10.9146, 16.4201, 5.3327, 5.2617, 11.2472, 5.3711, 5.3549, 12.7895, 5.9507, 5.2822, 10.9668, 10.9756, 19.1066, 5.9116, 6.2358, 6.0821, 5.1992, 5.4114, 5.7127, 5.5518, 5.3551, 11.2429, 5.439, 5.5153, 6.639, 5.332, 22.4376, 10.9677, 5.2578, 5.2166, 10.8654, 10.5264, 10.5777, 10.9954, 11.2135, 10.9448, 10.9818, 5.4164, 6.1154, 6.057, 5.9032, 6.7356, 5.4333, 6.4015, 10.6466, 6.0294, 5.4765, 10.8759, 10.9653, 11.0776, 5.486, 5.3647, 16.5496, 5.5263, 5.7211, 6.0699, 5.3418, 5.4054, 0.6342, 5.4326, 5.3573, 10.9713, 17.205, 16.2618, 7.9532, 5.2166, 5.2159, 11.0917, 10.8378, 5.4493, 10.8902, 5.1906, 5.482, 5.5535, 5.6505, 5.2464, 5.6517, 11.2219, 5.9144, 6.4373, 6.413, 5.6467, 5.5647, 5.3053, 15.9931, 5.4026, 5.893, 6.175, 5.6071, 5.6586, 5.7728, 10.988, 5.8949, 10.8426, 10.9715, 11.4114, 5.7051, 5.619, 10.7677, 5.4753, 5.4083, 11.06, 16.7642, 10.973, 5.9323, 11.4679, 27.7224, 6.0279, 5.5704, 5.2576, 5.5757, 5.3599, 5.682, 10.8745, 10.7558, 10.5917, 10.9646, 10.5798, 6.1214, 11.8647, 10.3481, 5.9297, 10.6416, 5.2614, 21.9574, 6.1765, 5.5361, 5.4634, 5.4507, 6.9408, 11.095, 10.7272, 20.4568, 11.0469, 0.8869, 5.2862, 5.4502, 11.3778, 6.1541, 10.4156, 5.4941, 5.6946, 11.4553, 6.6714, 10.9401, 5.7302, 5.7421], '192.168.122.116': [6.7875, 11.6584, 6.2265, 21.3084, 5.7273, 5.7075, 5.2814, 5.3003, 5.2848, 33.3142, 5.6007, 5.619, 5.7132, 5.441, 6.3224, 5.5742, 5.5151, 6.0394, 10.865, 10.4423, 22.7954, 5.4924, 31.1017, 10.8721, 10.7422, 10.9107, 5.5661, 5.8532, 5.8703, 5.6324, 10.9894, 5.5606, 5.5971, 16.2289, 10.8826, 5.5258, 10.8917, 5.3835, 6.0017, 5.4014, 5.6338, 10.9382, 5.43, 16.6547, 6.238, 5.2712, 5.7361, 10.7784, 5.3558, 0.4265, 5.5065, 6.007, 0.4406, 10.9715, 0.6127, 5.6813, 11.066, 32.939, 0.3369, 21.7905, 27.2505, 0.8023, 21.9402, 5.5294, 16.1669, 16.5114, 11.6334, 5.4858, 10.7136, 10.6645, 5.7068, 0.5829, 11.1232, 6.1817, 6.7155, 10.6843, 11.3978, 5.9545, 15.6221, 5.4252, 5.1899, 5.4803, 10.5314, 10.8042, 5.3566, 10.54, 5.3601, 6.5236, 5.5034, 5.7023, 5.8224, 6.5405, 10.9193, 5.455, 5.2702, 5.7447, 6.3379, 10.7427, 6.0863, 5.4331, 5.466, 10.8538, 17.0724, 10.371, 5.4791, 5.3787, 5.8527, 5.9435, 5.9016, 10.8213, 10.8294, 5.4231, 10.9987, 5.8115, 5.774, 5.321, 10.8502, 5.4202, 5.4595, 6.0201, 5.2886, 10.4327, 5.4259, 11.2205, 10.9937, 11.0195, 5.9218, 6.2857, 5.4624, 5.3728, 5.2505, 10.6316, 5.3823, 10.7536, 6.0892, 10.9868, 10.8294, 6.3384, 5.5368, 11.0741, 5.8143, 16.5162, 22.0973, 5.4021, 5.9607, 10.7958, 5.7189, 10.8459, 10.8404, 5.4824, 5.8155, 12.4726, 10.8562, 10.8721, 5.9071, 5.5385, 10.9143, 5.5242, 10.778, 5.9063, 5.4216, 10.9925, 5.8801, 11.0478, 33.6385, 10.6065, 27.6418, 5.5621, 10.7079, 5.276, 6.1831, 1.08, 22.1651, 5.4264, 5.919, 5.326, 5.2049, 0.5455, 5.3849, 5.3413, 27.5276, 10.7827, 16.3877, 6.0539, 5.564, 5.4095, 5.9707, 5.4028, 16.6113, 11.3237, 5.6691, 5.7933, 5.486, 11.3735, 5.6953, 5.7182, 16.6574, 10.5402, 5.4827, 5.4111, 5.6713, 11.4784, 6.758, 10.9766, 10.8054, 5.9066, 10.9401, 11.5054, 5.6641, 11.2276, 5.5952, 5.2099, 5.8053, 5.4963, 6.0668, 10.9842, 5.5146, 5.7471, 16.609, 21.6875, 11.137, 5.5573, 5.3959, 5.6658, 11.57, 5.8498, 11.6727, 5.326, 6.6059, 5.4481, 10.9422, 16.324, 5.8007, 5.4462, 5.6865, 10.6394, 10.8354, 10.793, 5.8041, 5.2636, 5.3835, 6.1176, 5.4736, 5.6126, 5.4402, 5.2309, 5.7783, 0.55, 10.8476, 16.4533, 5.6126, 5.626, 5.5385, 5.7442, 5.6117, 5.6069, 5.4462, 11.179, 27.307, 10.8814], '192.168.122.114': [6.6602, 21.8852, 10.5515, 10.7384, 5.3139, 5.2032, 10.8378, 5.3453, 5.4469, 11.3225, 5.7368, 0.5617, 6.1603, 6.4385, 5.2454, 21.4033, 9.8453, 0.5288, 6.2032, 10.8514, 10.9289, 6.386, 5.4474, 5.8727, 10.9434, 10.7694, 5.816, 5.5585, 11.3146, 10.4733, 5.4173, 11.1101, 5.7256, 5.4514, 5.5656, 5.9841, 5.5256, 12.8391, 5.3346, 5.3873, 5.2829, 10.6404, 5.2984, 10.735, 11.3688, 5.2152, 11.6599, 5.4834, 5.2633, 0.7706, 5.9247, 11.297, 0.6936, 10.814, 0.6723, 5.8286, 21.5101, 5.6531, 16.9098, 5.9524, 5.6846, 1.9381, 5.7724, 5.2226, 16.7112, 10.9046, 28.079, 6.5997, 5.4221, 5.3272, 5.2323, 0.6273, 5.3895, 0.8469, 10.8831, 5.3515, 10.9792, 5.6858, 10.6702, 5.4193, 10.6556, 10.8099, 10.7358, 16.3391, 10.8671, 5.5833, 5.3592, 5.6574, 5.4653, 0.8097, 10.8008, 10.9386, 5.4307, 5.481, 5.2984, 5.8599, 10.946, 11.0021, 10.8867, 5.3613, 5.3978, 5.3871, 10.9761, 5.5594, 5.224, 5.3334, 10.7236, 5.9152, 5.5037, 10.8681, 5.8761, 11.0388, 10.8972, 10.9205, 5.6214, 5.2702, 5.4736, 5.9876, 5.487, 5.8632, 5.671, 5.5416, 5.7781, 10.6444, 11.0345, 5.3198, 5.2545, 6.8128, 5.3844, 0.7143, 5.2736, 10.8373, 10.6473, 6.4766, 5.4076, 5.429, 5.6283, 11.054, 5.2774, 16.6681, 6.4287, 10.8495, 5.5344, 11.0664, 5.8348, 11.538, 5.5003, 5.7039, 5.3973, 5.8177, 10.7541, 11.601, 5.4624, 5.4364, 5.8844, 5.4607, 10.9727, 5.7366, 5.6095, 5.4739, 5.4507, 6.1328, 22.465, 5.7323, 5.5311, 6.263, 5.4953, 5.4088, 10.946, 5.6095, 10.9441, 0.9241, 13.8288, 10.8461, 6.3396, 5.9497, 5.8663, 5.8923, 5.4107, 10.5145, 27.3979, 5.8808, 6.2306, 11.0424, 5.4908, 5.5108, 6.0928, 7.2417, 5.2519, 11.4858, 28.2805, 5.6825, 5.61, 5.6183, 11.3459, 10.9723, 5.2614, 5.3639, 5.4107, 10.9742, 5.7142, 5.4798, 5.8181, 5.6889, 5.3797, 11.7629, 5.2879, 6.227, 5.3415, 5.2862, 11.1279, 10.7405, 5.4114, 5.3906, 10.9589, 5.3573, 10.8845, 21.9774, 10.8154, 10.8302, 5.5079, 5.5127, 5.3568, 5.7037, 26.2206, 5.8692, 5.446, 10.8614, 5.9435, 10.8948, 5.6939, 11.6425, 5.7316, 10.802, 30.3447, 10.4902, 11.0106, 11.0421, 6.2957, 5.7051, 5.4638, 11.0457, 10.6692, 6.2907, 5.9161, 6.4955, 5.4996, 0.7539, 11.1368, 5.8808, 11.5318, 10.7872, 5.5764, 5.4448, 5.6229, 5.7142, 5.4033, 6.5389, 10.3779, 10.5212], '192.168.122.113': [6.1097, 10.6566, 10.5853, 5.9462, 5.2862, 5.3642, 5.4536, 6.1572, 5.5923, 5.3971, 5.5206, 0.6919, 5.2652, 6.1638, 27.5834, 5.9998, 15.9521, 5.9268, 11.0595, 11.0445, 5.4104, 5.3883, 10.8278, 5.5466, 22.8617, 5.3542, 5.4598, 10.5743, 14.2767, 10.9401, 10.9687, 5.4798, 11.121, 5.4076, 5.4812, 6.4089, 0.6022, 20.9394, 5.336, 5.2462, 10.6268, 5.3275, 10.9079, 5.3456, 5.2767, 11.3921, 5.5587, 5.4827, 10.9241, 0.5558, 5.5449, 5.4462, 0.3741, 5.3287, 0.7129, 7.2215, 5.6663, 6.3317, 10.8392, 10.8936, 5.8303, 0.7582, 5.4543, 5.4324, 10.8788, 5.2931, 11.5926, 10.9506, 10.8185, 5.4824, 10.9649, 0.6731, 5.4259, 0.6688, 5.2674, 10.7324, 6.2621, 6.0894, 5.347, 5.3053, 10.6015, 5.4255, 9.4392, 5.4367, 5.4882, 5.6818, 10.9305, 11.426, 5.4784, 5.7657, 5.2328, 5.3585, 10.8802, 5.5373, 10.7126, 5.8601, 5.4152, 10.855, 11.8136, 10.7396, 5.8227, 5.4305, 10.9522, 5.8999, 6.0475, 6.012, 6.1071, 10.7541, 5.3461, 10.9253, 5.6303, 5.7094, 10.9172, 11.3692, 10.7694, 5.3012, 5.415, 5.3394, 5.3108, 11.1151, 5.4915, 20.6103, 5.8262, 11.1272, 5.4579, 23.2859, 10.6652, 11.3075, 5.4064, 6.2075, 10.4077, 10.2885, 5.672, 10.7863, 17.2386, 6.2072, 16.341, 10.9558, 5.5611, 6.0778, 10.9425, 10.8809, 5.5501, 5.5799, 11.1926, 6.1927, 6.0468, 5.3177, 10.803, 11.6098, 10.653, 6.3229, 6.8505, 10.89, 10.844, 10.6709, 5.465, 11.1008, 5.9712, 5.82, 10.7651, 6.3798, 5.4872, 16.1545, 5.6274, 6.2208, 5.3468, 5.3067, 5.6455, 32.4721, 5.3725, 0.6196, 5.3515, 6.1443, 5.3289, 5.8408, 10.5515, 5.8451, 5.2075, 5.2493, 6.038, 0.8898, 0.479, 5.4631, 10.9499, 5.5001, 5.6102, 5.4748, 5.7282, 6.1636, 6.8934, 10.7191, 11.6618, 5.8141, 11.0447, 5.6381, 5.3296, 10.7074, 11.4055, 10.963, 5.3792, 5.4297, 16.5396, 11.4932, 5.9912, 16.398, 10.8953, 21.0927, 10.9653, 5.4317, 5.4765, 10.6459, 10.3998, 5.4512, 11.0452, 16.9373, 5.3306, 5.4457, 10.7601, 10.7872, 5.486, 5.5089, 5.8868, 5.6283, 5.7862, 5.3961, 5.4438, 10.8128, 10.6032, 5.3902, 6.258, 5.4159, 11.1475, 5.2845, 5.4643, 10.6311, 5.3408, 5.8224, 5.7006, 5.595, 10.8099, 11.0126, 10.896, 12.9991, 10.89, 9.4335, 5.6505, 0.8337, 6.0415, 18.8353, 5.62, 5.5707, 17.1678, 5.7042, 11.3492, 7.1552, 8.1553, 5.4774, 5.6338, 10.798], '192.168.122.112': [6.6125, 5.5645, 10.5946, 11.8713, 15.9001, 11.2586, 10.8254, 16.2265, 10.9048, 6.3736, 5.605, 0.6585, 5.3959, 5.825, 11.2498, 5.2698, 5.7843, 5.2419, 5.8157, 10.6268, 5.3747, 6.341, 10.8926, 5.4038, 11.3842, 5.3983, 5.5132, 5.2459, 10.7982, 5.7573, 5.2838, 5.5094, 5.5149, 5.2421, 5.3141, 6.1073, 0.7484, 5.4691, 5.6562, 5.4846, 5.4369, 11.2696, 16.4752, 5.4097, 5.4548, 10.4196, 5.4026, 5.2888, 10.7374, 0.4601, 5.4896, 22.3451, 0.4125, 5.4975, 0.5937, 5.7178, 10.2999, 5.7499, 10.6742, 5.3937, 5.645, 0.5991, 5.4739, 10.69, 5.4615, 16.9995, 5.4548, 5.8846, 10.7071, 5.9607, 10.8147, 0.6783, 5.4412, 0.7348, 5.43, 5.3463, 5.6548, 5.3339, 10.7553, 5.4016, 5.5573, 5.3976, 21.6773, 5.5156, 11.0281, 10.3321, 5.2509, 5.8064, 5.7478, 11.3142, 10.581, 5.4367, 10.8495, 5.7001, 5.5792, 6.1207, 10.6704, 5.6777, 6.0284, 10.8283, 10.9849, 5.4097, 10.5689, 10.7875, 10.6878, 5.6207, 5.3773, 5.6381, 6.0358, 10.823, 10.9692, 5.2927, 10.9136, 7.3903, 5.2962, 5.4252, 5.8789, 5.4719, 16.3779, 22.0606, 16.4299, 10.8323, 21.1756, 5.7018, 11.0683, 5.7487, 5.3816, 5.645, 10.9463, 5.2621, 10.3791, 5.7228, 16.4721, 5.8875, 5.8603, 5.2803, 6.0284, 5.4231, 5.2381, 10.5226, 5.3709, 5.3816, 5.4293, 11.0567, 6.2199, 11.3499, 16.7074, 5.5611, 11.121, 11.5423, 10.4482, 5.5156, 21.7669, 10.92, 10.8056, 6.2876, 10.9017, 5.6219, 10.8156, 5.3685, 5.8391, 6.1989, 5.5017, 5.5075, 10.6542, 5.8732, 11.1272, 5.4305, 10.7915, 10.9906, 5.512, 3.5157, 5.3892, 10.5278, 5.4975, 5.4121, 5.3742, 5.8405, 5.9125, 5.2276, 5.6586, 6.9728, 0.7064, 5.3751, 6.356, 6.4003, 5.6314, 5.7282, 21.2114, 5.6839, 5.4758, 5.7142, 5.8277, 5.496, 11.5471, 5.5695, 10.926, 6.2068, 6.1648, 10.993, 5.5561, 5.6152, 10.8273, 5.867, 21.6129, 6.0785, 11.2967, 5.2211, 10.4733, 5.3942, 11.0958, 5.9552, 6.0847, 5.4493, 11.1403, 5.3926, 10.9742, 5.4233, 5.5892, 5.4414, 5.6138, 6.4259, 5.348, 0.622, 6.2153, 5.47, 10.9148, 5.4493, 5.8701, 10.7257, 6.2494, 5.9736, 0.9689, 11.4861, 5.4505, 5.1975, 5.1951, 11.0641, 11.4124, 5.9161, 5.4262, 11.0803, 28.1923, 5.5428, 11.0164, 6.4774, 10.9408, 0.5114, 16.1619, 26.4544, 5.758, 5.9094, 5.533, 5.3537, 11.272, 10.9181, 10.9501, 29.7203, 10.3443, 10.9313]}
cpu1_10_10 = [10.4, 57.2, 2.3, 3.6, 1.4, 0.3, 0.4, 0.5, 0.3, 0.3, 0.0, 0.6, 0.3, 1.3, 0.8, 0.1, 0.5, 0.2, 0.8, 1.2, 0.0, 0.8, 0.5, 0.1, 0.6, 0.0, 0.2, 0.1, 0.0, 0.0, 0.0, 0.1, 0.3, 0.2, 0.0, 0.1, 1.7, 2.2, 0.4, 0.5, 0.5, 0.1, 0.2, 0.2, 0.1, 0.3, 0.7, 0.9, 0.8, 0.2, 0.0, 0.4, 0.6, 1.0, 0.7, 2.4, 2.1, 0.1, 0.0, 0.0, 0.2, 0.2, 0.5, 0.9, 0.4, 0.2, 0.2, 0.5, 0.5, 0.2, 0.3, 0.7, 0.6, 0.1, 0.3, 1.2, 1.5, 1.8, 0.8, 0.8, 0.2, 0.2, 0.0, 0.4, 1.2, 0.7, 0.5, 1.6, 1.3, 0.1, 0.0, 0.4, 0.5, 0.1, 0.4, 0.0, 0.3, 0.5, 0.9, 1.1, 0.5, 2.1, 1.7, 0.7, 0.4, 0.3, 1.4, 1.2, 0.5, 0.2, 1.2, 0.4, 0.6, 0.9, 0.0, 0.7, 0.4, 0.0, 0.9, 1.0, 0.7, 0.1, 1.2, 0.9, 0.4, 0.7, 0.3, 1.1, 0.9, 0.1, 0.3, 0.6, 0.2, 0.4, 0.2, 0.5, 0.9, 0.3, 0.3, 0.5, 0.1, 0.7, 0.0, 0.7, 0.1, 0.8, 1.1, 0.8, 2.0, 3.2, 2.6, 0.2, 0.2, 0.4, 0.1, 0.3, 0.5, 1.3, 1.2, 0.3, 0.1, 0.5, 0.3, 1.1, 5.5, 4.8, 0.2, 0.4, 0.4, 1.4, 0.7, 0.2, 0.0, 0.4, 1.1, 0.6, 0.3, 0.1, 0.2, 0.4, 0.7, 0.4, 1.7, 1.8, 0.2, 0.5, 0.8, 0.5, 0.2, 0.2, 0.4, 0.1, 0.2, 0.5, 1.2, 0.4, 0.0, 0.5, 0.3, 0.1, 0.2, 0.1, 0.3, 0.4, 0.1, 0.3, 0.1, 0.1, 0.2, 0.2, 0.2, 1.3, 1.2, 5.0, 5.5, 0.4, 1.0, 0.9, 0.1, 0.3, 0.4, 0.2, 0.5, 0.5, 0.0, 0.8, 0.9, 0.1, 0.5, 3.2, 2.6, 3.5, 3.5, 2.2, 2.3, 0.6, 0.2, 0.6, 0.1, 3.2, 3.4, 0.2, 0.4, 0.8, 0.0, 0.7, 0.4, 0.0, 0.3, 0.1, 0.2, 0.8, 0.2, 1.0, 0.7, 2.1, 1.1, 0.7, 0.7, 0.4]
off_mec1_10_10 = 54
off_cloud1_10_10 = 114
inward_mec1_10_10 = 31
loc1_10_10 = 706
deadlock1_10_10 = [4]
memory1_10_10 = [0.2187, 0.2188, 0.2189, 0.2191, 0.2192, 0.2195, 0.2195, 0.2195, 0.2196, 0.2196, 0.2197, 0.2198, 0.2198, 0.2198, 0.2199, 0.2199, 0.22, 0.2202, 0.2204, 0.2204, 0.2205, 0.2205, 0.2206, 0.2206, 0.2206, 0.2207, 0.2207, 0.2208, 0.2209, 0.2209, 0.2209, 0.2211, 0.2211, 0.2212, 0.2212, 0.2212, 0.2212, 0.2212, 0.2213, 0.2213, 0.2213, 0.2214, 0.2214, 0.2214, 0.2215, 0.2216, 0.2216, 0.2217, 0.2219, 0.222, 0.2221, 0.2221, 0.2221, 0.2221, 0.2222, 0.2222, 0.2222, 0.2222, 0.2223, 0.2224, 0.2225, 0.2226, 0.2226, 0.2227, 0.2227, 0.2227, 0.2227, 0.2227, 0.2227, 0.2229, 0.223, 0.223, 0.2232, 0.2233, 0.2234, 0.2234, 0.2235, 0.2235, 0.2235, 0.2235, 0.2235, 0.2235, 0.2236, 0.2236, 0.2237, 0.2238, 0.2239, 0.2239, 0.2239, 0.2239, 0.2239, 0.2239, 0.2239, 0.2239, 0.2241, 0.2241, 0.2242, 0.2244, 0.2244, 0.2245, 0.2245, 0.2245, 0.2245, 0.2246, 0.2247, 0.2248, 0.2248, 0.225, 0.225, 0.2251, 0.2252, 0.2252, 0.2252, 0.2253, 0.2253, 0.2256, 0.2256, 0.2257, 0.2258, 0.2259, 0.2259, 0.2259, 0.2259, 0.226, 0.226, 0.226, 0.226, 0.226, 0.226, 0.2261, 0.2261, 0.2262, 0.2262, 0.2262, 0.2264, 0.2264, 0.2265, 0.2265, 0.2265, 0.2265, 0.2265, 0.2265, 0.2265, 0.2265, 0.2266, 0.2266, 0.2266, 0.2266, 0.2266, 0.2266, 0.2267, 0.2267, 0.2267, 0.2267, 0.2267, 0.2268, 0.2269, 0.2269, 0.227, 0.227, 0.227, 0.227, 0.227, 0.2271, 0.2271, 0.2271, 0.2273, 0.2273, 0.2273, 0.2273, 0.2274, 0.2274, 0.2274, 0.2274, 0.2275, 0.2275, 0.2275, 0.2276, 0.2276, 0.2276, 0.2276, 0.2282, 0.2282, 0.2282, 0.2283, 0.2283, 0.2283, 0.2283, 0.2283, 0.2284, 0.2284, 0.2284, 0.2284, 0.2284, 0.2284, 0.2284, 0.2285, 0.2285, 0.2285, 0.2286, 0.2286, 0.2286, 0.2287, 0.2287, 0.2287, 0.2287, 0.2288, 0.2288, 0.2288, 0.2288, 0.2291, 0.2291, 0.2296, 0.2296, 0.2297, 0.2297, 0.2297, 0.2298, 0.2298, 0.2298, 0.2299, 0.2299, 0.2299, 0.2299, 0.2299, 0.23, 0.23, 0.23, 0.23, 0.23, 0.2302, 0.2302, 0.2303, 0.2303, 0.2303, 0.2303, 0.2304, 0.2304, 0.2304, 0.2304, 0.2305, 0.231, 0.231, 0.2311, 0.2311, 0.2311, 0.2311, 0.2311, 0.2311, 0.2311, 0.2311, 0.2311, 0.2311, 0.2312, 0.2312, 0.2312, 0.2312, 0.2312, 0.2312, 0.2312]
task_received1_10_10 = 874
sent_t1_10_10 = {'124': 267, '125': 236, '126': 371}
cooperate1_10_10 = {'mec': 54, 'cloud': 114}
task_record1_10_10 = {}
outward_mec1_10_10 = 32
offload_check1_10_10 = [30, 2] |
#!/usr/bin/env python3
def simulate(reg_0, find_non_loop):
seen = set()
c = 0
last_unique_c = -1
while True:
a = c | 65536
c = reg_0
while True:
c = (((c + (a & 255)) & 16777215) * 65899) & 16777215
if a < 256:
if find_non_loop:
return c
else:
if c not in seen:
seen.add(c)
last_unique_c = c
break
else:
return last_unique_c
else:
a //= 256
print(simulate(7041048, True))
print(simulate(7041048, False))
| def simulate(reg_0, find_non_loop):
seen = set()
c = 0
last_unique_c = -1
while True:
a = c | 65536
c = reg_0
while True:
c = (c + (a & 255) & 16777215) * 65899 & 16777215
if a < 256:
if find_non_loop:
return c
elif c not in seen:
seen.add(c)
last_unique_c = c
break
else:
return last_unique_c
else:
a //= 256
print(simulate(7041048, True))
print(simulate(7041048, False)) |
# Directions
UP = 'UP'
DOWN = 'DOWN'
LEFT = 'LEFT'
RIGHT = 'RIGHT'
# Colors
RED = (255, 0, 0)
BLACK = (0, 0, 0)
GREEN = (0, 255, 0)
WHITE = (255, 255, 255)
| up = 'UP'
down = 'DOWN'
left = 'LEFT'
right = 'RIGHT'
red = (255, 0, 0)
black = (0, 0, 0)
green = (0, 255, 0)
white = (255, 255, 255) |
#!/usr/bin/env python3
flags = ['QCTF{2a5576bc51a5c3feb82c96fe80d3a520}', 'QCTF{eb2ddbf0e318812ede843e8ecec6144f}', 'QCTF{5cdf65c6069a6b815352c3f1b4d09a56}', 'QCTF{69d7b7deb23746b8bd18b22f3eb92b50}', 'QCTF{44e37938c0bc05393b5b33a70c5a70db}', 'QCTF{3b37a953391e38ce0b8e168e9eaa6ec5}', 'QCTF{ee2848cb73236007d36cb5ae75c4d2bf}', 'QCTF{8dceee7e583b81a844a58ae72bf0671f}', 'QCTF{1e3dbf7253eaa1454ba21806dd1fc14c}', 'QCTF{da8f9cc7d7f1b1481f87f6390fa25e0c}', 'QCTF{ef7e72c36017f57e3f6b940b25bcd3b8}', 'QCTF{41342b5fdd954b2ff55773096c335f52}', 'QCTF{35fa8fbb26685d098fc776e0a36f49aa}', 'QCTF{168ab402de637d3d309d32d5290e1e31}', 'QCTF{f184a2e0373a244ed3a1b84a9bdb3a23}', 'QCTF{f586fdb5119afc82250ed69fe9bdc7dd}', 'QCTF{1f13c89d8c9eb5573c15ecd50d2f9e50}', 'QCTF{11dfd6714cf59973c28b29c27b3f84df}', 'QCTF{210050152f6adf890bc663580cbca181}', 'QCTF{8200b5ef385ca392651e186a436e0609}', 'QCTF{552eb20e1897c751adf2e320f47d9179}', 'QCTF{cb6efd12b769ea8f1c38c98f1977d5ce}', 'QCTF{004072519dd358254b1de59133ba8386}', 'QCTF{9c4b21c7c3a0fcc3f391695968b7c7e9}', 'QCTF{5a940d17a3b9afa668381947469dd9f7}', 'QCTF{7a3891890abaf4921b8fb2e4a940eb2d}', 'QCTF{3527635e90dc57fe164d5f8d88dbcb38}', 'QCTF{3c5c5abd09bdcfdf09e65eba1eb80b24}', 'QCTF{6f46a5846a40d68d6a035a2ad60a2622}', 'QCTF{794223155a79df0d44a13687b1ed2003}', 'QCTF{43d4cb8f632f779975d6060b5193153f}', 'QCTF{775427be397d5bf852a046e65884d7f9}', 'QCTF{f9fd2dff056c2d47d14bdb9a417d99d5}', 'QCTF{300e2128e66389b5d3c3e057c1ade37f}', 'QCTF{25ee8ba64e6f578a14065aef15fb0028}', 'QCTF{7b0a45a53a059e55dcccf3b7e975ff2e}', 'QCTF{ebff50288af7c8a2a7bd8b1e11a8a612}', 'QCTF{b9a51b35b496056c4fbce56d3c6368e5}', 'QCTF{e1c9872464c4a27cbab39abcd86203b9}', 'QCTF{249589aeb27f9215b209dd933b6dccd8}', 'QCTF{55edfaf50d7e83ade9a98655fca33b31}', 'QCTF{597ab70595c974e07e31a3fa1277bf11}', 'QCTF{7c5023239ef7f22c41aa606ce9aaba5b}', 'QCTF{72257f0fb4a980bcbd9a6f41f52a370b}', 'QCTF{fc09caef8f7c55cd878344568f47a382}', 'QCTF{1dc7595bdbd4c4c60ceda6e21709e6f2}', 'QCTF{d19d9769e8c4262f3a66c95f63fe7f34}', 'QCTF{dec3d0c80f0df0e5af9a97d665dbdc37}', 'QCTF{02bafaf609aaa269bd8abf417208bb54}', 'QCTF{67507d62a48f4e06275f3363b7876d3c}', 'QCTF{8a5a2752374ef22803d1e600177b1bb4}', 'QCTF{a353e9e2be2070249cd297715ea6b10a}', 'QCTF{80225cecfb252b774fa338313e9430b7}', 'QCTF{fa584956ef689e8b341e1d734c734719}', 'QCTF{63015e092eb29efb121f3253cd21c379}', 'QCTF{d62443dfd293d1e412afe00676e437d5}', 'QCTF{59e40e54a8c5a04526e545bbee435249}', 'QCTF{30702aa0f1f56f7c6b8f738602e498e0}', 'QCTF{efec73d04226055571e8f18c96ee3c96}', 'QCTF{9d1dc2ea33d36391531c5555bf39e433}', 'QCTF{d367af673f3c9cf0fdb2893b00689b7c}', 'QCTF{1e24ece8acce5ad1902f412338b01e53}', 'QCTF{88293463e852a19b1c5009bbb1d6ed5f}', 'QCTF{319a0909fd0df476109c9bab65b5202a}', 'QCTF{59f28c649809dd3e4287c72f617428a4}', 'QCTF{ce7df959f53a8dea0ce1e3aa0c2eb8f8}', 'QCTF{5386d6256232979494c48252ee1dd640}', 'QCTF{5ad8efd6bb44d0604cba3800600b1d0e}', 'QCTF{087ca88149d4323d1f00be02a882a79b}', 'QCTF{ce4abbce715a72951061f7adcf15ea1b}', 'QCTF{301e2306bc2849fb53fff0595afc3ed1}', 'QCTF{206d3753e0070c66561a16abfa9c845b}', 'QCTF{05e734b3544679475050326e11441d6e}', 'QCTF{f45249ac1b299ac8a9f430a791e20ceb}', 'QCTF{3433fc22bbc389ba386c1d21f532ed3b}', 'QCTF{15edbf8aaa728eb81ba6f555997f4815}', 'QCTF{580fe8c58bf434bc5f2eef7420649673}', 'QCTF{e41bfb2090daf3773fa230eee97c2d90}', 'QCTF{654380c696844545896584334e208184}', 'QCTF{3946d70c84bf4810cf7e9a31e0b12cff}', 'QCTF{97b67f280a1b2bf58f8bd54ad8ceff66}', 'QCTF{3278f990d9dd5f5dd67c2d4b9d230753}', 'QCTF{f966c22475a0964eaa834830bfe338bd}', 'QCTF{3f913b97b23c854fcdf6fddc41743c62}', 'QCTF{e5dc135b13c2c5b5371d9c24b7715a90}', 'QCTF{70cfc6a3e2f98e98f3488d5180fd3d1c}', 'QCTF{1dfea28b554380e772736d0b3e2e060d}', 'QCTF{4cf742197c83c13a76ffd38fcd9394c7}', 'QCTF{0389931bc1415676698558259dd33911}', 'QCTF{2c6a7d2d0cb06b7050164c593b6eff88}', 'QCTF{43bd14ac279307f5370ae6ec6e50404e}', 'QCTF{9dc8266201ea1ba7072d3a717099bab1}', 'QCTF{f35148de32676d50e1d7b2482f800a2c}', 'QCTF{70c01985b0e31b6915a4e42936dedf25}', 'QCTF{231cdcc8bbf386a10e93530cb4595991}', 'QCTF{543a9e949ff8f72b7388b39d44288b55}', 'QCTF{2bb32c8b3e2468bc6f3f1140e02e1e33}', 'QCTF{b5f4dd820207d40769649252979ce450}', 'QCTF{1432aeb99dc6560626d075c9666973e2}', 'QCTF{7520b882081e987b73e728409c38bb55}', 'QCTF{8748557fa294f0c49ef93016ce1ca4ab}', 'QCTF{51e68ed7cbeae5ef716ff98a95ea783a}', 'QCTF{6a2643309f4ffd5856aeb90e6c68267e}', 'QCTF{9eb6102744e6c0e9994d7886ed125f8e}', 'QCTF{0731061397ccd2de5b324ce6c13dc611}', 'QCTF{3b106d379fa05638d90ed9a5a1dfdcbe}', 'QCTF{e539d324465979cb4c54773139ba833f}', 'QCTF{ac0e2a0b56508dfa6b253823697e842d}', 'QCTF{6b020c80f9b62510caec2ec17a07b640}', 'QCTF{00a1c7c11aedc76428ded7dd254adc31}', 'QCTF{2be348ddb0c9d391c114b5878ac1a3ae}', 'QCTF{5875aa9d30aca2e4590534016342aba7}', 'QCTF{07c01bde7f54d222d59e1f45781e8acc}', 'QCTF{1e3f24b6cd7066ac673048656d7d2fc9}', 'QCTF{0a75b22e9f94f3dfc19ab4b934b2961d}', 'QCTF{6a6564ca624d02b152987d5a595cf7bc}', 'QCTF{52463184224982ccf2f9346438f92268}', 'QCTF{ab014a22c6ea08979323fd8a467f1f4a}', 'QCTF{4a3e06c87bb6c0580195db33b39776f7}', 'QCTF{395eb9a839f59f933e135b02d9543c3b}', 'QCTF{c4fd0005bf0d339ff0f7e1860baa5f36}', 'QCTF{aa15b27e2f0485ca04ae787530c1ed18}', 'QCTF{10e844c23ec931932ea6bd4e3e728004}', 'QCTF{b8b86c195cb7dcb041e9dfb3d6b94573}', 'QCTF{932ff0cf891fe181b78a8763eb82a6c4}', 'QCTF{d6f4a756a5206321737afb1e0a183844}', 'QCTF{8c93d71184c17684c92e409e39cb7c00}', 'QCTF{dc4e8fb58fa2ed616d123a73b1a81467}', 'QCTF{8ee320c8dea80ef18d04534ff798caba}', 'QCTF{6a11a92d100293a4835f54dde05cbe34}', 'QCTF{9a79fff31abe7e4718070fa517e64fc0}', 'QCTF{ef93a88f1454894b3940fd2aa93e048d}', 'QCTF{0bed196ea7b09a5db9f31ef3c7f6848d}', 'QCTF{cee84fc49b89ffa988f52d0797baa73d}', 'QCTF{9e80c3d1bba93faa3b45eda0b912a02c}', 'QCTF{cac025aa9e5f4394744f12db0f3e5f71}', 'QCTF{5ee478bf634afe72ae0d3b9e95faf021}', 'QCTF{a5903dad242c4413fa99381d340226d1}', 'QCTF{abcd7d765c23353e38dc09a616bd9bde}', 'QCTF{c13ed258f4775efa54d5b166dd3240ed}', 'QCTF{e08e0a83b3a96cbf379380139b65cc7e}', 'QCTF{7b3803fdb94ff47cf63b7526ac388bc1}', 'QCTF{352ca5de54ffbe8515635118c787b8af}', 'QCTF{50da9ea0ae8ad773bde9a1577ceee9ff}', 'QCTF{7564194acd79f1eb36e46b33143361eb}', 'QCTF{05e594d4643b5b256084d33e51789029}', 'QCTF{36ba558d89ae53394cbd7eaf497601e3}', 'QCTF{33c50dc466f2cfaf68d173a7af16377a}', 'QCTF{903fa3b7125aa29dd2edcb1f2c5da381}', 'QCTF{4bc7246bfdd22e310bbfa25046b20d2c}', 'QCTF{baf8274e1ad81a53c9ca3a1c4762d718}', 'QCTF{9066fe52443e5978e9b82fe2b0801b03}', 'QCTF{39acd1bd34c6a258f3f7167dc21c7a85}', 'QCTF{deca3ebff2319c1e1df6fe96ffb2ff7b}', 'QCTF{0324d544b5e46489943574b02061ebed}', 'QCTF{d08bde8d29c4de77c3439eed7eeb677a}', 'QCTF{16337906f4fa89ee4dd04e6ad1fec14f}', 'QCTF{44de9c99a06af160110e707b93c3dd79}', 'QCTF{87a3543161d6d0ac1497ef1e43de70ec}', 'QCTF{41460476cb83e4544c1b0018c4b20980}', 'QCTF{c0242fbcf990f3a62e6be743a65d07f8}', 'QCTF{a865da86e6d2a17ab3b848f47f997704}', 'QCTF{51ac3d05e0fd1cdc6c9a31c47d2a3a88}', 'QCTF{943ca3ce0cc488be0589ca207806738d}', 'QCTF{f24460a3ce62c641236671b66f193054}', 'QCTF{87980f7c165f4d392c6d377ef6706027}', 'QCTF{2b3ef8a0e956b8d1b9c0373e5686147e}', 'QCTF{97fc9edc359c3ac1f368ea9d6f707ee2}', 'QCTF{f39d636b8d20fdb174bf627c94af8308}', 'QCTF{3eb03e255dacfff2f34afd34f0791f06}', 'QCTF{b819ac459aa4570528e102929befec96}', 'QCTF{7cbf5260678a762738a45a9a08a0d049}', 'QCTF{c58971009a765417bf73916323eb68e1}', 'QCTF{77444071adcf5221c83ad35ebc6c4cdb}', 'QCTF{53a01ebed36320ab8a71084c94ba585f}', 'QCTF{c89f06767a21bdd15a463a92897b0cae}', 'QCTF{6a4cf33cc6fcea2fab3e9612a57994fd}', 'QCTF{0bb8a72a683c35fa835226f7c5ebe3a9}', 'QCTF{206b39742a866fed482a03ce5b6dbd1c}', 'QCTF{4f027a70b064eac7ff2e9ca3d2e03b1d}', 'QCTF{4c39da37e2580f8deb5eba08ed7d5a57}', 'QCTF{f99cfb8878971c21b243f818e505b61e}', 'QCTF{e7daf2f64180b615c1c4ebbecadd0518}', 'QCTF{3304f198c3435e0d49a67f1672a08209}', 'QCTF{e720953183625b8a69a2f8e3e8a8d93a}', 'QCTF{350655c7d8bbaa6495d9ebfa1c0d76a7}', 'QCTF{d74759b2ad78fa941ef19257976392d4}', 'QCTF{146730e07ca858bbf709c2f5bee0a41e}', 'QCTF{db1962db2dc72006c551f14912f3a81a}', 'QCTF{0273d4d040f7de7daa2cea88b86f8f62}', 'QCTF{56ff70053c7a1dba014711c73f3f0486}', 'QCTF{90548bc64e69a21ace8d622e0c21d485}', 'QCTF{052d0c62d05b258b6e4d0fbb64d2c837}', 'QCTF{9fbf42a0d9c53b2b78dc9abef52dd368}', 'QCTF{cf50c6918c393ab19066d688fee7f3d1}', 'QCTF{c7a5a9ca5a29f3bdcd13bc38b4960506}', 'QCTF{c92b7a3db35070eda9793a250a8b8373}', 'QCTF{04d0261d7237329eeabe658967e752ca}', 'QCTF{f52a7914bb09c7cfea77ac0cc91c68b1}', 'QCTF{cc2c170948663de9d7dd25e4e6ce8834}']
def check(attempt, context):
if attempt.answer == flags[attempt.participant.id % len(flags)]:
return Checked(True)
if attempt.answer in flags:
return CheckedPlagiarist(False, flags.index(attempt.answer))
return Checked(False)
| flags = ['QCTF{2a5576bc51a5c3feb82c96fe80d3a520}', 'QCTF{eb2ddbf0e318812ede843e8ecec6144f}', 'QCTF{5cdf65c6069a6b815352c3f1b4d09a56}', 'QCTF{69d7b7deb23746b8bd18b22f3eb92b50}', 'QCTF{44e37938c0bc05393b5b33a70c5a70db}', 'QCTF{3b37a953391e38ce0b8e168e9eaa6ec5}', 'QCTF{ee2848cb73236007d36cb5ae75c4d2bf}', 'QCTF{8dceee7e583b81a844a58ae72bf0671f}', 'QCTF{1e3dbf7253eaa1454ba21806dd1fc14c}', 'QCTF{da8f9cc7d7f1b1481f87f6390fa25e0c}', 'QCTF{ef7e72c36017f57e3f6b940b25bcd3b8}', 'QCTF{41342b5fdd954b2ff55773096c335f52}', 'QCTF{35fa8fbb26685d098fc776e0a36f49aa}', 'QCTF{168ab402de637d3d309d32d5290e1e31}', 'QCTF{f184a2e0373a244ed3a1b84a9bdb3a23}', 'QCTF{f586fdb5119afc82250ed69fe9bdc7dd}', 'QCTF{1f13c89d8c9eb5573c15ecd50d2f9e50}', 'QCTF{11dfd6714cf59973c28b29c27b3f84df}', 'QCTF{210050152f6adf890bc663580cbca181}', 'QCTF{8200b5ef385ca392651e186a436e0609}', 'QCTF{552eb20e1897c751adf2e320f47d9179}', 'QCTF{cb6efd12b769ea8f1c38c98f1977d5ce}', 'QCTF{004072519dd358254b1de59133ba8386}', 'QCTF{9c4b21c7c3a0fcc3f391695968b7c7e9}', 'QCTF{5a940d17a3b9afa668381947469dd9f7}', 'QCTF{7a3891890abaf4921b8fb2e4a940eb2d}', 'QCTF{3527635e90dc57fe164d5f8d88dbcb38}', 'QCTF{3c5c5abd09bdcfdf09e65eba1eb80b24}', 'QCTF{6f46a5846a40d68d6a035a2ad60a2622}', 'QCTF{794223155a79df0d44a13687b1ed2003}', 'QCTF{43d4cb8f632f779975d6060b5193153f}', 'QCTF{775427be397d5bf852a046e65884d7f9}', 'QCTF{f9fd2dff056c2d47d14bdb9a417d99d5}', 'QCTF{300e2128e66389b5d3c3e057c1ade37f}', 'QCTF{25ee8ba64e6f578a14065aef15fb0028}', 'QCTF{7b0a45a53a059e55dcccf3b7e975ff2e}', 'QCTF{ebff50288af7c8a2a7bd8b1e11a8a612}', 'QCTF{b9a51b35b496056c4fbce56d3c6368e5}', 'QCTF{e1c9872464c4a27cbab39abcd86203b9}', 'QCTF{249589aeb27f9215b209dd933b6dccd8}', 'QCTF{55edfaf50d7e83ade9a98655fca33b31}', 'QCTF{597ab70595c974e07e31a3fa1277bf11}', 'QCTF{7c5023239ef7f22c41aa606ce9aaba5b}', 'QCTF{72257f0fb4a980bcbd9a6f41f52a370b}', 'QCTF{fc09caef8f7c55cd878344568f47a382}', 'QCTF{1dc7595bdbd4c4c60ceda6e21709e6f2}', 'QCTF{d19d9769e8c4262f3a66c95f63fe7f34}', 'QCTF{dec3d0c80f0df0e5af9a97d665dbdc37}', 'QCTF{02bafaf609aaa269bd8abf417208bb54}', 'QCTF{67507d62a48f4e06275f3363b7876d3c}', 'QCTF{8a5a2752374ef22803d1e600177b1bb4}', 'QCTF{a353e9e2be2070249cd297715ea6b10a}', 'QCTF{80225cecfb252b774fa338313e9430b7}', 'QCTF{fa584956ef689e8b341e1d734c734719}', 'QCTF{63015e092eb29efb121f3253cd21c379}', 'QCTF{d62443dfd293d1e412afe00676e437d5}', 'QCTF{59e40e54a8c5a04526e545bbee435249}', 'QCTF{30702aa0f1f56f7c6b8f738602e498e0}', 'QCTF{efec73d04226055571e8f18c96ee3c96}', 'QCTF{9d1dc2ea33d36391531c5555bf39e433}', 'QCTF{d367af673f3c9cf0fdb2893b00689b7c}', 'QCTF{1e24ece8acce5ad1902f412338b01e53}', 'QCTF{88293463e852a19b1c5009bbb1d6ed5f}', 'QCTF{319a0909fd0df476109c9bab65b5202a}', 'QCTF{59f28c649809dd3e4287c72f617428a4}', 'QCTF{ce7df959f53a8dea0ce1e3aa0c2eb8f8}', 'QCTF{5386d6256232979494c48252ee1dd640}', 'QCTF{5ad8efd6bb44d0604cba3800600b1d0e}', 'QCTF{087ca88149d4323d1f00be02a882a79b}', 'QCTF{ce4abbce715a72951061f7adcf15ea1b}', 'QCTF{301e2306bc2849fb53fff0595afc3ed1}', 'QCTF{206d3753e0070c66561a16abfa9c845b}', 'QCTF{05e734b3544679475050326e11441d6e}', 'QCTF{f45249ac1b299ac8a9f430a791e20ceb}', 'QCTF{3433fc22bbc389ba386c1d21f532ed3b}', 'QCTF{15edbf8aaa728eb81ba6f555997f4815}', 'QCTF{580fe8c58bf434bc5f2eef7420649673}', 'QCTF{e41bfb2090daf3773fa230eee97c2d90}', 'QCTF{654380c696844545896584334e208184}', 'QCTF{3946d70c84bf4810cf7e9a31e0b12cff}', 'QCTF{97b67f280a1b2bf58f8bd54ad8ceff66}', 'QCTF{3278f990d9dd5f5dd67c2d4b9d230753}', 'QCTF{f966c22475a0964eaa834830bfe338bd}', 'QCTF{3f913b97b23c854fcdf6fddc41743c62}', 'QCTF{e5dc135b13c2c5b5371d9c24b7715a90}', 'QCTF{70cfc6a3e2f98e98f3488d5180fd3d1c}', 'QCTF{1dfea28b554380e772736d0b3e2e060d}', 'QCTF{4cf742197c83c13a76ffd38fcd9394c7}', 'QCTF{0389931bc1415676698558259dd33911}', 'QCTF{2c6a7d2d0cb06b7050164c593b6eff88}', 'QCTF{43bd14ac279307f5370ae6ec6e50404e}', 'QCTF{9dc8266201ea1ba7072d3a717099bab1}', 'QCTF{f35148de32676d50e1d7b2482f800a2c}', 'QCTF{70c01985b0e31b6915a4e42936dedf25}', 'QCTF{231cdcc8bbf386a10e93530cb4595991}', 'QCTF{543a9e949ff8f72b7388b39d44288b55}', 'QCTF{2bb32c8b3e2468bc6f3f1140e02e1e33}', 'QCTF{b5f4dd820207d40769649252979ce450}', 'QCTF{1432aeb99dc6560626d075c9666973e2}', 'QCTF{7520b882081e987b73e728409c38bb55}', 'QCTF{8748557fa294f0c49ef93016ce1ca4ab}', 'QCTF{51e68ed7cbeae5ef716ff98a95ea783a}', 'QCTF{6a2643309f4ffd5856aeb90e6c68267e}', 'QCTF{9eb6102744e6c0e9994d7886ed125f8e}', 'QCTF{0731061397ccd2de5b324ce6c13dc611}', 'QCTF{3b106d379fa05638d90ed9a5a1dfdcbe}', 'QCTF{e539d324465979cb4c54773139ba833f}', 'QCTF{ac0e2a0b56508dfa6b253823697e842d}', 'QCTF{6b020c80f9b62510caec2ec17a07b640}', 'QCTF{00a1c7c11aedc76428ded7dd254adc31}', 'QCTF{2be348ddb0c9d391c114b5878ac1a3ae}', 'QCTF{5875aa9d30aca2e4590534016342aba7}', 'QCTF{07c01bde7f54d222d59e1f45781e8acc}', 'QCTF{1e3f24b6cd7066ac673048656d7d2fc9}', 'QCTF{0a75b22e9f94f3dfc19ab4b934b2961d}', 'QCTF{6a6564ca624d02b152987d5a595cf7bc}', 'QCTF{52463184224982ccf2f9346438f92268}', 'QCTF{ab014a22c6ea08979323fd8a467f1f4a}', 'QCTF{4a3e06c87bb6c0580195db33b39776f7}', 'QCTF{395eb9a839f59f933e135b02d9543c3b}', 'QCTF{c4fd0005bf0d339ff0f7e1860baa5f36}', 'QCTF{aa15b27e2f0485ca04ae787530c1ed18}', 'QCTF{10e844c23ec931932ea6bd4e3e728004}', 'QCTF{b8b86c195cb7dcb041e9dfb3d6b94573}', 'QCTF{932ff0cf891fe181b78a8763eb82a6c4}', 'QCTF{d6f4a756a5206321737afb1e0a183844}', 'QCTF{8c93d71184c17684c92e409e39cb7c00}', 'QCTF{dc4e8fb58fa2ed616d123a73b1a81467}', 'QCTF{8ee320c8dea80ef18d04534ff798caba}', 'QCTF{6a11a92d100293a4835f54dde05cbe34}', 'QCTF{9a79fff31abe7e4718070fa517e64fc0}', 'QCTF{ef93a88f1454894b3940fd2aa93e048d}', 'QCTF{0bed196ea7b09a5db9f31ef3c7f6848d}', 'QCTF{cee84fc49b89ffa988f52d0797baa73d}', 'QCTF{9e80c3d1bba93faa3b45eda0b912a02c}', 'QCTF{cac025aa9e5f4394744f12db0f3e5f71}', 'QCTF{5ee478bf634afe72ae0d3b9e95faf021}', 'QCTF{a5903dad242c4413fa99381d340226d1}', 'QCTF{abcd7d765c23353e38dc09a616bd9bde}', 'QCTF{c13ed258f4775efa54d5b166dd3240ed}', 'QCTF{e08e0a83b3a96cbf379380139b65cc7e}', 'QCTF{7b3803fdb94ff47cf63b7526ac388bc1}', 'QCTF{352ca5de54ffbe8515635118c787b8af}', 'QCTF{50da9ea0ae8ad773bde9a1577ceee9ff}', 'QCTF{7564194acd79f1eb36e46b33143361eb}', 'QCTF{05e594d4643b5b256084d33e51789029}', 'QCTF{36ba558d89ae53394cbd7eaf497601e3}', 'QCTF{33c50dc466f2cfaf68d173a7af16377a}', 'QCTF{903fa3b7125aa29dd2edcb1f2c5da381}', 'QCTF{4bc7246bfdd22e310bbfa25046b20d2c}', 'QCTF{baf8274e1ad81a53c9ca3a1c4762d718}', 'QCTF{9066fe52443e5978e9b82fe2b0801b03}', 'QCTF{39acd1bd34c6a258f3f7167dc21c7a85}', 'QCTF{deca3ebff2319c1e1df6fe96ffb2ff7b}', 'QCTF{0324d544b5e46489943574b02061ebed}', 'QCTF{d08bde8d29c4de77c3439eed7eeb677a}', 'QCTF{16337906f4fa89ee4dd04e6ad1fec14f}', 'QCTF{44de9c99a06af160110e707b93c3dd79}', 'QCTF{87a3543161d6d0ac1497ef1e43de70ec}', 'QCTF{41460476cb83e4544c1b0018c4b20980}', 'QCTF{c0242fbcf990f3a62e6be743a65d07f8}', 'QCTF{a865da86e6d2a17ab3b848f47f997704}', 'QCTF{51ac3d05e0fd1cdc6c9a31c47d2a3a88}', 'QCTF{943ca3ce0cc488be0589ca207806738d}', 'QCTF{f24460a3ce62c641236671b66f193054}', 'QCTF{87980f7c165f4d392c6d377ef6706027}', 'QCTF{2b3ef8a0e956b8d1b9c0373e5686147e}', 'QCTF{97fc9edc359c3ac1f368ea9d6f707ee2}', 'QCTF{f39d636b8d20fdb174bf627c94af8308}', 'QCTF{3eb03e255dacfff2f34afd34f0791f06}', 'QCTF{b819ac459aa4570528e102929befec96}', 'QCTF{7cbf5260678a762738a45a9a08a0d049}', 'QCTF{c58971009a765417bf73916323eb68e1}', 'QCTF{77444071adcf5221c83ad35ebc6c4cdb}', 'QCTF{53a01ebed36320ab8a71084c94ba585f}', 'QCTF{c89f06767a21bdd15a463a92897b0cae}', 'QCTF{6a4cf33cc6fcea2fab3e9612a57994fd}', 'QCTF{0bb8a72a683c35fa835226f7c5ebe3a9}', 'QCTF{206b39742a866fed482a03ce5b6dbd1c}', 'QCTF{4f027a70b064eac7ff2e9ca3d2e03b1d}', 'QCTF{4c39da37e2580f8deb5eba08ed7d5a57}', 'QCTF{f99cfb8878971c21b243f818e505b61e}', 'QCTF{e7daf2f64180b615c1c4ebbecadd0518}', 'QCTF{3304f198c3435e0d49a67f1672a08209}', 'QCTF{e720953183625b8a69a2f8e3e8a8d93a}', 'QCTF{350655c7d8bbaa6495d9ebfa1c0d76a7}', 'QCTF{d74759b2ad78fa941ef19257976392d4}', 'QCTF{146730e07ca858bbf709c2f5bee0a41e}', 'QCTF{db1962db2dc72006c551f14912f3a81a}', 'QCTF{0273d4d040f7de7daa2cea88b86f8f62}', 'QCTF{56ff70053c7a1dba014711c73f3f0486}', 'QCTF{90548bc64e69a21ace8d622e0c21d485}', 'QCTF{052d0c62d05b258b6e4d0fbb64d2c837}', 'QCTF{9fbf42a0d9c53b2b78dc9abef52dd368}', 'QCTF{cf50c6918c393ab19066d688fee7f3d1}', 'QCTF{c7a5a9ca5a29f3bdcd13bc38b4960506}', 'QCTF{c92b7a3db35070eda9793a250a8b8373}', 'QCTF{04d0261d7237329eeabe658967e752ca}', 'QCTF{f52a7914bb09c7cfea77ac0cc91c68b1}', 'QCTF{cc2c170948663de9d7dd25e4e6ce8834}']
def check(attempt, context):
if attempt.answer == flags[attempt.participant.id % len(flags)]:
return checked(True)
if attempt.answer in flags:
return checked_plagiarist(False, flags.index(attempt.answer))
return checked(False) |
def transaccion(retiro, saldo):
if retiro % 5 != 0:
return(saldo)
elif (saldo - retiro) < 0:
return(saldo)
elif saldo == retiro:
return(saldo)
else:
return(saldo - retiro - 0.5)
def main():
entrada = open("input.txt","r")
salida = open("output.txt","w")
T = int(entrada.readline())
for i in range(T):
tran = entrada.readline().split(' ')
M = float(tran[0])
S = float(tran[1])
res = transaccion(M, S)
salida.write("Caso #{}: {} \n".format(i + 1, res))
entrada.close()
salida.close()
main()
#15 min | def transaccion(retiro, saldo):
if retiro % 5 != 0:
return saldo
elif saldo - retiro < 0:
return saldo
elif saldo == retiro:
return saldo
else:
return saldo - retiro - 0.5
def main():
entrada = open('input.txt', 'r')
salida = open('output.txt', 'w')
t = int(entrada.readline())
for i in range(T):
tran = entrada.readline().split(' ')
m = float(tran[0])
s = float(tran[1])
res = transaccion(M, S)
salida.write('Caso #{}: {} \n'.format(i + 1, res))
entrada.close()
salida.close()
main() |
_base_config_ = ["base.py"]
generator = dict(
input_cse=True,
use_cse=True
)
discriminator=dict(
pred_only_cse=False,
pred_only_semantic=True
)
loss = dict(
gan_criterion=dict(type="segmentation", seg_weight=.1)
)
| _base_config_ = ['base.py']
generator = dict(input_cse=True, use_cse=True)
discriminator = dict(pred_only_cse=False, pred_only_semantic=True)
loss = dict(gan_criterion=dict(type='segmentation', seg_weight=0.1)) |
# Python - 3.4.3
Test.it('Basic Tests')
Test.assert_equals(invert([1, 2, 3, 4, 5]), [-1, -2, -3, -4, -5])
Test.assert_equals(invert([1, -2, 3, -4, 5]), [-1, 2, -3, 4, -5])
Test.assert_equals(invert([]), [])
| Test.it('Basic Tests')
Test.assert_equals(invert([1, 2, 3, 4, 5]), [-1, -2, -3, -4, -5])
Test.assert_equals(invert([1, -2, 3, -4, 5]), [-1, 2, -3, 4, -5])
Test.assert_equals(invert([]), []) |
__title__ = 'logxs'
__description__ = 'Replacing with build-in `print` with nice formatting.'
__url__ = 'https://github.com/minlaxz/logxs'
__version__ = '0.3.2'
__author__ = 'Min Latt'
__author_email__ = '[email protected]'
__license__ = 'MIT' | __title__ = 'logxs'
__description__ = 'Replacing with build-in `print` with nice formatting.'
__url__ = 'https://github.com/minlaxz/logxs'
__version__ = '0.3.2'
__author__ = 'Min Latt'
__author_email__ = '[email protected]'
__license__ = 'MIT' |
num = input()
lucky = 0
for i in num:
if i == '4' or i == '7':
lucky += 1
counter = 0
for c in str(lucky):
if c == '4' or c == '7':
counter += 1
if counter == len(str(lucky)):
print("YES")
else:
print("NO")
| num = input()
lucky = 0
for i in num:
if i == '4' or i == '7':
lucky += 1
counter = 0
for c in str(lucky):
if c == '4' or c == '7':
counter += 1
if counter == len(str(lucky)):
print('YES')
else:
print('NO') |
s=str(input())
a=[]
for i in range(len(s)):
si=s[i]
a.append(si)
b=[]
n=str(input())
for j in range(len(n)):
sj=n[j]
b.append(sj)
p={}
for pi in range(len(s)):
key=s[pi]
p[key]=0
j1=0
for i in range(0,len(a)):
key=a[i]
while j1<len(b):
bj=b[0]
if key in p:
p[key]=bj
b.remove(bj)
break
c=[]
si=str(input())
for si1 in range(0,len(si)):
ci=si[si1]
c.append(ci)
co=[]
for ci in range(0,len(c)):
if c[ci] in p:
cco=c[ci]
pco=p[cco]
co.append(pco)
d=[]
di=str(input())
for sj1 in range(0,len(di)):
dj=di[sj1]
d.append(dj)
do=[]
for di in range(0,len(d)):
for key in p:
pkey=key
if p.get(key) == d[di]:
ddo=pkey
do.append(ddo)
for i in range (0,len(co)):
print(co[i],end='')
print()
for j in range (0,len(do)):
print(do[j],end='') | s = str(input())
a = []
for i in range(len(s)):
si = s[i]
a.append(si)
b = []
n = str(input())
for j in range(len(n)):
sj = n[j]
b.append(sj)
p = {}
for pi in range(len(s)):
key = s[pi]
p[key] = 0
j1 = 0
for i in range(0, len(a)):
key = a[i]
while j1 < len(b):
bj = b[0]
if key in p:
p[key] = bj
b.remove(bj)
break
c = []
si = str(input())
for si1 in range(0, len(si)):
ci = si[si1]
c.append(ci)
co = []
for ci in range(0, len(c)):
if c[ci] in p:
cco = c[ci]
pco = p[cco]
co.append(pco)
d = []
di = str(input())
for sj1 in range(0, len(di)):
dj = di[sj1]
d.append(dj)
do = []
for di in range(0, len(d)):
for key in p:
pkey = key
if p.get(key) == d[di]:
ddo = pkey
do.append(ddo)
for i in range(0, len(co)):
print(co[i], end='')
print()
for j in range(0, len(do)):
print(do[j], end='') |
N, *A = map(int, open(0).read().split())
A.sort()
for i in range(N):
if i == A[i] - 1:
continue
print('No')
break
else:
print('Yes')
| (n, *a) = map(int, open(0).read().split())
A.sort()
for i in range(N):
if i == A[i] - 1:
continue
print('No')
break
else:
print('Yes') |
class status(Exception):
def __init__(self, code=200, response=None):
super().__init__("season.core.CLASS.RESPONSE.STATUS")
self.code = code
self.response = response
def get_response(self):
return self.response, self.code | class Status(Exception):
def __init__(self, code=200, response=None):
super().__init__('season.core.CLASS.RESPONSE.STATUS')
self.code = code
self.response = response
def get_response(self):
return (self.response, self.code) |
#!/usr/bin/env python3
def calculate():
ans = sum(1
for i in range(1, 10000000)
if get_terminal(i) == 89)
return str(ans)
TERMINALS = (1, 89)
def get_terminal(n):
while n not in TERMINALS:
n = square_digit_sum(n)
return n
def square_digit_sum(n):
result = 0
while n > 0:
result += sq_sum[n % 1000]
n //= 1000
return result
sq_sum = [sum(int(c)**2 for c in str(i)) for i in range(1000)]
if __name__ == "__main__":
print(calculate())
| def calculate():
ans = sum((1 for i in range(1, 10000000) if get_terminal(i) == 89))
return str(ans)
terminals = (1, 89)
def get_terminal(n):
while n not in TERMINALS:
n = square_digit_sum(n)
return n
def square_digit_sum(n):
result = 0
while n > 0:
result += sq_sum[n % 1000]
n //= 1000
return result
sq_sum = [sum((int(c) ** 2 for c in str(i))) for i in range(1000)]
if __name__ == '__main__':
print(calculate()) |
def gen_doc_html(version, api_list):
doc_html = f'''
<!DOCTYPE html>
<html>
<head><meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<style type="text/css">
body{{margin:40px auto;
max-width:650px; line-height:1.6;
font-size:18px; color:#444;
padding:0 10px}}
h1,h2,h3{{line-height:1.2}}
pre{{background-color: beige;
border-radius: 5px;
padding: 15px;
border: 1px solid black;
}}
</style></head>
<body>
<h1>API Docs V{version}</h1>
<p>The documentation is live and autogenerated.</p>
<hr>
<div id='docs'>
</div>
<script>
var api_list = {str(api_list)};'''
doc_html += '''
for(var i=0; i < api_list.length; ++i){
var url = api_list[i];
var xmlhttp = new XMLHttpRequest();
xmlhttp.open("OPTIONS", url, false);
xmlhttp.onreadystatechange = function(){
if (xmlhttp.readyState == 4 && xmlhttp.status == 200){
var doc = document.createElement('pre');
doc.innerHTML = xmlhttp.responseText;
document.getElementById('docs').appendChild(doc);
}
}
xmlhttp.send();
}
</script>
</body>
</html>
'''
return doc_html
| def gen_doc_html(version, api_list):
doc_html = f"""\n <!DOCTYPE html>\n <html>\n <head><meta charset="utf-8">\n <meta name="viewport" content="width=device-width, initial-scale=1">\n <style type="text/css">\n body{{margin:40px auto;\n max-width:650px; line-height:1.6;\n font-size:18px; color:#444;\n padding:0 10px}}\n h1,h2,h3{{line-height:1.2}}\n pre{{background-color: beige;\n border-radius: 5px;\n padding: 15px;\n border: 1px solid black;\n }}\n </style></head>\n <body>\n <h1>API Docs V{version}</h1>\n <p>The documentation is live and autogenerated.</p>\n <hr>\n <div id='docs'>\n </div>\n <script>\n var api_list = {str(api_list)};"""
doc_html += '\n for(var i=0; i < api_list.length; ++i){\n var url = api_list[i];\n var xmlhttp = new XMLHttpRequest();\n xmlhttp.open("OPTIONS", url, false);\n xmlhttp.onreadystatechange = function(){\n if (xmlhttp.readyState == 4 && xmlhttp.status == 200){\n var doc = document.createElement(\'pre\');\n doc.innerHTML = xmlhttp.responseText;\n document.getElementById(\'docs\').appendChild(doc);\n }\n }\n xmlhttp.send();\n }\n </script>\n </body>\n </html>\n '
return doc_html |
countries = {'Russia' : 'Europe', 'Germany' : 'Europe', 'Australia' : 'Australia'}
sqrs = {}
sqrs[1] = 1
sqrs[2] = 4
sqrs[10] = 100
print(sqrs)
myDict = dict([['key1', 'value1'], ('key2', 'value2')])
print(myDict)
phones = {'police' : 102, 'ambulance' : 103, 'firefighters' : 101}
print(phones['police'])
phones = {'police' : 102, 'ambulance' : 103, 'firefighters' : 101}
del phones['police']
print(phones)
phones = {'police' : 102, 'ambulance' : 103, 'firefighters' : 101}
for service in phones:
print(service, phones[service])
phones = {'police' : 102, 'ambulance' : 103, 'firefighters' : 101}
for service, phone in phones.items():
print(service, phone)
seq = map(int, input().split())
countDict = {}
for elem in seq:
countDict[elem] = countDict.get(elem, 0) + 1
for key in sorted(countDict):
print(key, countDict[key], sep=' : ')
n = int(input())
latinEnglish = {}
for i in range(n):
line = input()
english = line[:line.find('-')].strip()
latinsStr = line[line.find('-') + 1:].strip()
latins = map(lambda s : s.strip(), latinsStr.split(','))
for latin in latins:
if latin not in latinEnglish:
latinEnglish[latin] = []
latinEnglish[latin].append(english)
print(len(latinEnglish))
for latin in sorted(latinEnglish):
print(latin, '-', ', '.join(sorted(latinEnglish[latin]))) | countries = {'Russia': 'Europe', 'Germany': 'Europe', 'Australia': 'Australia'}
sqrs = {}
sqrs[1] = 1
sqrs[2] = 4
sqrs[10] = 100
print(sqrs)
my_dict = dict([['key1', 'value1'], ('key2', 'value2')])
print(myDict)
phones = {'police': 102, 'ambulance': 103, 'firefighters': 101}
print(phones['police'])
phones = {'police': 102, 'ambulance': 103, 'firefighters': 101}
del phones['police']
print(phones)
phones = {'police': 102, 'ambulance': 103, 'firefighters': 101}
for service in phones:
print(service, phones[service])
phones = {'police': 102, 'ambulance': 103, 'firefighters': 101}
for (service, phone) in phones.items():
print(service, phone)
seq = map(int, input().split())
count_dict = {}
for elem in seq:
countDict[elem] = countDict.get(elem, 0) + 1
for key in sorted(countDict):
print(key, countDict[key], sep=' : ')
n = int(input())
latin_english = {}
for i in range(n):
line = input()
english = line[:line.find('-')].strip()
latins_str = line[line.find('-') + 1:].strip()
latins = map(lambda s: s.strip(), latinsStr.split(','))
for latin in latins:
if latin not in latinEnglish:
latinEnglish[latin] = []
latinEnglish[latin].append(english)
print(len(latinEnglish))
for latin in sorted(latinEnglish):
print(latin, '-', ', '.join(sorted(latinEnglish[latin]))) |
def f(x):
'''Does nothing.
:type x: a.C
'''
pass
| def f(x):
"""Does nothing.
:type x: a.C
"""
pass |
Subsets and Splits