content stringlengths 7 1.05M | fixed_cases stringlengths 1 1.28M |
|---|---|
registry = {
"alpha_zero_service": {
"grpc": 7003,
},
} | registry = {'alpha_zero_service': {'grpc': 7003}} |
def dropOnto(nodeName, mimeData, row):
pass
def mimeData(nodeNames):
pass
| def drop_onto(nodeName, mimeData, row):
pass
def mime_data(nodeNames):
pass |
def nearest(numbers, x):
minimal = abs(numbers[0] - x)
answer = numbers[0]
for item in numbers:
if abs(item - x) < minimal:
minimal = abs(item - x)
answer = item
return answer
def main():
size = int(input())
numbers = list(map(int, input().split()))
x = int(input())
print(nearest(numbers, x))
if __name__ == '__main__':
main()
| def nearest(numbers, x):
minimal = abs(numbers[0] - x)
answer = numbers[0]
for item in numbers:
if abs(item - x) < minimal:
minimal = abs(item - x)
answer = item
return answer
def main():
size = int(input())
numbers = list(map(int, input().split()))
x = int(input())
print(nearest(numbers, x))
if __name__ == '__main__':
main() |
def missing_number2(N, numbers):
S = N * (N + 1) // 2
for n in numbers:
S -= n
return S
N = int(input())
numbers = list(map(int, input().split()))
print(missing_number2(N, numbers))
| def missing_number2(N, numbers):
s = N * (N + 1) // 2
for n in numbers:
s -= n
return S
n = int(input())
numbers = list(map(int, input().split()))
print(missing_number2(N, numbers)) |
def main():
a = set("I am fine")
b = set("I am ok")
print_set(sorted(a))
print_set(sorted(b))
def print_set(o):
print('{', end = ' ')
for x in o: print(x, end = ' ')
print('}')
if __name__ == '__main__': main()
# Members in set a but not b
def main():
a = set("I am fine")
b = set("I am ok")
print_set(a - b) # Members are in a but not b
def print_set(o):
print('Members with a but not b{', end = ' ')
for x in o: print(x, end = ' ')
print('}')
if __name__ == '__main__': main()
# Members in set a or b or both
def main():
a = set("I am fine")
b = set("I am ok")
print_set(a | b)
def print_set(o):
print('Members with a or b or both: {', end = ' ')
for x in o: print(x, end = ' ')
print('}')
if __name__ == '__main__': main()
# Members in set a or b not both
def main():
a = set("I am fine")
b = set("I am ok")
print_set(a ^ b)
def print_set(o):
print('Members with a or b but not both: {', end = ' ')
for x in o: print(x, end = ' ')
print('}')
if __name__ == '__main__': main()
# Members in both set a and b
def main():
a = set("I am fine")
b = set("I am ok")
print_set(a & b)
def print_set(o):
print('Members with both a and b are: {', end = ' ')
for x in o: print(x, end = ' ')
print('}')
if __name__ == '__main__': main()
| def main():
a = set('I am fine')
b = set('I am ok')
print_set(sorted(a))
print_set(sorted(b))
def print_set(o):
print('{', end=' ')
for x in o:
print(x, end=' ')
print('}')
if __name__ == '__main__':
main()
def main():
a = set('I am fine')
b = set('I am ok')
print_set(a - b)
def print_set(o):
print('Members with a but not b{', end=' ')
for x in o:
print(x, end=' ')
print('}')
if __name__ == '__main__':
main()
def main():
a = set('I am fine')
b = set('I am ok')
print_set(a | b)
def print_set(o):
print('Members with a or b or both: {', end=' ')
for x in o:
print(x, end=' ')
print('}')
if __name__ == '__main__':
main()
def main():
a = set('I am fine')
b = set('I am ok')
print_set(a ^ b)
def print_set(o):
print('Members with a or b but not both: {', end=' ')
for x in o:
print(x, end=' ')
print('}')
if __name__ == '__main__':
main()
def main():
a = set('I am fine')
b = set('I am ok')
print_set(a & b)
def print_set(o):
print('Members with both a and b are: {', end=' ')
for x in o:
print(x, end=' ')
print('}')
if __name__ == '__main__':
main() |
# solution to kata found here
# https://www.codewars.com/kata/5412509bd436bd33920011bc/solutions/python
def maskify(cc):
s2 = ''
for i in range(len(cc)):
character = cc[-(i+1)]
if (i+1) > 4:
character = '#'
s2 += character
s2 = s2[::-1]
return s2
'''
here's the solution voted best practice
it's a one-liner
# return masked string
def maskify(cc):
return "#"*(len(cc)-4) + cc[-4:]
and I actually understand how it works
'''
| def maskify(cc):
s2 = ''
for i in range(len(cc)):
character = cc[-(i + 1)]
if i + 1 > 4:
character = '#'
s2 += character
s2 = s2[::-1]
return s2
'\nhere\'s the solution voted best practice\nit\'s a one-liner\n\n# return masked string\ndef maskify(cc):\n return "#"*(len(cc)-4) + cc[-4:]\n\nand I actually understand how it works\n' |
# -*- coding: utf-8 -*-
# Copyright 2017 LasLabs Inc.
# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl.html).
{
"name": "Bus Presence Override",
"summary": "Adds user-defined im status (online, away, offline).",
"version": "10.0.1.0.0",
"category": "Social",
"website": "https://github.com/OCA/social",
"author": "LasLabs, Odoo Community Association (OCA)",
"license": "LGPL-3",
"application": False,
"installable": True,
"depends": [
"mail",
],
"data": [
"views/assets.xml",
],
"qweb": [
"static/src/xml/bus_presence_systray.xml",
],
}
| {'name': 'Bus Presence Override', 'summary': 'Adds user-defined im status (online, away, offline).', 'version': '10.0.1.0.0', 'category': 'Social', 'website': 'https://github.com/OCA/social', 'author': 'LasLabs, Odoo Community Association (OCA)', 'license': 'LGPL-3', 'application': False, 'installable': True, 'depends': ['mail'], 'data': ['views/assets.xml'], 'qweb': ['static/src/xml/bus_presence_systray.xml']} |
class Emo:
Tag = '<:Tag:931120394323251270>'
Tags = '<:Tags:931091527936127006>'
TagNotFound = '<:TagNotFound:931120394394566666>'
TagNeutral = '<:TagNeutral:931120394117726248>'
TagFound = '<:TagFound:931120394033823745>' | class Emo:
tag = '<:Tag:931120394323251270>'
tags = '<:Tags:931091527936127006>'
tag_not_found = '<:TagNotFound:931120394394566666>'
tag_neutral = '<:TagNeutral:931120394117726248>'
tag_found = '<:TagFound:931120394033823745>' |
class GW_Commands:
@staticmethod
def ping(slack_id=None, channel=None, params=None) :
return 'pong',None
| class Gw_Commands:
@staticmethod
def ping(slack_id=None, channel=None, params=None):
return ('pong', None) |
a="-5.54"
k=list(range(-5,6))
print(k)
d=10.5//1
f=5.45
print(round(f,0))
print(d)
f=float(a)
print(f)
aux=""
if len(a)>2:
if a[0]=='-':
aux='-'
i=1
else:
i=0
while a[i]!='.' or i==len(a):
aux=aux+a[i]
i=i+1
if a[i]=='.':
if (i+1)!=len(a):
i=i+1
aux=aux+a[i]
else:
aux=aux+'0'
else:
aux=aux+'0'
else:
if a[0]=='-':
aux='-'+a[1]+'0'
else:
aux=a[0]+'0'
print(aux) | a = '-5.54'
k = list(range(-5, 6))
print(k)
d = 10.5 // 1
f = 5.45
print(round(f, 0))
print(d)
f = float(a)
print(f)
aux = ''
if len(a) > 2:
if a[0] == '-':
aux = '-'
i = 1
else:
i = 0
while a[i] != '.' or i == len(a):
aux = aux + a[i]
i = i + 1
if a[i] == '.':
if i + 1 != len(a):
i = i + 1
aux = aux + a[i]
else:
aux = aux + '0'
else:
aux = aux + '0'
elif a[0] == '-':
aux = '-' + a[1] + '0'
else:
aux = a[0] + '0'
print(aux) |
def beautifulTriplets(d, arr):
count = 0
for i in arr:
if i+d in arr and i+2*d in arr:
count += 1
return count
arr = [1, 6, 7, 7, 8, 10, 12, 13, 14, 19]
# arr = [1,1,1,2,4,4,4,5,7,7,7,8]
print(beautifulTriplets(3, arr)) | def beautiful_triplets(d, arr):
count = 0
for i in arr:
if i + d in arr and i + 2 * d in arr:
count += 1
return count
arr = [1, 6, 7, 7, 8, 10, 12, 13, 14, 19]
print(beautiful_triplets(3, arr)) |
l1 = [1, 2, 3, 4, 5, 6, 7]
ex1 = [val for val in l1]
print('passando valor a valor para a variavel ex1 \n', ex1)
ex2 = [v * 2 for v in l1]
print('multiplicando usando compreensao de lista \n', ex2)
ex3 = [(v, v2) for v in l1 for v2 in range(3)]
print(ex3)
l2 = ['Adriana', 'Luiz', 'Mauro']
ex4 = [v.replace('a', '@').upper() for v in l2]
print(ex4)
tupla = (
('chave', 'valor'),
('chave2', 'valor2')
)
ex5 = [(y, x) for x, y in tupla]
print('invertendo os valores da tupla \n', ex5)
l3 = list(range(100))
ex6 = [v for v in l3 if v % 2 == 0 if v % 8 == 0] # pegando so os numeros pares e divisiveis por 8
print(ex6)
ex7 = [v if v % 3 == 0 else 0 for v in l3]
print(ex7) | l1 = [1, 2, 3, 4, 5, 6, 7]
ex1 = [val for val in l1]
print('passando valor a valor para a variavel ex1 \n', ex1)
ex2 = [v * 2 for v in l1]
print('multiplicando usando compreensao de lista \n', ex2)
ex3 = [(v, v2) for v in l1 for v2 in range(3)]
print(ex3)
l2 = ['Adriana', 'Luiz', 'Mauro']
ex4 = [v.replace('a', '@').upper() for v in l2]
print(ex4)
tupla = (('chave', 'valor'), ('chave2', 'valor2'))
ex5 = [(y, x) for (x, y) in tupla]
print('invertendo os valores da tupla \n', ex5)
l3 = list(range(100))
ex6 = [v for v in l3 if v % 2 == 0 if v % 8 == 0]
print(ex6)
ex7 = [v if v % 3 == 0 else 0 for v in l3]
print(ex7) |
def test_textline_repr_works(m_16_19_doc):
assert repr(m_16_19_doc.pages[0][4]) == \
'<OMBTextLine with text "August 1, 2016 ">'
def test_textline_is_blank_works(m_16_19_doc):
assert m_16_19_doc.pages[0][0].is_blank()
assert not m_16_19_doc.pages[0][4].is_blank()
def test_page_numbers_work(m_16_19_doc):
assert m_16_19_doc.pages[0].number == 1
assert m_16_19_doc.pages[1].number == 2
def test_useful_lines_are_not_culled(m_11_29_doc):
lastpage_text = '\n'.join([str(line) for line in m_11_29_doc.pages[-1]])
assert 'opportunities to reduce duplication' in lastpage_text
| def test_textline_repr_works(m_16_19_doc):
assert repr(m_16_19_doc.pages[0][4]) == '<OMBTextLine with text "August 1, 2016 ">'
def test_textline_is_blank_works(m_16_19_doc):
assert m_16_19_doc.pages[0][0].is_blank()
assert not m_16_19_doc.pages[0][4].is_blank()
def test_page_numbers_work(m_16_19_doc):
assert m_16_19_doc.pages[0].number == 1
assert m_16_19_doc.pages[1].number == 2
def test_useful_lines_are_not_culled(m_11_29_doc):
lastpage_text = '\n'.join([str(line) for line in m_11_29_doc.pages[-1]])
assert 'opportunities to reduce duplication' in lastpage_text |
class Person:
number_of_people = 0
def __init__(self, name):
self.name = name
Person.add_people()
def get_name():
return self.name
@classmethod
def get_number_of_people(cls):
return cls.number_of_people
@classmethod
def add_people(cls):
cls.number_of_people += 1
p1 = Person('burak')
p2 = Person('ahmet')
print(Person.get_number_of_people()) | class Person:
number_of_people = 0
def __init__(self, name):
self.name = name
Person.add_people()
def get_name():
return self.name
@classmethod
def get_number_of_people(cls):
return cls.number_of_people
@classmethod
def add_people(cls):
cls.number_of_people += 1
p1 = person('burak')
p2 = person('ahmet')
print(Person.get_number_of_people()) |
#
# PySNMP MIB module VPN-TC-STD-MIB (http://snmplabs.com/pysmi)
# ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/VPN-TC-STD-MIB
# Produced by pysmi-0.3.4 at Mon Apr 29 17:35:18 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, ValueRangeConstraint, ConstraintsIntersection, ValueSizeConstraint = mibBuilder.importSymbols("ASN1-REFINEMENT", "SingleValueConstraint", "ConstraintsUnion", "ValueRangeConstraint", "ConstraintsIntersection", "ValueSizeConstraint")
ModuleCompliance, NotificationGroup = mibBuilder.importSymbols("SNMPv2-CONF", "ModuleCompliance", "NotificationGroup")
IpAddress, ModuleIdentity, Bits, Integer32, Gauge32, MibIdentifier, TimeTicks, ObjectIdentity, Counter32, Counter64, Unsigned32, iso, MibScalar, MibTable, MibTableRow, MibTableColumn, NotificationType, mib_2 = mibBuilder.importSymbols("SNMPv2-SMI", "IpAddress", "ModuleIdentity", "Bits", "Integer32", "Gauge32", "MibIdentifier", "TimeTicks", "ObjectIdentity", "Counter32", "Counter64", "Unsigned32", "iso", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "NotificationType", "mib-2")
DisplayString, TextualConvention = mibBuilder.importSymbols("SNMPv2-TC", "DisplayString", "TextualConvention")
vpnTcMIB = ModuleIdentity((1, 3, 6, 1, 2, 1, 129))
vpnTcMIB.setRevisions(('2005-11-15 00:00',))
if mibBuilder.loadTexts: vpnTcMIB.setLastUpdated('200511150000Z')
if mibBuilder.loadTexts: vpnTcMIB.setOrganization('Layer 3 Virtual Private Networks (L3VPN) Working Group.')
class VPNId(TextualConvention, OctetString):
reference = "Fox, B. and Gleeson, B., 'Virtual Private Networks Identifier', RFC 2685, September 1999."
status = 'current'
subtypeSpec = OctetString.subtypeSpec + ValueSizeConstraint(7, 7)
fixedLength = 7
class VPNIdOrZero(TextualConvention, OctetString):
status = 'current'
subtypeSpec = OctetString.subtypeSpec + ConstraintsUnion(ValueSizeConstraint(0, 0), ValueSizeConstraint(7, 7), )
mibBuilder.exportSymbols("VPN-TC-STD-MIB", vpnTcMIB=vpnTcMIB, VPNId=VPNId, VPNIdOrZero=VPNIdOrZero, PYSNMP_MODULE_ID=vpnTcMIB)
| (octet_string, object_identifier, integer) = mibBuilder.importSymbols('ASN1', 'OctetString', 'ObjectIdentifier', 'Integer')
(named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues')
(single_value_constraint, constraints_union, value_range_constraint, constraints_intersection, value_size_constraint) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'SingleValueConstraint', 'ConstraintsUnion', 'ValueRangeConstraint', 'ConstraintsIntersection', 'ValueSizeConstraint')
(module_compliance, notification_group) = mibBuilder.importSymbols('SNMPv2-CONF', 'ModuleCompliance', 'NotificationGroup')
(ip_address, module_identity, bits, integer32, gauge32, mib_identifier, time_ticks, object_identity, counter32, counter64, unsigned32, iso, mib_scalar, mib_table, mib_table_row, mib_table_column, notification_type, mib_2) = mibBuilder.importSymbols('SNMPv2-SMI', 'IpAddress', 'ModuleIdentity', 'Bits', 'Integer32', 'Gauge32', 'MibIdentifier', 'TimeTicks', 'ObjectIdentity', 'Counter32', 'Counter64', 'Unsigned32', 'iso', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn', 'NotificationType', 'mib-2')
(display_string, textual_convention) = mibBuilder.importSymbols('SNMPv2-TC', 'DisplayString', 'TextualConvention')
vpn_tc_mib = module_identity((1, 3, 6, 1, 2, 1, 129))
vpnTcMIB.setRevisions(('2005-11-15 00:00',))
if mibBuilder.loadTexts:
vpnTcMIB.setLastUpdated('200511150000Z')
if mibBuilder.loadTexts:
vpnTcMIB.setOrganization('Layer 3 Virtual Private Networks (L3VPN) Working Group.')
class Vpnid(TextualConvention, OctetString):
reference = "Fox, B. and Gleeson, B., 'Virtual Private Networks Identifier', RFC 2685, September 1999."
status = 'current'
subtype_spec = OctetString.subtypeSpec + value_size_constraint(7, 7)
fixed_length = 7
class Vpnidorzero(TextualConvention, OctetString):
status = 'current'
subtype_spec = OctetString.subtypeSpec + constraints_union(value_size_constraint(0, 0), value_size_constraint(7, 7))
mibBuilder.exportSymbols('VPN-TC-STD-MIB', vpnTcMIB=vpnTcMIB, VPNId=VPNId, VPNIdOrZero=VPNIdOrZero, PYSNMP_MODULE_ID=vpnTcMIB) |
# The character class is used as a super class in the enemy and player class.
class Character:
def __init__(self, x=0, y=0, movementSpeed=0): # Arguments are optinal.
self.x = x
self.y = y
self.movementSpeed = movementSpeed
self.width = 32
self.height = 32
self.xVelocity = 0
self.yVelocity = 0
self.diagonalVelocityMultiplier = 0.7071 # Constant x and y velocity is multiplied with when moving diagonal (45 degrees).
def collisionWithObject(self, object): # Check collision with other class object with Character as super class.
pass
| class Character:
def __init__(self, x=0, y=0, movementSpeed=0):
self.x = x
self.y = y
self.movementSpeed = movementSpeed
self.width = 32
self.height = 32
self.xVelocity = 0
self.yVelocity = 0
self.diagonalVelocityMultiplier = 0.7071
def collision_with_object(self, object):
pass |
data = input()
city_dict = {}
trans_dict = {}
while data != 'ready':
city = data.split(":")[0]
transportation_list = data.split(":")[1].split(",")
if city not in city_dict:
city_dict.update({city: trans_dict})
trans_dict = {}
for items in transportation_list:
vehicle = items.split("-")[0]
vehicle_count = int(items.split("-")[1])
city_dict[city].update({vehicle: vehicle_count})
else:
trans_dict = {}
for items in transportation_list:
vehicle = items.split("-")[0]
vehicle_count = int(items.split("-")[1])
city_dict[city].update({vehicle: vehicle_count})
data = input()
data = input()
total = 0
while data != 'travel time!':
city = data.split(" ")[0]
passengers = int(data.split(" ")[1])
for key, value in city_dict.items():
if key == city:
for key2, value2 in value.items():
total += value2
if total >= passengers:
print(f'{city} -> all {passengers} accommodated')
else:
print(f'{city} -> all except {passengers - total} accommodated')
total = 0
data = input() | data = input()
city_dict = {}
trans_dict = {}
while data != 'ready':
city = data.split(':')[0]
transportation_list = data.split(':')[1].split(',')
if city not in city_dict:
city_dict.update({city: trans_dict})
trans_dict = {}
for items in transportation_list:
vehicle = items.split('-')[0]
vehicle_count = int(items.split('-')[1])
city_dict[city].update({vehicle: vehicle_count})
else:
trans_dict = {}
for items in transportation_list:
vehicle = items.split('-')[0]
vehicle_count = int(items.split('-')[1])
city_dict[city].update({vehicle: vehicle_count})
data = input()
data = input()
total = 0
while data != 'travel time!':
city = data.split(' ')[0]
passengers = int(data.split(' ')[1])
for (key, value) in city_dict.items():
if key == city:
for (key2, value2) in value.items():
total += value2
if total >= passengers:
print(f'{city} -> all {passengers} accommodated')
else:
print(f'{city} -> all except {passengers - total} accommodated')
total = 0
data = input() |
def f(x):
return x * x
#def g(x):
# return
# Should be 2 SLOC
| def f(x):
return x * x |
ODRL = {
"@context": {
"odrl": "http://www.w3.org/ns/odrl/2/",
"rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#",
"rdfs": "http://www.w3.org/2000/01/rdf-schema#",
"owl": "http://www.w3.org/2002/07/owl#",
"skos": "http://www.w3.org/2004/02/skos/core#",
"dct": "http://purl.org/dc/terms/",
"xsd": "http://www.w3.org/2001/XMLSchema#",
"vcard": "http://www.w3.org/2006/vcard/ns#",
"foaf": "http://xmlns.com/foaf/0.1/",
"schema": "http://schema.org/",
"cc": "http://creativecommons.org/ns#",
"uid": "@id",
"type": "@type",
"Policy": "odrl:Policy",
"Rule": "odrl:Rule",
"profile": {"@type": "@id", "@id": "odrl:profile"},
"inheritFrom": {"@type": "@id", "@id": "odrl:inheritFrom"},
"ConflictTerm": "odrl:ConflictTerm",
"conflict": {"@type": "@vocab", "@id": "odrl:conflict"},
"perm": "odrl:perm",
"prohibit": "odrl:prohibit",
"invalid": "odrl:invalid",
"Agreement": "odrl:Agreement",
"Assertion": "odrl:Assertion",
"Offer": "odrl:Offer",
"Privacy": "odrl:Privacy",
"Request": "odrl:Request",
"Set": "odrl:Set",
"Ticket": "odrl:Ticket",
"Asset": "odrl:Asset",
"AssetCollection": "odrl:AssetCollection",
"relation": {"@type": "@id", "@id": "odrl:relation"},
"hasPolicy": {"@type": "@id", "@id": "odrl:hasPolicy"},
"target": {"@type": "@id", "@id": "odrl:target"},
"output": {"@type": "@id", "@id": "odrl:output"},
"partOf": {"@type": "@id", "@id": "odrl:partOf"},
"source": {"@type": "@id", "@id": "odrl:source"},
"Party": "odrl:Party",
"PartyCollection": "odrl:PartyCollection",
"function": {"@type": "@vocab", "@id": "odrl:function"},
"PartyScope": "odrl:PartyScope",
"assignee": {"@type": "@id", "@id": "odrl:assignee"},
"assigner": {"@type": "@id", "@id": "odrl:assigner"},
"assigneeOf": {"@type": "@id", "@id": "odrl:assigneeOf"},
"assignerOf": {"@type": "@id", "@id": "odrl:assignerOf"},
"attributedParty": {"@type": "@id", "@id": "odrl:attributedParty"},
"attributingParty": {"@type": "@id", "@id": "odrl:attributingParty"},
"compensatedParty": {"@type": "@id", "@id": "odrl:compensatedParty"},
"compensatingParty": {"@type": "@id", "@id": "odrl:compensatingParty"},
"consentingParty": {"@type": "@id", "@id": "odrl:consentingParty"},
"consentedParty": {"@type": "@id", "@id": "odrl:consentedParty"},
"informedParty": {"@type": "@id", "@id": "odrl:informedParty"},
"informingParty": {"@type": "@id", "@id": "odrl:informingParty"},
"trackingParty": {"@type": "@id", "@id": "odrl:trackingParty"},
"trackedParty": {"@type": "@id", "@id": "odrl:trackedParty"},
"contractingParty": {"@type": "@id", "@id": "odrl:contractingParty"},
"contractedParty": {"@type": "@id", "@id": "odrl:contractedParty"},
"Action": "odrl:Action",
"action": {"@type": "@vocab", "@id": "odrl:action"},
"includedIn": {"@type": "@id", "@id": "odrl:includedIn"},
"implies": {"@type": "@id", "@id": "odrl:implies"},
"Permission": "odrl:Permission",
"permission": {"@type": "@id", "@id": "odrl:permission"},
"Prohibition": "odrl:Prohibition",
"prohibition": {"@type": "@id", "@id": "odrl:prohibition"},
"obligation": {"@type": "@id", "@id": "odrl:obligation"},
"use": "odrl:use",
"grantUse": "odrl:grantUse",
"aggregate": "odrl:aggregate",
"annotate": "odrl:annotate",
"anonymize": "odrl:anonymize",
"archive": "odrl:archive",
"concurrentUse": "odrl:concurrentUse",
"derive": "odrl:derive",
"digitize": "odrl:digitize",
"display": "odrl:display",
"distribute": "odrl:distribute",
"execute": "odrl:execute",
"extract": "odrl:extract",
"give": "odrl:give",
"index": "odrl:index",
"install": "odrl:install",
"modify": "odrl:modify",
"move": "odrl:move",
"play": "odrl:play",
"present": "odrl:present",
"print": "odrl:print",
"read": "odrl:read",
"reproduce": "odrl:reproduce",
"sell": "odrl:sell",
"stream": "odrl:stream",
"textToSpeech": "odrl:textToSpeech",
"transfer": "odrl:transfer",
"transform": "odrl:transform",
"translate": "odrl:translate",
"Duty": "odrl:Duty",
"duty": {"@type": "@id", "@id": "odrl:duty"},
"consequence": {"@type": "@id", "@id": "odrl:consequence"},
"remedy": {"@type": "@id", "@id": "odrl:remedy"},
"acceptTracking": "odrl:acceptTracking",
"attribute": "odrl:attribute",
"compensate": "odrl:compensate",
"delete": "odrl:delete",
"ensureExclusivity": "odrl:ensureExclusivity",
"include": "odrl:include",
"inform": "odrl:inform",
"nextPolicy": "odrl:nextPolicy",
"obtainConsent": "odrl:obtainConsent",
"reviewPolicy": "odrl:reviewPolicy",
"uninstall": "odrl:uninstall",
"watermark": "odrl:watermark",
"Constraint": "odrl:Constraint",
"LogicalConstraint": "odrl:LogicalConstraint",
"constraint": {"@type": "@id", "@id": "odrl:constraint"},
"refinement": {"@type": "@id", "@id": "odrl:refinement"},
"Operator": "odrl:Operator",
"operator": {"@type": "@vocab", "@id": "odrl:operator"},
"RightOperand": "odrl:RightOperand",
"rightOperand": "odrl:rightOperand",
"rightOperandReference": {
"@type": "xsd:anyURI",
"@id": "odrl:rightOperandReference",
},
"LeftOperand": "odrl:LeftOperand",
"leftOperand": {"@type": "@vocab", "@id": "odrl:leftOperand"},
"unit": "odrl:unit",
"dataType": {"@type": "xsd:anyType", "@id": "odrl:datatype"},
"status": "odrl:status",
"absolutePosition": "odrl:absolutePosition",
"absoluteSpatialPosition": "odrl:absoluteSpatialPosition",
"absoluteTemporalPosition": "odrl:absoluteTemporalPosition",
"absoluteSize": "odrl:absoluteSize",
"count": "odrl:count",
"dateTime": "odrl:dateTime",
"delayPeriod": "odrl:delayPeriod",
"deliveryChannel": "odrl:deliveryChannel",
"elapsedTime": "odrl:elapsedTime",
"event": "odrl:event",
"fileFormat": "odrl:fileFormat",
"industry": "odrl:industry:",
"language": "odrl:language",
"media": "odrl:media",
"meteredTime": "odrl:meteredTime",
"payAmount": "odrl:payAmount",
"percentage": "odrl:percentage",
"product": "odrl:product",
"purpose": "odrl:purpose",
"recipient": "odrl:recipient",
"relativePosition": "odrl:relativePosition",
"relativeSpatialPosition": "odrl:relativeSpatialPosition",
"relativeTemporalPosition": "odrl:relativeTemporalPosition",
"relativeSize": "odrl:relativeSize",
"resolution": "odrl:resolution",
"spatial": "odrl:spatial",
"spatialCoordinates": "odrl:spatialCoordinates",
"systemDevice": "odrl:systemDevice",
"timeInterval": "odrl:timeInterval",
"unitOfCount": "odrl:unitOfCount",
"version": "odrl:version",
"virtualLocation": "odrl:virtualLocation",
"eq": "odrl:eq",
"gt": "odrl:gt",
"gteq": "odrl:gteq",
"lt": "odrl:lt",
"lteq": "odrl:lteq",
"neq": "odrl:neg",
"isA": "odrl:isA",
"hasPart": "odrl:hasPart",
"isPartOf": "odrl:isPartOf",
"isAllOf": "odrl:isAllOf",
"isAnyOf": "odrl:isAnyOf",
"isNoneOf": "odrl:isNoneOf",
"or": "odrl:or",
"xone": "odrl:xone",
"and": "odrl:and",
"andSequence": "odrl:andSequence",
"policyUsage": "odrl:policyUsage",
}
}
| odrl = {'@context': {'odrl': 'http://www.w3.org/ns/odrl/2/', 'rdf': 'http://www.w3.org/1999/02/22-rdf-syntax-ns#', 'rdfs': 'http://www.w3.org/2000/01/rdf-schema#', 'owl': 'http://www.w3.org/2002/07/owl#', 'skos': 'http://www.w3.org/2004/02/skos/core#', 'dct': 'http://purl.org/dc/terms/', 'xsd': 'http://www.w3.org/2001/XMLSchema#', 'vcard': 'http://www.w3.org/2006/vcard/ns#', 'foaf': 'http://xmlns.com/foaf/0.1/', 'schema': 'http://schema.org/', 'cc': 'http://creativecommons.org/ns#', 'uid': '@id', 'type': '@type', 'Policy': 'odrl:Policy', 'Rule': 'odrl:Rule', 'profile': {'@type': '@id', '@id': 'odrl:profile'}, 'inheritFrom': {'@type': '@id', '@id': 'odrl:inheritFrom'}, 'ConflictTerm': 'odrl:ConflictTerm', 'conflict': {'@type': '@vocab', '@id': 'odrl:conflict'}, 'perm': 'odrl:perm', 'prohibit': 'odrl:prohibit', 'invalid': 'odrl:invalid', 'Agreement': 'odrl:Agreement', 'Assertion': 'odrl:Assertion', 'Offer': 'odrl:Offer', 'Privacy': 'odrl:Privacy', 'Request': 'odrl:Request', 'Set': 'odrl:Set', 'Ticket': 'odrl:Ticket', 'Asset': 'odrl:Asset', 'AssetCollection': 'odrl:AssetCollection', 'relation': {'@type': '@id', '@id': 'odrl:relation'}, 'hasPolicy': {'@type': '@id', '@id': 'odrl:hasPolicy'}, 'target': {'@type': '@id', '@id': 'odrl:target'}, 'output': {'@type': '@id', '@id': 'odrl:output'}, 'partOf': {'@type': '@id', '@id': 'odrl:partOf'}, 'source': {'@type': '@id', '@id': 'odrl:source'}, 'Party': 'odrl:Party', 'PartyCollection': 'odrl:PartyCollection', 'function': {'@type': '@vocab', '@id': 'odrl:function'}, 'PartyScope': 'odrl:PartyScope', 'assignee': {'@type': '@id', '@id': 'odrl:assignee'}, 'assigner': {'@type': '@id', '@id': 'odrl:assigner'}, 'assigneeOf': {'@type': '@id', '@id': 'odrl:assigneeOf'}, 'assignerOf': {'@type': '@id', '@id': 'odrl:assignerOf'}, 'attributedParty': {'@type': '@id', '@id': 'odrl:attributedParty'}, 'attributingParty': {'@type': '@id', '@id': 'odrl:attributingParty'}, 'compensatedParty': {'@type': '@id', '@id': 'odrl:compensatedParty'}, 'compensatingParty': {'@type': '@id', '@id': 'odrl:compensatingParty'}, 'consentingParty': {'@type': '@id', '@id': 'odrl:consentingParty'}, 'consentedParty': {'@type': '@id', '@id': 'odrl:consentedParty'}, 'informedParty': {'@type': '@id', '@id': 'odrl:informedParty'}, 'informingParty': {'@type': '@id', '@id': 'odrl:informingParty'}, 'trackingParty': {'@type': '@id', '@id': 'odrl:trackingParty'}, 'trackedParty': {'@type': '@id', '@id': 'odrl:trackedParty'}, 'contractingParty': {'@type': '@id', '@id': 'odrl:contractingParty'}, 'contractedParty': {'@type': '@id', '@id': 'odrl:contractedParty'}, 'Action': 'odrl:Action', 'action': {'@type': '@vocab', '@id': 'odrl:action'}, 'includedIn': {'@type': '@id', '@id': 'odrl:includedIn'}, 'implies': {'@type': '@id', '@id': 'odrl:implies'}, 'Permission': 'odrl:Permission', 'permission': {'@type': '@id', '@id': 'odrl:permission'}, 'Prohibition': 'odrl:Prohibition', 'prohibition': {'@type': '@id', '@id': 'odrl:prohibition'}, 'obligation': {'@type': '@id', '@id': 'odrl:obligation'}, 'use': 'odrl:use', 'grantUse': 'odrl:grantUse', 'aggregate': 'odrl:aggregate', 'annotate': 'odrl:annotate', 'anonymize': 'odrl:anonymize', 'archive': 'odrl:archive', 'concurrentUse': 'odrl:concurrentUse', 'derive': 'odrl:derive', 'digitize': 'odrl:digitize', 'display': 'odrl:display', 'distribute': 'odrl:distribute', 'execute': 'odrl:execute', 'extract': 'odrl:extract', 'give': 'odrl:give', 'index': 'odrl:index', 'install': 'odrl:install', 'modify': 'odrl:modify', 'move': 'odrl:move', 'play': 'odrl:play', 'present': 'odrl:present', 'print': 'odrl:print', 'read': 'odrl:read', 'reproduce': 'odrl:reproduce', 'sell': 'odrl:sell', 'stream': 'odrl:stream', 'textToSpeech': 'odrl:textToSpeech', 'transfer': 'odrl:transfer', 'transform': 'odrl:transform', 'translate': 'odrl:translate', 'Duty': 'odrl:Duty', 'duty': {'@type': '@id', '@id': 'odrl:duty'}, 'consequence': {'@type': '@id', '@id': 'odrl:consequence'}, 'remedy': {'@type': '@id', '@id': 'odrl:remedy'}, 'acceptTracking': 'odrl:acceptTracking', 'attribute': 'odrl:attribute', 'compensate': 'odrl:compensate', 'delete': 'odrl:delete', 'ensureExclusivity': 'odrl:ensureExclusivity', 'include': 'odrl:include', 'inform': 'odrl:inform', 'nextPolicy': 'odrl:nextPolicy', 'obtainConsent': 'odrl:obtainConsent', 'reviewPolicy': 'odrl:reviewPolicy', 'uninstall': 'odrl:uninstall', 'watermark': 'odrl:watermark', 'Constraint': 'odrl:Constraint', 'LogicalConstraint': 'odrl:LogicalConstraint', 'constraint': {'@type': '@id', '@id': 'odrl:constraint'}, 'refinement': {'@type': '@id', '@id': 'odrl:refinement'}, 'Operator': 'odrl:Operator', 'operator': {'@type': '@vocab', '@id': 'odrl:operator'}, 'RightOperand': 'odrl:RightOperand', 'rightOperand': 'odrl:rightOperand', 'rightOperandReference': {'@type': 'xsd:anyURI', '@id': 'odrl:rightOperandReference'}, 'LeftOperand': 'odrl:LeftOperand', 'leftOperand': {'@type': '@vocab', '@id': 'odrl:leftOperand'}, 'unit': 'odrl:unit', 'dataType': {'@type': 'xsd:anyType', '@id': 'odrl:datatype'}, 'status': 'odrl:status', 'absolutePosition': 'odrl:absolutePosition', 'absoluteSpatialPosition': 'odrl:absoluteSpatialPosition', 'absoluteTemporalPosition': 'odrl:absoluteTemporalPosition', 'absoluteSize': 'odrl:absoluteSize', 'count': 'odrl:count', 'dateTime': 'odrl:dateTime', 'delayPeriod': 'odrl:delayPeriod', 'deliveryChannel': 'odrl:deliveryChannel', 'elapsedTime': 'odrl:elapsedTime', 'event': 'odrl:event', 'fileFormat': 'odrl:fileFormat', 'industry': 'odrl:industry:', 'language': 'odrl:language', 'media': 'odrl:media', 'meteredTime': 'odrl:meteredTime', 'payAmount': 'odrl:payAmount', 'percentage': 'odrl:percentage', 'product': 'odrl:product', 'purpose': 'odrl:purpose', 'recipient': 'odrl:recipient', 'relativePosition': 'odrl:relativePosition', 'relativeSpatialPosition': 'odrl:relativeSpatialPosition', 'relativeTemporalPosition': 'odrl:relativeTemporalPosition', 'relativeSize': 'odrl:relativeSize', 'resolution': 'odrl:resolution', 'spatial': 'odrl:spatial', 'spatialCoordinates': 'odrl:spatialCoordinates', 'systemDevice': 'odrl:systemDevice', 'timeInterval': 'odrl:timeInterval', 'unitOfCount': 'odrl:unitOfCount', 'version': 'odrl:version', 'virtualLocation': 'odrl:virtualLocation', 'eq': 'odrl:eq', 'gt': 'odrl:gt', 'gteq': 'odrl:gteq', 'lt': 'odrl:lt', 'lteq': 'odrl:lteq', 'neq': 'odrl:neg', 'isA': 'odrl:isA', 'hasPart': 'odrl:hasPart', 'isPartOf': 'odrl:isPartOf', 'isAllOf': 'odrl:isAllOf', 'isAnyOf': 'odrl:isAnyOf', 'isNoneOf': 'odrl:isNoneOf', 'or': 'odrl:or', 'xone': 'odrl:xone', 'and': 'odrl:and', 'andSequence': 'odrl:andSequence', 'policyUsage': 'odrl:policyUsage'}} |
# List Unpacking
numbers = ["1","2","3","4"]
one, two, *others = numbers
print(one)
print(others)
| numbers = ['1', '2', '3', '4']
(one, two, *others) = numbers
print(one)
print(others) |
#perulangan bersarang pada python
list_angka = [1,2,3]
list_huruf = ['a','b']
for angka in list_angka:
for huruf in list_huruf:
print(huruf)
print(angka) | list_angka = [1, 2, 3]
list_huruf = ['a', 'b']
for angka in list_angka:
for huruf in list_huruf:
print(huruf)
print(angka) |
# Program make a simple calculator
# This function adds two numbers
def add(x, y):
return x + y
# This function subtracts two numbers
def subtract(x, y):
return x - y
# This function multiplies two numbers
def multiply(x, y):
return x * y
# This function divides two numbers
def divide(x, y):
return x / y
print("Select operation.")
print("1.Add")
print("2.Subtract")
print("3.Multiply")
print("4.Divide")
while True:
# Take input from the user
choice = input("Enter choice(1/2/3/4): ") | def add(x, y):
return x + y
def subtract(x, y):
return x - y
def multiply(x, y):
return x * y
def divide(x, y):
return x / y
print('Select operation.')
print('1.Add')
print('2.Subtract')
print('3.Multiply')
print('4.Divide')
while True:
choice = input('Enter choice(1/2/3/4): ') |
def findAns(N):
if (N <= 2):
print ("NO")
return
value = (N * (N + 1)) // 2
if(value & 1):
print ("NO")
return
v1 = []
v2 = []
if (not (N & 1)):
turn = 1
start = 1
last = N
while (start < last):
if (turn):
v1.append(start)
v1.append(last)
turn = 0
else:
v2.append(start)
v2.append(last)
turn = 1
start += 1
last -= 1
else:
rem = value // 2
vis = [False] * (N + 1)
for i in range (1, N + 1):
vis[i] = False
vis[0] = True
for i in range (N , 0, -1):
if (rem > i):
v1.append(i)
vis[i] = True
rem -= i
else:
v1.append(rem)
vis[rem] = True
break
for i in range (1, N + 1):
if (not vis[i]):
v2.append(i)
print ("YES""\n" "Size of subset 1 is: ", end = "")
print (len( v1))
print ("Elements of the subset are: ", end = "")
for c in v1:
print (c, end = " ")
print ()
print ("Size of subset 2 is: ", end = "")
print(len( v2))
print ("Elements of the subset are: ", end = "")
for c in v2:
print (c, end = " ")
inp = int(input("Enter number: "))
findAns(inp)
| def find_ans(N):
if N <= 2:
print('NO')
return
value = N * (N + 1) // 2
if value & 1:
print('NO')
return
v1 = []
v2 = []
if not N & 1:
turn = 1
start = 1
last = N
while start < last:
if turn:
v1.append(start)
v1.append(last)
turn = 0
else:
v2.append(start)
v2.append(last)
turn = 1
start += 1
last -= 1
else:
rem = value // 2
vis = [False] * (N + 1)
for i in range(1, N + 1):
vis[i] = False
vis[0] = True
for i in range(N, 0, -1):
if rem > i:
v1.append(i)
vis[i] = True
rem -= i
else:
v1.append(rem)
vis[rem] = True
break
for i in range(1, N + 1):
if not vis[i]:
v2.append(i)
print('YES\nSize of subset 1 is: ', end='')
print(len(v1))
print('Elements of the subset are: ', end='')
for c in v1:
print(c, end=' ')
print()
print('Size of subset 2 is: ', end='')
print(len(v2))
print('Elements of the subset are: ', end='')
for c in v2:
print(c, end=' ')
inp = int(input('Enter number: '))
find_ans(inp) |
delay = 'delays=pairs(-10us, [-10.1us, 0]+log_series(562ns, 10ms, steps_per_decade=4))'
description = 'Laser Y = -4.235mm, X-ray 40um (H) x 40um (V), Laser 1443nm, 1.10mJ'
finish_series = False
finish_series_variable = u'Delay'
basename = 'RNA-Hairpin-8BP-AU-Stem-End-1'
power = ''
temperature_wait = 1.0
temperature_idle = 22.0
temperature = 'ramp(low=20,high=24,step=0.5,hold=2,repeat=1)'
scan_points = ''
scan_return = 1.0
scan_relative = 1.0
scan_motor = ''
temperatures = '-15.35, 20.15, 89.15'
collection_order = 'Delay, Repeat=4, Temperature, Repeat=5'
cancelled = False
directory = '/net/mx340hs/data/anfinrud_1906/Data/WAXS/RNA-Hairpin/RNA-Hairpin-8BP/RNA-Hairpin-8BP-AU-Stem-End/RNA-Hairpin-8BP-AU-Stem-End-1'
diagnostics = 'ring_current, bunch_current, temperature'
logfile_basename = 'RNA-Hairpin-8BP-AU-Stem-End-1.log'
scan_origin = -1.1740000000000004
detector_configuration = 'xray_detector, xray_scope, laser_scope' | delay = 'delays=pairs(-10us, [-10.1us, 0]+log_series(562ns, 10ms, steps_per_decade=4))'
description = 'Laser Y = -4.235mm, X-ray 40um (H) x 40um (V), Laser 1443nm, 1.10mJ'
finish_series = False
finish_series_variable = u'Delay'
basename = 'RNA-Hairpin-8BP-AU-Stem-End-1'
power = ''
temperature_wait = 1.0
temperature_idle = 22.0
temperature = 'ramp(low=20,high=24,step=0.5,hold=2,repeat=1)'
scan_points = ''
scan_return = 1.0
scan_relative = 1.0
scan_motor = ''
temperatures = '-15.35, 20.15, 89.15'
collection_order = 'Delay, Repeat=4, Temperature, Repeat=5'
cancelled = False
directory = '/net/mx340hs/data/anfinrud_1906/Data/WAXS/RNA-Hairpin/RNA-Hairpin-8BP/RNA-Hairpin-8BP-AU-Stem-End/RNA-Hairpin-8BP-AU-Stem-End-1'
diagnostics = 'ring_current, bunch_current, temperature'
logfile_basename = 'RNA-Hairpin-8BP-AU-Stem-End-1.log'
scan_origin = -1.1740000000000004
detector_configuration = 'xray_detector, xray_scope, laser_scope' |
n = int(input())
f = [[c == '.' for c in input()] for _ in range(n)]
r2 = 0
for xc in range(n):
for yc in range(n):
if not f[xc][yc]:
continue
closest = 2 * n ** 2
for x in range(-1, n + 1):
for y in range(-1, n + 1):
if 0 <= x < n and 0 <= y < n and f[x][y]:
continue
closest = min(closest, (x - xc) ** 2 + (y - yc) ** 2)
r2 = max(r2, closest)
r = 0
while (r + 1) ** 2 < r2:
r += 1
print(r)
| n = int(input())
f = [[c == '.' for c in input()] for _ in range(n)]
r2 = 0
for xc in range(n):
for yc in range(n):
if not f[xc][yc]:
continue
closest = 2 * n ** 2
for x in range(-1, n + 1):
for y in range(-1, n + 1):
if 0 <= x < n and 0 <= y < n and f[x][y]:
continue
closest = min(closest, (x - xc) ** 2 + (y - yc) ** 2)
r2 = max(r2, closest)
r = 0
while (r + 1) ** 2 < r2:
r += 1
print(r) |
class License:
def __init__(self, license_id, name, short_name, cross_reference, comment, is_spdx_official):
self.license_id = license_id
self.name = name
self.short_name = short_name
self.cross_reference = cross_reference
self.comment = comment
self.is_spdx_official = is_spdx_official
class FileType:
def __init__(self, file_type_id, name):
self.file_type_id = file_type_id
self.name = name
class Project:
def __init__(self, project_id, name, homepage, uri):
self.project_id = project_id
self.name = name
self.homepage = homepage
self.uri = uri
class File:
def __init__(self, file_id, file_type_id, sha256, copyright_text, project_id, comment, notice):
self.file_id = file_id
self.file_type_id = file_type_id
self.sha256 = sha256
self.copyright_text = copyright_text
self.project_id = project_id
self.comment = comment
self.notice = notice
class FileLicense:
def __init__(self, file_license_id, file_id, license_id, extracted_text):
self.file_license_id = file_license_id
self.file_id = file_id
self.license_id = license_id
self.extracted_text = extracted_text
class CreatorType:
def __init__(self, creator_type_id, name):
self.creator_type_id = creator_type_id
self.name = name
class Creator:
def __init__(self, creator_id, creator_type_id, name, email):
self.creator_id = creator_id
self.creator_type_id = creator_type_id
self.name = name
self.email = email
class Package:
def __init__(self,
package_id,
name,
version,
file_name,
supplier_id,
originator_id,
download_location,
verification_code,
ver_code_excluded_file_id,
sha256,
home_page,
source_info,
concluded_license_id,
declared_license_id,
license_comment,
copyright_text,
summary,
description,
comment,
dosocs2_dir_code):
self.package_id = package_id
self.name = name
self.version = version
self.file_name = file_name
self.supplier_id = supplier_id
self.originator_id = originator_id
self.download_location = download_location
self.verification_code = verification_code
self.ver_code_excluded_file_id = ver_code_excluded_file_id
self.sha256 = sha256
self.home_page = home_page
self.source_info = source_info
self.concluded_license_id = concluded_license_id
self.declared_license_id = declared_license_id
self.license_comment = license_comment
self.copyright_text = copyright_text
self.summary = summary
self.description = description
self.comment = comment
self.dosocs2_dir_code = dosocs2_dir_code
class PackageFile:
def __init__(self, package_file_id, package_id, file_id, concluded_license_id, license_comment, file_name):
self.package_file_id = package_file_id
self.package_id = package_id
self.file_id = file_id
self.concluded_license_id = concluded_license_id
self.license_comment = license_comment
self.file_name = file_name
class DocumentNamespace:
def __init__(self, document_namespace_id, uri):
self.document_namespace_id = document_namespace_id
self.uri = uri
class Document:
def __init__(self,
document_id,
document_namespace_id,
data_license_id,
spdx_version,
name,
license_list_version,
created_ts,
creator_comment,
document_comment,
package_id):
self.document_id = document_id
self.document_namespace_id = document_namespace_id
self.data_license_id = data_license_id
self.spdx_version = spdx_version
self.name = name
self.license_list_version = license_list_version
self.created_ts = created_ts
self.creator_comment = creator_comment
self.document_comment = document_comment
self.package_id = package_id
class ExternalRef:
def __init__(self, external_ref_id, document_id, document_namespace_id, id_string, sha256):
self.external_ref_id = external_ref_id
self.document_id = document_id
self.document_namespace_id = document_namespace_id
self.id_string = id_string
self.sha256 = sha256
class DocumentCreator:
def __init__(self, document_creator_id, document_id, creator_id):
self.document_creator_id = document_creator_id
self.document_id = document_id
self.creator_id = creator_id
class FileContributor:
def __init__(self, file_contributor_id, file_id, contributor):
self.file_contributor_id = file_contributor_id
self.file_id = file_id
self.contributor = contributor
class Identifier:
def __init__(self, identifier_id, document_namespace_id, id_string, document_id, package_id, package_file_id):
self.identifier_id = identifier_id
self.document_namespace_id = document_namespace_id
self.id_string = id_string
self.document_id = document_id
self.package_id = package_id
self.package_file_id = package_file_id
class RelationshipType:
def __init__(self, relationship_type_id, name):
self.relationship_type_id = relationship_type_id
self.name = name
class Relationship:
def __init__(self,
relationship_id,
left_identifier_id,
right_identifier_id,
relationship_type_id,
relationship_comment):
self.relationship_id = relationship_id
self.left_identifier_id = left_identifier_id
self.right_identifier_id = right_identifier_id
self.relationship_type_id = relationship_type_id
self.relationship_comment = relationship_comment
class AnnotationType:
def __init__(self, annotation_type_id, name):
self.annotation_type_id = annotation_type_id,
self.name = name
class Annotation:
def __init__(self, annotation_id, document_id, annotation_type_id, identifier_id, creator_id, created_ts, comment):
self.annotation_id = annotation_id
self.document_id = document_id
self.annotation_type_id = annotation_type_id
self.identifier_id = identifier_id
self.creator_id = creator_id
self.created_ts = created_ts
self.comment = comment
class Scanner:
def __init__(self, scanner_id, name):
self.scanner_id = scanner_id
self.name = name
class PackageScan:
def __init__(self, package_scan_id, package_id, scanner_id):
self.package_scan_id = package_scan_id
self.package_id = package_id
self.scanner_id = scanner_id
class FileScan:
def __init__(self, file_scan_id, file_id, scanner_id):
self.file_scan_id = file_scan_id
self.file_id = file_id
self.scanner_id = scanner_id
class Queries:
def __init__(self, host, port, username, password):
# TODO starts database connection
return
def get_license(self, projectId):
# TODO gets license/licenses from the projectId
return
def get_creators(self, projectId):
# TODO gets the creators of the project
return
def get_files(self, projectId):
# TODO gets files of a project
return
def close(self):
# TODO closes database connection
return
| class License:
def __init__(self, license_id, name, short_name, cross_reference, comment, is_spdx_official):
self.license_id = license_id
self.name = name
self.short_name = short_name
self.cross_reference = cross_reference
self.comment = comment
self.is_spdx_official = is_spdx_official
class Filetype:
def __init__(self, file_type_id, name):
self.file_type_id = file_type_id
self.name = name
class Project:
def __init__(self, project_id, name, homepage, uri):
self.project_id = project_id
self.name = name
self.homepage = homepage
self.uri = uri
class File:
def __init__(self, file_id, file_type_id, sha256, copyright_text, project_id, comment, notice):
self.file_id = file_id
self.file_type_id = file_type_id
self.sha256 = sha256
self.copyright_text = copyright_text
self.project_id = project_id
self.comment = comment
self.notice = notice
class Filelicense:
def __init__(self, file_license_id, file_id, license_id, extracted_text):
self.file_license_id = file_license_id
self.file_id = file_id
self.license_id = license_id
self.extracted_text = extracted_text
class Creatortype:
def __init__(self, creator_type_id, name):
self.creator_type_id = creator_type_id
self.name = name
class Creator:
def __init__(self, creator_id, creator_type_id, name, email):
self.creator_id = creator_id
self.creator_type_id = creator_type_id
self.name = name
self.email = email
class Package:
def __init__(self, package_id, name, version, file_name, supplier_id, originator_id, download_location, verification_code, ver_code_excluded_file_id, sha256, home_page, source_info, concluded_license_id, declared_license_id, license_comment, copyright_text, summary, description, comment, dosocs2_dir_code):
self.package_id = package_id
self.name = name
self.version = version
self.file_name = file_name
self.supplier_id = supplier_id
self.originator_id = originator_id
self.download_location = download_location
self.verification_code = verification_code
self.ver_code_excluded_file_id = ver_code_excluded_file_id
self.sha256 = sha256
self.home_page = home_page
self.source_info = source_info
self.concluded_license_id = concluded_license_id
self.declared_license_id = declared_license_id
self.license_comment = license_comment
self.copyright_text = copyright_text
self.summary = summary
self.description = description
self.comment = comment
self.dosocs2_dir_code = dosocs2_dir_code
class Packagefile:
def __init__(self, package_file_id, package_id, file_id, concluded_license_id, license_comment, file_name):
self.package_file_id = package_file_id
self.package_id = package_id
self.file_id = file_id
self.concluded_license_id = concluded_license_id
self.license_comment = license_comment
self.file_name = file_name
class Documentnamespace:
def __init__(self, document_namespace_id, uri):
self.document_namespace_id = document_namespace_id
self.uri = uri
class Document:
def __init__(self, document_id, document_namespace_id, data_license_id, spdx_version, name, license_list_version, created_ts, creator_comment, document_comment, package_id):
self.document_id = document_id
self.document_namespace_id = document_namespace_id
self.data_license_id = data_license_id
self.spdx_version = spdx_version
self.name = name
self.license_list_version = license_list_version
self.created_ts = created_ts
self.creator_comment = creator_comment
self.document_comment = document_comment
self.package_id = package_id
class Externalref:
def __init__(self, external_ref_id, document_id, document_namespace_id, id_string, sha256):
self.external_ref_id = external_ref_id
self.document_id = document_id
self.document_namespace_id = document_namespace_id
self.id_string = id_string
self.sha256 = sha256
class Documentcreator:
def __init__(self, document_creator_id, document_id, creator_id):
self.document_creator_id = document_creator_id
self.document_id = document_id
self.creator_id = creator_id
class Filecontributor:
def __init__(self, file_contributor_id, file_id, contributor):
self.file_contributor_id = file_contributor_id
self.file_id = file_id
self.contributor = contributor
class Identifier:
def __init__(self, identifier_id, document_namespace_id, id_string, document_id, package_id, package_file_id):
self.identifier_id = identifier_id
self.document_namespace_id = document_namespace_id
self.id_string = id_string
self.document_id = document_id
self.package_id = package_id
self.package_file_id = package_file_id
class Relationshiptype:
def __init__(self, relationship_type_id, name):
self.relationship_type_id = relationship_type_id
self.name = name
class Relationship:
def __init__(self, relationship_id, left_identifier_id, right_identifier_id, relationship_type_id, relationship_comment):
self.relationship_id = relationship_id
self.left_identifier_id = left_identifier_id
self.right_identifier_id = right_identifier_id
self.relationship_type_id = relationship_type_id
self.relationship_comment = relationship_comment
class Annotationtype:
def __init__(self, annotation_type_id, name):
self.annotation_type_id = (annotation_type_id,)
self.name = name
class Annotation:
def __init__(self, annotation_id, document_id, annotation_type_id, identifier_id, creator_id, created_ts, comment):
self.annotation_id = annotation_id
self.document_id = document_id
self.annotation_type_id = annotation_type_id
self.identifier_id = identifier_id
self.creator_id = creator_id
self.created_ts = created_ts
self.comment = comment
class Scanner:
def __init__(self, scanner_id, name):
self.scanner_id = scanner_id
self.name = name
class Packagescan:
def __init__(self, package_scan_id, package_id, scanner_id):
self.package_scan_id = package_scan_id
self.package_id = package_id
self.scanner_id = scanner_id
class Filescan:
def __init__(self, file_scan_id, file_id, scanner_id):
self.file_scan_id = file_scan_id
self.file_id = file_id
self.scanner_id = scanner_id
class Queries:
def __init__(self, host, port, username, password):
return
def get_license(self, projectId):
return
def get_creators(self, projectId):
return
def get_files(self, projectId):
return
def close(self):
return |
def largestNumber(array):
extval, ans = [], ""
l = len(str(max(array))) + 1
for i in array:
temp = str(i) * l
extval.append((temp[:l:], i))
extval.sort(reverse = True)
for i in extval:
ans += str(i[1])
if int(ans)==0:
return "0"
return ans
for t in range(int(input())):
n=int(input())
arr=list(map(int,input().split()))
print(largestNumber(arr)) | def largest_number(array):
(extval, ans) = ([], '')
l = len(str(max(array))) + 1
for i in array:
temp = str(i) * l
extval.append((temp[:l], i))
extval.sort(reverse=True)
for i in extval:
ans += str(i[1])
if int(ans) == 0:
return '0'
return ans
for t in range(int(input())):
n = int(input())
arr = list(map(int, input().split()))
print(largest_number(arr)) |
# Copyright 2012 Google Inc. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may not
# use this file except in compliance with the License. You may obtain a copy
# of the License at: http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software distrib-
# uted 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
# specific language governing permissions and limitations under the License.
XTB_LANGUAGES = [
"af",
"am",
"ar",
"bg",
"bn",
"ca",
"cs",
"da",
"de",
"el",
"en-GB",
"es",
"es-419",
"es-MX",
"et",
"eu",
"fa",
"fi",
"fil",
"fr",
"fr-CA",
"gl",
"gu",
"hi",
"hr",
"hu",
"id",
"is",
"it",
"iw",
"ja",
"km",
"kn",
"ko",
"lo",
"lt",
"lv",
"ml",
"mr",
"ms",
"my",
"ne",
"nl",
"no",
"pl",
"pt-BR",
"pt-PT",
"ro",
"ru",
"si",
"sk",
"sl",
"sr",
"sv",
"sw",
"ta",
"te",
"th",
"tr",
"uk",
"ur",
"vi",
"zh-CN",
"zh-HK",
"zh-TW",
"zu",
]
ALL_LANGUAGES = XTB_LANGUAGES + ["en"]
| xtb_languages = ['af', 'am', 'ar', 'bg', 'bn', 'ca', 'cs', 'da', 'de', 'el', 'en-GB', 'es', 'es-419', 'es-MX', 'et', 'eu', 'fa', 'fi', 'fil', 'fr', 'fr-CA', 'gl', 'gu', 'hi', 'hr', 'hu', 'id', 'is', 'it', 'iw', 'ja', 'km', 'kn', 'ko', 'lo', 'lt', 'lv', 'ml', 'mr', 'ms', 'my', 'ne', 'nl', 'no', 'pl', 'pt-BR', 'pt-PT', 'ro', 'ru', 'si', 'sk', 'sl', 'sr', 'sv', 'sw', 'ta', 'te', 'th', 'tr', 'uk', 'ur', 'vi', 'zh-CN', 'zh-HK', 'zh-TW', 'zu']
all_languages = XTB_LANGUAGES + ['en'] |
#
# PySNMP MIB module OSPF-PRIVATE-MIB (http://snmplabs.com/pysmi)
# ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/OSPF-PRIVATE-MIB
# Produced by pysmi-0.3.4 at Mon Apr 29 20:26:28 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)
#
ObjectIdentifier, OctetString, Integer = mibBuilder.importSymbols("ASN1", "ObjectIdentifier", "OctetString", "Integer")
NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues")
ConstraintsUnion, ConstraintsIntersection, ValueRangeConstraint, SingleValueConstraint, ValueSizeConstraint = mibBuilder.importSymbols("ASN1-REFINEMENT", "ConstraintsUnion", "ConstraintsIntersection", "ValueRangeConstraint", "SingleValueConstraint", "ValueSizeConstraint")
cjnProtocol, = mibBuilder.importSymbols("Cajun-ROOT", "cjnProtocol")
RouterID, TOSType, AreaID, Metric = mibBuilder.importSymbols("OSPF-MIB", "RouterID", "TOSType", "AreaID", "Metric")
ModuleCompliance, NotificationGroup = mibBuilder.importSymbols("SNMPv2-CONF", "ModuleCompliance", "NotificationGroup")
TimeTicks, NotificationType, Bits, Gauge32, ModuleIdentity, Unsigned32, Integer32, IpAddress, Counter64, ObjectIdentity, Counter32, MibIdentifier, MibScalar, MibTable, MibTableRow, MibTableColumn, iso = mibBuilder.importSymbols("SNMPv2-SMI", "TimeTicks", "NotificationType", "Bits", "Gauge32", "ModuleIdentity", "Unsigned32", "Integer32", "IpAddress", "Counter64", "ObjectIdentity", "Counter32", "MibIdentifier", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "iso")
RowStatus, TextualConvention, DisplayString = mibBuilder.importSymbols("SNMPv2-TC", "RowStatus", "TextualConvention", "DisplayString")
cjnOspf = ModuleIdentity((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9))
if mibBuilder.loadTexts: cjnOspf.setLastUpdated('9903020000Z')
if mibBuilder.loadTexts: cjnOspf.setOrganization("Lucent's Concord Technology Center (CTC)")
cjnOspfGblConfGroup = MibIdentifier((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 1))
cjnOspfRouterId = MibScalar((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 1, 1), RouterID()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: cjnOspfRouterId.setStatus('current')
cjnOspfPathSplit = MibScalar((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 1, 2), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: cjnOspfPathSplit.setStatus('current')
cjnOspfPeMax = MibScalar((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 1, 3), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: cjnOspfPeMax.setStatus('current')
cjnOspfSpfState = MibScalar((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("disable", 0), ("enable", 1)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: cjnOspfSpfState.setStatus('current')
cjnOspfAsbdrStatus = MibScalar((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("disable", 0), ("enable", 1)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: cjnOspfAsbdrStatus.setStatus('current')
cjnOspfAutoVLinkCreate = MibScalar((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("disable", 0), ("enable", 1)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: cjnOspfAutoVLinkCreate.setStatus('current')
cjnOspfSpfHold = MibScalar((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 1, 7), Integer32().clone(3)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: cjnOspfSpfHold.setStatus('current')
cjnOspfSpfSuspendTime = MibScalar((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 1, 8), Integer32().clone(1000)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: cjnOspfSpfSuspendTime.setStatus('current')
cjnOspfLocalExtType = MibScalar((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 1, 9), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 2))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: cjnOspfLocalExtType.setStatus('current')
cjnOspfRipExtType = MibScalar((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 1, 10), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 2))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: cjnOspfRipExtType.setStatus('current')
cjnOspfSpfStaticExtType = MibScalar((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 1, 11), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 2))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: cjnOspfSpfStaticExtType.setStatus('current')
cjnOspfLowExtType = MibScalar((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 1, 12), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 2))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: cjnOspfLowExtType.setStatus('current')
cjnOspfTraceFlags = MibScalar((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 1, 13), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("disable", 0), ("enable", 1)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: cjnOspfTraceFlags.setStatus('current')
cjnOspfGlobalStatsReset = MibScalar((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 1, 14), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enable", 1), ("disable", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: cjnOspfGlobalStatsReset.setStatus('current')
cjnOspfGblStatsGroup = MibIdentifier((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 2))
cjnOspfTOSCount = MibScalar((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 2, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfTOSCount.setStatus('current')
cjnOspfRunSpf = MibScalar((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 2, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfRunSpf.setStatus('current')
cjnOspfAbdrStatus = MibScalar((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 2, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("disable", 0), ("enable", 1)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfAbdrStatus.setStatus('current')
cjnOspfTxNewLsa = MibScalar((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 2, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfTxNewLsa.setStatus('current')
cjnOspfRxNewLsa = MibScalar((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 2, 5), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfRxNewLsa.setStatus('current')
cjnOspfRxHelloCnt = MibScalar((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 2, 6), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfRxHelloCnt.setStatus('current')
cjnOspfTxHelloCnt = MibScalar((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 2, 7), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfTxHelloCnt.setStatus('current')
cjnOspfRxDBDescCnt = MibScalar((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 2, 8), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfRxDBDescCnt.setStatus('current')
cjnOspfTxDBDescCnt = MibScalar((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 2, 9), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfTxDBDescCnt.setStatus('current')
cjnOspfRxLsaAckCnt = MibScalar((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 2, 10), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfRxLsaAckCnt.setStatus('current')
cjnOspfTxLsaAckCnt = MibScalar((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 2, 11), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfTxLsaAckCnt.setStatus('current')
cjnOspfRxLsaUpdCnt = MibScalar((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 2, 12), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfRxLsaUpdCnt.setStatus('current')
cjnOspfTxLsaUpdCnt = MibScalar((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 2, 13), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfTxLsaUpdCnt.setStatus('current')
cjnOspfRxLsaReqCnt = MibScalar((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 2, 14), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfRxLsaReqCnt.setStatus('current')
cjnOspfTxLsaReqCnt = MibScalar((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 2, 15), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfTxLsaReqCnt.setStatus('current')
cjnOspfIfTable = MibTable((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 3), )
if mibBuilder.loadTexts: cjnOspfIfTable.setStatus('current')
cjnOspfIfEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 3, 1), ).setIndexNames((0, "OSPF-PRIVATE-MIB", "cjnOspfIfIpAddress"))
if mibBuilder.loadTexts: cjnOspfIfEntry.setStatus('current')
cjnOspfIfIpAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 3, 1, 1), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfIfIpAddress.setStatus('current')
cjnOspfIfRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 3, 1, 2), RowStatus()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: cjnOspfIfRowStatus.setStatus('current')
cjnOspfIfAreaId = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 3, 1, 3), AreaID()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: cjnOspfIfAreaId.setStatus('current')
cjnOspfIfMask = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 3, 1, 4), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfIfMask.setStatus('current')
cjnOspfIfType = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 3, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("bcast", 1), ("nbma", 2), ("pointToPoint", 3), ("pointToMultiPoint", 4)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfIfType.setStatus('current')
cjnOspfIfCost = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 3, 1, 6), Integer32()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: cjnOspfIfCost.setStatus('current')
cjnOspfIfDrRouterId = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 3, 1, 7), RouterID()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfIfDrRouterId.setStatus('current')
cjnOspfIfDrIpAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 3, 1, 8), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfIfDrIpAddr.setStatus('current')
cjnOspfIfBDrRouterId = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 3, 1, 9), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfIfBDrRouterId.setStatus('current')
cjnOspfIfDrState = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 3, 1, 10), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfIfDrState.setStatus('current')
cjnOspfIfHelloTimer = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 3, 1, 11), Integer32()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: cjnOspfIfHelloTimer.setStatus('current')
cjnOspfIfDeadInterval = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 3, 1, 12), Integer32()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: cjnOspfIfDeadInterval.setStatus('current')
cjnOspfIfRtrPriority = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 3, 1, 13), Integer32()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: cjnOspfIfRtrPriority.setStatus('current')
cjnOspfIfRxmtTimer = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 3, 1, 14), Integer32()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: cjnOspfIfRxmtTimer.setStatus('current')
cjnOspfIfTransitDelay = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 3, 1, 15), Integer32()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: cjnOspfIfTransitDelay.setStatus('current')
cjnOspfIfAuthKey = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 3, 1, 16), OctetString().subtype(subtypeSpec=ValueSizeConstraint(1, 8))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: cjnOspfIfAuthKey.setStatus('current')
cjnOspfIfMd5KeyId = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 3, 1, 17), Integer32()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: cjnOspfIfMd5KeyId.setStatus('current')
cjnOspfIfMd5KeyFlags = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 3, 1, 18), OctetString().subtype(subtypeSpec=ValueSizeConstraint(1, 1)).setFixedLength(1)).setMaxAccess("readcreate")
if mibBuilder.loadTexts: cjnOspfIfMd5KeyFlags.setStatus('current')
cjnOspfIfMd5Key = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 3, 1, 19), OctetString().subtype(subtypeSpec=ValueSizeConstraint(1, 16))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: cjnOspfIfMd5Key.setStatus('current')
cjnOspfIfAuthType = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 3, 1, 20), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("none", 0), ("simple", 1), ("md5", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: cjnOspfIfAuthType.setStatus('current')
cjnOspfIfMtu = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 3, 1, 21), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfIfMtu.setStatus('current')
cjnOspfIfPollInterval = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 3, 1, 22), Integer32().clone(120)).setMaxAccess("readcreate")
if mibBuilder.loadTexts: cjnOspfIfPollInterval.setStatus('current')
cjnOspfVirtIfTable = MibTable((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 4), )
if mibBuilder.loadTexts: cjnOspfVirtIfTable.setStatus('current')
cjnOspfVirtIfEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 4, 1), ).setIndexNames((0, "OSPF-PRIVATE-MIB", "cjnOspfVirtIfAreaId"), (0, "OSPF-PRIVATE-MIB", "cjnOspfVirtIfNbrRtrId"))
if mibBuilder.loadTexts: cjnOspfVirtIfEntry.setStatus('current')
cjnOspfVirtIfAreaId = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 4, 1, 1), AreaID()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: cjnOspfVirtIfAreaId.setStatus('current')
cjnOspfVirtIfNbrRtrId = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 4, 1, 2), RouterID()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: cjnOspfVirtIfNbrRtrId.setStatus('current')
cjnOspfVirtIfRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 4, 1, 3), RowStatus()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: cjnOspfVirtIfRowStatus.setStatus('current')
cjnOspfVirtIfDrRouterId = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 4, 1, 4), RouterID()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfVirtIfDrRouterId.setStatus('current')
cjnOspfVirtIfDrIpAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 4, 1, 5), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfVirtIfDrIpAddr.setStatus('current')
cjnOspfVirtIfBDrRouterId = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 4, 1, 6), RouterID()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfVirtIfBDrRouterId.setStatus('current')
cjnOspfVirtIfDrState = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 4, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("notDesignatedRouter", 1), ("desigatedRouter", 2), ("backupDesignatedRouter", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfVirtIfDrState.setStatus('current')
cjnOspfVirtIfHelloTimer = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 4, 1, 8), Integer32()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: cjnOspfVirtIfHelloTimer.setStatus('current')
cjnOspfVirtIfDeadInterval = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 4, 1, 9), Integer32()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: cjnOspfVirtIfDeadInterval.setStatus('current')
cjnOspfVirtIfRtrPriority = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 4, 1, 10), Integer32()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: cjnOspfVirtIfRtrPriority.setStatus('current')
cjnOspfVirtIfRxmtTimer = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 4, 1, 11), Integer32()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: cjnOspfVirtIfRxmtTimer.setStatus('current')
cjnOspfVirtIfTransitDelay = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 4, 1, 12), Integer32()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: cjnOspfVirtIfTransitDelay.setStatus('current')
cjnOspfVirtIfAuthKey = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 4, 1, 13), OctetString().subtype(subtypeSpec=ValueSizeConstraint(1, 8))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: cjnOspfVirtIfAuthKey.setStatus('current')
cjnOspfVirtIfMd5Key = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 4, 1, 14), OctetString().subtype(subtypeSpec=ValueSizeConstraint(1, 16))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: cjnOspfVirtIfMd5Key.setStatus('current')
cjnOspfVirtIfMd5KeyId = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 4, 1, 15), Integer32()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: cjnOspfVirtIfMd5KeyId.setStatus('current')
cjnOspfVirtIfMd5KeyFlags = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 4, 1, 16), OctetString().subtype(subtypeSpec=ValueSizeConstraint(1, 8))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: cjnOspfVirtIfMd5KeyFlags.setStatus('current')
cjnOspfVirtIfAuthType = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 4, 1, 17), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("none", 0), ("simple", 1), ("md5", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: cjnOspfVirtIfAuthType.setStatus('current')
cjnOspfAreaTable = MibTable((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 5), )
if mibBuilder.loadTexts: cjnOspfAreaTable.setStatus('current')
cjnOspfAreaEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 5, 1), ).setIndexNames((0, "OSPF-PRIVATE-MIB", "cjnOspfAreaId"))
if mibBuilder.loadTexts: cjnOspfAreaEntry.setStatus('current')
cjnOspfAreaId = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 5, 1, 1), AreaID()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfAreaId.setStatus('current')
cjnOspfAreaRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 5, 1, 2), RowStatus()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: cjnOspfAreaRowStatus.setStatus('current')
cjnOspfAreaType = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 5, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("nonStub", 0), ("stub", 1), ("nssa", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: cjnOspfAreaType.setStatus('current')
cjnOspfAreaTranslate = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 5, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("noTranslation", 0), ("translate", 1)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: cjnOspfAreaTranslate.setStatus('current')
cjnOspfAreaStubCost = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 5, 1, 5), Integer32()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: cjnOspfAreaStubCost.setStatus('current')
cjnOspfAreaT3Filter = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 5, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("noFiltering", 0), ("filter", 1)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: cjnOspfAreaT3Filter.setStatus('current')
cjnOspfAreaSpfRuns = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 5, 1, 7), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfAreaSpfRuns.setStatus('current')
cjnOspfAreaAbdrCnt = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 5, 1, 8), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfAreaAbdrCnt.setStatus('current')
cjnOspfAreaAsbdrCnt = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 5, 1, 9), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfAreaAsbdrCnt.setStatus('current')
cjnOspfAreaNetCnt = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 5, 1, 10), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfAreaNetCnt.setStatus('current')
cjnOspfCnfgRangeTable = MibTable((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 6), )
if mibBuilder.loadTexts: cjnOspfCnfgRangeTable.setStatus('obsolete')
cjnOspfCnfgRangeEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 6, 1), ).setIndexNames((0, "OSPF-PRIVATE-MIB", "cjnOspfCnfgRangeAreaId"), (0, "OSPF-PRIVATE-MIB", "cjnOspfCnfgRangeIpAddr"), (0, "OSPF-PRIVATE-MIB", "cjnOspfCnfgRangeMask"))
if mibBuilder.loadTexts: cjnOspfCnfgRangeEntry.setStatus('obsolete')
cjnOspfCnfgRangeAreaId = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 6, 1, 1), AreaID()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: cjnOspfCnfgRangeAreaId.setStatus('current')
cjnOspfCnfgRangeIpAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 6, 1, 2), IpAddress()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: cjnOspfCnfgRangeIpAddr.setStatus('current')
cjnOspfCnfgRangeMask = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 6, 1, 3), IpAddress()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: cjnOspfCnfgRangeMask.setStatus('current')
cjnOspfCnfgRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 6, 1, 4), RowStatus()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: cjnOspfCnfgRowStatus.setStatus('current')
cjnOspfCnfgRangeAdv = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 6, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("notAdvertising", 0), ("advertising", 1)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: cjnOspfCnfgRangeAdv.setStatus('current')
cjnOspfNbrTable = MibTable((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 7), )
if mibBuilder.loadTexts: cjnOspfNbrTable.setStatus('current')
cjnOspfNbrEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 7, 1), ).setIndexNames((0, "OSPF-PRIVATE-MIB", "cjnOspfNbrIpAddr"))
if mibBuilder.loadTexts: cjnOspfNbrEntry.setStatus('current')
cjnOspfNbrIpAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 7, 1, 1), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfNbrIpAddr.setStatus('current')
cjnOspfNbrState = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 7, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8))).clone(namedValues=NamedValues(("down", 1), ("attempt", 2), ("init", 3), ("twoWay", 4), ("exchangeStart", 5), ("exchange", 6), ("loading", 7), ("full", 8)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfNbrState.setStatus('current')
cjnOspfNbrRtrId = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 7, 1, 3), RouterID()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfNbrRtrId.setStatus('current')
cjnOspfNbrMasterSlave = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 7, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("slave", 0), ("master", 1)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfNbrMasterSlave.setStatus('current')
cjnOspfNbrDrIpAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 7, 1, 5), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfNbrDrIpAddr.setStatus('current')
cjnOspfNbrBackUpIpAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 7, 1, 6), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfNbrBackUpIpAddr.setStatus('current')
cjnOspfNbrDDNum = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 7, 1, 7), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfNbrDDNum.setStatus('current')
cjnOspfLsaHdrTable = MibTable((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 8), )
if mibBuilder.loadTexts: cjnOspfLsaHdrTable.setStatus('current')
cjnOspfLsaHdrEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 8, 1), ).setIndexNames((0, "OSPF-PRIVATE-MIB", "cjnOspfLsaHdrAreaId"), (0, "OSPF-PRIVATE-MIB", "cjnOspfLsaHdrLsaType"), (0, "OSPF-PRIVATE-MIB", "cjnOspfLsaHdrAdvRtrId"), (0, "OSPF-PRIVATE-MIB", "cjnOspfLsaHdrLsId"))
if mibBuilder.loadTexts: cjnOspfLsaHdrEntry.setStatus('current')
cjnOspfLsaHdrAreaId = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 8, 1, 1), AreaID()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfLsaHdrAreaId.setStatus('current')
cjnOspfLsaHdrLsaType = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 8, 1, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfLsaHdrLsaType.setStatus('current')
cjnOspfLsaHdrAdvRtrId = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 8, 1, 3), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfLsaHdrAdvRtrId.setStatus('current')
cjnOspfLsaHdrLsId = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 8, 1, 4), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfLsaHdrLsId.setStatus('current')
cjnOspfLsaHdrLsaAge = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 8, 1, 5), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfLsaHdrLsaAge.setStatus('current')
cjnOspfLsaHdrChecksum = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 8, 1, 6), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfLsaHdrChecksum.setStatus('current')
cjnOspfLsaHdrSequence = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 8, 1, 7), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfLsaHdrSequence.setStatus('current')
cjnOspfExtLsdbTable = MibTable((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 9), )
if mibBuilder.loadTexts: cjnOspfExtLsdbTable.setStatus('current')
cjnOspfExtLsdbEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 9, 1), ).setIndexNames((0, "OSPF-PRIVATE-MIB", "cjnOspfExtLsdbType"), (0, "OSPF-PRIVATE-MIB", "cjnOspfExtLsdbAdvRtrId"), (0, "OSPF-PRIVATE-MIB", "cjnOspfExtLsdbLsId"))
if mibBuilder.loadTexts: cjnOspfExtLsdbEntry.setStatus('current')
cjnOspfExtLsdbType = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 9, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfExtLsdbType.setStatus('current')
cjnOspfExtLsdbAdvRtrId = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 9, 1, 2), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfExtLsdbAdvRtrId.setStatus('current')
cjnOspfExtLsdbLsId = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 9, 1, 3), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfExtLsdbLsId.setStatus('current')
cjnOspfExtLsdbAge = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 9, 1, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfExtLsdbAge.setStatus('current')
cjnOspfExtLsdbLsdbChecksum = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 9, 1, 5), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfExtLsdbLsdbChecksum.setStatus('current')
cjnOspfExtLsdbSequence = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 9, 1, 6), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfExtLsdbSequence.setStatus('current')
cjnOspfExtLsdNetMask = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 9, 1, 7), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfExtLsdNetMask.setStatus('current')
cjnOspfExtLsdbTOS = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 9, 1, 8), TOSType()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfExtLsdbTOS.setStatus('current')
cjnOspfExtLsdbMetric = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 9, 1, 9), Metric()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfExtLsdbMetric.setStatus('current')
cjnOspfExtLsdForwardingAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 9, 1, 10), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfExtLsdForwardingAddress.setStatus('current')
cjnOspfExtLsdbRouteTag = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 9, 1, 11), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfExtLsdbRouteTag.setStatus('current')
cjnOspfNetLsdbTable = MibTable((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 10), )
if mibBuilder.loadTexts: cjnOspfNetLsdbTable.setStatus('current')
cjnOspfNetLsdbEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 10, 1), ).setIndexNames((0, "OSPF-PRIVATE-MIB", "cjnOspfNetLsdbAreaId"), (0, "OSPF-PRIVATE-MIB", "cjnOspfNetLsdbType"), (0, "OSPF-PRIVATE-MIB", "cjnOspfNetLsdbAdvRtrId"), (0, "OSPF-PRIVATE-MIB", "cjnOspfNetLsdbLsId"))
if mibBuilder.loadTexts: cjnOspfNetLsdbEntry.setStatus('current')
cjnOspfNetLsdbAreaId = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 10, 1, 1), AreaID()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfNetLsdbAreaId.setStatus('current')
cjnOspfNetLsdbType = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 10, 1, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfNetLsdbType.setStatus('current')
cjnOspfNetLsdbAdvRtrId = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 10, 1, 3), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfNetLsdbAdvRtrId.setStatus('current')
cjnOspfNetLsdbLsId = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 10, 1, 4), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfNetLsdbLsId.setStatus('current')
cjnOspfNetLsdbAge = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 10, 1, 5), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfNetLsdbAge.setStatus('current')
cjnOspfNetLsdbLsdbChecksum = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 10, 1, 6), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfNetLsdbLsdbChecksum.setStatus('current')
cjnOspfNetLsdbSequence = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 10, 1, 7), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfNetLsdbSequence.setStatus('current')
cjnOspfNetLsdNetMask = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 10, 1, 8), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfNetLsdNetMask.setStatus('current')
cjnOspfRouterLsdbTable = MibTable((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 11), )
if mibBuilder.loadTexts: cjnOspfRouterLsdbTable.setStatus('current')
cjnOspfRouterLsdbEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 11, 1), ).setIndexNames((0, "OSPF-PRIVATE-MIB", "cjnOspfRouterLsdbAreaId"), (0, "OSPF-PRIVATE-MIB", "cjnOspfRouterLsdbType"), (0, "OSPF-PRIVATE-MIB", "cjnOspfRouterLsdbRtrId"), (0, "OSPF-PRIVATE-MIB", "cjnOspfRouterLsdbLsId"))
if mibBuilder.loadTexts: cjnOspfRouterLsdbEntry.setStatus('current')
cjnOspfRouterLsdbAreaId = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 11, 1, 1), AreaID()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfRouterLsdbAreaId.setStatus('current')
cjnOspfRouterLsdbType = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 11, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("bcast", 1), ("nbma", 2), ("pointToPoint", 3), ("pointToMultiPoint", 4)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfRouterLsdbType.setStatus('current')
cjnOspfRouterLsdbRtrId = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 11, 1, 3), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfRouterLsdbRtrId.setStatus('current')
cjnOspfRouterLsdbLsId = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 11, 1, 4), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfRouterLsdbLsId.setStatus('current')
cjnOspfRouterLsdbLinkData = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 11, 1, 5), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfRouterLsdbLinkData.setStatus('current')
cjnOspfRouterLsdbNumOfTos = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 11, 1, 6), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfRouterLsdbNumOfTos.setStatus('current')
cjnOspfRouterLsdbMet = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 11, 1, 7), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfRouterLsdbMet.setStatus('current')
cjnOspfRouterLsaHdrTable = MibTable((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 12), )
if mibBuilder.loadTexts: cjnOspfRouterLsaHdrTable.setStatus('current')
cjnOspfRouterLsaHdrEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 12, 1), ).setIndexNames((0, "OSPF-PRIVATE-MIB", "cjnOspfRouterLsaHdrAreaId"), (0, "OSPF-PRIVATE-MIB", "cjnOspfRouterLsaHdrType"), (0, "OSPF-PRIVATE-MIB", "cjnOspfRouterLsaHdrAdvRtrId"), (0, "OSPF-PRIVATE-MIB", "cjnOspfRouterLsaHdrLsId"))
if mibBuilder.loadTexts: cjnOspfRouterLsaHdrEntry.setStatus('current')
cjnOspfRouterLsaHdrAreaId = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 12, 1, 1), AreaID()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfRouterLsaHdrAreaId.setStatus('current')
cjnOspfRouterLsaHdrType = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 12, 1, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfRouterLsaHdrType.setStatus('current')
cjnOspfRouterLsaHdrAdvRtrId = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 12, 1, 3), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfRouterLsaHdrAdvRtrId.setStatus('current')
cjnOspfRouterLsaHdrLsId = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 12, 1, 4), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfRouterLsaHdrLsId.setStatus('current')
cjnOspfRouterLsaHdrAge = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 12, 1, 5), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfRouterLsaHdrAge.setStatus('current')
cjnOspfRouterLsaHdrChecksum = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 12, 1, 6), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfRouterLsaHdrChecksum.setStatus('current')
cjnOspfRouterLsaHdrSequence = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 12, 1, 7), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfRouterLsaHdrSequence.setStatus('current')
cjnOspfRouterLsaHdrFlags = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 12, 1, 8), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfRouterLsaHdrFlags.setStatus('current')
cjnOspfRouterLsaHdrLinkCount = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 12, 1, 9), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfRouterLsaHdrLinkCount.setStatus('current')
cjnOspfSumLsaTable = MibTable((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 13), )
if mibBuilder.loadTexts: cjnOspfSumLsaTable.setStatus('current')
cjnOspfSumLsaEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 13, 1), ).setIndexNames((0, "OSPF-PRIVATE-MIB", "cjnOspfSumLsaType"), (0, "OSPF-PRIVATE-MIB", "cjnOspfSumLsaAdvRtrId"), (0, "OSPF-PRIVATE-MIB", "cjnOspfSumLsaLsId"))
if mibBuilder.loadTexts: cjnOspfSumLsaEntry.setStatus('current')
cjnOspfSumLsaType = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 13, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfSumLsaType.setStatus('current')
cjnOspfSumLsaAdvRtrId = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 13, 1, 2), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfSumLsaAdvRtrId.setStatus('current')
cjnOspfSumLsaLsId = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 13, 1, 3), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfSumLsaLsId.setStatus('current')
cjnOspfSumLsaLsdbAge = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 13, 1, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfSumLsaLsdbAge.setStatus('current')
cjnOspfSumLsaChecksum = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 13, 1, 5), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfSumLsaChecksum.setStatus('current')
cjnOspfSumLsaSequence = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 13, 1, 6), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfSumLsaSequence.setStatus('current')
cjnOspfSumLsaMask = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 13, 1, 7), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfSumLsaMask.setStatus('current')
cjnOspfSumLsaTOS = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 13, 1, 8), TOSType()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfSumLsaTOS.setStatus('current')
cjnOspfSumLsaMetric = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 13, 1, 9), Metric()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfSumLsaMetric.setStatus('current')
mibBuilder.exportSymbols("OSPF-PRIVATE-MIB", cjnOspfSumLsaType=cjnOspfSumLsaType, cjnOspfVirtIfDrRouterId=cjnOspfVirtIfDrRouterId, cjnOspfIfRxmtTimer=cjnOspfIfRxmtTimer, cjnOspfRouterLsaHdrLsId=cjnOspfRouterLsaHdrLsId, cjnOspfIfRtrPriority=cjnOspfIfRtrPriority, cjnOspfTxDBDescCnt=cjnOspfTxDBDescCnt, cjnOspfRouterLsdbAreaId=cjnOspfRouterLsdbAreaId, cjnOspfNbrBackUpIpAddr=cjnOspfNbrBackUpIpAddr, cjnOspfTxLsaAckCnt=cjnOspfTxLsaAckCnt, cjnOspfSumLsaTable=cjnOspfSumLsaTable, cjnOspfCnfgRangeMask=cjnOspfCnfgRangeMask, cjnOspfNetLsdbAge=cjnOspfNetLsdbAge, cjnOspfRouterLsaHdrLinkCount=cjnOspfRouterLsaHdrLinkCount, cjnOspfIfDrIpAddr=cjnOspfIfDrIpAddr, cjnOspfCnfgRangeIpAddr=cjnOspfCnfgRangeIpAddr, cjnOspfNbrDrIpAddr=cjnOspfNbrDrIpAddr, cjnOspfIfTable=cjnOspfIfTable, cjnOspfExtLsdbAge=cjnOspfExtLsdbAge, cjnOspfExtLsdbEntry=cjnOspfExtLsdbEntry, cjnOspfNbrTable=cjnOspfNbrTable, cjnOspfExtLsdbRouteTag=cjnOspfExtLsdbRouteTag, cjnOspfExtLsdbType=cjnOspfExtLsdbType, cjnOspfNbrEntry=cjnOspfNbrEntry, cjnOspfNbrDDNum=cjnOspfNbrDDNum, cjnOspfExtLsdbLsdbChecksum=cjnOspfExtLsdbLsdbChecksum, cjnOspfAutoVLinkCreate=cjnOspfAutoVLinkCreate, cjnOspfSumLsaChecksum=cjnOspfSumLsaChecksum, cjnOspfAbdrStatus=cjnOspfAbdrStatus, cjnOspfAreaId=cjnOspfAreaId, cjnOspfExtLsdbAdvRtrId=cjnOspfExtLsdbAdvRtrId, cjnOspfAreaRowStatus=cjnOspfAreaRowStatus, cjnOspfVirtIfAuthType=cjnOspfVirtIfAuthType, cjnOspfVirtIfAreaId=cjnOspfVirtIfAreaId, cjnOspfSpfHold=cjnOspfSpfHold, cjnOspfIfDrState=cjnOspfIfDrState, cjnOspfNetLsdbAdvRtrId=cjnOspfNetLsdbAdvRtrId, cjnOspfRouterLsdbNumOfTos=cjnOspfRouterLsdbNumOfTos, cjnOspfSpfStaticExtType=cjnOspfSpfStaticExtType, cjnOspfSumLsaEntry=cjnOspfSumLsaEntry, cjnOspfVirtIfRtrPriority=cjnOspfVirtIfRtrPriority, cjnOspfLsaHdrLsaAge=cjnOspfLsaHdrLsaAge, cjnOspfRouterLsaHdrAreaId=cjnOspfRouterLsaHdrAreaId, cjnOspfRunSpf=cjnOspfRunSpf, cjnOspfAreaType=cjnOspfAreaType, cjnOspfAreaAbdrCnt=cjnOspfAreaAbdrCnt, cjnOspfRouterLsaHdrFlags=cjnOspfRouterLsaHdrFlags, cjnOspfRouterLsaHdrAdvRtrId=cjnOspfRouterLsaHdrAdvRtrId, cjnOspfSumLsaMetric=cjnOspfSumLsaMetric, cjnOspfAreaTranslate=cjnOspfAreaTranslate, cjnOspfLsaHdrTable=cjnOspfLsaHdrTable, cjnOspfNetLsdbType=cjnOspfNetLsdbType, cjnOspfIfMd5Key=cjnOspfIfMd5Key, cjnOspfExtLsdbSequence=cjnOspfExtLsdbSequence, cjnOspfVirtIfNbrRtrId=cjnOspfVirtIfNbrRtrId, cjnOspfVirtIfDeadInterval=cjnOspfVirtIfDeadInterval, cjnOspfLocalExtType=cjnOspfLocalExtType, cjnOspfVirtIfMd5KeyId=cjnOspfVirtIfMd5KeyId, cjnOspfRxLsaAckCnt=cjnOspfRxLsaAckCnt, cjnOspfNbrMasterSlave=cjnOspfNbrMasterSlave, cjnOspfTraceFlags=cjnOspfTraceFlags, cjnOspfVirtIfTable=cjnOspfVirtIfTable, cjnOspfSpfSuspendTime=cjnOspfSpfSuspendTime, cjnOspfTxHelloCnt=cjnOspfTxHelloCnt, cjnOspfRxHelloCnt=cjnOspfRxHelloCnt, cjnOspfLsaHdrAreaId=cjnOspfLsaHdrAreaId, cjnOspfIfPollInterval=cjnOspfIfPollInterval, cjnOspfExtLsdbLsId=cjnOspfExtLsdbLsId, cjnOspfIfType=cjnOspfIfType, cjnOspfRouterLsdbLsId=cjnOspfRouterLsdbLsId, cjnOspfIfMtu=cjnOspfIfMtu, cjnOspfCnfgRowStatus=cjnOspfCnfgRowStatus, cjnOspfRouterLsaHdrTable=cjnOspfRouterLsaHdrTable, cjnOspfNbrRtrId=cjnOspfNbrRtrId, cjnOspfExtLsdNetMask=cjnOspfExtLsdNetMask, cjnOspfSumLsaLsdbAge=cjnOspfSumLsaLsdbAge, cjnOspfLowExtType=cjnOspfLowExtType, cjnOspfAreaAsbdrCnt=cjnOspfAreaAsbdrCnt, cjnOspfPathSplit=cjnOspfPathSplit, cjnOspfVirtIfEntry=cjnOspfVirtIfEntry, cjnOspfNetLsdbEntry=cjnOspfNetLsdbEntry, cjnOspfNetLsdNetMask=cjnOspfNetLsdNetMask, cjnOspfLsaHdrLsId=cjnOspfLsaHdrLsId, cjnOspfIfEntry=cjnOspfIfEntry, cjnOspfVirtIfHelloTimer=cjnOspfVirtIfHelloTimer, cjnOspfTxNewLsa=cjnOspfTxNewLsa, cjnOspfLsaHdrEntry=cjnOspfLsaHdrEntry, cjnOspfExtLsdForwardingAddress=cjnOspfExtLsdForwardingAddress, cjnOspfAreaTable=cjnOspfAreaTable, cjnOspfIfAuthType=cjnOspfIfAuthType, cjnOspfRxDBDescCnt=cjnOspfRxDBDescCnt, cjnOspfIfIpAddress=cjnOspfIfIpAddress, PYSNMP_MODULE_ID=cjnOspf, cjnOspfRouterLsdbTable=cjnOspfRouterLsdbTable, cjnOspfIfMd5KeyId=cjnOspfIfMd5KeyId, cjnOspfTxLsaReqCnt=cjnOspfTxLsaReqCnt, cjnOspfLsaHdrAdvRtrId=cjnOspfLsaHdrAdvRtrId, cjnOspfRouterLsaHdrEntry=cjnOspfRouterLsaHdrEntry, cjnOspfNetLsdbAreaId=cjnOspfNetLsdbAreaId, cjnOspfGblConfGroup=cjnOspfGblConfGroup, cjnOspfRouterId=cjnOspfRouterId, cjnOspfCnfgRangeTable=cjnOspfCnfgRangeTable, cjnOspfGblStatsGroup=cjnOspfGblStatsGroup, cjnOspfPeMax=cjnOspfPeMax, cjnOspfNetLsdbSequence=cjnOspfNetLsdbSequence, cjnOspfIfRowStatus=cjnOspfIfRowStatus, cjnOspfVirtIfAuthKey=cjnOspfVirtIfAuthKey, cjnOspfVirtIfMd5Key=cjnOspfVirtIfMd5Key, cjnOspfIfCost=cjnOspfIfCost, cjnOspfTOSCount=cjnOspfTOSCount, cjnOspfVirtIfRowStatus=cjnOspfVirtIfRowStatus, cjnOspfVirtIfBDrRouterId=cjnOspfVirtIfBDrRouterId, cjnOspfRouterLsdbType=cjnOspfRouterLsdbType, cjnOspfRouterLsaHdrType=cjnOspfRouterLsaHdrType, cjnOspfCnfgRangeAdv=cjnOspfCnfgRangeAdv, cjnOspfRouterLsaHdrSequence=cjnOspfRouterLsaHdrSequence, cjnOspfSumLsaTOS=cjnOspfSumLsaTOS, cjnOspfIfAreaId=cjnOspfIfAreaId, cjnOspfRouterLsaHdrChecksum=cjnOspfRouterLsaHdrChecksum, cjnOspfRouterLsdbLinkData=cjnOspfRouterLsdbLinkData, cjnOspfAreaNetCnt=cjnOspfAreaNetCnt, cjnOspfRouterLsdbMet=cjnOspfRouterLsdbMet, cjnOspfRipExtType=cjnOspfRipExtType, cjnOspfExtLsdbTOS=cjnOspfExtLsdbTOS, cjnOspfRouterLsdbEntry=cjnOspfRouterLsdbEntry, cjnOspfIfBDrRouterId=cjnOspfIfBDrRouterId, cjnOspfRxLsaReqCnt=cjnOspfRxLsaReqCnt, cjnOspfRxLsaUpdCnt=cjnOspfRxLsaUpdCnt, cjnOspfRouterLsdbRtrId=cjnOspfRouterLsdbRtrId, cjnOspfSumLsaMask=cjnOspfSumLsaMask, cjnOspfSumLsaSequence=cjnOspfSumLsaSequence, cjnOspfNetLsdbTable=cjnOspfNetLsdbTable, cjnOspfVirtIfDrIpAddr=cjnOspfVirtIfDrIpAddr, cjnOspfVirtIfRxmtTimer=cjnOspfVirtIfRxmtTimer, cjnOspfRxNewLsa=cjnOspfRxNewLsa, cjnOspfVirtIfTransitDelay=cjnOspfVirtIfTransitDelay, cjnOspfVirtIfMd5KeyFlags=cjnOspfVirtIfMd5KeyFlags, cjnOspfNbrIpAddr=cjnOspfNbrIpAddr, cjnOspfIfDrRouterId=cjnOspfIfDrRouterId, cjnOspfIfAuthKey=cjnOspfIfAuthKey, cjnOspfNbrState=cjnOspfNbrState, cjnOspfCnfgRangeAreaId=cjnOspfCnfgRangeAreaId, cjnOspfSpfState=cjnOspfSpfState, cjnOspfGlobalStatsReset=cjnOspfGlobalStatsReset, cjnOspfLsaHdrLsaType=cjnOspfLsaHdrLsaType, cjnOspfAsbdrStatus=cjnOspfAsbdrStatus, cjnOspfSumLsaAdvRtrId=cjnOspfSumLsaAdvRtrId, cjnOspfNetLsdbLsdbChecksum=cjnOspfNetLsdbLsdbChecksum, cjnOspfSumLsaLsId=cjnOspfSumLsaLsId, cjnOspfLsaHdrChecksum=cjnOspfLsaHdrChecksum, cjnOspfLsaHdrSequence=cjnOspfLsaHdrSequence, cjnOspfIfTransitDelay=cjnOspfIfTransitDelay, cjnOspfVirtIfDrState=cjnOspfVirtIfDrState, cjnOspfAreaSpfRuns=cjnOspfAreaSpfRuns, cjnOspfIfDeadInterval=cjnOspfIfDeadInterval, cjnOspfCnfgRangeEntry=cjnOspfCnfgRangeEntry, cjnOspfAreaT3Filter=cjnOspfAreaT3Filter, cjnOspfExtLsdbTable=cjnOspfExtLsdbTable, cjnOspfAreaEntry=cjnOspfAreaEntry, cjnOspf=cjnOspf, cjnOspfExtLsdbMetric=cjnOspfExtLsdbMetric, cjnOspfRouterLsaHdrAge=cjnOspfRouterLsaHdrAge, cjnOspfAreaStubCost=cjnOspfAreaStubCost, cjnOspfIfMask=cjnOspfIfMask, cjnOspfNetLsdbLsId=cjnOspfNetLsdbLsId, cjnOspfIfHelloTimer=cjnOspfIfHelloTimer, cjnOspfIfMd5KeyFlags=cjnOspfIfMd5KeyFlags, cjnOspfTxLsaUpdCnt=cjnOspfTxLsaUpdCnt)
| (object_identifier, octet_string, integer) = mibBuilder.importSymbols('ASN1', 'ObjectIdentifier', 'OctetString', 'Integer')
(named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues')
(constraints_union, constraints_intersection, value_range_constraint, single_value_constraint, value_size_constraint) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'ConstraintsUnion', 'ConstraintsIntersection', 'ValueRangeConstraint', 'SingleValueConstraint', 'ValueSizeConstraint')
(cjn_protocol,) = mibBuilder.importSymbols('Cajun-ROOT', 'cjnProtocol')
(router_id, tos_type, area_id, metric) = mibBuilder.importSymbols('OSPF-MIB', 'RouterID', 'TOSType', 'AreaID', 'Metric')
(module_compliance, notification_group) = mibBuilder.importSymbols('SNMPv2-CONF', 'ModuleCompliance', 'NotificationGroup')
(time_ticks, notification_type, bits, gauge32, module_identity, unsigned32, integer32, ip_address, counter64, object_identity, counter32, mib_identifier, mib_scalar, mib_table, mib_table_row, mib_table_column, iso) = mibBuilder.importSymbols('SNMPv2-SMI', 'TimeTicks', 'NotificationType', 'Bits', 'Gauge32', 'ModuleIdentity', 'Unsigned32', 'Integer32', 'IpAddress', 'Counter64', 'ObjectIdentity', 'Counter32', 'MibIdentifier', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn', 'iso')
(row_status, textual_convention, display_string) = mibBuilder.importSymbols('SNMPv2-TC', 'RowStatus', 'TextualConvention', 'DisplayString')
cjn_ospf = module_identity((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9))
if mibBuilder.loadTexts:
cjnOspf.setLastUpdated('9903020000Z')
if mibBuilder.loadTexts:
cjnOspf.setOrganization("Lucent's Concord Technology Center (CTC)")
cjn_ospf_gbl_conf_group = mib_identifier((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 1))
cjn_ospf_router_id = mib_scalar((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 1, 1), router_id()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
cjnOspfRouterId.setStatus('current')
cjn_ospf_path_split = mib_scalar((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 1, 2), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
cjnOspfPathSplit.setStatus('current')
cjn_ospf_pe_max = mib_scalar((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 1, 3), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
cjnOspfPeMax.setStatus('current')
cjn_ospf_spf_state = mib_scalar((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('disable', 0), ('enable', 1)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
cjnOspfSpfState.setStatus('current')
cjn_ospf_asbdr_status = mib_scalar((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('disable', 0), ('enable', 1)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
cjnOspfAsbdrStatus.setStatus('current')
cjn_ospf_auto_v_link_create = mib_scalar((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('disable', 0), ('enable', 1)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
cjnOspfAutoVLinkCreate.setStatus('current')
cjn_ospf_spf_hold = mib_scalar((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 1, 7), integer32().clone(3)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
cjnOspfSpfHold.setStatus('current')
cjn_ospf_spf_suspend_time = mib_scalar((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 1, 8), integer32().clone(1000)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
cjnOspfSpfSuspendTime.setStatus('current')
cjn_ospf_local_ext_type = mib_scalar((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 1, 9), integer32().subtype(subtypeSpec=value_range_constraint(1, 2))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
cjnOspfLocalExtType.setStatus('current')
cjn_ospf_rip_ext_type = mib_scalar((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 1, 10), integer32().subtype(subtypeSpec=value_range_constraint(1, 2))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
cjnOspfRipExtType.setStatus('current')
cjn_ospf_spf_static_ext_type = mib_scalar((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 1, 11), integer32().subtype(subtypeSpec=value_range_constraint(1, 2))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
cjnOspfSpfStaticExtType.setStatus('current')
cjn_ospf_low_ext_type = mib_scalar((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 1, 12), integer32().subtype(subtypeSpec=value_range_constraint(1, 2))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
cjnOspfLowExtType.setStatus('current')
cjn_ospf_trace_flags = mib_scalar((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 1, 13), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('disable', 0), ('enable', 1)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
cjnOspfTraceFlags.setStatus('current')
cjn_ospf_global_stats_reset = mib_scalar((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 1, 14), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enable', 1), ('disable', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
cjnOspfGlobalStatsReset.setStatus('current')
cjn_ospf_gbl_stats_group = mib_identifier((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 2))
cjn_ospf_tos_count = mib_scalar((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 2, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfTOSCount.setStatus('current')
cjn_ospf_run_spf = mib_scalar((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 2, 2), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfRunSpf.setStatus('current')
cjn_ospf_abdr_status = mib_scalar((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 2, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('disable', 0), ('enable', 1)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfAbdrStatus.setStatus('current')
cjn_ospf_tx_new_lsa = mib_scalar((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 2, 4), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfTxNewLsa.setStatus('current')
cjn_ospf_rx_new_lsa = mib_scalar((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 2, 5), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfRxNewLsa.setStatus('current')
cjn_ospf_rx_hello_cnt = mib_scalar((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 2, 6), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfRxHelloCnt.setStatus('current')
cjn_ospf_tx_hello_cnt = mib_scalar((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 2, 7), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfTxHelloCnt.setStatus('current')
cjn_ospf_rx_db_desc_cnt = mib_scalar((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 2, 8), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfRxDBDescCnt.setStatus('current')
cjn_ospf_tx_db_desc_cnt = mib_scalar((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 2, 9), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfTxDBDescCnt.setStatus('current')
cjn_ospf_rx_lsa_ack_cnt = mib_scalar((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 2, 10), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfRxLsaAckCnt.setStatus('current')
cjn_ospf_tx_lsa_ack_cnt = mib_scalar((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 2, 11), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfTxLsaAckCnt.setStatus('current')
cjn_ospf_rx_lsa_upd_cnt = mib_scalar((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 2, 12), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfRxLsaUpdCnt.setStatus('current')
cjn_ospf_tx_lsa_upd_cnt = mib_scalar((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 2, 13), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfTxLsaUpdCnt.setStatus('current')
cjn_ospf_rx_lsa_req_cnt = mib_scalar((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 2, 14), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfRxLsaReqCnt.setStatus('current')
cjn_ospf_tx_lsa_req_cnt = mib_scalar((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 2, 15), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfTxLsaReqCnt.setStatus('current')
cjn_ospf_if_table = mib_table((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 3))
if mibBuilder.loadTexts:
cjnOspfIfTable.setStatus('current')
cjn_ospf_if_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 3, 1)).setIndexNames((0, 'OSPF-PRIVATE-MIB', 'cjnOspfIfIpAddress'))
if mibBuilder.loadTexts:
cjnOspfIfEntry.setStatus('current')
cjn_ospf_if_ip_address = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 3, 1, 1), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfIfIpAddress.setStatus('current')
cjn_ospf_if_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 3, 1, 2), row_status()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
cjnOspfIfRowStatus.setStatus('current')
cjn_ospf_if_area_id = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 3, 1, 3), area_id()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
cjnOspfIfAreaId.setStatus('current')
cjn_ospf_if_mask = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 3, 1, 4), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfIfMask.setStatus('current')
cjn_ospf_if_type = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 3, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4))).clone(namedValues=named_values(('bcast', 1), ('nbma', 2), ('pointToPoint', 3), ('pointToMultiPoint', 4)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfIfType.setStatus('current')
cjn_ospf_if_cost = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 3, 1, 6), integer32()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
cjnOspfIfCost.setStatus('current')
cjn_ospf_if_dr_router_id = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 3, 1, 7), router_id()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfIfDrRouterId.setStatus('current')
cjn_ospf_if_dr_ip_addr = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 3, 1, 8), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfIfDrIpAddr.setStatus('current')
cjn_ospf_if_b_dr_router_id = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 3, 1, 9), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfIfBDrRouterId.setStatus('current')
cjn_ospf_if_dr_state = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 3, 1, 10), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfIfDrState.setStatus('current')
cjn_ospf_if_hello_timer = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 3, 1, 11), integer32()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
cjnOspfIfHelloTimer.setStatus('current')
cjn_ospf_if_dead_interval = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 3, 1, 12), integer32()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
cjnOspfIfDeadInterval.setStatus('current')
cjn_ospf_if_rtr_priority = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 3, 1, 13), integer32()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
cjnOspfIfRtrPriority.setStatus('current')
cjn_ospf_if_rxmt_timer = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 3, 1, 14), integer32()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
cjnOspfIfRxmtTimer.setStatus('current')
cjn_ospf_if_transit_delay = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 3, 1, 15), integer32()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
cjnOspfIfTransitDelay.setStatus('current')
cjn_ospf_if_auth_key = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 3, 1, 16), octet_string().subtype(subtypeSpec=value_size_constraint(1, 8))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
cjnOspfIfAuthKey.setStatus('current')
cjn_ospf_if_md5_key_id = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 3, 1, 17), integer32()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
cjnOspfIfMd5KeyId.setStatus('current')
cjn_ospf_if_md5_key_flags = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 3, 1, 18), octet_string().subtype(subtypeSpec=value_size_constraint(1, 1)).setFixedLength(1)).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
cjnOspfIfMd5KeyFlags.setStatus('current')
cjn_ospf_if_md5_key = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 3, 1, 19), octet_string().subtype(subtypeSpec=value_size_constraint(1, 16))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
cjnOspfIfMd5Key.setStatus('current')
cjn_ospf_if_auth_type = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 3, 1, 20), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('none', 0), ('simple', 1), ('md5', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
cjnOspfIfAuthType.setStatus('current')
cjn_ospf_if_mtu = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 3, 1, 21), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfIfMtu.setStatus('current')
cjn_ospf_if_poll_interval = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 3, 1, 22), integer32().clone(120)).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
cjnOspfIfPollInterval.setStatus('current')
cjn_ospf_virt_if_table = mib_table((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 4))
if mibBuilder.loadTexts:
cjnOspfVirtIfTable.setStatus('current')
cjn_ospf_virt_if_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 4, 1)).setIndexNames((0, 'OSPF-PRIVATE-MIB', 'cjnOspfVirtIfAreaId'), (0, 'OSPF-PRIVATE-MIB', 'cjnOspfVirtIfNbrRtrId'))
if mibBuilder.loadTexts:
cjnOspfVirtIfEntry.setStatus('current')
cjn_ospf_virt_if_area_id = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 4, 1, 1), area_id()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
cjnOspfVirtIfAreaId.setStatus('current')
cjn_ospf_virt_if_nbr_rtr_id = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 4, 1, 2), router_id()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
cjnOspfVirtIfNbrRtrId.setStatus('current')
cjn_ospf_virt_if_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 4, 1, 3), row_status()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
cjnOspfVirtIfRowStatus.setStatus('current')
cjn_ospf_virt_if_dr_router_id = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 4, 1, 4), router_id()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfVirtIfDrRouterId.setStatus('current')
cjn_ospf_virt_if_dr_ip_addr = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 4, 1, 5), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfVirtIfDrIpAddr.setStatus('current')
cjn_ospf_virt_if_b_dr_router_id = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 4, 1, 6), router_id()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfVirtIfBDrRouterId.setStatus('current')
cjn_ospf_virt_if_dr_state = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 4, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('notDesignatedRouter', 1), ('desigatedRouter', 2), ('backupDesignatedRouter', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfVirtIfDrState.setStatus('current')
cjn_ospf_virt_if_hello_timer = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 4, 1, 8), integer32()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
cjnOspfVirtIfHelloTimer.setStatus('current')
cjn_ospf_virt_if_dead_interval = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 4, 1, 9), integer32()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
cjnOspfVirtIfDeadInterval.setStatus('current')
cjn_ospf_virt_if_rtr_priority = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 4, 1, 10), integer32()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
cjnOspfVirtIfRtrPriority.setStatus('current')
cjn_ospf_virt_if_rxmt_timer = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 4, 1, 11), integer32()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
cjnOspfVirtIfRxmtTimer.setStatus('current')
cjn_ospf_virt_if_transit_delay = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 4, 1, 12), integer32()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
cjnOspfVirtIfTransitDelay.setStatus('current')
cjn_ospf_virt_if_auth_key = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 4, 1, 13), octet_string().subtype(subtypeSpec=value_size_constraint(1, 8))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
cjnOspfVirtIfAuthKey.setStatus('current')
cjn_ospf_virt_if_md5_key = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 4, 1, 14), octet_string().subtype(subtypeSpec=value_size_constraint(1, 16))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
cjnOspfVirtIfMd5Key.setStatus('current')
cjn_ospf_virt_if_md5_key_id = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 4, 1, 15), integer32()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
cjnOspfVirtIfMd5KeyId.setStatus('current')
cjn_ospf_virt_if_md5_key_flags = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 4, 1, 16), octet_string().subtype(subtypeSpec=value_size_constraint(1, 8))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
cjnOspfVirtIfMd5KeyFlags.setStatus('current')
cjn_ospf_virt_if_auth_type = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 4, 1, 17), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('none', 0), ('simple', 1), ('md5', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
cjnOspfVirtIfAuthType.setStatus('current')
cjn_ospf_area_table = mib_table((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 5))
if mibBuilder.loadTexts:
cjnOspfAreaTable.setStatus('current')
cjn_ospf_area_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 5, 1)).setIndexNames((0, 'OSPF-PRIVATE-MIB', 'cjnOspfAreaId'))
if mibBuilder.loadTexts:
cjnOspfAreaEntry.setStatus('current')
cjn_ospf_area_id = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 5, 1, 1), area_id()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfAreaId.setStatus('current')
cjn_ospf_area_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 5, 1, 2), row_status()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
cjnOspfAreaRowStatus.setStatus('current')
cjn_ospf_area_type = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 5, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('nonStub', 0), ('stub', 1), ('nssa', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
cjnOspfAreaType.setStatus('current')
cjn_ospf_area_translate = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 5, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('noTranslation', 0), ('translate', 1)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
cjnOspfAreaTranslate.setStatus('current')
cjn_ospf_area_stub_cost = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 5, 1, 5), integer32()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
cjnOspfAreaStubCost.setStatus('current')
cjn_ospf_area_t3_filter = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 5, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('noFiltering', 0), ('filter', 1)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
cjnOspfAreaT3Filter.setStatus('current')
cjn_ospf_area_spf_runs = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 5, 1, 7), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfAreaSpfRuns.setStatus('current')
cjn_ospf_area_abdr_cnt = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 5, 1, 8), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfAreaAbdrCnt.setStatus('current')
cjn_ospf_area_asbdr_cnt = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 5, 1, 9), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfAreaAsbdrCnt.setStatus('current')
cjn_ospf_area_net_cnt = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 5, 1, 10), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfAreaNetCnt.setStatus('current')
cjn_ospf_cnfg_range_table = mib_table((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 6))
if mibBuilder.loadTexts:
cjnOspfCnfgRangeTable.setStatus('obsolete')
cjn_ospf_cnfg_range_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 6, 1)).setIndexNames((0, 'OSPF-PRIVATE-MIB', 'cjnOspfCnfgRangeAreaId'), (0, 'OSPF-PRIVATE-MIB', 'cjnOspfCnfgRangeIpAddr'), (0, 'OSPF-PRIVATE-MIB', 'cjnOspfCnfgRangeMask'))
if mibBuilder.loadTexts:
cjnOspfCnfgRangeEntry.setStatus('obsolete')
cjn_ospf_cnfg_range_area_id = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 6, 1, 1), area_id()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
cjnOspfCnfgRangeAreaId.setStatus('current')
cjn_ospf_cnfg_range_ip_addr = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 6, 1, 2), ip_address()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
cjnOspfCnfgRangeIpAddr.setStatus('current')
cjn_ospf_cnfg_range_mask = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 6, 1, 3), ip_address()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
cjnOspfCnfgRangeMask.setStatus('current')
cjn_ospf_cnfg_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 6, 1, 4), row_status()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
cjnOspfCnfgRowStatus.setStatus('current')
cjn_ospf_cnfg_range_adv = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 6, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('notAdvertising', 0), ('advertising', 1)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
cjnOspfCnfgRangeAdv.setStatus('current')
cjn_ospf_nbr_table = mib_table((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 7))
if mibBuilder.loadTexts:
cjnOspfNbrTable.setStatus('current')
cjn_ospf_nbr_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 7, 1)).setIndexNames((0, 'OSPF-PRIVATE-MIB', 'cjnOspfNbrIpAddr'))
if mibBuilder.loadTexts:
cjnOspfNbrEntry.setStatus('current')
cjn_ospf_nbr_ip_addr = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 7, 1, 1), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfNbrIpAddr.setStatus('current')
cjn_ospf_nbr_state = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 7, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8))).clone(namedValues=named_values(('down', 1), ('attempt', 2), ('init', 3), ('twoWay', 4), ('exchangeStart', 5), ('exchange', 6), ('loading', 7), ('full', 8)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfNbrState.setStatus('current')
cjn_ospf_nbr_rtr_id = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 7, 1, 3), router_id()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfNbrRtrId.setStatus('current')
cjn_ospf_nbr_master_slave = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 7, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('slave', 0), ('master', 1)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfNbrMasterSlave.setStatus('current')
cjn_ospf_nbr_dr_ip_addr = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 7, 1, 5), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfNbrDrIpAddr.setStatus('current')
cjn_ospf_nbr_back_up_ip_addr = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 7, 1, 6), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfNbrBackUpIpAddr.setStatus('current')
cjn_ospf_nbr_dd_num = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 7, 1, 7), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfNbrDDNum.setStatus('current')
cjn_ospf_lsa_hdr_table = mib_table((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 8))
if mibBuilder.loadTexts:
cjnOspfLsaHdrTable.setStatus('current')
cjn_ospf_lsa_hdr_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 8, 1)).setIndexNames((0, 'OSPF-PRIVATE-MIB', 'cjnOspfLsaHdrAreaId'), (0, 'OSPF-PRIVATE-MIB', 'cjnOspfLsaHdrLsaType'), (0, 'OSPF-PRIVATE-MIB', 'cjnOspfLsaHdrAdvRtrId'), (0, 'OSPF-PRIVATE-MIB', 'cjnOspfLsaHdrLsId'))
if mibBuilder.loadTexts:
cjnOspfLsaHdrEntry.setStatus('current')
cjn_ospf_lsa_hdr_area_id = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 8, 1, 1), area_id()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfLsaHdrAreaId.setStatus('current')
cjn_ospf_lsa_hdr_lsa_type = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 8, 1, 2), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfLsaHdrLsaType.setStatus('current')
cjn_ospf_lsa_hdr_adv_rtr_id = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 8, 1, 3), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfLsaHdrAdvRtrId.setStatus('current')
cjn_ospf_lsa_hdr_ls_id = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 8, 1, 4), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfLsaHdrLsId.setStatus('current')
cjn_ospf_lsa_hdr_lsa_age = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 8, 1, 5), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfLsaHdrLsaAge.setStatus('current')
cjn_ospf_lsa_hdr_checksum = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 8, 1, 6), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfLsaHdrChecksum.setStatus('current')
cjn_ospf_lsa_hdr_sequence = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 8, 1, 7), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfLsaHdrSequence.setStatus('current')
cjn_ospf_ext_lsdb_table = mib_table((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 9))
if mibBuilder.loadTexts:
cjnOspfExtLsdbTable.setStatus('current')
cjn_ospf_ext_lsdb_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 9, 1)).setIndexNames((0, 'OSPF-PRIVATE-MIB', 'cjnOspfExtLsdbType'), (0, 'OSPF-PRIVATE-MIB', 'cjnOspfExtLsdbAdvRtrId'), (0, 'OSPF-PRIVATE-MIB', 'cjnOspfExtLsdbLsId'))
if mibBuilder.loadTexts:
cjnOspfExtLsdbEntry.setStatus('current')
cjn_ospf_ext_lsdb_type = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 9, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfExtLsdbType.setStatus('current')
cjn_ospf_ext_lsdb_adv_rtr_id = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 9, 1, 2), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfExtLsdbAdvRtrId.setStatus('current')
cjn_ospf_ext_lsdb_ls_id = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 9, 1, 3), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfExtLsdbLsId.setStatus('current')
cjn_ospf_ext_lsdb_age = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 9, 1, 4), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfExtLsdbAge.setStatus('current')
cjn_ospf_ext_lsdb_lsdb_checksum = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 9, 1, 5), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfExtLsdbLsdbChecksum.setStatus('current')
cjn_ospf_ext_lsdb_sequence = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 9, 1, 6), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfExtLsdbSequence.setStatus('current')
cjn_ospf_ext_lsd_net_mask = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 9, 1, 7), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfExtLsdNetMask.setStatus('current')
cjn_ospf_ext_lsdb_tos = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 9, 1, 8), tos_type()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfExtLsdbTOS.setStatus('current')
cjn_ospf_ext_lsdb_metric = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 9, 1, 9), metric()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfExtLsdbMetric.setStatus('current')
cjn_ospf_ext_lsd_forwarding_address = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 9, 1, 10), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfExtLsdForwardingAddress.setStatus('current')
cjn_ospf_ext_lsdb_route_tag = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 9, 1, 11), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfExtLsdbRouteTag.setStatus('current')
cjn_ospf_net_lsdb_table = mib_table((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 10))
if mibBuilder.loadTexts:
cjnOspfNetLsdbTable.setStatus('current')
cjn_ospf_net_lsdb_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 10, 1)).setIndexNames((0, 'OSPF-PRIVATE-MIB', 'cjnOspfNetLsdbAreaId'), (0, 'OSPF-PRIVATE-MIB', 'cjnOspfNetLsdbType'), (0, 'OSPF-PRIVATE-MIB', 'cjnOspfNetLsdbAdvRtrId'), (0, 'OSPF-PRIVATE-MIB', 'cjnOspfNetLsdbLsId'))
if mibBuilder.loadTexts:
cjnOspfNetLsdbEntry.setStatus('current')
cjn_ospf_net_lsdb_area_id = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 10, 1, 1), area_id()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfNetLsdbAreaId.setStatus('current')
cjn_ospf_net_lsdb_type = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 10, 1, 2), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfNetLsdbType.setStatus('current')
cjn_ospf_net_lsdb_adv_rtr_id = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 10, 1, 3), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfNetLsdbAdvRtrId.setStatus('current')
cjn_ospf_net_lsdb_ls_id = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 10, 1, 4), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfNetLsdbLsId.setStatus('current')
cjn_ospf_net_lsdb_age = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 10, 1, 5), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfNetLsdbAge.setStatus('current')
cjn_ospf_net_lsdb_lsdb_checksum = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 10, 1, 6), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfNetLsdbLsdbChecksum.setStatus('current')
cjn_ospf_net_lsdb_sequence = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 10, 1, 7), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfNetLsdbSequence.setStatus('current')
cjn_ospf_net_lsd_net_mask = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 10, 1, 8), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfNetLsdNetMask.setStatus('current')
cjn_ospf_router_lsdb_table = mib_table((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 11))
if mibBuilder.loadTexts:
cjnOspfRouterLsdbTable.setStatus('current')
cjn_ospf_router_lsdb_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 11, 1)).setIndexNames((0, 'OSPF-PRIVATE-MIB', 'cjnOspfRouterLsdbAreaId'), (0, 'OSPF-PRIVATE-MIB', 'cjnOspfRouterLsdbType'), (0, 'OSPF-PRIVATE-MIB', 'cjnOspfRouterLsdbRtrId'), (0, 'OSPF-PRIVATE-MIB', 'cjnOspfRouterLsdbLsId'))
if mibBuilder.loadTexts:
cjnOspfRouterLsdbEntry.setStatus('current')
cjn_ospf_router_lsdb_area_id = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 11, 1, 1), area_id()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfRouterLsdbAreaId.setStatus('current')
cjn_ospf_router_lsdb_type = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 11, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4))).clone(namedValues=named_values(('bcast', 1), ('nbma', 2), ('pointToPoint', 3), ('pointToMultiPoint', 4)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfRouterLsdbType.setStatus('current')
cjn_ospf_router_lsdb_rtr_id = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 11, 1, 3), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfRouterLsdbRtrId.setStatus('current')
cjn_ospf_router_lsdb_ls_id = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 11, 1, 4), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfRouterLsdbLsId.setStatus('current')
cjn_ospf_router_lsdb_link_data = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 11, 1, 5), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfRouterLsdbLinkData.setStatus('current')
cjn_ospf_router_lsdb_num_of_tos = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 11, 1, 6), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfRouterLsdbNumOfTos.setStatus('current')
cjn_ospf_router_lsdb_met = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 11, 1, 7), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfRouterLsdbMet.setStatus('current')
cjn_ospf_router_lsa_hdr_table = mib_table((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 12))
if mibBuilder.loadTexts:
cjnOspfRouterLsaHdrTable.setStatus('current')
cjn_ospf_router_lsa_hdr_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 12, 1)).setIndexNames((0, 'OSPF-PRIVATE-MIB', 'cjnOspfRouterLsaHdrAreaId'), (0, 'OSPF-PRIVATE-MIB', 'cjnOspfRouterLsaHdrType'), (0, 'OSPF-PRIVATE-MIB', 'cjnOspfRouterLsaHdrAdvRtrId'), (0, 'OSPF-PRIVATE-MIB', 'cjnOspfRouterLsaHdrLsId'))
if mibBuilder.loadTexts:
cjnOspfRouterLsaHdrEntry.setStatus('current')
cjn_ospf_router_lsa_hdr_area_id = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 12, 1, 1), area_id()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfRouterLsaHdrAreaId.setStatus('current')
cjn_ospf_router_lsa_hdr_type = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 12, 1, 2), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfRouterLsaHdrType.setStatus('current')
cjn_ospf_router_lsa_hdr_adv_rtr_id = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 12, 1, 3), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfRouterLsaHdrAdvRtrId.setStatus('current')
cjn_ospf_router_lsa_hdr_ls_id = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 12, 1, 4), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfRouterLsaHdrLsId.setStatus('current')
cjn_ospf_router_lsa_hdr_age = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 12, 1, 5), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfRouterLsaHdrAge.setStatus('current')
cjn_ospf_router_lsa_hdr_checksum = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 12, 1, 6), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfRouterLsaHdrChecksum.setStatus('current')
cjn_ospf_router_lsa_hdr_sequence = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 12, 1, 7), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfRouterLsaHdrSequence.setStatus('current')
cjn_ospf_router_lsa_hdr_flags = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 12, 1, 8), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfRouterLsaHdrFlags.setStatus('current')
cjn_ospf_router_lsa_hdr_link_count = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 12, 1, 9), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfRouterLsaHdrLinkCount.setStatus('current')
cjn_ospf_sum_lsa_table = mib_table((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 13))
if mibBuilder.loadTexts:
cjnOspfSumLsaTable.setStatus('current')
cjn_ospf_sum_lsa_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 13, 1)).setIndexNames((0, 'OSPF-PRIVATE-MIB', 'cjnOspfSumLsaType'), (0, 'OSPF-PRIVATE-MIB', 'cjnOspfSumLsaAdvRtrId'), (0, 'OSPF-PRIVATE-MIB', 'cjnOspfSumLsaLsId'))
if mibBuilder.loadTexts:
cjnOspfSumLsaEntry.setStatus('current')
cjn_ospf_sum_lsa_type = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 13, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfSumLsaType.setStatus('current')
cjn_ospf_sum_lsa_adv_rtr_id = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 13, 1, 2), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfSumLsaAdvRtrId.setStatus('current')
cjn_ospf_sum_lsa_ls_id = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 13, 1, 3), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfSumLsaLsId.setStatus('current')
cjn_ospf_sum_lsa_lsdb_age = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 13, 1, 4), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfSumLsaLsdbAge.setStatus('current')
cjn_ospf_sum_lsa_checksum = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 13, 1, 5), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfSumLsaChecksum.setStatus('current')
cjn_ospf_sum_lsa_sequence = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 13, 1, 6), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfSumLsaSequence.setStatus('current')
cjn_ospf_sum_lsa_mask = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 13, 1, 7), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfSumLsaMask.setStatus('current')
cjn_ospf_sum_lsa_tos = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 13, 1, 8), tos_type()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfSumLsaTOS.setStatus('current')
cjn_ospf_sum_lsa_metric = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 13, 1, 9), metric()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfSumLsaMetric.setStatus('current')
mibBuilder.exportSymbols('OSPF-PRIVATE-MIB', cjnOspfSumLsaType=cjnOspfSumLsaType, cjnOspfVirtIfDrRouterId=cjnOspfVirtIfDrRouterId, cjnOspfIfRxmtTimer=cjnOspfIfRxmtTimer, cjnOspfRouterLsaHdrLsId=cjnOspfRouterLsaHdrLsId, cjnOspfIfRtrPriority=cjnOspfIfRtrPriority, cjnOspfTxDBDescCnt=cjnOspfTxDBDescCnt, cjnOspfRouterLsdbAreaId=cjnOspfRouterLsdbAreaId, cjnOspfNbrBackUpIpAddr=cjnOspfNbrBackUpIpAddr, cjnOspfTxLsaAckCnt=cjnOspfTxLsaAckCnt, cjnOspfSumLsaTable=cjnOspfSumLsaTable, cjnOspfCnfgRangeMask=cjnOspfCnfgRangeMask, cjnOspfNetLsdbAge=cjnOspfNetLsdbAge, cjnOspfRouterLsaHdrLinkCount=cjnOspfRouterLsaHdrLinkCount, cjnOspfIfDrIpAddr=cjnOspfIfDrIpAddr, cjnOspfCnfgRangeIpAddr=cjnOspfCnfgRangeIpAddr, cjnOspfNbrDrIpAddr=cjnOspfNbrDrIpAddr, cjnOspfIfTable=cjnOspfIfTable, cjnOspfExtLsdbAge=cjnOspfExtLsdbAge, cjnOspfExtLsdbEntry=cjnOspfExtLsdbEntry, cjnOspfNbrTable=cjnOspfNbrTable, cjnOspfExtLsdbRouteTag=cjnOspfExtLsdbRouteTag, cjnOspfExtLsdbType=cjnOspfExtLsdbType, cjnOspfNbrEntry=cjnOspfNbrEntry, cjnOspfNbrDDNum=cjnOspfNbrDDNum, cjnOspfExtLsdbLsdbChecksum=cjnOspfExtLsdbLsdbChecksum, cjnOspfAutoVLinkCreate=cjnOspfAutoVLinkCreate, cjnOspfSumLsaChecksum=cjnOspfSumLsaChecksum, cjnOspfAbdrStatus=cjnOspfAbdrStatus, cjnOspfAreaId=cjnOspfAreaId, cjnOspfExtLsdbAdvRtrId=cjnOspfExtLsdbAdvRtrId, cjnOspfAreaRowStatus=cjnOspfAreaRowStatus, cjnOspfVirtIfAuthType=cjnOspfVirtIfAuthType, cjnOspfVirtIfAreaId=cjnOspfVirtIfAreaId, cjnOspfSpfHold=cjnOspfSpfHold, cjnOspfIfDrState=cjnOspfIfDrState, cjnOspfNetLsdbAdvRtrId=cjnOspfNetLsdbAdvRtrId, cjnOspfRouterLsdbNumOfTos=cjnOspfRouterLsdbNumOfTos, cjnOspfSpfStaticExtType=cjnOspfSpfStaticExtType, cjnOspfSumLsaEntry=cjnOspfSumLsaEntry, cjnOspfVirtIfRtrPriority=cjnOspfVirtIfRtrPriority, cjnOspfLsaHdrLsaAge=cjnOspfLsaHdrLsaAge, cjnOspfRouterLsaHdrAreaId=cjnOspfRouterLsaHdrAreaId, cjnOspfRunSpf=cjnOspfRunSpf, cjnOspfAreaType=cjnOspfAreaType, cjnOspfAreaAbdrCnt=cjnOspfAreaAbdrCnt, cjnOspfRouterLsaHdrFlags=cjnOspfRouterLsaHdrFlags, cjnOspfRouterLsaHdrAdvRtrId=cjnOspfRouterLsaHdrAdvRtrId, cjnOspfSumLsaMetric=cjnOspfSumLsaMetric, cjnOspfAreaTranslate=cjnOspfAreaTranslate, cjnOspfLsaHdrTable=cjnOspfLsaHdrTable, cjnOspfNetLsdbType=cjnOspfNetLsdbType, cjnOspfIfMd5Key=cjnOspfIfMd5Key, cjnOspfExtLsdbSequence=cjnOspfExtLsdbSequence, cjnOspfVirtIfNbrRtrId=cjnOspfVirtIfNbrRtrId, cjnOspfVirtIfDeadInterval=cjnOspfVirtIfDeadInterval, cjnOspfLocalExtType=cjnOspfLocalExtType, cjnOspfVirtIfMd5KeyId=cjnOspfVirtIfMd5KeyId, cjnOspfRxLsaAckCnt=cjnOspfRxLsaAckCnt, cjnOspfNbrMasterSlave=cjnOspfNbrMasterSlave, cjnOspfTraceFlags=cjnOspfTraceFlags, cjnOspfVirtIfTable=cjnOspfVirtIfTable, cjnOspfSpfSuspendTime=cjnOspfSpfSuspendTime, cjnOspfTxHelloCnt=cjnOspfTxHelloCnt, cjnOspfRxHelloCnt=cjnOspfRxHelloCnt, cjnOspfLsaHdrAreaId=cjnOspfLsaHdrAreaId, cjnOspfIfPollInterval=cjnOspfIfPollInterval, cjnOspfExtLsdbLsId=cjnOspfExtLsdbLsId, cjnOspfIfType=cjnOspfIfType, cjnOspfRouterLsdbLsId=cjnOspfRouterLsdbLsId, cjnOspfIfMtu=cjnOspfIfMtu, cjnOspfCnfgRowStatus=cjnOspfCnfgRowStatus, cjnOspfRouterLsaHdrTable=cjnOspfRouterLsaHdrTable, cjnOspfNbrRtrId=cjnOspfNbrRtrId, cjnOspfExtLsdNetMask=cjnOspfExtLsdNetMask, cjnOspfSumLsaLsdbAge=cjnOspfSumLsaLsdbAge, cjnOspfLowExtType=cjnOspfLowExtType, cjnOspfAreaAsbdrCnt=cjnOspfAreaAsbdrCnt, cjnOspfPathSplit=cjnOspfPathSplit, cjnOspfVirtIfEntry=cjnOspfVirtIfEntry, cjnOspfNetLsdbEntry=cjnOspfNetLsdbEntry, cjnOspfNetLsdNetMask=cjnOspfNetLsdNetMask, cjnOspfLsaHdrLsId=cjnOspfLsaHdrLsId, cjnOspfIfEntry=cjnOspfIfEntry, cjnOspfVirtIfHelloTimer=cjnOspfVirtIfHelloTimer, cjnOspfTxNewLsa=cjnOspfTxNewLsa, cjnOspfLsaHdrEntry=cjnOspfLsaHdrEntry, cjnOspfExtLsdForwardingAddress=cjnOspfExtLsdForwardingAddress, cjnOspfAreaTable=cjnOspfAreaTable, cjnOspfIfAuthType=cjnOspfIfAuthType, cjnOspfRxDBDescCnt=cjnOspfRxDBDescCnt, cjnOspfIfIpAddress=cjnOspfIfIpAddress, PYSNMP_MODULE_ID=cjnOspf, cjnOspfRouterLsdbTable=cjnOspfRouterLsdbTable, cjnOspfIfMd5KeyId=cjnOspfIfMd5KeyId, cjnOspfTxLsaReqCnt=cjnOspfTxLsaReqCnt, cjnOspfLsaHdrAdvRtrId=cjnOspfLsaHdrAdvRtrId, cjnOspfRouterLsaHdrEntry=cjnOspfRouterLsaHdrEntry, cjnOspfNetLsdbAreaId=cjnOspfNetLsdbAreaId, cjnOspfGblConfGroup=cjnOspfGblConfGroup, cjnOspfRouterId=cjnOspfRouterId, cjnOspfCnfgRangeTable=cjnOspfCnfgRangeTable, cjnOspfGblStatsGroup=cjnOspfGblStatsGroup, cjnOspfPeMax=cjnOspfPeMax, cjnOspfNetLsdbSequence=cjnOspfNetLsdbSequence, cjnOspfIfRowStatus=cjnOspfIfRowStatus, cjnOspfVirtIfAuthKey=cjnOspfVirtIfAuthKey, cjnOspfVirtIfMd5Key=cjnOspfVirtIfMd5Key, cjnOspfIfCost=cjnOspfIfCost, cjnOspfTOSCount=cjnOspfTOSCount, cjnOspfVirtIfRowStatus=cjnOspfVirtIfRowStatus, cjnOspfVirtIfBDrRouterId=cjnOspfVirtIfBDrRouterId, cjnOspfRouterLsdbType=cjnOspfRouterLsdbType, cjnOspfRouterLsaHdrType=cjnOspfRouterLsaHdrType, cjnOspfCnfgRangeAdv=cjnOspfCnfgRangeAdv, cjnOspfRouterLsaHdrSequence=cjnOspfRouterLsaHdrSequence, cjnOspfSumLsaTOS=cjnOspfSumLsaTOS, cjnOspfIfAreaId=cjnOspfIfAreaId, cjnOspfRouterLsaHdrChecksum=cjnOspfRouterLsaHdrChecksum, cjnOspfRouterLsdbLinkData=cjnOspfRouterLsdbLinkData, cjnOspfAreaNetCnt=cjnOspfAreaNetCnt, cjnOspfRouterLsdbMet=cjnOspfRouterLsdbMet, cjnOspfRipExtType=cjnOspfRipExtType, cjnOspfExtLsdbTOS=cjnOspfExtLsdbTOS, cjnOspfRouterLsdbEntry=cjnOspfRouterLsdbEntry, cjnOspfIfBDrRouterId=cjnOspfIfBDrRouterId, cjnOspfRxLsaReqCnt=cjnOspfRxLsaReqCnt, cjnOspfRxLsaUpdCnt=cjnOspfRxLsaUpdCnt, cjnOspfRouterLsdbRtrId=cjnOspfRouterLsdbRtrId, cjnOspfSumLsaMask=cjnOspfSumLsaMask, cjnOspfSumLsaSequence=cjnOspfSumLsaSequence, cjnOspfNetLsdbTable=cjnOspfNetLsdbTable, cjnOspfVirtIfDrIpAddr=cjnOspfVirtIfDrIpAddr, cjnOspfVirtIfRxmtTimer=cjnOspfVirtIfRxmtTimer, cjnOspfRxNewLsa=cjnOspfRxNewLsa, cjnOspfVirtIfTransitDelay=cjnOspfVirtIfTransitDelay, cjnOspfVirtIfMd5KeyFlags=cjnOspfVirtIfMd5KeyFlags, cjnOspfNbrIpAddr=cjnOspfNbrIpAddr, cjnOspfIfDrRouterId=cjnOspfIfDrRouterId, cjnOspfIfAuthKey=cjnOspfIfAuthKey, cjnOspfNbrState=cjnOspfNbrState, cjnOspfCnfgRangeAreaId=cjnOspfCnfgRangeAreaId, cjnOspfSpfState=cjnOspfSpfState, cjnOspfGlobalStatsReset=cjnOspfGlobalStatsReset, cjnOspfLsaHdrLsaType=cjnOspfLsaHdrLsaType, cjnOspfAsbdrStatus=cjnOspfAsbdrStatus, cjnOspfSumLsaAdvRtrId=cjnOspfSumLsaAdvRtrId, cjnOspfNetLsdbLsdbChecksum=cjnOspfNetLsdbLsdbChecksum, cjnOspfSumLsaLsId=cjnOspfSumLsaLsId, cjnOspfLsaHdrChecksum=cjnOspfLsaHdrChecksum, cjnOspfLsaHdrSequence=cjnOspfLsaHdrSequence, cjnOspfIfTransitDelay=cjnOspfIfTransitDelay, cjnOspfVirtIfDrState=cjnOspfVirtIfDrState, cjnOspfAreaSpfRuns=cjnOspfAreaSpfRuns, cjnOspfIfDeadInterval=cjnOspfIfDeadInterval, cjnOspfCnfgRangeEntry=cjnOspfCnfgRangeEntry, cjnOspfAreaT3Filter=cjnOspfAreaT3Filter, cjnOspfExtLsdbTable=cjnOspfExtLsdbTable, cjnOspfAreaEntry=cjnOspfAreaEntry, cjnOspf=cjnOspf, cjnOspfExtLsdbMetric=cjnOspfExtLsdbMetric, cjnOspfRouterLsaHdrAge=cjnOspfRouterLsaHdrAge, cjnOspfAreaStubCost=cjnOspfAreaStubCost, cjnOspfIfMask=cjnOspfIfMask, cjnOspfNetLsdbLsId=cjnOspfNetLsdbLsId, cjnOspfIfHelloTimer=cjnOspfIfHelloTimer, cjnOspfIfMd5KeyFlags=cjnOspfIfMd5KeyFlags, cjnOspfTxLsaUpdCnt=cjnOspfTxLsaUpdCnt) |
# Copyright 2020 Nicole Borrelli
#
# 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 Flags(object):
def __init__(self, parsed=None):
if parsed is not None:
self.no_shuffle = parsed.no_shuffle
self.standard_shops = parsed.standard_shops
self.standard_treasure = parsed.standard_treasure
self.default_start_gear = parsed.default_start_gear
self.debug = parsed.debug
self.boss_shuffle = parsed.boss_shuffle
if parsed.exp_mult is not None:
self.scale_levels = 1.0 / parsed.exp_mult
else:
self.scale_levels = 1.0
else:
self.no_shuffle = False
self.standard_shops = False
self.standard_treasure = False
self.default_start_gear = False
self.debug = False
self.boss_shuffle = False
self.scale_levels = 1.0
def encode(self) -> str:
encoded = ""
if not self.no_shuffle:
encoded += "K"
if not self.standard_shops:
encoded += "S"
if not self.standard_treasure:
encoded += "T"
if not self.default_start_gear:
encoded += "G"
if not self.boss_shuffle:
encoded += "B"
if self.debug:
encoded += "\\u819a"
encoded += str(int((self.scale_levels * 10)))
return encoded
def __str__(self):
out = []
for property, value in vars(self).items():
out.append(f"{property}={value}")
return "[Flags:" + ",".join(out) + "]"
| class Flags(object):
def __init__(self, parsed=None):
if parsed is not None:
self.no_shuffle = parsed.no_shuffle
self.standard_shops = parsed.standard_shops
self.standard_treasure = parsed.standard_treasure
self.default_start_gear = parsed.default_start_gear
self.debug = parsed.debug
self.boss_shuffle = parsed.boss_shuffle
if parsed.exp_mult is not None:
self.scale_levels = 1.0 / parsed.exp_mult
else:
self.scale_levels = 1.0
else:
self.no_shuffle = False
self.standard_shops = False
self.standard_treasure = False
self.default_start_gear = False
self.debug = False
self.boss_shuffle = False
self.scale_levels = 1.0
def encode(self) -> str:
encoded = ''
if not self.no_shuffle:
encoded += 'K'
if not self.standard_shops:
encoded += 'S'
if not self.standard_treasure:
encoded += 'T'
if not self.default_start_gear:
encoded += 'G'
if not self.boss_shuffle:
encoded += 'B'
if self.debug:
encoded += '\\u819a'
encoded += str(int(self.scale_levels * 10))
return encoded
def __str__(self):
out = []
for (property, value) in vars(self).items():
out.append(f'{property}={value}')
return '[Flags:' + ','.join(out) + ']' |
_base_ = './schedule_1x.py'
# learning policy
lr_config = dict(step=[30, 40])
total_epochs = 50
| _base_ = './schedule_1x.py'
lr_config = dict(step=[30, 40])
total_epochs = 50 |
{
"targets": [
{
"target_name": "audio",
'conditions': [
['OS=="win"', {
"sources": ["audio-napi.cc"],
"cflags" : [ "-lole32", "-loleaut32"]
}],
['OS=="linux"', {
"sources": ["audio-napi_dummy.cc"]
}],
['OS=="mac"', {
"sources": ["audio-napi_dummy.cc"]
}],
]
}
]
}
| {'targets': [{'target_name': 'audio', 'conditions': [['OS=="win"', {'sources': ['audio-napi.cc'], 'cflags': ['-lole32', '-loleaut32']}], ['OS=="linux"', {'sources': ['audio-napi_dummy.cc']}], ['OS=="mac"', {'sources': ['audio-napi_dummy.cc']}]]}]} |
str = input('Enter a string:')
i = len(str) - 1
while i > -1 :
print(str[i])
i -= 1 | str = input('Enter a string:')
i = len(str) - 1
while i > -1:
print(str[i])
i -= 1 |
#!/usr/bin/env python3
def load_input_file(path):
with open(path) as input_file:
return [int(line.strip()) for line in input_file]
test_data = [199, 200, 208, 210, 200, 207, 240, 269, 260, 263]
def count_increases(inputs, width=1):
return sum(
inputs[step] > inputs[step - width] for step in range(width, len(inputs))
)
def test_part_one():
assert count_increases(test_data, width=1) == 7
def part_one():
inputs = load_input_file("input.txt")
answer = count_increases(inputs, width=1)
print(f"\n# Measurements larger than the previous measurement: {answer}")
def test_part_two():
assert count_increases(test_data, width=3) == 5
def part_two():
inputs = load_input_file("input.txt")
answer = count_increases(inputs, width=3)
print(f"\n# Sums larger than the previous sum: {answer}")
if __name__ == "__main__":
test_part_one()
part_one()
test_part_two()
part_two()
| def load_input_file(path):
with open(path) as input_file:
return [int(line.strip()) for line in input_file]
test_data = [199, 200, 208, 210, 200, 207, 240, 269, 260, 263]
def count_increases(inputs, width=1):
return sum((inputs[step] > inputs[step - width] for step in range(width, len(inputs))))
def test_part_one():
assert count_increases(test_data, width=1) == 7
def part_one():
inputs = load_input_file('input.txt')
answer = count_increases(inputs, width=1)
print(f'\n# Measurements larger than the previous measurement: {answer}')
def test_part_two():
assert count_increases(test_data, width=3) == 5
def part_two():
inputs = load_input_file('input.txt')
answer = count_increases(inputs, width=3)
print(f'\n# Sums larger than the previous sum: {answer}')
if __name__ == '__main__':
test_part_one()
part_one()
test_part_two()
part_two() |
class Solution:
def daysBetweenDates(self, date1: str, date2: str) -> int:
if date1 > date2: date1, date2 = date2, date1
@lru_cache(None)
def special(year: int) -> bool:
return (year % 400 == 0) or (year % 4 == 0 and year % 100 != 0)
def split_date(date: str):
year, month, day = int(date[0:4]), int(date[5:7]), int(date[8:10])
if month > 1:
m2d = {1: 31, 3: 31, 5: 31, 7: 31, 8: 31, 10: 31, 12: 31, 4: 30, 6: 30, 9: 30, 11: 30, 2: 28}
day += sum([m2d[m] for m in range(1, month)])
if month > 2 and special(year):
day += 1
return year, day
year1, day1 = split_date(date1)
year2, day2 = split_date(date2)
gap = 0
for year in range(year1, year2):
if special(year):
gap += 366
else:
gap += 365
return gap - day1 + day2
| class Solution:
def days_between_dates(self, date1: str, date2: str) -> int:
if date1 > date2:
(date1, date2) = (date2, date1)
@lru_cache(None)
def special(year: int) -> bool:
return year % 400 == 0 or (year % 4 == 0 and year % 100 != 0)
def split_date(date: str):
(year, month, day) = (int(date[0:4]), int(date[5:7]), int(date[8:10]))
if month > 1:
m2d = {1: 31, 3: 31, 5: 31, 7: 31, 8: 31, 10: 31, 12: 31, 4: 30, 6: 30, 9: 30, 11: 30, 2: 28}
day += sum([m2d[m] for m in range(1, month)])
if month > 2 and special(year):
day += 1
return (year, day)
(year1, day1) = split_date(date1)
(year2, day2) = split_date(date2)
gap = 0
for year in range(year1, year2):
if special(year):
gap += 366
else:
gap += 365
return gap - day1 + day2 |
names = ['james', 'john', 'jack']
email_domains = ['gmail', 'yahoo', 'hotmail']
for i, j in zip(names, email_domains):
print(i, j)
print("------------")
| names = ['james', 'john', 'jack']
email_domains = ['gmail', 'yahoo', 'hotmail']
for (i, j) in zip(names, email_domains):
print(i, j)
print('------------') |
with open("texto.txt", "r") as arquivo:
conteudo = arquivo.read()
palavras = conteudo.split()
print(palavras)
print(len(palavras)) | with open('texto.txt', 'r') as arquivo:
conteudo = arquivo.read()
palavras = conteudo.split()
print(palavras)
print(len(palavras)) |
__all__ = ["BaseProcess", "BaseSignalState", "BaseSimulation", "BaseEngine"]
class BaseProcess:
__slots__ = ()
def __init__(self):
self.reset()
def reset(self):
self.runnable = False
self.passive = True
def run(self):
raise NotImplementedError
class BaseSignalState:
__slots__ = ()
signal = NotImplemented
curr = NotImplemented
next = NotImplemented
def set(self, value):
raise NotImplementedError
class BaseSimulation:
def reset(self):
raise NotImplementedError
def get_signal(self, signal):
raise NotImplementedError
slots = NotImplemented
def add_trigger(self, process, signal, *, trigger=None):
raise NotImplementedError
def remove_trigger(self, process, signal):
raise NotImplementedError
def wait_interval(self, process, interval):
raise NotImplementedError
class BaseEngine:
def add_coroutine_process(self, process, *, default_cmd):
raise NotImplementedError
def add_clock_process(self, clock, *, phase, period):
raise NotImplementedError
def reset(self):
raise NotImplementedError
@property
def now(self):
raise NotImplementedError
def advance(self):
raise NotImplementedError
def write_vcd(self, *, vcd_file, gtkw_file, traces):
raise NotImplementedError
| __all__ = ['BaseProcess', 'BaseSignalState', 'BaseSimulation', 'BaseEngine']
class Baseprocess:
__slots__ = ()
def __init__(self):
self.reset()
def reset(self):
self.runnable = False
self.passive = True
def run(self):
raise NotImplementedError
class Basesignalstate:
__slots__ = ()
signal = NotImplemented
curr = NotImplemented
next = NotImplemented
def set(self, value):
raise NotImplementedError
class Basesimulation:
def reset(self):
raise NotImplementedError
def get_signal(self, signal):
raise NotImplementedError
slots = NotImplemented
def add_trigger(self, process, signal, *, trigger=None):
raise NotImplementedError
def remove_trigger(self, process, signal):
raise NotImplementedError
def wait_interval(self, process, interval):
raise NotImplementedError
class Baseengine:
def add_coroutine_process(self, process, *, default_cmd):
raise NotImplementedError
def add_clock_process(self, clock, *, phase, period):
raise NotImplementedError
def reset(self):
raise NotImplementedError
@property
def now(self):
raise NotImplementedError
def advance(self):
raise NotImplementedError
def write_vcd(self, *, vcd_file, gtkw_file, traces):
raise NotImplementedError |
class ColorRGB:
def __init__(self, red, green, blue):
self.red = red
self.green = green
self.blue = blue
| class Colorrgb:
def __init__(self, red, green, blue):
self.red = red
self.green = green
self.blue = blue |
class TaskError(Exception):
def __init__(self, msg):
self.msg = msg
def print_msg(self):
return ("Exception raised: ", self.msg)
| class Taskerror(Exception):
def __init__(self, msg):
self.msg = msg
def print_msg(self):
return ('Exception raised: ', self.msg) |
#
# PySNMP MIB module QOSSLA-MIB (http://snmplabs.com/pysmi)
# ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/QOSSLA-MIB
# Produced by pysmi-0.3.4 at Mon Apr 29 20:35:43 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, ConstraintsIntersection, SingleValueConstraint, ValueRangeConstraint, ConstraintsUnion = mibBuilder.importSymbols("ASN1-REFINEMENT", "ValueSizeConstraint", "ConstraintsIntersection", "SingleValueConstraint", "ValueRangeConstraint", "ConstraintsUnion")
ntEnterpriseDataTasmanMgmt, = mibBuilder.importSymbols("NT-ENTERPRISE-DATA-MIB", "ntEnterpriseDataTasmanMgmt")
NotificationGroup, ModuleCompliance = mibBuilder.importSymbols("SNMPv2-CONF", "NotificationGroup", "ModuleCompliance")
NotificationType, Counter32, ModuleIdentity, Counter64, ObjectIdentity, MibScalar, MibTable, MibTableRow, MibTableColumn, Unsigned32, Integer32, Bits, TimeTicks, MibIdentifier, Gauge32, iso, IpAddress = mibBuilder.importSymbols("SNMPv2-SMI", "NotificationType", "Counter32", "ModuleIdentity", "Counter64", "ObjectIdentity", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "Unsigned32", "Integer32", "Bits", "TimeTicks", "MibIdentifier", "Gauge32", "iso", "IpAddress")
TextualConvention, TruthValue, DisplayString, RowStatus = mibBuilder.importSymbols("SNMPv2-TC", "TextualConvention", "TruthValue", "DisplayString", "RowStatus")
nnqosSLAMib = ModuleIdentity((1, 3, 6, 1, 4, 1, 562, 73, 1, 1, 1, 24))
nnqosSLAMib.setRevisions(('1900-08-18 00:00',))
if mibBuilder.loadTexts: nnqosSLAMib.setLastUpdated('0008180000Z')
if mibBuilder.loadTexts: nnqosSLAMib.setOrganization('Nortel Networks')
nnqosSLANotifications = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 73, 1, 1, 1, 24, 1))
nnqosSLANotificationsVars = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 73, 1, 1, 1, 24, 2))
nnqosSLATraps = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 73, 1, 1, 1, 24, 1, 0))
nnqosSlaIndex = MibScalar((1, 3, 6, 1, 4, 1, 562, 73, 1, 1, 1, 24, 2, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 1000))).setMaxAccess("accessiblefornotify")
if mibBuilder.loadTexts: nnqosSlaIndex.setStatus('current')
nnqosSlaThresholdType = MibScalar((1, 3, 6, 1, 4, 1, 562, 73, 1, 1, 1, 24, 2, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("average", 1), ("immediate", 2), ("consecutive", 3), ("xofy", 4)))).setMaxAccess("accessiblefornotify")
if mibBuilder.loadTexts: nnqosSlaThresholdType.setStatus('current')
nnqosSlaEffectType = MibScalar((1, 3, 6, 1, 4, 1, 562, 73, 1, 1, 1, 24, 2, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17))).clone(namedValues=NamedValues(("jitterAvg", 1), ("jitterAvgSrcDest", 2), ("jitterAvgDestSrc", 3), ("jitterMaxPosSrcDest", 4), ("jitterMaxPosDestSrc", 5), ("jitterMaxNegSrcDest", 6), ("jitterMaxNegDestSrc", 7), ("delayAvg", 8), ("delayAvgSrcDest", 9), ("delayAvgDestSrc", 10), ("delayMaxSrcDest", 11), ("delayMaxDestSrc", 12), ("packetLoss", 13), ("packetOutOfOrder", 14), ("packetLateArrival", 15), ("responseTime", 16), ("timeout", 17)))).setMaxAccess("accessiblefornotify")
if mibBuilder.loadTexts: nnqosSlaEffectType.setStatus('current')
nnqosSlaThresholdValue1 = MibScalar((1, 3, 6, 1, 4, 1, 562, 73, 1, 1, 1, 24, 2, 4), Integer32()).setMaxAccess("accessiblefornotify")
if mibBuilder.loadTexts: nnqosSlaThresholdValue1.setStatus('current')
nnqosSlaThresholdValue2 = MibScalar((1, 3, 6, 1, 4, 1, 562, 73, 1, 1, 1, 24, 2, 5), Integer32()).setMaxAccess("accessiblefornotify")
if mibBuilder.loadTexts: nnqosSlaThresholdValue2.setStatus('current')
nnqosSLANotification = NotificationType((1, 3, 6, 1, 4, 1, 562, 73, 1, 1, 1, 24, 1, 0, 1)).setObjects(("QOSSLA-MIB", "nnqosSlaIndex"), ("QOSSLA-MIB", "nnqosSlaThresholdType"), ("QOSSLA-MIB", "nnqosSlaEffectType"), ("QOSSLA-MIB", "nnqosSlaThresholdValue1"), ("QOSSLA-MIB", "nnqosSlaThresholdValue2"))
if mibBuilder.loadTexts: nnqosSLANotification.setStatus('current')
nnqosNotificationGroup = NotificationGroup((1, 3, 6, 1, 4, 1, 562, 73, 1, 1, 1, 24, 3)).setObjects(("QOSSLA-MIB", "nnqosSLANotification"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
nnqosNotificationGroup = nnqosNotificationGroup.setStatus('current')
mibBuilder.exportSymbols("QOSSLA-MIB", nnqosSLATraps=nnqosSLATraps, nnqosSLAMib=nnqosSLAMib, nnqosSlaIndex=nnqosSlaIndex, nnqosSlaThresholdType=nnqosSlaThresholdType, nnqosSLANotification=nnqosSLANotification, nnqosSlaThresholdValue2=nnqosSlaThresholdValue2, PYSNMP_MODULE_ID=nnqosSLAMib, nnqosSLANotificationsVars=nnqosSLANotificationsVars, nnqosSLANotifications=nnqosSLANotifications, nnqosSlaThresholdValue1=nnqosSlaThresholdValue1, nnqosNotificationGroup=nnqosNotificationGroup, nnqosSlaEffectType=nnqosSlaEffectType)
| (integer, octet_string, object_identifier) = mibBuilder.importSymbols('ASN1', 'Integer', 'OctetString', 'ObjectIdentifier')
(named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues')
(value_size_constraint, constraints_intersection, single_value_constraint, value_range_constraint, constraints_union) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'ValueSizeConstraint', 'ConstraintsIntersection', 'SingleValueConstraint', 'ValueRangeConstraint', 'ConstraintsUnion')
(nt_enterprise_data_tasman_mgmt,) = mibBuilder.importSymbols('NT-ENTERPRISE-DATA-MIB', 'ntEnterpriseDataTasmanMgmt')
(notification_group, module_compliance) = mibBuilder.importSymbols('SNMPv2-CONF', 'NotificationGroup', 'ModuleCompliance')
(notification_type, counter32, module_identity, counter64, object_identity, mib_scalar, mib_table, mib_table_row, mib_table_column, unsigned32, integer32, bits, time_ticks, mib_identifier, gauge32, iso, ip_address) = mibBuilder.importSymbols('SNMPv2-SMI', 'NotificationType', 'Counter32', 'ModuleIdentity', 'Counter64', 'ObjectIdentity', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn', 'Unsigned32', 'Integer32', 'Bits', 'TimeTicks', 'MibIdentifier', 'Gauge32', 'iso', 'IpAddress')
(textual_convention, truth_value, display_string, row_status) = mibBuilder.importSymbols('SNMPv2-TC', 'TextualConvention', 'TruthValue', 'DisplayString', 'RowStatus')
nnqos_sla_mib = module_identity((1, 3, 6, 1, 4, 1, 562, 73, 1, 1, 1, 24))
nnqosSLAMib.setRevisions(('1900-08-18 00:00',))
if mibBuilder.loadTexts:
nnqosSLAMib.setLastUpdated('0008180000Z')
if mibBuilder.loadTexts:
nnqosSLAMib.setOrganization('Nortel Networks')
nnqos_sla_notifications = mib_identifier((1, 3, 6, 1, 4, 1, 562, 73, 1, 1, 1, 24, 1))
nnqos_sla_notifications_vars = mib_identifier((1, 3, 6, 1, 4, 1, 562, 73, 1, 1, 1, 24, 2))
nnqos_sla_traps = mib_identifier((1, 3, 6, 1, 4, 1, 562, 73, 1, 1, 1, 24, 1, 0))
nnqos_sla_index = mib_scalar((1, 3, 6, 1, 4, 1, 562, 73, 1, 1, 1, 24, 2, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 1000))).setMaxAccess('accessiblefornotify')
if mibBuilder.loadTexts:
nnqosSlaIndex.setStatus('current')
nnqos_sla_threshold_type = mib_scalar((1, 3, 6, 1, 4, 1, 562, 73, 1, 1, 1, 24, 2, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4))).clone(namedValues=named_values(('average', 1), ('immediate', 2), ('consecutive', 3), ('xofy', 4)))).setMaxAccess('accessiblefornotify')
if mibBuilder.loadTexts:
nnqosSlaThresholdType.setStatus('current')
nnqos_sla_effect_type = mib_scalar((1, 3, 6, 1, 4, 1, 562, 73, 1, 1, 1, 24, 2, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17))).clone(namedValues=named_values(('jitterAvg', 1), ('jitterAvgSrcDest', 2), ('jitterAvgDestSrc', 3), ('jitterMaxPosSrcDest', 4), ('jitterMaxPosDestSrc', 5), ('jitterMaxNegSrcDest', 6), ('jitterMaxNegDestSrc', 7), ('delayAvg', 8), ('delayAvgSrcDest', 9), ('delayAvgDestSrc', 10), ('delayMaxSrcDest', 11), ('delayMaxDestSrc', 12), ('packetLoss', 13), ('packetOutOfOrder', 14), ('packetLateArrival', 15), ('responseTime', 16), ('timeout', 17)))).setMaxAccess('accessiblefornotify')
if mibBuilder.loadTexts:
nnqosSlaEffectType.setStatus('current')
nnqos_sla_threshold_value1 = mib_scalar((1, 3, 6, 1, 4, 1, 562, 73, 1, 1, 1, 24, 2, 4), integer32()).setMaxAccess('accessiblefornotify')
if mibBuilder.loadTexts:
nnqosSlaThresholdValue1.setStatus('current')
nnqos_sla_threshold_value2 = mib_scalar((1, 3, 6, 1, 4, 1, 562, 73, 1, 1, 1, 24, 2, 5), integer32()).setMaxAccess('accessiblefornotify')
if mibBuilder.loadTexts:
nnqosSlaThresholdValue2.setStatus('current')
nnqos_sla_notification = notification_type((1, 3, 6, 1, 4, 1, 562, 73, 1, 1, 1, 24, 1, 0, 1)).setObjects(('QOSSLA-MIB', 'nnqosSlaIndex'), ('QOSSLA-MIB', 'nnqosSlaThresholdType'), ('QOSSLA-MIB', 'nnqosSlaEffectType'), ('QOSSLA-MIB', 'nnqosSlaThresholdValue1'), ('QOSSLA-MIB', 'nnqosSlaThresholdValue2'))
if mibBuilder.loadTexts:
nnqosSLANotification.setStatus('current')
nnqos_notification_group = notification_group((1, 3, 6, 1, 4, 1, 562, 73, 1, 1, 1, 24, 3)).setObjects(('QOSSLA-MIB', 'nnqosSLANotification'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
nnqos_notification_group = nnqosNotificationGroup.setStatus('current')
mibBuilder.exportSymbols('QOSSLA-MIB', nnqosSLATraps=nnqosSLATraps, nnqosSLAMib=nnqosSLAMib, nnqosSlaIndex=nnqosSlaIndex, nnqosSlaThresholdType=nnqosSlaThresholdType, nnqosSLANotification=nnqosSLANotification, nnqosSlaThresholdValue2=nnqosSlaThresholdValue2, PYSNMP_MODULE_ID=nnqosSLAMib, nnqosSLANotificationsVars=nnqosSLANotificationsVars, nnqosSLANotifications=nnqosSLANotifications, nnqosSlaThresholdValue1=nnqosSlaThresholdValue1, nnqosNotificationGroup=nnqosNotificationGroup, nnqosSlaEffectType=nnqosSlaEffectType) |
Nomod = 0
NoFail = 1
Easy = 2
NoVideo = 4
Hidden = 8
HardRock = 16
SuddenDeath = 32
DoubleTime = 64
Relax = 128
HalfTime = 256
Nightcore = 512
Flashlight = 1024
Autoplay = 2048
SpunOut = 4096
Relax2 = 8192
Perfect = 16384
Key4 = 32768
Key5 = 65536
Key6 = 131072
Key7 = 262144
Key8 = 524288
keyMod = 1015808
FadeIn = 1048576
Random = 2097152
LastMod = 4194304
Key9 = 16777216
Key10 = 33554432
Key1 = 67108864
Key3 = 134217728
Key2 = 268435456
| nomod = 0
no_fail = 1
easy = 2
no_video = 4
hidden = 8
hard_rock = 16
sudden_death = 32
double_time = 64
relax = 128
half_time = 256
nightcore = 512
flashlight = 1024
autoplay = 2048
spun_out = 4096
relax2 = 8192
perfect = 16384
key4 = 32768
key5 = 65536
key6 = 131072
key7 = 262144
key8 = 524288
key_mod = 1015808
fade_in = 1048576
random = 2097152
last_mod = 4194304
key9 = 16777216
key10 = 33554432
key1 = 67108864
key3 = 134217728
key2 = 268435456 |
people = ["jack chen", "brus lee"]
jackChen = people[0]
brusLee = people[1]
people = ["jack chen", "brus lee"]
jackChen, brusLee = people
print(jackChen, brusLee)
# jack chen brus lee
jackChen, brusLee = ["jack chen", "brus lee"]
print(jackChen, brusLee)
# jack chen brus lee
numbers = [i for i in range(1, 20, 2)]
print(numbers)
# [1, 3, 5, 7, 9, 11, 13, 15, 17, 19]
numbers = [i for i in range(1, 20, 2)]
print(numbers)
num1, num2, num3, *numOthers, numEnd = numbers
print(num1, num2, num3, numEnd)
print(numOthers)
# [1, 3, 5, 7, 9, 11, 13, 15, 17, 19]
# 1 3 5 19
# [7, 9, 11, 13, 15, 17]
numbers = [i for i in range(1, 20, 2)]
print(numbers)
*_, last1, last2 = numbers
print(last1, last2)
# [1, 3, 5, 7, 9, 11, 13, 15, 17, 19]
# 17 19
people = [["jack chen", 16, "actor"], ["brus Lee", "engineer"]]
for person in people:
name, *info = person
print("name is ", name, "person info is ", info)
# name is jack chen person info is [16, 'actor']
# name is brus Lee person info is ['engineer']
numbers1 = [1, 2, 3]
numbers2 = [7, 8, 9]
numbers3 = numbers1+numbers2
print(numbers3)
# [1, 2, 3, 7, 8, 9]
print('-'*10)
# ----------
numbers = [1, 2, 3]
print(numbers*3)
# [1, 2, 3, 1, 2, 3, 1, 2, 3]
numbers = [[]]*3
print(numbers)
numbers[0].append(1)
print(numbers)
# [[], [], []]
# [[1], [1], [1]]
numbers = [[] for i in range(0, 3)]
print(numbers)
numbers[0].append(1)
numbers[1].append(2)
numbers[2].append(3)
print(numbers)
# [[], [], []]
# [[1], [2], [3]] | people = ['jack chen', 'brus lee']
jack_chen = people[0]
brus_lee = people[1]
people = ['jack chen', 'brus lee']
(jack_chen, brus_lee) = people
print(jackChen, brusLee)
(jack_chen, brus_lee) = ['jack chen', 'brus lee']
print(jackChen, brusLee)
numbers = [i for i in range(1, 20, 2)]
print(numbers)
numbers = [i for i in range(1, 20, 2)]
print(numbers)
(num1, num2, num3, *num_others, num_end) = numbers
print(num1, num2, num3, numEnd)
print(numOthers)
numbers = [i for i in range(1, 20, 2)]
print(numbers)
(*_, last1, last2) = numbers
print(last1, last2)
people = [['jack chen', 16, 'actor'], ['brus Lee', 'engineer']]
for person in people:
(name, *info) = person
print('name is ', name, 'person info is ', info)
numbers1 = [1, 2, 3]
numbers2 = [7, 8, 9]
numbers3 = numbers1 + numbers2
print(numbers3)
print('-' * 10)
numbers = [1, 2, 3]
print(numbers * 3)
numbers = [[]] * 3
print(numbers)
numbers[0].append(1)
print(numbers)
numbers = [[] for i in range(0, 3)]
print(numbers)
numbers[0].append(1)
numbers[1].append(2)
numbers[2].append(3)
print(numbers) |
#!/usr/bin/env python
# encoding: utf-8
class Solution:
def groupAnagrams(self, strs: List[str]) -> List[List[str]]:
ans = collections.defaultdict(list)
for word in strs:
count = [0] * 26
for c in word:
count[ord(c) - ord('a')] += 1
ans[tuple(count)].append(word)
return ans.values()
| class Solution:
def group_anagrams(self, strs: List[str]) -> List[List[str]]:
ans = collections.defaultdict(list)
for word in strs:
count = [0] * 26
for c in word:
count[ord(c) - ord('a')] += 1
ans[tuple(count)].append(word)
return ans.values() |
class Node(object):
def __init__(self, value, children=None):
if not children:
children = []
self.value = value
self.children = children
def __str__(self, level=0):
if not self.value:
ret = (
"| Catalogs\t| Schemas\t| Table Names\t\n-----------"
"------------------------------------------------\n"
)
else:
ret = (
"|\t\t\t" * (level - 1)
+ "|-- " * (int(level / level) if level > 0 else level)
+ str(self.value)
+ "\n"
)
for child in self.children:
ret += child.__str__(level + 1)
return ret
def __repr__(self):
return "<DoordaHost permissions representation>"
| class Node(object):
def __init__(self, value, children=None):
if not children:
children = []
self.value = value
self.children = children
def __str__(self, level=0):
if not self.value:
ret = '| Catalogs\t| Schemas\t| Table Names\t\n-----------------------------------------------------------\n'
else:
ret = '|\t\t\t' * (level - 1) + '|-- ' * (int(level / level) if level > 0 else level) + str(self.value) + '\n'
for child in self.children:
ret += child.__str__(level + 1)
return ret
def __repr__(self):
return '<DoordaHost permissions representation>' |
def getCountyFDARestaurantsData(county):
data = {"01001": {"FFRPTH14": 0.649878148, "FSRPTH14": 0.523512952}, "01003": {"FFRPTH14": 0.659633903, "FSRPTH14": 1.104387065}, "01005": {"FFRPTH14": 0.818239298, "FSRPTH14": 0.55789043}, "01007": {"FFRPTH14": 0.22216297899999998, "FSRPTH14": 0.22216297899999998}, "01009": {"FFRPTH14": 0.363831667, "FSRPTH14": 0.259879762}, "01011": {"FFRPTH14": 0.2787068, "FSRPTH14": 0.092902267}, "01013": {"FFRPTH14": 0.837603469, "FSRPTH14": 0.492707923}, "01015": {"FFRPTH14": 0.888574485, "FSRPTH14": 0.66427413}, "01017": {"FFRPTH14": 0.763000352, "FSRPTH14": 0.469538678}, "01019": {"FFRPTH14": 0.576103238, "FSRPTH14": 0.42247570799999995}, "01021": {"FFRPTH14": 0.455259384, "FSRPTH14": 0.409733446}, "01023": {"FFRPTH14": 0.45034902, "FSRPTH14": 0.37529085}, "01025": {"FFRPTH14": 1.042293045, "FSRPTH14": 0.60132291}, "01027": {"FFRPTH14": 0.295159386, "FSRPTH14": 0.442739079}, "01029": {"FFRPTH14": 0.530503979, "FSRPTH14": 0.132625995}, "01031": {"FFRPTH14": 0.667858335, "FSRPTH14": 0.550000982}, "01033": {"FFRPTH14": 0.953376235, "FSRPTH14": 0.696698018}, "01035": {"FFRPTH14": 0.5524861879999999, "FSRPTH14": 0.31570639300000003}, "01037": {"FFRPTH14": 0.091861106, "FSRPTH14": 0.0}, "01039": {"FFRPTH14": 0.633011552, "FSRPTH14": 0.474758664}, "01041": {"FFRPTH14": 0.357730557, "FSRPTH14": 0.429276669}, "01043": {"FFRPTH14": 0.651994735, "FSRPTH14": 0.590485798}, "01045": {"FFRPTH14": 0.687090777, "FSRPTH14": 0.6062565679999999}, "01047": {"FFRPTH14": 0.45551533200000005, "FSRPTH14": 0.359617367}, "01049": {"FFRPTH14": 0.605079856, "FSRPTH14": 0.43622036200000003}, "01051": {"FFRPTH14": 0.555713351, "FSRPTH14": 0.469269052}, "01053": {"FFRPTH14": 0.715554024, "FSRPTH14": 0.530040018}, "01055": {"FFRPTH14": 0.7630564759999999, "FSRPTH14": 0.550559736}, "01057": {"FFRPTH14": 0.53336494, "FSRPTH14": 0.53336494}, "01059": {"FFRPTH14": 0.5696022279999999, "FSRPTH14": 0.506313091}, "01061": {"FFRPTH14": 0.37436358200000003, "FSRPTH14": 0.41179994}, "01063": {"FFRPTH14": 0.11691804, "FSRPTH14": 0.233836081}, "01065": {"FFRPTH14": 0.461011591, "FSRPTH14": 0.263435195}, "01067": {"FFRPTH14": 0.581733566, "FSRPTH14": 0.639906923}, "01069": {"FFRPTH14": 0.930964652, "FSRPTH14": 0.739013177}, "01071": {"FFRPTH14": 0.550650337, "FSRPTH14": 0.474698566}, "01073": {"FFRPTH14": 0.9715599290000001, "FSRPTH14": 0.5690132920000001}, "01075": {"FFRPTH14": 0.42595484899999997, "FSRPTH14": 0.7099247479999999}, "01077": {"FFRPTH14": 0.773395205, "FSRPTH14": 0.751912005}, "01079": {"FFRPTH14": 0.477940078, "FSRPTH14": 0.5078113329999999}, "01081": {"FFRPTH14": 0.82979482, "FSRPTH14": 0.706622152}, "01083": {"FFRPTH14": 0.561754436, "FSRPTH14": 0.429576922}, "01085": {"FFRPTH14": 0.0, "FSRPTH14": 0.189035917}, "01087": {"FFRPTH14": 0.46332046299999996, "FSRPTH14": 0.10296010300000001}, "01089": {"FFRPTH14": 0.9420523609999999, "FSRPTH14": 0.6451631320000001}, "01091": {"FFRPTH14": 0.94480358, "FSRPTH14": 0.447538538}, "01093": {"FFRPTH14": 0.561593604, "FSRPTH14": 0.660698358}, "01095": {"FFRPTH14": 0.750243036, "FSRPTH14": 0.6340081999999999}, "01097": {"FFRPTH14": 0.60945792, "FSRPTH14": 0.522736635}, "01099": {"FFRPTH14": 0.410078826, "FSRPTH14": 0.45564314}, "01101": {"FFRPTH14": 0.928427112, "FSRPTH14": 0.623372489}, "01103": {"FFRPTH14": 0.827710753, "FSRPTH14": 0.560167883}, "01105": {"FFRPTH14": 0.10177081199999999, "FSRPTH14": 0.610624873}, "01107": {"FFRPTH14": 0.39283083700000004, "FSRPTH14": 0.294623128}, "01109": {"FFRPTH14": 0.9883494559999999, "FSRPTH14": 0.658899638}, "01111": {"FFRPTH14": 0.399307866, "FSRPTH14": 0.310572785}, "01113": {"FFRPTH14": 0.7381559520000001, "FSRPTH14": 0.352301704}, "01115": {"FFRPTH14": 0.5651868, "FSRPTH14": 0.5075146779999999}, "01117": {"FFRPTH14": 0.6822965809999999, "FSRPTH14": 0.6387457360000001}, "01119": {"FFRPTH14": 0.53167249, "FSRPTH14": 0.45571927700000003}, "01121": {"FFRPTH14": 0.602542977, "FSRPTH14": 0.454981432}, "01123": {"FFRPTH14": 0.48584963, "FSRPTH14": 0.412972185}, "01125": {"FFRPTH14": 0.796194093, "FSRPTH14": 0.543983542}, "01127": {"FFRPTH14": 0.626231461, "FSRPTH14": 0.519313895}, "01129": {"FFRPTH14": 0.178210764, "FSRPTH14": 0.356421528}, "01131": {"FFRPTH14": 0.45053162700000005, "FSRPTH14": 0.45053162700000005}, "01133": {"FFRPTH14": 0.414078675, "FSRPTH14": 0.621118012}, "02013": {"FFRPTH14": 0.297619048, "FSRPTH14": 0.297619048}, "02016": {"FFRPTH14": 0.0, "FSRPTH14": 0.347826087}, "02020": {"FFRPTH14": 0.677718348, "FSRPTH14": 0.767416365}, "02050": {"FFRPTH14": 0.39176180899999996, "FSRPTH14": 0.39176180899999996}, "02060": {"FFRPTH14": 0.0, "FSRPTH14": 2.089864159}, "02068": {"FFRPTH14": 1.041124414, "FSRPTH14": 3.64393545}, "02070": {"FFRPTH14": 0.200481155, "FSRPTH14": 0.40096231}, "02090": {"FFRPTH14": 0.49317109, "FSRPTH14": 0.654206548}, "02100": {"FFRPTH14": 0.38971161299999996, "FSRPTH14": 2.33826968}, "02105": {"FFRPTH14": 0.0, "FSRPTH14": 0.0}, "02110": {"FFRPTH14": 0.9566129729999999, "FSRPTH14": 0.894896007}, "02122": {"FFRPTH14": 0.678532282, "FSRPTH14": 1.3396663009999998}, "02130": {"FFRPTH14": 0.870385145, "FSRPTH14": 0.870385145}, "02150": {"FFRPTH14": 0.500500501, "FSRPTH14": 0.786500787}, "02164": {"FFRPTH14": 0.0, "FSRPTH14": 0.0}, "02170": {"FFRPTH14": 0.439304469, "FSRPTH14": 0.51081915}, "02180": {"FFRPTH14": 0.101864113, "FSRPTH14": 1.018641133}, "02185": {"FFRPTH14": 0.206121818, "FSRPTH14": 0.515304545}, "02188": {"FFRPTH14": 0.25916807, "FSRPTH14": 0.129584035}, "02195": {"FFRPTH14": 0.0, "FSRPTH14": 0.0}, "02198": {"FFRPTH14": 0.0, "FSRPTH14": 0.0}, "02220": {"FFRPTH14": 0.449438202, "FSRPTH14": 0.898876404}, "02230": {"FFRPTH14": 0.0, "FSRPTH14": 0.0}, "02240": {"FFRPTH14": 0.28855865, "FSRPTH14": 1.0099552729999999}, "02261": {"FFRPTH14": 0.94856661, "FSRPTH14": 1.5809443509999999}, "02270": {"FFRPTH14": 0.0, "FSRPTH14": 0.0}, "02275": {"FFRPTH14": 0.0, "FSRPTH14": 0.0}, "02282": {"FFRPTH14": 0.0, "FSRPTH14": 0.0}, "02290": {"FFRPTH14": 0.0, "FSRPTH14": 0.180277628}, "04001": {"FFRPTH14": 0.222754358, "FSRPTH14": 0.250598652}, "04003": {"FFRPTH14": 0.47862657700000005, "FSRPTH14": 0.753248384}, "04005": {"FFRPTH14": 0.871573626, "FSRPTH14": 1.176624395}, "04007": {"FFRPTH14": 0.640072291, "FSRPTH14": 1.035411058}, "04009": {"FFRPTH14": 0.421529626, "FSRPTH14": 0.316147219}, "04011": {"FFRPTH14": 0.213995292, "FSRPTH14": 0.7489835220000001}, "04012": {"FFRPTH14": 0.7414364090000001, "FSRPTH14": 1.482872819}, "04013": {"FFRPTH14": 0.68041841, "FSRPTH14": 0.583285684}, "04015": {"FFRPTH14": 0.5605794620000001, "FSRPTH14": 0.634339918}, "04017": {"FFRPTH14": 0.499532844, "FSRPTH14": 0.721547442}, "04019": {"FFRPTH14": 0.608253129, "FSRPTH14": 0.648073301}, "04021": {"FFRPTH14": 0.28612801600000004, "FSRPTH14": 0.271199598}, "04023": {"FFRPTH14": 0.578220366, "FSRPTH14": 0.856622765}, "04025": {"FFRPTH14": 0.584891521, "FSRPTH14": 0.9367403259999999}, "04027": {"FFRPTH14": 0.575654253, "FSRPTH14": 0.37884938}, "05001": {"FFRPTH14": 0.591588685, "FSRPTH14": 0.645369474}, "05003": {"FFRPTH14": 0.716058812, "FSRPTH14": 0.286423525}, "05005": {"FFRPTH14": 0.783219522, "FSRPTH14": 0.758743912}, "05007": {"FFRPTH14": 0.660281197, "FSRPTH14": 0.631393895}, "05009": {"FFRPTH14": 0.618346059, "FSRPTH14": 0.672115281}, "05011": {"FFRPTH14": 0.538213132, "FSRPTH14": 0.538213132}, "05013": {"FFRPTH14": 0.384467512, "FSRPTH14": 0.576701269}, "05015": {"FFRPTH14": 0.540657439, "FSRPTH14": 1.838235294}, "05017": {"FFRPTH14": 0.447227191, "FSRPTH14": 0.178890877}, "05019": {"FFRPTH14": 0.841601701, "FSRPTH14": 0.48724309}, "05021": {"FFRPTH14": 0.595316841, "FSRPTH14": 0.529170525}, "05023": {"FFRPTH14": 0.6241710229999999, "FSRPTH14": 0.9362565340000001}, "05025": {"FFRPTH14": 0.118357202, "FSRPTH14": 0.118357202}, "05027": {"FFRPTH14": 0.919232858, "FSRPTH14": 0.33426649399999997}, "05029": {"FFRPTH14": 0.33202106, "FSRPTH14": 0.569178959}, "05031": {"FFRPTH14": 0.7413332290000001, "FSRPTH14": 0.682806922}, "05033": {"FFRPTH14": 0.45383081799999997, "FSRPTH14": 0.486247305}, "05035": {"FFRPTH14": 0.6862032779999999, "FSRPTH14": 0.403648987}, "05037": {"FFRPTH14": 0.696580949, "FSRPTH14": 0.40633888700000004}, "05039": {"FFRPTH14": 0.386847195, "FSRPTH14": 0.7736943909999999}, "05041": {"FFRPTH14": 0.733855186, "FSRPTH14": 0.896934116}, "05043": {"FFRPTH14": 0.805498872, "FSRPTH14": 0.6980990229999999}, "05045": {"FFRPTH14": 0.654146794, "FSRPTH14": 0.579623741}, "05047": {"FFRPTH14": 0.336983993, "FSRPTH14": 0.730131985}, "05049": {"FFRPTH14": 0.329896907, "FSRPTH14": 0.329896907}, "05051": {"FFRPTH14": 0.873389367, "FSRPTH14": 1.027516903}, "05053": {"FFRPTH14": 0.330687831, "FSRPTH14": 0.496031746}, "05055": {"FFRPTH14": 0.64082025, "FSRPTH14": 0.503501625}, "05057": {"FFRPTH14": 0.49267702799999996, "FSRPTH14": 0.582254669}, "05059": {"FFRPTH14": 0.419563654, "FSRPTH14": 0.269719492}, "05061": {"FFRPTH14": 0.666666667, "FSRPTH14": 0.592592593}, "05063": {"FFRPTH14": 0.568197191, "FSRPTH14": 0.730539246}, "05065": {"FFRPTH14": 0.22245291399999997, "FSRPTH14": 0.5190568}, "05067": {"FFRPTH14": 0.5132884679999999, "FSRPTH14": 0.456256416}, "05069": {"FFRPTH14": 0.7745826240000001, "FSRPTH14": 0.442618643}, "05071": {"FFRPTH14": 0.422995578, "FSRPTH14": 0.422995578}, "05073": {"FFRPTH14": 0.421881592, "FSRPTH14": 0.14062719699999998}, "05075": {"FFRPTH14": 0.35437954, "FSRPTH14": 0.649695824}, "05077": {"FFRPTH14": 0.304259635, "FSRPTH14": 0.101419878}, "05079": {"FFRPTH14": 0.357909807, "FSRPTH14": 0.429491768}, "05081": {"FFRPTH14": 0.47877433799999997, "FSRPTH14": 0.23938716899999998}, "05083": {"FFRPTH14": 0.592039348, "FSRPTH14": 0.409873395}, "05085": {"FFRPTH14": 0.531045181, "FSRPTH14": 0.43322106899999996}, "05087": {"FFRPTH14": 0.190597205, "FSRPTH14": 0.698856417}, "05089": {"FFRPTH14": 0.30549276, "FSRPTH14": 0.672084072}, "05091": {"FFRPTH14": 0.552638851, "FSRPTH14": 0.5065856129999999}, "05093": {"FFRPTH14": 0.723409065, "FSRPTH14": 0.542556799}, "05095": {"FFRPTH14": 0.6594566079999999, "FSRPTH14": 0.6594566079999999}, "05097": {"FFRPTH14": 0.440431623, "FSRPTH14": 0.660647434}, "05099": {"FFRPTH14": 0.34391837700000005, "FSRPTH14": 0.229278918}, "05101": {"FFRPTH14": 0.12651821900000002, "FSRPTH14": 0.6325910929999999}, "05103": {"FFRPTH14": 0.644433704, "FSRPTH14": 0.36249395799999995}, "05105": {"FFRPTH14": 0.09760859, "FSRPTH14": 0.390434358}, "05107": {"FFRPTH14": 0.351229303, "FSRPTH14": 0.45158053200000003}, "05109": {"FFRPTH14": 0.45355587799999997, "FSRPTH14": 0.725689405}, "05111": {"FFRPTH14": 0.7011465809999999, "FSRPTH14": 0.536170915}, "05113": {"FFRPTH14": 0.39555006200000004, "FSRPTH14": 0.939431397}, "05115": {"FFRPTH14": 0.8227717920000001, "FSRPTH14": 0.537966171}, "05117": {"FFRPTH14": 0.12042389199999999, "FSRPTH14": 0.48169556799999996}, "05119": {"FFRPTH14": 0.8759822970000001, "FSRPTH14": 0.883621678}, "05121": {"FFRPTH14": 0.455295658, "FSRPTH14": 0.5691195720000001}, "05123": {"FFRPTH14": 0.37176103200000005, "FSRPTH14": 0.44611323799999997}, "05125": {"FFRPTH14": 0.553063888, "FSRPTH14": 0.337023306}, "05127": {"FFRPTH14": 0.374076499, "FSRPTH14": 0.46759562299999996}, "05129": {"FFRPTH14": 0.504477235, "FSRPTH14": 0.37835792700000004}, "05131": {"FFRPTH14": 0.7572411179999999, "FSRPTH14": 0.788792831}, "05133": {"FFRPTH14": 0.40169861100000004, "FSRPTH14": 0.631240675}, "05135": {"FFRPTH14": 0.532355377, "FSRPTH14": 1.005560156}, "05137": {"FFRPTH14": 0.8003841840000001, "FSRPTH14": 0.640307348}, "05139": {"FFRPTH14": 0.6711909909999999, "FSRPTH14": 0.6960499170000001}, "05141": {"FFRPTH14": 0.356061955, "FSRPTH14": 0.71212391}, "05143": {"FFRPTH14": 0.711076488, "FSRPTH14": 0.8741258740000001}, "05145": {"FFRPTH14": 0.763436482, "FSRPTH14": 0.5853013029999999}, "05147": {"FFRPTH14": 0.578871201, "FSRPTH14": 0.28943560100000004}, "05149": {"FFRPTH14": 0.41000410000000004, "FSRPTH14": 0.227780056}, "06001": {"FFRPTH14": 0.767262951, "FSRPTH14": 0.96590708}, "06003": {"FFRPTH14": 1.792114695, "FSRPTH14": 0.8960573479999999}, "06005": {"FFRPTH14": 0.38103532700000003, "FSRPTH14": 1.088672364}, "06007": {"FFRPTH14": 0.66446368, "FSRPTH14": 0.62432829}, "06009": {"FFRPTH14": 0.649874507, "FSRPTH14": 0.8515596990000001}, "06011": {"FFRPTH14": 0.420187684, "FSRPTH14": 0.7003128059999999}, "06013": {"FFRPTH14": 0.579481148, "FSRPTH14": 0.676661217}, "06015": {"FFRPTH14": 0.36748493299999996, "FSRPTH14": 0.77171836}, "06017": {"FFRPTH14": 0.589883498, "FSRPTH14": 0.950367858}, "06019": {"FFRPTH14": 0.620099506, "FSRPTH14": 0.528999745}, "06021": {"FFRPTH14": 0.500804865, "FSRPTH14": 0.536576641}, "06023": {"FFRPTH14": 0.682447018, "FSRPTH14": 0.993998917}, "06025": {"FFRPTH14": 0.563959105, "FSRPTH14": 0.435532774}, "06027": {"FFRPTH14": 0.760456274, "FSRPTH14": 1.629549158}, "06029": {"FFRPTH14": 0.628866816, "FSRPTH14": 0.500806665}, "06031": {"FFRPTH14": 0.578961729, "FSRPTH14": 0.299462963}, "06033": {"FFRPTH14": 0.514146828, "FSRPTH14": 0.65436869}, "06035": {"FFRPTH14": 0.409461715, "FSRPTH14": 0.472455825}, "06037": {"FFRPTH14": 0.770804328, "FSRPTH14": 0.7730777959999999}, "06039": {"FFRPTH14": 0.50469757, "FSRPTH14": 0.342935528}, "06041": {"FFRPTH14": 0.70949185, "FSRPTH14": 1.2042186000000001}, "06043": {"FFRPTH14": 0.452437507, "FSRPTH14": 0.7352109490000001}, "06045": {"FFRPTH14": 0.591790051, "FSRPTH14": 1.263244148}, "06047": {"FFRPTH14": 0.484319681, "FSRPTH14": 0.345406284}, "06049": {"FFRPTH14": 0.332483653, "FSRPTH14": 0.8866230740000001}, "06051": {"FFRPTH14": 1.214545974, "FSRPTH14": 2.643423591}, "06053": {"FFRPTH14": 0.584220483, "FSRPTH14": 0.867057383}, "06055": {"FFRPTH14": 0.557645747, "FSRPTH14": 1.00940939}, "06057": {"FFRPTH14": 0.6269402279999999, "FSRPTH14": 0.930298403}, "06059": {"FFRPTH14": 0.886977172, "FSRPTH14": 0.8580470920000001}, "06061": {"FFRPTH14": 0.836709767, "FSRPTH14": 0.823257841}, "06063": {"FFRPTH14": 0.537461034, "FSRPTH14": 2.042351929}, "06065": {"FFRPTH14": 0.612208713, "FSRPTH14": 0.505737632}, "06067": {"FFRPTH14": 0.6808247629999999, "FSRPTH14": 0.6538346829999999}, "06069": {"FFRPTH14": 0.463384077, "FSRPTH14": 0.583520689}, "06071": {"FFRPTH14": 0.678778332, "FSRPTH14": 0.479499616}, "06073": {"FFRPTH14": 0.806513145, "FSRPTH14": 0.75748499}, "06075": {"FFRPTH14": 1.0839103829999999, "FSRPTH14": 2.220608609}, "06077": {"FFRPTH14": 0.617666089, "FSRPTH14": 0.49888414799999997}, "06079": {"FFRPTH14": 0.795462282, "FSRPTH14": 1.171694442}, "06081": {"FFRPTH14": 0.7276744340000001, "FSRPTH14": 1.026917363}, "06083": {"FFRPTH14": 0.7397859609999999, "FSRPTH14": 0.8963664259999999}, "06085": {"FFRPTH14": 0.756886, "FSRPTH14": 0.8698383040000001}, "06087": {"FFRPTH14": 0.654883666, "FSRPTH14": 0.9749672559999999}, "06089": {"FFRPTH14": 0.695201442, "FSRPTH14": 0.667393384}, "06091": {"FFRPTH14": 0.333000333, "FSRPTH14": 0.9990009990000001}, "06093": {"FFRPTH14": 0.641789676, "FSRPTH14": 1.077289814}, "06095": {"FFRPTH14": 0.649454574, "FSRPTH14": 0.5566753489999999}, "06097": {"FFRPTH14": 0.589655641, "FSRPTH14": 1.023402333}, "06099": {"FFRPTH14": 0.633462219, "FSRPTH14": 0.541356436}, "06101": {"FFRPTH14": 0.667730863, "FSRPTH14": 0.45906496799999996}, "06103": {"FFRPTH14": 0.539109201, "FSRPTH14": 0.539109201}, "06105": {"FFRPTH14": 0.759301443, "FSRPTH14": 0.911161731}, "06107": {"FFRPTH14": 0.497601474, "FSRPTH14": 0.449587296}, "06109": {"FFRPTH14": 0.538723041, "FSRPTH14": 0.984562798}, "06111": {"FFRPTH14": 0.713797806, "FSRPTH14": 0.6972528240000001}, "06113": {"FFRPTH14": 0.693675033, "FSRPTH14": 0.7129437829999999}, "06115": {"FFRPTH14": 0.392072033, "FSRPTH14": 0.31095368100000004}, "08001": {"FFRPTH14": 0.657350047, "FSRPTH14": 0.468049875}, "08003": {"FFRPTH14": 0.8654262220000001, "FSRPTH14": 0.9272423809999999}, "08005": {"FFRPTH14": 0.738501117, "FSRPTH14": 0.7530449029999999}, "08007": {"FFRPTH14": 0.571708592, "FSRPTH14": 2.0418164}, "08009": {"FFRPTH14": 0.274348422, "FSRPTH14": 0.274348422}, "08011": {"FFRPTH14": 0.177619893, "FSRPTH14": 0.35523978700000003}, "08013": {"FFRPTH14": 0.8234051309999999, "FSRPTH14": 1.101065001}, "08014": {"FFRPTH14": 1.094338408, "FSRPTH14": 0.756380959}, "08015": {"FFRPTH14": 0.925774656, "FSRPTH14": 2.23275064}, "08017": {"FFRPTH14": 0.0, "FSRPTH14": 1.068947087}, "08019": {"FFRPTH14": 1.197344073, "FSRPTH14": 2.176989224}, "08021": {"FFRPTH14": 0.120992136, "FSRPTH14": 0.36297640700000006}, "08023": {"FFRPTH14": 0.0, "FSRPTH14": 1.121076233}, "08025": {"FFRPTH14": 0.0, "FSRPTH14": 0.18656716399999998}, "08027": {"FFRPTH14": 0.229305205, "FSRPTH14": 2.063746847}, "08029": {"FFRPTH14": 0.535654503, "FSRPTH14": 1.171744225}, "08031": {"FFRPTH14": 0.876688227, "FSRPTH14": 1.2336901340000002}, "08033": {"FFRPTH14": 0.0, "FSRPTH14": 2.527805865}, "08035": {"FFRPTH14": 0.6483641520000001, "FSRPTH14": 0.6006903170000001}, "08037": {"FFRPTH14": 0.869220158, "FSRPTH14": 2.418699571}, "08039": {"FFRPTH14": 0.289315974, "FSRPTH14": 0.537301095}, "08041": {"FFRPTH14": 0.679709247, "FSRPTH14": 0.593803644}, "08043": {"FFRPTH14": 0.32256677100000003, "FSRPTH14": 0.774160251}, "08045": {"FFRPTH14": 0.800542977, "FSRPTH14": 1.44445798}, "08047": {"FFRPTH14": 0.0, "FSRPTH14": 0.34182191100000003}, "08049": {"FFRPTH14": 1.099958752, "FSRPTH14": 3.6436133639999997}, "08051": {"FFRPTH14": 0.890302067, "FSRPTH14": 3.116057234}, "08053": {"FFRPTH14": 0.0, "FSRPTH14": 7.6335877860000005}, "08055": {"FFRPTH14": 0.619003405, "FSRPTH14": 1.083255958}, "08057": {"FFRPTH14": 0.0, "FSRPTH14": 1.4326647559999999}, "08059": {"FFRPTH14": 0.7591722870000001, "FSRPTH14": 0.814677808}, "08061": {"FFRPTH14": 0.0, "FSRPTH14": 1.426533524}, "08063": {"FFRPTH14": 0.991080278, "FSRPTH14": 0.867195243}, "08065": {"FFRPTH14": 0.679624847, "FSRPTH14": 1.359249694}, "08067": {"FFRPTH14": 0.852025413, "FSRPTH14": 1.259515827}, "08069": {"FFRPTH14": 0.7774850209999999, "FSRPTH14": 0.87312802}, "08071": {"FFRPTH14": 0.782806718, "FSRPTH14": 0.853970965}, "08073": {"FFRPTH14": 0.54446461, "FSRPTH14": 1.4519056259999998}, "08075": {"FFRPTH14": 0.5771621379999999, "FSRPTH14": 0.665956313}, "08077": {"FFRPTH14": 0.613807291, "FSRPTH14": 0.661023237}, "08079": {"FFRPTH14": 1.4326647559999999, "FSRPTH14": 7.163323782000001}, "08081": {"FFRPTH14": 0.386757426, "FSRPTH14": 1.160272277}, "08083": {"FFRPTH14": 0.543225206, "FSRPTH14": 1.435666615}, "08085": {"FFRPTH14": 0.5382526360000001, "FSRPTH14": 0.7584468959999999}, "08087": {"FFRPTH14": 0.38830838700000003, "FSRPTH14": 0.8825190620000001}, "08089": {"FFRPTH14": 0.594980528, "FSRPTH14": 0.919515361}, "08091": {"FFRPTH14": 1.29617628, "FSRPTH14": 3.88852884}, "08093": {"FFRPTH14": 0.30590394600000004, "FSRPTH14": 0.917711838}, "08095": {"FFRPTH14": 0.45840018299999996, "FSRPTH14": 1.8336007330000001}, "08097": {"FFRPTH14": 1.0779530240000001, "FSRPTH14": 4.368546465}, "08099": {"FFRPTH14": 0.8309788929999999, "FSRPTH14": 0.498587336}, "08101": {"FFRPTH14": 0.599227799, "FSRPTH14": 0.796911197}, "08103": {"FFRPTH14": 0.745489787, "FSRPTH14": 1.341881616}, "08105": {"FFRPTH14": 0.43077453299999996, "FSRPTH14": 1.033858878}, "08107": {"FFRPTH14": 1.047559187, "FSRPTH14": 2.891263356}, "08109": {"FFRPTH14": 0.161394448, "FSRPTH14": 0.645577792}, "08111": {"FFRPTH14": 5.555555556, "FSRPTH14": 13.88888889}, "08113": {"FFRPTH14": 1.530612245, "FSRPTH14": 3.826530612}, "08115": {"FFRPTH14": 0.42589437799999996, "FSRPTH14": 1.7035775130000002}, "08117": {"FFRPTH14": 1.632430962, "FSRPTH14": 4.013059448}, "08119": {"FFRPTH14": 0.598571978, "FSRPTH14": 0.897857967}, "08121": {"FFRPTH14": 0.41841004200000004, "FSRPTH14": 0.41841004200000004}, "08123": {"FFRPTH14": 0.536608204, "FSRPTH14": 0.551013793}, "08125": {"FFRPTH14": 0.196039992, "FSRPTH14": 1.2742599490000002}, "09001": {"FFRPTH14": 0.697031429, "FSRPTH14": 1.022806361}, "09003": {"FFRPTH14": 0.667049004, "FSRPTH14": 0.873065808}, "09005": {"FFRPTH14": 0.518938554, "FSRPTH14": 1.070310769}, "09007": {"FFRPTH14": 0.6426462470000001, "FSRPTH14": 1.0670352790000002}, "09009": {"FFRPTH14": 0.757015455, "FSRPTH14": 0.882410653}, "09011": {"FFRPTH14": 0.686943685, "FSRPTH14": 1.004837837}, "09013": {"FFRPTH14": 0.442632806, "FSRPTH14": 0.627613681}, "09015": {"FFRPTH14": 0.529923588, "FSRPTH14": 0.7008666809999999}, "10001": {"FFRPTH14": 0.511666579, "FSRPTH14": 0.505852187}, "10003": {"FFRPTH14": 0.696482132, "FSRPTH14": 0.7109544879999999}, "10005": {"FFRPTH14": 0.673467742, "FSRPTH14": 1.380134599}, "11001": {"FFRPTH14": 1.273347873, "FSRPTH14": 1.2232638679999999}, "12001": {"FFRPTH14": 0.7527888290000001, "FSRPTH14": 0.7527888290000001}, "12003": {"FFRPTH14": 0.590558447, "FSRPTH14": 0.479828738}, "12005": {"FFRPTH14": 0.75984021, "FSRPTH14": 1.06712853}, "12007": {"FFRPTH14": 0.599206052, "FSRPTH14": 0.41195416100000004}, "12009": {"FFRPTH14": 0.615926089, "FSRPTH14": 0.8619373840000001}, "12011": {"FFRPTH14": 0.687981982, "FSRPTH14": 0.7901628209999999}, "12013": {"FFRPTH14": 0.48169556799999996, "FSRPTH14": 0.550509221}, "12015": {"FFRPTH14": 0.439236915, "FSRPTH14": 0.7478898820000001}, "12017": {"FFRPTH14": 0.33721489200000004, "FSRPTH14": 0.60985672}, "12019": {"FFRPTH14": 0.5956015579999999, "FSRPTH14": 0.5005055110000001}, "12021": {"FFRPTH14": 0.530424885, "FSRPTH14": 1.161200423}, "12023": {"FFRPTH14": 0.589474925, "FSRPTH14": 0.604211798}, "12027": {"FFRPTH14": 0.314177996, "FSRPTH14": 0.314177996}, "12029": {"FFRPTH14": 0.502923241, "FSRPTH14": 0.251461621}, "12031": {"FFRPTH14": 0.823216717, "FSRPTH14": 0.77531642}, "12033": {"FFRPTH14": 0.605165149, "FSRPTH14": 0.653449602}, "12035": {"FFRPTH14": 0.36129989799999995, "FSRPTH14": 0.712834935}, "12037": {"FFRPTH14": 0.423190859, "FSRPTH14": 1.86203978}, "12039": {"FFRPTH14": 0.410535641, "FSRPTH14": 0.302499946}, "12041": {"FFRPTH14": 0.353003471, "FSRPTH14": 0.23533564699999998}, "12043": {"FFRPTH14": 0.146681335, "FSRPTH14": 0.220022002}, "12045": {"FFRPTH14": 0.439036628, "FSRPTH14": 0.689914701}, "12047": {"FFRPTH14": 0.498291572, "FSRPTH14": 0.21355353100000002}, "12049": {"FFRPTH14": 0.327642069, "FSRPTH14": 0.291237395}, "12051": {"FFRPTH14": 0.57135437, "FSRPTH14": 0.415530451}, "12053": {"FFRPTH14": 0.46629325299999996, "FSRPTH14": 0.60845583}, "12055": {"FFRPTH14": 0.407182703, "FSRPTH14": 0.570055784}, "12057": {"FFRPTH14": 0.6358742470000001, "FSRPTH14": 0.66474309}, "12059": {"FFRPTH14": 0.203562341, "FSRPTH14": 0.508905852}, "12061": {"FFRPTH14": 0.538841491, "FSRPTH14": 0.8082622359999999}, "12063": {"FFRPTH14": 0.553267351, "FSRPTH14": 0.512284584}, "12065": {"FFRPTH14": 0.427046263, "FSRPTH14": 0.355871886}, "12067": {"FFRPTH14": 0.226372383, "FSRPTH14": 0.226372383}, "12069": {"FFRPTH14": 0.446640692, "FSRPTH14": 0.6588742120000001}, "12071": {"FFRPTH14": 0.522432978, "FSRPTH14": 0.8874002409999999}, "12073": {"FFRPTH14": 0.8944039890000001, "FSRPTH14": 0.7641167940000001}, "12075": {"FFRPTH14": 0.429152046, "FSRPTH14": 0.63110595}, "12077": {"FFRPTH14": 0.0, "FSRPTH14": 0.47846890000000003}, "12079": {"FFRPTH14": 0.486013608, "FSRPTH14": 0.324009072}, "12081": {"FFRPTH14": 0.511732898, "FSRPTH14": 0.767599347}, "12083": {"FFRPTH14": 0.477640808, "FSRPTH14": 0.518918409}, "12085": {"FFRPTH14": 0.6714822159999999, "FSRPTH14": 1.153906331}, "12086": {"FFRPTH14": 0.61587593, "FSRPTH14": 0.762709764}, "12087": {"FFRPTH14": 0.907488073, "FSRPTH14": 2.800248911}, "12089": {"FFRPTH14": 0.639528054, "FSRPTH14": 0.8614051340000001}, "12091": {"FFRPTH14": 0.758223416, "FSRPTH14": 1.027927048}, "12093": {"FFRPTH14": 0.434238422, "FSRPTH14": 0.664129352}, "12095": {"FFRPTH14": 0.7565835940000001, "FSRPTH14": 0.837190074}, "12097": {"FFRPTH14": 0.5963682779999999, "FSRPTH14": 0.693076648}, "12099": {"FFRPTH14": 0.651064956, "FSRPTH14": 0.839945339}, "12101": {"FFRPTH14": 0.391485399, "FSRPTH14": 0.552200457}, "12103": {"FFRPTH14": 0.653449853, "FSRPTH14": 0.9252764640000001}, "12105": {"FFRPTH14": 0.456953413, "FSRPTH14": 0.46798332299999995}, "12107": {"FFRPTH14": 0.38811804299999997, "FSRPTH14": 0.38811804299999997}, "12109": {"FFRPTH14": 0.610318513, "FSRPTH14": 0.9682496709999999}, "12111": {"FFRPTH14": 0.474181178, "FSRPTH14": 0.539466993}, "12113": {"FFRPTH14": 0.507887555, "FSRPTH14": 0.43445802899999997}, "12115": {"FFRPTH14": 0.463520438, "FSRPTH14": 1.14620543}, "12117": {"FFRPTH14": 0.693760226, "FSRPTH14": 0.752515163}, "12119": {"FFRPTH14": 0.23611718399999998, "FSRPTH14": 0.568430258}, "12121": {"FFRPTH14": 0.499750125, "FSRPTH14": 0.363454636}, "12123": {"FFRPTH14": 0.44283057299999995, "FSRPTH14": 0.398547516}, "12125": {"FFRPTH14": 0.197498354, "FSRPTH14": 0.065832785}, "12127": {"FFRPTH14": 0.530016886, "FSRPTH14": 0.876793733}, "12129": {"FFRPTH14": 0.31814711100000004, "FSRPTH14": 0.6681089339999999}, "12131": {"FFRPTH14": 0.731350561, "FSRPTH14": 1.787745815}, "12133": {"FFRPTH14": 0.695268087, "FSRPTH14": 0.44987935100000004}, "13001": {"FFRPTH14": 0.7011866240000001, "FSRPTH14": 0.485436893}, "13003": {"FFRPTH14": 0.486440472, "FSRPTH14": 0.121610118}, "13005": {"FFRPTH14": 0.620512366, "FSRPTH14": 0.354578495}, "13007": {"FFRPTH14": 0.0, "FSRPTH14": 0.0}, "13009": {"FFRPTH14": 0.8712888540000001, "FSRPTH14": 0.6534666410000001}, "13011": {"FFRPTH14": 0.765236403, "FSRPTH14": 0.929215633}, "13013": {"FFRPTH14": 0.546149645, "FSRPTH14": 0.39595849299999997}, "13015": {"FFRPTH14": 0.570103012, "FSRPTH14": 0.638908548}, "13017": {"FFRPTH14": 0.801649107, "FSRPTH14": 0.629867155}, "13019": {"FFRPTH14": 0.481283422, "FSRPTH14": 0.42780748700000004}, "13021": {"FFRPTH14": 1.124070043, "FSRPTH14": 0.7407166759999999}, "13023": {"FFRPTH14": 0.390777648, "FSRPTH14": 0.312622118}, "13025": {"FFRPTH14": 0.32578595899999996, "FSRPTH14": 0.162892979}, "13027": {"FFRPTH14": 0.45401478799999995, "FSRPTH14": 0.32429627699999997}, "13029": {"FFRPTH14": 0.796319236, "FSRPTH14": 0.766825931}, "13031": {"FFRPTH14": 0.776839097, "FSRPTH14": 0.707478464}, "13033": {"FFRPTH14": 0.352283236, "FSRPTH14": 0.39631864}, "13035": {"FFRPTH14": 0.513522766, "FSRPTH14": 0.470729202}, "13037": {"FFRPTH14": 0.154726907, "FSRPTH14": 0.773634535}, "13039": {"FFRPTH14": 0.672727622, "FSRPTH14": 0.845714725}, "13043": {"FFRPTH14": 1.102130786, "FSRPTH14": 0.551065393}, "13045": {"FFRPTH14": 0.7099471479999999, "FSRPTH14": 0.745006267}, "13047": {"FFRPTH14": 0.700995108, "FSRPTH14": 0.441931699}, "13049": {"FFRPTH14": 0.46522447100000003, "FSRPTH14": 0.310149647}, "13051": {"FFRPTH14": 1.0198356259999999, "FSRPTH14": 1.150402817}, "13053": {"FFRPTH14": 0.16896173, "FSRPTH14": 0.084480865}, "13055": {"FFRPTH14": 0.40097838700000005, "FSRPTH14": 0.360880549}, "13057": {"FFRPTH14": 0.640734247, "FSRPTH14": 0.610429249}, "13059": {"FFRPTH14": 0.99224396, "FSRPTH14": 1.0418561579999999}, "13061": {"FFRPTH14": 0.0, "FSRPTH14": 0.644745326}, "13063": {"FFRPTH14": 0.70643114, "FSRPTH14": 0.321444857}, "13065": {"FFRPTH14": 0.7319572540000001, "FSRPTH14": 0.29278290100000004}, "13067": {"FFRPTH14": 0.824918842, "FSRPTH14": 0.752413537}, "13069": {"FFRPTH14": 0.6773959959999999, "FSRPTH14": 0.350377239}, "13071": {"FFRPTH14": 0.563966856, "FSRPTH14": 0.433820659}, "13073": {"FFRPTH14": 0.517029665, "FSRPTH14": 0.5960203079999999}, "13075": {"FFRPTH14": 0.7551992559999999, "FSRPTH14": 0.290461252}, "13077": {"FFRPTH14": 0.48682977899999996, "FSRPTH14": 0.48682977899999996}, "13079": {"FFRPTH14": 0.080729797, "FSRPTH14": 0.161459595}, "13081": {"FFRPTH14": 0.784860905, "FSRPTH14": 0.566843987}, "13083": {"FFRPTH14": 0.48813228399999997, "FSRPTH14": 0.42711574799999996}, "13085": {"FFRPTH14": 0.740514876, "FSRPTH14": 0.60983578}, "13087": {"FFRPTH14": 0.77149155, "FSRPTH14": 0.551065393}, "13089": {"FFRPTH14": 0.8239159970000001, "FSRPTH14": 0.758833557}, "13091": {"FFRPTH14": 0.619755912, "FSRPTH14": 0.238367658}, "13093": {"FFRPTH14": 0.422892585, "FSRPTH14": 0.140964195}, "13095": {"FFRPTH14": 0.995595572, "FSRPTH14": 0.627658078}, "13097": {"FFRPTH14": 0.612497838, "FSRPTH14": 0.526027555}, "13099": {"FFRPTH14": 0.47659899, "FSRPTH14": 1.3344771709999999}, "13101": {"FFRPTH14": 0.0, "FSRPTH14": 0.249812641}, "13103": {"FFRPTH14": 0.433033217, "FSRPTH14": 0.396947116}, "13105": {"FFRPTH14": 0.565901842, "FSRPTH14": 0.25722811}, "13107": {"FFRPTH14": 0.527356625, "FSRPTH14": 0.659195781}, "13109": {"FFRPTH14": 0.45879978, "FSRPTH14": 0.550559736}, "13111": {"FFRPTH14": 0.841998905, "FSRPTH14": 1.052498632}, "13113": {"FFRPTH14": 0.866282463, "FSRPTH14": 0.8298074120000001}, "13115": {"FFRPTH14": 0.780737641, "FSRPTH14": 0.624590113}, "13117": {"FFRPTH14": 0.636312909, "FSRPTH14": 0.636312909}, "13119": {"FFRPTH14": 0.6737333809999999, "FSRPTH14": 0.808480057}, "13121": {"FFRPTH14": 1.1512377059999999, "FSRPTH14": 1.1141010059999998}, "13123": {"FFRPTH14": 0.728433175, "FSRPTH14": 0.936556939}, "13125": {"FFRPTH14": 0.0, "FSRPTH14": 0.327546675}, "13127": {"FFRPTH14": 1.095223608, "FSRPTH14": 1.2290842709999998}, "13129": {"FFRPTH14": 0.624475886, "FSRPTH14": 0.481738541}, "13131": {"FFRPTH14": 0.630939706, "FSRPTH14": 0.197168658}, "13133": {"FFRPTH14": 0.424499697, "FSRPTH14": 0.9702850209999999}, "13135": {"FFRPTH14": 0.766582908, "FSRPTH14": 0.765443855}, "13137": {"FFRPTH14": 0.68568294, "FSRPTH14": 0.639970744}, "13139": {"FFRPTH14": 0.581879944, "FSRPTH14": 0.566153459}, "13141": {"FFRPTH14": 0.822658362, "FSRPTH14": 0.235045246}, "13143": {"FFRPTH14": 0.663384658, "FSRPTH14": 0.628469676}, "13145": {"FFRPTH14": 0.243338606, "FSRPTH14": 0.39542523399999996}, "13147": {"FFRPTH14": 0.472869133, "FSRPTH14": 0.433463372}, "13149": {"FFRPTH14": 0.34473843, "FSRPTH14": 0.172369215}, "13151": {"FFRPTH14": 0.7107154379999999, "FSRPTH14": 0.565766895}, "13153": {"FFRPTH14": 0.8383016679999999, "FSRPTH14": 0.523100241}, "13155": {"FFRPTH14": 0.43936731100000004, "FSRPTH14": 0.329525483}, "13157": {"FFRPTH14": 0.549539357, "FSRPTH14": 0.50105059}, "13159": {"FFRPTH14": 0.22334723, "FSRPTH14": 0.521143538}, "13161": {"FFRPTH14": 0.5383942389999999, "FSRPTH14": 0.26919712}, "13163": {"FFRPTH14": 0.676007866, "FSRPTH14": 0.43018682399999997}, "13165": {"FFRPTH14": 0.6575342470000001, "FSRPTH14": 0.328767123}, "13167": {"FFRPTH14": 0.618492939, "FSRPTH14": 0.20616431300000002}, "13169": {"FFRPTH14": 0.24316531800000002, "FSRPTH14": 0.486330635}, "13171": {"FFRPTH14": 0.439391443, "FSRPTH14": 0.49431537299999995}, "13173": {"FFRPTH14": 0.38561650399999997, "FSRPTH14": 0.48202063}, "13175": {"FFRPTH14": 0.815029989, "FSRPTH14": 0.73143717}, "13177": {"FFRPTH14": 0.445342743, "FSRPTH14": 0.23979993800000002}, "13179": {"FFRPTH14": 0.659529433, "FSRPTH14": 0.414123133}, "13181": {"FFRPTH14": 0.393597481, "FSRPTH14": 0.6559958020000001}, "13183": {"FFRPTH14": 0.175305323, "FSRPTH14": 0.116870216}, "13185": {"FFRPTH14": 0.960157853, "FSRPTH14": 0.757555738}, "13187": {"FFRPTH14": 0.866050808, "FSRPTH14": 0.737746985}, "13189": {"FFRPTH14": 0.701918577, "FSRPTH14": 0.608329434}, "13191": {"FFRPTH14": 0.703531729, "FSRPTH14": 0.9849444209999999}, "13193": {"FFRPTH14": 0.5075406029999999, "FSRPTH14": 0.145011601}, "13195": {"FFRPTH14": 0.353207121, "FSRPTH14": 0.17660356}, "13197": {"FFRPTH14": 0.454700466, "FSRPTH14": 0.227350233}, "13199": {"FFRPTH14": 0.47174261700000003, "FSRPTH14": 0.613265402}, "13201": {"FFRPTH14": 0.167841558, "FSRPTH14": 0.67136623}, "13205": {"FFRPTH14": 0.658732598, "FSRPTH14": 0.39523955899999996}, "13207": {"FFRPTH14": 0.480573731, "FSRPTH14": 0.480573731}, "13209": {"FFRPTH14": 0.44488933399999997, "FSRPTH14": 0.111222333}, "13211": {"FFRPTH14": 0.8353753620000001, "FSRPTH14": 1.058142125}, "13213": {"FFRPTH14": 0.634356762, "FSRPTH14": 0.152245623}, "13215": {"FFRPTH14": 0.970694968, "FSRPTH14": 0.6122845179999999}, "13217": {"FFRPTH14": 0.569086086, "FSRPTH14": 0.356884495}, "13219": {"FFRPTH14": 0.9403584759999999, "FSRPTH14": 0.598409939}, "13221": {"FFRPTH14": 0.272609555, "FSRPTH14": 0.0}, "13223": {"FFRPTH14": 0.422855685, "FSRPTH14": 0.37587172}, "13225": {"FFRPTH14": 0.705742515, "FSRPTH14": 0.445732115}, "13227": {"FFRPTH14": 0.466713338, "FSRPTH14": 0.800080008}, "13229": {"FFRPTH14": 0.68453478, "FSRPTH14": 0.315939129}, "13231": {"FFRPTH14": 0.224921278, "FSRPTH14": 0.281151597}, "13233": {"FFRPTH14": 0.705030025, "FSRPTH14": 0.583473124}, "13235": {"FFRPTH14": 0.9579378209999999, "FSRPTH14": 0.43542628200000005}, "13237": {"FFRPTH14": 0.330313326, "FSRPTH14": 0.70781427}, "13239": {"FFRPTH14": 0.0, "FSRPTH14": 0.0}, "13241": {"FFRPTH14": 1.046604691, "FSRPTH14": 1.66225451}, "13243": {"FFRPTH14": 0.546971147, "FSRPTH14": 0.546971147}, "13245": {"FFRPTH14": 0.78463311, "FSRPTH14": 0.6455842039999999}, "13247": {"FFRPTH14": 0.82047542, "FSRPTH14": 0.672334025}, "13249": {"FFRPTH14": 0.38737168299999997, "FSRPTH14": 0.193685842}, "13251": {"FFRPTH14": 0.354987575, "FSRPTH14": 0.42598509100000004}, "13253": {"FFRPTH14": 0.46051116700000005, "FSRPTH14": 0.46051116700000005}, "13255": {"FFRPTH14": 0.843908233, "FSRPTH14": 0.562605489}, "13257": {"FFRPTH14": 0.588697017, "FSRPTH14": 0.549450549}, "13259": {"FFRPTH14": 0.0, "FSRPTH14": 0.17409470800000001}, "13261": {"FFRPTH14": 0.672387295, "FSRPTH14": 0.5122950820000001}, "13263": {"FFRPTH14": 0.156494523, "FSRPTH14": 0.156494523}, "13265": {"FFRPTH14": 0.0, "FSRPTH14": 0.590667454}, "13267": {"FFRPTH14": 0.23786869600000002, "FSRPTH14": 0.15857913099999998}, "13269": {"FFRPTH14": 0.7107320540000001, "FSRPTH14": 0.11845534199999999}, "13271": {"FFRPTH14": 0.423780119, "FSRPTH14": 0.302700085}, "13273": {"FFRPTH14": 0.657030223, "FSRPTH14": 0.328515112}, "13275": {"FFRPTH14": 0.822972041, "FSRPTH14": 0.711759603}, "13277": {"FFRPTH14": 0.958136792, "FSRPTH14": 0.737028302}, "13279": {"FFRPTH14": 0.95300931, "FSRPTH14": 0.6964298809999999}, "13281": {"FFRPTH14": 0.630744278, "FSRPTH14": 0.901063255}, "13283": {"FFRPTH14": 0.44260843899999996, "FSRPTH14": 0.44260843899999996}, "13285": {"FFRPTH14": 0.762930228, "FSRPTH14": 0.719745498}, "13287": {"FFRPTH14": 0.981233902, "FSRPTH14": 0.613271189}, "13289": {"FFRPTH14": 0.12019230800000001, "FSRPTH14": 0.12019230800000001}, "13291": {"FFRPTH14": 0.818777293, "FSRPTH14": 0.86426492}, "13293": {"FFRPTH14": 0.685557587, "FSRPTH14": 0.49512492399999997}, "13295": {"FFRPTH14": 0.33715441700000004, "FSRPTH14": 0.307836641}, "13297": {"FFRPTH14": 0.570678537, "FSRPTH14": 0.388061405}, "13299": {"FFRPTH14": 0.816556385, "FSRPTH14": 0.563142334}, "13301": {"FFRPTH14": 0.18115942, "FSRPTH14": 0.0}, "13303": {"FFRPTH14": 0.581536225, "FSRPTH14": 0.533074873}, "13305": {"FFRPTH14": 0.701192026, "FSRPTH14": 0.701192026}, "13307": {"FFRPTH14": 0.0, "FSRPTH14": 0.0}, "13309": {"FFRPTH14": 0.12507817400000001, "FSRPTH14": 0.25015634800000003}, "13311": {"FFRPTH14": 0.786557025, "FSRPTH14": 1.179835538}, "13313": {"FFRPTH14": 0.7919491609999999, "FSRPTH14": 0.560159162}, "13315": {"FFRPTH14": 0.226065333, "FSRPTH14": 0.226065333}, "13317": {"FFRPTH14": 0.40241448700000004, "FSRPTH14": 0.704225352}, "13319": {"FFRPTH14": 0.10722710699999999, "FSRPTH14": 0.536135535}, "13321": {"FFRPTH14": 0.334288443, "FSRPTH14": 0.238777459}, "15001": {"FFRPTH14": 0.746691385, "FSRPTH14": 0.7672897679999999}, "15003": {"FFRPTH14": 0.9245927559999999, "FSRPTH14": 0.8056157159999999}, "15005": {"FFRPTH14": 0.0, "FSRPTH14": 0.0}, "15007": {"FFRPTH14": 0.908123448, "FSRPTH14": 1.319616885}, "15009": {"FFRPTH14": 0.754513278, "FSRPTH14": 1.165508315}, "16001": {"FFRPTH14": 0.7202582609999999, "FSRPTH14": 0.7789112140000001}, "16003": {"FFRPTH14": 0.259000259, "FSRPTH14": 1.813001813}, "16005": {"FFRPTH14": 0.755876036, "FSRPTH14": 0.659891778}, "16007": {"FFRPTH14": 0.503609199, "FSRPTH14": 1.007218399}, "16009": {"FFRPTH14": 0.767712218, "FSRPTH14": 0.54836587}, "16011": {"FFRPTH14": 0.30926240899999996, "FSRPTH14": 0.41971327}, "16013": {"FFRPTH14": 1.070663812, "FSRPTH14": 2.6533842290000003}, "16015": {"FFRPTH14": 0.146541618, "FSRPTH14": 1.905041032}, "16017": {"FFRPTH14": 0.577131177, "FSRPTH14": 0.9859324279999999}, "16019": {"FFRPTH14": 0.672049198, "FSRPTH14": 0.727286118}, "16021": {"FFRPTH14": 0.54649786, "FSRPTH14": 1.0019127429999999}, "16023": {"FFRPTH14": 0.7627765059999999, "FSRPTH14": 0.7627765059999999}, "16025": {"FFRPTH14": 1.924927815, "FSRPTH14": 1.924927815}, "16027": {"FFRPTH14": 0.536567836, "FSRPTH14": 0.393811256}, "16029": {"FFRPTH14": 0.292525962, "FSRPTH14": 0.585051923}, "16031": {"FFRPTH14": 0.807136788, "FSRPTH14": 0.807136788}, "16033": {"FFRPTH14": 0.0, "FSRPTH14": 1.153402537}, "16035": {"FFRPTH14": 0.350385424, "FSRPTH14": 1.051156272}, "16037": {"FFRPTH14": 0.966183575, "FSRPTH14": 2.173913043}, "16039": {"FFRPTH14": 0.421552847, "FSRPTH14": 0.804782709}, "16041": {"FFRPTH14": 0.537593119, "FSRPTH14": 0.46079410200000004}, "16043": {"FFRPTH14": 0.388590969, "FSRPTH14": 0.6217455510000001}, "16045": {"FFRPTH14": 0.592908811, "FSRPTH14": 0.592908811}, "16047": {"FFRPTH14": 0.464684015, "FSRPTH14": 0.663834307}, "16049": {"FFRPTH14": 0.30835646, "FSRPTH14": 1.171754548}, "16051": {"FFRPTH14": 0.407090781, "FSRPTH14": 0.407090781}, "16053": {"FFRPTH14": 0.438250504, "FSRPTH14": 0.657375756}, "16055": {"FFRPTH14": 0.6719791479999999, "FSRPTH14": 0.7873695070000001}, "16057": {"FFRPTH14": 0.75499206, "FSRPTH14": 0.807060477}, "16059": {"FFRPTH14": 0.38829924899999996, "FSRPTH14": 1.8120631630000001}, "16061": {"FFRPTH14": 1.042209484, "FSRPTH14": 0.521104742}, "16063": {"FFRPTH14": 0.0, "FSRPTH14": 0.752445448}, "16065": {"FFRPTH14": 0.7361059990000001, "FSRPTH14": 0.368053}, "16067": {"FFRPTH14": 0.24602666899999998, "FSRPTH14": 0.590464006}, "16069": {"FFRPTH14": 0.6998775209999999, "FSRPTH14": 0.724873147}, "16071": {"FFRPTH14": 1.195028681, "FSRPTH14": 0.956022945}, "16073": {"FFRPTH14": 0.616577116, "FSRPTH14": 0.880824452}, "16075": {"FFRPTH14": 0.525486075, "FSRPTH14": 0.306533544}, "16077": {"FFRPTH14": 0.262570566, "FSRPTH14": 0.393855849}, "16079": {"FFRPTH14": 0.645682002, "FSRPTH14": 1.291364003}, "16081": {"FFRPTH14": 0.48351223299999996, "FSRPTH14": 2.030751378}, "16083": {"FFRPTH14": 0.7786044440000001, "FSRPTH14": 0.70445164}, "16085": {"FFRPTH14": 0.814166497, "FSRPTH14": 2.646041115}, "16087": {"FFRPTH14": 0.59874264, "FSRPTH14": 0.898113961}, "17001": {"FFRPTH14": 0.47769749799999994, "FSRPTH14": 0.850898668}, "17003": {"FFRPTH14": 0.0, "FSRPTH14": 0.53390283}, "17005": {"FFRPTH14": 0.405350628, "FSRPTH14": 0.7527940240000001}, "17007": {"FFRPTH14": 0.48265236, "FSRPTH14": 0.33414394199999997}, "17009": {"FFRPTH14": 0.43911007, "FSRPTH14": 0.292740047}, "17011": {"FFRPTH14": 0.354609929, "FSRPTH14": 0.8274231679999999}, "17013": {"FFRPTH14": 0.201775626, "FSRPTH14": 2.4213075059999998}, "17015": {"FFRPTH14": 0.679578661, "FSRPTH14": 0.88345226}, "17017": {"FFRPTH14": 0.608087565, "FSRPTH14": 0.608087565}, "17019": {"FFRPTH14": 0.830384342, "FSRPTH14": 0.8496956059999999}, "17021": {"FFRPTH14": 0.501593296, "FSRPTH14": 0.796648177}, "17023": {"FFRPTH14": 0.927070457, "FSRPTH14": 0.927070457}, "17025": {"FFRPTH14": 0.591715976, "FSRPTH14": 0.73964497}, "17027": {"FFRPTH14": 0.47547349200000005, "FSRPTH14": 0.9773621790000001}, "17029": {"FFRPTH14": 0.731432858, "FSRPTH14": 0.825206302}, "17031": {"FFRPTH14": 0.835039882, "FSRPTH14": 0.726776323}, "17033": {"FFRPTH14": 0.618779972, "FSRPTH14": 0.567214974}, "17035": {"FFRPTH14": 0.276931598, "FSRPTH14": 0.461552663}, "17037": {"FFRPTH14": 0.711156625, "FSRPTH14": 0.663746183}, "17039": {"FFRPTH14": 0.491279784, "FSRPTH14": 0.859739622}, "17041": {"FFRPTH14": 0.8547438279999999, "FSRPTH14": 1.0055809740000001}, "17043": {"FFRPTH14": 0.903819845, "FSRPTH14": 0.7483585429999999}, "17045": {"FFRPTH14": 0.448405358, "FSRPTH14": 0.784709377}, "17047": {"FFRPTH14": 0.755629439, "FSRPTH14": 0.45337766399999996}, "17049": {"FFRPTH14": 0.9906759909999999, "FSRPTH14": 0.757575758}, "17051": {"FFRPTH14": 0.32007316, "FSRPTH14": 1.051668953}, "17053": {"FFRPTH14": 0.43834015200000004, "FSRPTH14": 1.46113384}, "17055": {"FFRPTH14": 0.558219786, "FSRPTH14": 0.811956053}, "17057": {"FFRPTH14": 0.5554475520000001, "FSRPTH14": 0.9720332159999999}, "17059": {"FFRPTH14": 0.0, "FSRPTH14": 0.945000945}, "17061": {"FFRPTH14": 0.297751973, "FSRPTH14": 0.669941938}, "17063": {"FFRPTH14": 0.753594447, "FSRPTH14": 0.5156172529999999}, "17065": {"FFRPTH14": 0.36162005799999997, "FSRPTH14": 0.482160077}, "17067": {"FFRPTH14": 0.538677009, "FSRPTH14": 0.269338505}, "17069": {"FFRPTH14": 0.0, "FSRPTH14": 1.453136353}, "17071": {"FFRPTH14": 0.28918449999999996, "FSRPTH14": 0.43377675}, "17073": {"FFRPTH14": 0.463382694, "FSRPTH14": 0.765588798}, "17075": {"FFRPTH14": 0.727171993, "FSRPTH14": 0.5886630420000001}, "17077": {"FFRPTH14": 0.603247482, "FSRPTH14": 0.8043299759999999}, "17079": {"FFRPTH14": 0.519588486, "FSRPTH14": 0.415670789}, "17081": {"FFRPTH14": 0.7785332429999999, "FSRPTH14": 0.6487777029999999}, "17083": {"FFRPTH14": 0.575960303, "FSRPTH14": 0.930397413}, "17085": {"FFRPTH14": 0.40442167700000003, "FSRPTH14": 1.797429676}, "17087": {"FFRPTH14": 0.396793905, "FSRPTH14": 0.476152686}, "17089": {"FFRPTH14": 0.6163404170000001, "FSRPTH14": 0.597376097}, "17091": {"FFRPTH14": 0.691358025, "FSRPTH14": 0.6015712679999999}, "17093": {"FFRPTH14": 0.585084466, "FSRPTH14": 0.46147507200000004}, "17095": {"FFRPTH14": 0.7490061259999999, "FSRPTH14": 0.787416697}, "17097": {"FFRPTH14": 0.7728457459999999, "FSRPTH14": 0.689179876}, "17099": {"FFRPTH14": 0.620274899, "FSRPTH14": 1.1326759020000001}, "17101": {"FFRPTH14": 0.36321811200000004, "FSRPTH14": 0.726436225}, "17103": {"FFRPTH14": 0.37426227100000004, "FSRPTH14": 0.9212609759999999}, "17105": {"FFRPTH14": 0.527662718, "FSRPTH14": 0.844260349}, "17107": {"FFRPTH14": 0.470651516, "FSRPTH14": 0.7059772740000001}, "17109": {"FFRPTH14": 0.752823087, "FSRPTH14": 0.90966123}, "17111": {"FFRPTH14": 0.696426421, "FSRPTH14": 0.69968075}, "17113": {"FFRPTH14": 0.7296292679999999, "FSRPTH14": 0.695158594}, "17115": {"FFRPTH14": 0.581449008, "FSRPTH14": 0.756806645}, "17117": {"FFRPTH14": 0.430542699, "FSRPTH14": 0.753449723}, "17119": {"FFRPTH14": 0.701530612, "FSRPTH14": 0.772809124}, "17121": {"FFRPTH14": 0.622229136, "FSRPTH14": 0.700007778}, "17123": {"FFRPTH14": 0.416181122, "FSRPTH14": 0.915598468}, "17125": {"FFRPTH14": 0.5036695929999999, "FSRPTH14": 0.7914807890000001}, "17127": {"FFRPTH14": 0.33545790000000003, "FSRPTH14": 0.46964106}, "17129": {"FFRPTH14": 0.15910899, "FSRPTH14": 0.6364359589999999}, "17131": {"FFRPTH14": 0.313577924, "FSRPTH14": 0.7525870179999999}, "17133": {"FFRPTH14": 0.6523930960000001, "FSRPTH14": 0.859972718}, "17135": {"FFRPTH14": 0.681222112, "FSRPTH14": 0.8855887459999999}, "17137": {"FFRPTH14": 0.629849123, "FSRPTH14": 0.744367145}, "17139": {"FFRPTH14": 0.13479814, "FSRPTH14": 0.606591629}, "17141": {"FFRPTH14": 0.5567821829999999, "FSRPTH14": 0.729576654}, "17143": {"FFRPTH14": 0.720695712, "FSRPTH14": 0.827465447}, "17145": {"FFRPTH14": 0.46142488, "FSRPTH14": 0.8305647840000001}, "17147": {"FFRPTH14": 0.365163411, "FSRPTH14": 0.669466253}, "17149": {"FFRPTH14": 0.312070903, "FSRPTH14": 0.748970166}, "17151": {"FFRPTH14": 0.0, "FSRPTH14": 0.467726848}, "17153": {"FFRPTH14": 0.343938091, "FSRPTH14": 0.343938091}, "17155": {"FFRPTH14": 0.0, "FSRPTH14": 1.71998624}, "17157": {"FFRPTH14": 0.578052268, "FSRPTH14": 0.7301712859999999}, "17159": {"FFRPTH14": 0.99620198, "FSRPTH14": 0.43583836600000003}, "17161": {"FFRPTH14": 0.7462533290000001, "FSRPTH14": 0.848948741}, "17163": {"FFRPTH14": 0.718777401, "FSRPTH14": 0.6209333570000001}, "17165": {"FFRPTH14": 0.6907199740000001, "FSRPTH14": 0.6500893870000001}, "17167": {"FFRPTH14": 0.773881013, "FSRPTH14": 0.8995110479999999}, "17169": {"FFRPTH14": 0.409276944, "FSRPTH14": 0.545702592}, "17171": {"FFRPTH14": 0.38431975399999996, "FSRPTH14": 1.152959262}, "17173": {"FFRPTH14": 0.317489115, "FSRPTH14": 0.8164005809999999}, "17175": {"FFRPTH14": 0.0, "FSRPTH14": 0.344056425}, "17177": {"FFRPTH14": 0.5814579520000001, "FSRPTH14": 0.6675998710000001}, "17179": {"FFRPTH14": 0.8032010140000001, "FSRPTH14": 0.7589881140000001}, "17181": {"FFRPTH14": 0.7451137729999999, "FSRPTH14": 0.687797329}, "17183": {"FFRPTH14": 0.52679109, "FSRPTH14": 0.62713225}, "17185": {"FFRPTH14": 0.8658758329999999, "FSRPTH14": 0.5195255}, "17187": {"FFRPTH14": 0.44757748700000005, "FSRPTH14": 0.615419044}, "17189": {"FFRPTH14": 0.6974959890000001, "FSRPTH14": 0.5579967920000001}, "17191": {"FFRPTH14": 0.30224264, "FSRPTH14": 0.846279393}, "17193": {"FFRPTH14": 0.556560456, "FSRPTH14": 0.765270628}, "17195": {"FFRPTH14": 0.527463253, "FSRPTH14": 0.861523314}, "17197": {"FFRPTH14": 0.695924683, "FSRPTH14": 0.47708044299999997}, "17199": {"FFRPTH14": 0.626790831, "FSRPTH14": 0.701408787}, "17201": {"FFRPTH14": 0.700071393, "FSRPTH14": 0.720865593}, "17203": {"FFRPTH14": 0.484854671, "FSRPTH14": 0.637966673}, "18001": {"FFRPTH14": 0.459889052, "FSRPTH14": 0.60360438}, "18003": {"FFRPTH14": 0.655884652, "FSRPTH14": 0.702343148}, "18005": {"FFRPTH14": 0.8850991690000001, "FSRPTH14": 0.698106386}, "18007": {"FFRPTH14": 0.574712644, "FSRPTH14": 0.229885057}, "18009": {"FFRPTH14": 0.403193291, "FSRPTH14": 0.483831949}, "18011": {"FFRPTH14": 0.61374465, "FSRPTH14": 0.74295405}, "18013": {"FFRPTH14": 0.267343938, "FSRPTH14": 0.802031814}, "18015": {"FFRPTH14": 0.652512172, "FSRPTH14": 0.652512172}, "18017": {"FFRPTH14": 0.8064935740000001, "FSRPTH14": 0.49430251299999994}, "18019": {"FFRPTH14": 0.74390436, "FSRPTH14": 0.638882568}, "18021": {"FFRPTH14": 0.527068745, "FSRPTH14": 0.60236428}, "18023": {"FFRPTH14": 0.640712717, "FSRPTH14": 0.48816207}, "18025": {"FFRPTH14": 0.093852651, "FSRPTH14": 1.032379165}, "18027": {"FFRPTH14": 0.5805249170000001, "FSRPTH14": 0.48886308799999995}, "18029": {"FFRPTH14": 0.504989294, "FSRPTH14": 0.504989294}, "18031": {"FFRPTH14": 0.829437491, "FSRPTH14": 0.6786306740000001}, "18033": {"FFRPTH14": 0.637047873, "FSRPTH14": 0.7550197009999999}, "18035": {"FFRPTH14": 0.657703675, "FSRPTH14": 0.597912431}, "18037": {"FFRPTH14": 0.921006022, "FSRPTH14": 0.9918526390000001}, "18039": {"FFRPTH14": 0.68326641, "FSRPTH14": 0.5594862629999999}, "18041": {"FFRPTH14": 0.9800579509999999, "FSRPTH14": 0.468723368}, "18043": {"FFRPTH14": 0.8795074759999999, "FSRPTH14": 0.5382060670000001}, "18045": {"FFRPTH14": 0.420218514, "FSRPTH14": 0.780405811}, "18047": {"FFRPTH14": 0.654050754, "FSRPTH14": 0.610447371}, "18049": {"FFRPTH14": 0.634146341, "FSRPTH14": 0.975609756}, "18051": {"FFRPTH14": 0.59243461, "FSRPTH14": 0.888651915}, "18053": {"FFRPTH14": 0.7146086420000001, "FSRPTH14": 0.525018594}, "18055": {"FFRPTH14": 0.672248365, "FSRPTH14": 0.702805109}, "18057": {"FFRPTH14": 0.723672688, "FSRPTH14": 0.6972371559999999}, "18059": {"FFRPTH14": 0.6251910310000001, "FSRPTH14": 0.402900886}, "18061": {"FFRPTH14": 0.483472862, "FSRPTH14": 0.381689102}, "18063": {"FFRPTH14": 0.768954734, "FSRPTH14": 0.7240990409999999}, "18065": {"FFRPTH14": 0.5102561489999999, "FSRPTH14": 0.367384427}, "18067": {"FFRPTH14": 0.927912077, "FSRPTH14": 0.626641922}, "18069": {"FFRPTH14": 0.844548575, "FSRPTH14": 0.817305073}, "18071": {"FFRPTH14": 0.7779430270000001, "FSRPTH14": 0.6177782860000001}, "18073": {"FFRPTH14": 0.6273338310000001, "FSRPTH14": 0.71695295}, "18075": {"FFRPTH14": 0.424949242, "FSRPTH14": 0.613815572}, "18077": {"FFRPTH14": 0.584723334, "FSRPTH14": 0.8616975440000001}, "18079": {"FFRPTH14": 0.39285714299999996, "FSRPTH14": 0.35714285700000004}, "18081": {"FFRPTH14": 0.847239355, "FSRPTH14": 0.7116810579999999}, "18083": {"FFRPTH14": 0.6589698979999999, "FSRPTH14": 0.896199062}, "18085": {"FFRPTH14": 0.687337712, "FSRPTH14": 0.814622473}, "18087": {"FFRPTH14": 0.208138204, "FSRPTH14": 0.676449162}, "18089": {"FFRPTH14": 0.8261462009999999, "FSRPTH14": 0.607880415}, "18091": {"FFRPTH14": 0.6281181579999999, "FSRPTH14": 0.798607372}, "18093": {"FFRPTH14": 0.481358306, "FSRPTH14": 0.393838614}, "18095": {"FFRPTH14": 0.59199348, "FSRPTH14": 0.661187524}, "18097": {"FFRPTH14": 0.890560593, "FSRPTH14": 0.7374954909999999}, "18099": {"FFRPTH14": 0.912815505, "FSRPTH14": 0.615619759}, "18101": {"FFRPTH14": 0.882093502, "FSRPTH14": 0.882093502}, "18103": {"FFRPTH14": 0.611892974, "FSRPTH14": 0.528453023}, "18105": {"FFRPTH14": 0.774387989, "FSRPTH14": 0.8511291409999999}, "18107": {"FFRPTH14": 0.7078068470000001, "FSRPTH14": 0.5243013679999999}, "18109": {"FFRPTH14": 0.5452484470000001, "FSRPTH14": 0.444807943}, "18111": {"FFRPTH14": 0.7064142409999999, "FSRPTH14": 0.777055665}, "18113": {"FFRPTH14": 0.546012012, "FSRPTH14": 0.5040110879999999}, "18115": {"FFRPTH14": 0.331400166, "FSRPTH14": 0.331400166}, "18117": {"FFRPTH14": 0.7133394479999999, "FSRPTH14": 0.7133394479999999}, "18119": {"FFRPTH14": 0.333826124, "FSRPTH14": 0.333826124}, "18121": {"FFRPTH14": 0.290141009, "FSRPTH14": 0.464225614}, "18123": {"FFRPTH14": 0.719646345, "FSRPTH14": 0.822452966}, "18125": {"FFRPTH14": 0.396070976, "FSRPTH14": 0.554499366}, "18127": {"FFRPTH14": 0.664368311, "FSRPTH14": 0.7002801120000001}, "18129": {"FFRPTH14": 0.391542678, "FSRPTH14": 0.626468285}, "18131": {"FFRPTH14": 0.694069561, "FSRPTH14": 0.616950721}, "18133": {"FFRPTH14": 0.611409432, "FSRPTH14": 0.39874528200000003}, "18135": {"FFRPTH14": 0.315159155, "FSRPTH14": 0.827292783}, "18137": {"FFRPTH14": 0.526371197, "FSRPTH14": 0.701828263}, "18139": {"FFRPTH14": 0.591996211, "FSRPTH14": 0.651195832}, "18141": {"FFRPTH14": 0.78843725, "FSRPTH14": 0.691283845}, "18143": {"FFRPTH14": 0.8012820509999999, "FSRPTH14": 0.421727395}, "18145": {"FFRPTH14": 0.515937998, "FSRPTH14": 0.6729626059999999}, "18147": {"FFRPTH14": 0.48074611799999994, "FSRPTH14": 0.19229844699999998}, "18149": {"FFRPTH14": 0.34671058299999996, "FSRPTH14": 0.520065875}, "18151": {"FFRPTH14": 0.612102134, "FSRPTH14": 1.195056547}, "18153": {"FFRPTH14": 0.522565321, "FSRPTH14": 0.712589074}, "18155": {"FFRPTH14": 0.478377344, "FSRPTH14": 0.574052813}, "18157": {"FFRPTH14": 0.7483312759999999, "FSRPTH14": 0.710095371}, "18159": {"FFRPTH14": 0.64871878, "FSRPTH14": 0.38923126799999996}, "18161": {"FFRPTH14": 0.552028705, "FSRPTH14": 0.276014353}, "18163": {"FFRPTH14": 0.884586222, "FSRPTH14": 0.758216762}, "18165": {"FFRPTH14": 0.446058752, "FSRPTH14": 0.637226789}, "18167": {"FFRPTH14": 0.859718049, "FSRPTH14": 0.850473769}, "18169": {"FFRPTH14": 0.806151556, "FSRPTH14": 0.651122411}, "18171": {"FFRPTH14": 0.0, "FSRPTH14": 0.35919540200000005}, "18173": {"FFRPTH14": 0.474251419, "FSRPTH14": 0.45789792100000004}, "18175": {"FFRPTH14": 0.35870579, "FSRPTH14": 0.502188105}, "18177": {"FFRPTH14": 0.6354272879999999, "FSRPTH14": 0.8275332120000001}, "18179": {"FFRPTH14": 0.46658531299999995, "FSRPTH14": 0.610150025}, "18181": {"FFRPTH14": 0.7361059990000001, "FSRPTH14": 0.858790332}, "18183": {"FFRPTH14": 0.598748615, "FSRPTH14": 0.6885609079999999}, "19001": {"FFRPTH14": 0.402468473, "FSRPTH14": 0.6707807889999999}, "19003": {"FFRPTH14": 0.516129032, "FSRPTH14": 0.774193548}, "19005": {"FFRPTH14": 0.21370565600000002, "FSRPTH14": 1.424704374}, "19007": {"FFRPTH14": 0.6318616220000001, "FSRPTH14": 0.710844325}, "19009": {"FFRPTH14": 0.17259233699999998, "FSRPTH14": 0.5177770110000001}, "19011": {"FFRPTH14": 0.23364486, "FSRPTH14": 0.46728972}, "19013": {"FFRPTH14": 0.6019699470000001, "FSRPTH14": 0.7524624329999999}, "19015": {"FFRPTH14": 0.302651988, "FSRPTH14": 0.605303976}, "19017": {"FFRPTH14": 0.525868695, "FSRPTH14": 1.0112859509999998}, "19019": {"FFRPTH14": 0.33273124800000003, "FSRPTH14": 0.475330355}, "19021": {"FFRPTH14": 0.437360288, "FSRPTH14": 0.680338225}, "19023": {"FFRPTH14": 0.066640011, "FSRPTH14": 0.6664001070000001}, "19025": {"FFRPTH14": 0.4054328, "FSRPTH14": 0.709507399}, "19027": {"FFRPTH14": 0.7295010209999999, "FSRPTH14": 1.02130143}, "19029": {"FFRPTH14": 0.669244497, "FSRPTH14": 1.115407496}, "19031": {"FFRPTH14": 0.488838195, "FSRPTH14": 0.7060996140000001}, "19033": {"FFRPTH14": 0.878531465, "FSRPTH14": 1.063485458}, "19035": {"FFRPTH14": 0.760392024, "FSRPTH14": 0.591416019}, "19037": {"FFRPTH14": 0.407697326, "FSRPTH14": 0.9784735809999999}, "19039": {"FFRPTH14": 0.43398068799999995, "FSRPTH14": 0.6509710320000001}, "19041": {"FFRPTH14": 1.211020285, "FSRPTH14": 1.029367242}, "19043": {"FFRPTH14": 0.734795388, "FSRPTH14": 1.5261134980000002}, "19045": {"FFRPTH14": 0.520280535, "FSRPTH14": 0.7283927490000001}, "19047": {"FFRPTH14": 0.522405387, "FSRPTH14": 0.812630601}, "19049": {"FFRPTH14": 0.529715762, "FSRPTH14": 0.7364341090000001}, "19051": {"FFRPTH14": 0.45552898299999994, "FSRPTH14": 0.45552898299999994}, "19053": {"FFRPTH14": 0.605107104, "FSRPTH14": 0.24204284199999998}, "19055": {"FFRPTH14": 0.287389355, "FSRPTH14": 0.977123807}, "19057": {"FFRPTH14": 0.7949323070000001, "FSRPTH14": 0.770090672}, "19059": {"FFRPTH14": 1.062887511, "FSRPTH14": 2.125775022}, "19061": {"FFRPTH14": 0.747120473, "FSRPTH14": 0.7886271659999999}, "19063": {"FFRPTH14": 0.600600601, "FSRPTH14": 1.001001001}, "19065": {"FFRPTH14": 0.344098707, "FSRPTH14": 0.9831391629999999}, "19067": {"FFRPTH14": 0.373203956, "FSRPTH14": 0.93300989}, "19069": {"FFRPTH14": 0.47911077, "FSRPTH14": 0.766577233}, "19071": {"FFRPTH14": 0.42722871, "FSRPTH14": 0.996866989}, "19073": {"FFRPTH14": 0.869565217, "FSRPTH14": 0.760869565}, "19075": {"FFRPTH14": 0.24242424199999998, "FSRPTH14": 1.212121212}, "19077": {"FFRPTH14": 0.466330908, "FSRPTH14": 0.652863272}, "19079": {"FFRPTH14": 0.264602765, "FSRPTH14": 0.661506913}, "19081": {"FFRPTH14": 0.27205949, "FSRPTH14": 0.544118981}, "19083": {"FFRPTH14": 0.34660042700000004, "FSRPTH14": 0.866501069}, "19085": {"FFRPTH14": 0.48869031, "FSRPTH14": 0.698129014}, "19087": {"FFRPTH14": 0.44516990700000003, "FSRPTH14": 0.7914131670000001}, "19089": {"FFRPTH14": 0.317493915, "FSRPTH14": 0.846650439}, "19091": {"FFRPTH14": 0.41493775899999996, "FSRPTH14": 0.9336099590000001}, "19093": {"FFRPTH14": 0.284010224, "FSRPTH14": 0.7100255609999999}, "19095": {"FFRPTH14": 0.427480916, "FSRPTH14": 0.854961832}, "19097": {"FFRPTH14": 0.256647161, "FSRPTH14": 1.3858946719999998}, "19099": {"FFRPTH14": 0.51529616, "FSRPTH14": 0.406812758}, "19101": {"FFRPTH14": 0.634920635, "FSRPTH14": 1.0389610390000001}, "19103": {"FFRPTH14": 0.744973188, "FSRPTH14": 0.9909549009999999}, "19105": {"FFRPTH14": 0.24445096300000002, "FSRPTH14": 1.075584238}, "19107": {"FFRPTH14": 0.390968625, "FSRPTH14": 0.586452937}, "19109": {"FFRPTH14": 0.656943897, "FSRPTH14": 1.051110235}, "19111": {"FFRPTH14": 0.5384571779999999, "FSRPTH14": 0.9352150990000001}, "19113": {"FFRPTH14": 0.7347842259999999, "FSRPTH14": 0.84500186}, "19115": {"FFRPTH14": 0.26879311899999997, "FSRPTH14": 0.627183944}, "19117": {"FFRPTH14": 0.344787955, "FSRPTH14": 0.8045052290000001}, "19119": {"FFRPTH14": 0.427972267, "FSRPTH14": 0.599161174}, "19121": {"FFRPTH14": 0.19219681, "FSRPTH14": 0.640656032}, "19123": {"FFRPTH14": 0.402324542, "FSRPTH14": 0.581135449}, "19125": {"FFRPTH14": 0.569459014, "FSRPTH14": 0.719316649}, "19127": {"FFRPTH14": 0.538344834, "FSRPTH14": 0.513874615}, "19129": {"FFRPTH14": 0.134852673, "FSRPTH14": 0.40455802}, "19131": {"FFRPTH14": 0.37109193799999995, "FSRPTH14": 0.927729845}, "19133": {"FFRPTH14": 0.555802579, "FSRPTH14": 0.77812361}, "19135": {"FFRPTH14": 0.374953131, "FSRPTH14": 1.24984377}, "19137": {"FFRPTH14": 0.575760484, "FSRPTH14": 1.055560887}, "19139": {"FFRPTH14": 0.7924853740000001, "FSRPTH14": 0.675943407}, "19141": {"FFRPTH14": 0.711439954, "FSRPTH14": 0.9248719409999999}, "19143": {"FFRPTH14": 0.321646832, "FSRPTH14": 0.643293664}, "19145": {"FFRPTH14": 0.5162622610000001, "FSRPTH14": 0.903458957}, "19147": {"FFRPTH14": 0.7693153090000001, "FSRPTH14": 0.989119683}, "19149": {"FFRPTH14": 0.482431455, "FSRPTH14": 0.7638498029999999}, "19151": {"FFRPTH14": 0.420285794, "FSRPTH14": 0.560381059}, "19153": {"FFRPTH14": 0.726304848, "FSRPTH14": 0.7958909409999999}, "19155": {"FFRPTH14": 0.751653638, "FSRPTH14": 0.590585001}, "19157": {"FFRPTH14": 0.482108421, "FSRPTH14": 1.232054853}, "19159": {"FFRPTH14": 0.593941794, "FSRPTH14": 0.98990299}, "19161": {"FFRPTH14": 0.19930244100000002, "FSRPTH14": 1.5944195319999999}, "19163": {"FFRPTH14": 0.7410130290000001, "FSRPTH14": 0.7235087840000001}, "19165": {"FFRPTH14": 0.502176096, "FSRPTH14": 0.585872112}, "19167": {"FFRPTH14": 0.663187336, "FSRPTH14": 0.836192728}, "19169": {"FFRPTH14": 0.7015828129999999, "FSRPTH14": 0.7334729409999999}, "19171": {"FFRPTH14": 0.343819838, "FSRPTH14": 0.8595495959999999}, "19173": {"FFRPTH14": 0.0, "FSRPTH14": 0.976721472}, "19175": {"FFRPTH14": 0.399488655, "FSRPTH14": 0.9587727709999999}, "19177": {"FFRPTH14": 0.26780932, "FSRPTH14": 0.53561864}, "19179": {"FFRPTH14": 0.653186414, "FSRPTH14": 0.624787004}, "19181": {"FFRPTH14": 0.43790141, "FSRPTH14": 0.375344065}, "19183": {"FFRPTH14": 0.453103761, "FSRPTH14": 0.815586769}, "19185": {"FFRPTH14": 0.156372166, "FSRPTH14": 0.938232995}, "19187": {"FFRPTH14": 0.73061832, "FSRPTH14": 0.649438506}, "19189": {"FFRPTH14": 0.378823752, "FSRPTH14": 1.136471257}, "19191": {"FFRPTH14": 0.38520801200000004, "FSRPTH14": 0.9148690290000001}, "19193": {"FFRPTH14": 0.9289045770000001, "FSRPTH14": 0.77245749}, "19195": {"FFRPTH14": 0.393494229, "FSRPTH14": 0.524658972}, "19197": {"FFRPTH14": 0.62305296, "FSRPTH14": 1.168224299}, "20001": {"FFRPTH14": 0.387326671, "FSRPTH14": 0.6971880079999999}, "20003": {"FFRPTH14": 0.507421033, "FSRPTH14": 1.014842065}, "20005": {"FFRPTH14": 0.7267001759999999, "FSRPTH14": 0.7267001759999999}, "20007": {"FFRPTH14": 0.816826629, "FSRPTH14": 1.021033286}, "20009": {"FFRPTH14": 0.69381048, "FSRPTH14": 0.839875844}, "20011": {"FFRPTH14": 0.609260764, "FSRPTH14": 0.7446520440000001}, "20013": {"FFRPTH14": 0.50942435, "FSRPTH14": 1.120733571}, "20015": {"FFRPTH14": 0.7700786690000001, "FSRPTH14": 0.483186616}, "20017": {"FFRPTH14": 0.0, "FSRPTH14": 1.114413076}, "20019": {"FFRPTH14": 0.0, "FSRPTH14": 1.43636886}, "20021": {"FFRPTH14": 0.529176889, "FSRPTH14": 0.7216048490000001}, "20023": {"FFRPTH14": 0.37133308600000003, "FSRPTH14": 1.485332343}, "20025": {"FFRPTH14": 0.46641791, "FSRPTH14": 1.399253731}, "20027": {"FFRPTH14": 0.480942648, "FSRPTH14": 1.322592281}, "20029": {"FFRPTH14": 0.532765051, "FSRPTH14": 0.8524240809999999}, "20031": {"FFRPTH14": 0.711490573, "FSRPTH14": 0.948654097}, "20033": {"FFRPTH14": 0.511770727, "FSRPTH14": 1.53531218}, "20035": {"FFRPTH14": 0.444901705, "FSRPTH14": 0.528320774}, "20037": {"FFRPTH14": 0.509035378, "FSRPTH14": 0.9671672179999999}, "20039": {"FFRPTH14": 0.343878955, "FSRPTH14": 0.6877579090000001}, "20041": {"FFRPTH14": 0.567185728, "FSRPTH14": 0.773435083}, "20043": {"FFRPTH14": 0.127000254, "FSRPTH14": 0.63500127}, "20045": {"FFRPTH14": 0.849165845, "FSRPTH14": 0.8920530090000001}, "20047": {"FFRPTH14": 0.330033003, "FSRPTH14": 0.99009901}, "20049": {"FFRPTH14": 0.0, "FSRPTH14": 2.227171492}, "20051": {"FFRPTH14": 1.102953848, "FSRPTH14": 0.965084617}, "20053": {"FFRPTH14": 0.46933667100000004, "FSRPTH14": 0.9386733420000001}, "20055": {"FFRPTH14": 0.618545611, "FSRPTH14": 0.6992254729999999}, "20057": {"FFRPTH14": 0.45983618299999995, "FSRPTH14": 0.8047133209999999}, "20059": {"FFRPTH14": 0.585685838, "FSRPTH14": 0.819960173}, "20061": {"FFRPTH14": 0.7081960070000001, "FSRPTH14": 0.6264810829999999}, "20063": {"FFRPTH14": 1.100110011, "FSRPTH14": 1.100110011}, "20065": {"FFRPTH14": 0.779423227, "FSRPTH14": 0.779423227}, "20067": {"FFRPTH14": 0.639713408, "FSRPTH14": 0.76765609}, "20069": {"FFRPTH14": 0.164419599, "FSRPTH14": 0.493258796}, "20071": {"FFRPTH14": 0.0, "FSRPTH14": 0.0}, "20073": {"FFRPTH14": 0.15802781300000002, "FSRPTH14": 1.10619469}, "20075": {"FFRPTH14": 0.384172109, "FSRPTH14": 0.768344218}, "20077": {"FFRPTH14": 0.515641114, "FSRPTH14": 1.203162599}, "20079": {"FFRPTH14": 0.6892590470000001, "FSRPTH14": 0.545663412}, "20081": {"FFRPTH14": 0.24354603, "FSRPTH14": 1.217730151}, "20083": {"FFRPTH14": 0.5219206679999999, "FSRPTH14": 0.5219206679999999}, "20085": {"FFRPTH14": 0.369303494, "FSRPTH14": 0.812467686}, "20087": {"FFRPTH14": 0.21214532, "FSRPTH14": 0.477326969}, "20089": {"FFRPTH14": 0.657246139, "FSRPTH14": 0.985869208}, "20091": {"FFRPTH14": 0.722654073, "FSRPTH14": 0.7783767970000001}, "20093": {"FFRPTH14": 0.510855683, "FSRPTH14": 0.766283525}, "20095": {"FFRPTH14": 0.38971161299999996, "FSRPTH14": 0.519615485}, "20097": {"FFRPTH14": 0.0, "FSRPTH14": 0.39793076}, "20099": {"FFRPTH14": 0.477099237, "FSRPTH14": 0.90648855}, "20101": {"FFRPTH14": 0.592768228, "FSRPTH14": 0.592768228}, "20103": {"FFRPTH14": 0.444179347, "FSRPTH14": 0.431488508}, "20105": {"FFRPTH14": 0.0, "FSRPTH14": 0.947268709}, "20107": {"FFRPTH14": 0.21048200399999997, "FSRPTH14": 0.631446011}, "20109": {"FFRPTH14": 0.357909807, "FSRPTH14": 1.789549034}, "20111": {"FFRPTH14": 0.602191979, "FSRPTH14": 0.903287968}, "20113": {"FFRPTH14": 0.615574023, "FSRPTH14": 0.6839711359999999}, "20115": {"FFRPTH14": 0.327653997, "FSRPTH14": 1.064875491}, "20117": {"FFRPTH14": 0.49970018, "FSRPTH14": 0.8994603240000001}, "20119": {"FFRPTH14": 0.459031444, "FSRPTH14": 1.147578609}, "20121": {"FFRPTH14": 0.457010542, "FSRPTH14": 0.700749497}, "20123": {"FFRPTH14": 0.636537237, "FSRPTH14": 1.113940165}, "20125": {"FFRPTH14": 0.8219580209999999, "FSRPTH14": 0.7338910909999999}, "20127": {"FFRPTH14": 0.877500878, "FSRPTH14": 1.053001053}, "20129": {"FFRPTH14": 0.964630225, "FSRPTH14": 0.643086817}, "20131": {"FFRPTH14": 0.295624754, "FSRPTH14": 1.281040599}, "20133": {"FFRPTH14": 0.36549707600000003, "FSRPTH14": 0.791910331}, "20135": {"FFRPTH14": 0.644122383, "FSRPTH14": 0.966183575}, "20137": {"FFRPTH14": 0.35971223, "FSRPTH14": 0.71942446}, "20139": {"FFRPTH14": 0.251004016, "FSRPTH14": 0.815763052}, "20141": {"FFRPTH14": 0.266240682, "FSRPTH14": 0.5324813629999999}, "20143": {"FFRPTH14": 0.164880462, "FSRPTH14": 0.8244023079999999}, "20145": {"FFRPTH14": 0.43377675, "FSRPTH14": 0.5783689989999999}, "20147": {"FFRPTH14": 0.9036688959999999, "FSRPTH14": 1.084402675}, "20149": {"FFRPTH14": 0.480412281, "FSRPTH14": 0.655107656}, "20151": {"FFRPTH14": 0.913705584, "FSRPTH14": 1.218274112}, "20153": {"FFRPTH14": 0.0, "FSRPTH14": 0.773993808}, "20155": {"FFRPTH14": 0.8935009559999999, "FSRPTH14": 0.501614572}, "20157": {"FFRPTH14": 0.416406413, "FSRPTH14": 0.832812825}, "20159": {"FFRPTH14": 0.698951573, "FSRPTH14": 0.698951573}, "20161": {"FFRPTH14": 0.611750938, "FSRPTH14": 0.6383488039999999}, "20163": {"FFRPTH14": 0.581959263, "FSRPTH14": 1.163918526}, "20165": {"FFRPTH14": 0.6255864870000001, "FSRPTH14": 1.251172975}, "20167": {"FFRPTH14": 0.71880391, "FSRPTH14": 0.575043128}, "20169": {"FFRPTH14": 0.986458614, "FSRPTH14": 0.520132724}, "20171": {"FFRPTH14": 0.984251969, "FSRPTH14": 1.181102362}, "20173": {"FFRPTH14": 0.8608439809999999, "FSRPTH14": 0.6937852170000001}, "20175": {"FFRPTH14": 0.46878329399999996, "FSRPTH14": 0.7244832729999999}, "20177": {"FFRPTH14": 0.7959373559999999, "FSRPTH14": 0.538098494}, "20179": {"FFRPTH14": 0.393855849, "FSRPTH14": 0.787711698}, "20181": {"FFRPTH14": 1.47299509, "FSRPTH14": 1.309328969}, "20183": {"FFRPTH14": 0.7959670999999999, "FSRPTH14": 1.061289467}, "20185": {"FFRPTH14": 0.0, "FSRPTH14": 1.396323016}, "20187": {"FFRPTH14": 0.47370914299999994, "FSRPTH14": 0.947418285}, "20189": {"FFRPTH14": 0.689536287, "FSRPTH14": 1.206688502}, "20191": {"FFRPTH14": 0.467528052, "FSRPTH14": 0.8500510029999999}, "20193": {"FFRPTH14": 0.7603599040000001, "FSRPTH14": 0.7603599040000001}, "20195": {"FFRPTH14": 1.033769814, "FSRPTH14": 1.378359752}, "20197": {"FFRPTH14": 0.28481914, "FSRPTH14": 0.56963828}, "20199": {"FFRPTH14": 0.0, "FSRPTH14": 0.0}, "20201": {"FFRPTH14": 0.17863522699999998, "FSRPTH14": 1.429081815}, "20203": {"FFRPTH14": 0.459558824, "FSRPTH14": 1.378676471}, "20205": {"FFRPTH14": 0.553832521, "FSRPTH14": 1.107665042}, "20207": {"FFRPTH14": 0.6335128289999999, "FSRPTH14": 1.267025657}, "20209": {"FFRPTH14": 0.64342102, "FSRPTH14": 0.501125987}, "21001": {"FFRPTH14": 0.312434909, "FSRPTH14": 0.572797334}, "21003": {"FFRPTH14": 0.441522763, "FSRPTH14": 0.294348509}, "21005": {"FFRPTH14": 0.868055556, "FSRPTH14": 0.36549707600000003}, "21007": {"FFRPTH14": 0.485436893, "FSRPTH14": 0.849514563}, "21009": {"FFRPTH14": 0.8575136740000001, "FSRPTH14": 0.8343376290000001}, "21011": {"FFRPTH14": 0.409634606, "FSRPTH14": 0.327707685}, "21013": {"FFRPTH14": 0.863993088, "FSRPTH14": 0.395996832}, "21015": {"FFRPTH14": 0.949269458, "FSRPTH14": 0.806879039}, "21017": {"FFRPTH14": 0.650911276, "FSRPTH14": 0.6008411779999999}, "21019": {"FFRPTH14": 1.249180865, "FSRPTH14": 0.59387287}, "21021": {"FFRPTH14": 0.7742543590000001, "FSRPTH14": 0.67326466}, "21023": {"FFRPTH14": 0.475850583, "FSRPTH14": 0.7137758740000001}, "21025": {"FFRPTH14": 0.372883884, "FSRPTH14": 0.298307107}, "21027": {"FFRPTH14": 0.15084473, "FSRPTH14": 0.45253419100000003}, "21029": {"FFRPTH14": 0.500288628, "FSRPTH14": 0.256558271}, "21031": {"FFRPTH14": 0.46601941700000005, "FSRPTH14": 0.310679612}, "21033": {"FFRPTH14": 0.785854617, "FSRPTH14": 0.785854617}, "21035": {"FFRPTH14": 0.679170367, "FSRPTH14": 1.044877488}, "21037": {"FFRPTH14": 0.773142552, "FSRPTH14": 0.8166998790000001}, "21039": {"FFRPTH14": 0.40176777799999996, "FSRPTH14": 0.6026516670000001}, "21041": {"FFRPTH14": 1.202034212, "FSRPTH14": 0.647249191}, "21043": {"FFRPTH14": 0.661205598, "FSRPTH14": 0.514271021}, "21045": {"FFRPTH14": 0.188786105, "FSRPTH14": 0.377572211}, "21047": {"FFRPTH14": 0.579124579, "FSRPTH14": 0.430976431}, "21049": {"FFRPTH14": 0.894904637, "FSRPTH14": 0.391520779}, "21051": {"FFRPTH14": 0.520168345, "FSRPTH14": 0.283728188}, "21053": {"FFRPTH14": 0.5902606979999999, "FSRPTH14": 0.5902606979999999}, "21055": {"FFRPTH14": 0.650477016, "FSRPTH14": 0.325238508}, "21057": {"FFRPTH14": 0.593031875, "FSRPTH14": 0.593031875}, "21059": {"FFRPTH14": 0.783515645, "FSRPTH14": 0.6817603659999999}, "21061": {"FFRPTH14": 0.24972946, "FSRPTH14": 0.49945892}, "21063": {"FFRPTH14": 0.260688217, "FSRPTH14": 0.13034410800000001}, "21065": {"FFRPTH14": 0.553748183, "FSRPTH14": 0.41531113700000005}, "21067": {"FFRPTH14": 1.000653159, "FSRPTH14": 0.88803946}, "21069": {"FFRPTH14": 0.343760743, "FSRPTH14": 0.137504297}, "21071": {"FFRPTH14": 0.6822714390000001, "FSRPTH14": 0.36737692899999996}, "21073": {"FFRPTH14": 0.942261427, "FSRPTH14": 0.6816359259999999}, "21075": {"FFRPTH14": 0.478850758, "FSRPTH14": 0.957701516}, "21077": {"FFRPTH14": 0.34928396799999994, "FSRPTH14": 0.34928396799999994}, "21079": {"FFRPTH14": 0.177957053, "FSRPTH14": 0.415233124}, "21081": {"FFRPTH14": 0.603015075, "FSRPTH14": 0.522613065}, "21083": {"FFRPTH14": 0.47849433799999996, "FSRPTH14": 0.664575469}, "21085": {"FFRPTH14": 0.649003589, "FSRPTH14": 0.343590135}, "21087": {"FFRPTH14": 0.633885719, "FSRPTH14": 0.271665308}, "21089": {"FFRPTH14": 0.5783849289999999, "FSRPTH14": 0.22033711600000003}, "21091": {"FFRPTH14": 0.342739632, "FSRPTH14": 0.114246544}, "21093": {"FFRPTH14": 0.609609665, "FSRPTH14": 0.600373155}, "21095": {"FFRPTH14": 0.639136456, "FSRPTH14": 0.213045485}, "21097": {"FFRPTH14": 0.537865749, "FSRPTH14": 0.537865749}, "21099": {"FFRPTH14": 0.32263268300000003, "FSRPTH14": 0.37640479600000004}, "21101": {"FFRPTH14": 0.753222717, "FSRPTH14": 0.602578174}, "21103": {"FFRPTH14": 0.513742615, "FSRPTH14": 0.385306961}, "21105": {"FFRPTH14": 0.21123785399999997, "FSRPTH14": 0.0}, "21107": {"FFRPTH14": 0.625323443, "FSRPTH14": 0.5821976879999999}, "21109": {"FFRPTH14": 0.301000828, "FSRPTH14": 0.075250207}, "21111": {"FFRPTH14": 0.8657598559999999, "FSRPTH14": 0.7473428540000001}, "21113": {"FFRPTH14": 0.688773, "FSRPTH14": 0.5510184}, "21115": {"FFRPTH14": 0.9027598659999999, "FSRPTH14": 0.472874215}, "21117": {"FFRPTH14": 0.597819788, "FSRPTH14": 0.689322817}, "21119": {"FFRPTH14": 0.31462371, "FSRPTH14": 0.125849484}, "21121": {"FFRPTH14": 0.597521857, "FSRPTH14": 0.34593370700000003}, "21123": {"FFRPTH14": 0.564174894, "FSRPTH14": 0.352609309}, "21125": {"FFRPTH14": 0.649837541, "FSRPTH14": 0.499875031}, "21127": {"FFRPTH14": 0.506200962, "FSRPTH14": 0.316375601}, "21129": {"FFRPTH14": 0.52673163, "FSRPTH14": 0.263365815}, "21131": {"FFRPTH14": 0.18318373300000002, "FSRPTH14": 0.18318373300000002}, "21133": {"FFRPTH14": 0.642150777, "FSRPTH14": 0.214050259}, "21135": {"FFRPTH14": 0.360230548, "FSRPTH14": 0.216138329}, "21137": {"FFRPTH14": 0.36817345100000004, "FSRPTH14": 0.20454080600000002}, "21139": {"FFRPTH14": 0.427396089, "FSRPTH14": 0.534245112}, "21141": {"FFRPTH14": 0.521085346, "FSRPTH14": 0.669966874}, "21143": {"FFRPTH14": 0.355871886, "FSRPTH14": 0.8303677340000001}, "21145": {"FFRPTH14": 1.0717129029999999, "FSRPTH14": 1.102333272}, "21147": {"FFRPTH14": 0.33588982799999995, "FSRPTH14": 0.223926552}, "21149": {"FFRPTH14": 0.844059928, "FSRPTH14": 0.633044946}, "21151": {"FFRPTH14": 0.721318983, "FSRPTH14": 0.515227845}, "21153": {"FFRPTH14": 0.619530705, "FSRPTH14": 0.154882676}, "21155": {"FFRPTH14": 0.6997550859999999, "FSRPTH14": 0.499825061}, "21157": {"FFRPTH14": 0.67844797, "FSRPTH14": 0.807676154}, "21159": {"FFRPTH14": 0.638111191, "FSRPTH14": 0.159527798}, "21161": {"FFRPTH14": 0.7573109640000001, "FSRPTH14": 0.9320750320000001}, "21163": {"FFRPTH14": 0.377500944, "FSRPTH14": 0.274546141}, "21165": {"FFRPTH14": 0.159058374, "FSRPTH14": 0.159058374}, "21167": {"FFRPTH14": 0.562878184, "FSRPTH14": 0.5159716679999999}, "21169": {"FFRPTH14": 0.20020020000000002, "FSRPTH14": 0.7007007009999999}, "21171": {"FFRPTH14": 1.027653214, "FSRPTH14": 0.653961136}, "21173": {"FFRPTH14": 0.618766834, "FSRPTH14": 0.40037854}, "21175": {"FFRPTH14": 0.30068405600000003, "FSRPTH14": 0.225513042}, "21177": {"FFRPTH14": 0.6729259459999999, "FSRPTH14": 0.544749575}, "21179": {"FFRPTH14": 0.535570829, "FSRPTH14": 0.513255378}, "21181": {"FFRPTH14": 0.0, "FSRPTH14": 0.710126402}, "21183": {"FFRPTH14": 0.5004796260000001, "FSRPTH14": 0.5004796260000001}, "21185": {"FFRPTH14": 0.519766892, "FSRPTH14": 0.33076075}, "21187": {"FFRPTH14": 0.469704086, "FSRPTH14": 0.281822452}, "21189": {"FFRPTH14": 0.221827862, "FSRPTH14": 0.0}, "21191": {"FFRPTH14": 0.413992962, "FSRPTH14": 0.344994135}, "21193": {"FFRPTH14": 0.760952277, "FSRPTH14": 0.688480632}, "21195": {"FFRPTH14": 0.7456293429999999, "FSRPTH14": 0.39661135299999994}, "21197": {"FFRPTH14": 0.965095705, "FSRPTH14": 0.24127392600000003}, "21199": {"FFRPTH14": 0.673717195, "FSRPTH14": 0.53270662}, "21201": {"FFRPTH14": 0.0, "FSRPTH14": 0.0}, "21203": {"FFRPTH14": 0.534886485, "FSRPTH14": 0.475454654}, "21205": {"FFRPTH14": 0.845487212, "FSRPTH14": 0.422743606}, "21207": {"FFRPTH14": 0.506357601, "FSRPTH14": 0.7314054240000001}, "21209": {"FFRPTH14": 0.623976289, "FSRPTH14": 0.623976289}, "21211": {"FFRPTH14": 0.623955432, "FSRPTH14": 0.512534819}, "21213": {"FFRPTH14": 1.009761023, "FSRPTH14": 0.673174015}, "21215": {"FFRPTH14": 0.5659950189999999, "FSRPTH14": 0.0565995}, "21217": {"FFRPTH14": 0.752266698, "FSRPTH14": 0.435522825}, "21219": {"FFRPTH14": 0.399361022, "FSRPTH14": 0.399361022}, "21221": {"FFRPTH14": 0.42426813700000005, "FSRPTH14": 0.56569085}, "21223": {"FFRPTH14": 0.227634874, "FSRPTH14": 0.113817437}, "21225": {"FFRPTH14": 0.395647873, "FSRPTH14": 0.659413122}, "21227": {"FFRPTH14": 0.7637390000000001, "FSRPTH14": 0.7637390000000001}, "21229": {"FFRPTH14": 0.585333222, "FSRPTH14": 0.250857095}, "21231": {"FFRPTH14": 0.585765889, "FSRPTH14": 0.341696769}, "21233": {"FFRPTH14": 0.37775763100000004, "FSRPTH14": 0.528860683}, "21235": {"FFRPTH14": 0.788665747, "FSRPTH14": 0.506999409}, "21237": {"FFRPTH14": 0.27723870300000003, "FSRPTH14": 0.27723870300000003}, "21239": {"FFRPTH14": 0.50854751, "FSRPTH14": 0.782380785}, "22001": {"FFRPTH14": 0.44810037399999997, "FSRPTH14": 0.320071696}, "22003": {"FFRPTH14": 0.38890833399999997, "FSRPTH14": 0.350017501}, "22005": {"FFRPTH14": 0.692136137, "FSRPTH14": 0.367430295}, "22007": {"FFRPTH14": 0.173656334, "FSRPTH14": 0.173656334}, "22009": {"FFRPTH14": 0.388868635, "FSRPTH14": 0.267347187}, "22011": {"FFRPTH14": 0.49726504200000005, "FSRPTH14": 0.303884192}, "22013": {"FFRPTH14": 0.648181491, "FSRPTH14": 0.432120994}, "22015": {"FFRPTH14": 0.8715537640000001, "FSRPTH14": 0.639672488}, "22017": {"FFRPTH14": 0.823426483, "FSRPTH14": 0.5344354579999999}, "22019": {"FFRPTH14": 0.836697024, "FSRPTH14": 0.44623841299999994}, "22021": {"FFRPTH14": 0.404285426, "FSRPTH14": 0.404285426}, "22023": {"FFRPTH14": 0.149723012, "FSRPTH14": 0.149723012}, "22025": {"FFRPTH14": 0.492562309, "FSRPTH14": 0.197024924}, "22027": {"FFRPTH14": 0.548379235, "FSRPTH14": 0.243724104}, "22029": {"FFRPTH14": 0.68406137, "FSRPTH14": 0.43975373799999995}, "22031": {"FFRPTH14": 0.29474615, "FSRPTH14": 0.442119225}, "22033": {"FFRPTH14": 0.8586635340000001, "FSRPTH14": 0.645679106}, "22035": {"FFRPTH14": 0.6678242289999999, "FSRPTH14": 0.400694537}, "22037": {"FFRPTH14": 0.555191036, "FSRPTH14": 0.151415737}, "22039": {"FFRPTH14": 0.296735905, "FSRPTH14": 0.267062315}, "22041": {"FFRPTH14": 0.538134142, "FSRPTH14": 0.24460642800000001}, "22043": {"FFRPTH14": 0.089349535, "FSRPTH14": 0.0}, "22045": {"FFRPTH14": 0.5682356279999999, "FSRPTH14": 0.311176654}, "22047": {"FFRPTH14": 0.360068413, "FSRPTH14": 0.39007411399999997}, "22049": {"FFRPTH14": 0.562711017, "FSRPTH14": 0.250093785}, "22051": {"FFRPTH14": 0.8560622059999999, "FSRPTH14": 0.794095236}, "22053": {"FFRPTH14": 0.57184611, "FSRPTH14": 0.285923055}, "22055": {"FFRPTH14": 0.9463427879999999, "FSRPTH14": 0.836006858}, "22057": {"FFRPTH14": 0.520301979, "FSRPTH14": 0.39787798399999996}, "22059": {"FFRPTH14": 0.6065098729999999, "FSRPTH14": 0.202169958}, "22061": {"FFRPTH14": 0.840036122, "FSRPTH14": 0.609026188}, "22063": {"FFRPTH14": 0.530382833, "FSRPTH14": 0.324122843}, "22065": {"FFRPTH14": 0.5910664529999999, "FSRPTH14": 0.337752259}, "22067": {"FFRPTH14": 0.48579970100000003, "FSRPTH14": 0.26158445399999997}, "22069": {"FFRPTH14": 0.434049941, "FSRPTH14": 0.663841087}, "22071": {"FFRPTH14": 0.788405495, "FSRPTH14": 1.2359492090000002}, "22073": {"FFRPTH14": 0.72924996, "FSRPTH14": 0.652486806}, "22075": {"FFRPTH14": 0.554441933, "FSRPTH14": 0.81033821}, "22077": {"FFRPTH14": 0.446309024, "FSRPTH14": 0.446309024}, "22079": {"FFRPTH14": 0.762333192, "FSRPTH14": 0.46796691}, "22081": {"FFRPTH14": 0.5767677929999999, "FSRPTH14": 0.346060676}, "22083": {"FFRPTH14": 0.38572806200000004, "FSRPTH14": 0.38572806200000004}, "22085": {"FFRPTH14": 0.413240217, "FSRPTH14": 0.24794413}, "22087": {"FFRPTH14": 0.720574658, "FSRPTH14": 0.6755387420000001}, "22089": {"FFRPTH14": 0.587733434, "FSRPTH14": 0.417101147}, "22091": {"FFRPTH14": 0.094170826, "FSRPTH14": 0.188341652}, "22093": {"FFRPTH14": 0.508364914, "FSRPTH14": 0.36971993700000005}, "22095": {"FFRPTH14": 0.708652417, "FSRPTH14": 0.29717682}, "22097": {"FFRPTH14": 0.47784587100000003, "FSRPTH14": 0.238922935}, "22099": {"FFRPTH14": 0.41264184600000003, "FSRPTH14": 0.468911188}, "22101": {"FFRPTH14": 0.639554569, "FSRPTH14": 0.5455024270000001}, "22103": {"FFRPTH14": 0.764759243, "FSRPTH14": 0.866455951}, "22105": {"FFRPTH14": 0.669033208, "FSRPTH14": 0.629678313}, "22107": {"FFRPTH14": 0.0, "FSRPTH14": 0.621118012}, "22109": {"FFRPTH14": 0.723563462, "FSRPTH14": 0.626500071}, "22111": {"FFRPTH14": 0.266205244, "FSRPTH14": 0.17747016300000001}, "22113": {"FFRPTH14": 0.335480408, "FSRPTH14": 0.385802469}, "22115": {"FFRPTH14": 0.422005678, "FSRPTH14": 0.30691322}, "22117": {"FFRPTH14": 0.626539342, "FSRPTH14": 0.324072074}, "22119": {"FFRPTH14": 0.793394987, "FSRPTH14": 0.39669749299999996}, "22121": {"FFRPTH14": 0.797289217, "FSRPTH14": 0.5581024520000001}, "22123": {"FFRPTH14": 0.780911063, "FSRPTH14": 0.0}, "22125": {"FFRPTH14": 0.259639102, "FSRPTH14": 0.5192782029999999}, "22127": {"FFRPTH14": 0.542630401, "FSRPTH14": 0.33914400100000003}, "23001": {"FFRPTH14": 0.7073715559999999, "FSRPTH14": 0.716679077}, "23003": {"FFRPTH14": 0.719973505, "FSRPTH14": 0.8495687359999999}, "23005": {"FFRPTH14": 0.847819817, "FSRPTH14": 1.344697825}, "23007": {"FFRPTH14": 0.495114867, "FSRPTH14": 1.353313969}, "23009": {"FFRPTH14": 0.84101214, "FSRPTH14": 1.992833114}, "23011": {"FFRPTH14": 0.668802431, "FSRPTH14": 0.792654733}, "23013": {"FFRPTH14": 0.7561246090000001, "FSRPTH14": 1.663474141}, "23015": {"FFRPTH14": 0.7316359379999999, "FSRPTH14": 1.5218027509999998}, "23017": {"FFRPTH14": 0.454243684, "FSRPTH14": 0.908487369}, "23019": {"FFRPTH14": 0.606202824, "FSRPTH14": 0.769160572}, "23021": {"FFRPTH14": 0.41113591, "FSRPTH14": 1.233407729}, "23023": {"FFRPTH14": 0.570694821, "FSRPTH14": 0.82750749}, "23025": {"FFRPTH14": 0.429998241, "FSRPTH14": 0.625451987}, "23027": {"FFRPTH14": 0.512150777, "FSRPTH14": 0.921871399}, "23029": {"FFRPTH14": 0.597334004, "FSRPTH14": 0.88028169}, "23031": {"FFRPTH14": 0.782223108, "FSRPTH14": 1.220666633}, "24001": {"FFRPTH14": 0.84987389, "FSRPTH14": 0.671674526}, "24003": {"FFRPTH14": 0.810521787, "FSRPTH14": 0.6909073379999999}, "24005": {"FFRPTH14": 0.89367234, "FSRPTH14": 0.505487197}, "24009": {"FFRPTH14": 0.606976924, "FSRPTH14": 0.618012868}, "24011": {"FFRPTH14": 0.49173274299999997, "FSRPTH14": 0.33806626100000003}, "24013": {"FFRPTH14": 0.679258774, "FSRPTH14": 0.60179944}, "24015": {"FFRPTH14": 0.5371985579999999, "FSRPTH14": 0.566500298}, "24017": {"FFRPTH14": 0.7819214590000001, "FSRPTH14": 0.432964775}, "24019": {"FFRPTH14": 0.583215667, "FSRPTH14": 0.7366934740000001}, "24021": {"FFRPTH14": 0.705858213, "FSRPTH14": 0.6566122910000001}, "24023": {"FFRPTH14": 0.84234644, "FSRPTH14": 0.943428013}, "24025": {"FFRPTH14": 0.659722916, "FSRPTH14": 0.483796805}, "24027": {"FFRPTH14": 0.788918922, "FSRPTH14": 0.572289546}, "24029": {"FFRPTH14": 0.706357215, "FSRPTH14": 1.3622603430000002}, "24031": {"FFRPTH14": 0.770539387, "FSRPTH14": 0.608473798}, "24033": {"FFRPTH14": 0.832568579, "FSRPTH14": 0.326172285}, "24035": {"FFRPTH14": 0.676174084, "FSRPTH14": 0.6147037129999999}, "24037": {"FFRPTH14": 0.625101919, "FSRPTH14": 0.534507438}, "24039": {"FFRPTH14": 0.42538381200000003, "FSRPTH14": 0.309370045}, "24041": {"FFRPTH14": 0.956353107, "FSRPTH14": 1.567356481}, "24043": {"FFRPTH14": 0.735426848, "FSRPTH14": 0.615084273}, "24045": {"FFRPTH14": 0.807571475, "FSRPTH14": 0.6696934179999999}, "24047": {"FFRPTH14": 1.60619255, "FSRPTH14": 3.3865505560000004}, "24510": {"FFRPTH14": 1.075798861, "FSRPTH14": 0.582858189}, "25001": {"FFRPTH14": 1.005053184, "FSRPTH14": 1.9868412480000002}, "25003": {"FFRPTH14": 0.916754069, "FSRPTH14": 1.67035699}, "25005": {"FFRPTH14": 0.696506999, "FSRPTH14": 0.844469626}, "25007": {"FFRPTH14": 1.382807098, "FSRPTH14": 3.4570177460000004}, "25009": {"FFRPTH14": 0.7489360820000001, "FSRPTH14": 0.8074467129999999}, "25011": {"FFRPTH14": 0.49391775600000004, "FSRPTH14": 0.9172758320000001}, "25013": {"FFRPTH14": 0.6258530720000001, "FSRPTH14": 0.7155657990000001}, "25015": {"FFRPTH14": 0.615139898, "FSRPTH14": 1.043873766}, "25017": {"FFRPTH14": 0.772456482, "FSRPTH14": 0.829769823}, "25019": {"FFRPTH14": 1.565954311, "FSRPTH14": 4.974207811}, "25021": {"FFRPTH14": 0.680386101, "FSRPTH14": 0.868178443}, "25023": {"FFRPTH14": 0.603524107, "FSRPTH14": 0.808643412}, "25025": {"FFRPTH14": 0.970995264, "FSRPTH14": 1.1964747009999999}, "25027": {"FFRPTH14": 0.7142198590000001, "FSRPTH14": 0.705614801}, "26001": {"FFRPTH14": 0.382628659, "FSRPTH14": 0.9565716470000001}, "26003": {"FFRPTH14": 0.528597103, "FSRPTH14": 1.2686330479999999}, "26005": {"FFRPTH14": 0.47432079899999996, "FSRPTH14": 0.70269748}, "26007": {"FFRPTH14": 0.724437698, "FSRPTH14": 0.931419898}, "26009": {"FFRPTH14": 0.55873125, "FSRPTH14": 1.031503847}, "26011": {"FFRPTH14": 0.911873901, "FSRPTH14": 0.716472351}, "26013": {"FFRPTH14": 0.808874509, "FSRPTH14": 0.693321008}, "26015": {"FFRPTH14": 0.320507414, "FSRPTH14": 0.590408394}, "26017": {"FFRPTH14": 0.7722807709999999, "FSRPTH14": 0.574501549}, "26019": {"FFRPTH14": 0.742051487, "FSRPTH14": 1.1986985559999999}, "26021": {"FFRPTH14": 0.6055413479999999, "FSRPTH14": 0.927637809}, "26023": {"FFRPTH14": 0.52818923, "FSRPTH14": 0.665977724}, "26025": {"FFRPTH14": 0.6820978959999999, "FSRPTH14": 0.600542713}, "26027": {"FFRPTH14": 0.271275771, "FSRPTH14": 0.5619283829999999}, "26029": {"FFRPTH14": 0.65081735, "FSRPTH14": 1.4547681940000001}, "26031": {"FFRPTH14": 0.467380721, "FSRPTH14": 1.518987342}, "26033": {"FFRPTH14": 0.574097753, "FSRPTH14": 0.991623392}, "26035": {"FFRPTH14": 0.48936447899999996, "FSRPTH14": 0.7177345690000001}, "26037": {"FFRPTH14": 0.47867317, "FSRPTH14": 0.413987606}, "26039": {"FFRPTH14": 0.7275372859999999, "FSRPTH14": 0.800291015}, "26041": {"FFRPTH14": 0.71117919, "FSRPTH14": 0.738532236}, "26043": {"FFRPTH14": 0.7319798129999999, "FSRPTH14": 0.8090303190000001}, "26045": {"FFRPTH14": 0.699951188, "FSRPTH14": 0.653901767}, "26047": {"FFRPTH14": 0.843271895, "FSRPTH14": 1.7166606430000002}, "26049": {"FFRPTH14": 0.714467359, "FSRPTH14": 0.571573887}, "26051": {"FFRPTH14": 0.354177325, "FSRPTH14": 0.865766794}, "26053": {"FFRPTH14": 0.6354451289999999, "FSRPTH14": 1.652157336}, "26055": {"FFRPTH14": 0.826154965, "FSRPTH14": 1.024432156}, "26057": {"FFRPTH14": 0.552022081, "FSRPTH14": 0.43201728100000003}, "26059": {"FFRPTH14": 0.414575605, "FSRPTH14": 0.67641283}, "26061": {"FFRPTH14": 0.630223318, "FSRPTH14": 1.150842581}, "26063": {"FFRPTH14": 0.966786215, "FSRPTH14": 1.216279432}, "26065": {"FFRPTH14": 0.794147205, "FSRPTH14": 0.7484661709999999}, "26067": {"FFRPTH14": 0.40439232299999994, "FSRPTH14": 0.52882073}, "26069": {"FFRPTH14": 0.7474429579999999, "FSRPTH14": 1.140833989}, "26071": {"FFRPTH14": 0.790374989, "FSRPTH14": 1.229472205}, "26073": {"FFRPTH14": 0.538121672, "FSRPTH14": 0.637249349}, "26075": {"FFRPTH14": 0.532111355, "FSRPTH14": 0.588452558}, "26077": {"FFRPTH14": 0.7766075, "FSRPTH14": 0.7341065920000001}, "26079": {"FFRPTH14": 0.459928711, "FSRPTH14": 0.8048752440000001}, "26081": {"FFRPTH14": 0.637279753, "FSRPTH14": 0.649993564}, "26083": {"FFRPTH14": 0.0, "FSRPTH14": 2.706359946}, "26085": {"FFRPTH14": 0.176351292, "FSRPTH14": 1.146283397}, "26087": {"FFRPTH14": 0.408380883, "FSRPTH14": 0.555851758}, "26089": {"FFRPTH14": 0.593201004, "FSRPTH14": 1.688341319}, "26091": {"FFRPTH14": 0.5855805829999999, "FSRPTH14": 0.656254102}, "26093": {"FFRPTH14": 0.522640574, "FSRPTH14": 0.554968857}, "26095": {"FFRPTH14": 0.311235605, "FSRPTH14": 1.244942421}, "26097": {"FFRPTH14": 1.539576164, "FSRPTH14": 2.89802572}, "26099": {"FFRPTH14": 0.699908849, "FSRPTH14": 0.705722046}, "26101": {"FFRPTH14": 0.368550369, "FSRPTH14": 0.900900901}, "26103": {"FFRPTH14": 0.768366925, "FSRPTH14": 0.797919499}, "26105": {"FFRPTH14": 0.659172911, "FSRPTH14": 1.075492645}, "26107": {"FFRPTH14": 0.555735655, "FSRPTH14": 0.625202612}, "26109": {"FFRPTH14": 0.506030193, "FSRPTH14": 1.096398752}, "26111": {"FFRPTH14": 0.647272466, "FSRPTH14": 0.5633667760000001}, "26113": {"FFRPTH14": 0.332513134, "FSRPTH14": 0.46551838799999995}, "26115": {"FFRPTH14": 0.5673323370000001, "FSRPTH14": 0.533959846}, "26117": {"FFRPTH14": 0.365700475, "FSRPTH14": 0.540600703}, "26119": {"FFRPTH14": 0.215053763, "FSRPTH14": 1.612903226}, "26121": {"FFRPTH14": 0.702084204, "FSRPTH14": 0.591839577}, "26123": {"FFRPTH14": 0.584551148, "FSRPTH14": 0.563674322}, "26125": {"FFRPTH14": 0.8094562590000001, "FSRPTH14": 0.8595423740000001}, "26127": {"FFRPTH14": 0.45764845, "FSRPTH14": 0.762747416}, "26129": {"FFRPTH14": 0.808023195, "FSRPTH14": 1.045677076}, "26131": {"FFRPTH14": 0.162022035, "FSRPTH14": 1.458198315}, "26133": {"FFRPTH14": 0.474772325, "FSRPTH14": 0.561094566}, "26135": {"FFRPTH14": 0.597300203, "FSRPTH14": 1.0751403659999998}, "26137": {"FFRPTH14": 0.827883103, "FSRPTH14": 0.952065568}, "26139": {"FFRPTH14": 0.550142603, "FSRPTH14": 0.463277981}, "26141": {"FFRPTH14": 0.46139649299999996, "FSRPTH14": 1.153491233}, "26143": {"FFRPTH14": 0.709663953, "FSRPTH14": 1.252348153}, "26145": {"FFRPTH14": 0.7230324290000001, "FSRPTH14": 0.564067852}, "26147": {"FFRPTH14": 0.518497233, "FSRPTH14": 0.662177189}, "26149": {"FFRPTH14": 0.492239031, "FSRPTH14": 0.623502773}, "26151": {"FFRPTH14": 0.360689639, "FSRPTH14": 0.673287325}, "26153": {"FFRPTH14": 0.856688288, "FSRPTH14": 1.468608493}, "26155": {"FFRPTH14": 0.565766759, "FSRPTH14": 0.49323255899999996}, "26157": {"FFRPTH14": 0.333333333, "FSRPTH14": 0.40740740700000005}, "26159": {"FFRPTH14": 0.545220016, "FSRPTH14": 0.771286852}, "26161": {"FFRPTH14": 0.753767436, "FSRPTH14": 0.815413844}, "26163": {"FFRPTH14": 0.719626655, "FSRPTH14": 0.61253261}, "26165": {"FFRPTH14": 0.729793833, "FSRPTH14": 0.8514261390000001}, "27001": {"FFRPTH14": 0.570667681, "FSRPTH14": 1.268150403}, "27003": {"FFRPTH14": 0.587953104, "FSRPTH14": 0.427070414}, "27005": {"FFRPTH14": 0.481072792, "FSRPTH14": 0.7817432879999999}, "27007": {"FFRPTH14": 0.503679047, "FSRPTH14": 0.700770848}, "27009": {"FFRPTH14": 0.35437655, "FSRPTH14": 0.68344049}, "27011": {"FFRPTH14": 0.585137507, "FSRPTH14": 1.36532085}, "27013": {"FFRPTH14": 0.8105834670000001, "FSRPTH14": 0.841171523}, "27015": {"FFRPTH14": 0.71168749, "FSRPTH14": 0.869840266}, "27017": {"FFRPTH14": 0.33735346200000005, "FSRPTH14": 0.618481347}, "27019": {"FFRPTH14": 0.554767922, "FSRPTH14": 0.462306602}, "27021": {"FFRPTH14": 0.350152316, "FSRPTH14": 1.29556357}, "27023": {"FFRPTH14": 0.5780346820000001, "FSRPTH14": 0.660611065}, "27025": {"FFRPTH14": 0.481258677, "FSRPTH14": 0.481258677}, "27027": {"FFRPTH14": 0.522142088, "FSRPTH14": 0.342655745}, "27029": {"FFRPTH14": 0.227505403, "FSRPTH14": 1.251279718}, "27031": {"FFRPTH14": 0.764379897, "FSRPTH14": 2.484234665}, "27033": {"FFRPTH14": 0.343849394, "FSRPTH14": 0.515774091}, "27035": {"FFRPTH14": 0.632261124, "FSRPTH14": 1.1696830790000001}, "27037": {"FFRPTH14": 0.649651297, "FSRPTH14": 0.562384705}, "27039": {"FFRPTH14": 0.442195254, "FSRPTH14": 0.294796836}, "27041": {"FFRPTH14": 0.7067137809999999, "FSRPTH14": 1.1416145690000001}, "27043": {"FFRPTH14": 0.422773393, "FSRPTH14": 1.056933484}, "27045": {"FFRPTH14": 0.33692722399999997, "FSRPTH14": 1.540238737}, "27047": {"FFRPTH14": 0.745784695, "FSRPTH14": 0.778210117}, "27049": {"FFRPTH14": 0.646231394, "FSRPTH14": 0.7539366259999999}, "27051": {"FFRPTH14": 0.167897918, "FSRPTH14": 0.5036937539999999}, "27053": {"FFRPTH14": 0.7961625790000001, "FSRPTH14": 0.753260554}, "27055": {"FFRPTH14": 0.160102466, "FSRPTH14": 0.907247305}, "27057": {"FFRPTH14": 0.534681379, "FSRPTH14": 0.9721479609999999}, "27059": {"FFRPTH14": 0.416525655, "FSRPTH14": 0.468591362}, "27061": {"FFRPTH14": 0.329026739, "FSRPTH14": 0.636118362}, "27063": {"FFRPTH14": 0.486902327, "FSRPTH14": 0.8764241890000001}, "27065": {"FFRPTH14": 0.25109855600000003, "FSRPTH14": 0.941619586}, "27067": {"FFRPTH14": 0.567577155, "FSRPTH14": 0.638524299}, "27069": {"FFRPTH14": 0.0, "FSRPTH14": 1.3528748590000002}, "27071": {"FFRPTH14": 0.622277536, "FSRPTH14": 1.244555072}, "27073": {"FFRPTH14": 0.435350457, "FSRPTH14": 1.015817733}, "27075": {"FFRPTH14": 0.74906367, "FSRPTH14": 1.966292135}, "27077": {"FFRPTH14": 0.510464523, "FSRPTH14": 1.78662583}, "27079": {"FFRPTH14": 0.216060497, "FSRPTH14": 0.828231905}, "27081": {"FFRPTH14": 0.0, "FSRPTH14": 1.036627505}, "27083": {"FFRPTH14": 0.9351256579999999, "FSRPTH14": 0.8571985190000001}, "27085": {"FFRPTH14": 0.668859038, "FSRPTH14": 0.501644278}, "27087": {"FFRPTH14": 0.544959128, "FSRPTH14": 0.544959128}, "27089": {"FFRPTH14": 0.212381863, "FSRPTH14": 0.955718382}, "27091": {"FFRPTH14": 0.692383778, "FSRPTH14": 0.59347181}, "27093": {"FFRPTH14": 0.47604622, "FSRPTH14": 0.649153936}, "27095": {"FFRPTH14": 0.46360686100000004, "FSRPTH14": 1.0044815329999999}, "27097": {"FFRPTH14": 0.548613228, "FSRPTH14": 0.975312405}, "27099": {"FFRPTH14": 0.584899423, "FSRPTH14": 0.635760242}, "27101": {"FFRPTH14": 0.354191263, "FSRPTH14": 1.4167650530000002}, "27103": {"FFRPTH14": 0.5741395460000001, "FSRPTH14": 0.39283232100000004}, "27105": {"FFRPTH14": 0.41685965700000005, "FSRPTH14": 0.787401575}, "27107": {"FFRPTH14": 0.15062509400000001, "FSRPTH14": 0.30125018800000003}, "27109": {"FFRPTH14": 0.698663224, "FSRPTH14": 0.6653935470000001}, "27111": {"FFRPTH14": 0.624620456, "FSRPTH14": 0.7460744340000001}, "27113": {"FFRPTH14": 0.42680324399999997, "FSRPTH14": 1.138141983}, "27115": {"FFRPTH14": 0.378071834, "FSRPTH14": 0.756143667}, "27117": {"FFRPTH14": 0.75422907, "FSRPTH14": 0.75422907}, "27119": {"FFRPTH14": 0.567751703, "FSRPTH14": 0.820085794}, "27121": {"FFRPTH14": 0.36416606, "FSRPTH14": 0.8193736340000001}, "27123": {"FFRPTH14": 0.696510875, "FSRPTH14": 0.657085731}, "27125": {"FFRPTH14": 0.24734108300000002, "FSRPTH14": 0.9893643329999999}, "27127": {"FFRPTH14": 0.451176281, "FSRPTH14": 1.095713825}, "27129": {"FFRPTH14": 0.399334443, "FSRPTH14": 0.798668885}, "27131": {"FFRPTH14": 0.53721355, "FSRPTH14": 0.414421881}, "27133": {"FFRPTH14": 0.62807495, "FSRPTH14": 0.732754109}, "27135": {"FFRPTH14": 0.5102366220000001, "FSRPTH14": 0.892914089}, "27137": {"FFRPTH14": 0.567308123, "FSRPTH14": 0.816127475}, "27139": {"FFRPTH14": 0.5512915970000001, "FSRPTH14": 0.357981557}, "27141": {"FFRPTH14": 0.49382174100000004, "FSRPTH14": 0.40603121}, "27143": {"FFRPTH14": 0.268132457, "FSRPTH14": 0.469231801}, "27145": {"FFRPTH14": 0.6801297479999999, "FSRPTH14": 0.778225385}, "27147": {"FFRPTH14": 0.765592103, "FSRPTH14": 0.738249528}, "27149": {"FFRPTH14": 0.510204082, "FSRPTH14": 1.12244898}, "27151": {"FFRPTH14": 0.741839763, "FSRPTH14": 0.9537939809999999}, "27153": {"FFRPTH14": 0.247279921, "FSRPTH14": 0.576986482}, "27155": {"FFRPTH14": 0.5904930620000001, "FSRPTH14": 0.29524653100000003}, "27157": {"FFRPTH14": 0.46812096200000003, "FSRPTH14": 1.12349031}, "27159": {"FFRPTH14": 0.9449734679999999, "FSRPTH14": 0.7269026679999999}, "27161": {"FFRPTH14": 0.525624179, "FSRPTH14": 0.5781865970000001}, "27163": {"FFRPTH14": 0.517484145, "FSRPTH14": 0.653875314}, "27165": {"FFRPTH14": 0.541369665, "FSRPTH14": 0.812054498}, "27167": {"FFRPTH14": 0.307929176, "FSRPTH14": 0.615858353}, "27169": {"FFRPTH14": 0.6654011, "FSRPTH14": 0.626259859}, "27171": {"FFRPTH14": 0.49261842100000003, "FSRPTH14": 0.523407072}, "27173": {"FFRPTH14": 0.69245227, "FSRPTH14": 0.890295776}, "28001": {"FFRPTH14": 0.945268929, "FSRPTH14": 0.6301792860000001}, "28003": {"FFRPTH14": 0.7223113959999999, "FSRPTH14": 0.8560727659999999}, "28005": {"FFRPTH14": 0.237548499, "FSRPTH14": 0.158365666}, "28007": {"FFRPTH14": 0.52183896, "FSRPTH14": 0.469655064}, "28009": {"FFRPTH14": 0.0, "FSRPTH14": 0.0}, "28011": {"FFRPTH14": 0.5330490410000001, "FSRPTH14": 0.6811182179999999}, "28013": {"FFRPTH14": 0.271278399, "FSRPTH14": 0.40691759899999996}, "28015": {"FFRPTH14": 0.0, "FSRPTH14": 0.292568754}, "28017": {"FFRPTH14": 0.462080518, "FSRPTH14": 0.346560388}, "28019": {"FFRPTH14": 0.48227634399999997, "FSRPTH14": 0.24113817199999998}, "28021": {"FFRPTH14": 0.5506607929999999, "FSRPTH14": 0.0}, "28023": {"FFRPTH14": 0.24541382899999997, "FSRPTH14": 0.429474201}, "28025": {"FFRPTH14": 0.543881335, "FSRPTH14": 0.64276885}, "28027": {"FFRPTH14": 0.685290442, "FSRPTH14": 0.604668037}, "28029": {"FFRPTH14": 0.590339271, "FSRPTH14": 0.45143591299999997}, "28031": {"FFRPTH14": 0.565785413, "FSRPTH14": 0.565785413}, "28033": {"FFRPTH14": 0.7606209009999999, "FSRPTH14": 0.6845588109999999}, "28035": {"FFRPTH14": 0.995676667, "FSRPTH14": 0.8122625440000001}, "28037": {"FFRPTH14": 0.510660028, "FSRPTH14": 0.127665007}, "28039": {"FFRPTH14": 0.514955156, "FSRPTH14": 0.472042226}, "28041": {"FFRPTH14": 0.209409465, "FSRPTH14": 0.209409465}, "28043": {"FFRPTH14": 0.969260593, "FSRPTH14": 0.738484261}, "28045": {"FFRPTH14": 0.6528977779999999, "FSRPTH14": 0.805240593}, "28047": {"FFRPTH14": 0.8138331540000001, "FSRPTH14": 0.884164414}, "28049": {"FFRPTH14": 0.943671044, "FSRPTH14": 0.41029175799999995}, "28051": {"FFRPTH14": 0.216696462, "FSRPTH14": 0.108348231}, "28053": {"FFRPTH14": 0.34321015899999996, "FSRPTH14": 0.22880677300000002}, "28055": {"FFRPTH14": 0.0, "FSRPTH14": 0.0}, "28057": {"FFRPTH14": 0.51005228, "FSRPTH14": 0.552556637}, "28059": {"FFRPTH14": 0.588081084, "FSRPTH14": 0.58099577}, "28061": {"FFRPTH14": 0.24094934, "FSRPTH14": 0.24094934}, "28063": {"FFRPTH14": 0.263192525, "FSRPTH14": 0.0}, "28065": {"FFRPTH14": 0.42294028100000003, "FSRPTH14": 0.169176112}, "28067": {"FFRPTH14": 0.732171621, "FSRPTH14": 0.307512081}, "28069": {"FFRPTH14": 0.295188429, "FSRPTH14": 0.295188429}, "28071": {"FFRPTH14": 0.812393728, "FSRPTH14": 1.001322501}, "28073": {"FFRPTH14": 0.948435082, "FSRPTH14": 0.632290055}, "28075": {"FFRPTH14": 0.827700372, "FSRPTH14": 0.614504822}, "28077": {"FFRPTH14": 0.47992321200000004, "FSRPTH14": 0.15997440400000001}, "28079": {"FFRPTH14": 0.517397491, "FSRPTH14": 0.388048118}, "28081": {"FFRPTH14": 0.9384604559999999, "FSRPTH14": 0.9736527229999999}, "28083": {"FFRPTH14": 0.6683215579999999, "FSRPTH14": 0.6683215579999999}, "28085": {"FFRPTH14": 0.805176132, "FSRPTH14": 0.431344357}, "28087": {"FFRPTH14": 0.6696802279999999, "FSRPTH14": 0.7868742679999999}, "28089": {"FFRPTH14": 0.983400205, "FSRPTH14": 0.7375501529999999}, "28091": {"FFRPTH14": 0.811813824, "FSRPTH14": 0.541209216}, "28093": {"FFRPTH14": 0.358779047, "FSRPTH14": 0.24838549399999998}, "28095": {"FFRPTH14": 0.5555092629999999, "FSRPTH14": 0.583284726}, "28097": {"FFRPTH14": 0.576923077, "FSRPTH14": 0.480769231}, "28099": {"FFRPTH14": 0.610894281, "FSRPTH14": 0.373324283}, "28101": {"FFRPTH14": 0.595456211, "FSRPTH14": 0.32063026699999997}, "28103": {"FFRPTH14": 0.26990553300000003, "FSRPTH14": 0.0}, "28105": {"FFRPTH14": 0.7083012909999999, "FSRPTH14": 0.9106730890000001}, "28107": {"FFRPTH14": 0.580652654, "FSRPTH14": 0.43548949}, "28109": {"FFRPTH14": 0.669998551, "FSRPTH14": 0.5432420689999999}, "28111": {"FFRPTH14": 0.24535863300000002, "FSRPTH14": 0.163572422}, "28113": {"FFRPTH14": 0.773877877, "FSRPTH14": 0.574167457}, "28115": {"FFRPTH14": 0.549273021, "FSRPTH14": 0.549273021}, "28117": {"FFRPTH14": 0.629227623, "FSRPTH14": 0.393267264}, "28119": {"FFRPTH14": 0.5209690020000001, "FSRPTH14": 0.130242251}, "28121": {"FFRPTH14": 0.837441751, "FSRPTH14": 0.479502938}, "28123": {"FFRPTH14": 0.597308598, "FSRPTH14": 0.456765398}, "28125": {"FFRPTH14": 0.645577792, "FSRPTH14": 0.21519259699999999}, "28127": {"FFRPTH14": 0.69183993, "FSRPTH14": 0.436951535}, "28129": {"FFRPTH14": 0.37064492200000004, "FSRPTH14": 0.123548307}, "28131": {"FFRPTH14": 0.783216783, "FSRPTH14": 0.391608392}, "28133": {"FFRPTH14": 0.43642711700000003, "FSRPTH14": 0.327320338}, "28135": {"FFRPTH14": 0.406476526, "FSRPTH14": 0.33873043799999997}, "28137": {"FFRPTH14": 0.67366331, "FSRPTH14": 0.177279818}, "28139": {"FFRPTH14": 0.453741095, "FSRPTH14": 0.31761876699999997}, "28141": {"FFRPTH14": 0.566426365, "FSRPTH14": 0.978372812}, "28143": {"FFRPTH14": 0.943574259, "FSRPTH14": 0.566144556}, "28145": {"FFRPTH14": 0.533864825, "FSRPTH14": 0.462682849}, "28147": {"FFRPTH14": 0.5383942389999999, "FSRPTH14": 0.6729927990000001}, "28149": {"FFRPTH14": 0.750265719, "FSRPTH14": 0.625221433}, "28151": {"FFRPTH14": 0.755749826, "FSRPTH14": 0.388087749}, "28153": {"FFRPTH14": 0.634455832, "FSRPTH14": 0.683260127}, "28155": {"FFRPTH14": 0.601684717, "FSRPTH14": 0.300842359}, "28157": {"FFRPTH14": 0.435208356, "FSRPTH14": 0.0}, "28159": {"FFRPTH14": 0.7035393440000001, "FSRPTH14": 0.4870657}, "28161": {"FFRPTH14": 0.488758553, "FSRPTH14": 0.40729879399999996}, "28163": {"FFRPTH14": 0.359492397, "FSRPTH14": 0.503289355}, "29001": {"FFRPTH14": 0.78118897, "FSRPTH14": 0.546832279}, "29003": {"FFRPTH14": 0.23016284, "FSRPTH14": 0.28770355}, "29005": {"FFRPTH14": 0.371609067, "FSRPTH14": 1.114827202}, "29007": {"FFRPTH14": 0.6180708460000001, "FSRPTH14": 0.502182563}, "29009": {"FFRPTH14": 0.42061578200000005, "FSRPTH14": 0.644944198}, "29011": {"FFRPTH14": 0.49763622799999996, "FSRPTH14": 0.663514971}, "29013": {"FFRPTH14": 0.542691751, "FSRPTH14": 0.6632899179999999}, "29015": {"FFRPTH14": 0.26587259399999996, "FSRPTH14": 1.169839413}, "29017": {"FFRPTH14": 0.161368404, "FSRPTH14": 0.484105212}, "29019": {"FFRPTH14": 0.804784706, "FSRPTH14": 0.903211612}, "29021": {"FFRPTH14": 0.7934201999999999, "FSRPTH14": 0.715195673}, "29023": {"FFRPTH14": 0.7213999809999999, "FSRPTH14": 0.7446709490000001}, "29025": {"FFRPTH14": 0.221385876, "FSRPTH14": 0.442771751}, "29027": {"FFRPTH14": 0.49162011200000005, "FSRPTH14": 0.558659218}, "29029": {"FFRPTH14": 0.5224779079999999, "FSRPTH14": 1.862747325}, "29031": {"FFRPTH14": 0.807247287, "FSRPTH14": 0.8841279809999999}, "29033": {"FFRPTH14": 0.331748314, "FSRPTH14": 0.9952449409999999}, "29035": {"FFRPTH14": 0.479386385, "FSRPTH14": 0.479386385}, "29037": {"FFRPTH14": 0.505506051, "FSRPTH14": 0.574889235}, "29039": {"FFRPTH14": 0.860091743, "FSRPTH14": 0.7167431190000001}, "29041": {"FFRPTH14": 0.12997140599999998, "FSRPTH14": 1.03977125}, "29043": {"FFRPTH14": 0.511565024, "FSRPTH14": 0.548105382}, "29045": {"FFRPTH14": 0.289142692, "FSRPTH14": 0.72285673}, "29047": {"FFRPTH14": 0.6590152429999999, "FSRPTH14": 0.629060005}, "29049": {"FFRPTH14": 0.29558106300000003, "FSRPTH14": 0.7882161679999999}, "29051": {"FFRPTH14": 0.796791933, "FSRPTH14": 0.862102747}, "29053": {"FFRPTH14": 0.909866363, "FSRPTH14": 0.682399773}, "29055": {"FFRPTH14": 0.405679513, "FSRPTH14": 0.93306288}, "29057": {"FFRPTH14": 0.393287887, "FSRPTH14": 0.917671736}, "29059": {"FFRPTH14": 0.549148819, "FSRPTH14": 0.549148819}, "29061": {"FFRPTH14": 0.120525491, "FSRPTH14": 0.602627456}, "29063": {"FFRPTH14": 0.315159155, "FSRPTH14": 0.315159155}, "29065": {"FFRPTH14": 0.38326413299999995, "FSRPTH14": 0.574896199}, "29067": {"FFRPTH14": 0.295290123, "FSRPTH14": 0.516757714}, "29069": {"FFRPTH14": 0.446656457, "FSRPTH14": 0.8295048490000001}, "29071": {"FFRPTH14": 0.607342972, "FSRPTH14": 0.617138827}, "29073": {"FFRPTH14": 0.739943495, "FSRPTH14": 1.547154581}, "29075": {"FFRPTH14": 0.439496045, "FSRPTH14": 0.878992089}, "29077": {"FFRPTH14": 0.930509156, "FSRPTH14": 0.8710405259999999}, "29079": {"FFRPTH14": 0.294204178, "FSRPTH14": 0.588408355}, "29081": {"FFRPTH14": 0.810278967, "FSRPTH14": 0.810278967}, "29083": {"FFRPTH14": 0.7263482840000001, "FSRPTH14": 0.8625385870000001}, "29085": {"FFRPTH14": 0.108471635, "FSRPTH14": 1.193187981}, "29087": {"FFRPTH14": 0.664304694, "FSRPTH14": 1.771479185}, "29089": {"FFRPTH14": 0.19686977100000003, "FSRPTH14": 0.885913968}, "29091": {"FFRPTH14": 0.572523834, "FSRPTH14": 0.821447241}, "29093": {"FFRPTH14": 0.097399435, "FSRPTH14": 0.681796046}, "29095": {"FFRPTH14": 0.7128314040000001, "FSRPTH14": 0.775771344}, "29097": {"FFRPTH14": 0.816722391, "FSRPTH14": 0.740154667}, "29099": {"FFRPTH14": 0.547782827, "FSRPTH14": 0.41308213200000005}, "29101": {"FFRPTH14": 0.607041684, "FSRPTH14": 0.496670468}, "29103": {"FFRPTH14": 0.0, "FSRPTH14": 0.75}, "29105": {"FFRPTH14": 0.6490025110000001, "FSRPTH14": 0.7618725129999999}, "29107": {"FFRPTH14": 0.5506607929999999, "FSRPTH14": 0.856583456}, "29109": {"FFRPTH14": 0.447097809, "FSRPTH14": 0.657496778}, "29111": {"FFRPTH14": 0.295916354, "FSRPTH14": 0.789110278}, "29113": {"FFRPTH14": 0.331803351, "FSRPTH14": 0.497705027}, "29115": {"FFRPTH14": 0.48736902, "FSRPTH14": 0.56859719}, "29117": {"FFRPTH14": 0.265727762, "FSRPTH14": 0.664319405}, "29119": {"FFRPTH14": 0.307017544, "FSRPTH14": 0.43859649100000003}, "29121": {"FFRPTH14": 0.452225596, "FSRPTH14": 0.969054849}, "29123": {"FFRPTH14": 0.64683053, "FSRPTH14": 0.5659767139999999}, "29125": {"FFRPTH14": 0.332852546, "FSRPTH14": 0.7766559409999999}, "29127": {"FFRPTH14": 0.656984786, "FSRPTH14": 0.829875519}, "29129": {"FFRPTH14": 0.537778973, "FSRPTH14": 1.075557946}, "29131": {"FFRPTH14": 0.596634979, "FSRPTH14": 1.073942962}, "29133": {"FFRPTH14": 0.42158516, "FSRPTH14": 0.281056773}, "29135": {"FFRPTH14": 0.504540868, "FSRPTH14": 0.504540868}, "29137": {"FFRPTH14": 0.34455036200000005, "FSRPTH14": 1.033651085}, "29139": {"FFRPTH14": 0.42226163299999997, "FSRPTH14": 0.50671396}, "29141": {"FFRPTH14": 0.39525691700000004, "FSRPTH14": 1.4822134390000001}, "29143": {"FFRPTH14": 0.547285464, "FSRPTH14": 0.9303852890000001}, "29145": {"FFRPTH14": 0.460766579, "FSRPTH14": 0.426635721}, "29147": {"FFRPTH14": 0.51990815, "FSRPTH14": 0.51990815}, "29149": {"FFRPTH14": 0.274951883, "FSRPTH14": 0.733205022}, "29151": {"FFRPTH14": 0.291906882, "FSRPTH14": 0.7297672040000001}, "29153": {"FFRPTH14": 0.105351875, "FSRPTH14": 0.421407501}, "29155": {"FFRPTH14": 0.33994334299999995, "FSRPTH14": 0.793201133}, "29157": {"FFRPTH14": 0.572856994, "FSRPTH14": 0.624934903}, "29159": {"FFRPTH14": 0.663114269, "FSRPTH14": 0.663114269}, "29161": {"FFRPTH14": 0.713537137, "FSRPTH14": 0.735835173}, "29163": {"FFRPTH14": 0.485410711, "FSRPTH14": 0.9168868990000001}, "29165": {"FFRPTH14": 0.654091235, "FSRPTH14": 0.854538549}, "29167": {"FFRPTH14": 0.41862562, "FSRPTH14": 0.579635474}, "29169": {"FFRPTH14": 0.5427052920000001, "FSRPTH14": 0.561419268}, "29171": {"FFRPTH14": 0.207082212, "FSRPTH14": 0.41416442299999995}, "29173": {"FFRPTH14": 0.09751340800000001, "FSRPTH14": 0.19502681600000002}, "29175": {"FFRPTH14": 0.5185067010000001, "FSRPTH14": 0.757817486}, "29177": {"FFRPTH14": 0.305024184, "FSRPTH14": 0.261449301}, "29179": {"FFRPTH14": 0.152322925, "FSRPTH14": 0.45696877399999997}, "29181": {"FFRPTH14": 0.5011095999999999, "FSRPTH14": 0.21476125699999998}, "29183": {"FFRPTH14": 0.711475574, "FSRPTH14": 0.719380858}, "29185": {"FFRPTH14": 0.10574177900000001, "FSRPTH14": 0.951676007}, "29186": {"FFRPTH14": 0.334933572, "FSRPTH14": 0.893156191}, "29187": {"FFRPTH14": 0.773195876, "FSRPTH14": 0.591267435}, "29189": {"FFRPTH14": 0.80249452, "FSRPTH14": 0.7655638020000001}, "29195": {"FFRPTH14": 0.513984666, "FSRPTH14": 0.685312888}, "29197": {"FFRPTH14": 0.0, "FSRPTH14": 0.457665904}, "29199": {"FFRPTH14": 0.411268764, "FSRPTH14": 0.822537528}, "29201": {"FFRPTH14": 0.539804128, "FSRPTH14": 0.7197388379999999}, "29203": {"FFRPTH14": 0.120062432, "FSRPTH14": 0.720374595}, "29205": {"FFRPTH14": 0.163719712, "FSRPTH14": 1.309757695}, "29207": {"FFRPTH14": 0.502226538, "FSRPTH14": 0.602671845}, "29209": {"FFRPTH14": 0.450102881, "FSRPTH14": 0.932355967}, "29211": {"FFRPTH14": 0.46794571799999995, "FSRPTH14": 0.155981906}, "29213": {"FFRPTH14": 0.995758805, "FSRPTH14": 1.641158031}, "29215": {"FFRPTH14": 0.428983699, "FSRPTH14": 0.623976289}, "29217": {"FFRPTH14": 0.571401362, "FSRPTH14": 0.571401362}, "29219": {"FFRPTH14": 0.5413045439999999, "FSRPTH14": 0.45108712}, "29221": {"FFRPTH14": 0.319017426, "FSRPTH14": 0.398771783}, "29223": {"FFRPTH14": 0.37169194200000005, "FSRPTH14": 0.669045495}, "29225": {"FFRPTH14": 0.5150726520000001, "FSRPTH14": 0.298199957}, "29227": {"FFRPTH14": 0.0, "FSRPTH14": 1.447178003}, "29229": {"FFRPTH14": 0.492045268, "FSRPTH14": 0.546716965}, "29510": {"FFRPTH14": 0.8789643970000001, "FSRPTH14": 1.140448429}, "30001": {"FFRPTH14": 0.74906367, "FSRPTH14": 1.7121455319999999}, "30003": {"FFRPTH14": 0.150579732, "FSRPTH14": 0.451739196}, "30005": {"FFRPTH14": 0.302160447, "FSRPTH14": 0.302160447}, "30007": {"FFRPTH14": 0.176460208, "FSRPTH14": 0.882301041}, "30009": {"FFRPTH14": 0.7693047409999999, "FSRPTH14": 1.346283296}, "30011": {"FFRPTH14": 0.0, "FSRPTH14": 0.855431993}, "30013": {"FFRPTH14": 0.83794812, "FSRPTH14": 0.813659769}, "30015": {"FFRPTH14": 0.169664065, "FSRPTH14": 1.017984391}, "30017": {"FFRPTH14": 0.6615944429999999, "FSRPTH14": 1.0750909690000001}, "30019": {"FFRPTH14": 1.115448968, "FSRPTH14": 1.115448968}, "30021": {"FFRPTH14": 0.525320445, "FSRPTH14": 1.15570498}, "30023": {"FFRPTH14": 0.327868852, "FSRPTH14": 1.092896175}, "30025": {"FFRPTH14": 0.965250965, "FSRPTH14": 1.930501931}, "30027": {"FFRPTH14": 0.611781157, "FSRPTH14": 1.310959622}, "30029": {"FFRPTH14": 0.7163625640000001, "FSRPTH14": 1.1482870509999998}, "30031": {"FFRPTH14": 0.996834793, "FSRPTH14": 1.459283923}, "30033": {"FFRPTH14": 0.0, "FSRPTH14": 0.76394194}, "30035": {"FFRPTH14": 0.657126168, "FSRPTH14": 0.876168224}, "30037": {"FFRPTH14": 1.17370892, "FSRPTH14": 0.0}, "30039": {"FFRPTH14": 0.934870676, "FSRPTH14": 1.869741352}, "30041": {"FFRPTH14": 0.843576765, "FSRPTH14": 0.964087732}, "30043": {"FFRPTH14": 0.259560478, "FSRPTH14": 0.865201592}, "30045": {"FFRPTH14": 0.0, "FSRPTH14": 1.506780512}, "30047": {"FFRPTH14": 0.6185779579999999, "FSRPTH14": 0.6529434000000001}, "30049": {"FFRPTH14": 0.652939747, "FSRPTH14": 1.017371234}, "30051": {"FFRPTH14": 0.0, "FSRPTH14": 0.847816872}, "30053": {"FFRPTH14": 0.418300654, "FSRPTH14": 1.307189542}, "30055": {"FFRPTH14": 1.180637544, "FSRPTH14": 1.180637544}, "30057": {"FFRPTH14": 0.127877238, "FSRPTH14": 2.046035806}, "30059": {"FFRPTH14": 0.539665407, "FSRPTH14": 2.698327037}, "30061": {"FFRPTH14": 0.234907212, "FSRPTH14": 1.174536058}, "30063": {"FFRPTH14": 0.7454474459999999, "FSRPTH14": 0.931809307}, "30065": {"FFRPTH14": 0.0, "FSRPTH14": 0.871649597}, "30067": {"FFRPTH14": 0.755667506, "FSRPTH14": 2.518891688}, "30069": {"FFRPTH14": 0.0, "FSRPTH14": 2.06185567}, "30071": {"FFRPTH14": 0.477099237, "FSRPTH14": 1.43129771}, "30073": {"FFRPTH14": 0.321595112, "FSRPTH14": 0.964785335}, "30075": {"FFRPTH14": 0.560852496, "FSRPTH14": 2.8042624789999997}, "30077": {"FFRPTH14": 0.43421624, "FSRPTH14": 1.447387466}, "30079": {"FFRPTH14": 0.0, "FSRPTH14": 1.7421602790000001}, "30081": {"FFRPTH14": 0.41433097700000004, "FSRPTH14": 0.9992688279999999}, "30083": {"FFRPTH14": 0.8638562540000001, "FSRPTH14": 0.95024188}, "30085": {"FFRPTH14": 0.44122838, "FSRPTH14": 0.352982704}, "30087": {"FFRPTH14": 0.536135535, "FSRPTH14": 0.536135535}, "30089": {"FFRPTH14": 0.615980289, "FSRPTH14": 1.231960577}, "30091": {"FFRPTH14": 0.27056277100000004, "FSRPTH14": 1.6233766230000002}, "30093": {"FFRPTH14": 0.951557093, "FSRPTH14": 1.038062284}, "30095": {"FFRPTH14": 0.322927879, "FSRPTH14": 0.645855759}, "30097": {"FFRPTH14": 0.0, "FSRPTH14": 1.909959072}, "30099": {"FFRPTH14": 0.0, "FSRPTH14": 0.8245382590000001}, "30101": {"FFRPTH14": 0.388349515, "FSRPTH14": 2.13592233}, "30103": {"FFRPTH14": 0.0, "FSRPTH14": 1.445086705}, "30105": {"FFRPTH14": 1.570680628, "FSRPTH14": 1.178010471}, "30107": {"FFRPTH14": 0.0, "FSRPTH14": 2.378686965}, "30109": {"FFRPTH14": 0.89206066, "FSRPTH14": 0.89206066}, "30111": {"FFRPTH14": 0.745338422, "FSRPTH14": 0.7903157409999999}, "31001": {"FFRPTH14": 1.080840512, "FSRPTH14": 0.635788537}, "31003": {"FFRPTH14": 0.625195374, "FSRPTH14": 1.0940919040000001}, "31005": {"FFRPTH14": 0.0, "FSRPTH14": 2.207505519}, "31007": {"FFRPTH14": 0.0, "FSRPTH14": 0.0}, "31009": {"FFRPTH14": 0.0, "FSRPTH14": 1.984126984}, "31011": {"FFRPTH14": 0.186811134, "FSRPTH14": 0.560433402}, "31013": {"FFRPTH14": 0.44091710799999995, "FSRPTH14": 1.3227513229999999}, "31015": {"FFRPTH14": 0.0, "FSRPTH14": 0.491883915}, "31017": {"FFRPTH14": 0.0, "FSRPTH14": 1.7001020059999998}, "31019": {"FFRPTH14": 0.8709356340000001, "FSRPTH14": 0.9124087590000001}, "31021": {"FFRPTH14": 0.304275065, "FSRPTH14": 1.217100259}, "31023": {"FFRPTH14": 0.121226815, "FSRPTH14": 0.48490726100000003}, "31025": {"FFRPTH14": 0.391788121, "FSRPTH14": 0.587682181}, "31027": {"FFRPTH14": 0.116144019, "FSRPTH14": 0.6968641109999999}, "31029": {"FFRPTH14": 0.251382604, "FSRPTH14": 1.256913022}, "31031": {"FFRPTH14": 0.867754252, "FSRPTH14": 1.214855953}, "31033": {"FFRPTH14": 0.492707923, "FSRPTH14": 1.281040599}, "31035": {"FFRPTH14": 0.15835312699999998, "FSRPTH14": 0.950118765}, "31037": {"FFRPTH14": 0.380807312, "FSRPTH14": 0.666412795}, "31039": {"FFRPTH14": 0.664672649, "FSRPTH14": 1.218566523}, "31041": {"FFRPTH14": 0.279642058, "FSRPTH14": 1.398210291}, "31043": {"FFRPTH14": 0.623501199, "FSRPTH14": 0.527577938}, "31045": {"FFRPTH14": 0.8847600090000001, "FSRPTH14": 1.548330015}, "31047": {"FFRPTH14": 0.705511288, "FSRPTH14": 0.747011952}, "31049": {"FFRPTH14": 0.515463918, "FSRPTH14": 2.06185567}, "31051": {"FFRPTH14": 0.0, "FSRPTH14": 0.518851608}, "31053": {"FFRPTH14": 0.6803831920000001, "FSRPTH14": 0.762029175}, "31055": {"FFRPTH14": 0.7473621429999999, "FSRPTH14": 0.79890436}, "31057": {"FFRPTH14": 0.530222694, "FSRPTH14": 1.0604453870000001}, "31059": {"FFRPTH14": 0.529941706, "FSRPTH14": 1.236530648}, "31061": {"FFRPTH14": 0.0, "FSRPTH14": 0.975292588}, "31063": {"FFRPTH14": 0.0, "FSRPTH14": 0.36968576700000005}, "31065": {"FFRPTH14": 0.409165303, "FSRPTH14": 0.818330606}, "31067": {"FFRPTH14": 0.692424872, "FSRPTH14": 0.830909846}, "31069": {"FFRPTH14": 0.0, "FSRPTH14": 1.5698587130000001}, "31071": {"FFRPTH14": 0.49925112299999996, "FSRPTH14": 2.496255617}, "31073": {"FFRPTH14": 0.507614213, "FSRPTH14": 0.507614213}, "31075": {"FFRPTH14": 0.0, "FSRPTH14": 1.615508885}, "31077": {"FFRPTH14": 0.0, "FSRPTH14": 1.208702659}, "31079": {"FFRPTH14": 0.796851623, "FSRPTH14": 0.829376179}, "31081": {"FFRPTH14": 0.4378763, "FSRPTH14": 0.766283525}, "31083": {"FFRPTH14": 0.8591065290000001, "FSRPTH14": 1.7182130580000001}, "31085": {"FFRPTH14": 0.0, "FSRPTH14": 0.0}, "31087": {"FFRPTH14": 0.0, "FSRPTH14": 1.034126163}, "31089": {"FFRPTH14": 0.48063058700000005, "FSRPTH14": 1.345765645}, "31091": {"FFRPTH14": 1.373626374, "FSRPTH14": 2.7472527469999997}, "31093": {"FFRPTH14": 0.314366551, "FSRPTH14": 0.7859163779999999}, "31095": {"FFRPTH14": 0.545330607, "FSRPTH14": 1.090661213}, "31097": {"FFRPTH14": 0.38572806200000004, "FSRPTH14": 1.157184185}, "31099": {"FFRPTH14": 0.45153522, "FSRPTH14": 0.45153522}, "31101": {"FFRPTH14": 0.985100357, "FSRPTH14": 1.60078808}, "31103": {"FFRPTH14": 0.0, "FSRPTH14": 0.0}, "31105": {"FFRPTH14": 0.538647994, "FSRPTH14": 0.538647994}, "31107": {"FFRPTH14": 0.117896722, "FSRPTH14": 1.178967225}, "31109": {"FFRPTH14": 0.9310956109999999, "FSRPTH14": 0.6693285179999999}, "31111": {"FFRPTH14": 0.6980315509999999, "FSRPTH14": 0.642189027}, "31113": {"FFRPTH14": 0.0, "FSRPTH14": 0.0}, "31115": {"FFRPTH14": 0.0, "FSRPTH14": 3.4013605439999997}, "31117": {"FFRPTH14": 0.0, "FSRPTH14": 2.008032129}, "31119": {"FFRPTH14": 0.909762893, "FSRPTH14": 0.966623074}, "31121": {"FFRPTH14": 0.515065671, "FSRPTH14": 0.7725985059999999}, "31123": {"FFRPTH14": 1.439736734, "FSRPTH14": 0.822706705}, "31125": {"FFRPTH14": 0.56022409, "FSRPTH14": 1.120448179}, "31127": {"FFRPTH14": 0.557491289, "FSRPTH14": 0.975609756}, "31129": {"FFRPTH14": 0.457770657, "FSRPTH14": 0.686655985}, "31131": {"FFRPTH14": 0.506425271, "FSRPTH14": 0.6330315879999999}, "31133": {"FFRPTH14": 0.370096225, "FSRPTH14": 0.74019245}, "31135": {"FFRPTH14": 0.0, "FSRPTH14": 0.691802145}, "31137": {"FFRPTH14": 0.9796451509999999, "FSRPTH14": 0.761946228}, "31139": {"FFRPTH14": 0.5554012770000001, "FSRPTH14": 0.5554012770000001}, "31141": {"FFRPTH14": 0.704096002, "FSRPTH14": 0.6428702629999999}, "31143": {"FFRPTH14": 0.37943464200000004, "FSRPTH14": 0.569151964}, "31145": {"FFRPTH14": 1.012238888, "FSRPTH14": 0.368086869}, "31147": {"FFRPTH14": 0.61515748, "FSRPTH14": 1.230314961}, "31149": {"FFRPTH14": 0.0, "FSRPTH14": 2.079002079}, "31151": {"FFRPTH14": 0.491159136, "FSRPTH14": 0.701655908}, "31153": {"FFRPTH14": 0.679470129, "FSRPTH14": 0.42394290100000004}, "31155": {"FFRPTH14": 0.382427458, "FSRPTH14": 0.956068646}, "31157": {"FFRPTH14": 0.9872480459999999, "FSRPTH14": 0.9872480459999999}, "31159": {"FFRPTH14": 0.5830903789999999, "FSRPTH14": 0.466472303}, "31161": {"FFRPTH14": 0.9507510929999999, "FSRPTH14": 1.140901312}, "31163": {"FFRPTH14": 0.0, "FSRPTH14": 0.975927131}, "31165": {"FFRPTH14": 0.0, "FSRPTH14": 0.0}, "31167": {"FFRPTH14": 0.164771791, "FSRPTH14": 0.49431537299999995}, "31169": {"FFRPTH14": 0.19120458899999998, "FSRPTH14": 1.912045889}, "31171": {"FFRPTH14": 0.0, "FSRPTH14": 1.455604076}, "31173": {"FFRPTH14": 0.43047783, "FSRPTH14": 0.28698522}, "31175": {"FFRPTH14": 0.7136060890000001, "FSRPTH14": 0.47573739299999995}, "31177": {"FFRPTH14": 0.44426893100000003, "FSRPTH14": 0.789811433}, "31179": {"FFRPTH14": 0.95429965, "FSRPTH14": 0.8482663559999999}, "31181": {"FFRPTH14": 0.27337342800000003, "FSRPTH14": 0.27337342800000003}, "31183": {"FFRPTH14": 0.0, "FSRPTH14": 2.6109660569999997}, "31185": {"FFRPTH14": 1.005963929, "FSRPTH14": 0.9341093629999999}, "32001": {"FFRPTH14": 0.708658135, "FSRPTH14": 0.500229272}, "32003": {"FFRPTH14": 0.8242816159999999, "FSRPTH14": 0.617969629}, "32005": {"FFRPTH14": 0.736284079, "FSRPTH14": 1.051834399}, "32007": {"FFRPTH14": 0.7391123070000001, "FSRPTH14": 0.549596331}, "32009": {"FFRPTH14": 0.0, "FSRPTH14": 1.216545012}, "32011": {"FFRPTH14": 0.991080278, "FSRPTH14": 0.495540139}, "32013": {"FFRPTH14": 0.636610915, "FSRPTH14": 1.041726952}, "32015": {"FFRPTH14": 0.332834082, "FSRPTH14": 0.998502247}, "32017": {"FFRPTH14": 0.192901235, "FSRPTH14": 0.385802469}, "32019": {"FFRPTH14": 0.36687327399999997, "FSRPTH14": 0.444109753}, "32021": {"FFRPTH14": 0.444444444, "FSRPTH14": 0.444444444}, "32023": {"FFRPTH14": 0.638569604, "FSRPTH14": 0.449363795}, "32027": {"FFRPTH14": 0.597193192, "FSRPTH14": 0.149298298}, "32029": {"FFRPTH14": 0.0, "FSRPTH14": 2.044989775}, "32031": {"FFRPTH14": 0.754411718, "FSRPTH14": 0.74532242}, "32033": {"FFRPTH14": 0.39864460799999996, "FSRPTH14": 0.996611521}, "32510": {"FFRPTH14": 0.898719783, "FSRPTH14": 0.990425883}, "33001": {"FFRPTH14": 0.795953901, "FSRPTH14": 1.4095017}, "33003": {"FFRPTH14": 0.9704846090000001, "FSRPTH14": 2.2363341}, "33005": {"FFRPTH14": 0.630624713, "FSRPTH14": 0.748866846}, "33007": {"FFRPTH14": 0.758221969, "FSRPTH14": 1.263703282}, "33009": {"FFRPTH14": 0.858819068, "FSRPTH14": 1.449954271}, "33011": {"FFRPTH14": 0.7132562, "FSRPTH14": 0.8736771440000001}, "33013": {"FFRPTH14": 0.72704541, "FSRPTH14": 0.6998661420000001}, "33015": {"FFRPTH14": 0.908120191, "FSRPTH14": 1.014566514}, "33017": {"FFRPTH14": 0.6926531, "FSRPTH14": 0.7643068690000001}, "33019": {"FFRPTH14": 0.417604343, "FSRPTH14": 0.510405308}, "34001": {"FFRPTH14": 0.755789237, "FSRPTH14": 1.188187886}, "34003": {"FFRPTH14": 0.816219852, "FSRPTH14": 1.000458454}, "34005": {"FFRPTH14": 0.689314732, "FSRPTH14": 0.6181596629999999}, "34007": {"FFRPTH14": 0.673139767, "FSRPTH14": 0.647701345}, "34009": {"FFRPTH14": 1.783017285, "FSRPTH14": 3.25138446}, "34011": {"FFRPTH14": 0.635368418, "FSRPTH14": 0.501941051}, "34013": {"FFRPTH14": 0.69370874, "FSRPTH14": 0.687425147}, "34015": {"FFRPTH14": 0.58772783, "FSRPTH14": 0.546483772}, "34017": {"FFRPTH14": 0.756222772, "FSRPTH14": 0.774156909}, "34019": {"FFRPTH14": 0.785296707, "FSRPTH14": 1.102588306}, "34021": {"FFRPTH14": 0.753626153, "FSRPTH14": 0.726710933}, "34023": {"FFRPTH14": 0.783214576, "FSRPTH14": 0.6779888009999999}, "34025": {"FFRPTH14": 0.842233731, "FSRPTH14": 1.09013649}, "34027": {"FFRPTH14": 0.826451242, "FSRPTH14": 0.952520076}, "34029": {"FFRPTH14": 0.701005115, "FSRPTH14": 0.736822895}, "34031": {"FFRPTH14": 0.650478721, "FSRPTH14": 0.752668731}, "34033": {"FFRPTH14": 0.525380515, "FSRPTH14": 0.47902341}, "34035": {"FFRPTH14": 0.790815713, "FSRPTH14": 0.859974501}, "34037": {"FFRPTH14": 0.5175661970000001, "FSRPTH14": 0.7867006190000001}, "34039": {"FFRPTH14": 0.661917499, "FSRPTH14": 0.7975563309999999}, "34041": {"FFRPTH14": 0.7014787170000001, "FSRPTH14": 0.841774461}, "35001": {"FFRPTH14": 0.8259924120000001, "FSRPTH14": 0.626155538}, "35003": {"FFRPTH14": 0.0, "FSRPTH14": 0.562429696}, "35005": {"FFRPTH14": 0.637542123, "FSRPTH14": 0.5920034000000001}, "35006": {"FFRPTH14": 0.511901715, "FSRPTH14": 0.329079674}, "35007": {"FFRPTH14": 1.261829653, "FSRPTH14": 1.41955836}, "35009": {"FFRPTH14": 0.667072142, "FSRPTH14": 0.49049422200000004}, "35011": {"FFRPTH14": 0.547945205, "FSRPTH14": 1.6438356159999998}, "35013": {"FFRPTH14": 0.58967783, "FSRPTH14": 0.50543814}, "35015": {"FFRPTH14": 0.656086532, "FSRPTH14": 0.620622396}, "35017": {"FFRPTH14": 0.756117679, "FSRPTH14": 0.859224636}, "35019": {"FFRPTH14": 0.223813787, "FSRPTH14": 1.342882722}, "35021": {"FFRPTH14": 0.0, "FSRPTH14": 1.4641288430000001}, "35023": {"FFRPTH14": 0.657894737, "FSRPTH14": 0.8771929820000001}, "35025": {"FFRPTH14": 0.6285804079999999, "FSRPTH14": 0.5428648979999999}, "35027": {"FFRPTH14": 1.0149193140000001, "FSRPTH14": 1.5731249369999998}, "35028": {"FFRPTH14": 0.565546884, "FSRPTH14": 0.508992195}, "35029": {"FFRPTH14": 0.7700725490000001, "FSRPTH14": 0.8916629509999999}, "35031": {"FFRPTH14": 0.674782045, "FSRPTH14": 0.458851791}, "35033": {"FFRPTH14": 0.217770035, "FSRPTH14": 0.0}, "35035": {"FFRPTH14": 0.507052641, "FSRPTH14": 0.460956947}, "35037": {"FFRPTH14": 0.9410657570000001, "FSRPTH14": 0.8234325370000001}, "35039": {"FFRPTH14": 0.5028031270000001, "FSRPTH14": 0.42738265799999997}, "35041": {"FFRPTH14": 0.40950041, "FSRPTH14": 0.46068796100000003}, "35043": {"FFRPTH14": 0.45782222, "FSRPTH14": 0.30521481300000003}, "35045": {"FFRPTH14": 0.759381185, "FSRPTH14": 0.444318779}, "35047": {"FFRPTH14": 0.531180283, "FSRPTH14": 0.672828358}, "35049": {"FFRPTH14": 0.735671283, "FSRPTH14": 1.02589023}, "35051": {"FFRPTH14": 0.529801325, "FSRPTH14": 1.236203091}, "35053": {"FFRPTH14": 0.635470826, "FSRPTH14": 0.808781051}, "35055": {"FFRPTH14": 0.78587837, "FSRPTH14": 1.632208923}, "35057": {"FFRPTH14": 0.448401768, "FSRPTH14": 0.448401768}, "35059": {"FFRPTH14": 0.698161508, "FSRPTH14": 0.9308820109999999}, "35061": {"FFRPTH14": 0.6331033939999999, "FSRPTH14": 0.422068929}, "36001": {"FFRPTH14": 1.05136434, "FSRPTH14": 1.093548712}, "36003": {"FFRPTH14": 0.377073906, "FSRPTH14": 0.837942014}, "36005": {"FFRPTH14": 0.6494414039999999, "FSRPTH14": 0.400512044}, "36007": {"FFRPTH14": 0.785410618, "FSRPTH14": 0.881686758}, "36009": {"FFRPTH14": 0.6234096689999999, "FSRPTH14": 0.992366412}, "36011": {"FFRPTH14": 0.6723925759999999, "FSRPTH14": 0.8119457520000001}, "36013": {"FFRPTH14": 0.73455355, "FSRPTH14": 1.029889514}, "36015": {"FFRPTH14": 0.7063917059999999, "FSRPTH14": 0.854506095}, "36017": {"FFRPTH14": 0.526038927, "FSRPTH14": 0.930684255}, "36019": {"FFRPTH14": 0.539004312, "FSRPTH14": 0.85750686}, "36021": {"FFRPTH14": 0.595602202, "FSRPTH14": 1.142912334}, "36023": {"FFRPTH14": 0.8567232379999999, "FSRPTH14": 0.87712141}, "36025": {"FFRPTH14": 0.558167493, "FSRPTH14": 1.0948670059999999}, "36027": {"FFRPTH14": 0.822715027, "FSRPTH14": 1.170008665}, "36029": {"FFRPTH14": 0.834385345, "FSRPTH14": 0.8571413090000001}, "36031": {"FFRPTH14": 0.594637917, "FSRPTH14": 2.042451977}, "36033": {"FFRPTH14": 0.44867543200000004, "FSRPTH14": 0.7998127270000001}, "36035": {"FFRPTH14": 0.757785787, "FSRPTH14": 0.8871638479999999}, "36037": {"FFRPTH14": 0.6423041820000001, "FSRPTH14": 0.8958453059999999}, "36039": {"FFRPTH14": 0.8130589779999999, "FSRPTH14": 1.4801842930000002}, "36041": {"FFRPTH14": 0.84835631, "FSRPTH14": 3.6055143160000003}, "36043": {"FFRPTH14": 0.78438755, "FSRPTH14": 0.8942018070000001}, "36045": {"FFRPTH14": 0.848005508, "FSRPTH14": 1.057907861}, "36047": {"FFRPTH14": 0.76054822, "FSRPTH14": 0.735756027}, "36049": {"FFRPTH14": 0.47759000700000004, "FSRPTH14": 0.918442322}, "36051": {"FFRPTH14": 0.727711888, "FSRPTH14": 0.83609451}, "36053": {"FFRPTH14": 0.5803589929999999, "FSRPTH14": 1.050173417}, "36055": {"FFRPTH14": 0.733473182, "FSRPTH14": 0.818822789}, "36057": {"FFRPTH14": 0.7432853209999999, "FSRPTH14": 0.803551699}, "36059": {"FFRPTH14": 0.9494879759999999, "FSRPTH14": 0.94580779}, "36061": {"FFRPTH14": 1.560257855, "FSRPTH14": 2.712880775}, "36063": {"FFRPTH14": 0.627561176, "FSRPTH14": 0.8570425009999999}, "36065": {"FFRPTH14": 0.695664123, "FSRPTH14": 0.888904157}, "36067": {"FFRPTH14": 0.914147067, "FSRPTH14": 0.762501175}, "36069": {"FFRPTH14": 0.793021412, "FSRPTH14": 1.148513768}, "36071": {"FFRPTH14": 0.797662318, "FSRPTH14": 0.8348865590000001}, "36073": {"FFRPTH14": 0.428734756, "FSRPTH14": 0.45255335399999996}, "36075": {"FFRPTH14": 0.7774184740000001, "FSRPTH14": 0.769148065}, "36077": {"FFRPTH14": 0.621646381, "FSRPTH14": 1.2923701090000002}, "36079": {"FFRPTH14": 0.73376421, "FSRPTH14": 0.914692372}, "36081": {"FFRPTH14": 0.844252621, "FSRPTH14": 0.780933674}, "36083": {"FFRPTH14": 0.6196252210000001, "FSRPTH14": 0.7072489890000001}, "36085": {"FFRPTH14": 0.667682276, "FSRPTH14": 0.61697223}, "36087": {"FFRPTH14": 0.7904503709999999, "FSRPTH14": 0.9417475129999999}, "36089": {"FFRPTH14": 0.47576301600000004, "FSRPTH14": 0.763016158}, "36091": {"FFRPTH14": 0.7424829159999999, "FSRPTH14": 0.960337185}, "36093": {"FFRPTH14": 0.783382027, "FSRPTH14": 0.7448550420000001}, "36095": {"FFRPTH14": 0.380155864, "FSRPTH14": 0.823671038}, "36097": {"FFRPTH14": 0.595270307, "FSRPTH14": 1.0823096490000002}, "36099": {"FFRPTH14": 0.573328747, "FSRPTH14": 0.917325995}, "36101": {"FFRPTH14": 0.467508181, "FSRPTH14": 0.904526699}, "36103": {"FFRPTH14": 0.874270111, "FSRPTH14": 0.9148564709999999}, "36105": {"FFRPTH14": 0.7505629220000001, "FSRPTH14": 1.119260498}, "36107": {"FFRPTH14": 0.481251253, "FSRPTH14": 0.7820332870000001}, "36109": {"FFRPTH14": 0.70684204, "FSRPTH14": 1.002951543}, "36111": {"FFRPTH14": 0.8589875029999999, "FSRPTH14": 1.4020892790000001}, "36113": {"FFRPTH14": 1.092761609, "FSRPTH14": 2.185523217}, "36115": {"FFRPTH14": 0.5290835629999999, "FSRPTH14": 0.7214775859999999}, "36117": {"FFRPTH14": 0.7061302970000001, "FSRPTH14": 0.673539668}, "36119": {"FFRPTH14": 0.7896084240000001, "FSRPTH14": 1.105246167}, "36121": {"FFRPTH14": 0.582693989, "FSRPTH14": 0.606972905}, "36123": {"FFRPTH14": 0.555379245, "FSRPTH14": 0.9124087590000001}, "37001": {"FFRPTH14": 0.808770669, "FSRPTH14": 0.74458252}, "37003": {"FFRPTH14": 0.427899016, "FSRPTH14": 0.454642704}, "37005": {"FFRPTH14": 0.367680853, "FSRPTH14": 1.286882986}, "37007": {"FFRPTH14": 0.543372793, "FSRPTH14": 0.426935766}, "37009": {"FFRPTH14": 0.663570007, "FSRPTH14": 0.811030008}, "37011": {"FFRPTH14": 0.562651213, "FSRPTH14": 1.744218759}, "37013": {"FFRPTH14": 0.69349585, "FSRPTH14": 0.7355259009999999}, "37015": {"FFRPTH14": 0.547100368, "FSRPTH14": 0.149209191}, "37017": {"FFRPTH14": 0.750209193, "FSRPTH14": 0.432812996}, "37019": {"FFRPTH14": 0.7573462590000001, "FSRPTH14": 1.009795012}, "37021": {"FFRPTH14": 0.878106802, "FSRPTH14": 1.177461393}, "37023": {"FFRPTH14": 0.636971146, "FSRPTH14": 0.5922714170000001}, "37025": {"FFRPTH14": 0.754803413, "FSRPTH14": 0.661103679}, "37027": {"FFRPTH14": 0.6381620929999999, "FSRPTH14": 0.503166266}, "37029": {"FFRPTH14": 0.096796051, "FSRPTH14": 0.290388152}, "37031": {"FFRPTH14": 0.886486172, "FSRPTH14": 1.46778858}, "37033": {"FFRPTH14": 0.259942813, "FSRPTH14": 0.21661901}, "37035": {"FFRPTH14": 0.808883482, "FSRPTH14": 0.828296686}, "37037": {"FFRPTH14": 0.465806865, "FSRPTH14": 0.5240327229999999}, "37039": {"FFRPTH14": 0.810581777, "FSRPTH14": 0.810581777}, "37041": {"FFRPTH14": 0.686247598, "FSRPTH14": 0.48037331899999997}, "37043": {"FFRPTH14": 0.567054154, "FSRPTH14": 1.2286173329999999}, "37045": {"FFRPTH14": 0.618072438, "FSRPTH14": 0.659277267}, "37047": {"FFRPTH14": 0.860358541, "FSRPTH14": 0.50919179}, "37049": {"FFRPTH14": 0.6984977509999999, "FSRPTH14": 0.679360827}, "37051": {"FFRPTH14": 0.845774803, "FSRPTH14": 0.640459905}, "37053": {"FFRPTH14": 0.840807175, "FSRPTH14": 1.561499039}, "37055": {"FFRPTH14": 1.766180492, "FSRPTH14": 3.646308113}, "37057": {"FFRPTH14": 0.536349895, "FSRPTH14": 0.627773173}, "37059": {"FFRPTH14": 0.6999082879999999, "FSRPTH14": 0.724043056}, "37061": {"FFRPTH14": 0.601182325, "FSRPTH14": 0.417487726}, "37063": {"FFRPTH14": 0.8965564079999999, "FSRPTH14": 0.7742987159999999}, "37065": {"FFRPTH14": 0.455099849, "FSRPTH14": 0.273059909}, "37067": {"FFRPTH14": 0.747335052, "FSRPTH14": 0.744597561}, "37069": {"FFRPTH14": 0.397709195, "FSRPTH14": 0.318167356}, "37071": {"FFRPTH14": 0.776783642, "FSRPTH14": 0.57311476}, "37073": {"FFRPTH14": 0.0, "FSRPTH14": 0.25935852}, "37075": {"FFRPTH14": 0.578435909, "FSRPTH14": 0.809810273}, "37077": {"FFRPTH14": 0.52991453, "FSRPTH14": 0.307692308}, "37079": {"FFRPTH14": 0.237045465, "FSRPTH14": 0.379272745}, "37081": {"FFRPTH14": 0.82793257, "FSRPTH14": 0.802547845}, "37083": {"FFRPTH14": 0.8306588640000001, "FSRPTH14": 0.5852369270000001}, "37085": {"FFRPTH14": 0.615792715, "FSRPTH14": 0.418423255}, "37087": {"FFRPTH14": 0.638966891, "FSRPTH14": 0.992080174}, "37089": {"FFRPTH14": 0.5398159229999999, "FSRPTH14": 0.6027944470000001}, "37091": {"FFRPTH14": 0.740496956, "FSRPTH14": 0.575942077}, "37093": {"FFRPTH14": 0.251884288, "FSRPTH14": 0.116254287}, "37095": {"FFRPTH14": 0.704721635, "FSRPTH14": 1.937984496}, "37097": {"FFRPTH14": 0.845957702, "FSRPTH14": 0.809959502}, "37099": {"FFRPTH14": 0.7076450059999999, "FSRPTH14": 0.927258974}, "37101": {"FFRPTH14": 0.639389714, "FSRPTH14": 0.485054265}, "37103": {"FFRPTH14": 0.297737197, "FSRPTH14": 0.198491465}, "37105": {"FFRPTH14": 0.771010023, "FSRPTH14": 0.6704434979999999}, "37107": {"FFRPTH14": 0.889116868, "FSRPTH14": 0.581345644}, "37109": {"FFRPTH14": 0.688972679, "FSRPTH14": 0.513597815}, "37111": {"FFRPTH14": 0.62270655, "FSRPTH14": 0.44479039299999995}, "37113": {"FFRPTH14": 0.9151291509999999, "FSRPTH14": 1.446494465}, "37115": {"FFRPTH14": 0.28359408199999997, "FSRPTH14": 0.472656804}, "37117": {"FFRPTH14": 0.724823058, "FSRPTH14": 0.554276456}, "37119": {"FFRPTH14": 0.821696745, "FSRPTH14": 0.8809537209999999}, "37121": {"FFRPTH14": 0.522500163, "FSRPTH14": 1.110312847}, "37123": {"FFRPTH14": 0.6570542070000001, "FSRPTH14": 0.43803613799999996}, "37125": {"FFRPTH14": 0.7198341159999999, "FSRPTH14": 1.0314041059999999}, "37127": {"FFRPTH14": 0.773657492, "FSRPTH14": 0.667677014}, "37129": {"FFRPTH14": 1.044854784, "FSRPTH14": 1.109580301}, "37131": {"FFRPTH14": 0.293212139, "FSRPTH14": 0.39094951899999997}, "37133": {"FFRPTH14": 0.810282053, "FSRPTH14": 0.565065116}, "37135": {"FFRPTH14": 0.740635237, "FSRPTH14": 0.74775673}, "37137": {"FFRPTH14": 1.0812480690000001, "FSRPTH14": 0.8495520540000001}, "37139": {"FFRPTH14": 0.779148968, "FSRPTH14": 0.9550858320000001}, "37141": {"FFRPTH14": 0.604444444, "FSRPTH14": 0.675555556}, "37143": {"FFRPTH14": 0.44556661200000003, "FSRPTH14": 0.44556661200000003}, "37145": {"FFRPTH14": 0.664417868, "FSRPTH14": 0.281099867}, "37147": {"FFRPTH14": 0.9124399790000001, "FSRPTH14": 0.650113485}, "37149": {"FFRPTH14": 0.44210836600000003, "FSRPTH14": 0.9333398829999999}, "37151": {"FFRPTH14": 0.546302652, "FSRPTH14": 0.567314292}, "37153": {"FFRPTH14": 0.502919117, "FSRPTH14": 0.5685172629999999}, "37155": {"FFRPTH14": 0.504600772, "FSRPTH14": 0.415553577}, "37157": {"FFRPTH14": 0.68705287, "FSRPTH14": 0.697958471}, "37159": {"FFRPTH14": 0.584289115, "FSRPTH14": 0.6997042490000001}, "37161": {"FFRPTH14": 0.585585586, "FSRPTH14": 0.7057057059999999}, "37163": {"FFRPTH14": 0.515222482, "FSRPTH14": 0.421545667}, "37165": {"FFRPTH14": 0.646503261, "FSRPTH14": 0.562176748}, "37167": {"FFRPTH14": 0.726072607, "FSRPTH14": 0.742574257}, "37169": {"FFRPTH14": 0.517029665, "FSRPTH14": 0.517029665}, "37171": {"FFRPTH14": 0.8359828970000001, "FSRPTH14": 0.8908014470000001}, "37173": {"FFRPTH14": 1.190976601, "FSRPTH14": 1.190976601}, "37175": {"FFRPTH14": 0.5447117570000001, "FSRPTH14": 0.847329399}, "37177": {"FFRPTH14": 0.972053463, "FSRPTH14": 0.972053463}, "37179": {"FFRPTH14": 0.535302515, "FSRPTH14": 0.43922257600000003}, "37181": {"FFRPTH14": 0.6276056839999999, "FSRPTH14": 0.448289775}, "37183": {"FFRPTH14": 0.849111487, "FSRPTH14": 0.78402629}, "37185": {"FFRPTH14": 0.543720034, "FSRPTH14": 0.543720034}, "37187": {"FFRPTH14": 0.6364359589999999, "FSRPTH14": 0.715990453}, "37189": {"FFRPTH14": 0.7420091320000001, "FSRPTH14": 1.560121766}, "37191": {"FFRPTH14": 0.594587645, "FSRPTH14": 0.5624477729999999}, "37193": {"FFRPTH14": 0.508440106, "FSRPTH14": 0.595601267}, "37195": {"FFRPTH14": 0.663382514, "FSRPTH14": 0.552818761}, "37197": {"FFRPTH14": 0.476291279, "FSRPTH14": 0.6879762909999999}, "37199": {"FFRPTH14": 0.39741115, "FSRPTH14": 0.624503236}, "38001": {"FFRPTH14": 0.0, "FSRPTH14": 1.6778523490000001}, "38003": {"FFRPTH14": 0.71787509, "FSRPTH14": 1.2562814070000001}, "38005": {"FFRPTH14": 0.0, "FSRPTH14": 0.731743012}, "38007": {"FFRPTH14": 0.0, "FSRPTH14": 6.6592674810000005}, "38009": {"FFRPTH14": 0.7518796990000001, "FSRPTH14": 1.203007519}, "38011": {"FFRPTH14": 1.231906375, "FSRPTH14": 1.847859563}, "38013": {"FFRPTH14": 0.890868597, "FSRPTH14": 1.781737194}, "38015": {"FFRPTH14": 0.629813376, "FSRPTH14": 0.618764019}, "38017": {"FFRPTH14": 0.6886021379999999, "FSRPTH14": 0.65267507}, "38019": {"FFRPTH14": 0.5188067439999999, "FSRPTH14": 1.815823606}, "38021": {"FFRPTH14": 0.388349515, "FSRPTH14": 0.970873786}, "38023": {"FFRPTH14": 0.411184211, "FSRPTH14": 1.644736842}, "38025": {"FFRPTH14": 0.227324392, "FSRPTH14": 0.454648784}, "38027": {"FFRPTH14": 0.841396719, "FSRPTH14": 0.42069835899999997}, "38029": {"FFRPTH14": 0.584453536, "FSRPTH14": 0.8766803040000001}, "38031": {"FFRPTH14": 1.189767995, "FSRPTH14": 0.892325996}, "38033": {"FFRPTH14": 0.0, "FSRPTH14": 0.0}, "38035": {"FFRPTH14": 0.7128803220000001, "FSRPTH14": 0.655849896}, "38037": {"FFRPTH14": 0.0, "FSRPTH14": 0.847098687}, "38039": {"FFRPTH14": 0.431220354, "FSRPTH14": 1.7248814140000002}, "38041": {"FFRPTH14": 0.37593985, "FSRPTH14": 0.7518796990000001}, "38043": {"FFRPTH14": 0.0, "FSRPTH14": 1.650165017}, "38045": {"FFRPTH14": 0.241021933, "FSRPTH14": 1.6871535309999999}, "38047": {"FFRPTH14": 0.0, "FSRPTH14": 2.057613169}, "38049": {"FFRPTH14": 0.0, "FSRPTH14": 0.6680026720000001}, "38051": {"FFRPTH14": 0.357015352, "FSRPTH14": 1.7850767580000002}, "38053": {"FFRPTH14": 0.090942161, "FSRPTH14": 0.9094216079999999}, "38055": {"FFRPTH14": 0.10440593, "FSRPTH14": 1.044059303}, "38057": {"FFRPTH14": 0.571689915, "FSRPTH14": 0.914703865}, "38059": {"FFRPTH14": 0.502984374, "FSRPTH14": 0.435919791}, "38061": {"FFRPTH14": 0.613371499, "FSRPTH14": 0.817828665}, "38063": {"FFRPTH14": 0.328407225, "FSRPTH14": 0.985221675}, "38065": {"FFRPTH14": 0.0, "FSRPTH14": 1.081081081}, "38067": {"FFRPTH14": 0.140291807, "FSRPTH14": 0.982042649}, "38069": {"FFRPTH14": 0.68119891, "FSRPTH14": 0.908265213}, "38071": {"FFRPTH14": 0.9512279490000001, "FSRPTH14": 1.037703217}, "38073": {"FFRPTH14": 0.550863019, "FSRPTH14": 0.734484025}, "38075": {"FFRPTH14": 0.77309625, "FSRPTH14": 0.77309625}, "38077": {"FFRPTH14": 0.669425511, "FSRPTH14": 0.547711782}, "38079": {"FFRPTH14": 0.410509031, "FSRPTH14": 0.47892720299999997}, "38081": {"FFRPTH14": 0.0, "FSRPTH14": 0.508776393}, "38083": {"FFRPTH14": 0.0, "FSRPTH14": 0.754147813}, "38085": {"FFRPTH14": 0.226142017, "FSRPTH14": 0.226142017}, "38087": {"FFRPTH14": 0.0, "FSRPTH14": 2.614379085}, "38089": {"FFRPTH14": 0.6914263140000001, "FSRPTH14": 0.856051626}, "38091": {"FFRPTH14": 0.0, "FSRPTH14": 1.023017903}, "38093": {"FFRPTH14": 0.899238014, "FSRPTH14": 0.8519096979999999}, "38095": {"FFRPTH14": 0.432900433, "FSRPTH14": 2.164502165}, "38097": {"FFRPTH14": 0.8661222470000001, "FSRPTH14": 0.24746349899999998}, "38099": {"FFRPTH14": 0.273473108, "FSRPTH14": 0.911577028}, "38101": {"FFRPTH14": 0.691802145, "FSRPTH14": 0.6773895999999999}, "38103": {"FFRPTH14": 0.715648855, "FSRPTH14": 2.146946565}, "38105": {"FFRPTH14": 0.871459695, "FSRPTH14": 0.653594771}, "39001": {"FFRPTH14": 0.533257492, "FSRPTH14": 0.284403996}, "39003": {"FFRPTH14": 0.9424980959999999, "FSRPTH14": 0.533130236}, "39005": {"FFRPTH14": 0.5845196570000001, "FSRPTH14": 0.509097766}, "39007": {"FFRPTH14": 0.8671540209999999, "FSRPTH14": 0.7965717170000001}, "39009": {"FFRPTH14": 0.911717893, "FSRPTH14": 0.448132524}, "39011": {"FFRPTH14": 0.741694117, "FSRPTH14": 0.5453633210000001}, "39013": {"FFRPTH14": 0.777414664, "FSRPTH14": 0.518276443}, "39015": {"FFRPTH14": 0.566687823, "FSRPTH14": 0.498685284}, "39017": {"FFRPTH14": 0.726965613, "FSRPTH14": 0.5772962220000001}, "39019": {"FFRPTH14": 0.532160216, "FSRPTH14": 0.425728173}, "39021": {"FFRPTH14": 0.48558577, "FSRPTH14": 0.357800041}, "39023": {"FFRPTH14": 0.915388784, "FSRPTH14": 0.38812484399999997}, "39025": {"FFRPTH14": 0.654891844, "FSRPTH14": 0.520936694}, "39027": {"FFRPTH14": 0.741006334, "FSRPTH14": 0.5019720329999999}, "39029": {"FFRPTH14": 0.71911133, "FSRPTH14": 0.46363756799999994}, "39031": {"FFRPTH14": 0.575090371, "FSRPTH14": 0.38339358100000004}, "39033": {"FFRPTH14": 0.7768361579999999, "FSRPTH14": 0.44726930299999995}, "39035": {"FFRPTH14": 0.8747225809999999, "FSRPTH14": 0.7628025409999999}, "39037": {"FFRPTH14": 0.55559813, "FSRPTH14": 0.459805349}, "39039": {"FFRPTH14": 0.701116593, "FSRPTH14": 0.9348221240000001}, "39041": {"FFRPTH14": 0.877782067, "FSRPTH14": 0.7667373479999999}, "39043": {"FFRPTH14": 1.028643773, "FSRPTH14": 1.041831513}, "39045": {"FFRPTH14": 0.658327847, "FSRPTH14": 0.578530532}, "39047": {"FFRPTH14": 1.111111111, "FSRPTH14": 0.5902777779999999}, "39049": {"FFRPTH14": 0.898981885, "FSRPTH14": 0.6577916229999999}, "39051": {"FFRPTH14": 0.587130108, "FSRPTH14": 0.70455613}, "39053": {"FFRPTH14": 1.019837484, "FSRPTH14": 0.230285883}, "39055": {"FFRPTH14": 0.6150909379999999, "FSRPTH14": 0.646905987}, "39057": {"FFRPTH14": 0.805762422, "FSRPTH14": 0.598217556}, "39059": {"FFRPTH14": 0.9598383429999999, "FSRPTH14": 0.60621369}, "39061": {"FFRPTH14": 0.844252205, "FSRPTH14": 0.847971377}, "39063": {"FFRPTH14": 0.8229687940000001, "FSRPTH14": 0.783147723}, "39065": {"FFRPTH14": 0.6290099379999999, "FSRPTH14": 0.503207951}, "39067": {"FFRPTH14": 0.45036350799999997, "FSRPTH14": 0.900727015}, "39069": {"FFRPTH14": 0.680101657, "FSRPTH14": 0.7158964809999999}, "39071": {"FFRPTH14": 0.627250552, "FSRPTH14": 0.46463003799999997}, "39073": {"FFRPTH14": 0.661444735, "FSRPTH14": 0.591818973}, "39075": {"FFRPTH14": 0.318921135, "FSRPTH14": 0.36448129799999995}, "39077": {"FFRPTH14": 0.8175222259999999, "FSRPTH14": 0.40876111299999995}, "39079": {"FFRPTH14": 0.7328691829999999, "FSRPTH14": 0.335898375}, "39081": {"FFRPTH14": 0.694300824, "FSRPTH14": 0.6795284659999999}, "39083": {"FFRPTH14": 0.65394739, "FSRPTH14": 0.441414488}, "39085": {"FFRPTH14": 0.7852375340000001, "FSRPTH14": 0.772150242}, "39087": {"FFRPTH14": 0.6166528729999999, "FSRPTH14": 0.27587102199999997}, "39089": {"FFRPTH14": 0.7143278820000001, "FSRPTH14": 0.543125332}, "39091": {"FFRPTH14": 0.791087086, "FSRPTH14": 0.593315314}, "39093": {"FFRPTH14": 0.608120546, "FSRPTH14": 0.51608068}, "39095": {"FFRPTH14": 0.8569078720000001, "FSRPTH14": 0.7787983070000001}, "39097": {"FFRPTH14": 0.500933558, "FSRPTH14": 0.34154560799999995}, "39099": {"FFRPTH14": 0.8619063140000001, "FSRPTH14": 0.703246943}, "39101": {"FFRPTH14": 0.669506999, "FSRPTH14": 0.380401704}, "39103": {"FFRPTH14": 0.670344091, "FSRPTH14": 0.53400292}, "39105": {"FFRPTH14": 0.6857828640000001, "FSRPTH14": 0.214307145}, "39107": {"FFRPTH14": 0.636771081, "FSRPTH14": 0.9306654259999999}, "39109": {"FFRPTH14": 0.750721848, "FSRPTH14": 0.615976901}, "39111": {"FFRPTH14": 0.414794331, "FSRPTH14": 0.622191497}, "39113": {"FFRPTH14": 0.8947396059999999, "FSRPTH14": 0.611499186}, "39115": {"FFRPTH14": 0.13474365, "FSRPTH14": 0.404230951}, "39117": {"FFRPTH14": 0.39827036899999996, "FSRPTH14": 0.170687301}, "39119": {"FFRPTH14": 0.745764292, "FSRPTH14": 0.5826283529999999}, "39121": {"FFRPTH14": 0.556986702, "FSRPTH14": 0.348116689}, "39123": {"FFRPTH14": 0.874763085, "FSRPTH14": 1.628031297}, "39125": {"FFRPTH14": 0.526620675, "FSRPTH14": 0.315972405}, "39127": {"FFRPTH14": 0.558472021, "FSRPTH14": 0.390930414}, "39129": {"FFRPTH14": 0.632955904, "FSRPTH14": 0.29889584399999997}, "39131": {"FFRPTH14": 0.6724235559999999, "FSRPTH14": 0.460079275}, "39133": {"FFRPTH14": 0.765990042, "FSRPTH14": 0.5374284970000001}, "39135": {"FFRPTH14": 0.529024191, "FSRPTH14": 0.384744866}, "39137": {"FFRPTH14": 0.643820784, "FSRPTH14": 0.526762459}, "39139": {"FFRPTH14": 0.7872595170000001, "FSRPTH14": 0.533040298}, "39141": {"FFRPTH14": 0.686893298, "FSRPTH14": 0.479529284}, "39143": {"FFRPTH14": 0.598215324, "FSRPTH14": 0.614832417}, "39145": {"FFRPTH14": 0.750731316, "FSRPTH14": 0.5436330220000001}, "39147": {"FFRPTH14": 0.502972929, "FSRPTH14": 0.7005694370000001}, "39149": {"FFRPTH14": 0.612857756, "FSRPTH14": 0.653714939}, "39151": {"FFRPTH14": 0.8410160329999999, "FSRPTH14": 0.662699342}, "39153": {"FFRPTH14": 0.819274352, "FSRPTH14": 0.664276501}, "39155": {"FFRPTH14": 0.687218228, "FSRPTH14": 0.614109906}, "39157": {"FFRPTH14": 0.8406259429999999, "FSRPTH14": 0.7220761309999999}, "39159": {"FFRPTH14": 0.502082713, "FSRPTH14": 0.48348705700000005}, "39161": {"FFRPTH14": 0.562153046, "FSRPTH14": 0.597287612}, "39163": {"FFRPTH14": 0.528940608, "FSRPTH14": 0.075562944}, "39165": {"FFRPTH14": 0.58648645, "FSRPTH14": 0.559417845}, "39167": {"FFRPTH14": 0.7678107590000001, "FSRPTH14": 0.57177397}, "39169": {"FFRPTH14": 0.614521755, "FSRPTH14": 0.536624631}, "39171": {"FFRPTH14": 0.72403529, "FSRPTH14": 0.455874071}, "39173": {"FFRPTH14": 0.902847442, "FSRPTH14": 0.7485145459999999}, "39175": {"FFRPTH14": 0.671050866, "FSRPTH14": 0.671050866}, "40001": {"FFRPTH14": 0.405661228, "FSRPTH14": 0.180293879}, "40003": {"FFRPTH14": 0.345423143, "FSRPTH14": 1.03626943}, "40005": {"FFRPTH14": 0.507393447, "FSRPTH14": 0.579878226}, "40007": {"FFRPTH14": 0.18228217300000002, "FSRPTH14": 0.546846518}, "40009": {"FFRPTH14": 0.63315183, "FSRPTH14": 0.759782196}, "40011": {"FFRPTH14": 0.20167389300000002, "FSRPTH14": 1.3108803070000001}, "40013": {"FFRPTH14": 0.674369465, "FSRPTH14": 0.49453760700000005}, "40015": {"FFRPTH14": 0.37520892299999997, "FSRPTH14": 0.545758434}, "40017": {"FFRPTH14": 0.617369696, "FSRPTH14": 0.486178636}, "40019": {"FFRPTH14": 0.614489666, "FSRPTH14": 0.757870588}, "40021": {"FFRPTH14": 0.537845721, "FSRPTH14": 0.599904843}, "40023": {"FFRPTH14": 0.395752259, "FSRPTH14": 0.593628389}, "40025": {"FFRPTH14": 1.307759372, "FSRPTH14": 1.307759372}, "40027": {"FFRPTH14": 0.829912415, "FSRPTH14": 0.626139277}, "40029": {"FFRPTH14": 0.17220595800000002, "FSRPTH14": 0.8610297920000001}, "40031": {"FFRPTH14": 0.735805747, "FSRPTH14": 0.5918437529999999}, "40033": {"FFRPTH14": 0.325203252, "FSRPTH14": 0.325203252}, "40035": {"FFRPTH14": 0.34288849299999996, "FSRPTH14": 0.754354684}, "40037": {"FFRPTH14": 0.523841885, "FSRPTH14": 0.410578774}, "40039": {"FFRPTH14": 0.847457627, "FSRPTH14": 0.8813559320000001}, "40041": {"FFRPTH14": 0.386044492, "FSRPTH14": 0.603194518}, "40043": {"FFRPTH14": 0.0, "FSRPTH14": 0.814000814}, "40045": {"FFRPTH14": 0.240963855, "FSRPTH14": 1.2048192770000001}, "40047": {"FFRPTH14": 0.6815552140000001, "FSRPTH14": 0.570604365}, "40049": {"FFRPTH14": 0.6168136129999999, "FSRPTH14": 0.6530967670000001}, "40051": {"FFRPTH14": 0.464218071, "FSRPTH14": 0.501355517}, "40053": {"FFRPTH14": 0.0, "FSRPTH14": 0.666518551}, "40055": {"FFRPTH14": 0.162575191, "FSRPTH14": 0.812875955}, "40057": {"FFRPTH14": 0.35739814200000003, "FSRPTH14": 0.35739814200000003}, "40059": {"FFRPTH14": 0.262329486, "FSRPTH14": 0.786988458}, "40061": {"FFRPTH14": 0.31017369699999997, "FSRPTH14": 0.465260546}, "40063": {"FFRPTH14": 0.5794582070000001, "FSRPTH14": 0.289729103}, "40065": {"FFRPTH14": 0.653896454, "FSRPTH14": 0.769289945}, "40067": {"FFRPTH14": 0.317863954, "FSRPTH14": 0.7946598859999999}, "40069": {"FFRPTH14": 0.360262992, "FSRPTH14": 0.180131496}, "40071": {"FFRPTH14": 0.8355688459999999, "FSRPTH14": 0.7256255770000001}, "40073": {"FFRPTH14": 0.450682462, "FSRPTH14": 0.901364924}, "40075": {"FFRPTH14": 0.21422450699999998, "FSRPTH14": 0.642673522}, "40077": {"FFRPTH14": 0.187038249, "FSRPTH14": 0.187038249}, "40079": {"FFRPTH14": 0.361729065, "FSRPTH14": 0.38182512399999996}, "40081": {"FFRPTH14": 0.462173951, "FSRPTH14": 0.7221467979999999}, "40083": {"FFRPTH14": 0.331301352, "FSRPTH14": 0.530082163}, "40085": {"FFRPTH14": 0.511613629, "FSRPTH14": 1.330195436}, "40087": {"FFRPTH14": 0.6700077720000001, "FSRPTH14": 0.589606839}, "40089": {"FFRPTH14": 0.453857791, "FSRPTH14": 0.453857791}, "40091": {"FFRPTH14": 0.39824771, "FSRPTH14": 0.597371565}, "40093": {"FFRPTH14": 0.258064516, "FSRPTH14": 0.516129032}, "40095": {"FFRPTH14": 0.556173526, "FSRPTH14": 0.617970585}, "40097": {"FFRPTH14": 0.73500588, "FSRPTH14": 0.8085064679999999}, "40099": {"FFRPTH14": 0.724480185, "FSRPTH14": 0.652032167}, "40101": {"FFRPTH14": 0.7860961040000001, "FSRPTH14": 0.585998914}, "40103": {"FFRPTH14": 0.522011484, "FSRPTH14": 0.609013398}, "40105": {"FFRPTH14": 0.19004180899999998, "FSRPTH14": 0.47510452299999995}, "40107": {"FFRPTH14": 0.164122764, "FSRPTH14": 0.492368291}, "40109": {"FFRPTH14": 0.9344635640000001, "FSRPTH14": 0.7909007259999999}, "40111": {"FFRPTH14": 0.562731807, "FSRPTH14": 0.409259496}, "40113": {"FFRPTH14": 0.437673246, "FSRPTH14": 0.291782164}, "40115": {"FFRPTH14": 0.46721694399999997, "FSRPTH14": 0.560660333}, "40117": {"FFRPTH14": 0.42680324399999997, "FSRPTH14": 0.487775136}, "40119": {"FFRPTH14": 0.7849097979999999, "FSRPTH14": 0.573108741}, "40121": {"FFRPTH14": 0.672253843, "FSRPTH14": 0.6498453820000001}, "40123": {"FFRPTH14": 0.552558874, "FSRPTH14": 0.631495856}, "40125": {"FFRPTH14": 0.863377477, "FSRPTH14": 0.417763295}, "40127": {"FFRPTH14": 0.359550562, "FSRPTH14": 0.629213483}, "40129": {"FFRPTH14": 0.0, "FSRPTH14": 0.531773465}, "40131": {"FFRPTH14": 0.378555921, "FSRPTH14": 0.445359906}, "40133": {"FFRPTH14": 0.629400889, "FSRPTH14": 0.43271311100000004}, "40135": {"FFRPTH14": 0.580298854, "FSRPTH14": 0.483582378}, "40137": {"FFRPTH14": 0.606837031, "FSRPTH14": 0.606837031}, "40139": {"FFRPTH14": 0.36608246, "FSRPTH14": 1.09824738}, "40141": {"FFRPTH14": 0.524383849, "FSRPTH14": 0.655479811}, "40143": {"FFRPTH14": 0.924399379, "FSRPTH14": 0.767156185}, "40145": {"FFRPTH14": 0.40950041, "FSRPTH14": 0.264193813}, "40147": {"FFRPTH14": 0.750909756, "FSRPTH14": 0.6931474670000001}, "40149": {"FFRPTH14": 0.173205162, "FSRPTH14": 0.606218065}, "40151": {"FFRPTH14": 0.8613264429999999, "FSRPTH14": 0.7536606370000001}, "40153": {"FFRPTH14": 0.603836685, "FSRPTH14": 0.88253054}, "41001": {"FFRPTH14": 0.560433402, "FSRPTH14": 1.3699483159999999}, "41003": {"FFRPTH14": 0.683534918, "FSRPTH14": 0.892070995}, "41005": {"FFRPTH14": 0.59751071, "FSRPTH14": 0.777270288}, "41007": {"FFRPTH14": 0.800555052, "FSRPTH14": 2.855313017}, "41009": {"FFRPTH14": 0.465031642, "FSRPTH14": 0.647000546}, "41011": {"FFRPTH14": 0.6722689079999999, "FSRPTH14": 1.040416166}, "41013": {"FFRPTH14": 0.428612249, "FSRPTH14": 0.619106582}, "41015": {"FFRPTH14": 0.671591672, "FSRPTH14": 1.567047235}, "41017": {"FFRPTH14": 0.78644036, "FSRPTH14": 1.144446792}, "41019": {"FFRPTH14": 0.635680365, "FSRPTH14": 0.803948697}, "41021": {"FFRPTH14": 1.035196687, "FSRPTH14": 2.587991718}, "41023": {"FFRPTH14": 0.69637883, "FSRPTH14": 1.6713091919999998}, "41025": {"FFRPTH14": 0.9823182709999999, "FSRPTH14": 1.683974179}, "41027": {"FFRPTH14": 1.04872187, "FSRPTH14": 1.704173039}, "41029": {"FFRPTH14": 0.727577073, "FSRPTH14": 0.9463257359999999}, "41031": {"FFRPTH14": 0.495674117, "FSRPTH14": 0.6308579670000001}, "41033": {"FFRPTH14": 0.550245816, "FSRPTH14": 0.825368725}, "41035": {"FFRPTH14": 0.549996181, "FSRPTH14": 1.008326331}, "41037": {"FFRPTH14": 0.765501403, "FSRPTH14": 1.913753509}, "41039": {"FFRPTH14": 0.8204567209999999, "FSRPTH14": 0.901386125}, "41041": {"FFRPTH14": 0.689566004, "FSRPTH14": 2.241089514}, "41043": {"FFRPTH14": 0.519454405, "FSRPTH14": 0.6786420459999999}, "41045": {"FFRPTH14": 0.658783227, "FSRPTH14": 1.021114002}, "41047": {"FFRPTH14": 0.689951243, "FSRPTH14": 0.696084143}, "41049": {"FFRPTH14": 0.08938947, "FSRPTH14": 0.8045052290000001}, "41051": {"FFRPTH14": 0.858748159, "FSRPTH14": 1.5488366340000002}, "41053": {"FFRPTH14": 0.539042045, "FSRPTH14": 0.5903793829999999}, "41055": {"FFRPTH14": 0.5847953220000001, "FSRPTH14": 1.754385965}, "41057": {"FFRPTH14": 0.473522216, "FSRPTH14": 1.933549049}, "41059": {"FFRPTH14": 0.521478391, "FSRPTH14": 0.821328466}, "41061": {"FFRPTH14": 0.700634463, "FSRPTH14": 0.817406874}, "41063": {"FFRPTH14": 0.586510264, "FSRPTH14": 3.0791788860000002}, "41065": {"FFRPTH14": 0.705467372, "FSRPTH14": 1.254164217}, "41067": {"FFRPTH14": 0.655419735, "FSRPTH14": 0.7744254859999999}, "41069": {"FFRPTH14": 0.0, "FSRPTH14": 1.454545455}, "41071": {"FFRPTH14": 0.461880147, "FSRPTH14": 0.8353151590000001}, "42001": {"FFRPTH14": 0.717698645, "FSRPTH14": 0.678372692}, "42003": {"FFRPTH14": 0.809742905, "FSRPTH14": 0.86009803}, "42005": {"FFRPTH14": 0.398318212, "FSRPTH14": 0.516338423}, "42007": {"FFRPTH14": 0.602153585, "FSRPTH14": 0.52540852}, "42009": {"FFRPTH14": 0.36775221700000005, "FSRPTH14": 0.735504433}, "42011": {"FFRPTH14": 0.650243781, "FSRPTH14": 0.681668202}, "42013": {"FFRPTH14": 0.746298281, "FSRPTH14": 0.754237625}, "42015": {"FFRPTH14": 0.485562605, "FSRPTH14": 0.7607147479999999}, "42017": {"FFRPTH14": 0.753169455, "FSRPTH14": 0.7739135290000001}, "42019": {"FFRPTH14": 0.570067171, "FSRPTH14": 0.6883829990000001}, "42021": {"FFRPTH14": 0.740568641, "FSRPTH14": 0.631661488}, "42023": {"FFRPTH14": 0.208116545, "FSRPTH14": 1.040582726}, "42025": {"FFRPTH14": 0.543132478, "FSRPTH14": 0.837975823}, "42027": {"FFRPTH14": 0.617353945, "FSRPTH14": 0.686648776}, "42029": {"FFRPTH14": 0.657196792, "FSRPTH14": 0.668897626}, "42031": {"FFRPTH14": 0.592462842, "FSRPTH14": 0.9273331440000001}, "42033": {"FFRPTH14": 0.652781712, "FSRPTH14": 0.837531253}, "42035": {"FFRPTH14": 0.427726758, "FSRPTH14": 0.679330733}, "42037": {"FFRPTH14": 0.8045052290000001, "FSRPTH14": 0.864098209}, "42039": {"FFRPTH14": 0.5391453970000001, "FSRPTH14": 0.814453685}, "42041": {"FFRPTH14": 0.6932992020000001, "FSRPTH14": 0.7015039259999999}, "42043": {"FFRPTH14": 0.8067694959999999, "FSRPTH14": 0.8178211329999999}, "42045": {"FFRPTH14": 0.742503908, "FSRPTH14": 0.555989768}, "42047": {"FFRPTH14": 0.544976598, "FSRPTH14": 0.8334936209999999}, "42049": {"FFRPTH14": 0.664408874, "FSRPTH14": 0.68595727}, "42051": {"FFRPTH14": 0.6040899120000001, "FSRPTH14": 0.671211014}, "42053": {"FFRPTH14": 0.26602819899999997, "FSRPTH14": 0.931098696}, "42055": {"FFRPTH14": 0.647515894, "FSRPTH14": 0.634434764}, "42057": {"FFRPTH14": 0.341716785, "FSRPTH14": 0.27337342800000003}, "42059": {"FFRPTH14": 0.6870491240000001, "FSRPTH14": 0.528499326}, "42061": {"FFRPTH14": 0.415300546, "FSRPTH14": 0.524590164}, "42063": {"FFRPTH14": 0.570086425, "FSRPTH14": 0.6042916110000001}, "42065": {"FFRPTH14": 0.560060935, "FSRPTH14": 0.7392804340000001}, "42067": {"FFRPTH14": 0.40329085299999995, "FSRPTH14": 0.44361993899999996}, "42069": {"FFRPTH14": 0.68165044, "FSRPTH14": 1.095341742}, "42071": {"FFRPTH14": 0.6112652820000001, "FSRPTH14": 0.6112652820000001}, "42073": {"FFRPTH14": 0.563247006, "FSRPTH14": 0.5857768870000001}, "42075": {"FFRPTH14": 0.572019449, "FSRPTH14": 0.484016457}, "42077": {"FFRPTH14": 0.687490743, "FSRPTH14": 0.7210268759999999}, "42079": {"FFRPTH14": 0.649250852, "FSRPTH14": 0.9472162190000001}, "42081": {"FFRPTH14": 0.635149518, "FSRPTH14": 0.909808768}, "42083": {"FFRPTH14": 0.657987498, "FSRPTH14": 0.7754852659999999}, "42085": {"FFRPTH14": 0.626719125, "FSRPTH14": 0.748581178}, "42087": {"FFRPTH14": 0.579996563, "FSRPTH14": 0.7088846879999999}, "42089": {"FFRPTH14": 0.63734863, "FSRPTH14": 0.8778575470000001}, "42091": {"FFRPTH14": 0.8043023440000001, "FSRPTH14": 0.785939277}, "42093": {"FFRPTH14": 0.590097098, "FSRPTH14": 0.75103267}, "42095": {"FFRPTH14": 0.661890412, "FSRPTH14": 0.844824948}, "42097": {"FFRPTH14": 0.5428766070000001, "FSRPTH14": 0.734480116}, "42099": {"FFRPTH14": 0.372529255, "FSRPTH14": 0.525923653}, "42101": {"FFRPTH14": 0.874833445, "FSRPTH14": 0.703071274}, "42103": {"FFRPTH14": 0.42711466200000003, "FSRPTH14": 0.7118577709999999}, "42105": {"FFRPTH14": 0.29059630399999997, "FSRPTH14": 1.046146693}, "42107": {"FFRPTH14": 0.521272729, "FSRPTH14": 0.754473686}, "42109": {"FFRPTH14": 0.669593036, "FSRPTH14": 0.9175904570000001}, "42111": {"FFRPTH14": 0.393607809, "FSRPTH14": 0.787215618}, "42113": {"FFRPTH14": 0.631014356, "FSRPTH14": 1.577535889}, "42115": {"FFRPTH14": 0.405534351, "FSRPTH14": 0.596374046}, "42117": {"FFRPTH14": 0.44944883399999996, "FSRPTH14": 0.969863273}, "42119": {"FFRPTH14": 0.512546241, "FSRPTH14": 0.80224629}, "42121": {"FFRPTH14": 0.44835509700000004, "FSRPTH14": 0.579125334}, "42123": {"FFRPTH14": 0.49136427299999996, "FSRPTH14": 0.663341768}, "42125": {"FFRPTH14": 0.648455475, "FSRPTH14": 0.634045353}, "42127": {"FFRPTH14": 0.42800723700000004, "FSRPTH14": 1.303476586}, "42129": {"FFRPTH14": 0.654013136, "FSRPTH14": 0.751419348}, "42131": {"FFRPTH14": 0.35547972, "FSRPTH14": 0.959795244}, "42133": {"FFRPTH14": 0.680650248, "FSRPTH14": 0.5354448620000001}, "44001": {"FFRPTH14": 0.570729719, "FSRPTH14": 1.100693029}, "44003": {"FFRPTH14": 0.8841625890000001, "FSRPTH14": 1.029504384}, "44005": {"FFRPTH14": 0.898516234, "FSRPTH14": 1.590616576}, "44007": {"FFRPTH14": 0.7437014809999999, "FSRPTH14": 0.925670993}, "44009": {"FFRPTH14": 0.81324564, "FSRPTH14": 1.3659368509999998}, "45001": {"FFRPTH14": 0.36050470700000004, "FSRPTH14": 0.36050470700000004}, "45003": {"FFRPTH14": 0.6676661429999999, "FSRPTH14": 0.588760144}, "45005": {"FFRPTH14": 0.206291903, "FSRPTH14": 0.206291903}, "45007": {"FFRPTH14": 0.7831544009999999, "FSRPTH14": 0.757222136}, "45009": {"FFRPTH14": 0.724542221, "FSRPTH14": 0.263469899}, "45011": {"FFRPTH14": 0.637551801, "FSRPTH14": 0.455394144}, "45013": {"FFRPTH14": 0.59709301, "FSRPTH14": 1.580874827}, "45015": {"FFRPTH14": 0.529754547, "FSRPTH14": 0.39857723100000003}, "45017": {"FFRPTH14": 0.268853341, "FSRPTH14": 0.13442667}, "45019": {"FFRPTH14": 0.8766059079999999, "FSRPTH14": 1.3857722140000002}, "45021": {"FFRPTH14": 0.678280737, "FSRPTH14": 0.642581751}, "45023": {"FFRPTH14": 0.49478925100000004, "FSRPTH14": 0.556637907}, "45025": {"FFRPTH14": 0.411924119, "FSRPTH14": 0.60704607}, "45027": {"FFRPTH14": 0.439715065, "FSRPTH14": 0.46902940200000004}, "45029": {"FFRPTH14": 0.608932779, "FSRPTH14": 0.608932779}, "45031": {"FFRPTH14": 0.5162318029999999, "FSRPTH14": 0.45723388299999995}, "45033": {"FFRPTH14": 0.867414142, "FSRPTH14": 0.385517396}, "45035": {"FFRPTH14": 0.505155958, "FSRPTH14": 0.43780183100000003}, "45037": {"FFRPTH14": 0.18830264, "FSRPTH14": 0.45192633600000004}, "45039": {"FFRPTH14": 0.217618384, "FSRPTH14": 0.304665738}, "45041": {"FFRPTH14": 0.696683928, "FSRPTH14": 0.7397777790000001}, "45043": {"FFRPTH14": 0.608822997, "FSRPTH14": 1.431556777}, "45045": {"FFRPTH14": 0.8410115340000001, "FSRPTH14": 0.880369216}, "45047": {"FFRPTH14": 0.86306099, "FSRPTH14": 0.719217491}, "45049": {"FFRPTH14": 0.588091154, "FSRPTH14": 0.588091154}, "45051": {"FFRPTH14": 0.970444932, "FSRPTH14": 1.7468008780000002}, "45053": {"FFRPTH14": 0.8465218990000001, "FSRPTH14": 0.662495399}, "45055": {"FFRPTH14": 0.6491347510000001, "FSRPTH14": 0.554139421}, "45057": {"FFRPTH14": 0.48100048100000004, "FSRPTH14": 0.517075517}, "45059": {"FFRPTH14": 0.48096433299999997, "FSRPTH14": 0.46593419799999997}, "45061": {"FFRPTH14": 0.490650384, "FSRPTH14": 0.272583547}, "45063": {"FFRPTH14": 0.7916858590000001, "FSRPTH14": 0.698122985}, "45065": {"FFRPTH14": 0.304692261, "FSRPTH14": 0.406256348}, "45067": {"FFRPTH14": 0.6576269060000001, "FSRPTH14": 0.407102371}, "45069": {"FFRPTH14": 0.358114883, "FSRPTH14": 0.21486893}, "45071": {"FFRPTH14": 0.555805521, "FSRPTH14": 0.767540958}, "45073": {"FFRPTH14": 0.571869348, "FSRPTH14": 0.625066496}, "45075": {"FFRPTH14": 0.7659007659999999, "FSRPTH14": 0.532800533}, "45077": {"FFRPTH14": 0.7560148879999999, "FSRPTH14": 0.73109132}, "45079": {"FFRPTH14": 0.831743723, "FSRPTH14": 0.679838433}, "45081": {"FFRPTH14": 0.24967542199999998, "FSRPTH14": 0.399480675}, "45083": {"FFRPTH14": 0.7119935140000001, "FSRPTH14": 0.6881468409999999}, "45085": {"FFRPTH14": 0.537440117, "FSRPTH14": 0.611569788}, "45087": {"FFRPTH14": 0.466350983, "FSRPTH14": 0.609843593}, "45089": {"FFRPTH14": 0.305857165, "FSRPTH14": 0.367028598}, "45091": {"FFRPTH14": 0.627684984, "FSRPTH14": 0.635836737}, "46003": {"FFRPTH14": 0.72859745, "FSRPTH14": 1.4571949}, "46005": {"FFRPTH14": 0.550388024, "FSRPTH14": 0.495349221}, "46007": {"FFRPTH14": 0.29154519, "FSRPTH14": 0.0}, "46009": {"FFRPTH14": 0.142389292, "FSRPTH14": 0.42716787700000003}, "46011": {"FFRPTH14": 0.600348202, "FSRPTH14": 0.900522303}, "46013": {"FFRPTH14": 0.729014789, "FSRPTH14": 0.7550510309999999}, "46015": {"FFRPTH14": 0.9417969490000001, "FSRPTH14": 0.7534375590000001}, "46017": {"FFRPTH14": 0.0, "FSRPTH14": 0.0}, "46019": {"FFRPTH14": 0.582637405, "FSRPTH14": 1.068168576}, "46021": {"FFRPTH14": 0.721500722, "FSRPTH14": 4.329004329}, "46023": {"FFRPTH14": 0.5383869929999999, "FSRPTH14": 0.5383869929999999}, "46025": {"FFRPTH14": 0.0, "FSRPTH14": 0.548696845}, "46027": {"FFRPTH14": 0.574217628, "FSRPTH14": 0.8613264429999999}, "46029": {"FFRPTH14": 0.680077314, "FSRPTH14": 1.324361085}, "46031": {"FFRPTH14": 0.0, "FSRPTH14": 0.47824007700000004}, "46033": {"FFRPTH14": 0.473653049, "FSRPTH14": 2.368265246}, "46035": {"FFRPTH14": 0.854915766, "FSRPTH14": 1.005783254}, "46037": {"FFRPTH14": 0.715819613, "FSRPTH14": 1.252684324}, "46039": {"FFRPTH14": 0.463821892, "FSRPTH14": 1.1595547309999998}, "46041": {"FFRPTH14": 0.0, "FSRPTH14": 0.176616037}, "46043": {"FFRPTH14": 0.0, "FSRPTH14": 1.345442314}, "46045": {"FFRPTH14": 0.251067035, "FSRPTH14": 1.255335174}, "46047": {"FFRPTH14": 0.73046019, "FSRPTH14": 1.46092038}, "46049": {"FFRPTH14": 0.42426813700000005, "FSRPTH14": 2.121340687}, "46051": {"FFRPTH14": 0.9667173040000001, "FSRPTH14": 1.38102472}, "46053": {"FFRPTH14": 0.0, "FSRPTH14": 2.371354043}, "46055": {"FFRPTH14": 0.541418517, "FSRPTH14": 1.082837033}, "46057": {"FFRPTH14": 0.0, "FSRPTH14": 0.0}, "46059": {"FFRPTH14": 0.298953662, "FSRPTH14": 0.597907324}, "46061": {"FFRPTH14": 0.0, "FSRPTH14": 0.292483182}, "46063": {"FFRPTH14": 0.0, "FSRPTH14": 0.8}, "46065": {"FFRPTH14": 0.510146242, "FSRPTH14": 0.850243737}, "46067": {"FFRPTH14": 0.27777777800000003, "FSRPTH14": 0.694444444}, "46069": {"FFRPTH14": 0.0, "FSRPTH14": 0.0}, "46071": {"FFRPTH14": 0.610873549, "FSRPTH14": 0.916310324}, "46073": {"FFRPTH14": 0.0, "FSRPTH14": 1.4947683109999998}, "46075": {"FFRPTH14": 2.051282051, "FSRPTH14": 4.102564103}, "46077": {"FFRPTH14": 0.197044335, "FSRPTH14": 0.78817734}, "46079": {"FFRPTH14": 0.40426908200000006, "FSRPTH14": 1.1319534279999999}, "46081": {"FFRPTH14": 0.932797988, "FSRPTH14": 1.257249463}, "46083": {"FFRPTH14": 0.310390316, "FSRPTH14": 0.387987895}, "46085": {"FFRPTH14": 0.515862781, "FSRPTH14": 0.515862781}, "46087": {"FFRPTH14": 0.17702248199999998, "FSRPTH14": 1.239157373}, "46089": {"FFRPTH14": 0.0, "FSRPTH14": 1.646768217}, "46091": {"FFRPTH14": 0.42707666, "FSRPTH14": 1.0676916509999999}, "46093": {"FFRPTH14": 0.25973062199999997, "FSRPTH14": 0.779191867}, "46095": {"FFRPTH14": 0.0, "FSRPTH14": 0.0}, "46097": {"FFRPTH14": 1.7271157169999998, "FSRPTH14": 0.863557858}, "46099": {"FFRPTH14": 0.836605024, "FSRPTH14": 0.672564823}, "46101": {"FFRPTH14": 0.15705984, "FSRPTH14": 0.9423590390000001}, "46103": {"FFRPTH14": 0.812993108, "FSRPTH14": 0.89614013}, "46105": {"FFRPTH14": 0.0, "FSRPTH14": 1.318826245}, "46107": {"FFRPTH14": 0.854700855, "FSRPTH14": 1.709401709}, "46109": {"FFRPTH14": 0.38557933299999997, "FSRPTH14": 0.674763833}, "46111": {"FFRPTH14": 0.42808219200000003, "FSRPTH14": 0.8561643840000001}, "46113": {"FFRPTH14": 0.14066676, "FSRPTH14": 0.07033338}, "46115": {"FFRPTH14": 0.454683237, "FSRPTH14": 0.454683237}, "46117": {"FFRPTH14": 1.005698961, "FSRPTH14": 1.340931948}, "46119": {"FFRPTH14": 0.0, "FSRPTH14": 3.47705146}, "46121": {"FFRPTH14": 0.10119409, "FSRPTH14": 0.10119409}, "46123": {"FFRPTH14": 0.544267054, "FSRPTH14": 0.9071117559999999}, "46125": {"FFRPTH14": 0.24177949699999998, "FSRPTH14": 1.329787234}, "46127": {"FFRPTH14": 0.465766185, "FSRPTH14": 0.5988422379999999}, "46129": {"FFRPTH14": 1.270186899, "FSRPTH14": 0.9072763559999999}, "46135": {"FFRPTH14": 0.793510845, "FSRPTH14": 0.969846588}, "46137": {"FFRPTH14": 0.353857042, "FSRPTH14": 0.353857042}, "47001": {"FFRPTH14": 0.8473678640000001, "FSRPTH14": 0.476644423}, "47003": {"FFRPTH14": 0.514723229, "FSRPTH14": 0.47182962700000003}, "47005": {"FFRPTH14": 0.495509446, "FSRPTH14": 0.86714153}, "47007": {"FFRPTH14": 0.0, "FSRPTH14": 0.14356471199999998}, "47009": {"FFRPTH14": 0.506573584, "FSRPTH14": 0.5698952820000001}, "47011": {"FFRPTH14": 0.718621025, "FSRPTH14": 0.534110221}, "47013": {"FFRPTH14": 0.6763865929999999, "FSRPTH14": 0.300616263}, "47015": {"FFRPTH14": 0.508831867, "FSRPTH14": 0.36345133399999996}, "47017": {"FFRPTH14": 0.422982023, "FSRPTH14": 0.599224533}, "47019": {"FFRPTH14": 0.580107584, "FSRPTH14": 0.369159371}, "47021": {"FFRPTH14": 0.47781913299999995, "FSRPTH14": 0.352077256}, "47023": {"FFRPTH14": 0.51786639, "FSRPTH14": 0.51786639}, "47025": {"FFRPTH14": 0.443150165, "FSRPTH14": 0.253228665}, "47027": {"FFRPTH14": 0.515132003, "FSRPTH14": 0.515132003}, "47029": {"FFRPTH14": 0.45230960600000003, "FSRPTH14": 0.76327246}, "47031": {"FFRPTH14": 0.7086511390000001, "FSRPTH14": 0.801894709}, "47033": {"FFRPTH14": 0.409053722, "FSRPTH14": 0.204526861}, "47035": {"FFRPTH14": 0.5863585410000001, "FSRPTH14": 0.60360438}, "47037": {"FFRPTH14": 0.9351429720000001, "FSRPTH14": 0.963571318}, "47039": {"FFRPTH14": 0.342876736, "FSRPTH14": 0.85719184}, "47041": {"FFRPTH14": 0.311397135, "FSRPTH14": 0.518995225}, "47043": {"FFRPTH14": 0.790904597, "FSRPTH14": 0.6722689079999999}, "47045": {"FFRPTH14": 0.527217609, "FSRPTH14": 0.474495848}, "47047": {"FFRPTH14": 0.281971752, "FSRPTH14": 0.461408321}, "47049": {"FFRPTH14": 0.560067208, "FSRPTH14": 0.280033604}, "47051": {"FFRPTH14": 0.45891502799999995, "FSRPTH14": 0.603835563}, "47053": {"FFRPTH14": 0.54576326, "FSRPTH14": 0.54576326}, "47055": {"FFRPTH14": 0.65851038, "FSRPTH14": 0.41590129299999995}, "47057": {"FFRPTH14": 0.17494751600000003, "FSRPTH14": 0.262421274}, "47059": {"FFRPTH14": 0.599985366, "FSRPTH14": 0.643886734}, "47061": {"FFRPTH14": 0.37243947899999996, "FSRPTH14": 0.297951583}, "47063": {"FFRPTH14": 0.824925439, "FSRPTH14": 0.507646424}, "47065": {"FFRPTH14": 0.902568191, "FSRPTH14": 0.8598599170000001}, "47067": {"FFRPTH14": 0.150217816, "FSRPTH14": 0.300435632}, "47069": {"FFRPTH14": 0.308107067, "FSRPTH14": 0.308107067}, "47071": {"FFRPTH14": 0.46385775, "FSRPTH14": 1.0823347509999999}, "47073": {"FFRPTH14": 0.42301930000000004, "FSRPTH14": 0.38776769200000005}, "47075": {"FFRPTH14": 0.549903767, "FSRPTH14": 0.49491339}, "47077": {"FFRPTH14": 0.6426505770000001, "FSRPTH14": 0.42843371799999996}, "47079": {"FFRPTH14": 0.589988821, "FSRPTH14": 0.745249037}, "47081": {"FFRPTH14": 0.24606299199999998, "FSRPTH14": 0.41010498700000003}, "47083": {"FFRPTH14": 0.725777186, "FSRPTH14": 0.8467400509999999}, "47085": {"FFRPTH14": 0.9374138409999999, "FSRPTH14": 0.9374138409999999}, "47087": {"FFRPTH14": 0.17289073300000002, "FSRPTH14": 0.2593361}, "47089": {"FFRPTH14": 0.53154128, "FSRPTH14": 0.47459042799999995}, "47091": {"FFRPTH14": 0.33596506, "FSRPTH14": 0.727924296}, "47093": {"FFRPTH14": 0.8737439929999999, "FSRPTH14": 0.7132604020000001}, "47095": {"FFRPTH14": 0.262088848, "FSRPTH14": 0.65522212}, "47097": {"FFRPTH14": 0.292162735, "FSRPTH14": 0.219122051}, "47099": {"FFRPTH14": 0.544069641, "FSRPTH14": 0.473104036}, "47101": {"FFRPTH14": 0.8399126490000001, "FSRPTH14": 0.33596506}, "47103": {"FFRPTH14": 0.624312513, "FSRPTH14": 0.683770848}, "47105": {"FFRPTH14": 0.7484587659999999, "FSRPTH14": 0.47271079899999996}, "47107": {"FFRPTH14": 0.646068483, "FSRPTH14": 0.513054384}, "47109": {"FFRPTH14": 0.647199909, "FSRPTH14": 0.609129326}, "47111": {"FFRPTH14": 0.565143677, "FSRPTH14": 0.347780724}, "47113": {"FFRPTH14": 0.8352176659999999, "FSRPTH14": 0.8046609220000001}, "47115": {"FFRPTH14": 0.774457, "FSRPTH14": 0.7392544090000001}, "47117": {"FFRPTH14": 0.607630561, "FSRPTH14": 0.319805558}, "47119": {"FFRPTH14": 0.8302636959999999, "FSRPTH14": 0.619774309}, "47121": {"FFRPTH14": 0.170925562, "FSRPTH14": 0.5982394670000001}, "47123": {"FFRPTH14": 0.6632325960000001, "FSRPTH14": 0.619017089}, "47125": {"FFRPTH14": 0.615915899, "FSRPTH14": 0.658029806}, "47127": {"FFRPTH14": 0.316505776, "FSRPTH14": 0.633011552}, "47129": {"FFRPTH14": 0.184672207, "FSRPTH14": 0.092336103}, "47131": {"FFRPTH14": 0.581752367, "FSRPTH14": 0.678711095}, "47133": {"FFRPTH14": 0.499364445, "FSRPTH14": 0.36317414200000003}, "47135": {"FFRPTH14": 0.511378164, "FSRPTH14": 0.383533623}, "47137": {"FFRPTH14": 0.780640125, "FSRPTH14": 0.9758001559999999}, "47139": {"FFRPTH14": 0.298864316, "FSRPTH14": 0.41841004200000004}, "47141": {"FFRPTH14": 0.8224903929999999, "FSRPTH14": 0.782040046}, "47143": {"FFRPTH14": 0.612726326, "FSRPTH14": 0.673998958}, "47145": {"FFRPTH14": 0.644574202, "FSRPTH14": 0.28437097100000003}, "47147": {"FFRPTH14": 0.719752053, "FSRPTH14": 0.558175061}, "47149": {"FFRPTH14": 0.699189356, "FSRPTH14": 0.609194686}, "47151": {"FFRPTH14": 0.5912584710000001, "FSRPTH14": 0.318369946}, "47153": {"FFRPTH14": 0.8161044609999999, "FSRPTH14": 0.34004352600000004}, "47155": {"FFRPTH14": 1.019871727, "FSRPTH14": 1.629691936}, "47157": {"FFRPTH14": 0.725391802, "FSRPTH14": 0.5975694579999999}, "47159": {"FFRPTH14": 0.47345994, "FSRPTH14": 0.47345994}, "47161": {"FFRPTH14": 0.45184125299999994, "FSRPTH14": 0.45184125299999994}, "47163": {"FFRPTH14": 0.897820398, "FSRPTH14": 0.7386323840000001}, "47165": {"FFRPTH14": 0.555857932, "FSRPTH14": 0.567438306}, "47167": {"FFRPTH14": 0.40569268, "FSRPTH14": 0.438148094}, "47169": {"FFRPTH14": 0.499875031, "FSRPTH14": 0.37490627299999996}, "47171": {"FFRPTH14": 0.556699883, "FSRPTH14": 0.7237098479999999}, "47173": {"FFRPTH14": 0.20928164100000002, "FSRPTH14": 0.20928164100000002}, "47175": {"FFRPTH14": 0.0, "FSRPTH14": 0.0}, "47177": {"FFRPTH14": 0.600465361, "FSRPTH14": 0.475368411}, "47179": {"FFRPTH14": 0.80797199, "FSRPTH14": 0.895106225}, "47181": {"FFRPTH14": 0.236504464, "FSRPTH14": 0.41388281200000004}, "47183": {"FFRPTH14": 0.66912984, "FSRPTH14": 0.5236668320000001}, "47185": {"FFRPTH14": 0.6843846240000001, "FSRPTH14": 0.456256416}, "47187": {"FFRPTH14": 0.779628312, "FSRPTH14": 0.838100436}, "47189": {"FFRPTH14": 0.725816743, "FSRPTH14": 0.622128637}, "48001": {"FFRPTH14": 0.416471446, "FSRPTH14": 0.451177399}, "48003": {"FFRPTH14": 0.57218058, "FSRPTH14": 0.57218058}, "48005": {"FFRPTH14": 0.729344729, "FSRPTH14": 0.535612536}, "48007": {"FFRPTH14": 0.680762454, "FSRPTH14": 1.2814352070000001}, "48009": {"FFRPTH14": 0.453977982, "FSRPTH14": 0.226988991}, "48011": {"FFRPTH14": 1.023017903, "FSRPTH14": 0.0}, "48013": {"FFRPTH14": 0.460501528, "FSRPTH14": 0.5023653029999999}, "48015": {"FFRPTH14": 0.515216047, "FSRPTH14": 0.515216047}, "48017": {"FFRPTH14": 0.578871201, "FSRPTH14": 0.578871201}, "48019": {"FFRPTH14": 0.335056481, "FSRPTH14": 0.62224775}, "48021": {"FFRPTH14": 0.461130538, "FSRPTH14": 0.5379856279999999}, "48023": {"FFRPTH14": 0.83518931, "FSRPTH14": 1.113585746}, "48025": {"FFRPTH14": 0.48686973200000006, "FSRPTH14": 0.456440374}, "48027": {"FFRPTH14": 0.665370359, "FSRPTH14": 0.531688643}, "48029": {"FFRPTH14": 0.7004816079999999, "FSRPTH14": 0.691321464}, "48031": {"FFRPTH14": 0.832408435, "FSRPTH14": 0.9248982609999999}, "48033": {"FFRPTH14": 0.0, "FSRPTH14": 0.0}, "48035": {"FFRPTH14": 0.562429696, "FSRPTH14": 0.33745781799999996}, "48037": {"FFRPTH14": 0.997051729, "FSRPTH14": 0.589654248}, "48039": {"FFRPTH14": 0.576711502, "FSRPTH14": 0.547136553}, "48041": {"FFRPTH14": 0.827149633, "FSRPTH14": 0.602432681}, "48043": {"FFRPTH14": 0.763109125, "FSRPTH14": 1.1991714820000001}, "48045": {"FFRPTH14": 0.0, "FSRPTH14": 0.651041667}, "48047": {"FFRPTH14": 0.834028357, "FSRPTH14": 0.973033083}, "48049": {"FFRPTH14": 0.956099116, "FSRPTH14": 0.690516028}, "48051": {"FFRPTH14": 0.695531212, "FSRPTH14": 0.695531212}, "48053": {"FFRPTH14": 0.62301137, "FSRPTH14": 1.13477071}, "48055": {"FFRPTH14": 0.527505652, "FSRPTH14": 0.477267018}, "48057": {"FFRPTH14": 0.6422902229999999, "FSRPTH14": 0.963435335}, "48059": {"FFRPTH14": 0.666025309, "FSRPTH14": 0.148005624}, "48061": {"FFRPTH14": 0.570895735, "FSRPTH14": 0.5732744679999999}, "48063": {"FFRPTH14": 0.55463117, "FSRPTH14": 0.475398146}, "48065": {"FFRPTH14": 0.665225345, "FSRPTH14": 0.166306336}, "48067": {"FFRPTH14": 0.5617791879999999, "FSRPTH14": 0.49568751899999997}, "48069": {"FFRPTH14": 0.771109112, "FSRPTH14": 0.771109112}, "48071": {"FFRPTH14": 0.655393892, "FSRPTH14": 0.471883602}, "48073": {"FFRPTH14": 0.5107854310000001, "FSRPTH14": 0.353620683}, "48075": {"FFRPTH14": 0.987445338, "FSRPTH14": 1.5516998169999998}, "48077": {"FFRPTH14": 0.38572806200000004, "FSRPTH14": 0.19286403100000002}, "48079": {"FFRPTH14": 0.0, "FSRPTH14": 0.340715503}, "48081": {"FFRPTH14": 0.0, "FSRPTH14": 0.921942225}, "48083": {"FFRPTH14": 0.711743772, "FSRPTH14": 0.8303677340000001}, "48085": {"FFRPTH14": 0.83706019, "FSRPTH14": 0.735392961}, "48087": {"FFRPTH14": 1.325820351, "FSRPTH14": 0.331455088}, "48089": {"FFRPTH14": 0.772238042, "FSRPTH14": 0.6757082870000001}, "48091": {"FFRPTH14": 0.679095187, "FSRPTH14": 0.8084466509999999}, "48093": {"FFRPTH14": 0.44280442799999997, "FSRPTH14": 0.664206642}, "48095": {"FFRPTH14": 0.740740741, "FSRPTH14": 0.49382716}, "48097": {"FFRPTH14": 0.46438430399999997, "FSRPTH14": 0.8255720959999999}, "48099": {"FFRPTH14": 0.42349329, "FSRPTH14": 0.383790794}, "48101": {"FFRPTH14": 0.7067137809999999, "FSRPTH14": 0.7067137809999999}, "48103": {"FFRPTH14": 0.606060606, "FSRPTH14": 0.606060606}, "48105": {"FFRPTH14": 1.311647429, "FSRPTH14": 1.311647429}, "48107": {"FFRPTH14": 0.169520258, "FSRPTH14": 0.169520258}, "48109": {"FFRPTH14": 0.882612533, "FSRPTH14": 1.3239188}, "48111": {"FFRPTH14": 0.840925018, "FSRPTH14": 0.9810791870000001}, "48113": {"FFRPTH14": 0.820681654, "FSRPTH14": 0.6872762179999999}, "48115": {"FFRPTH14": 0.9721806759999999, "FSRPTH14": 0.523481902}, "48117": {"FFRPTH14": 0.5730659029999999, "FSRPTH14": 0.468872102}, "48119": {"FFRPTH14": 0.19091256199999998, "FSRPTH14": 0.38182512399999996}, "48121": {"FFRPTH14": 0.65572639, "FSRPTH14": 0.5853751779999999}, "48123": {"FFRPTH14": 0.773544769, "FSRPTH14": 0.9185844129999999}, "48125": {"FFRPTH14": 1.3525698830000001, "FSRPTH14": 1.3525698830000001}, "48127": {"FFRPTH14": 0.541076743, "FSRPTH14": 0.721435657}, "48129": {"FFRPTH14": 1.1289867340000002, "FSRPTH14": 0.8467400509999999}, "48131": {"FFRPTH14": 0.433538542, "FSRPTH14": 0.34683083299999995}, "48133": {"FFRPTH14": 0.935299296, "FSRPTH14": 0.7152288729999999}, "48135": {"FFRPTH14": 0.701736147, "FSRPTH14": 0.519804553}, "48137": {"FFRPTH14": 0.532197978, "FSRPTH14": 0.532197978}, "48139": {"FFRPTH14": 0.608849024, "FSRPTH14": 0.45192917299999996}, "48141": {"FFRPTH14": 0.6838738940000001, "FSRPTH14": 0.613086947}, "48143": {"FFRPTH14": 0.8468876879999999, "FSRPTH14": 0.7223453809999999}, "48145": {"FFRPTH14": 0.412031314, "FSRPTH14": 0.353169698}, "48147": {"FFRPTH14": 0.385162361, "FSRPTH14": 0.444418109}, "48149": {"FFRPTH14": 0.805379938, "FSRPTH14": 1.087262916}, "48151": {"FFRPTH14": 0.26102845199999997, "FSRPTH14": 0.5220569039999999}, "48153": {"FFRPTH14": 1.008572869, "FSRPTH14": 0.840477391}, "48155": {"FFRPTH14": 1.568627451, "FSRPTH14": 0.784313725}, "48157": {"FFRPTH14": 0.579270295, "FSRPTH14": 0.5063143379999999}, "48159": {"FFRPTH14": 0.471698113, "FSRPTH14": 0.5660377360000001}, "48161": {"FFRPTH14": 0.506021658, "FSRPTH14": 0.506021658}, "48163": {"FFRPTH14": 0.755490799, "FSRPTH14": 0.431709028}, "48165": {"FFRPTH14": 0.6177606179999999, "FSRPTH14": 0.6177606179999999}, "48167": {"FFRPTH14": 0.7288397759999999, "FSRPTH14": 0.697012712}, "48169": {"FFRPTH14": 0.777000777, "FSRPTH14": 0.46620046600000004}, "48171": {"FFRPTH14": 0.587774295, "FSRPTH14": 1.84169279}, "48173": {"FFRPTH14": 0.774593338, "FSRPTH14": 0.774593338}, "48175": {"FFRPTH14": 0.39740363, "FSRPTH14": 0.662339383}, "48177": {"FFRPTH14": 0.6841950929999999, "FSRPTH14": 0.6841950929999999}, "48179": {"FFRPTH14": 0.520742927, "FSRPTH14": 0.911300122}, "48181": {"FFRPTH14": 0.7042595559999999, "FSRPTH14": 0.574740557}, "48183": {"FFRPTH14": 0.965877731, "FSRPTH14": 0.8522450570000001}, "48185": {"FFRPTH14": 0.294420727, "FSRPTH14": 0.478433682}, "48187": {"FFRPTH14": 0.482173175, "FSRPTH14": 0.37351443100000004}, "48189": {"FFRPTH14": 0.5472350229999999, "FSRPTH14": 0.51843318}, "48191": {"FFRPTH14": 1.271051795, "FSRPTH14": 1.588814744}, "48193": {"FFRPTH14": 0.8537626540000001, "FSRPTH14": 0.7317965609999999}, "48195": {"FFRPTH14": 0.7260845890000001, "FSRPTH14": 1.089126883}, "48197": {"FFRPTH14": 1.018329939, "FSRPTH14": 1.018329939}, "48199": {"FFRPTH14": 0.75511048, "FSRPTH14": 0.359576419}, "48201": {"FFRPTH14": 0.703611723, "FSRPTH14": 0.62480721}, "48203": {"FFRPTH14": 0.5346322920000001, "FSRPTH14": 0.40097421899999997}, "48205": {"FFRPTH14": 0.0, "FSRPTH14": 0.8211528990000001}, "48207": {"FFRPTH14": 0.520020801, "FSRPTH14": 0.866701335}, "48209": {"FFRPTH14": 0.7080124309999999, "FSRPTH14": 0.62153763}, "48211": {"FFRPTH14": 0.7177033490000001, "FSRPTH14": 0.9569377990000001}, "48213": {"FFRPTH14": 0.7188800609999999, "FSRPTH14": 0.605372683}, "48215": {"FFRPTH14": 0.436784735, "FSRPTH14": 0.458443482}, "48217": {"FFRPTH14": 0.60261708, "FSRPTH14": 0.545224977}, "48219": {"FFRPTH14": 0.678627476, "FSRPTH14": 0.678627476}, "48221": {"FFRPTH14": 0.778917305, "FSRPTH14": 0.630552104}, "48223": {"FFRPTH14": 0.38974416100000003, "FSRPTH14": 0.6681328470000001}, "48225": {"FFRPTH14": 0.4397344, "FSRPTH14": 0.571654721}, "48227": {"FFRPTH14": 0.7639627840000001, "FSRPTH14": 0.791247169}, "48229": {"FFRPTH14": 0.0, "FSRPTH14": 1.245717845}, "48231": {"FFRPTH14": 0.5989174279999999, "FSRPTH14": 0.42941249600000003}, "48233": {"FFRPTH14": 0.7807835390000001, "FSRPTH14": 0.688926652}, "48235": {"FFRPTH14": 0.635324015, "FSRPTH14": 1.27064803}, "48237": {"FFRPTH14": 0.677583286, "FSRPTH14": 0.677583286}, "48239": {"FFRPTH14": 0.6784720809999999, "FSRPTH14": 0.407083249}, "48241": {"FFRPTH14": 0.646939694, "FSRPTH14": 0.450045005}, "48243": {"FFRPTH14": 0.45372050799999997, "FSRPTH14": 1.361161525}, "48245": {"FFRPTH14": 0.705691121, "FSRPTH14": 0.54314429}, "48247": {"FFRPTH14": 0.761179829, "FSRPTH14": 0.380589914}, "48249": {"FFRPTH14": 0.749643315, "FSRPTH14": 0.556186976}, "48251": {"FFRPTH14": 0.660501982, "FSRPTH14": 0.387409816}, "48253": {"FFRPTH14": 0.401284109, "FSRPTH14": 0.250802568}, "48255": {"FFRPTH14": 0.6037837110000001, "FSRPTH14": 1.140480343}, "48257": {"FFRPTH14": 0.629292675, "FSRPTH14": 0.485454349}, "48259": {"FFRPTH14": 0.694444444, "FSRPTH14": 0.7973251029999999}, "48261": {"FFRPTH14": 0.0, "FSRPTH14": 0.0}, "48263": {"FFRPTH14": 0.0, "FSRPTH14": 1.27388535}, "48265": {"FFRPTH14": 0.7713302479999999, "FSRPTH14": 0.791107947}, "48267": {"FFRPTH14": 0.901306895, "FSRPTH14": 0.901306895}, "48269": {"FFRPTH14": 0.0, "FSRPTH14": 0.0}, "48271": {"FFRPTH14": 0.283607487, "FSRPTH14": 0.567214974}, "48273": {"FFRPTH14": 0.8698353529999999, "FSRPTH14": 0.7145076109999999}, "48275": {"FFRPTH14": 0.259201659, "FSRPTH14": 0.518403318}, "48277": {"FFRPTH14": 0.706742322, "FSRPTH14": 0.72693496}, "48279": {"FFRPTH14": 0.442021512, "FSRPTH14": 0.6630322679999999}, "48281": {"FFRPTH14": 0.496130185, "FSRPTH14": 0.8434213140000001}, "48283": {"FFRPTH14": 0.936580145, "FSRPTH14": 0.5351886539999999}, "48285": {"FFRPTH14": 0.45636631, "FSRPTH14": 0.5070736779999999}, "48287": {"FFRPTH14": 0.657030223, "FSRPTH14": 0.716760244}, "48289": {"FFRPTH14": 0.5930846329999999, "FSRPTH14": 1.0082438759999999}, "48291": {"FFRPTH14": 0.512052434, "FSRPTH14": 0.371238015}, "48293": {"FFRPTH14": 0.46760755, "FSRPTH14": 0.680156436}, "48295": {"FFRPTH14": 0.281452294, "FSRPTH14": 0.844356882}, "48297": {"FFRPTH14": 0.744355306, "FSRPTH14": 1.240592176}, "48299": {"FFRPTH14": 0.9738595590000001, "FSRPTH14": 0.7688364940000001}, "48301": {"FFRPTH14": 0.0, "FSRPTH14": 0.0}, "48303": {"FFRPTH14": 0.904841925, "FSRPTH14": 0.57147911}, "48305": {"FFRPTH14": 0.519840582, "FSRPTH14": 0.346560388}, "48307": {"FFRPTH14": 0.975728747, "FSRPTH14": 1.097694841}, "48309": {"FFRPTH14": 0.805123213, "FSRPTH14": 0.529902523}, "48311": {"FFRPTH14": 0.0, "FSRPTH14": 3.726708075}, "48313": {"FFRPTH14": 1.226462737, "FSRPTH14": 0.721448669}, "48315": {"FFRPTH14": 0.492659375, "FSRPTH14": 0.689723125}, "48317": {"FFRPTH14": 0.183150183, "FSRPTH14": 0.366300366}, "48319": {"FFRPTH14": 1.22819946, "FSRPTH14": 1.719479243}, "48321": {"FFRPTH14": 0.62980914, "FSRPTH14": 0.876256195}, "48323": {"FFRPTH14": 0.526103502, "FSRPTH14": 0.45595636799999995}, "48325": {"FFRPTH14": 0.584624379, "FSRPTH14": 0.6890215890000001}, "48327": {"FFRPTH14": 0.465766185, "FSRPTH14": 0.931532371}, "48329": {"FFRPTH14": 0.750818199, "FSRPTH14": 0.59038696}, "48331": {"FFRPTH14": 0.535949868, "FSRPTH14": 0.618403694}, "48333": {"FFRPTH14": 0.41067761799999997, "FSRPTH14": 1.026694045}, "48335": {"FFRPTH14": 0.550903482, "FSRPTH14": 0.661084178}, "48337": {"FFRPTH14": 0.618046972, "FSRPTH14": 0.5665430570000001}, "48339": {"FFRPTH14": 0.59158257, "FSRPTH14": 0.549189031}, "48341": {"FFRPTH14": 0.496658841, "FSRPTH14": 0.812714466}, "48343": {"FFRPTH14": 0.7062701090000001, "FSRPTH14": 0.47084673899999996}, "48345": {"FFRPTH14": 0.0, "FSRPTH14": 1.7346053769999998}, "48347": {"FFRPTH14": 0.6278617479999999, "FSRPTH14": 0.459411035}, "48349": {"FFRPTH14": 0.663969291, "FSRPTH14": 0.45647888799999997}, "48351": {"FFRPTH14": 0.070731362, "FSRPTH14": 0.070731362}, "48353": {"FFRPTH14": 0.8613264429999999, "FSRPTH14": 0.927582323}, "48355": {"FFRPTH14": 0.850595557, "FSRPTH14": 0.788836144}, "48357": {"FFRPTH14": 0.37181632299999995, "FSRPTH14": 1.30135713}, "48359": {"FFRPTH14": 1.4492753619999998, "FSRPTH14": 1.4492753619999998}, "48361": {"FFRPTH14": 0.767082569, "FSRPTH14": 0.35956995399999997}, "48363": {"FFRPTH14": 0.960990888, "FSRPTH14": 0.960990888}, "48365": {"FFRPTH14": 0.21035802899999997, "FSRPTH14": 0.336572847}, "48367": {"FFRPTH14": 0.6820174729999999, "FSRPTH14": 0.5115131039999999}, "48369": {"FFRPTH14": 0.10092854300000001, "FSRPTH14": 0.201857085}, "48371": {"FFRPTH14": 0.503366262, "FSRPTH14": 0.880890958}, "48373": {"FFRPTH14": 0.542546496, "FSRPTH14": 0.412335337}, "48375": {"FFRPTH14": 0.953735601, "FSRPTH14": 0.90440445}, "48377": {"FFRPTH14": 0.860091743, "FSRPTH14": 1.003440367}, "48379": {"FFRPTH14": 0.634517766, "FSRPTH14": 0.453226976}, "48381": {"FFRPTH14": 0.616128529, "FSRPTH14": 0.506941195}, "48383": {"FFRPTH14": 0.266311585, "FSRPTH14": 0.798934754}, "48385": {"FFRPTH14": 0.593295758, "FSRPTH14": 0.889943637}, "48387": {"FFRPTH14": 0.321388398, "FSRPTH14": 0.562429696}, "48389": {"FFRPTH14": 0.348456338, "FSRPTH14": 0.836295212}, "48391": {"FFRPTH14": 1.095590249, "FSRPTH14": 1.095590249}, "48393": {"FFRPTH14": 0.0, "FSRPTH14": 1.077586207}, "48395": {"FFRPTH14": 0.545454545, "FSRPTH14": 0.787878788}, "48397": {"FFRPTH14": 0.797184799, "FSRPTH14": 0.831349862}, "48399": {"FFRPTH14": 0.480030722, "FSRPTH14": 0.8640553}, "48401": {"FFRPTH14": 0.5563488679999999, "FSRPTH14": 0.445079094}, "48403": {"FFRPTH14": 0.289855072, "FSRPTH14": 0.579710145}, "48405": {"FFRPTH14": 0.116144019, "FSRPTH14": 0.232288037}, "48407": {"FFRPTH14": 0.147606923, "FSRPTH14": 0.221410384}, "48409": {"FFRPTH14": 0.82193828, "FSRPTH14": 0.5081073}, "48411": {"FFRPTH14": 0.711490573, "FSRPTH14": 1.600853789}, "48413": {"FFRPTH14": 0.0, "FSRPTH14": 0.0}, "48415": {"FFRPTH14": 1.211911357, "FSRPTH14": 0.692520776}, "48417": {"FFRPTH14": 0.5982650310000001, "FSRPTH14": 0.8973975470000001}, "48419": {"FFRPTH14": 0.391926318, "FSRPTH14": 0.548696845}, "48421": {"FFRPTH14": 0.324254215, "FSRPTH14": 0.648508431}, "48423": {"FFRPTH14": 0.8225112179999999, "FSRPTH14": 0.644300454}, "48425": {"FFRPTH14": 0.920174833, "FSRPTH14": 0.805152979}, "48427": {"FFRPTH14": 0.42887777, "FSRPTH14": 0.381224684}, "48429": {"FFRPTH14": 0.850611377, "FSRPTH14": 0.9569377990000001}, "48431": {"FFRPTH14": 1.493651979, "FSRPTH14": 0.0}, "48433": {"FFRPTH14": 2.138275125, "FSRPTH14": 1.42551675}, "48435": {"FFRPTH14": 1.007049345, "FSRPTH14": 1.258811682}, "48437": {"FFRPTH14": 0.131908719, "FSRPTH14": 0.791452315}, "48439": {"FFRPTH14": 0.757700374, "FSRPTH14": 0.6132541020000001}, "48441": {"FFRPTH14": 0.9101470290000001, "FSRPTH14": 0.5771664089999999}, "48443": {"FFRPTH14": 1.078748652, "FSRPTH14": 0.0}, "48445": {"FFRPTH14": 0.5494936810000001, "FSRPTH14": 0.627992778}, "48447": {"FFRPTH14": 0.0, "FSRPTH14": 2.487562189}, "48449": {"FFRPTH14": 0.584507476, "FSRPTH14": 0.7075616809999999}, "48451": {"FFRPTH14": 0.6860592759999999, "FSRPTH14": 0.7117864979999999}, "48453": {"FFRPTH14": 0.774880662, "FSRPTH14": 0.823527879}, "48455": {"FFRPTH14": 0.35151856, "FSRPTH14": 0.281214848}, "48457": {"FFRPTH14": 0.420207302, "FSRPTH14": 0.373517602}, "48459": {"FFRPTH14": 0.446052436, "FSRPTH14": 0.297368291}, "48461": {"FFRPTH14": 1.737116387, "FSRPTH14": 0.8685581929999999}, "48463": {"FFRPTH14": 0.700667478, "FSRPTH14": 0.8481764209999999}, "48465": {"FFRPTH14": 0.6329889329999999, "FSRPTH14": 0.428798955}, "48467": {"FFRPTH14": 0.51030051, "FSRPTH14": 0.68040068}, "48469": {"FFRPTH14": 0.779525916, "FSRPTH14": 0.724629725}, "48471": {"FFRPTH14": 0.487182794, "FSRPTH14": 0.5015117}, "48473": {"FFRPTH14": 0.44852627100000003, "FSRPTH14": 0.234942332}, "48475": {"FFRPTH14": 0.516129032, "FSRPTH14": 1.2903225809999999}, "48477": {"FFRPTH14": 0.7549799640000001, "FSRPTH14": 0.842093037}, "48479": {"FFRPTH14": 0.659984325, "FSRPTH14": 0.442489491}, "48481": {"FFRPTH14": 0.777302759, "FSRPTH14": 0.558686358}, "48483": {"FFRPTH14": 0.700035002, "FSRPTH14": 2.625131257}, "48485": {"FFRPTH14": 0.732877489, "FSRPTH14": 0.732877489}, "48487": {"FFRPTH14": 1.002081246, "FSRPTH14": 0.616665382}, "48489": {"FFRPTH14": 0.36524677, "FSRPTH14": 0.36524677}, "48491": {"FFRPTH14": 0.656106285, "FSRPTH14": 0.54777721}, "48493": {"FFRPTH14": 0.431015904, "FSRPTH14": 0.560320676}, "48495": {"FFRPTH14": 0.383582662, "FSRPTH14": 0.511443549}, "48497": {"FFRPTH14": 0.584055291, "FSRPTH14": 0.48671274200000003}, "48499": {"FFRPTH14": 0.350042005, "FSRPTH14": 0.70008401}, "48501": {"FFRPTH14": 0.844798455, "FSRPTH14": 1.086169442}, "48503": {"FFRPTH14": 0.980926431, "FSRPTH14": 0.871934605}, "48505": {"FFRPTH14": 0.419023675, "FSRPTH14": 0.48886095399999996}, "48507": {"FFRPTH14": 0.244558572, "FSRPTH14": 0.733675715}, "49001": {"FFRPTH14": 1.702522829, "FSRPTH14": 0.9286488159999999}, "49003": {"FFRPTH14": 0.601731434, "FSRPTH14": 0.349392445}, "49005": {"FFRPTH14": 0.743601227, "FSRPTH14": 0.346450572}, "49007": {"FFRPTH14": 0.677637948, "FSRPTH14": 0.580832527}, "49009": {"FFRPTH14": 0.0, "FSRPTH14": 1.790510295}, "49011": {"FFRPTH14": 0.636958131, "FSRPTH14": 0.360942941}, "49013": {"FFRPTH14": 0.588812561, "FSRPTH14": 0.539744848}, "49015": {"FFRPTH14": 0.7525162259999999, "FSRPTH14": 0.282193585}, "49017": {"FFRPTH14": 2.7866242039999998, "FSRPTH14": 2.1894904459999998}, "49019": {"FFRPTH14": 0.9545020679999999, "FSRPTH14": 3.075617775}, "49021": {"FFRPTH14": 0.719287482, "FSRPTH14": 0.634665426}, "49023": {"FFRPTH14": 0.85828724, "FSRPTH14": 0.667556742}, "49025": {"FFRPTH14": 0.827129859, "FSRPTH14": 2.205679625}, "49027": {"FFRPTH14": 0.9519276529999999, "FSRPTH14": 0.475963827}, "49029": {"FFRPTH14": 0.377073906, "FSRPTH14": 0.377073906}, "49031": {"FFRPTH14": 1.347708895, "FSRPTH14": 0.6738544470000001}, "49033": {"FFRPTH14": 3.0527692980000003, "FSRPTH14": 0.872219799}, "49035": {"FFRPTH14": 0.829866397, "FSRPTH14": 0.622857781}, "49037": {"FFRPTH14": 0.393416825, "FSRPTH14": 0.5901252379999999}, "49039": {"FFRPTH14": 0.526740879, "FSRPTH14": 0.316044527}, "49041": {"FFRPTH14": 0.770230588, "FSRPTH14": 0.577672941}, "49043": {"FFRPTH14": 0.997314921, "FSRPTH14": 2.045774198}, "49045": {"FFRPTH14": 0.470794506, "FSRPTH14": 0.30845157300000003}, "49047": {"FFRPTH14": 0.542490574, "FSRPTH14": 0.46111698799999995}, "49049": {"FFRPTH14": 0.6256974479999999, "FSRPTH14": 0.335131396}, "49051": {"FFRPTH14": 0.793822617, "FSRPTH14": 0.5773255389999999}, "49053": {"FFRPTH14": 0.763419064, "FSRPTH14": 0.651538684}, "49055": {"FFRPTH14": 0.734484025, "FSRPTH14": 2.5706940869999997}, "49057": {"FFRPTH14": 0.602973282, "FSRPTH14": 0.544755172}, "50001": {"FFRPTH14": 0.459347726, "FSRPTH14": 0.7565727259999999}, "50003": {"FFRPTH14": 0.8231581840000001, "FSRPTH14": 1.317053094}, "50005": {"FFRPTH14": 0.613279107, "FSRPTH14": 0.871501888}, "50007": {"FFRPTH14": 0.747519171, "FSRPTH14": 1.02783886}, "50009": {"FFRPTH14": 0.163265306, "FSRPTH14": 0.816326531}, "50011": {"FFRPTH14": 0.4728424, "FSRPTH14": 0.781217878}, "50013": {"FFRPTH14": 0.142979697, "FSRPTH14": 0.428939091}, "50015": {"FFRPTH14": 0.7176461209999999, "FSRPTH14": 1.87385376}, "50017": {"FFRPTH14": 0.311861118, "FSRPTH14": 0.866280883}, "50019": {"FFRPTH14": 0.443098737, "FSRPTH14": 0.738497895}, "50021": {"FFRPTH14": 0.732283727, "FSRPTH14": 1.447924641}, "50023": {"FFRPTH14": 0.559340995, "FSRPTH14": 1.135631716}, "50025": {"FFRPTH14": 0.869286727, "FSRPTH14": 1.624193622}, "50027": {"FFRPTH14": 0.57128575, "FSRPTH14": 1.410361695}, "51001": {"FFRPTH14": 0.545107659, "FSRPTH14": 1.090215318}, "51003": {"FFRPTH14": 0.555082353, "FSRPTH14": 0.60293428}, "51005": {"FFRPTH14": 0.442477876, "FSRPTH14": 0.442477876}, "51007": {"FFRPTH14": 0.311162972, "FSRPTH14": 0.311162972}, "51009": {"FFRPTH14": 0.499360195, "FSRPTH14": 0.468150183}, "51011": {"FFRPTH14": 0.458145167, "FSRPTH14": 0.458145167}, "51013": {"FFRPTH14": 1.044476175, "FSRPTH14": 1.075325683}, "51015": {"FFRPTH14": 0.36554656, "FSRPTH14": 0.33846903700000003}, "51017": {"FFRPTH14": 0.219154065, "FSRPTH14": 0.8766162609999999}, "51019": {"FFRPTH14": 0.261154564, "FSRPTH14": 0.483135944}, "51021": {"FFRPTH14": 0.301886792, "FSRPTH14": 0.150943396}, "51023": {"FFRPTH14": 0.574018127, "FSRPTH14": 0.6646525679999999}, "51025": {"FFRPTH14": 0.181840223, "FSRPTH14": 0.303067038}, "51027": {"FFRPTH14": 0.389509218, "FSRPTH14": 0.302951614}, "51029": {"FFRPTH14": 0.118252232, "FSRPTH14": 0.17737834800000002}, "51031": {"FFRPTH14": 0.765236403, "FSRPTH14": 0.455497859}, "51033": {"FFRPTH14": 0.268654712, "FSRPTH14": 0.436563906}, "51035": {"FFRPTH14": 0.405117991, "FSRPTH14": 0.506397488}, "51036": {"FFRPTH14": 0.0, "FSRPTH14": 0.284778585}, "51037": {"FFRPTH14": 0.24539877300000001, "FSRPTH14": 0.408997955}, "51041": {"FFRPTH14": 0.7097765709999999, "FSRPTH14": 0.652633542}, "51043": {"FFRPTH14": 0.416002219, "FSRPTH14": 0.554669625}, "51045": {"FFRPTH14": 0.0, "FSRPTH14": 0.38211692799999997}, "51047": {"FFRPTH14": 0.569499247, "FSRPTH14": 0.569499247}, "51049": {"FFRPTH14": 0.0, "FSRPTH14": 0.305281368}, "51051": {"FFRPTH14": 0.26130128, "FSRPTH14": 0.587927881}, "51053": {"FFRPTH14": 0.21537025699999998, "FSRPTH14": 0.287160343}, "51057": {"FFRPTH14": 0.90065748, "FSRPTH14": 0.990723228}, "51059": {"FFRPTH14": 0.8008523670000001, "FSRPTH14": 0.661076817}, "51061": {"FFRPTH14": 0.805884422, "FSRPTH14": 0.615402649}, "51063": {"FFRPTH14": 0.256772371, "FSRPTH14": 0.770317114}, "51065": {"FFRPTH14": 0.191629618, "FSRPTH14": 0.38325923700000003}, "51067": {"FFRPTH14": 0.461336456, "FSRPTH14": 0.532311296}, "51069": {"FFRPTH14": 0.5705476039999999, "FSRPTH14": 0.558408294}, "51071": {"FFRPTH14": 0.713648528, "FSRPTH14": 0.654177817}, "51073": {"FFRPTH14": 0.538488463, "FSRPTH14": 0.646186155}, "51075": {"FFRPTH14": 0.31911013899999996, "FSRPTH14": 0.774981765}, "51077": {"FFRPTH14": 0.19876764100000002, "FSRPTH14": 0.463791161}, "51079": {"FFRPTH14": 0.367820924, "FSRPTH14": 0.525458463}, "51081": {"FFRPTH14": 0.342436435, "FSRPTH14": 0.085609109}, "51083": {"FFRPTH14": 0.710227273, "FSRPTH14": 0.653409091}, "51085": {"FFRPTH14": 0.7358857120000001, "FSRPTH14": 0.726073903}, "51087": {"FFRPTH14": 0.835600949, "FSRPTH14": 0.848026242}, "51089": {"FFRPTH14": 0.595226666, "FSRPTH14": 0.345615484}, "51091": {"FFRPTH14": 0.0, "FSRPTH14": 1.334519573}, "51093": {"FFRPTH14": 0.5554475520000001, "FSRPTH14": 0.638764685}, "51095": {"FFRPTH14": 0.427097254, "FSRPTH14": 0.688866539}, "51097": {"FFRPTH14": 0.0, "FSRPTH14": 0.278745645}, "51099": {"FFRPTH14": 0.472980963, "FSRPTH14": 0.551811123}, "51101": {"FFRPTH14": 0.432472507, "FSRPTH14": 0.864945014}, "51103": {"FFRPTH14": 0.9054690329999999, "FSRPTH14": 1.2676566459999998}, "51105": {"FFRPTH14": 0.28054987800000003, "FSRPTH14": 0.320628432}, "51107": {"FFRPTH14": 0.718909241, "FSRPTH14": 0.6886103840000001}, "51109": {"FFRPTH14": 0.26202399, "FSRPTH14": 0.378479096}, "51111": {"FFRPTH14": 0.16043638699999999, "FSRPTH14": 0.561527354}, "51113": {"FFRPTH14": 0.380025842, "FSRPTH14": 0.5320361779999999}, "51115": {"FFRPTH14": 0.565866908, "FSRPTH14": 0.905387053}, "51117": {"FFRPTH14": 0.801487561, "FSRPTH14": 0.673249551}, "51119": {"FFRPTH14": 0.654450262, "FSRPTH14": 1.682872102}, "51121": {"FFRPTH14": 0.647854881, "FSRPTH14": 0.812389453}, "51125": {"FFRPTH14": 0.40404040399999996, "FSRPTH14": 0.673400673}, "51127": {"FFRPTH14": 0.499475551, "FSRPTH14": 0.699265771}, "51131": {"FFRPTH14": 1.072518769, "FSRPTH14": 0.742512994}, "51133": {"FFRPTH14": 0.24487796899999997, "FSRPTH14": 0.979511877}, "51135": {"FFRPTH14": 0.83445664, "FSRPTH14": 0.83445664}, "51137": {"FFRPTH14": 0.742305716, "FSRPTH14": 0.742305716}, "51139": {"FFRPTH14": 0.712848038, "FSRPTH14": 0.545119088}, "51141": {"FFRPTH14": 0.328515112, "FSRPTH14": 0.38326763}, "51143": {"FFRPTH14": 0.24045012300000002, "FSRPTH14": 0.304570155}, "51145": {"FFRPTH14": 0.210903722, "FSRPTH14": 0.562409927}, "51147": {"FFRPTH14": 0.650082344, "FSRPTH14": 0.780098813}, "51149": {"FFRPTH14": 0.455361209, "FSRPTH14": 0.401789302}, "51153": {"FFRPTH14": 0.634395441, "FSRPTH14": 0.529036481}, "51155": {"FFRPTH14": 0.961482431, "FSRPTH14": 0.37876580600000004}, "51157": {"FFRPTH14": 0.271702214, "FSRPTH14": 0.95095775}, "51159": {"FFRPTH14": 0.224668614, "FSRPTH14": 0.6740058409999999}, "51161": {"FFRPTH14": 0.565122354, "FSRPTH14": 0.6824119000000001}, "51163": {"FFRPTH14": 0.403099386, "FSRPTH14": 0.671832311}, "51165": {"FFRPTH14": 0.34539663, "FSRPTH14": 0.460528841}, "51167": {"FFRPTH14": 0.535274596, "FSRPTH14": 0.46390465}, "51169": {"FFRPTH14": 0.446747677, "FSRPTH14": 0.402072909}, "51171": {"FFRPTH14": 0.534622626, "FSRPTH14": 0.604356012}, "51173": {"FFRPTH14": 0.602123277, "FSRPTH14": 0.570432578}, "51175": {"FFRPTH14": 0.221496207, "FSRPTH14": 0.276870259}, "51177": {"FFRPTH14": 0.681177818, "FSRPTH14": 0.588289934}, "51179": {"FFRPTH14": 0.542888165, "FSRPTH14": 0.5000285729999999}, "51181": {"FFRPTH14": 0.147275405, "FSRPTH14": 0.29455081}, "51183": {"FFRPTH14": 0.509900569, "FSRPTH14": 0.424917141}, "51185": {"FFRPTH14": 0.736444813, "FSRPTH14": 0.529319709}, "51187": {"FFRPTH14": 0.589940236, "FSRPTH14": 0.8207864159999999}, "51191": {"FFRPTH14": 0.602971003, "FSRPTH14": 0.6577865479999999}, "51193": {"FFRPTH14": 0.22887223199999998, "FSRPTH14": 1.029925044}, "51195": {"FFRPTH14": 0.651057969, "FSRPTH14": 0.500813822}, "51197": {"FFRPTH14": 0.755468562, "FSRPTH14": 0.961505443}, "51199": {"FFRPTH14": 0.753670375, "FSRPTH14": 0.798890597}, "51510": {"FFRPTH14": 0.8367922959999999, "FSRPTH14": 1.0625933920000001}, "51515": {"FFRPTH14": 0.0, "FSRPTH14": 0.0}, "51520": {"FFRPTH14": 1.804003724, "FSRPTH14": 1.7458100559999998}, "51530": {"FFRPTH14": 0.605785249, "FSRPTH14": 0.45433893700000005}, "51540": {"FFRPTH14": 1.447590639, "FSRPTH14": 2.895181278}, "51550": {"FFRPTH14": 0.7713040609999999, "FSRPTH14": 0.788444151}, "51570": {"FFRPTH14": 1.97394394, "FSRPTH14": 1.8611471430000002}, "51580": {"FFRPTH14": 1.723543606, "FSRPTH14": 1.551189245}, "51590": {"FFRPTH14": 1.295825087, "FSRPTH14": 1.083780982}, "51595": {"FFRPTH14": 1.830831197, "FSRPTH14": 2.380080557}, "51600": {"FFRPTH14": 3.512641425, "FSRPTH14": 3.471796757}, "51610": {"FFRPTH14": 2.4262921840000002, "FSRPTH14": 3.8967722960000004}, "51620": {"FFRPTH14": 1.290171241, "FSRPTH14": 1.52474783}, "51630": {"FFRPTH14": 1.4462081130000002, "FSRPTH14": 2.8924162260000004}, "51640": {"FFRPTH14": 2.281151982, "FSRPTH14": 1.996007984}, "51650": {"FFRPTH14": 0.8109352059999999, "FSRPTH14": 0.6940436440000001}, "51660": {"FFRPTH14": 1.009947025, "FSRPTH14": 1.5816151530000002}, "51670": {"FFRPTH14": 0.856010092, "FSRPTH14": 0.630744278}, "51678": {"FFRPTH14": 1.3678019419999998, "FSRPTH14": 1.778142525}, "51680": {"FFRPTH14": 1.02470682, "FSRPTH14": 0.986754716}, "51683": {"FFRPTH14": 1.188184691, "FSRPTH14": 1.069366222}, "51685": {"FFRPTH14": 0.39541320700000004, "FSRPTH14": 0.527217609}, "51690": {"FFRPTH14": 1.677485231, "FSRPTH14": 1.239880388}, "51700": {"FFRPTH14": 0.836225508, "FSRPTH14": 0.819828929}, "51710": {"FFRPTH14": 0.969734505, "FSRPTH14": 0.89639324}, "51720": {"FFRPTH14": 2.9769288019999998, "FSRPTH14": 1.9846192009999999}, "51730": {"FFRPTH14": 1.039723556, "FSRPTH14": 0.764502615}, "51735": {"FFRPTH14": 0.83001328, "FSRPTH14": 0.9960159359999999}, "51740": {"FFRPTH14": 0.82288238, "FSRPTH14": 0.624973959}, "51750": {"FFRPTH14": 0.5667006689999999, "FSRPTH14": 0.680040802}, "51760": {"FFRPTH14": 0.812474467, "FSRPTH14": 1.344943609}, "51770": {"FFRPTH14": 0.885062558, "FSRPTH14": 1.28736372}, "51775": {"FFRPTH14": 1.177255425, "FSRPTH14": 1.25573912}, "51790": {"FFRPTH14": 0.9780748229999999, "FSRPTH14": 1.1003341759999998}, "51800": {"FFRPTH14": 0.67967652, "FSRPTH14": 0.552957169}, "51810": {"FFRPTH14": 0.9335225509999999, "FSRPTH14": 1.124218369}, "51820": {"FFRPTH14": 1.263689975, "FSRPTH14": 1.310493307}, "51830": {"FFRPTH14": 2.2462732290000003, "FSRPTH14": 3.8799264860000005}, "51840": {"FFRPTH14": 1.670115819, "FSRPTH14": 2.287332535}, "53001": {"FFRPTH14": 0.6778247040000001, "FSRPTH14": 0.46926325700000004}, "53003": {"FFRPTH14": 0.450673757, "FSRPTH14": 0.6760106359999999}, "53005": {"FFRPTH14": 0.60594361, "FSRPTH14": 0.681016269}, "53007": {"FFRPTH14": 0.710570065, "FSRPTH14": 1.206628412}, "53009": {"FFRPTH14": 0.536340507, "FSRPTH14": 1.16894726}, "53011": {"FFRPTH14": 0.5387931029999999, "FSRPTH14": 0.5764864479999999}, "53013": {"FFRPTH14": 0.501882058, "FSRPTH14": 1.5056461730000001}, "53015": {"FFRPTH14": 0.597260435, "FSRPTH14": 0.626633899}, "53017": {"FFRPTH14": 0.37684654799999995, "FSRPTH14": 0.5024620639999999}, "53019": {"FFRPTH14": 0.26085822399999997, "FSRPTH14": 0.6521455589999999}, "53021": {"FFRPTH14": 0.489699234, "FSRPTH14": 0.398592399}, "53023": {"FFRPTH14": 0.0, "FSRPTH14": 0.902934537}, "53025": {"FFRPTH14": 0.611935972, "FSRPTH14": 0.5260502220000001}, "53027": {"FFRPTH14": 0.578948855, "FSRPTH14": 0.833121523}, "53029": {"FFRPTH14": 0.37842951799999996, "FSRPTH14": 0.756859035}, "53031": {"FFRPTH14": 0.595474395, "FSRPTH14": 1.2240307}, "53033": {"FFRPTH14": 0.826936197, "FSRPTH14": 1.106267551}, "53035": {"FFRPTH14": 0.625533572, "FSRPTH14": 0.708151214}, "53037": {"FFRPTH14": 1.128827431, "FSRPTH14": 1.058275716}, "53039": {"FFRPTH14": 0.431427065, "FSRPTH14": 0.86285413}, "53041": {"FFRPTH14": 0.638909594, "FSRPTH14": 0.7587051429999999}, "53043": {"FFRPTH14": 0.87804878, "FSRPTH14": 0.487804878}, "53045": {"FFRPTH14": 0.395315511, "FSRPTH14": 0.576501787}, "53047": {"FFRPTH14": 0.460159845, "FSRPTH14": 0.847662872}, "53049": {"FFRPTH14": 0.583629201, "FSRPTH14": 1.604980303}, "53051": {"FFRPTH14": 0.38505968399999996, "FSRPTH14": 1.001155179}, "53053": {"FFRPTH14": 0.647892606, "FSRPTH14": 0.6082257120000001}, "53055": {"FFRPTH14": 0.9366219170000001, "FSRPTH14": 2.18545114}, "53057": {"FFRPTH14": 0.639720849, "FSRPTH14": 0.9554272420000001}, "53059": {"FFRPTH14": 0.352733686, "FSRPTH14": 0.793650794}, "53061": {"FFRPTH14": 0.7017008020000001, "FSRPTH14": 0.687219172}, "53063": {"FFRPTH14": 0.704082855, "FSRPTH14": 0.660722913}, "53065": {"FFRPTH14": 0.595647194, "FSRPTH14": 0.641466208}, "53067": {"FFRPTH14": 0.628171419, "FSRPTH14": 0.643217441}, "53069": {"FFRPTH14": 0.49176297, "FSRPTH14": 0.737644455}, "53071": {"FFRPTH14": 0.484593276, "FSRPTH14": 0.73524497}, "53073": {"FFRPTH14": 0.595149531, "FSRPTH14": 0.940720227}, "53075": {"FFRPTH14": 0.875563243, "FSRPTH14": 0.640656032}, "53077": {"FFRPTH14": 0.553117443, "FSRPTH14": 0.512743907}, "54001": {"FFRPTH14": 0.417511631, "FSRPTH14": 0.477156149}, "54003": {"FFRPTH14": 0.5973012839999999, "FSRPTH14": 0.443450953}, "54005": {"FFRPTH14": 0.295184279, "FSRPTH14": 0.295184279}, "54007": {"FFRPTH14": 0.553135587, "FSRPTH14": 0.829703381}, "54009": {"FFRPTH14": 0.679983, "FSRPTH14": 0.679983}, "54011": {"FFRPTH14": 1.132747737, "FSRPTH14": 0.7414348820000001}, "54013": {"FFRPTH14": 0.133102622, "FSRPTH14": 0.532410488}, "54015": {"FFRPTH14": 0.111844313, "FSRPTH14": 0.223688625}, "54017": {"FFRPTH14": 0.0, "FSRPTH14": 0.357525921}, "54019": {"FFRPTH14": 0.420987326, "FSRPTH14": 0.598245148}, "54021": {"FFRPTH14": 0.23207240699999998, "FSRPTH14": 0.580181016}, "54023": {"FFRPTH14": 0.513390947, "FSRPTH14": 0.9412167370000001}, "54025": {"FFRPTH14": 0.818053597, "FSRPTH14": 0.705218618}, "54027": {"FFRPTH14": 0.298087979, "FSRPTH14": 0.511007963}, "54029": {"FFRPTH14": 0.8302337940000001, "FSRPTH14": 0.6973963870000001}, "54031": {"FFRPTH14": 0.502765209, "FSRPTH14": 1.0055304170000001}, "54033": {"FFRPTH14": 0.785328893, "FSRPTH14": 0.785328893}, "54035": {"FFRPTH14": 0.755338872, "FSRPTH14": 0.515003777}, "54037": {"FFRPTH14": 0.628219626, "FSRPTH14": 0.7359144190000001}, "54039": {"FFRPTH14": 0.998827692, "FSRPTH14": 0.70969336}, "54041": {"FFRPTH14": 1.096624832, "FSRPTH14": 0.487388814}, "54043": {"FFRPTH14": 0.23190019, "FSRPTH14": 0.46380038}, "54045": {"FFRPTH14": 0.565802874, "FSRPTH14": 0.678963449}, "54047": {"FFRPTH14": 0.391236307, "FSRPTH14": 0.146713615}, "54049": {"FFRPTH14": 0.757002271, "FSRPTH14": 0.686583455}, "54051": {"FFRPTH14": 0.616979269, "FSRPTH14": 0.524432379}, "54053": {"FFRPTH14": 0.333135919, "FSRPTH14": 0.296120817}, "54055": {"FFRPTH14": 0.566480537, "FSRPTH14": 0.43699927200000005}, "54057": {"FFRPTH14": 0.543911814, "FSRPTH14": 0.507651026}, "54059": {"FFRPTH14": 0.23331777899999998, "FSRPTH14": 0.583294447}, "54061": {"FFRPTH14": 0.937533224, "FSRPTH14": 0.918202642}, "54063": {"FFRPTH14": 0.0, "FSRPTH14": 0.736268591}, "54065": {"FFRPTH14": 0.286483699, "FSRPTH14": 0.859451097}, "54067": {"FFRPTH14": 0.542068378, "FSRPTH14": 0.890540907}, "54069": {"FFRPTH14": 1.038589365, "FSRPTH14": 0.9693500740000001}, "54071": {"FFRPTH14": 0.407000407, "FSRPTH14": 0.407000407}, "54073": {"FFRPTH14": 0.654964632, "FSRPTH14": 0.392978779}, "54075": {"FFRPTH14": 0.230893558, "FSRPTH14": 1.269914569}, "54077": {"FFRPTH14": 0.295963064, "FSRPTH14": 0.47354090200000004}, "54079": {"FFRPTH14": 1.0392813109999999, "FSRPTH14": 0.317068874}, "54081": {"FFRPTH14": 0.600708069, "FSRPTH14": 0.575146023}, "54083": {"FFRPTH14": 0.475721227, "FSRPTH14": 0.9174623670000001}, "54085": {"FFRPTH14": 0.699230846, "FSRPTH14": 0.599340725}, "54087": {"FFRPTH14": 0.34097108600000003, "FSRPTH14": 0.204582651}, "54089": {"FFRPTH14": 0.372661549, "FSRPTH14": 0.372661549}, "54091": {"FFRPTH14": 0.527271662, "FSRPTH14": 0.41010018200000004}, "54093": {"FFRPTH14": 0.8661758340000001, "FSRPTH14": 1.5879890280000002}, "54095": {"FFRPTH14": 0.32974280100000003, "FSRPTH14": 0.32974280100000003}, "54097": {"FFRPTH14": 0.566091141, "FSRPTH14": 0.727831467}, "54099": {"FFRPTH14": 0.413404017, "FSRPTH14": 0.2918146}, "54101": {"FFRPTH14": 0.113199004, "FSRPTH14": 0.452796015}, "54103": {"FFRPTH14": 0.938203653, "FSRPTH14": 0.875656743}, "54105": {"FFRPTH14": 0.0, "FSRPTH14": 0.684345595}, "54107": {"FFRPTH14": 0.9392720059999999, "FSRPTH14": 0.742140844}, "54109": {"FFRPTH14": 0.265510222, "FSRPTH14": 0.531020444}, "55001": {"FFRPTH14": 0.5936186, "FSRPTH14": 0.74202325}, "55003": {"FFRPTH14": 0.745202757, "FSRPTH14": 1.304104825}, "55005": {"FFRPTH14": 0.63799362, "FSRPTH14": 0.96799032}, "55007": {"FFRPTH14": 0.4671338, "FSRPTH14": 2.268935602}, "55009": {"FFRPTH14": 0.670121167, "FSRPTH14": 0.8454435659999999}, "55011": {"FFRPTH14": 0.227479527, "FSRPTH14": 1.5923566880000002}, "55013": {"FFRPTH14": 0.26096033399999996, "FSRPTH14": 1.891962422}, "55015": {"FFRPTH14": 0.42431957299999995, "FSRPTH14": 0.686993595}, "55017": {"FFRPTH14": 0.551528522, "FSRPTH14": 0.8194138040000001}, "55019": {"FFRPTH14": 0.319553787, "FSRPTH14": 0.8134096390000001}, "55021": {"FFRPTH14": 0.582884395, "FSRPTH14": 1.2010951159999999}, "55023": {"FFRPTH14": 0.488042948, "FSRPTH14": 1.037091264}, "55025": {"FFRPTH14": 0.8115688259999999, "FSRPTH14": 0.8541810320000001}, "55027": {"FFRPTH14": 0.429019803, "FSRPTH14": 0.598369725}, "55029": {"FFRPTH14": 0.8283512209999999, "FSRPTH14": 3.3134048839999997}, "55031": {"FFRPTH14": 0.503455536, "FSRPTH14": 1.1671014690000001}, "55033": {"FFRPTH14": 0.473987135, "FSRPTH14": 0.7674077420000001}, "55035": {"FFRPTH14": 0.87629475, "FSRPTH14": 0.777834666}, "55037": {"FFRPTH14": 0.446328944, "FSRPTH14": 1.7853157780000002}, "55039": {"FFRPTH14": 0.579801295, "FSRPTH14": 0.766516967}, "55041": {"FFRPTH14": 0.328695081, "FSRPTH14": 1.533910376}, "55043": {"FFRPTH14": 0.424472786, "FSRPTH14": 0.8103571359999999}, "55045": {"FFRPTH14": 0.43169738, "FSRPTH14": 0.998300192}, "55047": {"FFRPTH14": 0.26544914, "FSRPTH14": 1.2741558720000001}, "55049": {"FFRPTH14": 0.419727177, "FSRPTH14": 1.049317943}, "55051": {"FFRPTH14": 0.676018252, "FSRPTH14": 3.380091262}, "55053": {"FFRPTH14": 0.629478985, "FSRPTH14": 1.1136935890000002}, "55055": {"FFRPTH14": 0.497659814, "FSRPTH14": 0.805734937}, "55057": {"FFRPTH14": 0.303087706, "FSRPTH14": 0.795605228}, "55059": {"FFRPTH14": 0.654496989, "FSRPTH14": 0.737796606}, "55061": {"FFRPTH14": 0.391312855, "FSRPTH14": 1.173938564}, "55063": {"FFRPTH14": 0.677902907, "FSRPTH14": 0.88127378}, "55065": {"FFRPTH14": 0.296683083, "FSRPTH14": 0.949385866}, "55067": {"FFRPTH14": 0.566718187, "FSRPTH14": 1.3910355490000001}, "55069": {"FFRPTH14": 0.526445092, "FSRPTH14": 1.052890184}, "55071": {"FFRPTH14": 0.42415169700000005, "FSRPTH14": 0.873253493}, "55073": {"FFRPTH14": 0.574458683, "FSRPTH14": 0.7880394759999999}, "55075": {"FFRPTH14": 0.629570439, "FSRPTH14": 1.477069107}, "55077": {"FFRPTH14": 0.398671096, "FSRPTH14": 0.9302325579999999}, "55078": {"FFRPTH14": 0.221141088, "FSRPTH14": 0.0}, "55079": {"FFRPTH14": 0.6430323520000001, "FSRPTH14": 0.6587160679999999}, "55081": {"FFRPTH14": 0.484805747, "FSRPTH14": 0.7051719959999999}, "55083": {"FFRPTH14": 0.42761311700000004, "FSRPTH14": 1.256113531}, "55085": {"FFRPTH14": 0.759216039, "FSRPTH14": 1.827742316}, "55087": {"FFRPTH14": 0.714262167, "FSRPTH14": 0.939529466}, "55089": {"FFRPTH14": 0.60592203, "FSRPTH14": 0.8345718529999999}, "55091": {"FFRPTH14": 0.6816632579999999, "FSRPTH14": 1.4996591680000002}, "55093": {"FFRPTH14": 0.537135602, "FSRPTH14": 0.805703403}, "55095": {"FFRPTH14": 0.575546193, "FSRPTH14": 0.897852062}, "55097": {"FFRPTH14": 0.638460884, "FSRPTH14": 0.950597316}, "55099": {"FFRPTH14": 0.365630713, "FSRPTH14": 1.535648995}, "55101": {"FFRPTH14": 0.538011816, "FSRPTH14": 0.660985945}, "55103": {"FFRPTH14": 0.452949836, "FSRPTH14": 0.736043483}, "55105": {"FFRPTH14": 0.6452093210000001, "FSRPTH14": 0.7630841009999999}, "55107": {"FFRPTH14": 0.418614386, "FSRPTH14": 0.837228773}, "55109": {"FFRPTH14": 0.564782904, "FSRPTH14": 0.8068327209999999}, "55111": {"FFRPTH14": 0.85201723, "FSRPTH14": 1.309582038}, "55113": {"FFRPTH14": 0.5475451720000001, "FSRPTH14": 3.1027559769999997}, "55115": {"FFRPTH14": 0.384809639, "FSRPTH14": 1.106327714}, "55117": {"FFRPTH14": 0.589816983, "FSRPTH14": 0.867377917}, "55119": {"FFRPTH14": 0.29211295, "FSRPTH14": 0.827653359}, "55121": {"FFRPTH14": 0.47443152899999996, "FSRPTH14": 0.84719916}, "55123": {"FFRPTH14": 0.362294974, "FSRPTH14": 0.889269482}, "55125": {"FFRPTH14": 0.747733433, "FSRPTH14": 4.065800542}, "55127": {"FFRPTH14": 0.676152115, "FSRPTH14": 1.0818433840000001}, "55129": {"FFRPTH14": 0.318593093, "FSRPTH14": 2.166433032}, "55131": {"FFRPTH14": 0.562847558, "FSRPTH14": 0.5778568270000001}, "55133": {"FFRPTH14": 0.652969493, "FSRPTH14": 0.756735962}, "55135": {"FFRPTH14": 0.7106365, "FSRPTH14": 0.941113202}, "55137": {"FFRPTH14": 0.330879312, "FSRPTH14": 1.323517247}, "55139": {"FFRPTH14": 0.5427376389999999, "FSRPTH14": 0.7256166270000001}, "55141": {"FFRPTH14": 0.557004673, "FSRPTH14": 0.8966416690000001}, "56001": {"FFRPTH14": 0.7140779140000001, "FSRPTH14": 0.925656555}, "56003": {"FFRPTH14": 0.419111484, "FSRPTH14": 0.586756077}, "56005": {"FFRPTH14": 0.68294702, "FSRPTH14": 0.641556291}, "56007": {"FFRPTH14": 0.44152895200000003, "FSRPTH14": 1.6399646780000001}, "56009": {"FFRPTH14": 0.56749663, "FSRPTH14": 1.20593034}, "56011": {"FFRPTH14": 0.82781457, "FSRPTH14": 1.793598234}, "56013": {"FFRPTH14": 0.49136427299999996, "FSRPTH14": 0.9581603320000001}, "56015": {"FFRPTH14": 0.813970697, "FSRPTH14": 0.8879680329999999}, "56017": {"FFRPTH14": 1.03820598, "FSRPTH14": 1.6611295680000002}, "56019": {"FFRPTH14": 0.8165169720000001, "FSRPTH14": 0.9331622540000001}, "56021": {"FFRPTH14": 0.674350808, "FSRPTH14": 0.549855274}, "56023": {"FFRPTH14": 0.6463079660000001, "FSRPTH14": 1.1848979370000001}, "56025": {"FFRPTH14": 0.649318828, "FSRPTH14": 0.784083113}, "56027": {"FFRPTH14": 1.218026797, "FSRPTH14": 1.218026797}, "56029": {"FFRPTH14": 0.620925179, "FSRPTH14": 1.37983373}, "56031": {"FFRPTH14": 0.568246392, "FSRPTH14": 1.4774406180000001}, "56033": {"FFRPTH14": 0.732551945, "FSRPTH14": 0.99893447}, "56035": {"FFRPTH14": 0.298299692, "FSRPTH14": 1.193198767}, "56037": {"FFRPTH14": 0.733170407, "FSRPTH14": 0.710953122}, "56039": {"FFRPTH14": 1.003052769, "FSRPTH14": 2.398604448}, "56041": {"FFRPTH14": 0.76540375, "FSRPTH14": 0.76540375}, "56043": {"FFRPTH14": 0.7209805340000001, "FSRPTH14": 1.321797645}, "56045": {"FFRPTH14": 0.416608804, "FSRPTH14": 1.527565616}}
try:
retval = data[county]
except:
retval = None
return retval
| def get_county_fda_restaurants_data(county):
data = {'01001': {'FFRPTH14': 0.649878148, 'FSRPTH14': 0.523512952}, '01003': {'FFRPTH14': 0.659633903, 'FSRPTH14': 1.104387065}, '01005': {'FFRPTH14': 0.818239298, 'FSRPTH14': 0.55789043}, '01007': {'FFRPTH14': 0.22216297899999998, 'FSRPTH14': 0.22216297899999998}, '01009': {'FFRPTH14': 0.363831667, 'FSRPTH14': 0.259879762}, '01011': {'FFRPTH14': 0.2787068, 'FSRPTH14': 0.092902267}, '01013': {'FFRPTH14': 0.837603469, 'FSRPTH14': 0.492707923}, '01015': {'FFRPTH14': 0.888574485, 'FSRPTH14': 0.66427413}, '01017': {'FFRPTH14': 0.763000352, 'FSRPTH14': 0.469538678}, '01019': {'FFRPTH14': 0.576103238, 'FSRPTH14': 0.42247570799999995}, '01021': {'FFRPTH14': 0.455259384, 'FSRPTH14': 0.409733446}, '01023': {'FFRPTH14': 0.45034902, 'FSRPTH14': 0.37529085}, '01025': {'FFRPTH14': 1.042293045, 'FSRPTH14': 0.60132291}, '01027': {'FFRPTH14': 0.295159386, 'FSRPTH14': 0.442739079}, '01029': {'FFRPTH14': 0.530503979, 'FSRPTH14': 0.132625995}, '01031': {'FFRPTH14': 0.667858335, 'FSRPTH14': 0.550000982}, '01033': {'FFRPTH14': 0.953376235, 'FSRPTH14': 0.696698018}, '01035': {'FFRPTH14': 0.5524861879999999, 'FSRPTH14': 0.31570639300000003}, '01037': {'FFRPTH14': 0.091861106, 'FSRPTH14': 0.0}, '01039': {'FFRPTH14': 0.633011552, 'FSRPTH14': 0.474758664}, '01041': {'FFRPTH14': 0.357730557, 'FSRPTH14': 0.429276669}, '01043': {'FFRPTH14': 0.651994735, 'FSRPTH14': 0.590485798}, '01045': {'FFRPTH14': 0.687090777, 'FSRPTH14': 0.6062565679999999}, '01047': {'FFRPTH14': 0.45551533200000005, 'FSRPTH14': 0.359617367}, '01049': {'FFRPTH14': 0.605079856, 'FSRPTH14': 0.43622036200000003}, '01051': {'FFRPTH14': 0.555713351, 'FSRPTH14': 0.469269052}, '01053': {'FFRPTH14': 0.715554024, 'FSRPTH14': 0.530040018}, '01055': {'FFRPTH14': 0.7630564759999999, 'FSRPTH14': 0.550559736}, '01057': {'FFRPTH14': 0.53336494, 'FSRPTH14': 0.53336494}, '01059': {'FFRPTH14': 0.5696022279999999, 'FSRPTH14': 0.506313091}, '01061': {'FFRPTH14': 0.37436358200000003, 'FSRPTH14': 0.41179994}, '01063': {'FFRPTH14': 0.11691804, 'FSRPTH14': 0.233836081}, '01065': {'FFRPTH14': 0.461011591, 'FSRPTH14': 0.263435195}, '01067': {'FFRPTH14': 0.581733566, 'FSRPTH14': 0.639906923}, '01069': {'FFRPTH14': 0.930964652, 'FSRPTH14': 0.739013177}, '01071': {'FFRPTH14': 0.550650337, 'FSRPTH14': 0.474698566}, '01073': {'FFRPTH14': 0.9715599290000001, 'FSRPTH14': 0.5690132920000001}, '01075': {'FFRPTH14': 0.42595484899999997, 'FSRPTH14': 0.7099247479999999}, '01077': {'FFRPTH14': 0.773395205, 'FSRPTH14': 0.751912005}, '01079': {'FFRPTH14': 0.477940078, 'FSRPTH14': 0.5078113329999999}, '01081': {'FFRPTH14': 0.82979482, 'FSRPTH14': 0.706622152}, '01083': {'FFRPTH14': 0.561754436, 'FSRPTH14': 0.429576922}, '01085': {'FFRPTH14': 0.0, 'FSRPTH14': 0.189035917}, '01087': {'FFRPTH14': 0.46332046299999996, 'FSRPTH14': 0.10296010300000001}, '01089': {'FFRPTH14': 0.9420523609999999, 'FSRPTH14': 0.6451631320000001}, '01091': {'FFRPTH14': 0.94480358, 'FSRPTH14': 0.447538538}, '01093': {'FFRPTH14': 0.561593604, 'FSRPTH14': 0.660698358}, '01095': {'FFRPTH14': 0.750243036, 'FSRPTH14': 0.6340081999999999}, '01097': {'FFRPTH14': 0.60945792, 'FSRPTH14': 0.522736635}, '01099': {'FFRPTH14': 0.410078826, 'FSRPTH14': 0.45564314}, '01101': {'FFRPTH14': 0.928427112, 'FSRPTH14': 0.623372489}, '01103': {'FFRPTH14': 0.827710753, 'FSRPTH14': 0.560167883}, '01105': {'FFRPTH14': 0.10177081199999999, 'FSRPTH14': 0.610624873}, '01107': {'FFRPTH14': 0.39283083700000004, 'FSRPTH14': 0.294623128}, '01109': {'FFRPTH14': 0.9883494559999999, 'FSRPTH14': 0.658899638}, '01111': {'FFRPTH14': 0.399307866, 'FSRPTH14': 0.310572785}, '01113': {'FFRPTH14': 0.7381559520000001, 'FSRPTH14': 0.352301704}, '01115': {'FFRPTH14': 0.5651868, 'FSRPTH14': 0.5075146779999999}, '01117': {'FFRPTH14': 0.6822965809999999, 'FSRPTH14': 0.6387457360000001}, '01119': {'FFRPTH14': 0.53167249, 'FSRPTH14': 0.45571927700000003}, '01121': {'FFRPTH14': 0.602542977, 'FSRPTH14': 0.454981432}, '01123': {'FFRPTH14': 0.48584963, 'FSRPTH14': 0.412972185}, '01125': {'FFRPTH14': 0.796194093, 'FSRPTH14': 0.543983542}, '01127': {'FFRPTH14': 0.626231461, 'FSRPTH14': 0.519313895}, '01129': {'FFRPTH14': 0.178210764, 'FSRPTH14': 0.356421528}, '01131': {'FFRPTH14': 0.45053162700000005, 'FSRPTH14': 0.45053162700000005}, '01133': {'FFRPTH14': 0.414078675, 'FSRPTH14': 0.621118012}, '02013': {'FFRPTH14': 0.297619048, 'FSRPTH14': 0.297619048}, '02016': {'FFRPTH14': 0.0, 'FSRPTH14': 0.347826087}, '02020': {'FFRPTH14': 0.677718348, 'FSRPTH14': 0.767416365}, '02050': {'FFRPTH14': 0.39176180899999996, 'FSRPTH14': 0.39176180899999996}, '02060': {'FFRPTH14': 0.0, 'FSRPTH14': 2.089864159}, '02068': {'FFRPTH14': 1.041124414, 'FSRPTH14': 3.64393545}, '02070': {'FFRPTH14': 0.200481155, 'FSRPTH14': 0.40096231}, '02090': {'FFRPTH14': 0.49317109, 'FSRPTH14': 0.654206548}, '02100': {'FFRPTH14': 0.38971161299999996, 'FSRPTH14': 2.33826968}, '02105': {'FFRPTH14': 0.0, 'FSRPTH14': 0.0}, '02110': {'FFRPTH14': 0.9566129729999999, 'FSRPTH14': 0.894896007}, '02122': {'FFRPTH14': 0.678532282, 'FSRPTH14': 1.3396663009999998}, '02130': {'FFRPTH14': 0.870385145, 'FSRPTH14': 0.870385145}, '02150': {'FFRPTH14': 0.500500501, 'FSRPTH14': 0.786500787}, '02164': {'FFRPTH14': 0.0, 'FSRPTH14': 0.0}, '02170': {'FFRPTH14': 0.439304469, 'FSRPTH14': 0.51081915}, '02180': {'FFRPTH14': 0.101864113, 'FSRPTH14': 1.018641133}, '02185': {'FFRPTH14': 0.206121818, 'FSRPTH14': 0.515304545}, '02188': {'FFRPTH14': 0.25916807, 'FSRPTH14': 0.129584035}, '02195': {'FFRPTH14': 0.0, 'FSRPTH14': 0.0}, '02198': {'FFRPTH14': 0.0, 'FSRPTH14': 0.0}, '02220': {'FFRPTH14': 0.449438202, 'FSRPTH14': 0.898876404}, '02230': {'FFRPTH14': 0.0, 'FSRPTH14': 0.0}, '02240': {'FFRPTH14': 0.28855865, 'FSRPTH14': 1.0099552729999999}, '02261': {'FFRPTH14': 0.94856661, 'FSRPTH14': 1.5809443509999999}, '02270': {'FFRPTH14': 0.0, 'FSRPTH14': 0.0}, '02275': {'FFRPTH14': 0.0, 'FSRPTH14': 0.0}, '02282': {'FFRPTH14': 0.0, 'FSRPTH14': 0.0}, '02290': {'FFRPTH14': 0.0, 'FSRPTH14': 0.180277628}, '04001': {'FFRPTH14': 0.222754358, 'FSRPTH14': 0.250598652}, '04003': {'FFRPTH14': 0.47862657700000005, 'FSRPTH14': 0.753248384}, '04005': {'FFRPTH14': 0.871573626, 'FSRPTH14': 1.176624395}, '04007': {'FFRPTH14': 0.640072291, 'FSRPTH14': 1.035411058}, '04009': {'FFRPTH14': 0.421529626, 'FSRPTH14': 0.316147219}, '04011': {'FFRPTH14': 0.213995292, 'FSRPTH14': 0.7489835220000001}, '04012': {'FFRPTH14': 0.7414364090000001, 'FSRPTH14': 1.482872819}, '04013': {'FFRPTH14': 0.68041841, 'FSRPTH14': 0.583285684}, '04015': {'FFRPTH14': 0.5605794620000001, 'FSRPTH14': 0.634339918}, '04017': {'FFRPTH14': 0.499532844, 'FSRPTH14': 0.721547442}, '04019': {'FFRPTH14': 0.608253129, 'FSRPTH14': 0.648073301}, '04021': {'FFRPTH14': 0.28612801600000004, 'FSRPTH14': 0.271199598}, '04023': {'FFRPTH14': 0.578220366, 'FSRPTH14': 0.856622765}, '04025': {'FFRPTH14': 0.584891521, 'FSRPTH14': 0.9367403259999999}, '04027': {'FFRPTH14': 0.575654253, 'FSRPTH14': 0.37884938}, '05001': {'FFRPTH14': 0.591588685, 'FSRPTH14': 0.645369474}, '05003': {'FFRPTH14': 0.716058812, 'FSRPTH14': 0.286423525}, '05005': {'FFRPTH14': 0.783219522, 'FSRPTH14': 0.758743912}, '05007': {'FFRPTH14': 0.660281197, 'FSRPTH14': 0.631393895}, '05009': {'FFRPTH14': 0.618346059, 'FSRPTH14': 0.672115281}, '05011': {'FFRPTH14': 0.538213132, 'FSRPTH14': 0.538213132}, '05013': {'FFRPTH14': 0.384467512, 'FSRPTH14': 0.576701269}, '05015': {'FFRPTH14': 0.540657439, 'FSRPTH14': 1.838235294}, '05017': {'FFRPTH14': 0.447227191, 'FSRPTH14': 0.178890877}, '05019': {'FFRPTH14': 0.841601701, 'FSRPTH14': 0.48724309}, '05021': {'FFRPTH14': 0.595316841, 'FSRPTH14': 0.529170525}, '05023': {'FFRPTH14': 0.6241710229999999, 'FSRPTH14': 0.9362565340000001}, '05025': {'FFRPTH14': 0.118357202, 'FSRPTH14': 0.118357202}, '05027': {'FFRPTH14': 0.919232858, 'FSRPTH14': 0.33426649399999997}, '05029': {'FFRPTH14': 0.33202106, 'FSRPTH14': 0.569178959}, '05031': {'FFRPTH14': 0.7413332290000001, 'FSRPTH14': 0.682806922}, '05033': {'FFRPTH14': 0.45383081799999997, 'FSRPTH14': 0.486247305}, '05035': {'FFRPTH14': 0.6862032779999999, 'FSRPTH14': 0.403648987}, '05037': {'FFRPTH14': 0.696580949, 'FSRPTH14': 0.40633888700000004}, '05039': {'FFRPTH14': 0.386847195, 'FSRPTH14': 0.7736943909999999}, '05041': {'FFRPTH14': 0.733855186, 'FSRPTH14': 0.896934116}, '05043': {'FFRPTH14': 0.805498872, 'FSRPTH14': 0.6980990229999999}, '05045': {'FFRPTH14': 0.654146794, 'FSRPTH14': 0.579623741}, '05047': {'FFRPTH14': 0.336983993, 'FSRPTH14': 0.730131985}, '05049': {'FFRPTH14': 0.329896907, 'FSRPTH14': 0.329896907}, '05051': {'FFRPTH14': 0.873389367, 'FSRPTH14': 1.027516903}, '05053': {'FFRPTH14': 0.330687831, 'FSRPTH14': 0.496031746}, '05055': {'FFRPTH14': 0.64082025, 'FSRPTH14': 0.503501625}, '05057': {'FFRPTH14': 0.49267702799999996, 'FSRPTH14': 0.582254669}, '05059': {'FFRPTH14': 0.419563654, 'FSRPTH14': 0.269719492}, '05061': {'FFRPTH14': 0.666666667, 'FSRPTH14': 0.592592593}, '05063': {'FFRPTH14': 0.568197191, 'FSRPTH14': 0.730539246}, '05065': {'FFRPTH14': 0.22245291399999997, 'FSRPTH14': 0.5190568}, '05067': {'FFRPTH14': 0.5132884679999999, 'FSRPTH14': 0.456256416}, '05069': {'FFRPTH14': 0.7745826240000001, 'FSRPTH14': 0.442618643}, '05071': {'FFRPTH14': 0.422995578, 'FSRPTH14': 0.422995578}, '05073': {'FFRPTH14': 0.421881592, 'FSRPTH14': 0.14062719699999998}, '05075': {'FFRPTH14': 0.35437954, 'FSRPTH14': 0.649695824}, '05077': {'FFRPTH14': 0.304259635, 'FSRPTH14': 0.101419878}, '05079': {'FFRPTH14': 0.357909807, 'FSRPTH14': 0.429491768}, '05081': {'FFRPTH14': 0.47877433799999997, 'FSRPTH14': 0.23938716899999998}, '05083': {'FFRPTH14': 0.592039348, 'FSRPTH14': 0.409873395}, '05085': {'FFRPTH14': 0.531045181, 'FSRPTH14': 0.43322106899999996}, '05087': {'FFRPTH14': 0.190597205, 'FSRPTH14': 0.698856417}, '05089': {'FFRPTH14': 0.30549276, 'FSRPTH14': 0.672084072}, '05091': {'FFRPTH14': 0.552638851, 'FSRPTH14': 0.5065856129999999}, '05093': {'FFRPTH14': 0.723409065, 'FSRPTH14': 0.542556799}, '05095': {'FFRPTH14': 0.6594566079999999, 'FSRPTH14': 0.6594566079999999}, '05097': {'FFRPTH14': 0.440431623, 'FSRPTH14': 0.660647434}, '05099': {'FFRPTH14': 0.34391837700000005, 'FSRPTH14': 0.229278918}, '05101': {'FFRPTH14': 0.12651821900000002, 'FSRPTH14': 0.6325910929999999}, '05103': {'FFRPTH14': 0.644433704, 'FSRPTH14': 0.36249395799999995}, '05105': {'FFRPTH14': 0.09760859, 'FSRPTH14': 0.390434358}, '05107': {'FFRPTH14': 0.351229303, 'FSRPTH14': 0.45158053200000003}, '05109': {'FFRPTH14': 0.45355587799999997, 'FSRPTH14': 0.725689405}, '05111': {'FFRPTH14': 0.7011465809999999, 'FSRPTH14': 0.536170915}, '05113': {'FFRPTH14': 0.39555006200000004, 'FSRPTH14': 0.939431397}, '05115': {'FFRPTH14': 0.8227717920000001, 'FSRPTH14': 0.537966171}, '05117': {'FFRPTH14': 0.12042389199999999, 'FSRPTH14': 0.48169556799999996}, '05119': {'FFRPTH14': 0.8759822970000001, 'FSRPTH14': 0.883621678}, '05121': {'FFRPTH14': 0.455295658, 'FSRPTH14': 0.5691195720000001}, '05123': {'FFRPTH14': 0.37176103200000005, 'FSRPTH14': 0.44611323799999997}, '05125': {'FFRPTH14': 0.553063888, 'FSRPTH14': 0.337023306}, '05127': {'FFRPTH14': 0.374076499, 'FSRPTH14': 0.46759562299999996}, '05129': {'FFRPTH14': 0.504477235, 'FSRPTH14': 0.37835792700000004}, '05131': {'FFRPTH14': 0.7572411179999999, 'FSRPTH14': 0.788792831}, '05133': {'FFRPTH14': 0.40169861100000004, 'FSRPTH14': 0.631240675}, '05135': {'FFRPTH14': 0.532355377, 'FSRPTH14': 1.005560156}, '05137': {'FFRPTH14': 0.8003841840000001, 'FSRPTH14': 0.640307348}, '05139': {'FFRPTH14': 0.6711909909999999, 'FSRPTH14': 0.6960499170000001}, '05141': {'FFRPTH14': 0.356061955, 'FSRPTH14': 0.71212391}, '05143': {'FFRPTH14': 0.711076488, 'FSRPTH14': 0.8741258740000001}, '05145': {'FFRPTH14': 0.763436482, 'FSRPTH14': 0.5853013029999999}, '05147': {'FFRPTH14': 0.578871201, 'FSRPTH14': 0.28943560100000004}, '05149': {'FFRPTH14': 0.41000410000000004, 'FSRPTH14': 0.227780056}, '06001': {'FFRPTH14': 0.767262951, 'FSRPTH14': 0.96590708}, '06003': {'FFRPTH14': 1.792114695, 'FSRPTH14': 0.8960573479999999}, '06005': {'FFRPTH14': 0.38103532700000003, 'FSRPTH14': 1.088672364}, '06007': {'FFRPTH14': 0.66446368, 'FSRPTH14': 0.62432829}, '06009': {'FFRPTH14': 0.649874507, 'FSRPTH14': 0.8515596990000001}, '06011': {'FFRPTH14': 0.420187684, 'FSRPTH14': 0.7003128059999999}, '06013': {'FFRPTH14': 0.579481148, 'FSRPTH14': 0.676661217}, '06015': {'FFRPTH14': 0.36748493299999996, 'FSRPTH14': 0.77171836}, '06017': {'FFRPTH14': 0.589883498, 'FSRPTH14': 0.950367858}, '06019': {'FFRPTH14': 0.620099506, 'FSRPTH14': 0.528999745}, '06021': {'FFRPTH14': 0.500804865, 'FSRPTH14': 0.536576641}, '06023': {'FFRPTH14': 0.682447018, 'FSRPTH14': 0.993998917}, '06025': {'FFRPTH14': 0.563959105, 'FSRPTH14': 0.435532774}, '06027': {'FFRPTH14': 0.760456274, 'FSRPTH14': 1.629549158}, '06029': {'FFRPTH14': 0.628866816, 'FSRPTH14': 0.500806665}, '06031': {'FFRPTH14': 0.578961729, 'FSRPTH14': 0.299462963}, '06033': {'FFRPTH14': 0.514146828, 'FSRPTH14': 0.65436869}, '06035': {'FFRPTH14': 0.409461715, 'FSRPTH14': 0.472455825}, '06037': {'FFRPTH14': 0.770804328, 'FSRPTH14': 0.7730777959999999}, '06039': {'FFRPTH14': 0.50469757, 'FSRPTH14': 0.342935528}, '06041': {'FFRPTH14': 0.70949185, 'FSRPTH14': 1.2042186000000001}, '06043': {'FFRPTH14': 0.452437507, 'FSRPTH14': 0.7352109490000001}, '06045': {'FFRPTH14': 0.591790051, 'FSRPTH14': 1.263244148}, '06047': {'FFRPTH14': 0.484319681, 'FSRPTH14': 0.345406284}, '06049': {'FFRPTH14': 0.332483653, 'FSRPTH14': 0.8866230740000001}, '06051': {'FFRPTH14': 1.214545974, 'FSRPTH14': 2.643423591}, '06053': {'FFRPTH14': 0.584220483, 'FSRPTH14': 0.867057383}, '06055': {'FFRPTH14': 0.557645747, 'FSRPTH14': 1.00940939}, '06057': {'FFRPTH14': 0.6269402279999999, 'FSRPTH14': 0.930298403}, '06059': {'FFRPTH14': 0.886977172, 'FSRPTH14': 0.8580470920000001}, '06061': {'FFRPTH14': 0.836709767, 'FSRPTH14': 0.823257841}, '06063': {'FFRPTH14': 0.537461034, 'FSRPTH14': 2.042351929}, '06065': {'FFRPTH14': 0.612208713, 'FSRPTH14': 0.505737632}, '06067': {'FFRPTH14': 0.6808247629999999, 'FSRPTH14': 0.6538346829999999}, '06069': {'FFRPTH14': 0.463384077, 'FSRPTH14': 0.583520689}, '06071': {'FFRPTH14': 0.678778332, 'FSRPTH14': 0.479499616}, '06073': {'FFRPTH14': 0.806513145, 'FSRPTH14': 0.75748499}, '06075': {'FFRPTH14': 1.0839103829999999, 'FSRPTH14': 2.220608609}, '06077': {'FFRPTH14': 0.617666089, 'FSRPTH14': 0.49888414799999997}, '06079': {'FFRPTH14': 0.795462282, 'FSRPTH14': 1.171694442}, '06081': {'FFRPTH14': 0.7276744340000001, 'FSRPTH14': 1.026917363}, '06083': {'FFRPTH14': 0.7397859609999999, 'FSRPTH14': 0.8963664259999999}, '06085': {'FFRPTH14': 0.756886, 'FSRPTH14': 0.8698383040000001}, '06087': {'FFRPTH14': 0.654883666, 'FSRPTH14': 0.9749672559999999}, '06089': {'FFRPTH14': 0.695201442, 'FSRPTH14': 0.667393384}, '06091': {'FFRPTH14': 0.333000333, 'FSRPTH14': 0.9990009990000001}, '06093': {'FFRPTH14': 0.641789676, 'FSRPTH14': 1.077289814}, '06095': {'FFRPTH14': 0.649454574, 'FSRPTH14': 0.5566753489999999}, '06097': {'FFRPTH14': 0.589655641, 'FSRPTH14': 1.023402333}, '06099': {'FFRPTH14': 0.633462219, 'FSRPTH14': 0.541356436}, '06101': {'FFRPTH14': 0.667730863, 'FSRPTH14': 0.45906496799999996}, '06103': {'FFRPTH14': 0.539109201, 'FSRPTH14': 0.539109201}, '06105': {'FFRPTH14': 0.759301443, 'FSRPTH14': 0.911161731}, '06107': {'FFRPTH14': 0.497601474, 'FSRPTH14': 0.449587296}, '06109': {'FFRPTH14': 0.538723041, 'FSRPTH14': 0.984562798}, '06111': {'FFRPTH14': 0.713797806, 'FSRPTH14': 0.6972528240000001}, '06113': {'FFRPTH14': 0.693675033, 'FSRPTH14': 0.7129437829999999}, '06115': {'FFRPTH14': 0.392072033, 'FSRPTH14': 0.31095368100000004}, '08001': {'FFRPTH14': 0.657350047, 'FSRPTH14': 0.468049875}, '08003': {'FFRPTH14': 0.8654262220000001, 'FSRPTH14': 0.9272423809999999}, '08005': {'FFRPTH14': 0.738501117, 'FSRPTH14': 0.7530449029999999}, '08007': {'FFRPTH14': 0.571708592, 'FSRPTH14': 2.0418164}, '08009': {'FFRPTH14': 0.274348422, 'FSRPTH14': 0.274348422}, '08011': {'FFRPTH14': 0.177619893, 'FSRPTH14': 0.35523978700000003}, '08013': {'FFRPTH14': 0.8234051309999999, 'FSRPTH14': 1.101065001}, '08014': {'FFRPTH14': 1.094338408, 'FSRPTH14': 0.756380959}, '08015': {'FFRPTH14': 0.925774656, 'FSRPTH14': 2.23275064}, '08017': {'FFRPTH14': 0.0, 'FSRPTH14': 1.068947087}, '08019': {'FFRPTH14': 1.197344073, 'FSRPTH14': 2.176989224}, '08021': {'FFRPTH14': 0.120992136, 'FSRPTH14': 0.36297640700000006}, '08023': {'FFRPTH14': 0.0, 'FSRPTH14': 1.121076233}, '08025': {'FFRPTH14': 0.0, 'FSRPTH14': 0.18656716399999998}, '08027': {'FFRPTH14': 0.229305205, 'FSRPTH14': 2.063746847}, '08029': {'FFRPTH14': 0.535654503, 'FSRPTH14': 1.171744225}, '08031': {'FFRPTH14': 0.876688227, 'FSRPTH14': 1.2336901340000002}, '08033': {'FFRPTH14': 0.0, 'FSRPTH14': 2.527805865}, '08035': {'FFRPTH14': 0.6483641520000001, 'FSRPTH14': 0.6006903170000001}, '08037': {'FFRPTH14': 0.869220158, 'FSRPTH14': 2.418699571}, '08039': {'FFRPTH14': 0.289315974, 'FSRPTH14': 0.537301095}, '08041': {'FFRPTH14': 0.679709247, 'FSRPTH14': 0.593803644}, '08043': {'FFRPTH14': 0.32256677100000003, 'FSRPTH14': 0.774160251}, '08045': {'FFRPTH14': 0.800542977, 'FSRPTH14': 1.44445798}, '08047': {'FFRPTH14': 0.0, 'FSRPTH14': 0.34182191100000003}, '08049': {'FFRPTH14': 1.099958752, 'FSRPTH14': 3.6436133639999997}, '08051': {'FFRPTH14': 0.890302067, 'FSRPTH14': 3.116057234}, '08053': {'FFRPTH14': 0.0, 'FSRPTH14': 7.6335877860000005}, '08055': {'FFRPTH14': 0.619003405, 'FSRPTH14': 1.083255958}, '08057': {'FFRPTH14': 0.0, 'FSRPTH14': 1.4326647559999999}, '08059': {'FFRPTH14': 0.7591722870000001, 'FSRPTH14': 0.814677808}, '08061': {'FFRPTH14': 0.0, 'FSRPTH14': 1.426533524}, '08063': {'FFRPTH14': 0.991080278, 'FSRPTH14': 0.867195243}, '08065': {'FFRPTH14': 0.679624847, 'FSRPTH14': 1.359249694}, '08067': {'FFRPTH14': 0.852025413, 'FSRPTH14': 1.259515827}, '08069': {'FFRPTH14': 0.7774850209999999, 'FSRPTH14': 0.87312802}, '08071': {'FFRPTH14': 0.782806718, 'FSRPTH14': 0.853970965}, '08073': {'FFRPTH14': 0.54446461, 'FSRPTH14': 1.4519056259999998}, '08075': {'FFRPTH14': 0.5771621379999999, 'FSRPTH14': 0.665956313}, '08077': {'FFRPTH14': 0.613807291, 'FSRPTH14': 0.661023237}, '08079': {'FFRPTH14': 1.4326647559999999, 'FSRPTH14': 7.163323782000001}, '08081': {'FFRPTH14': 0.386757426, 'FSRPTH14': 1.160272277}, '08083': {'FFRPTH14': 0.543225206, 'FSRPTH14': 1.435666615}, '08085': {'FFRPTH14': 0.5382526360000001, 'FSRPTH14': 0.7584468959999999}, '08087': {'FFRPTH14': 0.38830838700000003, 'FSRPTH14': 0.8825190620000001}, '08089': {'FFRPTH14': 0.594980528, 'FSRPTH14': 0.919515361}, '08091': {'FFRPTH14': 1.29617628, 'FSRPTH14': 3.88852884}, '08093': {'FFRPTH14': 0.30590394600000004, 'FSRPTH14': 0.917711838}, '08095': {'FFRPTH14': 0.45840018299999996, 'FSRPTH14': 1.8336007330000001}, '08097': {'FFRPTH14': 1.0779530240000001, 'FSRPTH14': 4.368546465}, '08099': {'FFRPTH14': 0.8309788929999999, 'FSRPTH14': 0.498587336}, '08101': {'FFRPTH14': 0.599227799, 'FSRPTH14': 0.796911197}, '08103': {'FFRPTH14': 0.745489787, 'FSRPTH14': 1.341881616}, '08105': {'FFRPTH14': 0.43077453299999996, 'FSRPTH14': 1.033858878}, '08107': {'FFRPTH14': 1.047559187, 'FSRPTH14': 2.891263356}, '08109': {'FFRPTH14': 0.161394448, 'FSRPTH14': 0.645577792}, '08111': {'FFRPTH14': 5.555555556, 'FSRPTH14': 13.88888889}, '08113': {'FFRPTH14': 1.530612245, 'FSRPTH14': 3.826530612}, '08115': {'FFRPTH14': 0.42589437799999996, 'FSRPTH14': 1.7035775130000002}, '08117': {'FFRPTH14': 1.632430962, 'FSRPTH14': 4.013059448}, '08119': {'FFRPTH14': 0.598571978, 'FSRPTH14': 0.897857967}, '08121': {'FFRPTH14': 0.41841004200000004, 'FSRPTH14': 0.41841004200000004}, '08123': {'FFRPTH14': 0.536608204, 'FSRPTH14': 0.551013793}, '08125': {'FFRPTH14': 0.196039992, 'FSRPTH14': 1.2742599490000002}, '09001': {'FFRPTH14': 0.697031429, 'FSRPTH14': 1.022806361}, '09003': {'FFRPTH14': 0.667049004, 'FSRPTH14': 0.873065808}, '09005': {'FFRPTH14': 0.518938554, 'FSRPTH14': 1.070310769}, '09007': {'FFRPTH14': 0.6426462470000001, 'FSRPTH14': 1.0670352790000002}, '09009': {'FFRPTH14': 0.757015455, 'FSRPTH14': 0.882410653}, '09011': {'FFRPTH14': 0.686943685, 'FSRPTH14': 1.004837837}, '09013': {'FFRPTH14': 0.442632806, 'FSRPTH14': 0.627613681}, '09015': {'FFRPTH14': 0.529923588, 'FSRPTH14': 0.7008666809999999}, '10001': {'FFRPTH14': 0.511666579, 'FSRPTH14': 0.505852187}, '10003': {'FFRPTH14': 0.696482132, 'FSRPTH14': 0.7109544879999999}, '10005': {'FFRPTH14': 0.673467742, 'FSRPTH14': 1.380134599}, '11001': {'FFRPTH14': 1.273347873, 'FSRPTH14': 1.2232638679999999}, '12001': {'FFRPTH14': 0.7527888290000001, 'FSRPTH14': 0.7527888290000001}, '12003': {'FFRPTH14': 0.590558447, 'FSRPTH14': 0.479828738}, '12005': {'FFRPTH14': 0.75984021, 'FSRPTH14': 1.06712853}, '12007': {'FFRPTH14': 0.599206052, 'FSRPTH14': 0.41195416100000004}, '12009': {'FFRPTH14': 0.615926089, 'FSRPTH14': 0.8619373840000001}, '12011': {'FFRPTH14': 0.687981982, 'FSRPTH14': 0.7901628209999999}, '12013': {'FFRPTH14': 0.48169556799999996, 'FSRPTH14': 0.550509221}, '12015': {'FFRPTH14': 0.439236915, 'FSRPTH14': 0.7478898820000001}, '12017': {'FFRPTH14': 0.33721489200000004, 'FSRPTH14': 0.60985672}, '12019': {'FFRPTH14': 0.5956015579999999, 'FSRPTH14': 0.5005055110000001}, '12021': {'FFRPTH14': 0.530424885, 'FSRPTH14': 1.161200423}, '12023': {'FFRPTH14': 0.589474925, 'FSRPTH14': 0.604211798}, '12027': {'FFRPTH14': 0.314177996, 'FSRPTH14': 0.314177996}, '12029': {'FFRPTH14': 0.502923241, 'FSRPTH14': 0.251461621}, '12031': {'FFRPTH14': 0.823216717, 'FSRPTH14': 0.77531642}, '12033': {'FFRPTH14': 0.605165149, 'FSRPTH14': 0.653449602}, '12035': {'FFRPTH14': 0.36129989799999995, 'FSRPTH14': 0.712834935}, '12037': {'FFRPTH14': 0.423190859, 'FSRPTH14': 1.86203978}, '12039': {'FFRPTH14': 0.410535641, 'FSRPTH14': 0.302499946}, '12041': {'FFRPTH14': 0.353003471, 'FSRPTH14': 0.23533564699999998}, '12043': {'FFRPTH14': 0.146681335, 'FSRPTH14': 0.220022002}, '12045': {'FFRPTH14': 0.439036628, 'FSRPTH14': 0.689914701}, '12047': {'FFRPTH14': 0.498291572, 'FSRPTH14': 0.21355353100000002}, '12049': {'FFRPTH14': 0.327642069, 'FSRPTH14': 0.291237395}, '12051': {'FFRPTH14': 0.57135437, 'FSRPTH14': 0.415530451}, '12053': {'FFRPTH14': 0.46629325299999996, 'FSRPTH14': 0.60845583}, '12055': {'FFRPTH14': 0.407182703, 'FSRPTH14': 0.570055784}, '12057': {'FFRPTH14': 0.6358742470000001, 'FSRPTH14': 0.66474309}, '12059': {'FFRPTH14': 0.203562341, 'FSRPTH14': 0.508905852}, '12061': {'FFRPTH14': 0.538841491, 'FSRPTH14': 0.8082622359999999}, '12063': {'FFRPTH14': 0.553267351, 'FSRPTH14': 0.512284584}, '12065': {'FFRPTH14': 0.427046263, 'FSRPTH14': 0.355871886}, '12067': {'FFRPTH14': 0.226372383, 'FSRPTH14': 0.226372383}, '12069': {'FFRPTH14': 0.446640692, 'FSRPTH14': 0.6588742120000001}, '12071': {'FFRPTH14': 0.522432978, 'FSRPTH14': 0.8874002409999999}, '12073': {'FFRPTH14': 0.8944039890000001, 'FSRPTH14': 0.7641167940000001}, '12075': {'FFRPTH14': 0.429152046, 'FSRPTH14': 0.63110595}, '12077': {'FFRPTH14': 0.0, 'FSRPTH14': 0.47846890000000003}, '12079': {'FFRPTH14': 0.486013608, 'FSRPTH14': 0.324009072}, '12081': {'FFRPTH14': 0.511732898, 'FSRPTH14': 0.767599347}, '12083': {'FFRPTH14': 0.477640808, 'FSRPTH14': 0.518918409}, '12085': {'FFRPTH14': 0.6714822159999999, 'FSRPTH14': 1.153906331}, '12086': {'FFRPTH14': 0.61587593, 'FSRPTH14': 0.762709764}, '12087': {'FFRPTH14': 0.907488073, 'FSRPTH14': 2.800248911}, '12089': {'FFRPTH14': 0.639528054, 'FSRPTH14': 0.8614051340000001}, '12091': {'FFRPTH14': 0.758223416, 'FSRPTH14': 1.027927048}, '12093': {'FFRPTH14': 0.434238422, 'FSRPTH14': 0.664129352}, '12095': {'FFRPTH14': 0.7565835940000001, 'FSRPTH14': 0.837190074}, '12097': {'FFRPTH14': 0.5963682779999999, 'FSRPTH14': 0.693076648}, '12099': {'FFRPTH14': 0.651064956, 'FSRPTH14': 0.839945339}, '12101': {'FFRPTH14': 0.391485399, 'FSRPTH14': 0.552200457}, '12103': {'FFRPTH14': 0.653449853, 'FSRPTH14': 0.9252764640000001}, '12105': {'FFRPTH14': 0.456953413, 'FSRPTH14': 0.46798332299999995}, '12107': {'FFRPTH14': 0.38811804299999997, 'FSRPTH14': 0.38811804299999997}, '12109': {'FFRPTH14': 0.610318513, 'FSRPTH14': 0.9682496709999999}, '12111': {'FFRPTH14': 0.474181178, 'FSRPTH14': 0.539466993}, '12113': {'FFRPTH14': 0.507887555, 'FSRPTH14': 0.43445802899999997}, '12115': {'FFRPTH14': 0.463520438, 'FSRPTH14': 1.14620543}, '12117': {'FFRPTH14': 0.693760226, 'FSRPTH14': 0.752515163}, '12119': {'FFRPTH14': 0.23611718399999998, 'FSRPTH14': 0.568430258}, '12121': {'FFRPTH14': 0.499750125, 'FSRPTH14': 0.363454636}, '12123': {'FFRPTH14': 0.44283057299999995, 'FSRPTH14': 0.398547516}, '12125': {'FFRPTH14': 0.197498354, 'FSRPTH14': 0.065832785}, '12127': {'FFRPTH14': 0.530016886, 'FSRPTH14': 0.876793733}, '12129': {'FFRPTH14': 0.31814711100000004, 'FSRPTH14': 0.6681089339999999}, '12131': {'FFRPTH14': 0.731350561, 'FSRPTH14': 1.787745815}, '12133': {'FFRPTH14': 0.695268087, 'FSRPTH14': 0.44987935100000004}, '13001': {'FFRPTH14': 0.7011866240000001, 'FSRPTH14': 0.485436893}, '13003': {'FFRPTH14': 0.486440472, 'FSRPTH14': 0.121610118}, '13005': {'FFRPTH14': 0.620512366, 'FSRPTH14': 0.354578495}, '13007': {'FFRPTH14': 0.0, 'FSRPTH14': 0.0}, '13009': {'FFRPTH14': 0.8712888540000001, 'FSRPTH14': 0.6534666410000001}, '13011': {'FFRPTH14': 0.765236403, 'FSRPTH14': 0.929215633}, '13013': {'FFRPTH14': 0.546149645, 'FSRPTH14': 0.39595849299999997}, '13015': {'FFRPTH14': 0.570103012, 'FSRPTH14': 0.638908548}, '13017': {'FFRPTH14': 0.801649107, 'FSRPTH14': 0.629867155}, '13019': {'FFRPTH14': 0.481283422, 'FSRPTH14': 0.42780748700000004}, '13021': {'FFRPTH14': 1.124070043, 'FSRPTH14': 0.7407166759999999}, '13023': {'FFRPTH14': 0.390777648, 'FSRPTH14': 0.312622118}, '13025': {'FFRPTH14': 0.32578595899999996, 'FSRPTH14': 0.162892979}, '13027': {'FFRPTH14': 0.45401478799999995, 'FSRPTH14': 0.32429627699999997}, '13029': {'FFRPTH14': 0.796319236, 'FSRPTH14': 0.766825931}, '13031': {'FFRPTH14': 0.776839097, 'FSRPTH14': 0.707478464}, '13033': {'FFRPTH14': 0.352283236, 'FSRPTH14': 0.39631864}, '13035': {'FFRPTH14': 0.513522766, 'FSRPTH14': 0.470729202}, '13037': {'FFRPTH14': 0.154726907, 'FSRPTH14': 0.773634535}, '13039': {'FFRPTH14': 0.672727622, 'FSRPTH14': 0.845714725}, '13043': {'FFRPTH14': 1.102130786, 'FSRPTH14': 0.551065393}, '13045': {'FFRPTH14': 0.7099471479999999, 'FSRPTH14': 0.745006267}, '13047': {'FFRPTH14': 0.700995108, 'FSRPTH14': 0.441931699}, '13049': {'FFRPTH14': 0.46522447100000003, 'FSRPTH14': 0.310149647}, '13051': {'FFRPTH14': 1.0198356259999999, 'FSRPTH14': 1.150402817}, '13053': {'FFRPTH14': 0.16896173, 'FSRPTH14': 0.084480865}, '13055': {'FFRPTH14': 0.40097838700000005, 'FSRPTH14': 0.360880549}, '13057': {'FFRPTH14': 0.640734247, 'FSRPTH14': 0.610429249}, '13059': {'FFRPTH14': 0.99224396, 'FSRPTH14': 1.0418561579999999}, '13061': {'FFRPTH14': 0.0, 'FSRPTH14': 0.644745326}, '13063': {'FFRPTH14': 0.70643114, 'FSRPTH14': 0.321444857}, '13065': {'FFRPTH14': 0.7319572540000001, 'FSRPTH14': 0.29278290100000004}, '13067': {'FFRPTH14': 0.824918842, 'FSRPTH14': 0.752413537}, '13069': {'FFRPTH14': 0.6773959959999999, 'FSRPTH14': 0.350377239}, '13071': {'FFRPTH14': 0.563966856, 'FSRPTH14': 0.433820659}, '13073': {'FFRPTH14': 0.517029665, 'FSRPTH14': 0.5960203079999999}, '13075': {'FFRPTH14': 0.7551992559999999, 'FSRPTH14': 0.290461252}, '13077': {'FFRPTH14': 0.48682977899999996, 'FSRPTH14': 0.48682977899999996}, '13079': {'FFRPTH14': 0.080729797, 'FSRPTH14': 0.161459595}, '13081': {'FFRPTH14': 0.784860905, 'FSRPTH14': 0.566843987}, '13083': {'FFRPTH14': 0.48813228399999997, 'FSRPTH14': 0.42711574799999996}, '13085': {'FFRPTH14': 0.740514876, 'FSRPTH14': 0.60983578}, '13087': {'FFRPTH14': 0.77149155, 'FSRPTH14': 0.551065393}, '13089': {'FFRPTH14': 0.8239159970000001, 'FSRPTH14': 0.758833557}, '13091': {'FFRPTH14': 0.619755912, 'FSRPTH14': 0.238367658}, '13093': {'FFRPTH14': 0.422892585, 'FSRPTH14': 0.140964195}, '13095': {'FFRPTH14': 0.995595572, 'FSRPTH14': 0.627658078}, '13097': {'FFRPTH14': 0.612497838, 'FSRPTH14': 0.526027555}, '13099': {'FFRPTH14': 0.47659899, 'FSRPTH14': 1.3344771709999999}, '13101': {'FFRPTH14': 0.0, 'FSRPTH14': 0.249812641}, '13103': {'FFRPTH14': 0.433033217, 'FSRPTH14': 0.396947116}, '13105': {'FFRPTH14': 0.565901842, 'FSRPTH14': 0.25722811}, '13107': {'FFRPTH14': 0.527356625, 'FSRPTH14': 0.659195781}, '13109': {'FFRPTH14': 0.45879978, 'FSRPTH14': 0.550559736}, '13111': {'FFRPTH14': 0.841998905, 'FSRPTH14': 1.052498632}, '13113': {'FFRPTH14': 0.866282463, 'FSRPTH14': 0.8298074120000001}, '13115': {'FFRPTH14': 0.780737641, 'FSRPTH14': 0.624590113}, '13117': {'FFRPTH14': 0.636312909, 'FSRPTH14': 0.636312909}, '13119': {'FFRPTH14': 0.6737333809999999, 'FSRPTH14': 0.808480057}, '13121': {'FFRPTH14': 1.1512377059999999, 'FSRPTH14': 1.1141010059999998}, '13123': {'FFRPTH14': 0.728433175, 'FSRPTH14': 0.936556939}, '13125': {'FFRPTH14': 0.0, 'FSRPTH14': 0.327546675}, '13127': {'FFRPTH14': 1.095223608, 'FSRPTH14': 1.2290842709999998}, '13129': {'FFRPTH14': 0.624475886, 'FSRPTH14': 0.481738541}, '13131': {'FFRPTH14': 0.630939706, 'FSRPTH14': 0.197168658}, '13133': {'FFRPTH14': 0.424499697, 'FSRPTH14': 0.9702850209999999}, '13135': {'FFRPTH14': 0.766582908, 'FSRPTH14': 0.765443855}, '13137': {'FFRPTH14': 0.68568294, 'FSRPTH14': 0.639970744}, '13139': {'FFRPTH14': 0.581879944, 'FSRPTH14': 0.566153459}, '13141': {'FFRPTH14': 0.822658362, 'FSRPTH14': 0.235045246}, '13143': {'FFRPTH14': 0.663384658, 'FSRPTH14': 0.628469676}, '13145': {'FFRPTH14': 0.243338606, 'FSRPTH14': 0.39542523399999996}, '13147': {'FFRPTH14': 0.472869133, 'FSRPTH14': 0.433463372}, '13149': {'FFRPTH14': 0.34473843, 'FSRPTH14': 0.172369215}, '13151': {'FFRPTH14': 0.7107154379999999, 'FSRPTH14': 0.565766895}, '13153': {'FFRPTH14': 0.8383016679999999, 'FSRPTH14': 0.523100241}, '13155': {'FFRPTH14': 0.43936731100000004, 'FSRPTH14': 0.329525483}, '13157': {'FFRPTH14': 0.549539357, 'FSRPTH14': 0.50105059}, '13159': {'FFRPTH14': 0.22334723, 'FSRPTH14': 0.521143538}, '13161': {'FFRPTH14': 0.5383942389999999, 'FSRPTH14': 0.26919712}, '13163': {'FFRPTH14': 0.676007866, 'FSRPTH14': 0.43018682399999997}, '13165': {'FFRPTH14': 0.6575342470000001, 'FSRPTH14': 0.328767123}, '13167': {'FFRPTH14': 0.618492939, 'FSRPTH14': 0.20616431300000002}, '13169': {'FFRPTH14': 0.24316531800000002, 'FSRPTH14': 0.486330635}, '13171': {'FFRPTH14': 0.439391443, 'FSRPTH14': 0.49431537299999995}, '13173': {'FFRPTH14': 0.38561650399999997, 'FSRPTH14': 0.48202063}, '13175': {'FFRPTH14': 0.815029989, 'FSRPTH14': 0.73143717}, '13177': {'FFRPTH14': 0.445342743, 'FSRPTH14': 0.23979993800000002}, '13179': {'FFRPTH14': 0.659529433, 'FSRPTH14': 0.414123133}, '13181': {'FFRPTH14': 0.393597481, 'FSRPTH14': 0.6559958020000001}, '13183': {'FFRPTH14': 0.175305323, 'FSRPTH14': 0.116870216}, '13185': {'FFRPTH14': 0.960157853, 'FSRPTH14': 0.757555738}, '13187': {'FFRPTH14': 0.866050808, 'FSRPTH14': 0.737746985}, '13189': {'FFRPTH14': 0.701918577, 'FSRPTH14': 0.608329434}, '13191': {'FFRPTH14': 0.703531729, 'FSRPTH14': 0.9849444209999999}, '13193': {'FFRPTH14': 0.5075406029999999, 'FSRPTH14': 0.145011601}, '13195': {'FFRPTH14': 0.353207121, 'FSRPTH14': 0.17660356}, '13197': {'FFRPTH14': 0.454700466, 'FSRPTH14': 0.227350233}, '13199': {'FFRPTH14': 0.47174261700000003, 'FSRPTH14': 0.613265402}, '13201': {'FFRPTH14': 0.167841558, 'FSRPTH14': 0.67136623}, '13205': {'FFRPTH14': 0.658732598, 'FSRPTH14': 0.39523955899999996}, '13207': {'FFRPTH14': 0.480573731, 'FSRPTH14': 0.480573731}, '13209': {'FFRPTH14': 0.44488933399999997, 'FSRPTH14': 0.111222333}, '13211': {'FFRPTH14': 0.8353753620000001, 'FSRPTH14': 1.058142125}, '13213': {'FFRPTH14': 0.634356762, 'FSRPTH14': 0.152245623}, '13215': {'FFRPTH14': 0.970694968, 'FSRPTH14': 0.6122845179999999}, '13217': {'FFRPTH14': 0.569086086, 'FSRPTH14': 0.356884495}, '13219': {'FFRPTH14': 0.9403584759999999, 'FSRPTH14': 0.598409939}, '13221': {'FFRPTH14': 0.272609555, 'FSRPTH14': 0.0}, '13223': {'FFRPTH14': 0.422855685, 'FSRPTH14': 0.37587172}, '13225': {'FFRPTH14': 0.705742515, 'FSRPTH14': 0.445732115}, '13227': {'FFRPTH14': 0.466713338, 'FSRPTH14': 0.800080008}, '13229': {'FFRPTH14': 0.68453478, 'FSRPTH14': 0.315939129}, '13231': {'FFRPTH14': 0.224921278, 'FSRPTH14': 0.281151597}, '13233': {'FFRPTH14': 0.705030025, 'FSRPTH14': 0.583473124}, '13235': {'FFRPTH14': 0.9579378209999999, 'FSRPTH14': 0.43542628200000005}, '13237': {'FFRPTH14': 0.330313326, 'FSRPTH14': 0.70781427}, '13239': {'FFRPTH14': 0.0, 'FSRPTH14': 0.0}, '13241': {'FFRPTH14': 1.046604691, 'FSRPTH14': 1.66225451}, '13243': {'FFRPTH14': 0.546971147, 'FSRPTH14': 0.546971147}, '13245': {'FFRPTH14': 0.78463311, 'FSRPTH14': 0.6455842039999999}, '13247': {'FFRPTH14': 0.82047542, 'FSRPTH14': 0.672334025}, '13249': {'FFRPTH14': 0.38737168299999997, 'FSRPTH14': 0.193685842}, '13251': {'FFRPTH14': 0.354987575, 'FSRPTH14': 0.42598509100000004}, '13253': {'FFRPTH14': 0.46051116700000005, 'FSRPTH14': 0.46051116700000005}, '13255': {'FFRPTH14': 0.843908233, 'FSRPTH14': 0.562605489}, '13257': {'FFRPTH14': 0.588697017, 'FSRPTH14': 0.549450549}, '13259': {'FFRPTH14': 0.0, 'FSRPTH14': 0.17409470800000001}, '13261': {'FFRPTH14': 0.672387295, 'FSRPTH14': 0.5122950820000001}, '13263': {'FFRPTH14': 0.156494523, 'FSRPTH14': 0.156494523}, '13265': {'FFRPTH14': 0.0, 'FSRPTH14': 0.590667454}, '13267': {'FFRPTH14': 0.23786869600000002, 'FSRPTH14': 0.15857913099999998}, '13269': {'FFRPTH14': 0.7107320540000001, 'FSRPTH14': 0.11845534199999999}, '13271': {'FFRPTH14': 0.423780119, 'FSRPTH14': 0.302700085}, '13273': {'FFRPTH14': 0.657030223, 'FSRPTH14': 0.328515112}, '13275': {'FFRPTH14': 0.822972041, 'FSRPTH14': 0.711759603}, '13277': {'FFRPTH14': 0.958136792, 'FSRPTH14': 0.737028302}, '13279': {'FFRPTH14': 0.95300931, 'FSRPTH14': 0.6964298809999999}, '13281': {'FFRPTH14': 0.630744278, 'FSRPTH14': 0.901063255}, '13283': {'FFRPTH14': 0.44260843899999996, 'FSRPTH14': 0.44260843899999996}, '13285': {'FFRPTH14': 0.762930228, 'FSRPTH14': 0.719745498}, '13287': {'FFRPTH14': 0.981233902, 'FSRPTH14': 0.613271189}, '13289': {'FFRPTH14': 0.12019230800000001, 'FSRPTH14': 0.12019230800000001}, '13291': {'FFRPTH14': 0.818777293, 'FSRPTH14': 0.86426492}, '13293': {'FFRPTH14': 0.685557587, 'FSRPTH14': 0.49512492399999997}, '13295': {'FFRPTH14': 0.33715441700000004, 'FSRPTH14': 0.307836641}, '13297': {'FFRPTH14': 0.570678537, 'FSRPTH14': 0.388061405}, '13299': {'FFRPTH14': 0.816556385, 'FSRPTH14': 0.563142334}, '13301': {'FFRPTH14': 0.18115942, 'FSRPTH14': 0.0}, '13303': {'FFRPTH14': 0.581536225, 'FSRPTH14': 0.533074873}, '13305': {'FFRPTH14': 0.701192026, 'FSRPTH14': 0.701192026}, '13307': {'FFRPTH14': 0.0, 'FSRPTH14': 0.0}, '13309': {'FFRPTH14': 0.12507817400000001, 'FSRPTH14': 0.25015634800000003}, '13311': {'FFRPTH14': 0.786557025, 'FSRPTH14': 1.179835538}, '13313': {'FFRPTH14': 0.7919491609999999, 'FSRPTH14': 0.560159162}, '13315': {'FFRPTH14': 0.226065333, 'FSRPTH14': 0.226065333}, '13317': {'FFRPTH14': 0.40241448700000004, 'FSRPTH14': 0.704225352}, '13319': {'FFRPTH14': 0.10722710699999999, 'FSRPTH14': 0.536135535}, '13321': {'FFRPTH14': 0.334288443, 'FSRPTH14': 0.238777459}, '15001': {'FFRPTH14': 0.746691385, 'FSRPTH14': 0.7672897679999999}, '15003': {'FFRPTH14': 0.9245927559999999, 'FSRPTH14': 0.8056157159999999}, '15005': {'FFRPTH14': 0.0, 'FSRPTH14': 0.0}, '15007': {'FFRPTH14': 0.908123448, 'FSRPTH14': 1.319616885}, '15009': {'FFRPTH14': 0.754513278, 'FSRPTH14': 1.165508315}, '16001': {'FFRPTH14': 0.7202582609999999, 'FSRPTH14': 0.7789112140000001}, '16003': {'FFRPTH14': 0.259000259, 'FSRPTH14': 1.813001813}, '16005': {'FFRPTH14': 0.755876036, 'FSRPTH14': 0.659891778}, '16007': {'FFRPTH14': 0.503609199, 'FSRPTH14': 1.007218399}, '16009': {'FFRPTH14': 0.767712218, 'FSRPTH14': 0.54836587}, '16011': {'FFRPTH14': 0.30926240899999996, 'FSRPTH14': 0.41971327}, '16013': {'FFRPTH14': 1.070663812, 'FSRPTH14': 2.6533842290000003}, '16015': {'FFRPTH14': 0.146541618, 'FSRPTH14': 1.905041032}, '16017': {'FFRPTH14': 0.577131177, 'FSRPTH14': 0.9859324279999999}, '16019': {'FFRPTH14': 0.672049198, 'FSRPTH14': 0.727286118}, '16021': {'FFRPTH14': 0.54649786, 'FSRPTH14': 1.0019127429999999}, '16023': {'FFRPTH14': 0.7627765059999999, 'FSRPTH14': 0.7627765059999999}, '16025': {'FFRPTH14': 1.924927815, 'FSRPTH14': 1.924927815}, '16027': {'FFRPTH14': 0.536567836, 'FSRPTH14': 0.393811256}, '16029': {'FFRPTH14': 0.292525962, 'FSRPTH14': 0.585051923}, '16031': {'FFRPTH14': 0.807136788, 'FSRPTH14': 0.807136788}, '16033': {'FFRPTH14': 0.0, 'FSRPTH14': 1.153402537}, '16035': {'FFRPTH14': 0.350385424, 'FSRPTH14': 1.051156272}, '16037': {'FFRPTH14': 0.966183575, 'FSRPTH14': 2.173913043}, '16039': {'FFRPTH14': 0.421552847, 'FSRPTH14': 0.804782709}, '16041': {'FFRPTH14': 0.537593119, 'FSRPTH14': 0.46079410200000004}, '16043': {'FFRPTH14': 0.388590969, 'FSRPTH14': 0.6217455510000001}, '16045': {'FFRPTH14': 0.592908811, 'FSRPTH14': 0.592908811}, '16047': {'FFRPTH14': 0.464684015, 'FSRPTH14': 0.663834307}, '16049': {'FFRPTH14': 0.30835646, 'FSRPTH14': 1.171754548}, '16051': {'FFRPTH14': 0.407090781, 'FSRPTH14': 0.407090781}, '16053': {'FFRPTH14': 0.438250504, 'FSRPTH14': 0.657375756}, '16055': {'FFRPTH14': 0.6719791479999999, 'FSRPTH14': 0.7873695070000001}, '16057': {'FFRPTH14': 0.75499206, 'FSRPTH14': 0.807060477}, '16059': {'FFRPTH14': 0.38829924899999996, 'FSRPTH14': 1.8120631630000001}, '16061': {'FFRPTH14': 1.042209484, 'FSRPTH14': 0.521104742}, '16063': {'FFRPTH14': 0.0, 'FSRPTH14': 0.752445448}, '16065': {'FFRPTH14': 0.7361059990000001, 'FSRPTH14': 0.368053}, '16067': {'FFRPTH14': 0.24602666899999998, 'FSRPTH14': 0.590464006}, '16069': {'FFRPTH14': 0.6998775209999999, 'FSRPTH14': 0.724873147}, '16071': {'FFRPTH14': 1.195028681, 'FSRPTH14': 0.956022945}, '16073': {'FFRPTH14': 0.616577116, 'FSRPTH14': 0.880824452}, '16075': {'FFRPTH14': 0.525486075, 'FSRPTH14': 0.306533544}, '16077': {'FFRPTH14': 0.262570566, 'FSRPTH14': 0.393855849}, '16079': {'FFRPTH14': 0.645682002, 'FSRPTH14': 1.291364003}, '16081': {'FFRPTH14': 0.48351223299999996, 'FSRPTH14': 2.030751378}, '16083': {'FFRPTH14': 0.7786044440000001, 'FSRPTH14': 0.70445164}, '16085': {'FFRPTH14': 0.814166497, 'FSRPTH14': 2.646041115}, '16087': {'FFRPTH14': 0.59874264, 'FSRPTH14': 0.898113961}, '17001': {'FFRPTH14': 0.47769749799999994, 'FSRPTH14': 0.850898668}, '17003': {'FFRPTH14': 0.0, 'FSRPTH14': 0.53390283}, '17005': {'FFRPTH14': 0.405350628, 'FSRPTH14': 0.7527940240000001}, '17007': {'FFRPTH14': 0.48265236, 'FSRPTH14': 0.33414394199999997}, '17009': {'FFRPTH14': 0.43911007, 'FSRPTH14': 0.292740047}, '17011': {'FFRPTH14': 0.354609929, 'FSRPTH14': 0.8274231679999999}, '17013': {'FFRPTH14': 0.201775626, 'FSRPTH14': 2.4213075059999998}, '17015': {'FFRPTH14': 0.679578661, 'FSRPTH14': 0.88345226}, '17017': {'FFRPTH14': 0.608087565, 'FSRPTH14': 0.608087565}, '17019': {'FFRPTH14': 0.830384342, 'FSRPTH14': 0.8496956059999999}, '17021': {'FFRPTH14': 0.501593296, 'FSRPTH14': 0.796648177}, '17023': {'FFRPTH14': 0.927070457, 'FSRPTH14': 0.927070457}, '17025': {'FFRPTH14': 0.591715976, 'FSRPTH14': 0.73964497}, '17027': {'FFRPTH14': 0.47547349200000005, 'FSRPTH14': 0.9773621790000001}, '17029': {'FFRPTH14': 0.731432858, 'FSRPTH14': 0.825206302}, '17031': {'FFRPTH14': 0.835039882, 'FSRPTH14': 0.726776323}, '17033': {'FFRPTH14': 0.618779972, 'FSRPTH14': 0.567214974}, '17035': {'FFRPTH14': 0.276931598, 'FSRPTH14': 0.461552663}, '17037': {'FFRPTH14': 0.711156625, 'FSRPTH14': 0.663746183}, '17039': {'FFRPTH14': 0.491279784, 'FSRPTH14': 0.859739622}, '17041': {'FFRPTH14': 0.8547438279999999, 'FSRPTH14': 1.0055809740000001}, '17043': {'FFRPTH14': 0.903819845, 'FSRPTH14': 0.7483585429999999}, '17045': {'FFRPTH14': 0.448405358, 'FSRPTH14': 0.784709377}, '17047': {'FFRPTH14': 0.755629439, 'FSRPTH14': 0.45337766399999996}, '17049': {'FFRPTH14': 0.9906759909999999, 'FSRPTH14': 0.757575758}, '17051': {'FFRPTH14': 0.32007316, 'FSRPTH14': 1.051668953}, '17053': {'FFRPTH14': 0.43834015200000004, 'FSRPTH14': 1.46113384}, '17055': {'FFRPTH14': 0.558219786, 'FSRPTH14': 0.811956053}, '17057': {'FFRPTH14': 0.5554475520000001, 'FSRPTH14': 0.9720332159999999}, '17059': {'FFRPTH14': 0.0, 'FSRPTH14': 0.945000945}, '17061': {'FFRPTH14': 0.297751973, 'FSRPTH14': 0.669941938}, '17063': {'FFRPTH14': 0.753594447, 'FSRPTH14': 0.5156172529999999}, '17065': {'FFRPTH14': 0.36162005799999997, 'FSRPTH14': 0.482160077}, '17067': {'FFRPTH14': 0.538677009, 'FSRPTH14': 0.269338505}, '17069': {'FFRPTH14': 0.0, 'FSRPTH14': 1.453136353}, '17071': {'FFRPTH14': 0.28918449999999996, 'FSRPTH14': 0.43377675}, '17073': {'FFRPTH14': 0.463382694, 'FSRPTH14': 0.765588798}, '17075': {'FFRPTH14': 0.727171993, 'FSRPTH14': 0.5886630420000001}, '17077': {'FFRPTH14': 0.603247482, 'FSRPTH14': 0.8043299759999999}, '17079': {'FFRPTH14': 0.519588486, 'FSRPTH14': 0.415670789}, '17081': {'FFRPTH14': 0.7785332429999999, 'FSRPTH14': 0.6487777029999999}, '17083': {'FFRPTH14': 0.575960303, 'FSRPTH14': 0.930397413}, '17085': {'FFRPTH14': 0.40442167700000003, 'FSRPTH14': 1.797429676}, '17087': {'FFRPTH14': 0.396793905, 'FSRPTH14': 0.476152686}, '17089': {'FFRPTH14': 0.6163404170000001, 'FSRPTH14': 0.597376097}, '17091': {'FFRPTH14': 0.691358025, 'FSRPTH14': 0.6015712679999999}, '17093': {'FFRPTH14': 0.585084466, 'FSRPTH14': 0.46147507200000004}, '17095': {'FFRPTH14': 0.7490061259999999, 'FSRPTH14': 0.787416697}, '17097': {'FFRPTH14': 0.7728457459999999, 'FSRPTH14': 0.689179876}, '17099': {'FFRPTH14': 0.620274899, 'FSRPTH14': 1.1326759020000001}, '17101': {'FFRPTH14': 0.36321811200000004, 'FSRPTH14': 0.726436225}, '17103': {'FFRPTH14': 0.37426227100000004, 'FSRPTH14': 0.9212609759999999}, '17105': {'FFRPTH14': 0.527662718, 'FSRPTH14': 0.844260349}, '17107': {'FFRPTH14': 0.470651516, 'FSRPTH14': 0.7059772740000001}, '17109': {'FFRPTH14': 0.752823087, 'FSRPTH14': 0.90966123}, '17111': {'FFRPTH14': 0.696426421, 'FSRPTH14': 0.69968075}, '17113': {'FFRPTH14': 0.7296292679999999, 'FSRPTH14': 0.695158594}, '17115': {'FFRPTH14': 0.581449008, 'FSRPTH14': 0.756806645}, '17117': {'FFRPTH14': 0.430542699, 'FSRPTH14': 0.753449723}, '17119': {'FFRPTH14': 0.701530612, 'FSRPTH14': 0.772809124}, '17121': {'FFRPTH14': 0.622229136, 'FSRPTH14': 0.700007778}, '17123': {'FFRPTH14': 0.416181122, 'FSRPTH14': 0.915598468}, '17125': {'FFRPTH14': 0.5036695929999999, 'FSRPTH14': 0.7914807890000001}, '17127': {'FFRPTH14': 0.33545790000000003, 'FSRPTH14': 0.46964106}, '17129': {'FFRPTH14': 0.15910899, 'FSRPTH14': 0.6364359589999999}, '17131': {'FFRPTH14': 0.313577924, 'FSRPTH14': 0.7525870179999999}, '17133': {'FFRPTH14': 0.6523930960000001, 'FSRPTH14': 0.859972718}, '17135': {'FFRPTH14': 0.681222112, 'FSRPTH14': 0.8855887459999999}, '17137': {'FFRPTH14': 0.629849123, 'FSRPTH14': 0.744367145}, '17139': {'FFRPTH14': 0.13479814, 'FSRPTH14': 0.606591629}, '17141': {'FFRPTH14': 0.5567821829999999, 'FSRPTH14': 0.729576654}, '17143': {'FFRPTH14': 0.720695712, 'FSRPTH14': 0.827465447}, '17145': {'FFRPTH14': 0.46142488, 'FSRPTH14': 0.8305647840000001}, '17147': {'FFRPTH14': 0.365163411, 'FSRPTH14': 0.669466253}, '17149': {'FFRPTH14': 0.312070903, 'FSRPTH14': 0.748970166}, '17151': {'FFRPTH14': 0.0, 'FSRPTH14': 0.467726848}, '17153': {'FFRPTH14': 0.343938091, 'FSRPTH14': 0.343938091}, '17155': {'FFRPTH14': 0.0, 'FSRPTH14': 1.71998624}, '17157': {'FFRPTH14': 0.578052268, 'FSRPTH14': 0.7301712859999999}, '17159': {'FFRPTH14': 0.99620198, 'FSRPTH14': 0.43583836600000003}, '17161': {'FFRPTH14': 0.7462533290000001, 'FSRPTH14': 0.848948741}, '17163': {'FFRPTH14': 0.718777401, 'FSRPTH14': 0.6209333570000001}, '17165': {'FFRPTH14': 0.6907199740000001, 'FSRPTH14': 0.6500893870000001}, '17167': {'FFRPTH14': 0.773881013, 'FSRPTH14': 0.8995110479999999}, '17169': {'FFRPTH14': 0.409276944, 'FSRPTH14': 0.545702592}, '17171': {'FFRPTH14': 0.38431975399999996, 'FSRPTH14': 1.152959262}, '17173': {'FFRPTH14': 0.317489115, 'FSRPTH14': 0.8164005809999999}, '17175': {'FFRPTH14': 0.0, 'FSRPTH14': 0.344056425}, '17177': {'FFRPTH14': 0.5814579520000001, 'FSRPTH14': 0.6675998710000001}, '17179': {'FFRPTH14': 0.8032010140000001, 'FSRPTH14': 0.7589881140000001}, '17181': {'FFRPTH14': 0.7451137729999999, 'FSRPTH14': 0.687797329}, '17183': {'FFRPTH14': 0.52679109, 'FSRPTH14': 0.62713225}, '17185': {'FFRPTH14': 0.8658758329999999, 'FSRPTH14': 0.5195255}, '17187': {'FFRPTH14': 0.44757748700000005, 'FSRPTH14': 0.615419044}, '17189': {'FFRPTH14': 0.6974959890000001, 'FSRPTH14': 0.5579967920000001}, '17191': {'FFRPTH14': 0.30224264, 'FSRPTH14': 0.846279393}, '17193': {'FFRPTH14': 0.556560456, 'FSRPTH14': 0.765270628}, '17195': {'FFRPTH14': 0.527463253, 'FSRPTH14': 0.861523314}, '17197': {'FFRPTH14': 0.695924683, 'FSRPTH14': 0.47708044299999997}, '17199': {'FFRPTH14': 0.626790831, 'FSRPTH14': 0.701408787}, '17201': {'FFRPTH14': 0.700071393, 'FSRPTH14': 0.720865593}, '17203': {'FFRPTH14': 0.484854671, 'FSRPTH14': 0.637966673}, '18001': {'FFRPTH14': 0.459889052, 'FSRPTH14': 0.60360438}, '18003': {'FFRPTH14': 0.655884652, 'FSRPTH14': 0.702343148}, '18005': {'FFRPTH14': 0.8850991690000001, 'FSRPTH14': 0.698106386}, '18007': {'FFRPTH14': 0.574712644, 'FSRPTH14': 0.229885057}, '18009': {'FFRPTH14': 0.403193291, 'FSRPTH14': 0.483831949}, '18011': {'FFRPTH14': 0.61374465, 'FSRPTH14': 0.74295405}, '18013': {'FFRPTH14': 0.267343938, 'FSRPTH14': 0.802031814}, '18015': {'FFRPTH14': 0.652512172, 'FSRPTH14': 0.652512172}, '18017': {'FFRPTH14': 0.8064935740000001, 'FSRPTH14': 0.49430251299999994}, '18019': {'FFRPTH14': 0.74390436, 'FSRPTH14': 0.638882568}, '18021': {'FFRPTH14': 0.527068745, 'FSRPTH14': 0.60236428}, '18023': {'FFRPTH14': 0.640712717, 'FSRPTH14': 0.48816207}, '18025': {'FFRPTH14': 0.093852651, 'FSRPTH14': 1.032379165}, '18027': {'FFRPTH14': 0.5805249170000001, 'FSRPTH14': 0.48886308799999995}, '18029': {'FFRPTH14': 0.504989294, 'FSRPTH14': 0.504989294}, '18031': {'FFRPTH14': 0.829437491, 'FSRPTH14': 0.6786306740000001}, '18033': {'FFRPTH14': 0.637047873, 'FSRPTH14': 0.7550197009999999}, '18035': {'FFRPTH14': 0.657703675, 'FSRPTH14': 0.597912431}, '18037': {'FFRPTH14': 0.921006022, 'FSRPTH14': 0.9918526390000001}, '18039': {'FFRPTH14': 0.68326641, 'FSRPTH14': 0.5594862629999999}, '18041': {'FFRPTH14': 0.9800579509999999, 'FSRPTH14': 0.468723368}, '18043': {'FFRPTH14': 0.8795074759999999, 'FSRPTH14': 0.5382060670000001}, '18045': {'FFRPTH14': 0.420218514, 'FSRPTH14': 0.780405811}, '18047': {'FFRPTH14': 0.654050754, 'FSRPTH14': 0.610447371}, '18049': {'FFRPTH14': 0.634146341, 'FSRPTH14': 0.975609756}, '18051': {'FFRPTH14': 0.59243461, 'FSRPTH14': 0.888651915}, '18053': {'FFRPTH14': 0.7146086420000001, 'FSRPTH14': 0.525018594}, '18055': {'FFRPTH14': 0.672248365, 'FSRPTH14': 0.702805109}, '18057': {'FFRPTH14': 0.723672688, 'FSRPTH14': 0.6972371559999999}, '18059': {'FFRPTH14': 0.6251910310000001, 'FSRPTH14': 0.402900886}, '18061': {'FFRPTH14': 0.483472862, 'FSRPTH14': 0.381689102}, '18063': {'FFRPTH14': 0.768954734, 'FSRPTH14': 0.7240990409999999}, '18065': {'FFRPTH14': 0.5102561489999999, 'FSRPTH14': 0.367384427}, '18067': {'FFRPTH14': 0.927912077, 'FSRPTH14': 0.626641922}, '18069': {'FFRPTH14': 0.844548575, 'FSRPTH14': 0.817305073}, '18071': {'FFRPTH14': 0.7779430270000001, 'FSRPTH14': 0.6177782860000001}, '18073': {'FFRPTH14': 0.6273338310000001, 'FSRPTH14': 0.71695295}, '18075': {'FFRPTH14': 0.424949242, 'FSRPTH14': 0.613815572}, '18077': {'FFRPTH14': 0.584723334, 'FSRPTH14': 0.8616975440000001}, '18079': {'FFRPTH14': 0.39285714299999996, 'FSRPTH14': 0.35714285700000004}, '18081': {'FFRPTH14': 0.847239355, 'FSRPTH14': 0.7116810579999999}, '18083': {'FFRPTH14': 0.6589698979999999, 'FSRPTH14': 0.896199062}, '18085': {'FFRPTH14': 0.687337712, 'FSRPTH14': 0.814622473}, '18087': {'FFRPTH14': 0.208138204, 'FSRPTH14': 0.676449162}, '18089': {'FFRPTH14': 0.8261462009999999, 'FSRPTH14': 0.607880415}, '18091': {'FFRPTH14': 0.6281181579999999, 'FSRPTH14': 0.798607372}, '18093': {'FFRPTH14': 0.481358306, 'FSRPTH14': 0.393838614}, '18095': {'FFRPTH14': 0.59199348, 'FSRPTH14': 0.661187524}, '18097': {'FFRPTH14': 0.890560593, 'FSRPTH14': 0.7374954909999999}, '18099': {'FFRPTH14': 0.912815505, 'FSRPTH14': 0.615619759}, '18101': {'FFRPTH14': 0.882093502, 'FSRPTH14': 0.882093502}, '18103': {'FFRPTH14': 0.611892974, 'FSRPTH14': 0.528453023}, '18105': {'FFRPTH14': 0.774387989, 'FSRPTH14': 0.8511291409999999}, '18107': {'FFRPTH14': 0.7078068470000001, 'FSRPTH14': 0.5243013679999999}, '18109': {'FFRPTH14': 0.5452484470000001, 'FSRPTH14': 0.444807943}, '18111': {'FFRPTH14': 0.7064142409999999, 'FSRPTH14': 0.777055665}, '18113': {'FFRPTH14': 0.546012012, 'FSRPTH14': 0.5040110879999999}, '18115': {'FFRPTH14': 0.331400166, 'FSRPTH14': 0.331400166}, '18117': {'FFRPTH14': 0.7133394479999999, 'FSRPTH14': 0.7133394479999999}, '18119': {'FFRPTH14': 0.333826124, 'FSRPTH14': 0.333826124}, '18121': {'FFRPTH14': 0.290141009, 'FSRPTH14': 0.464225614}, '18123': {'FFRPTH14': 0.719646345, 'FSRPTH14': 0.822452966}, '18125': {'FFRPTH14': 0.396070976, 'FSRPTH14': 0.554499366}, '18127': {'FFRPTH14': 0.664368311, 'FSRPTH14': 0.7002801120000001}, '18129': {'FFRPTH14': 0.391542678, 'FSRPTH14': 0.626468285}, '18131': {'FFRPTH14': 0.694069561, 'FSRPTH14': 0.616950721}, '18133': {'FFRPTH14': 0.611409432, 'FSRPTH14': 0.39874528200000003}, '18135': {'FFRPTH14': 0.315159155, 'FSRPTH14': 0.827292783}, '18137': {'FFRPTH14': 0.526371197, 'FSRPTH14': 0.701828263}, '18139': {'FFRPTH14': 0.591996211, 'FSRPTH14': 0.651195832}, '18141': {'FFRPTH14': 0.78843725, 'FSRPTH14': 0.691283845}, '18143': {'FFRPTH14': 0.8012820509999999, 'FSRPTH14': 0.421727395}, '18145': {'FFRPTH14': 0.515937998, 'FSRPTH14': 0.6729626059999999}, '18147': {'FFRPTH14': 0.48074611799999994, 'FSRPTH14': 0.19229844699999998}, '18149': {'FFRPTH14': 0.34671058299999996, 'FSRPTH14': 0.520065875}, '18151': {'FFRPTH14': 0.612102134, 'FSRPTH14': 1.195056547}, '18153': {'FFRPTH14': 0.522565321, 'FSRPTH14': 0.712589074}, '18155': {'FFRPTH14': 0.478377344, 'FSRPTH14': 0.574052813}, '18157': {'FFRPTH14': 0.7483312759999999, 'FSRPTH14': 0.710095371}, '18159': {'FFRPTH14': 0.64871878, 'FSRPTH14': 0.38923126799999996}, '18161': {'FFRPTH14': 0.552028705, 'FSRPTH14': 0.276014353}, '18163': {'FFRPTH14': 0.884586222, 'FSRPTH14': 0.758216762}, '18165': {'FFRPTH14': 0.446058752, 'FSRPTH14': 0.637226789}, '18167': {'FFRPTH14': 0.859718049, 'FSRPTH14': 0.850473769}, '18169': {'FFRPTH14': 0.806151556, 'FSRPTH14': 0.651122411}, '18171': {'FFRPTH14': 0.0, 'FSRPTH14': 0.35919540200000005}, '18173': {'FFRPTH14': 0.474251419, 'FSRPTH14': 0.45789792100000004}, '18175': {'FFRPTH14': 0.35870579, 'FSRPTH14': 0.502188105}, '18177': {'FFRPTH14': 0.6354272879999999, 'FSRPTH14': 0.8275332120000001}, '18179': {'FFRPTH14': 0.46658531299999995, 'FSRPTH14': 0.610150025}, '18181': {'FFRPTH14': 0.7361059990000001, 'FSRPTH14': 0.858790332}, '18183': {'FFRPTH14': 0.598748615, 'FSRPTH14': 0.6885609079999999}, '19001': {'FFRPTH14': 0.402468473, 'FSRPTH14': 0.6707807889999999}, '19003': {'FFRPTH14': 0.516129032, 'FSRPTH14': 0.774193548}, '19005': {'FFRPTH14': 0.21370565600000002, 'FSRPTH14': 1.424704374}, '19007': {'FFRPTH14': 0.6318616220000001, 'FSRPTH14': 0.710844325}, '19009': {'FFRPTH14': 0.17259233699999998, 'FSRPTH14': 0.5177770110000001}, '19011': {'FFRPTH14': 0.23364486, 'FSRPTH14': 0.46728972}, '19013': {'FFRPTH14': 0.6019699470000001, 'FSRPTH14': 0.7524624329999999}, '19015': {'FFRPTH14': 0.302651988, 'FSRPTH14': 0.605303976}, '19017': {'FFRPTH14': 0.525868695, 'FSRPTH14': 1.0112859509999998}, '19019': {'FFRPTH14': 0.33273124800000003, 'FSRPTH14': 0.475330355}, '19021': {'FFRPTH14': 0.437360288, 'FSRPTH14': 0.680338225}, '19023': {'FFRPTH14': 0.066640011, 'FSRPTH14': 0.6664001070000001}, '19025': {'FFRPTH14': 0.4054328, 'FSRPTH14': 0.709507399}, '19027': {'FFRPTH14': 0.7295010209999999, 'FSRPTH14': 1.02130143}, '19029': {'FFRPTH14': 0.669244497, 'FSRPTH14': 1.115407496}, '19031': {'FFRPTH14': 0.488838195, 'FSRPTH14': 0.7060996140000001}, '19033': {'FFRPTH14': 0.878531465, 'FSRPTH14': 1.063485458}, '19035': {'FFRPTH14': 0.760392024, 'FSRPTH14': 0.591416019}, '19037': {'FFRPTH14': 0.407697326, 'FSRPTH14': 0.9784735809999999}, '19039': {'FFRPTH14': 0.43398068799999995, 'FSRPTH14': 0.6509710320000001}, '19041': {'FFRPTH14': 1.211020285, 'FSRPTH14': 1.029367242}, '19043': {'FFRPTH14': 0.734795388, 'FSRPTH14': 1.5261134980000002}, '19045': {'FFRPTH14': 0.520280535, 'FSRPTH14': 0.7283927490000001}, '19047': {'FFRPTH14': 0.522405387, 'FSRPTH14': 0.812630601}, '19049': {'FFRPTH14': 0.529715762, 'FSRPTH14': 0.7364341090000001}, '19051': {'FFRPTH14': 0.45552898299999994, 'FSRPTH14': 0.45552898299999994}, '19053': {'FFRPTH14': 0.605107104, 'FSRPTH14': 0.24204284199999998}, '19055': {'FFRPTH14': 0.287389355, 'FSRPTH14': 0.977123807}, '19057': {'FFRPTH14': 0.7949323070000001, 'FSRPTH14': 0.770090672}, '19059': {'FFRPTH14': 1.062887511, 'FSRPTH14': 2.125775022}, '19061': {'FFRPTH14': 0.747120473, 'FSRPTH14': 0.7886271659999999}, '19063': {'FFRPTH14': 0.600600601, 'FSRPTH14': 1.001001001}, '19065': {'FFRPTH14': 0.344098707, 'FSRPTH14': 0.9831391629999999}, '19067': {'FFRPTH14': 0.373203956, 'FSRPTH14': 0.93300989}, '19069': {'FFRPTH14': 0.47911077, 'FSRPTH14': 0.766577233}, '19071': {'FFRPTH14': 0.42722871, 'FSRPTH14': 0.996866989}, '19073': {'FFRPTH14': 0.869565217, 'FSRPTH14': 0.760869565}, '19075': {'FFRPTH14': 0.24242424199999998, 'FSRPTH14': 1.212121212}, '19077': {'FFRPTH14': 0.466330908, 'FSRPTH14': 0.652863272}, '19079': {'FFRPTH14': 0.264602765, 'FSRPTH14': 0.661506913}, '19081': {'FFRPTH14': 0.27205949, 'FSRPTH14': 0.544118981}, '19083': {'FFRPTH14': 0.34660042700000004, 'FSRPTH14': 0.866501069}, '19085': {'FFRPTH14': 0.48869031, 'FSRPTH14': 0.698129014}, '19087': {'FFRPTH14': 0.44516990700000003, 'FSRPTH14': 0.7914131670000001}, '19089': {'FFRPTH14': 0.317493915, 'FSRPTH14': 0.846650439}, '19091': {'FFRPTH14': 0.41493775899999996, 'FSRPTH14': 0.9336099590000001}, '19093': {'FFRPTH14': 0.284010224, 'FSRPTH14': 0.7100255609999999}, '19095': {'FFRPTH14': 0.427480916, 'FSRPTH14': 0.854961832}, '19097': {'FFRPTH14': 0.256647161, 'FSRPTH14': 1.3858946719999998}, '19099': {'FFRPTH14': 0.51529616, 'FSRPTH14': 0.406812758}, '19101': {'FFRPTH14': 0.634920635, 'FSRPTH14': 1.0389610390000001}, '19103': {'FFRPTH14': 0.744973188, 'FSRPTH14': 0.9909549009999999}, '19105': {'FFRPTH14': 0.24445096300000002, 'FSRPTH14': 1.075584238}, '19107': {'FFRPTH14': 0.390968625, 'FSRPTH14': 0.586452937}, '19109': {'FFRPTH14': 0.656943897, 'FSRPTH14': 1.051110235}, '19111': {'FFRPTH14': 0.5384571779999999, 'FSRPTH14': 0.9352150990000001}, '19113': {'FFRPTH14': 0.7347842259999999, 'FSRPTH14': 0.84500186}, '19115': {'FFRPTH14': 0.26879311899999997, 'FSRPTH14': 0.627183944}, '19117': {'FFRPTH14': 0.344787955, 'FSRPTH14': 0.8045052290000001}, '19119': {'FFRPTH14': 0.427972267, 'FSRPTH14': 0.599161174}, '19121': {'FFRPTH14': 0.19219681, 'FSRPTH14': 0.640656032}, '19123': {'FFRPTH14': 0.402324542, 'FSRPTH14': 0.581135449}, '19125': {'FFRPTH14': 0.569459014, 'FSRPTH14': 0.719316649}, '19127': {'FFRPTH14': 0.538344834, 'FSRPTH14': 0.513874615}, '19129': {'FFRPTH14': 0.134852673, 'FSRPTH14': 0.40455802}, '19131': {'FFRPTH14': 0.37109193799999995, 'FSRPTH14': 0.927729845}, '19133': {'FFRPTH14': 0.555802579, 'FSRPTH14': 0.77812361}, '19135': {'FFRPTH14': 0.374953131, 'FSRPTH14': 1.24984377}, '19137': {'FFRPTH14': 0.575760484, 'FSRPTH14': 1.055560887}, '19139': {'FFRPTH14': 0.7924853740000001, 'FSRPTH14': 0.675943407}, '19141': {'FFRPTH14': 0.711439954, 'FSRPTH14': 0.9248719409999999}, '19143': {'FFRPTH14': 0.321646832, 'FSRPTH14': 0.643293664}, '19145': {'FFRPTH14': 0.5162622610000001, 'FSRPTH14': 0.903458957}, '19147': {'FFRPTH14': 0.7693153090000001, 'FSRPTH14': 0.989119683}, '19149': {'FFRPTH14': 0.482431455, 'FSRPTH14': 0.7638498029999999}, '19151': {'FFRPTH14': 0.420285794, 'FSRPTH14': 0.560381059}, '19153': {'FFRPTH14': 0.726304848, 'FSRPTH14': 0.7958909409999999}, '19155': {'FFRPTH14': 0.751653638, 'FSRPTH14': 0.590585001}, '19157': {'FFRPTH14': 0.482108421, 'FSRPTH14': 1.232054853}, '19159': {'FFRPTH14': 0.593941794, 'FSRPTH14': 0.98990299}, '19161': {'FFRPTH14': 0.19930244100000002, 'FSRPTH14': 1.5944195319999999}, '19163': {'FFRPTH14': 0.7410130290000001, 'FSRPTH14': 0.7235087840000001}, '19165': {'FFRPTH14': 0.502176096, 'FSRPTH14': 0.585872112}, '19167': {'FFRPTH14': 0.663187336, 'FSRPTH14': 0.836192728}, '19169': {'FFRPTH14': 0.7015828129999999, 'FSRPTH14': 0.7334729409999999}, '19171': {'FFRPTH14': 0.343819838, 'FSRPTH14': 0.8595495959999999}, '19173': {'FFRPTH14': 0.0, 'FSRPTH14': 0.976721472}, '19175': {'FFRPTH14': 0.399488655, 'FSRPTH14': 0.9587727709999999}, '19177': {'FFRPTH14': 0.26780932, 'FSRPTH14': 0.53561864}, '19179': {'FFRPTH14': 0.653186414, 'FSRPTH14': 0.624787004}, '19181': {'FFRPTH14': 0.43790141, 'FSRPTH14': 0.375344065}, '19183': {'FFRPTH14': 0.453103761, 'FSRPTH14': 0.815586769}, '19185': {'FFRPTH14': 0.156372166, 'FSRPTH14': 0.938232995}, '19187': {'FFRPTH14': 0.73061832, 'FSRPTH14': 0.649438506}, '19189': {'FFRPTH14': 0.378823752, 'FSRPTH14': 1.136471257}, '19191': {'FFRPTH14': 0.38520801200000004, 'FSRPTH14': 0.9148690290000001}, '19193': {'FFRPTH14': 0.9289045770000001, 'FSRPTH14': 0.77245749}, '19195': {'FFRPTH14': 0.393494229, 'FSRPTH14': 0.524658972}, '19197': {'FFRPTH14': 0.62305296, 'FSRPTH14': 1.168224299}, '20001': {'FFRPTH14': 0.387326671, 'FSRPTH14': 0.6971880079999999}, '20003': {'FFRPTH14': 0.507421033, 'FSRPTH14': 1.014842065}, '20005': {'FFRPTH14': 0.7267001759999999, 'FSRPTH14': 0.7267001759999999}, '20007': {'FFRPTH14': 0.816826629, 'FSRPTH14': 1.021033286}, '20009': {'FFRPTH14': 0.69381048, 'FSRPTH14': 0.839875844}, '20011': {'FFRPTH14': 0.609260764, 'FSRPTH14': 0.7446520440000001}, '20013': {'FFRPTH14': 0.50942435, 'FSRPTH14': 1.120733571}, '20015': {'FFRPTH14': 0.7700786690000001, 'FSRPTH14': 0.483186616}, '20017': {'FFRPTH14': 0.0, 'FSRPTH14': 1.114413076}, '20019': {'FFRPTH14': 0.0, 'FSRPTH14': 1.43636886}, '20021': {'FFRPTH14': 0.529176889, 'FSRPTH14': 0.7216048490000001}, '20023': {'FFRPTH14': 0.37133308600000003, 'FSRPTH14': 1.485332343}, '20025': {'FFRPTH14': 0.46641791, 'FSRPTH14': 1.399253731}, '20027': {'FFRPTH14': 0.480942648, 'FSRPTH14': 1.322592281}, '20029': {'FFRPTH14': 0.532765051, 'FSRPTH14': 0.8524240809999999}, '20031': {'FFRPTH14': 0.711490573, 'FSRPTH14': 0.948654097}, '20033': {'FFRPTH14': 0.511770727, 'FSRPTH14': 1.53531218}, '20035': {'FFRPTH14': 0.444901705, 'FSRPTH14': 0.528320774}, '20037': {'FFRPTH14': 0.509035378, 'FSRPTH14': 0.9671672179999999}, '20039': {'FFRPTH14': 0.343878955, 'FSRPTH14': 0.6877579090000001}, '20041': {'FFRPTH14': 0.567185728, 'FSRPTH14': 0.773435083}, '20043': {'FFRPTH14': 0.127000254, 'FSRPTH14': 0.63500127}, '20045': {'FFRPTH14': 0.849165845, 'FSRPTH14': 0.8920530090000001}, '20047': {'FFRPTH14': 0.330033003, 'FSRPTH14': 0.99009901}, '20049': {'FFRPTH14': 0.0, 'FSRPTH14': 2.227171492}, '20051': {'FFRPTH14': 1.102953848, 'FSRPTH14': 0.965084617}, '20053': {'FFRPTH14': 0.46933667100000004, 'FSRPTH14': 0.9386733420000001}, '20055': {'FFRPTH14': 0.618545611, 'FSRPTH14': 0.6992254729999999}, '20057': {'FFRPTH14': 0.45983618299999995, 'FSRPTH14': 0.8047133209999999}, '20059': {'FFRPTH14': 0.585685838, 'FSRPTH14': 0.819960173}, '20061': {'FFRPTH14': 0.7081960070000001, 'FSRPTH14': 0.6264810829999999}, '20063': {'FFRPTH14': 1.100110011, 'FSRPTH14': 1.100110011}, '20065': {'FFRPTH14': 0.779423227, 'FSRPTH14': 0.779423227}, '20067': {'FFRPTH14': 0.639713408, 'FSRPTH14': 0.76765609}, '20069': {'FFRPTH14': 0.164419599, 'FSRPTH14': 0.493258796}, '20071': {'FFRPTH14': 0.0, 'FSRPTH14': 0.0}, '20073': {'FFRPTH14': 0.15802781300000002, 'FSRPTH14': 1.10619469}, '20075': {'FFRPTH14': 0.384172109, 'FSRPTH14': 0.768344218}, '20077': {'FFRPTH14': 0.515641114, 'FSRPTH14': 1.203162599}, '20079': {'FFRPTH14': 0.6892590470000001, 'FSRPTH14': 0.545663412}, '20081': {'FFRPTH14': 0.24354603, 'FSRPTH14': 1.217730151}, '20083': {'FFRPTH14': 0.5219206679999999, 'FSRPTH14': 0.5219206679999999}, '20085': {'FFRPTH14': 0.369303494, 'FSRPTH14': 0.812467686}, '20087': {'FFRPTH14': 0.21214532, 'FSRPTH14': 0.477326969}, '20089': {'FFRPTH14': 0.657246139, 'FSRPTH14': 0.985869208}, '20091': {'FFRPTH14': 0.722654073, 'FSRPTH14': 0.7783767970000001}, '20093': {'FFRPTH14': 0.510855683, 'FSRPTH14': 0.766283525}, '20095': {'FFRPTH14': 0.38971161299999996, 'FSRPTH14': 0.519615485}, '20097': {'FFRPTH14': 0.0, 'FSRPTH14': 0.39793076}, '20099': {'FFRPTH14': 0.477099237, 'FSRPTH14': 0.90648855}, '20101': {'FFRPTH14': 0.592768228, 'FSRPTH14': 0.592768228}, '20103': {'FFRPTH14': 0.444179347, 'FSRPTH14': 0.431488508}, '20105': {'FFRPTH14': 0.0, 'FSRPTH14': 0.947268709}, '20107': {'FFRPTH14': 0.21048200399999997, 'FSRPTH14': 0.631446011}, '20109': {'FFRPTH14': 0.357909807, 'FSRPTH14': 1.789549034}, '20111': {'FFRPTH14': 0.602191979, 'FSRPTH14': 0.903287968}, '20113': {'FFRPTH14': 0.615574023, 'FSRPTH14': 0.6839711359999999}, '20115': {'FFRPTH14': 0.327653997, 'FSRPTH14': 1.064875491}, '20117': {'FFRPTH14': 0.49970018, 'FSRPTH14': 0.8994603240000001}, '20119': {'FFRPTH14': 0.459031444, 'FSRPTH14': 1.147578609}, '20121': {'FFRPTH14': 0.457010542, 'FSRPTH14': 0.700749497}, '20123': {'FFRPTH14': 0.636537237, 'FSRPTH14': 1.113940165}, '20125': {'FFRPTH14': 0.8219580209999999, 'FSRPTH14': 0.7338910909999999}, '20127': {'FFRPTH14': 0.877500878, 'FSRPTH14': 1.053001053}, '20129': {'FFRPTH14': 0.964630225, 'FSRPTH14': 0.643086817}, '20131': {'FFRPTH14': 0.295624754, 'FSRPTH14': 1.281040599}, '20133': {'FFRPTH14': 0.36549707600000003, 'FSRPTH14': 0.791910331}, '20135': {'FFRPTH14': 0.644122383, 'FSRPTH14': 0.966183575}, '20137': {'FFRPTH14': 0.35971223, 'FSRPTH14': 0.71942446}, '20139': {'FFRPTH14': 0.251004016, 'FSRPTH14': 0.815763052}, '20141': {'FFRPTH14': 0.266240682, 'FSRPTH14': 0.5324813629999999}, '20143': {'FFRPTH14': 0.164880462, 'FSRPTH14': 0.8244023079999999}, '20145': {'FFRPTH14': 0.43377675, 'FSRPTH14': 0.5783689989999999}, '20147': {'FFRPTH14': 0.9036688959999999, 'FSRPTH14': 1.084402675}, '20149': {'FFRPTH14': 0.480412281, 'FSRPTH14': 0.655107656}, '20151': {'FFRPTH14': 0.913705584, 'FSRPTH14': 1.218274112}, '20153': {'FFRPTH14': 0.0, 'FSRPTH14': 0.773993808}, '20155': {'FFRPTH14': 0.8935009559999999, 'FSRPTH14': 0.501614572}, '20157': {'FFRPTH14': 0.416406413, 'FSRPTH14': 0.832812825}, '20159': {'FFRPTH14': 0.698951573, 'FSRPTH14': 0.698951573}, '20161': {'FFRPTH14': 0.611750938, 'FSRPTH14': 0.6383488039999999}, '20163': {'FFRPTH14': 0.581959263, 'FSRPTH14': 1.163918526}, '20165': {'FFRPTH14': 0.6255864870000001, 'FSRPTH14': 1.251172975}, '20167': {'FFRPTH14': 0.71880391, 'FSRPTH14': 0.575043128}, '20169': {'FFRPTH14': 0.986458614, 'FSRPTH14': 0.520132724}, '20171': {'FFRPTH14': 0.984251969, 'FSRPTH14': 1.181102362}, '20173': {'FFRPTH14': 0.8608439809999999, 'FSRPTH14': 0.6937852170000001}, '20175': {'FFRPTH14': 0.46878329399999996, 'FSRPTH14': 0.7244832729999999}, '20177': {'FFRPTH14': 0.7959373559999999, 'FSRPTH14': 0.538098494}, '20179': {'FFRPTH14': 0.393855849, 'FSRPTH14': 0.787711698}, '20181': {'FFRPTH14': 1.47299509, 'FSRPTH14': 1.309328969}, '20183': {'FFRPTH14': 0.7959670999999999, 'FSRPTH14': 1.061289467}, '20185': {'FFRPTH14': 0.0, 'FSRPTH14': 1.396323016}, '20187': {'FFRPTH14': 0.47370914299999994, 'FSRPTH14': 0.947418285}, '20189': {'FFRPTH14': 0.689536287, 'FSRPTH14': 1.206688502}, '20191': {'FFRPTH14': 0.467528052, 'FSRPTH14': 0.8500510029999999}, '20193': {'FFRPTH14': 0.7603599040000001, 'FSRPTH14': 0.7603599040000001}, '20195': {'FFRPTH14': 1.033769814, 'FSRPTH14': 1.378359752}, '20197': {'FFRPTH14': 0.28481914, 'FSRPTH14': 0.56963828}, '20199': {'FFRPTH14': 0.0, 'FSRPTH14': 0.0}, '20201': {'FFRPTH14': 0.17863522699999998, 'FSRPTH14': 1.429081815}, '20203': {'FFRPTH14': 0.459558824, 'FSRPTH14': 1.378676471}, '20205': {'FFRPTH14': 0.553832521, 'FSRPTH14': 1.107665042}, '20207': {'FFRPTH14': 0.6335128289999999, 'FSRPTH14': 1.267025657}, '20209': {'FFRPTH14': 0.64342102, 'FSRPTH14': 0.501125987}, '21001': {'FFRPTH14': 0.312434909, 'FSRPTH14': 0.572797334}, '21003': {'FFRPTH14': 0.441522763, 'FSRPTH14': 0.294348509}, '21005': {'FFRPTH14': 0.868055556, 'FSRPTH14': 0.36549707600000003}, '21007': {'FFRPTH14': 0.485436893, 'FSRPTH14': 0.849514563}, '21009': {'FFRPTH14': 0.8575136740000001, 'FSRPTH14': 0.8343376290000001}, '21011': {'FFRPTH14': 0.409634606, 'FSRPTH14': 0.327707685}, '21013': {'FFRPTH14': 0.863993088, 'FSRPTH14': 0.395996832}, '21015': {'FFRPTH14': 0.949269458, 'FSRPTH14': 0.806879039}, '21017': {'FFRPTH14': 0.650911276, 'FSRPTH14': 0.6008411779999999}, '21019': {'FFRPTH14': 1.249180865, 'FSRPTH14': 0.59387287}, '21021': {'FFRPTH14': 0.7742543590000001, 'FSRPTH14': 0.67326466}, '21023': {'FFRPTH14': 0.475850583, 'FSRPTH14': 0.7137758740000001}, '21025': {'FFRPTH14': 0.372883884, 'FSRPTH14': 0.298307107}, '21027': {'FFRPTH14': 0.15084473, 'FSRPTH14': 0.45253419100000003}, '21029': {'FFRPTH14': 0.500288628, 'FSRPTH14': 0.256558271}, '21031': {'FFRPTH14': 0.46601941700000005, 'FSRPTH14': 0.310679612}, '21033': {'FFRPTH14': 0.785854617, 'FSRPTH14': 0.785854617}, '21035': {'FFRPTH14': 0.679170367, 'FSRPTH14': 1.044877488}, '21037': {'FFRPTH14': 0.773142552, 'FSRPTH14': 0.8166998790000001}, '21039': {'FFRPTH14': 0.40176777799999996, 'FSRPTH14': 0.6026516670000001}, '21041': {'FFRPTH14': 1.202034212, 'FSRPTH14': 0.647249191}, '21043': {'FFRPTH14': 0.661205598, 'FSRPTH14': 0.514271021}, '21045': {'FFRPTH14': 0.188786105, 'FSRPTH14': 0.377572211}, '21047': {'FFRPTH14': 0.579124579, 'FSRPTH14': 0.430976431}, '21049': {'FFRPTH14': 0.894904637, 'FSRPTH14': 0.391520779}, '21051': {'FFRPTH14': 0.520168345, 'FSRPTH14': 0.283728188}, '21053': {'FFRPTH14': 0.5902606979999999, 'FSRPTH14': 0.5902606979999999}, '21055': {'FFRPTH14': 0.650477016, 'FSRPTH14': 0.325238508}, '21057': {'FFRPTH14': 0.593031875, 'FSRPTH14': 0.593031875}, '21059': {'FFRPTH14': 0.783515645, 'FSRPTH14': 0.6817603659999999}, '21061': {'FFRPTH14': 0.24972946, 'FSRPTH14': 0.49945892}, '21063': {'FFRPTH14': 0.260688217, 'FSRPTH14': 0.13034410800000001}, '21065': {'FFRPTH14': 0.553748183, 'FSRPTH14': 0.41531113700000005}, '21067': {'FFRPTH14': 1.000653159, 'FSRPTH14': 0.88803946}, '21069': {'FFRPTH14': 0.343760743, 'FSRPTH14': 0.137504297}, '21071': {'FFRPTH14': 0.6822714390000001, 'FSRPTH14': 0.36737692899999996}, '21073': {'FFRPTH14': 0.942261427, 'FSRPTH14': 0.6816359259999999}, '21075': {'FFRPTH14': 0.478850758, 'FSRPTH14': 0.957701516}, '21077': {'FFRPTH14': 0.34928396799999994, 'FSRPTH14': 0.34928396799999994}, '21079': {'FFRPTH14': 0.177957053, 'FSRPTH14': 0.415233124}, '21081': {'FFRPTH14': 0.603015075, 'FSRPTH14': 0.522613065}, '21083': {'FFRPTH14': 0.47849433799999996, 'FSRPTH14': 0.664575469}, '21085': {'FFRPTH14': 0.649003589, 'FSRPTH14': 0.343590135}, '21087': {'FFRPTH14': 0.633885719, 'FSRPTH14': 0.271665308}, '21089': {'FFRPTH14': 0.5783849289999999, 'FSRPTH14': 0.22033711600000003}, '21091': {'FFRPTH14': 0.342739632, 'FSRPTH14': 0.114246544}, '21093': {'FFRPTH14': 0.609609665, 'FSRPTH14': 0.600373155}, '21095': {'FFRPTH14': 0.639136456, 'FSRPTH14': 0.213045485}, '21097': {'FFRPTH14': 0.537865749, 'FSRPTH14': 0.537865749}, '21099': {'FFRPTH14': 0.32263268300000003, 'FSRPTH14': 0.37640479600000004}, '21101': {'FFRPTH14': 0.753222717, 'FSRPTH14': 0.602578174}, '21103': {'FFRPTH14': 0.513742615, 'FSRPTH14': 0.385306961}, '21105': {'FFRPTH14': 0.21123785399999997, 'FSRPTH14': 0.0}, '21107': {'FFRPTH14': 0.625323443, 'FSRPTH14': 0.5821976879999999}, '21109': {'FFRPTH14': 0.301000828, 'FSRPTH14': 0.075250207}, '21111': {'FFRPTH14': 0.8657598559999999, 'FSRPTH14': 0.7473428540000001}, '21113': {'FFRPTH14': 0.688773, 'FSRPTH14': 0.5510184}, '21115': {'FFRPTH14': 0.9027598659999999, 'FSRPTH14': 0.472874215}, '21117': {'FFRPTH14': 0.597819788, 'FSRPTH14': 0.689322817}, '21119': {'FFRPTH14': 0.31462371, 'FSRPTH14': 0.125849484}, '21121': {'FFRPTH14': 0.597521857, 'FSRPTH14': 0.34593370700000003}, '21123': {'FFRPTH14': 0.564174894, 'FSRPTH14': 0.352609309}, '21125': {'FFRPTH14': 0.649837541, 'FSRPTH14': 0.499875031}, '21127': {'FFRPTH14': 0.506200962, 'FSRPTH14': 0.316375601}, '21129': {'FFRPTH14': 0.52673163, 'FSRPTH14': 0.263365815}, '21131': {'FFRPTH14': 0.18318373300000002, 'FSRPTH14': 0.18318373300000002}, '21133': {'FFRPTH14': 0.642150777, 'FSRPTH14': 0.214050259}, '21135': {'FFRPTH14': 0.360230548, 'FSRPTH14': 0.216138329}, '21137': {'FFRPTH14': 0.36817345100000004, 'FSRPTH14': 0.20454080600000002}, '21139': {'FFRPTH14': 0.427396089, 'FSRPTH14': 0.534245112}, '21141': {'FFRPTH14': 0.521085346, 'FSRPTH14': 0.669966874}, '21143': {'FFRPTH14': 0.355871886, 'FSRPTH14': 0.8303677340000001}, '21145': {'FFRPTH14': 1.0717129029999999, 'FSRPTH14': 1.102333272}, '21147': {'FFRPTH14': 0.33588982799999995, 'FSRPTH14': 0.223926552}, '21149': {'FFRPTH14': 0.844059928, 'FSRPTH14': 0.633044946}, '21151': {'FFRPTH14': 0.721318983, 'FSRPTH14': 0.515227845}, '21153': {'FFRPTH14': 0.619530705, 'FSRPTH14': 0.154882676}, '21155': {'FFRPTH14': 0.6997550859999999, 'FSRPTH14': 0.499825061}, '21157': {'FFRPTH14': 0.67844797, 'FSRPTH14': 0.807676154}, '21159': {'FFRPTH14': 0.638111191, 'FSRPTH14': 0.159527798}, '21161': {'FFRPTH14': 0.7573109640000001, 'FSRPTH14': 0.9320750320000001}, '21163': {'FFRPTH14': 0.377500944, 'FSRPTH14': 0.274546141}, '21165': {'FFRPTH14': 0.159058374, 'FSRPTH14': 0.159058374}, '21167': {'FFRPTH14': 0.562878184, 'FSRPTH14': 0.5159716679999999}, '21169': {'FFRPTH14': 0.20020020000000002, 'FSRPTH14': 0.7007007009999999}, '21171': {'FFRPTH14': 1.027653214, 'FSRPTH14': 0.653961136}, '21173': {'FFRPTH14': 0.618766834, 'FSRPTH14': 0.40037854}, '21175': {'FFRPTH14': 0.30068405600000003, 'FSRPTH14': 0.225513042}, '21177': {'FFRPTH14': 0.6729259459999999, 'FSRPTH14': 0.544749575}, '21179': {'FFRPTH14': 0.535570829, 'FSRPTH14': 0.513255378}, '21181': {'FFRPTH14': 0.0, 'FSRPTH14': 0.710126402}, '21183': {'FFRPTH14': 0.5004796260000001, 'FSRPTH14': 0.5004796260000001}, '21185': {'FFRPTH14': 0.519766892, 'FSRPTH14': 0.33076075}, '21187': {'FFRPTH14': 0.469704086, 'FSRPTH14': 0.281822452}, '21189': {'FFRPTH14': 0.221827862, 'FSRPTH14': 0.0}, '21191': {'FFRPTH14': 0.413992962, 'FSRPTH14': 0.344994135}, '21193': {'FFRPTH14': 0.760952277, 'FSRPTH14': 0.688480632}, '21195': {'FFRPTH14': 0.7456293429999999, 'FSRPTH14': 0.39661135299999994}, '21197': {'FFRPTH14': 0.965095705, 'FSRPTH14': 0.24127392600000003}, '21199': {'FFRPTH14': 0.673717195, 'FSRPTH14': 0.53270662}, '21201': {'FFRPTH14': 0.0, 'FSRPTH14': 0.0}, '21203': {'FFRPTH14': 0.534886485, 'FSRPTH14': 0.475454654}, '21205': {'FFRPTH14': 0.845487212, 'FSRPTH14': 0.422743606}, '21207': {'FFRPTH14': 0.506357601, 'FSRPTH14': 0.7314054240000001}, '21209': {'FFRPTH14': 0.623976289, 'FSRPTH14': 0.623976289}, '21211': {'FFRPTH14': 0.623955432, 'FSRPTH14': 0.512534819}, '21213': {'FFRPTH14': 1.009761023, 'FSRPTH14': 0.673174015}, '21215': {'FFRPTH14': 0.5659950189999999, 'FSRPTH14': 0.0565995}, '21217': {'FFRPTH14': 0.752266698, 'FSRPTH14': 0.435522825}, '21219': {'FFRPTH14': 0.399361022, 'FSRPTH14': 0.399361022}, '21221': {'FFRPTH14': 0.42426813700000005, 'FSRPTH14': 0.56569085}, '21223': {'FFRPTH14': 0.227634874, 'FSRPTH14': 0.113817437}, '21225': {'FFRPTH14': 0.395647873, 'FSRPTH14': 0.659413122}, '21227': {'FFRPTH14': 0.7637390000000001, 'FSRPTH14': 0.7637390000000001}, '21229': {'FFRPTH14': 0.585333222, 'FSRPTH14': 0.250857095}, '21231': {'FFRPTH14': 0.585765889, 'FSRPTH14': 0.341696769}, '21233': {'FFRPTH14': 0.37775763100000004, 'FSRPTH14': 0.528860683}, '21235': {'FFRPTH14': 0.788665747, 'FSRPTH14': 0.506999409}, '21237': {'FFRPTH14': 0.27723870300000003, 'FSRPTH14': 0.27723870300000003}, '21239': {'FFRPTH14': 0.50854751, 'FSRPTH14': 0.782380785}, '22001': {'FFRPTH14': 0.44810037399999997, 'FSRPTH14': 0.320071696}, '22003': {'FFRPTH14': 0.38890833399999997, 'FSRPTH14': 0.350017501}, '22005': {'FFRPTH14': 0.692136137, 'FSRPTH14': 0.367430295}, '22007': {'FFRPTH14': 0.173656334, 'FSRPTH14': 0.173656334}, '22009': {'FFRPTH14': 0.388868635, 'FSRPTH14': 0.267347187}, '22011': {'FFRPTH14': 0.49726504200000005, 'FSRPTH14': 0.303884192}, '22013': {'FFRPTH14': 0.648181491, 'FSRPTH14': 0.432120994}, '22015': {'FFRPTH14': 0.8715537640000001, 'FSRPTH14': 0.639672488}, '22017': {'FFRPTH14': 0.823426483, 'FSRPTH14': 0.5344354579999999}, '22019': {'FFRPTH14': 0.836697024, 'FSRPTH14': 0.44623841299999994}, '22021': {'FFRPTH14': 0.404285426, 'FSRPTH14': 0.404285426}, '22023': {'FFRPTH14': 0.149723012, 'FSRPTH14': 0.149723012}, '22025': {'FFRPTH14': 0.492562309, 'FSRPTH14': 0.197024924}, '22027': {'FFRPTH14': 0.548379235, 'FSRPTH14': 0.243724104}, '22029': {'FFRPTH14': 0.68406137, 'FSRPTH14': 0.43975373799999995}, '22031': {'FFRPTH14': 0.29474615, 'FSRPTH14': 0.442119225}, '22033': {'FFRPTH14': 0.8586635340000001, 'FSRPTH14': 0.645679106}, '22035': {'FFRPTH14': 0.6678242289999999, 'FSRPTH14': 0.400694537}, '22037': {'FFRPTH14': 0.555191036, 'FSRPTH14': 0.151415737}, '22039': {'FFRPTH14': 0.296735905, 'FSRPTH14': 0.267062315}, '22041': {'FFRPTH14': 0.538134142, 'FSRPTH14': 0.24460642800000001}, '22043': {'FFRPTH14': 0.089349535, 'FSRPTH14': 0.0}, '22045': {'FFRPTH14': 0.5682356279999999, 'FSRPTH14': 0.311176654}, '22047': {'FFRPTH14': 0.360068413, 'FSRPTH14': 0.39007411399999997}, '22049': {'FFRPTH14': 0.562711017, 'FSRPTH14': 0.250093785}, '22051': {'FFRPTH14': 0.8560622059999999, 'FSRPTH14': 0.794095236}, '22053': {'FFRPTH14': 0.57184611, 'FSRPTH14': 0.285923055}, '22055': {'FFRPTH14': 0.9463427879999999, 'FSRPTH14': 0.836006858}, '22057': {'FFRPTH14': 0.520301979, 'FSRPTH14': 0.39787798399999996}, '22059': {'FFRPTH14': 0.6065098729999999, 'FSRPTH14': 0.202169958}, '22061': {'FFRPTH14': 0.840036122, 'FSRPTH14': 0.609026188}, '22063': {'FFRPTH14': 0.530382833, 'FSRPTH14': 0.324122843}, '22065': {'FFRPTH14': 0.5910664529999999, 'FSRPTH14': 0.337752259}, '22067': {'FFRPTH14': 0.48579970100000003, 'FSRPTH14': 0.26158445399999997}, '22069': {'FFRPTH14': 0.434049941, 'FSRPTH14': 0.663841087}, '22071': {'FFRPTH14': 0.788405495, 'FSRPTH14': 1.2359492090000002}, '22073': {'FFRPTH14': 0.72924996, 'FSRPTH14': 0.652486806}, '22075': {'FFRPTH14': 0.554441933, 'FSRPTH14': 0.81033821}, '22077': {'FFRPTH14': 0.446309024, 'FSRPTH14': 0.446309024}, '22079': {'FFRPTH14': 0.762333192, 'FSRPTH14': 0.46796691}, '22081': {'FFRPTH14': 0.5767677929999999, 'FSRPTH14': 0.346060676}, '22083': {'FFRPTH14': 0.38572806200000004, 'FSRPTH14': 0.38572806200000004}, '22085': {'FFRPTH14': 0.413240217, 'FSRPTH14': 0.24794413}, '22087': {'FFRPTH14': 0.720574658, 'FSRPTH14': 0.6755387420000001}, '22089': {'FFRPTH14': 0.587733434, 'FSRPTH14': 0.417101147}, '22091': {'FFRPTH14': 0.094170826, 'FSRPTH14': 0.188341652}, '22093': {'FFRPTH14': 0.508364914, 'FSRPTH14': 0.36971993700000005}, '22095': {'FFRPTH14': 0.708652417, 'FSRPTH14': 0.29717682}, '22097': {'FFRPTH14': 0.47784587100000003, 'FSRPTH14': 0.238922935}, '22099': {'FFRPTH14': 0.41264184600000003, 'FSRPTH14': 0.468911188}, '22101': {'FFRPTH14': 0.639554569, 'FSRPTH14': 0.5455024270000001}, '22103': {'FFRPTH14': 0.764759243, 'FSRPTH14': 0.866455951}, '22105': {'FFRPTH14': 0.669033208, 'FSRPTH14': 0.629678313}, '22107': {'FFRPTH14': 0.0, 'FSRPTH14': 0.621118012}, '22109': {'FFRPTH14': 0.723563462, 'FSRPTH14': 0.626500071}, '22111': {'FFRPTH14': 0.266205244, 'FSRPTH14': 0.17747016300000001}, '22113': {'FFRPTH14': 0.335480408, 'FSRPTH14': 0.385802469}, '22115': {'FFRPTH14': 0.422005678, 'FSRPTH14': 0.30691322}, '22117': {'FFRPTH14': 0.626539342, 'FSRPTH14': 0.324072074}, '22119': {'FFRPTH14': 0.793394987, 'FSRPTH14': 0.39669749299999996}, '22121': {'FFRPTH14': 0.797289217, 'FSRPTH14': 0.5581024520000001}, '22123': {'FFRPTH14': 0.780911063, 'FSRPTH14': 0.0}, '22125': {'FFRPTH14': 0.259639102, 'FSRPTH14': 0.5192782029999999}, '22127': {'FFRPTH14': 0.542630401, 'FSRPTH14': 0.33914400100000003}, '23001': {'FFRPTH14': 0.7073715559999999, 'FSRPTH14': 0.716679077}, '23003': {'FFRPTH14': 0.719973505, 'FSRPTH14': 0.8495687359999999}, '23005': {'FFRPTH14': 0.847819817, 'FSRPTH14': 1.344697825}, '23007': {'FFRPTH14': 0.495114867, 'FSRPTH14': 1.353313969}, '23009': {'FFRPTH14': 0.84101214, 'FSRPTH14': 1.992833114}, '23011': {'FFRPTH14': 0.668802431, 'FSRPTH14': 0.792654733}, '23013': {'FFRPTH14': 0.7561246090000001, 'FSRPTH14': 1.663474141}, '23015': {'FFRPTH14': 0.7316359379999999, 'FSRPTH14': 1.5218027509999998}, '23017': {'FFRPTH14': 0.454243684, 'FSRPTH14': 0.908487369}, '23019': {'FFRPTH14': 0.606202824, 'FSRPTH14': 0.769160572}, '23021': {'FFRPTH14': 0.41113591, 'FSRPTH14': 1.233407729}, '23023': {'FFRPTH14': 0.570694821, 'FSRPTH14': 0.82750749}, '23025': {'FFRPTH14': 0.429998241, 'FSRPTH14': 0.625451987}, '23027': {'FFRPTH14': 0.512150777, 'FSRPTH14': 0.921871399}, '23029': {'FFRPTH14': 0.597334004, 'FSRPTH14': 0.88028169}, '23031': {'FFRPTH14': 0.782223108, 'FSRPTH14': 1.220666633}, '24001': {'FFRPTH14': 0.84987389, 'FSRPTH14': 0.671674526}, '24003': {'FFRPTH14': 0.810521787, 'FSRPTH14': 0.6909073379999999}, '24005': {'FFRPTH14': 0.89367234, 'FSRPTH14': 0.505487197}, '24009': {'FFRPTH14': 0.606976924, 'FSRPTH14': 0.618012868}, '24011': {'FFRPTH14': 0.49173274299999997, 'FSRPTH14': 0.33806626100000003}, '24013': {'FFRPTH14': 0.679258774, 'FSRPTH14': 0.60179944}, '24015': {'FFRPTH14': 0.5371985579999999, 'FSRPTH14': 0.566500298}, '24017': {'FFRPTH14': 0.7819214590000001, 'FSRPTH14': 0.432964775}, '24019': {'FFRPTH14': 0.583215667, 'FSRPTH14': 0.7366934740000001}, '24021': {'FFRPTH14': 0.705858213, 'FSRPTH14': 0.6566122910000001}, '24023': {'FFRPTH14': 0.84234644, 'FSRPTH14': 0.943428013}, '24025': {'FFRPTH14': 0.659722916, 'FSRPTH14': 0.483796805}, '24027': {'FFRPTH14': 0.788918922, 'FSRPTH14': 0.572289546}, '24029': {'FFRPTH14': 0.706357215, 'FSRPTH14': 1.3622603430000002}, '24031': {'FFRPTH14': 0.770539387, 'FSRPTH14': 0.608473798}, '24033': {'FFRPTH14': 0.832568579, 'FSRPTH14': 0.326172285}, '24035': {'FFRPTH14': 0.676174084, 'FSRPTH14': 0.6147037129999999}, '24037': {'FFRPTH14': 0.625101919, 'FSRPTH14': 0.534507438}, '24039': {'FFRPTH14': 0.42538381200000003, 'FSRPTH14': 0.309370045}, '24041': {'FFRPTH14': 0.956353107, 'FSRPTH14': 1.567356481}, '24043': {'FFRPTH14': 0.735426848, 'FSRPTH14': 0.615084273}, '24045': {'FFRPTH14': 0.807571475, 'FSRPTH14': 0.6696934179999999}, '24047': {'FFRPTH14': 1.60619255, 'FSRPTH14': 3.3865505560000004}, '24510': {'FFRPTH14': 1.075798861, 'FSRPTH14': 0.582858189}, '25001': {'FFRPTH14': 1.005053184, 'FSRPTH14': 1.9868412480000002}, '25003': {'FFRPTH14': 0.916754069, 'FSRPTH14': 1.67035699}, '25005': {'FFRPTH14': 0.696506999, 'FSRPTH14': 0.844469626}, '25007': {'FFRPTH14': 1.382807098, 'FSRPTH14': 3.4570177460000004}, '25009': {'FFRPTH14': 0.7489360820000001, 'FSRPTH14': 0.8074467129999999}, '25011': {'FFRPTH14': 0.49391775600000004, 'FSRPTH14': 0.9172758320000001}, '25013': {'FFRPTH14': 0.6258530720000001, 'FSRPTH14': 0.7155657990000001}, '25015': {'FFRPTH14': 0.615139898, 'FSRPTH14': 1.043873766}, '25017': {'FFRPTH14': 0.772456482, 'FSRPTH14': 0.829769823}, '25019': {'FFRPTH14': 1.565954311, 'FSRPTH14': 4.974207811}, '25021': {'FFRPTH14': 0.680386101, 'FSRPTH14': 0.868178443}, '25023': {'FFRPTH14': 0.603524107, 'FSRPTH14': 0.808643412}, '25025': {'FFRPTH14': 0.970995264, 'FSRPTH14': 1.1964747009999999}, '25027': {'FFRPTH14': 0.7142198590000001, 'FSRPTH14': 0.705614801}, '26001': {'FFRPTH14': 0.382628659, 'FSRPTH14': 0.9565716470000001}, '26003': {'FFRPTH14': 0.528597103, 'FSRPTH14': 1.2686330479999999}, '26005': {'FFRPTH14': 0.47432079899999996, 'FSRPTH14': 0.70269748}, '26007': {'FFRPTH14': 0.724437698, 'FSRPTH14': 0.931419898}, '26009': {'FFRPTH14': 0.55873125, 'FSRPTH14': 1.031503847}, '26011': {'FFRPTH14': 0.911873901, 'FSRPTH14': 0.716472351}, '26013': {'FFRPTH14': 0.808874509, 'FSRPTH14': 0.693321008}, '26015': {'FFRPTH14': 0.320507414, 'FSRPTH14': 0.590408394}, '26017': {'FFRPTH14': 0.7722807709999999, 'FSRPTH14': 0.574501549}, '26019': {'FFRPTH14': 0.742051487, 'FSRPTH14': 1.1986985559999999}, '26021': {'FFRPTH14': 0.6055413479999999, 'FSRPTH14': 0.927637809}, '26023': {'FFRPTH14': 0.52818923, 'FSRPTH14': 0.665977724}, '26025': {'FFRPTH14': 0.6820978959999999, 'FSRPTH14': 0.600542713}, '26027': {'FFRPTH14': 0.271275771, 'FSRPTH14': 0.5619283829999999}, '26029': {'FFRPTH14': 0.65081735, 'FSRPTH14': 1.4547681940000001}, '26031': {'FFRPTH14': 0.467380721, 'FSRPTH14': 1.518987342}, '26033': {'FFRPTH14': 0.574097753, 'FSRPTH14': 0.991623392}, '26035': {'FFRPTH14': 0.48936447899999996, 'FSRPTH14': 0.7177345690000001}, '26037': {'FFRPTH14': 0.47867317, 'FSRPTH14': 0.413987606}, '26039': {'FFRPTH14': 0.7275372859999999, 'FSRPTH14': 0.800291015}, '26041': {'FFRPTH14': 0.71117919, 'FSRPTH14': 0.738532236}, '26043': {'FFRPTH14': 0.7319798129999999, 'FSRPTH14': 0.8090303190000001}, '26045': {'FFRPTH14': 0.699951188, 'FSRPTH14': 0.653901767}, '26047': {'FFRPTH14': 0.843271895, 'FSRPTH14': 1.7166606430000002}, '26049': {'FFRPTH14': 0.714467359, 'FSRPTH14': 0.571573887}, '26051': {'FFRPTH14': 0.354177325, 'FSRPTH14': 0.865766794}, '26053': {'FFRPTH14': 0.6354451289999999, 'FSRPTH14': 1.652157336}, '26055': {'FFRPTH14': 0.826154965, 'FSRPTH14': 1.024432156}, '26057': {'FFRPTH14': 0.552022081, 'FSRPTH14': 0.43201728100000003}, '26059': {'FFRPTH14': 0.414575605, 'FSRPTH14': 0.67641283}, '26061': {'FFRPTH14': 0.630223318, 'FSRPTH14': 1.150842581}, '26063': {'FFRPTH14': 0.966786215, 'FSRPTH14': 1.216279432}, '26065': {'FFRPTH14': 0.794147205, 'FSRPTH14': 0.7484661709999999}, '26067': {'FFRPTH14': 0.40439232299999994, 'FSRPTH14': 0.52882073}, '26069': {'FFRPTH14': 0.7474429579999999, 'FSRPTH14': 1.140833989}, '26071': {'FFRPTH14': 0.790374989, 'FSRPTH14': 1.229472205}, '26073': {'FFRPTH14': 0.538121672, 'FSRPTH14': 0.637249349}, '26075': {'FFRPTH14': 0.532111355, 'FSRPTH14': 0.588452558}, '26077': {'FFRPTH14': 0.7766075, 'FSRPTH14': 0.7341065920000001}, '26079': {'FFRPTH14': 0.459928711, 'FSRPTH14': 0.8048752440000001}, '26081': {'FFRPTH14': 0.637279753, 'FSRPTH14': 0.649993564}, '26083': {'FFRPTH14': 0.0, 'FSRPTH14': 2.706359946}, '26085': {'FFRPTH14': 0.176351292, 'FSRPTH14': 1.146283397}, '26087': {'FFRPTH14': 0.408380883, 'FSRPTH14': 0.555851758}, '26089': {'FFRPTH14': 0.593201004, 'FSRPTH14': 1.688341319}, '26091': {'FFRPTH14': 0.5855805829999999, 'FSRPTH14': 0.656254102}, '26093': {'FFRPTH14': 0.522640574, 'FSRPTH14': 0.554968857}, '26095': {'FFRPTH14': 0.311235605, 'FSRPTH14': 1.244942421}, '26097': {'FFRPTH14': 1.539576164, 'FSRPTH14': 2.89802572}, '26099': {'FFRPTH14': 0.699908849, 'FSRPTH14': 0.705722046}, '26101': {'FFRPTH14': 0.368550369, 'FSRPTH14': 0.900900901}, '26103': {'FFRPTH14': 0.768366925, 'FSRPTH14': 0.797919499}, '26105': {'FFRPTH14': 0.659172911, 'FSRPTH14': 1.075492645}, '26107': {'FFRPTH14': 0.555735655, 'FSRPTH14': 0.625202612}, '26109': {'FFRPTH14': 0.506030193, 'FSRPTH14': 1.096398752}, '26111': {'FFRPTH14': 0.647272466, 'FSRPTH14': 0.5633667760000001}, '26113': {'FFRPTH14': 0.332513134, 'FSRPTH14': 0.46551838799999995}, '26115': {'FFRPTH14': 0.5673323370000001, 'FSRPTH14': 0.533959846}, '26117': {'FFRPTH14': 0.365700475, 'FSRPTH14': 0.540600703}, '26119': {'FFRPTH14': 0.215053763, 'FSRPTH14': 1.612903226}, '26121': {'FFRPTH14': 0.702084204, 'FSRPTH14': 0.591839577}, '26123': {'FFRPTH14': 0.584551148, 'FSRPTH14': 0.563674322}, '26125': {'FFRPTH14': 0.8094562590000001, 'FSRPTH14': 0.8595423740000001}, '26127': {'FFRPTH14': 0.45764845, 'FSRPTH14': 0.762747416}, '26129': {'FFRPTH14': 0.808023195, 'FSRPTH14': 1.045677076}, '26131': {'FFRPTH14': 0.162022035, 'FSRPTH14': 1.458198315}, '26133': {'FFRPTH14': 0.474772325, 'FSRPTH14': 0.561094566}, '26135': {'FFRPTH14': 0.597300203, 'FSRPTH14': 1.0751403659999998}, '26137': {'FFRPTH14': 0.827883103, 'FSRPTH14': 0.952065568}, '26139': {'FFRPTH14': 0.550142603, 'FSRPTH14': 0.463277981}, '26141': {'FFRPTH14': 0.46139649299999996, 'FSRPTH14': 1.153491233}, '26143': {'FFRPTH14': 0.709663953, 'FSRPTH14': 1.252348153}, '26145': {'FFRPTH14': 0.7230324290000001, 'FSRPTH14': 0.564067852}, '26147': {'FFRPTH14': 0.518497233, 'FSRPTH14': 0.662177189}, '26149': {'FFRPTH14': 0.492239031, 'FSRPTH14': 0.623502773}, '26151': {'FFRPTH14': 0.360689639, 'FSRPTH14': 0.673287325}, '26153': {'FFRPTH14': 0.856688288, 'FSRPTH14': 1.468608493}, '26155': {'FFRPTH14': 0.565766759, 'FSRPTH14': 0.49323255899999996}, '26157': {'FFRPTH14': 0.333333333, 'FSRPTH14': 0.40740740700000005}, '26159': {'FFRPTH14': 0.545220016, 'FSRPTH14': 0.771286852}, '26161': {'FFRPTH14': 0.753767436, 'FSRPTH14': 0.815413844}, '26163': {'FFRPTH14': 0.719626655, 'FSRPTH14': 0.61253261}, '26165': {'FFRPTH14': 0.729793833, 'FSRPTH14': 0.8514261390000001}, '27001': {'FFRPTH14': 0.570667681, 'FSRPTH14': 1.268150403}, '27003': {'FFRPTH14': 0.587953104, 'FSRPTH14': 0.427070414}, '27005': {'FFRPTH14': 0.481072792, 'FSRPTH14': 0.7817432879999999}, '27007': {'FFRPTH14': 0.503679047, 'FSRPTH14': 0.700770848}, '27009': {'FFRPTH14': 0.35437655, 'FSRPTH14': 0.68344049}, '27011': {'FFRPTH14': 0.585137507, 'FSRPTH14': 1.36532085}, '27013': {'FFRPTH14': 0.8105834670000001, 'FSRPTH14': 0.841171523}, '27015': {'FFRPTH14': 0.71168749, 'FSRPTH14': 0.869840266}, '27017': {'FFRPTH14': 0.33735346200000005, 'FSRPTH14': 0.618481347}, '27019': {'FFRPTH14': 0.554767922, 'FSRPTH14': 0.462306602}, '27021': {'FFRPTH14': 0.350152316, 'FSRPTH14': 1.29556357}, '27023': {'FFRPTH14': 0.5780346820000001, 'FSRPTH14': 0.660611065}, '27025': {'FFRPTH14': 0.481258677, 'FSRPTH14': 0.481258677}, '27027': {'FFRPTH14': 0.522142088, 'FSRPTH14': 0.342655745}, '27029': {'FFRPTH14': 0.227505403, 'FSRPTH14': 1.251279718}, '27031': {'FFRPTH14': 0.764379897, 'FSRPTH14': 2.484234665}, '27033': {'FFRPTH14': 0.343849394, 'FSRPTH14': 0.515774091}, '27035': {'FFRPTH14': 0.632261124, 'FSRPTH14': 1.1696830790000001}, '27037': {'FFRPTH14': 0.649651297, 'FSRPTH14': 0.562384705}, '27039': {'FFRPTH14': 0.442195254, 'FSRPTH14': 0.294796836}, '27041': {'FFRPTH14': 0.7067137809999999, 'FSRPTH14': 1.1416145690000001}, '27043': {'FFRPTH14': 0.422773393, 'FSRPTH14': 1.056933484}, '27045': {'FFRPTH14': 0.33692722399999997, 'FSRPTH14': 1.540238737}, '27047': {'FFRPTH14': 0.745784695, 'FSRPTH14': 0.778210117}, '27049': {'FFRPTH14': 0.646231394, 'FSRPTH14': 0.7539366259999999}, '27051': {'FFRPTH14': 0.167897918, 'FSRPTH14': 0.5036937539999999}, '27053': {'FFRPTH14': 0.7961625790000001, 'FSRPTH14': 0.753260554}, '27055': {'FFRPTH14': 0.160102466, 'FSRPTH14': 0.907247305}, '27057': {'FFRPTH14': 0.534681379, 'FSRPTH14': 0.9721479609999999}, '27059': {'FFRPTH14': 0.416525655, 'FSRPTH14': 0.468591362}, '27061': {'FFRPTH14': 0.329026739, 'FSRPTH14': 0.636118362}, '27063': {'FFRPTH14': 0.486902327, 'FSRPTH14': 0.8764241890000001}, '27065': {'FFRPTH14': 0.25109855600000003, 'FSRPTH14': 0.941619586}, '27067': {'FFRPTH14': 0.567577155, 'FSRPTH14': 0.638524299}, '27069': {'FFRPTH14': 0.0, 'FSRPTH14': 1.3528748590000002}, '27071': {'FFRPTH14': 0.622277536, 'FSRPTH14': 1.244555072}, '27073': {'FFRPTH14': 0.435350457, 'FSRPTH14': 1.015817733}, '27075': {'FFRPTH14': 0.74906367, 'FSRPTH14': 1.966292135}, '27077': {'FFRPTH14': 0.510464523, 'FSRPTH14': 1.78662583}, '27079': {'FFRPTH14': 0.216060497, 'FSRPTH14': 0.828231905}, '27081': {'FFRPTH14': 0.0, 'FSRPTH14': 1.036627505}, '27083': {'FFRPTH14': 0.9351256579999999, 'FSRPTH14': 0.8571985190000001}, '27085': {'FFRPTH14': 0.668859038, 'FSRPTH14': 0.501644278}, '27087': {'FFRPTH14': 0.544959128, 'FSRPTH14': 0.544959128}, '27089': {'FFRPTH14': 0.212381863, 'FSRPTH14': 0.955718382}, '27091': {'FFRPTH14': 0.692383778, 'FSRPTH14': 0.59347181}, '27093': {'FFRPTH14': 0.47604622, 'FSRPTH14': 0.649153936}, '27095': {'FFRPTH14': 0.46360686100000004, 'FSRPTH14': 1.0044815329999999}, '27097': {'FFRPTH14': 0.548613228, 'FSRPTH14': 0.975312405}, '27099': {'FFRPTH14': 0.584899423, 'FSRPTH14': 0.635760242}, '27101': {'FFRPTH14': 0.354191263, 'FSRPTH14': 1.4167650530000002}, '27103': {'FFRPTH14': 0.5741395460000001, 'FSRPTH14': 0.39283232100000004}, '27105': {'FFRPTH14': 0.41685965700000005, 'FSRPTH14': 0.787401575}, '27107': {'FFRPTH14': 0.15062509400000001, 'FSRPTH14': 0.30125018800000003}, '27109': {'FFRPTH14': 0.698663224, 'FSRPTH14': 0.6653935470000001}, '27111': {'FFRPTH14': 0.624620456, 'FSRPTH14': 0.7460744340000001}, '27113': {'FFRPTH14': 0.42680324399999997, 'FSRPTH14': 1.138141983}, '27115': {'FFRPTH14': 0.378071834, 'FSRPTH14': 0.756143667}, '27117': {'FFRPTH14': 0.75422907, 'FSRPTH14': 0.75422907}, '27119': {'FFRPTH14': 0.567751703, 'FSRPTH14': 0.820085794}, '27121': {'FFRPTH14': 0.36416606, 'FSRPTH14': 0.8193736340000001}, '27123': {'FFRPTH14': 0.696510875, 'FSRPTH14': 0.657085731}, '27125': {'FFRPTH14': 0.24734108300000002, 'FSRPTH14': 0.9893643329999999}, '27127': {'FFRPTH14': 0.451176281, 'FSRPTH14': 1.095713825}, '27129': {'FFRPTH14': 0.399334443, 'FSRPTH14': 0.798668885}, '27131': {'FFRPTH14': 0.53721355, 'FSRPTH14': 0.414421881}, '27133': {'FFRPTH14': 0.62807495, 'FSRPTH14': 0.732754109}, '27135': {'FFRPTH14': 0.5102366220000001, 'FSRPTH14': 0.892914089}, '27137': {'FFRPTH14': 0.567308123, 'FSRPTH14': 0.816127475}, '27139': {'FFRPTH14': 0.5512915970000001, 'FSRPTH14': 0.357981557}, '27141': {'FFRPTH14': 0.49382174100000004, 'FSRPTH14': 0.40603121}, '27143': {'FFRPTH14': 0.268132457, 'FSRPTH14': 0.469231801}, '27145': {'FFRPTH14': 0.6801297479999999, 'FSRPTH14': 0.778225385}, '27147': {'FFRPTH14': 0.765592103, 'FSRPTH14': 0.738249528}, '27149': {'FFRPTH14': 0.510204082, 'FSRPTH14': 1.12244898}, '27151': {'FFRPTH14': 0.741839763, 'FSRPTH14': 0.9537939809999999}, '27153': {'FFRPTH14': 0.247279921, 'FSRPTH14': 0.576986482}, '27155': {'FFRPTH14': 0.5904930620000001, 'FSRPTH14': 0.29524653100000003}, '27157': {'FFRPTH14': 0.46812096200000003, 'FSRPTH14': 1.12349031}, '27159': {'FFRPTH14': 0.9449734679999999, 'FSRPTH14': 0.7269026679999999}, '27161': {'FFRPTH14': 0.525624179, 'FSRPTH14': 0.5781865970000001}, '27163': {'FFRPTH14': 0.517484145, 'FSRPTH14': 0.653875314}, '27165': {'FFRPTH14': 0.541369665, 'FSRPTH14': 0.812054498}, '27167': {'FFRPTH14': 0.307929176, 'FSRPTH14': 0.615858353}, '27169': {'FFRPTH14': 0.6654011, 'FSRPTH14': 0.626259859}, '27171': {'FFRPTH14': 0.49261842100000003, 'FSRPTH14': 0.523407072}, '27173': {'FFRPTH14': 0.69245227, 'FSRPTH14': 0.890295776}, '28001': {'FFRPTH14': 0.945268929, 'FSRPTH14': 0.6301792860000001}, '28003': {'FFRPTH14': 0.7223113959999999, 'FSRPTH14': 0.8560727659999999}, '28005': {'FFRPTH14': 0.237548499, 'FSRPTH14': 0.158365666}, '28007': {'FFRPTH14': 0.52183896, 'FSRPTH14': 0.469655064}, '28009': {'FFRPTH14': 0.0, 'FSRPTH14': 0.0}, '28011': {'FFRPTH14': 0.5330490410000001, 'FSRPTH14': 0.6811182179999999}, '28013': {'FFRPTH14': 0.271278399, 'FSRPTH14': 0.40691759899999996}, '28015': {'FFRPTH14': 0.0, 'FSRPTH14': 0.292568754}, '28017': {'FFRPTH14': 0.462080518, 'FSRPTH14': 0.346560388}, '28019': {'FFRPTH14': 0.48227634399999997, 'FSRPTH14': 0.24113817199999998}, '28021': {'FFRPTH14': 0.5506607929999999, 'FSRPTH14': 0.0}, '28023': {'FFRPTH14': 0.24541382899999997, 'FSRPTH14': 0.429474201}, '28025': {'FFRPTH14': 0.543881335, 'FSRPTH14': 0.64276885}, '28027': {'FFRPTH14': 0.685290442, 'FSRPTH14': 0.604668037}, '28029': {'FFRPTH14': 0.590339271, 'FSRPTH14': 0.45143591299999997}, '28031': {'FFRPTH14': 0.565785413, 'FSRPTH14': 0.565785413}, '28033': {'FFRPTH14': 0.7606209009999999, 'FSRPTH14': 0.6845588109999999}, '28035': {'FFRPTH14': 0.995676667, 'FSRPTH14': 0.8122625440000001}, '28037': {'FFRPTH14': 0.510660028, 'FSRPTH14': 0.127665007}, '28039': {'FFRPTH14': 0.514955156, 'FSRPTH14': 0.472042226}, '28041': {'FFRPTH14': 0.209409465, 'FSRPTH14': 0.209409465}, '28043': {'FFRPTH14': 0.969260593, 'FSRPTH14': 0.738484261}, '28045': {'FFRPTH14': 0.6528977779999999, 'FSRPTH14': 0.805240593}, '28047': {'FFRPTH14': 0.8138331540000001, 'FSRPTH14': 0.884164414}, '28049': {'FFRPTH14': 0.943671044, 'FSRPTH14': 0.41029175799999995}, '28051': {'FFRPTH14': 0.216696462, 'FSRPTH14': 0.108348231}, '28053': {'FFRPTH14': 0.34321015899999996, 'FSRPTH14': 0.22880677300000002}, '28055': {'FFRPTH14': 0.0, 'FSRPTH14': 0.0}, '28057': {'FFRPTH14': 0.51005228, 'FSRPTH14': 0.552556637}, '28059': {'FFRPTH14': 0.588081084, 'FSRPTH14': 0.58099577}, '28061': {'FFRPTH14': 0.24094934, 'FSRPTH14': 0.24094934}, '28063': {'FFRPTH14': 0.263192525, 'FSRPTH14': 0.0}, '28065': {'FFRPTH14': 0.42294028100000003, 'FSRPTH14': 0.169176112}, '28067': {'FFRPTH14': 0.732171621, 'FSRPTH14': 0.307512081}, '28069': {'FFRPTH14': 0.295188429, 'FSRPTH14': 0.295188429}, '28071': {'FFRPTH14': 0.812393728, 'FSRPTH14': 1.001322501}, '28073': {'FFRPTH14': 0.948435082, 'FSRPTH14': 0.632290055}, '28075': {'FFRPTH14': 0.827700372, 'FSRPTH14': 0.614504822}, '28077': {'FFRPTH14': 0.47992321200000004, 'FSRPTH14': 0.15997440400000001}, '28079': {'FFRPTH14': 0.517397491, 'FSRPTH14': 0.388048118}, '28081': {'FFRPTH14': 0.9384604559999999, 'FSRPTH14': 0.9736527229999999}, '28083': {'FFRPTH14': 0.6683215579999999, 'FSRPTH14': 0.6683215579999999}, '28085': {'FFRPTH14': 0.805176132, 'FSRPTH14': 0.431344357}, '28087': {'FFRPTH14': 0.6696802279999999, 'FSRPTH14': 0.7868742679999999}, '28089': {'FFRPTH14': 0.983400205, 'FSRPTH14': 0.7375501529999999}, '28091': {'FFRPTH14': 0.811813824, 'FSRPTH14': 0.541209216}, '28093': {'FFRPTH14': 0.358779047, 'FSRPTH14': 0.24838549399999998}, '28095': {'FFRPTH14': 0.5555092629999999, 'FSRPTH14': 0.583284726}, '28097': {'FFRPTH14': 0.576923077, 'FSRPTH14': 0.480769231}, '28099': {'FFRPTH14': 0.610894281, 'FSRPTH14': 0.373324283}, '28101': {'FFRPTH14': 0.595456211, 'FSRPTH14': 0.32063026699999997}, '28103': {'FFRPTH14': 0.26990553300000003, 'FSRPTH14': 0.0}, '28105': {'FFRPTH14': 0.7083012909999999, 'FSRPTH14': 0.9106730890000001}, '28107': {'FFRPTH14': 0.580652654, 'FSRPTH14': 0.43548949}, '28109': {'FFRPTH14': 0.669998551, 'FSRPTH14': 0.5432420689999999}, '28111': {'FFRPTH14': 0.24535863300000002, 'FSRPTH14': 0.163572422}, '28113': {'FFRPTH14': 0.773877877, 'FSRPTH14': 0.574167457}, '28115': {'FFRPTH14': 0.549273021, 'FSRPTH14': 0.549273021}, '28117': {'FFRPTH14': 0.629227623, 'FSRPTH14': 0.393267264}, '28119': {'FFRPTH14': 0.5209690020000001, 'FSRPTH14': 0.130242251}, '28121': {'FFRPTH14': 0.837441751, 'FSRPTH14': 0.479502938}, '28123': {'FFRPTH14': 0.597308598, 'FSRPTH14': 0.456765398}, '28125': {'FFRPTH14': 0.645577792, 'FSRPTH14': 0.21519259699999999}, '28127': {'FFRPTH14': 0.69183993, 'FSRPTH14': 0.436951535}, '28129': {'FFRPTH14': 0.37064492200000004, 'FSRPTH14': 0.123548307}, '28131': {'FFRPTH14': 0.783216783, 'FSRPTH14': 0.391608392}, '28133': {'FFRPTH14': 0.43642711700000003, 'FSRPTH14': 0.327320338}, '28135': {'FFRPTH14': 0.406476526, 'FSRPTH14': 0.33873043799999997}, '28137': {'FFRPTH14': 0.67366331, 'FSRPTH14': 0.177279818}, '28139': {'FFRPTH14': 0.453741095, 'FSRPTH14': 0.31761876699999997}, '28141': {'FFRPTH14': 0.566426365, 'FSRPTH14': 0.978372812}, '28143': {'FFRPTH14': 0.943574259, 'FSRPTH14': 0.566144556}, '28145': {'FFRPTH14': 0.533864825, 'FSRPTH14': 0.462682849}, '28147': {'FFRPTH14': 0.5383942389999999, 'FSRPTH14': 0.6729927990000001}, '28149': {'FFRPTH14': 0.750265719, 'FSRPTH14': 0.625221433}, '28151': {'FFRPTH14': 0.755749826, 'FSRPTH14': 0.388087749}, '28153': {'FFRPTH14': 0.634455832, 'FSRPTH14': 0.683260127}, '28155': {'FFRPTH14': 0.601684717, 'FSRPTH14': 0.300842359}, '28157': {'FFRPTH14': 0.435208356, 'FSRPTH14': 0.0}, '28159': {'FFRPTH14': 0.7035393440000001, 'FSRPTH14': 0.4870657}, '28161': {'FFRPTH14': 0.488758553, 'FSRPTH14': 0.40729879399999996}, '28163': {'FFRPTH14': 0.359492397, 'FSRPTH14': 0.503289355}, '29001': {'FFRPTH14': 0.78118897, 'FSRPTH14': 0.546832279}, '29003': {'FFRPTH14': 0.23016284, 'FSRPTH14': 0.28770355}, '29005': {'FFRPTH14': 0.371609067, 'FSRPTH14': 1.114827202}, '29007': {'FFRPTH14': 0.6180708460000001, 'FSRPTH14': 0.502182563}, '29009': {'FFRPTH14': 0.42061578200000005, 'FSRPTH14': 0.644944198}, '29011': {'FFRPTH14': 0.49763622799999996, 'FSRPTH14': 0.663514971}, '29013': {'FFRPTH14': 0.542691751, 'FSRPTH14': 0.6632899179999999}, '29015': {'FFRPTH14': 0.26587259399999996, 'FSRPTH14': 1.169839413}, '29017': {'FFRPTH14': 0.161368404, 'FSRPTH14': 0.484105212}, '29019': {'FFRPTH14': 0.804784706, 'FSRPTH14': 0.903211612}, '29021': {'FFRPTH14': 0.7934201999999999, 'FSRPTH14': 0.715195673}, '29023': {'FFRPTH14': 0.7213999809999999, 'FSRPTH14': 0.7446709490000001}, '29025': {'FFRPTH14': 0.221385876, 'FSRPTH14': 0.442771751}, '29027': {'FFRPTH14': 0.49162011200000005, 'FSRPTH14': 0.558659218}, '29029': {'FFRPTH14': 0.5224779079999999, 'FSRPTH14': 1.862747325}, '29031': {'FFRPTH14': 0.807247287, 'FSRPTH14': 0.8841279809999999}, '29033': {'FFRPTH14': 0.331748314, 'FSRPTH14': 0.9952449409999999}, '29035': {'FFRPTH14': 0.479386385, 'FSRPTH14': 0.479386385}, '29037': {'FFRPTH14': 0.505506051, 'FSRPTH14': 0.574889235}, '29039': {'FFRPTH14': 0.860091743, 'FSRPTH14': 0.7167431190000001}, '29041': {'FFRPTH14': 0.12997140599999998, 'FSRPTH14': 1.03977125}, '29043': {'FFRPTH14': 0.511565024, 'FSRPTH14': 0.548105382}, '29045': {'FFRPTH14': 0.289142692, 'FSRPTH14': 0.72285673}, '29047': {'FFRPTH14': 0.6590152429999999, 'FSRPTH14': 0.629060005}, '29049': {'FFRPTH14': 0.29558106300000003, 'FSRPTH14': 0.7882161679999999}, '29051': {'FFRPTH14': 0.796791933, 'FSRPTH14': 0.862102747}, '29053': {'FFRPTH14': 0.909866363, 'FSRPTH14': 0.682399773}, '29055': {'FFRPTH14': 0.405679513, 'FSRPTH14': 0.93306288}, '29057': {'FFRPTH14': 0.393287887, 'FSRPTH14': 0.917671736}, '29059': {'FFRPTH14': 0.549148819, 'FSRPTH14': 0.549148819}, '29061': {'FFRPTH14': 0.120525491, 'FSRPTH14': 0.602627456}, '29063': {'FFRPTH14': 0.315159155, 'FSRPTH14': 0.315159155}, '29065': {'FFRPTH14': 0.38326413299999995, 'FSRPTH14': 0.574896199}, '29067': {'FFRPTH14': 0.295290123, 'FSRPTH14': 0.516757714}, '29069': {'FFRPTH14': 0.446656457, 'FSRPTH14': 0.8295048490000001}, '29071': {'FFRPTH14': 0.607342972, 'FSRPTH14': 0.617138827}, '29073': {'FFRPTH14': 0.739943495, 'FSRPTH14': 1.547154581}, '29075': {'FFRPTH14': 0.439496045, 'FSRPTH14': 0.878992089}, '29077': {'FFRPTH14': 0.930509156, 'FSRPTH14': 0.8710405259999999}, '29079': {'FFRPTH14': 0.294204178, 'FSRPTH14': 0.588408355}, '29081': {'FFRPTH14': 0.810278967, 'FSRPTH14': 0.810278967}, '29083': {'FFRPTH14': 0.7263482840000001, 'FSRPTH14': 0.8625385870000001}, '29085': {'FFRPTH14': 0.108471635, 'FSRPTH14': 1.193187981}, '29087': {'FFRPTH14': 0.664304694, 'FSRPTH14': 1.771479185}, '29089': {'FFRPTH14': 0.19686977100000003, 'FSRPTH14': 0.885913968}, '29091': {'FFRPTH14': 0.572523834, 'FSRPTH14': 0.821447241}, '29093': {'FFRPTH14': 0.097399435, 'FSRPTH14': 0.681796046}, '29095': {'FFRPTH14': 0.7128314040000001, 'FSRPTH14': 0.775771344}, '29097': {'FFRPTH14': 0.816722391, 'FSRPTH14': 0.740154667}, '29099': {'FFRPTH14': 0.547782827, 'FSRPTH14': 0.41308213200000005}, '29101': {'FFRPTH14': 0.607041684, 'FSRPTH14': 0.496670468}, '29103': {'FFRPTH14': 0.0, 'FSRPTH14': 0.75}, '29105': {'FFRPTH14': 0.6490025110000001, 'FSRPTH14': 0.7618725129999999}, '29107': {'FFRPTH14': 0.5506607929999999, 'FSRPTH14': 0.856583456}, '29109': {'FFRPTH14': 0.447097809, 'FSRPTH14': 0.657496778}, '29111': {'FFRPTH14': 0.295916354, 'FSRPTH14': 0.789110278}, '29113': {'FFRPTH14': 0.331803351, 'FSRPTH14': 0.497705027}, '29115': {'FFRPTH14': 0.48736902, 'FSRPTH14': 0.56859719}, '29117': {'FFRPTH14': 0.265727762, 'FSRPTH14': 0.664319405}, '29119': {'FFRPTH14': 0.307017544, 'FSRPTH14': 0.43859649100000003}, '29121': {'FFRPTH14': 0.452225596, 'FSRPTH14': 0.969054849}, '29123': {'FFRPTH14': 0.64683053, 'FSRPTH14': 0.5659767139999999}, '29125': {'FFRPTH14': 0.332852546, 'FSRPTH14': 0.7766559409999999}, '29127': {'FFRPTH14': 0.656984786, 'FSRPTH14': 0.829875519}, '29129': {'FFRPTH14': 0.537778973, 'FSRPTH14': 1.075557946}, '29131': {'FFRPTH14': 0.596634979, 'FSRPTH14': 1.073942962}, '29133': {'FFRPTH14': 0.42158516, 'FSRPTH14': 0.281056773}, '29135': {'FFRPTH14': 0.504540868, 'FSRPTH14': 0.504540868}, '29137': {'FFRPTH14': 0.34455036200000005, 'FSRPTH14': 1.033651085}, '29139': {'FFRPTH14': 0.42226163299999997, 'FSRPTH14': 0.50671396}, '29141': {'FFRPTH14': 0.39525691700000004, 'FSRPTH14': 1.4822134390000001}, '29143': {'FFRPTH14': 0.547285464, 'FSRPTH14': 0.9303852890000001}, '29145': {'FFRPTH14': 0.460766579, 'FSRPTH14': 0.426635721}, '29147': {'FFRPTH14': 0.51990815, 'FSRPTH14': 0.51990815}, '29149': {'FFRPTH14': 0.274951883, 'FSRPTH14': 0.733205022}, '29151': {'FFRPTH14': 0.291906882, 'FSRPTH14': 0.7297672040000001}, '29153': {'FFRPTH14': 0.105351875, 'FSRPTH14': 0.421407501}, '29155': {'FFRPTH14': 0.33994334299999995, 'FSRPTH14': 0.793201133}, '29157': {'FFRPTH14': 0.572856994, 'FSRPTH14': 0.624934903}, '29159': {'FFRPTH14': 0.663114269, 'FSRPTH14': 0.663114269}, '29161': {'FFRPTH14': 0.713537137, 'FSRPTH14': 0.735835173}, '29163': {'FFRPTH14': 0.485410711, 'FSRPTH14': 0.9168868990000001}, '29165': {'FFRPTH14': 0.654091235, 'FSRPTH14': 0.854538549}, '29167': {'FFRPTH14': 0.41862562, 'FSRPTH14': 0.579635474}, '29169': {'FFRPTH14': 0.5427052920000001, 'FSRPTH14': 0.561419268}, '29171': {'FFRPTH14': 0.207082212, 'FSRPTH14': 0.41416442299999995}, '29173': {'FFRPTH14': 0.09751340800000001, 'FSRPTH14': 0.19502681600000002}, '29175': {'FFRPTH14': 0.5185067010000001, 'FSRPTH14': 0.757817486}, '29177': {'FFRPTH14': 0.305024184, 'FSRPTH14': 0.261449301}, '29179': {'FFRPTH14': 0.152322925, 'FSRPTH14': 0.45696877399999997}, '29181': {'FFRPTH14': 0.5011095999999999, 'FSRPTH14': 0.21476125699999998}, '29183': {'FFRPTH14': 0.711475574, 'FSRPTH14': 0.719380858}, '29185': {'FFRPTH14': 0.10574177900000001, 'FSRPTH14': 0.951676007}, '29186': {'FFRPTH14': 0.334933572, 'FSRPTH14': 0.893156191}, '29187': {'FFRPTH14': 0.773195876, 'FSRPTH14': 0.591267435}, '29189': {'FFRPTH14': 0.80249452, 'FSRPTH14': 0.7655638020000001}, '29195': {'FFRPTH14': 0.513984666, 'FSRPTH14': 0.685312888}, '29197': {'FFRPTH14': 0.0, 'FSRPTH14': 0.457665904}, '29199': {'FFRPTH14': 0.411268764, 'FSRPTH14': 0.822537528}, '29201': {'FFRPTH14': 0.539804128, 'FSRPTH14': 0.7197388379999999}, '29203': {'FFRPTH14': 0.120062432, 'FSRPTH14': 0.720374595}, '29205': {'FFRPTH14': 0.163719712, 'FSRPTH14': 1.309757695}, '29207': {'FFRPTH14': 0.502226538, 'FSRPTH14': 0.602671845}, '29209': {'FFRPTH14': 0.450102881, 'FSRPTH14': 0.932355967}, '29211': {'FFRPTH14': 0.46794571799999995, 'FSRPTH14': 0.155981906}, '29213': {'FFRPTH14': 0.995758805, 'FSRPTH14': 1.641158031}, '29215': {'FFRPTH14': 0.428983699, 'FSRPTH14': 0.623976289}, '29217': {'FFRPTH14': 0.571401362, 'FSRPTH14': 0.571401362}, '29219': {'FFRPTH14': 0.5413045439999999, 'FSRPTH14': 0.45108712}, '29221': {'FFRPTH14': 0.319017426, 'FSRPTH14': 0.398771783}, '29223': {'FFRPTH14': 0.37169194200000005, 'FSRPTH14': 0.669045495}, '29225': {'FFRPTH14': 0.5150726520000001, 'FSRPTH14': 0.298199957}, '29227': {'FFRPTH14': 0.0, 'FSRPTH14': 1.447178003}, '29229': {'FFRPTH14': 0.492045268, 'FSRPTH14': 0.546716965}, '29510': {'FFRPTH14': 0.8789643970000001, 'FSRPTH14': 1.140448429}, '30001': {'FFRPTH14': 0.74906367, 'FSRPTH14': 1.7121455319999999}, '30003': {'FFRPTH14': 0.150579732, 'FSRPTH14': 0.451739196}, '30005': {'FFRPTH14': 0.302160447, 'FSRPTH14': 0.302160447}, '30007': {'FFRPTH14': 0.176460208, 'FSRPTH14': 0.882301041}, '30009': {'FFRPTH14': 0.7693047409999999, 'FSRPTH14': 1.346283296}, '30011': {'FFRPTH14': 0.0, 'FSRPTH14': 0.855431993}, '30013': {'FFRPTH14': 0.83794812, 'FSRPTH14': 0.813659769}, '30015': {'FFRPTH14': 0.169664065, 'FSRPTH14': 1.017984391}, '30017': {'FFRPTH14': 0.6615944429999999, 'FSRPTH14': 1.0750909690000001}, '30019': {'FFRPTH14': 1.115448968, 'FSRPTH14': 1.115448968}, '30021': {'FFRPTH14': 0.525320445, 'FSRPTH14': 1.15570498}, '30023': {'FFRPTH14': 0.327868852, 'FSRPTH14': 1.092896175}, '30025': {'FFRPTH14': 0.965250965, 'FSRPTH14': 1.930501931}, '30027': {'FFRPTH14': 0.611781157, 'FSRPTH14': 1.310959622}, '30029': {'FFRPTH14': 0.7163625640000001, 'FSRPTH14': 1.1482870509999998}, '30031': {'FFRPTH14': 0.996834793, 'FSRPTH14': 1.459283923}, '30033': {'FFRPTH14': 0.0, 'FSRPTH14': 0.76394194}, '30035': {'FFRPTH14': 0.657126168, 'FSRPTH14': 0.876168224}, '30037': {'FFRPTH14': 1.17370892, 'FSRPTH14': 0.0}, '30039': {'FFRPTH14': 0.934870676, 'FSRPTH14': 1.869741352}, '30041': {'FFRPTH14': 0.843576765, 'FSRPTH14': 0.964087732}, '30043': {'FFRPTH14': 0.259560478, 'FSRPTH14': 0.865201592}, '30045': {'FFRPTH14': 0.0, 'FSRPTH14': 1.506780512}, '30047': {'FFRPTH14': 0.6185779579999999, 'FSRPTH14': 0.6529434000000001}, '30049': {'FFRPTH14': 0.652939747, 'FSRPTH14': 1.017371234}, '30051': {'FFRPTH14': 0.0, 'FSRPTH14': 0.847816872}, '30053': {'FFRPTH14': 0.418300654, 'FSRPTH14': 1.307189542}, '30055': {'FFRPTH14': 1.180637544, 'FSRPTH14': 1.180637544}, '30057': {'FFRPTH14': 0.127877238, 'FSRPTH14': 2.046035806}, '30059': {'FFRPTH14': 0.539665407, 'FSRPTH14': 2.698327037}, '30061': {'FFRPTH14': 0.234907212, 'FSRPTH14': 1.174536058}, '30063': {'FFRPTH14': 0.7454474459999999, 'FSRPTH14': 0.931809307}, '30065': {'FFRPTH14': 0.0, 'FSRPTH14': 0.871649597}, '30067': {'FFRPTH14': 0.755667506, 'FSRPTH14': 2.518891688}, '30069': {'FFRPTH14': 0.0, 'FSRPTH14': 2.06185567}, '30071': {'FFRPTH14': 0.477099237, 'FSRPTH14': 1.43129771}, '30073': {'FFRPTH14': 0.321595112, 'FSRPTH14': 0.964785335}, '30075': {'FFRPTH14': 0.560852496, 'FSRPTH14': 2.8042624789999997}, '30077': {'FFRPTH14': 0.43421624, 'FSRPTH14': 1.447387466}, '30079': {'FFRPTH14': 0.0, 'FSRPTH14': 1.7421602790000001}, '30081': {'FFRPTH14': 0.41433097700000004, 'FSRPTH14': 0.9992688279999999}, '30083': {'FFRPTH14': 0.8638562540000001, 'FSRPTH14': 0.95024188}, '30085': {'FFRPTH14': 0.44122838, 'FSRPTH14': 0.352982704}, '30087': {'FFRPTH14': 0.536135535, 'FSRPTH14': 0.536135535}, '30089': {'FFRPTH14': 0.615980289, 'FSRPTH14': 1.231960577}, '30091': {'FFRPTH14': 0.27056277100000004, 'FSRPTH14': 1.6233766230000002}, '30093': {'FFRPTH14': 0.951557093, 'FSRPTH14': 1.038062284}, '30095': {'FFRPTH14': 0.322927879, 'FSRPTH14': 0.645855759}, '30097': {'FFRPTH14': 0.0, 'FSRPTH14': 1.909959072}, '30099': {'FFRPTH14': 0.0, 'FSRPTH14': 0.8245382590000001}, '30101': {'FFRPTH14': 0.388349515, 'FSRPTH14': 2.13592233}, '30103': {'FFRPTH14': 0.0, 'FSRPTH14': 1.445086705}, '30105': {'FFRPTH14': 1.570680628, 'FSRPTH14': 1.178010471}, '30107': {'FFRPTH14': 0.0, 'FSRPTH14': 2.378686965}, '30109': {'FFRPTH14': 0.89206066, 'FSRPTH14': 0.89206066}, '30111': {'FFRPTH14': 0.745338422, 'FSRPTH14': 0.7903157409999999}, '31001': {'FFRPTH14': 1.080840512, 'FSRPTH14': 0.635788537}, '31003': {'FFRPTH14': 0.625195374, 'FSRPTH14': 1.0940919040000001}, '31005': {'FFRPTH14': 0.0, 'FSRPTH14': 2.207505519}, '31007': {'FFRPTH14': 0.0, 'FSRPTH14': 0.0}, '31009': {'FFRPTH14': 0.0, 'FSRPTH14': 1.984126984}, '31011': {'FFRPTH14': 0.186811134, 'FSRPTH14': 0.560433402}, '31013': {'FFRPTH14': 0.44091710799999995, 'FSRPTH14': 1.3227513229999999}, '31015': {'FFRPTH14': 0.0, 'FSRPTH14': 0.491883915}, '31017': {'FFRPTH14': 0.0, 'FSRPTH14': 1.7001020059999998}, '31019': {'FFRPTH14': 0.8709356340000001, 'FSRPTH14': 0.9124087590000001}, '31021': {'FFRPTH14': 0.304275065, 'FSRPTH14': 1.217100259}, '31023': {'FFRPTH14': 0.121226815, 'FSRPTH14': 0.48490726100000003}, '31025': {'FFRPTH14': 0.391788121, 'FSRPTH14': 0.587682181}, '31027': {'FFRPTH14': 0.116144019, 'FSRPTH14': 0.6968641109999999}, '31029': {'FFRPTH14': 0.251382604, 'FSRPTH14': 1.256913022}, '31031': {'FFRPTH14': 0.867754252, 'FSRPTH14': 1.214855953}, '31033': {'FFRPTH14': 0.492707923, 'FSRPTH14': 1.281040599}, '31035': {'FFRPTH14': 0.15835312699999998, 'FSRPTH14': 0.950118765}, '31037': {'FFRPTH14': 0.380807312, 'FSRPTH14': 0.666412795}, '31039': {'FFRPTH14': 0.664672649, 'FSRPTH14': 1.218566523}, '31041': {'FFRPTH14': 0.279642058, 'FSRPTH14': 1.398210291}, '31043': {'FFRPTH14': 0.623501199, 'FSRPTH14': 0.527577938}, '31045': {'FFRPTH14': 0.8847600090000001, 'FSRPTH14': 1.548330015}, '31047': {'FFRPTH14': 0.705511288, 'FSRPTH14': 0.747011952}, '31049': {'FFRPTH14': 0.515463918, 'FSRPTH14': 2.06185567}, '31051': {'FFRPTH14': 0.0, 'FSRPTH14': 0.518851608}, '31053': {'FFRPTH14': 0.6803831920000001, 'FSRPTH14': 0.762029175}, '31055': {'FFRPTH14': 0.7473621429999999, 'FSRPTH14': 0.79890436}, '31057': {'FFRPTH14': 0.530222694, 'FSRPTH14': 1.0604453870000001}, '31059': {'FFRPTH14': 0.529941706, 'FSRPTH14': 1.236530648}, '31061': {'FFRPTH14': 0.0, 'FSRPTH14': 0.975292588}, '31063': {'FFRPTH14': 0.0, 'FSRPTH14': 0.36968576700000005}, '31065': {'FFRPTH14': 0.409165303, 'FSRPTH14': 0.818330606}, '31067': {'FFRPTH14': 0.692424872, 'FSRPTH14': 0.830909846}, '31069': {'FFRPTH14': 0.0, 'FSRPTH14': 1.5698587130000001}, '31071': {'FFRPTH14': 0.49925112299999996, 'FSRPTH14': 2.496255617}, '31073': {'FFRPTH14': 0.507614213, 'FSRPTH14': 0.507614213}, '31075': {'FFRPTH14': 0.0, 'FSRPTH14': 1.615508885}, '31077': {'FFRPTH14': 0.0, 'FSRPTH14': 1.208702659}, '31079': {'FFRPTH14': 0.796851623, 'FSRPTH14': 0.829376179}, '31081': {'FFRPTH14': 0.4378763, 'FSRPTH14': 0.766283525}, '31083': {'FFRPTH14': 0.8591065290000001, 'FSRPTH14': 1.7182130580000001}, '31085': {'FFRPTH14': 0.0, 'FSRPTH14': 0.0}, '31087': {'FFRPTH14': 0.0, 'FSRPTH14': 1.034126163}, '31089': {'FFRPTH14': 0.48063058700000005, 'FSRPTH14': 1.345765645}, '31091': {'FFRPTH14': 1.373626374, 'FSRPTH14': 2.7472527469999997}, '31093': {'FFRPTH14': 0.314366551, 'FSRPTH14': 0.7859163779999999}, '31095': {'FFRPTH14': 0.545330607, 'FSRPTH14': 1.090661213}, '31097': {'FFRPTH14': 0.38572806200000004, 'FSRPTH14': 1.157184185}, '31099': {'FFRPTH14': 0.45153522, 'FSRPTH14': 0.45153522}, '31101': {'FFRPTH14': 0.985100357, 'FSRPTH14': 1.60078808}, '31103': {'FFRPTH14': 0.0, 'FSRPTH14': 0.0}, '31105': {'FFRPTH14': 0.538647994, 'FSRPTH14': 0.538647994}, '31107': {'FFRPTH14': 0.117896722, 'FSRPTH14': 1.178967225}, '31109': {'FFRPTH14': 0.9310956109999999, 'FSRPTH14': 0.6693285179999999}, '31111': {'FFRPTH14': 0.6980315509999999, 'FSRPTH14': 0.642189027}, '31113': {'FFRPTH14': 0.0, 'FSRPTH14': 0.0}, '31115': {'FFRPTH14': 0.0, 'FSRPTH14': 3.4013605439999997}, '31117': {'FFRPTH14': 0.0, 'FSRPTH14': 2.008032129}, '31119': {'FFRPTH14': 0.909762893, 'FSRPTH14': 0.966623074}, '31121': {'FFRPTH14': 0.515065671, 'FSRPTH14': 0.7725985059999999}, '31123': {'FFRPTH14': 1.439736734, 'FSRPTH14': 0.822706705}, '31125': {'FFRPTH14': 0.56022409, 'FSRPTH14': 1.120448179}, '31127': {'FFRPTH14': 0.557491289, 'FSRPTH14': 0.975609756}, '31129': {'FFRPTH14': 0.457770657, 'FSRPTH14': 0.686655985}, '31131': {'FFRPTH14': 0.506425271, 'FSRPTH14': 0.6330315879999999}, '31133': {'FFRPTH14': 0.370096225, 'FSRPTH14': 0.74019245}, '31135': {'FFRPTH14': 0.0, 'FSRPTH14': 0.691802145}, '31137': {'FFRPTH14': 0.9796451509999999, 'FSRPTH14': 0.761946228}, '31139': {'FFRPTH14': 0.5554012770000001, 'FSRPTH14': 0.5554012770000001}, '31141': {'FFRPTH14': 0.704096002, 'FSRPTH14': 0.6428702629999999}, '31143': {'FFRPTH14': 0.37943464200000004, 'FSRPTH14': 0.569151964}, '31145': {'FFRPTH14': 1.012238888, 'FSRPTH14': 0.368086869}, '31147': {'FFRPTH14': 0.61515748, 'FSRPTH14': 1.230314961}, '31149': {'FFRPTH14': 0.0, 'FSRPTH14': 2.079002079}, '31151': {'FFRPTH14': 0.491159136, 'FSRPTH14': 0.701655908}, '31153': {'FFRPTH14': 0.679470129, 'FSRPTH14': 0.42394290100000004}, '31155': {'FFRPTH14': 0.382427458, 'FSRPTH14': 0.956068646}, '31157': {'FFRPTH14': 0.9872480459999999, 'FSRPTH14': 0.9872480459999999}, '31159': {'FFRPTH14': 0.5830903789999999, 'FSRPTH14': 0.466472303}, '31161': {'FFRPTH14': 0.9507510929999999, 'FSRPTH14': 1.140901312}, '31163': {'FFRPTH14': 0.0, 'FSRPTH14': 0.975927131}, '31165': {'FFRPTH14': 0.0, 'FSRPTH14': 0.0}, '31167': {'FFRPTH14': 0.164771791, 'FSRPTH14': 0.49431537299999995}, '31169': {'FFRPTH14': 0.19120458899999998, 'FSRPTH14': 1.912045889}, '31171': {'FFRPTH14': 0.0, 'FSRPTH14': 1.455604076}, '31173': {'FFRPTH14': 0.43047783, 'FSRPTH14': 0.28698522}, '31175': {'FFRPTH14': 0.7136060890000001, 'FSRPTH14': 0.47573739299999995}, '31177': {'FFRPTH14': 0.44426893100000003, 'FSRPTH14': 0.789811433}, '31179': {'FFRPTH14': 0.95429965, 'FSRPTH14': 0.8482663559999999}, '31181': {'FFRPTH14': 0.27337342800000003, 'FSRPTH14': 0.27337342800000003}, '31183': {'FFRPTH14': 0.0, 'FSRPTH14': 2.6109660569999997}, '31185': {'FFRPTH14': 1.005963929, 'FSRPTH14': 0.9341093629999999}, '32001': {'FFRPTH14': 0.708658135, 'FSRPTH14': 0.500229272}, '32003': {'FFRPTH14': 0.8242816159999999, 'FSRPTH14': 0.617969629}, '32005': {'FFRPTH14': 0.736284079, 'FSRPTH14': 1.051834399}, '32007': {'FFRPTH14': 0.7391123070000001, 'FSRPTH14': 0.549596331}, '32009': {'FFRPTH14': 0.0, 'FSRPTH14': 1.216545012}, '32011': {'FFRPTH14': 0.991080278, 'FSRPTH14': 0.495540139}, '32013': {'FFRPTH14': 0.636610915, 'FSRPTH14': 1.041726952}, '32015': {'FFRPTH14': 0.332834082, 'FSRPTH14': 0.998502247}, '32017': {'FFRPTH14': 0.192901235, 'FSRPTH14': 0.385802469}, '32019': {'FFRPTH14': 0.36687327399999997, 'FSRPTH14': 0.444109753}, '32021': {'FFRPTH14': 0.444444444, 'FSRPTH14': 0.444444444}, '32023': {'FFRPTH14': 0.638569604, 'FSRPTH14': 0.449363795}, '32027': {'FFRPTH14': 0.597193192, 'FSRPTH14': 0.149298298}, '32029': {'FFRPTH14': 0.0, 'FSRPTH14': 2.044989775}, '32031': {'FFRPTH14': 0.754411718, 'FSRPTH14': 0.74532242}, '32033': {'FFRPTH14': 0.39864460799999996, 'FSRPTH14': 0.996611521}, '32510': {'FFRPTH14': 0.898719783, 'FSRPTH14': 0.990425883}, '33001': {'FFRPTH14': 0.795953901, 'FSRPTH14': 1.4095017}, '33003': {'FFRPTH14': 0.9704846090000001, 'FSRPTH14': 2.2363341}, '33005': {'FFRPTH14': 0.630624713, 'FSRPTH14': 0.748866846}, '33007': {'FFRPTH14': 0.758221969, 'FSRPTH14': 1.263703282}, '33009': {'FFRPTH14': 0.858819068, 'FSRPTH14': 1.449954271}, '33011': {'FFRPTH14': 0.7132562, 'FSRPTH14': 0.8736771440000001}, '33013': {'FFRPTH14': 0.72704541, 'FSRPTH14': 0.6998661420000001}, '33015': {'FFRPTH14': 0.908120191, 'FSRPTH14': 1.014566514}, '33017': {'FFRPTH14': 0.6926531, 'FSRPTH14': 0.7643068690000001}, '33019': {'FFRPTH14': 0.417604343, 'FSRPTH14': 0.510405308}, '34001': {'FFRPTH14': 0.755789237, 'FSRPTH14': 1.188187886}, '34003': {'FFRPTH14': 0.816219852, 'FSRPTH14': 1.000458454}, '34005': {'FFRPTH14': 0.689314732, 'FSRPTH14': 0.6181596629999999}, '34007': {'FFRPTH14': 0.673139767, 'FSRPTH14': 0.647701345}, '34009': {'FFRPTH14': 1.783017285, 'FSRPTH14': 3.25138446}, '34011': {'FFRPTH14': 0.635368418, 'FSRPTH14': 0.501941051}, '34013': {'FFRPTH14': 0.69370874, 'FSRPTH14': 0.687425147}, '34015': {'FFRPTH14': 0.58772783, 'FSRPTH14': 0.546483772}, '34017': {'FFRPTH14': 0.756222772, 'FSRPTH14': 0.774156909}, '34019': {'FFRPTH14': 0.785296707, 'FSRPTH14': 1.102588306}, '34021': {'FFRPTH14': 0.753626153, 'FSRPTH14': 0.726710933}, '34023': {'FFRPTH14': 0.783214576, 'FSRPTH14': 0.6779888009999999}, '34025': {'FFRPTH14': 0.842233731, 'FSRPTH14': 1.09013649}, '34027': {'FFRPTH14': 0.826451242, 'FSRPTH14': 0.952520076}, '34029': {'FFRPTH14': 0.701005115, 'FSRPTH14': 0.736822895}, '34031': {'FFRPTH14': 0.650478721, 'FSRPTH14': 0.752668731}, '34033': {'FFRPTH14': 0.525380515, 'FSRPTH14': 0.47902341}, '34035': {'FFRPTH14': 0.790815713, 'FSRPTH14': 0.859974501}, '34037': {'FFRPTH14': 0.5175661970000001, 'FSRPTH14': 0.7867006190000001}, '34039': {'FFRPTH14': 0.661917499, 'FSRPTH14': 0.7975563309999999}, '34041': {'FFRPTH14': 0.7014787170000001, 'FSRPTH14': 0.841774461}, '35001': {'FFRPTH14': 0.8259924120000001, 'FSRPTH14': 0.626155538}, '35003': {'FFRPTH14': 0.0, 'FSRPTH14': 0.562429696}, '35005': {'FFRPTH14': 0.637542123, 'FSRPTH14': 0.5920034000000001}, '35006': {'FFRPTH14': 0.511901715, 'FSRPTH14': 0.329079674}, '35007': {'FFRPTH14': 1.261829653, 'FSRPTH14': 1.41955836}, '35009': {'FFRPTH14': 0.667072142, 'FSRPTH14': 0.49049422200000004}, '35011': {'FFRPTH14': 0.547945205, 'FSRPTH14': 1.6438356159999998}, '35013': {'FFRPTH14': 0.58967783, 'FSRPTH14': 0.50543814}, '35015': {'FFRPTH14': 0.656086532, 'FSRPTH14': 0.620622396}, '35017': {'FFRPTH14': 0.756117679, 'FSRPTH14': 0.859224636}, '35019': {'FFRPTH14': 0.223813787, 'FSRPTH14': 1.342882722}, '35021': {'FFRPTH14': 0.0, 'FSRPTH14': 1.4641288430000001}, '35023': {'FFRPTH14': 0.657894737, 'FSRPTH14': 0.8771929820000001}, '35025': {'FFRPTH14': 0.6285804079999999, 'FSRPTH14': 0.5428648979999999}, '35027': {'FFRPTH14': 1.0149193140000001, 'FSRPTH14': 1.5731249369999998}, '35028': {'FFRPTH14': 0.565546884, 'FSRPTH14': 0.508992195}, '35029': {'FFRPTH14': 0.7700725490000001, 'FSRPTH14': 0.8916629509999999}, '35031': {'FFRPTH14': 0.674782045, 'FSRPTH14': 0.458851791}, '35033': {'FFRPTH14': 0.217770035, 'FSRPTH14': 0.0}, '35035': {'FFRPTH14': 0.507052641, 'FSRPTH14': 0.460956947}, '35037': {'FFRPTH14': 0.9410657570000001, 'FSRPTH14': 0.8234325370000001}, '35039': {'FFRPTH14': 0.5028031270000001, 'FSRPTH14': 0.42738265799999997}, '35041': {'FFRPTH14': 0.40950041, 'FSRPTH14': 0.46068796100000003}, '35043': {'FFRPTH14': 0.45782222, 'FSRPTH14': 0.30521481300000003}, '35045': {'FFRPTH14': 0.759381185, 'FSRPTH14': 0.444318779}, '35047': {'FFRPTH14': 0.531180283, 'FSRPTH14': 0.672828358}, '35049': {'FFRPTH14': 0.735671283, 'FSRPTH14': 1.02589023}, '35051': {'FFRPTH14': 0.529801325, 'FSRPTH14': 1.236203091}, '35053': {'FFRPTH14': 0.635470826, 'FSRPTH14': 0.808781051}, '35055': {'FFRPTH14': 0.78587837, 'FSRPTH14': 1.632208923}, '35057': {'FFRPTH14': 0.448401768, 'FSRPTH14': 0.448401768}, '35059': {'FFRPTH14': 0.698161508, 'FSRPTH14': 0.9308820109999999}, '35061': {'FFRPTH14': 0.6331033939999999, 'FSRPTH14': 0.422068929}, '36001': {'FFRPTH14': 1.05136434, 'FSRPTH14': 1.093548712}, '36003': {'FFRPTH14': 0.377073906, 'FSRPTH14': 0.837942014}, '36005': {'FFRPTH14': 0.6494414039999999, 'FSRPTH14': 0.400512044}, '36007': {'FFRPTH14': 0.785410618, 'FSRPTH14': 0.881686758}, '36009': {'FFRPTH14': 0.6234096689999999, 'FSRPTH14': 0.992366412}, '36011': {'FFRPTH14': 0.6723925759999999, 'FSRPTH14': 0.8119457520000001}, '36013': {'FFRPTH14': 0.73455355, 'FSRPTH14': 1.029889514}, '36015': {'FFRPTH14': 0.7063917059999999, 'FSRPTH14': 0.854506095}, '36017': {'FFRPTH14': 0.526038927, 'FSRPTH14': 0.930684255}, '36019': {'FFRPTH14': 0.539004312, 'FSRPTH14': 0.85750686}, '36021': {'FFRPTH14': 0.595602202, 'FSRPTH14': 1.142912334}, '36023': {'FFRPTH14': 0.8567232379999999, 'FSRPTH14': 0.87712141}, '36025': {'FFRPTH14': 0.558167493, 'FSRPTH14': 1.0948670059999999}, '36027': {'FFRPTH14': 0.822715027, 'FSRPTH14': 1.170008665}, '36029': {'FFRPTH14': 0.834385345, 'FSRPTH14': 0.8571413090000001}, '36031': {'FFRPTH14': 0.594637917, 'FSRPTH14': 2.042451977}, '36033': {'FFRPTH14': 0.44867543200000004, 'FSRPTH14': 0.7998127270000001}, '36035': {'FFRPTH14': 0.757785787, 'FSRPTH14': 0.8871638479999999}, '36037': {'FFRPTH14': 0.6423041820000001, 'FSRPTH14': 0.8958453059999999}, '36039': {'FFRPTH14': 0.8130589779999999, 'FSRPTH14': 1.4801842930000002}, '36041': {'FFRPTH14': 0.84835631, 'FSRPTH14': 3.6055143160000003}, '36043': {'FFRPTH14': 0.78438755, 'FSRPTH14': 0.8942018070000001}, '36045': {'FFRPTH14': 0.848005508, 'FSRPTH14': 1.057907861}, '36047': {'FFRPTH14': 0.76054822, 'FSRPTH14': 0.735756027}, '36049': {'FFRPTH14': 0.47759000700000004, 'FSRPTH14': 0.918442322}, '36051': {'FFRPTH14': 0.727711888, 'FSRPTH14': 0.83609451}, '36053': {'FFRPTH14': 0.5803589929999999, 'FSRPTH14': 1.050173417}, '36055': {'FFRPTH14': 0.733473182, 'FSRPTH14': 0.818822789}, '36057': {'FFRPTH14': 0.7432853209999999, 'FSRPTH14': 0.803551699}, '36059': {'FFRPTH14': 0.9494879759999999, 'FSRPTH14': 0.94580779}, '36061': {'FFRPTH14': 1.560257855, 'FSRPTH14': 2.712880775}, '36063': {'FFRPTH14': 0.627561176, 'FSRPTH14': 0.8570425009999999}, '36065': {'FFRPTH14': 0.695664123, 'FSRPTH14': 0.888904157}, '36067': {'FFRPTH14': 0.914147067, 'FSRPTH14': 0.762501175}, '36069': {'FFRPTH14': 0.793021412, 'FSRPTH14': 1.148513768}, '36071': {'FFRPTH14': 0.797662318, 'FSRPTH14': 0.8348865590000001}, '36073': {'FFRPTH14': 0.428734756, 'FSRPTH14': 0.45255335399999996}, '36075': {'FFRPTH14': 0.7774184740000001, 'FSRPTH14': 0.769148065}, '36077': {'FFRPTH14': 0.621646381, 'FSRPTH14': 1.2923701090000002}, '36079': {'FFRPTH14': 0.73376421, 'FSRPTH14': 0.914692372}, '36081': {'FFRPTH14': 0.844252621, 'FSRPTH14': 0.780933674}, '36083': {'FFRPTH14': 0.6196252210000001, 'FSRPTH14': 0.7072489890000001}, '36085': {'FFRPTH14': 0.667682276, 'FSRPTH14': 0.61697223}, '36087': {'FFRPTH14': 0.7904503709999999, 'FSRPTH14': 0.9417475129999999}, '36089': {'FFRPTH14': 0.47576301600000004, 'FSRPTH14': 0.763016158}, '36091': {'FFRPTH14': 0.7424829159999999, 'FSRPTH14': 0.960337185}, '36093': {'FFRPTH14': 0.783382027, 'FSRPTH14': 0.7448550420000001}, '36095': {'FFRPTH14': 0.380155864, 'FSRPTH14': 0.823671038}, '36097': {'FFRPTH14': 0.595270307, 'FSRPTH14': 1.0823096490000002}, '36099': {'FFRPTH14': 0.573328747, 'FSRPTH14': 0.917325995}, '36101': {'FFRPTH14': 0.467508181, 'FSRPTH14': 0.904526699}, '36103': {'FFRPTH14': 0.874270111, 'FSRPTH14': 0.9148564709999999}, '36105': {'FFRPTH14': 0.7505629220000001, 'FSRPTH14': 1.119260498}, '36107': {'FFRPTH14': 0.481251253, 'FSRPTH14': 0.7820332870000001}, '36109': {'FFRPTH14': 0.70684204, 'FSRPTH14': 1.002951543}, '36111': {'FFRPTH14': 0.8589875029999999, 'FSRPTH14': 1.4020892790000001}, '36113': {'FFRPTH14': 1.092761609, 'FSRPTH14': 2.185523217}, '36115': {'FFRPTH14': 0.5290835629999999, 'FSRPTH14': 0.7214775859999999}, '36117': {'FFRPTH14': 0.7061302970000001, 'FSRPTH14': 0.673539668}, '36119': {'FFRPTH14': 0.7896084240000001, 'FSRPTH14': 1.105246167}, '36121': {'FFRPTH14': 0.582693989, 'FSRPTH14': 0.606972905}, '36123': {'FFRPTH14': 0.555379245, 'FSRPTH14': 0.9124087590000001}, '37001': {'FFRPTH14': 0.808770669, 'FSRPTH14': 0.74458252}, '37003': {'FFRPTH14': 0.427899016, 'FSRPTH14': 0.454642704}, '37005': {'FFRPTH14': 0.367680853, 'FSRPTH14': 1.286882986}, '37007': {'FFRPTH14': 0.543372793, 'FSRPTH14': 0.426935766}, '37009': {'FFRPTH14': 0.663570007, 'FSRPTH14': 0.811030008}, '37011': {'FFRPTH14': 0.562651213, 'FSRPTH14': 1.744218759}, '37013': {'FFRPTH14': 0.69349585, 'FSRPTH14': 0.7355259009999999}, '37015': {'FFRPTH14': 0.547100368, 'FSRPTH14': 0.149209191}, '37017': {'FFRPTH14': 0.750209193, 'FSRPTH14': 0.432812996}, '37019': {'FFRPTH14': 0.7573462590000001, 'FSRPTH14': 1.009795012}, '37021': {'FFRPTH14': 0.878106802, 'FSRPTH14': 1.177461393}, '37023': {'FFRPTH14': 0.636971146, 'FSRPTH14': 0.5922714170000001}, '37025': {'FFRPTH14': 0.754803413, 'FSRPTH14': 0.661103679}, '37027': {'FFRPTH14': 0.6381620929999999, 'FSRPTH14': 0.503166266}, '37029': {'FFRPTH14': 0.096796051, 'FSRPTH14': 0.290388152}, '37031': {'FFRPTH14': 0.886486172, 'FSRPTH14': 1.46778858}, '37033': {'FFRPTH14': 0.259942813, 'FSRPTH14': 0.21661901}, '37035': {'FFRPTH14': 0.808883482, 'FSRPTH14': 0.828296686}, '37037': {'FFRPTH14': 0.465806865, 'FSRPTH14': 0.5240327229999999}, '37039': {'FFRPTH14': 0.810581777, 'FSRPTH14': 0.810581777}, '37041': {'FFRPTH14': 0.686247598, 'FSRPTH14': 0.48037331899999997}, '37043': {'FFRPTH14': 0.567054154, 'FSRPTH14': 1.2286173329999999}, '37045': {'FFRPTH14': 0.618072438, 'FSRPTH14': 0.659277267}, '37047': {'FFRPTH14': 0.860358541, 'FSRPTH14': 0.50919179}, '37049': {'FFRPTH14': 0.6984977509999999, 'FSRPTH14': 0.679360827}, '37051': {'FFRPTH14': 0.845774803, 'FSRPTH14': 0.640459905}, '37053': {'FFRPTH14': 0.840807175, 'FSRPTH14': 1.561499039}, '37055': {'FFRPTH14': 1.766180492, 'FSRPTH14': 3.646308113}, '37057': {'FFRPTH14': 0.536349895, 'FSRPTH14': 0.627773173}, '37059': {'FFRPTH14': 0.6999082879999999, 'FSRPTH14': 0.724043056}, '37061': {'FFRPTH14': 0.601182325, 'FSRPTH14': 0.417487726}, '37063': {'FFRPTH14': 0.8965564079999999, 'FSRPTH14': 0.7742987159999999}, '37065': {'FFRPTH14': 0.455099849, 'FSRPTH14': 0.273059909}, '37067': {'FFRPTH14': 0.747335052, 'FSRPTH14': 0.744597561}, '37069': {'FFRPTH14': 0.397709195, 'FSRPTH14': 0.318167356}, '37071': {'FFRPTH14': 0.776783642, 'FSRPTH14': 0.57311476}, '37073': {'FFRPTH14': 0.0, 'FSRPTH14': 0.25935852}, '37075': {'FFRPTH14': 0.578435909, 'FSRPTH14': 0.809810273}, '37077': {'FFRPTH14': 0.52991453, 'FSRPTH14': 0.307692308}, '37079': {'FFRPTH14': 0.237045465, 'FSRPTH14': 0.379272745}, '37081': {'FFRPTH14': 0.82793257, 'FSRPTH14': 0.802547845}, '37083': {'FFRPTH14': 0.8306588640000001, 'FSRPTH14': 0.5852369270000001}, '37085': {'FFRPTH14': 0.615792715, 'FSRPTH14': 0.418423255}, '37087': {'FFRPTH14': 0.638966891, 'FSRPTH14': 0.992080174}, '37089': {'FFRPTH14': 0.5398159229999999, 'FSRPTH14': 0.6027944470000001}, '37091': {'FFRPTH14': 0.740496956, 'FSRPTH14': 0.575942077}, '37093': {'FFRPTH14': 0.251884288, 'FSRPTH14': 0.116254287}, '37095': {'FFRPTH14': 0.704721635, 'FSRPTH14': 1.937984496}, '37097': {'FFRPTH14': 0.845957702, 'FSRPTH14': 0.809959502}, '37099': {'FFRPTH14': 0.7076450059999999, 'FSRPTH14': 0.927258974}, '37101': {'FFRPTH14': 0.639389714, 'FSRPTH14': 0.485054265}, '37103': {'FFRPTH14': 0.297737197, 'FSRPTH14': 0.198491465}, '37105': {'FFRPTH14': 0.771010023, 'FSRPTH14': 0.6704434979999999}, '37107': {'FFRPTH14': 0.889116868, 'FSRPTH14': 0.581345644}, '37109': {'FFRPTH14': 0.688972679, 'FSRPTH14': 0.513597815}, '37111': {'FFRPTH14': 0.62270655, 'FSRPTH14': 0.44479039299999995}, '37113': {'FFRPTH14': 0.9151291509999999, 'FSRPTH14': 1.446494465}, '37115': {'FFRPTH14': 0.28359408199999997, 'FSRPTH14': 0.472656804}, '37117': {'FFRPTH14': 0.724823058, 'FSRPTH14': 0.554276456}, '37119': {'FFRPTH14': 0.821696745, 'FSRPTH14': 0.8809537209999999}, '37121': {'FFRPTH14': 0.522500163, 'FSRPTH14': 1.110312847}, '37123': {'FFRPTH14': 0.6570542070000001, 'FSRPTH14': 0.43803613799999996}, '37125': {'FFRPTH14': 0.7198341159999999, 'FSRPTH14': 1.0314041059999999}, '37127': {'FFRPTH14': 0.773657492, 'FSRPTH14': 0.667677014}, '37129': {'FFRPTH14': 1.044854784, 'FSRPTH14': 1.109580301}, '37131': {'FFRPTH14': 0.293212139, 'FSRPTH14': 0.39094951899999997}, '37133': {'FFRPTH14': 0.810282053, 'FSRPTH14': 0.565065116}, '37135': {'FFRPTH14': 0.740635237, 'FSRPTH14': 0.74775673}, '37137': {'FFRPTH14': 1.0812480690000001, 'FSRPTH14': 0.8495520540000001}, '37139': {'FFRPTH14': 0.779148968, 'FSRPTH14': 0.9550858320000001}, '37141': {'FFRPTH14': 0.604444444, 'FSRPTH14': 0.675555556}, '37143': {'FFRPTH14': 0.44556661200000003, 'FSRPTH14': 0.44556661200000003}, '37145': {'FFRPTH14': 0.664417868, 'FSRPTH14': 0.281099867}, '37147': {'FFRPTH14': 0.9124399790000001, 'FSRPTH14': 0.650113485}, '37149': {'FFRPTH14': 0.44210836600000003, 'FSRPTH14': 0.9333398829999999}, '37151': {'FFRPTH14': 0.546302652, 'FSRPTH14': 0.567314292}, '37153': {'FFRPTH14': 0.502919117, 'FSRPTH14': 0.5685172629999999}, '37155': {'FFRPTH14': 0.504600772, 'FSRPTH14': 0.415553577}, '37157': {'FFRPTH14': 0.68705287, 'FSRPTH14': 0.697958471}, '37159': {'FFRPTH14': 0.584289115, 'FSRPTH14': 0.6997042490000001}, '37161': {'FFRPTH14': 0.585585586, 'FSRPTH14': 0.7057057059999999}, '37163': {'FFRPTH14': 0.515222482, 'FSRPTH14': 0.421545667}, '37165': {'FFRPTH14': 0.646503261, 'FSRPTH14': 0.562176748}, '37167': {'FFRPTH14': 0.726072607, 'FSRPTH14': 0.742574257}, '37169': {'FFRPTH14': 0.517029665, 'FSRPTH14': 0.517029665}, '37171': {'FFRPTH14': 0.8359828970000001, 'FSRPTH14': 0.8908014470000001}, '37173': {'FFRPTH14': 1.190976601, 'FSRPTH14': 1.190976601}, '37175': {'FFRPTH14': 0.5447117570000001, 'FSRPTH14': 0.847329399}, '37177': {'FFRPTH14': 0.972053463, 'FSRPTH14': 0.972053463}, '37179': {'FFRPTH14': 0.535302515, 'FSRPTH14': 0.43922257600000003}, '37181': {'FFRPTH14': 0.6276056839999999, 'FSRPTH14': 0.448289775}, '37183': {'FFRPTH14': 0.849111487, 'FSRPTH14': 0.78402629}, '37185': {'FFRPTH14': 0.543720034, 'FSRPTH14': 0.543720034}, '37187': {'FFRPTH14': 0.6364359589999999, 'FSRPTH14': 0.715990453}, '37189': {'FFRPTH14': 0.7420091320000001, 'FSRPTH14': 1.560121766}, '37191': {'FFRPTH14': 0.594587645, 'FSRPTH14': 0.5624477729999999}, '37193': {'FFRPTH14': 0.508440106, 'FSRPTH14': 0.595601267}, '37195': {'FFRPTH14': 0.663382514, 'FSRPTH14': 0.552818761}, '37197': {'FFRPTH14': 0.476291279, 'FSRPTH14': 0.6879762909999999}, '37199': {'FFRPTH14': 0.39741115, 'FSRPTH14': 0.624503236}, '38001': {'FFRPTH14': 0.0, 'FSRPTH14': 1.6778523490000001}, '38003': {'FFRPTH14': 0.71787509, 'FSRPTH14': 1.2562814070000001}, '38005': {'FFRPTH14': 0.0, 'FSRPTH14': 0.731743012}, '38007': {'FFRPTH14': 0.0, 'FSRPTH14': 6.6592674810000005}, '38009': {'FFRPTH14': 0.7518796990000001, 'FSRPTH14': 1.203007519}, '38011': {'FFRPTH14': 1.231906375, 'FSRPTH14': 1.847859563}, '38013': {'FFRPTH14': 0.890868597, 'FSRPTH14': 1.781737194}, '38015': {'FFRPTH14': 0.629813376, 'FSRPTH14': 0.618764019}, '38017': {'FFRPTH14': 0.6886021379999999, 'FSRPTH14': 0.65267507}, '38019': {'FFRPTH14': 0.5188067439999999, 'FSRPTH14': 1.815823606}, '38021': {'FFRPTH14': 0.388349515, 'FSRPTH14': 0.970873786}, '38023': {'FFRPTH14': 0.411184211, 'FSRPTH14': 1.644736842}, '38025': {'FFRPTH14': 0.227324392, 'FSRPTH14': 0.454648784}, '38027': {'FFRPTH14': 0.841396719, 'FSRPTH14': 0.42069835899999997}, '38029': {'FFRPTH14': 0.584453536, 'FSRPTH14': 0.8766803040000001}, '38031': {'FFRPTH14': 1.189767995, 'FSRPTH14': 0.892325996}, '38033': {'FFRPTH14': 0.0, 'FSRPTH14': 0.0}, '38035': {'FFRPTH14': 0.7128803220000001, 'FSRPTH14': 0.655849896}, '38037': {'FFRPTH14': 0.0, 'FSRPTH14': 0.847098687}, '38039': {'FFRPTH14': 0.431220354, 'FSRPTH14': 1.7248814140000002}, '38041': {'FFRPTH14': 0.37593985, 'FSRPTH14': 0.7518796990000001}, '38043': {'FFRPTH14': 0.0, 'FSRPTH14': 1.650165017}, '38045': {'FFRPTH14': 0.241021933, 'FSRPTH14': 1.6871535309999999}, '38047': {'FFRPTH14': 0.0, 'FSRPTH14': 2.057613169}, '38049': {'FFRPTH14': 0.0, 'FSRPTH14': 0.6680026720000001}, '38051': {'FFRPTH14': 0.357015352, 'FSRPTH14': 1.7850767580000002}, '38053': {'FFRPTH14': 0.090942161, 'FSRPTH14': 0.9094216079999999}, '38055': {'FFRPTH14': 0.10440593, 'FSRPTH14': 1.044059303}, '38057': {'FFRPTH14': 0.571689915, 'FSRPTH14': 0.914703865}, '38059': {'FFRPTH14': 0.502984374, 'FSRPTH14': 0.435919791}, '38061': {'FFRPTH14': 0.613371499, 'FSRPTH14': 0.817828665}, '38063': {'FFRPTH14': 0.328407225, 'FSRPTH14': 0.985221675}, '38065': {'FFRPTH14': 0.0, 'FSRPTH14': 1.081081081}, '38067': {'FFRPTH14': 0.140291807, 'FSRPTH14': 0.982042649}, '38069': {'FFRPTH14': 0.68119891, 'FSRPTH14': 0.908265213}, '38071': {'FFRPTH14': 0.9512279490000001, 'FSRPTH14': 1.037703217}, '38073': {'FFRPTH14': 0.550863019, 'FSRPTH14': 0.734484025}, '38075': {'FFRPTH14': 0.77309625, 'FSRPTH14': 0.77309625}, '38077': {'FFRPTH14': 0.669425511, 'FSRPTH14': 0.547711782}, '38079': {'FFRPTH14': 0.410509031, 'FSRPTH14': 0.47892720299999997}, '38081': {'FFRPTH14': 0.0, 'FSRPTH14': 0.508776393}, '38083': {'FFRPTH14': 0.0, 'FSRPTH14': 0.754147813}, '38085': {'FFRPTH14': 0.226142017, 'FSRPTH14': 0.226142017}, '38087': {'FFRPTH14': 0.0, 'FSRPTH14': 2.614379085}, '38089': {'FFRPTH14': 0.6914263140000001, 'FSRPTH14': 0.856051626}, '38091': {'FFRPTH14': 0.0, 'FSRPTH14': 1.023017903}, '38093': {'FFRPTH14': 0.899238014, 'FSRPTH14': 0.8519096979999999}, '38095': {'FFRPTH14': 0.432900433, 'FSRPTH14': 2.164502165}, '38097': {'FFRPTH14': 0.8661222470000001, 'FSRPTH14': 0.24746349899999998}, '38099': {'FFRPTH14': 0.273473108, 'FSRPTH14': 0.911577028}, '38101': {'FFRPTH14': 0.691802145, 'FSRPTH14': 0.6773895999999999}, '38103': {'FFRPTH14': 0.715648855, 'FSRPTH14': 2.146946565}, '38105': {'FFRPTH14': 0.871459695, 'FSRPTH14': 0.653594771}, '39001': {'FFRPTH14': 0.533257492, 'FSRPTH14': 0.284403996}, '39003': {'FFRPTH14': 0.9424980959999999, 'FSRPTH14': 0.533130236}, '39005': {'FFRPTH14': 0.5845196570000001, 'FSRPTH14': 0.509097766}, '39007': {'FFRPTH14': 0.8671540209999999, 'FSRPTH14': 0.7965717170000001}, '39009': {'FFRPTH14': 0.911717893, 'FSRPTH14': 0.448132524}, '39011': {'FFRPTH14': 0.741694117, 'FSRPTH14': 0.5453633210000001}, '39013': {'FFRPTH14': 0.777414664, 'FSRPTH14': 0.518276443}, '39015': {'FFRPTH14': 0.566687823, 'FSRPTH14': 0.498685284}, '39017': {'FFRPTH14': 0.726965613, 'FSRPTH14': 0.5772962220000001}, '39019': {'FFRPTH14': 0.532160216, 'FSRPTH14': 0.425728173}, '39021': {'FFRPTH14': 0.48558577, 'FSRPTH14': 0.357800041}, '39023': {'FFRPTH14': 0.915388784, 'FSRPTH14': 0.38812484399999997}, '39025': {'FFRPTH14': 0.654891844, 'FSRPTH14': 0.520936694}, '39027': {'FFRPTH14': 0.741006334, 'FSRPTH14': 0.5019720329999999}, '39029': {'FFRPTH14': 0.71911133, 'FSRPTH14': 0.46363756799999994}, '39031': {'FFRPTH14': 0.575090371, 'FSRPTH14': 0.38339358100000004}, '39033': {'FFRPTH14': 0.7768361579999999, 'FSRPTH14': 0.44726930299999995}, '39035': {'FFRPTH14': 0.8747225809999999, 'FSRPTH14': 0.7628025409999999}, '39037': {'FFRPTH14': 0.55559813, 'FSRPTH14': 0.459805349}, '39039': {'FFRPTH14': 0.701116593, 'FSRPTH14': 0.9348221240000001}, '39041': {'FFRPTH14': 0.877782067, 'FSRPTH14': 0.7667373479999999}, '39043': {'FFRPTH14': 1.028643773, 'FSRPTH14': 1.041831513}, '39045': {'FFRPTH14': 0.658327847, 'FSRPTH14': 0.578530532}, '39047': {'FFRPTH14': 1.111111111, 'FSRPTH14': 0.5902777779999999}, '39049': {'FFRPTH14': 0.898981885, 'FSRPTH14': 0.6577916229999999}, '39051': {'FFRPTH14': 0.587130108, 'FSRPTH14': 0.70455613}, '39053': {'FFRPTH14': 1.019837484, 'FSRPTH14': 0.230285883}, '39055': {'FFRPTH14': 0.6150909379999999, 'FSRPTH14': 0.646905987}, '39057': {'FFRPTH14': 0.805762422, 'FSRPTH14': 0.598217556}, '39059': {'FFRPTH14': 0.9598383429999999, 'FSRPTH14': 0.60621369}, '39061': {'FFRPTH14': 0.844252205, 'FSRPTH14': 0.847971377}, '39063': {'FFRPTH14': 0.8229687940000001, 'FSRPTH14': 0.783147723}, '39065': {'FFRPTH14': 0.6290099379999999, 'FSRPTH14': 0.503207951}, '39067': {'FFRPTH14': 0.45036350799999997, 'FSRPTH14': 0.900727015}, '39069': {'FFRPTH14': 0.680101657, 'FSRPTH14': 0.7158964809999999}, '39071': {'FFRPTH14': 0.627250552, 'FSRPTH14': 0.46463003799999997}, '39073': {'FFRPTH14': 0.661444735, 'FSRPTH14': 0.591818973}, '39075': {'FFRPTH14': 0.318921135, 'FSRPTH14': 0.36448129799999995}, '39077': {'FFRPTH14': 0.8175222259999999, 'FSRPTH14': 0.40876111299999995}, '39079': {'FFRPTH14': 0.7328691829999999, 'FSRPTH14': 0.335898375}, '39081': {'FFRPTH14': 0.694300824, 'FSRPTH14': 0.6795284659999999}, '39083': {'FFRPTH14': 0.65394739, 'FSRPTH14': 0.441414488}, '39085': {'FFRPTH14': 0.7852375340000001, 'FSRPTH14': 0.772150242}, '39087': {'FFRPTH14': 0.6166528729999999, 'FSRPTH14': 0.27587102199999997}, '39089': {'FFRPTH14': 0.7143278820000001, 'FSRPTH14': 0.543125332}, '39091': {'FFRPTH14': 0.791087086, 'FSRPTH14': 0.593315314}, '39093': {'FFRPTH14': 0.608120546, 'FSRPTH14': 0.51608068}, '39095': {'FFRPTH14': 0.8569078720000001, 'FSRPTH14': 0.7787983070000001}, '39097': {'FFRPTH14': 0.500933558, 'FSRPTH14': 0.34154560799999995}, '39099': {'FFRPTH14': 0.8619063140000001, 'FSRPTH14': 0.703246943}, '39101': {'FFRPTH14': 0.669506999, 'FSRPTH14': 0.380401704}, '39103': {'FFRPTH14': 0.670344091, 'FSRPTH14': 0.53400292}, '39105': {'FFRPTH14': 0.6857828640000001, 'FSRPTH14': 0.214307145}, '39107': {'FFRPTH14': 0.636771081, 'FSRPTH14': 0.9306654259999999}, '39109': {'FFRPTH14': 0.750721848, 'FSRPTH14': 0.615976901}, '39111': {'FFRPTH14': 0.414794331, 'FSRPTH14': 0.622191497}, '39113': {'FFRPTH14': 0.8947396059999999, 'FSRPTH14': 0.611499186}, '39115': {'FFRPTH14': 0.13474365, 'FSRPTH14': 0.404230951}, '39117': {'FFRPTH14': 0.39827036899999996, 'FSRPTH14': 0.170687301}, '39119': {'FFRPTH14': 0.745764292, 'FSRPTH14': 0.5826283529999999}, '39121': {'FFRPTH14': 0.556986702, 'FSRPTH14': 0.348116689}, '39123': {'FFRPTH14': 0.874763085, 'FSRPTH14': 1.628031297}, '39125': {'FFRPTH14': 0.526620675, 'FSRPTH14': 0.315972405}, '39127': {'FFRPTH14': 0.558472021, 'FSRPTH14': 0.390930414}, '39129': {'FFRPTH14': 0.632955904, 'FSRPTH14': 0.29889584399999997}, '39131': {'FFRPTH14': 0.6724235559999999, 'FSRPTH14': 0.460079275}, '39133': {'FFRPTH14': 0.765990042, 'FSRPTH14': 0.5374284970000001}, '39135': {'FFRPTH14': 0.529024191, 'FSRPTH14': 0.384744866}, '39137': {'FFRPTH14': 0.643820784, 'FSRPTH14': 0.526762459}, '39139': {'FFRPTH14': 0.7872595170000001, 'FSRPTH14': 0.533040298}, '39141': {'FFRPTH14': 0.686893298, 'FSRPTH14': 0.479529284}, '39143': {'FFRPTH14': 0.598215324, 'FSRPTH14': 0.614832417}, '39145': {'FFRPTH14': 0.750731316, 'FSRPTH14': 0.5436330220000001}, '39147': {'FFRPTH14': 0.502972929, 'FSRPTH14': 0.7005694370000001}, '39149': {'FFRPTH14': 0.612857756, 'FSRPTH14': 0.653714939}, '39151': {'FFRPTH14': 0.8410160329999999, 'FSRPTH14': 0.662699342}, '39153': {'FFRPTH14': 0.819274352, 'FSRPTH14': 0.664276501}, '39155': {'FFRPTH14': 0.687218228, 'FSRPTH14': 0.614109906}, '39157': {'FFRPTH14': 0.8406259429999999, 'FSRPTH14': 0.7220761309999999}, '39159': {'FFRPTH14': 0.502082713, 'FSRPTH14': 0.48348705700000005}, '39161': {'FFRPTH14': 0.562153046, 'FSRPTH14': 0.597287612}, '39163': {'FFRPTH14': 0.528940608, 'FSRPTH14': 0.075562944}, '39165': {'FFRPTH14': 0.58648645, 'FSRPTH14': 0.559417845}, '39167': {'FFRPTH14': 0.7678107590000001, 'FSRPTH14': 0.57177397}, '39169': {'FFRPTH14': 0.614521755, 'FSRPTH14': 0.536624631}, '39171': {'FFRPTH14': 0.72403529, 'FSRPTH14': 0.455874071}, '39173': {'FFRPTH14': 0.902847442, 'FSRPTH14': 0.7485145459999999}, '39175': {'FFRPTH14': 0.671050866, 'FSRPTH14': 0.671050866}, '40001': {'FFRPTH14': 0.405661228, 'FSRPTH14': 0.180293879}, '40003': {'FFRPTH14': 0.345423143, 'FSRPTH14': 1.03626943}, '40005': {'FFRPTH14': 0.507393447, 'FSRPTH14': 0.579878226}, '40007': {'FFRPTH14': 0.18228217300000002, 'FSRPTH14': 0.546846518}, '40009': {'FFRPTH14': 0.63315183, 'FSRPTH14': 0.759782196}, '40011': {'FFRPTH14': 0.20167389300000002, 'FSRPTH14': 1.3108803070000001}, '40013': {'FFRPTH14': 0.674369465, 'FSRPTH14': 0.49453760700000005}, '40015': {'FFRPTH14': 0.37520892299999997, 'FSRPTH14': 0.545758434}, '40017': {'FFRPTH14': 0.617369696, 'FSRPTH14': 0.486178636}, '40019': {'FFRPTH14': 0.614489666, 'FSRPTH14': 0.757870588}, '40021': {'FFRPTH14': 0.537845721, 'FSRPTH14': 0.599904843}, '40023': {'FFRPTH14': 0.395752259, 'FSRPTH14': 0.593628389}, '40025': {'FFRPTH14': 1.307759372, 'FSRPTH14': 1.307759372}, '40027': {'FFRPTH14': 0.829912415, 'FSRPTH14': 0.626139277}, '40029': {'FFRPTH14': 0.17220595800000002, 'FSRPTH14': 0.8610297920000001}, '40031': {'FFRPTH14': 0.735805747, 'FSRPTH14': 0.5918437529999999}, '40033': {'FFRPTH14': 0.325203252, 'FSRPTH14': 0.325203252}, '40035': {'FFRPTH14': 0.34288849299999996, 'FSRPTH14': 0.754354684}, '40037': {'FFRPTH14': 0.523841885, 'FSRPTH14': 0.410578774}, '40039': {'FFRPTH14': 0.847457627, 'FSRPTH14': 0.8813559320000001}, '40041': {'FFRPTH14': 0.386044492, 'FSRPTH14': 0.603194518}, '40043': {'FFRPTH14': 0.0, 'FSRPTH14': 0.814000814}, '40045': {'FFRPTH14': 0.240963855, 'FSRPTH14': 1.2048192770000001}, '40047': {'FFRPTH14': 0.6815552140000001, 'FSRPTH14': 0.570604365}, '40049': {'FFRPTH14': 0.6168136129999999, 'FSRPTH14': 0.6530967670000001}, '40051': {'FFRPTH14': 0.464218071, 'FSRPTH14': 0.501355517}, '40053': {'FFRPTH14': 0.0, 'FSRPTH14': 0.666518551}, '40055': {'FFRPTH14': 0.162575191, 'FSRPTH14': 0.812875955}, '40057': {'FFRPTH14': 0.35739814200000003, 'FSRPTH14': 0.35739814200000003}, '40059': {'FFRPTH14': 0.262329486, 'FSRPTH14': 0.786988458}, '40061': {'FFRPTH14': 0.31017369699999997, 'FSRPTH14': 0.465260546}, '40063': {'FFRPTH14': 0.5794582070000001, 'FSRPTH14': 0.289729103}, '40065': {'FFRPTH14': 0.653896454, 'FSRPTH14': 0.769289945}, '40067': {'FFRPTH14': 0.317863954, 'FSRPTH14': 0.7946598859999999}, '40069': {'FFRPTH14': 0.360262992, 'FSRPTH14': 0.180131496}, '40071': {'FFRPTH14': 0.8355688459999999, 'FSRPTH14': 0.7256255770000001}, '40073': {'FFRPTH14': 0.450682462, 'FSRPTH14': 0.901364924}, '40075': {'FFRPTH14': 0.21422450699999998, 'FSRPTH14': 0.642673522}, '40077': {'FFRPTH14': 0.187038249, 'FSRPTH14': 0.187038249}, '40079': {'FFRPTH14': 0.361729065, 'FSRPTH14': 0.38182512399999996}, '40081': {'FFRPTH14': 0.462173951, 'FSRPTH14': 0.7221467979999999}, '40083': {'FFRPTH14': 0.331301352, 'FSRPTH14': 0.530082163}, '40085': {'FFRPTH14': 0.511613629, 'FSRPTH14': 1.330195436}, '40087': {'FFRPTH14': 0.6700077720000001, 'FSRPTH14': 0.589606839}, '40089': {'FFRPTH14': 0.453857791, 'FSRPTH14': 0.453857791}, '40091': {'FFRPTH14': 0.39824771, 'FSRPTH14': 0.597371565}, '40093': {'FFRPTH14': 0.258064516, 'FSRPTH14': 0.516129032}, '40095': {'FFRPTH14': 0.556173526, 'FSRPTH14': 0.617970585}, '40097': {'FFRPTH14': 0.73500588, 'FSRPTH14': 0.8085064679999999}, '40099': {'FFRPTH14': 0.724480185, 'FSRPTH14': 0.652032167}, '40101': {'FFRPTH14': 0.7860961040000001, 'FSRPTH14': 0.585998914}, '40103': {'FFRPTH14': 0.522011484, 'FSRPTH14': 0.609013398}, '40105': {'FFRPTH14': 0.19004180899999998, 'FSRPTH14': 0.47510452299999995}, '40107': {'FFRPTH14': 0.164122764, 'FSRPTH14': 0.492368291}, '40109': {'FFRPTH14': 0.9344635640000001, 'FSRPTH14': 0.7909007259999999}, '40111': {'FFRPTH14': 0.562731807, 'FSRPTH14': 0.409259496}, '40113': {'FFRPTH14': 0.437673246, 'FSRPTH14': 0.291782164}, '40115': {'FFRPTH14': 0.46721694399999997, 'FSRPTH14': 0.560660333}, '40117': {'FFRPTH14': 0.42680324399999997, 'FSRPTH14': 0.487775136}, '40119': {'FFRPTH14': 0.7849097979999999, 'FSRPTH14': 0.573108741}, '40121': {'FFRPTH14': 0.672253843, 'FSRPTH14': 0.6498453820000001}, '40123': {'FFRPTH14': 0.552558874, 'FSRPTH14': 0.631495856}, '40125': {'FFRPTH14': 0.863377477, 'FSRPTH14': 0.417763295}, '40127': {'FFRPTH14': 0.359550562, 'FSRPTH14': 0.629213483}, '40129': {'FFRPTH14': 0.0, 'FSRPTH14': 0.531773465}, '40131': {'FFRPTH14': 0.378555921, 'FSRPTH14': 0.445359906}, '40133': {'FFRPTH14': 0.629400889, 'FSRPTH14': 0.43271311100000004}, '40135': {'FFRPTH14': 0.580298854, 'FSRPTH14': 0.483582378}, '40137': {'FFRPTH14': 0.606837031, 'FSRPTH14': 0.606837031}, '40139': {'FFRPTH14': 0.36608246, 'FSRPTH14': 1.09824738}, '40141': {'FFRPTH14': 0.524383849, 'FSRPTH14': 0.655479811}, '40143': {'FFRPTH14': 0.924399379, 'FSRPTH14': 0.767156185}, '40145': {'FFRPTH14': 0.40950041, 'FSRPTH14': 0.264193813}, '40147': {'FFRPTH14': 0.750909756, 'FSRPTH14': 0.6931474670000001}, '40149': {'FFRPTH14': 0.173205162, 'FSRPTH14': 0.606218065}, '40151': {'FFRPTH14': 0.8613264429999999, 'FSRPTH14': 0.7536606370000001}, '40153': {'FFRPTH14': 0.603836685, 'FSRPTH14': 0.88253054}, '41001': {'FFRPTH14': 0.560433402, 'FSRPTH14': 1.3699483159999999}, '41003': {'FFRPTH14': 0.683534918, 'FSRPTH14': 0.892070995}, '41005': {'FFRPTH14': 0.59751071, 'FSRPTH14': 0.777270288}, '41007': {'FFRPTH14': 0.800555052, 'FSRPTH14': 2.855313017}, '41009': {'FFRPTH14': 0.465031642, 'FSRPTH14': 0.647000546}, '41011': {'FFRPTH14': 0.6722689079999999, 'FSRPTH14': 1.040416166}, '41013': {'FFRPTH14': 0.428612249, 'FSRPTH14': 0.619106582}, '41015': {'FFRPTH14': 0.671591672, 'FSRPTH14': 1.567047235}, '41017': {'FFRPTH14': 0.78644036, 'FSRPTH14': 1.144446792}, '41019': {'FFRPTH14': 0.635680365, 'FSRPTH14': 0.803948697}, '41021': {'FFRPTH14': 1.035196687, 'FSRPTH14': 2.587991718}, '41023': {'FFRPTH14': 0.69637883, 'FSRPTH14': 1.6713091919999998}, '41025': {'FFRPTH14': 0.9823182709999999, 'FSRPTH14': 1.683974179}, '41027': {'FFRPTH14': 1.04872187, 'FSRPTH14': 1.704173039}, '41029': {'FFRPTH14': 0.727577073, 'FSRPTH14': 0.9463257359999999}, '41031': {'FFRPTH14': 0.495674117, 'FSRPTH14': 0.6308579670000001}, '41033': {'FFRPTH14': 0.550245816, 'FSRPTH14': 0.825368725}, '41035': {'FFRPTH14': 0.549996181, 'FSRPTH14': 1.008326331}, '41037': {'FFRPTH14': 0.765501403, 'FSRPTH14': 1.913753509}, '41039': {'FFRPTH14': 0.8204567209999999, 'FSRPTH14': 0.901386125}, '41041': {'FFRPTH14': 0.689566004, 'FSRPTH14': 2.241089514}, '41043': {'FFRPTH14': 0.519454405, 'FSRPTH14': 0.6786420459999999}, '41045': {'FFRPTH14': 0.658783227, 'FSRPTH14': 1.021114002}, '41047': {'FFRPTH14': 0.689951243, 'FSRPTH14': 0.696084143}, '41049': {'FFRPTH14': 0.08938947, 'FSRPTH14': 0.8045052290000001}, '41051': {'FFRPTH14': 0.858748159, 'FSRPTH14': 1.5488366340000002}, '41053': {'FFRPTH14': 0.539042045, 'FSRPTH14': 0.5903793829999999}, '41055': {'FFRPTH14': 0.5847953220000001, 'FSRPTH14': 1.754385965}, '41057': {'FFRPTH14': 0.473522216, 'FSRPTH14': 1.933549049}, '41059': {'FFRPTH14': 0.521478391, 'FSRPTH14': 0.821328466}, '41061': {'FFRPTH14': 0.700634463, 'FSRPTH14': 0.817406874}, '41063': {'FFRPTH14': 0.586510264, 'FSRPTH14': 3.0791788860000002}, '41065': {'FFRPTH14': 0.705467372, 'FSRPTH14': 1.254164217}, '41067': {'FFRPTH14': 0.655419735, 'FSRPTH14': 0.7744254859999999}, '41069': {'FFRPTH14': 0.0, 'FSRPTH14': 1.454545455}, '41071': {'FFRPTH14': 0.461880147, 'FSRPTH14': 0.8353151590000001}, '42001': {'FFRPTH14': 0.717698645, 'FSRPTH14': 0.678372692}, '42003': {'FFRPTH14': 0.809742905, 'FSRPTH14': 0.86009803}, '42005': {'FFRPTH14': 0.398318212, 'FSRPTH14': 0.516338423}, '42007': {'FFRPTH14': 0.602153585, 'FSRPTH14': 0.52540852}, '42009': {'FFRPTH14': 0.36775221700000005, 'FSRPTH14': 0.735504433}, '42011': {'FFRPTH14': 0.650243781, 'FSRPTH14': 0.681668202}, '42013': {'FFRPTH14': 0.746298281, 'FSRPTH14': 0.754237625}, '42015': {'FFRPTH14': 0.485562605, 'FSRPTH14': 0.7607147479999999}, '42017': {'FFRPTH14': 0.753169455, 'FSRPTH14': 0.7739135290000001}, '42019': {'FFRPTH14': 0.570067171, 'FSRPTH14': 0.6883829990000001}, '42021': {'FFRPTH14': 0.740568641, 'FSRPTH14': 0.631661488}, '42023': {'FFRPTH14': 0.208116545, 'FSRPTH14': 1.040582726}, '42025': {'FFRPTH14': 0.543132478, 'FSRPTH14': 0.837975823}, '42027': {'FFRPTH14': 0.617353945, 'FSRPTH14': 0.686648776}, '42029': {'FFRPTH14': 0.657196792, 'FSRPTH14': 0.668897626}, '42031': {'FFRPTH14': 0.592462842, 'FSRPTH14': 0.9273331440000001}, '42033': {'FFRPTH14': 0.652781712, 'FSRPTH14': 0.837531253}, '42035': {'FFRPTH14': 0.427726758, 'FSRPTH14': 0.679330733}, '42037': {'FFRPTH14': 0.8045052290000001, 'FSRPTH14': 0.864098209}, '42039': {'FFRPTH14': 0.5391453970000001, 'FSRPTH14': 0.814453685}, '42041': {'FFRPTH14': 0.6932992020000001, 'FSRPTH14': 0.7015039259999999}, '42043': {'FFRPTH14': 0.8067694959999999, 'FSRPTH14': 0.8178211329999999}, '42045': {'FFRPTH14': 0.742503908, 'FSRPTH14': 0.555989768}, '42047': {'FFRPTH14': 0.544976598, 'FSRPTH14': 0.8334936209999999}, '42049': {'FFRPTH14': 0.664408874, 'FSRPTH14': 0.68595727}, '42051': {'FFRPTH14': 0.6040899120000001, 'FSRPTH14': 0.671211014}, '42053': {'FFRPTH14': 0.26602819899999997, 'FSRPTH14': 0.931098696}, '42055': {'FFRPTH14': 0.647515894, 'FSRPTH14': 0.634434764}, '42057': {'FFRPTH14': 0.341716785, 'FSRPTH14': 0.27337342800000003}, '42059': {'FFRPTH14': 0.6870491240000001, 'FSRPTH14': 0.528499326}, '42061': {'FFRPTH14': 0.415300546, 'FSRPTH14': 0.524590164}, '42063': {'FFRPTH14': 0.570086425, 'FSRPTH14': 0.6042916110000001}, '42065': {'FFRPTH14': 0.560060935, 'FSRPTH14': 0.7392804340000001}, '42067': {'FFRPTH14': 0.40329085299999995, 'FSRPTH14': 0.44361993899999996}, '42069': {'FFRPTH14': 0.68165044, 'FSRPTH14': 1.095341742}, '42071': {'FFRPTH14': 0.6112652820000001, 'FSRPTH14': 0.6112652820000001}, '42073': {'FFRPTH14': 0.563247006, 'FSRPTH14': 0.5857768870000001}, '42075': {'FFRPTH14': 0.572019449, 'FSRPTH14': 0.484016457}, '42077': {'FFRPTH14': 0.687490743, 'FSRPTH14': 0.7210268759999999}, '42079': {'FFRPTH14': 0.649250852, 'FSRPTH14': 0.9472162190000001}, '42081': {'FFRPTH14': 0.635149518, 'FSRPTH14': 0.909808768}, '42083': {'FFRPTH14': 0.657987498, 'FSRPTH14': 0.7754852659999999}, '42085': {'FFRPTH14': 0.626719125, 'FSRPTH14': 0.748581178}, '42087': {'FFRPTH14': 0.579996563, 'FSRPTH14': 0.7088846879999999}, '42089': {'FFRPTH14': 0.63734863, 'FSRPTH14': 0.8778575470000001}, '42091': {'FFRPTH14': 0.8043023440000001, 'FSRPTH14': 0.785939277}, '42093': {'FFRPTH14': 0.590097098, 'FSRPTH14': 0.75103267}, '42095': {'FFRPTH14': 0.661890412, 'FSRPTH14': 0.844824948}, '42097': {'FFRPTH14': 0.5428766070000001, 'FSRPTH14': 0.734480116}, '42099': {'FFRPTH14': 0.372529255, 'FSRPTH14': 0.525923653}, '42101': {'FFRPTH14': 0.874833445, 'FSRPTH14': 0.703071274}, '42103': {'FFRPTH14': 0.42711466200000003, 'FSRPTH14': 0.7118577709999999}, '42105': {'FFRPTH14': 0.29059630399999997, 'FSRPTH14': 1.046146693}, '42107': {'FFRPTH14': 0.521272729, 'FSRPTH14': 0.754473686}, '42109': {'FFRPTH14': 0.669593036, 'FSRPTH14': 0.9175904570000001}, '42111': {'FFRPTH14': 0.393607809, 'FSRPTH14': 0.787215618}, '42113': {'FFRPTH14': 0.631014356, 'FSRPTH14': 1.577535889}, '42115': {'FFRPTH14': 0.405534351, 'FSRPTH14': 0.596374046}, '42117': {'FFRPTH14': 0.44944883399999996, 'FSRPTH14': 0.969863273}, '42119': {'FFRPTH14': 0.512546241, 'FSRPTH14': 0.80224629}, '42121': {'FFRPTH14': 0.44835509700000004, 'FSRPTH14': 0.579125334}, '42123': {'FFRPTH14': 0.49136427299999996, 'FSRPTH14': 0.663341768}, '42125': {'FFRPTH14': 0.648455475, 'FSRPTH14': 0.634045353}, '42127': {'FFRPTH14': 0.42800723700000004, 'FSRPTH14': 1.303476586}, '42129': {'FFRPTH14': 0.654013136, 'FSRPTH14': 0.751419348}, '42131': {'FFRPTH14': 0.35547972, 'FSRPTH14': 0.959795244}, '42133': {'FFRPTH14': 0.680650248, 'FSRPTH14': 0.5354448620000001}, '44001': {'FFRPTH14': 0.570729719, 'FSRPTH14': 1.100693029}, '44003': {'FFRPTH14': 0.8841625890000001, 'FSRPTH14': 1.029504384}, '44005': {'FFRPTH14': 0.898516234, 'FSRPTH14': 1.590616576}, '44007': {'FFRPTH14': 0.7437014809999999, 'FSRPTH14': 0.925670993}, '44009': {'FFRPTH14': 0.81324564, 'FSRPTH14': 1.3659368509999998}, '45001': {'FFRPTH14': 0.36050470700000004, 'FSRPTH14': 0.36050470700000004}, '45003': {'FFRPTH14': 0.6676661429999999, 'FSRPTH14': 0.588760144}, '45005': {'FFRPTH14': 0.206291903, 'FSRPTH14': 0.206291903}, '45007': {'FFRPTH14': 0.7831544009999999, 'FSRPTH14': 0.757222136}, '45009': {'FFRPTH14': 0.724542221, 'FSRPTH14': 0.263469899}, '45011': {'FFRPTH14': 0.637551801, 'FSRPTH14': 0.455394144}, '45013': {'FFRPTH14': 0.59709301, 'FSRPTH14': 1.580874827}, '45015': {'FFRPTH14': 0.529754547, 'FSRPTH14': 0.39857723100000003}, '45017': {'FFRPTH14': 0.268853341, 'FSRPTH14': 0.13442667}, '45019': {'FFRPTH14': 0.8766059079999999, 'FSRPTH14': 1.3857722140000002}, '45021': {'FFRPTH14': 0.678280737, 'FSRPTH14': 0.642581751}, '45023': {'FFRPTH14': 0.49478925100000004, 'FSRPTH14': 0.556637907}, '45025': {'FFRPTH14': 0.411924119, 'FSRPTH14': 0.60704607}, '45027': {'FFRPTH14': 0.439715065, 'FSRPTH14': 0.46902940200000004}, '45029': {'FFRPTH14': 0.608932779, 'FSRPTH14': 0.608932779}, '45031': {'FFRPTH14': 0.5162318029999999, 'FSRPTH14': 0.45723388299999995}, '45033': {'FFRPTH14': 0.867414142, 'FSRPTH14': 0.385517396}, '45035': {'FFRPTH14': 0.505155958, 'FSRPTH14': 0.43780183100000003}, '45037': {'FFRPTH14': 0.18830264, 'FSRPTH14': 0.45192633600000004}, '45039': {'FFRPTH14': 0.217618384, 'FSRPTH14': 0.304665738}, '45041': {'FFRPTH14': 0.696683928, 'FSRPTH14': 0.7397777790000001}, '45043': {'FFRPTH14': 0.608822997, 'FSRPTH14': 1.431556777}, '45045': {'FFRPTH14': 0.8410115340000001, 'FSRPTH14': 0.880369216}, '45047': {'FFRPTH14': 0.86306099, 'FSRPTH14': 0.719217491}, '45049': {'FFRPTH14': 0.588091154, 'FSRPTH14': 0.588091154}, '45051': {'FFRPTH14': 0.970444932, 'FSRPTH14': 1.7468008780000002}, '45053': {'FFRPTH14': 0.8465218990000001, 'FSRPTH14': 0.662495399}, '45055': {'FFRPTH14': 0.6491347510000001, 'FSRPTH14': 0.554139421}, '45057': {'FFRPTH14': 0.48100048100000004, 'FSRPTH14': 0.517075517}, '45059': {'FFRPTH14': 0.48096433299999997, 'FSRPTH14': 0.46593419799999997}, '45061': {'FFRPTH14': 0.490650384, 'FSRPTH14': 0.272583547}, '45063': {'FFRPTH14': 0.7916858590000001, 'FSRPTH14': 0.698122985}, '45065': {'FFRPTH14': 0.304692261, 'FSRPTH14': 0.406256348}, '45067': {'FFRPTH14': 0.6576269060000001, 'FSRPTH14': 0.407102371}, '45069': {'FFRPTH14': 0.358114883, 'FSRPTH14': 0.21486893}, '45071': {'FFRPTH14': 0.555805521, 'FSRPTH14': 0.767540958}, '45073': {'FFRPTH14': 0.571869348, 'FSRPTH14': 0.625066496}, '45075': {'FFRPTH14': 0.7659007659999999, 'FSRPTH14': 0.532800533}, '45077': {'FFRPTH14': 0.7560148879999999, 'FSRPTH14': 0.73109132}, '45079': {'FFRPTH14': 0.831743723, 'FSRPTH14': 0.679838433}, '45081': {'FFRPTH14': 0.24967542199999998, 'FSRPTH14': 0.399480675}, '45083': {'FFRPTH14': 0.7119935140000001, 'FSRPTH14': 0.6881468409999999}, '45085': {'FFRPTH14': 0.537440117, 'FSRPTH14': 0.611569788}, '45087': {'FFRPTH14': 0.466350983, 'FSRPTH14': 0.609843593}, '45089': {'FFRPTH14': 0.305857165, 'FSRPTH14': 0.367028598}, '45091': {'FFRPTH14': 0.627684984, 'FSRPTH14': 0.635836737}, '46003': {'FFRPTH14': 0.72859745, 'FSRPTH14': 1.4571949}, '46005': {'FFRPTH14': 0.550388024, 'FSRPTH14': 0.495349221}, '46007': {'FFRPTH14': 0.29154519, 'FSRPTH14': 0.0}, '46009': {'FFRPTH14': 0.142389292, 'FSRPTH14': 0.42716787700000003}, '46011': {'FFRPTH14': 0.600348202, 'FSRPTH14': 0.900522303}, '46013': {'FFRPTH14': 0.729014789, 'FSRPTH14': 0.7550510309999999}, '46015': {'FFRPTH14': 0.9417969490000001, 'FSRPTH14': 0.7534375590000001}, '46017': {'FFRPTH14': 0.0, 'FSRPTH14': 0.0}, '46019': {'FFRPTH14': 0.582637405, 'FSRPTH14': 1.068168576}, '46021': {'FFRPTH14': 0.721500722, 'FSRPTH14': 4.329004329}, '46023': {'FFRPTH14': 0.5383869929999999, 'FSRPTH14': 0.5383869929999999}, '46025': {'FFRPTH14': 0.0, 'FSRPTH14': 0.548696845}, '46027': {'FFRPTH14': 0.574217628, 'FSRPTH14': 0.8613264429999999}, '46029': {'FFRPTH14': 0.680077314, 'FSRPTH14': 1.324361085}, '46031': {'FFRPTH14': 0.0, 'FSRPTH14': 0.47824007700000004}, '46033': {'FFRPTH14': 0.473653049, 'FSRPTH14': 2.368265246}, '46035': {'FFRPTH14': 0.854915766, 'FSRPTH14': 1.005783254}, '46037': {'FFRPTH14': 0.715819613, 'FSRPTH14': 1.252684324}, '46039': {'FFRPTH14': 0.463821892, 'FSRPTH14': 1.1595547309999998}, '46041': {'FFRPTH14': 0.0, 'FSRPTH14': 0.176616037}, '46043': {'FFRPTH14': 0.0, 'FSRPTH14': 1.345442314}, '46045': {'FFRPTH14': 0.251067035, 'FSRPTH14': 1.255335174}, '46047': {'FFRPTH14': 0.73046019, 'FSRPTH14': 1.46092038}, '46049': {'FFRPTH14': 0.42426813700000005, 'FSRPTH14': 2.121340687}, '46051': {'FFRPTH14': 0.9667173040000001, 'FSRPTH14': 1.38102472}, '46053': {'FFRPTH14': 0.0, 'FSRPTH14': 2.371354043}, '46055': {'FFRPTH14': 0.541418517, 'FSRPTH14': 1.082837033}, '46057': {'FFRPTH14': 0.0, 'FSRPTH14': 0.0}, '46059': {'FFRPTH14': 0.298953662, 'FSRPTH14': 0.597907324}, '46061': {'FFRPTH14': 0.0, 'FSRPTH14': 0.292483182}, '46063': {'FFRPTH14': 0.0, 'FSRPTH14': 0.8}, '46065': {'FFRPTH14': 0.510146242, 'FSRPTH14': 0.850243737}, '46067': {'FFRPTH14': 0.27777777800000003, 'FSRPTH14': 0.694444444}, '46069': {'FFRPTH14': 0.0, 'FSRPTH14': 0.0}, '46071': {'FFRPTH14': 0.610873549, 'FSRPTH14': 0.916310324}, '46073': {'FFRPTH14': 0.0, 'FSRPTH14': 1.4947683109999998}, '46075': {'FFRPTH14': 2.051282051, 'FSRPTH14': 4.102564103}, '46077': {'FFRPTH14': 0.197044335, 'FSRPTH14': 0.78817734}, '46079': {'FFRPTH14': 0.40426908200000006, 'FSRPTH14': 1.1319534279999999}, '46081': {'FFRPTH14': 0.932797988, 'FSRPTH14': 1.257249463}, '46083': {'FFRPTH14': 0.310390316, 'FSRPTH14': 0.387987895}, '46085': {'FFRPTH14': 0.515862781, 'FSRPTH14': 0.515862781}, '46087': {'FFRPTH14': 0.17702248199999998, 'FSRPTH14': 1.239157373}, '46089': {'FFRPTH14': 0.0, 'FSRPTH14': 1.646768217}, '46091': {'FFRPTH14': 0.42707666, 'FSRPTH14': 1.0676916509999999}, '46093': {'FFRPTH14': 0.25973062199999997, 'FSRPTH14': 0.779191867}, '46095': {'FFRPTH14': 0.0, 'FSRPTH14': 0.0}, '46097': {'FFRPTH14': 1.7271157169999998, 'FSRPTH14': 0.863557858}, '46099': {'FFRPTH14': 0.836605024, 'FSRPTH14': 0.672564823}, '46101': {'FFRPTH14': 0.15705984, 'FSRPTH14': 0.9423590390000001}, '46103': {'FFRPTH14': 0.812993108, 'FSRPTH14': 0.89614013}, '46105': {'FFRPTH14': 0.0, 'FSRPTH14': 1.318826245}, '46107': {'FFRPTH14': 0.854700855, 'FSRPTH14': 1.709401709}, '46109': {'FFRPTH14': 0.38557933299999997, 'FSRPTH14': 0.674763833}, '46111': {'FFRPTH14': 0.42808219200000003, 'FSRPTH14': 0.8561643840000001}, '46113': {'FFRPTH14': 0.14066676, 'FSRPTH14': 0.07033338}, '46115': {'FFRPTH14': 0.454683237, 'FSRPTH14': 0.454683237}, '46117': {'FFRPTH14': 1.005698961, 'FSRPTH14': 1.340931948}, '46119': {'FFRPTH14': 0.0, 'FSRPTH14': 3.47705146}, '46121': {'FFRPTH14': 0.10119409, 'FSRPTH14': 0.10119409}, '46123': {'FFRPTH14': 0.544267054, 'FSRPTH14': 0.9071117559999999}, '46125': {'FFRPTH14': 0.24177949699999998, 'FSRPTH14': 1.329787234}, '46127': {'FFRPTH14': 0.465766185, 'FSRPTH14': 0.5988422379999999}, '46129': {'FFRPTH14': 1.270186899, 'FSRPTH14': 0.9072763559999999}, '46135': {'FFRPTH14': 0.793510845, 'FSRPTH14': 0.969846588}, '46137': {'FFRPTH14': 0.353857042, 'FSRPTH14': 0.353857042}, '47001': {'FFRPTH14': 0.8473678640000001, 'FSRPTH14': 0.476644423}, '47003': {'FFRPTH14': 0.514723229, 'FSRPTH14': 0.47182962700000003}, '47005': {'FFRPTH14': 0.495509446, 'FSRPTH14': 0.86714153}, '47007': {'FFRPTH14': 0.0, 'FSRPTH14': 0.14356471199999998}, '47009': {'FFRPTH14': 0.506573584, 'FSRPTH14': 0.5698952820000001}, '47011': {'FFRPTH14': 0.718621025, 'FSRPTH14': 0.534110221}, '47013': {'FFRPTH14': 0.6763865929999999, 'FSRPTH14': 0.300616263}, '47015': {'FFRPTH14': 0.508831867, 'FSRPTH14': 0.36345133399999996}, '47017': {'FFRPTH14': 0.422982023, 'FSRPTH14': 0.599224533}, '47019': {'FFRPTH14': 0.580107584, 'FSRPTH14': 0.369159371}, '47021': {'FFRPTH14': 0.47781913299999995, 'FSRPTH14': 0.352077256}, '47023': {'FFRPTH14': 0.51786639, 'FSRPTH14': 0.51786639}, '47025': {'FFRPTH14': 0.443150165, 'FSRPTH14': 0.253228665}, '47027': {'FFRPTH14': 0.515132003, 'FSRPTH14': 0.515132003}, '47029': {'FFRPTH14': 0.45230960600000003, 'FSRPTH14': 0.76327246}, '47031': {'FFRPTH14': 0.7086511390000001, 'FSRPTH14': 0.801894709}, '47033': {'FFRPTH14': 0.409053722, 'FSRPTH14': 0.204526861}, '47035': {'FFRPTH14': 0.5863585410000001, 'FSRPTH14': 0.60360438}, '47037': {'FFRPTH14': 0.9351429720000001, 'FSRPTH14': 0.963571318}, '47039': {'FFRPTH14': 0.342876736, 'FSRPTH14': 0.85719184}, '47041': {'FFRPTH14': 0.311397135, 'FSRPTH14': 0.518995225}, '47043': {'FFRPTH14': 0.790904597, 'FSRPTH14': 0.6722689079999999}, '47045': {'FFRPTH14': 0.527217609, 'FSRPTH14': 0.474495848}, '47047': {'FFRPTH14': 0.281971752, 'FSRPTH14': 0.461408321}, '47049': {'FFRPTH14': 0.560067208, 'FSRPTH14': 0.280033604}, '47051': {'FFRPTH14': 0.45891502799999995, 'FSRPTH14': 0.603835563}, '47053': {'FFRPTH14': 0.54576326, 'FSRPTH14': 0.54576326}, '47055': {'FFRPTH14': 0.65851038, 'FSRPTH14': 0.41590129299999995}, '47057': {'FFRPTH14': 0.17494751600000003, 'FSRPTH14': 0.262421274}, '47059': {'FFRPTH14': 0.599985366, 'FSRPTH14': 0.643886734}, '47061': {'FFRPTH14': 0.37243947899999996, 'FSRPTH14': 0.297951583}, '47063': {'FFRPTH14': 0.824925439, 'FSRPTH14': 0.507646424}, '47065': {'FFRPTH14': 0.902568191, 'FSRPTH14': 0.8598599170000001}, '47067': {'FFRPTH14': 0.150217816, 'FSRPTH14': 0.300435632}, '47069': {'FFRPTH14': 0.308107067, 'FSRPTH14': 0.308107067}, '47071': {'FFRPTH14': 0.46385775, 'FSRPTH14': 1.0823347509999999}, '47073': {'FFRPTH14': 0.42301930000000004, 'FSRPTH14': 0.38776769200000005}, '47075': {'FFRPTH14': 0.549903767, 'FSRPTH14': 0.49491339}, '47077': {'FFRPTH14': 0.6426505770000001, 'FSRPTH14': 0.42843371799999996}, '47079': {'FFRPTH14': 0.589988821, 'FSRPTH14': 0.745249037}, '47081': {'FFRPTH14': 0.24606299199999998, 'FSRPTH14': 0.41010498700000003}, '47083': {'FFRPTH14': 0.725777186, 'FSRPTH14': 0.8467400509999999}, '47085': {'FFRPTH14': 0.9374138409999999, 'FSRPTH14': 0.9374138409999999}, '47087': {'FFRPTH14': 0.17289073300000002, 'FSRPTH14': 0.2593361}, '47089': {'FFRPTH14': 0.53154128, 'FSRPTH14': 0.47459042799999995}, '47091': {'FFRPTH14': 0.33596506, 'FSRPTH14': 0.727924296}, '47093': {'FFRPTH14': 0.8737439929999999, 'FSRPTH14': 0.7132604020000001}, '47095': {'FFRPTH14': 0.262088848, 'FSRPTH14': 0.65522212}, '47097': {'FFRPTH14': 0.292162735, 'FSRPTH14': 0.219122051}, '47099': {'FFRPTH14': 0.544069641, 'FSRPTH14': 0.473104036}, '47101': {'FFRPTH14': 0.8399126490000001, 'FSRPTH14': 0.33596506}, '47103': {'FFRPTH14': 0.624312513, 'FSRPTH14': 0.683770848}, '47105': {'FFRPTH14': 0.7484587659999999, 'FSRPTH14': 0.47271079899999996}, '47107': {'FFRPTH14': 0.646068483, 'FSRPTH14': 0.513054384}, '47109': {'FFRPTH14': 0.647199909, 'FSRPTH14': 0.609129326}, '47111': {'FFRPTH14': 0.565143677, 'FSRPTH14': 0.347780724}, '47113': {'FFRPTH14': 0.8352176659999999, 'FSRPTH14': 0.8046609220000001}, '47115': {'FFRPTH14': 0.774457, 'FSRPTH14': 0.7392544090000001}, '47117': {'FFRPTH14': 0.607630561, 'FSRPTH14': 0.319805558}, '47119': {'FFRPTH14': 0.8302636959999999, 'FSRPTH14': 0.619774309}, '47121': {'FFRPTH14': 0.170925562, 'FSRPTH14': 0.5982394670000001}, '47123': {'FFRPTH14': 0.6632325960000001, 'FSRPTH14': 0.619017089}, '47125': {'FFRPTH14': 0.615915899, 'FSRPTH14': 0.658029806}, '47127': {'FFRPTH14': 0.316505776, 'FSRPTH14': 0.633011552}, '47129': {'FFRPTH14': 0.184672207, 'FSRPTH14': 0.092336103}, '47131': {'FFRPTH14': 0.581752367, 'FSRPTH14': 0.678711095}, '47133': {'FFRPTH14': 0.499364445, 'FSRPTH14': 0.36317414200000003}, '47135': {'FFRPTH14': 0.511378164, 'FSRPTH14': 0.383533623}, '47137': {'FFRPTH14': 0.780640125, 'FSRPTH14': 0.9758001559999999}, '47139': {'FFRPTH14': 0.298864316, 'FSRPTH14': 0.41841004200000004}, '47141': {'FFRPTH14': 0.8224903929999999, 'FSRPTH14': 0.782040046}, '47143': {'FFRPTH14': 0.612726326, 'FSRPTH14': 0.673998958}, '47145': {'FFRPTH14': 0.644574202, 'FSRPTH14': 0.28437097100000003}, '47147': {'FFRPTH14': 0.719752053, 'FSRPTH14': 0.558175061}, '47149': {'FFRPTH14': 0.699189356, 'FSRPTH14': 0.609194686}, '47151': {'FFRPTH14': 0.5912584710000001, 'FSRPTH14': 0.318369946}, '47153': {'FFRPTH14': 0.8161044609999999, 'FSRPTH14': 0.34004352600000004}, '47155': {'FFRPTH14': 1.019871727, 'FSRPTH14': 1.629691936}, '47157': {'FFRPTH14': 0.725391802, 'FSRPTH14': 0.5975694579999999}, '47159': {'FFRPTH14': 0.47345994, 'FSRPTH14': 0.47345994}, '47161': {'FFRPTH14': 0.45184125299999994, 'FSRPTH14': 0.45184125299999994}, '47163': {'FFRPTH14': 0.897820398, 'FSRPTH14': 0.7386323840000001}, '47165': {'FFRPTH14': 0.555857932, 'FSRPTH14': 0.567438306}, '47167': {'FFRPTH14': 0.40569268, 'FSRPTH14': 0.438148094}, '47169': {'FFRPTH14': 0.499875031, 'FSRPTH14': 0.37490627299999996}, '47171': {'FFRPTH14': 0.556699883, 'FSRPTH14': 0.7237098479999999}, '47173': {'FFRPTH14': 0.20928164100000002, 'FSRPTH14': 0.20928164100000002}, '47175': {'FFRPTH14': 0.0, 'FSRPTH14': 0.0}, '47177': {'FFRPTH14': 0.600465361, 'FSRPTH14': 0.475368411}, '47179': {'FFRPTH14': 0.80797199, 'FSRPTH14': 0.895106225}, '47181': {'FFRPTH14': 0.236504464, 'FSRPTH14': 0.41388281200000004}, '47183': {'FFRPTH14': 0.66912984, 'FSRPTH14': 0.5236668320000001}, '47185': {'FFRPTH14': 0.6843846240000001, 'FSRPTH14': 0.456256416}, '47187': {'FFRPTH14': 0.779628312, 'FSRPTH14': 0.838100436}, '47189': {'FFRPTH14': 0.725816743, 'FSRPTH14': 0.622128637}, '48001': {'FFRPTH14': 0.416471446, 'FSRPTH14': 0.451177399}, '48003': {'FFRPTH14': 0.57218058, 'FSRPTH14': 0.57218058}, '48005': {'FFRPTH14': 0.729344729, 'FSRPTH14': 0.535612536}, '48007': {'FFRPTH14': 0.680762454, 'FSRPTH14': 1.2814352070000001}, '48009': {'FFRPTH14': 0.453977982, 'FSRPTH14': 0.226988991}, '48011': {'FFRPTH14': 1.023017903, 'FSRPTH14': 0.0}, '48013': {'FFRPTH14': 0.460501528, 'FSRPTH14': 0.5023653029999999}, '48015': {'FFRPTH14': 0.515216047, 'FSRPTH14': 0.515216047}, '48017': {'FFRPTH14': 0.578871201, 'FSRPTH14': 0.578871201}, '48019': {'FFRPTH14': 0.335056481, 'FSRPTH14': 0.62224775}, '48021': {'FFRPTH14': 0.461130538, 'FSRPTH14': 0.5379856279999999}, '48023': {'FFRPTH14': 0.83518931, 'FSRPTH14': 1.113585746}, '48025': {'FFRPTH14': 0.48686973200000006, 'FSRPTH14': 0.456440374}, '48027': {'FFRPTH14': 0.665370359, 'FSRPTH14': 0.531688643}, '48029': {'FFRPTH14': 0.7004816079999999, 'FSRPTH14': 0.691321464}, '48031': {'FFRPTH14': 0.832408435, 'FSRPTH14': 0.9248982609999999}, '48033': {'FFRPTH14': 0.0, 'FSRPTH14': 0.0}, '48035': {'FFRPTH14': 0.562429696, 'FSRPTH14': 0.33745781799999996}, '48037': {'FFRPTH14': 0.997051729, 'FSRPTH14': 0.589654248}, '48039': {'FFRPTH14': 0.576711502, 'FSRPTH14': 0.547136553}, '48041': {'FFRPTH14': 0.827149633, 'FSRPTH14': 0.602432681}, '48043': {'FFRPTH14': 0.763109125, 'FSRPTH14': 1.1991714820000001}, '48045': {'FFRPTH14': 0.0, 'FSRPTH14': 0.651041667}, '48047': {'FFRPTH14': 0.834028357, 'FSRPTH14': 0.973033083}, '48049': {'FFRPTH14': 0.956099116, 'FSRPTH14': 0.690516028}, '48051': {'FFRPTH14': 0.695531212, 'FSRPTH14': 0.695531212}, '48053': {'FFRPTH14': 0.62301137, 'FSRPTH14': 1.13477071}, '48055': {'FFRPTH14': 0.527505652, 'FSRPTH14': 0.477267018}, '48057': {'FFRPTH14': 0.6422902229999999, 'FSRPTH14': 0.963435335}, '48059': {'FFRPTH14': 0.666025309, 'FSRPTH14': 0.148005624}, '48061': {'FFRPTH14': 0.570895735, 'FSRPTH14': 0.5732744679999999}, '48063': {'FFRPTH14': 0.55463117, 'FSRPTH14': 0.475398146}, '48065': {'FFRPTH14': 0.665225345, 'FSRPTH14': 0.166306336}, '48067': {'FFRPTH14': 0.5617791879999999, 'FSRPTH14': 0.49568751899999997}, '48069': {'FFRPTH14': 0.771109112, 'FSRPTH14': 0.771109112}, '48071': {'FFRPTH14': 0.655393892, 'FSRPTH14': 0.471883602}, '48073': {'FFRPTH14': 0.5107854310000001, 'FSRPTH14': 0.353620683}, '48075': {'FFRPTH14': 0.987445338, 'FSRPTH14': 1.5516998169999998}, '48077': {'FFRPTH14': 0.38572806200000004, 'FSRPTH14': 0.19286403100000002}, '48079': {'FFRPTH14': 0.0, 'FSRPTH14': 0.340715503}, '48081': {'FFRPTH14': 0.0, 'FSRPTH14': 0.921942225}, '48083': {'FFRPTH14': 0.711743772, 'FSRPTH14': 0.8303677340000001}, '48085': {'FFRPTH14': 0.83706019, 'FSRPTH14': 0.735392961}, '48087': {'FFRPTH14': 1.325820351, 'FSRPTH14': 0.331455088}, '48089': {'FFRPTH14': 0.772238042, 'FSRPTH14': 0.6757082870000001}, '48091': {'FFRPTH14': 0.679095187, 'FSRPTH14': 0.8084466509999999}, '48093': {'FFRPTH14': 0.44280442799999997, 'FSRPTH14': 0.664206642}, '48095': {'FFRPTH14': 0.740740741, 'FSRPTH14': 0.49382716}, '48097': {'FFRPTH14': 0.46438430399999997, 'FSRPTH14': 0.8255720959999999}, '48099': {'FFRPTH14': 0.42349329, 'FSRPTH14': 0.383790794}, '48101': {'FFRPTH14': 0.7067137809999999, 'FSRPTH14': 0.7067137809999999}, '48103': {'FFRPTH14': 0.606060606, 'FSRPTH14': 0.606060606}, '48105': {'FFRPTH14': 1.311647429, 'FSRPTH14': 1.311647429}, '48107': {'FFRPTH14': 0.169520258, 'FSRPTH14': 0.169520258}, '48109': {'FFRPTH14': 0.882612533, 'FSRPTH14': 1.3239188}, '48111': {'FFRPTH14': 0.840925018, 'FSRPTH14': 0.9810791870000001}, '48113': {'FFRPTH14': 0.820681654, 'FSRPTH14': 0.6872762179999999}, '48115': {'FFRPTH14': 0.9721806759999999, 'FSRPTH14': 0.523481902}, '48117': {'FFRPTH14': 0.5730659029999999, 'FSRPTH14': 0.468872102}, '48119': {'FFRPTH14': 0.19091256199999998, 'FSRPTH14': 0.38182512399999996}, '48121': {'FFRPTH14': 0.65572639, 'FSRPTH14': 0.5853751779999999}, '48123': {'FFRPTH14': 0.773544769, 'FSRPTH14': 0.9185844129999999}, '48125': {'FFRPTH14': 1.3525698830000001, 'FSRPTH14': 1.3525698830000001}, '48127': {'FFRPTH14': 0.541076743, 'FSRPTH14': 0.721435657}, '48129': {'FFRPTH14': 1.1289867340000002, 'FSRPTH14': 0.8467400509999999}, '48131': {'FFRPTH14': 0.433538542, 'FSRPTH14': 0.34683083299999995}, '48133': {'FFRPTH14': 0.935299296, 'FSRPTH14': 0.7152288729999999}, '48135': {'FFRPTH14': 0.701736147, 'FSRPTH14': 0.519804553}, '48137': {'FFRPTH14': 0.532197978, 'FSRPTH14': 0.532197978}, '48139': {'FFRPTH14': 0.608849024, 'FSRPTH14': 0.45192917299999996}, '48141': {'FFRPTH14': 0.6838738940000001, 'FSRPTH14': 0.613086947}, '48143': {'FFRPTH14': 0.8468876879999999, 'FSRPTH14': 0.7223453809999999}, '48145': {'FFRPTH14': 0.412031314, 'FSRPTH14': 0.353169698}, '48147': {'FFRPTH14': 0.385162361, 'FSRPTH14': 0.444418109}, '48149': {'FFRPTH14': 0.805379938, 'FSRPTH14': 1.087262916}, '48151': {'FFRPTH14': 0.26102845199999997, 'FSRPTH14': 0.5220569039999999}, '48153': {'FFRPTH14': 1.008572869, 'FSRPTH14': 0.840477391}, '48155': {'FFRPTH14': 1.568627451, 'FSRPTH14': 0.784313725}, '48157': {'FFRPTH14': 0.579270295, 'FSRPTH14': 0.5063143379999999}, '48159': {'FFRPTH14': 0.471698113, 'FSRPTH14': 0.5660377360000001}, '48161': {'FFRPTH14': 0.506021658, 'FSRPTH14': 0.506021658}, '48163': {'FFRPTH14': 0.755490799, 'FSRPTH14': 0.431709028}, '48165': {'FFRPTH14': 0.6177606179999999, 'FSRPTH14': 0.6177606179999999}, '48167': {'FFRPTH14': 0.7288397759999999, 'FSRPTH14': 0.697012712}, '48169': {'FFRPTH14': 0.777000777, 'FSRPTH14': 0.46620046600000004}, '48171': {'FFRPTH14': 0.587774295, 'FSRPTH14': 1.84169279}, '48173': {'FFRPTH14': 0.774593338, 'FSRPTH14': 0.774593338}, '48175': {'FFRPTH14': 0.39740363, 'FSRPTH14': 0.662339383}, '48177': {'FFRPTH14': 0.6841950929999999, 'FSRPTH14': 0.6841950929999999}, '48179': {'FFRPTH14': 0.520742927, 'FSRPTH14': 0.911300122}, '48181': {'FFRPTH14': 0.7042595559999999, 'FSRPTH14': 0.574740557}, '48183': {'FFRPTH14': 0.965877731, 'FSRPTH14': 0.8522450570000001}, '48185': {'FFRPTH14': 0.294420727, 'FSRPTH14': 0.478433682}, '48187': {'FFRPTH14': 0.482173175, 'FSRPTH14': 0.37351443100000004}, '48189': {'FFRPTH14': 0.5472350229999999, 'FSRPTH14': 0.51843318}, '48191': {'FFRPTH14': 1.271051795, 'FSRPTH14': 1.588814744}, '48193': {'FFRPTH14': 0.8537626540000001, 'FSRPTH14': 0.7317965609999999}, '48195': {'FFRPTH14': 0.7260845890000001, 'FSRPTH14': 1.089126883}, '48197': {'FFRPTH14': 1.018329939, 'FSRPTH14': 1.018329939}, '48199': {'FFRPTH14': 0.75511048, 'FSRPTH14': 0.359576419}, '48201': {'FFRPTH14': 0.703611723, 'FSRPTH14': 0.62480721}, '48203': {'FFRPTH14': 0.5346322920000001, 'FSRPTH14': 0.40097421899999997}, '48205': {'FFRPTH14': 0.0, 'FSRPTH14': 0.8211528990000001}, '48207': {'FFRPTH14': 0.520020801, 'FSRPTH14': 0.866701335}, '48209': {'FFRPTH14': 0.7080124309999999, 'FSRPTH14': 0.62153763}, '48211': {'FFRPTH14': 0.7177033490000001, 'FSRPTH14': 0.9569377990000001}, '48213': {'FFRPTH14': 0.7188800609999999, 'FSRPTH14': 0.605372683}, '48215': {'FFRPTH14': 0.436784735, 'FSRPTH14': 0.458443482}, '48217': {'FFRPTH14': 0.60261708, 'FSRPTH14': 0.545224977}, '48219': {'FFRPTH14': 0.678627476, 'FSRPTH14': 0.678627476}, '48221': {'FFRPTH14': 0.778917305, 'FSRPTH14': 0.630552104}, '48223': {'FFRPTH14': 0.38974416100000003, 'FSRPTH14': 0.6681328470000001}, '48225': {'FFRPTH14': 0.4397344, 'FSRPTH14': 0.571654721}, '48227': {'FFRPTH14': 0.7639627840000001, 'FSRPTH14': 0.791247169}, '48229': {'FFRPTH14': 0.0, 'FSRPTH14': 1.245717845}, '48231': {'FFRPTH14': 0.5989174279999999, 'FSRPTH14': 0.42941249600000003}, '48233': {'FFRPTH14': 0.7807835390000001, 'FSRPTH14': 0.688926652}, '48235': {'FFRPTH14': 0.635324015, 'FSRPTH14': 1.27064803}, '48237': {'FFRPTH14': 0.677583286, 'FSRPTH14': 0.677583286}, '48239': {'FFRPTH14': 0.6784720809999999, 'FSRPTH14': 0.407083249}, '48241': {'FFRPTH14': 0.646939694, 'FSRPTH14': 0.450045005}, '48243': {'FFRPTH14': 0.45372050799999997, 'FSRPTH14': 1.361161525}, '48245': {'FFRPTH14': 0.705691121, 'FSRPTH14': 0.54314429}, '48247': {'FFRPTH14': 0.761179829, 'FSRPTH14': 0.380589914}, '48249': {'FFRPTH14': 0.749643315, 'FSRPTH14': 0.556186976}, '48251': {'FFRPTH14': 0.660501982, 'FSRPTH14': 0.387409816}, '48253': {'FFRPTH14': 0.401284109, 'FSRPTH14': 0.250802568}, '48255': {'FFRPTH14': 0.6037837110000001, 'FSRPTH14': 1.140480343}, '48257': {'FFRPTH14': 0.629292675, 'FSRPTH14': 0.485454349}, '48259': {'FFRPTH14': 0.694444444, 'FSRPTH14': 0.7973251029999999}, '48261': {'FFRPTH14': 0.0, 'FSRPTH14': 0.0}, '48263': {'FFRPTH14': 0.0, 'FSRPTH14': 1.27388535}, '48265': {'FFRPTH14': 0.7713302479999999, 'FSRPTH14': 0.791107947}, '48267': {'FFRPTH14': 0.901306895, 'FSRPTH14': 0.901306895}, '48269': {'FFRPTH14': 0.0, 'FSRPTH14': 0.0}, '48271': {'FFRPTH14': 0.283607487, 'FSRPTH14': 0.567214974}, '48273': {'FFRPTH14': 0.8698353529999999, 'FSRPTH14': 0.7145076109999999}, '48275': {'FFRPTH14': 0.259201659, 'FSRPTH14': 0.518403318}, '48277': {'FFRPTH14': 0.706742322, 'FSRPTH14': 0.72693496}, '48279': {'FFRPTH14': 0.442021512, 'FSRPTH14': 0.6630322679999999}, '48281': {'FFRPTH14': 0.496130185, 'FSRPTH14': 0.8434213140000001}, '48283': {'FFRPTH14': 0.936580145, 'FSRPTH14': 0.5351886539999999}, '48285': {'FFRPTH14': 0.45636631, 'FSRPTH14': 0.5070736779999999}, '48287': {'FFRPTH14': 0.657030223, 'FSRPTH14': 0.716760244}, '48289': {'FFRPTH14': 0.5930846329999999, 'FSRPTH14': 1.0082438759999999}, '48291': {'FFRPTH14': 0.512052434, 'FSRPTH14': 0.371238015}, '48293': {'FFRPTH14': 0.46760755, 'FSRPTH14': 0.680156436}, '48295': {'FFRPTH14': 0.281452294, 'FSRPTH14': 0.844356882}, '48297': {'FFRPTH14': 0.744355306, 'FSRPTH14': 1.240592176}, '48299': {'FFRPTH14': 0.9738595590000001, 'FSRPTH14': 0.7688364940000001}, '48301': {'FFRPTH14': 0.0, 'FSRPTH14': 0.0}, '48303': {'FFRPTH14': 0.904841925, 'FSRPTH14': 0.57147911}, '48305': {'FFRPTH14': 0.519840582, 'FSRPTH14': 0.346560388}, '48307': {'FFRPTH14': 0.975728747, 'FSRPTH14': 1.097694841}, '48309': {'FFRPTH14': 0.805123213, 'FSRPTH14': 0.529902523}, '48311': {'FFRPTH14': 0.0, 'FSRPTH14': 3.726708075}, '48313': {'FFRPTH14': 1.226462737, 'FSRPTH14': 0.721448669}, '48315': {'FFRPTH14': 0.492659375, 'FSRPTH14': 0.689723125}, '48317': {'FFRPTH14': 0.183150183, 'FSRPTH14': 0.366300366}, '48319': {'FFRPTH14': 1.22819946, 'FSRPTH14': 1.719479243}, '48321': {'FFRPTH14': 0.62980914, 'FSRPTH14': 0.876256195}, '48323': {'FFRPTH14': 0.526103502, 'FSRPTH14': 0.45595636799999995}, '48325': {'FFRPTH14': 0.584624379, 'FSRPTH14': 0.6890215890000001}, '48327': {'FFRPTH14': 0.465766185, 'FSRPTH14': 0.931532371}, '48329': {'FFRPTH14': 0.750818199, 'FSRPTH14': 0.59038696}, '48331': {'FFRPTH14': 0.535949868, 'FSRPTH14': 0.618403694}, '48333': {'FFRPTH14': 0.41067761799999997, 'FSRPTH14': 1.026694045}, '48335': {'FFRPTH14': 0.550903482, 'FSRPTH14': 0.661084178}, '48337': {'FFRPTH14': 0.618046972, 'FSRPTH14': 0.5665430570000001}, '48339': {'FFRPTH14': 0.59158257, 'FSRPTH14': 0.549189031}, '48341': {'FFRPTH14': 0.496658841, 'FSRPTH14': 0.812714466}, '48343': {'FFRPTH14': 0.7062701090000001, 'FSRPTH14': 0.47084673899999996}, '48345': {'FFRPTH14': 0.0, 'FSRPTH14': 1.7346053769999998}, '48347': {'FFRPTH14': 0.6278617479999999, 'FSRPTH14': 0.459411035}, '48349': {'FFRPTH14': 0.663969291, 'FSRPTH14': 0.45647888799999997}, '48351': {'FFRPTH14': 0.070731362, 'FSRPTH14': 0.070731362}, '48353': {'FFRPTH14': 0.8613264429999999, 'FSRPTH14': 0.927582323}, '48355': {'FFRPTH14': 0.850595557, 'FSRPTH14': 0.788836144}, '48357': {'FFRPTH14': 0.37181632299999995, 'FSRPTH14': 1.30135713}, '48359': {'FFRPTH14': 1.4492753619999998, 'FSRPTH14': 1.4492753619999998}, '48361': {'FFRPTH14': 0.767082569, 'FSRPTH14': 0.35956995399999997}, '48363': {'FFRPTH14': 0.960990888, 'FSRPTH14': 0.960990888}, '48365': {'FFRPTH14': 0.21035802899999997, 'FSRPTH14': 0.336572847}, '48367': {'FFRPTH14': 0.6820174729999999, 'FSRPTH14': 0.5115131039999999}, '48369': {'FFRPTH14': 0.10092854300000001, 'FSRPTH14': 0.201857085}, '48371': {'FFRPTH14': 0.503366262, 'FSRPTH14': 0.880890958}, '48373': {'FFRPTH14': 0.542546496, 'FSRPTH14': 0.412335337}, '48375': {'FFRPTH14': 0.953735601, 'FSRPTH14': 0.90440445}, '48377': {'FFRPTH14': 0.860091743, 'FSRPTH14': 1.003440367}, '48379': {'FFRPTH14': 0.634517766, 'FSRPTH14': 0.453226976}, '48381': {'FFRPTH14': 0.616128529, 'FSRPTH14': 0.506941195}, '48383': {'FFRPTH14': 0.266311585, 'FSRPTH14': 0.798934754}, '48385': {'FFRPTH14': 0.593295758, 'FSRPTH14': 0.889943637}, '48387': {'FFRPTH14': 0.321388398, 'FSRPTH14': 0.562429696}, '48389': {'FFRPTH14': 0.348456338, 'FSRPTH14': 0.836295212}, '48391': {'FFRPTH14': 1.095590249, 'FSRPTH14': 1.095590249}, '48393': {'FFRPTH14': 0.0, 'FSRPTH14': 1.077586207}, '48395': {'FFRPTH14': 0.545454545, 'FSRPTH14': 0.787878788}, '48397': {'FFRPTH14': 0.797184799, 'FSRPTH14': 0.831349862}, '48399': {'FFRPTH14': 0.480030722, 'FSRPTH14': 0.8640553}, '48401': {'FFRPTH14': 0.5563488679999999, 'FSRPTH14': 0.445079094}, '48403': {'FFRPTH14': 0.289855072, 'FSRPTH14': 0.579710145}, '48405': {'FFRPTH14': 0.116144019, 'FSRPTH14': 0.232288037}, '48407': {'FFRPTH14': 0.147606923, 'FSRPTH14': 0.221410384}, '48409': {'FFRPTH14': 0.82193828, 'FSRPTH14': 0.5081073}, '48411': {'FFRPTH14': 0.711490573, 'FSRPTH14': 1.600853789}, '48413': {'FFRPTH14': 0.0, 'FSRPTH14': 0.0}, '48415': {'FFRPTH14': 1.211911357, 'FSRPTH14': 0.692520776}, '48417': {'FFRPTH14': 0.5982650310000001, 'FSRPTH14': 0.8973975470000001}, '48419': {'FFRPTH14': 0.391926318, 'FSRPTH14': 0.548696845}, '48421': {'FFRPTH14': 0.324254215, 'FSRPTH14': 0.648508431}, '48423': {'FFRPTH14': 0.8225112179999999, 'FSRPTH14': 0.644300454}, '48425': {'FFRPTH14': 0.920174833, 'FSRPTH14': 0.805152979}, '48427': {'FFRPTH14': 0.42887777, 'FSRPTH14': 0.381224684}, '48429': {'FFRPTH14': 0.850611377, 'FSRPTH14': 0.9569377990000001}, '48431': {'FFRPTH14': 1.493651979, 'FSRPTH14': 0.0}, '48433': {'FFRPTH14': 2.138275125, 'FSRPTH14': 1.42551675}, '48435': {'FFRPTH14': 1.007049345, 'FSRPTH14': 1.258811682}, '48437': {'FFRPTH14': 0.131908719, 'FSRPTH14': 0.791452315}, '48439': {'FFRPTH14': 0.757700374, 'FSRPTH14': 0.6132541020000001}, '48441': {'FFRPTH14': 0.9101470290000001, 'FSRPTH14': 0.5771664089999999}, '48443': {'FFRPTH14': 1.078748652, 'FSRPTH14': 0.0}, '48445': {'FFRPTH14': 0.5494936810000001, 'FSRPTH14': 0.627992778}, '48447': {'FFRPTH14': 0.0, 'FSRPTH14': 2.487562189}, '48449': {'FFRPTH14': 0.584507476, 'FSRPTH14': 0.7075616809999999}, '48451': {'FFRPTH14': 0.6860592759999999, 'FSRPTH14': 0.7117864979999999}, '48453': {'FFRPTH14': 0.774880662, 'FSRPTH14': 0.823527879}, '48455': {'FFRPTH14': 0.35151856, 'FSRPTH14': 0.281214848}, '48457': {'FFRPTH14': 0.420207302, 'FSRPTH14': 0.373517602}, '48459': {'FFRPTH14': 0.446052436, 'FSRPTH14': 0.297368291}, '48461': {'FFRPTH14': 1.737116387, 'FSRPTH14': 0.8685581929999999}, '48463': {'FFRPTH14': 0.700667478, 'FSRPTH14': 0.8481764209999999}, '48465': {'FFRPTH14': 0.6329889329999999, 'FSRPTH14': 0.428798955}, '48467': {'FFRPTH14': 0.51030051, 'FSRPTH14': 0.68040068}, '48469': {'FFRPTH14': 0.779525916, 'FSRPTH14': 0.724629725}, '48471': {'FFRPTH14': 0.487182794, 'FSRPTH14': 0.5015117}, '48473': {'FFRPTH14': 0.44852627100000003, 'FSRPTH14': 0.234942332}, '48475': {'FFRPTH14': 0.516129032, 'FSRPTH14': 1.2903225809999999}, '48477': {'FFRPTH14': 0.7549799640000001, 'FSRPTH14': 0.842093037}, '48479': {'FFRPTH14': 0.659984325, 'FSRPTH14': 0.442489491}, '48481': {'FFRPTH14': 0.777302759, 'FSRPTH14': 0.558686358}, '48483': {'FFRPTH14': 0.700035002, 'FSRPTH14': 2.625131257}, '48485': {'FFRPTH14': 0.732877489, 'FSRPTH14': 0.732877489}, '48487': {'FFRPTH14': 1.002081246, 'FSRPTH14': 0.616665382}, '48489': {'FFRPTH14': 0.36524677, 'FSRPTH14': 0.36524677}, '48491': {'FFRPTH14': 0.656106285, 'FSRPTH14': 0.54777721}, '48493': {'FFRPTH14': 0.431015904, 'FSRPTH14': 0.560320676}, '48495': {'FFRPTH14': 0.383582662, 'FSRPTH14': 0.511443549}, '48497': {'FFRPTH14': 0.584055291, 'FSRPTH14': 0.48671274200000003}, '48499': {'FFRPTH14': 0.350042005, 'FSRPTH14': 0.70008401}, '48501': {'FFRPTH14': 0.844798455, 'FSRPTH14': 1.086169442}, '48503': {'FFRPTH14': 0.980926431, 'FSRPTH14': 0.871934605}, '48505': {'FFRPTH14': 0.419023675, 'FSRPTH14': 0.48886095399999996}, '48507': {'FFRPTH14': 0.244558572, 'FSRPTH14': 0.733675715}, '49001': {'FFRPTH14': 1.702522829, 'FSRPTH14': 0.9286488159999999}, '49003': {'FFRPTH14': 0.601731434, 'FSRPTH14': 0.349392445}, '49005': {'FFRPTH14': 0.743601227, 'FSRPTH14': 0.346450572}, '49007': {'FFRPTH14': 0.677637948, 'FSRPTH14': 0.580832527}, '49009': {'FFRPTH14': 0.0, 'FSRPTH14': 1.790510295}, '49011': {'FFRPTH14': 0.636958131, 'FSRPTH14': 0.360942941}, '49013': {'FFRPTH14': 0.588812561, 'FSRPTH14': 0.539744848}, '49015': {'FFRPTH14': 0.7525162259999999, 'FSRPTH14': 0.282193585}, '49017': {'FFRPTH14': 2.7866242039999998, 'FSRPTH14': 2.1894904459999998}, '49019': {'FFRPTH14': 0.9545020679999999, 'FSRPTH14': 3.075617775}, '49021': {'FFRPTH14': 0.719287482, 'FSRPTH14': 0.634665426}, '49023': {'FFRPTH14': 0.85828724, 'FSRPTH14': 0.667556742}, '49025': {'FFRPTH14': 0.827129859, 'FSRPTH14': 2.205679625}, '49027': {'FFRPTH14': 0.9519276529999999, 'FSRPTH14': 0.475963827}, '49029': {'FFRPTH14': 0.377073906, 'FSRPTH14': 0.377073906}, '49031': {'FFRPTH14': 1.347708895, 'FSRPTH14': 0.6738544470000001}, '49033': {'FFRPTH14': 3.0527692980000003, 'FSRPTH14': 0.872219799}, '49035': {'FFRPTH14': 0.829866397, 'FSRPTH14': 0.622857781}, '49037': {'FFRPTH14': 0.393416825, 'FSRPTH14': 0.5901252379999999}, '49039': {'FFRPTH14': 0.526740879, 'FSRPTH14': 0.316044527}, '49041': {'FFRPTH14': 0.770230588, 'FSRPTH14': 0.577672941}, '49043': {'FFRPTH14': 0.997314921, 'FSRPTH14': 2.045774198}, '49045': {'FFRPTH14': 0.470794506, 'FSRPTH14': 0.30845157300000003}, '49047': {'FFRPTH14': 0.542490574, 'FSRPTH14': 0.46111698799999995}, '49049': {'FFRPTH14': 0.6256974479999999, 'FSRPTH14': 0.335131396}, '49051': {'FFRPTH14': 0.793822617, 'FSRPTH14': 0.5773255389999999}, '49053': {'FFRPTH14': 0.763419064, 'FSRPTH14': 0.651538684}, '49055': {'FFRPTH14': 0.734484025, 'FSRPTH14': 2.5706940869999997}, '49057': {'FFRPTH14': 0.602973282, 'FSRPTH14': 0.544755172}, '50001': {'FFRPTH14': 0.459347726, 'FSRPTH14': 0.7565727259999999}, '50003': {'FFRPTH14': 0.8231581840000001, 'FSRPTH14': 1.317053094}, '50005': {'FFRPTH14': 0.613279107, 'FSRPTH14': 0.871501888}, '50007': {'FFRPTH14': 0.747519171, 'FSRPTH14': 1.02783886}, '50009': {'FFRPTH14': 0.163265306, 'FSRPTH14': 0.816326531}, '50011': {'FFRPTH14': 0.4728424, 'FSRPTH14': 0.781217878}, '50013': {'FFRPTH14': 0.142979697, 'FSRPTH14': 0.428939091}, '50015': {'FFRPTH14': 0.7176461209999999, 'FSRPTH14': 1.87385376}, '50017': {'FFRPTH14': 0.311861118, 'FSRPTH14': 0.866280883}, '50019': {'FFRPTH14': 0.443098737, 'FSRPTH14': 0.738497895}, '50021': {'FFRPTH14': 0.732283727, 'FSRPTH14': 1.447924641}, '50023': {'FFRPTH14': 0.559340995, 'FSRPTH14': 1.135631716}, '50025': {'FFRPTH14': 0.869286727, 'FSRPTH14': 1.624193622}, '50027': {'FFRPTH14': 0.57128575, 'FSRPTH14': 1.410361695}, '51001': {'FFRPTH14': 0.545107659, 'FSRPTH14': 1.090215318}, '51003': {'FFRPTH14': 0.555082353, 'FSRPTH14': 0.60293428}, '51005': {'FFRPTH14': 0.442477876, 'FSRPTH14': 0.442477876}, '51007': {'FFRPTH14': 0.311162972, 'FSRPTH14': 0.311162972}, '51009': {'FFRPTH14': 0.499360195, 'FSRPTH14': 0.468150183}, '51011': {'FFRPTH14': 0.458145167, 'FSRPTH14': 0.458145167}, '51013': {'FFRPTH14': 1.044476175, 'FSRPTH14': 1.075325683}, '51015': {'FFRPTH14': 0.36554656, 'FSRPTH14': 0.33846903700000003}, '51017': {'FFRPTH14': 0.219154065, 'FSRPTH14': 0.8766162609999999}, '51019': {'FFRPTH14': 0.261154564, 'FSRPTH14': 0.483135944}, '51021': {'FFRPTH14': 0.301886792, 'FSRPTH14': 0.150943396}, '51023': {'FFRPTH14': 0.574018127, 'FSRPTH14': 0.6646525679999999}, '51025': {'FFRPTH14': 0.181840223, 'FSRPTH14': 0.303067038}, '51027': {'FFRPTH14': 0.389509218, 'FSRPTH14': 0.302951614}, '51029': {'FFRPTH14': 0.118252232, 'FSRPTH14': 0.17737834800000002}, '51031': {'FFRPTH14': 0.765236403, 'FSRPTH14': 0.455497859}, '51033': {'FFRPTH14': 0.268654712, 'FSRPTH14': 0.436563906}, '51035': {'FFRPTH14': 0.405117991, 'FSRPTH14': 0.506397488}, '51036': {'FFRPTH14': 0.0, 'FSRPTH14': 0.284778585}, '51037': {'FFRPTH14': 0.24539877300000001, 'FSRPTH14': 0.408997955}, '51041': {'FFRPTH14': 0.7097765709999999, 'FSRPTH14': 0.652633542}, '51043': {'FFRPTH14': 0.416002219, 'FSRPTH14': 0.554669625}, '51045': {'FFRPTH14': 0.0, 'FSRPTH14': 0.38211692799999997}, '51047': {'FFRPTH14': 0.569499247, 'FSRPTH14': 0.569499247}, '51049': {'FFRPTH14': 0.0, 'FSRPTH14': 0.305281368}, '51051': {'FFRPTH14': 0.26130128, 'FSRPTH14': 0.587927881}, '51053': {'FFRPTH14': 0.21537025699999998, 'FSRPTH14': 0.287160343}, '51057': {'FFRPTH14': 0.90065748, 'FSRPTH14': 0.990723228}, '51059': {'FFRPTH14': 0.8008523670000001, 'FSRPTH14': 0.661076817}, '51061': {'FFRPTH14': 0.805884422, 'FSRPTH14': 0.615402649}, '51063': {'FFRPTH14': 0.256772371, 'FSRPTH14': 0.770317114}, '51065': {'FFRPTH14': 0.191629618, 'FSRPTH14': 0.38325923700000003}, '51067': {'FFRPTH14': 0.461336456, 'FSRPTH14': 0.532311296}, '51069': {'FFRPTH14': 0.5705476039999999, 'FSRPTH14': 0.558408294}, '51071': {'FFRPTH14': 0.713648528, 'FSRPTH14': 0.654177817}, '51073': {'FFRPTH14': 0.538488463, 'FSRPTH14': 0.646186155}, '51075': {'FFRPTH14': 0.31911013899999996, 'FSRPTH14': 0.774981765}, '51077': {'FFRPTH14': 0.19876764100000002, 'FSRPTH14': 0.463791161}, '51079': {'FFRPTH14': 0.367820924, 'FSRPTH14': 0.525458463}, '51081': {'FFRPTH14': 0.342436435, 'FSRPTH14': 0.085609109}, '51083': {'FFRPTH14': 0.710227273, 'FSRPTH14': 0.653409091}, '51085': {'FFRPTH14': 0.7358857120000001, 'FSRPTH14': 0.726073903}, '51087': {'FFRPTH14': 0.835600949, 'FSRPTH14': 0.848026242}, '51089': {'FFRPTH14': 0.595226666, 'FSRPTH14': 0.345615484}, '51091': {'FFRPTH14': 0.0, 'FSRPTH14': 1.334519573}, '51093': {'FFRPTH14': 0.5554475520000001, 'FSRPTH14': 0.638764685}, '51095': {'FFRPTH14': 0.427097254, 'FSRPTH14': 0.688866539}, '51097': {'FFRPTH14': 0.0, 'FSRPTH14': 0.278745645}, '51099': {'FFRPTH14': 0.472980963, 'FSRPTH14': 0.551811123}, '51101': {'FFRPTH14': 0.432472507, 'FSRPTH14': 0.864945014}, '51103': {'FFRPTH14': 0.9054690329999999, 'FSRPTH14': 1.2676566459999998}, '51105': {'FFRPTH14': 0.28054987800000003, 'FSRPTH14': 0.320628432}, '51107': {'FFRPTH14': 0.718909241, 'FSRPTH14': 0.6886103840000001}, '51109': {'FFRPTH14': 0.26202399, 'FSRPTH14': 0.378479096}, '51111': {'FFRPTH14': 0.16043638699999999, 'FSRPTH14': 0.561527354}, '51113': {'FFRPTH14': 0.380025842, 'FSRPTH14': 0.5320361779999999}, '51115': {'FFRPTH14': 0.565866908, 'FSRPTH14': 0.905387053}, '51117': {'FFRPTH14': 0.801487561, 'FSRPTH14': 0.673249551}, '51119': {'FFRPTH14': 0.654450262, 'FSRPTH14': 1.682872102}, '51121': {'FFRPTH14': 0.647854881, 'FSRPTH14': 0.812389453}, '51125': {'FFRPTH14': 0.40404040399999996, 'FSRPTH14': 0.673400673}, '51127': {'FFRPTH14': 0.499475551, 'FSRPTH14': 0.699265771}, '51131': {'FFRPTH14': 1.072518769, 'FSRPTH14': 0.742512994}, '51133': {'FFRPTH14': 0.24487796899999997, 'FSRPTH14': 0.979511877}, '51135': {'FFRPTH14': 0.83445664, 'FSRPTH14': 0.83445664}, '51137': {'FFRPTH14': 0.742305716, 'FSRPTH14': 0.742305716}, '51139': {'FFRPTH14': 0.712848038, 'FSRPTH14': 0.545119088}, '51141': {'FFRPTH14': 0.328515112, 'FSRPTH14': 0.38326763}, '51143': {'FFRPTH14': 0.24045012300000002, 'FSRPTH14': 0.304570155}, '51145': {'FFRPTH14': 0.210903722, 'FSRPTH14': 0.562409927}, '51147': {'FFRPTH14': 0.650082344, 'FSRPTH14': 0.780098813}, '51149': {'FFRPTH14': 0.455361209, 'FSRPTH14': 0.401789302}, '51153': {'FFRPTH14': 0.634395441, 'FSRPTH14': 0.529036481}, '51155': {'FFRPTH14': 0.961482431, 'FSRPTH14': 0.37876580600000004}, '51157': {'FFRPTH14': 0.271702214, 'FSRPTH14': 0.95095775}, '51159': {'FFRPTH14': 0.224668614, 'FSRPTH14': 0.6740058409999999}, '51161': {'FFRPTH14': 0.565122354, 'FSRPTH14': 0.6824119000000001}, '51163': {'FFRPTH14': 0.403099386, 'FSRPTH14': 0.671832311}, '51165': {'FFRPTH14': 0.34539663, 'FSRPTH14': 0.460528841}, '51167': {'FFRPTH14': 0.535274596, 'FSRPTH14': 0.46390465}, '51169': {'FFRPTH14': 0.446747677, 'FSRPTH14': 0.402072909}, '51171': {'FFRPTH14': 0.534622626, 'FSRPTH14': 0.604356012}, '51173': {'FFRPTH14': 0.602123277, 'FSRPTH14': 0.570432578}, '51175': {'FFRPTH14': 0.221496207, 'FSRPTH14': 0.276870259}, '51177': {'FFRPTH14': 0.681177818, 'FSRPTH14': 0.588289934}, '51179': {'FFRPTH14': 0.542888165, 'FSRPTH14': 0.5000285729999999}, '51181': {'FFRPTH14': 0.147275405, 'FSRPTH14': 0.29455081}, '51183': {'FFRPTH14': 0.509900569, 'FSRPTH14': 0.424917141}, '51185': {'FFRPTH14': 0.736444813, 'FSRPTH14': 0.529319709}, '51187': {'FFRPTH14': 0.589940236, 'FSRPTH14': 0.8207864159999999}, '51191': {'FFRPTH14': 0.602971003, 'FSRPTH14': 0.6577865479999999}, '51193': {'FFRPTH14': 0.22887223199999998, 'FSRPTH14': 1.029925044}, '51195': {'FFRPTH14': 0.651057969, 'FSRPTH14': 0.500813822}, '51197': {'FFRPTH14': 0.755468562, 'FSRPTH14': 0.961505443}, '51199': {'FFRPTH14': 0.753670375, 'FSRPTH14': 0.798890597}, '51510': {'FFRPTH14': 0.8367922959999999, 'FSRPTH14': 1.0625933920000001}, '51515': {'FFRPTH14': 0.0, 'FSRPTH14': 0.0}, '51520': {'FFRPTH14': 1.804003724, 'FSRPTH14': 1.7458100559999998}, '51530': {'FFRPTH14': 0.605785249, 'FSRPTH14': 0.45433893700000005}, '51540': {'FFRPTH14': 1.447590639, 'FSRPTH14': 2.895181278}, '51550': {'FFRPTH14': 0.7713040609999999, 'FSRPTH14': 0.788444151}, '51570': {'FFRPTH14': 1.97394394, 'FSRPTH14': 1.8611471430000002}, '51580': {'FFRPTH14': 1.723543606, 'FSRPTH14': 1.551189245}, '51590': {'FFRPTH14': 1.295825087, 'FSRPTH14': 1.083780982}, '51595': {'FFRPTH14': 1.830831197, 'FSRPTH14': 2.380080557}, '51600': {'FFRPTH14': 3.512641425, 'FSRPTH14': 3.471796757}, '51610': {'FFRPTH14': 2.4262921840000002, 'FSRPTH14': 3.8967722960000004}, '51620': {'FFRPTH14': 1.290171241, 'FSRPTH14': 1.52474783}, '51630': {'FFRPTH14': 1.4462081130000002, 'FSRPTH14': 2.8924162260000004}, '51640': {'FFRPTH14': 2.281151982, 'FSRPTH14': 1.996007984}, '51650': {'FFRPTH14': 0.8109352059999999, 'FSRPTH14': 0.6940436440000001}, '51660': {'FFRPTH14': 1.009947025, 'FSRPTH14': 1.5816151530000002}, '51670': {'FFRPTH14': 0.856010092, 'FSRPTH14': 0.630744278}, '51678': {'FFRPTH14': 1.3678019419999998, 'FSRPTH14': 1.778142525}, '51680': {'FFRPTH14': 1.02470682, 'FSRPTH14': 0.986754716}, '51683': {'FFRPTH14': 1.188184691, 'FSRPTH14': 1.069366222}, '51685': {'FFRPTH14': 0.39541320700000004, 'FSRPTH14': 0.527217609}, '51690': {'FFRPTH14': 1.677485231, 'FSRPTH14': 1.239880388}, '51700': {'FFRPTH14': 0.836225508, 'FSRPTH14': 0.819828929}, '51710': {'FFRPTH14': 0.969734505, 'FSRPTH14': 0.89639324}, '51720': {'FFRPTH14': 2.9769288019999998, 'FSRPTH14': 1.9846192009999999}, '51730': {'FFRPTH14': 1.039723556, 'FSRPTH14': 0.764502615}, '51735': {'FFRPTH14': 0.83001328, 'FSRPTH14': 0.9960159359999999}, '51740': {'FFRPTH14': 0.82288238, 'FSRPTH14': 0.624973959}, '51750': {'FFRPTH14': 0.5667006689999999, 'FSRPTH14': 0.680040802}, '51760': {'FFRPTH14': 0.812474467, 'FSRPTH14': 1.344943609}, '51770': {'FFRPTH14': 0.885062558, 'FSRPTH14': 1.28736372}, '51775': {'FFRPTH14': 1.177255425, 'FSRPTH14': 1.25573912}, '51790': {'FFRPTH14': 0.9780748229999999, 'FSRPTH14': 1.1003341759999998}, '51800': {'FFRPTH14': 0.67967652, 'FSRPTH14': 0.552957169}, '51810': {'FFRPTH14': 0.9335225509999999, 'FSRPTH14': 1.124218369}, '51820': {'FFRPTH14': 1.263689975, 'FSRPTH14': 1.310493307}, '51830': {'FFRPTH14': 2.2462732290000003, 'FSRPTH14': 3.8799264860000005}, '51840': {'FFRPTH14': 1.670115819, 'FSRPTH14': 2.287332535}, '53001': {'FFRPTH14': 0.6778247040000001, 'FSRPTH14': 0.46926325700000004}, '53003': {'FFRPTH14': 0.450673757, 'FSRPTH14': 0.6760106359999999}, '53005': {'FFRPTH14': 0.60594361, 'FSRPTH14': 0.681016269}, '53007': {'FFRPTH14': 0.710570065, 'FSRPTH14': 1.206628412}, '53009': {'FFRPTH14': 0.536340507, 'FSRPTH14': 1.16894726}, '53011': {'FFRPTH14': 0.5387931029999999, 'FSRPTH14': 0.5764864479999999}, '53013': {'FFRPTH14': 0.501882058, 'FSRPTH14': 1.5056461730000001}, '53015': {'FFRPTH14': 0.597260435, 'FSRPTH14': 0.626633899}, '53017': {'FFRPTH14': 0.37684654799999995, 'FSRPTH14': 0.5024620639999999}, '53019': {'FFRPTH14': 0.26085822399999997, 'FSRPTH14': 0.6521455589999999}, '53021': {'FFRPTH14': 0.489699234, 'FSRPTH14': 0.398592399}, '53023': {'FFRPTH14': 0.0, 'FSRPTH14': 0.902934537}, '53025': {'FFRPTH14': 0.611935972, 'FSRPTH14': 0.5260502220000001}, '53027': {'FFRPTH14': 0.578948855, 'FSRPTH14': 0.833121523}, '53029': {'FFRPTH14': 0.37842951799999996, 'FSRPTH14': 0.756859035}, '53031': {'FFRPTH14': 0.595474395, 'FSRPTH14': 1.2240307}, '53033': {'FFRPTH14': 0.826936197, 'FSRPTH14': 1.106267551}, '53035': {'FFRPTH14': 0.625533572, 'FSRPTH14': 0.708151214}, '53037': {'FFRPTH14': 1.128827431, 'FSRPTH14': 1.058275716}, '53039': {'FFRPTH14': 0.431427065, 'FSRPTH14': 0.86285413}, '53041': {'FFRPTH14': 0.638909594, 'FSRPTH14': 0.7587051429999999}, '53043': {'FFRPTH14': 0.87804878, 'FSRPTH14': 0.487804878}, '53045': {'FFRPTH14': 0.395315511, 'FSRPTH14': 0.576501787}, '53047': {'FFRPTH14': 0.460159845, 'FSRPTH14': 0.847662872}, '53049': {'FFRPTH14': 0.583629201, 'FSRPTH14': 1.604980303}, '53051': {'FFRPTH14': 0.38505968399999996, 'FSRPTH14': 1.001155179}, '53053': {'FFRPTH14': 0.647892606, 'FSRPTH14': 0.6082257120000001}, '53055': {'FFRPTH14': 0.9366219170000001, 'FSRPTH14': 2.18545114}, '53057': {'FFRPTH14': 0.639720849, 'FSRPTH14': 0.9554272420000001}, '53059': {'FFRPTH14': 0.352733686, 'FSRPTH14': 0.793650794}, '53061': {'FFRPTH14': 0.7017008020000001, 'FSRPTH14': 0.687219172}, '53063': {'FFRPTH14': 0.704082855, 'FSRPTH14': 0.660722913}, '53065': {'FFRPTH14': 0.595647194, 'FSRPTH14': 0.641466208}, '53067': {'FFRPTH14': 0.628171419, 'FSRPTH14': 0.643217441}, '53069': {'FFRPTH14': 0.49176297, 'FSRPTH14': 0.737644455}, '53071': {'FFRPTH14': 0.484593276, 'FSRPTH14': 0.73524497}, '53073': {'FFRPTH14': 0.595149531, 'FSRPTH14': 0.940720227}, '53075': {'FFRPTH14': 0.875563243, 'FSRPTH14': 0.640656032}, '53077': {'FFRPTH14': 0.553117443, 'FSRPTH14': 0.512743907}, '54001': {'FFRPTH14': 0.417511631, 'FSRPTH14': 0.477156149}, '54003': {'FFRPTH14': 0.5973012839999999, 'FSRPTH14': 0.443450953}, '54005': {'FFRPTH14': 0.295184279, 'FSRPTH14': 0.295184279}, '54007': {'FFRPTH14': 0.553135587, 'FSRPTH14': 0.829703381}, '54009': {'FFRPTH14': 0.679983, 'FSRPTH14': 0.679983}, '54011': {'FFRPTH14': 1.132747737, 'FSRPTH14': 0.7414348820000001}, '54013': {'FFRPTH14': 0.133102622, 'FSRPTH14': 0.532410488}, '54015': {'FFRPTH14': 0.111844313, 'FSRPTH14': 0.223688625}, '54017': {'FFRPTH14': 0.0, 'FSRPTH14': 0.357525921}, '54019': {'FFRPTH14': 0.420987326, 'FSRPTH14': 0.598245148}, '54021': {'FFRPTH14': 0.23207240699999998, 'FSRPTH14': 0.580181016}, '54023': {'FFRPTH14': 0.513390947, 'FSRPTH14': 0.9412167370000001}, '54025': {'FFRPTH14': 0.818053597, 'FSRPTH14': 0.705218618}, '54027': {'FFRPTH14': 0.298087979, 'FSRPTH14': 0.511007963}, '54029': {'FFRPTH14': 0.8302337940000001, 'FSRPTH14': 0.6973963870000001}, '54031': {'FFRPTH14': 0.502765209, 'FSRPTH14': 1.0055304170000001}, '54033': {'FFRPTH14': 0.785328893, 'FSRPTH14': 0.785328893}, '54035': {'FFRPTH14': 0.755338872, 'FSRPTH14': 0.515003777}, '54037': {'FFRPTH14': 0.628219626, 'FSRPTH14': 0.7359144190000001}, '54039': {'FFRPTH14': 0.998827692, 'FSRPTH14': 0.70969336}, '54041': {'FFRPTH14': 1.096624832, 'FSRPTH14': 0.487388814}, '54043': {'FFRPTH14': 0.23190019, 'FSRPTH14': 0.46380038}, '54045': {'FFRPTH14': 0.565802874, 'FSRPTH14': 0.678963449}, '54047': {'FFRPTH14': 0.391236307, 'FSRPTH14': 0.146713615}, '54049': {'FFRPTH14': 0.757002271, 'FSRPTH14': 0.686583455}, '54051': {'FFRPTH14': 0.616979269, 'FSRPTH14': 0.524432379}, '54053': {'FFRPTH14': 0.333135919, 'FSRPTH14': 0.296120817}, '54055': {'FFRPTH14': 0.566480537, 'FSRPTH14': 0.43699927200000005}, '54057': {'FFRPTH14': 0.543911814, 'FSRPTH14': 0.507651026}, '54059': {'FFRPTH14': 0.23331777899999998, 'FSRPTH14': 0.583294447}, '54061': {'FFRPTH14': 0.937533224, 'FSRPTH14': 0.918202642}, '54063': {'FFRPTH14': 0.0, 'FSRPTH14': 0.736268591}, '54065': {'FFRPTH14': 0.286483699, 'FSRPTH14': 0.859451097}, '54067': {'FFRPTH14': 0.542068378, 'FSRPTH14': 0.890540907}, '54069': {'FFRPTH14': 1.038589365, 'FSRPTH14': 0.9693500740000001}, '54071': {'FFRPTH14': 0.407000407, 'FSRPTH14': 0.407000407}, '54073': {'FFRPTH14': 0.654964632, 'FSRPTH14': 0.392978779}, '54075': {'FFRPTH14': 0.230893558, 'FSRPTH14': 1.269914569}, '54077': {'FFRPTH14': 0.295963064, 'FSRPTH14': 0.47354090200000004}, '54079': {'FFRPTH14': 1.0392813109999999, 'FSRPTH14': 0.317068874}, '54081': {'FFRPTH14': 0.600708069, 'FSRPTH14': 0.575146023}, '54083': {'FFRPTH14': 0.475721227, 'FSRPTH14': 0.9174623670000001}, '54085': {'FFRPTH14': 0.699230846, 'FSRPTH14': 0.599340725}, '54087': {'FFRPTH14': 0.34097108600000003, 'FSRPTH14': 0.204582651}, '54089': {'FFRPTH14': 0.372661549, 'FSRPTH14': 0.372661549}, '54091': {'FFRPTH14': 0.527271662, 'FSRPTH14': 0.41010018200000004}, '54093': {'FFRPTH14': 0.8661758340000001, 'FSRPTH14': 1.5879890280000002}, '54095': {'FFRPTH14': 0.32974280100000003, 'FSRPTH14': 0.32974280100000003}, '54097': {'FFRPTH14': 0.566091141, 'FSRPTH14': 0.727831467}, '54099': {'FFRPTH14': 0.413404017, 'FSRPTH14': 0.2918146}, '54101': {'FFRPTH14': 0.113199004, 'FSRPTH14': 0.452796015}, '54103': {'FFRPTH14': 0.938203653, 'FSRPTH14': 0.875656743}, '54105': {'FFRPTH14': 0.0, 'FSRPTH14': 0.684345595}, '54107': {'FFRPTH14': 0.9392720059999999, 'FSRPTH14': 0.742140844}, '54109': {'FFRPTH14': 0.265510222, 'FSRPTH14': 0.531020444}, '55001': {'FFRPTH14': 0.5936186, 'FSRPTH14': 0.74202325}, '55003': {'FFRPTH14': 0.745202757, 'FSRPTH14': 1.304104825}, '55005': {'FFRPTH14': 0.63799362, 'FSRPTH14': 0.96799032}, '55007': {'FFRPTH14': 0.4671338, 'FSRPTH14': 2.268935602}, '55009': {'FFRPTH14': 0.670121167, 'FSRPTH14': 0.8454435659999999}, '55011': {'FFRPTH14': 0.227479527, 'FSRPTH14': 1.5923566880000002}, '55013': {'FFRPTH14': 0.26096033399999996, 'FSRPTH14': 1.891962422}, '55015': {'FFRPTH14': 0.42431957299999995, 'FSRPTH14': 0.686993595}, '55017': {'FFRPTH14': 0.551528522, 'FSRPTH14': 0.8194138040000001}, '55019': {'FFRPTH14': 0.319553787, 'FSRPTH14': 0.8134096390000001}, '55021': {'FFRPTH14': 0.582884395, 'FSRPTH14': 1.2010951159999999}, '55023': {'FFRPTH14': 0.488042948, 'FSRPTH14': 1.037091264}, '55025': {'FFRPTH14': 0.8115688259999999, 'FSRPTH14': 0.8541810320000001}, '55027': {'FFRPTH14': 0.429019803, 'FSRPTH14': 0.598369725}, '55029': {'FFRPTH14': 0.8283512209999999, 'FSRPTH14': 3.3134048839999997}, '55031': {'FFRPTH14': 0.503455536, 'FSRPTH14': 1.1671014690000001}, '55033': {'FFRPTH14': 0.473987135, 'FSRPTH14': 0.7674077420000001}, '55035': {'FFRPTH14': 0.87629475, 'FSRPTH14': 0.777834666}, '55037': {'FFRPTH14': 0.446328944, 'FSRPTH14': 1.7853157780000002}, '55039': {'FFRPTH14': 0.579801295, 'FSRPTH14': 0.766516967}, '55041': {'FFRPTH14': 0.328695081, 'FSRPTH14': 1.533910376}, '55043': {'FFRPTH14': 0.424472786, 'FSRPTH14': 0.8103571359999999}, '55045': {'FFRPTH14': 0.43169738, 'FSRPTH14': 0.998300192}, '55047': {'FFRPTH14': 0.26544914, 'FSRPTH14': 1.2741558720000001}, '55049': {'FFRPTH14': 0.419727177, 'FSRPTH14': 1.049317943}, '55051': {'FFRPTH14': 0.676018252, 'FSRPTH14': 3.380091262}, '55053': {'FFRPTH14': 0.629478985, 'FSRPTH14': 1.1136935890000002}, '55055': {'FFRPTH14': 0.497659814, 'FSRPTH14': 0.805734937}, '55057': {'FFRPTH14': 0.303087706, 'FSRPTH14': 0.795605228}, '55059': {'FFRPTH14': 0.654496989, 'FSRPTH14': 0.737796606}, '55061': {'FFRPTH14': 0.391312855, 'FSRPTH14': 1.173938564}, '55063': {'FFRPTH14': 0.677902907, 'FSRPTH14': 0.88127378}, '55065': {'FFRPTH14': 0.296683083, 'FSRPTH14': 0.949385866}, '55067': {'FFRPTH14': 0.566718187, 'FSRPTH14': 1.3910355490000001}, '55069': {'FFRPTH14': 0.526445092, 'FSRPTH14': 1.052890184}, '55071': {'FFRPTH14': 0.42415169700000005, 'FSRPTH14': 0.873253493}, '55073': {'FFRPTH14': 0.574458683, 'FSRPTH14': 0.7880394759999999}, '55075': {'FFRPTH14': 0.629570439, 'FSRPTH14': 1.477069107}, '55077': {'FFRPTH14': 0.398671096, 'FSRPTH14': 0.9302325579999999}, '55078': {'FFRPTH14': 0.221141088, 'FSRPTH14': 0.0}, '55079': {'FFRPTH14': 0.6430323520000001, 'FSRPTH14': 0.6587160679999999}, '55081': {'FFRPTH14': 0.484805747, 'FSRPTH14': 0.7051719959999999}, '55083': {'FFRPTH14': 0.42761311700000004, 'FSRPTH14': 1.256113531}, '55085': {'FFRPTH14': 0.759216039, 'FSRPTH14': 1.827742316}, '55087': {'FFRPTH14': 0.714262167, 'FSRPTH14': 0.939529466}, '55089': {'FFRPTH14': 0.60592203, 'FSRPTH14': 0.8345718529999999}, '55091': {'FFRPTH14': 0.6816632579999999, 'FSRPTH14': 1.4996591680000002}, '55093': {'FFRPTH14': 0.537135602, 'FSRPTH14': 0.805703403}, '55095': {'FFRPTH14': 0.575546193, 'FSRPTH14': 0.897852062}, '55097': {'FFRPTH14': 0.638460884, 'FSRPTH14': 0.950597316}, '55099': {'FFRPTH14': 0.365630713, 'FSRPTH14': 1.535648995}, '55101': {'FFRPTH14': 0.538011816, 'FSRPTH14': 0.660985945}, '55103': {'FFRPTH14': 0.452949836, 'FSRPTH14': 0.736043483}, '55105': {'FFRPTH14': 0.6452093210000001, 'FSRPTH14': 0.7630841009999999}, '55107': {'FFRPTH14': 0.418614386, 'FSRPTH14': 0.837228773}, '55109': {'FFRPTH14': 0.564782904, 'FSRPTH14': 0.8068327209999999}, '55111': {'FFRPTH14': 0.85201723, 'FSRPTH14': 1.309582038}, '55113': {'FFRPTH14': 0.5475451720000001, 'FSRPTH14': 3.1027559769999997}, '55115': {'FFRPTH14': 0.384809639, 'FSRPTH14': 1.106327714}, '55117': {'FFRPTH14': 0.589816983, 'FSRPTH14': 0.867377917}, '55119': {'FFRPTH14': 0.29211295, 'FSRPTH14': 0.827653359}, '55121': {'FFRPTH14': 0.47443152899999996, 'FSRPTH14': 0.84719916}, '55123': {'FFRPTH14': 0.362294974, 'FSRPTH14': 0.889269482}, '55125': {'FFRPTH14': 0.747733433, 'FSRPTH14': 4.065800542}, '55127': {'FFRPTH14': 0.676152115, 'FSRPTH14': 1.0818433840000001}, '55129': {'FFRPTH14': 0.318593093, 'FSRPTH14': 2.166433032}, '55131': {'FFRPTH14': 0.562847558, 'FSRPTH14': 0.5778568270000001}, '55133': {'FFRPTH14': 0.652969493, 'FSRPTH14': 0.756735962}, '55135': {'FFRPTH14': 0.7106365, 'FSRPTH14': 0.941113202}, '55137': {'FFRPTH14': 0.330879312, 'FSRPTH14': 1.323517247}, '55139': {'FFRPTH14': 0.5427376389999999, 'FSRPTH14': 0.7256166270000001}, '55141': {'FFRPTH14': 0.557004673, 'FSRPTH14': 0.8966416690000001}, '56001': {'FFRPTH14': 0.7140779140000001, 'FSRPTH14': 0.925656555}, '56003': {'FFRPTH14': 0.419111484, 'FSRPTH14': 0.586756077}, '56005': {'FFRPTH14': 0.68294702, 'FSRPTH14': 0.641556291}, '56007': {'FFRPTH14': 0.44152895200000003, 'FSRPTH14': 1.6399646780000001}, '56009': {'FFRPTH14': 0.56749663, 'FSRPTH14': 1.20593034}, '56011': {'FFRPTH14': 0.82781457, 'FSRPTH14': 1.793598234}, '56013': {'FFRPTH14': 0.49136427299999996, 'FSRPTH14': 0.9581603320000001}, '56015': {'FFRPTH14': 0.813970697, 'FSRPTH14': 0.8879680329999999}, '56017': {'FFRPTH14': 1.03820598, 'FSRPTH14': 1.6611295680000002}, '56019': {'FFRPTH14': 0.8165169720000001, 'FSRPTH14': 0.9331622540000001}, '56021': {'FFRPTH14': 0.674350808, 'FSRPTH14': 0.549855274}, '56023': {'FFRPTH14': 0.6463079660000001, 'FSRPTH14': 1.1848979370000001}, '56025': {'FFRPTH14': 0.649318828, 'FSRPTH14': 0.784083113}, '56027': {'FFRPTH14': 1.218026797, 'FSRPTH14': 1.218026797}, '56029': {'FFRPTH14': 0.620925179, 'FSRPTH14': 1.37983373}, '56031': {'FFRPTH14': 0.568246392, 'FSRPTH14': 1.4774406180000001}, '56033': {'FFRPTH14': 0.732551945, 'FSRPTH14': 0.99893447}, '56035': {'FFRPTH14': 0.298299692, 'FSRPTH14': 1.193198767}, '56037': {'FFRPTH14': 0.733170407, 'FSRPTH14': 0.710953122}, '56039': {'FFRPTH14': 1.003052769, 'FSRPTH14': 2.398604448}, '56041': {'FFRPTH14': 0.76540375, 'FSRPTH14': 0.76540375}, '56043': {'FFRPTH14': 0.7209805340000001, 'FSRPTH14': 1.321797645}, '56045': {'FFRPTH14': 0.416608804, 'FSRPTH14': 1.527565616}}
try:
retval = data[county]
except:
retval = None
return retval |
class Animal:
def __init__(self, name, owner, noiseMade, furColour):
self.name = name
self.owner = owner
self.noiseMade = noiseMade
self.furColour = furColour
def changeOwner(self, newOwnerName):
self.owner = newOwnerName
def changeName(self, newName):
self.name = newName
def makeNoise(self):
print(self.name, "says", self.noiseMade)
class Cat(Animal):
def __init__(self, name, owner, furColour, favFood):
Animal.__init__(self, name, owner, "meow", furColour)
self.favFood = favFood
def eatFavouriteFood(self):
print(self.name, "eats", self.favFood)
def changeFavouriteFood(self, newFavFood):
self.favFood = newFavFood
def scratchOwner(self):
print(self.name, "scratches", self.owner)
def purr(self):
print(self.name, "says purrrr")
class Dog(Animal):
def __init__(self, name, owner, furColour, favChewToy):
Animal.__init__(self, name, owner, "woof", furColour)
self.favChewToy = favChewToy
def playWithFavouriteToy(self):
print(self.name, "plays with", self.favChewToy)
def wagTail(self):
print(self.name, "wags their tail")
dog = Dog("Bob", "James", "Red", "Bone")
dog.makeNoise()
| class Animal:
def __init__(self, name, owner, noiseMade, furColour):
self.name = name
self.owner = owner
self.noiseMade = noiseMade
self.furColour = furColour
def change_owner(self, newOwnerName):
self.owner = newOwnerName
def change_name(self, newName):
self.name = newName
def make_noise(self):
print(self.name, 'says', self.noiseMade)
class Cat(Animal):
def __init__(self, name, owner, furColour, favFood):
Animal.__init__(self, name, owner, 'meow', furColour)
self.favFood = favFood
def eat_favourite_food(self):
print(self.name, 'eats', self.favFood)
def change_favourite_food(self, newFavFood):
self.favFood = newFavFood
def scratch_owner(self):
print(self.name, 'scratches', self.owner)
def purr(self):
print(self.name, 'says purrrr')
class Dog(Animal):
def __init__(self, name, owner, furColour, favChewToy):
Animal.__init__(self, name, owner, 'woof', furColour)
self.favChewToy = favChewToy
def play_with_favourite_toy(self):
print(self.name, 'plays with', self.favChewToy)
def wag_tail(self):
print(self.name, 'wags their tail')
dog = dog('Bob', 'James', 'Red', 'Bone')
dog.makeNoise() |
# -*- coding: utf-8 -*-
class StudentCard:
def __init__(self, name, id, major, faculty, course):
self.name = name
self.id = id
self.major = major
self.faculty = faculty
self.course = course
def print_StudentCard(self):
dic = {
'ID': self.id,
'Name': self.name,
'Major': self.major,
'Falculty': self.faculty,
'Course': self.course
}
return dic
| class Studentcard:
def __init__(self, name, id, major, faculty, course):
self.name = name
self.id = id
self.major = major
self.faculty = faculty
self.course = course
def print__student_card(self):
dic = {'ID': self.id, 'Name': self.name, 'Major': self.major, 'Falculty': self.faculty, 'Course': self.course}
return dic |
INSTALLED_APPS = add_to_tuple(INSTALLED_APPS,
'filer',
# cms plugins
'cmsplugin_filer_file',
'cmsplugin_filer_folder',
'cmsplugin_filer_image',
)
## django_filer
#FILER_0_8_COMPATIBILITY_MODE = True
| installed_apps = add_to_tuple(INSTALLED_APPS, 'filer', 'cmsplugin_filer_file', 'cmsplugin_filer_folder', 'cmsplugin_filer_image') |
territories = {'GAU', 'RHA', 'SAM', 'VIN', 'ILL', 'LUS', 'ARM', 'GAL', 'DAM', 'ARA', 'CIR', 'SAH', 'PHA', 'MAR', 'SAG',
'TAR', 'MAS', 'ETU', 'ROM', 'NEA', 'APU', 'RAV', 'VEN', 'DAL', 'EPI', 'ATH', 'SPA', 'MAC', 'BYZ', 'DAC',
'CHE', 'SIP', 'BIT', 'MIL', 'ISA', 'CAP', 'ANT', 'SID', 'TYE', 'JER', 'SII', 'PET', 'NAB', 'MAU', 'CAR',
'THA', 'NUM', 'LEP', 'CYR', 'ALE', 'MEM', 'BAY', 'THE', 'COR', 'SAD', 'SIC', 'CRE', 'CYP', 'IBE', 'BER',
'LIG', 'TYN', 'PUN', 'ADR', 'ION', 'AUS', 'GOT', 'GOS', 'LIB', 'MES', 'AEG', 'BLA', 'MIN', 'EGY',
'CIL', 'SYR', 'GOP', 'REE', 'BAL'}
land_locked = {'GAU', 'RHA', 'SAM', 'VIN', 'ILL', 'LUS', 'ARM', 'GAL', 'DAM', 'ARA', 'CIR', 'SAH', 'PHA', 'MAR'}
coasts = {'SAG', 'TAR', 'MAS', 'ETU', 'ROM', 'NEA', 'APU', 'RAV', 'VEN', 'DAL', 'EPI', 'ATH', 'SPA', 'MAC', 'BYZ',
'DAC', 'CHE', 'SIP', 'BIT', 'MIL', 'ISA', 'CAP', 'ANT', 'SID', 'TYE', 'JER', 'SII', 'PET', 'NAB', 'MAU',
'CAR', 'THA', 'NUM', 'LEP', 'CYR', 'ALE', 'MEM', 'BAY', 'THE', 'COR', 'SAD', 'SIC', 'CRE', 'CYP'}
seas = {'IBE', 'BER', 'LIG', 'TYN', 'PUN', 'ADR', 'ION', 'AUS', 'GOT', 'GOS', 'LIB', 'MES', 'AEG', 'BLA', 'MIN', 'EGY',
'CIL', 'SYR', 'GOP', 'REE', 'BAL'}
supply_center_territories = {'VIN', 'DAM', 'CIR', 'SAG', 'MAS', 'ROM', 'NEA', 'RAV', 'DAL', 'ATH', 'SPA', 'MAC', 'BYZ',
'CHE', 'SIP', 'MIL', 'ANT', 'SID', 'TYE', 'JER', 'PET', 'CAR', 'THA', 'NUM', 'LEP', 'CYR',
'ALE', 'MEM', 'THE', 'SAD', 'SIC', 'CRE', 'CYP', 'BAL'}
land_routes = {'GAU': ['RHA', 'MAS', 'TAR', 'LUS'],
'RHA': ['SAM', 'VIN', 'VEN', 'ETU', 'MAS', 'GAU'],
'SAM': ['CHE', 'DAC', 'ILL', 'VIN', 'RHA'],
'VIN': ['SAM', 'ILL', 'DAL', 'VEN', 'RHA'],
'ILL': ['SAM', 'DAC', 'MAC', 'EPI', 'DAL', 'VIN'],
'LUS': ['GAU', 'TAR', 'SAG'],
'ARM': ['CHE', 'DAM', 'CAP', 'SIP'],
'GAL': ['BIT', 'SIP', 'CAP', 'ISA', 'MIL', 'BYZ'],
'DAM': ['ARM', 'ARA', 'SID', 'ANT', 'CAP'],
'ARA': ['DAM', 'NAB', 'JER', 'TYE', 'SID'],
'CIR': ['CAR', 'THA', 'NUM', 'PHA', 'SAH', 'MAU'],
'SAH': ['CIR', 'PHA', 'BAY', 'MAU'],
'PHA': ['NUM', 'LEP', 'MAR', 'BAY', 'SAH', 'CIR'],
'MAR': ['CYR', 'MEM', 'BAY', 'PHA', 'LEP'],
'SAG': ['LUS'],
'TAR': ['GAU', 'LUS'],
'MAS': ['GAU', 'RHA'],
'ETU': ['RHA', 'VEN', 'RAV'],
'ROM': ['RAV', 'APU'],
'NEA': [],
'APU': ['ROM'],
'RAV': ['ROM', 'ETU'],
'VEN': ['RHA', 'VIN', 'ETU'],
'DAL': ['VIN', 'ILL'],
'EPI': ['ILL', 'MAC'],
'ATH': [],
'SPA': [],
'MAC': ['ILL', 'DAC', 'EPI'],
'BYZ': ['GAL'],
'DAC': ['SAM', 'ILL', 'MAC'],
'CHE': ['SAM', 'ARM'],
'SIP': ['ARM', 'CAP', 'GAL'],
'BIT': ['GAL'],
'MIL': ['GAL'],
'ISA': ['GAL'],
'CAP': ['SIP', 'ARM', 'DAM', 'GAL'],
'ANT': ['DAM'],
'SID': ['DAM', 'ARA'],
'TYE': ['ARA'],
'JER': ['ARA', 'NAB', 'PET'],
'SII': [],
'PET': ['JER'],
'NAB': ['ARA', 'JER'],
'MAU': ['CIR', 'SAH'],
'CAR': ['CIR'],
'THA': ['CIR'],
'NUM': ['PHA', 'CIR'],
'LEP': ['MAR', 'PHA'],
'CYR': ['MEM', 'MAR'],
'ALE': [],
'MEM': ['MAR', 'CYR'],
'BAY': ['MAR', 'SAH', 'PHA'],
'THE': [],
'COR': [],
'SAD': [],
'SIC': [],
'CRE': [],
'CYP': [],
'BAL': []}
coast_routes = {'SAG': ['TAR', 'MAU'],
'TAR': ['MAS', 'SAG'],
'MAS': ['ETU', 'TAR'],
'ETU': ['ROM', 'MAS'],
'ROM': ['NEA', 'ETU'],
'NEA': ['APU', 'SIC', 'ROM'],
'APU': ['RAV', 'NEA'],
'RAV': ['VEN', 'APU'],
'VEN': ['DAL', 'RAV'],
'DAL': ['EPI', 'VEN'],
'EPI': ['ATH', 'DAL'],
'ATH': ['MAC', 'SPA', 'EPI'],
'SPA': ['ATH'],
'MAC': ['BYZ', 'ATH'],
'BYZ': ['DAC', 'BIT', 'MIL', 'MAC'],
'DAC': ['CHE', 'BYZ'],
'CHE': ['SIP', 'DAC'],
'SIP': ['BIT', 'CHE'],
'BIT': ['BYZ', 'SIP'],
'MIL': ['ISA', 'BYZ'],
'ISA': ['CAP', 'MIL'],
'CAP': ['ANT', 'ISA'],
'ANT': ['SID', 'CAP'],
'SID': ['TYE', 'ANT'],
'TYE': ['JER', 'SID'],
'JER': ['SII', 'TYE'],
'SII': ['THE', 'ALE', 'JER', 'PET'],
'PET': ['SII', 'NAB'],
'NAB': ['PET'],
'MAU': ['CAR', 'SAG'],
'CAR': ['THA', 'MAU'],
'THA': ['NUM', 'CAR'],
'NUM': ['LEP', 'THA'],
'LEP': ['CYR', 'NUM'],
'CYR': ['ALE', 'LEP'],
'ALE': ['SII', 'THE', 'MEM', 'CYR'],
'MEM': ['BAY', 'THE', 'ALE'],
'BAY': ['THE', 'MEM'],
'THE': ['SII', 'BAY', 'MEM', "ALE"],
'COR': ['SAD'],
'SAD': ['COR'],
'SIC': ['NEA'],
'CRE': [],
'CYP': [],
'BAL': []}
sea_routes = {'IBE': ['SAG', 'BER', 'MAU'],
'BER': ['LIG', 'SAD', 'PUN', 'CAR', 'MAU', 'IBE', 'SAG', 'BAL'],
'LIG': ['MAS', 'ETU', 'ROM', 'COR', 'TYN', 'SAD', 'BER', 'BAL', 'TAR'],
'TYN': ['ROM', 'NEA', 'AUS', 'SIC', 'PUN', 'SAD', 'LIG', 'COR'],
'PUN': ['SAD', 'TYN', 'SIC', 'AUS', 'GOT', 'THA', 'CAR', 'BER'],
'ADR': ['VEN', 'DAL', 'EPI', 'ION', 'APU', 'RAV'],
'ION': ['ADR', 'EPI', 'ATH', 'SPA', 'MES', 'AUS', 'NEA', 'APU'],
'AUS': ['NEA', 'ION', 'MES', 'LIB', 'GOT', 'PUN', 'SIC', 'TYN'],
'GOT': ['AUS', 'MES', 'LIB', 'GOS', 'LEP', 'NUM', 'THA', 'PUN'],
'GOS': ['LIB', 'CYR', 'LEP', 'GOT'],
'LIB': ['MES', 'CRE', 'EGY', 'ALE', 'CYR', 'GOS', 'GOT', 'AUS'],
'MES': ['ION', 'SPA', 'AEG', 'CRE', 'LIB', 'GOT', 'AUS'],
'AEG': ['MAC', 'BYZ', 'MIL', 'MIN', 'CRE', 'MES', 'SPA', 'ATH'],
'BLA': ['CHE', 'SIP', 'BIT', 'BYZ', 'DAC'],
'MIN': ['MIL', 'CIL', 'EGY', 'CRE', 'AEG'],
'EGY': ['MIN', 'CIL', 'CYP', 'SYR', 'GOP', 'ALE', 'LIB', 'CRE'],
'CIL': ['ISA', 'CAP', 'ANT', 'SID', 'SYR', 'CYP', 'EGY', 'MIN', 'MIL'],
'SYR': ['CIL', 'SID', 'TYE', 'JER', 'GOP', 'EGY', 'CYP'],
'GOP': ['SYR', 'JER', 'SII', 'THE', 'ALE', 'EGY'],
'REE': ['SII', 'PET', 'NAB', 'THE'],
'BAL': ['TAR', 'LIG', 'BER', 'SAG'],
'SAG': ['BAL', 'BER', 'IBE'],
'TAR': ['LIG', 'BAL'],
'MAS': ['LIG'],
'ETU': ['LIG'],
'ROM': ['TYN', 'LIG'],
'NEA': ['ION', 'AUS', 'TYN'],
'APU': ['ADR', 'ION'],
'RAV': ['ADR'],
'VEN': ['ADR'],
'DAL': ['ADR'],
'EPI': ['ION', 'ADR'],
'ATH': ['AEG', 'ION'],
'SPA': ['AEG', 'MES', 'ION'],
'MAC': ['AEG'],
'BYZ': ['BLA', 'AEG'],
'DAC': ['BLA'],
'CHE': ['BLA'],
'SIP': ['BLA'],
'BIT': ['BLA'],
'MIL': ['CIL', 'MIN', 'AEG'],
'ISA': ['CIL'],
'CAP': ['CIL'],
'ANT': ['CIL'],
'SID': ['SYR', 'CIL'],
'TYE': ['SYR'],
'JER': ['GOP', 'SYR'],
'SII': ['GOP', 'REE'],
'PET': ['REE'],
'NAB': ['REE'],
'MAU': ['IBE', 'BER'],
'CAR': ['PUN', 'BER'],
'THA': ['GOT', 'PUN'],
'NUM': ['GOT'],
'LEP': ['GOT', 'GOS'],
'CYR': ['LIB', 'GOS'],
'ALE': ['EGY', 'GOP', 'LIB'],
'MEM': [],
'BAY': [],
'THE': ['GOP', 'REE'],
'COR': ['LIG', 'TYN'],
'SAD': ['LIG', 'TYN', 'PUN', 'BER'],
'SIC': ['TYN', 'AUS', 'PUN'],
'CRE': ['AEG', 'MIN', 'EGY', 'LIB', 'MES'],
'CYP': ['CIL', 'SYR', 'EGY']}
starting_supply_centers = {'red': {'NEA', 'ROM', 'RAV'},
'blue': {'THA', 'CIR', 'CAR'},
'green': {'SPA', 'ATH', 'MAC'},
'black': {'SID', 'ANT', 'DAM'},
'yellow': {'ALE', 'MEM', 'THE'}}
starting_units = {'red': {('F', 'NEA'), ('A', 'ROM'), ('A', 'RAV')}, # rome
'blue': {('F', 'THA'), ('A', 'CIR'), ('A', 'CAR')}, # carthage
'green': {('F', 'SPA'), ('A', 'ATH'), ('A', 'MAC')}, # greece
'black': {('F', 'SID'), ('A', 'ANT'), ('A', 'DAM')}, # persia
'yellow': {('F', 'ALE'), ('A', 'MEM'), ('A', 'THE')}} # egypt
territories2 = {'PAR', 'BUR', 'RUH', 'SIL', 'WAR', 'MOS', 'UKR', 'MUN', 'BOH', 'GAL', 'TYR', 'VIE', 'BUD', 'SER', 'CLY',
'EDI', 'YOR', 'LON', 'WAL', 'LVP', 'STP', 'NOR', 'SWE', 'FIN', 'LVN', 'PRU', 'BER', 'KIE', 'DEN', 'HOL',
'BEL', 'PIC', 'BRE', 'GAS', 'SPA', 'POR', 'MAR', 'PIE', 'TUS', 'ROM', 'NEA', 'APU', 'VEN', 'TRI', 'ALB',
'GRE', 'BUL', 'CON', 'SMY', 'SYR', 'ANK', 'ARM', 'SEV', 'RUM', 'NAF', 'TUN', 'NAO', 'NRG', 'BAR', 'MID',
'IRI', 'ENG', 'NTH', 'HEL', 'SKA', 'BAL', 'BOT', 'GOL', 'WES', 'TYN', 'ION', 'ADR', 'AEG', 'BLA', 'EAS'}
land_locked2 = {'PAR', 'BUR', 'RUH', 'SIL', 'WAR', 'MOS', 'UKR', 'MUN', 'BOH', 'GAL', 'TYR', 'VIE', 'BUD', 'SER'}
coasts2 = {'CLY', 'EDI', 'YOR', 'LON', 'WAL', 'LVP', 'STP', 'NOR', 'SWE', 'FIN', 'LVN', 'PRU', 'BER', 'KIE', 'DEN',
'HOL', 'BEL', 'PIC', 'BRE', 'GAS', 'SPA', 'POR', 'MAR', 'PIE', 'TUS', 'ROM', 'NEA', 'APU', 'VEN', 'TRI',
'ALB', 'GRE', 'BUL', 'CON', 'SMY', 'SYR', 'ANK', 'ARM', 'SEV', 'RUM', 'NAF', 'TUN'}
seas2 = {'NAO', 'NRG', 'BAR', 'MID', 'IRI', 'ENG', 'NTH', 'HEL', 'SKA', 'BAL', 'BOT', 'GOL', 'WES', 'TYN', 'ION', 'ADR',
'AEG', 'BLA', 'EAS'}
supply_center_territories2 = {'PAR', 'WAR', 'MOS', 'MUN', 'VIE', 'BUD', 'SER', 'EDI', 'LON', 'LVP', 'STP', 'NOR', 'SWE',
'BER', 'KIE', 'DEN', 'HOL', 'BEL', 'BRE', 'SPA', 'POR', 'MAR', 'ROM', 'NEA', 'VEN', 'TRI',
'GRE', 'BUL', 'CON', 'SMY', 'ANK', 'RUM', 'TUN'}
land_routes2 = {'PAR': ['PIC', 'BUR', 'GAS', 'BRE'],
'BUR': ['BEL', 'RUH', 'MUN', 'MAR', 'GAS', 'PAR', 'PIC'],
'RUH': ['KIE', 'MUN', 'BUR', 'BEL', 'HOL'],
'SIL': ['BER', 'PRU', 'WAR', 'GAL', 'BOH', 'MUN'],
'WAR': ['PRU', 'LVN', 'MOS', 'UKR', 'GAL', 'SIL'],
'MOS': ['STP', 'SEV', 'UKR', 'WAR', 'LVN'],
'UKR': ['MOS', 'SEV', 'RUM', 'GAL', 'WAR'],
'MUN': ['KIE', 'SIL', 'BOH', 'TYR', 'BUR', 'RUH'],
'BOH': ['SIL', 'GAL', 'VIE', 'TYR', 'MUN'],
'GAL': ['WAR', 'UKR', 'RUM', 'BUD', 'VIE', 'BOH', 'SIL'],
'TYR': ['MUN', 'BOH', 'VIE', 'TRI', 'VEN', 'PIE'],
'VIE': ['BOH', 'GAL', 'BUD', 'TRI', 'TRY'],
'BUD': ['GAL', 'RUM', 'SER', 'TRI', 'VIE'],
'SER': ['BUD', 'RUM', 'BUL', 'GRE', 'ALB', 'TRI'],
'CLY': [],
'EDI': ['LVP'],
'YOR': ['WAL', 'LVP'],
'LON': [],
'WAL': ['YOR'],
'LVP': ['EDI', 'YOR'],
'STP': ['MOS'],
'NOR': ['FIN'],
'SWE': [],
'FIN': ['NOR'],
'LVN': ['MOS', 'WAR'],
'PRU': ['WAR', 'SIL'],
'BER': ['SIL', 'MUN'],
'KIE': ['MUN', 'RUH'],
'DEN': [],
'HOL': ['RUH'],
'BEL': ['RUH', 'BUR'],
'PIC': ['BUR', 'PAR'],
'BRE': ['PAR'],
'GAS': ['PAR', 'BUR', 'MAR'],
'SPA': [],
'POR': [],
'MAR': ['BUR', 'GAS'],
'PIE': ['TYR', 'VEN'],
'TUS': ['VEN'],
'ROM': ['VEN', 'APU'],
'NEA': [],
'APU': ['ROM'],
'VEN': ['TYR', 'TUS', 'ROM', 'PIE'],
'TRI': ['VIE', 'BUD', 'SER', 'TYR'],
'ALB': ['SER'],
'GRE': ['SER'],
'BUL': ['SER'],
'CON': [],
'SMY': ['ANK', 'ARM'],
'SYR': ['ARM'],
'ANK': ['SMY'],
'ARM': ['SYR', 'SMY'],
'SEV': ['MOS', 'UKR'],
'RUM': ['UKR', 'SER', 'BUD', 'GAL'],
'NAF': [],
'TUN': []}
coast_routes2 = {'CLY': ['EDI', 'LVP'],
'EDI': ['YOR', 'CLY'],
'YOR': ['EDI', 'YOR'],
'LON': ['YOR', 'WAL'],
'WAL': ['LVP', 'LON'],
'LVP': ['CLY', 'WAL'],
'STP': ['LVN', 'FIN', 'NOR'], # HAS 2 COASTS
'NOR': ['STP', 'SWE'], # CONNECTS TO NORTH COAST OF ST PETERSBURG
'SWE': ['FIN', 'DEN', 'NOR'],
'FIN': ['STP', 'SWE'], # CONNECTS TO SOUTH COAST OF ST PETERSBURG
'LVN': ['STP', 'PRU'], # CONNECTS TO SOUTH COAST OF ST PETERSBURG
'PRU': ['LVN', 'BER'],
'BER': ['PRU', 'KIE'],
'KIE': ['DEN', 'BER', 'HOL'],
'DEN': ['SWE', 'KIE'],
'HOL': ['KIE', 'BEL'],
'BEL': ['HOL', 'PIC'],
'PIC': ['BEL', 'BRE'],
'BRE': ['PIC', 'GAS'],
'GAS': ['BRE', 'SPA'], # CONNECTS TO NORTH COAST OF SPAIN
'SPA': ['GAS', 'MAR', 'POR'], # HAS 2 COASTS
'POR': ['SPA'], # CONNECTS TO BOTH COASTS OF SPAIN
'MAR': ['PIE', 'SPA'], # CONNECTS TO SOUTH COAST OF SPAIN
'PIE': ['TUS', 'MAR'],
'TUS': ['POM', 'PIE'],
'ROM': ['NEA', 'TUS'],
'NEA': ['APU', 'ROM'],
'APU': ['NEA', 'VEN'],
'VEN': ['TRI', 'APU'],
'TRI': ['ALB', 'VEN'],
'ALB': ['GRE', 'TRI'],
'GRE': ['BUL', 'ALB'], # CONNECTS TO SOUTH COAST OF BULGARIA
'BUL': ['RUM', 'CON', 'GRE'], # HAS 2 COASTS
'CON': ['ANK', 'SMY', 'BUL'], # CONNECTS TO BOTH COASTS OF BULGARIA
'SMY': ['CON', 'SYR'],
'SYR': ['SMY'],
'ANK': ['ARM', 'CON'],
'ARM': ['SEV', 'ANK'],
'SEV': ['ARM', 'RUM'],
'RUM': ['SEV', 'BUL'], # CONNECTS TO NORTH COAST OF BULGARIA
'NAF': ['TUN'],
'TUN': ['NAF']}
sea_routes2 = {'NAO': ['NRG', 'CLY', 'LVP', 'IRI', 'MID'],
'NRG': ['BAR', 'NOR', 'NTH', 'EDI', 'NAO'],
'BAR': ['STP', 'NOR', 'NRG'], # CONNECTS TO NORTH COAST OF ST PETERSBURG
'MID': ['NAO', 'IRI', 'ENG', 'BRE', 'GAS', 'SPA', 'POR', 'WES', 'NAF'],
# CONNECTS TO BOTH COASTS OF SPAIN
'IRI': ['NAO', 'LVP', 'WAL', 'ENG', 'MID'],
'ENG': ['WAL', 'LON', 'NTH', 'BEL', 'PIC', 'BRE', 'MID'],
'NTH': ['NRG', 'NOR', 'SKA', 'DEN', 'HEL', 'HOL', 'BEL', 'ENG', 'LON', 'YOR', 'EDI'],
'HEL': ['NTH', 'DEN', 'KIE', 'HOL'],
'SKA': ['NOR', 'SWE', 'DEN', 'NTH'],
'BAL': ['SWE', 'BOT', 'LVN', 'PRU', 'BER', 'KIE', 'DEN'], # CONNNCTS TO SOUTH COAST OF ST PETERSBURG
'BOT': ['FIN', 'STP', 'LVN', 'BAL', 'SWE'],
'GOL': ['MAR', 'PIE', 'TUS', 'TYN', 'WES', 'SPA'], # CONNECTS TO SOUTH COAST OF SPAIN
'WES': ['SPA', 'GOL', 'TYN', 'TUN', 'NAF', 'MID'], # CONNECTS TO SOUTH COAST OF SPAIN
'TYN': ['GOL', 'TUS', 'ROM', 'NEA', 'ION', 'TUN', 'WES'],
'ION': ['NEA', 'APU', 'ADR', 'ALB', 'GRE', 'AEG', 'EAS', 'TUN', 'TYN'],
'ADR': ['TRI', 'ALB', 'ION', 'APU', 'VEN'],
'AEG': ['BUL', 'CON', 'SMY', 'EAS', 'ION', 'GRE'], # CONNECTS TO SOUTH COAST OF BULGARIA
'BLA': ['SEV', 'ARM', 'ANK', 'CON', 'BUL', 'RUM'], # CONNECTS TO NORTH COAST OF BULGARIA
'EAS': ['SMY', 'SYR', 'ION', 'AEG'],
'CLY': ['NAO', 'IRI'],
'EDI': ['NOR', 'NTH'],
'YOR': ['NTH'],
'LON': ['NTH', 'ENG'],
'WAL': ['ENG', 'IRI'],
'LVP': ['IRI', 'NAO'],
'STP': ['BAR', 'BOT'], # HAS 2 COASTS
'NOR': ['NRG', 'BAR', 'SKA', 'NTH'],
'SWE': ['BOT', 'BAL', 'SKA'],
'FIN': ['BOT'],
'LVN': ['BOT', 'BAL'],
'PRU': ['BAL'],
'BER': ['BAL'],
'KIE': ['BAL', 'HEL'],
'DEN': ['SKA', 'BAL', 'HEL', 'NTH'],
'HOL': ['HEL', 'NTH'],
'BEL': ['NTH', 'ENG'],
'PIC': ['ENG'],
'BRE': ['ENG', 'MID'],
'GAS': ['MID'],
'SPA': ['MID', 'GOL', 'WES'], # HAS 2 COASTS
'POR': ['MID'],
'MAR': ['GOL'],
'PIE': ['GOL'],
'TUS': ['TYN', 'GOL'],
'ROM': ['TYN'],
'NEA': ['ION', 'TYN'],
'APU': ['ADR', 'ION'],
'VEN': ['ADR'],
'TRI': ['ADR'],
'ALB': ['ION', 'ADR'],
'GRE': ['AEG', 'ION'],
'BUL': ['BLA', 'AEG'], # HAS 2 COASTS
'CON': ['BLA', 'AEG'],
'SMY': ['EAS', 'AEG'],
'SYR': ['EAS'],
'ANK': ['BLA'],
'ARM': ['BLA'],
'SEV': ['BLA'],
'RUM': ['BLA'],
'NAF': ['WES', 'MID'],
'TUN': ['WES', 'TYN', 'ION']}
starting_supply_centers2 = {'red': {'TRI', 'VIE', 'BUD'}, # austria
'pink': {'LON', 'EDI', 'LVP'}, # england
'blue': {'BRE', 'PAR', 'MAR'}, # france
'brown': {'KIE', 'BER', 'MUN'}, # germany
'green': {'NEA', 'ROM', 'VEN'}, # italy
'black': {'SEV', 'STP', 'MOS', 'WAR'}, # russia
'yellow': {'ANK', 'CON', 'SMY'}} # turkey
units_by_color2 = {'red': {('F', 'TRI'), ('A', 'VIE'), ('A', 'BUD')}, # austria
'pink': {('F', 'LON'), ('A', 'EDI'), ('A', 'LVP')}, # england
'blue': {('F', 'BRE'), ('A', 'PAR'), ('A', 'MAR')}, # france
'brown': {('F', 'KIE'), ('A', 'BER'), ('A', 'MUN')}, # germany
'green': {('F', 'NEA'), ('A', 'ROM'), ('A', 'VEN')}, # italy
'black': {('F', 'SEV'), ('F', 'STP'), ('A', 'MOS'), ('A', 'WAR')}, # russia
'yellow': {('F', 'ANK'), ('A', 'CON'), ('A', 'SMY')}} # turkey
# TODO: need special code for bulgaria, spain, and st. petersburg since they have 2 coasts each
# think of structure for game state to be generic to board variant
| territories = {'GAU', 'RHA', 'SAM', 'VIN', 'ILL', 'LUS', 'ARM', 'GAL', 'DAM', 'ARA', 'CIR', 'SAH', 'PHA', 'MAR', 'SAG', 'TAR', 'MAS', 'ETU', 'ROM', 'NEA', 'APU', 'RAV', 'VEN', 'DAL', 'EPI', 'ATH', 'SPA', 'MAC', 'BYZ', 'DAC', 'CHE', 'SIP', 'BIT', 'MIL', 'ISA', 'CAP', 'ANT', 'SID', 'TYE', 'JER', 'SII', 'PET', 'NAB', 'MAU', 'CAR', 'THA', 'NUM', 'LEP', 'CYR', 'ALE', 'MEM', 'BAY', 'THE', 'COR', 'SAD', 'SIC', 'CRE', 'CYP', 'IBE', 'BER', 'LIG', 'TYN', 'PUN', 'ADR', 'ION', 'AUS', 'GOT', 'GOS', 'LIB', 'MES', 'AEG', 'BLA', 'MIN', 'EGY', 'CIL', 'SYR', 'GOP', 'REE', 'BAL'}
land_locked = {'GAU', 'RHA', 'SAM', 'VIN', 'ILL', 'LUS', 'ARM', 'GAL', 'DAM', 'ARA', 'CIR', 'SAH', 'PHA', 'MAR'}
coasts = {'SAG', 'TAR', 'MAS', 'ETU', 'ROM', 'NEA', 'APU', 'RAV', 'VEN', 'DAL', 'EPI', 'ATH', 'SPA', 'MAC', 'BYZ', 'DAC', 'CHE', 'SIP', 'BIT', 'MIL', 'ISA', 'CAP', 'ANT', 'SID', 'TYE', 'JER', 'SII', 'PET', 'NAB', 'MAU', 'CAR', 'THA', 'NUM', 'LEP', 'CYR', 'ALE', 'MEM', 'BAY', 'THE', 'COR', 'SAD', 'SIC', 'CRE', 'CYP'}
seas = {'IBE', 'BER', 'LIG', 'TYN', 'PUN', 'ADR', 'ION', 'AUS', 'GOT', 'GOS', 'LIB', 'MES', 'AEG', 'BLA', 'MIN', 'EGY', 'CIL', 'SYR', 'GOP', 'REE', 'BAL'}
supply_center_territories = {'VIN', 'DAM', 'CIR', 'SAG', 'MAS', 'ROM', 'NEA', 'RAV', 'DAL', 'ATH', 'SPA', 'MAC', 'BYZ', 'CHE', 'SIP', 'MIL', 'ANT', 'SID', 'TYE', 'JER', 'PET', 'CAR', 'THA', 'NUM', 'LEP', 'CYR', 'ALE', 'MEM', 'THE', 'SAD', 'SIC', 'CRE', 'CYP', 'BAL'}
land_routes = {'GAU': ['RHA', 'MAS', 'TAR', 'LUS'], 'RHA': ['SAM', 'VIN', 'VEN', 'ETU', 'MAS', 'GAU'], 'SAM': ['CHE', 'DAC', 'ILL', 'VIN', 'RHA'], 'VIN': ['SAM', 'ILL', 'DAL', 'VEN', 'RHA'], 'ILL': ['SAM', 'DAC', 'MAC', 'EPI', 'DAL', 'VIN'], 'LUS': ['GAU', 'TAR', 'SAG'], 'ARM': ['CHE', 'DAM', 'CAP', 'SIP'], 'GAL': ['BIT', 'SIP', 'CAP', 'ISA', 'MIL', 'BYZ'], 'DAM': ['ARM', 'ARA', 'SID', 'ANT', 'CAP'], 'ARA': ['DAM', 'NAB', 'JER', 'TYE', 'SID'], 'CIR': ['CAR', 'THA', 'NUM', 'PHA', 'SAH', 'MAU'], 'SAH': ['CIR', 'PHA', 'BAY', 'MAU'], 'PHA': ['NUM', 'LEP', 'MAR', 'BAY', 'SAH', 'CIR'], 'MAR': ['CYR', 'MEM', 'BAY', 'PHA', 'LEP'], 'SAG': ['LUS'], 'TAR': ['GAU', 'LUS'], 'MAS': ['GAU', 'RHA'], 'ETU': ['RHA', 'VEN', 'RAV'], 'ROM': ['RAV', 'APU'], 'NEA': [], 'APU': ['ROM'], 'RAV': ['ROM', 'ETU'], 'VEN': ['RHA', 'VIN', 'ETU'], 'DAL': ['VIN', 'ILL'], 'EPI': ['ILL', 'MAC'], 'ATH': [], 'SPA': [], 'MAC': ['ILL', 'DAC', 'EPI'], 'BYZ': ['GAL'], 'DAC': ['SAM', 'ILL', 'MAC'], 'CHE': ['SAM', 'ARM'], 'SIP': ['ARM', 'CAP', 'GAL'], 'BIT': ['GAL'], 'MIL': ['GAL'], 'ISA': ['GAL'], 'CAP': ['SIP', 'ARM', 'DAM', 'GAL'], 'ANT': ['DAM'], 'SID': ['DAM', 'ARA'], 'TYE': ['ARA'], 'JER': ['ARA', 'NAB', 'PET'], 'SII': [], 'PET': ['JER'], 'NAB': ['ARA', 'JER'], 'MAU': ['CIR', 'SAH'], 'CAR': ['CIR'], 'THA': ['CIR'], 'NUM': ['PHA', 'CIR'], 'LEP': ['MAR', 'PHA'], 'CYR': ['MEM', 'MAR'], 'ALE': [], 'MEM': ['MAR', 'CYR'], 'BAY': ['MAR', 'SAH', 'PHA'], 'THE': [], 'COR': [], 'SAD': [], 'SIC': [], 'CRE': [], 'CYP': [], 'BAL': []}
coast_routes = {'SAG': ['TAR', 'MAU'], 'TAR': ['MAS', 'SAG'], 'MAS': ['ETU', 'TAR'], 'ETU': ['ROM', 'MAS'], 'ROM': ['NEA', 'ETU'], 'NEA': ['APU', 'SIC', 'ROM'], 'APU': ['RAV', 'NEA'], 'RAV': ['VEN', 'APU'], 'VEN': ['DAL', 'RAV'], 'DAL': ['EPI', 'VEN'], 'EPI': ['ATH', 'DAL'], 'ATH': ['MAC', 'SPA', 'EPI'], 'SPA': ['ATH'], 'MAC': ['BYZ', 'ATH'], 'BYZ': ['DAC', 'BIT', 'MIL', 'MAC'], 'DAC': ['CHE', 'BYZ'], 'CHE': ['SIP', 'DAC'], 'SIP': ['BIT', 'CHE'], 'BIT': ['BYZ', 'SIP'], 'MIL': ['ISA', 'BYZ'], 'ISA': ['CAP', 'MIL'], 'CAP': ['ANT', 'ISA'], 'ANT': ['SID', 'CAP'], 'SID': ['TYE', 'ANT'], 'TYE': ['JER', 'SID'], 'JER': ['SII', 'TYE'], 'SII': ['THE', 'ALE', 'JER', 'PET'], 'PET': ['SII', 'NAB'], 'NAB': ['PET'], 'MAU': ['CAR', 'SAG'], 'CAR': ['THA', 'MAU'], 'THA': ['NUM', 'CAR'], 'NUM': ['LEP', 'THA'], 'LEP': ['CYR', 'NUM'], 'CYR': ['ALE', 'LEP'], 'ALE': ['SII', 'THE', 'MEM', 'CYR'], 'MEM': ['BAY', 'THE', 'ALE'], 'BAY': ['THE', 'MEM'], 'THE': ['SII', 'BAY', 'MEM', 'ALE'], 'COR': ['SAD'], 'SAD': ['COR'], 'SIC': ['NEA'], 'CRE': [], 'CYP': [], 'BAL': []}
sea_routes = {'IBE': ['SAG', 'BER', 'MAU'], 'BER': ['LIG', 'SAD', 'PUN', 'CAR', 'MAU', 'IBE', 'SAG', 'BAL'], 'LIG': ['MAS', 'ETU', 'ROM', 'COR', 'TYN', 'SAD', 'BER', 'BAL', 'TAR'], 'TYN': ['ROM', 'NEA', 'AUS', 'SIC', 'PUN', 'SAD', 'LIG', 'COR'], 'PUN': ['SAD', 'TYN', 'SIC', 'AUS', 'GOT', 'THA', 'CAR', 'BER'], 'ADR': ['VEN', 'DAL', 'EPI', 'ION', 'APU', 'RAV'], 'ION': ['ADR', 'EPI', 'ATH', 'SPA', 'MES', 'AUS', 'NEA', 'APU'], 'AUS': ['NEA', 'ION', 'MES', 'LIB', 'GOT', 'PUN', 'SIC', 'TYN'], 'GOT': ['AUS', 'MES', 'LIB', 'GOS', 'LEP', 'NUM', 'THA', 'PUN'], 'GOS': ['LIB', 'CYR', 'LEP', 'GOT'], 'LIB': ['MES', 'CRE', 'EGY', 'ALE', 'CYR', 'GOS', 'GOT', 'AUS'], 'MES': ['ION', 'SPA', 'AEG', 'CRE', 'LIB', 'GOT', 'AUS'], 'AEG': ['MAC', 'BYZ', 'MIL', 'MIN', 'CRE', 'MES', 'SPA', 'ATH'], 'BLA': ['CHE', 'SIP', 'BIT', 'BYZ', 'DAC'], 'MIN': ['MIL', 'CIL', 'EGY', 'CRE', 'AEG'], 'EGY': ['MIN', 'CIL', 'CYP', 'SYR', 'GOP', 'ALE', 'LIB', 'CRE'], 'CIL': ['ISA', 'CAP', 'ANT', 'SID', 'SYR', 'CYP', 'EGY', 'MIN', 'MIL'], 'SYR': ['CIL', 'SID', 'TYE', 'JER', 'GOP', 'EGY', 'CYP'], 'GOP': ['SYR', 'JER', 'SII', 'THE', 'ALE', 'EGY'], 'REE': ['SII', 'PET', 'NAB', 'THE'], 'BAL': ['TAR', 'LIG', 'BER', 'SAG'], 'SAG': ['BAL', 'BER', 'IBE'], 'TAR': ['LIG', 'BAL'], 'MAS': ['LIG'], 'ETU': ['LIG'], 'ROM': ['TYN', 'LIG'], 'NEA': ['ION', 'AUS', 'TYN'], 'APU': ['ADR', 'ION'], 'RAV': ['ADR'], 'VEN': ['ADR'], 'DAL': ['ADR'], 'EPI': ['ION', 'ADR'], 'ATH': ['AEG', 'ION'], 'SPA': ['AEG', 'MES', 'ION'], 'MAC': ['AEG'], 'BYZ': ['BLA', 'AEG'], 'DAC': ['BLA'], 'CHE': ['BLA'], 'SIP': ['BLA'], 'BIT': ['BLA'], 'MIL': ['CIL', 'MIN', 'AEG'], 'ISA': ['CIL'], 'CAP': ['CIL'], 'ANT': ['CIL'], 'SID': ['SYR', 'CIL'], 'TYE': ['SYR'], 'JER': ['GOP', 'SYR'], 'SII': ['GOP', 'REE'], 'PET': ['REE'], 'NAB': ['REE'], 'MAU': ['IBE', 'BER'], 'CAR': ['PUN', 'BER'], 'THA': ['GOT', 'PUN'], 'NUM': ['GOT'], 'LEP': ['GOT', 'GOS'], 'CYR': ['LIB', 'GOS'], 'ALE': ['EGY', 'GOP', 'LIB'], 'MEM': [], 'BAY': [], 'THE': ['GOP', 'REE'], 'COR': ['LIG', 'TYN'], 'SAD': ['LIG', 'TYN', 'PUN', 'BER'], 'SIC': ['TYN', 'AUS', 'PUN'], 'CRE': ['AEG', 'MIN', 'EGY', 'LIB', 'MES'], 'CYP': ['CIL', 'SYR', 'EGY']}
starting_supply_centers = {'red': {'NEA', 'ROM', 'RAV'}, 'blue': {'THA', 'CIR', 'CAR'}, 'green': {'SPA', 'ATH', 'MAC'}, 'black': {'SID', 'ANT', 'DAM'}, 'yellow': {'ALE', 'MEM', 'THE'}}
starting_units = {'red': {('F', 'NEA'), ('A', 'ROM'), ('A', 'RAV')}, 'blue': {('F', 'THA'), ('A', 'CIR'), ('A', 'CAR')}, 'green': {('F', 'SPA'), ('A', 'ATH'), ('A', 'MAC')}, 'black': {('F', 'SID'), ('A', 'ANT'), ('A', 'DAM')}, 'yellow': {('F', 'ALE'), ('A', 'MEM'), ('A', 'THE')}}
territories2 = {'PAR', 'BUR', 'RUH', 'SIL', 'WAR', 'MOS', 'UKR', 'MUN', 'BOH', 'GAL', 'TYR', 'VIE', 'BUD', 'SER', 'CLY', 'EDI', 'YOR', 'LON', 'WAL', 'LVP', 'STP', 'NOR', 'SWE', 'FIN', 'LVN', 'PRU', 'BER', 'KIE', 'DEN', 'HOL', 'BEL', 'PIC', 'BRE', 'GAS', 'SPA', 'POR', 'MAR', 'PIE', 'TUS', 'ROM', 'NEA', 'APU', 'VEN', 'TRI', 'ALB', 'GRE', 'BUL', 'CON', 'SMY', 'SYR', 'ANK', 'ARM', 'SEV', 'RUM', 'NAF', 'TUN', 'NAO', 'NRG', 'BAR', 'MID', 'IRI', 'ENG', 'NTH', 'HEL', 'SKA', 'BAL', 'BOT', 'GOL', 'WES', 'TYN', 'ION', 'ADR', 'AEG', 'BLA', 'EAS'}
land_locked2 = {'PAR', 'BUR', 'RUH', 'SIL', 'WAR', 'MOS', 'UKR', 'MUN', 'BOH', 'GAL', 'TYR', 'VIE', 'BUD', 'SER'}
coasts2 = {'CLY', 'EDI', 'YOR', 'LON', 'WAL', 'LVP', 'STP', 'NOR', 'SWE', 'FIN', 'LVN', 'PRU', 'BER', 'KIE', 'DEN', 'HOL', 'BEL', 'PIC', 'BRE', 'GAS', 'SPA', 'POR', 'MAR', 'PIE', 'TUS', 'ROM', 'NEA', 'APU', 'VEN', 'TRI', 'ALB', 'GRE', 'BUL', 'CON', 'SMY', 'SYR', 'ANK', 'ARM', 'SEV', 'RUM', 'NAF', 'TUN'}
seas2 = {'NAO', 'NRG', 'BAR', 'MID', 'IRI', 'ENG', 'NTH', 'HEL', 'SKA', 'BAL', 'BOT', 'GOL', 'WES', 'TYN', 'ION', 'ADR', 'AEG', 'BLA', 'EAS'}
supply_center_territories2 = {'PAR', 'WAR', 'MOS', 'MUN', 'VIE', 'BUD', 'SER', 'EDI', 'LON', 'LVP', 'STP', 'NOR', 'SWE', 'BER', 'KIE', 'DEN', 'HOL', 'BEL', 'BRE', 'SPA', 'POR', 'MAR', 'ROM', 'NEA', 'VEN', 'TRI', 'GRE', 'BUL', 'CON', 'SMY', 'ANK', 'RUM', 'TUN'}
land_routes2 = {'PAR': ['PIC', 'BUR', 'GAS', 'BRE'], 'BUR': ['BEL', 'RUH', 'MUN', 'MAR', 'GAS', 'PAR', 'PIC'], 'RUH': ['KIE', 'MUN', 'BUR', 'BEL', 'HOL'], 'SIL': ['BER', 'PRU', 'WAR', 'GAL', 'BOH', 'MUN'], 'WAR': ['PRU', 'LVN', 'MOS', 'UKR', 'GAL', 'SIL'], 'MOS': ['STP', 'SEV', 'UKR', 'WAR', 'LVN'], 'UKR': ['MOS', 'SEV', 'RUM', 'GAL', 'WAR'], 'MUN': ['KIE', 'SIL', 'BOH', 'TYR', 'BUR', 'RUH'], 'BOH': ['SIL', 'GAL', 'VIE', 'TYR', 'MUN'], 'GAL': ['WAR', 'UKR', 'RUM', 'BUD', 'VIE', 'BOH', 'SIL'], 'TYR': ['MUN', 'BOH', 'VIE', 'TRI', 'VEN', 'PIE'], 'VIE': ['BOH', 'GAL', 'BUD', 'TRI', 'TRY'], 'BUD': ['GAL', 'RUM', 'SER', 'TRI', 'VIE'], 'SER': ['BUD', 'RUM', 'BUL', 'GRE', 'ALB', 'TRI'], 'CLY': [], 'EDI': ['LVP'], 'YOR': ['WAL', 'LVP'], 'LON': [], 'WAL': ['YOR'], 'LVP': ['EDI', 'YOR'], 'STP': ['MOS'], 'NOR': ['FIN'], 'SWE': [], 'FIN': ['NOR'], 'LVN': ['MOS', 'WAR'], 'PRU': ['WAR', 'SIL'], 'BER': ['SIL', 'MUN'], 'KIE': ['MUN', 'RUH'], 'DEN': [], 'HOL': ['RUH'], 'BEL': ['RUH', 'BUR'], 'PIC': ['BUR', 'PAR'], 'BRE': ['PAR'], 'GAS': ['PAR', 'BUR', 'MAR'], 'SPA': [], 'POR': [], 'MAR': ['BUR', 'GAS'], 'PIE': ['TYR', 'VEN'], 'TUS': ['VEN'], 'ROM': ['VEN', 'APU'], 'NEA': [], 'APU': ['ROM'], 'VEN': ['TYR', 'TUS', 'ROM', 'PIE'], 'TRI': ['VIE', 'BUD', 'SER', 'TYR'], 'ALB': ['SER'], 'GRE': ['SER'], 'BUL': ['SER'], 'CON': [], 'SMY': ['ANK', 'ARM'], 'SYR': ['ARM'], 'ANK': ['SMY'], 'ARM': ['SYR', 'SMY'], 'SEV': ['MOS', 'UKR'], 'RUM': ['UKR', 'SER', 'BUD', 'GAL'], 'NAF': [], 'TUN': []}
coast_routes2 = {'CLY': ['EDI', 'LVP'], 'EDI': ['YOR', 'CLY'], 'YOR': ['EDI', 'YOR'], 'LON': ['YOR', 'WAL'], 'WAL': ['LVP', 'LON'], 'LVP': ['CLY', 'WAL'], 'STP': ['LVN', 'FIN', 'NOR'], 'NOR': ['STP', 'SWE'], 'SWE': ['FIN', 'DEN', 'NOR'], 'FIN': ['STP', 'SWE'], 'LVN': ['STP', 'PRU'], 'PRU': ['LVN', 'BER'], 'BER': ['PRU', 'KIE'], 'KIE': ['DEN', 'BER', 'HOL'], 'DEN': ['SWE', 'KIE'], 'HOL': ['KIE', 'BEL'], 'BEL': ['HOL', 'PIC'], 'PIC': ['BEL', 'BRE'], 'BRE': ['PIC', 'GAS'], 'GAS': ['BRE', 'SPA'], 'SPA': ['GAS', 'MAR', 'POR'], 'POR': ['SPA'], 'MAR': ['PIE', 'SPA'], 'PIE': ['TUS', 'MAR'], 'TUS': ['POM', 'PIE'], 'ROM': ['NEA', 'TUS'], 'NEA': ['APU', 'ROM'], 'APU': ['NEA', 'VEN'], 'VEN': ['TRI', 'APU'], 'TRI': ['ALB', 'VEN'], 'ALB': ['GRE', 'TRI'], 'GRE': ['BUL', 'ALB'], 'BUL': ['RUM', 'CON', 'GRE'], 'CON': ['ANK', 'SMY', 'BUL'], 'SMY': ['CON', 'SYR'], 'SYR': ['SMY'], 'ANK': ['ARM', 'CON'], 'ARM': ['SEV', 'ANK'], 'SEV': ['ARM', 'RUM'], 'RUM': ['SEV', 'BUL'], 'NAF': ['TUN'], 'TUN': ['NAF']}
sea_routes2 = {'NAO': ['NRG', 'CLY', 'LVP', 'IRI', 'MID'], 'NRG': ['BAR', 'NOR', 'NTH', 'EDI', 'NAO'], 'BAR': ['STP', 'NOR', 'NRG'], 'MID': ['NAO', 'IRI', 'ENG', 'BRE', 'GAS', 'SPA', 'POR', 'WES', 'NAF'], 'IRI': ['NAO', 'LVP', 'WAL', 'ENG', 'MID'], 'ENG': ['WAL', 'LON', 'NTH', 'BEL', 'PIC', 'BRE', 'MID'], 'NTH': ['NRG', 'NOR', 'SKA', 'DEN', 'HEL', 'HOL', 'BEL', 'ENG', 'LON', 'YOR', 'EDI'], 'HEL': ['NTH', 'DEN', 'KIE', 'HOL'], 'SKA': ['NOR', 'SWE', 'DEN', 'NTH'], 'BAL': ['SWE', 'BOT', 'LVN', 'PRU', 'BER', 'KIE', 'DEN'], 'BOT': ['FIN', 'STP', 'LVN', 'BAL', 'SWE'], 'GOL': ['MAR', 'PIE', 'TUS', 'TYN', 'WES', 'SPA'], 'WES': ['SPA', 'GOL', 'TYN', 'TUN', 'NAF', 'MID'], 'TYN': ['GOL', 'TUS', 'ROM', 'NEA', 'ION', 'TUN', 'WES'], 'ION': ['NEA', 'APU', 'ADR', 'ALB', 'GRE', 'AEG', 'EAS', 'TUN', 'TYN'], 'ADR': ['TRI', 'ALB', 'ION', 'APU', 'VEN'], 'AEG': ['BUL', 'CON', 'SMY', 'EAS', 'ION', 'GRE'], 'BLA': ['SEV', 'ARM', 'ANK', 'CON', 'BUL', 'RUM'], 'EAS': ['SMY', 'SYR', 'ION', 'AEG'], 'CLY': ['NAO', 'IRI'], 'EDI': ['NOR', 'NTH'], 'YOR': ['NTH'], 'LON': ['NTH', 'ENG'], 'WAL': ['ENG', 'IRI'], 'LVP': ['IRI', 'NAO'], 'STP': ['BAR', 'BOT'], 'NOR': ['NRG', 'BAR', 'SKA', 'NTH'], 'SWE': ['BOT', 'BAL', 'SKA'], 'FIN': ['BOT'], 'LVN': ['BOT', 'BAL'], 'PRU': ['BAL'], 'BER': ['BAL'], 'KIE': ['BAL', 'HEL'], 'DEN': ['SKA', 'BAL', 'HEL', 'NTH'], 'HOL': ['HEL', 'NTH'], 'BEL': ['NTH', 'ENG'], 'PIC': ['ENG'], 'BRE': ['ENG', 'MID'], 'GAS': ['MID'], 'SPA': ['MID', 'GOL', 'WES'], 'POR': ['MID'], 'MAR': ['GOL'], 'PIE': ['GOL'], 'TUS': ['TYN', 'GOL'], 'ROM': ['TYN'], 'NEA': ['ION', 'TYN'], 'APU': ['ADR', 'ION'], 'VEN': ['ADR'], 'TRI': ['ADR'], 'ALB': ['ION', 'ADR'], 'GRE': ['AEG', 'ION'], 'BUL': ['BLA', 'AEG'], 'CON': ['BLA', 'AEG'], 'SMY': ['EAS', 'AEG'], 'SYR': ['EAS'], 'ANK': ['BLA'], 'ARM': ['BLA'], 'SEV': ['BLA'], 'RUM': ['BLA'], 'NAF': ['WES', 'MID'], 'TUN': ['WES', 'TYN', 'ION']}
starting_supply_centers2 = {'red': {'TRI', 'VIE', 'BUD'}, 'pink': {'LON', 'EDI', 'LVP'}, 'blue': {'BRE', 'PAR', 'MAR'}, 'brown': {'KIE', 'BER', 'MUN'}, 'green': {'NEA', 'ROM', 'VEN'}, 'black': {'SEV', 'STP', 'MOS', 'WAR'}, 'yellow': {'ANK', 'CON', 'SMY'}}
units_by_color2 = {'red': {('F', 'TRI'), ('A', 'VIE'), ('A', 'BUD')}, 'pink': {('F', 'LON'), ('A', 'EDI'), ('A', 'LVP')}, 'blue': {('F', 'BRE'), ('A', 'PAR'), ('A', 'MAR')}, 'brown': {('F', 'KIE'), ('A', 'BER'), ('A', 'MUN')}, 'green': {('F', 'NEA'), ('A', 'ROM'), ('A', 'VEN')}, 'black': {('F', 'SEV'), ('F', 'STP'), ('A', 'MOS'), ('A', 'WAR')}, 'yellow': {('F', 'ANK'), ('A', 'CON'), ('A', 'SMY')}} |
class Node:#create a Node
def __int__(self,data):
self.data=data#given data
self.next=None#given next to None
class Linked_List:
pass
def insert_tail(Head,data):
if(Head.next is None):
Head.next = Node(data)
else:
insert_tail(Head.next, data)
def insert_head(Head,data):
tamp = Head
if (tamp == None):
newNod = Node()#create a new Node
newNod.data = data
newNod.next = None
Head = newNod#make new node to Head
else:
newNod = Node()
newNod.data = data
newNod.next = Head#put the Head at NewNode Next
Head=newNod#make a NewNode to Head
return Head
def printList(Head):#print every node data
tamp=Head
while tamp!=None:
print(tamp.data)
tamp=tamp.next
def delete_head(Head):#delete from head
if Head!=None:
Head=Head.next
return Head#return new Head
def delete_tail(Head):#delete from tail
if Head!=None:
tamp = Node()
tamp = Head
while (tamp.next).next!= None:#find the 2nd last element
tamp = tamp.next
tamp.next=None#delete the last element by give next None to 2nd last Element
return Head
def isEmpty(Head):
return Head is None #Return if Head is none | class Node:
def __int__(self, data):
self.data = data
self.next = None
class Linked_List:
pass
def insert_tail(Head, data):
if Head.next is None:
Head.next = node(data)
else:
insert_tail(Head.next, data)
def insert_head(Head, data):
tamp = Head
if tamp == None:
new_nod = node()
newNod.data = data
newNod.next = None
head = newNod
else:
new_nod = node()
newNod.data = data
newNod.next = Head
head = newNod
return Head
def print_list(Head):
tamp = Head
while tamp != None:
print(tamp.data)
tamp = tamp.next
def delete_head(Head):
if Head != None:
head = Head.next
return Head
def delete_tail(Head):
if Head != None:
tamp = node()
tamp = Head
while tamp.next.next != None:
tamp = tamp.next
tamp.next = None
return Head
def is_empty(Head):
return Head is None |
def run (autoTester):
aList = [1, 2, 3, 'moon', 'stars']
autoTester.check (aList)
aList.insert (3, 'sun')
autoTester.check (aList)
autoTester.check (aList [2:4:1])
autoTester.check (aList [:])
autoTester.check (aList [2:])
autoTester.check (len (aList))
aList.append ('milkyway')
autoTester.check (aList)
aList.extend (['m1', 'm31'])
autoTester.check (aList)
anotherList = list (('a', 'b', 'c'))
autoTester.check (anotherList)
autoTester.check ('b' in anotherList)
autoTester.check ('d' in anotherList)
aDict = {1: 'plant', 'animal': 2}
autoTester.check (aDict)
autoTester.check (aDict [1], aDict ['animal'])
def p ():
return 3
q = 4
autoTester.check ({p (): 'three', q: 'four'})
aTuple = (1, 2, 3, 4, 5)
autoTester.check(aTuple)
autoTester.check (len (aTuple))
anotherTuple = (1,)
autoTester.check (anotherTuple)
aSet = {1, 2, 2, 3}
autoTester.check (aSet)
autoTester.check (len (aSet))
autoTester.check (2 in aSet)
autoTester.check (4 in aSet)
aSet.clear ()
autoTester.check (aSet)
anotherSet = set ((4, 5, 5, 6))
autoTester.check (anotherSet)
emptySet = set ()
autoTester.check (emptySet)
autoTester.check (len (emptySet))
aString = 'c_cis_d_dis_e_f_fis_g_gis_a_ais_b_c'
autoTester.check ('cis' in aString)
autoTester.check ('g' in aString)
autoTester.check ('bes' in aString)
autoTester.check ('z' in aString)
| def run(autoTester):
a_list = [1, 2, 3, 'moon', 'stars']
autoTester.check(aList)
aList.insert(3, 'sun')
autoTester.check(aList)
autoTester.check(aList[2:4:1])
autoTester.check(aList[:])
autoTester.check(aList[2:])
autoTester.check(len(aList))
aList.append('milkyway')
autoTester.check(aList)
aList.extend(['m1', 'm31'])
autoTester.check(aList)
another_list = list(('a', 'b', 'c'))
autoTester.check(anotherList)
autoTester.check('b' in anotherList)
autoTester.check('d' in anotherList)
a_dict = {1: 'plant', 'animal': 2}
autoTester.check(aDict)
autoTester.check(aDict[1], aDict['animal'])
def p():
return 3
q = 4
autoTester.check({p(): 'three', q: 'four'})
a_tuple = (1, 2, 3, 4, 5)
autoTester.check(aTuple)
autoTester.check(len(aTuple))
another_tuple = (1,)
autoTester.check(anotherTuple)
a_set = {1, 2, 2, 3}
autoTester.check(aSet)
autoTester.check(len(aSet))
autoTester.check(2 in aSet)
autoTester.check(4 in aSet)
aSet.clear()
autoTester.check(aSet)
another_set = set((4, 5, 5, 6))
autoTester.check(anotherSet)
empty_set = set()
autoTester.check(emptySet)
autoTester.check(len(emptySet))
a_string = 'c_cis_d_dis_e_f_fis_g_gis_a_ais_b_c'
autoTester.check('cis' in aString)
autoTester.check('g' in aString)
autoTester.check('bes' in aString)
autoTester.check('z' in aString) |
input_data = input().split()
def is_even(word):
return len(word) % 2 == 0
def get_even_len_words(words):
return [word for word in words if is_even(word)]
def print_result(words):
[print(word) for word in words]
words = get_even_len_words(input_data)
print_result(words) | input_data = input().split()
def is_even(word):
return len(word) % 2 == 0
def get_even_len_words(words):
return [word for word in words if is_even(word)]
def print_result(words):
[print(word) for word in words]
words = get_even_len_words(input_data)
print_result(words) |
counter_name = 'NIH:DI245.56671FE403.CH2.temperature'
Size = wx.Size(695, 305)
logfile = '//mx340hs/data/anfinrud_1710/Logfiles/DI-245-CH2-1.log'
average_count = 1
max_value = nan
min_value = nan
end_fraction = 1
reject_outliers = False
outlier_cutoff = 2.5
show_statistics = True
time_window = 21600
| counter_name = 'NIH:DI245.56671FE403.CH2.temperature'
size = wx.Size(695, 305)
logfile = '//mx340hs/data/anfinrud_1710/Logfiles/DI-245-CH2-1.log'
average_count = 1
max_value = nan
min_value = nan
end_fraction = 1
reject_outliers = False
outlier_cutoff = 2.5
show_statistics = True
time_window = 21600 |
# Title : Multilevel Inheritance
# Author : Kiran Raj R.
# Date : 08:11:2020
class Employee:
def __init__(self, emp_id, name, basicSalary, position):
self.emp_id = emp_id
self.name = name
self.basicSalary = basicSalary
self.position = position
def print_details(self):
print(f"ID: {self.emp_id}\nName: {self.name}\nSalary: {self.basicSalary}\nPosition: {self.position}")
class SalesTeam(Employee):
def __init__(self, emp_id, name, basicSalary, position, target):
Employee.__init__(self, emp_id, name, basicSalary, position)
self.target = target
self.position = "Sales"
def calcSalary(self):
if self.target == True:
self.basicSalary = self.basicSalary *1.2
class SalesManager (SalesTeam):
def __init__(self, emp_id, name, basicSalary, target, bonus):
SalesTeam.__init__(self, emp_id, name, basicSalary, position="Sales Manager", target=True)
self.bonus = bonus
self.position = "Sales Manager"
def calcBonus(self):
self.calcSalary()
if self.bonus == True:
self.basicSalary= self.basicSalary * 11.2
emp1 = Employee(121, "Kiran", 45000, "asst_store keeper")
emp1.print_details()
print("-----------------------------------------------------")
st1 = SalesTeam(121, "Kiran", 45000, "asst_store keeper", True)
st1.calcSalary()
st1.print_details()
print("-----------------------------------------------------")
sm = SalesManager(121, "Kiran", 45000, True, False)
sm.calcBonus()
sm.print_details() | class Employee:
def __init__(self, emp_id, name, basicSalary, position):
self.emp_id = emp_id
self.name = name
self.basicSalary = basicSalary
self.position = position
def print_details(self):
print(f'ID: {self.emp_id}\nName: {self.name}\nSalary: {self.basicSalary}\nPosition: {self.position}')
class Salesteam(Employee):
def __init__(self, emp_id, name, basicSalary, position, target):
Employee.__init__(self, emp_id, name, basicSalary, position)
self.target = target
self.position = 'Sales'
def calc_salary(self):
if self.target == True:
self.basicSalary = self.basicSalary * 1.2
class Salesmanager(SalesTeam):
def __init__(self, emp_id, name, basicSalary, target, bonus):
SalesTeam.__init__(self, emp_id, name, basicSalary, position='Sales Manager', target=True)
self.bonus = bonus
self.position = 'Sales Manager'
def calc_bonus(self):
self.calcSalary()
if self.bonus == True:
self.basicSalary = self.basicSalary * 11.2
emp1 = employee(121, 'Kiran', 45000, 'asst_store keeper')
emp1.print_details()
print('-----------------------------------------------------')
st1 = sales_team(121, 'Kiran', 45000, 'asst_store keeper', True)
st1.calcSalary()
st1.print_details()
print('-----------------------------------------------------')
sm = sales_manager(121, 'Kiran', 45000, True, False)
sm.calcBonus()
sm.print_details() |
set1 = {
"Madara", "Obito", "Itachi", "Sasuke"
}
set2 = {
"Hashirama", "Naruto", "Sasuke", "Sai"
}
print(set1.intersection(set2)) | set1 = {'Madara', 'Obito', 'Itachi', 'Sasuke'}
set2 = {'Hashirama', 'Naruto', 'Sasuke', 'Sai'}
print(set1.intersection(set2)) |
def alternatingCharacters(s):
deletions = 0
for i in range(len(s)-1):
if s[i] == s[i+1]:
deletions += 1
return deletions
print(alternatingCharacters('AABBCD')) | def alternating_characters(s):
deletions = 0
for i in range(len(s) - 1):
if s[i] == s[i + 1]:
deletions += 1
return deletions
print(alternating_characters('AABBCD')) |
class DoAnnotator:
# get the gene, disease_dataset in bulk, do_dataset
@staticmethod
def attach_annotations(id, dataset):
return dataset[id]
| class Doannotator:
@staticmethod
def attach_annotations(id, dataset):
return dataset[id] |
def main(request, response):
response.headers.set(b'Cache-Control', b'no-store')
response.headers.set(b'Access-Control-Allow-Origin',
request.headers.get(b'origin'))
headers = b'x-custom-s,x-custom-test,x-custom-u,x-custom-ua,x-custom-v'
if request.method == u'OPTIONS':
response.headers.set(b'Access-Control-Max-Age', b'0')
response.headers.set(b'Access-Control-Allow-Headers', headers)
# Access-Control-Request-Headers should be sorted.
if headers != request.headers.get(b'Access-Control-Request-Headers'):
response.status = 400
else:
if request.headers.get(b'x-custom-s'):
response.content = b'PASS'
else:
response.status = 400
response.content = b'FAIL'
| def main(request, response):
response.headers.set(b'Cache-Control', b'no-store')
response.headers.set(b'Access-Control-Allow-Origin', request.headers.get(b'origin'))
headers = b'x-custom-s,x-custom-test,x-custom-u,x-custom-ua,x-custom-v'
if request.method == u'OPTIONS':
response.headers.set(b'Access-Control-Max-Age', b'0')
response.headers.set(b'Access-Control-Allow-Headers', headers)
if headers != request.headers.get(b'Access-Control-Request-Headers'):
response.status = 400
elif request.headers.get(b'x-custom-s'):
response.content = b'PASS'
else:
response.status = 400
response.content = b'FAIL' |
squares = []
for i in range(1,11):
squares.append(i**2)
squ = [i**2 for i in range(1,11)]
print(squ)
negative = []
for i in range(1,11):
negative.append(-i)
neg = [-i for i in range(1,11)] #imp
print(neg)
l = ['abc','tuv','xyz']
rev = [st[::-1] for st in l]
print(rev)
even = [i for i in range(1,11) if i%2==0]
print(even)
ls = ["sss", 2,5,5.0,[3,"lsls"]]
number = [str(i) for i in ls if (type(i)==int or type(i)==float)]
print(number)
#even -> *2 || odd -> negative
number1 = [i*2 if(i%2 == 0) else -i for i in range(1,11) ]
print(number1)
square = {i:i**2 for i in range(1,5)}
print(square)
string = "siddharth"
word_count = {char:string.count(char) for char in string}
print(word_count)
odd_even = {i:("even" if i%2==0 else "odd") for i in range(1,5)}
print(odd_even)
s = {i**2 for i in range(1,5)}
print(s) | squares = []
for i in range(1, 11):
squares.append(i ** 2)
squ = [i ** 2 for i in range(1, 11)]
print(squ)
negative = []
for i in range(1, 11):
negative.append(-i)
neg = [-i for i in range(1, 11)]
print(neg)
l = ['abc', 'tuv', 'xyz']
rev = [st[::-1] for st in l]
print(rev)
even = [i for i in range(1, 11) if i % 2 == 0]
print(even)
ls = ['sss', 2, 5, 5.0, [3, 'lsls']]
number = [str(i) for i in ls if type(i) == int or type(i) == float]
print(number)
number1 = [i * 2 if i % 2 == 0 else -i for i in range(1, 11)]
print(number1)
square = {i: i ** 2 for i in range(1, 5)}
print(square)
string = 'siddharth'
word_count = {char: string.count(char) for char in string}
print(word_count)
odd_even = {i: 'even' if i % 2 == 0 else 'odd' for i in range(1, 5)}
print(odd_even)
s = {i ** 2 for i in range(1, 5)}
print(s) |
#!/usr/bin/python3
def print_sorted_dictionary(a_dictionary):
sorted_dictionary = sorted(a_dictionary.items())
for k, v in sorted_dictionary:
print('{0}: {1}'.format(k, v))
| def print_sorted_dictionary(a_dictionary):
sorted_dictionary = sorted(a_dictionary.items())
for (k, v) in sorted_dictionary:
print('{0}: {1}'.format(k, v)) |
xs = input().strip()
xs = "".join(f"{int(x, 16):04b}" for x in xs)
print(xs, end="")
| xs = input().strip()
xs = ''.join((f'{int(x, 16):04b}' for x in xs))
print(xs, end='') |
def py35():
return [
('MacOS', 'https://www.python.org/ftp/python/3.5.3/python-3.5.3-macosx10.6.pkg', 'python/python-3.5.3-macosx10.6.pkg'), # noqa
('Windows (64-bit)', 'https://www.python.org/ftp/python/3.5.3/python-3.5.3-amd64.exe', 'python/python-3.5.3-amd64.exe'), # noqa
('Windows (32-bit)', 'https://www.python.org/ftp/python/3.5.3/python-3.5.3.exe', 'python/python-3.5.3.exe')
]
def cheatsheet():
return [
('Download', 'https://github.com/ehmatthes/pcc/releases/download/v1.0.0/beginners_python_cheat_sheet_pcc.pdf', 'python/beginners_python_cheat_sheet_pcc.pdf')
] | def py35():
return [('MacOS', 'https://www.python.org/ftp/python/3.5.3/python-3.5.3-macosx10.6.pkg', 'python/python-3.5.3-macosx10.6.pkg'), ('Windows (64-bit)', 'https://www.python.org/ftp/python/3.5.3/python-3.5.3-amd64.exe', 'python/python-3.5.3-amd64.exe'), ('Windows (32-bit)', 'https://www.python.org/ftp/python/3.5.3/python-3.5.3.exe', 'python/python-3.5.3.exe')]
def cheatsheet():
return [('Download', 'https://github.com/ehmatthes/pcc/releases/download/v1.0.0/beginners_python_cheat_sheet_pcc.pdf', 'python/beginners_python_cheat_sheet_pcc.pdf')] |
palavra=input("Digite a palavra chave: ").upper()
palavra_chave=[]
forca=[]
for i in palavra:
palavra_chave.append(i)
for i in range(0,len(palavra_chave)):
forca.append("_")
acertou=False
while acertou==False:
letra=input("digte um litra: ").upper()
for i in range (0,len(palavra_chave)):
if letra==palavra_chave[i]:
forca[i]=letra
print(forca[i])
acertou=True
for x in range (0,len(forca)):
if forca[x]=="_":
acertou=False
| palavra = input('Digite a palavra chave: ').upper()
palavra_chave = []
forca = []
for i in palavra:
palavra_chave.append(i)
for i in range(0, len(palavra_chave)):
forca.append('_')
acertou = False
while acertou == False:
letra = input('digte um litra: ').upper()
for i in range(0, len(palavra_chave)):
if letra == palavra_chave[i]:
forca[i] = letra
print(forca[i])
acertou = True
for x in range(0, len(forca)):
if forca[x] == '_':
acertou = False |
class Block:
id = ""
name = "Block Name"
icon = ""
component = "BasicBlock"
disable_scrubbing = False
empty_msg = "No content."
has_sections = False
def __init__(self, tab, handler, options={}):
# tab which holds the block
self.tab = tab
self.handler = handler
self.options = options
self.data = {}
assert self.id, "Block should declare an 'id' attribute !"
def serialize(self):
raw_data = self.build()
self.data = self.handler.scrub_data(raw_data, self.disable_scrubbing)
return {
"id": self.id,
"name": self.name,
"icon": self.icon,
"component": self.component,
"data": self.data,
"empty_msg": self.empty_msg,
"has_content": self.has_content(),
"has_sections": self.has_sections,
}
def build(self):
raise NotImplementedError("block should implement build()")
def has_content(self):
return True
| class Block:
id = ''
name = 'Block Name'
icon = ''
component = 'BasicBlock'
disable_scrubbing = False
empty_msg = 'No content.'
has_sections = False
def __init__(self, tab, handler, options={}):
self.tab = tab
self.handler = handler
self.options = options
self.data = {}
assert self.id, "Block should declare an 'id' attribute !"
def serialize(self):
raw_data = self.build()
self.data = self.handler.scrub_data(raw_data, self.disable_scrubbing)
return {'id': self.id, 'name': self.name, 'icon': self.icon, 'component': self.component, 'data': self.data, 'empty_msg': self.empty_msg, 'has_content': self.has_content(), 'has_sections': self.has_sections}
def build(self):
raise not_implemented_error('block should implement build()')
def has_content(self):
return True |
a, b = map(int, input().split())
s = list(map(int, input().split()))
b = list(map(lambda x: bool(int(x)), bin(b)[2:]))[::-1]
t = 0
for i in range(len(b)):
if b[i]:
t += s[i]
print(t)
| (a, b) = map(int, input().split())
s = list(map(int, input().split()))
b = list(map(lambda x: bool(int(x)), bin(b)[2:]))[::-1]
t = 0
for i in range(len(b)):
if b[i]:
t += s[i]
print(t) |
class Proxy(object):
def __init__(self, inner):
object.__setattr__(
self,
"_obj",
inner
)
#
# proxying (special cases)
#
def __getattribute__(self, name):
value = getattr(object.__getattribute__(self, "_obj"), name)
if callable(value):
fn = value.__func__
value = lambda *args,**kwargs: fn(self, *args, **kwargs)
return value
def __delattr__(self, name):
delattr(object.__getattribute__(self, "_obj"), name)
def __setattr__(self, name, value):
setattr(object.__getattribute__(self, "_obj"), name, value)
def __nonzero__(self):
return bool(object.__getattribute__(self, "_obj"))
def __str__(self):
return str(object.__getattribute__(self, "_obj"))
def __repr__(self):
return repr(object.__getattribute__(self, "_obj"))
def __hash__(self):
return hash(object.__getattribute__(self, "_obj")) | class Proxy(object):
def __init__(self, inner):
object.__setattr__(self, '_obj', inner)
def __getattribute__(self, name):
value = getattr(object.__getattribute__(self, '_obj'), name)
if callable(value):
fn = value.__func__
value = lambda *args, **kwargs: fn(self, *args, **kwargs)
return value
def __delattr__(self, name):
delattr(object.__getattribute__(self, '_obj'), name)
def __setattr__(self, name, value):
setattr(object.__getattribute__(self, '_obj'), name, value)
def __nonzero__(self):
return bool(object.__getattribute__(self, '_obj'))
def __str__(self):
return str(object.__getattribute__(self, '_obj'))
def __repr__(self):
return repr(object.__getattribute__(self, '_obj'))
def __hash__(self):
return hash(object.__getattribute__(self, '_obj')) |
b={}
m={}
d=n=x=y=t=0
s=open(0)
while 1:
if t:x,y,n,t=b[d]
n=m[x,y]=min(m.get((x,y),9e9),n);c=s.read(1)
if c=='$':break
if c=='(':d+=1;b[d]=x,y,n,0
d-=c==')';t=c=='|';y+={'N':1,'S':-1}.get(c,0);x+={'E':1,'W':-1}.get(c,0);n+=1
p=print
v=m.values()
p(max(v))
p(sum(x>999 for x in v))
| b = {}
m = {}
d = n = x = y = t = 0
s = open(0)
while 1:
if t:
(x, y, n, t) = b[d]
n = m[x, y] = min(m.get((x, y), 9000000000.0), n)
c = s.read(1)
if c == '$':
break
if c == '(':
d += 1
b[d] = (x, y, n, 0)
d -= c == ')'
t = c == '|'
y += {'N': 1, 'S': -1}.get(c, 0)
x += {'E': 1, 'W': -1}.get(c, 0)
n += 1
p = print
v = m.values()
p(max(v))
p(sum((x > 999 for x in v))) |
class Node:
def __init__(self, name):
self.name = name
self.triggered = False
self.parents = []
self.child_nodes = []
def add_child(self, child):
if child in self.child_nodes:
return
child.add_parent(self)
self.child_nodes.append(child)
self.child_nodes.sort(key=lambda n: n.name)
def add_parent(self, parent):
if parent in self.parents:
return
self.parents.append(parent)
def can_trigger(self):
for parent in self.parents:
if not parent.triggered:
return False
return True
def is_root(self):
if len(self.parents) == 0:
return True
return False
| class Node:
def __init__(self, name):
self.name = name
self.triggered = False
self.parents = []
self.child_nodes = []
def add_child(self, child):
if child in self.child_nodes:
return
child.add_parent(self)
self.child_nodes.append(child)
self.child_nodes.sort(key=lambda n: n.name)
def add_parent(self, parent):
if parent in self.parents:
return
self.parents.append(parent)
def can_trigger(self):
for parent in self.parents:
if not parent.triggered:
return False
return True
def is_root(self):
if len(self.parents) == 0:
return True
return False |
__log_debug__ = True
def debug(obj):
if __log_debug__:
print(obj)
| __log_debug__ = True
def debug(obj):
if __log_debug__:
print(obj) |
class Solution:
def isValid(self, s: str) -> bool:
replace = True
while replace:
start_len = len(s)
for inner in ['{}', '()', '[]']:
s = s.replace(inner, '')
if start_len == len(s):
replace = False
return s == '' | class Solution:
def is_valid(self, s: str) -> bool:
replace = True
while replace:
start_len = len(s)
for inner in ['{}', '()', '[]']:
s = s.replace(inner, '')
if start_len == len(s):
replace = False
return s == '' |
length1 = int(input("Enter the length of room1: "))
width1 = int(input("Enter the width of room1: "))
length2 = int(input("Enter the length of room2: "))
width2 = int(input("Enter the width of room2: "))
area1 = width1*length1
area2 = width2*length2
total = area1 + area2
print("The total area of two rooms is: ", total)
(width1*length1) + (width2 * length2)
| length1 = int(input('Enter the length of room1: '))
width1 = int(input('Enter the width of room1: '))
length2 = int(input('Enter the length of room2: '))
width2 = int(input('Enter the width of room2: '))
area1 = width1 * length1
area2 = width2 * length2
total = area1 + area2
print('The total area of two rooms is: ', total)
width1 * length1 + width2 * length2 |
def test_sync_host_network_backend_without_ifaces(host, add_host, revert_etc):
# test should pass as sync host network ignores backends without networking
result = host.run('stack sync host network')
assert result.rc == 0
def test_sync_host_network_frontend_only(host, revert_etc):
result = host.run('stack sync host network localhost')
assert result.rc == 0
def test_sync_host_network_resolv(host, revert_etc):
''' sync host network should rewrite resolv.conf '''
# RHEL (and possibly others) writes garbage to /etc/resolv.conf
# Since the FE has the same data, just call `sync host network localhost`
# this changes the original file, but the purpose of the test is to verify
# that we will overwrite resolv.conf
# call sync host network
result = host.run('stack sync host network localhost')
assert result.rc == 0
# write garbage to it
with open('/etc/resolv.conf', 'a+') as fi:
fi.seek(0)
og_resolv_data = fi.read()
fi.write('# curatorial nonsense garbage')
fi.seek(0)
garbagedata = fi.read()
assert garbagedata != og_resolv_data
# call sync host network
result = host.run('stack sync host network localhost')
assert result.rc == 0
# verify we actually do rewrite resolv.conf
with open('/etc/resolv.conf') as fi:
assert og_resolv_data == fi.read()
def test_ensure_hostfile_matches_database(host, revert_etc):
# ensure starting hostfile is what the FE would write
# get the og hostfile
with open('/etc/hosts') as fi:
og_hostsfiledata = fi.read()
# this command will always overwrite /etc/hosts
result = host.run('stack sync host')
assert result.rc == 0
with open('/etc/hosts') as fi:
hostsfiledata = fi.read()
assert og_hostsfiledata == hostsfiledata
| def test_sync_host_network_backend_without_ifaces(host, add_host, revert_etc):
result = host.run('stack sync host network')
assert result.rc == 0
def test_sync_host_network_frontend_only(host, revert_etc):
result = host.run('stack sync host network localhost')
assert result.rc == 0
def test_sync_host_network_resolv(host, revert_etc):
""" sync host network should rewrite resolv.conf """
result = host.run('stack sync host network localhost')
assert result.rc == 0
with open('/etc/resolv.conf', 'a+') as fi:
fi.seek(0)
og_resolv_data = fi.read()
fi.write('# curatorial nonsense garbage')
fi.seek(0)
garbagedata = fi.read()
assert garbagedata != og_resolv_data
result = host.run('stack sync host network localhost')
assert result.rc == 0
with open('/etc/resolv.conf') as fi:
assert og_resolv_data == fi.read()
def test_ensure_hostfile_matches_database(host, revert_etc):
with open('/etc/hosts') as fi:
og_hostsfiledata = fi.read()
result = host.run('stack sync host')
assert result.rc == 0
with open('/etc/hosts') as fi:
hostsfiledata = fi.read()
assert og_hostsfiledata == hostsfiledata |
class Event:
def __init__(self, event_type, target, source, **kwargs):
self._type = event_type
self._target = target
self._source = source
self._kwargs = kwargs
@property
def kwargs(self):
return self._kwargs
@property
def source(self):
return self._source
@property
def target(self):
return self._target
@property
def type(self):
return self._type
# event.py
| class Event:
def __init__(self, event_type, target, source, **kwargs):
self._type = event_type
self._target = target
self._source = source
self._kwargs = kwargs
@property
def kwargs(self):
return self._kwargs
@property
def source(self):
return self._source
@property
def target(self):
return self._target
@property
def type(self):
return self._type |
symbolMap = {"crypto": [
{"symbol": "BTC", "name": "bitcoin", "id": "bitcoin"},
{"symbol": "ETH", "name": "ethereum", "id": "ethereum"},
{"symbol": "ADA", "name": "cardano", "id": "cardano"}
],
"fiat": [
{"symbol": "USDT", "name": "us dollars", "id": "tether"}
]}
| symbol_map = {'crypto': [{'symbol': 'BTC', 'name': 'bitcoin', 'id': 'bitcoin'}, {'symbol': 'ETH', 'name': 'ethereum', 'id': 'ethereum'}, {'symbol': 'ADA', 'name': 'cardano', 'id': 'cardano'}], 'fiat': [{'symbol': 'USDT', 'name': 'us dollars', 'id': 'tether'}]} |
def hello():
print("Hello world ")
return "Hello world"
hello()
| def hello():
print('Hello world ')
return 'Hello world'
hello() |
# Flask
DEBUG = True
# Change this when not testing >.> You know how.
SECRET_KEY = "Aaxus"
SECRET_KEY = "AaxusJWT"
SECURITY_PASSWORD_SALT = "I_Love_Candy"
# Database
# MONGODB_DB = 'aaxusdb'
# MONGODB_HOST = 'localhost'
# MONGODB_PORT = 27017
# MONGODB_USER = 'aaxus'
# MONGODB_PASSWORD = 'aaxus'
# Database Mock
MONGODB_DB = 'aaxusdb'
MONGODB_HOST = 'mongomock://localhost'
MONGODB_PORT = 27017
MONGODB_USER= 'aaxus'
MONGODB_PASSWORD = 'aaxus'
# Vulnerabilities
| debug = True
secret_key = 'Aaxus'
secret_key = 'AaxusJWT'
security_password_salt = 'I_Love_Candy'
mongodb_db = 'aaxusdb'
mongodb_host = 'mongomock://localhost'
mongodb_port = 27017
mongodb_user = 'aaxus'
mongodb_password = 'aaxus' |
class Date:
def __init__(self, strDate):
strDate = strDate.split('.')
self.day = strDate[0]
self.month = strDate[1]
self.year = strDate[2]
| class Date:
def __init__(self, strDate):
str_date = strDate.split('.')
self.day = strDate[0]
self.month = strDate[1]
self.year = strDate[2] |
class Rotation(object):
def __init__(self,yaw=0,roll=0,pitch=0):
self.yaw = yaw
self.roll = roll
self.pitch = pitch
class Location(object):
def __init__(self,x,y,z):
self.x = x
self.y = y
self.z = z
class Transform(object):
def __init__(self,rotation,location):
self.rotation = rotation
self.location = location
| class Rotation(object):
def __init__(self, yaw=0, roll=0, pitch=0):
self.yaw = yaw
self.roll = roll
self.pitch = pitch
class Location(object):
def __init__(self, x, y, z):
self.x = x
self.y = y
self.z = z
class Transform(object):
def __init__(self, rotation, location):
self.rotation = rotation
self.location = location |
a=int(input())
for i in range(a):
b=list(map(int,input().split(" ")))
c=0
x=abs(b[c]-b[c+2])
y=abs(b[c+1]-b[c+2])
if(x>y):
print("Police2")
if(x<y):
print("police1")
if(x==y):
print("Both")
| a = int(input())
for i in range(a):
b = list(map(int, input().split(' ')))
c = 0
x = abs(b[c] - b[c + 2])
y = abs(b[c + 1] - b[c + 2])
if x > y:
print('Police2')
if x < y:
print('police1')
if x == y:
print('Both') |
def swap(arr, index_1, index_2):
temp = arr[index_1]
arr[index_1] = arr[index_2]
arr[index_2] = temp
def bubble_sort_unoptimized(arr):
for el in arr:
for index in range(len(arr) - 1):
if arr[index] > arr[index + 1]:
swap(arr, index, index + 1)
def bubble_sort_optimized(arr):
for i in range(len(arr)):
for idx in range(len(arr) - i - 1):
if arr[idx] > arr[idx + 1]:
arr[idx], arr[idx + 1] = arr[idx + 1], arr[idx]
my_nums = [7, 3, 4, 2]
answer = bubble_sort_unoptimized(my_nums)
answer_optimized = bubble_sort_optimized(my_nums)
print(my_nums)
print(answer) | def swap(arr, index_1, index_2):
temp = arr[index_1]
arr[index_1] = arr[index_2]
arr[index_2] = temp
def bubble_sort_unoptimized(arr):
for el in arr:
for index in range(len(arr) - 1):
if arr[index] > arr[index + 1]:
swap(arr, index, index + 1)
def bubble_sort_optimized(arr):
for i in range(len(arr)):
for idx in range(len(arr) - i - 1):
if arr[idx] > arr[idx + 1]:
(arr[idx], arr[idx + 1]) = (arr[idx + 1], arr[idx])
my_nums = [7, 3, 4, 2]
answer = bubble_sort_unoptimized(my_nums)
answer_optimized = bubble_sort_optimized(my_nums)
print(my_nums)
print(answer) |
class UnauthorizedException(Exception):
pass
class BadRequestException(Exception):
pass
class NotFoundException(Exception):
pass
class RedirectException(Exception):
pass
class ServerErrorException(Exception):
pass
class UnexpectedException(Exception):
pass
class LocationHeaderNotFoundException(Exception):
pass | class Unauthorizedexception(Exception):
pass
class Badrequestexception(Exception):
pass
class Notfoundexception(Exception):
pass
class Redirectexception(Exception):
pass
class Servererrorexception(Exception):
pass
class Unexpectedexception(Exception):
pass
class Locationheadernotfoundexception(Exception):
pass |
#
# PySNMP MIB module HPN-ICF-CATV-TRANSCEIVER-MIB (http://snmplabs.com/pysmi)
# ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/HPN-ICF-CATV-TRANSCEIVER-MIB
# Produced by pysmi-0.3.4 at Mon Apr 29 19:25:13 2019
# On host DAVWANG4-M-1475 platform Darwin version 18.5.0 by user davwang4
# Using Python version 3.7.3 (default, Mar 27 2019, 09:23:15)
#
OctetString, Integer, ObjectIdentifier = mibBuilder.importSymbols("ASN1", "OctetString", "Integer", "ObjectIdentifier")
NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues")
ConstraintsIntersection, ValueRangeConstraint, ConstraintsUnion, SingleValueConstraint, ValueSizeConstraint = mibBuilder.importSymbols("ASN1-REFINEMENT", "ConstraintsIntersection", "ValueRangeConstraint", "ConstraintsUnion", "SingleValueConstraint", "ValueSizeConstraint")
hpnicfCommon, = mibBuilder.importSymbols("HPN-ICF-OID-MIB", "hpnicfCommon")
ModuleCompliance, NotificationGroup = mibBuilder.importSymbols("SNMPv2-CONF", "ModuleCompliance", "NotificationGroup")
MibIdentifier, ModuleIdentity, MibScalar, MibTable, MibTableRow, MibTableColumn, Bits, iso, Gauge32, ObjectIdentity, Integer32, Counter32, TimeTicks, Unsigned32, Counter64, NotificationType, IpAddress = mibBuilder.importSymbols("SNMPv2-SMI", "MibIdentifier", "ModuleIdentity", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "Bits", "iso", "Gauge32", "ObjectIdentity", "Integer32", "Counter32", "TimeTicks", "Unsigned32", "Counter64", "NotificationType", "IpAddress")
TextualConvention, DisplayString = mibBuilder.importSymbols("SNMPv2-TC", "TextualConvention", "DisplayString")
hpnicfCATVTransceiver = ModuleIdentity((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 2, 94))
if mibBuilder.loadTexts: hpnicfCATVTransceiver.setLastUpdated('200807251008Z')
if mibBuilder.loadTexts: hpnicfCATVTransceiver.setOrganization('')
hpnicfCATVTransStatus = MibIdentifier((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 2, 94, 1))
hpnicfCATVTransStatusScalarObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 2, 94, 1, 1))
hpnicfCATVTransState = MibScalar((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 2, 94, 1, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("on", 1), ("off", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: hpnicfCATVTransState.setStatus('current')
hpnicfCATVTransInputPwr = MibScalar((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 2, 94, 1, 1, 2), Integer32()).setUnits('dbm').setMaxAccess("readonly")
if mibBuilder.loadTexts: hpnicfCATVTransInputPwr.setStatus('current')
hpnicfCATVTransOutputLevel = MibScalar((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 2, 94, 1, 1, 3), Integer32()).setUnits('dbuv').setMaxAccess("readonly")
if mibBuilder.loadTexts: hpnicfCATVTransOutputLevel.setStatus('current')
hpnicfCATVTransTemperature = MibScalar((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 2, 94, 1, 1, 4), Integer32()).setUnits('centigrade').setMaxAccess("readonly")
if mibBuilder.loadTexts: hpnicfCATVTransTemperature.setStatus('current')
hpnicfCATVTransceiverMan = MibIdentifier((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 2, 94, 2))
hpnicfCATVTransCtrlScalarObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 2, 94, 2, 1))
hpnicfCATVTransInputPwrLowerThr = MibScalar((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 2, 94, 2, 1, 1), Integer32()).setUnits('dbm').setMaxAccess("readwrite")
if mibBuilder.loadTexts: hpnicfCATVTransInputPwrLowerThr.setStatus('current')
hpnicfCATVTransOutputLvlLowerThr = MibScalar((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 2, 94, 2, 1, 2), Integer32()).setUnits('dbuv').setMaxAccess("readwrite")
if mibBuilder.loadTexts: hpnicfCATVTransOutputLvlLowerThr.setStatus('current')
hpnicfCATVTransTempratureUpperThr = MibScalar((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 2, 94, 2, 1, 3), Integer32()).setUnits('').setMaxAccess("readwrite")
if mibBuilder.loadTexts: hpnicfCATVTransTempratureUpperThr.setStatus('current')
hpnicfCATVTansTrap = MibIdentifier((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 2, 94, 3))
hpnicfCATVTransTrapPrefix = MibIdentifier((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 2, 94, 3, 0))
hpnicfCATVTransInputPwrTrap = NotificationType((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 2, 94, 3, 0, 1)).setObjects(("HPN-ICF-CATV-TRANSCEIVER-MIB", "hpnicfCATVTransInputPwr"))
if mibBuilder.loadTexts: hpnicfCATVTransInputPwrTrap.setStatus('current')
hpnicfCATVTransInputPwrReTrap = NotificationType((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 2, 94, 3, 0, 2)).setObjects(("HPN-ICF-CATV-TRANSCEIVER-MIB", "hpnicfCATVTransInputPwr"))
if mibBuilder.loadTexts: hpnicfCATVTransInputPwrReTrap.setStatus('current')
hpnicfCATVTransOutputLvlTrap = NotificationType((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 2, 94, 3, 0, 3)).setObjects(("HPN-ICF-CATV-TRANSCEIVER-MIB", "hpnicfCATVTransOutputLevel"))
if mibBuilder.loadTexts: hpnicfCATVTransOutputLvlTrap.setStatus('current')
hpnicfCATVTransOutputLvlReTrap = NotificationType((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 2, 94, 3, 0, 4)).setObjects(("HPN-ICF-CATV-TRANSCEIVER-MIB", "hpnicfCATVTransOutputLevel"))
if mibBuilder.loadTexts: hpnicfCATVTransOutputLvlReTrap.setStatus('current')
hpnicfCATVTransTemperatureTrap = NotificationType((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 2, 94, 3, 0, 5)).setObjects(("HPN-ICF-CATV-TRANSCEIVER-MIB", "hpnicfCATVTransTemperature"))
if mibBuilder.loadTexts: hpnicfCATVTransTemperatureTrap.setStatus('current')
hpnicfCATVTransTemperatureReTrap = NotificationType((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 2, 94, 3, 0, 6)).setObjects(("HPN-ICF-CATV-TRANSCEIVER-MIB", "hpnicfCATVTransTemperature"))
if mibBuilder.loadTexts: hpnicfCATVTransTemperatureReTrap.setStatus('current')
mibBuilder.exportSymbols("HPN-ICF-CATV-TRANSCEIVER-MIB", hpnicfCATVTransTemperatureReTrap=hpnicfCATVTransTemperatureReTrap, hpnicfCATVTransCtrlScalarObjects=hpnicfCATVTransCtrlScalarObjects, hpnicfCATVTansTrap=hpnicfCATVTansTrap, hpnicfCATVTransInputPwrTrap=hpnicfCATVTransInputPwrTrap, hpnicfCATVTransStatus=hpnicfCATVTransStatus, hpnicfCATVTransTemperature=hpnicfCATVTransTemperature, hpnicfCATVTransInputPwrReTrap=hpnicfCATVTransInputPwrReTrap, hpnicfCATVTransInputPwr=hpnicfCATVTransInputPwr, PYSNMP_MODULE_ID=hpnicfCATVTransceiver, hpnicfCATVTransOutputLevel=hpnicfCATVTransOutputLevel, hpnicfCATVTransOutputLvlTrap=hpnicfCATVTransOutputLvlTrap, hpnicfCATVTransceiver=hpnicfCATVTransceiver, hpnicfCATVTransOutputLvlReTrap=hpnicfCATVTransOutputLvlReTrap, hpnicfCATVTransTrapPrefix=hpnicfCATVTransTrapPrefix, hpnicfCATVTransInputPwrLowerThr=hpnicfCATVTransInputPwrLowerThr, hpnicfCATVTransceiverMan=hpnicfCATVTransceiverMan, hpnicfCATVTransTemperatureTrap=hpnicfCATVTransTemperatureTrap, hpnicfCATVTransState=hpnicfCATVTransState, hpnicfCATVTransOutputLvlLowerThr=hpnicfCATVTransOutputLvlLowerThr, hpnicfCATVTransTempratureUpperThr=hpnicfCATVTransTempratureUpperThr, hpnicfCATVTransStatusScalarObjects=hpnicfCATVTransStatusScalarObjects)
| (octet_string, integer, object_identifier) = mibBuilder.importSymbols('ASN1', 'OctetString', 'Integer', 'ObjectIdentifier')
(named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues')
(constraints_intersection, value_range_constraint, constraints_union, single_value_constraint, value_size_constraint) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'ConstraintsIntersection', 'ValueRangeConstraint', 'ConstraintsUnion', 'SingleValueConstraint', 'ValueSizeConstraint')
(hpnicf_common,) = mibBuilder.importSymbols('HPN-ICF-OID-MIB', 'hpnicfCommon')
(module_compliance, notification_group) = mibBuilder.importSymbols('SNMPv2-CONF', 'ModuleCompliance', 'NotificationGroup')
(mib_identifier, module_identity, mib_scalar, mib_table, mib_table_row, mib_table_column, bits, iso, gauge32, object_identity, integer32, counter32, time_ticks, unsigned32, counter64, notification_type, ip_address) = mibBuilder.importSymbols('SNMPv2-SMI', 'MibIdentifier', 'ModuleIdentity', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn', 'Bits', 'iso', 'Gauge32', 'ObjectIdentity', 'Integer32', 'Counter32', 'TimeTicks', 'Unsigned32', 'Counter64', 'NotificationType', 'IpAddress')
(textual_convention, display_string) = mibBuilder.importSymbols('SNMPv2-TC', 'TextualConvention', 'DisplayString')
hpnicf_catv_transceiver = module_identity((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 2, 94))
if mibBuilder.loadTexts:
hpnicfCATVTransceiver.setLastUpdated('200807251008Z')
if mibBuilder.loadTexts:
hpnicfCATVTransceiver.setOrganization('')
hpnicf_catv_trans_status = mib_identifier((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 2, 94, 1))
hpnicf_catv_trans_status_scalar_objects = mib_identifier((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 2, 94, 1, 1))
hpnicf_catv_trans_state = mib_scalar((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 2, 94, 1, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('on', 1), ('off', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hpnicfCATVTransState.setStatus('current')
hpnicf_catv_trans_input_pwr = mib_scalar((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 2, 94, 1, 1, 2), integer32()).setUnits('dbm').setMaxAccess('readonly')
if mibBuilder.loadTexts:
hpnicfCATVTransInputPwr.setStatus('current')
hpnicf_catv_trans_output_level = mib_scalar((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 2, 94, 1, 1, 3), integer32()).setUnits('dbuv').setMaxAccess('readonly')
if mibBuilder.loadTexts:
hpnicfCATVTransOutputLevel.setStatus('current')
hpnicf_catv_trans_temperature = mib_scalar((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 2, 94, 1, 1, 4), integer32()).setUnits('centigrade').setMaxAccess('readonly')
if mibBuilder.loadTexts:
hpnicfCATVTransTemperature.setStatus('current')
hpnicf_catv_transceiver_man = mib_identifier((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 2, 94, 2))
hpnicf_catv_trans_ctrl_scalar_objects = mib_identifier((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 2, 94, 2, 1))
hpnicf_catv_trans_input_pwr_lower_thr = mib_scalar((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 2, 94, 2, 1, 1), integer32()).setUnits('dbm').setMaxAccess('readwrite')
if mibBuilder.loadTexts:
hpnicfCATVTransInputPwrLowerThr.setStatus('current')
hpnicf_catv_trans_output_lvl_lower_thr = mib_scalar((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 2, 94, 2, 1, 2), integer32()).setUnits('dbuv').setMaxAccess('readwrite')
if mibBuilder.loadTexts:
hpnicfCATVTransOutputLvlLowerThr.setStatus('current')
hpnicf_catv_trans_temprature_upper_thr = mib_scalar((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 2, 94, 2, 1, 3), integer32()).setUnits('').setMaxAccess('readwrite')
if mibBuilder.loadTexts:
hpnicfCATVTransTempratureUpperThr.setStatus('current')
hpnicf_catv_tans_trap = mib_identifier((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 2, 94, 3))
hpnicf_catv_trans_trap_prefix = mib_identifier((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 2, 94, 3, 0))
hpnicf_catv_trans_input_pwr_trap = notification_type((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 2, 94, 3, 0, 1)).setObjects(('HPN-ICF-CATV-TRANSCEIVER-MIB', 'hpnicfCATVTransInputPwr'))
if mibBuilder.loadTexts:
hpnicfCATVTransInputPwrTrap.setStatus('current')
hpnicf_catv_trans_input_pwr_re_trap = notification_type((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 2, 94, 3, 0, 2)).setObjects(('HPN-ICF-CATV-TRANSCEIVER-MIB', 'hpnicfCATVTransInputPwr'))
if mibBuilder.loadTexts:
hpnicfCATVTransInputPwrReTrap.setStatus('current')
hpnicf_catv_trans_output_lvl_trap = notification_type((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 2, 94, 3, 0, 3)).setObjects(('HPN-ICF-CATV-TRANSCEIVER-MIB', 'hpnicfCATVTransOutputLevel'))
if mibBuilder.loadTexts:
hpnicfCATVTransOutputLvlTrap.setStatus('current')
hpnicf_catv_trans_output_lvl_re_trap = notification_type((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 2, 94, 3, 0, 4)).setObjects(('HPN-ICF-CATV-TRANSCEIVER-MIB', 'hpnicfCATVTransOutputLevel'))
if mibBuilder.loadTexts:
hpnicfCATVTransOutputLvlReTrap.setStatus('current')
hpnicf_catv_trans_temperature_trap = notification_type((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 2, 94, 3, 0, 5)).setObjects(('HPN-ICF-CATV-TRANSCEIVER-MIB', 'hpnicfCATVTransTemperature'))
if mibBuilder.loadTexts:
hpnicfCATVTransTemperatureTrap.setStatus('current')
hpnicf_catv_trans_temperature_re_trap = notification_type((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 2, 94, 3, 0, 6)).setObjects(('HPN-ICF-CATV-TRANSCEIVER-MIB', 'hpnicfCATVTransTemperature'))
if mibBuilder.loadTexts:
hpnicfCATVTransTemperatureReTrap.setStatus('current')
mibBuilder.exportSymbols('HPN-ICF-CATV-TRANSCEIVER-MIB', hpnicfCATVTransTemperatureReTrap=hpnicfCATVTransTemperatureReTrap, hpnicfCATVTransCtrlScalarObjects=hpnicfCATVTransCtrlScalarObjects, hpnicfCATVTansTrap=hpnicfCATVTansTrap, hpnicfCATVTransInputPwrTrap=hpnicfCATVTransInputPwrTrap, hpnicfCATVTransStatus=hpnicfCATVTransStatus, hpnicfCATVTransTemperature=hpnicfCATVTransTemperature, hpnicfCATVTransInputPwrReTrap=hpnicfCATVTransInputPwrReTrap, hpnicfCATVTransInputPwr=hpnicfCATVTransInputPwr, PYSNMP_MODULE_ID=hpnicfCATVTransceiver, hpnicfCATVTransOutputLevel=hpnicfCATVTransOutputLevel, hpnicfCATVTransOutputLvlTrap=hpnicfCATVTransOutputLvlTrap, hpnicfCATVTransceiver=hpnicfCATVTransceiver, hpnicfCATVTransOutputLvlReTrap=hpnicfCATVTransOutputLvlReTrap, hpnicfCATVTransTrapPrefix=hpnicfCATVTransTrapPrefix, hpnicfCATVTransInputPwrLowerThr=hpnicfCATVTransInputPwrLowerThr, hpnicfCATVTransceiverMan=hpnicfCATVTransceiverMan, hpnicfCATVTransTemperatureTrap=hpnicfCATVTransTemperatureTrap, hpnicfCATVTransState=hpnicfCATVTransState, hpnicfCATVTransOutputLvlLowerThr=hpnicfCATVTransOutputLvlLowerThr, hpnicfCATVTransTempratureUpperThr=hpnicfCATVTransTempratureUpperThr, hpnicfCATVTransStatusScalarObjects=hpnicfCATVTransStatusScalarObjects) |
'''
Defines quality control settings for different variables
- Section 1 defines ranges for different variables
- Section 2 associated a name with the range
'''
#-------------- Section 1 -------------#
#Test ranges
#Units - N/A
#Ref - XXXX
testVar = {
'good':{
'range':[(0,5),(14,16)],
'rate':[(0,1.4)],
'flat':[(0,15)]
},
'suspicious':{
'range':[(11,13)],
'rate':[(1.4,2)],
'flat':[(15,30)]
},
'ignore_vals':{
'range':[],
'rate':[],
'flat':[]
}
}
#2m air temperature
#Units - C, C/min, minutes
#Ref - XXXX
airT = {
'good':{
'range':[(-30,45)],
'rate':[(-1.4,1.4)],
'flat':[(0,20)]
},
'suspicious':{
'range':[(-40,-30),(45,50)],
'rate':[(1.4,2),(-2,-1.4)],
'flat':[(20,35)]
},
'ignore_vals':{
'range':[],
'rate':[],
'flat':[]
}
}
#2m humidity in open air
#Units - %, %/min, minutes
#Ref - XXXX
rh = {
'good':{
'range':[(5,100)],
'rate':[(-4.4,4.4)],
'flat':[(0,15)]
},
'suspicious':{
'range':[(0,5),(100,105)],
'rate':[(4.4,5),(-5,-4.4)],
'flat':[(15,30)]
},
'ignore_vals':{
'range':[],
'rate':[],
'flat':[0,100]
}
}
#2m barometric pressure in open air
#This could potentially be a function of elevation
#Units - mb, mb/min, minutes
#Ref - XXXX
bp = {
'good':{
'range':[(700,1050)],
'rate':[(-1,1)],
'flat':[(0,40)]
},
'suspicious':{
'range':[],
'rate':[],
'flat':[(40,60)]
},
'ignore_vals':{
'range':[],
'rate':[],
'flat':[0]
}
}
#Wind Speed
#Units - m/s, m/s per min, minutes
#Ref - XXXX
ws = {
'good':{
'range':[(0,40)],
'rate':[(-6,6)],
'flat':[(0,60)]
},
'suspicious':{
'range':[],
'rate':[],
'flat':[(60,90)]
},
'ignore_vals':{
'range':[],
'rate':[],
'flat':[0]
}
}
#Wind Gust
#Units - m/s, m/s per min, minutes
#Ref - XXXX
wg = {
'good':{
'range':[(10,60)],
'rate':[(-10,10)],
'flat':[] #Two days without a gust OK
},
'suspicious':{
'range':[],
'rate':[],
'flat':[]
},
'ignore_vals':{
'range':[],
'rate':[],
'flat':[0]
}
}
#Wind Direction
#Units - mb, mb/min, minutes
#Ref - XXXX
wd = {
'good':{
'range':[(0,360)],
'rate':[(-360,360)],
'flat':[(0,15)]
},
'suspicious':{
'range':[],
'rate':[],
'flat':[(15,30)]
},
'ignore_vals':{
'range':[],
'rate':[],
'flat':[]
}
}
#Solar Radiation
#Units - W/m2, W/m2 per min, minutes
#Ref - XXXX
swrad = {
'good':{
'range':[(0,1500)],
'rate':[(-160,160)],
'flat':[(0,15)]
},
'suspicious':{
'range':[],
'rate':[],
'flat':[(15,30)]
},
'ignore_vals':{
'range':[],
'rate':[],
'flat':[0]
}
}
#Precipitation rate
#Units - in/hr, none, minutes
#Ref - Fiebrich et al. 2010 for the most part
precip = {
'good':{
'range':[(0,6)],
'rate':[(-0.6,0.6)],
'flat':[(0,60)]
},
'suspicious':{
'range':[(6,24)],
'rate':[],
'flat':[(60,90)]
},
'ignore_vals':{
'range':[],
'rate':[],
'flat':[0]
}
}
#---------------- Section 2 ----------------
qcsettings = {
'testVar':testVar,
'air_temperature':airT,
'humidity':rh,
'air_pressure':bp,
'wind_speed':ws,
'wind_direction':wd,
'solar_radiation':swrad,
'precipitation':precip
} | """
Defines quality control settings for different variables
- Section 1 defines ranges for different variables
- Section 2 associated a name with the range
"""
test_var = {'good': {'range': [(0, 5), (14, 16)], 'rate': [(0, 1.4)], 'flat': [(0, 15)]}, 'suspicious': {'range': [(11, 13)], 'rate': [(1.4, 2)], 'flat': [(15, 30)]}, 'ignore_vals': {'range': [], 'rate': [], 'flat': []}}
air_t = {'good': {'range': [(-30, 45)], 'rate': [(-1.4, 1.4)], 'flat': [(0, 20)]}, 'suspicious': {'range': [(-40, -30), (45, 50)], 'rate': [(1.4, 2), (-2, -1.4)], 'flat': [(20, 35)]}, 'ignore_vals': {'range': [], 'rate': [], 'flat': []}}
rh = {'good': {'range': [(5, 100)], 'rate': [(-4.4, 4.4)], 'flat': [(0, 15)]}, 'suspicious': {'range': [(0, 5), (100, 105)], 'rate': [(4.4, 5), (-5, -4.4)], 'flat': [(15, 30)]}, 'ignore_vals': {'range': [], 'rate': [], 'flat': [0, 100]}}
bp = {'good': {'range': [(700, 1050)], 'rate': [(-1, 1)], 'flat': [(0, 40)]}, 'suspicious': {'range': [], 'rate': [], 'flat': [(40, 60)]}, 'ignore_vals': {'range': [], 'rate': [], 'flat': [0]}}
ws = {'good': {'range': [(0, 40)], 'rate': [(-6, 6)], 'flat': [(0, 60)]}, 'suspicious': {'range': [], 'rate': [], 'flat': [(60, 90)]}, 'ignore_vals': {'range': [], 'rate': [], 'flat': [0]}}
wg = {'good': {'range': [(10, 60)], 'rate': [(-10, 10)], 'flat': []}, 'suspicious': {'range': [], 'rate': [], 'flat': []}, 'ignore_vals': {'range': [], 'rate': [], 'flat': [0]}}
wd = {'good': {'range': [(0, 360)], 'rate': [(-360, 360)], 'flat': [(0, 15)]}, 'suspicious': {'range': [], 'rate': [], 'flat': [(15, 30)]}, 'ignore_vals': {'range': [], 'rate': [], 'flat': []}}
swrad = {'good': {'range': [(0, 1500)], 'rate': [(-160, 160)], 'flat': [(0, 15)]}, 'suspicious': {'range': [], 'rate': [], 'flat': [(15, 30)]}, 'ignore_vals': {'range': [], 'rate': [], 'flat': [0]}}
precip = {'good': {'range': [(0, 6)], 'rate': [(-0.6, 0.6)], 'flat': [(0, 60)]}, 'suspicious': {'range': [(6, 24)], 'rate': [], 'flat': [(60, 90)]}, 'ignore_vals': {'range': [], 'rate': [], 'flat': [0]}}
qcsettings = {'testVar': testVar, 'air_temperature': airT, 'humidity': rh, 'air_pressure': bp, 'wind_speed': ws, 'wind_direction': wd, 'solar_radiation': swrad, 'precipitation': precip} |
#!/usr/bin/env python
# -*- coding: utf-8 -*-
LABEL_DIRECTORY = 'label' # 'relabel'
IMAGE_DIRECTORY = '.*wsi.*'
LABEL_DIRECTORIES = [
'label',
'relabel',
]
LABEL_FILENAME = 'label.tiff'
MASKED_IMAGE_FILENAME = 'masked.tiff'
# Constants representing the setting keys for this plugin
class PluginSettings(object):
RNASCOPE_PIXELS_PER_VIRION = 'RNAScope.pixels_per_virion'
RNASCOPE_PIXEL_THRESHOLD = 'RNAScope.pixel_threshold'
RNASCOPE_ROUNDNESS_THRESHOLD = 'RNAScope.roundness_threshold'
RNASCOPE_SINGLE_VIRION_COLOR = 'RNAScope.single_virion.color'
RNASCOPE_PRODUCTIVE_INFECTION_COLOR = 'RNAScope.productive_infection.color'
RNASCOPE_AGGREGATE_VIRIONS_COLOR = 'RNAScope.aggregate_virions.color'
| label_directory = 'label'
image_directory = '.*wsi.*'
label_directories = ['label', 'relabel']
label_filename = 'label.tiff'
masked_image_filename = 'masked.tiff'
class Pluginsettings(object):
rnascope_pixels_per_virion = 'RNAScope.pixels_per_virion'
rnascope_pixel_threshold = 'RNAScope.pixel_threshold'
rnascope_roundness_threshold = 'RNAScope.roundness_threshold'
rnascope_single_virion_color = 'RNAScope.single_virion.color'
rnascope_productive_infection_color = 'RNAScope.productive_infection.color'
rnascope_aggregate_virions_color = 'RNAScope.aggregate_virions.color' |
def set_referenced_values(self,jc):
print('--tablename>',self.name,self.referencing_columns)
# if self.name == 'lic__products':
# tbl_idx= next((i for i, item in enumerate(jc.tables) if item.name == "prod__packs"), -1)
# print('-->',jc.tables[tbl_idx].current_row)
#print(self.name,self.referencing_columns)
pathids = self.gen_pathids_fullpath()
# print('????????')
# print(self.referencing_columns)
# update tab.current_row
rc_with_values = copy.deepcopy(self.referencing_columns)
# for dc in self.current_row:
# print(dc)
# quit()
for rc in rc_with_values:
for _datacell in self.current_row:
if rc["referenced_columnname"] == _datacell.column_name:
rc["referenced_value"] = _datacell.value
# prefix @ for the source of colmap
rc["referenced_columnname"] = '@' + _datacell.column_name
break
print("!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!")
print('rc_with_values:',rc_with_values)
# quit()
# example of content for rc_with_values:
# [{'referencing_tablename': 'Manufacturers', 'referenced_tablename': 'artg_entry', 'referenced_columnname': 'LicenceId', 'referenced_value': '92017'}
# ,{'referencing_tablename': 'Manufacturers', 'referenced_tablename': 'artg_entry', 'referenced_columnname': 'LicenceClass', 'referenced_value': 'CLAS1'}]
# distribute to any referencing tables:
for _rcv in rc_with_values:
tbl_idx= next((i for i, item in enumerate(jc.tables) if item.name == _rcv["referencing_tablename"]), -1)
for rowid in range(jc.tables[tbl_idx].last_ref_updates_rowid,len(jc.tables[tbl_idx].rows)):
#print('----counter--->',self.name,rowid,jc.tables[tbl_idx].last_ref_updates_rowid)
row = jc.tables[tbl_idx].rows[rowid]
#for rowid,row in jc.tables[tbl_idx].rows.items():
# print('row---->',rowid,row.print_kv())
# check if the row contains the same pathid
matches = 0
for p in pathids:
#print('--->p',p)
for k,v in p.items():
for dc in row.datarow:
# if this dc is a referenced table
if dc.data_source != dc.table_name:
# then match the data_source and value
# print(dc)
if k == dc.data_source and v == dc.value:
# # print('-->match',dc)
matches += 1
if matches == len(pathids):
#print('!!!! matched')
dc = Data_Cell(self.name,self.name,_rcv["referenced_columnname"],_rcv["referenced_value"])
row.datarow.append(dc)
self.counter += 1
if self.is_primary:
jc.tables[tbl_idx].last_ref_updates_rowid = rowid
# tag row that is already process, so the loop is shorter when it repeats
#update the current_row
cr_matches = 0
for p in pathids:
#print('--->p',p)
for k,v in p.items():
for dc in jc.tables[tbl_idx].current_row:
# if this dc is a referenced table
if dc.data_source != dc.table_name:
if k == dc.data_source and v == dc.value:
# then match the data_source and value
#print('------match-----',dc)
cr_matches += 1
if cr_matches == len(pathids):
dc = Data_Cell(self.name,self.name,_rcv["referenced_columnname"],_rcv["referenced_value"])
jc.tables[tbl_idx].current_row.append(dc)
self.counter += 1
def gen_pathids(self):
#example of datapath_list ['Results', 0, 'Manufacturers', 1, 'Address', 'AddressLine1']
#example of base_path ['Results', '#', 'Manufacturers', '#']
#example of return [{Result=0},{Manufacturers=1}]
pathids = []
for i,p in enumerate(self.base_path_list):
if p != "#":
_pdict = {p:self.current_datapath[i+1]}
pathids.append(_pdict)
return pathids
# pathids = []
# base_path_length = int(len(self.base_path_list)/2)
# for i in range (base_path_length):
# print(i)
# print(pathids)
# quit()
# return pathids
def set_intertables_column_copies(self):
for tab in self.tables:
if len(tab.columns_tocopy) > 0:
#print(tab.name,tab.columns_tocopy)
for ctc in tab.columns_tocopy:
_rel_dict = {}
_rel_dict["referencing_tablename"] = tab.name
_rel_dict["referenced_tablename"] = ctc["tablename"]
_rel_dict["referenced_columnname"] = ctc["columnname"]
self.intertables_column_copies.append(_rel_dict)
def allocate_referencing_columns(self):
for tab in self.tables:
_referencing_columns = []
for ic in self.intertables_column_copies:
if tab.name == ic["referenced_tablename"]:
tab.referencing_columns.append(ic)
def allocate_referencing_tables(self):
# use the list in referencing tables and populate`
# the tables
for tab in self.tables:
_referencing_tables = []
for rc in tab.referencing_columns:
#print(' rc:',rc)
_referencing_tables.append(rc["referencing_tablename"])
if len(_referencing_tables) > 0:
_referencing_tables_unique = set(_referencing_tables)
for _rt in _referencing_tables_unique:
tab.referencing_tables.append(_rt)
# for tab in jc.tables:
# if len(tab.columns_tocopy) > 0:
# #for coltc in jt.tables[1].columns_tocopy:
# for coltc in tab.columns_tocopy:
# #print(tab.name,'columns tocopy',coltc)
# #loop through target and source table and do the matching
# tbl_idx_s= next((i for i, item in enumerate(jc.tables) if item.name == coltc["tablename"]), -1)
# # print(tbl_idx_s)
# # quit()
# jc.tables[tbl_idx_s].last_ref_updates_rowid = 0
# ########## target table ##########
# #for idx_t, row_t in jt.tables[1].rows.items():
# for idx_t, row_t in tab.rows.items():
# #print(' prod',idx,row.print_kv())
# ########## source table ##########
# # for idx_s, row_s in jt.tables[tbl_idx_s].rows.items():
# for idx_s in range(jc.tables[tbl_idx_s].last_ref_updates_rowid,len(jc.tables[tbl_idx_s].rows)):
# # match the target and the source based upon provided keys
# row_s = jc.tables[tbl_idx_s].rows[idx_s]
# matches = 0
# for k in coltc["keys"]:
# # print('key ',k)
# if row_t.get_value(k) == row_s.get_value(k):
# matches += 1
# # print('! matching...')
# if matches == len(coltc["keys"]):
# # this is a match! so make a copy
# # print('!!!! a match')
# colname_toadd = '@' + coltc["columnname"] #prefix with @ to differentiate with jsonpath
# dc = jsontabs.Data_Cell(jt.tables[tbl_idx_s].name,tab.name,colname_toadd,row_s.get_value(coltc["columnname"]))
# row_t.add_dc(dc)
#
# #flag last row
# jc.tables[tbl_idx_s].last_ref_updates_rowid = idx_s
| def set_referenced_values(self, jc):
print('--tablename>', self.name, self.referencing_columns)
pathids = self.gen_pathids_fullpath()
rc_with_values = copy.deepcopy(self.referencing_columns)
for rc in rc_with_values:
for _datacell in self.current_row:
if rc['referenced_columnname'] == _datacell.column_name:
rc['referenced_value'] = _datacell.value
rc['referenced_columnname'] = '@' + _datacell.column_name
break
print('!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!')
print('rc_with_values:', rc_with_values)
for _rcv in rc_with_values:
tbl_idx = next((i for (i, item) in enumerate(jc.tables) if item.name == _rcv['referencing_tablename']), -1)
for rowid in range(jc.tables[tbl_idx].last_ref_updates_rowid, len(jc.tables[tbl_idx].rows)):
row = jc.tables[tbl_idx].rows[rowid]
matches = 0
for p in pathids:
for (k, v) in p.items():
for dc in row.datarow:
if dc.data_source != dc.table_name:
if k == dc.data_source and v == dc.value:
matches += 1
if matches == len(pathids):
dc = data__cell(self.name, self.name, _rcv['referenced_columnname'], _rcv['referenced_value'])
row.datarow.append(dc)
self.counter += 1
if self.is_primary:
jc.tables[tbl_idx].last_ref_updates_rowid = rowid
cr_matches = 0
for p in pathids:
for (k, v) in p.items():
for dc in jc.tables[tbl_idx].current_row:
if dc.data_source != dc.table_name:
if k == dc.data_source and v == dc.value:
cr_matches += 1
if cr_matches == len(pathids):
dc = data__cell(self.name, self.name, _rcv['referenced_columnname'], _rcv['referenced_value'])
jc.tables[tbl_idx].current_row.append(dc)
self.counter += 1
def gen_pathids(self):
pathids = []
for (i, p) in enumerate(self.base_path_list):
if p != '#':
_pdict = {p: self.current_datapath[i + 1]}
pathids.append(_pdict)
return pathids
def set_intertables_column_copies(self):
for tab in self.tables:
if len(tab.columns_tocopy) > 0:
for ctc in tab.columns_tocopy:
_rel_dict = {}
_rel_dict['referencing_tablename'] = tab.name
_rel_dict['referenced_tablename'] = ctc['tablename']
_rel_dict['referenced_columnname'] = ctc['columnname']
self.intertables_column_copies.append(_rel_dict)
def allocate_referencing_columns(self):
for tab in self.tables:
_referencing_columns = []
for ic in self.intertables_column_copies:
if tab.name == ic['referenced_tablename']:
tab.referencing_columns.append(ic)
def allocate_referencing_tables(self):
for tab in self.tables:
_referencing_tables = []
for rc in tab.referencing_columns:
_referencing_tables.append(rc['referencing_tablename'])
if len(_referencing_tables) > 0:
_referencing_tables_unique = set(_referencing_tables)
for _rt in _referencing_tables_unique:
tab.referencing_tables.append(_rt) |
# AUTOGENERATED BY NBDEV! DO NOT EDIT!
__all__ = ["index", "modules", "custom_doc_links", "git_url"]
index = {"say_hello": "00_hello.ipynb"}
modules = ["hello.py"]
doc_url = "https://seanczak.github.io/torch_series_blog/"
git_url = "https://github.com/seanczak/torch_series_blog/tree/master/"
def custom_doc_links(name): return None
| __all__ = ['index', 'modules', 'custom_doc_links', 'git_url']
index = {'say_hello': '00_hello.ipynb'}
modules = ['hello.py']
doc_url = 'https://seanczak.github.io/torch_series_blog/'
git_url = 'https://github.com/seanczak/torch_series_blog/tree/master/'
def custom_doc_links(name):
return None |
class Solution:
def findDuplicate(self, nums: List[int]) -> int:
for i in range(0,len(nums)):
if(nums[abs(nums[i])]<0):
return abs(nums[i])
else:
nums[abs(nums[i])] = -nums[abs(nums[i])]
| class Solution:
def find_duplicate(self, nums: List[int]) -> int:
for i in range(0, len(nums)):
if nums[abs(nums[i])] < 0:
return abs(nums[i])
else:
nums[abs(nums[i])] = -nums[abs(nums[i])] |
'''
XlPy/matched/Proteome_Discoverer
________________________________
Utilities to parse Proteome Discoverer file formats and export formats.
Proteome Discoverer is a trademark of Thermo Scientific and
is not affiliated with nor endorse XL Discoverer.
Their website can be found here:
https://www.thermoscientific.com/en/product/proteome-
discoverer-software.html
:copyright: (c) 2015 The Regents of the University of California.
:license: GNU GPL, see licenses/GNU GPLv3.txt for more details.
'''
__all__ = [
'base', 'core', 'mods', 'pepxml', 'sqlite'
]
| """
XlPy/matched/Proteome_Discoverer
________________________________
Utilities to parse Proteome Discoverer file formats and export formats.
Proteome Discoverer is a trademark of Thermo Scientific and
is not affiliated with nor endorse XL Discoverer.
Their website can be found here:
https://www.thermoscientific.com/en/product/proteome-
discoverer-software.html
:copyright: (c) 2015 The Regents of the University of California.
:license: GNU GPL, see licenses/GNU GPLv3.txt for more details.
"""
__all__ = ['base', 'core', 'mods', 'pepxml', 'sqlite'] |
# Python - 3.6.0
test.assert_equals(len(websites), 1000)
test.assert_equals(type(websites), list)
test.assert_equals(list(set(websites)), ['codewars'])
| test.assert_equals(len(websites), 1000)
test.assert_equals(type(websites), list)
test.assert_equals(list(set(websites)), ['codewars']) |
notes=[0]*10
while True:
command=input()
if command!="End":
tokens=command.split("-")
priority=int(tokens[0])-1
note=tokens[1]
notes.pop(priority)
notes.insert(priority, note)
else:
break
res=[element for element in notes if element != 0]
print(res)
| notes = [0] * 10
while True:
command = input()
if command != 'End':
tokens = command.split('-')
priority = int(tokens[0]) - 1
note = tokens[1]
notes.pop(priority)
notes.insert(priority, note)
else:
break
res = [element for element in notes if element != 0]
print(res) |
class F:
def f(x):
x: int = 42
# EXPECTED:
[
~SETUP_ANNOTATIONS(0),
]
| class F:
def f(x):
x: int = 42
[~setup_annotations(0)] |
class CONST():
Ok = 0
UnKnown = 1000
TimeOutError = 1001
NoUser = 2000
UserRepeat = 2001
AuthenticationField = 2002
UpdateField = 2003
LogField = 2004
NoMore = 2005
FileInvalid = 3000
DeviceError = 4000
def __setattr__(self,*_):
pass
| class Const:
ok = 0
un_known = 1000
time_out_error = 1001
no_user = 2000
user_repeat = 2001
authentication_field = 2002
update_field = 2003
log_field = 2004
no_more = 2005
file_invalid = 3000
device_error = 4000
def __setattr__(self, *_):
pass |
n = int(input())
i = s = 1
while s < n:
s += 6 * i
i += 1
print(i)
| n = int(input())
i = s = 1
while s < n:
s += 6 * i
i += 1
print(i) |
# A program to increment a string by 1
data = "1foobar001"
def increment_string(strng):
strngSplit = list(strng)
for i in range(len(strng)):
if not str.isdigit(strngSplit[i]):
strngSplit.append("1")
return strngSplit
print(increment_string(data))
| data = '1foobar001'
def increment_string(strng):
strng_split = list(strng)
for i in range(len(strng)):
if not str.isdigit(strngSplit[i]):
strngSplit.append('1')
return strngSplit
print(increment_string(data)) |
class TreeNode:
def __init__(self, val=0, left=None, right=None):
self.val = val
self.left = left
self.right = right
class Solution:
def bstToGst(self, root: TreeNode) -> TreeNode:
s = 0
def traverse(node):
nonlocal s
if not node:
return
traverse(node.right)
node.val += s
s = node.val
traverse(node.right)
traverse(root)
return root
| class Treenode:
def __init__(self, val=0, left=None, right=None):
self.val = val
self.left = left
self.right = right
class Solution:
def bst_to_gst(self, root: TreeNode) -> TreeNode:
s = 0
def traverse(node):
nonlocal s
if not node:
return
traverse(node.right)
node.val += s
s = node.val
traverse(node.right)
traverse(root)
return root |
data = (
'Yun ', # 0x00
'Bei ', # 0x01
'Ang ', # 0x02
'Ze ', # 0x03
'Ban ', # 0x04
'Jie ', # 0x05
'Kun ', # 0x06
'Sheng ', # 0x07
'Hu ', # 0x08
'Fang ', # 0x09
'Hao ', # 0x0a
'Gui ', # 0x0b
'Chang ', # 0x0c
'Xuan ', # 0x0d
'Ming ', # 0x0e
'Hun ', # 0x0f
'Fen ', # 0x10
'Qin ', # 0x11
'Hu ', # 0x12
'Yi ', # 0x13
'Xi ', # 0x14
'Xin ', # 0x15
'Yan ', # 0x16
'Ze ', # 0x17
'Fang ', # 0x18
'Tan ', # 0x19
'Shen ', # 0x1a
'Ju ', # 0x1b
'Yang ', # 0x1c
'Zan ', # 0x1d
'Bing ', # 0x1e
'Xing ', # 0x1f
'Ying ', # 0x20
'Xuan ', # 0x21
'Pei ', # 0x22
'Zhen ', # 0x23
'Ling ', # 0x24
'Chun ', # 0x25
'Hao ', # 0x26
'Mei ', # 0x27
'Zuo ', # 0x28
'Mo ', # 0x29
'Bian ', # 0x2a
'Xu ', # 0x2b
'Hun ', # 0x2c
'Zhao ', # 0x2d
'Zong ', # 0x2e
'Shi ', # 0x2f
'Shi ', # 0x30
'Yu ', # 0x31
'Fei ', # 0x32
'Die ', # 0x33
'Mao ', # 0x34
'Ni ', # 0x35
'Chang ', # 0x36
'Wen ', # 0x37
'Dong ', # 0x38
'Ai ', # 0x39
'Bing ', # 0x3a
'Ang ', # 0x3b
'Zhou ', # 0x3c
'Long ', # 0x3d
'Xian ', # 0x3e
'Kuang ', # 0x3f
'Tiao ', # 0x40
'Chao ', # 0x41
'Shi ', # 0x42
'Huang ', # 0x43
'Huang ', # 0x44
'Xuan ', # 0x45
'Kui ', # 0x46
'Xu ', # 0x47
'Jiao ', # 0x48
'Jin ', # 0x49
'Zhi ', # 0x4a
'Jin ', # 0x4b
'Shang ', # 0x4c
'Tong ', # 0x4d
'Hong ', # 0x4e
'Yan ', # 0x4f
'Gai ', # 0x50
'Xiang ', # 0x51
'Shai ', # 0x52
'Xiao ', # 0x53
'Ye ', # 0x54
'Yun ', # 0x55
'Hui ', # 0x56
'Han ', # 0x57
'Han ', # 0x58
'Jun ', # 0x59
'Wan ', # 0x5a
'Xian ', # 0x5b
'Kun ', # 0x5c
'Zhou ', # 0x5d
'Xi ', # 0x5e
'Cheng ', # 0x5f
'Sheng ', # 0x60
'Bu ', # 0x61
'Zhe ', # 0x62
'Zhe ', # 0x63
'Wu ', # 0x64
'Han ', # 0x65
'Hui ', # 0x66
'Hao ', # 0x67
'Chen ', # 0x68
'Wan ', # 0x69
'Tian ', # 0x6a
'Zhuo ', # 0x6b
'Zui ', # 0x6c
'Zhou ', # 0x6d
'Pu ', # 0x6e
'Jing ', # 0x6f
'Xi ', # 0x70
'Shan ', # 0x71
'Yi ', # 0x72
'Xi ', # 0x73
'Qing ', # 0x74
'Qi ', # 0x75
'Jing ', # 0x76
'Gui ', # 0x77
'Zhen ', # 0x78
'Yi ', # 0x79
'Zhi ', # 0x7a
'An ', # 0x7b
'Wan ', # 0x7c
'Lin ', # 0x7d
'Liang ', # 0x7e
'Chang ', # 0x7f
'Wang ', # 0x80
'Xiao ', # 0x81
'Zan ', # 0x82
'Hi ', # 0x83
'Xuan ', # 0x84
'Xuan ', # 0x85
'Yi ', # 0x86
'Xia ', # 0x87
'Yun ', # 0x88
'Hui ', # 0x89
'Fu ', # 0x8a
'Min ', # 0x8b
'Kui ', # 0x8c
'He ', # 0x8d
'Ying ', # 0x8e
'Du ', # 0x8f
'Wei ', # 0x90
'Shu ', # 0x91
'Qing ', # 0x92
'Mao ', # 0x93
'Nan ', # 0x94
'Jian ', # 0x95
'Nuan ', # 0x96
'An ', # 0x97
'Yang ', # 0x98
'Chun ', # 0x99
'Yao ', # 0x9a
'Suo ', # 0x9b
'Jin ', # 0x9c
'Ming ', # 0x9d
'Jiao ', # 0x9e
'Kai ', # 0x9f
'Gao ', # 0xa0
'Weng ', # 0xa1
'Chang ', # 0xa2
'Qi ', # 0xa3
'Hao ', # 0xa4
'Yan ', # 0xa5
'Li ', # 0xa6
'Ai ', # 0xa7
'Ji ', # 0xa8
'Gui ', # 0xa9
'Men ', # 0xaa
'Zan ', # 0xab
'Xie ', # 0xac
'Hao ', # 0xad
'Mu ', # 0xae
'Mo ', # 0xaf
'Cong ', # 0xb0
'Ni ', # 0xb1
'Zhang ', # 0xb2
'Hui ', # 0xb3
'Bao ', # 0xb4
'Han ', # 0xb5
'Xuan ', # 0xb6
'Chuan ', # 0xb7
'Liao ', # 0xb8
'Xian ', # 0xb9
'Dan ', # 0xba
'Jing ', # 0xbb
'Pie ', # 0xbc
'Lin ', # 0xbd
'Tun ', # 0xbe
'Xi ', # 0xbf
'Yi ', # 0xc0
'Ji ', # 0xc1
'Huang ', # 0xc2
'Tai ', # 0xc3
'Ye ', # 0xc4
'Ye ', # 0xc5
'Li ', # 0xc6
'Tan ', # 0xc7
'Tong ', # 0xc8
'Xiao ', # 0xc9
'Fei ', # 0xca
'Qin ', # 0xcb
'Zhao ', # 0xcc
'Hao ', # 0xcd
'Yi ', # 0xce
'Xiang ', # 0xcf
'Xing ', # 0xd0
'Sen ', # 0xd1
'Jiao ', # 0xd2
'Bao ', # 0xd3
'Jing ', # 0xd4
'Yian ', # 0xd5
'Ai ', # 0xd6
'Ye ', # 0xd7
'Ru ', # 0xd8
'Shu ', # 0xd9
'Meng ', # 0xda
'Xun ', # 0xdb
'Yao ', # 0xdc
'Pu ', # 0xdd
'Li ', # 0xde
'Chen ', # 0xdf
'Kuang ', # 0xe0
'Die ', # 0xe1
'[?] ', # 0xe2
'Yan ', # 0xe3
'Huo ', # 0xe4
'Lu ', # 0xe5
'Xi ', # 0xe6
'Rong ', # 0xe7
'Long ', # 0xe8
'Nang ', # 0xe9
'Luo ', # 0xea
'Luan ', # 0xeb
'Shai ', # 0xec
'Tang ', # 0xed
'Yan ', # 0xee
'Chu ', # 0xef
'Yue ', # 0xf0
'Yue ', # 0xf1
'Qu ', # 0xf2
'Yi ', # 0xf3
'Geng ', # 0xf4
'Ye ', # 0xf5
'Hu ', # 0xf6
'He ', # 0xf7
'Shu ', # 0xf8
'Cao ', # 0xf9
'Cao ', # 0xfa
'Noboru ', # 0xfb
'Man ', # 0xfc
'Ceng ', # 0xfd
'Ceng ', # 0xfe
'Ti ', # 0xff
)
| data = ('Yun ', 'Bei ', 'Ang ', 'Ze ', 'Ban ', 'Jie ', 'Kun ', 'Sheng ', 'Hu ', 'Fang ', 'Hao ', 'Gui ', 'Chang ', 'Xuan ', 'Ming ', 'Hun ', 'Fen ', 'Qin ', 'Hu ', 'Yi ', 'Xi ', 'Xin ', 'Yan ', 'Ze ', 'Fang ', 'Tan ', 'Shen ', 'Ju ', 'Yang ', 'Zan ', 'Bing ', 'Xing ', 'Ying ', 'Xuan ', 'Pei ', 'Zhen ', 'Ling ', 'Chun ', 'Hao ', 'Mei ', 'Zuo ', 'Mo ', 'Bian ', 'Xu ', 'Hun ', 'Zhao ', 'Zong ', 'Shi ', 'Shi ', 'Yu ', 'Fei ', 'Die ', 'Mao ', 'Ni ', 'Chang ', 'Wen ', 'Dong ', 'Ai ', 'Bing ', 'Ang ', 'Zhou ', 'Long ', 'Xian ', 'Kuang ', 'Tiao ', 'Chao ', 'Shi ', 'Huang ', 'Huang ', 'Xuan ', 'Kui ', 'Xu ', 'Jiao ', 'Jin ', 'Zhi ', 'Jin ', 'Shang ', 'Tong ', 'Hong ', 'Yan ', 'Gai ', 'Xiang ', 'Shai ', 'Xiao ', 'Ye ', 'Yun ', 'Hui ', 'Han ', 'Han ', 'Jun ', 'Wan ', 'Xian ', 'Kun ', 'Zhou ', 'Xi ', 'Cheng ', 'Sheng ', 'Bu ', 'Zhe ', 'Zhe ', 'Wu ', 'Han ', 'Hui ', 'Hao ', 'Chen ', 'Wan ', 'Tian ', 'Zhuo ', 'Zui ', 'Zhou ', 'Pu ', 'Jing ', 'Xi ', 'Shan ', 'Yi ', 'Xi ', 'Qing ', 'Qi ', 'Jing ', 'Gui ', 'Zhen ', 'Yi ', 'Zhi ', 'An ', 'Wan ', 'Lin ', 'Liang ', 'Chang ', 'Wang ', 'Xiao ', 'Zan ', 'Hi ', 'Xuan ', 'Xuan ', 'Yi ', 'Xia ', 'Yun ', 'Hui ', 'Fu ', 'Min ', 'Kui ', 'He ', 'Ying ', 'Du ', 'Wei ', 'Shu ', 'Qing ', 'Mao ', 'Nan ', 'Jian ', 'Nuan ', 'An ', 'Yang ', 'Chun ', 'Yao ', 'Suo ', 'Jin ', 'Ming ', 'Jiao ', 'Kai ', 'Gao ', 'Weng ', 'Chang ', 'Qi ', 'Hao ', 'Yan ', 'Li ', 'Ai ', 'Ji ', 'Gui ', 'Men ', 'Zan ', 'Xie ', 'Hao ', 'Mu ', 'Mo ', 'Cong ', 'Ni ', 'Zhang ', 'Hui ', 'Bao ', 'Han ', 'Xuan ', 'Chuan ', 'Liao ', 'Xian ', 'Dan ', 'Jing ', 'Pie ', 'Lin ', 'Tun ', 'Xi ', 'Yi ', 'Ji ', 'Huang ', 'Tai ', 'Ye ', 'Ye ', 'Li ', 'Tan ', 'Tong ', 'Xiao ', 'Fei ', 'Qin ', 'Zhao ', 'Hao ', 'Yi ', 'Xiang ', 'Xing ', 'Sen ', 'Jiao ', 'Bao ', 'Jing ', 'Yian ', 'Ai ', 'Ye ', 'Ru ', 'Shu ', 'Meng ', 'Xun ', 'Yao ', 'Pu ', 'Li ', 'Chen ', 'Kuang ', 'Die ', '[?] ', 'Yan ', 'Huo ', 'Lu ', 'Xi ', 'Rong ', 'Long ', 'Nang ', 'Luo ', 'Luan ', 'Shai ', 'Tang ', 'Yan ', 'Chu ', 'Yue ', 'Yue ', 'Qu ', 'Yi ', 'Geng ', 'Ye ', 'Hu ', 'He ', 'Shu ', 'Cao ', 'Cao ', 'Noboru ', 'Man ', 'Ceng ', 'Ceng ', 'Ti ') |
def bintang(n):
space = 2*n-1
for i in range(n):
print(('*'*(2*i+1)).center(space))
bintang(7)
| def bintang(n):
space = 2 * n - 1
for i in range(n):
print(('*' * (2 * i + 1)).center(space))
bintang(7) |
'''
Rip Genie Ops Object Outputs for IOSXE.
'''
class RipOutput(object):
ShowVrfDetail = {
"Mgmt-vrf": {
"vrf_id": 1,
"interfaces": [
"GigabitEthernet0/0"
],
"address_family": {
"ipv4 unicast": {
"table_id": "0x1",
"flags": "0x0",
"vrf_label": {
'allocation_mode': 'per-prefix'
}
},
"ipv6 unicast": {
"table_id": "0x1E000001",
"flags": "0x0",
"vrf_label": {
'allocation_mode': 'per-prefix'
}
}
},
"flags": "0x1808"
},
"VRF1": {
"interfaces": [
"GigabitEthernet0/0"
],
"address_family": {
"ipv4 unicast": {
"export_to_global": {
"export_to_global_map": "export_to_global_map",
"prefix_limit": 1000
},
"import_from_global": {
"prefix_limit": 1000,
"import_from_global_map": "import_from_global_map"
},
"table_id": "0x1",
"routing_table_limit": {
"routing_table_limit_action": {
"enable_alert_limit_number": {
"alert_limit_number": 10000
}
}
},
"route_targets": {
"200:1": {
"rt_type": "both",
"route_target": "200:1"
},
"100:1": {
"rt_type": "both",
"route_target": "100:1"
}
},
"flags": "0x2100",
"vrf_label": {
'allocation_mode': 'per-prefix'
}
},
"ipv6 unicast": {
"export_to_global": {
"export_to_global_map": "export_to_global_map",
"prefix_limit": 1000
},
"table_id": "0x1E000001",
"routing_table_limit": {
"routing_table_limit_action": {
"enable_alert_percent": {
"alert_percent_value": 70
},
"enable_alert_limit_number": {
"alert_limit_number": 7000
}
},
"routing_table_limit_number": 10000
},
"route_targets": {
"200:1": {
"rt_type": "import",
"route_target": "200:1"
},
"400:1": {
"rt_type": "import",
"route_target": "400:1"
},
"300:1": {
"rt_type": "export",
"route_target": "300:1"
},
"100:1": {
"rt_type": "export",
"route_target": "100:1"
}
},
"flags": "0x100",
"vrf_label": {
'allocation_mode': 'per-prefix'
}
}
},
"flags": "0x180C",
"route_distinguisher": "100:1",
"vrf_id": 1
}
}
showIpProtocols_default = '''\
R1#show ip protocols | sec rip
Routing Protocol is "rip"
Output delay 50 milliseconds between packets
Outgoing update filter list for all interfaces is not set
Incoming update filter list for all interfaces is not set
Incoming routes will have 10 added to metric if on list 21
Sending updates every 10 seconds, next due in 8 seconds
Invalid after 21 seconds, hold down 22, flushed after 23
Default redistribution metric is 3
Redistributing: connected, static, rip
Neighbor(s):
10.1.2.2
Default version control: send version 2, receive version 2
Interface Send Recv Triggered RIP Key-chain
GigabitEthernet3.100 2 2 No 1
Automatic network summarization is not in effect
Address Summarization:
172.16.0.0/17 for GigabitEthernet3.100
Maximum path: 4
Routing for Networks:
10.0.0.0
Passive Interface(s):
GigabitEthernet2.100
Routing Information Sources:
Gateway Distance Last Update
10.1.3.3 120 00:00:00
10.1.2.2 120 00:00:04
Distance: (default is 120)
'''
showIpProtocols_vrf1 = '''\
R1#show ip protocols vrf VRF1 | sec rip
Routing Protocol is "rip"
Output delay 50 milliseconds between packets
Outgoing update filter list for all interfaces is not set
Incoming update filter list for all interfaces is not set
Sending updates every 30 seconds, next due in 2 seconds
Invalid after 180 seconds, hold down 180, flushed after 240
Redistributing: connected, static, rip
Default version control: send version 2, receive version 2
Interface Send Recv Triggered RIP Key-chain
GigabitEthernet2.200 2 2 No none
GigabitEthernet3.200 2 2 No none
Maximum path: 4
Routing for Networks:
10.0.0.0
10.0.0.0
Routing Information Sources:
Gateway Distance Last Update
10.1.3.3 120 20:33:00
10.1.2.2 120 00:00:21
Distance: (default is 120)
'''
showIpRipDatabase_default = '''\
R1#show ip rip database
0.0.0.0/0 auto-summary
0.0.0.0/0 redistributed
[3] via 172.16.1.254, from 0.0.0.0,
[3] via 172.16.1.254, from 0.0.0.0,
10.0.0.0/8 auto-summary
10.1.2.0/24 directly connected, GigabitEthernet2.100
10.1.3.0/24 directly connected, GigabitEthernet3.100
10.2.3.0/24
[1] via 10.1.3.3, 00:00:05, GigabitEthernet3.100
[1] via 10.1.2.2, 00:00:21, GigabitEthernet2.100
172.16.0.0/16 auto-summary
172.16.0.0/17 int-summary
172.16.0.0/17
[4] via 10.1.2.2, 00:00:00, GigabitEthernet2.100
'''
showIpRipDatabase_vrf1 = '''\
R1#show ip rip database vrf VRF1
10.0.0.0/8 auto-summary
10.1.2.0/24 directly connected, GigabitEthernet2.200
10.1.3.0/24 directly connected, GigabitEthernet3.200
10.2.3.0/24
[1] via 10.1.2.2, 00:00:08, GigabitEthernet2.200
172.16.0.0/16 auto-summary
172.16.11.0/24 redistributed
[15] via 0.0.0.0,
172.16.22.0/24
[15] via 10.1.2.2, 00:00:08, GigabitEthernet2.200
192.168.1.0/24 auto-summary
192.168.1.1/32 redistributed
[1] via 0.0.0.0,
'''
showIpv6Protocols_default = '''\
R1#show ipv6 protocols | sec rip
IPv6 Routing Protocol is "rip ripng"
Interfaces:
GigabitEthernet3.100
GigabitEthernet2.100
Redistribution:
Redistributing protocol static with metric 3
'''
showIpv6Protocols_vrf1 = '''\
R1#show ipv6 protocols vrf VRF1 | sec rip
IPv6 Routing Protocol is "rip ripng"
Interfaces:
GigabitEthernet3.200
GigabitEthernet2.200
Redistribution:
Redistributing protocol connected with transparent metric
Redistributing protocol static with transparent metric route-map static-to-rip
'''
showIpv6RipDatabase_default = '''\
R1#show ipv6 rip database
RIP VRF "Default VRF", local RIB
2001:DB8:1:3::/64, metric 2
GigabitEthernet3.100/FE80::F816:3EFF:FEFF:1E3D, expires in 179 secs
2001:DB8:2:3::/64, metric 2, installed
GigabitEthernet3.100/FE80::F816:3EFF:FEFF:1E3D, expires in 179 secs
2001:DB8:2222:2222::/64, metric 7, installed
GigabitEthernet3.100/FE80::F816:3EFF:FEFF:1E3D, expires in 179 secs
2001:DB8:2223:2223::/64, metric 6, installed
GigabitEthernet2.100/FE80::F816:3EFF:FE7B:437, expires in 173 secs
'''
showIpv6RipDatabase_vrf1 = '''\
R1#show ipv6 rip vrf VRF1 database
RIP VRF "VRF1", local RIB
2001:DB8:1:2::/64, metric 2
GigabitEthernet2.200/FE80::F816:3EFF:FE7B:437, expires in 166 secs
2001:DB8:1:3::/64, metric 2
GigabitEthernet3.200/FE80::F816:3EFF:FEFF:1E3D, expires in 169 secs
2001:DB8:2:3::/64, metric 2, installed
GigabitEthernet3.200/FE80::F816:3EFF:FEFF:1E3D, expires in 169 secs
GigabitEthernet2.200/FE80::F816:3EFF:FE7B:437, expires in 166 secs
'''
showIpv6Rip_default = '''\
R1#show ipv6 rip
RIP VRF "Default VRF", port 521, multicast-group FF02::9, pid 635
Administrative distance is 120. Maximum paths is 16
Updates every 30 seconds, expire after 180
Holddown lasts 0 seconds, garbage collect after 120
Split horizon is on; poison reverse is off
Default routes are not generated
Periodic updates 399, trigger updates 8
Full Advertisement 0, Delayed Events 0
Interfaces:
GigabitEthernet3.100
GigabitEthernet2.100
Redistribution:
Redistributing protocol static with metric 3
'''
showIpv6Rip_vrf1= '''\
R1#show ipv6 rip vrf VRF1
RIP VRF "VRF1", port 521, multicast-group FF02::9, pid 635
Administrative distance is 120. Maximum paths is 16
Updates every 30 seconds, expire after 180
Holddown lasts 0 seconds, garbage collect after 120
Split horizon is on; poison reverse is off
Default routes are generated
Periodic updates 390, trigger updates 3
Full Advertisement 0, Delayed Events 0
Interfaces:
GigabitEthernet3.200
GigabitEthernet2.200
Redistribution:
Redistributing protocol connected with transparent metric
Redistributing protocol static with transparent metric route-map static-to-rip
'''
ripOpsOutput={
"vrf": {
"default": {
"address_family": {
"ipv6": {
"instance": {
"rip ripng": {
"redistribute": {
"static": {
"metric": 3
}
},
"timers": {
"holddown_interval": 0,
"flush_interval": 120,
"update_interval": 30
},
"maximum_paths": 16,
"split_horizon": True,
"routes": {
"2001:DB8:2223:2223::/64": {
"index": {
1: {
"metric": 6,
"expire_time": "173",
"interface": "GigabitEthernet2.100",
"next_hop": "FE80::F816:3EFF:FE7B:437"
}
}
},
"2001:DB8:2:3::/64": {
"index": {
1: {
"metric": 2,
"expire_time": "179",
"interface": "GigabitEthernet3.100",
"next_hop": "FE80::F816:3EFF:FEFF:1E3D"
}
}
},
"2001:DB8:1:3::/64": {
"index": {
1: {
"metric": 2,
"expire_time": "179",
"interface": "GigabitEthernet3.100",
"next_hop": "FE80::F816:3EFF:FEFF:1E3D"
}
}
},
"2001:DB8:2222:2222::/64": {
"index": {
1: {
"metric": 7,
"expire_time": "179",
"interface": "GigabitEthernet3.100",
"next_hop": "FE80::F816:3EFF:FEFF:1E3D"
}
}
}
},
"originate_default_route": {
"enabled": False
},
"distance": 120,
"poison_reverse": False,
"interfaces": {
"GigabitEthernet3.100": {},
"GigabitEthernet2.100": {}
}
}
}
},
"ipv4": {
"instance": {
"rip": {
"distance": 120,
"output_delay": 50,
"maximum_paths": 4,
"default_metric": 3,
"routes": {
"10.2.3.0/24": {
"index": {
1: {
"metric": 1,
"next_hop": "10.1.3.3",
"interface": "GigabitEthernet3.100"
},
2: {
"metric": 1,
"next_hop": "10.1.2.2",
"interface": "GigabitEthernet2.100"
}
}
},
"10.0.0.0/8": {
"index": {
1: {
"summary_type": "auto-summary"
}
}
},
"172.16.0.0/17": {
"index": {
1: {
"summary_type": "int-summary"
},
2: {
"metric": 4,
"next_hop": "10.1.2.2",
"interface": "GigabitEthernet2.100"
}
}
},
"0.0.0.0/0": {
"index": {
1: {
"summary_type": "auto-summary"
},
2: {
"metric": 3,
"next_hop": "172.16.1.254",
"redistributed": True
},
3: {
"metric": 3,
"next_hop": "172.16.1.254",
"redistributed": True
}
}
},
"172.16.0.0/16": {
"index": {
1: {
"summary_type": "auto-summary"
}
}
},
"10.1.2.0/24": {
"index": {
1: {
"route_type": "connected",
"interface": "GigabitEthernet2.100"
}
}
},
"10.1.3.0/24": {
"index": {
1: {
"route_type": "connected",
"interface": "GigabitEthernet3.100"
}
}
}
},
"interfaces": {
"GigabitEthernet3.100": {
"passive": True,
"summary_address": {
"172.16.0.0/17": {}
}
}
},
"redistribute": {
"static": {},
"rip": {},
"connected": {}
}
}
}
}
}
},
"VRF1": {
"address_family": {
"ipv6": {
"instance": {
"rip ripng": {
"redistribute": {
"static": {
"route_policy": "static-to-rip"
},
"connected": {}
},
"timers": {
"update_interval": 30,
"flush_interval": 120,
"holddown_interval": 0
},
"maximum_paths": 16,
"split_horizon": True,
"routes": {
"2001:DB8:2:3::/64": {
"index": {
1: {
"metric": 2,
"expire_time": "169",
"interface": "GigabitEthernet3.200",
"next_hop": "FE80::F816:3EFF:FEFF:1E3D"
},
2: {
"metric": 2,
"expire_time": "166",
"interface": "GigabitEthernet2.200",
"next_hop": "FE80::F816:3EFF:FE7B:437"
}
}
},
"2001:DB8:1:3::/64": {
"index": {
1: {
"metric": 2,
"expire_time": "169",
"interface": "GigabitEthernet3.200",
"next_hop": "FE80::F816:3EFF:FEFF:1E3D"
}
}
},
"2001:DB8:1:2::/64": {
"index": {
1: {
"metric": 2,
"expire_time": "166",
"interface": "GigabitEthernet2.200",
"next_hop": "FE80::F816:3EFF:FE7B:437"
}
}
}
},
"originate_default_route": {
"enabled": True
},
"distance": 120,
"poison_reverse": False,
"interfaces": {
"GigabitEthernet2.200": {},
"GigabitEthernet3.200": {}
}
}
}
},
"ipv4": {
"instance": {
"rip": {
"distance": 120,
"output_delay": 50,
"routes": {
"192.168.1.1/32": {
"index": {
1: {
"metric": 1,
"next_hop": "0.0.0.0",
"redistributed": True
}
}
},
"192.168.1.0/24": {
"index": {
1: {
"summary_type": "auto-summary"
}
}
},
"172.16.22.0/24": {
"index": {
1: {
"metric": 15,
"next_hop": "10.1.2.2",
"interface": "GigabitEthernet2.200"
}
}
},
"10.0.0.0/8": {
"index": {
1: {
"summary_type": "auto-summary"
}
}
},
"10.1.2.0/24": {
"index": {
1: {
"route_type": "connected",
"interface": "GigabitEthernet2.200"
}
}
},
"172.16.0.0/16": {
"index": {
1: {
"summary_type": "auto-summary"
}
}
},
"172.16.11.0/24": {
"index": {
1: {
"metric": 15,
"next_hop": "0.0.0.0",
"redistributed": True
}
}
},
"10.2.3.0/24": {
"index": {
1: {
"metric": 1,
"next_hop": "10.1.2.2",
"interface": "GigabitEthernet2.200"
}
}
},
"10.1.3.0/24": {
"index": {
1: {
"route_type": "connected",
"interface": "GigabitEthernet3.200"
}
}
}
},
"redistribute": {
"static": {},
"rip": {},
"connected": {}
},
"maximum_paths": 4
}
}
}
}
}
}
}
| """
Rip Genie Ops Object Outputs for IOSXE.
"""
class Ripoutput(object):
show_vrf_detail = {'Mgmt-vrf': {'vrf_id': 1, 'interfaces': ['GigabitEthernet0/0'], 'address_family': {'ipv4 unicast': {'table_id': '0x1', 'flags': '0x0', 'vrf_label': {'allocation_mode': 'per-prefix'}}, 'ipv6 unicast': {'table_id': '0x1E000001', 'flags': '0x0', 'vrf_label': {'allocation_mode': 'per-prefix'}}}, 'flags': '0x1808'}, 'VRF1': {'interfaces': ['GigabitEthernet0/0'], 'address_family': {'ipv4 unicast': {'export_to_global': {'export_to_global_map': 'export_to_global_map', 'prefix_limit': 1000}, 'import_from_global': {'prefix_limit': 1000, 'import_from_global_map': 'import_from_global_map'}, 'table_id': '0x1', 'routing_table_limit': {'routing_table_limit_action': {'enable_alert_limit_number': {'alert_limit_number': 10000}}}, 'route_targets': {'200:1': {'rt_type': 'both', 'route_target': '200:1'}, '100:1': {'rt_type': 'both', 'route_target': '100:1'}}, 'flags': '0x2100', 'vrf_label': {'allocation_mode': 'per-prefix'}}, 'ipv6 unicast': {'export_to_global': {'export_to_global_map': 'export_to_global_map', 'prefix_limit': 1000}, 'table_id': '0x1E000001', 'routing_table_limit': {'routing_table_limit_action': {'enable_alert_percent': {'alert_percent_value': 70}, 'enable_alert_limit_number': {'alert_limit_number': 7000}}, 'routing_table_limit_number': 10000}, 'route_targets': {'200:1': {'rt_type': 'import', 'route_target': '200:1'}, '400:1': {'rt_type': 'import', 'route_target': '400:1'}, '300:1': {'rt_type': 'export', 'route_target': '300:1'}, '100:1': {'rt_type': 'export', 'route_target': '100:1'}}, 'flags': '0x100', 'vrf_label': {'allocation_mode': 'per-prefix'}}}, 'flags': '0x180C', 'route_distinguisher': '100:1', 'vrf_id': 1}}
show_ip_protocols_default = ' R1#show ip protocols | sec rip\nRouting Protocol is "rip"\n Output delay 50 milliseconds between packets\n Outgoing update filter list for all interfaces is not set\n Incoming update filter list for all interfaces is not set\n Incoming routes will have 10 added to metric if on list 21\n Sending updates every 10 seconds, next due in 8 seconds\n Invalid after 21 seconds, hold down 22, flushed after 23\n Default redistribution metric is 3\n Redistributing: connected, static, rip\n Neighbor(s):\n 10.1.2.2\n Default version control: send version 2, receive version 2\n Interface Send Recv Triggered RIP Key-chain\n GigabitEthernet3.100 2 2 No 1\n Automatic network summarization is not in effect\n Address Summarization:\n 172.16.0.0/17 for GigabitEthernet3.100\n Maximum path: 4\n Routing for Networks:\n 10.0.0.0\n Passive Interface(s):\n GigabitEthernet2.100\n Routing Information Sources:\n Gateway Distance Last Update\n 10.1.3.3 120 00:00:00\n 10.1.2.2 120 00:00:04\n Distance: (default is 120)\n '
show_ip_protocols_vrf1 = 'R1#show ip protocols vrf VRF1 | sec rip\nRouting Protocol is "rip"\n Output delay 50 milliseconds between packets\n Outgoing update filter list for all interfaces is not set\n Incoming update filter list for all interfaces is not set\n Sending updates every 30 seconds, next due in 2 seconds\n Invalid after 180 seconds, hold down 180, flushed after 240\n Redistributing: connected, static, rip\n Default version control: send version 2, receive version 2\n Interface Send Recv Triggered RIP Key-chain\n GigabitEthernet2.200 2 2 No none\n GigabitEthernet3.200 2 2 No none\n Maximum path: 4\n Routing for Networks:\n 10.0.0.0\n 10.0.0.0\n Routing Information Sources:\n Gateway Distance Last Update\n 10.1.3.3 120 20:33:00\n 10.1.2.2 120 00:00:21\n Distance: (default is 120)\n '
show_ip_rip_database_default = ' R1#show ip rip database\n0.0.0.0/0 auto-summary\n0.0.0.0/0 redistributed\n [3] via 172.16.1.254, from 0.0.0.0,\n [3] via 172.16.1.254, from 0.0.0.0,\n10.0.0.0/8 auto-summary\n10.1.2.0/24 directly connected, GigabitEthernet2.100\n10.1.3.0/24 directly connected, GigabitEthernet3.100\n10.2.3.0/24\n [1] via 10.1.3.3, 00:00:05, GigabitEthernet3.100\n [1] via 10.1.2.2, 00:00:21, GigabitEthernet2.100\n172.16.0.0/16 auto-summary\n172.16.0.0/17 int-summary\n172.16.0.0/17\n [4] via 10.1.2.2, 00:00:00, GigabitEthernet2.100\n\n '
show_ip_rip_database_vrf1 = ' R1#show ip rip database vrf VRF1\n10.0.0.0/8 auto-summary\n10.1.2.0/24 directly connected, GigabitEthernet2.200\n10.1.3.0/24 directly connected, GigabitEthernet3.200\n10.2.3.0/24\n [1] via 10.1.2.2, 00:00:08, GigabitEthernet2.200\n172.16.0.0/16 auto-summary\n172.16.11.0/24 redistributed\n [15] via 0.0.0.0,\n172.16.22.0/24\n [15] via 10.1.2.2, 00:00:08, GigabitEthernet2.200\n192.168.1.0/24 auto-summary\n192.168.1.1/32 redistributed\n [1] via 0.0.0.0,\n '
show_ipv6_protocols_default = ' R1#show ipv6 protocols | sec rip\n IPv6 Routing Protocol is "rip ripng"\n Interfaces:\n GigabitEthernet3.100\n GigabitEthernet2.100\n Redistribution:\n Redistributing protocol static with metric 3\n '
show_ipv6_protocols_vrf1 = ' R1#show ipv6 protocols vrf VRF1 | sec rip\n IPv6 Routing Protocol is "rip ripng"\n Interfaces:\n GigabitEthernet3.200\n GigabitEthernet2.200\n Redistribution:\n Redistributing protocol connected with transparent metric\n Redistributing protocol static with transparent metric route-map static-to-rip\n '
show_ipv6_rip_database_default = ' R1#show ipv6 rip database\n RIP VRF "Default VRF", local RIB\n 2001:DB8:1:3::/64, metric 2\n GigabitEthernet3.100/FE80::F816:3EFF:FEFF:1E3D, expires in 179 secs\n 2001:DB8:2:3::/64, metric 2, installed\n GigabitEthernet3.100/FE80::F816:3EFF:FEFF:1E3D, expires in 179 secs\n 2001:DB8:2222:2222::/64, metric 7, installed\n GigabitEthernet3.100/FE80::F816:3EFF:FEFF:1E3D, expires in 179 secs\n 2001:DB8:2223:2223::/64, metric 6, installed\n GigabitEthernet2.100/FE80::F816:3EFF:FE7B:437, expires in 173 secs\n '
show_ipv6_rip_database_vrf1 = ' R1#show ipv6 rip vrf VRF1 database\nRIP VRF "VRF1", local RIB\n 2001:DB8:1:2::/64, metric 2\n GigabitEthernet2.200/FE80::F816:3EFF:FE7B:437, expires in 166 secs\n 2001:DB8:1:3::/64, metric 2\n GigabitEthernet3.200/FE80::F816:3EFF:FEFF:1E3D, expires in 169 secs\n 2001:DB8:2:3::/64, metric 2, installed\n GigabitEthernet3.200/FE80::F816:3EFF:FEFF:1E3D, expires in 169 secs\n GigabitEthernet2.200/FE80::F816:3EFF:FE7B:437, expires in 166 secs\n '
show_ipv6_rip_default = ' R1#show ipv6 rip\n RIP VRF "Default VRF", port 521, multicast-group FF02::9, pid 635\n Administrative distance is 120. Maximum paths is 16\n Updates every 30 seconds, expire after 180\n Holddown lasts 0 seconds, garbage collect after 120\n Split horizon is on; poison reverse is off\n Default routes are not generated\n Periodic updates 399, trigger updates 8\n Full Advertisement 0, Delayed Events 0\n Interfaces:\n GigabitEthernet3.100\n GigabitEthernet2.100\n Redistribution:\n Redistributing protocol static with metric 3\n '
show_ipv6_rip_vrf1 = ' R1#show ipv6 rip vrf VRF1\n RIP VRF "VRF1", port 521, multicast-group FF02::9, pid 635\n Administrative distance is 120. Maximum paths is 16\n Updates every 30 seconds, expire after 180\n Holddown lasts 0 seconds, garbage collect after 120\n Split horizon is on; poison reverse is off\n Default routes are generated\n Periodic updates 390, trigger updates 3\n Full Advertisement 0, Delayed Events 0\n Interfaces:\n GigabitEthernet3.200\n GigabitEthernet2.200\n Redistribution:\n Redistributing protocol connected with transparent metric\n Redistributing protocol static with transparent metric route-map static-to-rip\n'
rip_ops_output = {'vrf': {'default': {'address_family': {'ipv6': {'instance': {'rip ripng': {'redistribute': {'static': {'metric': 3}}, 'timers': {'holddown_interval': 0, 'flush_interval': 120, 'update_interval': 30}, 'maximum_paths': 16, 'split_horizon': True, 'routes': {'2001:DB8:2223:2223::/64': {'index': {1: {'metric': 6, 'expire_time': '173', 'interface': 'GigabitEthernet2.100', 'next_hop': 'FE80::F816:3EFF:FE7B:437'}}}, '2001:DB8:2:3::/64': {'index': {1: {'metric': 2, 'expire_time': '179', 'interface': 'GigabitEthernet3.100', 'next_hop': 'FE80::F816:3EFF:FEFF:1E3D'}}}, '2001:DB8:1:3::/64': {'index': {1: {'metric': 2, 'expire_time': '179', 'interface': 'GigabitEthernet3.100', 'next_hop': 'FE80::F816:3EFF:FEFF:1E3D'}}}, '2001:DB8:2222:2222::/64': {'index': {1: {'metric': 7, 'expire_time': '179', 'interface': 'GigabitEthernet3.100', 'next_hop': 'FE80::F816:3EFF:FEFF:1E3D'}}}}, 'originate_default_route': {'enabled': False}, 'distance': 120, 'poison_reverse': False, 'interfaces': {'GigabitEthernet3.100': {}, 'GigabitEthernet2.100': {}}}}}, 'ipv4': {'instance': {'rip': {'distance': 120, 'output_delay': 50, 'maximum_paths': 4, 'default_metric': 3, 'routes': {'10.2.3.0/24': {'index': {1: {'metric': 1, 'next_hop': '10.1.3.3', 'interface': 'GigabitEthernet3.100'}, 2: {'metric': 1, 'next_hop': '10.1.2.2', 'interface': 'GigabitEthernet2.100'}}}, '10.0.0.0/8': {'index': {1: {'summary_type': 'auto-summary'}}}, '172.16.0.0/17': {'index': {1: {'summary_type': 'int-summary'}, 2: {'metric': 4, 'next_hop': '10.1.2.2', 'interface': 'GigabitEthernet2.100'}}}, '0.0.0.0/0': {'index': {1: {'summary_type': 'auto-summary'}, 2: {'metric': 3, 'next_hop': '172.16.1.254', 'redistributed': True}, 3: {'metric': 3, 'next_hop': '172.16.1.254', 'redistributed': True}}}, '172.16.0.0/16': {'index': {1: {'summary_type': 'auto-summary'}}}, '10.1.2.0/24': {'index': {1: {'route_type': 'connected', 'interface': 'GigabitEthernet2.100'}}}, '10.1.3.0/24': {'index': {1: {'route_type': 'connected', 'interface': 'GigabitEthernet3.100'}}}}, 'interfaces': {'GigabitEthernet3.100': {'passive': True, 'summary_address': {'172.16.0.0/17': {}}}}, 'redistribute': {'static': {}, 'rip': {}, 'connected': {}}}}}}}, 'VRF1': {'address_family': {'ipv6': {'instance': {'rip ripng': {'redistribute': {'static': {'route_policy': 'static-to-rip'}, 'connected': {}}, 'timers': {'update_interval': 30, 'flush_interval': 120, 'holddown_interval': 0}, 'maximum_paths': 16, 'split_horizon': True, 'routes': {'2001:DB8:2:3::/64': {'index': {1: {'metric': 2, 'expire_time': '169', 'interface': 'GigabitEthernet3.200', 'next_hop': 'FE80::F816:3EFF:FEFF:1E3D'}, 2: {'metric': 2, 'expire_time': '166', 'interface': 'GigabitEthernet2.200', 'next_hop': 'FE80::F816:3EFF:FE7B:437'}}}, '2001:DB8:1:3::/64': {'index': {1: {'metric': 2, 'expire_time': '169', 'interface': 'GigabitEthernet3.200', 'next_hop': 'FE80::F816:3EFF:FEFF:1E3D'}}}, '2001:DB8:1:2::/64': {'index': {1: {'metric': 2, 'expire_time': '166', 'interface': 'GigabitEthernet2.200', 'next_hop': 'FE80::F816:3EFF:FE7B:437'}}}}, 'originate_default_route': {'enabled': True}, 'distance': 120, 'poison_reverse': False, 'interfaces': {'GigabitEthernet2.200': {}, 'GigabitEthernet3.200': {}}}}}, 'ipv4': {'instance': {'rip': {'distance': 120, 'output_delay': 50, 'routes': {'192.168.1.1/32': {'index': {1: {'metric': 1, 'next_hop': '0.0.0.0', 'redistributed': True}}}, '192.168.1.0/24': {'index': {1: {'summary_type': 'auto-summary'}}}, '172.16.22.0/24': {'index': {1: {'metric': 15, 'next_hop': '10.1.2.2', 'interface': 'GigabitEthernet2.200'}}}, '10.0.0.0/8': {'index': {1: {'summary_type': 'auto-summary'}}}, '10.1.2.0/24': {'index': {1: {'route_type': 'connected', 'interface': 'GigabitEthernet2.200'}}}, '172.16.0.0/16': {'index': {1: {'summary_type': 'auto-summary'}}}, '172.16.11.0/24': {'index': {1: {'metric': 15, 'next_hop': '0.0.0.0', 'redistributed': True}}}, '10.2.3.0/24': {'index': {1: {'metric': 1, 'next_hop': '10.1.2.2', 'interface': 'GigabitEthernet2.200'}}}, '10.1.3.0/24': {'index': {1: {'route_type': 'connected', 'interface': 'GigabitEthernet3.200'}}}}, 'redistribute': {'static': {}, 'rip': {}, 'connected': {}}, 'maximum_paths': 4}}}}}}} |
sm.setSpeakerID(1102102)
if sm.sendAskYesNo("Did you enjoy the drink? You better have! It is the special concoction of my people, the Piyo Tribe!\r\nNow... Pop quiz! Do you remember how to fight? Defeat 3 #o9300730# monsters and bring me 3 #t4000489# items!"):
sm.removeEscapeButton()
sm.sendNext("What do you mean, you don't know what to do! Press the Ctrl key to perform a basic attack! What do you mean, I forgot to tell you how to pick up items? Just press the Z key! ")
sm.startQuest(parentID)
for i in range(3):
sm.spawnMob(9300730, -364, -7, False)
sm.playSound("Aran/balloon", 100)
else:
sm.sendNext("What? Your failure is my failure as a teacher, and I never fail!") | sm.setSpeakerID(1102102)
if sm.sendAskYesNo('Did you enjoy the drink? You better have! It is the special concoction of my people, the Piyo Tribe!\r\nNow... Pop quiz! Do you remember how to fight? Defeat 3 #o9300730# monsters and bring me 3 #t4000489# items!'):
sm.removeEscapeButton()
sm.sendNext("What do you mean, you don't know what to do! Press the Ctrl key to perform a basic attack! What do you mean, I forgot to tell you how to pick up items? Just press the Z key! ")
sm.startQuest(parentID)
for i in range(3):
sm.spawnMob(9300730, -364, -7, False)
sm.playSound('Aran/balloon', 100)
else:
sm.sendNext('What? Your failure is my failure as a teacher, and I never fail!') |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.