content
stringlengths 7
1.05M
|
---|
#
# Solution to Project Euler problem 6
# Copyright (c) Project Nayuki. All rights reserved.
#
# https://www.nayuki.io/page/project-euler-solutions
# https://github.com/nayuki/Project-Euler-solutions
#
# Computers are fast, so we can implement this solution directly without any clever math.
# However for the mathematically inclined, there are closed-form formulas:
# s = N(N + 1) / 2.
# s2 = N(N + 1)(2N + 1) / 6.
# Hence s^2 - s2 = (N^4 / 4) + (N^3 / 6) - (N^2 / 4) - (N / 6).
def compute():
N = 100
s = sum(i for i in range(1, N + 1))
s2 = sum(i**2 for i in range(1, N + 1))
return str(s**2 - s2)
if __name__ == "__main__":
print(compute())
|
"""Globally defined and used variables for the JWQL query anomaly
feature. Variables will be re-defined when anomaly query forms are
submitted.
Authors
-------
- Teagan King
Use
---
This variables within this module are intended to be directly
imported, e.g.:
::
from jwql.utils.query_config import CHOSEN_INSTRUMENTS
"""
# Anomalies selected by user in anomaly_query
ANOMALIES_CHOSEN_FROM_CURRENT_ANOMALIES = {}
# Apertures selected by user in anomaly_query
APERTURES_CHOSEN = {}
# Anomalies available to select after instruments are selected in anomaly_query
# Default is all anomalies common to all instruments
CURRENT_ANOMALIES = {}
# Observing modes selected by user in anomaly_query
DETECTORS_CHOSEN = {}
# Maximum exposure time selected by user in anomaly_query. Corresponds to EFFEXPTM in MAST.
EXPTIME_MAX = ['999999999999999'] # select all as default
# Minimum exposure time selected by user in anomaly_query. Corresponds to EFFEXPTM in MAST.
EXPTIME_MIN = ['0'] # select all as default
# Exposure types selected by user in anomaly_query
EXPTYPES_CHOSEN = {}
# Filters selected by user in anomaly_query
FILTERS_CHOSEN = {}
# Gratings selected by user in anomaly_query
GRATINGS_CHOSEN = {}
# Instruments selected by user in anomaly_query
INSTRUMENTS_CHOSEN = []
# Read patterns selected by user in anomaly_query
READPATTS_CHOSEN = {}
# Thumbnails selected by user in anomaly_query
THUMBNAILS = []
|
with open("sonar.txt") as sonar:
depthstr = sonar.readline()
previous = int(depthstr.strip())
increases = 0
for depthstr in sonar.readlines():
depth = int(depthstr.strip())
if depth > previous:
increases += 1
previous = depth
print(increases)
|
"""
给你一个长度为 n 的整数数组 nums,其中 n > 1,返回输出数组 output ,其中 output[i] 等于 nums 中除 nums[i] 之外其余各元素的乘积。
示例:
输入: [1,2,3,4]
输出: [24,12,8,6]
提示:题目数据保证数组之中任意元素的全部前缀元素和后缀(甚至是整个数组)的乘积都在 32 位整数范围内。
说明: 请不要使用除法,且在 O(n) 时间复杂度内完成此题。
进阶:
你可以在常数空间复杂度内完成这个题目吗?( 出于对空间复杂度分析的目的,输出数组不被视为额外空间。)
来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/product-of-array-except-self
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
"""
# 空间换时间
class Solution:
def productExceptSelf(self, nums):
length = len(nums)
# L 和 R 分别表示左右两侧的乘积列表
L, R, answer = [0]*length, [0]*length, [0]*length
# L[i] 为索引 i 左侧所有元素的乘积
# 对于索引为 '0' 的元素,因为左侧没有元素,所以 L[0] = 1
L[0] = 1
for i in range(1, length):
L[i] = nums[i - 1] * L[i - 1]
# R[i] 为索引 i 右侧所有元素的乘积
# 对于索引为 'length-1' 的元素,因为右侧没有元素,所以 R[length-1] = 1
R[length - 1] = 1
for i in reversed(range(length - 1)):
R[i] = nums[i + 1] * R[i + 1]
# 对于索引 i,除 nums[i] 之外其余各元素的乘积就是左侧所有元素的乘积乘以右侧所有元素的乘积
for i in range(length):
answer[i] = L[i] * R[i]
return answer
# 作者:LeetCode-Solution
# 链接:https://leetcode-cn.com/problems/product-of-array-except-self/solution/chu-zi-shen-yi-wai-shu-zu-de-cheng-ji-by-leetcode-/
# 来源:力扣(LeetCode)
# 著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。
|
class Solution:
def validPalindrome(self, s: str) -> bool:
if s == s[::-1]:
return True
left, right = 0 , len(s)-1
s = list(s)
while left < right:
if s[left] != s[right]:
s_l = s[left+1:right+1]
s_r = s[left:right]
return s_l == s_l[::-1] or s_r == s_r[::-1]
left += 1
right -= 1
return True
class SolutionII:
def validPalindrome(self, s: str) -> bool:
def verify( s, left, right, deleted ):
while left < right:
if s[left] != s[right]:
if deleted:
return False
else:
return verify( s, left+1, right, True ) or verify( s, left, right-1, True )
else:
left += 1
right -= 1
return True
return verify( list(s), 0, len(s)-1, False )
|
"""
Null object for Telegram bot
"""
class BotNull:
def __init__(self, logger):
self.logger = logger
def sendMessage(self, chat_id, text):
self.logger.info("Skipping Telegram since no configuration was found")
|
"""
Simple Python's Tornado wrapper which provides helpers for creating
a new project, writing management commands, service processes, ...
"""
__version__ = '2.1.2'
|
"""
Container for macros to fix proto files.
"""
load("@rules_proto//proto:defs.bzl", "proto_library")
def format_import_proto_library(name, src, deps):
"""
Creates a new proto library with corrected imports.
This macro exists as a way to build proto files that contain import statements in both Gradle
and Bazel. This macro formats the src file's import statements to contain a full path to the
file in order for Bazel to properly locate file.
Args:
name: str. The name of the .proto file without the '.proto' suffix. This will be the root for
the name of the proto library created. Ex: If name = 'topic', then the src file is
'topic.proto' and the proto library created will be named 'topic_proto'.
src: str. The name of the .proto file to be built into a proto_library.
deps: list of str. The list of dependencies needed to build the src file. This list will
contain all of the proto_library targets for the files imported into src.
"""
# TODO(#1543): Ensure this function works on Windows systems.
# TODO(#1617): Remove genrules post-gradle
native.genrule(
name = name,
srcs = [src],
outs = ["processed_" + src],
cmd = """
cat $< |
sed 's/import "/import "model\\/src\\/main\\/proto\\//g' |
sed 's/"model\\/src\\/main\\/proto\\/exploration/"model\\/processed_src\\/main\\/proto\\/exploration/g' |
sed 's/"model\\/src\\/main\\/proto\\/topic/"model\\/processed_src\\/main\\/proto\\/topic/g' |
sed 's/"model\\/src\\/main\\/proto\\/question/"model\\/processed_src\\/main\\/proto\\/question/g' > $@
""",
)
proto_library(
name = name + "_proto",
srcs = ["processed_" + src],
deps = deps,
)
|
#coding:utf-8
'''
filename:custom_exception.py
judge the number of age is even or odd
'''
class NegativeAgeException(RuntimeError):
def __init__(self,age):
super().__init__()
self.age = age
def enterage(age):
if age<0:
raise NegativeAgeException('Only *POSITIVE* integers are allowed')
if age%2==0:
print('age is even')
else:
print("age is odd")
try:
age = int(input('Enter your age : '))
enterage(age)
except NegativeAgeException as error:
print('error: ',error)
print('error.age: ',error.age)
print('Only *INTEGERS* are allowed')
except :
print('something is wrong')
|
edad = 19
pago = False
if (edad > 18):
print ("Es mayor de edad")
if pago == True:
print ("Es mayor de edad y pagó")
else:
print ("Es mayor de edad y no pagó")
else:
print ("Es menor de edad")
|
def getExtensionObjectFromString(strExtension):
try:
assetID,tempData=strExtension.split("$")
itemVER, tempData=tempData.split("@")
itemID,tempData=tempData.split(";")
return extensions(assetID,itemVER,itemID,tempData)
except: return None
class extensions:
def __init__(self, assetID, itemVER, itemID, data):
if assetID and itemVER and itemID:
self.assetID = assetID
self.itemVER = itemVER
self.itemID=itemID
self.data= "%s$%s@%s;%s" % (self.assetID,self.itemVER,self.itemID, data)
def string(self):
return self.data
def compareWithId(self,itemid):
try:
if(self.itemID==itemid):
return True
else:
return False
except:
return False
def compareWithVER(self,ver):
try:
if(self.itemVER==ver):
return True
except:
return False
|
# encoding: utf-8
# Copyright 2017 Virgil Dupras
# This software is licensed under the "BSD" License as described in the "LICENSE" file,
# which should be included with this package. The terms are also available at
# http://www.hardcoded.net/licenses/bsd_license
def preprocess_paths(paths):
if not isinstance(paths, list):
paths = [paths]
# Convert items such as pathlib paths to strings
paths = [
path.__fspath__() if hasattr(path, "__fspath__") else path for path in paths
]
return paths
|
# 已下单
ORDERED =0
#已付款
PAYED =1
TYPE_ORDER = 0
TYPE_PAYED = 1
|
number = int(input())
salaperhour = int(input())
valorperhour = float(input())
print("NUMBER = {}".format(number))
print('SALARY = U$ {:.2f}'.format(salaperhour * valorperhour))
|
#
# PySNMP MIB module CISCO-LWAPP-DOT11-CLIENT-MIB (http://snmplabs.com/pysmi)
# ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/CISCO-LWAPP-DOT11-CLIENT-MIB
# Produced by pysmi-0.3.4 at Wed May 1 12:05:02 2019
# On host DAVWANG4-M-1475 platform Darwin version 18.5.0 by user davwang4
# Using Python version 3.7.3 (default, Mar 27 2019, 09:23:15)
#
Integer, ObjectIdentifier, OctetString = mibBuilder.importSymbols("ASN1", "Integer", "ObjectIdentifier", "OctetString")
NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues")
ConstraintsUnion, ValueRangeConstraint, ValueSizeConstraint, ConstraintsIntersection, SingleValueConstraint = mibBuilder.importSymbols("ASN1-REFINEMENT", "ConstraintsUnion", "ValueRangeConstraint", "ValueSizeConstraint", "ConstraintsIntersection", "SingleValueConstraint")
cLApLocation, cLApIfLoadChannelUtilization, cLApName, cLAPGroupVlanName, cLApDot11IfSlotId, cLApDot11RadioChannelNumber, cLApSubMode = mibBuilder.importSymbols("CISCO-LWAPP-AP-MIB", "cLApLocation", "cLApIfLoadChannelUtilization", "cLApName", "cLAPGroupVlanName", "cLApDot11IfSlotId", "cLApDot11RadioChannelNumber", "cLApSubMode")
cLMobilityExtMCClientAnchorMCPrivateAddressType, cLMobilityExtMCClientAssociatedMAAddress, cLMobilityExtMCClientAssociatedMCGroupId, cLMobilityExtMCClientAnchorMCGroupId, cLMobilityExtMCClientAssociatedMAAddressType, cLMobilityExtMCClientAssociatedMCAddress, cLMobilityExtMCClientAssociatedMCAddressType, cLMobilityExtMCClientAnchorMCPrivateAddress = mibBuilder.importSymbols("CISCO-LWAPP-MOBILITY-EXT-MIB", "cLMobilityExtMCClientAnchorMCPrivateAddressType", "cLMobilityExtMCClientAssociatedMAAddress", "cLMobilityExtMCClientAssociatedMCGroupId", "cLMobilityExtMCClientAnchorMCGroupId", "cLMobilityExtMCClientAssociatedMAAddressType", "cLMobilityExtMCClientAssociatedMCAddress", "cLMobilityExtMCClientAssociatedMCAddressType", "cLMobilityExtMCClientAnchorMCPrivateAddress")
CLApIfType, CLClientPowerSaveMode, CcxServiceVersion, CLDot11ClientStatus = mibBuilder.importSymbols("CISCO-LWAPP-TC-MIB", "CLApIfType", "CLClientPowerSaveMode", "CcxServiceVersion", "CLDot11ClientStatus")
ciscoMgmt, = mibBuilder.importSymbols("CISCO-SMI", "ciscoMgmt")
CiscoURLStringOrEmpty, = mibBuilder.importSymbols("CISCO-TC", "CiscoURLStringOrEmpty")
InetAddressType, InetAddress = mibBuilder.importSymbols("INET-ADDRESS-MIB", "InetAddressType", "InetAddress")
VlanId, = mibBuilder.importSymbols("Q-BRIDGE-MIB", "VlanId")
SnmpAdminString, = mibBuilder.importSymbols("SNMP-FRAMEWORK-MIB", "SnmpAdminString")
ObjectGroup, ModuleCompliance, NotificationGroup = mibBuilder.importSymbols("SNMPv2-CONF", "ObjectGroup", "ModuleCompliance", "NotificationGroup")
iso, MibIdentifier, NotificationType, ObjectIdentity, Unsigned32, TimeTicks, Integer32, Bits, Counter32, Gauge32, Counter64, IpAddress, ModuleIdentity, MibScalar, MibTable, MibTableRow, MibTableColumn = mibBuilder.importSymbols("SNMPv2-SMI", "iso", "MibIdentifier", "NotificationType", "ObjectIdentity", "Unsigned32", "TimeTicks", "Integer32", "Bits", "Counter32", "Gauge32", "Counter64", "IpAddress", "ModuleIdentity", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn")
DisplayString, MacAddress, TimeInterval, TruthValue, TextualConvention, RowStatus, TimeStamp = mibBuilder.importSymbols("SNMPv2-TC", "DisplayString", "MacAddress", "TimeInterval", "TruthValue", "TextualConvention", "RowStatus", "TimeStamp")
ciscoLwappDot11ClientMIB = ModuleIdentity((1, 3, 6, 1, 4, 1, 9, 9, 599))
ciscoLwappDot11ClientMIB.setRevisions(('2011-04-29 00:00', '2006-11-21 00:00',))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
if mibBuilder.loadTexts: ciscoLwappDot11ClientMIB.setRevisionsDescriptions(('Added ciscoLwappDot11ClientMIBStatusGroupRev2, ciscoLwappDot11ClientMIBNotifsGroupRev2, and ciscoLwappDot11ClientMIBNotifControlGroup. Deprecated ciscoLwappDot11ClientMIBCompliance and added ciscoLwappDot11ClientMIBComplianceRev2', 'Initial version of this MIB module. ',))
if mibBuilder.loadTexts: ciscoLwappDot11ClientMIB.setLastUpdated('201104290000Z')
if mibBuilder.loadTexts: ciscoLwappDot11ClientMIB.setOrganization('Cisco Systems Inc.')
if mibBuilder.loadTexts: ciscoLwappDot11ClientMIB.setContactInfo(' Cisco Systems, Customer Service Postal: 170 West Tasman Drive San Jose, CA 95134 USA Tel: +1 800 553-NETS Email: [email protected]')
if mibBuilder.loadTexts: ciscoLwappDot11ClientMIB.setDescription('This MIB is intended to be implemented on all those devices operating as Central controllers, that terminate the Light Weight Access Point Protocol tunnel from Cisco Light-weight LWAPP Access Points. Information provided by this MIB is about the configuration and monitoring of 802.11 wireless clients in the network. The relationship between CC and the LWAPP APs can be depicted as follows: +......+ +......+ +......+ +......+ + + + + + + + + + CC + + CC + + CC + + CC + + + + + + + + + +......+ +......+ +......+ +......+ .. . . . .. . . . . . . . . . . . . . . . . . . . . . . . +......+ +......+ +......+ +......+ +......+ + + + + + + + + + + + AP + + AP + + AP + + AP + + AP + + + + + + + + + + + +......+ +......+ +......+ +......+ +......+ . . . . . . . . . . . . . . . . . . . . . . . . +......+ +......+ +......+ +......+ +......+ + + + + + + + + + + + MN + + MN + + MN + + MN + + MN + + + + + + + + + + + +......+ +......+ +......+ +......+ +......+ The LWAPP tunnel exists between the controller and the APs. The MNs communicate with the APs through the protocol defined by the 802.11 standard. LWAPP APs, upon bootup, discover and join one of the controllers and the controller pushes the configuration, that includes the WLAN parameters, to the LWAPP APs. The APs then encapsulate all the 802.11 frames from wireless clients inside LWAPP frames and forward the LWAPP frames to the controller. GLOSSARY Access Point ( AP ) An entity that contains an 802.11 medium access control ( MAC ) and physical layer ( PHY ) interface and provides access to the distribution services via the wireless medium for associated clients. LWAPP APs encapsulate all the 802.11 frames in LWAPP frames and sends them to the controller to which it is logically connected. Basic Service Set ( BSS ) Coverage area of one access point is called a BSS. An access point (AP) acts as a master to control the clients within that BSS. Clear To Send (CTS) Refer to the description of RTS. Light Weight Access Point Protocol ( LWAPP ) This is a generic protocol that defines the communication between the Access Points and the Central Controller. MAC Service Data Units ( MSDU ) The MSDU is that unit of data received from the logical link control ( LLC ) sub-layer which lies above the medium access control ( MAC ) sub-layer in a protocol stack. Message Integrity Code ( MIC ) A value generated by a symmetric key cryptographic function. If the input data are changed, a new value cannot be correctly computed without knowledge of the symmetric key. Thus, the secret key protects the input data from undetectable alteration. Mobile Node ( MN ) A roaming 802.11 wireless device in a wireless network associated with an access point. Mobile Node, Mobile Station(Ms) and client are used interchangeably. Request To Send ( RTS ) A client wishing to send data initiates the process by sending a Request To Send (RTS) frame. The destination client replies with a Clear To Send (CTS) frame. Wireless local-area network ( WLAN ) A local-area network that uses high-frequency radio waves rather than wires to communicate between nodes. Service Set Identifier (SSID) A service set identifier is a name that identifies a particular 802.11 wireless LAN. A client device receives broadcast messages from all access points within range advertising their SSIDs. The client device can then either manually or automatically based on configuration select the network with which to associate. The SSID can be up to 32 characters long. Hybrid Remote Edge Access Point (HREAP) HREAP is a wireless solution for branch office and remote office deployments. It enables customers to configure and control access points in a branch or remote office from the corporate office through a wide area network (WAN) link without deploying a controller in each office. Workgroup Bridge ( WGB ) A WGB can provide a wireless infrastructure connection for a Ethernet-enabled devices. Devices that do not have a wireless client adapter in order to connect to the wireless network can be connected to a WGB through Ethernet port. KTS (Key Telephone System) Key Telephone System is an alternative to a private branch exchange (PBX) phone system. A KTS is equipped with several buttons that allow a caller to directly select outgoing lines or incoming calls, and use intercom and conference facilities. REFERENCE [1] Wireless LAN Medium Access Control ( MAC ) and Physical Layer ( PHY ) Specifications [2] Draft-obara-capwap-lwapp-00.txt, IETF Light Weight Access Point Protocol ')
ciscoLwappDot11ClientMIBNotifs = MibIdentifier((1, 3, 6, 1, 4, 1, 9, 9, 599, 0))
ciscoLwappDot11ClientMIBObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 9, 9, 599, 1))
ciscoLwappDot11ClientMIBConform = MibIdentifier((1, 3, 6, 1, 4, 1, 9, 9, 599, 2))
ciscoLwappDot11ClientCcxMIBObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 9, 9, 599, 3))
cldcConfigObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 9, 9, 599, 1, 1))
cldcNotifObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 9, 9, 599, 1, 2))
cldcStatusObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 9, 9, 599, 1, 3))
cldcStatisticObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 9, 9, 599, 1, 4))
cldcCcxObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 9, 9, 599, 3, 1))
cldcClientTable = MibTable((1, 3, 6, 1, 4, 1, 9, 9, 599, 1, 3, 1), )
if mibBuilder.loadTexts: cldcClientTable.setStatus('current')
if mibBuilder.loadTexts: cldcClientTable.setDescription("This table represents the 802.11 wireless clients that are associated with the APs that have joined this controller. An entry is created automatically by the controller when the client gets associated to the AP. An existing entry gets deleted when the association gets dropped. Each client added to this table is uniquely identified by the client's MAC address.")
cldcClientEntry = MibTableRow((1, 3, 6, 1, 4, 1, 9, 9, 599, 1, 3, 1, 1), ).setIndexNames((0, "CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientMacAddress"))
if mibBuilder.loadTexts: cldcClientEntry.setStatus('current')
if mibBuilder.loadTexts: cldcClientEntry.setDescription("Each entry represents a conceptual row in this table and provides the information about the clients associated to the APs that have joined the controller. An entry is identified the client's MAC address.")
cldcClientMacAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 599, 1, 3, 1, 1, 1), MacAddress())
if mibBuilder.loadTexts: cldcClientMacAddress.setStatus('current')
if mibBuilder.loadTexts: cldcClientMacAddress.setDescription('This object specifies the MAC address of the client for this entry and uniquely identifies this entry. ')
cldcClientStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 599, 1, 3, 1, 1, 2), CLDot11ClientStatus()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cldcClientStatus.setStatus('current')
if mibBuilder.loadTexts: cldcClientStatus.setDescription('The object that represents the current status of the client.')
cldcClientWlanProfileName = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 599, 1, 3, 1, 1, 3), SnmpAdminString().subtype(subtypeSpec=ValueSizeConstraint(0, 32))).setMaxAccess("readonly")
if mibBuilder.loadTexts: cldcClientWlanProfileName.setStatus('current')
if mibBuilder.loadTexts: cldcClientWlanProfileName.setDescription('This object specifies the WLAN Profile name this 802.11 wireless client is connected to.')
cldcClientWgbStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 599, 1, 3, 1, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("regClient", 1), ("wgbClient", 2), ("wgb", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: cldcClientWgbStatus.setStatus('current')
if mibBuilder.loadTexts: cldcClientWgbStatus.setDescription("The object that represents the work group bridging status of a DOT11 client. 'regClient' - The client is a wireless client 'wgbClient' - The client is connected via a WGB 'wgb' - The client is the WGB itself.")
cldcClientWgbMacAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 599, 1, 3, 1, 1, 5), MacAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cldcClientWgbMacAddress.setStatus('current')
if mibBuilder.loadTexts: cldcClientWgbMacAddress.setDescription('This object specifies the MAC address of the WGB this 802.11 wireless client to which it is connected. This returns a non-zero value when the cldcClientWgbStatus is wgbClient.')
cldcClientProtocol = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 599, 1, 3, 1, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10))).clone(namedValues=NamedValues(("dot11a", 1), ("dot11b", 2), ("dot11g", 3), ("unknown", 4), ("mobile", 5), ("dot11n24", 6), ("dot11n5", 7), ("ethernet", 8), ("dot3", 9), ("dot11ac5", 10)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: cldcClientProtocol.setStatus('current')
if mibBuilder.loadTexts: cldcClientProtocol.setDescription("The 802.11 protocol type of the client. 'dot11a' - The client is using 802.11a standard to connect to the access point (AP) 'dot11b' - The client is using 802.11b standard to connect to the access point (AP) 'dot11g' - The client is using 802.11g standard to connect to the access point (AP) 'unknown' - The client protocol is unknown 'mobile' - The client using mobile wireless to connect to the access point (AP). 'dot11n24' - The client is using 802.11n standard with 2.4 GHz frequency to connect to the access point (AP) 'dot11n5' - The client is using 802.11n standard with 5 GHz frequency to connect to the access point (AP). 'ethernet' - The client is using ethernet standard to connect to the access point (AP). 'dot3' - The client is using dot3 standard to connect to the access point (AP). 'dot11ac5' - The client is using 802.11ac standard with 5 GHz frequency to connect to the access point (AP).")
cldcAssociationMode = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 599, 1, 3, 1, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("unknown", 1), ("wep", 2), ("wpa", 3), ("wpa2", 4)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: cldcAssociationMode.setStatus('current')
if mibBuilder.loadTexts: cldcAssociationMode.setDescription('The association mode for which the key decrypt error occurred.')
cldcApMacAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 599, 1, 3, 1, 1, 8), MacAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cldcApMacAddress.setStatus('current')
if mibBuilder.loadTexts: cldcApMacAddress.setDescription('This object specifies the radio MAC address of a LWAPP AP. ')
cldcIfType = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 599, 1, 3, 1, 1, 9), CLApIfType()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cldcIfType.setStatus('current')
if mibBuilder.loadTexts: cldcIfType.setDescription('This object specifies the wireless interface type.')
cldcClientIPAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 599, 1, 3, 1, 1, 10), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cldcClientIPAddress.setStatus('current')
if mibBuilder.loadTexts: cldcClientIPAddress.setDescription(" This object specified client's IP address. ")
cldcClientNacState = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 599, 1, 3, 1, 1, 11), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("quarantine", 1), ("access", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: cldcClientNacState.setStatus('current')
if mibBuilder.loadTexts: cldcClientNacState.setDescription("This object specifies the client's network admission control state. 'quarantine' - The client goes through posture analysis and the client traffic is sent by controller in quarantine vlan. 'access' - The client traffic is sent by controller in access vlan. The client should have completed posture analysis. Posture Analysis is a state change where the client applies the configured policies to validate access to the network.")
cldcClientQuarantineVLAN = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 599, 1, 3, 1, 1, 12), VlanId()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cldcClientQuarantineVLAN.setStatus('current')
if mibBuilder.loadTexts: cldcClientQuarantineVLAN.setDescription('This object indicates the quarantine VLAN for client. The quarantine VLAN only allows limited access to the network.')
cldcClientAccessVLAN = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 599, 1, 3, 1, 1, 13), VlanId()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cldcClientAccessVLAN.setStatus('current')
if mibBuilder.loadTexts: cldcClientAccessVLAN.setDescription('This object indicates the access VLAN for client. The access VLAN allows unlimited access to the network.')
cldcClientLoginTime = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 599, 1, 3, 1, 1, 14), TimeStamp()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cldcClientLoginTime.setStatus('current')
if mibBuilder.loadTexts: cldcClientLoginTime.setDescription('This object indicates the value of sysUpTime when the client logged in.')
cldcClientUpTime = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 599, 1, 3, 1, 1, 15), TimeInterval()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cldcClientUpTime.setStatus('current')
if mibBuilder.loadTexts: cldcClientUpTime.setDescription('This object indicates the duration for which the client has been associated with this device.')
cldcClientPowerSaveMode = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 599, 1, 3, 1, 1, 16), CLClientPowerSaveMode()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cldcClientPowerSaveMode.setStatus('current')
if mibBuilder.loadTexts: cldcClientPowerSaveMode.setDescription('This object indicates the power management mode of the client.')
cldcClientCurrentTxRateSet = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 599, 1, 3, 1, 1, 17), OctetString().subtype(subtypeSpec=ValueSizeConstraint(2, 2)).setFixedLength(2)).setUnits('Mbit/s').setMaxAccess("readonly")
if mibBuilder.loadTexts: cldcClientCurrentTxRateSet.setReference('RFC 5416')
if mibBuilder.loadTexts: cldcClientCurrentTxRateSet.setStatus('current')
if mibBuilder.loadTexts: cldcClientCurrentTxRateSet.setDescription('This object indicates the current data rate at which the client transmits and receives data. The data rate field is a 16-bit unsigned value expressing the data rate of the packets received by the client.')
cldcClientDataRateSet = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 599, 1, 3, 1, 1, 18), OctetString().subtype(subtypeSpec=ValueSizeConstraint(1, 126))).setMaxAccess("readonly")
if mibBuilder.loadTexts: cldcClientDataRateSet.setReference('RFC 5416')
if mibBuilder.loadTexts: cldcClientDataRateSet.setStatus('current')
if mibBuilder.loadTexts: cldcClientDataRateSet.setDescription('This object indicates the set of data rates at which the client may transmit data. Each client can support up to 126 rates. Each octet contains an integer value representing one of these 126 rates ranging from 1 Mb/s to 63.5 Mb/s. One of the supported rates will be chosen by the access point for trasnmission with the client.')
cldcClientHreapApAuth = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 599, 1, 3, 1, 1, 19), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("true", 1), ("false", 2), ("notApplicable", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: cldcClientHreapApAuth.setStatus('current')
if mibBuilder.loadTexts: cldcClientHreapApAuth.setDescription("This object indicates whether the client is locally authenticated or authenticated by the controller. Local authentication is done only if the Access Point connected to the client is of hreap mode. A value of 'true' indicates that the client is locally authenticated. A value of 'false' indicates that the client is authenticated by the controller. A value of 'notApplicable' indicates that client is not connected to a HREAP.")
cldcClient80211uCapable = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 599, 1, 3, 1, 1, 20), TruthValue()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cldcClient80211uCapable.setReference('IEEE 802.11u')
if mibBuilder.loadTexts: cldcClient80211uCapable.setStatus('current')
if mibBuilder.loadTexts: cldcClient80211uCapable.setDescription("This object indicates whether the client supports 802.11u feature. The 802.11u standard allows devices such as laptop computers or cellular phones to join a wireless LAN widely used in the home, office and some commercial establishments. A value of 'true' indicates that the client supports the 802.11u feature. A value of 'false' indicates that the client does not support the 802.11u feature.")
cldcClientPostureState = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 599, 1, 3, 1, 1, 21), TruthValue()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cldcClientPostureState.setStatus('current')
if mibBuilder.loadTexts: cldcClientPostureState.setDescription("This object indicates the Posture state of the client. Posture Analysis is a state change where the client applies the configured policies to validate access to the network. A value of 'true' indicates that the client supports the Posture feature. A value of 'false' indicates that the client does not support the Posture feature.")
cldcClientAclName = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 599, 1, 3, 1, 1, 22), SnmpAdminString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cldcClientAclName.setStatus('current')
if mibBuilder.loadTexts: cldcClientAclName.setDescription('This object indicates the ACL Name for the client.')
cldcClientAclApplied = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 599, 1, 3, 1, 1, 23), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("true", 1), ("false", 2), ("notAvailable", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: cldcClientAclApplied.setStatus('current')
if mibBuilder.loadTexts: cldcClientAclApplied.setDescription("This object indicates the ACL applied status for the client. A value of 'true' indicates that the ACL is applied. A value of 'false' indicates that the ACL is not applied. A value of 'notAvailable' indicates that applied status is not available")
cldcClientRedirectUrl = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 599, 1, 3, 1, 1, 24), CiscoURLStringOrEmpty()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cldcClientRedirectUrl.setStatus('current')
if mibBuilder.loadTexts: cldcClientRedirectUrl.setDescription('This object indicates the AAA override redirect URL for a client with cldcClientPostureState enabled. The object has a valid value when the WLAN, with which the client has associated requires Conditional or Splash-Page Web Redirection. This object is otherwise not applicable, and contains a zero-length string.')
cldcClientAaaOverrideAclName = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 599, 1, 3, 1, 1, 25), SnmpAdminString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cldcClientAaaOverrideAclName.setStatus('current')
if mibBuilder.loadTexts: cldcClientAaaOverrideAclName.setDescription('This object indicates the AAA Override ACL Name for the client if cldcClientPostureState is enabled on the wlan.')
cldcClientAaaOverrideAclApplied = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 599, 1, 3, 1, 1, 26), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("true", 1), ("false", 2), ("notAvailable", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: cldcClientAaaOverrideAclApplied.setStatus('current')
if mibBuilder.loadTexts: cldcClientAaaOverrideAclApplied.setDescription("This object indicates the AAA Override ACL applied status for the client if cldcClientPostureState is enabled on the wlan. A value of 'true' indicates that the ACL is applied. A value of 'false' indicates that the ACL is not applied. A value of 'notAvailable' indicates that applied status is not available")
cldcClientUsername = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 599, 1, 3, 1, 1, 27), SnmpAdminString().subtype(subtypeSpec=ValueSizeConstraint(0, 32))).setMaxAccess("readonly")
if mibBuilder.loadTexts: cldcClientUsername.setStatus('current')
if mibBuilder.loadTexts: cldcClientUsername.setDescription('This object represents the username used by the client.')
cldcClientSSID = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 599, 1, 3, 1, 1, 28), SnmpAdminString().subtype(subtypeSpec=ValueSizeConstraint(0, 32))).setMaxAccess("readonly")
if mibBuilder.loadTexts: cldcClientSSID.setStatus('current')
if mibBuilder.loadTexts: cldcClientSSID.setDescription('This object represents the SSID of the WLAN to which the client is associated.')
cldcClientSecurityTagId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 599, 1, 3, 1, 1, 29), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cldcClientSecurityTagId.setStatus('current')
if mibBuilder.loadTexts: cldcClientSecurityTagId.setDescription('This object represents the security group tag of the client. This parameter will have a non-zero value when the client is DOT1X authenticated.')
cldcClientTypeKTS = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 599, 1, 3, 1, 1, 30), TruthValue()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cldcClientTypeKTS.setStatus('current')
if mibBuilder.loadTexts: cldcClientTypeKTS.setDescription("This object indicates whether the Client is NEC KTS Client or not. A value of 'true' indicates that the client follows NEC KTS SIP protocol. A value of 'false' indicates that the client does not follow NEC KTS SIP protocol.")
cldcClientIpv6AclName = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 599, 1, 3, 1, 1, 31), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cldcClientIpv6AclName.setStatus('current')
if mibBuilder.loadTexts: cldcClientIpv6AclName.setDescription('This object specifies the ACL Name for the Ipv6 client.')
cldcClientIpv6AclApplied = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 599, 1, 3, 1, 1, 32), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("true", 1), ("false", 2), ("notAvailable", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: cldcClientIpv6AclApplied.setStatus('current')
if mibBuilder.loadTexts: cldcClientIpv6AclApplied.setDescription("This object indicates the ACL applied status for the IPv6 client. A value of 'true' indicates that the ACL is applied. A value of 'false' indicates that the ACL is not applied. A value of 'NotAvailable' indicates that applied status is not avaliable")
cldcClientDataSwitching = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 599, 1, 3, 1, 1, 33), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("unknown", 1), ("central", 2), ("local", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: cldcClientDataSwitching.setStatus('current')
if mibBuilder.loadTexts: cldcClientDataSwitching.setDescription('This object specifies whether client is switching data locally or centrally.')
cldcClientAuthentication = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 599, 1, 3, 1, 1, 34), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("unknown", 1), ("central", 2), ("local", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: cldcClientAuthentication.setStatus('current')
if mibBuilder.loadTexts: cldcClientAuthentication.setDescription('This object specifies whether client is authentiated locally or centrally.')
cldcClientChannel = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 599, 1, 3, 1, 1, 35), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cldcClientChannel.setStatus('current')
if mibBuilder.loadTexts: cldcClientChannel.setDescription("This object specifies the access point's channel to which the client is associated.")
cldcClientAuthMode = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 599, 1, 3, 1, 1, 36), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 9))).clone(namedValues=NamedValues(("none", 0), ("psk", 1), ("radius", 2), ("cckm", 3), ("wapipsk", 4), ("wapicert", 5), ("ftDot1x", 6), ("ftPsk", 7), ("pmfDot1x", 8), ("pmfPsk", 9)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: cldcClientAuthMode.setStatus('current')
if mibBuilder.loadTexts: cldcClientAuthMode.setDescription('Represents the Authentication Mode of Client.')
cldcClientReasonCode = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 599, 1, 3, 1, 1, 37), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 40, 41, 42, 43, 44, 45, 46, 99, 101, 105, 106, 200, 201, 202, 203))).clone(namedValues=NamedValues(("unspecified", 1), ("previousAuthNotValid", 2), ("deauthenticationLeaving", 3), ("disassociationDueToInactivity", 4), ("disassociationAPBusy", 5), ("class2FrameFromNonAuthStation", 6), ("class2FrameFromNonAssStation", 7), ("disassociationStaHasLeft", 8), ("staReqAssociationWithoutAuth", 9), ("invalidInformationElement", 40), ("groupCipherInvalid", 41), ("unicastCipherInvalid", 42), ("akmpInvalid", 43), ("unsupportedRsnVersion", 44), ("invalidRsnIeCapabilities", 45), ("cipherSuiteRejected", 46), ("missingReasonCode", 99), ("maxAssociatedClientsReached", 101), ("maxAssociatedClientsReachedOnRadio", 105), ("maxAssociatedClientsReachedOnWlan", 106), ("unSpecifiedQosFailure", 200), ("qosPolicyMismatch", 201), ("inSufficientBandwidth", 202), ("inValidQosParams", 203)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: cldcClientReasonCode.setStatus('current')
if mibBuilder.loadTexts: cldcClientReasonCode.setDescription('unspecified - Unspecified. previousAuthNotValid - Previous Authentication was not valid. deauthenticationLeaving - Leaving due to deauthentication. disassociationDueToInactivity - Disassociation due to Inactivity. disassociationAPBusy - Disassociation since AP was busy. class2FrameFromNonAuthStation - Class 2 frame from non authenticated station. class2FrameFromNonAssStation - Class 2 frame from non associated station. disassociationStaHasLeft - Station has left due to disassociation. staReqAssociationWithoutAuth - Station send association request without authentication. invalidInformationElement - Invalid information element. groupCipherInvalid - Invalid group Cipher. unicastCipherInvalid - Invalid unicast cipher. akmpInvalid - Invalid AKMP. unsupportedRsnVersion - Unsupported RSN version. invalidRsnIeCapabilities - Invalid RSN IE capabilities. cipherSuiteRejected - Cipher suite rejected. missingReasonCode - Reason code is missing. maxAssociatedClientsReached - Maximum allowed associated client number has reached. maxAssociatedClientsReachedOnRadio - Maximum allowed associated client number has reached on radio. maxAssociatedClientsReachedOnWlan - Maximum allowed associated client number has reached on wlan. unSpecifiedQosFailure - Unsupported QOS failure. qosPolicyMismatch - Mismatch on QOS policy. inSufficientBandwidth - Insufficient bandwidth. inValidQosParams - Invalid QOS parameters.')
cldcClientSessionID = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 599, 1, 3, 1, 1, 38), SnmpAdminString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cldcClientSessionID.setStatus('current')
if mibBuilder.loadTexts: cldcClientSessionID.setDescription('This object indicates the session to which the client is associated.')
cldcClientApRoamMacAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 599, 1, 3, 1, 1, 39), MacAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cldcClientApRoamMacAddress.setStatus('current')
if mibBuilder.loadTexts: cldcClientApRoamMacAddress.setDescription('This object indicates the MAC address of the AP to which the client has roamed.')
cldcClientMdnsProfile = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 599, 1, 3, 1, 1, 40), SnmpAdminString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cldcClientMdnsProfile.setStatus('current')
if mibBuilder.loadTexts: cldcClientMdnsProfile.setDescription('This object specifies the mDNS Profile name this 802.11 wireless client is mapped to. It could be mapped to the WLAN to which the client is connected to, or the interface/interface groups mapped to the WLAN.')
cldcClientMdnsAdvCount = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 599, 1, 3, 1, 1, 41), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cldcClientMdnsAdvCount.setStatus('current')
if mibBuilder.loadTexts: cldcClientMdnsAdvCount.setDescription('This object specifies the number of mDNS advertisements received on the client.')
cldcClientPolicyName = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 599, 1, 3, 1, 1, 42), SnmpAdminString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cldcClientPolicyName.setStatus('current')
if mibBuilder.loadTexts: cldcClientPolicyName.setDescription('This object indicates the local classification policy to which the client is associated.')
cldcClientAAARole = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 599, 1, 3, 1, 1, 43), SnmpAdminString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cldcClientAAARole.setStatus('current')
if mibBuilder.loadTexts: cldcClientAAARole.setDescription('This object indicates the role string of the client that is used as match criterion for local policy profiling. This string is returned during authentication. ')
cldcClientDeviceType = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 599, 1, 3, 1, 1, 44), SnmpAdminString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cldcClientDeviceType.setStatus('current')
if mibBuilder.loadTexts: cldcClientDeviceType.setDescription('This object specifies the device type of the client. This is identified once the profiling operation is completed.')
cldcUserAuthType = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 599, 1, 3, 1, 1, 45), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5))).clone(namedValues=NamedValues(("open", 1), ("wepPsk", 2), ("portal", 3), ("simPeap", 4), ("other", 5)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: cldcUserAuthType.setStatus('current')
if mibBuilder.loadTexts: cldcUserAuthType.setDescription('Represents the Authentication Type of User.')
cldcClientByIpTable = MibTable((1, 3, 6, 1, 4, 1, 9, 9, 599, 1, 3, 2), )
if mibBuilder.loadTexts: cldcClientByIpTable.setStatus('current')
if mibBuilder.loadTexts: cldcClientByIpTable.setDescription('This table represents the 802.11 wireless clients that are associated with the APs that have joined this controller and are indexed by cldcClientByIpAddressType and cldcClientByIpAddress. An entry is created automatically by the controller when the client gets associated to the AP. An existing entry gets deleted when the association gets dropped.')
cldcClientByIpEntry = MibTableRow((1, 3, 6, 1, 4, 1, 9, 9, 599, 1, 3, 2, 1), ).setIndexNames((0, "CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientMacAddress"), (0, "CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientByIpAddressType"), (0, "CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientByIpAddress"))
if mibBuilder.loadTexts: cldcClientByIpEntry.setStatus('current')
if mibBuilder.loadTexts: cldcClientByIpEntry.setDescription("Each entry represents a conceptual row in this table and provides the information about the clients associated to the APs that have joined the controller. An entry is identified by the client's IP address.")
cldcClientByIpAddressType = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 599, 1, 3, 2, 1, 2), InetAddressType())
if mibBuilder.loadTexts: cldcClientByIpAddressType.setStatus('current')
if mibBuilder.loadTexts: cldcClientByIpAddressType.setDescription("This object represents the type of the Client's address made available through cldcClientByIpAddress.")
cldcClientByIpAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 599, 1, 3, 2, 1, 3), InetAddress())
if mibBuilder.loadTexts: cldcClientByIpAddress.setStatus('current')
if mibBuilder.loadTexts: cldcClientByIpAddress.setDescription('This object represents the inet address of the Client')
cldcClientByIpAddressDiscoverType = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 599, 1, 3, 2, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6))).clone(namedValues=NamedValues(("invalid", 1), ("ndp", 2), ("dhcp", 3), ("packet", 4), ("local", 5), ("static", 6)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: cldcClientByIpAddressDiscoverType.setStatus('current')
if mibBuilder.loadTexts: cldcClientByIpAddressDiscoverType.setDescription("This object represents the discovery type of the Client's address invalid(1) = unknown ndp(2) = Address learnt by neighbor discovery protocol dhcp(3) = Address learnt via DHCP packet(4) = Address learnt by data packet addressing learning local(5) = Address applied to local interface static(6) = Address assigned statically ")
cldcClientByIpAddressLastSeen = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 599, 1, 3, 2, 1, 5), TimeStamp()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cldcClientByIpAddressLastSeen.setStatus('current')
if mibBuilder.loadTexts: cldcClientByIpAddressLastSeen.setDescription('This object indicates timestamp of the time when an address was last seen in REACHABLE state')
cldcSleepingClientTable = MibTable((1, 3, 6, 1, 4, 1, 9, 9, 599, 1, 3, 3), )
if mibBuilder.loadTexts: cldcSleepingClientTable.setStatus('current')
if mibBuilder.loadTexts: cldcSleepingClientTable.setDescription(' This table represents the information about Sleeping clients')
cldcSleepingClientEntry = MibTableRow((1, 3, 6, 1, 4, 1, 9, 9, 599, 1, 3, 3, 1), ).setIndexNames((0, "CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcSleepingClientMacAddress"))
if mibBuilder.loadTexts: cldcSleepingClientEntry.setStatus('current')
if mibBuilder.loadTexts: cldcSleepingClientEntry.setDescription('An entry containing the information about sleeping clients.')
cldcSleepingClientMacAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 599, 1, 3, 3, 1, 1), MacAddress())
if mibBuilder.loadTexts: cldcSleepingClientMacAddress.setStatus('current')
if mibBuilder.loadTexts: cldcSleepingClientMacAddress.setDescription('This object specifies the MAC address of the sleeping client and uniquely identifies the entry.')
cldcSleepingClientSsid = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 599, 1, 3, 3, 1, 2), OctetString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cldcSleepingClientSsid.setStatus('current')
if mibBuilder.loadTexts: cldcSleepingClientSsid.setDescription('This object represents the SSID of the WLAN to which the sleeping client is associated.')
cldcSleepingClientUserName = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 599, 1, 3, 3, 1, 3), SnmpAdminString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cldcSleepingClientUserName.setStatus('current')
if mibBuilder.loadTexts: cldcSleepingClientUserName.setDescription('This object represents the username used by the sleeping client.')
cldcSleepingClientRemainingTime = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 599, 1, 3, 3, 1, 4), TimeInterval()).setUnits('Hours').setMaxAccess("readonly")
if mibBuilder.loadTexts: cldcSleepingClientRemainingTime.setStatus('current')
if mibBuilder.loadTexts: cldcSleepingClientRemainingTime.setDescription('This object indicates the remaining session time for the sleeping client.')
cldcSleepingClientRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 599, 1, 3, 3, 1, 5), RowStatus()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: cldcSleepingClientRowStatus.setStatus('current')
if mibBuilder.loadTexts: cldcSleepingClientRowStatus.setDescription('This is the status column for this row and used to delete specific instances of row in the table.')
cldcClientStatisticTable = MibTable((1, 3, 6, 1, 4, 1, 9, 9, 599, 1, 4, 1), )
if mibBuilder.loadTexts: cldcClientStatisticTable.setStatus('current')
if mibBuilder.loadTexts: cldcClientStatisticTable.setDescription('This table lists statistics and status of the 802.11 wireless clients associated with the access points attached to the controller.')
cldcClientStatisticEntry = MibTableRow((1, 3, 6, 1, 4, 1, 9, 9, 599, 1, 4, 1, 1), ).setIndexNames((0, "CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientMacAddress"))
if mibBuilder.loadTexts: cldcClientStatisticEntry.setStatus('current')
if mibBuilder.loadTexts: cldcClientStatisticEntry.setDescription('An entry in this table provides traffic statistics of the associated client based upon its Mac address.')
cldcClientDataRetries = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 599, 1, 4, 1, 1, 1), Counter64()).setUnits('Retries').setMaxAccess("readonly")
if mibBuilder.loadTexts: cldcClientDataRetries.setStatus('current')
if mibBuilder.loadTexts: cldcClientDataRetries.setDescription('This object indicates the number of attempts made by the client before transmitting the MSDU successfully.')
cldcClientRtsRetries = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 599, 1, 4, 1, 1, 2), Counter64()).setUnits('Retries').setMaxAccess("readonly")
if mibBuilder.loadTexts: cldcClientRtsRetries.setStatus('current')
if mibBuilder.loadTexts: cldcClientRtsRetries.setDescription('This object indicates the number of times the client has attempted to send RTS packets before receiving CTS packets.')
cldcClientDuplicatePackets = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 599, 1, 4, 1, 1, 3), Counter64()).setUnits('Packets').setMaxAccess("readonly")
if mibBuilder.loadTexts: cldcClientDuplicatePackets.setStatus('current')
if mibBuilder.loadTexts: cldcClientDuplicatePackets.setDescription('This object indicates the number of times a duplicate packet is received for the client.')
cldcClientDecryptFailures = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 599, 1, 4, 1, 1, 4), Counter64()).setUnits('Packets').setMaxAccess("readonly")
if mibBuilder.loadTexts: cldcClientDecryptFailures.setStatus('current')
if mibBuilder.loadTexts: cldcClientDecryptFailures.setDescription('This object indicates the number of packets received from the client that failed to decrypt properly.')
cldcClientMicErrors = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 599, 1, 4, 1, 1, 5), Counter64()).setUnits('Packets').setMaxAccess("readonly")
if mibBuilder.loadTexts: cldcClientMicErrors.setStatus('current')
if mibBuilder.loadTexts: cldcClientMicErrors.setDescription('This object indicates the number of MIC errors experienced by the client.')
cldcClientMicMissingFrames = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 599, 1, 4, 1, 1, 6), Counter64()).setUnits('Packets').setMaxAccess("readonly")
if mibBuilder.loadTexts: cldcClientMicMissingFrames.setStatus('current')
if mibBuilder.loadTexts: cldcClientMicMissingFrames.setDescription('This object indicates the number of missing MIC packets for the client.')
cldcClientRaPacketsDropped = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 599, 1, 4, 1, 1, 7), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cldcClientRaPacketsDropped.setStatus('current')
if mibBuilder.loadTexts: cldcClientRaPacketsDropped.setDescription('This is the number of RA Packets dropped for this client.')
cldcClientInterimUpdatesCount = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 599, 1, 4, 1, 1, 8), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cldcClientInterimUpdatesCount.setStatus('current')
if mibBuilder.loadTexts: cldcClientInterimUpdatesCount.setDescription('This is the number of interim updates count sent for this client.')
cldcClientDataBytesReceived = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 599, 1, 4, 1, 1, 9), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cldcClientDataBytesReceived.setStatus('current')
if mibBuilder.loadTexts: cldcClientDataBytesReceived.setDescription('This is the number data bytes received for this mobile station')
cldcClientRealtimeBytesReceived = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 599, 1, 4, 1, 1, 10), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cldcClientRealtimeBytesReceived.setStatus('current')
if mibBuilder.loadTexts: cldcClientRealtimeBytesReceived.setDescription('This is the number realtime bytes received for this mobile station')
cldcClientRxDataBytesDropped = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 599, 1, 4, 1, 1, 11), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cldcClientRxDataBytesDropped.setStatus('current')
if mibBuilder.loadTexts: cldcClientRxDataBytesDropped.setDescription('This is the number Rx data bytes dropped for this mobile station')
cldcClientRxRealtimeBytesDropped = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 599, 1, 4, 1, 1, 12), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cldcClientRxRealtimeBytesDropped.setStatus('current')
if mibBuilder.loadTexts: cldcClientRxRealtimeBytesDropped.setDescription('This is the number Rx realtime bytes dropped for this mobile station')
cldcClientDataBytesSent = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 599, 1, 4, 1, 1, 13), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cldcClientDataBytesSent.setStatus('current')
if mibBuilder.loadTexts: cldcClientDataBytesSent.setDescription('This is the number data bytes Sent for this mobile station')
cldcClientRealtimeBytesSent = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 599, 1, 4, 1, 1, 14), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cldcClientRealtimeBytesSent.setStatus('current')
if mibBuilder.loadTexts: cldcClientRealtimeBytesSent.setDescription('This is the number realtime bytes Sent for this mobile station')
cldcClientTxDataBytesDropped = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 599, 1, 4, 1, 1, 15), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cldcClientTxDataBytesDropped.setStatus('current')
if mibBuilder.loadTexts: cldcClientTxDataBytesDropped.setDescription('This is the number Tx data bytes dropped for this mobile station')
cldcClientTxRealtimeBytesDropped = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 599, 1, 4, 1, 1, 16), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cldcClientTxRealtimeBytesDropped.setStatus('current')
if mibBuilder.loadTexts: cldcClientTxRealtimeBytesDropped.setDescription('This is the number Tx realtime bytes dropped for this mobile station')
cldcClientDataPacketsReceived = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 599, 1, 4, 1, 1, 17), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cldcClientDataPacketsReceived.setStatus('current')
if mibBuilder.loadTexts: cldcClientDataPacketsReceived.setDescription('This is the number data Packets received for this mobile station')
cldcClientRealtimePacketsReceived = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 599, 1, 4, 1, 1, 18), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cldcClientRealtimePacketsReceived.setStatus('current')
if mibBuilder.loadTexts: cldcClientRealtimePacketsReceived.setDescription('This is the number realtime Packets received for this mobile station')
cldcClientRxDataPacketsDropped = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 599, 1, 4, 1, 1, 19), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cldcClientRxDataPacketsDropped.setStatus('current')
if mibBuilder.loadTexts: cldcClientRxDataPacketsDropped.setDescription('This is the number Rx data Packets dropped for this mobile station')
cldcClientRxRealtimePacketsDropped = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 599, 1, 4, 1, 1, 20), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cldcClientRxRealtimePacketsDropped.setStatus('current')
if mibBuilder.loadTexts: cldcClientRxRealtimePacketsDropped.setDescription('This is the number Rx realtime Packets dropped for this mobile station')
cldcClientDataPacketsSent = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 599, 1, 4, 1, 1, 21), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cldcClientDataPacketsSent.setStatus('current')
if mibBuilder.loadTexts: cldcClientDataPacketsSent.setDescription('This is the number data Packets Sent for this mobile station')
cldcClientRealtimePacketsSent = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 599, 1, 4, 1, 1, 22), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cldcClientRealtimePacketsSent.setStatus('current')
if mibBuilder.loadTexts: cldcClientRealtimePacketsSent.setDescription('This is the number realtime Packets Sent for this mobile station')
cldcClientTxDataPacketsDropped = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 599, 1, 4, 1, 1, 23), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cldcClientTxDataPacketsDropped.setStatus('current')
if mibBuilder.loadTexts: cldcClientTxDataPacketsDropped.setDescription('This is the number Tx data Packets dropped for this mobile station')
cldcClientTxRealtimePacketsDropped = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 599, 1, 4, 1, 1, 24), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cldcClientTxRealtimePacketsDropped.setStatus('current')
if mibBuilder.loadTexts: cldcClientTxRealtimePacketsDropped.setDescription('This is the number Tx realtime Packets dropped for this mobile station')
cldcClientTxDataPackets = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 599, 1, 4, 1, 1, 25), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cldcClientTxDataPackets.setStatus('current')
if mibBuilder.loadTexts: cldcClientTxDataPackets.setDescription('This is the number of data packets sent by this mobile station')
cldcClientTxDataBytes = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 599, 1, 4, 1, 1, 26), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cldcClientTxDataBytes.setStatus('current')
if mibBuilder.loadTexts: cldcClientTxDataBytes.setDescription('This is the number of data bytes sent by this mobile station')
cldcClientRxDataPackets = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 599, 1, 4, 1, 1, 27), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cldcClientRxDataPackets.setStatus('current')
if mibBuilder.loadTexts: cldcClientRxDataPackets.setDescription('This is the number of data packets sent for this mobile station')
cldcClientRxDataBytes = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 599, 1, 4, 1, 1, 28), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cldcClientRxDataBytes.setStatus('current')
if mibBuilder.loadTexts: cldcClientRxDataBytes.setDescription('This is the number of data bytes sent for this mobile station')
cldccCcxVersionInfoTable = MibTable((1, 3, 6, 1, 4, 1, 9, 9, 599, 3, 1, 1), )
if mibBuilder.loadTexts: cldccCcxVersionInfoTable.setStatus('current')
if mibBuilder.loadTexts: cldccCcxVersionInfoTable.setDescription('This table contains the detail of the CCX version supported by the clients. This is used to identify the services supported by a CCX v6 client.')
cldccCcxVersionInfoEntry = MibTableRow((1, 3, 6, 1, 4, 1, 9, 9, 599, 3, 1, 1, 1), ).setIndexNames((0, "CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientMacAddress"))
if mibBuilder.loadTexts: cldccCcxVersionInfoEntry.setStatus('current')
if mibBuilder.loadTexts: cldccCcxVersionInfoEntry.setDescription('There is an entry in the table for each entry identified by the client mac address.')
cldccCcxFoundationServiceVersion = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 599, 3, 1, 1, 1, 1), CcxServiceVersion()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cldccCcxFoundationServiceVersion.setStatus('current')
if mibBuilder.loadTexts: cldccCcxFoundationServiceVersion.setDescription('This is the CCX version supported by the client for the service, foundation.')
cldccCcxLocationServiceVersion = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 599, 3, 1, 1, 1, 2), CcxServiceVersion()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cldccCcxLocationServiceVersion.setStatus('current')
if mibBuilder.loadTexts: cldccCcxLocationServiceVersion.setDescription('This is the CCX version supported by the client for the service, location.')
cldccCcxVoiceServiceVersion = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 599, 3, 1, 1, 1, 3), CcxServiceVersion()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cldccCcxVoiceServiceVersion.setStatus('current')
if mibBuilder.loadTexts: cldccCcxVoiceServiceVersion.setDescription('This is the CCX version supported by the client for the service, voice.')
cldccCcxManagementServiceVersion = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 599, 3, 1, 1, 1, 4), CcxServiceVersion()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cldccCcxManagementServiceVersion.setStatus('current')
if mibBuilder.loadTexts: cldccCcxManagementServiceVersion.setDescription('This is the CCX version supported by the client for the service, management.')
cldcKeyDecryptErrorEnabled = MibScalar((1, 3, 6, 1, 4, 1, 9, 9, 599, 1, 1, 1), TruthValue().clone('true')).setMaxAccess("readwrite")
if mibBuilder.loadTexts: cldcKeyDecryptErrorEnabled.setStatus('current')
if mibBuilder.loadTexts: cldcKeyDecryptErrorEnabled.setDescription("The object to control the generation of ciscoLwappDot11ClientKeyDecryptError notification. A value of 'true' indicates that the agent generates ciscoLwappDot11ClientKeyDecryptError notification. A value of 'false' indicates that the agent doesn't generate ciscoLwappDot11ClientKeyDecryptError notification.")
cldcAssocNacAlertEnabled = MibScalar((1, 3, 6, 1, 4, 1, 9, 9, 599, 1, 1, 2), TruthValue()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: cldcAssocNacAlertEnabled.setStatus('current')
if mibBuilder.loadTexts: cldcAssocNacAlertEnabled.setDescription("The object to control the generation of ciscoLwappDot11ClientAssocNacAlert notification. A value of 'true' indicates that the agent generates ciscoLwappDot11ClientAssocNacAlert notification. A value of 'false' indicates that the agent doesn't generate ciscoLwappDot11ClientAssocNacAlert notification.")
cldcDisassocNacAlertEnabled = MibScalar((1, 3, 6, 1, 4, 1, 9, 9, 599, 1, 1, 3), TruthValue()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: cldcDisassocNacAlertEnabled.setStatus('current')
if mibBuilder.loadTexts: cldcDisassocNacAlertEnabled.setDescription("The object to control the generation of ciscoLwappDot11ClientDisassocNacAlert notification. A value of 'true' indicates that the agent generates ciscoLwappDot11ClientDisassocNacAlert notification. A value of 'false' indicates that the agent doesn't generate ciscoLwappDot11ClientDisassocNacAlert notification.")
cldcMovedToRunStateEnabled = MibScalar((1, 3, 6, 1, 4, 1, 9, 9, 599, 1, 1, 4), TruthValue()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: cldcMovedToRunStateEnabled.setStatus('current')
if mibBuilder.loadTexts: cldcMovedToRunStateEnabled.setDescription("The object to control the generation of ciscoLwappDot11ClientMovedToRunState notification. A value of 'true' indicates that the agent generates ciscoLwappDot11ClientMovedToRunState notification. A value of 'false' indicates that the agent doesn't generate ciscoLwappDot11ClientMovedToRunState notification.")
ciscoLwappDot11ClientStaticIpFailTrapEnabled = MibScalar((1, 3, 6, 1, 4, 1, 9, 9, 599, 1, 1, 5), TruthValue().clone('true')).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ciscoLwappDot11ClientStaticIpFailTrapEnabled.setStatus('current')
if mibBuilder.loadTexts: ciscoLwappDot11ClientStaticIpFailTrapEnabled.setDescription("The object to control the generation of ciscoLwappDot11ClientStaticIpFailTrap notification. A value of 'true' indicates that the agent generates ciscoLwappDot11ClientStaticIpFailTrap notification. A value of 'false' indicates that the agent doesn't generate ciscoLwappDot11ClientStaticIpFailTrap notification.")
cldcClientRSSI = MibScalar((1, 3, 6, 1, 4, 1, 9, 9, 599, 1, 2, 1), Integer32()).setMaxAccess("accessiblefornotify")
if mibBuilder.loadTexts: cldcClientRSSI.setStatus('current')
if mibBuilder.loadTexts: cldcClientRSSI.setDescription('This object specifies the average RSSI for the Mobile Station.')
cldcClientSNR = MibScalar((1, 3, 6, 1, 4, 1, 9, 9, 599, 1, 2, 2), Integer32()).setMaxAccess("accessiblefornotify")
if mibBuilder.loadTexts: cldcClientSNR.setStatus('current')
if mibBuilder.loadTexts: cldcClientSNR.setDescription('This object specifies the average SNR for the Mobile Station.')
cldcDOT11ClientReasonCode = MibScalar((1, 3, 6, 1, 4, 1, 9, 9, 599, 1, 2, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 40, 41, 42, 43, 44, 45, 46, 99, 101, 105, 106, 200, 201, 202, 203))).clone(namedValues=NamedValues(("unspecified", 1), ("previousAuthNotValid", 2), ("deauthenticationLeaving", 3), ("disassociationDueToInactivity", 4), ("disassociationAPBusy", 5), ("class2FrameFromNonAuthStation", 6), ("class2FrameFromNonAssStation", 7), ("disassociationStaHasLeft", 8), ("staReqAssociationWithoutAuth", 9), ("invalidInformationElement", 40), ("groupCipherInvalid", 41), ("unicastCipherInvalid", 42), ("akmpInvalid", 43), ("unsupportedRsnVersion", 44), ("invalidRsnIeCapabilities", 45), ("cipherSuiteRejected", 46), ("missingReasonCode", 99), ("maxAssociatedClientsReached", 101), ("maxAssociatedClientsReachedOnRadio", 105), ("maxAssociatedClientsReachedOnWlan", 106), ("unSpecifiedQosFailure", 200), ("qosPolicyMismatch", 201), ("inSufficientBandwidth", 202), ("inValidQosParams", 203)))).setMaxAccess("accessiblefornotify")
if mibBuilder.loadTexts: cldcDOT11ClientReasonCode.setStatus('current')
if mibBuilder.loadTexts: cldcDOT11ClientReasonCode.setDescription('unspecified - Unspecified. previousAuthNotValid - Previous Authentication was not valid. deauthenticationLeaving - Leaving due to deauthentication. disassociationDueToInactivity - Disassociation due to Inactivity. disassociationAPBusy - Disassociation since AP was busy. class2FrameFromNonAuthStation - Class 2 frame from non authenticated station. class2FrameFromNonAssStation - Class 2 frame from non associated station. disassociationStaHasLeft - Station has left due to disassociation. staReqAssociationWithoutAuth - Station send association request without authentication. invalidInformationElement - Invalid information element. groupCipherInvalid - Invalid group Cipher. unicastCipherInvalid - Invalid unicast cipher. akmpInvalid - Invalid AKMP. unsupportedRsnVersion - Unsupported RSN version. invalidRsnIeCapabilities - Invalid RSN IE capabilities. cipherSuiteRejected - Cipher suite rejected. missingReasonCode - Reason code is missing. maxAssociatedClientsReached - Maximum allowed. associated client number has reached. maxAssociatedClientsReachedOnRadio - Maximum allowed associated client number has reached on radio. maxAssociatedClientsReachedOnWlan - Maximum allowed associated client number has reached on wlan. unSpecifiedQosFailure - Unsupported QOS failure. qosPolicyMismatch - Mismatch on QOS policy. inSufficientBandwidth - Insufficient bandwidth. inValidQosParams - Invalid QOS parameters.')
cldcDOT11ClientTxDataPackets = MibScalar((1, 3, 6, 1, 4, 1, 9, 9, 599, 1, 2, 4), Counter32()).setMaxAccess("accessiblefornotify")
if mibBuilder.loadTexts: cldcDOT11ClientTxDataPackets.setStatus('current')
if mibBuilder.loadTexts: cldcDOT11ClientTxDataPackets.setDescription('This is the number of data packets sent by this mobile station')
cldcDOT11ClientTxDataBytes = MibScalar((1, 3, 6, 1, 4, 1, 9, 9, 599, 1, 2, 5), Counter32()).setMaxAccess("accessiblefornotify")
if mibBuilder.loadTexts: cldcDOT11ClientTxDataBytes.setStatus('current')
if mibBuilder.loadTexts: cldcDOT11ClientTxDataBytes.setDescription('This is the number of data bytes sent by this mobile station')
cldcDOT11ClientRxDataPackets = MibScalar((1, 3, 6, 1, 4, 1, 9, 9, 599, 1, 2, 6), Counter32()).setMaxAccess("accessiblefornotify")
if mibBuilder.loadTexts: cldcDOT11ClientRxDataPackets.setStatus('current')
if mibBuilder.loadTexts: cldcDOT11ClientRxDataPackets.setDescription('This is the number of data packets sent for this mobile station')
cldcDOT11ClientRxDataBytes = MibScalar((1, 3, 6, 1, 4, 1, 9, 9, 599, 1, 2, 7), Counter32()).setMaxAccess("accessiblefornotify")
if mibBuilder.loadTexts: cldcDOT11ClientRxDataBytes.setStatus('current')
if mibBuilder.loadTexts: cldcDOT11ClientRxDataBytes.setDescription('This is the number of data bytes sent for this mobile station')
cldcClientVlanId = MibScalar((1, 3, 6, 1, 4, 1, 9, 9, 599, 1, 2, 8), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 4096))).setMaxAccess("accessiblefornotify")
if mibBuilder.loadTexts: cldcClientVlanId.setStatus('current')
if mibBuilder.loadTexts: cldcClientVlanId.setDescription('Vlan ID of the Interface to which the client is associated.')
cldcClientPolicyType = MibScalar((1, 3, 6, 1, 4, 1, 9, 9, 599, 1, 2, 9), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=NamedValues(("dot1x", 1), ("wpa1", 2), ("wpa2", 3), ("wpa2vff", 4), ("notavailable", 5), ("unknown", 6), ("wapi", 7)))).setMaxAccess("accessiblefornotify")
if mibBuilder.loadTexts: cldcClientPolicyType.setStatus('current')
if mibBuilder.loadTexts: cldcClientPolicyType.setDescription('Mode of the AP to which the Mobile Station is associated.')
cldcClientEapType = MibScalar((1, 3, 6, 1, 4, 1, 9, 9, 599, 1, 2, 10), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8))).clone(namedValues=NamedValues(("eapTls", 1), ("ttls", 2), ("peap", 3), ("leap", 4), ("speke", 5), ("eapFast", 6), ("notavailable", 7), ("unknown", 8)))).setMaxAccess("accessiblefornotify")
if mibBuilder.loadTexts: cldcClientEapType.setStatus('current')
if mibBuilder.loadTexts: cldcClientEapType.setDescription('Mode of the AP to which the Mobile Station is associated.')
cldcClientAID = MibScalar((1, 3, 6, 1, 4, 1, 9, 9, 599, 1, 2, 11), Unsigned32()).setMaxAccess("accessiblefornotify")
if mibBuilder.loadTexts: cldcClientAID.setStatus('current')
if mibBuilder.loadTexts: cldcClientAID.setDescription('AID for the mobile station')
cldcClientAuthenticationAlgorithm = MibScalar((1, 3, 6, 1, 4, 1, 9, 9, 599, 1, 2, 12), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 129))).clone(namedValues=NamedValues(("openSystem", 1), ("sharedKey", 2), ("unknown", 3), ("openAndEap", 129)))).setMaxAccess("accessiblefornotify")
if mibBuilder.loadTexts: cldcClientAuthenticationAlgorithm.setStatus('current')
if mibBuilder.loadTexts: cldcClientAuthenticationAlgorithm.setDescription('Authentication Algorithm of Mobile Station ')
cldcClientWepState = MibScalar((1, 3, 6, 1, 4, 1, 9, 9, 599, 1, 2, 13), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enable", 1), ("disable", 2)))).setMaxAccess("accessiblefornotify")
if mibBuilder.loadTexts: cldcClientWepState.setStatus('current')
if mibBuilder.loadTexts: cldcClientWepState.setDescription('WEP State of Mobile Station')
cldcClientEncryptionCypher = MibScalar((1, 3, 6, 1, 4, 1, 9, 9, 599, 1, 2, 14), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8, 9))).clone(namedValues=NamedValues(("ccmpAes", 1), ("tkipMic", 2), ("wep40", 3), ("wep104", 4), ("wep128", 5), ("none", 6), ("notavailable", 7), ("unknown", 8), ("wapiSMS4", 9)))).setMaxAccess("accessiblefornotify")
if mibBuilder.loadTexts: cldcClientEncryptionCypher.setStatus('current')
if mibBuilder.loadTexts: cldcClientEncryptionCypher.setDescription('Mode of the AP to which the Mobile Station is associated.')
cldcClientPortNumber = MibScalar((1, 3, 6, 1, 4, 1, 9, 9, 599, 1, 2, 15), Unsigned32()).setMaxAccess("accessiblefornotify")
if mibBuilder.loadTexts: cldcClientPortNumber.setStatus('current')
if mibBuilder.loadTexts: cldcClientPortNumber.setDescription('The Port Number of this Airespace Switch on which the traffic of the Mobile Station is coming through.')
cldcClientAnchorAddressType = MibScalar((1, 3, 6, 1, 4, 1, 9, 9, 599, 1, 2, 16), InetAddressType()).setMaxAccess("accessiblefornotify")
if mibBuilder.loadTexts: cldcClientAnchorAddressType.setStatus('current')
if mibBuilder.loadTexts: cldcClientAnchorAddressType.setDescription('This object indicates mobility Anchor address type.')
cldcClientAnchorAddress = MibScalar((1, 3, 6, 1, 4, 1, 9, 9, 599, 1, 2, 17), InetAddress()).setMaxAccess("accessiblefornotify")
if mibBuilder.loadTexts: cldcClientAnchorAddress.setStatus('current')
if mibBuilder.loadTexts: cldcClientAnchorAddress.setDescription('If the Mobility Status of the Mobile Station is Anchor then it will have Peer Ip Address and will have Anchor IP if the Role is Foreign')
cldcClientEssIndex = MibScalar((1, 3, 6, 1, 4, 1, 9, 9, 599, 1, 2, 18), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(1, 517))).setMaxAccess("accessiblefornotify")
if mibBuilder.loadTexts: cldcClientEssIndex.setStatus('current')
if mibBuilder.loadTexts: cldcClientEssIndex.setDescription('Ess Index of the Wlan(SSID) that is being used by Mobile Station to connect to AP')
cldcClientCcxVersion = MibScalar((1, 3, 6, 1, 4, 1, 9, 9, 599, 1, 2, 19), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=NamedValues(("notSupported", 1), ("ccxv1", 2), ("ccxv2", 3), ("ccxv3", 4), ("ccxv4", 5), ("ccxv5", 6), ("ccxv6", 7))).clone('notSupported')).setMaxAccess("accessiblefornotify")
if mibBuilder.loadTexts: cldcClientCcxVersion.setStatus('current')
if mibBuilder.loadTexts: cldcClientCcxVersion.setDescription('Represents the Cisco Compatible Extensions (CCX) Version the client is using for communication with the AP.')
cldcClientE2eVersion = MibScalar((1, 3, 6, 1, 4, 1, 9, 9, 599, 1, 2, 20), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("notSupported", 1), ("e2ev1", 2), ("e2ev2", 3)))).setMaxAccess("accessiblefornotify")
if mibBuilder.loadTexts: cldcClientE2eVersion.setStatus('current')
if mibBuilder.loadTexts: cldcClientE2eVersion.setDescription('Represents the End-2-End Version the client is using for communication with the AP.')
cldcClientInterface = MibScalar((1, 3, 6, 1, 4, 1, 9, 9, 599, 1, 2, 21), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 32))).setMaxAccess("accessiblefornotify")
if mibBuilder.loadTexts: cldcClientInterface.setStatus('current')
if mibBuilder.loadTexts: cldcClientInterface.setDescription('Name of the Interface of the mobile client to the switch.')
cldcClientMobilityStatus = MibScalar((1, 3, 6, 1, 4, 1, 9, 9, 599, 1, 2, 22), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8))).clone(namedValues=NamedValues(("unassociated", 1), ("local", 2), ("anchor", 3), ("foreign", 4), ("handoff", 5), ("unknown", 6), ("exportanchor", 7), ("exportforeign", 8)))).setMaxAccess("accessiblefornotify")
if mibBuilder.loadTexts: cldcClientMobilityStatus.setStatus('current')
if mibBuilder.loadTexts: cldcClientMobilityStatus.setDescription('Mobility Role of the Mobile Station.')
cldcClientStatusCode = MibScalar((1, 3, 6, 1, 4, 1, 9, 9, 599, 1, 2, 23), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("accessiblefornotify")
if mibBuilder.loadTexts: cldcClientStatusCode.setStatus('current')
if mibBuilder.loadTexts: cldcClientStatusCode.setDescription('Status Code of the Mobile Station')
cldcClientDeleteAction = MibScalar((1, 3, 6, 1, 4, 1, 9, 9, 599, 1, 2, 24), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("default", 1), ("delete", 2)))).setMaxAccess("accessiblefornotify")
if mibBuilder.loadTexts: cldcClientDeleteAction.setStatus('current')
if mibBuilder.loadTexts: cldcClientDeleteAction.setDescription('Action to Deauthenticate the Mobile Station. Set the State to delete.')
cldcClientSecurityPolicyStatus = MibScalar((1, 3, 6, 1, 4, 1, 9, 9, 599, 1, 2, 25), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("completed", 1), ("notcompleted", 2)))).setMaxAccess("accessiblefornotify")
if mibBuilder.loadTexts: cldcClientSecurityPolicyStatus.setStatus('current')
if mibBuilder.loadTexts: cldcClientSecurityPolicyStatus.setDescription('When this attribute has value completed, it shall indicate that the Mobile Station has completed the security policy checks. Otherwise the checks are yet to be completed.')
cldcClientTrapEventTime = MibScalar((1, 3, 6, 1, 4, 1, 9, 9, 599, 1, 2, 26), TimeTicks()).setMaxAccess("accessiblefornotify")
if mibBuilder.loadTexts: cldcClientTrapEventTime.setStatus('current')
if mibBuilder.loadTexts: cldcClientTrapEventTime.setDescription('This object represents the inet address of the Client.')
cldcClientPolicyManagerState = MibScalar((1, 3, 6, 1, 4, 1, 9, 9, 599, 1, 2, 27), SnmpAdminString()).setMaxAccess("accessiblefornotify")
if mibBuilder.loadTexts: cldcClientPolicyManagerState.setStatus('current')
if mibBuilder.loadTexts: cldcClientPolicyManagerState.setDescription('This object represents the current policy enforcement manager state of the client in controller.')
cldcClientAssocTime = MibScalar((1, 3, 6, 1, 4, 1, 9, 9, 599, 1, 2, 28), TimeStamp()).setMaxAccess("accessiblefornotify")
if mibBuilder.loadTexts: cldcClientAssocTime.setStatus('current')
if mibBuilder.loadTexts: cldcClientAssocTime.setDescription('This object indicates the value of client association time')
cldcClientPmipDataValid = MibScalar((1, 3, 6, 1, 4, 1, 9, 9, 599, 1, 2, 29), TruthValue()).setMaxAccess("accessiblefornotify")
if mibBuilder.loadTexts: cldcClientPmipDataValid.setStatus('current')
if mibBuilder.loadTexts: cldcClientPmipDataValid.setDescription('This object represents whether client has valid PMIP data.')
cldcClientMobilityExtDataValid = MibScalar((1, 3, 6, 1, 4, 1, 9, 9, 599, 1, 2, 30), TruthValue()).setMaxAccess("accessiblefornotify")
if mibBuilder.loadTexts: cldcClientMobilityExtDataValid.setStatus('current')
if mibBuilder.loadTexts: cldcClientMobilityExtDataValid.setDescription('This object represents new mobility status.')
cldcClientPolicyErrors = MibScalar((1, 3, 6, 1, 4, 1, 9, 9, 599, 1, 2, 31), Counter64()).setMaxAccess("accessiblefornotify")
if mibBuilder.loadTexts: cldcClientPolicyErrors.setStatus('current')
if mibBuilder.loadTexts: cldcClientPolicyErrors.setDescription('Number of Policy Errors for Mobile Station')
cldcClientSessionId = MibScalar((1, 3, 6, 1, 4, 1, 9, 9, 599, 1, 2, 32), SnmpAdminString()).setMaxAccess("accessiblefornotify")
if mibBuilder.loadTexts: cldcClientSessionId.setStatus('current')
if mibBuilder.loadTexts: cldcClientSessionId.setDescription('This object indicates the session to which the client is associated.')
cldcClientPmipNai = MibScalar((1, 3, 6, 1, 4, 1, 9, 9, 599, 1, 2, 33), SnmpAdminString()).setMaxAccess("accessiblefornotify")
if mibBuilder.loadTexts: cldcClientPmipNai.setStatus('current')
if mibBuilder.loadTexts: cldcClientPmipNai.setDescription('This object indicates the name of the profile, the client is associated to.')
cldcClientPmipState = MibScalar((1, 3, 6, 1, 4, 1, 9, 9, 599, 1, 2, 34), SnmpAdminString()).setMaxAccess("accessiblefornotify")
if mibBuilder.loadTexts: cldcClientPmipState.setStatus('current')
if mibBuilder.loadTexts: cldcClientPmipState.setDescription("This object indicates the state of the PMIP client: null: binding doesn't exist init: binding created, Retx timer running for PBU, binding not yet accepted from LMA, Tunnel/route is not yet setup active: binding accepted by LMA, refresh timer running, Tunnel/route setup complete. refreshPending: Refresh timer expired and Retx timer running. PBU refresh sent, PBA not yet received from LMA, (Tunnel/route is already setup). disconnectingSt: Dereg reply is expected. Retx timer is running, tunnel/route is still setup.")
cldcClientPmipInterface = MibScalar((1, 3, 6, 1, 4, 1, 9, 9, 599, 1, 2, 35), SnmpAdminString().subtype(subtypeSpec=ValueSizeConstraint(1, 32))).setMaxAccess("accessiblefornotify")
if mibBuilder.loadTexts: cldcClientPmipInterface.setStatus('current')
if mibBuilder.loadTexts: cldcClientPmipInterface.setDescription('This object indicates the interface to which the client is associated.')
cldcClientPmipHomeAddrType = MibScalar((1, 3, 6, 1, 4, 1, 9, 9, 599, 1, 2, 36), InetAddressType()).setMaxAccess("accessiblefornotify")
if mibBuilder.loadTexts: cldcClientPmipHomeAddrType.setStatus('current')
if mibBuilder.loadTexts: cldcClientPmipHomeAddrType.setDescription("This object indicates the type of the Client's Home address made available through cldcClientPmipHomeAddress.")
cldcClientPmipHomeAddr = MibScalar((1, 3, 6, 1, 4, 1, 9, 9, 599, 1, 2, 37), InetAddress()).setMaxAccess("accessiblefornotify")
if mibBuilder.loadTexts: cldcClientPmipHomeAddr.setStatus('current')
if mibBuilder.loadTexts: cldcClientPmipHomeAddr.setDescription('This object indicates the Home Address of the client.')
cldcClientPmipAtt = MibScalar((1, 3, 6, 1, 4, 1, 9, 9, 599, 1, 2, 38), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13))).clone(namedValues=NamedValues(("reserved", 1), ("logicalNetworkInterface", 2), ("pointToPointInterface", 3), ("ethernet", 4), ("wirelessLan", 5), ("wimax", 6), ("threeGPPGERAN", 7), ("threeGPPUTRAN", 8), ("threeGPPETRAN", 9), ("threeGPP2eHRPD", 10), ("threeGPP2HRPD", 11), ("threeGPP21xRTT", 12), ("threeGPP2UMB", 13)))).setMaxAccess("accessiblefornotify")
if mibBuilder.loadTexts: cldcClientPmipAtt.setStatus('current')
if mibBuilder.loadTexts: cldcClientPmipAtt.setDescription('This object indicates the access technology type by which the client is currently attached.')
cldcClientPmipLocalLinkId = MibScalar((1, 3, 6, 1, 4, 1, 9, 9, 599, 1, 2, 39), MacAddress()).setMaxAccess("accessiblefornotify")
if mibBuilder.loadTexts: cldcClientPmipLocalLinkId.setStatus('current')
if mibBuilder.loadTexts: cldcClientPmipLocalLinkId.setDescription('This object indicates the local link identifier of the client.')
cldcClientPmipLmaName = MibScalar((1, 3, 6, 1, 4, 1, 9, 9, 599, 1, 2, 40), SnmpAdminString()).setMaxAccess("accessiblefornotify")
if mibBuilder.loadTexts: cldcClientPmipLmaName.setStatus('current')
if mibBuilder.loadTexts: cldcClientPmipLmaName.setDescription('This object indicates the LMA to which the client is connected.')
cldcClientPmipLifeTime = MibScalar((1, 3, 6, 1, 4, 1, 9, 9, 599, 1, 2, 41), TimeTicks()).setMaxAccess("accessiblefornotify")
if mibBuilder.loadTexts: cldcClientPmipLifeTime.setStatus('current')
if mibBuilder.loadTexts: cldcClientPmipLifeTime.setDescription('This object indicates the duration of the PMIP client association.')
cldcClientPmipDomainName = MibScalar((1, 3, 6, 1, 4, 1, 9, 9, 599, 1, 2, 42), SnmpAdminString()).setMaxAccess("accessiblefornotify")
if mibBuilder.loadTexts: cldcClientPmipDomainName.setStatus('current')
if mibBuilder.loadTexts: cldcClientPmipDomainName.setDescription('This object indicates the domain to which the PMIP client is associated.')
cldcClientPmipUpKey = MibScalar((1, 3, 6, 1, 4, 1, 9, 9, 599, 1, 2, 43), Unsigned32()).setMaxAccess("accessiblefornotify")
if mibBuilder.loadTexts: cldcClientPmipUpKey.setStatus('current')
if mibBuilder.loadTexts: cldcClientPmipUpKey.setDescription('This object indicates the upstream key of the PMIP client.')
cldcClientPmipDownKey = MibScalar((1, 3, 6, 1, 4, 1, 9, 9, 599, 1, 2, 44), Unsigned32()).setMaxAccess("accessiblefornotify")
if mibBuilder.loadTexts: cldcClientPmipDownKey.setStatus('current')
if mibBuilder.loadTexts: cldcClientPmipDownKey.setDescription('This object indicates the downstream key of the PMIP client.')
ciscoLwappDot11ClientKeyDecryptError = NotificationType((1, 3, 6, 1, 4, 1, 9, 9, 599, 0, 1)).setObjects(("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcAssociationMode"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientMacAddress"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcApMacAddress"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcIfType"), ("CISCO-LWAPP-AP-MIB", "cLApName"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientAuthMode"))
if mibBuilder.loadTexts: ciscoLwappDot11ClientKeyDecryptError.setStatus('current')
if mibBuilder.loadTexts: ciscoLwappDot11ClientKeyDecryptError.setDescription('This notification is generated when a decrypt error occurs. The WEP WPA or WPA2 Key configured at the station may be wrong. cldcAssociationMode represents the association mode for which the key decrypt error occurred. cldcApMacAddress represents the MacAddress of the AP to which the client is associated. cldcIfType represents the wireless interface type of the client. cLApName represents the name of the AP to which the client is associated.')
ciscoLwappDot11ClientAssocNacAlert = NotificationType((1, 3, 6, 1, 4, 1, 9, 9, 599, 0, 2)).setObjects(("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientMacAddress"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientWlanProfileName"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientIPAddress"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcApMacAddress"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientQuarantineVLAN"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientAccessVLAN"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientAuthMode"))
if mibBuilder.loadTexts: ciscoLwappDot11ClientAssocNacAlert.setStatus('current')
if mibBuilder.loadTexts: ciscoLwappDot11ClientAssocNacAlert.setDescription("This notification is generated when the client on NAC enabled SSIDs complete layer2 authentication . This is to inform about client's presence to the NAC appliance. cldcClientWlanProfileName represents the profile name of the WLAN, this 802.11 wireless client is connected to. cldcClientIPAddress represents the unique ipaddress of the client. cldcApMacAddress represents the MacAddress of the AP to which the client is associated. cldcClientQuarantineVLAN represents the quarantine VLAN for the client. cldcClientAccessVLAN represents the access VLAN for the client.")
ciscoLwappDot11ClientDisassocNacAlert = NotificationType((1, 3, 6, 1, 4, 1, 9, 9, 599, 0, 3)).setObjects(("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientMacAddress"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientWlanProfileName"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientIPAddress"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcApMacAddress"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientQuarantineVLAN"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientAccessVLAN"))
if mibBuilder.loadTexts: ciscoLwappDot11ClientDisassocNacAlert.setStatus('current')
if mibBuilder.loadTexts: ciscoLwappDot11ClientDisassocNacAlert.setDescription("This notification is generated when the controller removes the client entry on NAC enabled SSIDs. cldcClientWlanProfileName represents the profile name of the WLAN, this 802.11 wireless client is connected to. cldcClientIPAddress represents the unique ipaddress of the client. cldcApMacAddress represents the MacAddress of the AP to which the client is associated. cldcClientQuarantineVLAN represents the quarantine VLAN for the client. cldcClientAccessVLAN represents the access VLAN for the client. This is issued on NAC enabled ssids, whenever WLC removes client's entry.")
ciscoLwappDot11ClientMovedToRunState = NotificationType((1, 3, 6, 1, 4, 1, 9, 9, 599, 0, 4)).setObjects(("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientMacAddress"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientIPAddress"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientUsername"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientSSID"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcApMacAddress"), ("CISCO-LWAPP-AP-MIB", "cLApDot11IfSlotId"), ("CISCO-LWAPP-AP-MIB", "cLApName"))
if mibBuilder.loadTexts: ciscoLwappDot11ClientMovedToRunState.setStatus('current')
if mibBuilder.loadTexts: ciscoLwappDot11ClientMovedToRunState.setDescription('This notification is generated when the client completes the PEM state and moves to the RUN state. cldcClientUsername represents the username used by the client. cldcClientIPAddress represents the unique ipaddress of the client. cldcClientSSID represents the SSID of the WLAN to which the client is associated. cldcApMacAddress represents the MacAddress of the AP to which the client is associated. cLApDot11IfSlotId represents the slotId of the AP to which the client is associated. cLApName represents the name of the AP to which the client is associated.')
ciscoLwappDot11ClientStaticIpFailTrap = NotificationType((1, 3, 6, 1, 4, 1, 9, 9, 599, 0, 5)).setObjects(("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientMacAddress"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientIPAddress"))
if mibBuilder.loadTexts: ciscoLwappDot11ClientStaticIpFailTrap.setStatus('current')
if mibBuilder.loadTexts: ciscoLwappDot11ClientStaticIpFailTrap.setDescription('This is issued whenever the subnet defined for the Static IP of a Client is not found.')
ciscoLwappDot11ClientDisassocDataStatsTrap = NotificationType((1, 3, 6, 1, 4, 1, 9, 9, 599, 0, 6)).setObjects(("CISCO-LWAPP-AP-MIB", "cLApName"), ("CISCO-LWAPP-AP-MIB", "cLApDot11IfSlotId"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientByIpAddressType"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientByIpAddress"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcApMacAddress"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientReasonCode"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientUsername"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientSSID"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientSessionID"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientTxDataPackets"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientTxDataBytes"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientRxDataPackets"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientRxDataBytes"))
if mibBuilder.loadTexts: ciscoLwappDot11ClientDisassocDataStatsTrap.setStatus('current')
if mibBuilder.loadTexts: ciscoLwappDot11ClientDisassocDataStatsTrap.setDescription('The disassociate notification shall be sent when the Station sends a Disassociation frame. The value of the notification shall include the MAC address of the MAC to which the Disassociation frame was sent and the reason for the disassociation')
ciscoLwappDot11ClientAssocDataStatsTrap = NotificationType((1, 3, 6, 1, 4, 1, 9, 9, 599, 0, 7)).setObjects(("CISCO-LWAPP-AP-MIB", "cLApDot11IfSlotId"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientByIpAddressType"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientByIpAddress"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcApMacAddress"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientUsername"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientApRoamMacAddress"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientSSID"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientTxDataPackets"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientTxDataBytes"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientRxDataPackets"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientRxDataBytes"))
if mibBuilder.loadTexts: ciscoLwappDot11ClientAssocDataStatsTrap.setStatus('current')
if mibBuilder.loadTexts: ciscoLwappDot11ClientAssocDataStatsTrap.setDescription('The associate notification shall be sent when the Station sends a association frame.')
ciscoLwappDot11ClientSessionTrap = NotificationType((1, 3, 6, 1, 4, 1, 9, 9, 599, 0, 8)).setObjects(("CISCO-LWAPP-AP-MIB", "cLApDot11IfSlotId"), ("CISCO-LWAPP-AP-MIB", "cLApName"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientByIpAddressType"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientByIpAddress"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientUsername"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientSSID"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientSessionID"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcApMacAddress"))
if mibBuilder.loadTexts: ciscoLwappDot11ClientSessionTrap.setStatus('current')
if mibBuilder.loadTexts: ciscoLwappDot11ClientSessionTrap.setDescription('Issued when the client completes the PEM state and moves to the RUN state.')
ciscoLwappDot11ClientAssocTrap = NotificationType((1, 3, 6, 1, 4, 1, 9, 9, 599, 0, 9)).setObjects(("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientTrapEventTime"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientMacAddress"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientByIpAddressType"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientByIpAddress"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientPolicyType"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientStatus"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientAID"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcApMacAddress"), ("CISCO-LWAPP-AP-MIB", "cLApDot11IfSlotId"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientSSID"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientAuthenticationAlgorithm"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientEncryptionCypher"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientPortNumber"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientAnchorAddressType"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientAnchorAddress"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientEssIndex"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientWlanProfileName"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientWgbStatus"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientWgbMacAddress"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientCcxVersion"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientE2eVersion"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientInterface"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClient80211uCapable"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientMobilityStatus"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientRSSI"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientSNR"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientSecurityPolicyStatus"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientLoginTime"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientAssocTime"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientCurrentTxRateSet"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientDataRateSet"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientHreapApAuth"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldccCcxFoundationServiceVersion"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldccCcxLocationServiceVersion"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldccCcxVoiceServiceVersion"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldccCcxManagementServiceVersion"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientDataSwitching"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientAuthentication"), ("CISCO-LWAPP-AP-MIB", "cLApDot11RadioChannelNumber"), ("CISCO-LWAPP-AP-MIB", "cLApIfLoadChannelUtilization"), ("CISCO-LWAPP-AP-MIB", "cLApLocation"), ("CISCO-LWAPP-AP-MIB", "cLAPGroupVlanName"), ("CISCO-LWAPP-AP-MIB", "cLApSubMode"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientIPAddress"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientSessionId"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientVlanId"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientProtocol"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientEapType"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientPolicyErrors"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientDataRetries"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientRtsRetries"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientDataBytesSent"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientDataBytesReceived"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientDataPacketsSent"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientDataPacketsReceived"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientTxDataBytesDropped"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientRxDataBytesDropped"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientTxDataPacketsDropped"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientRxDataPacketsDropped"))
if mibBuilder.loadTexts: ciscoLwappDot11ClientAssocTrap.setStatus('current')
if mibBuilder.loadTexts: ciscoLwappDot11ClientAssocTrap.setDescription('The notification shall be sent when the Station associats to controller.')
ciscoLwappDot11ClientDeAuthenticatedTrap = NotificationType((1, 3, 6, 1, 4, 1, 9, 9, 599, 0, 10)).setObjects(("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientTrapEventTime"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientUpTime"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientMacAddress"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientByIpAddressType"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientByIpAddress"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientPostureState"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientProtocol"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientVlanId"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientPolicyType"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientEapType"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientStatus"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientAID"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcApMacAddress"), ("CISCO-LWAPP-AP-MIB", "cLApDot11IfSlotId"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientSSID"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientAuthenticationAlgorithm"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientWepState"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientEncryptionCypher"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientPortNumber"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientAnchorAddressType"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientAnchorAddress"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientEssIndex"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientWlanProfileName"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientWgbStatus"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientWgbMacAddress"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientCcxVersion"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientE2eVersion"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientInterface"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClient80211uCapable"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientMobilityStatus"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientRSSI"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientSNR"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientDataRetries"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientRtsRetries"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientUsername"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcDOT11ClientReasonCode"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientStatusCode"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientDeleteAction"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientSecurityPolicyStatus"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientNacState"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientLoginTime"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientAssocTime"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientCurrentTxRateSet"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientDataRateSet"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientHreapApAuth"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldccCcxFoundationServiceVersion"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldccCcxLocationServiceVersion"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldccCcxVoiceServiceVersion"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldccCcxManagementServiceVersion"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientDataSwitching"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientAuthentication"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientByIpAddressDiscoverType"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientByIpAddressLastSeen"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientPowerSaveMode"), ("CISCO-LWAPP-AP-MIB", "cLApDot11RadioChannelNumber"), ("CISCO-LWAPP-AP-MIB", "cLApIfLoadChannelUtilization"), ("CISCO-LWAPP-AP-MIB", "cLApLocation"), ("CISCO-LWAPP-AP-MIB", "cLAPGroupVlanName"), ("CISCO-LWAPP-AP-MIB", "cLApSubMode"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientIPAddress"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientPolicyErrors"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientPolicyManagerState"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientDataBytesSent"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientDataBytesReceived"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientDataPacketsSent"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientDataPacketsReceived"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientTxDataBytesDropped"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientRxDataBytesDropped"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientTxDataPacketsDropped"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientRxDataPacketsDropped"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientSessionId"))
if mibBuilder.loadTexts: ciscoLwappDot11ClientDeAuthenticatedTrap.setStatus('current')
if mibBuilder.loadTexts: ciscoLwappDot11ClientDeAuthenticatedTrap.setDescription('The notification shall be sent when the Station gets de-authenticated.')
ciscoLwappDot11ClientMovedToRunStateNewTrap = NotificationType((1, 3, 6, 1, 4, 1, 9, 9, 599, 0, 11)).setObjects(("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientTrapEventTime"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientMacAddress"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientByIpAddressType"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientByIpAddress"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientPostureState"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientProtocol"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientVlanId"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientPolicyType"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientEapType"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientStatus"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientAID"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcApMacAddress"), ("CISCO-LWAPP-AP-MIB", "cLApDot11IfSlotId"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientWlanProfileName"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientAuthenticationAlgorithm"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientWepState"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientEncryptionCypher"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientPortNumber"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientAnchorAddressType"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientAnchorAddress"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientEssIndex"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientWgbStatus"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientWgbMacAddress"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientCcxVersion"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientE2eVersion"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClient80211uCapable"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientMobilityStatus"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientRSSI"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientSNR"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientDataRetries"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientRtsRetries"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientUsername"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientStatusCode"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientSecurityPolicyStatus"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientNacState"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientLoginTime"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientDataRateSet"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientHreapApAuth"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldccCcxFoundationServiceVersion"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldccCcxLocationServiceVersion"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldccCcxVoiceServiceVersion"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldccCcxManagementServiceVersion"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientDataSwitching"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientAuthentication"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientByIpAddressDiscoverType"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientByIpAddressLastSeen"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientPowerSaveMode"), ("CISCO-LWAPP-AP-MIB", "cLApDot11RadioChannelNumber"), ("CISCO-LWAPP-AP-MIB", "cLApIfLoadChannelUtilization"), ("CISCO-LWAPP-AP-MIB", "cLApSubMode"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientIPAddress"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientPolicyManagerState"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientPmipNai"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientPmipState"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientPmipInterface"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientPmipHomeAddrType"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientPmipHomeAddr"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientPmipAtt"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientPmipLocalLinkId"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientPmipDomainName"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientPmipLmaName"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientPmipUpKey"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientPmipDownKey"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientPmipLifeTime"), ("CISCO-LWAPP-MOBILITY-EXT-MIB", "cLMobilityExtMCClientAnchorMCPrivateAddressType"), ("CISCO-LWAPP-MOBILITY-EXT-MIB", "cLMobilityExtMCClientAnchorMCPrivateAddress"), ("CISCO-LWAPP-MOBILITY-EXT-MIB", "cLMobilityExtMCClientAssociatedMAAddressType"), ("CISCO-LWAPP-MOBILITY-EXT-MIB", "cLMobilityExtMCClientAssociatedMAAddress"), ("CISCO-LWAPP-MOBILITY-EXT-MIB", "cLMobilityExtMCClientAssociatedMCAddressType"), ("CISCO-LWAPP-MOBILITY-EXT-MIB", "cLMobilityExtMCClientAssociatedMCAddress"), ("CISCO-LWAPP-MOBILITY-EXT-MIB", "cLMobilityExtMCClientAssociatedMCGroupId"), ("CISCO-LWAPP-MOBILITY-EXT-MIB", "cLMobilityExtMCClientAnchorMCGroupId"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientPmipDataValid"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientMobilityExtDataValid"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientSessionId"))
if mibBuilder.loadTexts: ciscoLwappDot11ClientMovedToRunStateNewTrap.setStatus('current')
if mibBuilder.loadTexts: ciscoLwappDot11ClientMovedToRunStateNewTrap.setDescription('The notification shall be sent when the Station moves to run or authenticated state.')
ciscoLwappDot11ClientMobilityTrap = NotificationType((1, 3, 6, 1, 4, 1, 9, 9, 599, 0, 12)).setObjects(("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientTrapEventTime"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientUpTime"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientMacAddress"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientByIpAddressType"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientByIpAddress"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientPostureState"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientProtocol"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientVlanId"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientPolicyType"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientEapType"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientStatus"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientAID"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcApMacAddress"), ("CISCO-LWAPP-AP-MIB", "cLApDot11IfSlotId"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientSSID"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientAuthenticationAlgorithm"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientWepState"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientEncryptionCypher"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientPortNumber"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientAnchorAddressType"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientAnchorAddress"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientEssIndex"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientWlanProfileName"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientWgbStatus"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientWgbMacAddress"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientCcxVersion"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientE2eVersion"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientInterface"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClient80211uCapable"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientMobilityStatus"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientRSSI"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientSNR"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientDataRetries"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientRtsRetries"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientUsername"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcDOT11ClientReasonCode"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientStatusCode"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientDeleteAction"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientSecurityPolicyStatus"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientNacState"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientLoginTime"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientAssocTime"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientCurrentTxRateSet"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientDataRateSet"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientHreapApAuth"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldccCcxFoundationServiceVersion"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldccCcxLocationServiceVersion"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldccCcxVoiceServiceVersion"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldccCcxManagementServiceVersion"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientDataSwitching"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientAuthentication"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientByIpAddressDiscoverType"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientByIpAddressLastSeen"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientPowerSaveMode"), ("CISCO-LWAPP-AP-MIB", "cLApDot11RadioChannelNumber"), ("CISCO-LWAPP-AP-MIB", "cLApIfLoadChannelUtilization"), ("CISCO-LWAPP-AP-MIB", "cLApLocation"), ("CISCO-LWAPP-AP-MIB", "cLAPGroupVlanName"), ("CISCO-LWAPP-AP-MIB", "cLApSubMode"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientIPAddress"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientPolicyErrors"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientPolicyManagerState"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientDataBytesSent"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientDataBytesReceived"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientDataPacketsSent"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientDataPacketsReceived"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientTxDataBytesDropped"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientRxDataBytesDropped"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientTxDataPacketsDropped"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientRxDataPacketsDropped"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientSessionId"))
if mibBuilder.loadTexts: ciscoLwappDot11ClientMobilityTrap.setStatus('current')
if mibBuilder.loadTexts: ciscoLwappDot11ClientMobilityTrap.setDescription('The notification shall be sent when the Station gets roamed.')
ciscoLwappDot11ClientMIBCompliances = MibIdentifier((1, 3, 6, 1, 4, 1, 9, 9, 599, 2, 1))
ciscoLwappDot11ClientMIBGroups = MibIdentifier((1, 3, 6, 1, 4, 1, 9, 9, 599, 2, 2))
ciscoLwappDot11ClientMIBCompliance = ModuleCompliance((1, 3, 6, 1, 4, 1, 9, 9, 599, 2, 1, 1)).setObjects(("CISCO-LWAPP-DOT11-CLIENT-MIB", "ciscoLwappDot11ClientMIBConfigGroup"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "ciscoLwappDot11ClientMIBNotifsGroup"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "ciscoLwappDot11ClientMIBStatusGroup"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
ciscoLwappDot11ClientMIBCompliance = ciscoLwappDot11ClientMIBCompliance.setStatus('deprecated')
if mibBuilder.loadTexts: ciscoLwappDot11ClientMIBCompliance.setDescription('The compliance statement for the SNMP entities that implement this MIB. ')
ciscoLwappDot11ClientMIBComplianceRev2 = ModuleCompliance((1, 3, 6, 1, 4, 1, 9, 9, 599, 2, 1, 2)).setObjects(("CISCO-LWAPP-DOT11-CLIENT-MIB", "ciscoLwappDot11ClientMIBConfigGroup"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "ciscoLwappDot11ClientMIBNotifsGroup"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "ciscoLwappDot11ClientMIBStatusGroup"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "ciscoLwappDot11ClientMIBStatusGroupRev2"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "ciscoLwappDot11ClientMIBNotifsGroupRev2"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "ciscoLwappDot11ClientMIBNotifControlGroup"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
ciscoLwappDot11ClientMIBComplianceRev2 = ciscoLwappDot11ClientMIBComplianceRev2.setStatus('current')
if mibBuilder.loadTexts: ciscoLwappDot11ClientMIBComplianceRev2.setDescription('The compliance statement for the SNMP entities that implement this MIB.')
ciscoLwappDot11ClientMIBConfigGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 9, 9, 599, 2, 2, 1)).setObjects(("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcKeyDecryptErrorEnabled"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
ciscoLwappDot11ClientMIBConfigGroup = ciscoLwappDot11ClientMIBConfigGroup.setStatus('current')
if mibBuilder.loadTexts: ciscoLwappDot11ClientMIBConfigGroup.setDescription('This collection of objects specifies the required configuration parameters for the 802.11 wireless clients.')
ciscoLwappDot11ClientMIBNotifsGroup = NotificationGroup((1, 3, 6, 1, 4, 1, 9, 9, 599, 2, 2, 2)).setObjects(("CISCO-LWAPP-DOT11-CLIENT-MIB", "ciscoLwappDot11ClientKeyDecryptError"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
ciscoLwappDot11ClientMIBNotifsGroup = ciscoLwappDot11ClientMIBNotifsGroup.setStatus('current')
if mibBuilder.loadTexts: ciscoLwappDot11ClientMIBNotifsGroup.setDescription('This collection of objects specifies the notifications for the 802.11 wireless clients.')
ciscoLwappDot11ClientMIBStatusGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 9, 9, 599, 2, 2, 3)).setObjects(("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientStatus"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientWlanProfileName"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientWgbStatus"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientWgbMacAddress"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientProtocol"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcAssociationMode"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcApMacAddress"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcIfType"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientIPAddress"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientNacState"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientQuarantineVLAN"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientAccessVLAN"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientAuthMode"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
ciscoLwappDot11ClientMIBStatusGroup = ciscoLwappDot11ClientMIBStatusGroup.setStatus('current')
if mibBuilder.loadTexts: ciscoLwappDot11ClientMIBStatusGroup.setDescription('This collection of objects specifies the required status parameters for the 802.11 wireless clients.')
ciscoLwappDot11ClientMIBStatusGroupRev2 = ObjectGroup((1, 3, 6, 1, 4, 1, 9, 9, 599, 2, 2, 4)).setObjects(("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientLoginTime"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientUpTime"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientPowerSaveMode"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientCurrentTxRateSet"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientDataRateSet"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientHreapApAuth"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClient80211uCapable"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientDataRetries"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientRtsRetries"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientDuplicatePackets"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientDecryptFailures"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientMicErrors"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientMicMissingFrames"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientIPAddress"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientNacState"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientQuarantineVLAN"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientAccessVLAN"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientPostureState"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientAclName"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientAclApplied"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientRedirectUrl"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientAaaOverrideAclName"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientAaaOverrideAclApplied"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientUsername"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcClientSSID"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
ciscoLwappDot11ClientMIBStatusGroupRev2 = ciscoLwappDot11ClientMIBStatusGroupRev2.setStatus('current')
if mibBuilder.loadTexts: ciscoLwappDot11ClientMIBStatusGroupRev2.setDescription('This collection of objects specifies the required status parameters for the 802.11 wireless clients.')
ciscoLwappDot11ClientMIBNotifsGroupRev2 = NotificationGroup((1, 3, 6, 1, 4, 1, 9, 9, 599, 2, 2, 5)).setObjects(("CISCO-LWAPP-DOT11-CLIENT-MIB", "ciscoLwappDot11ClientAssocNacAlert"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "ciscoLwappDot11ClientDisassocNacAlert"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "ciscoLwappDot11ClientMovedToRunState"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
ciscoLwappDot11ClientMIBNotifsGroupRev2 = ciscoLwappDot11ClientMIBNotifsGroupRev2.setStatus('current')
if mibBuilder.loadTexts: ciscoLwappDot11ClientMIBNotifsGroupRev2.setDescription('This collection of objects represents the notifications for the 802.11 wireless clients.')
ciscoLwappDot11ClientMIBNotifControlGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 9, 9, 599, 2, 2, 6)).setObjects(("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcAssocNacAlertEnabled"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcDisassocNacAlertEnabled"), ("CISCO-LWAPP-DOT11-CLIENT-MIB", "cldcMovedToRunStateEnabled"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
ciscoLwappDot11ClientMIBNotifControlGroup = ciscoLwappDot11ClientMIBNotifControlGroup.setStatus('current')
if mibBuilder.loadTexts: ciscoLwappDot11ClientMIBNotifControlGroup.setDescription('This collection of objects represents the objects that control the notifications for the 802.11 wireless clients.')
mibBuilder.exportSymbols("CISCO-LWAPP-DOT11-CLIENT-MIB", cldcSleepingClientTable=cldcSleepingClientTable, cldcClientTrapEventTime=cldcClientTrapEventTime, cldcClientPmipDataValid=cldcClientPmipDataValid, cldcClientPolicyManagerState=cldcClientPolicyManagerState, cldcClientPmipAtt=cldcClientPmipAtt, cldcClientMobilityExtDataValid=cldcClientMobilityExtDataValid, cldcClientDataBytesSent=cldcClientDataBytesSent, cldcClientMdnsAdvCount=cldcClientMdnsAdvCount, cldcClientDecryptFailures=cldcClientDecryptFailures, cldcClientAuthentication=cldcClientAuthentication, ciscoLwappDot11ClientMovedToRunState=ciscoLwappDot11ClientMovedToRunState, cldcClientQuarantineVLAN=cldcClientQuarantineVLAN, cldccCcxVoiceServiceVersion=cldccCcxVoiceServiceVersion, cldcClientRtsRetries=cldcClientRtsRetries, cldcClientPmipDownKey=cldcClientPmipDownKey, cldcClientPmipNai=cldcClientPmipNai, cldcClientReasonCode=cldcClientReasonCode, cldcClientHreapApAuth=cldcClientHreapApAuth, cldcClientPostureState=cldcClientPostureState, cldcClientDataPacketsSent=cldcClientDataPacketsSent, cldcClientRxRealtimePacketsDropped=cldcClientRxRealtimePacketsDropped, cldcClientAnchorAddressType=cldcClientAnchorAddressType, cldcClientChannel=cldcClientChannel, cldcStatisticObjects=cldcStatisticObjects, cldcClientStatus=cldcClientStatus, cldcClientByIpAddressDiscoverType=cldcClientByIpAddressDiscoverType, cldcAssocNacAlertEnabled=cldcAssocNacAlertEnabled, cldcClientRealtimePacketsSent=cldcClientRealtimePacketsSent, cldcClientSecurityPolicyStatus=cldcClientSecurityPolicyStatus, cldcClientCurrentTxRateSet=cldcClientCurrentTxRateSet, ciscoLwappDot11ClientMIBNotifControlGroup=ciscoLwappDot11ClientMIBNotifControlGroup, cldcClientUpTime=cldcClientUpTime, cldcClientSessionID=cldcClientSessionID, cldcClientRxDataPackets=cldcClientRxDataPackets, ciscoLwappDot11ClientAssocDataStatsTrap=ciscoLwappDot11ClientAssocDataStatsTrap, cldcDOT11ClientRxDataPackets=cldcDOT11ClientRxDataPackets, ciscoLwappDot11ClientMIBComplianceRev2=ciscoLwappDot11ClientMIBComplianceRev2, cldcClientDataSwitching=cldcClientDataSwitching, cldcClientPolicyName=cldcClientPolicyName, ciscoLwappDot11ClientMIBGroups=ciscoLwappDot11ClientMIBGroups, ciscoLwappDot11ClientMIBObjects=ciscoLwappDot11ClientMIBObjects, cldcClientPolicyErrors=cldcClientPolicyErrors, cldcClientRealtimeBytesSent=cldcClientRealtimeBytesSent, cldcNotifObjects=cldcNotifObjects, cldcClientWgbMacAddress=cldcClientWgbMacAddress, cldcSleepingClientUserName=cldcSleepingClientUserName, cldcCcxObjects=cldcCcxObjects, cldcKeyDecryptErrorEnabled=cldcKeyDecryptErrorEnabled, cldcClientByIpAddressLastSeen=cldcClientByIpAddressLastSeen, ciscoLwappDot11ClientStaticIpFailTrap=ciscoLwappDot11ClientStaticIpFailTrap, cldcClientAaaOverrideAclName=cldcClientAaaOverrideAclName, ciscoLwappDot11ClientMIBConform=ciscoLwappDot11ClientMIBConform, ciscoLwappDot11ClientStaticIpFailTrapEnabled=ciscoLwappDot11ClientStaticIpFailTrapEnabled, cldcClientCcxVersion=cldcClientCcxVersion, cldcClientRaPacketsDropped=cldcClientRaPacketsDropped, ciscoLwappDot11ClientMIBNotifsGroupRev2=ciscoLwappDot11ClientMIBNotifsGroupRev2, ciscoLwappDot11ClientMIBCompliance=ciscoLwappDot11ClientMIBCompliance, cldcDOT11ClientTxDataBytes=cldcDOT11ClientTxDataBytes, cldccCcxManagementServiceVersion=cldccCcxManagementServiceVersion, ciscoLwappDot11ClientMIBConfigGroup=ciscoLwappDot11ClientMIBConfigGroup, cldcClientIpv6AclApplied=cldcClientIpv6AclApplied, cldcClientByIpEntry=cldcClientByIpEntry, cldcClientEntry=cldcClientEntry, cldccCcxFoundationServiceVersion=cldccCcxFoundationServiceVersion, cldcClientSNR=cldcClientSNR, cldcClientDataPacketsReceived=cldcClientDataPacketsReceived, cldcClientAID=cldcClientAID, cldcClientPortNumber=cldcClientPortNumber, cldcClientPolicyType=cldcClientPolicyType, cldcClientPmipHomeAddrType=cldcClientPmipHomeAddrType, cldcClientTxDataBytesDropped=cldcClientTxDataBytesDropped, cldccCcxVersionInfoTable=cldccCcxVersionInfoTable, cldcClientMdnsProfile=cldcClientMdnsProfile, cldcSleepingClientSsid=cldcSleepingClientSsid, cldcClientWlanProfileName=cldcClientWlanProfileName, cldcConfigObjects=cldcConfigObjects, cldcClientPowerSaveMode=cldcClientPowerSaveMode, cldcClientDataRetries=cldcClientDataRetries, cldcClientMacAddress=cldcClientMacAddress, cldcClientIPAddress=cldcClientIPAddress, cldcClientStatisticEntry=cldcClientStatisticEntry, cldcClientByIpAddress=cldcClientByIpAddress, ciscoLwappDot11ClientCcxMIBObjects=ciscoLwappDot11ClientCcxMIBObjects, ciscoLwappDot11ClientMIBStatusGroupRev2=ciscoLwappDot11ClientMIBStatusGroupRev2, cldcClientDuplicatePackets=cldcClientDuplicatePackets, cldcClientRxDataPacketsDropped=cldcClientRxDataPacketsDropped, cldcAssociationMode=cldcAssociationMode, cldcClientEssIndex=cldcClientEssIndex, ciscoLwappDot11ClientMovedToRunStateNewTrap=ciscoLwappDot11ClientMovedToRunStateNewTrap, cldcClientRealtimeBytesReceived=cldcClientRealtimeBytesReceived, cldcClientStatisticTable=cldcClientStatisticTable, ciscoLwappDot11ClientMIBStatusGroup=ciscoLwappDot11ClientMIBStatusGroup, cldcClientPmipHomeAddr=cldcClientPmipHomeAddr, cldcClientTxRealtimePacketsDropped=cldcClientTxRealtimePacketsDropped, cldcClientTxRealtimeBytesDropped=cldcClientTxRealtimeBytesDropped, cldcClientEncryptionCypher=cldcClientEncryptionCypher, cldcClientTypeKTS=cldcClientTypeKTS, cldcClientLoginTime=cldcClientLoginTime, cldcClientInterface=cldcClientInterface, cldcMovedToRunStateEnabled=cldcMovedToRunStateEnabled, cldcClientApRoamMacAddress=cldcClientApRoamMacAddress, cldcClientVlanId=cldcClientVlanId, cldcClientWepState=cldcClientWepState, cldcDOT11ClientReasonCode=cldcDOT11ClientReasonCode, cldcClientEapType=cldcClientEapType, cldcClientRedirectUrl=cldcClientRedirectUrl, ciscoLwappDot11ClientAssocTrap=ciscoLwappDot11ClientAssocTrap, cldcClientAuthMode=cldcClientAuthMode, cldcClientPmipLmaName=cldcClientPmipLmaName, cldcClientSSID=cldcClientSSID, cldcClient80211uCapable=cldcClient80211uCapable, cldcClientPmipUpKey=cldcClientPmipUpKey, cldcSleepingClientEntry=cldcSleepingClientEntry, cldcClientMicMissingFrames=cldcClientMicMissingFrames, cldcClientDeleteAction=cldcClientDeleteAction, cldcStatusObjects=cldcStatusObjects, cldcClientWgbStatus=cldcClientWgbStatus, cldcClientAclName=cldcClientAclName, cldcClientDeviceType=cldcClientDeviceType, cldcSleepingClientRowStatus=cldcSleepingClientRowStatus, cldcSleepingClientRemainingTime=cldcSleepingClientRemainingTime, cldcClientAnchorAddress=cldcClientAnchorAddress, ciscoLwappDot11ClientAssocNacAlert=ciscoLwappDot11ClientAssocNacAlert, ciscoLwappDot11ClientDisassocNacAlert=ciscoLwappDot11ClientDisassocNacAlert, cldcClientStatusCode=cldcClientStatusCode, ciscoLwappDot11ClientMIB=ciscoLwappDot11ClientMIB, cldcClientInterimUpdatesCount=cldcClientInterimUpdatesCount, cldcClientRxRealtimeBytesDropped=cldcClientRxRealtimeBytesDropped, cldcClientTxDataPacketsDropped=cldcClientTxDataPacketsDropped, cldcClientE2eVersion=cldcClientE2eVersion, cldccCcxLocationServiceVersion=cldccCcxLocationServiceVersion, ciscoLwappDot11ClientDeAuthenticatedTrap=ciscoLwappDot11ClientDeAuthenticatedTrap, cldcDisassocNacAlertEnabled=cldcDisassocNacAlertEnabled, cldcClientRealtimePacketsReceived=cldcClientRealtimePacketsReceived, cldcClientDataRateSet=cldcClientDataRateSet, cldcClientAaaOverrideAclApplied=cldcClientAaaOverrideAclApplied, cldcClientMicErrors=cldcClientMicErrors, cldcClientAAARole=cldcClientAAARole, cldccCcxVersionInfoEntry=cldccCcxVersionInfoEntry, cldcApMacAddress=cldcApMacAddress, cldcClientRSSI=cldcClientRSSI, ciscoLwappDot11ClientMIBNotifsGroup=ciscoLwappDot11ClientMIBNotifsGroup, PYSNMP_MODULE_ID=ciscoLwappDot11ClientMIB, cldcClientPmipLocalLinkId=cldcClientPmipLocalLinkId, ciscoLwappDot11ClientSessionTrap=ciscoLwappDot11ClientSessionTrap, ciscoLwappDot11ClientMobilityTrap=ciscoLwappDot11ClientMobilityTrap, cldcClientAuthenticationAlgorithm=cldcClientAuthenticationAlgorithm, cldcClientProtocol=cldcClientProtocol, cldcSleepingClientMacAddress=cldcSleepingClientMacAddress, ciscoLwappDot11ClientMIBCompliances=ciscoLwappDot11ClientMIBCompliances, cldcClientIpv6AclName=cldcClientIpv6AclName, cldcClientAclApplied=cldcClientAclApplied, cldcClientRxDataBytes=cldcClientRxDataBytes, ciscoLwappDot11ClientKeyDecryptError=ciscoLwappDot11ClientKeyDecryptError, cldcClientNacState=cldcClientNacState, cldcClientAccessVLAN=cldcClientAccessVLAN, cldcClientTxDataBytes=cldcClientTxDataBytes, cldcClientPmipInterface=cldcClientPmipInterface, cldcClientTable=cldcClientTable, cldcClientByIpTable=cldcClientByIpTable, cldcClientPmipLifeTime=cldcClientPmipLifeTime, cldcClientRxDataBytesDropped=cldcClientRxDataBytesDropped, cldcClientSessionId=cldcClientSessionId, cldcClientUsername=cldcClientUsername, cldcClientByIpAddressType=cldcClientByIpAddressType, cldcClientDataBytesReceived=cldcClientDataBytesReceived, ciscoLwappDot11ClientMIBNotifs=ciscoLwappDot11ClientMIBNotifs, cldcClientTxDataPackets=cldcClientTxDataPackets, ciscoLwappDot11ClientDisassocDataStatsTrap=ciscoLwappDot11ClientDisassocDataStatsTrap, cldcUserAuthType=cldcUserAuthType, cldcIfType=cldcIfType, cldcClientSecurityTagId=cldcClientSecurityTagId, cldcDOT11ClientTxDataPackets=cldcDOT11ClientTxDataPackets, cldcDOT11ClientRxDataBytes=cldcDOT11ClientRxDataBytes, cldcClientAssocTime=cldcClientAssocTime, cldcClientPmipDomainName=cldcClientPmipDomainName, cldcClientMobilityStatus=cldcClientMobilityStatus, cldcClientPmipState=cldcClientPmipState)
|
'''
@jacksontenorio8
Melhore o DESAFIO 061, perguntando perguntando para o usuário se ele quer mostrar
mais termos. O programa encerra quando ele disser que quer mostrar 0 termos.
'''
print('GERADOR DE PA')
print('='*10)
primeiro = int(input('Primeiro Termo: '))
razao = int(input('Razão da PA: '))
termo = primeiro
i = 1
total = 0
mais = 10
while mais != 0:
total = total + mais
while i <= total:
print(f'{termo} -> ', end='->')
termo += razao
i += 1
print('PAUSA')
mais = int(input('Quantos termos você quer mostrar a mais? '))
print(f'Progressão finalizada com {total} termos mostrados.')
|
'''
pyleaves/pyleaves/trainers/__init__.py
trainers submodule of the pyleaves package
contains trainer subclasses for use in pyleaves for assembling and executing full experiments.
e.g. data preprocessing -> data loading -> model training -> model testing
'''
|
#Exercício Python 042: Refaça o DESAFIO 035 dos triângulos, acrescentando o recurso de mostrar que tipo de triângulo será formado:
#- EQUILÁTERO: todos os lados iguais
#- ISÓSCELES: dois lados iguais, um diferente
#- ESCALENO: todos os lados diferentes
a = float(input('1° seguimento: '))
b = float(input('2° seguimento: '))
c = float(input('3° seguimento: '))
if a - b < c and a + b > c and b - c < a and b + c > a and a - c < b and a + c > b:
if a == b and b == c:
print('Os seguimentos acima podem formar um triângulo Equilátero')
elif a != b and b == c or a == b and b != c or a == c and c != b:
print('Os seguimentos acima podem formar um triângulo Isósceles')
else:
print('Os seguimentos acima podem formar um triângulo Escaleno')
else:
print('Os seguimentos acima não formam um triângulo!')
|
# n = int(input())
# for i in range(n):
# print("*"*i)
# n = int(input())
# i = n
# while i >=0:
# print("*"*i)
# i -= 1
# n = int(input())
# i = 0
# j = n
# while i <=n:
# print(" "*j+"*"*i)
# i += 1
# j -= 1
# n = int(input())
# i = n
# j = 0
# while i >=0:
# print(" "*j+"*"*i)
# i -= 1
# j += 1
n = int(input())
i = n
j = 0
while i >= 0:
print(" "*j+"*"*i)
i -= 2
j += 1
|
# Space: O(n)
# Time: O(n)
class RecentCounter:
def __init__(self):
self.data = []
self.count = 0
def ping(self, t: int) -> int:
self.data.append(t)
self.count += 1
while self.data[0] < max(0, t - 3000):
self.data.pop(0)
self.count -= 1
return self.count
|
print ("HELLO GUYS WELCOME TO (LEARN-PYTHON) THIS WILL HELP YOU LEARN\n 1.PYTHON\n ")
print ("NOTE: IT WILL ONLY PROVIDE BASIC INFORMATION OF THE LANGUAGES.\n")
language = input("ENTER THE NAME OF THE LANGUAGE WHICH YOU WANT TO LEARN: " )
print("\033[91m {}\033[00m" .format ("\nSYNTAXES:"))
print ("\n1)Variables")
print ("2)Commentts")
print ("3)Receiving Input")
print ("4)Strings")
print ("5)Arithmetic Operations")
print ("6)If Statements")
print ("7)Comparison Operators")
print ("8)While Loops")
print ("9)For Loops")
print ("10)Lists")
print ("11)Tuples")
print ("12)Dictionaries")
print ("13)Functions")
print ("14)Exceptions")
print ("15)Classes")
print ("16)Inheritance")
print ("17)Modules")
print ("18)Packages")
print("19)Python Standard Library")
print ("20)Pypi")
part = int(input("ENTER THE NUMBER OF SYNTAX YOU WANT TO LEARN :"))
if part == 1:
print ("""\nVariables
We use variables to temporarily store data in computer’s memory.
price = 10
rating = 4.9
course_name = ‘Python for Beginners’
is_published = True
In the above example,
• price is an integer (a whole number without a decimal point)
• rating is a float (a number with a decimal point)
• course_name is a string (a sequence of characters)
• is_published is a boolean. Boolean values can be True or False.""")
elif part==2:
print (""" \nComments
We use comments to add notes to our code. Good comments explain the hows and
whys, not what the code does. That should be reflected in the code itself. Use
comments to add reminders to yourself or other developers, or also explain your
assumptions and the reasons you’ve written code in a certain way.
# This is a comment and it won’t get executed.
# Our comments can be multiple lines.""")
elif part==3:
print ("""\nReceiving Input
We can receive input from the user by calling the input() function.
birth_year = int(input(‘Birth year: ‘))
The input() function always returns data as a string. So, we’re converting the
result into an integer by calling the built-in int() function.""")
elif part==4:
print (""" \nStrings
We can define strings using single (‘ ‘) or double (“ “) quotes.
To define a multi-line string, we surround our string with tripe quotes (“””).
We can get individual characters in a string using square brackets [].
course = ‘Python for Beginners’
course[0] # returns the first character
course[1] # returns the second character
course[-1] # returns the first character from the end
course[-2] # returns the second character from the end
We can slice a string using a similar notation:
course[1:5]
The above expression returns all the characters starting from the index position of 1
to 5 (but excluding 5). The result will be ytho
If we leave out the start index, 0 will be assumed.
If we leave out the end index, the length of the string will be assumed.
We can use formatted strings to dynamically insert values into our strings:
name = ‘Mosh’
message = f’Hi, my name is {name}’
message.upper() # to convert to uppercase
message.lower() # to convert to lowercase
message.title() # to capitalize the first letter of every word
message.find(‘p’) # returns the index of the first occurrence of p
(or -1 if not found)
message.replace(‘p’, ‘q’)
To check if a string contains a character (or a sequence of characters), we use the in
operator:
contains = ‘Python’ in course""")
elif part==5:
print ("""\nArithmetic Operations
+
-
*
/ # returns a float
// # returns an int
% # returns the remainder of division
** # exponentiation - x ** y = x to the power of y
Augmented assignment operator:
x = x + 10
x += 10
Operator precedence:
1. parenthesis
2. exponentiation
3. multiplication / division
4. addition / subtraction""")
elif part==6:
print ("""\nIf Statements
if is_hot:
print(“hot day”)
elif is_cold:
print(“cold day”)
else:
print(“beautiful day”)
Logical operators:
if has_high_income and has_good_credit:
...
if has_high_income or has_good_credit:
...
is_day = True
is_night = not is_day""")
elif part==7:
print ("""\nComparison operators
a > b
a >= b (greater than or equal to)
a < b
a <= b
a == b (equals)
a != b (not equals)""")
elif part==8:
print ("""\nFor loops
for i in range(1, 5):
print(i)
• range(5): generates 0, 1, 2, 3, 4
• range(1, 5): generates 1, 2, 3, 4
• range(1, 5, 2): generates 1, 3""")
elif part==9:
print ("""\nLists
numbers = [1, 2, 3, 4, 5]
numbers[0] # returns the first item
numbers[1] # returns the second item
numbers[-1] # returns the first item from the end
numbers[-2] # returns the second item from the end
numbers.append(6) # adds 6 to the end
numbers.insert(0, 6) # adds 6 at index position of 0
numbers.remove(6) # removes 6
numbers.pop() # removes the last item
numbers.clear() # removes all the items
numbers.index(8) # returns the index of first occurrence of 8
numbers.sort() # sorts the list
numbers.reverse() # reverses the list
numbers.copy() # returns a copy of the list""")
elif part==10:
print ("""\nTuples
They are like read-only lists. We use them to store a list of items. But once we
define a tuple, we cannot add or remove items or change the existing items.
coordinates = (1, 2, 3)
We can unpack a list or a tuple into separate variables:
x, y, z = coordinates""")
elif part==11:
print ("""\nDictionaries
We use dictionaries to store key/value pairs.
customer = {
“name”: “John Smith”,
“age”: 30,
“is_verified”: True
}
We can use strings or numbers to define keys. They should be unique. We can use
any types for the values.
customer[“name”] # returns “John Smith”
customer[“type”] # throws an error
customer.get(“type”, “silver”) # returns “silver”
customer[“name”] = “new name”""")
elif part==12:
print ("""\nFunctions
We use functions to break up our code into small chunks. These chunks are easier
to read, understand and maintain. If there are bugs, it’s easier to find bugs in a
small chunk than the entire program. We can also re-use these chunks.
def greet_user(name):
print(f”Hi {name}”)
greet_user(“John”)""")
elif part==13:
print ("""\nParameters are placeholders for the data we can pass to functions. Arguments
are the actual values we pass.
We have two types of arguments:
• Positional arguments: their position (order) matters
• Keyword arguments: position doesn’t matter - we prefix them with the parameter
name # Two positional arguments
greet_user(“John”, “Smith”)
# Keyword arguments
calculate_total(order=50, shipping=5, tax=0.1)
Our functions can return values. If we don’t use the return statement, by default
None is returned. None is an object that represents the absence of a value.
def square(number):
return number * number
result = square(2)
print(result) # prints 4""")
elif part==14:
print ("""\nExceptions
Exceptions are errors that crash our programs. They often happen because of bad
input or programming errors. It’s our job to anticipate and handle these exceptions
to prevent our programs from cashing.
try:
age = int(input(‘Age: ‘))
income = 20000
risk = income / age
print(age)
except ValueError:
print(‘Not a valid number’)
except ZeroDivisionError:
print(‘Age cannot be 0’)""")
elif part==15:
print ("""\nClasses
We use classes to define new types.
class Point:
def __init__(self, x, y):
self.x = x
self.y = y
def move(self):
print(“move”)When a function is part of a class, we refer to it as a method.
Classes define templates or blueprints for creating objects. An object is an instance
of a class. Every time we create a new instance, that instance follows the structure
we define using the class.
point1 = Point(10, 5)
point2 = Point(2, 4)
__init__ is a special method called constructor. It gets called """)
elif part==16:
print ("""\nInheritance
Inheritance is a technique to remove code duplication. We can create a base class
to define the common methods and then have other classes inherit these methods.
class Mammal:
def walk(self):
print(“walk”)
class Dog(Mammal):
def bark(self):
print(“bark”)
dog = Dog()
dog.walk() # inherited from Mammal
dog.bark() # defined in Dog""")
elif part==17:
print ("""\nModules
A module is a file with some Python code. We use modules to break up our
program into multiple files. This way, our code will be better organized. We won’t
have one gigantic file with a million lines of code in it!
There are 2 ways to import modules: we can import the entire module, or specific
objects in a module # importing the entire converters module
import converters
converters.kg_to_lbs(5)
# importing one function in the converters module
from converters import kg_to_lbs
kg_to_lbs(5)
""")
elif part==18:
print ("""\nPackages
A package is a directory with __init__.py in it. It can contain one or more
modules.
# importing the entire sales module
from ecommerce import sales
sales.calc_shipping()
# importing one function in the sales module
from ecommerce.sales import calc_shipping
calc_shipping()""")
elif part==19:
print ("""\nPython Standard Library
Python comes with a huge library of modules for performing common tasks such as
sending emails, working with date/time, generating random values, etc.
Random Module
import random
random.random() # returns a float between 0 to 1
random.randint(1, 6) # returns an int between 1 to 6
members = [‘John’, ‘Bob’, ‘Mary’]
leader = random.choice(members) # randomly picks an item""")
elif part==20:
print ("""\nPypi
Python Package Index (pypi.org) is a directory of Python packages published by
Python developers around the world. We use pip to install or uninstall these
packages.
pip install openpyxl
pip uninstall openpyxl""")
else:
print ("WRONG INPUT!!!")
|
languages = []
languages.append("Java")
languages.append("Python")
languages.append("C#")
languages.append("Ruby")
print(languages)
numbers = [1, 2, 3]
imdb_top_3 = [
"The Shawshank Redemption",
"The Godfather",
"The Godfather: Part II"
]
print(imdb_top_3)
empty = []
mixed = [1, True, "Three", [], None]
print(mixed)
# len is a "built-in" function
# more on them, here - https://docs.python.org/3/library/functions.html
if len(empty) == 0:
print("Empty list check with len")
# bool([]) == False
# bool([1]) == True
if numbers:
print("Numbers is non-empty")
if not empty:
print("empty is empty")
# How to check if a given value exists in a list
if 1 in numbers:
print("1 is in numbers")
if 10 not in numbers:
print("10 is not in numbers")
for n in numbers:
print(n)
for movie in imdb_top_3:
print(movie)
for nothing in empty:
print(nothing)
for item in mixed:
print(item)
# Lists have standard index access
print(numbers[0])
# Lists can be mutated
print(numbers)
numbers[0] = 111
print(numbers)
print(empty)
empty.append("Something")
print(empty)
# We can easily compare lists
# Two lists xs & ns are equal, if
# xs[i] == ns[i] for every index i of that lists
# or if both xs & ns are empty
print([] == [])
print([1] == [])
print([1, 2] == [2, 1])
|
"""
Client stub for connecting to file operations server. Any Windows client
(controller) abstractions should go here.
"""
|
class Solution:
def reorganizeString(self, S: str) -> str:
"""Heap.
Running time:O(nlogn) where n is the length of S.
"""
c = collections.Counter(S)
heap = [(-v, k) for k, v in c.items()]
heapq.heapify(heap)
res = ''
while heap:
v, k = heapq.heappop(heap)
if not res or res[-1] != k:
res += k
if -v > 1:
heapq.heappush(heap, (v+1, k))
else:
if not heap:
return ''
vv, kk = heapq.heappop(heap)
res += kk
if -vv > 1:
heapq.heappush(heap, (vv+1, kk))
heapq.heappush(heap, (v, k))
return res
|
# Datasets
FACE_FORENSICS = 'ff++'
FACE_FORENSICS_DF = 'ff++_df'
FACE_FORENSICS_F2F = 'ff++_f2f'
FACE_FORENSICS_FSW = 'ff++_fsw'
FACE_FORENSICS_NT = 'ff++_nt'
FACE_FORENSICS_FSH = 'ff++_fsh'
CELEB_DF = 'celeb-df'
DEEPER_FORENSICS = 'deeperface'
DFDC = 'dfdc'
# Manipulation type of FaceForensics++
DF = 'Deepfakes'
F2F = 'Face2Face'
FSH = 'FaceShifter'
FSW = 'FaceSwap'
NT = 'NeuralTextures'
|
"""
Copyright 2019 Skyscanner Ltd
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 Public:
def __init__(self, item):
self.item = item
def audit(self):
if self.item.arn.service == 'apigateway':
if self.item.policy:
return
apiKeyRequired = False
authorizationType = None
for res in self.item.resources:
if res['apiKeyRequired']:
apiKeyRequired = True
if res['authorizationType'] != 'NONE':
authorizationType = res['authorizationType']
if not apiKeyRequired and not authorizationType:
yield {
'level': 'high',
'text': 'Service is publicly accessible due to missing Resource-based policy'
}
|
def test_input_text(expected_result, actual_result):
assert expected_result == actual_result, \
"expected {}, got {}".format(expected_result, actual_result)
def main():
test_input_text(8, 8)
test_input_text(8, 11)
if __name__ == "__main__":
main()
|
pattern_zero=[0.0, 0.01492194674, 0.02938475666, 0.0303030303, 0.04338842975, 0.04522497704, 0.05693296602, 0.05968778696, 0.06060606061, 0.07001836547, 0.07369146006, 0.07552800735, 0.0826446281, 0.08723599633, 0.08999081726, 0.09090909091, 0.0948117539, 0.10032139578, 0.10399449036, 0.10583103765, 0.10651974288, 0.1129476584, 0.11753902663, 0.11776859504, 0.12029384757, 0.12121212121, 0.12511478421, 0.12855831038, 0.13062442608, 0.13429752066, 0.13613406795, 0.13682277319, 0.13888888889, 0.14325068871, 0.14784205693, 0.14807162534, 0.14876033058, 0.15059687787, 0.15151515152, 0.15541781451, 0.15817263545, 0.15886134068, 0.16092745638, 0.16460055096, 0.16643709826, 0.16712580349, 0.16919191919, 0.17355371901, 0.17561983471, 0.17814508724, 0.17837465565, 0.17906336088, 0.18089990817, 0.18181818182, 0.18365472911, 0.18572084481, 0.18847566575, 0.18916437098, 0.19123048669, 0.19490358127, 0.19674012856, 0.19742883379, 0.19834710744, 0.1994949495, 0.20385674931, 0.20500459137, 0.20592286501, 0.20844811754, 0.20867768595, 0.20936639119, 0.21120293848, 0.21212121212, 0.21395775941, 0.21602387512, 0.21694214876, 0.21877869605, 0.21946740129, 0.22153351699, 0.22222222222, 0.22520661157, 0.22704315886, 0.2277318641, 0.22865013774, 0.2297979798, 0.23140495868, 0.23415977961, 0.23530762167, 0.23622589532, 0.23875114784, 0.23898071625, 0.23966942149, 0.24150596878, 0.24173553719, 0.24242424242, 0.24426078972, 0.24632690542, 0.24724517906, 0.2479338843, 0.24908172635, 0.24977043159, 0.25, 0.25183654729, 0.25252525253, 0.25550964187, 0.25734618916, 0.2580348944, 0.25895316804, 0.2601010101, 0.26170798898, 0.26446280992, 0.26561065197, 0.26652892562, 0.26905417815, 0.26928374656, 0.26997245179, 0.27180899908, 0.27203856749, 0.27272727273, 0.27456382002, 0.27662993572, 0.27754820937, 0.2782369146, 0.27938475666, 0.28007346189, 0.2803030303, 0.28213957759, 0.28282828283, 0.28581267218, 0.28764921947, 0.2883379247, 0.28925619835, 0.2904040404, 0.29201101928, 0.29476584022, 0.29591368228, 0.29683195592, 0.29935720845, 0.29958677686, 0.30027548209, 0.30211202939, 0.3023415978, 0.30303030303, 0.30486685032, 0.30693296602, 0.30785123967, 0.3085399449, 0.30968778696, 0.3103764922, 0.31060606061, 0.3124426079, 0.31313131313, 0.31611570248, 0.31795224977, 0.31864095501, 0.31955922865, 0.32070707071, 0.32231404959, 0.32506887052, 0.32621671258, 0.32713498623, 0.32966023875, 0.32988980716, 0.3305785124, 0.33241505969, 0.3326446281, 0.33333333333, 0.33516988062, 0.33723599633, 0.33815426997, 0.33884297521, 0.33999081726, 0.3406795225, 0.34090909091, 0.3427456382, 0.34343434343, 0.34641873278, 0.34825528007, 0.34894398531, 0.34986225895, 0.35101010101, 0.35261707989, 0.35537190083, 0.35651974288, 0.35743801653, 0.35996326905, 0.36019283747, 0.3608815427, 0.36271808999, 0.3629476584, 0.36363636364, 0.36547291093, 0.36753902663, 0.36845730028, 0.36914600551, 0.37029384757, 0.3709825528, 0.37121212121, 0.3730486685, 0.37373737374, 0.37672176309, 0.37855831038, 0.37924701561, 0.38016528926, 0.38131313131, 0.38292011019, 0.38567493113, 0.38682277319, 0.38774104683, 0.39026629936, 0.39049586777, 0.391184573, 0.39302112029, 0.39325068871, 0.39393939394, 0.39577594123, 0.39784205693, 0.39876033058, 0.39944903581, 0.40059687787, 0.4012855831, 0.40151515152, 0.40335169881, 0.40404040404, 0.40702479339, 0.40886134068, 0.40955004591, 0.41046831956, 0.41161616162, 0.4132231405, 0.41597796143, 0.41712580349, 0.41804407714, 0.42056932966, 0.42079889807, 0.42148760331, 0.4233241506, 0.42355371901, 0.42424242424, 0.42607897153, 0.42814508724, 0.42906336088, 0.42975206612, 0.43089990817, 0.43158861341, 0.43181818182, 0.43365472911, 0.43434343434, 0.43732782369, 0.43916437098, 0.43985307622, 0.44077134986, 0.44191919192, 0.4435261708, 0.44628099174, 0.44742883379, 0.44834710744, 0.45087235996, 0.45110192838, 0.45179063361, 0.4536271809, 0.45385674931, 0.45454545455, 0.45638200184, 0.45844811754, 0.45936639119, 0.46005509642, 0.46120293848, 0.46189164371, 0.46212121212, 0.46395775941, 0.46464646465, 0.46763085399, 0.46946740129, 0.47015610652, 0.47107438017, 0.47222222222, 0.4738292011, 0.47658402204, 0.4777318641, 0.47865013774, 0.48117539027, 0.48140495868, 0.48209366391, 0.4839302112, 0.48415977961, 0.48484848485, 0.48668503214, 0.48875114784, 0.48966942149, 0.49035812672, 0.49150596878, 0.49219467401, 0.49242424242, 0.49426078972, 0.49494949495, 0.4979338843, 0.49977043159, 0.50045913682, 0.50137741047, 0.50252525253, 0.50413223141, 0.50688705234, 0.5080348944, 0.50895316804, 0.51147842057, 0.51170798898, 0.51239669422, 0.51423324151, 0.51446280992, 0.51515151515, 0.51698806244, 0.51905417815, 0.51997245179, 0.52066115703, 0.52180899908, 0.52249770432, 0.52272727273, 0.52456382002, 0.52525252525, 0.5282369146, 0.53007346189, 0.53076216713, 0.53168044077, 0.53282828283, 0.53443526171, 0.53719008265, 0.5383379247, 0.53925619835, 0.54178145087, 0.54201101928, 0.54269972452, 0.54453627181, 0.54476584022, 0.54545454546, 0.54729109275, 0.54935720845, 0.55027548209, 0.55096418733, 0.55211202939, 0.55280073462, 0.55303030303, 0.55486685032, 0.55555555556, 0.5585399449, 0.5603764922, 0.56106519743, 0.56198347107, 0.56313131313, 0.56473829201, 0.56749311295, 0.56864095501, 0.56955922865, 0.57208448118, 0.57231404959, 0.57300275482, 0.57483930211, 0.57506887052, 0.57575757576, 0.57759412305, 0.57966023875, 0.5805785124, 0.58126721763, 0.58241505969, 0.58310376492, 0.58333333333, 0.58516988062, 0.58585858586, 0.58884297521, 0.5906795225, 0.59136822773, 0.59228650138, 0.59343434343, 0.59504132231, 0.59779614325, 0.59894398531, 0.59986225895, 0.60238751148, 0.60261707989, 0.60330578512, 0.60514233242, 0.60537190083, 0.60606060606, 0.60789715335, 0.60996326905, 0.6108815427, 0.61157024793, 0.61271808999, 0.61340679523, 0.61363636364, 0.61547291093, 0.61616161616, 0.61914600551, 0.6209825528, 0.62167125804, 0.62258953168, 0.62373737374, 0.62534435262, 0.62809917355, 0.62924701561, 0.63016528926, 0.63269054178, 0.63292011019, 0.63360881543, 0.63544536272, 0.63567493113, 0.63636363636, 0.63820018366, 0.64026629936, 0.641184573, 0.64187327824, 0.64302112029, 0.64370982553, 0.64393939394, 0.64577594123, 0.64646464647, 0.64944903581, 0.6512855831, 0.65197428834, 0.65289256198, 0.65404040404, 0.65564738292, 0.65840220386, 0.65955004591, 0.66046831956, 0.66299357208, 0.6632231405, 0.66391184573, 0.66574839302, 0.66597796143, 0.66666666667, 0.66850321396, 0.67056932966, 0.67148760331, 0.67217630854, 0.6733241506, 0.67401285583, 0.67424242424, 0.67607897153, 0.67676767677, 0.67975206612, 0.68158861341, 0.68227731864, 0.68319559229, 0.68434343434, 0.68595041322, 0.68870523416, 0.68985307622, 0.69077134986, 0.69329660239, 0.6935261708, 0.69421487603, 0.69605142332, 0.69628099174, 0.69696969697, 0.69880624426, 0.70087235996, 0.70179063361, 0.70247933884, 0.7036271809, 0.70431588613, 0.70454545455, 0.70638200184, 0.70707070707, 0.71005509642, 0.71189164371, 0.71258034894, 0.71349862259, 0.71464646465, 0.71625344353, 0.71900826446, 0.72015610652, 0.72107438017, 0.72359963269, 0.7238292011, 0.72451790634, 0.72635445363, 0.72658402204, 0.72727272727, 0.72910927456, 0.73117539027, 0.73209366391, 0.73278236915, 0.7339302112, 0.73461891644, 0.73484848485, 0.73668503214, 0.73737373737, 0.74035812672, 0.74219467401, 0.74288337925, 0.74380165289, 0.74494949495, 0.74655647383, 0.74931129477, 0.75045913682, 0.75137741047, 0.75390266299, 0.75413223141, 0.75482093664, 0.75665748393, 0.75688705234, 0.75757575758, 0.75941230487, 0.76147842057, 0.76239669422, 0.76308539945, 0.76423324151, 0.76492194674, 0.76515151515, 0.76698806244, 0.76767676768, 0.77066115703, 0.77249770432, 0.77318640955, 0.7741046832, 0.77525252525, 0.77685950413, 0.77961432507, 0.78076216713, 0.78168044077, 0.7842056933, 0.78443526171, 0.78512396694, 0.78696051423, 0.78719008265, 0.78787878788, 0.78971533517, 0.79178145087, 0.79269972452, 0.79338842975, 0.79453627181, 0.79522497704, 0.79545454546, 0.79729109275, 0.79797979798, 0.80096418733, 0.80280073462, 0.80348943985, 0.8044077135, 0.80555555556, 0.80716253444, 0.80991735537, 0.81106519743, 0.81198347107, 0.8145087236, 0.81473829201, 0.81542699725, 0.81726354454, 0.81749311295, 0.81818181818, 0.82001836547, 0.82208448118, 0.82300275482, 0.82369146006, 0.82483930211, 0.82552800735, 0.82575757576, 0.82759412305, 0.82828282828, 0.83126721763, 0.83310376492, 0.83379247016, 0.8347107438, 0.83585858586, 0.83746556474, 0.84022038568, 0.84136822773, 0.84228650138, 0.8448117539, 0.84504132231, 0.84573002755, 0.84756657484, 0.84779614325, 0.84848484849, 0.85032139578, 0.85238751148, 0.85330578512, 0.85399449036, 0.85514233242, 0.85583103765, 0.85606060606, 0.85789715335, 0.85858585859, 0.86157024793, 0.86340679523, 0.86409550046, 0.86501377411, 0.86616161616, 0.86776859504, 0.87052341598, 0.87167125804, 0.87258953168, 0.87511478421, 0.87534435262, 0.87603305785, 0.87786960514, 0.87809917355, 0.87878787879, 0.88062442608, 0.88269054178, 0.88360881543, 0.88429752066, 0.88544536272, 0.88613406795, 0.88636363636, 0.88820018366, 0.88888888889, 0.89187327824, 0.89370982553, 0.89439853076, 0.89531680441, 0.89646464647, 0.89807162534, 0.90082644628, 0.90197428834, 0.90289256198, 0.90541781451, 0.90564738292, 0.90633608815, 0.90817263545, 0.90840220386, 0.90909090909, 0.91092745638, 0.91299357208, 0.91391184573, 0.91460055096, 0.91574839302, 0.91643709826, 0.91666666667, 0.91850321396, 0.91919191919, 0.92217630854, 0.92401285583, 0.92470156107, 0.92561983471, 0.92676767677, 0.92837465565, 0.93112947658, 0.93227731864, 0.93319559229, 0.93572084481, 0.93595041322, 0.93663911846, 0.93847566575, 0.93870523416, 0.93939393939, 0.94123048669, 0.94329660239, 0.94421487603, 0.94490358127, 0.94605142332, 0.94674012856, 0.94696969697, 0.94880624426, 0.9494949495, 0.95247933884, 0.95431588613, 0.95500459137, 0.95592286501, 0.95707070707, 0.95867768595, 0.96143250689, 0.96258034894, 0.96349862259, 0.96602387512, 0.96625344353, 0.96694214876, 0.96877869605, 0.96900826446, 0.9696969697, 0.97153351699, 0.97359963269, 0.97451790634, 0.97520661157, 0.97635445363, 0.97704315886, 0.97727272727, 0.97910927456, 0.9797979798, 0.98278236915, 0.98461891644, 0.98530762167, 0.98622589532, 0.98737373737, 0.98898071625, 0.99173553719, 0.99288337925, 0.99380165289, 0.99632690542, 0.99655647383, 0.99724517906, 0.99908172635, 0.99931129477]
pattern_odd=[0.0, 0.00183654729, 0.00390266299, 0.00482093664, 0.00550964187, 0.00665748393, 0.00734618916, 0.00757575758, 0.00941230487, 0.0101010101, 0.01308539945, 0.01492194674, 0.01561065197, 0.01652892562, 0.01767676768, 0.01928374656, 0.02203856749, 0.02318640955, 0.0241046832, 0.02662993572, 0.02685950413, 0.02754820937, 0.02938475666, 0.02961432507, 0.0303030303, 0.03213957759, 0.0342056933, 0.03512396694, 0.03581267218, 0.03696051423, 0.03764921947, 0.03787878788, 0.03971533517, 0.0404040404, 0.04338842975, 0.04522497704, 0.04591368228, 0.04683195592, 0.04797979798, 0.04958677686, 0.0523415978, 0.05348943985, 0.0544077135, 0.05693296602, 0.05716253444, 0.05785123967, 0.05968778696, 0.05991735537, 0.06060606061, 0.0624426079, 0.0645087236, 0.06542699725, 0.06611570248, 0.06726354454, 0.06795224977, 0.06818181818, 0.07001836547, 0.07070707071, 0.07369146006, 0.07552800735, 0.07621671258, 0.07713498623, 0.07828282828, 0.07988980716, 0.0826446281, 0.08379247016, 0.0847107438, 0.08723599633, 0.08746556474, 0.08815426997, 0.08999081726, 0.09022038568, 0.09090909091, 0.0927456382, 0.0948117539, 0.09573002755, 0.09641873278, 0.09756657484, 0.09825528007, 0.09848484849, 0.10032139578, 0.10101010101, 0.10399449036, 0.10583103765, 0.10651974288, 0.10743801653, 0.10858585859, 0.11019283747, 0.1129476584, 0.11409550046, 0.11501377411, 0.11753902663, 0.11776859504, 0.11845730028, 0.12029384757, 0.12052341598, 0.12121212121, 0.1230486685, 0.12511478421, 0.12603305785, 0.12672176309, 0.12786960514, 0.12855831038, 0.12878787879, 0.13062442608, 0.13131313131, 0.13429752066, 0.13613406795, 0.13682277319, 0.13774104683, 0.13888888889, 0.14049586777, 0.14325068871, 0.14439853076, 0.14531680441, 0.14784205693, 0.14807162534, 0.14876033058, 0.15059687787, 0.15082644628, 0.15151515152, 0.15335169881, 0.15541781451, 0.15633608815, 0.15702479339, 0.15817263545, 0.15886134068, 0.15909090909, 0.16092745638, 0.16161616162, 0.16460055096, 0.16643709826, 0.16712580349, 0.16804407714, 0.16919191919, 0.17079889807, 0.17355371901, 0.17470156107, 0.17561983471, 0.17814508724, 0.17837465565, 0.17906336088, 0.18089990817, 0.18112947658, 0.18181818182, 0.18365472911, 0.18572084481, 0.18663911846, 0.18732782369, 0.18847566575, 0.18916437098, 0.18939393939, 0.19123048669, 0.19191919192, 0.19490358127, 0.19674012856, 0.19742883379, 0.19834710744, 0.1994949495, 0.20110192838, 0.20385674931, 0.20500459137, 0.20592286501, 0.20844811754, 0.20867768595, 0.20936639119, 0.21120293848, 0.21143250689, 0.21212121212, 0.21395775941, 0.21602387512, 0.21694214876, 0.21763085399, 0.21877869605, 0.21946740129, 0.2196969697, 0.22153351699, 0.22222222222, 0.22520661157, 0.22704315886, 0.2277318641, 0.22865013774, 0.2297979798, 0.23140495868, 0.23415977961, 0.23530762167, 0.23622589532, 0.23875114784, 0.23898071625, 0.23966942149, 0.24150596878, 0.24173553719, 0.24242424242, 0.24426078972, 0.24632690542, 0.24724517906, 0.2479338843, 0.24908172635, 0.24977043159, 0.25, 0.25183654729, 0.25252525253, 0.25550964187, 0.25734618916, 0.2580348944, 0.25895316804, 0.2601010101, 0.26170798898, 0.26446280992, 0.26561065197, 0.26652892562, 0.26905417815, 0.26928374656, 0.26997245179, 0.27180899908, 0.27203856749, 0.27272727273, 0.27456382002, 0.27662993572, 0.27754820937, 0.2782369146, 0.27938475666, 0.28007346189, 0.2803030303, 0.28213957759, 0.28282828283, 0.28581267218, 0.28764921947, 0.2883379247, 0.28925619835, 0.2904040404, 0.29201101928, 0.29476584022, 0.29591368228, 0.29683195592, 0.29935720845, 0.29958677686, 0.30027548209, 0.30211202939, 0.3023415978, 0.30303030303, 0.30486685032, 0.30693296602, 0.30785123967, 0.3085399449, 0.30968778696, 0.3103764922, 0.31060606061, 0.3124426079, 0.31313131313, 0.31611570248, 0.31795224977, 0.31864095501, 0.31955922865, 0.32070707071, 0.32231404959, 0.32506887052, 0.32621671258, 0.32713498623, 0.32966023875, 0.32988980716, 0.3305785124, 0.33241505969, 0.3326446281, 0.33333333333, 0.33516988062, 0.33723599633, 0.33815426997, 0.33884297521, 0.33999081726, 0.3406795225, 0.34090909091, 0.3427456382, 0.34343434343, 0.34641873278, 0.34825528007, 0.34894398531, 0.34986225895, 0.35101010101, 0.35261707989, 0.35537190083, 0.35651974288, 0.35743801653, 0.35996326905, 0.36019283747, 0.3608815427, 0.36271808999, 0.3629476584, 0.36363636364, 0.36547291093, 0.36753902663, 0.36845730028, 0.36914600551, 0.37029384757, 0.3709825528, 0.37121212121, 0.3730486685, 0.37373737374, 0.37672176309, 0.37855831038, 0.37924701561, 0.38016528926, 0.38131313131, 0.38292011019, 0.38567493113, 0.38682277319, 0.38774104683, 0.39026629936, 0.39049586777, 0.391184573, 0.39302112029, 0.39325068871, 0.39393939394, 0.39577594123, 0.39784205693, 0.39876033058, 0.39944903581, 0.40059687787, 0.4012855831, 0.40151515152, 0.40335169881, 0.40404040404, 0.40702479339, 0.40886134068, 0.40955004591, 0.41046831956, 0.41161616162, 0.4132231405, 0.41597796143, 0.41712580349, 0.41804407714, 0.42056932966, 0.42079889807, 0.42148760331, 0.4233241506, 0.42355371901, 0.42424242424, 0.42607897153, 0.42814508724, 0.42906336088, 0.42975206612, 0.43089990817, 0.43158861341, 0.43181818182, 0.43365472911, 0.43434343434, 0.43732782369, 0.43916437098, 0.43985307622, 0.44077134986, 0.44191919192, 0.4435261708, 0.44628099174, 0.44742883379, 0.44834710744, 0.45087235996, 0.45110192838, 0.45179063361, 0.4536271809, 0.45385674931, 0.45454545455, 0.45638200184, 0.45844811754, 0.45936639119, 0.46005509642, 0.46120293848, 0.46189164371, 0.46212121212, 0.46395775941, 0.46464646465, 0.46763085399, 0.46946740129, 0.47015610652, 0.47107438017, 0.47222222222, 0.4738292011, 0.47658402204, 0.4777318641, 0.47865013774, 0.48117539027, 0.48140495868, 0.48209366391, 0.4839302112, 0.48415977961, 0.48484848485, 0.48668503214, 0.48875114784, 0.48966942149, 0.49035812672, 0.49150596878, 0.49219467401, 0.49242424242, 0.49426078972, 0.49494949495, 0.4979338843, 0.49977043159, 0.50045913682, 0.50137741047, 0.50252525253, 0.50413223141, 0.50688705234, 0.5080348944, 0.50895316804, 0.51147842057, 0.51170798898, 0.51239669422, 0.51423324151, 0.51446280992, 0.51515151515, 0.51698806244, 0.51905417815, 0.51997245179, 0.52066115703, 0.52180899908, 0.52249770432, 0.52272727273, 0.52456382002, 0.52525252525, 0.5282369146, 0.53007346189, 0.53076216713, 0.53168044077, 0.53282828283, 0.53443526171, 0.53719008265, 0.5383379247, 0.53925619835, 0.54178145087, 0.54201101928, 0.54269972452, 0.54453627181, 0.54476584022, 0.54545454546, 0.54729109275, 0.54935720845, 0.55027548209, 0.55096418733, 0.55211202939, 0.55280073462, 0.55303030303, 0.55486685032, 0.55555555556, 0.5585399449, 0.5603764922, 0.56106519743, 0.56198347107, 0.56313131313, 0.56473829201, 0.56749311295, 0.56864095501, 0.56955922865, 0.57208448118, 0.57231404959, 0.57300275482, 0.57483930211, 0.57506887052, 0.57575757576, 0.57759412305, 0.57966023875, 0.5805785124, 0.58126721763, 0.58241505969, 0.58310376492, 0.58333333333, 0.58516988062, 0.58585858586, 0.58884297521, 0.5906795225, 0.59136822773, 0.59228650138, 0.59343434343, 0.59504132231, 0.59779614325, 0.59894398531, 0.59986225895, 0.60238751148, 0.60261707989, 0.60330578512, 0.60514233242, 0.60537190083, 0.60606060606, 0.60789715335, 0.60996326905, 0.6108815427, 0.61157024793, 0.61271808999, 0.61340679523, 0.61363636364, 0.61547291093, 0.61616161616, 0.61914600551, 0.6209825528, 0.62167125804, 0.62258953168, 0.62373737374, 0.62534435262, 0.62809917355, 0.62924701561, 0.63016528926, 0.63269054178, 0.63292011019, 0.63360881543, 0.63544536272, 0.63567493113, 0.63636363636, 0.63820018366, 0.64026629936, 0.641184573, 0.64187327824, 0.64302112029, 0.64370982553, 0.64393939394, 0.64577594123, 0.64646464647, 0.64944903581, 0.6512855831, 0.65197428834, 0.65289256198, 0.65404040404, 0.65564738292, 0.65840220386, 0.65955004591, 0.66046831956, 0.66299357208, 0.6632231405, 0.66391184573, 0.66574839302, 0.66597796143, 0.66666666667, 0.66850321396, 0.67056932966, 0.67148760331, 0.67217630854, 0.6733241506, 0.67401285583, 0.67424242424, 0.67607897153, 0.67676767677, 0.67975206612, 0.68158861341, 0.68227731864, 0.68319559229, 0.68434343434, 0.68595041322, 0.68870523416, 0.68985307622, 0.69077134986, 0.69329660239, 0.6935261708, 0.69421487603, 0.69605142332, 0.69628099174, 0.69696969697, 0.69880624426, 0.70087235996, 0.70179063361, 0.70247933884, 0.7036271809, 0.70431588613, 0.70454545455, 0.70638200184, 0.70707070707, 0.71005509642, 0.71189164371, 0.71258034894, 0.71349862259, 0.71464646465, 0.71625344353, 0.71900826446, 0.72015610652, 0.72107438017, 0.72359963269, 0.7238292011, 0.72451790634, 0.72635445363, 0.72658402204, 0.72727272727, 0.72910927456, 0.73117539027, 0.73209366391, 0.73278236915, 0.7339302112, 0.73461891644, 0.73484848485, 0.73668503214, 0.73737373737, 0.74035812672, 0.74219467401, 0.74288337925, 0.74380165289, 0.74494949495, 0.74655647383, 0.74931129477, 0.75045913682, 0.75137741047, 0.75390266299, 0.75413223141, 0.75482093664, 0.75665748393, 0.75688705234, 0.75757575758, 0.75941230487, 0.76147842057, 0.76239669422, 0.76308539945, 0.76423324151, 0.76492194674, 0.76515151515, 0.76698806244, 0.76767676768, 0.77066115703, 0.77249770432, 0.77318640955, 0.7741046832, 0.77525252525, 0.77685950413, 0.77961432507, 0.78076216713, 0.78168044077, 0.7842056933, 0.78443526171, 0.78512396694, 0.78696051423, 0.78719008265, 0.78787878788, 0.78971533517, 0.79178145087, 0.79269972452, 0.79338842975, 0.79453627181, 0.79522497704, 0.79545454546, 0.79729109275, 0.79797979798, 0.80096418733, 0.80280073462, 0.80348943985, 0.8044077135, 0.80555555556, 0.80716253444, 0.80991735537, 0.81106519743, 0.81198347107, 0.8145087236, 0.81473829201, 0.81542699725, 0.81726354454, 0.81749311295, 0.81818181818, 0.82001836547, 0.82208448118, 0.82300275482, 0.82369146006, 0.82483930211, 0.82552800735, 0.82575757576, 0.82759412305, 0.82828282828, 0.83126721763, 0.83310376492, 0.83379247016, 0.8347107438, 0.83585858586, 0.83746556474, 0.84022038568, 0.84136822773, 0.84228650138, 0.8448117539, 0.84504132231, 0.84573002755, 0.84756657484, 0.84779614325, 0.84848484849, 0.85032139578, 0.85238751148, 0.85330578512, 0.85399449036, 0.85514233242, 0.85583103765, 0.85606060606, 0.85789715335, 0.85858585859, 0.86157024793, 0.86340679523, 0.86409550046, 0.86501377411, 0.86616161616, 0.86776859504, 0.87052341598, 0.87167125804, 0.87258953168, 0.87511478421, 0.87534435262, 0.87603305785, 0.87786960514, 0.87809917355, 0.87878787879, 0.88062442608, 0.88269054178, 0.88360881543, 0.88429752066, 0.88544536272, 0.88613406795, 0.88636363636, 0.88820018366, 0.88888888889, 0.89187327824, 0.89370982553, 0.89439853076, 0.89531680441, 0.89646464647, 0.89807162534, 0.90082644628, 0.90197428834, 0.90289256198, 0.90541781451, 0.90564738292, 0.90633608815, 0.90817263545, 0.90840220386, 0.90909090909, 0.91092745638, 0.91299357208, 0.91391184573, 0.91460055096, 0.91574839302, 0.91643709826, 0.91666666667, 0.91850321396, 0.91919191919, 0.92217630854, 0.92401285583, 0.92470156107, 0.92561983471, 0.92676767677, 0.92837465565, 0.93112947658, 0.93227731864, 0.93319559229, 0.93572084481, 0.93595041322, 0.93663911846, 0.93847566575, 0.93870523416, 0.93939393939, 0.94123048669, 0.94329660239, 0.94421487603, 0.94490358127, 0.94605142332, 0.94674012856, 0.94696969697, 0.94880624426, 0.9494949495, 0.95247933884, 0.95431588613, 0.95500459137, 0.95592286501, 0.95707070707, 0.95867768595, 0.96143250689, 0.96258034894, 0.96349862259, 0.96602387512, 0.96625344353, 0.96694214876, 0.96877869605, 0.96900826446, 0.9696969697, 0.97153351699, 0.97359963269, 0.97451790634, 0.97520661157, 0.97635445363, 0.97704315886, 0.97727272727, 0.97910927456, 0.9797979798, 0.98278236915, 0.98461891644, 0.98530762167, 0.98622589532, 0.98737373737, 0.98898071625, 0.99173553719, 0.99288337925, 0.99380165289, 0.99632690542, 0.99655647383, 0.99724517906, 0.99908172635, 0.99931129477]
pattern_even=[0.0, 0.00183654729, 0.00390266299, 0.00482093664, 0.00550964187, 0.00665748393, 0.00734618916, 0.00757575758, 0.00941230487, 0.0101010101, 0.01308539945, 0.01492194674, 0.01561065197, 0.01652892562, 0.01767676768, 0.01928374656, 0.02203856749, 0.02318640955, 0.0241046832, 0.02662993572, 0.02685950413, 0.02754820937, 0.02938475666, 0.02961432507, 0.0303030303, 0.03213957759, 0.0342056933, 0.03512396694, 0.03581267218, 0.03696051423, 0.03764921947, 0.03787878788, 0.03971533517, 0.0404040404, 0.04338842975, 0.04522497704, 0.04591368228, 0.04683195592, 0.04797979798, 0.04958677686, 0.0523415978, 0.05348943985, 0.0544077135, 0.05693296602, 0.05716253444, 0.05785123967, 0.05968778696, 0.05991735537, 0.06060606061, 0.0624426079, 0.0645087236, 0.06542699725, 0.06611570248, 0.06726354454, 0.06795224977, 0.06818181818, 0.07001836547, 0.07070707071, 0.07369146006, 0.07552800735, 0.07621671258, 0.07713498623, 0.07828282828, 0.07988980716, 0.0826446281, 0.08379247016, 0.0847107438, 0.08723599633, 0.08746556474, 0.08815426997, 0.08999081726, 0.09022038568, 0.09090909091, 0.0927456382, 0.0948117539, 0.09573002755, 0.09641873278, 0.09756657484, 0.09825528007, 0.09848484849, 0.10032139578, 0.10101010101, 0.10399449036, 0.10583103765, 0.10651974288, 0.10743801653, 0.10858585859, 0.11019283747, 0.1129476584, 0.11409550046, 0.11501377411, 0.11753902663, 0.11776859504, 0.11845730028, 0.12029384757, 0.12052341598, 0.12121212121, 0.1230486685, 0.12511478421, 0.12603305785, 0.12672176309, 0.12786960514, 0.12855831038, 0.12878787879, 0.13062442608, 0.13131313131, 0.13429752066, 0.13613406795, 0.13682277319, 0.13774104683, 0.13888888889, 0.14049586777, 0.14325068871, 0.14439853076, 0.14531680441, 0.14784205693, 0.14807162534, 0.14876033058, 0.15059687787, 0.15082644628, 0.15151515152, 0.15335169881, 0.15541781451, 0.15633608815, 0.15702479339, 0.15817263545, 0.15886134068, 0.15909090909, 0.16092745638, 0.16161616162, 0.16460055096, 0.16643709826, 0.16712580349, 0.16804407714, 0.16919191919, 0.17079889807, 0.17355371901, 0.17470156107, 0.17561983471, 0.17814508724, 0.17837465565, 0.17906336088, 0.18089990817, 0.18112947658, 0.18181818182, 0.18365472911, 0.18572084481, 0.18663911846, 0.18732782369, 0.18847566575, 0.18916437098, 0.18939393939, 0.19123048669, 0.19191919192, 0.19490358127, 0.19674012856, 0.19742883379, 0.19834710744, 0.1994949495, 0.20110192838, 0.20385674931, 0.20500459137, 0.20592286501, 0.20844811754, 0.20867768595, 0.20936639119, 0.21120293848, 0.21143250689, 0.21212121212, 0.21395775941, 0.21602387512, 0.21694214876, 0.21763085399, 0.21877869605, 0.21946740129, 0.2196969697, 0.22153351699, 0.22222222222, 0.22520661157, 0.22704315886, 0.2277318641, 0.22865013774, 0.2297979798, 0.23140495868, 0.23415977961, 0.23530762167, 0.23622589532, 0.23875114784, 0.23898071625, 0.23966942149, 0.24150596878, 0.24173553719, 0.24242424242, 0.24426078972, 0.24632690542, 0.24724517906, 0.2479338843, 0.24908172635, 0.24977043159, 0.25, 0.25183654729, 0.25252525253, 0.25550964187, 0.25734618916, 0.2580348944, 0.25895316804, 0.2601010101, 0.26170798898, 0.26446280992, 0.26561065197, 0.26652892562, 0.26905417815, 0.26928374656, 0.26997245179, 0.27180899908, 0.27203856749, 0.27272727273, 0.27456382002, 0.27662993572, 0.27754820937, 0.2782369146, 0.27938475666, 0.28007346189, 0.2803030303, 0.28213957759, 0.28282828283, 0.28581267218, 0.28764921947, 0.2883379247, 0.28925619835, 0.2904040404, 0.29201101928, 0.29476584022, 0.29591368228, 0.29683195592, 0.29935720845, 0.29958677686, 0.30027548209, 0.30211202939, 0.3023415978, 0.30303030303, 0.30486685032, 0.30693296602, 0.30785123967, 0.3085399449, 0.30968778696, 0.3103764922, 0.31060606061, 0.3124426079, 0.31313131313, 0.31611570248, 0.31795224977, 0.31864095501, 0.31955922865, 0.32070707071, 0.32231404959, 0.32506887052, 0.32621671258, 0.32713498623, 0.32966023875, 0.32988980716, 0.3305785124, 0.33241505969, 0.3326446281, 0.33333333333, 0.33516988062, 0.33723599633, 0.33815426997, 0.33884297521, 0.33999081726, 0.3406795225, 0.34090909091, 0.3427456382, 0.34343434343, 0.34641873278, 0.34825528007, 0.34894398531, 0.34986225895, 0.35101010101, 0.35261707989, 0.35537190083, 0.35651974288, 0.35743801653, 0.35996326905, 0.36019283747, 0.3608815427, 0.36271808999, 0.3629476584, 0.36363636364, 0.36547291093, 0.36753902663, 0.36845730028, 0.36914600551, 0.37029384757, 0.3709825528, 0.37121212121, 0.3730486685, 0.37373737374, 0.37672176309, 0.37855831038, 0.37924701561, 0.38016528926, 0.38131313131, 0.38292011019, 0.38567493113, 0.38682277319, 0.38774104683, 0.39026629936, 0.39049586777, 0.391184573, 0.39302112029, 0.39325068871, 0.39393939394, 0.39577594123, 0.39784205693, 0.39876033058, 0.39944903581, 0.40059687787, 0.4012855831, 0.40151515152, 0.40335169881, 0.40404040404, 0.40702479339, 0.40886134068, 0.40955004591, 0.41046831956, 0.41161616162, 0.4132231405, 0.41597796143, 0.41712580349, 0.41804407714, 0.42056932966, 0.42079889807, 0.42148760331, 0.4233241506, 0.42355371901, 0.42424242424, 0.42607897153, 0.42814508724, 0.42906336088, 0.42975206612, 0.43089990817, 0.43158861341, 0.43181818182, 0.43365472911, 0.43434343434, 0.43732782369, 0.43916437098, 0.43985307622, 0.44077134986, 0.44191919192, 0.4435261708, 0.44628099174, 0.44742883379, 0.44834710744, 0.45087235996, 0.45110192838, 0.45179063361, 0.4536271809, 0.45385674931, 0.45454545455, 0.45638200184, 0.45844811754, 0.45936639119, 0.46005509642, 0.46120293848, 0.46189164371, 0.46212121212, 0.46395775941, 0.46464646465, 0.46763085399, 0.46946740129, 0.47015610652, 0.47107438017, 0.47222222222, 0.4738292011, 0.47658402204, 0.4777318641, 0.47865013774, 0.48117539027, 0.48140495868, 0.48209366391, 0.4839302112, 0.48415977961, 0.48484848485, 0.48668503214, 0.48875114784, 0.48966942149, 0.49035812672, 0.49150596878, 0.49219467401, 0.49242424242, 0.49426078972, 0.49494949495, 0.4979338843, 0.49977043159, 0.50045913682, 0.50137741047, 0.50252525253, 0.50413223141, 0.50688705234, 0.5080348944, 0.50895316804, 0.51147842057, 0.51170798898, 0.51239669422, 0.51423324151, 0.51446280992, 0.51515151515, 0.51698806244, 0.51905417815, 0.51997245179, 0.52066115703, 0.52180899908, 0.52249770432, 0.52272727273, 0.52456382002, 0.52525252525, 0.5282369146, 0.53007346189, 0.53076216713, 0.53168044077, 0.53282828283, 0.53443526171, 0.53719008265, 0.5383379247, 0.53925619835, 0.54178145087, 0.54201101928, 0.54269972452, 0.54453627181, 0.54476584022, 0.54545454546, 0.54729109275, 0.54935720845, 0.55027548209, 0.55096418733, 0.55211202939, 0.55280073462, 0.55303030303, 0.55486685032, 0.55555555556, 0.5585399449, 0.5603764922, 0.56106519743, 0.56198347107, 0.56313131313, 0.56473829201, 0.56749311295, 0.56864095501, 0.56955922865, 0.57208448118, 0.57231404959, 0.57300275482, 0.57483930211, 0.57506887052, 0.57575757576, 0.57759412305, 0.57966023875, 0.5805785124, 0.58126721763, 0.58241505969, 0.58310376492, 0.58333333333, 0.58516988062, 0.58585858586, 0.58884297521, 0.5906795225, 0.59136822773, 0.59228650138, 0.59343434343, 0.59504132231, 0.59779614325, 0.59894398531, 0.59986225895, 0.60238751148, 0.60261707989, 0.60330578512, 0.60514233242, 0.60537190083, 0.60606060606, 0.60789715335, 0.60996326905, 0.6108815427, 0.61157024793, 0.61271808999, 0.61340679523, 0.61363636364, 0.61547291093, 0.61616161616, 0.61914600551, 0.6209825528, 0.62167125804, 0.62258953168, 0.62373737374, 0.62534435262, 0.62809917355, 0.62924701561, 0.63016528926, 0.63269054178, 0.63292011019, 0.63360881543, 0.63544536272, 0.63567493113, 0.63636363636, 0.63820018366, 0.64026629936, 0.641184573, 0.64187327824, 0.64302112029, 0.64370982553, 0.64393939394, 0.64577594123, 0.64646464647, 0.64944903581, 0.6512855831, 0.65197428834, 0.65289256198, 0.65404040404, 0.65564738292, 0.65840220386, 0.65955004591, 0.66046831956, 0.66299357208, 0.6632231405, 0.66391184573, 0.66574839302, 0.66597796143, 0.66666666667, 0.66850321396, 0.67056932966, 0.67148760331, 0.67217630854, 0.6733241506, 0.67401285583, 0.67424242424, 0.67607897153, 0.67676767677, 0.67975206612, 0.68158861341, 0.68227731864, 0.68319559229, 0.68434343434, 0.68595041322, 0.68870523416, 0.68985307622, 0.69077134986, 0.69329660239, 0.6935261708, 0.69421487603, 0.69605142332, 0.69628099174, 0.69696969697, 0.69880624426, 0.70087235996, 0.70179063361, 0.70247933884, 0.7036271809, 0.70431588613, 0.70454545455, 0.70638200184, 0.70707070707, 0.71005509642, 0.71189164371, 0.71258034894, 0.71349862259, 0.71464646465, 0.71625344353, 0.71900826446, 0.72015610652, 0.72107438017, 0.72359963269, 0.7238292011, 0.72451790634, 0.72635445363, 0.72658402204, 0.72727272727, 0.72910927456, 0.73117539027, 0.73209366391, 0.73278236915, 0.7339302112, 0.73461891644, 0.73484848485, 0.73668503214, 0.73737373737, 0.74035812672, 0.74219467401, 0.74288337925, 0.74380165289, 0.74494949495, 0.74655647383, 0.74931129477, 0.75045913682, 0.75137741047, 0.75390266299, 0.75413223141, 0.75482093664, 0.75665748393, 0.75688705234, 0.75757575758, 0.75941230487, 0.76147842057, 0.76239669422, 0.76308539945, 0.76423324151, 0.76492194674, 0.76515151515, 0.76698806244, 0.76767676768, 0.77066115703, 0.77249770432, 0.77318640955, 0.7741046832, 0.77525252525, 0.77685950413, 0.77961432507, 0.78076216713, 0.78168044077, 0.7842056933, 0.78443526171, 0.78512396694, 0.78696051423, 0.78719008265, 0.78787878788, 0.78971533517, 0.79178145087, 0.79269972452, 0.79338842975, 0.79453627181, 0.79522497704, 0.79545454546, 0.79729109275, 0.79797979798, 0.80096418733, 0.80280073462, 0.80348943985, 0.8044077135, 0.80555555556, 0.80716253444, 0.80991735537, 0.81106519743, 0.81198347107, 0.8145087236, 0.81473829201, 0.81542699725, 0.81726354454, 0.81749311295, 0.81818181818, 0.82001836547, 0.82208448118, 0.82300275482, 0.82369146006, 0.82483930211, 0.82552800735, 0.82575757576, 0.82759412305, 0.82828282828, 0.83126721763, 0.83310376492, 0.83379247016, 0.8347107438, 0.83585858586, 0.83746556474, 0.84022038568, 0.84136822773, 0.84228650138, 0.8448117539, 0.84504132231, 0.84573002755, 0.84756657484, 0.84779614325, 0.84848484849, 0.85032139578, 0.85238751148, 0.85330578512, 0.85399449036, 0.85514233242, 0.85583103765, 0.85606060606, 0.85789715335, 0.85858585859, 0.86157024793, 0.86340679523, 0.86409550046, 0.86501377411, 0.86616161616, 0.86776859504, 0.87052341598, 0.87167125804, 0.87258953168, 0.87511478421, 0.87534435262, 0.87603305785, 0.87786960514, 0.87809917355, 0.87878787879, 0.88062442608, 0.88269054178, 0.88360881543, 0.88429752066, 0.88544536272, 0.88613406795, 0.88636363636, 0.88820018366, 0.88888888889, 0.89187327824, 0.89370982553, 0.89439853076, 0.89531680441, 0.89646464647, 0.89807162534, 0.90082644628, 0.90197428834, 0.90289256198, 0.90541781451, 0.90564738292, 0.90633608815, 0.90817263545, 0.90840220386, 0.90909090909, 0.91092745638, 0.91299357208, 0.91391184573, 0.91460055096, 0.91574839302, 0.91643709826, 0.91666666667, 0.91850321396, 0.91919191919, 0.92217630854, 0.92401285583, 0.92470156107, 0.92561983471, 0.92676767677, 0.92837465565, 0.93112947658, 0.93227731864, 0.93319559229, 0.93572084481, 0.93595041322, 0.93663911846, 0.93847566575, 0.93870523416, 0.93939393939, 0.94123048669, 0.94329660239, 0.94421487603, 0.94490358127, 0.94605142332, 0.94674012856, 0.94696969697, 0.94880624426, 0.9494949495, 0.95247933884, 0.95431588613, 0.95500459137, 0.95592286501, 0.95707070707, 0.95867768595, 0.96143250689, 0.96258034894, 0.96349862259, 0.96602387512, 0.96625344353, 0.96694214876, 0.96877869605, 0.96900826446, 0.9696969697, 0.97153351699, 0.97359963269, 0.97451790634, 0.97520661157, 0.97635445363, 0.97704315886, 0.97727272727, 0.97910927456, 0.9797979798, 0.98278236915, 0.98461891644, 0.98530762167, 0.98622589532, 0.98737373737, 0.98898071625, 0.99173553719, 0.99288337925, 0.99380165289, 0.99632690542, 0.99655647383, 0.99724517906, 0.99908172635, 0.99931129477]
averages_even={0.0: [0.0], 0.25: [0.5], 0.89439853076: [0.1212121212121, 0.2121212121212, 0.7878787878788, 0.8787878787879], 0.58585858586: [0.3333333333333, 0.6666666666667], 0.49426078972: [0.7424242424242, 0.0757575757576, 0.9242424242424, 0.2575757575758], 0.641184573: [0.6818181818182, 0.3181818181818], 0.34825528007: [0.9848484848485, 0.0151515151515, 0.3484848484848, 0.6515151515152], 0.29958677686: [0.8636363636364, 0.1363636363636], 0.59986225895: [0.2272727272727, 0.7727272727273], 0.391184573: [0.1818181818182, 0.8181818181818], 0.88269054178: [0.1060606060606, 0.5606060606061, 0.8939393939394, 0.4393939393939], 0.74035812672: [0.0454545454545, 0.9545454545455], 0.64302112029: [0.469696969697, 0.8030303030303, 0.1969696969697, 0.530303030303], 0.39784205693: [0.1060606060606, 0.5606060606061, 0.8939393939394, 0.4393939393939], 0.08746556474: [0.8636363636364, 0.1363636363636], 0.86340679523: [0.9848484848485, 0.0151515151515, 0.3484848484848, 0.6515151515152], 0.02754820937: [0.1818181818182, 0.8181818181818], 0.74931129477: [0.0909090909091, 0.9090909090909], 0.34343434343: [0.3333333333333, 0.6666666666667], 0.07369146006: [0.0454545454545, 0.9545454545455], 0.03764921947: [0.1515151515152, 0.4848484848485, 0.8484848484848, 0.5151515151515], 0.52272727273: [0.5], 0.93572084481: [0.6060606060606, 0.9393939393939, 0.3939393939394, 0.0606060606061], 0.85583103765: [0.1515151515152, 0.4848484848485, 0.8484848484848, 0.5151515151515], 0.10743801653: [0.7272727272727, 0.2727272727273], 0.66391184573: [0.1818181818182, 0.8181818181818], 0.09825528007: [0.1515151515152, 0.4848484848485, 0.8484848484848, 0.5151515151515], 0.79338842975: [0.4545454545455, 0.5454545454545], 0.52456382002: [0.7424242424242, 0.0757575757576, 0.9242424242424, 0.2575757575758], 0.0303030303: [0.0], 0.98278236915: [0.0454545454545, 0.9545454545455], 0.10583103765: [0.9848484848485, 0.0151515151515, 0.3484848484848, 0.6515151515152], 0.76308539945: [0.4545454545455, 0.5454545454545], 0.16643709826: [0.9848484848485, 0.0151515151515, 0.3484848484848, 0.6515151515152], 0.42607897153: [0.4242424242424, 0.2424242424242, 0.5757575757576, 0.7575757575758], 0.15886134068: [0.1515151515152, 0.4848484848485, 0.8484848484848, 0.5151515151515], 0.72107438017: [0.2272727272727, 0.7727272727273], 0.04683195592: [0.7272727272727, 0.2727272727273], 0.62373737374: [0.8333333333333, 0.1666666666667], 0.32713498623: [0.2272727272727, 0.7727272727273], 0.99931129477: [0.5909090909091, 0.4090909090909], 0.64370982553: [0.1515151515152, 0.4848484848485, 0.8484848484848, 0.5151515151515], 0.19123048669: [0.7424242424242, 0.0757575757576, 0.9242424242424, 0.2575757575758], 0.98530762167: [0.1212121212121, 0.2121212121212, 0.7878787878788, 0.8787878787879], 0.26905417815: [0.6060606060606, 0.9393939393939, 0.3939393939394, 0.0606060606061], 0.90197428834: [0.6212121212121, 0.7121212121212, 0.2878787878788, 0.3787878787879], 0.37672176309: [0.0454545454545, 0.9545454545455], 0.27938475666: [0.469696969697, 0.8030303030303, 0.1969696969697, 0.530303030303], 0.0927456382: [0.7575757575758, 0.2424242424242, 0.5757575757576, 0.4242424242424], 0.63544536272: [0.969696969697, 0.3030303030303, 0.6969696969697, 0.030303030303], 0.86409550046: [0.1212121212121, 0.2121212121212, 0.7878787878788, 0.8787878787879], 0.32231404959: [0.3636363636364, 0.6363636363636], 0.0342056933: [0.1060606060606, 0.5606060606061, 0.8939393939394, 0.4393939393939], 0.51423324151: [0.3030303030303, 0.030303030303, 0.6969696969697, 0.969696969697], 0.57300275482: [0.1818181818182, 0.8181818181818], 0.66666666667: [0.0], 0.93847566575: [0.969696969697, 0.3030303030303, 0.6969696969697, 0.030303030303], 0.42056932966: [0.6060606060606, 0.9393939393939, 0.3939393939394, 0.0606060606061], 0.54545454546: [0.0], 0.0101010101: [0.3333333333333, 0.6666666666667], 0.27456382002: [0.7575757575758, 0.2424242424242, 0.5757575757576, 0.4242424242424], 0.57966023875: [0.1060606060606, 0.5606060606061, 0.8939393939394, 0.4393939393939], 0.60606060606: [0.0], 0.06542699725: [0.6818181818182, 0.3181818181818], 0.89531680441: [0.7272727272727, 0.2727272727273], 0.00183654729: [0.7575757575758, 0.2424242424242, 0.5757575757576, 0.4242424242424], 0.02938475666: [0.3030303030303, 0.030303030303, 0.6969696969697, 0.969696969697], 0.42148760331: [0.1818181818182, 0.8181818181818], 0.20500459137: [0.6212121212121, 0.7121212121212, 0.2878787878788, 0.3787878787879], 0.15633608815: [0.6818181818182, 0.3181818181818], 0.41597796143: [0.0909090909091, 0.9090909090909], 0.58333333333: [0.5], 0.30693296602: [0.1060606060606, 0.5606060606061, 0.8939393939394, 0.4393939393939], 0.84022038568: [0.0909090909091, 0.9090909090909], 0.2297979798: [0.8333333333333, 0.1666666666667], 0.18112947658: [0.5909090909091, 0.4090909090909], 0.18365472911: [0.7575757575758, 0.2424242424242, 0.5757575757576, 0.4242424242424], 0.42424242424: [0.0], 0.5603764922: [0.9848484848485, 0.0151515151515, 0.3484848484848, 0.6515151515152], 0.15151515152: [0.0], 0.89646464647: [0.8333333333333, 0.1666666666667], 0.35651974288: [0.6212121212121, 0.7121212121212, 0.2878787878788, 0.3787878787879], 0.30785123967: [0.6818181818182, 0.3181818181818], 0.18572084481: [0.1060606060606, 0.5606060606061, 0.8939393939394, 0.4393939393939], 0.77249770432: [0.9848484848485, 0.0151515151515, 0.3484848484848, 0.6515151515152], 0.20592286501: [0.2272727272727, 0.7727272727273], 0.07552800735: [0.9848484848485, 0.0151515151515, 0.3484848484848, 0.6515151515152], 0.12672176309: [0.4545454545455, 0.5454545454545], 0.78168044077: [0.2272727272727, 0.7727272727273], 0.65955004591: [0.6212121212121, 0.7121212121212, 0.2878787878788, 0.3787878787879], 0.35743801653: [0.2272727272727, 0.7727272727273], 0.67607897153: [0.7424242424242, 0.0757575757576, 0.9242424242424, 0.2575757575758], 0.89807162534: [0.3636363636364, 0.6363636363636], 0.90082644628: [0.0909090909091, 0.9090909090909], 0.03787878788: [0.5], 0.95247933884: [0.0454545454545, 0.9545454545455], 0.99724517906: [0.1818181818182, 0.8181818181818], 0.4012855831: [0.1515151515152, 0.4848484848485, 0.8484848484848, 0.5151515151515], 0.00550964187: [0.4545454545455, 0.5454545454545], 0.08815426997: [0.1818181818182, 0.8181818181818], 0.7842056933: [0.6060606060606, 0.9393939393939, 0.3939393939394, 0.0606060606061], 0.60789715335: [0.4242424242424, 0.2424242424242, 0.5757575757576, 0.7575757575758], 0.0241046832: [0.2272727272727, 0.7727272727273], 0.00390266299: [0.1060606060606, 0.5606060606061, 0.8939393939394, 0.4393939393939], 0.01561065197: [0.2121212121212, 0.1212121212121, 0.7878787878788, 0.8787878787879], 0.24977043159: [0.1515151515152, 0.4848484848485, 0.8484848484848, 0.5151515151515], 0.45087235996: [0.6060606060606, 0.9393939393939, 0.3939393939394, 0.0606060606061], 0.68227731864: [0.1212121212121, 0.2121212121212, 0.7878787878788, 0.8787878787879], 0.11019283747: [0.3636363636364, 0.6363636363636], 0.64026629936: [0.1060606060606, 0.5606060606061, 0.8939393939394, 0.4393939393939], 0.29476584022: [0.0909090909091, 0.9090909090909], 0.2196969697: [0.5], 0.79453627181: [0.469696969697, 0.8030303030303, 0.1969696969697, 0.530303030303], 0.00665748393: [0.469696969697, 0.8030303030303, 0.1969696969697, 0.530303030303], 0.90840220386: [0.5909090909091, 0.4090909090909], 0.51997245179: [0.6818181818182, 0.3181818181818], 0.68319559229: [0.7272727272727, 0.2727272727273], 0.74219467401: [0.9848484848485, 0.0151515151515, 0.3484848484848, 0.6515151515152], 0.28764921947: [0.9848484848485, 0.0151515151515, 0.3484848484848, 0.6515151515152], 0.08999081726: [0.3030303030303, 0.030303030303, 0.6969696969697, 0.969696969697], 0.78696051423: [0.969696969697, 0.3030303030303, 0.6969696969697, 0.030303030303], 0.83379247016: [0.1212121212121, 0.2121212121212, 0.7878787878788, 0.8787878787879], 0.68595041322: [0.3636363636364, 0.6363636363636], 0.61914600551: [0.0454545454545, 0.9545454545455], 0.52180899908: [0.469696969697, 0.8030303030303, 0.1969696969697, 0.530303030303], 0.87258953168: [0.2272727272727, 0.7727272727273], 0.33723599633: [0.1060606060606, 0.5606060606061, 0.8939393939394, 0.4393939393939], 0.9797979798: [0.6666666666667, 0.3333333333333], 0.38016528926: [0.7272727272727, 0.2727272727273], 0.76698806244: [0.7424242424242, 0.0757575757576, 0.9242424242424, 0.2575757575758], 0.66299357208: [0.6060606060606, 0.9393939393939, 0.3939393939394, 0.0606060606061], 0.07070707071: [0.3333333333333, 0.6666666666667], 0.48415977961: [0.5909090909091, 0.4090909090909], 0.6209825528: [0.9848484848485, 0.0151515151515, 0.3484848484848, 0.6515151515152], 0.52525252525: [0.3333333333333, 0.6666666666667], 0.38682277319: [0.6212121212121, 0.7121212121212, 0.2878787878788, 0.3787878787879], 0.31955922865: [0.7272727272727, 0.2727272727273], 0.42975206612: [0.4545454545455, 0.5454545454545], 0.49035812672: [0.4545454545455, 0.5454545454545], 0.33241505969: [0.3030303030303, 0.030303030303, 0.6969696969697, 0.969696969697], 0.46395775941: [0.7424242424242, 0.0757575757576, 0.9242424242424, 0.2575757575758], 0.56749311295: [0.0909090909091, 0.9090909090909], 0.87511478421: [0.6060606060606, 0.9393939393939, 0.3939393939394, 0.0606060606061], 0.05991735537: [0.5909090909091, 0.4090909090909], 0.09090909091: [0.0], 0.64187327824: [0.4545454545455, 0.5454545454545], 0.13613406795: [0.9848484848485, 0.0151515151515, 0.3484848484848, 0.6515151515152], 0.01767676768: [0.8333333333333, 0.1666666666667], 0.50252525253: [0.8333333333333, 0.1666666666667], 0.67217630854: [0.4545454545455, 0.5454545454545], 0.39302112029: [0.3030303030303, 0.030303030303, 0.6969696969697, 0.969696969697], 0.84779614325: [0.5909090909091, 0.4090909090909], 0.16092745638: [0.7424242424242, 0.0757575757576, 0.9242424242424, 0.2575757575758], 0.82483930211: [0.469696969697, 0.8030303030303, 0.1969696969697, 0.530303030303], 0.92217630854: [0.0454545454545, 0.9545454545455], 0.31611570248: [0.0454545454545, 0.9545454545455], 0.99288337925: [0.6212121212121, 0.7121212121212, 0.2878787878788, 0.3787878787879], 0.76767676768: [0.3333333333333, 0.6666666666667], 0.58310376492: [0.1515151515152, 0.4848484848485, 0.8484848484848, 0.5151515151515], 0.79729109275: [0.7424242424242, 0.0757575757576, 0.9242424242424, 0.2575757575758], 0.26170798898: [0.3636363636364, 0.6363636363636], 0.4738292011: [0.3636363636364, 0.6363636363636], 0.90817263545: [0.969696969697, 0.3030303030303, 0.6969696969697, 0.030303030303], 0.71349862259: [0.7272727272727, 0.2727272727273], 0.93939393939: [0.0], 0.35996326905: [0.6060606060606, 0.9393939393939, 0.3939393939394, 0.0606060606061], 0.62258953168: [0.7272727272727, 0.2727272727273], 0.13131313131: [0.3333333333333, 0.6666666666667], 0.09022038568: [0.5909090909091, 0.4090909090909], 0.5805785124: [0.6818181818182, 0.3181818181818], 0.91643709826: [0.1515151515152, 0.4848484848485, 0.8484848484848, 0.5151515151515], 0.86616161616: [0.8333333333333, 0.1666666666667], 0.40955004591: [0.1212121212121, 0.2121212121212, 0.7878787878788, 0.8787878787879], 0.3608815427: [0.1818181818182, 0.8181818181818], 0.80096418733: [0.0454545454545, 0.9545454545455], 0.67975206612: [0.0454545454545, 0.9545454545455], 0.96602387512: [0.6060606060606, 0.9393939393939, 0.3939393939394, 0.0606060606061], 0.81106519743: [0.6212121212121, 0.7121212121212, 0.2878787878788, 0.3787878787879], 0.6632231405: [0.8636363636364, 0.1363636363636], 0.41046831956: [0.7272727272727, 0.2727272727273], 0.54729109275: [0.4242424242424, 0.2424242424242, 0.5757575757576, 0.7575757575758], 0.04522497704: [0.9848484848485, 0.0151515151515, 0.3484848484848, 0.6515151515152], 0.12603305785: [0.6818181818182, 0.3181818181818], 0.19490358127: [0.0454545454545, 0.9545454545455], 0.43434343434: [0.3333333333333, 0.6666666666667], 0.84228650138: [0.2272727272727, 0.7727272727273], 0.75137741047: [0.2272727272727, 0.7727272727273], 0.1994949495: [0.8333333333333, 0.1666666666667], 0.69605142332: [0.969696969697, 0.3030303030303, 0.6969696969697, 0.030303030303], 0.30303030303: [0.0], 0.15082644628: [0.5909090909091, 0.4090909090909], 0.38567493113: [0.0909090909091, 0.9090909090909], 0.72727272727: [0.0], 0.29591368228: [0.6212121212121, 0.7121212121212, 0.2878787878788, 0.3787878787879], 0.28007346189: [0.1515151515152, 0.4848484848485, 0.8484848484848, 0.5151515151515], 0.17561983471: [0.2272727272727, 0.7727272727273], 0.91092745638: [0.4242424242424, 0.2424242424242, 0.5757575757576, 0.7575757575758], 0.60514233242: [0.3030303030303, 0.030303030303, 0.6969696969697, 0.969696969697], 0.63567493113: [0.5909090909091, 0.4090909090909], 0.5383379247: [0.6212121212121, 0.7121212121212, 0.2878787878788, 0.3787878787879], 0.29683195592: [0.2272727272727, 0.7727272727273], 0.24908172635: [0.469696969697, 0.8030303030303, 0.1969696969697, 0.530303030303], 0.49242424242: [0.5], 0.8044077135: [0.7272727272727, 0.2727272727273], 0.76423324151: [0.469696969697, 0.8030303030303, 0.1969696969697, 0.530303030303], 0.34641873278: [0.0454545454545, 0.9545454545455], 0.87603305785: [0.1818181818182, 0.8181818181818], 0.3406795225: [0.1515151515152, 0.4848484848485, 0.8484848484848, 0.5151515151515], 0.29201101928: [0.3636363636364, 0.6363636363636], 0.73668503214: [0.7424242424242, 0.0757575757576, 0.9242424242424, 0.2575757575758], 0.30486685032: [0.4242424242424, 0.2424242424242, 0.5757575757576, 0.7575757575758], 0.75688705234: [0.5909090909091, 0.4090909090909], 0.18089990817: [0.3030303030303, 0.030303030303, 0.6969696969697, 0.969696969697], 0.21946740129: [0.1515151515152, 0.4848484848485, 0.8484848484848, 0.5151515151515], 0.09756657484: [0.469696969697, 0.8030303030303, 0.1969696969697, 0.530303030303], 0.17079889807: [0.3636363636364, 0.6363636363636], 0.50413223141: [0.3636363636364, 0.6363636363636], 0.95431588613: [0.9848484848485, 0.0151515151515, 0.3484848484848, 0.6515151515152], 0.51905417815: [0.1060606060606, 0.5606060606061, 0.8939393939394, 0.4393939393939], 0.67676767677: [0.3333333333333, 0.6666666666667], 0.18939393939: [0.5], 0.43985307622: [0.1212121212121, 0.2121212121212, 0.7878787878788, 0.8787878787879], 0.96900826446: [0.5909090909091, 0.4090909090909], 0.75665748393: [0.969696969697, 0.3030303030303, 0.6969696969697, 0.030303030303], 0.75941230487: [0.4242424242424, 0.2424242424242, 0.5757575757576, 0.7575757575758], 0.56473829201: [0.3636363636364, 0.6363636363636], 0.76492194674: [0.1515151515152, 0.4848484848485, 0.8484848484848, 0.5151515151515], 0.27662993572: [0.1060606060606, 0.5606060606061, 0.8939393939394, 0.4393939393939], 0.23898071625: [0.8636363636364, 0.1363636363636], 0.85858585859: [0.6666666666667, 0.3333333333333], 0.54178145087: [0.6060606060606, 0.9393939393939, 0.3939393939394, 0.0606060606061], 0.47222222222: [0.8333333333333, 0.1666666666667], 0.42355371901: [0.5909090909091, 0.4090909090909], 0.03512396694: [0.6818181818182, 0.3181818181818], 0.32621671258: [0.6212121212121, 0.7121212121212, 0.2878787878788, 0.3787878787879], 0.27754820937: [0.6818181818182, 0.3181818181818], 0.45179063361: [0.1818181818182, 0.8181818181818], 0.97727272727: [0.5], 0.36914600551: [0.4545454545455, 0.5454545454545], 0.71625344353: [0.3636363636364, 0.6363636363636], 0.06795224977: [0.1515151515152, 0.4848484848485, 0.8484848484848, 0.5151515151515], 0.79797979798: [0.6666666666667, 0.3333333333333], 0.69628099174: [0.5909090909091, 0.4090909090909], 0.59894398531: [0.6212121212121, 0.7121212121212, 0.2878787878788, 0.3787878787879], 0.01308539945: [0.0454545454545, 0.9545454545455], 0.94880624426: [0.7424242424242, 0.0757575757576, 0.9242424242424, 0.2575757575758], 0.6733241506: [0.469696969697, 0.8030303030303, 0.1969696969697, 0.530303030303], 0.06818181818: [0.5], 0.59504132231: [0.3636363636364, 0.6363636363636], 0.63636363636: [0.0], 0.82369146006: [0.4545454545455, 0.5454545454545], 0.23415977961: [0.0909090909091, 0.9090909090909], 0.60330578512: [0.1818181818182, 0.8181818181818], 0.13062442608: [0.7424242424242, 0.0757575757576, 0.9242424242424, 0.2575757575758], 0.94490358127: [0.4545454545455, 0.5454545454545], 0.86157024793: [0.0454545454545, 0.9545454545455], 0.95867768595: [0.3636363636364, 0.6363636363636], 0.71900826446: [0.0909090909091, 0.9090909090909], 0.15541781451: [0.1060606060606, 0.5606060606061, 0.8939393939394, 0.4393939393939], 0.03213957759: [0.7575757575758, 0.2424242424242, 0.5757575757576, 0.4242424242424], 0.02318640955: [0.6212121212121, 0.7121212121212, 0.2878787878788, 0.3787878787879], 0.05348943985: [0.6212121212121, 0.7121212121212, 0.2878787878788, 0.3787878787879], 0.55303030303: [0.5], 0.81818181818: [0.0], 0.50137741047: [0.7272727272727, 0.2727272727273], 0.65404040404: [0.8333333333333, 0.1666666666667], 0.82208448118: [0.1060606060606, 0.5606060606061, 0.8939393939394, 0.4393939393939], 0.40335169881: [0.7424242424242, 0.0757575757576, 0.9242424242424, 0.2575757575758], 0.0948117539: [0.1060606060606, 0.5606060606061, 0.8939393939394, 0.4393939393939], 0.90289256198: [0.2272727272727, 0.7727272727273], 0.25734618916: [0.9848484848485, 0.0151515151515, 0.3484848484848, 0.6515151515152], 0.34894398531: [0.1212121212121, 0.2121212121212, 0.7878787878788, 0.8787878787879], 0.30027548209: [0.1818181818182, 0.8181818181818], 0.13682277319: [0.1212121212121, 0.2121212121212, 0.7878787878788, 0.8787878787879], 0.0826446281: [0.0909090909091, 0.9090909090909], 0.5585399449: [0.0454545454545, 0.9545454545455], 0.88888888889: [0.6666666666667, 0.3333333333333], 0.2479338843: [0.4545454545455, 0.5454545454545], 0.55555555556: [0.3333333333333, 0.6666666666667], 0.97704315886: [0.1515151515152, 0.4848484848485, 0.8484848484848, 0.5151515151515], 0.34986225895: [0.7272727272727, 0.2727272727273], 0.15059687787: [0.3030303030303, 0.030303030303, 0.6969696969697, 0.969696969697], 0.00941230487: [0.7424242424242, 0.0757575757576, 0.9242424242424, 0.2575757575758], 0.25252525253: [0.3333333333333, 0.6666666666667], 0.60261707989: [0.8636363636364, 0.1363636363636], 0.39944903581: [0.4545454545455, 0.5454545454545], 0.94421487603: [0.6818181818182, 0.3181818181818], 0.73209366391: [0.6818181818182, 0.3181818181818], 0.17355371901: [0.0909090909091, 0.9090909090909], 0.10101010101: [0.3333333333333, 0.6666666666667], 0.88544536272: [0.469696969697, 0.8030303030303, 0.1969696969697, 0.530303030303], 0.70247933884: [0.4545454545455, 0.5454545454545], 0.58126721763: [0.4545454545455, 0.5454545454545], 0.14531680441: [0.2272727272727, 0.7727272727273], 0.7339302112: [0.469696969697, 0.8030303030303, 0.1969696969697, 0.530303030303], 0.75045913682: [0.6212121212121, 0.7121212121212, 0.2878787878788, 0.3787878787879], 0.85514233242: [0.469696969697, 0.8030303030303, 0.1969696969697, 0.530303030303], 0.53925619835: [0.2272727272727, 0.7727272727273], 0.21877869605: [0.469696969697, 0.8030303030303, 0.1969696969697, 0.530303030303], 0.49977043159: [0.9848484848485, 0.0151515151515, 0.3484848484848, 0.6515151515152], 0.87534435262: [0.8636363636364, 0.1363636363636], 0.43181818182: [0.5], 0.01492194674: [0.9848484848485, 0.0151515151515, 0.3484848484848, 0.6515151515152], 0.97910927456: [0.7424242424242, 0.0757575757576, 0.9242424242424, 0.2575757575758], 0.28581267218: [0.0454545454545, 0.9545454545455], 0.74380165289: [0.7272727272727, 0.2727272727273], 0.07001836547: [0.7424242424242, 0.0757575757576, 0.9242424242424, 0.2575757575758], 0.48140495868: [0.8636363636364, 0.1363636363636], 0.61547291093: [0.7424242424242, 0.0757575757576, 0.9242424242424, 0.2575757575758], 0.88820018366: [0.7424242424242, 0.0757575757576, 0.9242424242424, 0.2575757575758], 0.44077134986: [0.7272727272727, 0.2727272727273], 0.85399449036: [0.4545454545455, 0.5454545454545], 0.18916437098: [0.1515151515152, 0.4848484848485, 0.8484848484848, 0.5151515151515], 0.16161616162: [0.3333333333333, 0.6666666666667], 0.32966023875: [0.6060606060606, 0.9393939393939, 0.3939393939394, 0.0606060606061], 0.14049586777: [0.3636363636364, 0.6363636363636], 0.71464646465: [0.8333333333333, 0.1666666666667], 0.43365472911: [0.7424242424242, 0.0757575757576, 0.9242424242424, 0.2575757575758], 0.86776859504: [0.3636363636364, 0.6363636363636], 0.96143250689: [0.0909090909091, 0.9090909090909], 0.47658402204: [0.0909090909091, 0.9090909090909], 0.21395775941: [0.4242424242424, 0.2424242424242, 0.5757575757576, 0.7575757575758], 0.99632690542: [0.6060606060606, 0.9393939393939, 0.3939393939394, 0.0606060606061], 0.83310376492: [0.9848484848485, 0.0151515151515, 0.3484848484848, 0.6515151515152], 0.37924701561: [0.1212121212121, 0.2121212121212, 0.7878787878788, 0.8787878787879], 0.96349862259: [0.2272727272727, 0.7727272727273], 0.3305785124: [0.1818181818182, 0.8181818181818], 0.70179063361: [0.6818181818182, 0.3181818181818], 0.05968778696: [0.3030303030303, 0.030303030303, 0.6969696969697, 0.969696969697], 0.63820018366: [0.4242424242424, 0.2424242424242, 0.5757575757576, 0.7575757575758], 0.19834710744: [0.7272727272727, 0.2727272727273], 0.88636363636: [0.5], 0.6935261708: [0.8636363636364, 0.1363636363636], 0.66850321396: [0.4242424242424, 0.2424242424242, 0.5757575757576, 0.7575757575758], 0.03581267218: [0.4545454545455, 0.5454545454545], 0.20867768595: [0.8636363636364, 0.1363636363636], 0.76239669422: [0.6818181818182, 0.3181818181818], 0.73737373737: [0.3333333333333, 0.6666666666667], 0.72359963269: [0.6060606060606, 0.9393939393939, 0.3939393939394, 0.0606060606061], 0.41161616162: [0.8333333333333, 0.1666666666667], 0.73484848485: [0.5], 0.3629476584: [0.5909090909091, 0.4090909090909], 0.26561065197: [0.6212121212121, 0.7121212121212, 0.2878787878788, 0.3787878787879], 0.00734618916: [0.1515151515152, 0.4848484848485, 0.8484848484848, 0.5151515151515], 0.84848484849: [0.0], 0.07713498623: [0.7272727272727, 0.2727272727273], 0.01928374656: [0.3636363636364, 0.6363636363636], 0.11753902663: [0.6060606060606, 0.9393939393939, 0.3939393939394, 0.0606060606061], 0.46120293848: [0.469696969697, 0.8030303030303, 0.1969696969697, 0.530303030303], 0.57506887052: [0.5909090909091, 0.4090909090909], 0.8347107438: [0.7272727272727, 0.2727272727273], 0.2277318641: [0.1212121212121, 0.2121212121212, 0.7878787878788, 0.8787878787879], 0.26652892562: [0.2272727272727, 0.7727272727273], 0.17906336088: [0.1818181818182, 0.8181818181818], 0.92676767677: [0.8333333333333, 0.1666666666667], 0.98737373737: [0.8333333333333, 0.1666666666667], 0.46212121212: [0.5], 0.11409550046: [0.6212121212121, 0.7121212121212, 0.2878787878788, 0.3787878787879], 0.20385674931: [0.0909090909091, 0.9090909090909], 0.48668503214: [0.4242424242424, 0.2424242424242, 0.5757575757576, 0.7575757575758], 0.3103764922: [0.1515151515152, 0.4848484848485, 0.8484848484848, 0.5151515151515], 0.78443526171: [0.8636363636364, 0.1363636363636], 0.22865013774: [0.7272727272727, 0.2727272727273], 0.54269972452: [0.1818181818182, 0.8181818181818], 0.59779614325: [0.0909090909091, 0.9090909090909], 0.12511478421: [0.1060606060606, 0.5606060606061, 0.8939393939394, 0.4393939393939], 0.88429752066: [0.4545454545455, 0.5454545454545], 0.24724517906: [0.6818181818182, 0.3181818181818], 0.81542699725: [0.1818181818182, 0.8181818181818], 0.69696969697: [0.0], 0.39026629936: [0.6060606060606, 0.9393939393939, 0.3939393939394, 0.0606060606061], 0.3427456382: [0.7424242424242, 0.0757575757576, 0.9242424242424, 0.2575757575758], 0.82575757576: [0.5], 0.91574839302: [0.469696969697, 0.8030303030303, 0.1969696969697, 0.530303030303], 0.17470156107: [0.6212121212121, 0.7121212121212, 0.2878787878788, 0.3787878787879], 0.48966942149: [0.6818181818182, 0.3181818181818], 0.59228650138: [0.7272727272727, 0.2727272727273], 0.05785123967: [0.1818181818182, 0.8181818181818], 0.82001836547: [0.4242424242424, 0.2424242424242, 0.5757575757576, 0.7575757575758], 0.28925619835: [0.7272727272727, 0.2727272727273], 0.85606060606: [0.5], 0.73117539027: [0.1060606060606, 0.5606060606061, 0.8939393939394, 0.4393939393939], 0.44191919192: [0.8333333333333, 0.1666666666667], 0.39325068871: [0.5909090909091, 0.4090909090909], 0.12121212121: [0.0], 0.06060606061: [0.0], 0.00757575758: [0.5], 0.06611570248: [0.4545454545455, 0.5454545454545], 0.0847107438: [0.2272727272727, 0.7727272727273], 0.33884297521: [0.4545454545455, 0.5454545454545], 0.6108815427: [0.6818181818182, 0.3181818181818], 0.49150596878: [0.469696969697, 0.8030303030303, 0.1969696969697, 0.530303030303], 0.00482093664: [0.6818181818182, 0.3181818181818], 0.62534435262: [0.3636363636364, 0.6363636363636], 0.97153351699: [0.4242424242424, 0.2424242424242, 0.5757575757576, 0.7575757575758], 0.77685950413: [0.3636363636364, 0.6363636363636], 0.71005509642: [0.0454545454545, 0.9545454545455], 0.88360881543: [0.6818181818182, 0.3181818181818], 0.61271808999: [0.469696969697, 0.8030303030303, 0.1969696969697, 0.530303030303], 0.77525252525: [0.8333333333333, 0.1666666666667], 0.97520661157: [0.4545454545455, 0.5454545454545], 0.18847566575: [0.469696969697, 0.8030303030303, 0.1969696969697, 0.530303030303], 0.71189164371: [0.9848484848485, 0.0151515151515, 0.3484848484848, 0.6515151515152], 0.95500459137: [0.1212121212121, 0.2121212121212, 0.7878787878788, 0.8787878787879], 0.87786960514: [0.969696969697, 0.3030303030303, 0.6969696969697, 0.030303030303], 0.88613406795: [0.1515151515152, 0.4848484848485, 0.8484848484848, 0.5151515151515], 0.16460055096: [0.0454545454545, 0.9545454545455], 0.46946740129: [0.9848484848485, 0.0151515151515, 0.3484848484848, 0.6515151515152], 0.56106519743: [0.1212121212121, 0.2121212121212, 0.7878787878788, 0.8787878787879], 0.42079889807: [0.8636363636364, 0.1363636363636], 0.73278236915: [0.4545454545455, 0.5454545454545], 0.97359963269: [0.1060606060606, 0.5606060606061, 0.8939393939394, 0.4393939393939], 0.03971533517: [0.7424242424242, 0.0757575757576, 0.9242424242424, 0.2575757575758], 0.06726354454: [0.469696969697, 0.8030303030303, 0.1969696969697, 0.530303030303], 0.69077134986: [0.2272727272727, 0.7727272727273], 0.59343434343: [0.8333333333333, 0.1666666666667], 0.57759412305: [0.4242424242424, 0.2424242424242, 0.5757575757576, 0.7575757575758], 0.3730486685: [0.7424242424242, 0.0757575757576, 0.9242424242424, 0.2575757575758], 0.46464646465: [0.3333333333333, 0.6666666666667], 0.8145087236: [0.6060606060606, 0.9393939393939, 0.3939393939394, 0.0606060606061], 0.10399449036: [0.0454545454545, 0.9545454545455], 0.04591368228: [0.1212121212121, 0.2121212121212, 0.7878787878788, 0.8787878787879], 0.31864095501: [0.1212121212121, 0.2121212121212, 0.7878787878788, 0.8787878787879], 0.78719008265: [0.5909090909091, 0.4090909090909], 0.26997245179: [0.1818181818182, 0.8181818181818], 0.73461891644: [0.1515151515152, 0.4848484848485, 0.8484848484848, 0.5151515151515], 0.93112947658: [0.0909090909091, 0.9090909090909], 0.20844811754: [0.6060606060606, 0.9393939393939, 0.3939393939394, 0.0606060606061], 0.93595041322: [0.8636363636364, 0.1363636363636], 0.51698806244: [0.4242424242424, 0.2424242424242, 0.5757575757576, 0.7575757575758], 0.07988980716: [0.3636363636364, 0.6363636363636], 0.57231404959: [0.8636363636364, 0.1363636363636], 0.72451790634: [0.1818181818182, 0.8181818181818], 0.17837465565: [0.8636363636364, 0.1363636363636], 0.96694214876: [0.1818181818182, 0.8181818181818], 0.61616161616: [0.3333333333333, 0.6666666666667], 0.67148760331: [0.6818181818182, 0.3181818181818], 0.96625344353: [0.8636363636364, 0.1363636363636], 0.3023415978: [0.5909090909091, 0.4090909090909], 0.45385674931: [0.5909090909091, 0.4090909090909], 0.52066115703: [0.4545454545455, 0.5454545454545], 0.40059687787: [0.469696969697, 0.8030303030303, 0.1969696969697, 0.530303030303], 0.24426078972: [0.7575757575758, 0.2424242424242, 0.5757575757576, 0.4242424242424], 0.14876033058: [0.1818181818182, 0.8181818181818], 0.91299357208: [0.1060606060606, 0.5606060606061, 0.8939393939394, 0.4393939393939], 0.40151515152: [0.5], 0.22222222222: [0.3333333333333, 0.6666666666667], 0.25550964187: [0.0454545454545, 0.9545454545455], 0.39577594123: [0.4242424242424, 0.2424242424242, 0.5757575757576, 0.7575757575758], 0.04338842975: [0.0454545454545, 0.9545454545455], 0.47865013774: [0.2272727272727, 0.7727272727273], 0.97451790634: [0.6818181818182, 0.3181818181818], 0.45110192838: [0.8636363636364, 0.1363636363636], 0.78787878788: [0.0], 0.55486685032: [0.7424242424242, 0.0757575757576, 0.9242424242424, 0.2575757575758], 0.94329660239: [0.1060606060606, 0.5606060606061, 0.8939393939394, 0.4393939393939], 0.04958677686: [0.3636363636364, 0.6363636363636], 0.45638200184: [0.4242424242424, 0.2424242424242, 0.5757575757576, 0.7575757575758], 0.29935720845: [0.6060606060606, 0.9393939393939, 0.3939393939394, 0.0606060606061], 0.47015610652: [0.1212121212121, 0.2121212121212, 0.7878787878788, 0.8787878787879], 0.49494949495: [0.3333333333333, 0.6666666666667], 0.44628099174: [0.0909090909091, 0.9090909090909], 0.88062442608: [0.4242424242424, 0.2424242424242, 0.5757575757576, 0.7575757575758], 0.57575757576: [0.0], 0.30211202939: [0.3030303030303, 0.030303030303, 0.6969696969697, 0.969696969697], 0.99908172635: [0.969696969697, 0.3030303030303, 0.6969696969697, 0.030303030303], 0.24173553719: [0.5909090909091, 0.4090909090909], 0.94605142332: [0.469696969697, 0.8030303030303, 0.1969696969697, 0.530303030303], 0.82300275482: [0.6818181818182, 0.3181818181818], 0.14439853076: [0.6212121212121, 0.7121212121212, 0.2878787878788, 0.3787878787879], 0.50688705234: [0.0909090909091, 0.9090909090909], 0.63292011019: [0.8636363636364, 0.1363636363636], 0.83126721763: [0.0454545454545, 0.9545454545455], 0.96877869605: [0.969696969697, 0.3030303030303, 0.6969696969697, 0.030303030303], 0.48117539027: [0.6060606060606, 0.9393939393939, 0.3939393939394, 0.0606060606061], 0.51515151515: [0.0], 0.7741046832: [0.7272727272727, 0.2727272727273], 0.16919191919: [0.8333333333333, 0.1666666666667], 0.93319559229: [0.2272727272727, 0.7727272727273], 0.60996326905: [0.1060606060606, 0.5606060606061, 0.8939393939394, 0.4393939393939], 0.38131313131: [0.8333333333333, 0.1666666666667], 0.51147842057: [0.6060606060606, 0.9393939393939, 0.3939393939394, 0.0606060606061], 0.3326446281: [0.5909090909091, 0.4090909090909], 0.89370982553: [0.9848484848485, 0.0151515151515, 0.3484848484848, 0.6515151515152], 0.2782369146: [0.4545454545455, 0.5454545454545], 0.43089990817: [0.469696969697, 0.8030303030303, 0.1969696969697, 0.530303030303], 0.04797979798: [0.8333333333333, 0.1666666666667], 0.02961432507: [0.5909090909091, 0.4090909090909], 0.85032139578: [0.4242424242424, 0.2424242424242, 0.5757575757576, 0.7575757575758], 0.9696969697: [0.0], 0.65564738292: [0.3636363636364, 0.6363636363636], 0.58884297521: [0.0454545454545, 0.9545454545455], 0.81473829201: [0.8636363636364, 0.1363636363636], 0.9494949495: [0.6666666666667, 0.3333333333333], 0.70454545455: [0.5], 0.15817263545: [0.469696969697, 0.8030303030303, 0.1969696969697, 0.530303030303], 0.75482093664: [0.1818181818182, 0.8181818181818], 0.5906795225: [0.9848484848485, 0.0151515151515, 0.3484848484848, 0.6515151515152], 0.05716253444: [0.8636363636364, 0.1363636363636], 0.78076216713: [0.6212121212121, 0.7121212121212, 0.2878787878788, 0.3787878787879], 0.13429752066: [0.0454545454545, 0.9545454545455], 0.3085399449: [0.4545454545455, 0.5454545454545], 0.87167125804: [0.6212121212121, 0.7121212121212, 0.2878787878788, 0.3787878787879], 0.51446280992: [0.5909090909091, 0.4090909090909], 0.81726354454: [0.969696969697, 0.3030303030303, 0.6969696969697, 0.030303030303], 0.92837465565: [0.3636363636364, 0.6363636363636], 0.66574839302: [0.969696969697, 0.3030303030303, 0.6969696969697, 0.030303030303], 0.3709825528: [0.1515151515152, 0.4848484848485, 0.8484848484848, 0.5151515151515], 0.15909090909: [0.5], 0.50045913682: [0.1212121212121, 0.2121212121212, 0.7878787878788, 0.8787878787879], 0.56955922865: [0.2272727272727, 0.7727272727273], 0.85330578512: [0.6818181818182, 0.3181818181818], 0.11845730028: [0.1818181818182, 0.8181818181818], 0.3124426079: [0.7424242424242, 0.0757575757576, 0.9242424242424, 0.2575757575758], 0.35537190083: [0.0909090909091, 0.9090909090909], 0.15335169881: [0.7575757575758, 0.2424242424242, 0.5757575757576, 0.4242424242424], 0.95592286501: [0.7272727272727, 0.2727272727273], 0.2580348944: [0.1212121212121, 0.2121212121212, 0.7878787878788, 0.8787878787879], 0.45936639119: [0.6818181818182, 0.3181818181818], 0.92561983471: [0.7272727272727, 0.2727272727273], 0.48209366391: [0.1818181818182, 0.8181818181818], 0.4536271809: [0.3030303030303, 0.030303030303, 0.6969696969697, 0.969696969697], 0.80991735537: [0.0909090909091, 0.9090909090909], 0.17814508724: [0.6060606060606, 0.9393939393939, 0.3939393939394, 0.0606060606061], 0.25895316804: [0.7272727272727, 0.2727272727273], 0.67056932966: [0.1060606060606, 0.5606060606061, 0.8939393939394, 0.4393939393939], 0.45454545455: [0.0], 0.90564738292: [0.8636363636364, 0.1363636363636], 0.98898071625: [0.3636363636364, 0.6363636363636], 0.74494949495: [0.8333333333333, 0.1666666666667], 0.02662993572: [0.6060606060606, 0.9393939393939, 0.3939393939394, 0.0606060606061], 0.55027548209: [0.6818181818182, 0.3181818181818], 0.05693296602: [0.6060606060606, 0.9393939393939, 0.3939393939394, 0.0606060606061], 0.64944903581: [0.0454545454545, 0.9545454545455], 0.55211202939: [0.469696969697, 0.8030303030303, 0.1969696969697, 0.530303030303], 0.24632690542: [0.1060606060606, 0.5606060606061, 0.8939393939394, 0.4393939393939], 0.64646464647: [0.3333333333333, 0.6666666666667], 0.68870523416: [0.0909090909091, 0.9090909090909], 0.10032139578: [0.7424242424242, 0.0757575757576, 0.9242424242424, 0.2575757575758], 0.69329660239: [0.6060606060606, 0.9393939393939, 0.3939393939394, 0.0606060606061], 0.94696969697: [0.5], 0.34090909091: [0.5], 0.14784205693: [0.6060606060606, 0.9393939393939, 0.3939393939394, 0.0606060606061], 0.02203856749: [0.0909090909091, 0.9090909090909], 0.5080348944: [0.6212121212121, 0.7121212121212, 0.2878787878788, 0.3787878787879], 0.08379247016: [0.6212121212121, 0.7121212121212, 0.2878787878788, 0.3787878787879], 0.35261707989: [0.3636363636364, 0.6363636363636], 0.14325068871: [0.0909090909091, 0.9090909090909], 0.43916437098: [0.9848484848485, 0.0151515151515, 0.3484848484848, 0.6515151515152], 0.39049586777: [0.8636363636364, 0.1363636363636], 0.85789715335: [0.7424242424242, 0.0757575757576, 0.9242424242424, 0.2575757575758], 0.94123048669: [0.4242424242424, 0.2424242424242, 0.5757575757576, 0.7575757575758], 0.61363636364: [0.5], 0.16804407714: [0.7272727272727, 0.2727272727273], 0.57483930211: [0.3030303030303, 0.030303030303, 0.6969696969697, 0.969696969697], 0.48875114784: [0.1060606060606, 0.5606060606061, 0.8939393939394, 0.4393939393939], 0.63016528926: [0.2272727272727, 0.7727272727273], 0.53282828283: [0.8333333333333, 0.1666666666667], 0.24150596878: [0.3030303030303, 0.030303030303, 0.6969696969697, 0.969696969697], 0.10858585859: [0.8333333333333, 0.1666666666667], 0.09641873278: [0.4545454545455, 0.5454545454545], 0.10651974288: [0.2121212121212, 0.1212121212121, 0.7878787878788, 0.8787878787879], 0.67401285583: [0.1515151515152, 0.4848484848485, 0.8484848484848, 0.5151515151515], 0.74655647383: [0.3636363636364, 0.6363636363636], 0.2883379247: [0.1212121212121, 0.2121212121212, 0.7878787878788, 0.8787878787879], 0.4839302112: [0.3030303030303, 0.030303030303, 0.6969696969697, 0.969696969697], 0.21763085399: [0.4545454545455, 0.5454545454545], 0.0544077135: [0.2272727272727, 0.7727272727273], 0.09573002755: [0.6818181818182, 0.3181818181818], 0.70638200184: [0.7424242424242, 0.0757575757576, 0.9242424242424, 0.2575757575758], 0.27180899908: [0.3030303030303, 0.030303030303, 0.6969696969697, 0.969696969697], 0.51170798898: [0.8636363636364, 0.1363636363636], 0.23622589532: [0.2272727272727, 0.7727272727273], 0.99380165289: [0.2272727272727, 0.7727272727273], 0.84756657484: [0.969696969697, 0.3030303030303, 0.6969696969697, 0.030303030303], 0.65289256198: [0.7272727272727, 0.2727272727273], 0.0624426079: [0.7575757575758, 0.2424242424242, 0.5757575757576, 0.4242424242424], 0.13888888889: [0.8333333333333, 0.1666666666667], 0.32070707071: [0.8333333333333, 0.1666666666667], 0.27203856749: [0.5909090909091, 0.4090909090909], 0.39393939394: [0.0], 0.94674012856: [0.1515151515152, 0.4848484848485, 0.8484848484848, 0.5151515151515], 0.54201101928: [0.8636363636364, 0.1363636363636], 0.93227731864: [0.6212121212121, 0.7121212121212, 0.2878787878788, 0.3787878787879], 0.46763085399: [0.0454545454545, 0.9545454545455], 0.37029384757: [0.469696969697, 0.8030303030303, 0.1969696969697, 0.530303030303], 0.4132231405: [0.3636363636364, 0.6363636363636], 0.72910927456: [0.4242424242424, 0.2424242424242, 0.5757575757576, 0.7575757575758], 0.69880624426: [0.4242424242424, 0.2424242424242, 0.5757575757576, 0.7575757575758], 0.53443526171: [0.3636363636364, 0.6363636363636], 0.37121212121: [0.5], 0.23140495868: [0.3636363636364, 0.6363636363636], 0.82828282828: [0.6666666666667, 0.3333333333333], 0.36547291093: [0.4242424242424, 0.2424242424242, 0.5757575757576, 0.7575757575758], 0.63360881543: [0.1818181818182, 0.8181818181818], 0.87809917355: [0.5909090909091, 0.4090909090909], 0.20936639119: [0.1818181818182, 0.8181818181818], 0.80555555556: [0.8333333333333, 0.1666666666667], 0.84573002755: [0.1818181818182, 0.8181818181818], 0.91919191919: [0.6666666666667, 0.3333333333333], 0.66597796143: [0.5909090909091, 0.4090909090909], 0.07828282828: [0.8333333333333, 0.1666666666667], 0.56864095501: [0.6212121212121, 0.7121212121212, 0.2878787878788, 0.3787878787879], 0.80716253444: [0.3636363636364, 0.6363636363636], 0.26446280992: [0.0909090909091, 0.9090909090909], 0.12878787879: [0.5], 0.53719008265: [0.0909090909091, 0.9090909090909], 0.25183654729: [0.7424242424242, 0.0757575757576, 0.9242424242424, 0.2575757575758], 0.90633608815: [0.1818181818182, 0.8181818181818], 0.49219467401: [0.1515151515152, 0.4848484848485, 0.8484848484848, 0.5151515151515], 0.87878787879: [0.0], 0.27272727273: [0.0], 0.44742883379: [0.6212121212121, 0.7121212121212, 0.2878787878788, 0.3787878787879], 0.68985307622: [0.6212121212121, 0.7121212121212, 0.2878787878788, 0.3787878787879], 0.39876033058: [0.6818181818182, 0.3181818181818], 0.77318640955: [0.1212121212121, 0.2121212121212, 0.7878787878788, 0.8787878787879], 0.22704315886: [0.9848484848485, 0.0151515151515, 0.3484848484848, 0.6515151515152], 0.03696051423: [0.469696969697, 0.8030303030303, 0.1969696969697, 0.530303030303], 0.78971533517: [0.4242424242424, 0.2424242424242, 0.5757575757576, 0.7575757575758], 0.44834710744: [0.2272727272727, 0.7727272727273], 0.54935720845: [0.1060606060606, 0.5606060606061, 0.8939393939394, 0.4393939393939], 0.35101010101: [0.8333333333333, 0.1666666666667], 0.09848484849: [0.5], 0.82759412305: [0.7424242424242, 0.0757575757576, 0.9242424242424, 0.2575757575758], 0.79269972452: [0.6818181818182, 0.3181818181818], 0.4979338843: [0.0454545454545, 0.9545454545455], 0.46005509642: [0.4545454545455, 0.5454545454545], 0.76515151515: [0.5], 0.91850321396: [0.7424242424242, 0.0757575757576, 0.9242424242424, 0.2575757575758], 0.1230486685: [0.7575757575758, 0.2424242424242, 0.5757575757576, 0.4242424242424], 0.4435261708: [0.3636363636364, 0.6363636363636], 0.59136822773: [0.1212121212121, 0.2121212121212, 0.7878787878788, 0.8787878787879], 0.19742883379: [0.1212121212121, 0.2121212121212, 0.7878787878788, 0.8787878787879], 0.71258034894: [0.1212121212121, 0.2121212121212, 0.7878787878788, 0.8787878787879], 0.93663911846: [0.1818181818182, 0.8181818181818], 0.69421487603: [0.1818181818182, 0.8181818181818], 0.5282369146: [0.0454545454545, 0.9545454545455], 0.83746556474: [0.3636363636364, 0.6363636363636], 0.21602387512: [0.1060606060606, 0.5606060606061, 0.8939393939394, 0.4393939393939], 0.98622589532: [0.7272727272727, 0.2727272727273], 0.23875114784: [0.6060606060606, 0.9393939393939, 0.3939393939394, 0.0606060606061], 0.54476584022: [0.5909090909091, 0.4090909090909], 0.84136822773: [0.6212121212121, 0.7121212121212, 0.2878787878788, 0.3787878787879], 0.53007346189: [0.9848484848485, 0.0151515151515, 0.3484848484848, 0.6515151515152], 0.2803030303: [0.5], 0.77961432507: [0.0909090909091, 0.9090909090909], 0.62809917355: [0.0909090909091, 0.9090909090909], 0.24242424242: [0.0], 0.52249770432: [0.1515151515152, 0.4848484848485, 0.8484848484848, 0.5151515151515], 0.37855831038: [0.9848484848485, 0.0151515151515, 0.3484848484848, 0.6515151515152], 0.45844811754: [0.1060606060606, 0.5606060606061, 0.8939393939394, 0.4393939393939], 0.32988980716: [0.8636363636364, 0.1363636363636], 0.21694214876: [0.6818181818182, 0.3181818181818], 0.13774104683: [0.7272727272727, 0.2727272727273], 0.98461891644: [0.9848484848485, 0.0151515151515, 0.3484848484848, 0.6515151515152], 0.7036271809: [0.469696969697, 0.8030303030303, 0.1969696969697, 0.530303030303], 0.42814508724: [0.1060606060606, 0.5606060606061, 0.8939393939394, 0.4393939393939], 0.83585858586: [0.8333333333333, 0.1666666666667], 0.50895316804: [0.2272727272727, 0.7727272727273], 0.11776859504: [0.8636363636364, 0.1363636363636], 0.28213957759: [0.7424242424242, 0.0757575757576, 0.9242424242424, 0.2575757575758], 0.21120293848: [0.3030303030303, 0.030303030303, 0.6969696969697, 0.969696969697], 0.37373737374: [0.3333333333333, 0.6666666666667], 0.32506887052: [0.0909090909091, 0.9090909090909], 0.55280073462: [0.1515151515152, 0.4848484848485, 0.8484848484848, 0.5151515151515], 0.4777318641: [0.6212121212121, 0.7121212121212, 0.2878787878788, 0.3787878787879], 0.42906336088: [0.6818181818182, 0.3181818181818], 0.4233241506: [0.3030303030303, 0.030303030303, 0.6969696969697, 0.969696969697], 0.18732782369: [0.4545454545455, 0.5454545454545], 0.57208448118: [0.6060606060606, 0.9393939393939, 0.3939393939394, 0.0606060606061], 0.65197428834: [0.1212121212121, 0.2121212121212, 0.7878787878788, 0.8787878787879], 0.58516988062: [0.7424242424242, 0.0757575757576, 0.9242424242424, 0.2575757575758], 0.76147842057: [0.1060606060606, 0.5606060606061, 0.8939393939394, 0.4393939393939], 0.72635445363: [0.969696969697, 0.3030303030303, 0.6969696969697, 0.030303030303], 0.21212121212: [0.0], 0.74288337925: [0.1212121212121, 0.2121212121212, 0.7878787878788, 0.8787878787879], 0.53168044077: [0.7272727272727, 0.2727272727273], 0.68434343434: [0.8333333333333, 0.1666666666667], 0.62924701561: [0.6212121212121, 0.7121212121212, 0.2878787878788, 0.3787878787879], 0.2601010101: [0.8333333333333, 0.1666666666667], 0.82552800735: [0.1515151515152, 0.4848484848485, 0.8484848484848, 0.5151515151515], 0.67424242424: [0.5], 0.75413223141: [0.8636363636364, 0.1363636363636], 0.91666666667: [0.5], 0.40702479339: [0.0454545454545, 0.9545454545455], 0.30968778696: [0.469696969697, 0.8030303030303, 0.1969696969697, 0.530303030303], 0.61340679523: [0.1515151515152, 0.4848484848485, 0.8484848484848, 0.5151515151515], 0.36363636364: [0.0], 0.0404040404: [0.3333333333333, 0.6666666666667], 0.92470156107: [0.1212121212121, 0.2121212121212, 0.7878787878788, 0.8787878787879], 0.99655647383: [0.8636363636364, 0.1363636363636], 0.62167125804: [0.1212121212121, 0.2121212121212, 0.7878787878788, 0.8787878787879], 0.0645087236: [0.1060606060606, 0.5606060606061, 0.8939393939394, 0.4393939393939], 0.31060606061: [0.5], 0.20110192838: [0.3636363636364, 0.6363636363636], 0.70707070707: [0.6666666666667, 0.3333333333333], 0.07621671258: [0.2121212121212, 0.1212121212121, 0.7878787878788, 0.8787878787879], 0.51239669422: [0.1818181818182, 0.8181818181818], 0.40886134068: [0.9848484848485, 0.0151515151515, 0.3484848484848, 0.6515151515152], 0.79178145087: [0.1060606060606, 0.5606060606061, 0.8939393939394, 0.4393939393939], 0.36019283747: [0.8636363636364, 0.1363636363636], 0.1129476584: [0.0909090909091, 0.9090909090909], 0.61157024793: [0.4545454545455, 0.5454545454545], 0.12855831038: [0.1515151515152, 0.4848484848485, 0.8484848484848, 0.5151515151515], 0.6512855831: [0.9848484848485, 0.0151515151515, 0.3484848484848, 0.6515151515152], 0.90541781451: [0.6060606060606, 0.9393939393939, 0.3939393939394, 0.0606060606061], 0.40404040404: [0.3333333333333, 0.6666666666667], 0.84504132231: [0.8636363636364, 0.1363636363636], 0.64393939394: [0.5], 0.28282828283: [0.3333333333333, 0.6666666666667], 0.78512396694: [0.1818181818182, 0.8181818181818], 0.60238751148: [0.6060606060606, 0.9393939393939, 0.3939393939394, 0.0606060606061], 0.95707070707: [0.8333333333333, 0.1666666666667], 0.33815426997: [0.6818181818182, 0.3181818181818], 0.72658402204: [0.5909090909091, 0.4090909090909], 0.70431588613: [0.1515151515152, 0.4848484848485, 0.8484848484848, 0.5151515151515], 0.48484848485: [0.0], 0.19674012856: [0.9848484848485, 0.0151515151515, 0.3484848484848, 0.6515151515152], 0.92401285583: [0.9848484848485, 0.0151515151515, 0.3484848484848, 0.6515151515152], 0.72015610652: [0.6212121212121, 0.7121212121212, 0.2878787878788, 0.3787878787879], 0.14807162534: [0.8636363636364, 0.1363636363636], 0.38774104683: [0.2272727272727, 0.7727272727273], 0.2904040404: [0.8333333333333, 0.1666666666667], 0.22153351699: [0.7424242424242, 0.0757575757576, 0.9242424242424, 0.2575757575758], 0.33333333333: [0.0], 0.43732782369: [0.0454545454545, 0.9545454545455], 0.33999081726: [0.469696969697, 0.8030303030303, 0.1969696969697, 0.530303030303], 0.43158861341: [0.1515151515152, 0.4848484848485, 0.8484848484848, 0.5151515151515], 0.38292011019: [0.3636363636364, 0.6363636363636], 0.16712580349: [0.1212121212121, 0.2121212121212, 0.7878787878788, 0.8787878787879], 0.93870523416: [0.5909090909091, 0.4090909090909], 0.91460055096: [0.4545454545455, 0.5454545454545], 0.0523415978: [0.0909090909091, 0.9090909090909], 0.7238292011: [0.8636363636364, 0.1363636363636], 0.02685950413: [0.8636363636364, 0.1363636363636], 0.75390266299: [0.6060606060606, 0.9393939393939, 0.3939393939394, 0.0606060606061], 0.12029384757: [0.3030303030303, 0.030303030303, 0.6969696969697, 0.969696969697], 0.86501377411: [0.7272727272727, 0.2727272727273], 0.77066115703: [0.0454545454545, 0.9545454545455], 0.19191919192: [0.3333333333333, 0.6666666666667], 0.33516988062: [0.4242424242424, 0.2424242424242, 0.5757575757576, 0.7575757575758], 0.70087235996: [0.1060606060606, 0.5606060606061, 0.8939393939394, 0.4393939393939], 0.08723599633: [0.6060606060606, 0.9393939393939, 0.3939393939394, 0.0606060606061], 0.79545454546: [0.5], 0.55096418733: [0.4545454545455, 0.5454545454545], 0.12052341598: [0.5909090909091, 0.4090909090909], 0.56198347107: [0.7272727272727, 0.2727272727273], 0.64577594123: [0.7424242424242, 0.0757575757576, 0.9242424242424, 0.2575757575758], 0.60537190083: [0.5909090909091, 0.4090909090909], 0.31795224977: [0.9848484848485, 0.0151515151515, 0.3484848484848, 0.6515151515152], 0.26928374656: [0.8636363636364, 0.1363636363636], 0.81198347107: [0.2272727272727, 0.7727272727273], 0.23530762167: [0.6212121212121, 0.7121212121212, 0.2878787878788, 0.3787878787879], 0.81749311295: [0.5909090909091, 0.4090909090909], 0.18663911846: [0.6818181818182, 0.3181818181818], 0.79522497704: [0.1515151515152, 0.4848484848485, 0.8484848484848, 0.5151515151515], 0.90909090909: [0.0], 0.58241505969: [0.469696969697, 0.8030303030303, 0.1969696969697, 0.530303030303], 0.36753902663: [0.1060606060606, 0.5606060606061, 0.8939393939394, 0.4393939393939], 0.21143250689: [0.5909090909091, 0.4090909090909], 0.31313131313: [0.3333333333333, 0.6666666666667], 0.01652892562: [0.7272727272727, 0.2727272727273], 0.68158861341: [0.9848484848485, 0.0151515151515, 0.3484848484848, 0.6515151515152], 0.41712580349: [0.6212121212121, 0.7121212121212, 0.2878787878788, 0.3787878787879], 0.36845730028: [0.6818181818182, 0.3181818181818], 0.11501377411: [0.2272727272727, 0.7727272727273], 0.36271808999: [0.3030303030303, 0.030303030303, 0.6969696969697, 0.969696969697], 0.15702479339: [0.4545454545455, 0.5454545454545], 0.47107438017: [0.7272727272727, 0.2727272727273], 0.53076216713: [0.1212121212121, 0.2121212121212, 0.7878787878788, 0.8787878787879], 0.85238751148: [0.1060606060606, 0.5606060606061, 0.8939393939394, 0.4393939393939], 0.41804407714: [0.2272727272727, 0.7727272727273], 0.63269054178: [0.6060606060606, 0.9393939393939, 0.3939393939394, 0.0606060606061], 0.97635445363: [0.469696969697, 0.8030303030303, 0.1969696969697, 0.530303030303], 0.18181818182: [0.0], 0.8448117539: [0.6060606060606, 0.9393939393939, 0.3939393939394, 0.0606060606061], 0.66046831956: [0.2272727272727, 0.7727272727273], 0.23966942149: [0.1818181818182, 0.8181818181818], 0.56313131313: [0.8333333333333, 0.1666666666667], 0.91391184573: [0.6818181818182, 0.3181818181818], 0.75757575758: [0.0], 0.46189164371: [0.1515151515152, 0.4848484848485, 0.8484848484848, 0.5151515151515], 0.96258034894: [0.6212121212121, 0.7121212121212, 0.2878787878788, 0.3787878787879], 0.89187327824: [0.0454545454545, 0.9545454545455], 0.22520661157: [0.0454545454545, 0.9545454545455], 0.80348943985: [0.1212121212121, 0.2121212121212, 0.7878787878788, 0.8787878787879], 0.87052341598: [0.0909090909091, 0.9090909090909], 0.54453627181: [0.969696969697, 0.3030303030303, 0.6969696969697, 0.030303030303], 0.65840220386: [0.0909090909091, 0.9090909090909], 0.99173553719: [0.0909090909091, 0.9090909090909], 0.12786960514: [0.469696969697, 0.8030303030303, 0.1969696969697, 0.530303030303], 0.80280073462: [0.9848484848485, 0.0151515151515, 0.3484848484848, 0.6515151515152]}
averages_odd={0.0: [0.0], 0.25: [0.5], 0.89439853076: [0.1212121212121, 0.2121212121212, 0.7878787878788, 0.8787878787879], 0.58585858586: [0.3333333333333, 0.6666666666667], 0.49426078972: [0.7424242424242, 0.0757575757576, 0.9242424242424, 0.2575757575758], 0.641184573: [0.6818181818182, 0.3181818181818], 0.34825528007: [0.9848484848485, 0.0151515151515, 0.3484848484848, 0.6515151515152], 0.29958677686: [0.8636363636364, 0.1363636363636], 0.59986225895: [0.2272727272727, 0.7727272727273], 0.391184573: [0.1818181818182, 0.8181818181818], 0.88269054178: [0.1060606060606, 0.5606060606061, 0.8939393939394, 0.4393939393939], 0.74035812672: [0.0454545454545, 0.9545454545455], 0.64302112029: [0.469696969697, 0.8030303030303, 0.1969696969697, 0.530303030303], 0.39784205693: [0.1060606060606, 0.5606060606061, 0.8939393939394, 0.4393939393939], 0.08746556474: [0.8636363636364, 0.1363636363636], 0.86340679523: [0.9848484848485, 0.0151515151515, 0.3484848484848, 0.6515151515152], 0.02754820937: [0.1818181818182, 0.8181818181818], 0.74931129477: [0.0909090909091, 0.9090909090909], 0.34343434343: [0.3333333333333, 0.6666666666667], 0.07369146006: [0.0454545454545, 0.9545454545455], 0.03764921947: [0.1515151515152, 0.4848484848485, 0.8484848484848, 0.5151515151515], 0.52272727273: [0.5], 0.93572084481: [0.6060606060606, 0.9393939393939, 0.3939393939394, 0.0606060606061], 0.85583103765: [0.1515151515152, 0.4848484848485, 0.8484848484848, 0.5151515151515], 0.10743801653: [0.7272727272727, 0.2727272727273], 0.66391184573: [0.1818181818182, 0.8181818181818], 0.09825528007: [0.1515151515152, 0.4848484848485, 0.8484848484848, 0.5151515151515], 0.79338842975: [0.4545454545455, 0.5454545454545], 0.52456382002: [0.7424242424242, 0.0757575757576, 0.9242424242424, 0.2575757575758], 0.0303030303: [0.0], 0.98278236915: [0.0454545454545, 0.9545454545455], 0.10583103765: [0.9848484848485, 0.0151515151515, 0.3484848484848, 0.6515151515152], 0.76308539945: [0.4545454545455, 0.5454545454545], 0.16643709826: [0.9848484848485, 0.0151515151515, 0.3484848484848, 0.6515151515152], 0.42607897153: [0.4242424242424, 0.2424242424242, 0.5757575757576, 0.7575757575758], 0.15886134068: [0.1515151515152, 0.4848484848485, 0.8484848484848, 0.5151515151515], 0.72107438017: [0.2272727272727, 0.7727272727273], 0.04683195592: [0.7272727272727, 0.2727272727273], 0.62373737374: [0.8333333333333, 0.1666666666667], 0.32713498623: [0.2272727272727, 0.7727272727273], 0.99931129477: [0.5909090909091, 0.4090909090909], 0.64370982553: [0.1515151515152, 0.4848484848485, 0.8484848484848, 0.5151515151515], 0.19123048669: [0.7424242424242, 0.0757575757576, 0.9242424242424, 0.2575757575758], 0.98530762167: [0.1212121212121, 0.2121212121212, 0.7878787878788, 0.8787878787879], 0.26905417815: [0.6060606060606, 0.9393939393939, 0.3939393939394, 0.0606060606061], 0.90197428834: [0.6212121212121, 0.7121212121212, 0.2878787878788, 0.3787878787879], 0.37672176309: [0.0454545454545, 0.9545454545455], 0.27938475666: [0.469696969697, 0.8030303030303, 0.1969696969697, 0.530303030303], 0.0927456382: [0.7575757575758, 0.2424242424242, 0.5757575757576, 0.4242424242424], 0.63544536272: [0.969696969697, 0.3030303030303, 0.6969696969697, 0.030303030303], 0.86409550046: [0.1212121212121, 0.2121212121212, 0.7878787878788, 0.8787878787879], 0.32231404959: [0.3636363636364, 0.6363636363636], 0.0342056933: [0.1060606060606, 0.5606060606061, 0.8939393939394, 0.4393939393939], 0.51423324151: [0.3030303030303, 0.030303030303, 0.6969696969697, 0.969696969697], 0.57300275482: [0.1818181818182, 0.8181818181818], 0.66666666667: [0.0], 0.93847566575: [0.969696969697, 0.3030303030303, 0.6969696969697, 0.030303030303], 0.42056932966: [0.6060606060606, 0.9393939393939, 0.3939393939394, 0.0606060606061], 0.54545454546: [0.0], 0.0101010101: [0.3333333333333, 0.6666666666667], 0.27456382002: [0.7575757575758, 0.2424242424242, 0.5757575757576, 0.4242424242424], 0.57966023875: [0.1060606060606, 0.5606060606061, 0.8939393939394, 0.4393939393939], 0.60606060606: [0.0], 0.06542699725: [0.6818181818182, 0.3181818181818], 0.89531680441: [0.7272727272727, 0.2727272727273], 0.00183654729: [0.7575757575758, 0.2424242424242, 0.5757575757576, 0.4242424242424], 0.02938475666: [0.3030303030303, 0.030303030303, 0.6969696969697, 0.969696969697], 0.42148760331: [0.1818181818182, 0.8181818181818], 0.20500459137: [0.6212121212121, 0.7121212121212, 0.2878787878788, 0.3787878787879], 0.15633608815: [0.6818181818182, 0.3181818181818], 0.41597796143: [0.0909090909091, 0.9090909090909], 0.58333333333: [0.5], 0.30693296602: [0.1060606060606, 0.5606060606061, 0.8939393939394, 0.4393939393939], 0.84022038568: [0.0909090909091, 0.9090909090909], 0.2297979798: [0.8333333333333, 0.1666666666667], 0.18112947658: [0.5909090909091, 0.4090909090909], 0.18365472911: [0.7575757575758, 0.2424242424242, 0.5757575757576, 0.4242424242424], 0.42424242424: [0.0], 0.5603764922: [0.9848484848485, 0.0151515151515, 0.3484848484848, 0.6515151515152], 0.15151515152: [0.0], 0.89646464647: [0.8333333333333, 0.1666666666667], 0.35651974288: [0.6212121212121, 0.7121212121212, 0.2878787878788, 0.3787878787879], 0.30785123967: [0.6818181818182, 0.3181818181818], 0.18572084481: [0.1060606060606, 0.5606060606061, 0.8939393939394, 0.4393939393939], 0.77249770432: [0.9848484848485, 0.0151515151515, 0.3484848484848, 0.6515151515152], 0.20592286501: [0.2272727272727, 0.7727272727273], 0.07552800735: [0.9848484848485, 0.0151515151515, 0.3484848484848, 0.6515151515152], 0.12672176309: [0.4545454545455, 0.5454545454545], 0.78168044077: [0.2272727272727, 0.7727272727273], 0.65955004591: [0.6212121212121, 0.7121212121212, 0.2878787878788, 0.3787878787879], 0.35743801653: [0.2272727272727, 0.7727272727273], 0.67607897153: [0.7424242424242, 0.0757575757576, 0.9242424242424, 0.2575757575758], 0.89807162534: [0.3636363636364, 0.6363636363636], 0.90082644628: [0.0909090909091, 0.9090909090909], 0.03787878788: [0.5], 0.95247933884: [0.0454545454545, 0.9545454545455], 0.99724517906: [0.1818181818182, 0.8181818181818], 0.4012855831: [0.1515151515152, 0.4848484848485, 0.8484848484848, 0.5151515151515], 0.00550964187: [0.4545454545455, 0.5454545454545], 0.08815426997: [0.1818181818182, 0.8181818181818], 0.7842056933: [0.6060606060606, 0.9393939393939, 0.3939393939394, 0.0606060606061], 0.60789715335: [0.4242424242424, 0.2424242424242, 0.5757575757576, 0.7575757575758], 0.0241046832: [0.2272727272727, 0.7727272727273], 0.00390266299: [0.1060606060606, 0.5606060606061, 0.8939393939394, 0.4393939393939], 0.01561065197: [0.2121212121212, 0.1212121212121, 0.7878787878788, 0.8787878787879], 0.24977043159: [0.1515151515152, 0.4848484848485, 0.8484848484848, 0.5151515151515], 0.45087235996: [0.6060606060606, 0.9393939393939, 0.3939393939394, 0.0606060606061], 0.68227731864: [0.1212121212121, 0.2121212121212, 0.7878787878788, 0.8787878787879], 0.11019283747: [0.3636363636364, 0.6363636363636], 0.64026629936: [0.1060606060606, 0.5606060606061, 0.8939393939394, 0.4393939393939], 0.29476584022: [0.0909090909091, 0.9090909090909], 0.2196969697: [0.5], 0.79453627181: [0.469696969697, 0.8030303030303, 0.1969696969697, 0.530303030303], 0.00665748393: [0.469696969697, 0.8030303030303, 0.1969696969697, 0.530303030303], 0.90840220386: [0.5909090909091, 0.4090909090909], 0.51997245179: [0.6818181818182, 0.3181818181818], 0.68319559229: [0.7272727272727, 0.2727272727273], 0.74219467401: [0.9848484848485, 0.0151515151515, 0.3484848484848, 0.6515151515152], 0.28764921947: [0.9848484848485, 0.0151515151515, 0.3484848484848, 0.6515151515152], 0.08999081726: [0.3030303030303, 0.030303030303, 0.6969696969697, 0.969696969697], 0.78696051423: [0.969696969697, 0.3030303030303, 0.6969696969697, 0.030303030303], 0.83379247016: [0.1212121212121, 0.2121212121212, 0.7878787878788, 0.8787878787879], 0.68595041322: [0.3636363636364, 0.6363636363636], 0.61914600551: [0.0454545454545, 0.9545454545455], 0.52180899908: [0.469696969697, 0.8030303030303, 0.1969696969697, 0.530303030303], 0.87258953168: [0.2272727272727, 0.7727272727273], 0.33723599633: [0.1060606060606, 0.5606060606061, 0.8939393939394, 0.4393939393939], 0.9797979798: [0.6666666666667, 0.3333333333333], 0.38016528926: [0.7272727272727, 0.2727272727273], 0.76698806244: [0.7424242424242, 0.0757575757576, 0.9242424242424, 0.2575757575758], 0.66299357208: [0.6060606060606, 0.9393939393939, 0.3939393939394, 0.0606060606061], 0.07070707071: [0.3333333333333, 0.6666666666667], 0.48415977961: [0.5909090909091, 0.4090909090909], 0.6209825528: [0.9848484848485, 0.0151515151515, 0.3484848484848, 0.6515151515152], 0.52525252525: [0.3333333333333, 0.6666666666667], 0.38682277319: [0.6212121212121, 0.7121212121212, 0.2878787878788, 0.3787878787879], 0.31955922865: [0.7272727272727, 0.2727272727273], 0.42975206612: [0.4545454545455, 0.5454545454545], 0.49035812672: [0.4545454545455, 0.5454545454545], 0.33241505969: [0.3030303030303, 0.030303030303, 0.6969696969697, 0.969696969697], 0.46395775941: [0.7424242424242, 0.0757575757576, 0.9242424242424, 0.2575757575758], 0.56749311295: [0.0909090909091, 0.9090909090909], 0.87511478421: [0.6060606060606, 0.9393939393939, 0.3939393939394, 0.0606060606061], 0.05991735537: [0.5909090909091, 0.4090909090909], 0.09090909091: [0.0], 0.64187327824: [0.4545454545455, 0.5454545454545], 0.13613406795: [0.9848484848485, 0.0151515151515, 0.3484848484848, 0.6515151515152], 0.01767676768: [0.8333333333333, 0.1666666666667], 0.50252525253: [0.8333333333333, 0.1666666666667], 0.67217630854: [0.4545454545455, 0.5454545454545], 0.39302112029: [0.3030303030303, 0.030303030303, 0.6969696969697, 0.969696969697], 0.84779614325: [0.5909090909091, 0.4090909090909], 0.16092745638: [0.7424242424242, 0.0757575757576, 0.9242424242424, 0.2575757575758], 0.82483930211: [0.469696969697, 0.8030303030303, 0.1969696969697, 0.530303030303], 0.92217630854: [0.0454545454545, 0.9545454545455], 0.31611570248: [0.0454545454545, 0.9545454545455], 0.99288337925: [0.6212121212121, 0.7121212121212, 0.2878787878788, 0.3787878787879], 0.76767676768: [0.3333333333333, 0.6666666666667], 0.58310376492: [0.1515151515152, 0.4848484848485, 0.8484848484848, 0.5151515151515], 0.79729109275: [0.7424242424242, 0.0757575757576, 0.9242424242424, 0.2575757575758], 0.26170798898: [0.3636363636364, 0.6363636363636], 0.4738292011: [0.3636363636364, 0.6363636363636], 0.90817263545: [0.969696969697, 0.3030303030303, 0.6969696969697, 0.030303030303], 0.71349862259: [0.7272727272727, 0.2727272727273], 0.93939393939: [0.0], 0.35996326905: [0.6060606060606, 0.9393939393939, 0.3939393939394, 0.0606060606061], 0.62258953168: [0.7272727272727, 0.2727272727273], 0.13131313131: [0.3333333333333, 0.6666666666667], 0.09022038568: [0.5909090909091, 0.4090909090909], 0.5805785124: [0.6818181818182, 0.3181818181818], 0.91643709826: [0.1515151515152, 0.4848484848485, 0.8484848484848, 0.5151515151515], 0.86616161616: [0.8333333333333, 0.1666666666667], 0.40955004591: [0.1212121212121, 0.2121212121212, 0.7878787878788, 0.8787878787879], 0.3608815427: [0.1818181818182, 0.8181818181818], 0.80096418733: [0.0454545454545, 0.9545454545455], 0.67975206612: [0.0454545454545, 0.9545454545455], 0.96602387512: [0.6060606060606, 0.9393939393939, 0.3939393939394, 0.0606060606061], 0.81106519743: [0.6212121212121, 0.7121212121212, 0.2878787878788, 0.3787878787879], 0.6632231405: [0.8636363636364, 0.1363636363636], 0.41046831956: [0.7272727272727, 0.2727272727273], 0.54729109275: [0.4242424242424, 0.2424242424242, 0.5757575757576, 0.7575757575758], 0.04522497704: [0.9848484848485, 0.0151515151515, 0.3484848484848, 0.6515151515152], 0.12603305785: [0.6818181818182, 0.3181818181818], 0.19490358127: [0.0454545454545, 0.9545454545455], 0.43434343434: [0.3333333333333, 0.6666666666667], 0.84228650138: [0.2272727272727, 0.7727272727273], 0.75137741047: [0.2272727272727, 0.7727272727273], 0.1994949495: [0.8333333333333, 0.1666666666667], 0.69605142332: [0.969696969697, 0.3030303030303, 0.6969696969697, 0.030303030303], 0.30303030303: [0.0], 0.15082644628: [0.5909090909091, 0.4090909090909], 0.38567493113: [0.0909090909091, 0.9090909090909], 0.72727272727: [0.0], 0.29591368228: [0.6212121212121, 0.7121212121212, 0.2878787878788, 0.3787878787879], 0.28007346189: [0.1515151515152, 0.4848484848485, 0.8484848484848, 0.5151515151515], 0.17561983471: [0.2272727272727, 0.7727272727273], 0.91092745638: [0.4242424242424, 0.2424242424242, 0.5757575757576, 0.7575757575758], 0.60514233242: [0.3030303030303, 0.030303030303, 0.6969696969697, 0.969696969697], 0.63567493113: [0.5909090909091, 0.4090909090909], 0.5383379247: [0.6212121212121, 0.7121212121212, 0.2878787878788, 0.3787878787879], 0.29683195592: [0.2272727272727, 0.7727272727273], 0.24908172635: [0.469696969697, 0.8030303030303, 0.1969696969697, 0.530303030303], 0.49242424242: [0.5], 0.8044077135: [0.7272727272727, 0.2727272727273], 0.76423324151: [0.469696969697, 0.8030303030303, 0.1969696969697, 0.530303030303], 0.34641873278: [0.0454545454545, 0.9545454545455], 0.87603305785: [0.1818181818182, 0.8181818181818], 0.3406795225: [0.1515151515152, 0.4848484848485, 0.8484848484848, 0.5151515151515], 0.29201101928: [0.3636363636364, 0.6363636363636], 0.73668503214: [0.7424242424242, 0.0757575757576, 0.9242424242424, 0.2575757575758], 0.30486685032: [0.4242424242424, 0.2424242424242, 0.5757575757576, 0.7575757575758], 0.75688705234: [0.5909090909091, 0.4090909090909], 0.18089990817: [0.3030303030303, 0.030303030303, 0.6969696969697, 0.969696969697], 0.21946740129: [0.1515151515152, 0.4848484848485, 0.8484848484848, 0.5151515151515], 0.09756657484: [0.469696969697, 0.8030303030303, 0.1969696969697, 0.530303030303], 0.17079889807: [0.3636363636364, 0.6363636363636], 0.50413223141: [0.3636363636364, 0.6363636363636], 0.95431588613: [0.9848484848485, 0.0151515151515, 0.3484848484848, 0.6515151515152], 0.51905417815: [0.1060606060606, 0.5606060606061, 0.8939393939394, 0.4393939393939], 0.67676767677: [0.3333333333333, 0.6666666666667], 0.18939393939: [0.5], 0.43985307622: [0.1212121212121, 0.2121212121212, 0.7878787878788, 0.8787878787879], 0.96900826446: [0.5909090909091, 0.4090909090909], 0.75665748393: [0.969696969697, 0.3030303030303, 0.6969696969697, 0.030303030303], 0.75941230487: [0.4242424242424, 0.2424242424242, 0.5757575757576, 0.7575757575758], 0.56473829201: [0.3636363636364, 0.6363636363636], 0.76492194674: [0.1515151515152, 0.4848484848485, 0.8484848484848, 0.5151515151515], 0.27662993572: [0.1060606060606, 0.5606060606061, 0.8939393939394, 0.4393939393939], 0.23898071625: [0.8636363636364, 0.1363636363636], 0.85858585859: [0.6666666666667, 0.3333333333333], 0.54178145087: [0.6060606060606, 0.9393939393939, 0.3939393939394, 0.0606060606061], 0.47222222222: [0.8333333333333, 0.1666666666667], 0.42355371901: [0.5909090909091, 0.4090909090909], 0.03512396694: [0.6818181818182, 0.3181818181818], 0.32621671258: [0.6212121212121, 0.7121212121212, 0.2878787878788, 0.3787878787879], 0.27754820937: [0.6818181818182, 0.3181818181818], 0.45179063361: [0.1818181818182, 0.8181818181818], 0.97727272727: [0.5], 0.36914600551: [0.4545454545455, 0.5454545454545], 0.71625344353: [0.3636363636364, 0.6363636363636], 0.06795224977: [0.1515151515152, 0.4848484848485, 0.8484848484848, 0.5151515151515], 0.79797979798: [0.6666666666667, 0.3333333333333], 0.69628099174: [0.5909090909091, 0.4090909090909], 0.59894398531: [0.6212121212121, 0.7121212121212, 0.2878787878788, 0.3787878787879], 0.01308539945: [0.0454545454545, 0.9545454545455], 0.94880624426: [0.7424242424242, 0.0757575757576, 0.9242424242424, 0.2575757575758], 0.6733241506: [0.469696969697, 0.8030303030303, 0.1969696969697, 0.530303030303], 0.06818181818: [0.5], 0.59504132231: [0.3636363636364, 0.6363636363636], 0.63636363636: [0.0], 0.82369146006: [0.4545454545455, 0.5454545454545], 0.23415977961: [0.0909090909091, 0.9090909090909], 0.60330578512: [0.1818181818182, 0.8181818181818], 0.13062442608: [0.7424242424242, 0.0757575757576, 0.9242424242424, 0.2575757575758], 0.94490358127: [0.4545454545455, 0.5454545454545], 0.86157024793: [0.0454545454545, 0.9545454545455], 0.95867768595: [0.3636363636364, 0.6363636363636], 0.71900826446: [0.0909090909091, 0.9090909090909], 0.15541781451: [0.1060606060606, 0.5606060606061, 0.8939393939394, 0.4393939393939], 0.03213957759: [0.7575757575758, 0.2424242424242, 0.5757575757576, 0.4242424242424], 0.02318640955: [0.6212121212121, 0.7121212121212, 0.2878787878788, 0.3787878787879], 0.05348943985: [0.6212121212121, 0.7121212121212, 0.2878787878788, 0.3787878787879], 0.55303030303: [0.5], 0.81818181818: [0.0], 0.50137741047: [0.7272727272727, 0.2727272727273], 0.65404040404: [0.8333333333333, 0.1666666666667], 0.82208448118: [0.1060606060606, 0.5606060606061, 0.8939393939394, 0.4393939393939], 0.40335169881: [0.7424242424242, 0.0757575757576, 0.9242424242424, 0.2575757575758], 0.0948117539: [0.1060606060606, 0.5606060606061, 0.8939393939394, 0.4393939393939], 0.90289256198: [0.2272727272727, 0.7727272727273], 0.25734618916: [0.9848484848485, 0.0151515151515, 0.3484848484848, 0.6515151515152], 0.34894398531: [0.1212121212121, 0.2121212121212, 0.7878787878788, 0.8787878787879], 0.30027548209: [0.1818181818182, 0.8181818181818], 0.13682277319: [0.1212121212121, 0.2121212121212, 0.7878787878788, 0.8787878787879], 0.0826446281: [0.0909090909091, 0.9090909090909], 0.5585399449: [0.0454545454545, 0.9545454545455], 0.88888888889: [0.6666666666667, 0.3333333333333], 0.2479338843: [0.4545454545455, 0.5454545454545], 0.55555555556: [0.3333333333333, 0.6666666666667], 0.97704315886: [0.1515151515152, 0.4848484848485, 0.8484848484848, 0.5151515151515], 0.34986225895: [0.7272727272727, 0.2727272727273], 0.15059687787: [0.3030303030303, 0.030303030303, 0.6969696969697, 0.969696969697], 0.00941230487: [0.7424242424242, 0.0757575757576, 0.9242424242424, 0.2575757575758], 0.25252525253: [0.3333333333333, 0.6666666666667], 0.60261707989: [0.8636363636364, 0.1363636363636], 0.39944903581: [0.4545454545455, 0.5454545454545], 0.94421487603: [0.6818181818182, 0.3181818181818], 0.73209366391: [0.6818181818182, 0.3181818181818], 0.17355371901: [0.0909090909091, 0.9090909090909], 0.10101010101: [0.3333333333333, 0.6666666666667], 0.88544536272: [0.469696969697, 0.8030303030303, 0.1969696969697, 0.530303030303], 0.70247933884: [0.4545454545455, 0.5454545454545], 0.58126721763: [0.4545454545455, 0.5454545454545], 0.14531680441: [0.2272727272727, 0.7727272727273], 0.7339302112: [0.469696969697, 0.8030303030303, 0.1969696969697, 0.530303030303], 0.75045913682: [0.6212121212121, 0.7121212121212, 0.2878787878788, 0.3787878787879], 0.85514233242: [0.469696969697, 0.8030303030303, 0.1969696969697, 0.530303030303], 0.53925619835: [0.2272727272727, 0.7727272727273], 0.21877869605: [0.469696969697, 0.8030303030303, 0.1969696969697, 0.530303030303], 0.49977043159: [0.9848484848485, 0.0151515151515, 0.3484848484848, 0.6515151515152], 0.87534435262: [0.8636363636364, 0.1363636363636], 0.43181818182: [0.5], 0.01492194674: [0.9848484848485, 0.0151515151515, 0.3484848484848, 0.6515151515152], 0.97910927456: [0.7424242424242, 0.0757575757576, 0.9242424242424, 0.2575757575758], 0.28581267218: [0.0454545454545, 0.9545454545455], 0.74380165289: [0.7272727272727, 0.2727272727273], 0.07001836547: [0.7424242424242, 0.0757575757576, 0.9242424242424, 0.2575757575758], 0.48140495868: [0.8636363636364, 0.1363636363636], 0.61547291093: [0.7424242424242, 0.0757575757576, 0.9242424242424, 0.2575757575758], 0.88820018366: [0.7424242424242, 0.0757575757576, 0.9242424242424, 0.2575757575758], 0.44077134986: [0.7272727272727, 0.2727272727273], 0.85399449036: [0.4545454545455, 0.5454545454545], 0.18916437098: [0.1515151515152, 0.4848484848485, 0.8484848484848, 0.5151515151515], 0.16161616162: [0.3333333333333, 0.6666666666667], 0.32966023875: [0.6060606060606, 0.9393939393939, 0.3939393939394, 0.0606060606061], 0.14049586777: [0.3636363636364, 0.6363636363636], 0.71464646465: [0.8333333333333, 0.1666666666667], 0.43365472911: [0.7424242424242, 0.0757575757576, 0.9242424242424, 0.2575757575758], 0.86776859504: [0.3636363636364, 0.6363636363636], 0.96143250689: [0.0909090909091, 0.9090909090909], 0.47658402204: [0.0909090909091, 0.9090909090909], 0.21395775941: [0.4242424242424, 0.2424242424242, 0.5757575757576, 0.7575757575758], 0.99632690542: [0.6060606060606, 0.9393939393939, 0.3939393939394, 0.0606060606061], 0.83310376492: [0.9848484848485, 0.0151515151515, 0.3484848484848, 0.6515151515152], 0.37924701561: [0.1212121212121, 0.2121212121212, 0.7878787878788, 0.8787878787879], 0.96349862259: [0.2272727272727, 0.7727272727273], 0.3305785124: [0.1818181818182, 0.8181818181818], 0.70179063361: [0.6818181818182, 0.3181818181818], 0.05968778696: [0.3030303030303, 0.030303030303, 0.6969696969697, 0.969696969697], 0.63820018366: [0.4242424242424, 0.2424242424242, 0.5757575757576, 0.7575757575758], 0.19834710744: [0.7272727272727, 0.2727272727273], 0.88636363636: [0.5], 0.6935261708: [0.8636363636364, 0.1363636363636], 0.66850321396: [0.4242424242424, 0.2424242424242, 0.5757575757576, 0.7575757575758], 0.03581267218: [0.4545454545455, 0.5454545454545], 0.20867768595: [0.8636363636364, 0.1363636363636], 0.76239669422: [0.6818181818182, 0.3181818181818], 0.73737373737: [0.3333333333333, 0.6666666666667], 0.72359963269: [0.6060606060606, 0.9393939393939, 0.3939393939394, 0.0606060606061], 0.41161616162: [0.8333333333333, 0.1666666666667], 0.73484848485: [0.5], 0.3629476584: [0.5909090909091, 0.4090909090909], 0.26561065197: [0.6212121212121, 0.7121212121212, 0.2878787878788, 0.3787878787879], 0.00734618916: [0.1515151515152, 0.4848484848485, 0.8484848484848, 0.5151515151515], 0.84848484849: [0.0], 0.07713498623: [0.7272727272727, 0.2727272727273], 0.01928374656: [0.3636363636364, 0.6363636363636], 0.11753902663: [0.6060606060606, 0.9393939393939, 0.3939393939394, 0.0606060606061], 0.46120293848: [0.469696969697, 0.8030303030303, 0.1969696969697, 0.530303030303], 0.57506887052: [0.5909090909091, 0.4090909090909], 0.8347107438: [0.7272727272727, 0.2727272727273], 0.2277318641: [0.1212121212121, 0.2121212121212, 0.7878787878788, 0.8787878787879], 0.26652892562: [0.2272727272727, 0.7727272727273], 0.17906336088: [0.1818181818182, 0.8181818181818], 0.92676767677: [0.8333333333333, 0.1666666666667], 0.98737373737: [0.8333333333333, 0.1666666666667], 0.46212121212: [0.5], 0.11409550046: [0.6212121212121, 0.7121212121212, 0.2878787878788, 0.3787878787879], 0.20385674931: [0.0909090909091, 0.9090909090909], 0.48668503214: [0.4242424242424, 0.2424242424242, 0.5757575757576, 0.7575757575758], 0.3103764922: [0.1515151515152, 0.4848484848485, 0.8484848484848, 0.5151515151515], 0.78443526171: [0.8636363636364, 0.1363636363636], 0.22865013774: [0.7272727272727, 0.2727272727273], 0.54269972452: [0.1818181818182, 0.8181818181818], 0.59779614325: [0.0909090909091, 0.9090909090909], 0.12511478421: [0.1060606060606, 0.5606060606061, 0.8939393939394, 0.4393939393939], 0.88429752066: [0.4545454545455, 0.5454545454545], 0.24724517906: [0.6818181818182, 0.3181818181818], 0.81542699725: [0.1818181818182, 0.8181818181818], 0.69696969697: [0.0], 0.39026629936: [0.6060606060606, 0.9393939393939, 0.3939393939394, 0.0606060606061], 0.3427456382: [0.7424242424242, 0.0757575757576, 0.9242424242424, 0.2575757575758], 0.82575757576: [0.5], 0.91574839302: [0.469696969697, 0.8030303030303, 0.1969696969697, 0.530303030303], 0.17470156107: [0.6212121212121, 0.7121212121212, 0.2878787878788, 0.3787878787879], 0.48966942149: [0.6818181818182, 0.3181818181818], 0.59228650138: [0.7272727272727, 0.2727272727273], 0.05785123967: [0.1818181818182, 0.8181818181818], 0.82001836547: [0.4242424242424, 0.2424242424242, 0.5757575757576, 0.7575757575758], 0.28925619835: [0.7272727272727, 0.2727272727273], 0.85606060606: [0.5], 0.73117539027: [0.1060606060606, 0.5606060606061, 0.8939393939394, 0.4393939393939], 0.44191919192: [0.8333333333333, 0.1666666666667], 0.39325068871: [0.5909090909091, 0.4090909090909], 0.12121212121: [0.0], 0.06060606061: [0.0], 0.00757575758: [0.5], 0.06611570248: [0.4545454545455, 0.5454545454545], 0.0847107438: [0.2272727272727, 0.7727272727273], 0.33884297521: [0.4545454545455, 0.5454545454545], 0.6108815427: [0.6818181818182, 0.3181818181818], 0.49150596878: [0.469696969697, 0.8030303030303, 0.1969696969697, 0.530303030303], 0.00482093664: [0.6818181818182, 0.3181818181818], 0.62534435262: [0.3636363636364, 0.6363636363636], 0.97153351699: [0.4242424242424, 0.2424242424242, 0.5757575757576, 0.7575757575758], 0.77685950413: [0.3636363636364, 0.6363636363636], 0.71005509642: [0.0454545454545, 0.9545454545455], 0.88360881543: [0.6818181818182, 0.3181818181818], 0.61271808999: [0.469696969697, 0.8030303030303, 0.1969696969697, 0.530303030303], 0.77525252525: [0.8333333333333, 0.1666666666667], 0.97520661157: [0.4545454545455, 0.5454545454545], 0.18847566575: [0.469696969697, 0.8030303030303, 0.1969696969697, 0.530303030303], 0.71189164371: [0.9848484848485, 0.0151515151515, 0.3484848484848, 0.6515151515152], 0.95500459137: [0.1212121212121, 0.2121212121212, 0.7878787878788, 0.8787878787879], 0.87786960514: [0.969696969697, 0.3030303030303, 0.6969696969697, 0.030303030303], 0.88613406795: [0.1515151515152, 0.4848484848485, 0.8484848484848, 0.5151515151515], 0.16460055096: [0.0454545454545, 0.9545454545455], 0.46946740129: [0.9848484848485, 0.0151515151515, 0.3484848484848, 0.6515151515152], 0.56106519743: [0.1212121212121, 0.2121212121212, 0.7878787878788, 0.8787878787879], 0.42079889807: [0.8636363636364, 0.1363636363636], 0.73278236915: [0.4545454545455, 0.5454545454545], 0.97359963269: [0.1060606060606, 0.5606060606061, 0.8939393939394, 0.4393939393939], 0.03971533517: [0.7424242424242, 0.0757575757576, 0.9242424242424, 0.2575757575758], 0.06726354454: [0.469696969697, 0.8030303030303, 0.1969696969697, 0.530303030303], 0.69077134986: [0.2272727272727, 0.7727272727273], 0.59343434343: [0.8333333333333, 0.1666666666667], 0.57759412305: [0.4242424242424, 0.2424242424242, 0.5757575757576, 0.7575757575758], 0.3730486685: [0.7424242424242, 0.0757575757576, 0.9242424242424, 0.2575757575758], 0.46464646465: [0.3333333333333, 0.6666666666667], 0.8145087236: [0.6060606060606, 0.9393939393939, 0.3939393939394, 0.0606060606061], 0.10399449036: [0.0454545454545, 0.9545454545455], 0.04591368228: [0.1212121212121, 0.2121212121212, 0.7878787878788, 0.8787878787879], 0.31864095501: [0.1212121212121, 0.2121212121212, 0.7878787878788, 0.8787878787879], 0.78719008265: [0.5909090909091, 0.4090909090909], 0.26997245179: [0.1818181818182, 0.8181818181818], 0.73461891644: [0.1515151515152, 0.4848484848485, 0.8484848484848, 0.5151515151515], 0.93112947658: [0.0909090909091, 0.9090909090909], 0.20844811754: [0.6060606060606, 0.9393939393939, 0.3939393939394, 0.0606060606061], 0.93595041322: [0.8636363636364, 0.1363636363636], 0.51698806244: [0.4242424242424, 0.2424242424242, 0.5757575757576, 0.7575757575758], 0.07988980716: [0.3636363636364, 0.6363636363636], 0.57231404959: [0.8636363636364, 0.1363636363636], 0.72451790634: [0.1818181818182, 0.8181818181818], 0.17837465565: [0.8636363636364, 0.1363636363636], 0.96694214876: [0.1818181818182, 0.8181818181818], 0.61616161616: [0.3333333333333, 0.6666666666667], 0.67148760331: [0.6818181818182, 0.3181818181818], 0.96625344353: [0.8636363636364, 0.1363636363636], 0.3023415978: [0.5909090909091, 0.4090909090909], 0.45385674931: [0.5909090909091, 0.4090909090909], 0.52066115703: [0.4545454545455, 0.5454545454545], 0.40059687787: [0.469696969697, 0.8030303030303, 0.1969696969697, 0.530303030303], 0.24426078972: [0.7575757575758, 0.2424242424242, 0.5757575757576, 0.4242424242424], 0.14876033058: [0.1818181818182, 0.8181818181818], 0.91299357208: [0.1060606060606, 0.5606060606061, 0.8939393939394, 0.4393939393939], 0.40151515152: [0.5], 0.22222222222: [0.3333333333333, 0.6666666666667], 0.25550964187: [0.0454545454545, 0.9545454545455], 0.39577594123: [0.4242424242424, 0.2424242424242, 0.5757575757576, 0.7575757575758], 0.04338842975: [0.0454545454545, 0.9545454545455], 0.47865013774: [0.2272727272727, 0.7727272727273], 0.97451790634: [0.6818181818182, 0.3181818181818], 0.45110192838: [0.8636363636364, 0.1363636363636], 0.78787878788: [0.0], 0.55486685032: [0.7424242424242, 0.0757575757576, 0.9242424242424, 0.2575757575758], 0.94329660239: [0.1060606060606, 0.5606060606061, 0.8939393939394, 0.4393939393939], 0.04958677686: [0.3636363636364, 0.6363636363636], 0.45638200184: [0.4242424242424, 0.2424242424242, 0.5757575757576, 0.7575757575758], 0.29935720845: [0.6060606060606, 0.9393939393939, 0.3939393939394, 0.0606060606061], 0.47015610652: [0.1212121212121, 0.2121212121212, 0.7878787878788, 0.8787878787879], 0.49494949495: [0.3333333333333, 0.6666666666667], 0.44628099174: [0.0909090909091, 0.9090909090909], 0.88062442608: [0.4242424242424, 0.2424242424242, 0.5757575757576, 0.7575757575758], 0.57575757576: [0.0], 0.30211202939: [0.3030303030303, 0.030303030303, 0.6969696969697, 0.969696969697], 0.99908172635: [0.969696969697, 0.3030303030303, 0.6969696969697, 0.030303030303], 0.24173553719: [0.5909090909091, 0.4090909090909], 0.94605142332: [0.469696969697, 0.8030303030303, 0.1969696969697, 0.530303030303], 0.82300275482: [0.6818181818182, 0.3181818181818], 0.14439853076: [0.6212121212121, 0.7121212121212, 0.2878787878788, 0.3787878787879], 0.50688705234: [0.0909090909091, 0.9090909090909], 0.63292011019: [0.8636363636364, 0.1363636363636], 0.83126721763: [0.0454545454545, 0.9545454545455], 0.96877869605: [0.969696969697, 0.3030303030303, 0.6969696969697, 0.030303030303], 0.48117539027: [0.6060606060606, 0.9393939393939, 0.3939393939394, 0.0606060606061], 0.51515151515: [0.0], 0.7741046832: [0.7272727272727, 0.2727272727273], 0.16919191919: [0.8333333333333, 0.1666666666667], 0.93319559229: [0.2272727272727, 0.7727272727273], 0.60996326905: [0.1060606060606, 0.5606060606061, 0.8939393939394, 0.4393939393939], 0.38131313131: [0.8333333333333, 0.1666666666667], 0.51147842057: [0.6060606060606, 0.9393939393939, 0.3939393939394, 0.0606060606061], 0.3326446281: [0.5909090909091, 0.4090909090909], 0.89370982553: [0.9848484848485, 0.0151515151515, 0.3484848484848, 0.6515151515152], 0.2782369146: [0.4545454545455, 0.5454545454545], 0.43089990817: [0.469696969697, 0.8030303030303, 0.1969696969697, 0.530303030303], 0.04797979798: [0.8333333333333, 0.1666666666667], 0.02961432507: [0.5909090909091, 0.4090909090909], 0.85032139578: [0.4242424242424, 0.2424242424242, 0.5757575757576, 0.7575757575758], 0.9696969697: [0.0], 0.65564738292: [0.3636363636364, 0.6363636363636], 0.58884297521: [0.0454545454545, 0.9545454545455], 0.81473829201: [0.8636363636364, 0.1363636363636], 0.9494949495: [0.6666666666667, 0.3333333333333], 0.70454545455: [0.5], 0.15817263545: [0.469696969697, 0.8030303030303, 0.1969696969697, 0.530303030303], 0.75482093664: [0.1818181818182, 0.8181818181818], 0.5906795225: [0.9848484848485, 0.0151515151515, 0.3484848484848, 0.6515151515152], 0.05716253444: [0.8636363636364, 0.1363636363636], 0.78076216713: [0.6212121212121, 0.7121212121212, 0.2878787878788, 0.3787878787879], 0.13429752066: [0.0454545454545, 0.9545454545455], 0.3085399449: [0.4545454545455, 0.5454545454545], 0.87167125804: [0.6212121212121, 0.7121212121212, 0.2878787878788, 0.3787878787879], 0.51446280992: [0.5909090909091, 0.4090909090909], 0.81726354454: [0.969696969697, 0.3030303030303, 0.6969696969697, 0.030303030303], 0.92837465565: [0.3636363636364, 0.6363636363636], 0.66574839302: [0.969696969697, 0.3030303030303, 0.6969696969697, 0.030303030303], 0.3709825528: [0.1515151515152, 0.4848484848485, 0.8484848484848, 0.5151515151515], 0.15909090909: [0.5], 0.50045913682: [0.1212121212121, 0.2121212121212, 0.7878787878788, 0.8787878787879], 0.56955922865: [0.2272727272727, 0.7727272727273], 0.85330578512: [0.6818181818182, 0.3181818181818], 0.11845730028: [0.1818181818182, 0.8181818181818], 0.3124426079: [0.7424242424242, 0.0757575757576, 0.9242424242424, 0.2575757575758], 0.35537190083: [0.0909090909091, 0.9090909090909], 0.15335169881: [0.7575757575758, 0.2424242424242, 0.5757575757576, 0.4242424242424], 0.95592286501: [0.7272727272727, 0.2727272727273], 0.2580348944: [0.1212121212121, 0.2121212121212, 0.7878787878788, 0.8787878787879], 0.45936639119: [0.6818181818182, 0.3181818181818], 0.92561983471: [0.7272727272727, 0.2727272727273], 0.48209366391: [0.1818181818182, 0.8181818181818], 0.4536271809: [0.3030303030303, 0.030303030303, 0.6969696969697, 0.969696969697], 0.80991735537: [0.0909090909091, 0.9090909090909], 0.17814508724: [0.6060606060606, 0.9393939393939, 0.3939393939394, 0.0606060606061], 0.25895316804: [0.7272727272727, 0.2727272727273], 0.67056932966: [0.1060606060606, 0.5606060606061, 0.8939393939394, 0.4393939393939], 0.45454545455: [0.0], 0.90564738292: [0.8636363636364, 0.1363636363636], 0.98898071625: [0.3636363636364, 0.6363636363636], 0.74494949495: [0.8333333333333, 0.1666666666667], 0.02662993572: [0.6060606060606, 0.9393939393939, 0.3939393939394, 0.0606060606061], 0.55027548209: [0.6818181818182, 0.3181818181818], 0.05693296602: [0.6060606060606, 0.9393939393939, 0.3939393939394, 0.0606060606061], 0.64944903581: [0.0454545454545, 0.9545454545455], 0.55211202939: [0.469696969697, 0.8030303030303, 0.1969696969697, 0.530303030303], 0.24632690542: [0.1060606060606, 0.5606060606061, 0.8939393939394, 0.4393939393939], 0.64646464647: [0.3333333333333, 0.6666666666667], 0.68870523416: [0.0909090909091, 0.9090909090909], 0.10032139578: [0.7424242424242, 0.0757575757576, 0.9242424242424, 0.2575757575758], 0.69329660239: [0.6060606060606, 0.9393939393939, 0.3939393939394, 0.0606060606061], 0.94696969697: [0.5], 0.34090909091: [0.5], 0.14784205693: [0.6060606060606, 0.9393939393939, 0.3939393939394, 0.0606060606061], 0.02203856749: [0.0909090909091, 0.9090909090909], 0.5080348944: [0.6212121212121, 0.7121212121212, 0.2878787878788, 0.3787878787879], 0.08379247016: [0.6212121212121, 0.7121212121212, 0.2878787878788, 0.3787878787879], 0.35261707989: [0.3636363636364, 0.6363636363636], 0.14325068871: [0.0909090909091, 0.9090909090909], 0.43916437098: [0.9848484848485, 0.0151515151515, 0.3484848484848, 0.6515151515152], 0.39049586777: [0.8636363636364, 0.1363636363636], 0.85789715335: [0.7424242424242, 0.0757575757576, 0.9242424242424, 0.2575757575758], 0.94123048669: [0.4242424242424, 0.2424242424242, 0.5757575757576, 0.7575757575758], 0.61363636364: [0.5], 0.16804407714: [0.7272727272727, 0.2727272727273], 0.57483930211: [0.3030303030303, 0.030303030303, 0.6969696969697, 0.969696969697], 0.48875114784: [0.1060606060606, 0.5606060606061, 0.8939393939394, 0.4393939393939], 0.63016528926: [0.2272727272727, 0.7727272727273], 0.53282828283: [0.8333333333333, 0.1666666666667], 0.24150596878: [0.3030303030303, 0.030303030303, 0.6969696969697, 0.969696969697], 0.10858585859: [0.8333333333333, 0.1666666666667], 0.09641873278: [0.4545454545455, 0.5454545454545], 0.10651974288: [0.2121212121212, 0.1212121212121, 0.7878787878788, 0.8787878787879], 0.67401285583: [0.1515151515152, 0.4848484848485, 0.8484848484848, 0.5151515151515], 0.74655647383: [0.3636363636364, 0.6363636363636], 0.2883379247: [0.1212121212121, 0.2121212121212, 0.7878787878788, 0.8787878787879], 0.4839302112: [0.3030303030303, 0.030303030303, 0.6969696969697, 0.969696969697], 0.21763085399: [0.4545454545455, 0.5454545454545], 0.0544077135: [0.2272727272727, 0.7727272727273], 0.09573002755: [0.6818181818182, 0.3181818181818], 0.70638200184: [0.7424242424242, 0.0757575757576, 0.9242424242424, 0.2575757575758], 0.27180899908: [0.3030303030303, 0.030303030303, 0.6969696969697, 0.969696969697], 0.51170798898: [0.8636363636364, 0.1363636363636], 0.23622589532: [0.2272727272727, 0.7727272727273], 0.99380165289: [0.2272727272727, 0.7727272727273], 0.84756657484: [0.969696969697, 0.3030303030303, 0.6969696969697, 0.030303030303], 0.65289256198: [0.7272727272727, 0.2727272727273], 0.0624426079: [0.7575757575758, 0.2424242424242, 0.5757575757576, 0.4242424242424], 0.13888888889: [0.8333333333333, 0.1666666666667], 0.32070707071: [0.8333333333333, 0.1666666666667], 0.27203856749: [0.5909090909091, 0.4090909090909], 0.39393939394: [0.0], 0.94674012856: [0.1515151515152, 0.4848484848485, 0.8484848484848, 0.5151515151515], 0.54201101928: [0.8636363636364, 0.1363636363636], 0.93227731864: [0.6212121212121, 0.7121212121212, 0.2878787878788, 0.3787878787879], 0.46763085399: [0.0454545454545, 0.9545454545455], 0.37029384757: [0.469696969697, 0.8030303030303, 0.1969696969697, 0.530303030303], 0.4132231405: [0.3636363636364, 0.6363636363636], 0.72910927456: [0.4242424242424, 0.2424242424242, 0.5757575757576, 0.7575757575758], 0.69880624426: [0.4242424242424, 0.2424242424242, 0.5757575757576, 0.7575757575758], 0.53443526171: [0.3636363636364, 0.6363636363636], 0.37121212121: [0.5], 0.23140495868: [0.3636363636364, 0.6363636363636], 0.82828282828: [0.6666666666667, 0.3333333333333], 0.36547291093: [0.4242424242424, 0.2424242424242, 0.5757575757576, 0.7575757575758], 0.63360881543: [0.1818181818182, 0.8181818181818], 0.87809917355: [0.5909090909091, 0.4090909090909], 0.20936639119: [0.1818181818182, 0.8181818181818], 0.80555555556: [0.8333333333333, 0.1666666666667], 0.84573002755: [0.1818181818182, 0.8181818181818], 0.91919191919: [0.6666666666667, 0.3333333333333], 0.66597796143: [0.5909090909091, 0.4090909090909], 0.07828282828: [0.8333333333333, 0.1666666666667], 0.56864095501: [0.6212121212121, 0.7121212121212, 0.2878787878788, 0.3787878787879], 0.80716253444: [0.3636363636364, 0.6363636363636], 0.26446280992: [0.0909090909091, 0.9090909090909], 0.12878787879: [0.5], 0.53719008265: [0.0909090909091, 0.9090909090909], 0.25183654729: [0.7424242424242, 0.0757575757576, 0.9242424242424, 0.2575757575758], 0.90633608815: [0.1818181818182, 0.8181818181818], 0.49219467401: [0.1515151515152, 0.4848484848485, 0.8484848484848, 0.5151515151515], 0.87878787879: [0.0], 0.27272727273: [0.0], 0.44742883379: [0.6212121212121, 0.7121212121212, 0.2878787878788, 0.3787878787879], 0.68985307622: [0.6212121212121, 0.7121212121212, 0.2878787878788, 0.3787878787879], 0.39876033058: [0.6818181818182, 0.3181818181818], 0.77318640955: [0.1212121212121, 0.2121212121212, 0.7878787878788, 0.8787878787879], 0.22704315886: [0.9848484848485, 0.0151515151515, 0.3484848484848, 0.6515151515152], 0.03696051423: [0.469696969697, 0.8030303030303, 0.1969696969697, 0.530303030303], 0.78971533517: [0.4242424242424, 0.2424242424242, 0.5757575757576, 0.7575757575758], 0.44834710744: [0.2272727272727, 0.7727272727273], 0.54935720845: [0.1060606060606, 0.5606060606061, 0.8939393939394, 0.4393939393939], 0.35101010101: [0.8333333333333, 0.1666666666667], 0.09848484849: [0.5], 0.82759412305: [0.7424242424242, 0.0757575757576, 0.9242424242424, 0.2575757575758], 0.79269972452: [0.6818181818182, 0.3181818181818], 0.4979338843: [0.0454545454545, 0.9545454545455], 0.46005509642: [0.4545454545455, 0.5454545454545], 0.76515151515: [0.5], 0.91850321396: [0.7424242424242, 0.0757575757576, 0.9242424242424, 0.2575757575758], 0.1230486685: [0.7575757575758, 0.2424242424242, 0.5757575757576, 0.4242424242424], 0.4435261708: [0.3636363636364, 0.6363636363636], 0.59136822773: [0.1212121212121, 0.2121212121212, 0.7878787878788, 0.8787878787879], 0.19742883379: [0.1212121212121, 0.2121212121212, 0.7878787878788, 0.8787878787879], 0.71258034894: [0.1212121212121, 0.2121212121212, 0.7878787878788, 0.8787878787879], 0.93663911846: [0.1818181818182, 0.8181818181818], 0.69421487603: [0.1818181818182, 0.8181818181818], 0.5282369146: [0.0454545454545, 0.9545454545455], 0.83746556474: [0.3636363636364, 0.6363636363636], 0.21602387512: [0.1060606060606, 0.5606060606061, 0.8939393939394, 0.4393939393939], 0.98622589532: [0.7272727272727, 0.2727272727273], 0.23875114784: [0.6060606060606, 0.9393939393939, 0.3939393939394, 0.0606060606061], 0.54476584022: [0.5909090909091, 0.4090909090909], 0.84136822773: [0.6212121212121, 0.7121212121212, 0.2878787878788, 0.3787878787879], 0.53007346189: [0.9848484848485, 0.0151515151515, 0.3484848484848, 0.6515151515152], 0.2803030303: [0.5], 0.77961432507: [0.0909090909091, 0.9090909090909], 0.62809917355: [0.0909090909091, 0.9090909090909], 0.24242424242: [0.0], 0.52249770432: [0.1515151515152, 0.4848484848485, 0.8484848484848, 0.5151515151515], 0.37855831038: [0.9848484848485, 0.0151515151515, 0.3484848484848, 0.6515151515152], 0.45844811754: [0.1060606060606, 0.5606060606061, 0.8939393939394, 0.4393939393939], 0.32988980716: [0.8636363636364, 0.1363636363636], 0.21694214876: [0.6818181818182, 0.3181818181818], 0.13774104683: [0.7272727272727, 0.2727272727273], 0.98461891644: [0.9848484848485, 0.0151515151515, 0.3484848484848, 0.6515151515152], 0.7036271809: [0.469696969697, 0.8030303030303, 0.1969696969697, 0.530303030303], 0.42814508724: [0.1060606060606, 0.5606060606061, 0.8939393939394, 0.4393939393939], 0.83585858586: [0.8333333333333, 0.1666666666667], 0.50895316804: [0.2272727272727, 0.7727272727273], 0.11776859504: [0.8636363636364, 0.1363636363636], 0.28213957759: [0.7424242424242, 0.0757575757576, 0.9242424242424, 0.2575757575758], 0.21120293848: [0.3030303030303, 0.030303030303, 0.6969696969697, 0.969696969697], 0.37373737374: [0.3333333333333, 0.6666666666667], 0.32506887052: [0.0909090909091, 0.9090909090909], 0.55280073462: [0.1515151515152, 0.4848484848485, 0.8484848484848, 0.5151515151515], 0.4777318641: [0.6212121212121, 0.7121212121212, 0.2878787878788, 0.3787878787879], 0.42906336088: [0.6818181818182, 0.3181818181818], 0.4233241506: [0.3030303030303, 0.030303030303, 0.6969696969697, 0.969696969697], 0.18732782369: [0.4545454545455, 0.5454545454545], 0.57208448118: [0.6060606060606, 0.9393939393939, 0.3939393939394, 0.0606060606061], 0.65197428834: [0.1212121212121, 0.2121212121212, 0.7878787878788, 0.8787878787879], 0.58516988062: [0.7424242424242, 0.0757575757576, 0.9242424242424, 0.2575757575758], 0.76147842057: [0.1060606060606, 0.5606060606061, 0.8939393939394, 0.4393939393939], 0.72635445363: [0.969696969697, 0.3030303030303, 0.6969696969697, 0.030303030303], 0.21212121212: [0.0], 0.74288337925: [0.1212121212121, 0.2121212121212, 0.7878787878788, 0.8787878787879], 0.53168044077: [0.7272727272727, 0.2727272727273], 0.68434343434: [0.8333333333333, 0.1666666666667], 0.62924701561: [0.6212121212121, 0.7121212121212, 0.2878787878788, 0.3787878787879], 0.2601010101: [0.8333333333333, 0.1666666666667], 0.82552800735: [0.1515151515152, 0.4848484848485, 0.8484848484848, 0.5151515151515], 0.67424242424: [0.5], 0.75413223141: [0.8636363636364, 0.1363636363636], 0.91666666667: [0.5], 0.40702479339: [0.0454545454545, 0.9545454545455], 0.30968778696: [0.469696969697, 0.8030303030303, 0.1969696969697, 0.530303030303], 0.61340679523: [0.1515151515152, 0.4848484848485, 0.8484848484848, 0.5151515151515], 0.36363636364: [0.0], 0.0404040404: [0.3333333333333, 0.6666666666667], 0.92470156107: [0.1212121212121, 0.2121212121212, 0.7878787878788, 0.8787878787879], 0.99655647383: [0.8636363636364, 0.1363636363636], 0.62167125804: [0.1212121212121, 0.2121212121212, 0.7878787878788, 0.8787878787879], 0.0645087236: [0.1060606060606, 0.5606060606061, 0.8939393939394, 0.4393939393939], 0.31060606061: [0.5], 0.20110192838: [0.3636363636364, 0.6363636363636], 0.70707070707: [0.6666666666667, 0.3333333333333], 0.07621671258: [0.2121212121212, 0.1212121212121, 0.7878787878788, 0.8787878787879], 0.51239669422: [0.1818181818182, 0.8181818181818], 0.40886134068: [0.9848484848485, 0.0151515151515, 0.3484848484848, 0.6515151515152], 0.79178145087: [0.1060606060606, 0.5606060606061, 0.8939393939394, 0.4393939393939], 0.36019283747: [0.8636363636364, 0.1363636363636], 0.1129476584: [0.0909090909091, 0.9090909090909], 0.61157024793: [0.4545454545455, 0.5454545454545], 0.12855831038: [0.1515151515152, 0.4848484848485, 0.8484848484848, 0.5151515151515], 0.6512855831: [0.9848484848485, 0.0151515151515, 0.3484848484848, 0.6515151515152], 0.90541781451: [0.6060606060606, 0.9393939393939, 0.3939393939394, 0.0606060606061], 0.40404040404: [0.3333333333333, 0.6666666666667], 0.84504132231: [0.8636363636364, 0.1363636363636], 0.64393939394: [0.5], 0.28282828283: [0.3333333333333, 0.6666666666667], 0.78512396694: [0.1818181818182, 0.8181818181818], 0.60238751148: [0.6060606060606, 0.9393939393939, 0.3939393939394, 0.0606060606061], 0.95707070707: [0.8333333333333, 0.1666666666667], 0.33815426997: [0.6818181818182, 0.3181818181818], 0.72658402204: [0.5909090909091, 0.4090909090909], 0.70431588613: [0.1515151515152, 0.4848484848485, 0.8484848484848, 0.5151515151515], 0.48484848485: [0.0], 0.19674012856: [0.9848484848485, 0.0151515151515, 0.3484848484848, 0.6515151515152], 0.92401285583: [0.9848484848485, 0.0151515151515, 0.3484848484848, 0.6515151515152], 0.72015610652: [0.6212121212121, 0.7121212121212, 0.2878787878788, 0.3787878787879], 0.14807162534: [0.8636363636364, 0.1363636363636], 0.38774104683: [0.2272727272727, 0.7727272727273], 0.2904040404: [0.8333333333333, 0.1666666666667], 0.22153351699: [0.7424242424242, 0.0757575757576, 0.9242424242424, 0.2575757575758], 0.33333333333: [0.0], 0.43732782369: [0.0454545454545, 0.9545454545455], 0.33999081726: [0.469696969697, 0.8030303030303, 0.1969696969697, 0.530303030303], 0.43158861341: [0.1515151515152, 0.4848484848485, 0.8484848484848, 0.5151515151515], 0.38292011019: [0.3636363636364, 0.6363636363636], 0.16712580349: [0.1212121212121, 0.2121212121212, 0.7878787878788, 0.8787878787879], 0.93870523416: [0.5909090909091, 0.4090909090909], 0.91460055096: [0.4545454545455, 0.5454545454545], 0.0523415978: [0.0909090909091, 0.9090909090909], 0.7238292011: [0.8636363636364, 0.1363636363636], 0.02685950413: [0.8636363636364, 0.1363636363636], 0.75390266299: [0.6060606060606, 0.9393939393939, 0.3939393939394, 0.0606060606061], 0.12029384757: [0.3030303030303, 0.030303030303, 0.6969696969697, 0.969696969697], 0.86501377411: [0.7272727272727, 0.2727272727273], 0.77066115703: [0.0454545454545, 0.9545454545455], 0.19191919192: [0.3333333333333, 0.6666666666667], 0.33516988062: [0.4242424242424, 0.2424242424242, 0.5757575757576, 0.7575757575758], 0.70087235996: [0.1060606060606, 0.5606060606061, 0.8939393939394, 0.4393939393939], 0.08723599633: [0.6060606060606, 0.9393939393939, 0.3939393939394, 0.0606060606061], 0.79545454546: [0.5], 0.55096418733: [0.4545454545455, 0.5454545454545], 0.12052341598: [0.5909090909091, 0.4090909090909], 0.56198347107: [0.7272727272727, 0.2727272727273], 0.64577594123: [0.7424242424242, 0.0757575757576, 0.9242424242424, 0.2575757575758], 0.60537190083: [0.5909090909091, 0.4090909090909], 0.31795224977: [0.9848484848485, 0.0151515151515, 0.3484848484848, 0.6515151515152], 0.26928374656: [0.8636363636364, 0.1363636363636], 0.81198347107: [0.2272727272727, 0.7727272727273], 0.23530762167: [0.6212121212121, 0.7121212121212, 0.2878787878788, 0.3787878787879], 0.81749311295: [0.5909090909091, 0.4090909090909], 0.18663911846: [0.6818181818182, 0.3181818181818], 0.79522497704: [0.1515151515152, 0.4848484848485, 0.8484848484848, 0.5151515151515], 0.90909090909: [0.0], 0.58241505969: [0.469696969697, 0.8030303030303, 0.1969696969697, 0.530303030303], 0.36753902663: [0.1060606060606, 0.5606060606061, 0.8939393939394, 0.4393939393939], 0.21143250689: [0.5909090909091, 0.4090909090909], 0.31313131313: [0.3333333333333, 0.6666666666667], 0.01652892562: [0.7272727272727, 0.2727272727273], 0.68158861341: [0.9848484848485, 0.0151515151515, 0.3484848484848, 0.6515151515152], 0.41712580349: [0.6212121212121, 0.7121212121212, 0.2878787878788, 0.3787878787879], 0.36845730028: [0.6818181818182, 0.3181818181818], 0.11501377411: [0.2272727272727, 0.7727272727273], 0.36271808999: [0.3030303030303, 0.030303030303, 0.6969696969697, 0.969696969697], 0.15702479339: [0.4545454545455, 0.5454545454545], 0.47107438017: [0.7272727272727, 0.2727272727273], 0.53076216713: [0.1212121212121, 0.2121212121212, 0.7878787878788, 0.8787878787879], 0.85238751148: [0.1060606060606, 0.5606060606061, 0.8939393939394, 0.4393939393939], 0.41804407714: [0.2272727272727, 0.7727272727273], 0.63269054178: [0.6060606060606, 0.9393939393939, 0.3939393939394, 0.0606060606061], 0.97635445363: [0.469696969697, 0.8030303030303, 0.1969696969697, 0.530303030303], 0.18181818182: [0.0], 0.8448117539: [0.6060606060606, 0.9393939393939, 0.3939393939394, 0.0606060606061], 0.66046831956: [0.2272727272727, 0.7727272727273], 0.23966942149: [0.1818181818182, 0.8181818181818], 0.56313131313: [0.8333333333333, 0.1666666666667], 0.91391184573: [0.6818181818182, 0.3181818181818], 0.75757575758: [0.0], 0.46189164371: [0.1515151515152, 0.4848484848485, 0.8484848484848, 0.5151515151515], 0.96258034894: [0.6212121212121, 0.7121212121212, 0.2878787878788, 0.3787878787879], 0.89187327824: [0.0454545454545, 0.9545454545455], 0.22520661157: [0.0454545454545, 0.9545454545455], 0.80348943985: [0.1212121212121, 0.2121212121212, 0.7878787878788, 0.8787878787879], 0.87052341598: [0.0909090909091, 0.9090909090909], 0.54453627181: [0.969696969697, 0.3030303030303, 0.6969696969697, 0.030303030303], 0.65840220386: [0.0909090909091, 0.9090909090909], 0.99173553719: [0.0909090909091, 0.9090909090909], 0.12786960514: [0.469696969697, 0.8030303030303, 0.1969696969697, 0.530303030303], 0.80280073462: [0.9848484848485, 0.0151515151515, 0.3484848484848, 0.6515151515152]}
|
LIMITS = {'BNB/BTC': {'amount': {'max': 90000000.0, 'min': 0.01},
'cost': {'max': None, 'min': 0.001},
'price': {'max': None, 'min': None}},
'BNB/ETH': {'amount': {'max': 90000000.0, 'min': 0.01},
'cost': {'max': None, 'min': 0.01},
'price': {'max': None, 'min': None}},
'BNB/USDT': {'amount': {'max': 10000000.0, 'min': 0.01},
'cost': {'max': None, 'min': 10.0},
'price': {'max': None, 'min': None}},
'BTC/USDT': {'amount': {'max': 10000000.0, 'min': 1e-06},
'cost': {'max': None, 'min': 10.0},
'price': {'max': None, 'min': None}},
'ETH/BTC': {'amount': {'max': 100000.0, 'min': 0.001},
'cost': {'max': None, 'min': 0.001},
'price': {'max': None, 'min': None}},
'ETH/USDT': {'amount': {'max': 10000000.0, 'min': 1e-05},
'cost': {'max': None, 'min': 10.0},
'price': {'max': None, 'min': None}},
'XRP/BNB': {'amount': {'max': 90000000.0, 'min': 0.1},
'cost': {'max': None, 'min': 1.0},
'price': {'max': None, 'min': None}},
'XRP/BTC': {'amount': {'max': 90000000.0, 'min': 1.0},
'cost': {'max': None, 'min': 0.001},
'price': {'max': None, 'min': None}},
'XRP/ETH': {'amount': {'max': 90000000.0, 'min': 1.0},
'cost': {'max': None, 'min': 0.01},
'price': {'max': None, 'min': None}},
'XRP/USDT': {'amount': {'max': 90000000.0, 'min': 0.1},
'cost': {'max': None, 'min': 10.0},
'price': {'max': None, 'min': None}},
'XLM/USDT': {'amount': {'max': 90000000.0, 'min': 0.1},
'cost': {'max': None, 'min': 10.0},
'price': {'max': None, 'min': None}},
'XLM/XRP': {'amount': {'max': 90000000.0, 'min': 0.1},
'cost': {'max': None, 'min': 1.0},
'price': {'max': None, 'min': None}}}
class DummyExchange():
def __init__(self, currencies, balances, rates=None, fee=0.001):
self.name = 'DummyExchange'
self._currencies = currencies
self._balances = balances
self._fee = fee
self._rates = {}
for cur in rates or {}:
self._rates[cur] = {'mid': rates[cur],
'high': rates[cur]*1.001,
'low': rates[cur]*0.999,
}
@property
def balances(self):
return self._balances
@property
def pairs(self):
_pairs = []
for i in self._currencies:
for j in self._currencies:
pair = "{}/{}".format(i, j)
_pairs.append(pair)
return _pairs
@property
def rates(self):
if self._rates:
return self._rates
_rates = {}
for pair in self.pairs:
_rates[pair] = {'mid': 1.0,
'low': 0.99,
'high': 1.01, }
return _rates
@property
def limits(self):
return LIMITS
@property
def fee(self):
return self._fee
def preprocess_order(self, order):
try:
limits = self.limits[order.pair]
except KeyError:
return None
if order.amount < limits['amount']['min'] \
or order.amount * order.price < limits['cost']['min']:
return None
base, quote = order.pair.split('/')
if order.direction.upper() == 'BUY':
if order.amount * order.price > self._balances[quote]:
return None
if order.direction.upper() == 'SELL':
if order.amount > self._balances[base]:
return None
order.type_ = 'LIMIT'
return order
def execute_order(self, order):
base, quote = order.pair.split('/')
if order.direction.upper() == 'BUY':
if order.amount * order.price > self._balances[quote]:
raise ValueError("Can't overdraw")
self._balances[base] += order.amount
self._balances[base] -= order.amount * self.fee
self._balances[quote] -= order.amount * order.price
if order.direction.upper() == 'SELL':
if order.amount > self._balances[base]:
raise ValueError("Can't overdraw")
self._balances[base] -= order.amount
self._balances[quote] += order.amount * order.price
self._balances[quote] -= order.amount * order.price * self.fee
return {'symbol': order.pair,
'side': order.direction.upper(),
'amount': order.amount,
'price': order.price}
|
numeros = []
numero = 0
pares = []
impares = []
cont = 0
while True:
opcao = ' '
numero = int(input('Digite um número: ')) #Poderia usar numeros.append(int(input('Digite valor: ')))
numeros.append(numero)
while opcao not in 'SN':
opcao = str(input('Deseja continuar? [S/N] ')).strip().upper()
if opcao == 'N':
break
while True:
if numeros[cont] % 2 == 0:
pares.append(numeros[cont])
if numeros[cont] % 2 == 1:
impares.append(numeros[cont])
cont += 1
if cont >= len(numeros):
break
print(f'Os números digitados foram: {numeros}')
print(f'Os números pares são: {pares}')
print(f'Os números ímpares são: {impares}')
|
class Bullet:
def __init__(self, x, y, vx, vy, sender, color):
self.pos = (x, y)
self.vel = (vx, vy)
self.sender = sender
self.color = color
bullets = []
bullets.append(Bullet(0, 1, 2, 3, 'mr. r', (13, 14, 15)))
print(bullets[0].sender)
|
SQLTYPECODE_CHAR = 1
# NUMERIC * /
SQLTYPECODE_NUMERIC = 2
SQLTYPECODE_NUMERIC_UNSIGNED = -201
# DECIMAL * /
SQLTYPECODE_DECIMAL = 3
SQLTYPECODE_DECIMAL_UNSIGNED = -301
SQLTYPECODE_DECIMAL_LARGE = -302
SQLTYPECODE_DECIMAL_LARGE_UNSIGNED = -303
# INTEGER / INT * /
SQLTYPECODE_INTEGER = 4
SQLTYPECODE_INTEGER_UNSIGNED = -401
SQLTYPECODE_LARGEINT = -402
SQLTYPECODE_LARGEINT_UNSIGNED = -405
# SMALLINT
SQLTYPECODE_SMALLINT = 5
SQLTYPECODE_SMALLINT_UNSIGNED = -502
SQLTYPECODE_BPINT_UNSIGNED = -503
# TINYINT */
SQLTYPECODE_TINYINT = -403
SQLTYPECODE_TINYINT_UNSIGNED = -404
# DOUBLE depending on precision
SQLTYPECODE_FLOAT = 6
SQLTYPECODE_REAL = 7
SQLTYPECODE_DOUBLE = 8
# DATE,TIME,TIMESTAMP */
SQLTYPECODE_DATETIME = 9
# TIMESTAMP */
SQLTYPECODE_INTERVAL = 10
# no ANSI value 11 */
# VARCHAR/CHARACTER VARYING */
SQLTYPECODE_VARCHAR = 12
# SQL/MP stype VARCHAR with length prefix:
SQLTYPECODE_VARCHAR_WITH_LENGTH = -601
SQLTYPECODE_BLOB = -602
SQLTYPECODE_CLOB = -603
# LONG VARCHAR/ODBC CHARACTER VARYING */
SQLTYPECODE_VARCHAR_LONG = -1 # ## NEGATIVE??? */
# no ANSI value 13 */
# BIT */
SQLTYPECODE_BIT = 14 # not supported */
# BIT VARYING */
SQLTYPECODE_BITVAR = 15 # not supported */
# NCHAR -- CHAR(n) CHARACTER SET s -- where s uses two bytes per char */
SQLTYPECODE_CHAR_DBLBYTE = 16
# NCHAR VARYING -- VARCHAR(n) CHARACTER SET s -- s uses 2 bytes per char */
SQLTYPECODE_VARCHAR_DBLBYTE = 17
# BOOLEAN TYPE */
SQLTYPECODE_BOOLEAN = -701
# Date/Time/TimeStamp related constants */
SQLDTCODE_DATE = 1
SQLDTCODE_TIME = 2
SQLDTCODE_TIMESTAMP = 3
SQLDTCODE_MPDATETIME = 4
|
# Must check this video: https://tinyurl.com/vfmnqt4
class Solution(object):
def nextPermutation(self, nums):
"""
:type nums: List[int]
:rtype: None Do not return anything, modify nums in-place instead.
"""
i = j = len(nums) - 1
while i > 0 and nums[i - 1] >= nums[i]:
i -= 1
if i == 0: # nums are in descending order
nums.reverse()
return
k = i - 1 # find the last "ascending" position
while nums[j] <= nums[k]:
j -= 1
nums[k], nums[j] = nums[j], nums[k]
leftIdx, rightIdx = k + 1, len(nums) - 1 # reverse the second part
while leftIdx < rightIdx:
nums[leftIdx], nums[rightIdx] = nums[rightIdx], nums[leftIdx]
leftIdx += 1
rightIdx -= 1
|
class Solution(object):
def addStrings(self, num1, num2):
"""
:type num1: str
:type num2: str
:rtype: str
"""
result = []
i, j, carry = len(num1) - 1, len(num2) - 1, 0
while i >= 0 or j >= 0 or carry:
if i >= 0:
carry += ord(num1[i]) - ord('0')
i -= 1
if j >= 0:
carry += ord(num2[j]) - ord('0')
j -= 1
result.append(str(carry % 10))
carry /= 10
result.reverse()
return "".join(result)
print(Solution().addStrings('123','345'))
|
NORTH = 0
EAST = 1
SOUTH = 2
WEST = 3
class Robot:
def __init__(self, bearing=NORTH, x=0, y=0):
self.coordinates = (x, y)
self.bearing = bearing
def turn_right(self):
self.bearing += 1
self.bearing %= 4
def turn_left(self):
self.bearing += 3
self.bearing %= 4
def advance(self):
x, y = self.coordinates
if self.bearing == NORTH:
self.coordinates = (x, y + 1)
elif self.bearing == SOUTH:
self.coordinates = (x, y - 1)
elif self.bearing == EAST:
self.coordinates = (x + 1, y)
else:
self.coordinates = (x - 1, y)
def simulate(self, commands):
for ch in commands:
if ch == 'L':
self.turn_left()
elif ch == 'R':
self.turn_right()
elif ch == 'A':
self.advance()
|
mydict = {'name':'albert','age':28,'city':'Beijing'}
print(mydict)
mydict2 = dict(name='allen',age=26,city='boston')
print(mydict2)
value = mydict['name']
print(value)
mydict['email'] = '[email protected]'
print(mydict)
mydict['email'] = '[email protected]'
print(mydict)
del mydict['name']
print(mydict)
mydict.pop('age')
print(mydict)
mydict.popitem()
print(mydict)
#######
if 'name' in mydict:
print(mydict['name'])
else:
print('wrong')
try:
print(mydict['name'])
except:
print('error')
mydict = {'name':'albert','age':28,'city':'Beijing'}
for key in mydict.keys():
print(key)
for value in mydict.values():
print(value)
for key,value in mydict.items():
print(key,value)
mydict_cpy = mydict
print(mydict_cpy)
mydict_cpy['email'] = '[email protected]'
print(mydict_cpy)
print(mydict)
mydict = {'name':'albert','age':28,'city':'Beijing'}
mydict_cpy = mydict.copy()
mydict_cpy['email'] = '[email protected]'
print(mydict_cpy)
print(mydict)
mydict = {'name':'albert','age':28,'city':'Beijing'}
mydict_cpy = dict(mydict)
mydict_cpy['email'] = '[email protected]'
print(mydict_cpy)
print(mydict)
mydict1 = {'name':'albert','age':28,'city':'Beijing','email':'[email protected]'}
mydict2 = {'name':'allen','age':26,'city':'Bagadah'}
mydict1.update(mydict2)
print(mydict1)
mydict = {3:9,6:36,9:81}
print(mydict)
# value = mydict[0]
value = mydict[3]
print(value)
mytuple = (8,7)
mydict = {mytuple:15}
print(mydict)
# mylist = [8,7]
# mydict = {mylist:15}
# print(mydict)
|
def get_UnorderedGroupChildren(self):
"""
List all non-metadata children of an :py:class:`UnorderedGroupType`
"""
# TODO: should not change order
return self.get_RegionRef() + self.get_OrderedGroup() + self.get_UnorderedGroup()
|
#Schreibe eine Funktion "haeufigkeiten()",
#welche zu jedem Zeichen eines übergebenen Strings
#die Häufigkeit ermittelt, mit der dieses Zeichen im String vorkommt.
#Zurückgegeben wird ein Dictionary,
#in welchem jedes Zeichen dessen Vorkommenshäufigkeit zugeordnet wird.
def haeufigkeiten(text): #der Text muss in "" eingegeben werden
d={}
for key in text:
d[key]=text.count(key)
return d
|
# -*- coding: utf-8 -*-
REPORT_BANNER = """
╒══════════════════════════════════════════════════════════════════════════════╕
│ │
│ /$$$$$$ /$$ │
│ /$$__ $$ | $$ │
│ /$$$$$$$ /$$$$$$ | $$ \__//$$$$$$ /$$$$$$ /$$ /$$ │
│ /$$_____/ |____ $$| $$$$ /$$__ $$|_ $$_/ | $$ | $$ │
│ | $$$$$$ /$$$$$$$| $$_/ | $$$$$$$$ | $$ | $$ | $$ │
│ \____ $$ /$$__ $$| $$ | $$_____/ | $$ /$$| $$ | $$ │
│ /$$$$$$$/| $$$$$$$| $$ | $$$$$$$ | $$$$/| $$$$$$$ │
│ |_______/ \_______/|__/ \_______/ \___/ \____ $$ │
│ /$$ | $$ │
│ | $$$$$$/ │
│ by pyup.io \______/ │
│ │
╞══════════════════════════════════════════════════════════════════════════════╡
""".strip()
TABLE_HEADING = """
╞══════════════════════════╤═══════════════╤═══════════════════╤═══════════════╡
│ package │ installed │ affected │ source │
╞══════════════════════════╧═══════════════╧═══════════════════╧═══════════════╡
""".strip()
TABLE_FOOTER = """
╘══════════════════════════╧═══════════════╧═══════════════════╧═══════════════╛
""".strip()
TABLE_BREAK = """
╞══════════════════════════╡═══════════════╡═══════════════════╡═══════════════╡
""".strip()
REPORT_HEADING = """
│ REPORT │
""".strip()
REPORT_SECTION = """
╞══════════════════════════════════════════════════════════════════════════════╡
""".strip()
REPORT_FOOTER = """
╘══════════════════════════════════════════════════════════════════════════════╛
""".strip()
def report(vulns, full=False):
if vulns:
table = []
for vuln in vulns:
table.append("│ {:24} │ {:13} │ {:17} │ {:13} │".format(
vuln.name[:24],
vuln.version[:13],
vuln.spec[:17],
vuln.source
))
if full:
table.append(REPORT_SECTION)
descr = vuln.description
for chunk in [descr[i:i + 76] for i in range(0, len(descr), 76)]:
for line in chunk.splitlines():
table.append("│ {:76} │".format(line))
table.append(REPORT_SECTION)
table = "\n".join(table)
return "\n".join([REPORT_BANNER, REPORT_HEADING, TABLE_HEADING, table, TABLE_FOOTER])
else:
report = "│ {:76} │".format("No known security vulnerabilities found.")
return "\n".join([REPORT_BANNER, REPORT_HEADING, REPORT_SECTION, report, REPORT_FOOTER])
|
def writeFastqFile(filename,reads):
fhw=open(filename,"w")
for read in reads:
fhw.write("@"+read+"\n")
fhw.write(reads[read][0]+"\n"+reads[read][1]+"\n"+reads[read][2]+"\n")
def writeFastaFile(filename,seqs):
fhw=open(filename,"w")
for id in seqs:
fhw.write(">"+id+"\n"+seqs[id]+"\n")
def readFastqFile(filename):
reads={}
fhr=open(filename,"r")
while True:
line=fhr.readline()
if not line:
break
reads[line.split()[0][1:]]=[fhr.readline().strip(),fhr.readline().strip(),fhr.readline().strip()]
#print(reads[line.split()[0]])
return reads
def readFastaFile(filename):
"""
Reads in a fasta file and returns a dictionary
The keys in the dictionary is same as the fasta header
for each sequence upto the first space.
"""
info={}
fhr=open(filename,"r")
while(True):
line=fhr.readline()
if not line: break
if(">" in line):
try:
info[line.strip()[1:].split()[0]]=fhr.readline().strip()
except ValueError:
pass
return info
|
class AlembicUtilsException(Exception):
"""Base exception for AlembicUtils package"""
class SQLParseFailure(AlembicUtilsException):
"""An entity could not be parsed"""
class FailedToGenerateComparable(AlembicUtilsException):
"""Failed to generate a comparable entity"""
class UnreachableException(AlembicUtilsException):
"""An exception no one should ever see"""
class BadInputException(AlembicUtilsException):
"""Invalid user input"""
|
tup1 = ('physics', 'chemistry', 1997, 2000)
tup2 = (1, 2, 3, 4, 5, 6, 7 )
print ("tup1[0]: ", tup1[0])
print ("tup2[1:5]: ", tup2[1:5])
# Following action is not valid for tuples
# tup1[0] = 100
|
def validate_name(name):
if name.replace(" ", "").isalpha():
return True
else:
return False
def validate_height_in_cm(height):
if height < 300 and height > 10:
return True
else:
return False
def validate_weigth_in_kg(weight):
if weight < 200 and weight > 0:
return True
else:
return False
def validate_gender(gender):
genders = ['Male', 'Female', 'Other']
if gender in genders:
return True
else:
return False
def validate_blood_group(blood_group):
blood_groups = ['AB+' , 'AB-', 'A+', 'A-', 'B+', 'B-', 'O+' , 'O-']
if blood_group in blood_groups:
return True
else:
return False
|
fd = open('Sales.txt','a')
fd.write("1111,Ashish,63278648732,1001,5 Star,5,4,20 \n")
fd.close()
|
# Teoria
"""
Loop for
Loop -> Estrutura de repetição
For -> Uma dessas estruturas
# Em C
for (int i = 0, int < 10, int ++
{
//execução do loop
}
# Em Python
for item in interavel:
//execução do loop
Utilizamos loops para iterar sobre sequencias ou valores iteráveis
Exemplos de iteráveis:
- String
- Lista
lista = [1, 3, 5, 7 ,9]
- Range
numeros = range(1, 10)
"""
# Código
"""
nome = 'Geek University'
lista = [1, 3, 5, 7, 9]
numeros = range(1, 10)
# Exemplo de For 1 (Iterando em uma string):
for letra in nome:
print(letra)
# Exemplo de For 2 (Iterando sobre uma lista):
for numero in lista:
print(numero)
# Exemplo de For 3 (Iterando sobre um range):
for numero in numeros:
print(numero)
nome = 'Geek University'
OBS: Valor final não é incluído
# Enumerate:
((0, 'G'), (1, 'e'), (2, 'e'), (3, 'k'), (4, ' '), ...)
for indice, letra in enumerate(nome):
print(nome[indice])
for _, letra in enumerate(nome):
print(letra)
OBS: Quando não precisamos de um valor podemos descartá-los usando underline
for valor in enumerate(nome):
print(valor)
# Exemplo de For 4:
qtd = int(input(f'Quantas vezes esse loop deve rodar? '))
soma = 0
for n in range(1, qtd+1):
num = int(input(f'Escolha o valor {n}/{qtd}: '))
soma = soma + num
print(f'A soma é {soma}')
# Exemplo de For 5:
nome = 'Geek University'
for letra in nome:
print(letra, end='')
"""
|
"""
Longest Palindromic Subsequence
Given a sequence, find the length of the longest palindromic subsequence in it.
Example :
Input:"bbbab"
Output:4
"""
def lps(s):
r = s[::-1]
n = len(s)
dp = [[0 for _ in range(n+1)] for _ in range(n+1)]
for i in range(1, n+1):
for j in range(1, n+1):
if s[i-1] == r[j-1]:
dp[i][j] = 1 + dp[i-1][j-1]
else:
dp[i][j] = max(dp[i-1][j], dp[i][j-1])
return dp[-1][-1]
if __name__ == "__main__":
print(lps("bbbab"))
print(lps("BBABCBCAB"))
|
def compact(lst):
return list(filter(bool,lst))
print(compact([0,1,False,True,2,'',3,'a','s',34]))
|
class Solution:
"""
@param list: The coins
@param k: The k
@return: The answer
"""
def takeCoins(self, list, k):
# Write your code here
n = len(list)
presum = [0] * (1 + n)
for i in range(n):
presum[i + 1] = presum[i] + list[i]
return max(presum[i] + presum[n] - presum[n - k + i] for i in range(k + 1))
|
class Solution:
def uniqueMorseRepresentations(self, words: List[str]) -> int:
morse = [".-", "-...", "-.-.", "-..", ".", "..-.", "--.", "....", "..", ".---", "-.-", ".-..", "--",
"-.", "---", ".--.", "--.-", ".-.", "...", "-", "..-", "...-", ".--", "-..-", "-.--", "--.."]
transformations = set()
for word in words:
transformation = ''.join(morse[ord(c) - ord('a')] for c in word)
transformations.add(transformation)
return len(transformations)
|
def test_example_silver():
assert 567 == seat_id("BFFFBBFRRR")
assert 119 == seat_id("FFFBBBFRRR")
assert 820 == seat_id("BBFFBBFRLL")
def test_silver():
with open("input.txt") as file:
seats = file.read().split("\n")
assert 842 == max([seat_id(seat) for seat in seats])
def test_gold():
with open("input.txt") as file:
seats = file.read().split("\n")
seat_ids = sorted([seat_id(seat) for seat in seats])
your_seat = seat_ids[
[
seat_ids[i + 1] - seat_ids[i]
for i in range(len(seat_ids) - 1)
].index(2)
] + 1
assert your_seat not in seat_ids
assert your_seat - 1 in seat_ids
assert your_seat + 1 in seat_ids
assert 617 == your_seat
def seat_id(seat):
return int(
seat.replace(
"F", "0"
).replace(
"B", "1"
).replace(
"L", "0"
).replace(
"R", "1"
),
2
)
|
# Definition for a binary tree node.
# class TreeNode:
# def __init__(self, x):
# self.val = x
# self.left = None
# self.right = None
class Solution:
def in_order_traverse_2(self, root, last_val) -> bool:
if root.left is None:
last_val.append(root.val)
else:
self.in_order_traverse_2(root.left, last_val)
last_val.append(root.val)
if root.right is None:
pass
else:
self.in_order_traverse_2(root.right, last_val)
last_val.append(root.right.val)
def in_order_traverse(self, root, last_val) -> bool:
if root.left is not None:
left_in_order = (root.val > root.left.val)
if left_in_order is False:
return False
left_in_order = self.in_order_traverse(root.left, root.val)
if left_in_order is False:
return False
if root.right is not None:
right_in_order = (root.val < root.right.val)
if right_in_order is False:
return False
right_in_order = self.in_order_traverse(root.right, root.val)
if right_in_order is False:
return False
return True
def isValidBST(self, root: TreeNode) -> bool:
if root is None:
return True
return self.in_order_traverse(root, root.val)
|
'''(USANDO BREAK) Crie um programa que leia vários números inteiros pelo teclado. O programa só vai parar quando o usuário digitar o valor 999, que é a condição de parada. No final, mostre quantos números foram digitados e qual foi a soma entre eles (desconsiderando o flag(999))'''
numero=int(input('Digite um número(999 para sair): '))
soma=0
quantidade=0
while True:
if numero==999:
break
soma+=numero
quantidade+=1
numero=int(input('Digite um número(999 para sair): '))
print('\nQuantidade de números: {}\nA soma entre eles: {}'.format(quantidade,soma))
|
n1 = int(input('Digite um número: '))
n2 = int(input('Digite outro número: '))
s = n1 + n2
print('A soma entre', n1, 'e', n2, 'vale:', s)
print(f'A soma entre {n1} e {n2} vale: {s}')
print('A soma entre {0} e {1} vale: {2}'.format(n1, n2, s))
# print(type(n1))
|
hangman_txt = ("""
_________
|/
|
|
|
|
|
========""", """
_________
|/ |
|
|
|
|
|
========""", """
_________
|/ |
| (_)
|
|
|
|
========""", """
________
|/ |
| (_)
| |
| |
|
|
========""", """
_________
|/ |
| (_)
| /|
| |
|
|
========""", """
_________
|/ |
| (_)
| /|\
| |
|
|
========""", """
________
|/ |
| (_)
| /|\
| |
| /
|
========""", """
________
|/ |
| (_)
| /|\
| |
| / \
|
========""")
|
"""Define battery utilities."""
BATTERY_STATE_OFF = "off"
BATTERY_STATE_ON = "on"
def calculate_binary_battery(value: float) -> str:
"""Calculate a "binary battery" value (OK/Low)."""
if value == 0:
return BATTERY_STATE_OFF
return BATTERY_STATE_ON
|
class Solution:
def wordBreak(self, s: str, wordDict: List[str]) -> bool:
size = len(s)
dp = [False] * (size + 1)
dp[0] = True
for i in range(1, size + 1):
for j in range(i):
if dp[j] and s[j:i] in wordDict:
dp[i] = True
break
return dp[size]
A = Solution()
print(A.wordBreak("catsandog", ["cats","dog","sand","and","cat"]))
print(A.wordBreak("sandbox", ["sand","box"]))
print(A.wordBreak("code", []))
print(A.wordBreak("l", ["lll"]))
|
# Time: O(m + n)
# Space: O(1)
# 1071
# For strings S and T, we say "T divides S" if and only if S = T + ... + T (T concatenated with itself
# 1 or more times)
#
# Return the largest string X such that X divides str1 and X divides str2.
class Solution(object):
def gcdOfStrings(self, str1, str2):
"""
:type str1: str
:type str2: str
:rtype: str
"""
def check(s, common):
i = 0
for c in s:
if c != common[i]:
return False
i = (i+1)%len(common)
return True
def gcd(a, b): # Time: O((logn)^2)
while b:
a, b = b, a % b
return a
if not str1 or not str2:
return ""
c = gcd(len(str1), len(str2))
result = str1[:c]
return result if check(str1, result) and check(str2, result) else ""
print(Solution().gcdOfStrings("ABCABC", str2 = "ABC"))
print(Solution().gcdOfStrings())
print(Solution().gcdOfStrings())
|
# https://adventofcode.com/2018/day/3
total_overlaps = 0
fabric = {}
with open('./data.txt', 'r') as ffile:
data = ffile.read().strip().split('\n')
for data_row in data:
parts = data_row.split('@')
parts2 = parts[1].split(':')
left, top = parts2[0].split(',')
width, height = parts2[1].split('x')
width = int(width)
height = int(height)
left = int(left)
top = int(top)
for width_shift in range(width):
for height_shift in range(height):
coord_x = left + width_shift + 1
coord_y = top + height_shift + 1
if coord_x not in fabric:
fabric[coord_x] = {}
if coord_y not in fabric[coord_x]:
fabric[coord_x][coord_y] = 0
fabric[coord_x][coord_y] += 1
total_rows = 0
for index, value in fabric.items():
for subindex, subvalue in fabric[index].items():
if subvalue > 1:
total_overlaps += 1
print(total_overlaps)
|
#!/usr/bin/env python
# coding: utf-8
# In[ ]:
def TicTacDraw(board):
n=len(board)
d={'0':'O','1':'X','2':' '}
for i in range(n):
s=' '
for j in range(n):
if j == (len(board[i])-1):
s=s+d[str(board[i][j])]
else:
s=s+d[str(board[i][j])]+' | '
if i == (len(board)-1):
print(s)
else:
print(s)
print('-'*(4*n-1))
if __name__ == '__main__':
board = [[0, 1, 2], [2, 0, 0], [1, 1, 2]]
TicTacDraw(board)
|
# -*- coding: utf-8 -*-
################################################################################
# LexaLink Copyright information - do not remove this copyright notice
# Copyright (C) 2012
#
# Lexalink - a free social network and dating platform for the Google App Engine.
#
# Original author: Alexander Marquardt
# Documentation and additional information: http://www.LexaLink.com
# Git source code repository: https://github.com/lexalink/LexaLink.git
#
# Please consider contributing your enhancements and modifications to the LexaLink community,
#
# 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.
################################################################################
US_regions = [
((u"AL", u"Alabama"), [
(u"AU", u"Autauga County"),
(u"BD", u"Baldwin County"),
(u"BR", u"Barbour County"),
(u"BI", u"Bibb County"),
(u"BU", u"Blount County"),
(u"BL", u"Bullock County"),
(u"BT", u"Butler County"),
(u"CN", u"Calhoun County"),
(u"CM", u"Chambers County"),
(u"CH", u"Cherokee County"),
(u"CI", u"Chilton County"),
(u"CC", u"Choctaw County"),
(u"CK", u"Clarke County"),
(u"CY", u"Clay County"),
(u"CB", u"Cleburne County"),
(u"CF", u"Coffee County"),
(u"CL", u"Colbert County"),
(u"CO", u"Conecuh County"),
(u"CS", u"Coosa County"),
(u"CV", u"Covington County"),
(u"CA", u"Crenshaw County"),
(u"CU", u"Cullman County"),
(u"DE", u"Dale County"),
(u"DL", u"Dallas County"),
(u"DA", u"DeKalb County"),
(u"EL", u"Elmore County"),
(u"ES", u"Escambia County"),
(u"ET", u"Etowah County"),
(u"FA", u"Fayette County"),
(u"FR", u"Franklin County"),
(u"GE", u"Geneva County"),
(u"GR", u"Greene County"),
(u"HA", u"Hale County"),
(u"HE", u"Henry County"),
(u"HO", u"Houston County"),
(u"JA", u"Jackson County"),
(u"JE", u"Jefferson County"),
(u"LM", u"Lamar County"),
(u"LU", u"Lauderdale County"),
(u"LW", u"Lawrence County"),
(u"LE", u"Lee County"),
(u"LI", u"Limestone County"),
(u"LO", u"Lowndes County"),
(u"MC", u"Macon County"),
(u"MD", u"Madison County"),
(u"ME", u"Marengo County"),
(u"MI", u"Marion County"),
(u"MS", u"Marshall County"),
(u"MB", u"Mobile County"),
(u"MR", u"Monroe County"),
(u"MT", u"Montgomery County"),
(u"MG", u"Morgan County"),
(u"PE", u"Perry County"),
(u"PC", u"Pickens County"),
(u"PK", u"Pike County"),
(u"RA", u"Randolph County"),
(u"RU", u"Russell County"),
(u"SA", u"Saint Clair County"),
(u"SH", u"Shelby County"),
(u"SU", u"Sumter County"),
(u"TD", u"Talladega County"),
(u"TP", u"Tallapoosa County"),
(u"TU", u"Tuscaloosa County"),
(u"WK", u"Walker County"),
(u"WS", u"Washington County"),
(u"WC", u"Wilcox County"),
(u"WN", u"Winston County"),
]),
((u"AK", u"Alaska"), [
(u"AE", u"Aleutians East Borough"),
(u"AW", u"Aleutians West"),
(u"AN", u"Anchorage"),
(u"BE", u"Bethel"),
(u"BR", u"Bristol Bay Borough"),
(u"DE", u"Denali Borough"),
(u"DI", u"Dillingham"),
(u"FA", u"Fairbanks North Star Borough"),
(u"HA", u"Haines Borough"),
(u"HH", u"Hoonah-Angoon"),
(u"JU", u"Juneau"),
(u"KN", u"Kenai Peninsula Borough"),
(u"KG", u"Ketchikan Gateway Borough"),
(u"KO", u"Kodiak Island Borough"),
(u"LA", u"Lake and Peninsula Borough"),
(u"MA", u"Matanuska-Susitna Borough"),
(u"NM", u"Nome"),
(u"NH", u"North Slope Borough"),
(u"NW", u"Northwest Arctic Borough"),
(u"PB", u"Petersburg"),
(u"PH", u"Prince of Wales-Hyder"),
(u"SI", u"Sitka"),
(u"SW", u"Skagway Borough"),
(u"SO", u"Southeast Fairbanks"),
(u"VA", u"Valdez-Cordova"),
(u"WA", u"Wade Hampton"),
(u"WG", u"Wrangell"),
(u"YA", u"Yakutat Borough"),
(u"YU", u"Yukon-Koyukuk"),
]),
((u"AZ", u"Arizona"), [
(u"AP", u"Apache County"),
(u"CH", u"Cochise County"),
(u"CO", u"Coconino County"),
(u"GI", u"Gila County"),
(u"GA", u"Graham County"),
(u"GE", u"Greenlee County"),
(u"LA", u"La Paz County"),
(u"MA", u"Maricopa County"),
(u"MO", u"Mohave County"),
(u"NA", u"Navajo County"),
(u"PM", u"Pima County"),
(u"PN", u"Pinal County"),
(u"SA", u"Santa Cruz County"),
(u"YA", u"Yavapai County"),
(u"YU", u"Yuma County"),
]),
((u"AR", u"Arkansas"), [
(u"AR", u"Arkansas County"),
(u"AS", u"Ashley County"),
(u"BA", u"Baxter County"),
(u"BE", u"Benton County"),
(u"BO", u"Boone County"),
(u"BR", u"Bradley County"),
(u"CA", u"Calhoun County"),
(u"CL", u"Carroll County"),
(u"CT", u"Chicot County"),
(u"CK", u"Clark County"),
(u"CY", u"Clay County"),
(u"CB", u"Cleburne County"),
(u"CV", u"Cleveland County"),
(u"CI", u"Columbia County"),
(u"CN", u"Conway County"),
(u"CG", u"Craighead County"),
(u"CW", u"Crawford County"),
(u"CD", u"Crittenden County"),
(u"CO", u"Cross County"),
(u"DA", u"Dallas County"),
(u"DE", u"Desha County"),
(u"DR", u"Drew County"),
(u"FA", u"Faulkner County"),
(u"FR", u"Franklin County"),
(u"FU", u"Fulton County"),
(u"GL", u"Garland County"),
(u"GN", u"Grant County"),
(u"GE", u"Greene County"),
(u"HE", u"Hempstead County"),
(u"HT", u"Hot Spring County"),
(u"HW", u"Howard County"),
(u"IN", u"Independence County"),
(u"IZ", u"Izard County"),
(u"JA", u"Jackson County"),
(u"JE", u"Jefferson County"),
(u"JO", u"Johnson County"),
(u"LF", u"Lafayette County"),
(u"LW", u"Lawrence County"),
(u"LE", u"Lee County"),
(u"LC", u"Lincoln County"),
(u"LT", u"Little River County"),
(u"LG", u"Logan County"),
(u"LO", u"Lonoke County"),
(u"MD", u"Madison County"),
(u"MN", u"Marion County"),
(u"ML", u"Miller County"),
(u"MS", u"Mississippi County"),
(u"ME", u"Monroe County"),
(u"MT", u"Montgomery County"),
(u"NV", u"Nevada County"),
(u"NW", u"Newton County"),
(u"OU", u"Ouachita County"),
(u"PY", u"Perry County"),
(u"PH", u"Phillips County"),
(u"PE", u"Pike County"),
(u"PN", u"Poinsett County"),
(u"PL", u"Polk County"),
(u"PP", u"Pope County"),
(u"PR", u"Prairie County"),
(u"PU", u"Pulaski County"),
(u"RA", u"Randolph County"),
(u"SI", u"Saint Francis County"),
(u"SL", u"Saline County"),
(u"SC", u"Scott County"),
(u"SA", u"Searcy County"),
(u"SB", u"Sebastian County"),
(u"SV", u"Sevier County"),
(u"SH", u"Sharp County"),
(u"ST", u"Stone County"),
(u"UN", u"Union County"),
(u"VA", u"Van Buren County"),
(u"WA", u"Washington County"),
(u"WH", u"White County"),
(u"WO", u"Woodruff County"),
(u"YE", u"Yell County"),
]),
((u"CA", u"California"), [
(u"AA", u"Alameda County"),
(u"AP", u"Alpine County"),
(u"AM", u"Amador County"),
(u"BU", u"Butte County"),
(u"CA", u"Calaveras County"),
(u"CL", u"Colusa County"),
(u"CN", u"Contra Costa County"),
(u"DE", u"Del Norte County"),
(u"EL", u"El Dorado County"),
(u"FR", u"Fresno County"),
(u"GL", u"Glenn County"),
(u"HU", u"Humboldt County"),
(u"IM", u"Imperial County"),
(u"IN", u"Inyo County"),
(u"KE", u"Kern County"),
(u"KI", u"Kings County"),
(u"LK", u"Lake County"),
(u"LS", u"Lassen County"),
(u"LO-01", u"LA County - Antelope Valley"),
(u"LO-02", u"LA County - Beach Cities"),
# No number assigned to downtown, as we consider this is the original
# Los Angeles code. Other codes are "made-up" so that we have additional
# sub-divisions of this very large area.
(u"LO", u"LA County - Downtown Los Angeles"),
(u"LO-03", u"LA County - Eastside"),
(u"LO-04", u"LA County - Gateway Cities"),
(u"LO-05", u"LA County - Mid-Wilshire"),
(u"LO-06", u"LA County - Palos Verdes Peninsula"),
(u"LO-07", u"LA County - Pomona Valley"),
(u"LO-08", u"LA County - San Fernando Valley"),
(u"LO-09", u"LA County - San Gabriel Valley"),
(u"LO-10", u"LA County - Santa Clarita Valley"),
(u"LO-11", u"LA County - South Bay"),
(u"LO-12", u"LA County - South LA"),
(u"LO-13", u"LA County - Westside"),
(u"ME", u"Madera County"),
(u"MN", u"Marin County"),
(u"MP", u"Mariposa County"),
(u"MI", u"Mendocino County"),
(u"MD", u"Merced County"),
(u"MC", u"Modoc County"),
(u"MO", u"Mono County"),
(u"MT", u"Monterey County"),
(u"NA", u"Napa County"),
(u"NE", u"Nevada County"),
(u"OR", u"Orange County"),
(u"PA", u"Placer County"),
(u"PU", u"Plumas County"),
(u"RI", u"Riverside County"),
(u"SC", u"Sacramento County"),
(u"SI", u"San Benito County"),
(u"SA", u"San Bernardino County"),
(u"SD", u"San Diego County"),
(u"SF", u"San Francisco"),
(u"SJ", u"San Joaquin County"),
(u"SS", u"San Luis Obispo County"),
(u"SM", u"San Mateo County"),
(u"SB", u"Santa Barbara County"),
(u"SL", u"Santa Clara County"),
(u"SZ", u"Santa Cruz County"),
(u"SH", u"Shasta County"),
(u"SE", u"Sierra County"),
(u"SK", u"Siskiyou County"),
(u"SN", u"Solano County"),
(u"SO", u"Sonoma County"),
(u"ST", u"Stanislaus County"),
(u"SU", u"Sutter County"),
(u"TE", u"Tehama County"),
(u"TR", u"Trinity County"),
(u"TL", u"Tulare County"),
(u"TO", u"Tuolumne County"),
(u"VE", u"Ventura County"),
(u"YO", u"Yolo County"),
(u"YU", u"Yuba County"),
]),
((u"CO", u"Colorado"), [
(u"AD", u"Adams County"),
(u"AL", u"Alamosa County"),
(u"AA", u"Arapahoe County"),
(u"AC", u"Archuleta County"),
(u"BA", u"Baca County"),
(u"BE", u"Bent County"),
(u"BO", u"Boulder County"),
(u"BR", u"Broomfield"),
(u"CA", u"Chaffee County"),
(u"CE", u"Cheyenne County"),
(u"CL", u"Clear Creek County"),
(u"CN", u"Conejos County"),
(u"CS", u"Costilla County"),
(u"CR", u"Crowley County"),
(u"CU", u"Custer County"),
(u"DT", u"Delta County"),
(u"DN", u"Denver County"),
(u"DO", u"Dolores County"),
(u"DU", u"Douglas County"),
(u"EA", u"Eagle County"),
(u"EL", u"El Paso County"),
(u"EB", u"Elbert County"),
(u"FR", u"Fremont County"),
(u"GA", u"Garfield County"),
(u"GI", u"Gilpin County"),
(u"GR", u"Grand County"),
(u"GU", u"Gunnison County"),
(u"HI", u"Hinsdale County"),
(u"HU", u"Huerfano County"),
(u"JA", u"Jackson County"),
(u"JE", u"Jefferson County"),
(u"KO", u"Kiowa County"),
(u"KT", u"Kit Carson County"),
(u"LA", u"La Plata County"),
(u"LK", u"Lake County"),
(u"LR", u"Larimer County"),
(u"LS", u"Las Animas County"),
(u"LI", u"Lincoln County"),
(u"LO", u"Logan County"),
(u"ME", u"Mesa County"),
(u"MI", u"Mineral County"),
(u"MF", u"Moffat County"),
(u"MZ", u"Montezuma County"),
(u"MO", u"Montrose County"),
(u"MN", u"Morgan County"),
(u"OT", u"Otero County"),
(u"OU", u"Ouray County"),
(u"PA", u"Park County"),
(u"PH", u"Phillips County"),
(u"PI", u"Pitkin County"),
(u"PR", u"Prowers County"),
(u"PU", u"Pueblo County"),
(u"RB", u"Rio Blanco County"),
(u"RG", u"Rio Grande County"),
(u"RT", u"Routt County"),
(u"SG", u"Saguache County"),
(u"SJ", u"San Juan County"),
(u"SM", u"San Miguel County"),
(u"SE", u"Sedgwick County"),
(u"SU", u"Summit County"),
(u"TE", u"Teller County"),
(u"WA", u"Washington County"),
(u"WE", u"Weld County"),
(u"YU", u"Yuma County"),
]),
((u"CT", u"Connecticut"), [
(u"FA", u"Fairfield County"),
(u"HA", u"Hartford County"),
(u"LI", u"Litchfield County"),
(u"MI", u"Middlesex County"),
(u"NH", u"New Haven County"),
(u"NL", u"New London County"),
(u"TO", u"Tolland County"),
(u"WI", u"Windham County"),
]),
((u"DE", u"Delaware"), [
(u"KE", u"Kent County"),
(u"NE", u"New Castle County"),
(u"SU", u"Sussex County"),
]),
((u"DC", u"District of Columbia"), [
(u"DI", u"District of Columbia"),
]),
((u"FL", u"Florida"), [
(u"AL", u"Alachua County"),
(u"BK", u"Baker County"),
(u"BY", u"Bay County"),
(u"BA", u"Bradford County"),
(u"BE", u"Brevard County"),
(u"BO", u"Broward County"),
(u"CA", u"Calhoun County"),
(u"CH", u"Charlotte County"),
(u"CI", u"Citrus County"),
(u"CY", u"Clay County"),
(u"CL", u"Collier County"),
(u"CU", u"Columbia County"),
(u"DE", u"DeSoto County"),
(u"DI", u"Dixie County"),
(u"DU", u"Duval County"),
(u"ES", u"Escambia County"),
(u"FL", u"Flagler County"),
(u"FR", u"Franklin County"),
(u"GA", u"Gadsden County"),
(u"GI", u"Gilchrist County"),
(u"GL", u"Glades County"),
(u"GU", u"Gulf County"),
(u"HM", u"Hamilton County"),
(u"HD", u"Hardee County"),
(u"HR", u"Hendry County"),
(u"HA", u"Hernando County"),
(u"HG", u"Highlands County"),
(u"HL", u"Hillsborough County"),
(u"HO", u"Holmes County"),
(u"IN", u"Indian River County"),
(u"JA", u"Jackson County"),
(u"JE", u"Jefferson County"),
(u"LF", u"Lafayette County"),
(u"LK", u"Lake County"),
(u"LE", u"Lee County"),
(u"LO", u"Leon County"),
(u"LV", u"Levy County"),
(u"LI", u"Liberty County"),
(u"MD", u"Madison County"),
(u"MN", u"Manatee County"),
(u"MI", u"Marion County"),
(u"MT", u"Martin County"),
(u"DA", u"Miami-Dade County"),
(u"MO", u"Monroe County"),
(u"NA", u"Nassau County"),
(u"OA", u"Okaloosa County"),
(u"OE", u"Okeechobee County"),
(u"OR", u"Orange County"),
(u"OS", u"Osceola County"),
(u"PL", u"Palm Beach County"),
(u"PS", u"Pasco County"),
(u"PI", u"Pinellas County"),
(u"PO", u"Polk County"),
(u"PU", u"Putnam County"),
(u"SJ", u"Saint Johns County"),
(u"SL", u"Saint Lucie County"),
(u"SA", u"Santa Rosa County"),
(u"SR", u"Sarasota County"),
(u"SE", u"Seminole County"),
(u"SM", u"Sumter County"),
(u"SW", u"Suwannee County"),
(u"TA", u"Taylor County"),
(u"UN", u"Union County"),
(u"VO", u"Volusia County"),
(u"WK", u"Wakulla County"),
(u"WL", u"Walton County"),
(u"WS", u"Washington County"),
]),
((u"GA", u"Georgia"), [
(u"AP", u"Appling County"),
(u"AT", u"Atkinson County"),
(u"BC", u"Bacon County"),
(u"BR", u"Baker County"),
(u"BD", u"Baldwin County"),
(u"BS", u"Banks County"),
(u"BW", u"Barrow County"),
(u"BT", u"Bartow County"),
(u"BL", u"Ben Hill County"),
(u"BN", u"Berrien County"),
(u"BI", u"Bibb County"),
(u"BK", u"Bleckley County"),
(u"BA", u"Brantley County"),
(u"BO", u"Brooks County"),
(u"BY", u"Bryan County"),
(u"BH", u"Bulloch County"),
(u"BE", u"Burke County"),
(u"BU", u"Butts County"),
(u"CU", u"Calhoun County"),
(u"CD", u"Camden County"),
(u"CR", u"Candler County"),
(u"CL", u"Carroll County"),
(u"CS", u"Catoosa County"),
(u"CT", u"Charlton County"),
(u"CM", u"Chatham County"),
(u"CH", u"Chattahoochee County"),
(u"CG", u"Chattooga County"),
(u"CE", u"Cherokee County"),
(u"CK", u"Clarke County"),
(u"CY", u"Clay County"),
(u"CN", u"Clayton County"),
(u"CC", u"Clinch County"),
(u"CB", u"Cobb County"),
(u"CF", u"Coffee County"),
(u"CQ", u"Colquitt County"),
(u"CI", u"Columbia County"),
(u"CO", u"Cook County"),
(u"CA", u"Coweta County"),
(u"CW", u"Crawford County"),
(u"CP", u"Crisp County"),
(u"DD", u"Dade County"),
(u"DW", u"Dawson County"),
(u"DA", u"DeKalb County"),
(u"DC", u"Decatur County"),
(u"DG", u"Dodge County"),
(u"DO", u"Dooly County"),
(u"DH", u"Dougherty County"),
(u"DL", u"Douglas County"),
(u"EA", u"Early County"),
(u"EC", u"Echols County"),
(u"EF", u"Effingham County"),
(u"EL", u"Elbert County"),
(u"EM", u"Emanuel County"),
(u"EV", u"Evans County"),
(u"FN", u"Fannin County"),
(u"FY", u"Fayette County"),
(u"FL", u"Floyd County"),
(u"FO", u"Forsyth County"),
(u"FR", u"Franklin County"),
(u"FU", u"Fulton County"),
(u"GI", u"Gilmer County"),
(u"GS", u"Glascock County"),
(u"GY", u"Glynn County"),
(u"GO", u"Gordon County"),
(u"GD", u"Grady County"),
(u"GE", u"Greene County"),
(u"GW", u"Gwinnett County"),
(u"HB", u"Habersham County"),
(u"HL", u"Hall County"),
(u"HC", u"Hancock County"),
(u"HS", u"Haralson County"),
(u"HI", u"Harris County"),
(u"HT", u"Hart County"),
(u"HD", u"Heard County"),
(u"HY", u"Henry County"),
(u"HO", u"Houston County"),
(u"IR", u"Irwin County"),
(u"JC", u"Jackson County"),
(u"JS", u"Jasper County"),
(u"JF", u"Jeff Davis County"),
(u"JR", u"Jefferson County"),
(u"JK", u"Jenkins County"),
(u"JH", u"Johnson County"),
(u"JE", u"Jones County"),
(u"LM", u"Lamar County"),
(u"LI", u"Lanier County"),
(u"LR", u"Laurens County"),
(u"LE", u"Lee County"),
(u"LB", u"Liberty County"),
(u"LC", u"Lincoln County"),
(u"LG", u"Long County"),
(u"LW", u"Lowndes County"),
(u"LP", u"Lumpkin County"),
(u"MC", u"Macon County"),
(u"MD", u"Madison County"),
(u"MR", u"Marion County"),
(u"MU", u"McDuffie County"),
(u"MH", u"McIntosh County"),
(u"MW", u"Meriwether County"),
(u"ML", u"Miller County"),
(u"MT", u"Mitchell County"),
(u"MN", u"Monroe County"),
(u"MM", u"Montgomery County"),
(u"MO", u"Morgan County"),
(u"MA", u"Murray County"),
(u"MG", u"Muscogee County"),
(u"NE", u"Newton County"),
(u"OC", u"Oconee County"),
(u"OG", u"Oglethorpe County"),
(u"PA", u"Paulding County"),
(u"PH", u"Peach County"),
(u"PE", u"Pickens County"),
(u"PR", u"Pierce County"),
(u"PK", u"Pike County"),
(u"PO", u"Polk County"),
(u"PL", u"Pulaski County"),
(u"PT", u"Putnam County"),
(u"QU", u"Quitman County"),
(u"RB", u"Rabun County"),
(u"RN", u"Randolph County"),
(u"RI", u"Richmond County"),
(u"RO", u"Rockdale County"),
(u"SY", u"Schley County"),
(u"SR", u"Screven County"),
(u"SI", u"Seminole County"),
(u"SD", u"Spalding County"),
(u"SE", u"Stephens County"),
(u"SW", u"Stewart County"),
(u"SU", u"Sumter County"),
(u"TB", u"Talbot County"),
(u"TA", u"Taliaferro County"),
(u"TT", u"Tattnall County"),
(u"TY", u"Taylor County"),
(u"TF", u"Telfair County"),
(u"TL", u"Terrell County"),
(u"TH", u"Thomas County"),
(u"TI", u"Tift County"),
(u"TM", u"Toombs County"),
(u"TW", u"Towns County"),
(u"TE", u"Treutlen County"),
(u"TP", u"Troup County"),
(u"TR", u"Turner County"),
(u"TG", u"Twiggs County"),
(u"UN", u"Union County"),
(u"UP", u"Upson County"),
(u"WK", u"Walker County"),
(u"WA", u"Walton County"),
(u"WE", u"Ware County"),
(u"WR", u"Warren County"),
(u"WG", u"Washington County"),
(u"WY", u"Wayne County"),
(u"WT", u"Webster County"),
(u"WL", u"Wheeler County"),
(u"WH", u"White County"),
(u"WF", u"Whitfield County"),
(u"WC", u"Wilcox County"),
(u"WS", u"Wilkes County"),
(u"WI", u"Wilkinson County"),
(u"WO", u"Worth County"),
]),
((u"HI", u"Hawaii"), [
(u"HA", u"Hawaii County"),
(u"HO", u"Honolulu County"),
(u"KL", u"Kalawao County"),
(u"KU", u"Kauai County"),
(u"MA", u"Maui County"),
]),
((u"ID", u"Idaho"), [
(u"AA", u"Ada County"),
(u"AM", u"Adams County"),
(u"BO", u"Bannock County"),
(u"BK", u"Bear Lake County"),
(u"BA", u"Benewah County"),
(u"BG", u"Bingham County"),
(u"BL", u"Blaine County"),
(u"BS", u"Boise County"),
(u"BR", u"Bonner County"),
(u"BV", u"Bonneville County"),
(u"BD", u"Boundary County"),
(u"BT", u"Butte County"),
(u"CM", u"Camas County"),
(u"CN", u"Canyon County"),
(u"CR", u"Caribou County"),
(u"CS", u"Cassia County"),
(u"CA", u"Clark County"),
(u"CE", u"Clearwater County"),
(u"CU", u"Custer County"),
(u"EL", u"Elmore County"),
(u"FA", u"Franklin County"),
(u"FE", u"Fremont County"),
(u"GE", u"Gem County"),
(u"GO", u"Gooding County"),
(u"ID", u"Idaho County"),
(u"JF", u"Jefferson County"),
(u"JR", u"Jerome County"),
(u"KO", u"Kootenai County"),
(u"LA", u"Latah County"),
(u"LM", u"Lemhi County"),
(u"LW", u"Lewis County"),
(u"LI", u"Lincoln County"),
(u"MA", u"Madison County"),
(u"MI", u"Minidoka County"),
(u"NE", u"Nez Perce County"),
(u"ON", u"Oneida County"),
(u"OW", u"Owyhee County"),
(u"PA", u"Payette County"),
(u"PO", u"Power County"),
(u"SH", u"Shoshone County"),
(u"TE", u"Teton County"),
(u"TW", u"Twin Falls County"),
(u"VA", u"Valley County"),
(u"WA", u"Washington County"),
]),
((u"IL", u"Illinois"), [
(u"AD", u"Adams County"),
(u"AL", u"Alexander County"),
(u"BN", u"Bond County"),
(u"BO", u"Boone County"),
(u"BR", u"Brown County"),
(u"BU", u"Bureau County"),
(u"CH", u"Calhoun County"),
(u"CL", u"Carroll County"),
(u"CS", u"Cass County"),
(u"CM", u"Champaign County"),
(u"CI", u"Christian County"),
(u"CK", u"Clark County"),
(u"CY", u"Clay County"),
(u"CN", u"Clinton County"),
(u"CE", u"Coles County"),
(u"CO", u"Cook County"),
(u"CW", u"Crawford County"),
(u"CU", u"Cumberland County"),
(u"DW", u"De Witt County"),
(u"DK", u"DeKalb County"),
(u"DO", u"Douglas County"),
(u"DU", u"DuPage County"),
(u"EG", u"Edgar County"),
(u"EW", u"Edwards County"),
(u"EF", u"Effingham County"),
(u"FA", u"Fayette County"),
(u"FO", u"Ford County"),
(u"FR", u"Franklin County"),
(u"FU", u"Fulton County"),
(u"GA", u"Gallatin County"),
(u"GE", u"Greene County"),
(u"GU", u"Grundy County"),
(u"HM", u"Hamilton County"),
(u"HC", u"Hancock County"),
(u"HI", u"Hardin County"),
(u"HD", u"Henderson County"),
(u"HY", u"Henry County"),
(u"IR", u"Iroquois County"),
(u"JC", u"Jackson County"),
(u"JS", u"Jasper County"),
(u"JF", u"Jefferson County"),
(u"JR", u"Jersey County"),
(u"JO", u"Jo Daviess County"),
(u"JH", u"Johnson County"),
(u"KE", u"Kane County"),
(u"KK", u"Kankakee County"),
(u"KA", u"Kendall County"),
(u"KX", u"Knox County"),
(u"LA", u"La Salle County"),
(u"LK", u"Lake County"),
(u"LW", u"Lawrence County"),
(u"LE", u"Lee County"),
(u"LI", u"Livingston County"),
(u"LO", u"Logan County"),
(u"MC", u"Macon County"),
(u"MP", u"Macoupin County"),
(u"MD", u"Madison County"),
(u"MO", u"Marion County"),
(u"MH", u"Marshall County"),
(u"MS", u"Mason County"),
(u"MA", u"Massac County"),
(u"MU", u"McDonough County"),
(u"MY", u"McHenry County"),
(u"ML", u"McLean County"),
(u"MN", u"Menard County"),
(u"ME", u"Mercer County"),
(u"MR", u"Monroe County"),
(u"MT", u"Montgomery County"),
(u"MG", u"Morgan County"),
(u"MI", u"Moultrie County"),
(u"OG", u"Ogle County"),
(u"PI", u"Peoria County"),
(u"PY", u"Perry County"),
(u"PA", u"Piatt County"),
(u"PK", u"Pike County"),
(u"PE", u"Pope County"),
(u"PL", u"Pulaski County"),
(u"PT", u"Putnam County"),
(u"RA", u"Randolph County"),
(u"RI", u"Richland County"),
(u"RO", u"Rock Island County"),
(u"SI", u"Saint Clair County"),
(u"SE", u"Saline County"),
(u"SM", u"Sangamon County"),
(u"SU", u"Schuyler County"),
(u"SO", u"Scott County"),
(u"SB", u"Shelby County"),
(u"SA", u"Stark County"),
(u"SN", u"Stephenson County"),
(u"TA", u"Tazewell County"),
(u"UN", u"Union County"),
(u"VE", u"Vermilion County"),
(u"WB", u"Wabash County"),
(u"WR", u"Warren County"),
(u"WG", u"Washington County"),
(u"WY", u"Wayne County"),
(u"WE", u"White County"),
(u"WD", u"Whiteside County"),
(u"WL", u"Will County"),
(u"WS", u"Williamson County"),
(u"WN", u"Winnebago County"),
(u"WO", u"Woodford County"),
]),
((u"IN", u"Indiana"), [
(u"AD", u"Adams County"),
(u"AL", u"Allen County"),
(u"BA", u"Bartholomew County"),
(u"BE", u"Benton County"),
(u"BL", u"Blackford County"),
(u"BO", u"Boone County"),
(u"BR", u"Brown County"),
(u"CO", u"Carroll County"),
(u"CS", u"Cass County"),
(u"CK", u"Clark County"),
(u"CY", u"Clay County"),
(u"CI", u"Clinton County"),
(u"CW", u"Crawford County"),
(u"DI", u"Daviess County"),
(u"DE", u"De Kalb County"),
(u"DR", u"Dearborn County"),
(u"DC", u"Decatur County"),
(u"DL", u"Delaware County"),
(u"DU", u"Dubois County"),
(u"EL", u"Elkhart County"),
(u"FA", u"Fayette County"),
(u"FL", u"Floyd County"),
(u"FO", u"Fountain County"),
(u"FR", u"Franklin County"),
(u"FU", u"Fulton County"),
(u"GI", u"Gibson County"),
(u"GA", u"Grant County"),
(u"GE", u"Greene County"),
(u"HM", u"Hamilton County"),
(u"HC", u"Hancock County"),
(u"HI", u"Harrison County"),
(u"HD", u"Hendricks County"),
(u"HY", u"Henry County"),
(u"HO", u"Howard County"),
(u"HU", u"Huntington County"),
(u"JC", u"Jackson County"),
(u"JS", u"Jasper County"),
(u"JY", u"Jay County"),
(u"JF", u"Jefferson County"),
(u"JN", u"Jennings County"),
(u"JO", u"Johnson County"),
(u"KN", u"Knox County"),
(u"KO", u"Kosciusko County"),
(u"LA", u"La Porte County"),
(u"LG", u"Lagrange County"),
(u"LK", u"Lake County"),
(u"LW", u"Lawrence County"),
(u"MD", u"Madison County"),
(u"MO", u"Marion County"),
(u"MS", u"Marshall County"),
(u"MN", u"Martin County"),
(u"MI", u"Miami County"),
(u"MR", u"Monroe County"),
(u"MM", u"Montgomery County"),
(u"MG", u"Morgan County"),
(u"NE", u"Newton County"),
(u"NO", u"Noble County"),
(u"OH", u"Ohio County"),
(u"OR", u"Orange County"),
(u"OW", u"Owen County"),
(u"PA", u"Parke County"),
(u"PE", u"Perry County"),
(u"PI", u"Pike County"),
(u"PR", u"Porter County"),
(u"PS", u"Posey County"),
(u"PL", u"Pulaski County"),
(u"PT", u"Putnam County"),
(u"RA", u"Randolph County"),
(u"RI", u"Ripley County"),
(u"RU", u"Rush County"),
(u"SN", u"Saint Joseph County"),
(u"SC", u"Scott County"),
(u"SH", u"Shelby County"),
(u"SP", u"Spencer County"),
(u"SR", u"Starke County"),
(u"SE", u"Steuben County"),
(u"SU", u"Sullivan County"),
(u"SW", u"Switzerland County"),
(u"TP", u"Tippecanoe County"),
(u"TT", u"Tipton County"),
(u"UN", u"Union County"),
(u"VA", u"Vanderburgh County"),
(u"VE", u"Vermillion County"),
(u"VI", u"Vigo County"),
(u"WB", u"Wabash County"),
(u"WN", u"Warren County"),
(u"WI", u"Warrick County"),
(u"WS", u"Washington County"),
(u"WY", u"Wayne County"),
(u"WE", u"Wells County"),
(u"WH", u"White County"),
(u"WL", u"Whitley County"),
]),
((u"IA", u"Iowa"), [
(u"AI", u"Adair County"),
(u"AM", u"Adams County"),
(u"AL", u"Allamakee County"),
(u"AP", u"Appanoose County"),
(u"AU", u"Audubon County"),
(u"BN", u"Benton County"),
(u"BL", u"Black Hawk County"),
(u"BO", u"Boone County"),
(u"BR", u"Bremer County"),
(u"BC", u"Buchanan County"),
(u"BV", u"Buena Vista County"),
(u"BE", u"Butler County"),
(u"CO", u"Calhoun County"),
(u"CL", u"Carroll County"),
(u"CS", u"Cass County"),
(u"CD", u"Cedar County"),
(u"CG", u"Cerro Gordo County"),
(u"CE", u"Cherokee County"),
(u"CC", u"Chickasaw County"),
(u"CK", u"Clarke County"),
(u"CY", u"Clay County"),
(u"CT", u"Clayton County"),
(u"CN", u"Clinton County"),
(u"CW", u"Crawford County"),
(u"DL", u"Dallas County"),
(u"DV", u"Davis County"),
(u"DC", u"Decatur County"),
(u"DA", u"Delaware County"),
(u"DS", u"Des Moines County"),
(u"DI", u"Dickinson County"),
(u"DU", u"Dubuque County"),
(u"EM", u"Emmet County"),
(u"FT", u"Fayette County"),
(u"FL", u"Floyd County"),
(u"FN", u"Franklin County"),
(u"FO", u"Fremont County"),
(u"GE", u"Greene County"),
(u"GN", u"Grundy County"),
(u"GH", u"Guthrie County"),
(u"HM", u"Hamilton County"),
(u"HN", u"Hancock County"),
(u"HD", u"Hardin County"),
(u"HR", u"Harrison County"),
(u"HE", u"Henry County"),
(u"HO", u"Howard County"),
(u"HU", u"Humboldt County"),
(u"ID", u"Ida County"),
(u"IO", u"Iowa County"),
(u"JC", u"Jackson County"),
(u"JS", u"Jasper County"),
(u"JE", u"Jefferson County"),
(u"JH", u"Johnson County"),
(u"JN", u"Jones County"),
(u"KE", u"Keokuk County"),
(u"KO", u"Kossuth County"),
(u"LE", u"Lee County"),
(u"LI", u"Linn County"),
(u"LO", u"Louisa County"),
(u"LU", u"Lucas County"),
(u"LY", u"Lyon County"),
(u"MD", u"Madison County"),
(u"MK", u"Mahaska County"),
(u"MI", u"Marion County"),
(u"MS", u"Marshall County"),
(u"ML", u"Mills County"),
(u"ME", u"Mitchell County"),
(u"MO", u"Monona County"),
(u"MR", u"Monroe County"),
(u"MG", u"Montgomery County"),
(u"MU", u"Muscatine County"),
(u"OB", u"O'Brien County"),
(u"OS", u"Osceola County"),
(u"PG", u"Page County"),
(u"PO", u"Palo Alto County"),
(u"PM", u"Plymouth County"),
(u"PC", u"Pocahontas County"),
(u"PK", u"Polk County"),
(u"PT", u"Pottawattamie County"),
(u"PW", u"Poweshiek County"),
(u"RI", u"Ringgold County"),
(u"SA", u"Sac County"),
(u"SC", u"Scott County"),
(u"SH", u"Shelby County"),
(u"SI", u"Sioux County"),
(u"ST", u"Story County"),
(u"TM", u"Tama County"),
(u"TY", u"Taylor County"),
(u"UN", u"Union County"),
(u"VA", u"Van Buren County"),
(u"WP", u"Wapello County"),
(u"WR", u"Warren County"),
(u"WS", u"Washington County"),
(u"WY", u"Wayne County"),
(u"WE", u"Webster County"),
(u"WB", u"Winnebago County"),
(u"WH", u"Winneshiek County"),
(u"WO", u"Woodbury County"),
(u"WT", u"Worth County"),
(u"WG", u"Wright County"),
]),
((u"KS", u"Kansas"), [
(u"AL", u"Allen County"),
(u"AN", u"Anderson County"),
(u"AT", u"Atchison County"),
(u"AB", u"Barber County"),
(u"BT", u"Barton County"),
(u"BB", u"Bourbon County"),
(u"BR", u"Brown County"),
(u"BU", u"Butler County"),
(u"CS", u"Chase County"),
(u"CQ", u"Chautauqua County"),
(u"CK", u"Cherokee County"),
(u"CN", u"Cheyenne County"),
(u"CA", u"Clark County"),
(u"CY", u"Clay County"),
(u"CD", u"Cloud County"),
(u"CF", u"Coffey County"),
(u"CM", u"Comanche County"),
(u"CL", u"Cowley County"),
(u"CR", u"Crawford County"),
(u"DC", u"Decatur County"),
(u"DK", u"Dickinson County"),
(u"DP", u"Doniphan County"),
(u"DG", u"Douglas County"),
(u"ED", u"Edwards County"),
(u"EK", u"Elk County"),
(u"EL", u"Ellis County"),
(u"EW", u"Ellsworth County"),
(u"FI", u"Finney County"),
(u"FO", u"Ford County"),
(u"FR", u"Franklin County"),
(u"GE", u"Geary County"),
(u"GO", u"Gove County"),
(u"GH", u"Graham County"),
(u"GT", u"Grant County"),
(u"GY", u"Gray County"),
(u"GL", u"Greeley County"),
(u"GW", u"Greenwood County"),
(u"HM", u"Hamilton County"),
(u"HP", u"Harper County"),
(u"HV", u"Harvey County"),
(u"HS", u"Haskell County"),
(u"HG", u"Hodgeman County"),
(u"JA", u"Jackson County"),
(u"JF", u"Jefferson County"),
(u"JW", u"Jewell County"),
(u"JO", u"Johnson County"),
(u"KE", u"Kearny County"),
(u"KM", u"Kingman County"),
(u"KW", u"Kiowa County"),
(u"LB", u"Labette County"),
(u"LE", u"Lane County"),
(u"LV", u"Leavenworth County"),
(u"LC", u"Lincoln County"),
(u"LN", u"Linn County"),
(u"LG", u"Logan County"),
(u"LY", u"Lyon County"),
(u"MN", u"Marion County"),
(u"MS", u"Marshall County"),
(u"MP", u"McPherson County"),
(u"ME", u"Meade County"),
(u"MI", u"Miami County"),
(u"MC", u"Mitchell County"),
(u"MG", u"Montgomery County"),
(u"MR", u"Morris County"),
(u"MT", u"Morton County"),
(u"NM", u"Nemaha County"),
(u"NO", u"Neosho County"),
(u"NS", u"Ness County"),
(u"NT", u"Norton County"),
(u"OS", u"Osage County"),
(u"OB", u"Osborne County"),
(u"OT", u"Ottawa County"),
(u"PN", u"Pawnee County"),
(u"PL", u"Phillips County"),
(u"PT", u"Pottawatomie County"),
(u"PR", u"Pratt County"),
(u"RA", u"Rawlins County"),
(u"RN", u"Reno County"),
(u"RP", u"Republic County"),
(u"RC", u"Rice County"),
(u"RL", u"Riley County"),
(u"RO", u"Rooks County"),
(u"RH", u"Rush County"),
(u"RS", u"Russell County"),
(u"SA", u"Saline County"),
(u"SC", u"Scott County"),
(u"SG", u"Sedgwick County"),
(u"SW", u"Seward County"),
(u"SN", u"Shawnee County"),
(u"SD", u"Sheridan County"),
(u"SH", u"Sherman County"),
(u"SM", u"Smith County"),
(u"SF", u"Stafford County"),
(u"ST", u"Stanton County"),
(u"SV", u"Stevens County"),
(u"SU", u"Sumner County"),
(u"TH", u"Thomas County"),
(u"TR", u"Trego County"),
(u"WB", u"Wabaunsee County"),
(u"WA", u"Wallace County"),
(u"WS", u"Washington County"),
(u"WH", u"Wichita County"),
(u"WL", u"Wilson County"),
(u"WO", u"Woodson County"),
(u"WY", u"Wyandotte County"),
]),
((u"KY", u"Kentucky"), [
(u"AD", u"Adair County"),
(u"AL", u"Allen County"),
(u"AN", u"Anderson County"),
(u"BA", u"Ballard County"),
(u"BN", u"Barren County"),
(u"BH", u"Bath County"),
(u"BL", u"Bell County"),
(u"BO", u"Boone County"),
(u"BU", u"Bourbon County"),
(u"BD", u"Boyd County"),
(u"BE", u"Boyle County"),
(u"BK", u"Bracken County"),
(u"BT", u"Breathitt County"),
(u"BC", u"Breckinridge County"),
(u"BI", u"Bullitt County"),
(u"BR", u"Butler County"),
(u"CD", u"Caldwell County"),
(u"CW", u"Calloway County"),
(u"CM", u"Campbell County"),
(u"CE", u"Carlisle County"),
(u"CL", u"Carroll County"),
(u"CR", u"Carter County"),
(u"CS", u"Casey County"),
(u"CH", u"Christian County"),
(u"CK", u"Clark County"),
(u"CY", u"Clay County"),
(u"CO", u"Clinton County"),
(u"CT", u"Crittenden County"),
(u"CU", u"Cumberland County"),
(u"DA", u"Daviess County"),
(u"ED", u"Edmonson County"),
(u"EL", u"Elliott County"),
(u"ES", u"Estill County"),
(u"FA", u"Fayette County"),
(u"FE", u"Fleming County"),
(u"FO", u"Floyd County"),
(u"FR", u"Franklin County"),
(u"FU", u"Fulton County"),
(u"GL", u"Gallatin County"),
(u"GR", u"Garrard County"),
(u"GT", u"Grant County"),
(u"GV", u"Graves County"),
(u"GY", u"Grayson County"),
(u"GN", u"Green County"),
(u"GU", u"Greenup County"),
(u"HC", u"Hancock County"),
(u"HN", u"Hardin County"),
(u"HL", u"Harlan County"),
(u"HS", u"Harrison County"),
(u"HT", u"Hart County"),
(u"HE", u"Henderson County"),
(u"HY", u"Henry County"),
(u"HA", u"Hickman County"),
(u"HO", u"Hopkins County"),
(u"JA", u"Jackson County"),
(u"JF", u"Jefferson County"),
(u"JS", u"Jessamine County"),
(u"JO", u"Johnson County"),
(u"KE", u"Kenton County"),
(u"KT", u"Knott County"),
(u"KX", u"Knox County"),
(u"LR", u"Larue County"),
(u"LU", u"Laurel County"),
(u"LC", u"Lawrence County"),
(u"LE", u"Lee County"),
(u"LS", u"Leslie County"),
(u"LT", u"Letcher County"),
(u"LI", u"Lewis County"),
(u"LN", u"Lincoln County"),
(u"LV", u"Livingston County"),
(u"LO", u"Logan County"),
(u"LY", u"Lyon County"),
(u"MD", u"Madison County"),
(u"MF", u"Magoffin County"),
(u"MN", u"Marion County"),
(u"MH", u"Marshall County"),
(u"MI", u"Martin County"),
(u"MS", u"Mason County"),
(u"MK", u"McCracken County"),
(u"MR", u"McCreary County"),
(u"ML", u"McLean County"),
(u"MA", u"Meade County"),
(u"ME", u"Menifee County"),
(u"MC", u"Mercer County"),
(u"MT", u"Metcalfe County"),
(u"MO", u"Monroe County"),
(u"MM", u"Montgomery County"),
(u"MG", u"Morgan County"),
(u"MU", u"Muhlenberg County"),
(u"NE", u"Nelson County"),
(u"NI", u"Nicholas County"),
(u"OH", u"Ohio County"),
(u"OL", u"Oldham County"),
(u"OE", u"Owen County"),
(u"OS", u"Owsley County"),
(u"PN", u"Pendleton County"),
(u"PR", u"Perry County"),
(u"PI", u"Pike County"),
(u"PO", u"Powell County"),
(u"PU", u"Pulaski County"),
(u"RB", u"Robertson County"),
(u"RC", u"Rockcastle County"),
(u"RW", u"Rowan County"),
(u"RU", u"Russell County"),
(u"SC", u"Scott County"),
(u"SH", u"Shelby County"),
(u"SI", u"Simpson County"),
(u"SP", u"Spencer County"),
(u"TA", u"Taylor County"),
(u"TO", u"Todd County"),
(u"TG", u"Trigg County"),
(u"TM", u"Trimble County"),
(u"UN", u"Union County"),
(u"WR", u"Warren County"),
(u"WS", u"Washington County"),
(u"WY", u"Wayne County"),
(u"WE", u"Webster County"),
(u"WH", u"Whitley County"),
(u"WL", u"Wolfe County"),
(u"WO", u"Woodford County"),
]),
((u"LA", u"Louisiana"), [
(u"AD", u"Acadia Parish"),
(u"AL", u"Allen Parish"),
(u"AE", u"Ascension Parish"),
(u"AS", u"Assumption Parish"),
(u"AV", u"Avoyelles Parish"),
(u"BE", u"Beauregard Parish"),
(u"BI", u"Bienville Parish"),
(u"BO", u"Bossier Parish"),
(u"CO", u"Caddo Parish"),
(u"CC", u"Calcasieu Parish"),
(u"CW", u"Caldwell Parish"),
(u"CM", u"Cameron Parish"),
(u"CT", u"Catahoula Parish"),
(u"CI", u"Claiborne Parish"),
(u"CR", u"Concordia Parish"),
(u"DE", u"De Soto Parish"),
(u"EB", u"East Baton Rouge Parish"),
(u"EC", u"East Carroll Parish"),
(u"EF", u"East Feliciana Parish"),
(u"EV", u"Evangeline Parish"),
(u"FR", u"Franklin Parish"),
(u"GR", u"Grant Parish"),
(u"II", u"Iberia Parish"),
(u"IV", u"Iberville Parish"),
(u"JA", u"Jackson Parish"),
(u"JF", u"Jefferson Parish"),
(u"JD", u"Jefferson Davis Parish"),
(u"LA", u"La Salle Parish"),
(u"LY", u"Lafayette Parish"),
(u"LO", u"Lafourche Parish"),
(u"LN", u"Lincoln Parish"),
(u"LV", u"Livingston Parish"),
(u"MA", u"Madison Parish"),
(u"MO", u"Morehouse Parish"),
(u"NA", u"Natchitoches Parish"),
(u"OR", u"Orleans Parish"),
(u"OU", u"Ouachita Parish"),
(u"PL", u"Plaquemines Parish"),
(u"PO", u"Pointe Coupee Parish"),
(u"RA", u"Rapides Parish"),
(u"RE", u"Red River Parish"),
(u"RI", u"Richland Parish"),
(u"SB", u"Sabine Parish"),
(u"SE", u"Saint Bernard Parish"),
(u"SC", u"Saint Charles Parish"),
(u"SH", u"Saint Helena Parish"),
(u"SJ", u"Saint James Parish"),
(u"SO", u"Saint John the Baptist Parish"),
(u"SL", u"Saint Landry Parish"),
(u"SR", u"Saint Martin Parish"),
(u"SM", u"Saint Mary Parish"),
(u"ST", u"Saint Tammany Parish"),
(u"TA", u"Tangipahoa Parish"),
(u"TN", u"Tensas Parish"),
(u"TR", u"Terrebonne Parish"),
(u"UN", u"Union Parish"),
(u"VM", u"Vermilion Parish"),
(u"VN", u"Vernon Parish"),
(u"WO", u"Washington Parish"),
(u"WR", u"Webster Parish"),
(u"WB", u"West Baton Rouge Parish"),
(u"WC", u"West Carroll Parish"),
(u"WF", u"West Feliciana Parish"),
(u"WI", u"Winn Parish"),
]),
((u"ME", u"Maine"), [
(u"AN", u"Androscoggin County"),
(u"AR", u"Aroostook County"),
(u"CU", u"Cumberland County"),
(u"FR", u"Franklin County"),
(u"HA", u"Hancock County"),
(u"KE", u"Kennebec County"),
(u"KN", u"Knox County"),
(u"LI", u"Lincoln County"),
(u"OX", u"Oxford County"),
(u"PE", u"Penobscot County"),
(u"PI", u"Piscataquis County"),
(u"SA", u"Sagadahoc County"),
(u"SO", u"Somerset County"),
(u"WL", u"Waldo County"),
(u"WS", u"Washington County"),
(u"YO", u"York County"),
]),
((u"MD", u"Maryland"), [
(u"AL", u"Allegany County"),
(u"AN", u"Anne Arundel County"),
(u"BA", u"Baltimore"),
(u"BC", u"Baltimore County"),
(u"CL", u"Calvert County"),
(u"CO", u"Caroline County"),
(u"CR", u"Carroll County"),
(u"CE", u"Cecil County"),
(u"CH", u"Charles County"),
(u"DO", u"Dorchester County"),
(u"FR", u"Frederick County"),
(u"GA", u"Garrett County"),
(u"HA", u"Harford County"),
(u"HO", u"Howard County"),
(u"KE", u"Kent County"),
(u"MO", u"Montgomery County"),
(u"PR", u"Prince George's County"),
(u"QU", u"Queen Anne's County"),
(u"SA", u"Saint Mary's County"),
(u"SO", u"Somerset County"),
(u"TA", u"Talbot County"),
(u"WA", u"Washington County"),
(u"WI", u"Wicomico County"),
(u"WO", u"Worcester County"),
]),
((u"MA", u"Massachusetts"), [
(u"BA", u"Barnstable County"),
(u"BE", u"Berkshire County"),
(u"BR", u"Bristol County"),
(u"DU", u"Dukes County"),
(u"ES", u"Essex County"),
(u"FR", u"Franklin County"),
(u"HD", u"Hampden County"),
(u"HS", u"Hampshire County"),
(u"MI", u"Middlesex County"),
(u"NA", u"Nantucket County"),
(u"NO", u"Norfolk County"),
(u"PL", u"Plymouth County"),
(u"SU", u"Suffolk County"),
(u"WO", u"Worcester County"),
]),
((u"MI", u"Michigan"), [
(u"AC", u"Alcona County"),
(u"AG", u"Alger County"),
(u"AL", u"Allegan County"),
(u"AP", u"Alpena County"),
(u"AN", u"Antrim County"),
(u"AR", u"Arenac County"),
(u"BA", u"Baraga County"),
(u"BR", u"Barry County"),
(u"BY", u"Bay County"),
(u"BE", u"Benzie County"),
(u"BN", u"Berrien County"),
(u"BC", u"Branch County"),
(u"CU", u"Calhoun County"),
(u"CS", u"Cass County"),
(u"CV", u"Charlevoix County"),
(u"CY", u"Cheboygan County"),
(u"CP", u"Chippewa County"),
(u"CE", u"Clare County"),
(u"CN", u"Clinton County"),
(u"CF", u"Crawford County"),
(u"DE", u"Delta County"),
(u"DI", u"Dickinson County"),
(u"EA", u"Eaton County"),
(u"EM", u"Emmet County"),
(u"GE", u"Genesee County"),
(u"GL", u"Gladwin County"),
(u"GO", u"Gogebic County"),
(u"GN", u"Grand Traverse County"),
(u"GT", u"Gratiot County"),
(u"HI", u"Hillsdale County"),
(u"HO", u"Houghton County"),
(u"HU", u"Huron County"),
(u"IH", u"Ingham County"),
(u"II", u"Ionia County"),
(u"IC", u"Iosco County"),
(u"IR", u"Iron County"),
(u"IB", u"Isabella County"),
(u"JA", u"Jackson County"),
(u"KA", u"Kalamazoo County"),
(u"KK", u"Kalkaska County"),
(u"KN", u"Kent County"),
(u"KW", u"Keweenaw County"),
(u"LK", u"Lake County"),
(u"LP", u"Lapeer County"),
(u"LE", u"Leelanau County"),
(u"LN", u"Lenawee County"),
(u"LI", u"Livingston County"),
(u"LU", u"Luce County"),
(u"MK", u"Mackinac County"),
(u"MB", u"Macomb County"),
(u"ME", u"Manistee County"),
(u"MQ", u"Marquette County"),
(u"MN", u"Mason County"),
(u"MT", u"Mecosta County"),
(u"MM", u"Menominee County"),
(u"MD", u"Midland County"),
(u"MU", u"Missaukee County"),
(u"MO", u"Monroe County"),
(u"MC", u"Montcalm County"),
(u"MR", u"Montmorency County"),
(u"MG", u"Muskegon County"),
(u"NE", u"Newaygo County"),
(u"OD", u"Oakland County"),
(u"OA", u"Oceana County"),
(u"OG", u"Ogemaw County"),
(u"ON", u"Ontonagon County"),
(u"OE", u"Osceola County"),
(u"OO", u"Oscoda County"),
(u"OS", u"Otsego County"),
(u"OT", u"Ottawa County"),
(u"PR", u"Presque Isle County"),
(u"RO", u"Roscommon County"),
(u"SG", u"Saginaw County"),
(u"SA", u"Saint Clair County"),
(u"SJ", u"Saint Joseph County"),
(u"SL", u"Sanilac County"),
(u"SR", u"Schoolcraft County"),
(u"SH", u"Shiawassee County"),
(u"TU", u"Tuscola County"),
(u"VA", u"Van Buren County"),
(u"WS", u"Washtenaw County"),
(u"WY", u"Wayne County"),
(u"WE", u"Wexford County"),
]),
((u"MN", u"Minnesota"), [
(u"AI", u"Aitkin County"),
(u"AN", u"Anoka County"),
(u"BC", u"Becker County"),
(u"BT", u"Beltrami County"),
(u"BN", u"Benton County"),
(u"BI", u"Big Stone County"),
(u"BE", u"Blue Earth County"),
(u"BR", u"Brown County"),
(u"CL", u"Carlton County"),
(u"CV", u"Carver County"),
(u"CS", u"Cass County"),
(u"CP", u"Chippewa County"),
(u"CG", u"Chisago County"),
(u"CA", u"Clay County"),
(u"CE", u"Clearwater County"),
(u"CO", u"Cook County"),
(u"CT", u"Cottonwood County"),
(u"CW", u"Crow Wing County"),
(u"DA", u"Dakota County"),
(u"DD", u"Dodge County"),
(u"DU", u"Douglas County"),
(u"FA", u"Faribault County"),
(u"FI", u"Fillmore County"),
(u"FR", u"Freeborn County"),
(u"GO", u"Goodhue County"),
(u"GR", u"Grant County"),
(u"HE", u"Hennepin County"),
(u"HO", u"Houston County"),
(u"HU", u"Hubbard County"),
(u"IS", u"Isanti County"),
(u"IT", u"Itasca County"),
(u"JA", u"Jackson County"),
(u"KA", u"Kanabec County"),
(u"KD", u"Kandiyohi County"),
(u"KI", u"Kittson County"),
(u"KO", u"Koochiching County"),
(u"LC", u"Lac qui Parle County"),
(u"LE", u"Lake County"),
(u"LO", u"Lake of the Woods County"),
(u"LU", u"Le Sueur County"),
(u"LI", u"Lincoln County"),
(u"LY", u"Lyon County"),
(u"MH", u"Mahnomen County"),
(u"MS", u"Marshall County"),
(u"MT", u"Martin County"),
(u"MC", u"McLeod County"),
(u"ME", u"Meeker County"),
(u"MI", u"Mille Lacs County"),
(u"MR", u"Morrison County"),
(u"MW", u"Mower County"),
(u"MU", u"Murray County"),
(u"NI", u"Nicollet County"),
(u"NB", u"Nobles County"),
(u"NR", u"Norman County"),
(u"OL", u"Olmsted County"),
(u"OT", u"Otter Tail County"),
(u"PI", u"Pennington County"),
(u"PN", u"Pine County"),
(u"PS", u"Pipestone County"),
(u"PL", u"Polk County"),
(u"PE", u"Pope County"),
(u"RA", u"Ramsey County"),
(u"RD", u"Red Lake County"),
(u"RW", u"Redwood County"),
(u"RN", u"Renville County"),
(u"RI", u"Rice County"),
(u"RC", u"Rock County"),
(u"RS", u"Roseau County"),
(u"ST", u"Saint Louis County"),
(u"SC", u"Scott County"),
(u"SH", u"Sherburne County"),
(u"SI", u"Sibley County"),
(u"SR", u"Stearns County"),
(u"SE", u"Steele County"),
(u"SV", u"Stevens County"),
(u"SW", u"Swift County"),
(u"TO", u"Todd County"),
(u"TR", u"Traverse County"),
(u"WB", u"Wabasha County"),
(u"WD", u"Wadena County"),
(u"WE", u"Waseca County"),
(u"WH", u"Washington County"),
(u"WT", u"Watonwan County"),
(u"WL", u"Wilkin County"),
(u"WN", u"Winona County"),
(u"WR", u"Wright County"),
(u"YE", u"Yellow Medicine County"),
]),
((u"MS", u"Mississippi"), [
(u"AD", u"Adams County"),
(u"AL", u"Alcorn County"),
(u"AM", u"Amite County"),
(u"AT", u"Attala County"),
(u"BE", u"Benton County"),
(u"BO", u"Bolivar County"),
(u"CN", u"Calhoun County"),
(u"CL", u"Carroll County"),
(u"CS", u"Chickasaw County"),
(u"CW", u"Choctaw County"),
(u"CB", u"Claiborne County"),
(u"CE", u"Clarke County"),
(u"CY", u"Clay County"),
(u"CH", u"Coahoma County"),
(u"CP", u"Copiah County"),
(u"CV", u"Covington County"),
(u"DE", u"DeSoto County"),
(u"FO", u"Forrest County"),
(u"FR", u"Franklin County"),
(u"GR", u"George County"),
(u"GE", u"Greene County"),
(u"GN", u"Grenada County"),
(u"HN", u"Hancock County"),
(u"HR", u"Harrison County"),
(u"HI", u"Hinds County"),
(u"HO", u"Holmes County"),
(u"HU", u"Humphreys County"),
(u"IS", u"Issaquena County"),
(u"IT", u"Itawamba County"),
(u"JC", u"Jackson County"),
(u"JS", u"Jasper County"),
(u"JF", u"Jefferson County"),
(u"JD", u"Jefferson Davis County"),
(u"JO", u"Jones County"),
(u"KE", u"Kemper County"),
(u"LY", u"Lafayette County"),
(u"LM", u"Lamar County"),
(u"LU", u"Lauderdale County"),
(u"LW", u"Lawrence County"),
(u"LK", u"Leake County"),
(u"LE", u"Lee County"),
(u"LL", u"Leflore County"),
(u"LI", u"Lincoln County"),
(u"LO", u"Lowndes County"),
(u"MD", u"Madison County"),
(u"MI", u"Marion County"),
(u"MS", u"Marshall County"),
(u"MR", u"Monroe County"),
(u"MT", u"Montgomery County"),
(u"NS", u"Neshoba County"),
(u"NW", u"Newton County"),
(u"NO", u"Noxubee County"),
(u"OK", u"Oktibbeha County"),
(u"PA", u"Panola County"),
(u"PL", u"Pearl River County"),
(u"PY", u"Perry County"),
(u"PI", u"Pike County"),
(u"PO", u"Pontotoc County"),
(u"PN", u"Prentiss County"),
(u"QU", u"Quitman County"),
(u"RA", u"Rankin County"),
(u"SC", u"Scott County"),
(u"SH", u"Sharkey County"),
(u"SI", u"Simpson County"),
(u"SM", u"Smith County"),
(u"ST", u"Stone County"),
(u"SU", u"Sunflower County"),
(u"TL", u"Tallahatchie County"),
(u"TT", u"Tate County"),
(u"TP", u"Tippah County"),
(u"TS", u"Tishomingo County"),
(u"TU", u"Tunica County"),
(u"UN", u"Union County"),
(u"WT", u"Walthall County"),
(u"WR", u"Warren County"),
(u"WS", u"Washington County"),
(u"WY", u"Wayne County"),
(u"WE", u"Webster County"),
(u"WK", u"Wilkinson County"),
(u"WN", u"Winston County"),
(u"YL", u"Yalobusha County"),
(u"YZ", u"Yazoo County"),
]),
((u"MO", u"Missouri"), [
(u"AD", u"Adair County"),
(u"AN", u"Andrew County"),
(u"AT", u"Atchison County"),
(u"AU", u"Audrain County"),
(u"BR", u"Barry County"),
(u"BT", u"Barton County"),
(u"BS", u"Bates County"),
(u"BN", u"Benton County"),
(u"BI", u"Bollinger County"),
(u"BO", u"Boone County"),
(u"BC", u"Buchanan County"),
(u"BE", u"Butler County"),
(u"CW", u"Caldwell County"),
(u"CA", u"Callaway County"),
(u"CM", u"Camden County"),
(u"CG", u"Cape Girardeau County"),
(u"CL", u"Carroll County"),
(u"CR", u"Carter County"),
(u"CS", u"Cass County"),
(u"CD", u"Cedar County"),
(u"CI", u"Chariton County"),
(u"CT", u"Christian County"),
(u"CK", u"Clark County"),
(u"CY", u"Clay County"),
(u"CO", u"Clinton County"),
(u"CE", u"Cole County"),
(u"CP", u"Cooper County"),
(u"CF", u"Crawford County"),
(u"DD", u"Dade County"),
(u"DL", u"Dallas County"),
(u"DV", u"Daviess County"),
(u"DE", u"DeKalb County"),
(u"DN", u"Dent County"),
(u"DO", u"Douglas County"),
(u"DU", u"Dunklin County"),
(u"FR", u"Franklin County"),
(u"GA", u"Gasconade County"),
(u"GT", u"Gentry County"),
(u"GE", u"Greene County"),
(u"GU", u"Grundy County"),
(u"HS", u"Harrison County"),
(u"HE", u"Henry County"),
(u"HC", u"Hickory County"),
(u"HL", u"Holt County"),
(u"HR", u"Howard County"),
(u"HW", u"Howell County"),
(u"IR", u"Iron County"),
(u"JC", u"Jackson County"),
(u"JS", u"Jasper County"),
(u"JE", u"Jefferson County"),
(u"JO", u"Johnson County"),
(u"KN", u"Knox County"),
(u"LD", u"Laclede County"),
(u"LF", u"Lafayette County"),
(u"LW", u"Lawrence County"),
(u"LE", u"Lewis County"),
(u"LO", u"Lincoln County"),
(u"LN", u"Linn County"),
(u"LV", u"Livingston County"),
(u"MN", u"Macon County"),
(u"MD", u"Madison County"),
(u"MS", u"Maries County"),
(u"MO", u"Marion County"),
(u"MA", u"McDonald County"),
(u"MC", u"Mercer County"),
(u"ML", u"Miller County"),
(u"MI", u"Mississippi County"),
(u"ME", u"Moniteau County"),
(u"MR", u"Monroe County"),
(u"MM", u"Montgomery County"),
(u"MG", u"Morgan County"),
(u"NW", u"New Madrid County"),
(u"NT", u"Newton County"),
(u"NO", u"Nodaway County"),
(u"OR", u"Oregon County"),
(u"OS", u"Osage County"),
(u"OZ", u"Ozark County"),
(u"PM", u"Pemiscot County"),
(u"PR", u"Perry County"),
(u"PS", u"Pettis County"),
(u"PH", u"Phelps County"),
(u"PI", u"Pike County"),
(u"PT", u"Platte County"),
(u"PO", u"Polk County"),
(u"PA", u"Pulaski County"),
(u"PN", u"Putnam County"),
(u"RL", u"Ralls County"),
(u"RN", u"Randolph County"),
(u"RY", u"Ray County"),
(u"RE", u"Reynolds County"),
(u"RI", u"Ripley County"),
(u"SA", u"Saint Charles County"),
(u"SC", u"Saint Clair County"),
(u"SF", u"Saint Francois County"),
(u"SY", u"Saint Louis"),
(u"SL", u"Saint Louis County"),
(u"SG", u"Sainte Genevieve County"),
(u"SI", u"Saline County"),
(u"SH", u"Schuyler County"),
(u"SO", u"Scotland County"),
(u"ST", u"Scott County"),
(u"SN", u"Shannon County"),
(u"SB", u"Shelby County"),
(u"SD", u"Stoddard County"),
(u"SE", u"Stone County"),
(u"SV", u"Sullivan County"),
(u"TA", u"Taney County"),
(u"TE", u"Texas County"),
(u"VE", u"Vernon County"),
(u"WR", u"Warren County"),
(u"WS", u"Washington County"),
(u"WY", u"Wayne County"),
(u"WE", u"Webster County"),
(u"WO", u"Worth County"),
(u"WG", u"Wright County"),
]),
((u"MT", u"Montana"), [
(u"BE", u"Beaverhead County"),
(u"BI", u"Big Horn County"),
(u"BL", u"Blaine County"),
(u"BR", u"Broadwater County"),
(u"CB", u"Carbon County"),
(u"CT", u"Carter County"),
(u"CS", u"Cascade County"),
(u"CH", u"Chouteau County"),
(u"CU", u"Custer County"),
(u"DN", u"Daniels County"),
(u"DW", u"Dawson County"),
(u"DE", u"Deer Lodge County"),
(u"FA", u"Fallon County"),
(u"FE", u"Fergus County"),
(u"FL", u"Flathead County"),
(u"GL", u"Gallatin County"),
(u"GF", u"Garfield County"),
(u"GC", u"Glacier County"),
(u"GO", u"Golden Valley County"),
(u"GN", u"Granite County"),
(u"HI", u"Hill County"),
(u"JE", u"Jefferson County"),
(u"JU", u"Judith Basin County"),
(u"LA", u"Lake County"),
(u"LE", u"Lewis and Clark County"),
(u"LB", u"Liberty County"),
(u"LN", u"Lincoln County"),
(u"MA", u"Madison County"),
(u"MC", u"McCone County"),
(u"ME", u"Meagher County"),
(u"MN", u"Mineral County"),
(u"MS", u"Missoula County"),
(u"MU", u"Musselshell County"),
(u"PA", u"Park County"),
(u"PO", u"Petroleum County"),
(u"PH", u"Phillips County"),
(u"PN", u"Pondera County"),
(u"PD", u"Powder River County"),
(u"PL", u"Powell County"),
(u"PR", u"Prairie County"),
(u"RA", u"Ravalli County"),
(u"RI", u"Richland County"),
(u"RO", u"Roosevelt County"),
(u"RS", u"Rosebud County"),
(u"SA", u"Sanders County"),
(u"SH", u"Sheridan County"),
(u"SI", u"Silver Bow County"),
(u"ST", u"Stillwater County"),
(u"SW", u"Sweet Grass County"),
(u"TE", u"Teton County"),
(u"TO", u"Toole County"),
(u"TR", u"Treasure County"),
(u"VA", u"Valley County"),
(u"WH", u"Wheatland County"),
(u"WI", u"Wibaux County"),
(u"YS", u"Yellowstone County"),
]),
((u"NE", u"Nebraska"), [
(u"AD", u"Adams County"),
(u"AN", u"Antelope County"),
(u"AR", u"Arthur County"),
(u"BA", u"Banner County"),
(u"BL", u"Blaine County"),
(u"BO", u"Boone County"),
(u"BX", u"Box Butte County"),
(u"BY", u"Boyd County"),
(u"BW", u"Brown County"),
(u"BF", u"Buffalo County"),
(u"BT", u"Burt County"),
(u"BE", u"Butler County"),
(u"CS", u"Cass County"),
(u"CA", u"Cedar County"),
(u"CE", u"Chase County"),
(u"CH", u"Cherry County"),
(u"CY", u"Cheyenne County"),
(u"CL", u"Clay County"),
(u"CO", u"Colfax County"),
(u"CM", u"Cuming County"),
(u"CU", u"Custer County"),
(u"DK", u"Dakota County"),
(u"DS", u"Dawes County"),
(u"DN", u"Dawson County"),
(u"DL", u"Deuel County"),
(u"DI", u"Dixon County"),
(u"DE", u"Dodge County"),
(u"DG", u"Douglas County"),
(u"DY", u"Dundy County"),
(u"FI", u"Fillmore County"),
(u"FA", u"Franklin County"),
(u"FO", u"Frontier County"),
(u"FU", u"Furnas County"),
(u"GG", u"Gage County"),
(u"GD", u"Garden County"),
(u"GF", u"Garfield County"),
(u"GO", u"Gosper County"),
(u"GA", u"Grant County"),
(u"GE", u"Greeley County"),
(u"HL", u"Hall County"),
(u"HM", u"Hamilton County"),
(u"HR", u"Harlan County"),
(u"HY", u"Hayes County"),
(u"HI", u"Hitchcock County"),
(u"HT", u"Holt County"),
(u"HO", u"Hooker County"),
(u"HW", u"Howard County"),
(u"JE", u"Jefferson County"),
(u"JO", u"Johnson County"),
(u"KA", u"Kearney County"),
(u"KT", u"Keith County"),
(u"KY", u"Keya Paha County"),
(u"KB", u"Kimball County"),
(u"KN", u"Knox County"),
(u"LA", u"Lancaster County"),
(u"LI", u"Lincoln County"),
(u"LG", u"Logan County"),
(u"LU", u"Loup County"),
(u"MA", u"Madison County"),
(u"MC", u"McPherson County"),
(u"ME", u"Merrick County"),
(u"MO", u"Morrill County"),
(u"NA", u"Nance County"),
(u"NE", u"Nemaha County"),
(u"NU", u"Nuckolls County"),
(u"OT", u"Otoe County"),
(u"PA", u"Pawnee County"),
(u"PE", u"Perkins County"),
(u"PH", u"Phelps County"),
(u"PI", u"Pierce County"),
(u"PL", u"Platte County"),
(u"PO", u"Polk County"),
(u"RE", u"Red Willow County"),
(u"RI", u"Richardson County"),
(u"RO", u"Rock County"),
(u"SL", u"Saline County"),
(u"SY", u"Sarpy County"),
(u"SU", u"Saunders County"),
(u"SC", u"Scotts Bluff County"),
(u"SA", u"Seward County"),
(u"SD", u"Sheridan County"),
(u"SM", u"Sherman County"),
(u"SI", u"Sioux County"),
(u"ST", u"Stanton County"),
(u"TA", u"Thayer County"),
(u"TO", u"Thomas County"),
(u"TU", u"Thurston County"),
(u"VA", u"Valley County"),
(u"WS", u"Washington County"),
(u"WY", u"Wayne County"),
(u"WE", u"Webster County"),
(u"WH", u"Wheeler County"),
(u"YO", u"York County"),
]),
((u"NV", u"Nevada"), [
(u"CA", u"Carson City"),
(u"CH", u"Churchill County"),
(u"CL", u"Clark County"),
(u"DO", u"Douglas County"),
(u"EL", u"Elko County"),
(u"ES", u"Esmeralda County"),
(u"EU", u"Eureka County"),
(u"HU", u"Humboldt County"),
(u"LA", u"Lander County"),
(u"LI", u"Lincoln County"),
(u"LY", u"Lyon County"),
(u"MI", u"Mineral County"),
(u"NY", u"Nye County"),
(u"PE", u"Pershing County"),
(u"ST", u"Storey County"),
(u"WA", u"Washoe County"),
(u"WH", u"White Pine County"),
]),
((u"NH", u"New Hampshire"), [
(u"BE", u"Belknap County"),
(u"CA", u"Carroll County"),
(u"CH", u"Cheshire County"),
(u"CO", u"Coös County"),
(u"GR", u"Grafton County"),
(u"HI", u"Hillsborough County"),
(u"ME", u"Merrimack County"),
(u"RO", u"Rockingham County"),
(u"ST", u"Strafford County"),
(u"SU", u"Sullivan County"),
]),
((u"NJ", u"New Jersey"), [
(u"AT", u"Atlantic County"),
(u"BE", u"Bergen County"),
(u"BU", u"Burlington County"),
(u"CM", u"Camden County"),
(u"CP", u"Cape May County"),
(u"CU", u"Cumberland County"),
(u"ES", u"Essex County"),
(u"GL", u"Gloucester County"),
(u"HD", u"Hudson County"),
(u"HN", u"Hunterdon County"),
(u"ME", u"Mercer County"),
(u"MI", u"Middlesex County"),
(u"MN", u"Monmouth County"),
(u"MR", u"Morris County"),
(u"OC", u"Ocean County"),
(u"PA", u"Passaic County"),
(u"SA", u"Salem County"),
(u"SO", u"Somerset County"),
(u"SU", u"Sussex County"),
(u"UN", u"Union County"),
(u"WA", u"Warren County"),
]),
((u"NM", u"New Mexico"), [
(u"BE", u"Bernalillo County"),
(u"CA", u"Catron County"),
(u"CH", u"Chaves County"),
(u"CI", u"Cibola County"),
(u"CO", u"Colfax County"),
(u"CU", u"Curry County"),
(u"DE", u"DeBaca County"),
(u"DO", u"Doña Ana County"),
(u"ED", u"Eddy County"),
(u"GR", u"Grant County"),
(u"GU", u"Guadalupe County"),
(u"HA", u"Harding County"),
(u"HI", u"Hidalgo County"),
(u"LE", u"Lea County"),
(u"LI", u"Lincoln County"),
(u"LO", u"Los Alamos County"),
(u"LU", u"Luna County"),
(u"MC", u"McKinley County"),
(u"MO", u"Mora County"),
(u"OT", u"Otero County"),
(u"QU", u"Quay County"),
(u"RI", u"Rio Arriba County"),
(u"RO", u"Roosevelt County"),
(u"SJ", u"San Juan County"),
(u"SM", u"San Miguel County"),
(u"SD", u"Sandoval County"),
(u"ST", u"Santa Fe County"),
(u"SI", u"Sierra County"),
(u"SO", u"Socorro County"),
(u"TA", u"Taos County"),
(u"TO", u"Torrance County"),
(u"UN", u"Union County"),
(u"VA", u"Valencia County"),
]),
((u"NY", u"New York"), [
(u"AB", u"Albany County"),
(u"AL", u"Allegany County"),
(u"BN", u"Bronx County"),
(u"BO", u"Broome County"),
(u"CG", u"Cattaraugus County"),
(u"CY", u"Cayuga County"),
(u"CQ", u"Chautauqua County"),
(u"CM", u"Chemung County"),
(u"CH", u"Chenango County"),
(u"CL", u"Clinton County"),
(u"CU", u"Columbia County"),
(u"CD", u"Cortland County"),
(u"DE", u"Delaware County"),
(u"DU", u"Dutchess County"),
(u"ER", u"Erie County"),
(u"ES", u"Essex County"),
(u"FR", u"Franklin County"),
(u"FU", u"Fulton County"),
(u"GE", u"Genesee County"),
(u"GR", u"Greene County"),
(u"HA", u"Hamilton County"),
(u"HE", u"Herkimer County"),
(u"JE", u"Jefferson County"),
(u"KI", u"Kings County"),
(u"LE", u"Lewis County"),
(u"LI", u"Livingston County"),
(u"MA", u"Madison County"),
(u"MR", u"Monroe County"),
(u"MT", u"Montgomery County"),
(u"NA", u"Nassau County"),
(u"NE", u"New York County"),
(u"NI", u"Niagara County"),
(u"OD", u"Oneida County"),
(u"OG", u"Onondaga County"),
(u"OR", u"Ontario County"),
(u"OE", u"Orange County"),
(u"OL", u"Orleans County"),
(u"OS", u"Oswego County"),
(u"OO", u"Otsego County"),
(u"PU", u"Putnam County"),
(u"QU", u"Queens County"),
(u"RE", u"Rensselaer County"),
(u"RI", u"Richmond County"),
(u"RO", u"Rockland County"),
(u"SI", u"Saint Lawrence County"),
(u"SR", u"Saratoga County"),
(u"SN", u"Schenectady County"),
(u"SO", u"Schoharie County"),
(u"SU", u"Schuyler County"),
(u"SC", u"Seneca County"),
(u"ST", u"Steuben County"),
(u"SF", u"Suffolk County"),
(u"SL", u"Sullivan County"),
(u"TI", u"Tioga County"),
(u"TO", u"Tompkins County"),
(u"UL", u"Ulster County"),
(u"WR", u"Warren County"),
(u"WS", u"Washington County"),
(u"WN", u"Wayne County"),
(u"WE", u"Westchester County"),
(u"WM", u"Wyoming County"),
(u"YA", u"Yates County"),
]),
((u"NC", u"North Carolina"), [
(u"AA", u"Alamance County"),
(u"AE", u"Alexander County"),
(u"AL", u"Alleghany County"),
(u"AN", u"Anson County"),
(u"AS", u"Ashe County"),
(u"AV", u"Avery County"),
(u"BA", u"Beaufort County"),
(u"BT", u"Bertie County"),
(u"BL", u"Bladen County"),
(u"BS", u"Brunswick County"),
(u"BO", u"Buncombe County"),
(u"BK", u"Burke County"),
(u"CR", u"Cabarrus County"),
(u"CL", u"Caldwell County"),
(u"CD", u"Camden County"),
(u"CE", u"Carteret County"),
(u"CS", u"Caswell County"),
(u"CB", u"Catawba County"),
(u"CH", u"Chatham County"),
(u"CO", u"Cherokee County"),
(u"CW", u"Chowan County"),
(u"CY", u"Clay County"),
(u"CV", u"Cleveland County"),
(u"CM", u"Columbus County"),
(u"CN", u"Craven County"),
(u"CU", u"Cumberland County"),
(u"CI", u"Currituck County"),
(u"DE", u"Dare County"),
(u"DD", u"Davidson County"),
(u"DV", u"Davie County"),
(u"DP", u"Duplin County"),
(u"DH", u"Durham County"),
(u"ED", u"Edgecombe County"),
(u"FO", u"Forsyth County"),
(u"FR", u"Franklin County"),
(u"GS", u"Gaston County"),
(u"GT", u"Gates County"),
(u"GH", u"Graham County"),
(u"GN", u"Granville County"),
(u"GE", u"Greene County"),
(u"GU", u"Guilford County"),
(u"HL", u"Halifax County"),
(u"HT", u"Harnett County"),
(u"HW", u"Haywood County"),
(u"HN", u"Henderson County"),
(u"HD", u"Hertford County"),
(u"HO", u"Hoke County"),
(u"HE", u"Hyde County"),
(u"IR", u"Iredell County"),
(u"JA", u"Jackson County"),
(u"JH", u"Johnston County"),
(u"JN", u"Jones County"),
(u"LE", u"Lee County"),
(u"LN", u"Lenoir County"),
(u"LI", u"Lincoln County"),
(u"MN", u"Macon County"),
(u"MD", u"Madison County"),
(u"MR", u"Martin County"),
(u"MW", u"McDowell County"),
(u"MB", u"Mecklenburg County"),
(u"MI", u"Mitchell County"),
(u"MO", u"Montgomery County"),
(u"ME", u"Moore County"),
(u"NA", u"Nash County"),
(u"NE", u"New Hanover County"),
(u"NO", u"Northampton County"),
(u"ON", u"Onslow County"),
(u"OR", u"Orange County"),
(u"PM", u"Pamlico County"),
(u"PU", u"Pasquotank County"),
(u"PD", u"Pender County"),
(u"PQ", u"Perquimans County"),
(u"PN", u"Person County"),
(u"PI", u"Pitt County"),
(u"PO", u"Polk County"),
(u"RA", u"Randolph County"),
(u"RI", u"Richmond County"),
(u"RB", u"Robeson County"),
(u"RC", u"Rockingham County"),
(u"RW", u"Rowan County"),
(u"RU", u"Rutherford County"),
(u"SP", u"Sampson County"),
(u"SC", u"Scotland County"),
(u"SN", u"Stanly County"),
(u"SO", u"Stokes County"),
(u"SU", u"Surry County"),
(u"SW", u"Swain County"),
(u"TR", u"Transylvania County"),
(u"TY", u"Tyrrell County"),
(u"UN", u"Union County"),
(u"VA", u"Vance County"),
(u"WK", u"Wake County"),
(u"WR", u"Warren County"),
(u"WI", u"Washington County"),
(u"WT", u"Watauga County"),
(u"WY", u"Wayne County"),
(u"WE", u"Wilkes County"),
(u"WO", u"Wilson County"),
(u"YD", u"Yadkin County"),
(u"YN", u"Yancey County"),
]),
((u"ND", u"North Dakota"), [
(u"AD", u"Adams County"),
(u"BA", u"Barnes County"),
(u"BE", u"Benson County"),
(u"BI", u"Billings County"),
(u"BT", u"Bottineau County"),
(u"BW", u"Bowman County"),
(u"BK", u"Burke County"),
(u"BL", u"Burleigh County"),
(u"CS", u"Cass County"),
(u"CV", u"Cavalier County"),
(u"DC", u"Dickey County"),
(u"DV", u"Divide County"),
(u"DU", u"Dunn County"),
(u"ED", u"Eddy County"),
(u"EM", u"Emmons County"),
(u"FO", u"Foster County"),
(u"GO", u"Golden Valley County"),
(u"GD", u"Grand Forks County"),
(u"GT", u"Grant County"),
(u"GI", u"Griggs County"),
(u"HE", u"Hettinger County"),
(u"KI", u"Kidder County"),
(u"LA", u"LaMoure County"),
(u"LO", u"Logan County"),
(u"MH", u"McHenry County"),
(u"MI", u"McIntosh County"),
(u"MK", u"McKenzie County"),
(u"ML", u"McLean County"),
(u"ME", u"Mercer County"),
(u"MR", u"Morton County"),
(u"MU", u"Mountrail County"),
(u"NE", u"Nelson County"),
(u"OL", u"Oliver County"),
(u"PE", u"Pembina County"),
(u"PI", u"Pierce County"),
(u"RM", u"Ramsey County"),
(u"RN", u"Ransom County"),
(u"RE", u"Renville County"),
(u"RI", u"Richland County"),
(u"RO", u"Rolette County"),
(u"SG", u"Sargent County"),
(u"SH", u"Sheridan County"),
(u"SI", u"Sioux County"),
(u"SL", u"Slope County"),
(u"SR", u"Stark County"),
(u"SE", u"Steele County"),
(u"SU", u"Stutsman County"),
(u"TO", u"Towner County"),
(u"TR", u"Traill County"),
(u"WL", u"Walsh County"),
(u"WR", u"Ward County"),
(u"WE", u"Wells County"),
(u"WI", u"Williams County"),
]),
((u"OH", u"Ohio"), [
(u"AD", u"Adams County"),
(u"AN", u"Allen County"),
(u"AL", u"Ashland County"),
(u"AB", u"Ashtabula County"),
(u"AS", u"Athens County"),
(u"AU", u"Auglaize County"),
(u"BE", u"Belmont County"),
(u"BR", u"Brown County"),
(u"BU", u"Butler County"),
(u"CO", u"Carroll County"),
(u"CH", u"Champaign County"),
(u"CK", u"Clark County"),
(u"CE", u"Clermont County"),
(u"CI", u"Clinton County"),
(u"CL", u"Columbiana County"),
(u"CS", u"Coshocton County"),
(u"CF", u"Crawford County"),
(u"CU", u"Cuyahoga County"),
(u"DA", u"Darke County"),
(u"DF", u"Defiance County"),
(u"DL", u"Delaware County"),
(u"ER", u"Erie County"),
(u"FI", u"Fairfield County"),
(u"FY", u"Fayette County"),
(u"FR", u"Franklin County"),
(u"FU", u"Fulton County"),
(u"GA", u"Gallia County"),
(u"GE", u"Geauga County"),
(u"GR", u"Greene County"),
(u"GU", u"Guernsey County"),
(u"HM", u"Hamilton County"),
(u"HN", u"Hancock County"),
(u"HD", u"Hardin County"),
(u"HR", u"Harrison County"),
(u"HE", u"Henry County"),
(u"HI", u"Highland County"),
(u"HC", u"Hocking County"),
(u"HL", u"Holmes County"),
(u"HU", u"Huron County"),
(u"JA", u"Jackson County"),
(u"JE", u"Jefferson County"),
(u"KN", u"Knox County"),
(u"LK", u"Lake County"),
(u"LW", u"Lawrence County"),
(u"LI", u"Licking County"),
(u"LG", u"Logan County"),
(u"LR", u"Lorain County"),
(u"LU", u"Lucas County"),
(u"MO", u"Madison County"),
(u"MH", u"Mahoning County"),
(u"MR", u"Marion County"),
(u"MD", u"Medina County"),
(u"MS", u"Meigs County"),
(u"MC", u"Mercer County"),
(u"MM", u"Miami County"),
(u"ME", u"Monroe County"),
(u"MT", u"Montgomery County"),
(u"MA", u"Morgan County"),
(u"MW", u"Morrow County"),
(u"MU", u"Muskingum County"),
(u"NO", u"Noble County"),
(u"OT", u"Ottawa County"),
(u"PA", u"Paulding County"),
(u"PE", u"Perry County"),
(u"PC", u"Pickaway County"),
(u"PK", u"Pike County"),
(u"PO", u"Portage County"),
(u"PR", u"Preble County"),
(u"PU", u"Putnam County"),
(u"RI", u"Richland County"),
(u"RO", u"Ross County"),
(u"SA", u"Sandusky County"),
(u"SC", u"Scioto County"),
(u"SE", u"Seneca County"),
(u"SH", u"Shelby County"),
(u"ST", u"Stark County"),
(u"SU", u"Summit County"),
(u"TR", u"Trumbull County"),
(u"TU", u"Tuscarawas County"),
(u"UN", u"Union County"),
(u"VA", u"Van Wert County"),
(u"VI", u"Vinton County"),
(u"WR", u"Warren County"),
(u"WS", u"Washington County"),
(u"WE", u"Wayne County"),
(u"WI", u"Williams County"),
(u"WO", u"Wood County"),
(u"WD", u"Wyandot County"),
]),
((u"OK", u"Oklahoma"), [
(u"AD", u"Adair County"),
(u"AL", u"Alfalfa County"),
(u"AT", u"Atoka County"),
(u"BA", u"Beaver County"),
(u"BC", u"Beckham County"),
(u"BL", u"Blaine County"),
(u"BR", u"Bryan County"),
(u"CD", u"Caddo County"),
(u"CN", u"Canadian County"),
(u"CR", u"Carter County"),
(u"CK", u"Cherokee County"),
(u"CA", u"Choctaw County"),
(u"CO", u"Cimarron County"),
(u"CV", u"Cleveland County"),
(u"CL", u"Coal County"),
(u"CM", u"Comanche County"),
(u"CT", u"Cotton County"),
(u"CG", u"Craig County"),
(u"CE", u"Creek County"),
(u"CU", u"Custer County"),
(u"DL", u"Delaware County"),
(u"DW", u"Dewey County"),
(u"EL", u"Ellis County"),
(u"GF", u"Garfield County"),
(u"GV", u"Garvin County"),
(u"GD", u"Grady County"),
(u"GN", u"Grant County"),
(u"GE", u"Greer County"),
(u"HM", u"Harmon County"),
(u"HP", u"Harper County"),
(u"HS", u"Haskell County"),
(u"HU", u"Hughes County"),
(u"JA", u"Jackson County"),
(u"JE", u"Jefferson County"),
(u"JO", u"Johnston County"),
(u"KA", u"Kay County"),
(u"KN", u"Kingfisher County"),
(u"KO", u"Kiowa County"),
(u"LA", u"Latimer County"),
(u"LE", u"Le Flore County"),
(u"LI", u"Lincoln County"),
(u"LG", u"Logan County"),
(u"LV", u"Love County"),
(u"MJ", u"Major County"),
(u"MH", u"Marshall County"),
(u"MY", u"Mayes County"),
(u"ML", u"McClain County"),
(u"MU", u"McCurtain County"),
(u"MI", u"McIntosh County"),
(u"MR", u"Murray County"),
(u"MO", u"Muskogee County"),
(u"NB", u"Noble County"),
(u"NW", u"Nowata County"),
(u"OF", u"Okfuskee County"),
(u"OL", u"Oklahoma County"),
(u"OM", u"Okmulgee County"),
(u"OS", u"Osage County"),
(u"OT", u"Ottawa County"),
(u"PW", u"Pawnee County"),
(u"PY", u"Payne County"),
(u"PI", u"Pittsburg County"),
(u"PN", u"Pontotoc County"),
(u"PT", u"Pottawatomie County"),
(u"PU", u"Pushmataha County"),
(u"RR", u"Roger Mills County"),
(u"RS", u"Rogers County"),
(u"SM", u"Seminole County"),
(u"SQ", u"Sequoyah County"),
(u"ST", u"Stephens County"),
(u"TE", u"Texas County"),
(u"TI", u"Tillman County"),
(u"TU", u"Tulsa County"),
(u"WG", u"Wagoner County"),
(u"WN", u"Washington County"),
(u"WT", u"Washita County"),
(u"WS", u"Woods County"),
(u"WW", u"Woodward County"),
]),
((u"OR", u"Oregon"), [
(u"BA", u"Baker County"),
(u"BE", u"Benton County"),
(u"CC", u"Clackamas County"),
(u"CT", u"Clatsop County"),
(u"CL", u"Columbia County"),
(u"CO", u"Coos County"),
(u"CR", u"Crook County"),
(u"CU", u"Curry County"),
(u"DE", u"Deschutes County"),
(u"DO", u"Douglas County"),
(u"GI", u"Gilliam County"),
(u"GR", u"Grant County"),
(u"HA", u"Harney County"),
(u"HO", u"Hood River County"),
(u"JA", u"Jackson County"),
(u"JE", u"Jefferson County"),
(u"JO", u"Josephine County"),
(u"KL", u"Klamath County"),
(u"LK", u"Lake County"),
(u"LE", u"Lane County"),
(u"LC", u"Lincoln County"),
(u"LN", u"Linn County"),
(u"ML", u"Malheur County"),
(u"MR", u"Marion County"),
(u"MO", u"Morrow County"),
(u"MU", u"Multnomah County"),
(u"PO", u"Polk County"),
(u"SH", u"Sherman County"),
(u"TI", u"Tillamook County"),
(u"UM", u"Umatilla County"),
(u"UN", u"Union County"),
(u"WW", u"Wallowa County"),
(u"WC", u"Wasco County"),
(u"WI", u"Washington County"),
(u"WE", u"Wheeler County"),
(u"YA", u"Yamhill County"),
]),
((u"PA", u"Pennsylvania"), [
(u"AD", u"Adams County"),
(u"AL", u"Allegheny County"),
(u"AR", u"Armstrong County"),
(u"BA", u"Beaver County"),
(u"BO", u"Bedford County"),
(u"BK", u"Berks County"),
(u"BL", u"Blair County"),
(u"BF", u"Bradford County"),
(u"BC", u"Bucks County"),
(u"BT", u"Butler County"),
(u"CI", u"Cambria County"),
(u"CE", u"Cameron County"),
(u"CB", u"Carbon County"),
(u"CT", u"Centre County"),
(u"CH", u"Chester County"),
(u"CL", u"Clarion County"),
(u"CF", u"Clearfield County"),
(u"CN", u"Clinton County"),
(u"CO", u"Columbia County"),
(u"CW", u"Crawford County"),
(u"CU", u"Cumberland County"),
(u"DA", u"Dauphin County"),
(u"DE", u"Delaware County"),
(u"EL", u"Elk County"),
(u"ER", u"Erie County"),
(u"FA", u"Fayette County"),
(u"FO", u"Forest County"),
(u"FR", u"Franklin County"),
(u"FU", u"Fulton County"),
(u"GR", u"Greene County"),
(u"HU", u"Huntingdon County"),
(u"IN", u"Indiana County"),
(u"JE", u"Jefferson County"),
(u"JU", u"Juniata County"),
(u"LC", u"Lackawanna County"),
(u"LN", u"Lancaster County"),
(u"LW", u"Lawrence County"),
(u"LB", u"Lebanon County"),
(u"LH", u"Lehigh County"),
(u"LU", u"Luzerne County"),
(u"LY", u"Lycoming County"),
(u"MC", u"McKean County"),
(u"ME", u"Mercer County"),
(u"MI", u"Mifflin County"),
(u"MR", u"Monroe County"),
(u"MG", u"Montgomery County"),
(u"MO", u"Montour County"),
(u"NA", u"Northampton County"),
(u"NU", u"Northumberland County"),
(u"PE", u"Perry County"),
(u"PH", u"Philadelphia County"),
(u"PI", u"Pike County"),
(u"PO", u"Potter County"),
(u"SC", u"Schuylkill County"),
(u"SN", u"Snyder County"),
(u"SO", u"Somerset County"),
(u"SL", u"Sullivan County"),
(u"SS", u"Susquehanna County"),
(u"TI", u"Tioga County"),
(u"UN", u"Union County"),
(u"VE", u"Venango County"),
(u"WR", u"Warren County"),
(u"WS", u"Washington County"),
(u"WN", u"Wayne County"),
(u"WE", u"Westmoreland County"),
(u"WM", u"Wyoming County"),
(u"YO", u"York County"),
]),
((u"RI", u"Rhode Island"), [
(u"BR", u"Bristol County"),
(u"KE", u"Kent County"),
(u"NE", u"Newport County"),
(u"PR", u"Providence County"),
(u"WA", u"Washington County"),
]),
((u"SC", u"South Carolina"), [
(u"AB", u"Abbeville County"),
(u"AI", u"Aiken County"),
(u"AL", u"Allendale County"),
(u"AN", u"Anderson County"),
(u"BM", u"Bamberg County"),
(u"BN", u"Barnwell County"),
(u"BA", u"Beaufort County"),
(u"BK", u"Berkeley County"),
(u"CH", u"Calhoun County"),
(u"CS", u"Charleston County"),
(u"CK", u"Cherokee County"),
(u"CR", u"Chester County"),
(u"CF", u"Chesterfield County"),
(u"CN", u"Clarendon County"),
(u"CT", u"Colleton County"),
(u"DA", u"Darlington County"),
(u"DI", u"Dillon County"),
(u"DO", u"Dorchester County"),
(u"ED", u"Edgefield County"),
(u"FA", u"Fairfield County"),
(u"FL", u"Florence County"),
(u"GR", u"Georgetown County"),
(u"GV", u"Greenville County"),
(u"GW", u"Greenwood County"),
(u"HA", u"Hampton County"),
(u"HO", u"Horry County"),
(u"JA", u"Jasper County"),
(u"KE", u"Kershaw County"),
(u"LN", u"Lancaster County"),
(u"LU", u"Laurens County"),
(u"LE", u"Lee County"),
(u"LX", u"Lexington County"),
(u"MI", u"Marion County"),
(u"ML", u"Marlboro County"),
(u"MC", u"McCormick County"),
(u"NE", u"Newberry County"),
(u"OC", u"Oconee County"),
(u"OR", u"Orangeburg County"),
(u"PI", u"Pickens County"),
(u"RI", u"Richland County"),
(u"SA", u"Saluda County"),
(u"SP", u"Spartanburg County"),
(u"SU", u"Sumter County"),
(u"UN", u"Union County"),
(u"WI", u"Williamsburg County"),
(u"YO", u"York County"),
]),
((u"SD", u"South Dakota"), [
(u"AU", u"Aurora County"),
(u"BA", u"Beadle County"),
(u"BN", u"Bennett County"),
(u"BH", u"Bon Homme County"),
(u"BK", u"Brookings County"),
(u"BW", u"Brown County"),
(u"BU", u"Brule County"),
(u"BF", u"Buffalo County"),
(u"BT", u"Butte County"),
(u"CP", u"Campbell County"),
(u"CH", u"Charles Mix County"),
(u"CK", u"Clark County"),
(u"CY", u"Clay County"),
(u"CD", u"Codington County"),
(u"CO", u"Corson County"),
(u"CU", u"Custer County"),
(u"DV", u"Davison County"),
(u"DY", u"Day County"),
(u"DU", u"Deuel County"),
(u"DW", u"Dewey County"),
(u"DO", u"Douglas County"),
(u"ED", u"Edmunds County"),
(u"FL", u"Fall River County"),
(u"FU", u"Faulk County"),
(u"GA", u"Grant County"),
(u"GE", u"Gregory County"),
(u"HA", u"Haakon County"),
(u"HM", u"Hamlin County"),
(u"HD", u"Hand County"),
(u"HS", u"Hanson County"),
(u"HR", u"Harding County"),
(u"HG", u"Hughes County"),
(u"HT", u"Hutchinson County"),
(u"HY", u"Hyde County"),
(u"JA", u"Jackson County"),
(u"JE", u"Jerauld County"),
(u"JO", u"Jones County"),
(u"KI", u"Kingsbury County"),
(u"LK", u"Lake County"),
(u"LW", u"Lawrence County"),
(u"LI", u"Lincoln County"),
(u"LY", u"Lyman County"),
(u"MS", u"Marshall County"),
(u"MC", u"McCook County"),
(u"MP", u"McPherson County"),
(u"MD", u"Meade County"),
(u"ML", u"Mellette County"),
(u"ME", u"Miner County"),
(u"MN", u"Minnehaha County"),
(u"MO", u"Moody County"),
(u"PN", u"Pennington County"),
(u"PR", u"Perkins County"),
(u"PO", u"Potter County"),
(u"RO", u"Roberts County"),
(u"SA", u"Sanborn County"),
(u"SH", u"Shannon County"),
(u"SP", u"Spink County"),
(u"ST", u"Stanley County"),
(u"SU", u"Sully County"),
(u"TO", u"Todd County"),
(u"TR", u"Tripp County"),
(u"TU", u"Turner County"),
(u"UN", u"Union County"),
(u"WA", u"Walworth County"),
(u"YA", u"Yankton County"),
(u"ZI", u"Ziebach County"),
]),
((u"TN", u"Tennessee"), [
(u"AN", u"Anderson County"),
(u"BD", u"Bedford County"),
(u"BN", u"Benton County"),
(u"BE", u"Bledsoe County"),
(u"BO", u"Blount County"),
(u"BR", u"Bradley County"),
(u"CM", u"Campbell County"),
(u"CN", u"Cannon County"),
(u"CR", u"Carroll County"),
(u"CT", u"Carter County"),
(u"CA", u"Cheatham County"),
(u"CS", u"Chester County"),
(u"CI", u"Claiborne County"),
(u"CY", u"Clay County"),
(u"CE", u"Cocke County"),
(u"CF", u"Coffee County"),
(u"CK", u"Crockett County"),
(u"CU", u"Cumberland County"),
(u"DA", u"Davidson County"),
(u"DE", u"DeKalb County"),
(u"DC", u"Decatur County"),
(u"DI", u"Dickson County"),
(u"DY", u"Dyer County"),
(u"FA", u"Fayette County"),
(u"FE", u"Fentress County"),
(u"FR", u"Franklin County"),
(u"GB", u"Gibson County"),
(u"GL", u"Giles County"),
(u"GA", u"Grainger County"),
(u"GE", u"Greene County"),
(u"GU", u"Grundy County"),
(u"HB", u"Hamblen County"),
(u"HL", u"Hamilton County"),
(u"HC", u"Hancock County"),
(u"HA", u"Hardeman County"),
(u"HI", u"Hardin County"),
(u"HW", u"Hawkins County"),
(u"HY", u"Haywood County"),
(u"HS", u"Henderson County"),
(u"HR", u"Henry County"),
(u"HN", u"Hickman County"),
(u"HO", u"Houston County"),
(u"HU", u"Humphreys County"),
(u"JA", u"Jackson County"),
(u"JE", u"Jefferson County"),
(u"JO", u"Johnson County"),
(u"KN", u"Knox County"),
(u"LK", u"Lake County"),
(u"LU", u"Lauderdale County"),
(u"LW", u"Lawrence County"),
(u"LE", u"Lewis County"),
(u"LI", u"Lincoln County"),
(u"LO", u"Loudon County"),
(u"MC", u"Macon County"),
(u"MD", u"Madison County"),
(u"MI", u"Marion County"),
(u"MS", u"Marshall County"),
(u"MU", u"Maury County"),
(u"MM", u"McMinn County"),
(u"MA", u"McNairy County"),
(u"ME", u"Meigs County"),
(u"MR", u"Monroe County"),
(u"MT", u"Montgomery County"),
(u"MO", u"Moore County"),
(u"MG", u"Morgan County"),
(u"OB", u"Obion County"),
(u"OV", u"Overton County"),
(u"PE", u"Perry County"),
(u"PI", u"Pickett County"),
(u"PO", u"Polk County"),
(u"PU", u"Putnam County"),
(u"RH", u"Rhea County"),
(u"RA", u"Roane County"),
(u"RB", u"Robertson County"),
(u"RU", u"Rutherford County"),
(u"SC", u"Scott County"),
(u"SQ", u"Sequatchie County"),
(u"SV", u"Sevier County"),
(u"SY", u"Shelby County"),
(u"SH", u"Smith County"),
(u"SA", u"Stewart County"),
(u"SL", u"Sullivan County"),
(u"SN", u"Sumner County"),
(u"TI", u"Tipton County"),
(u"TR", u"Trousdale County"),
(u"UC", u"Unicoi County"),
(u"UO", u"Union County"),
(u"VA", u"Van Buren County"),
(u"WR", u"Warren County"),
(u"WI", u"Washington County"),
(u"WY", u"Wayne County"),
(u"WE", u"Weakley County"),
(u"WH", u"White County"),
(u"WL", u"Williamson County"),
(u"WO", u"Wilson County"),
]),
((u"TX", u"Texas"), [
(u"AE", u"Anderson County"),
(u"AR", u"Andrews County"),
(u"AG", u"Angelina County"),
(u"AA", u"Aransas County"),
(u"AC", u"Archer County"),
(u"AM", u"Armstrong County"),
(u"AT", u"Atascosa County"),
(u"AU", u"Austin County"),
(u"BY", u"Bailey County"),
(u"BA", u"Bandera County"),
(u"BP", u"Bastrop County"),
(u"BR", u"Baylor County"),
(u"BE", u"Bee County"),
(u"BL", u"Bell County"),
(u"BX", u"Bexar County"),
(u"BC", u"Blanco County"),
(u"BD", u"Borden County"),
(u"BQ", u"Bosque County"),
(u"BW", u"Bowie County"),
(u"BI", u"Brazoria County"),
(u"BZ", u"Brazos County"),
(u"BS", u"Brewster County"),
(u"BO", u"Briscoe County"),
(u"BK", u"Brooks County"),
(u"BN", u"Brown County"),
(u"BU", u"Burleson County"),
(u"BT", u"Burnet County"),
(u"CW", u"Caldwell County"),
(u"CU", u"Calhoun County"),
(u"AL", u"Callahan County"),
(u"CA", u"Cameron County"),
(u"CP", u"Camp County"),
(u"CN", u"Carson County"),
(u"CS", u"Cass County"),
(u"AS", u"Castro County"),
(u"CH", u"Chambers County"),
(u"CK", u"Cherokee County"),
(u"CD", u"Childress County"),
(u"CY", u"Clay County"),
(u"CC", u"Cochran County"),
(u"OK", u"Coke County"),
(u"CM", u"Coleman County"),
(u"CI", u"Collin County"),
(u"CG", u"Collingsworth County"),
(u"CO", u"Colorado County"),
(u"OM", u"Comal County"),
(u"CE", u"Comanche County"),
(u"ON", u"Concho County"),
(u"OO", u"Cooke County"),
(u"CL", u"Coryell County"),
(u"OT", u"Cottle County"),
(u"CR", u"Crane County"),
(u"CT", u"Crockett County"),
(u"CB", u"Crosby County"),
(u"UL", u"Culberson County"),
(u"DL", u"Dallam County"),
(u"DS", u"Dallas County"),
(u"DW", u"Dawson County"),
(u"DE", u"DeWitt County"),
(u"DI", u"Deaf Smith County"),
(u"DT", u"Delta County"),
(u"DN", u"Denton County"),
(u"DC", u"Dickens County"),
(u"DM", u"Dimmit County"),
(u"DO", u"Donley County"),
(u"DU", u"Duval County"),
(u"EA", u"Eastland County"),
(u"EC", u"Ector County"),
(u"ED", u"Edwards County"),
(u"EP", u"El Paso County"),
(u"EI", u"Ellis County"),
(u"ER", u"Erath County"),
(u"FL", u"Falls County"),
(u"FI", u"Fannin County"),
(u"FT", u"Fayette County"),
(u"FH", u"Fisher County"),
(u"FY", u"Floyd County"),
(u"FD", u"Foard County"),
(u"FR", u"Fort Bend County"),
(u"FK", u"Franklin County"),
(u"FE", u"Freestone County"),
(u"FO", u"Frio County"),
(u"GS", u"Gaines County"),
(u"GV", u"Galveston County"),
(u"GR", u"Garza County"),
(u"GL", u"Gillespie County"),
(u"GC", u"Glasscock County"),
(u"GI", u"Goliad County"),
(u"GA", u"Gonzales County"),
(u"GY", u"Gray County"),
(u"GO", u"Grayson County"),
(u"GE", u"Gregg County"),
(u"GM", u"Grimes County"),
(u"GU", u"Guadalupe County"),
(u"HE", u"Hale County"),
(u"HA", u"Hall County"),
(u"HM", u"Hamilton County"),
(u"HF", u"Hansford County"),
(u"RD", u"Hardeman County"),
(u"HN", u"Hardin County"),
(u"RR", u"Harris County"),
(u"HR", u"Harrison County"),
(u"HL", u"Hartley County"),
(u"HK", u"Haskell County"),
(u"HY", u"Hays County"),
(u"HH", u"Hemphill County"),
(u"HD", u"Henderson County"),
(u"HG", u"Hidalgo County"),
(u"HI", u"Hill County"),
(u"HC", u"Hockley County"),
(u"HO", u"Hood County"),
(u"HP", u"Hopkins County"),
(u"HS", u"Houston County"),
(u"HW", u"Howard County"),
(u"HU", u"Hudspeth County"),
(u"HT", u"Hunt County"),
(u"UT", u"Hutchinson County"),
(u"IR", u"Irion County"),
(u"JK", u"Jack County"),
(u"JA", u"Jackson County"),
(u"JR", u"Jasper County"),
(u"JF", u"Jeff Davis County"),
(u"JE", u"Jefferson County"),
(u"JG", u"Jim Hogg County"),
(u"JW", u"Jim Wells County"),
(u"JH", u"Johnson County"),
(u"JN", u"Jones County"),
(u"KS", u"Karnes County"),
(u"KU", u"Kaufman County"),
(u"KD", u"Kendall County"),
(u"KE", u"Kenedy County"),
(u"KT", u"Kent County"),
(u"KR", u"Kerr County"),
(u"KM", u"Kimble County"),
(u"KG", u"King County"),
(u"KN", u"Kinney County"),
(u"KL", u"Kleberg County"),
(u"KX", u"Knox County"),
(u"LS", u"La Salle County"),
(u"LR", u"Lamar County"),
(u"LB", u"Lamb County"),
(u"LP", u"Lampasas County"),
(u"LA", u"Lavaca County"),
(u"LE", u"Lee County"),
(u"LN", u"Leon County"),
(u"LT", u"Liberty County"),
(u"LO", u"Limestone County"),
(u"LM", u"Lipscomb County"),
(u"LK", u"Live Oak County"),
(u"LL", u"Llano County"),
(u"LI", u"Loving County"),
(u"LU", u"Lubbock County"),
(u"LY", u"Lynn County"),
(u"AD", u"Madison County"),
(u"MN", u"Marion County"),
(u"MT", u"Martin County"),
(u"MA", u"Mason County"),
(u"MD", u"Matagorda County"),
(u"MV", u"Maverick County"),
(u"MC", u"McCulloch County"),
(u"ML", u"McLennan County"),
(u"MM", u"McMullen County"),
(u"ME", u"Medina County"),
(u"EN", u"Menard County"),
(u"ID", u"Midland County"),
(u"MI", u"Milam County"),
(u"MS", u"Mills County"),
(u"MH", u"Mitchell County"),
(u"MU", u"Montague County"),
(u"MG", u"Montgomery County"),
(u"MO", u"Moore County"),
(u"MR", u"Morris County"),
(u"MY", u"Motley County"),
(u"NC", u"Nacogdoches County"),
(u"NV", u"Navarro County"),
(u"NE", u"Newton County"),
(u"NO", u"Nolan County"),
(u"NU", u"Nueces County"),
(u"OC", u"Ochiltree County"),
(u"OL", u"Oldham County"),
(u"OR", u"Orange County"),
(u"PO", u"Palo Pinto County"),
(u"PN", u"Panola County"),
(u"PR", u"Parker County"),
(u"PM", u"Parmer County"),
(u"PE", u"Pecos County"),
(u"PK", u"Polk County"),
(u"PT", u"Potter County"),
(u"PS", u"Presidio County"),
(u"RI", u"Rains County"),
(u"RA", u"Randall County"),
(u"RG", u"Reagan County"),
(u"RL", u"Real County"),
(u"RV", u"Red River County"),
(u"RE", u"Reeves County"),
(u"RF", u"Refugio County"),
(u"RS", u"Roberts County"),
(u"RO", u"Robertson County"),
(u"RC", u"Rockwall County"),
(u"RN", u"Runnels County"),
(u"RK", u"Rusk County"),
(u"SB", u"Sabine County"),
(u"SG", u"San Augustine County"),
(u"SJ", u"San Jacinto County"),
(u"SP", u"San Patricio County"),
(u"SS", u"San Saba County"),
(u"SH", u"Schleicher County"),
(u"SU", u"Scurry County"),
(u"SC", u"Shackelford County"),
(u"SY", u"Shelby County"),
(u"SN", u"Sherman County"),
(u"SM", u"Smith County"),
(u"SV", u"Somervell County"),
(u"SR", u"Starr County"),
(u"SE", u"Stephens County"),
(u"SI", u"Sterling County"),
(u"SA", u"Stonewall County"),
(u"ST", u"Sutton County"),
(u"SW", u"Swisher County"),
(u"TN", u"Tarrant County"),
(u"TA", u"Taylor County"),
(u"TL", u"Terrell County"),
(u"TE", u"Terry County"),
(u"TH", u"Throckmorton County"),
(u"TU", u"Titus County"),
(u"TG", u"Tom Green County"),
(u"TV", u"Travis County"),
(u"TR", u"Trinity County"),
(u"TY", u"Tyler County"),
(u"US", u"Upshur County"),
(u"UP", u"Upton County"),
(u"UV", u"Uvalde County"),
(u"VL", u"Val Verde County"),
(u"VN", u"Van Zandt County"),
(u"VI", u"Victoria County"),
(u"WK", u"Walker County"),
(u"WR", u"Waller County"),
(u"WD", u"Ward County"),
(u"WH", u"Washington County"),
(u"WB", u"Webb County"),
(u"WN", u"Wharton County"),
(u"WL", u"Wheeler County"),
(u"WC", u"Wichita County"),
(u"WG", u"Wilbarger County"),
(u"WY", u"Willacy County"),
(u"WM", u"Williamson County"),
(u"WS", u"Wilson County"),
(u"WI", u"Winkler County"),
(u"WE", u"Wise County"),
(u"WO", u"Wood County"),
(u"YA", u"Yoakum County"),
(u"YU", u"Young County"),
(u"ZP", u"Zapata County"),
(u"ZV", u"Zavala County"),
]),
((u"UT", u"Utah"), [
(u"BV", u"Beaver County"),
(u"BE", u"Box Elder County"),
(u"CA", u"Cache County"),
(u"CR", u"Carbon County"),
(u"DG", u"Daggett County"),
(u"DA", u"Davis County"),
(u"DU", u"Duchesne County"),
(u"EM", u"Emery County"),
(u"GA", u"Garfield County"),
(u"GR", u"Grand County"),
(u"RN", u"Iron County"),
(u"JU", u"Juab County"),
(u"KA", u"Kane County"),
(u"MD", u"Millard County"),
(u"MN", u"Morgan County"),
(u"PT", u"Piute County"),
(u"RH", u"Rich County"),
(u"SL", u"Salt Lake County"),
(u"SJ", u"San Juan County"),
(u"SP", u"Sanpete County"),
(u"SE", u"Sevier County"),
(u"SU", u"Summit County"),
(u"TE", u"Tooele County"),
(u"UN", u"Uintah County"),
(u"UT", u"Utah County"),
(u"WA", u"Wasatch County"),
(u"WN", u"Washington County"),
(u"WE", u"Wayne County"),
(u"WB", u"Weber County"),
]),
((u"VT", u"Vermont"), [
(u"AD", u"Addison County"),
(u"BE", u"Bennington County"),
(u"CA", u"Caledonia County"),
(u"CH", u"Chittenden County"),
(u"ES", u"Essex County"),
(u"FR", u"Franklin County"),
(u"GR", u"Grand Isle County"),
(u"LA", u"Lamoille County"),
(u"OA", u"Orange County"),
(u"OL", u"Orleans County"),
(u"RU", u"Rutland County"),
(u"WA", u"Washington County"),
(u"WH", u"Windham County"),
(u"WS", u"Windsor County"),
]),
((u"VA", u"Virginia"), [
(u"AC", u"Accomack County"),
(u"AB", u"Albemarle County"),
(u"AX", u"Alexandria"),
(u"AL", u"Alleghany County"),
(u"AI", u"Amelia County"),
(u"AH", u"Amherst County"),
(u"AP", u"Appomattox County"),
(u"AR", u"Arlington County"),
(u"AU", u"Augusta County"),
(u"BA", u"Bath County"),
(u"BD", u"Bedford County"),
(u"BC", u"Bedford"),
(u"BL", u"Bland County"),
(u"BO", u"Botetourt County"),
(u"BI", u"Bristol"),
(u"BU", u"Brunswick County"),
(u"BH", u"Buchanan County"),
(u"BK", u"Buckingham County"),
(u"BE", u"Buena Vista"),
(u"CM", u"Campbell County"),
(u"CI", u"Caroline County"),
(u"CL", u"Carroll County"),
(u"CC", u"Charles City County"),
(u"CT", u"Charlotte County"),
(u"CE", u"Charlottesville"),
(u"CS", u"Chesapeake"),
(u"CD", u"Chesterfield County"),
(u"CK", u"Clarke County"),
(u"CH", u"Colonial Heights"),
(u"CV", u"Covington"),
(u"CG", u"Craig County"),
(u"CP", u"Culpeper County"),
(u"CU", u"Cumberland County"),
(u"DA", u"Danville"),
(u"DC", u"Dickenson County"),
(u"DN", u"Dinwiddie County"),
(u"EM", u"Emporia"),
(u"ES", u"Essex County"),
(u"FX", u"Fairfax County"),
(u"FC", u"Fairfax"),
(u"FU", u"Falls Church"),
(u"FQ", u"Fauquier County"),
(u"FO", u"Floyd County"),
(u"FV", u"Fluvanna County"),
(u"FR", u"Franklin"),
(u"FN", u"Franklin County"),
(u"FK", u"Frederick County"),
(u"FB", u"Fredericksburg"),
(u"GA", u"Galax"),
(u"GI", u"Giles County"),
(u"GL", u"Gloucester County"),
(u"GO", u"Goochland County"),
(u"GY", u"Grayson County"),
(u"GE", u"Greene County"),
(u"GS", u"Greensville County"),
(u"HL", u"Halifax County"),
(u"HM", u"Hampton"),
(u"HV", u"Hanover County"),
(u"HS", u"Harrisonburg"),
(u"HC", u"Henrico County"),
(u"HY", u"Henry County"),
(u"HA", u"Highland County"),
(u"HW", u"Hopewell"),
(u"IS", u"Isle of Wight County"),
(u"JA", u"James City County"),
(u"KG", u"King George County"),
(u"KW", u"King William County"),
(u"KA", u"King and Queen County"),
(u"LA", u"Lancaster County"),
(u"LE", u"Lee County"),
(u"LX", u"Lexington"),
(u"LD", u"Loudoun County"),
(u"LI", u"Louisa County"),
(u"LN", u"Lunenburg County"),
(u"LY", u"Lynchburg"),
(u"MD", u"Madison County"),
(u"MS", u"Manassas"),
(u"MP", u"Manassas Park"),
(u"MR", u"Martinsville"),
(u"MT", u"Mathews County"),
(u"ME", u"Mecklenburg County"),
(u"MI", u"Middlesex County"),
(u"MO", u"Montgomery County"),
(u"NL", u"Nelson County"),
(u"NK", u"New Kent County"),
(u"NN", u"Newport News"),
(u"NF", u"Norfolk"),
(u"NA", u"Northampton County"),
(u"NU", u"Northumberland County"),
(u"NC", u"Norton"),
(u"NY", u"Nottoway County"),
(u"OR", u"Orange County"),
(u"PA", u"Page County"),
(u"PK", u"Patrick County"),
(u"PB", u"Petersburg"),
(u"PS", u"Pittsylvania County"),
(u"PQ", u"Poquoson"),
(u"PR", u"Portsmouth"),
(u"PH", u"Powhatan County"),
(u"PD", u"Prince Edward County"),
(u"PG", u"Prince George County"),
(u"PW", u"Prince William County"),
(u"PU", u"Pulaski County"),
(u"RD", u"Radford"),
(u"RP", u"Rappahannock County"),
(u"RC", u"Richmond"),
(u"RI", u"Richmond County"),
(u"RE", u"Roanoke County"),
(u"RO", u"Roanoke"),
(u"RB", u"Rockbridge County"),
(u"RG", u"Rockingham County"),
(u"RU", u"Russell County"),
(u"SE", u"Salem"),
(u"SC", u"Scott County"),
(u"SN", u"Shenandoah County"),
(u"SM", u"Smyth County"),
(u"SA", u"Southampton County"),
(u"SP", u"Spotsylvania County"),
(u"SF", u"Stafford County"),
(u"SU", u"Staunton"),
(u"SO", u"Suffolk"),
(u"SR", u"Surry County"),
(u"SS", u"Sussex County"),
(u"TA", u"Tazewell County"),
(u"VI", u"Virginia Beach"),
(u"WR", u"Warren County"),
(u"WG", u"Washington County"),
(u"WS", u"Waynesboro"),
(u"WM", u"Westmoreland County"),
(u"WL", u"Williamsburg"),
(u"WH", u"Winchester"),
(u"WI", u"Wise County"),
(u"WY", u"Wythe County"),
(u"YO", u"York County"),
]),
((u"WA", u"Washington"), [
(u"AD", u"Adams County"),
(u"AS", u"Asotin County"),
(u"BE", u"Benton County"),
(u"CH", u"Chelan County"),
(u"CL", u"Clallam County"),
(u"CR", u"Clark County"),
(u"CM", u"Columbia County"),
(u"CW", u"Cowlitz County"),
(u"DO", u"Douglas County"),
(u"FE", u"Ferry County"),
(u"FR", u"Franklin County"),
(u"GF", u"Garfield County"),
(u"GN", u"Grant County"),
(u"GY", u"Grays Harbor County"),
(u"IS", u"Island County"),
(u"JE", u"Jefferson County"),
(u"KN", u"King County"),
(u"KS", u"Kitsap County"),
(u"KT", u"Kittitas County"),
(u"KL", u"Klickitat County"),
(u"LE", u"Lewis County"),
(u"LI", u"Lincoln County"),
(u"MA", u"Mason County"),
(u"OK", u"Okanogan County"),
(u"PA", u"Pacific County"),
(u"PE", u"Pend Oreille County"),
(u"PI", u"Pierce County"),
(u"SA", u"San Juan County"),
(u"SG", u"Skagit County"),
(u"SM", u"Skamania County"),
(u"SN", u"Snohomish County"),
(u"SP", u"Spokane County"),
(u"ST", u"Stevens County"),
(u"TH", u"Thurston County"),
(u"WH", u"Wahkiakum County"),
(u"WL", u"Walla Walla County"),
(u"WA", u"Whatcom County"),
(u"WI", u"Whitman County"),
(u"YA", u"Yakima County"),
]),
((u"WV", u"West Virginia"), [
(u"BB", u"Barbour County"),
(u"BE", u"Berkeley County"),
(u"BN", u"Boone County"),
(u"BX", u"Braxton County"),
(u"BO", u"Brooke County"),
(u"CB", u"Cabell County"),
(u"CH", u"Calhoun County"),
(u"CY", u"Clay County"),
(u"DO", u"Doddridge County"),
(u"FA", u"Fayette County"),
(u"GI", u"Gilmer County"),
(u"GA", u"Grant County"),
(u"GE", u"Greenbrier County"),
(u"HM", u"Hampshire County"),
(u"HN", u"Hancock County"),
(u"HD", u"Hardy County"),
(u"HR", u"Harrison County"),
(u"JA", u"Jackson County"),
(u"JE", u"Jefferson County"),
(u"KA", u"Kanawha County"),
(u"LE", u"Lewis County"),
(u"LI", u"Lincoln County"),
(u"LO", u"Logan County"),
(u"MI", u"Marion County"),
(u"MH", u"Marshall County"),
(u"MN", u"Mason County"),
(u"MC", u"McDowell County"),
(u"MR", u"Mercer County"),
(u"ML", u"Mineral County"),
(u"MO", u"Mingo County"),
(u"MG", u"Monongalia County"),
(u"ME", u"Monroe County"),
(u"MA", u"Morgan County"),
(u"NI", u"Nicholas County"),
(u"OH", u"Ohio County"),
(u"PE", u"Pendleton County"),
(u"PL", u"Pleasants County"),
(u"PO", u"Pocahontas County"),
(u"PR", u"Preston County"),
(u"PU", u"Putnam County"),
(u"RL", u"Raleigh County"),
(u"RN", u"Randolph County"),
(u"RI", u"Ritchie County"),
(u"RO", u"Roane County"),
(u"SU", u"Summers County"),
(u"TA", u"Taylor County"),
(u"TU", u"Tucker County"),
(u"TY", u"Tyler County"),
(u"UP", u"Upshur County"),
(u"WA", u"Wayne County"),
(u"WB", u"Webster County"),
(u"WT", u"Wetzel County"),
(u"WI", u"Wirt County"),
(u"WO", u"Wood County"),
(u"WY", u"Wyoming County"),
]),
((u"WI", u"Wisconsin"), [
(u"AD", u"Adams County"),
(u"AS", u"Ashland County"),
(u"BR", u"Barron County"),
(u"BY", u"Bayfield County"),
(u"BW", u"Brown County"),
(u"BF", u"Buffalo County"),
(u"BN", u"Burnett County"),
(u"CA", u"Calumet County"),
(u"CH", u"Chippewa County"),
(u"CL", u"Clark County"),
(u"CO", u"Columbia County"),
(u"CR", u"Crawford County"),
(u"DA", u"Dane County"),
(u"DD", u"Dodge County"),
(u"DO", u"Door County"),
(u"DG", u"Douglas County"),
(u"DN", u"Dunn County"),
(u"EA", u"Eau Claire County"),
(u"FL", u"Florence County"),
(u"FN", u"Fond du Lac County"),
(u"FR", u"Forest County"),
(u"GA", u"Grant County"),
(u"GN", u"Green County"),
(u"GL", u"Green Lake County"),
(u"IO", u"Iowa County"),
(u"IR", u"Iron County"),
(u"JA", u"Jackson County"),
(u"JE", u"Jefferson County"),
(u"JU", u"Juneau County"),
(u"KN", u"Kenosha County"),
(u"KW", u"Kewaunee County"),
(u"LA", u"La Crosse County"),
(u"LF", u"Lafayette County"),
(u"LN", u"Langlade County"),
(u"LI", u"Lincoln County"),
(u"MW", u"Manitowoc County"),
(u"MH", u"Marathon County"),
(u"MT", u"Marinette County"),
(u"MQ", u"Marquette County"),
(u"MN", u"Menominee County"),
(u"MU", u"Milwaukee County"),
(u"MO", u"Monroe County"),
(u"OC", u"Oconto County"),
(u"ON", u"Oneida County"),
(u"OU", u"Outagamie County"),
(u"OZ", u"Ozaukee County"),
(u"PE", u"Pepin County"),
(u"PI", u"Pierce County"),
(u"PL", u"Polk County"),
(u"PT", u"Portage County"),
(u"PC", u"Price County"),
(u"RA", u"Racine County"),
(u"RI", u"Richland County"),
(u"RO", u"Rock County"),
(u"RU", u"Rusk County"),
(u"SI", u"Saint Croix County"),
(u"SU", u"Sauk County"),
(u"SW", u"Sawyer County"),
(u"SA", u"Shawano County"),
(u"SE", u"Sheboygan County"),
(u"TA", u"Taylor County"),
(u"TR", u"Trempealeau County"),
(u"VE", u"Vernon County"),
(u"VI", u"Vilas County"),
(u"WL", u"Walworth County"),
(u"WR", u"Washburn County"),
(u"WN", u"Washington County"),
(u"WK", u"Waukesha County"),
(u"WP", u"Waupaca County"),
(u"WS", u"Waushara County"),
(u"WA", u"Winnebago County"),
(u"WO", u"Wood County"),
]),
((u"WY", u"Wyoming"), [
(u"AL", u"Albany County"),
(u"BI", u"Big Horn County"),
(u"CM", u"Campbell County"),
(u"CB", u"Carbon County"),
(u"CE", u"Converse County"),
(u"CK", u"Crook County"),
(u"FR", u"Fremont County"),
(u"GO", u"Goshen County"),
(u"HO", u"Hot Springs County"),
(u"JO", u"Johnson County"),
(u"LA", u"Laramie County"),
(u"LI", u"Lincoln County"),
(u"NA", u"Natrona County"),
(u"NI", u"Niobrara County"),
(u"PA", u"Park County"),
(u"PL", u"Platte County"),
(u"SH", u"Sheridan County"),
(u"SU", u"Sublette County"),
(u"SW", u"Sweetwater County"),
(u"TE", u"Teton County"),
(u"UI", u"Uinta County"),
(u"WA", u"Washakie County"),
(u"WE", u"Weston County"),
]),
]
|
#import matplotlib.pyplot as plt
# import torch
# from torchvision import datasets, transforms
# import helper
# image = Image.open('new_digit.png')
# image = image.resize((400, 400))
# new_image.save('image_400.jpg')
results = ['a','b']
for ite, (brackets) in results:
print(ite)
print(brackets)
#print(c)
|
CONST_TIMED_ROTATING_FILE_HANDLER = 'TimedRotatingFileHandler'
CONST_SOCKET_HANDLER = 'SocketHandler'
CONST_FILE_HANDLER = 'FileHandler'
CONST_ROTATING_FILE_HANDLER = 'RotatingFileHandler'
CONST_STREAM_HANDLER = 'StreamHandler'
CONST_NULL_HANDLER = 'NullHandler'
CONST_WATCHED_FILE_HANDLER = 'WatchedFileHandler'
CONST_DATAGRAM_HANDLER = 'DatagramHandler'
CONST_SYSLOG_HANDLER = 'SysLogHandler'
CONST_NT_EVENT_LOG_HANDLER = 'NTEventLogHandler'
CONST_SMTP_HANDLER = 'SMTPHandler'
CONST_MEMORY_HANDLER = 'MemoryHandler'
CONST_HTTP_HANDLER = 'HTTPHandler'
# Default Constants for SOKCET HANDLER
CONST_DEFAULT_HOST_IP = '54.67.35.135'
CONST_DEFAULT_PORT = 10020
|
def calc_pos(dna, temp):
n = len(dna)
m = len(temp)
pos = []
for i in range(n-m+1):
if dna[i:i+m] == temp:
pos.append(i+1)
return pos
fin = open('rosalind_subs.txt')
dna = fin.readline().strip()
temp = fin.readline().strip()
pos = calc_pos(dna, temp)
for i in pos:
print (i, end = " ")
print()
fin.close()
|
fitbitSettings = {
'ClientID': '',
'ClientSecret':'',
'CallbackUrl': '',
'OAuthAuthorizeUri':'',
'OAuthAccessRefreshTokenRequestUri': '',
'LoggingApp':'FitbitDataImporter',
'LoggingDirectory':'',
'LogFileName': 'FitbitDataImport.log'
}
fitbitDataConfigSettings = []
HEART_RATE_SETTINGS = {
'PrefixIndexName': 'fitbit-daily-activites-heart-rate-',
'IndexType':'heartrate',
'FieldName':'heartrate',
'ResourceName': 'activities/heart',
'DataIndex': 'activities-heart-intraday',
'DetailLevel': '1sec',
'DataType':'Heart Rate'
}
STEP_SETTINGS = {
'PrefixIndexName': 'fitbit-daily-activites-steps-',
'IndexType':'steps',
'FieldName':'steps',
'ResourceName': 'activities/steps',
'DataIndex': 'activities-steps-intraday',
'DetailLevel': '1min',
'DataType':'Steps'
}
SLEEP_SETTINGS = {
'PrefixIndexName': 'fitbit-daily-activites-sleep-',
'IndexType':'sleep',
'FieldName':'',
'ResourceName': 'activities/steps',
'DataIndex': 'sleep',
'DetailLevel': '1min',
'DataType':'Sleep'
}
fitbitDataConfigSettings.append(HEART_RATE_SETTINGS)
fitbitDataConfigSettings.append(STEP_SETTINGS)
fitbitDataConfigSettings.append(SLEEP_SETTINGS)
|
# -*- coding: utf-8 -*-
"""Untitled1.ipynb
Automatically generated by Colaboratory.
Original file is located at
https://colab.research.google.com/drive/1c4ELojr5RJIgfRft7MhpjXDLvmoQLe-A
"""
R = 4
C = 4
# Function to print the required traversal
def counterClockspiralPrint(m, n, matrix) :
k = 0; l = 0
# k - starting row index
# m - ending row index
# l - starting column index
# n - ending column index
# i - iterator
# initialize the count
count = 0
# total number of elements in matrix
total = m * n
while (k < m and l < n) :
if (count == total) :
break
# Print the first column from the remaining columns
for i in range(k, m) :
print(matrix[i][l], end = " ")
count += 1
l += 1
if (count == total) :
break
# Print the last row from the remaining rows
for i in range (l, n) :
print( matrix[m - 1][i], end = " ")
count += 1
m -= 1
if (count == total) :
break
# Print the last column from the remaining columns
if (k < m) :
for i in range(m - 1, k - 1, -1) :
print(matrix[i][n - 1], end = " ")
count += 1
n -= 1
if (count == total) :
break
# Print the first row from the remaining rows
if (l < n) :
for i in range(n - 1, l - 1, -1) :
print( matrix[k][i], end = " ")
count += 1
k += 1
matrix = [ [ 1, 2, 3, 4 ],
[ 5, 6, 7, 8 ],
[ 9, 10, 11, 12 ],
[ 13, 14, 15, 16 ] ]
counterClockspiralPrint(R, C, matrix)
|
"""Atomistic ToolKit (ATK)
Some useful tools in the daily life of atomistic simulations.
Maintained by Leopold Talirz ([email protected])
"""
|
#!/usr/bin/python3
# 存在重复
def containsDuplicate(nums: list) -> bool:
nums.sort()
for i in range(len(nums) - 1):
if nums[i] == nums[i + 1]:
return True
return False
if __name__ == '__main__':
arr = [1, 2, 3, 4]
print(arr)
flag = containsDuplicate(arr)
print(flag)
|
class UserResponse:
_raw_input = ""
_split_input = []
def __init__(self, prompt=""):
# get input with prompt
self._raw_input = input(prompt)
def get_key(self):
if self._raw_input == "":
return None
# if input is not null then slit it by space-characters and fetch index 0
self._split_input = self._raw_input.split()
return self._split_input[0]
def get_args(self):
# return all list items that are not the key
return self._split_input[1:]
|
def getMinimumUniqueSum(arr):
n = len(arr)
arr = sorted(arr)
unique = list(set(arr))
i = 0
if len(arr) != len(unique):
while len(arr) != len(unique):
temp = arr[i]
print(temp)
for j, item in enumerate(unique):
if temp == item:
temp = temp + 1
# if temp != x:
arr[i] = temp
unique.append(temp)
unique = sorted(unique)
arr = sorted(arr)
print(unique)
i = i + 1
sum = 0
for i in range(n):
sum = sum + unique[i]
return sum
#print(getMinimumUniqueSum([3, 2, 1, 2, 7, 2, 2, 2, 2]))
print(getMinimumUniqueSum([2,2,2,2,2,2,2,2,2,2,2]))
#print(getMinimumUniqueSum([2,2,2,2,2,2,2,2,2,2,2,1]))
#print(getMinimumUniqueSum([3,2,1,2,7]))
#print(getMinimumUniqueSum([2, 2, 2, 4, 5, 5, 5, 1, 10, 10, 10, 8, 2, 1, 20]))
|
class Complex(object):
def __init__(self, real, image):
self.real = real
self.image = image
def __mul__(self, other):
return Complex(
self.real * other.real - self.image * other.image,
self.real * other.image + self.image * other.real
)
def __str__(self):
return '%d+%di' % (self.real, self.image)
@staticmethod
def parse(s):
real, image = s.split('+')
image = image[:-1]
return Complex(int(real), int(image))
class Solution:
def complexNumberMultiply(self, a, b):
"""
:type a: str
:type b: str
:rtype: str
"""
return str(Complex.parse(a) * Complex.parse(b))
if __name__ == "__main__":
print(Solution().complexNumberMultiply("1+1i", "1+1i"))
print(Solution().complexNumberMultiply("1+-1i", "1+-1i"))
|
# -*- coding: utf-8 -*-
__version__ = "1.0"
__author__ = "Kacper Kowalik"
|
"""
URIs templates for resources exposed by the Weather API 2.5
"""
ICONS_BASE_URL = 'http://openweathermap.org/img/w/%s.png'
|
"""
PASSENGERS
"""
numPassengers = 26795
passenger_arriving = (
(4, 8, 6, 6, 2, 1, 1, 5, 5, 0, 0, 2, 0, 12, 5, 4, 3, 5, 7, 4, 0, 3, 4, 0, 1, 0), # 0
(12, 11, 10, 11, 6, 5, 4, 4, 3, 1, 0, 0, 0, 8, 5, 6, 5, 4, 4, 1, 2, 2, 1, 1, 0, 0), # 1
(5, 10, 9, 10, 2, 3, 5, 2, 3, 2, 1, 0, 0, 14, 11, 5, 1, 8, 3, 4, 1, 4, 4, 1, 2, 0), # 2
(6, 9, 9, 9, 7, 2, 4, 3, 6, 0, 1, 2, 0, 9, 6, 7, 4, 10, 2, 4, 3, 5, 0, 2, 3, 0), # 3
(8, 10, 8, 11, 8, 3, 2, 5, 4, 1, 4, 2, 0, 8, 8, 4, 4, 10, 0, 4, 5, 3, 2, 5, 0, 0), # 4
(8, 7, 6, 2, 7, 4, 3, 4, 3, 0, 0, 3, 0, 9, 13, 5, 7, 4, 1, 5, 3, 3, 1, 2, 1, 0), # 5
(4, 14, 9, 9, 6, 1, 6, 6, 7, 2, 4, 0, 0, 5, 9, 3, 4, 10, 7, 4, 5, 4, 2, 4, 0, 0), # 6
(9, 12, 8, 6, 7, 5, 4, 7, 5, 2, 0, 1, 0, 9, 8, 5, 7, 2, 7, 3, 1, 1, 0, 0, 3, 0), # 7
(10, 6, 7, 11, 9, 3, 4, 3, 2, 3, 0, 0, 0, 8, 9, 7, 8, 9, 6, 3, 3, 3, 2, 2, 0, 0), # 8
(12, 13, 13, 3, 7, 4, 3, 7, 5, 2, 1, 1, 0, 16, 9, 9, 4, 9, 8, 4, 3, 1, 4, 1, 2, 0), # 9
(10, 10, 16, 13, 9, 3, 2, 7, 2, 2, 2, 0, 0, 11, 14, 7, 6, 8, 6, 3, 1, 4, 2, 3, 1, 0), # 10
(9, 11, 8, 7, 8, 2, 5, 3, 4, 1, 2, 0, 0, 15, 8, 8, 13, 7, 5, 3, 4, 6, 5, 2, 2, 0), # 11
(15, 11, 6, 9, 11, 7, 1, 4, 6, 2, 4, 2, 0, 11, 8, 5, 8, 14, 6, 5, 4, 3, 4, 2, 2, 0), # 12
(11, 9, 11, 7, 12, 7, 7, 4, 6, 1, 0, 0, 0, 11, 10, 13, 9, 14, 7, 8, 2, 3, 5, 1, 2, 0), # 13
(9, 11, 8, 13, 7, 7, 4, 9, 5, 2, 4, 1, 0, 14, 8, 7, 5, 12, 6, 7, 3, 2, 2, 1, 1, 0), # 14
(11, 14, 8, 12, 12, 6, 6, 2, 5, 4, 0, 0, 0, 13, 10, 3, 7, 11, 9, 9, 2, 7, 3, 5, 0, 0), # 15
(10, 21, 14, 4, 10, 9, 5, 4, 5, 2, 2, 2, 0, 9, 11, 11, 9, 5, 6, 4, 6, 2, 4, 2, 0, 0), # 16
(13, 16, 7, 12, 11, 4, 6, 4, 5, 1, 0, 2, 0, 22, 11, 10, 11, 18, 8, 7, 2, 6, 5, 2, 1, 0), # 17
(9, 21, 12, 8, 8, 4, 11, 8, 7, 3, 2, 1, 0, 13, 18, 9, 8, 8, 9, 8, 3, 5, 5, 4, 2, 0), # 18
(14, 10, 10, 13, 6, 3, 5, 6, 6, 1, 2, 3, 0, 12, 7, 16, 8, 18, 10, 3, 3, 4, 7, 1, 1, 0), # 19
(15, 11, 15, 11, 10, 4, 4, 5, 4, 3, 2, 1, 0, 10, 16, 17, 9, 8, 4, 5, 7, 8, 2, 4, 1, 0), # 20
(16, 13, 14, 11, 11, 4, 12, 6, 7, 3, 1, 3, 0, 23, 10, 16, 8, 11, 8, 3, 2, 9, 4, 5, 1, 0), # 21
(15, 15, 9, 13, 13, 4, 6, 9, 9, 3, 1, 0, 0, 20, 12, 5, 10, 16, 7, 4, 4, 5, 2, 4, 1, 0), # 22
(16, 7, 14, 15, 14, 8, 4, 4, 8, 1, 3, 1, 0, 21, 13, 7, 9, 19, 8, 2, 4, 6, 4, 3, 1, 0), # 23
(18, 13, 7, 18, 16, 6, 5, 5, 4, 4, 5, 1, 0, 19, 10, 11, 8, 14, 9, 7, 5, 8, 5, 2, 2, 0), # 24
(17, 22, 13, 20, 13, 5, 9, 5, 6, 0, 2, 0, 0, 12, 5, 9, 3, 19, 10, 6, 4, 3, 3, 1, 0, 0), # 25
(13, 16, 21, 22, 6, 3, 4, 5, 6, 4, 1, 2, 0, 15, 10, 9, 5, 6, 5, 4, 5, 6, 1, 3, 1, 0), # 26
(10, 22, 7, 13, 12, 3, 5, 3, 7, 3, 2, 0, 0, 16, 9, 14, 5, 14, 6, 3, 7, 6, 4, 2, 1, 0), # 27
(8, 20, 6, 10, 15, 2, 4, 7, 3, 1, 1, 2, 0, 16, 15, 10, 8, 12, 8, 7, 4, 4, 4, 4, 1, 0), # 28
(12, 9, 10, 13, 16, 5, 5, 9, 3, 1, 2, 1, 0, 12, 12, 7, 6, 10, 8, 9, 6, 3, 2, 4, 1, 0), # 29
(13, 13, 8, 12, 6, 8, 3, 4, 6, 1, 0, 4, 0, 14, 24, 8, 9, 11, 6, 10, 8, 5, 4, 1, 1, 0), # 30
(11, 16, 13, 12, 13, 6, 7, 3, 4, 2, 3, 3, 0, 7, 15, 6, 8, 12, 7, 7, 2, 12, 7, 3, 1, 0), # 31
(14, 9, 25, 10, 14, 4, 2, 4, 7, 4, 2, 1, 0, 10, 10, 13, 13, 9, 5, 9, 1, 4, 5, 1, 2, 0), # 32
(11, 18, 7, 18, 11, 6, 4, 9, 5, 3, 1, 2, 0, 18, 13, 7, 9, 11, 6, 2, 4, 7, 4, 5, 0, 0), # 33
(12, 17, 7, 17, 11, 6, 2, 9, 5, 3, 3, 1, 0, 10, 7, 16, 9, 20, 8, 9, 2, 9, 2, 2, 2, 0), # 34
(18, 18, 15, 13, 14, 3, 3, 7, 6, 5, 1, 0, 0, 10, 9, 8, 9, 11, 8, 7, 3, 8, 1, 2, 2, 0), # 35
(14, 13, 18, 12, 6, 5, 4, 5, 8, 2, 2, 1, 0, 15, 17, 7, 5, 11, 7, 6, 1, 6, 6, 2, 0, 0), # 36
(14, 10, 17, 17, 11, 4, 8, 5, 3, 1, 4, 1, 0, 10, 16, 6, 4, 12, 3, 9, 2, 2, 7, 5, 0, 0), # 37
(15, 12, 18, 15, 5, 7, 3, 7, 9, 3, 1, 6, 0, 15, 9, 9, 9, 10, 8, 7, 4, 4, 5, 2, 1, 0), # 38
(13, 19, 15, 12, 9, 5, 5, 6, 7, 3, 2, 1, 0, 17, 18, 9, 6, 14, 7, 5, 4, 4, 7, 3, 4, 0), # 39
(11, 10, 10, 3, 13, 7, 12, 4, 5, 4, 3, 2, 0, 19, 17, 10, 5, 19, 5, 8, 3, 5, 7, 5, 1, 0), # 40
(14, 14, 10, 11, 12, 8, 7, 10, 5, 1, 2, 2, 0, 13, 7, 9, 5, 11, 7, 4, 1, 2, 4, 5, 2, 0), # 41
(22, 9, 11, 14, 17, 8, 5, 7, 5, 2, 1, 1, 0, 14, 9, 9, 4, 9, 3, 3, 5, 9, 5, 2, 2, 0), # 42
(20, 14, 13, 12, 17, 6, 7, 3, 5, 1, 5, 1, 0, 19, 8, 9, 7, 14, 4, 13, 5, 4, 5, 2, 0, 0), # 43
(11, 14, 7, 5, 5, 1, 3, 6, 4, 2, 2, 0, 0, 17, 15, 5, 8, 14, 11, 4, 2, 5, 1, 2, 2, 0), # 44
(19, 9, 10, 12, 6, 10, 2, 4, 8, 3, 1, 1, 0, 13, 14, 9, 4, 14, 7, 3, 2, 10, 2, 0, 1, 0), # 45
(18, 18, 14, 9, 9, 8, 7, 3, 5, 2, 2, 0, 0, 8, 13, 8, 8, 12, 1, 2, 1, 1, 1, 2, 0, 0), # 46
(17, 12, 13, 18, 12, 3, 4, 8, 4, 1, 1, 1, 0, 26, 10, 13, 9, 18, 6, 2, 5, 8, 5, 6, 1, 0), # 47
(14, 16, 16, 19, 5, 3, 7, 6, 2, 2, 2, 1, 0, 15, 9, 9, 10, 10, 9, 5, 5, 4, 6, 3, 1, 0), # 48
(11, 12, 6, 14, 11, 3, 6, 2, 4, 3, 3, 0, 0, 10, 14, 7, 10, 10, 7, 9, 4, 6, 4, 1, 1, 0), # 49
(12, 15, 11, 11, 6, 6, 2, 6, 5, 2, 3, 0, 0, 20, 17, 5, 10, 10, 4, 7, 4, 5, 5, 1, 1, 0), # 50
(14, 3, 10, 11, 11, 4, 7, 3, 7, 1, 1, 1, 0, 14, 12, 11, 4, 14, 4, 3, 2, 4, 5, 0, 1, 0), # 51
(8, 8, 12, 12, 5, 4, 6, 4, 8, 7, 1, 2, 0, 14, 17, 11, 8, 8, 6, 5, 2, 2, 7, 0, 2, 0), # 52
(13, 12, 10, 16, 9, 7, 7, 2, 10, 1, 4, 1, 0, 11, 11, 11, 8, 10, 6, 7, 5, 7, 0, 5, 1, 0), # 53
(17, 15, 11, 14, 11, 7, 5, 0, 5, 1, 0, 1, 0, 15, 6, 15, 7, 6, 9, 5, 2, 6, 5, 4, 1, 0), # 54
(14, 15, 14, 8, 11, 6, 6, 4, 5, 1, 4, 0, 0, 12, 11, 12, 7, 10, 4, 9, 3, 6, 6, 1, 2, 0), # 55
(15, 10, 9, 11, 7, 2, 6, 4, 11, 2, 1, 1, 0, 22, 13, 13, 11, 8, 7, 5, 4, 5, 6, 2, 2, 0), # 56
(12, 14, 5, 12, 9, 6, 7, 4, 6, 2, 3, 1, 0, 6, 11, 7, 8, 13, 11, 7, 7, 8, 1, 3, 3, 0), # 57
(26, 5, 8, 16, 7, 5, 4, 4, 5, 3, 4, 1, 0, 10, 20, 10, 7, 7, 6, 5, 6, 5, 2, 4, 0, 0), # 58
(7, 16, 9, 16, 9, 3, 6, 2, 7, 2, 3, 2, 0, 12, 16, 13, 7, 13, 4, 4, 3, 9, 3, 4, 1, 0), # 59
(19, 14, 9, 13, 9, 3, 5, 2, 4, 2, 0, 0, 0, 8, 12, 11, 6, 11, 2, 4, 5, 6, 4, 3, 2, 0), # 60
(14, 13, 8, 12, 6, 4, 4, 7, 3, 1, 0, 3, 0, 15, 13, 8, 9, 13, 5, 3, 3, 8, 2, 5, 0, 0), # 61
(13, 17, 19, 13, 8, 2, 5, 2, 8, 5, 2, 2, 0, 14, 12, 13, 11, 12, 3, 4, 6, 6, 5, 5, 0, 0), # 62
(21, 11, 14, 13, 12, 4, 6, 7, 10, 3, 5, 1, 0, 8, 10, 8, 3, 13, 2, 0, 4, 10, 4, 1, 0, 0), # 63
(16, 11, 14, 15, 5, 5, 9, 4, 3, 6, 0, 2, 0, 12, 9, 13, 8, 10, 10, 5, 2, 7, 4, 0, 4, 0), # 64
(19, 8, 9, 13, 7, 2, 6, 5, 8, 3, 5, 2, 0, 14, 15, 10, 9, 11, 5, 8, 4, 5, 4, 0, 1, 0), # 65
(12, 18, 10, 10, 13, 5, 2, 4, 4, 3, 4, 0, 0, 9, 11, 13, 5, 14, 12, 4, 5, 8, 2, 0, 0, 0), # 66
(13, 15, 12, 11, 9, 11, 9, 1, 7, 4, 1, 2, 0, 14, 11, 9, 9, 17, 6, 3, 4, 5, 2, 0, 0, 0), # 67
(11, 11, 12, 5, 7, 3, 4, 3, 11, 4, 4, 1, 0, 15, 13, 14, 4, 16, 6, 8, 3, 7, 4, 9, 1, 0), # 68
(21, 12, 16, 8, 10, 11, 4, 2, 9, 2, 5, 0, 0, 17, 9, 10, 7, 16, 4, 6, 6, 2, 4, 3, 0, 0), # 69
(14, 12, 10, 15, 8, 5, 5, 3, 10, 1, 1, 0, 0, 11, 14, 6, 7, 13, 6, 5, 4, 3, 4, 1, 0, 0), # 70
(13, 8, 8, 10, 10, 3, 5, 5, 4, 2, 4, 2, 0, 16, 6, 6, 8, 8, 2, 6, 1, 4, 3, 2, 2, 0), # 71
(8, 16, 8, 9, 10, 7, 5, 5, 0, 4, 3, 3, 0, 9, 15, 9, 16, 18, 7, 3, 5, 3, 3, 1, 3, 0), # 72
(14, 10, 6, 9, 10, 5, 7, 1, 7, 3, 3, 2, 0, 11, 13, 14, 12, 6, 9, 5, 3, 8, 8, 2, 1, 0), # 73
(16, 11, 17, 13, 11, 4, 4, 4, 3, 1, 2, 0, 0, 16, 17, 11, 7, 14, 5, 5, 2, 4, 8, 2, 0, 0), # 74
(15, 20, 14, 5, 12, 3, 3, 3, 4, 2, 1, 0, 0, 18, 12, 7, 11, 9, 5, 4, 5, 5, 2, 1, 1, 0), # 75
(18, 11, 12, 15, 13, 4, 8, 4, 2, 4, 5, 2, 0, 10, 18, 8, 7, 9, 10, 4, 3, 5, 5, 2, 3, 0), # 76
(17, 15, 10, 15, 7, 11, 11, 5, 3, 1, 1, 2, 0, 8, 11, 10, 11, 8, 3, 1, 4, 8, 4, 2, 1, 0), # 77
(13, 11, 10, 13, 13, 7, 7, 8, 7, 1, 2, 0, 0, 13, 12, 14, 7, 15, 6, 5, 5, 1, 5, 2, 2, 0), # 78
(18, 17, 16, 13, 7, 8, 3, 3, 5, 2, 3, 2, 0, 12, 11, 11, 3, 13, 0, 7, 5, 7, 6, 3, 1, 0), # 79
(19, 16, 15, 16, 9, 7, 4, 6, 4, 4, 5, 1, 0, 15, 14, 7, 8, 14, 9, 5, 4, 4, 3, 4, 1, 0), # 80
(18, 15, 9, 13, 6, 2, 4, 3, 7, 1, 2, 3, 0, 8, 10, 10, 12, 3, 6, 6, 2, 3, 4, 5, 1, 0), # 81
(11, 10, 14, 8, 9, 5, 7, 3, 5, 4, 2, 1, 0, 21, 10, 8, 8, 9, 8, 8, 4, 5, 4, 1, 3, 0), # 82
(14, 10, 17, 13, 13, 9, 5, 7, 9, 2, 1, 2, 0, 12, 12, 13, 8, 13, 4, 5, 3, 4, 2, 1, 1, 0), # 83
(15, 21, 11, 18, 8, 7, 2, 4, 1, 1, 0, 1, 0, 18, 11, 7, 8, 9, 6, 6, 0, 4, 4, 3, 1, 0), # 84
(11, 8, 17, 15, 12, 6, 6, 1, 9, 2, 1, 3, 0, 17, 13, 12, 5, 10, 6, 4, 2, 3, 2, 2, 1, 0), # 85
(14, 13, 15, 11, 5, 5, 3, 8, 7, 1, 0, 5, 0, 7, 20, 6, 7, 15, 6, 2, 4, 5, 3, 4, 1, 0), # 86
(17, 19, 8, 10, 8, 3, 1, 4, 1, 3, 0, 1, 0, 11, 17, 15, 6, 17, 5, 4, 4, 9, 4, 6, 1, 0), # 87
(13, 15, 9, 13, 13, 1, 5, 8, 4, 4, 2, 0, 0, 10, 13, 11, 5, 9, 3, 1, 2, 5, 7, 3, 1, 0), # 88
(20, 16, 14, 22, 11, 3, 6, 5, 4, 0, 1, 1, 0, 18, 11, 11, 8, 16, 5, 2, 10, 4, 2, 1, 0, 0), # 89
(19, 11, 8, 6, 9, 3, 6, 2, 6, 2, 0, 0, 0, 14, 15, 12, 8, 10, 6, 6, 5, 9, 7, 3, 1, 0), # 90
(10, 13, 15, 8, 7, 7, 3, 2, 6, 2, 1, 2, 0, 15, 10, 9, 5, 15, 1, 5, 2, 2, 1, 1, 2, 0), # 91
(10, 13, 11, 9, 13, 5, 5, 5, 8, 1, 1, 1, 0, 19, 10, 8, 6, 5, 9, 5, 2, 4, 4, 0, 0, 0), # 92
(10, 11, 11, 13, 4, 3, 1, 4, 4, 5, 4, 1, 0, 8, 12, 9, 8, 18, 7, 5, 2, 6, 7, 2, 0, 0), # 93
(13, 5, 9, 6, 8, 5, 7, 5, 6, 0, 0, 1, 0, 11, 6, 15, 10, 10, 8, 8, 4, 4, 3, 7, 1, 0), # 94
(21, 4, 9, 12, 8, 7, 4, 3, 7, 6, 1, 2, 0, 11, 20, 8, 8, 10, 0, 3, 4, 5, 3, 2, 0, 0), # 95
(5, 11, 7, 13, 15, 3, 5, 5, 5, 2, 1, 4, 0, 17, 9, 10, 8, 6, 4, 4, 5, 4, 2, 5, 0, 0), # 96
(19, 6, 10, 12, 15, 3, 4, 1, 5, 4, 1, 0, 0, 14, 6, 9, 4, 12, 7, 6, 4, 4, 5, 3, 1, 0), # 97
(15, 14, 6, 16, 11, 8, 4, 6, 7, 2, 0, 1, 0, 17, 8, 8, 11, 9, 3, 2, 1, 3, 1, 2, 0, 0), # 98
(14, 13, 11, 11, 17, 5, 4, 2, 6, 5, 1, 1, 0, 17, 11, 18, 12, 17, 3, 4, 7, 7, 3, 3, 0, 0), # 99
(10, 15, 11, 17, 12, 5, 5, 6, 2, 1, 1, 0, 0, 17, 10, 19, 8, 10, 6, 4, 5, 7, 2, 5, 0, 0), # 100
(13, 16, 8, 8, 7, 4, 7, 4, 6, 1, 0, 0, 0, 14, 8, 11, 6, 12, 8, 3, 2, 4, 3, 0, 1, 0), # 101
(13, 16, 5, 6, 10, 4, 4, 5, 1, 0, 4, 1, 0, 12, 11, 8, 5, 9, 7, 4, 3, 6, 3, 2, 3, 0), # 102
(16, 11, 10, 13, 13, 5, 6, 6, 5, 1, 1, 1, 0, 13, 13, 11, 9, 13, 3, 5, 3, 3, 4, 1, 1, 0), # 103
(10, 13, 16, 9, 13, 5, 4, 2, 3, 2, 2, 1, 0, 17, 10, 3, 10, 8, 4, 3, 3, 5, 4, 3, 1, 0), # 104
(16, 14, 11, 16, 15, 4, 5, 5, 9, 0, 1, 0, 0, 9, 14, 10, 9, 10, 0, 7, 6, 5, 3, 1, 1, 0), # 105
(15, 16, 10, 12, 6, 5, 3, 1, 5, 1, 0, 1, 0, 9, 9, 10, 6, 7, 5, 7, 6, 13, 7, 3, 0, 0), # 106
(9, 13, 10, 14, 12, 4, 8, 3, 6, 5, 2, 1, 0, 16, 16, 8, 6, 10, 6, 7, 6, 4, 3, 2, 2, 0), # 107
(16, 15, 8, 5, 7, 9, 3, 4, 6, 0, 2, 0, 0, 13, 12, 5, 4, 13, 2, 2, 0, 4, 4, 1, 0, 0), # 108
(11, 9, 12, 11, 8, 4, 7, 5, 5, 2, 0, 0, 0, 14, 6, 6, 2, 6, 4, 4, 3, 3, 8, 1, 0, 0), # 109
(17, 11, 13, 16, 13, 5, 4, 2, 6, 0, 0, 2, 0, 9, 13, 10, 4, 9, 5, 5, 3, 6, 2, 1, 0, 0), # 110
(17, 13, 7, 7, 7, 5, 2, 4, 4, 2, 1, 0, 0, 10, 11, 11, 9, 10, 4, 4, 2, 5, 4, 5, 0, 0), # 111
(13, 13, 11, 5, 7, 3, 3, 1, 6, 1, 2, 2, 0, 8, 15, 5, 8, 8, 6, 4, 1, 3, 3, 1, 2, 0), # 112
(10, 11, 7, 11, 9, 2, 5, 2, 6, 1, 2, 3, 0, 20, 8, 5, 4, 10, 3, 2, 7, 3, 4, 2, 0, 0), # 113
(13, 12, 12, 8, 10, 4, 5, 0, 3, 2, 2, 0, 0, 5, 15, 8, 6, 15, 3, 8, 1, 5, 3, 0, 0, 0), # 114
(9, 7, 7, 6, 15, 9, 2, 6, 5, 4, 1, 3, 0, 10, 17, 11, 3, 13, 6, 5, 4, 6, 6, 0, 0, 0), # 115
(11, 12, 9, 12, 4, 4, 6, 3, 4, 4, 2, 0, 0, 11, 17, 7, 5, 8, 5, 3, 3, 7, 1, 0, 0, 0), # 116
(7, 11, 10, 12, 13, 3, 2, 1, 6, 3, 3, 1, 0, 12, 10, 10, 1, 14, 4, 5, 7, 3, 3, 4, 1, 0), # 117
(11, 11, 8, 8, 11, 5, 3, 2, 1, 3, 0, 1, 0, 12, 15, 8, 4, 14, 3, 1, 7, 4, 4, 1, 3, 0), # 118
(8, 9, 10, 10, 8, 5, 1, 3, 5, 1, 2, 1, 0, 15, 12, 6, 5, 13, 6, 3, 4, 5, 4, 1, 2, 0), # 119
(14, 12, 10, 13, 7, 7, 5, 2, 6, 5, 1, 0, 0, 16, 15, 3, 8, 6, 3, 4, 2, 3, 3, 3, 2, 0), # 120
(14, 3, 12, 9, 13, 5, 7, 4, 4, 1, 2, 3, 0, 12, 12, 7, 7, 8, 3, 1, 3, 8, 0, 1, 0, 0), # 121
(9, 10, 9, 8, 8, 4, 6, 4, 9, 5, 3, 3, 0, 9, 9, 9, 8, 7, 7, 3, 1, 4, 4, 1, 1, 0), # 122
(14, 9, 9, 12, 7, 3, 8, 3, 3, 2, 2, 0, 0, 11, 9, 10, 8, 9, 6, 3, 6, 9, 5, 1, 0, 0), # 123
(6, 7, 11, 15, 9, 6, 5, 4, 7, 1, 2, 0, 0, 14, 15, 7, 4, 12, 6, 5, 3, 5, 4, 0, 0, 0), # 124
(11, 3, 9, 11, 11, 3, 9, 2, 5, 1, 3, 1, 0, 8, 9, 10, 8, 8, 2, 3, 7, 4, 4, 3, 0, 0), # 125
(11, 6, 11, 11, 8, 3, 3, 3, 5, 0, 2, 1, 0, 15, 8, 8, 5, 16, 5, 1, 3, 5, 3, 2, 3, 0), # 126
(10, 8, 10, 8, 12, 1, 4, 3, 8, 1, 1, 2, 0, 11, 12, 7, 3, 10, 5, 2, 1, 3, 4, 4, 0, 0), # 127
(11, 13, 13, 11, 15, 3, 3, 3, 4, 2, 3, 2, 0, 14, 12, 6, 6, 6, 3, 4, 3, 4, 6, 2, 1, 0), # 128
(14, 8, 15, 9, 8, 9, 4, 9, 5, 3, 2, 1, 0, 11, 11, 10, 6, 13, 4, 3, 4, 7, 3, 3, 1, 0), # 129
(14, 6, 7, 10, 7, 7, 3, 2, 5, 0, 5, 0, 0, 19, 6, 7, 2, 12, 6, 5, 5, 3, 5, 2, 0, 0), # 130
(16, 7, 14, 8, 7, 3, 1, 1, 4, 0, 4, 2, 0, 16, 12, 6, 11, 14, 12, 4, 2, 6, 6, 3, 1, 0), # 131
(9, 4, 9, 7, 10, 2, 5, 1, 4, 2, 3, 1, 0, 14, 11, 8, 7, 10, 3, 6, 3, 1, 2, 1, 1, 0), # 132
(14, 8, 9, 5, 12, 5, 3, 3, 6, 0, 0, 1, 0, 13, 10, 8, 9, 4, 0, 1, 4, 5, 3, 1, 2, 0), # 133
(7, 8, 7, 7, 16, 5, 2, 1, 6, 1, 3, 2, 0, 11, 14, 4, 3, 11, 2, 7, 6, 10, 2, 2, 1, 0), # 134
(10, 7, 9, 10, 10, 1, 4, 5, 3, 0, 2, 0, 0, 17, 10, 7, 9, 13, 7, 1, 5, 4, 4, 1, 0, 0), # 135
(11, 9, 9, 16, 7, 3, 0, 3, 8, 2, 4, 0, 0, 8, 11, 7, 9, 17, 3, 6, 3, 3, 2, 3, 1, 0), # 136
(20, 6, 11, 8, 7, 4, 3, 6, 3, 1, 1, 1, 0, 13, 13, 9, 5, 9, 5, 5, 5, 4, 5, 1, 1, 0), # 137
(6, 4, 11, 6, 6, 3, 4, 4, 6, 1, 4, 1, 0, 21, 9, 9, 5, 13, 4, 6, 1, 3, 4, 4, 1, 0), # 138
(10, 9, 13, 11, 8, 8, 3, 9, 7, 2, 0, 1, 0, 18, 15, 15, 1, 9, 4, 3, 5, 3, 3, 2, 0, 0), # 139
(6, 9, 7, 11, 9, 3, 4, 6, 1, 1, 1, 1, 0, 18, 10, 3, 3, 9, 2, 5, 6, 4, 4, 3, 0, 0), # 140
(8, 10, 12, 9, 8, 2, 1, 1, 5, 3, 3, 1, 0, 16, 19, 7, 6, 8, 6, 4, 2, 7, 4, 1, 0, 0), # 141
(7, 6, 11, 13, 14, 7, 0, 4, 6, 4, 2, 0, 0, 13, 8, 4, 7, 12, 3, 3, 5, 3, 3, 4, 2, 0), # 142
(7, 6, 12, 9, 7, 3, 4, 2, 3, 1, 0, 0, 0, 12, 3, 10, 4, 11, 3, 4, 0, 3, 2, 3, 1, 0), # 143
(9, 5, 14, 9, 8, 3, 1, 3, 4, 1, 1, 0, 0, 6, 12, 8, 5, 11, 5, 4, 3, 5, 1, 1, 1, 0), # 144
(17, 4, 14, 6, 11, 3, 1, 3, 4, 1, 2, 0, 0, 12, 12, 5, 5, 7, 5, 4, 2, 0, 3, 1, 0, 0), # 145
(21, 7, 6, 13, 4, 4, 4, 7, 3, 1, 2, 1, 0, 11, 11, 5, 4, 11, 2, 3, 4, 3, 7, 1, 0, 0), # 146
(9, 8, 9, 15, 11, 4, 3, 4, 1, 1, 1, 2, 0, 9, 13, 6, 3, 11, 6, 3, 4, 7, 3, 3, 1, 0), # 147
(14, 6, 8, 10, 10, 9, 1, 3, 4, 4, 1, 0, 0, 11, 12, 7, 3, 7, 6, 3, 4, 7, 2, 5, 0, 0), # 148
(10, 4, 8, 11, 7, 4, 1, 4, 5, 1, 3, 0, 0, 8, 8, 5, 5, 13, 5, 6, 5, 6, 2, 2, 0, 0), # 149
(11, 9, 7, 13, 13, 4, 0, 3, 5, 1, 1, 0, 0, 8, 12, 5, 7, 11, 4, 2, 1, 2, 2, 2, 0, 0), # 150
(10, 12, 16, 6, 10, 6, 5, 6, 6, 1, 1, 2, 0, 11, 7, 7, 6, 9, 5, 2, 4, 2, 2, 1, 0, 0), # 151
(13, 13, 12, 9, 6, 9, 3, 4, 5, 1, 2, 1, 0, 16, 14, 3, 5, 15, 4, 5, 4, 2, 3, 4, 1, 0), # 152
(8, 14, 6, 9, 11, 5, 3, 1, 4, 2, 0, 2, 0, 4, 10, 11, 4, 9, 5, 3, 1, 3, 5, 1, 1, 0), # 153
(6, 11, 9, 8, 11, 1, 5, 6, 6, 3, 4, 0, 0, 14, 9, 10, 4, 12, 2, 5, 3, 5, 3, 2, 0, 0), # 154
(9, 11, 10, 3, 11, 0, 6, 3, 2, 2, 3, 1, 0, 17, 2, 8, 3, 6, 3, 2, 5, 4, 3, 0, 1, 0), # 155
(13, 10, 4, 17, 11, 4, 2, 5, 3, 1, 1, 2, 0, 10, 10, 7, 4, 10, 4, 6, 3, 8, 3, 3, 0, 0), # 156
(10, 9, 10, 12, 6, 4, 2, 4, 5, 1, 1, 0, 0, 11, 10, 6, 5, 10, 5, 5, 2, 6, 3, 2, 1, 0), # 157
(13, 3, 7, 20, 11, 8, 2, 1, 5, 0, 0, 2, 0, 13, 12, 6, 11, 13, 5, 0, 5, 4, 5, 1, 0, 0), # 158
(15, 10, 10, 9, 8, 3, 5, 3, 3, 1, 1, 1, 0, 11, 5, 4, 7, 17, 3, 5, 5, 5, 5, 0, 0, 0), # 159
(9, 14, 8, 7, 15, 7, 1, 3, 4, 4, 1, 0, 0, 16, 4, 7, 6, 11, 4, 3, 1, 2, 2, 2, 0, 0), # 160
(10, 8, 12, 7, 13, 2, 6, 5, 1, 1, 0, 1, 0, 10, 10, 9, 5, 12, 5, 3, 4, 3, 3, 1, 1, 0), # 161
(11, 11, 15, 13, 13, 1, 4, 3, 1, 2, 1, 0, 0, 8, 4, 9, 2, 8, 4, 1, 1, 4, 5, 1, 3, 0), # 162
(15, 4, 9, 8, 4, 2, 2, 2, 5, 1, 0, 1, 0, 13, 7, 9, 4, 7, 4, 0, 3, 3, 4, 1, 1, 0), # 163
(6, 6, 9, 14, 9, 3, 4, 3, 4, 1, 2, 0, 0, 10, 5, 5, 2, 9, 1, 6, 1, 2, 5, 3, 1, 0), # 164
(9, 6, 10, 9, 13, 3, 5, 3, 2, 1, 1, 0, 0, 5, 5, 7, 4, 8, 6, 3, 2, 4, 0, 2, 1, 0), # 165
(10, 5, 8, 4, 12, 2, 3, 5, 7, 2, 1, 0, 0, 6, 8, 2, 5, 5, 3, 7, 3, 2, 4, 4, 1, 0), # 166
(12, 3, 6, 11, 4, 7, 2, 5, 3, 3, 0, 0, 0, 16, 6, 5, 1, 9, 5, 1, 2, 6, 4, 1, 0, 0), # 167
(7, 6, 5, 7, 5, 3, 2, 6, 3, 5, 2, 1, 0, 8, 5, 5, 4, 8, 1, 4, 0, 0, 3, 3, 0, 0), # 168
(2, 5, 5, 6, 8, 1, 2, 1, 4, 0, 2, 0, 0, 4, 11, 7, 2, 6, 3, 4, 1, 4, 2, 4, 2, 0), # 169
(11, 6, 9, 5, 8, 2, 5, 3, 3, 0, 1, 0, 0, 9, 6, 5, 9, 4, 1, 2, 5, 4, 4, 1, 1, 0), # 170
(12, 5, 4, 7, 6, 6, 5, 2, 2, 1, 1, 0, 0, 8, 8, 2, 6, 9, 2, 3, 0, 5, 1, 1, 1, 0), # 171
(8, 3, 7, 5, 2, 1, 2, 1, 5, 1, 0, 0, 0, 6, 2, 5, 3, 6, 3, 3, 4, 3, 3, 1, 0, 0), # 172
(10, 5, 8, 5, 13, 3, 1, 4, 3, 1, 0, 0, 0, 5, 8, 6, 4, 3, 2, 3, 4, 3, 5, 2, 2, 0), # 173
(7, 4, 1, 9, 11, 3, 2, 1, 0, 0, 2, 0, 0, 5, 7, 11, 4, 4, 3, 2, 0, 2, 0, 0, 0, 0), # 174
(5, 4, 6, 5, 5, 1, 2, 2, 9, 0, 1, 0, 0, 9, 3, 2, 2, 6, 2, 0, 2, 1, 3, 4, 1, 0), # 175
(8, 3, 2, 9, 7, 4, 2, 1, 0, 1, 3, 0, 0, 7, 7, 3, 2, 3, 3, 3, 2, 1, 2, 2, 0, 0), # 176
(9, 3, 6, 2, 5, 1, 2, 0, 7, 1, 1, 0, 0, 12, 8, 2, 3, 2, 2, 3, 1, 2, 2, 1, 0, 0), # 177
(3, 2, 10, 0, 6, 2, 0, 3, 2, 1, 2, 0, 0, 10, 2, 4, 2, 3, 3, 1, 4, 2, 2, 2, 0, 0), # 178
(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), # 179
)
station_arriving_intensity = (
(7.029211809720476, 7.735403983570434, 7.29579652145751, 8.700534883408807, 7.776559850653457, 4.394116904852274, 5.804449861523481, 6.514446642171193, 8.52613868703521, 5.541221021731318, 5.887371229439844, 6.857081109628643, 7.117432297609708), # 0
(7.496058012827964, 8.246084971802663, 7.777485227862214, 9.275201954587263, 8.291486472463932, 4.684377017659578, 6.187256517769172, 6.943319212067992, 9.089143456866074, 5.90657296918801, 6.2763345903385845, 7.309703325140097, 7.587708306415797), # 1
(7.9614122125716245, 8.754739239247371, 8.257259199766379, 9.847582786530712, 8.804548163249642, 4.9734791603174235, 6.568545911144986, 7.370475347066188, 9.64990152962857, 6.270479285028765, 6.663752408286839, 7.760525712874277, 8.056110759493567), # 2
(8.423460910405188, 9.259348702711026, 8.733215217047796, 10.415406970544904, 9.313726346402664, 5.260276871619158, 6.946805098307138, 7.79422162049231, 10.206189225289531, 6.631495777796654, 7.0480877765583365, 8.207759958902646, 8.520781928755916), # 3
(8.880390607782374, 9.757895279000085, 9.203450059584252, 10.976404097935598, 9.81700244531509, 5.543623690358135, 7.320521135911843, 8.212864605672882, 10.75578286381579, 6.988178256034751, 7.4278037884268056, 8.64961774929667, 8.979864086115745), # 4
(9.330387806156915, 10.248360884921025, 9.666060507253526, 11.528303760008551, 10.312357883378994, 5.822373155327701, 7.688181080615314, 8.62471087593443, 11.296458765174183, 7.339082528286129, 7.801363537165986, 9.084310770127807, 9.43149950348596), # 5
(9.771639006982534, 10.728727437280302, 10.119143339933412, 12.068835548069513, 10.79777408398646, 6.09537880532121, 8.048271989073768, 9.028067004603484, 11.825993249331543, 7.682764403093862, 8.167230116049597, 9.510050707467531, 9.87383045277945), # 6
(10.202330711712957, 11.196976852884385, 10.56079533750169, 12.595729053424249, 11.271232470529577, 6.36149417913201, 8.39928091794342, 9.421239565006573, 12.342162636254702, 8.017779689001022, 8.523866618351377, 9.925049247387301, 10.304999205909127), # 7
(10.62064942180191, 11.651091048539739, 10.989113279836156, 13.1067138673785, 11.730714466400421, 6.619572815553446, 8.739694923880478, 9.802535130470215, 12.842743245910489, 8.342684194550685, 8.86973613734505, 10.327518075958585, 10.723148034787885), # 8
(11.02478163870312, 12.089051941052832, 11.402193946814586, 13.599519581238038, 12.174201494991074, 6.868468253378878, 9.068001063541168, 10.170260274320949, 13.325511398265744, 8.65603372828592, 9.20330176630435, 10.71566887925284, 11.126419211328628), # 9
(11.412913863870306, 12.508841447230123, 11.798134118314776, 14.071875786308604, 12.599674979693622, 7.107034031401651, 9.382686393581697, 10.522721569885295, 13.7882434132873, 8.956384098749801, 9.523026598503003, 11.087713343341534, 11.512955007444255), # 10
(11.783232598757209, 12.90844148387809, 12.175030574214501, 14.521512073895957, 13.005116343900148, 7.334123688415116, 9.682237970658283, 10.85822559048978, 14.228715610941991, 9.242291114485408, 9.82737372721475, 11.441863154296136, 11.880897695047656), # 11
(12.133924344817538, 13.285833967803178, 12.530980094391557, 14.946158035305858, 13.38850701100273, 7.5485907632126175, 9.965142851427137, 11.17507890946093, 14.644704311196652, 9.512310584035802, 10.114806245713309, 11.776329998188096, 12.22838954605175), # 12
(12.463175603505027, 13.639000815811869, 12.864079458723728, 15.343543261844063, 13.747828404393443, 7.749288794587514, 10.22988809254448, 11.471588100125276, 15.033985834018106, 9.764998315944066, 10.383787247272418, 12.08932556108889, 12.55357283236943), # 13
(12.769172876273403, 13.965923944710624, 13.172425447088806, 15.71139734481631, 14.081061947464386, 7.935071321333148, 10.474960750666526, 11.746059735809345, 15.39433649937319, 9.998910118753269, 10.6327798251658, 12.379061529069986, 12.85458982591359), # 14
(13.050102664576398, 14.264585271305906, 13.45411483936456, 16.047449875528383, 14.386189063607633, 8.104791882242878, 10.698847882449478, 11.99680038983966, 15.723532627228748, 10.212601801006487, 10.860247072667189, 12.64374958820284, 13.129582798597134), # 15
(13.30415146986772, 14.532966712404187, 13.707244415428796, 16.349430445286004, 14.661191176215267, 8.257304016110044, 10.900036544549568, 12.222116635542745, 16.019350537551603, 10.404629171246796, 11.06465208305032, 12.881601424558916, 13.376694022332964), # 16
(13.529505793601107, 14.769050184811926, 13.929910955159293, 16.61506864539496, 14.904049708679375, 8.391461261728, 11.077013793622996, 12.420315046245145, 16.27956655030858, 10.573548038017254, 11.24445794958892, 13.090828724209679, 13.594065769033982), # 17
(13.724352137230287, 14.970817605335585, 14.120211238433834, 16.842094067160993, 15.112746084392025, 8.506117157890104, 11.228266686325993, 12.589702195273366, 16.501956985466535, 10.717914209860952, 11.398127765556712, 13.269643173226603, 13.779840310613086), # 18
(13.88687700220898, 15.136250890781643, 14.27624204513021, 17.02823630188984, 15.285261726745313, 8.600125243389693, 11.352282279314753, 12.728584655953943, 16.68429816299229, 10.83628349532096, 11.52412462422743, 13.416256457681136, 13.932159918983176), # 19
(14.015266889990915, 15.263331957956549, 14.396100155126206, 17.171224940887296, 15.419578059131322, 8.672339057020126, 11.44754762924551, 12.835269001613405, 16.82436640285268, 10.927211702940342, 11.62091161887481, 13.528880263644748, 14.049166866057154), # 20
(14.107708302029813, 15.350042723666784, 14.477882348299607, 17.26878957545908, 15.513676504942126, 8.72161213757475, 11.512549792774463, 12.908061805578273, 16.91993802501453, 10.989254641262178, 11.686951842772585, 13.60572627718891, 14.12900342374791), # 21
(14.162387739779412, 15.394365104718803, 14.5196854045282, 17.31865979691097, 15.565538487569807, 8.746798023846914, 11.54577582655784, 12.945269641175082, 16.968789349444684, 11.02096811882954, 11.720708389194478, 13.645006184385087, 14.16981186396836), # 22
(14.182550708679697, 15.39961303155007, 14.524892455418383, 17.324903137860087, 15.578824878445637, 8.75, 11.549725603163076, 12.949291358024693, 16.974896728395063, 11.024709181527207, 11.724941252026436, 13.649856607224509, 14.175), # 23
(14.197417378247815, 15.396551851851854, 14.524040740740743, 17.324134722222226, 15.586350659060795, 8.75, 11.547555337690634, 12.943700000000002, 16.974078333333335, 11.02241086419753, 11.724474410774413, 13.648720987654322, 14.175), # 24
(14.211970122296213, 15.390517832647463, 14.522359396433473, 17.322614454732513, 15.593710923832306, 8.75, 11.543278463648836, 12.932716049382718, 16.97246141975309, 11.01788637402835, 11.723548759196907, 13.646479195244629, 14.175), # 25
(14.226207826667249, 15.381603155006863, 14.519871467764064, 17.320359619341563, 15.600905415789548, 8.75, 11.53696140563221, 12.916546913580248, 16.97006672839506, 11.011210992226795, 11.722172677391198, 13.643161957018751, 14.175), # 26
(14.240129377203292, 15.3699, 14.5166, 17.3173875, 15.607933877961901, 8.75, 11.528670588235297, 12.895400000000002, 16.966915, 11.00246, 11.720354545454546, 13.638800000000003, 14.175), # 27
(14.253733659746702, 15.355500548696845, 14.51256803840878, 17.313715380658437, 15.614796053378763, 8.75, 11.518472436052612, 12.869482716049385, 16.963026975308644, 10.9917086785551, 11.718102743484225, 13.633424051211708, 14.175), # 28
(14.26701956013985, 15.338496982167355, 14.50779862825789, 17.30936054526749, 15.62149168506951, 8.75, 11.506433373678693, 12.839002469135803, 16.95842339506173, 10.979032309099225, 11.715425651577503, 13.627064837677183, 14.175), # 29
(14.279985964225098, 15.318981481481483, 14.502314814814815, 17.30434027777778, 15.628020516063533, 8.75, 11.492619825708061, 12.804166666666665, 16.953125, 10.964506172839508, 11.71233164983165, 13.619753086419752, 14.175), # 30
(14.292631757844802, 15.297046227709194, 14.496139643347053, 17.29867186213992, 15.634382289390214, 8.75, 11.477098216735257, 12.765182716049384, 16.947152530864198, 10.948205550983083, 11.708829118343933, 13.611519524462738, 14.175), # 31
(14.304955826841338, 15.27278340192044, 14.489296159122084, 17.29237258230453, 15.640576748078935, 8.75, 11.4599349713548, 12.72225802469136, 16.940526728395064, 10.930205724737084, 11.704926437211622, 13.602394878829449, 14.175), # 32
(14.316957057057056, 15.246285185185185, 14.481807407407409, 17.28545972222222, 15.646603635159089, 8.75, 11.441196514161222, 12.675600000000001, 16.933268333333334, 10.910581975308643, 11.700631986531986, 13.59240987654321, 14.175), # 33
(14.328634334334335, 15.217643758573388, 14.473696433470508, 17.27795056584362, 15.652462693660054, 8.75, 11.420949269749054, 12.625416049382716, 16.925398086419758, 10.889409583904893, 11.695954146402293, 13.581595244627344, 14.175), # 34
(14.339986544515531, 15.186951303155007, 14.464986282578877, 17.26986239711934, 15.65815366661122, 8.75, 11.399259662712824, 12.571913580246914, 16.916936728395065, 10.866763831732968, 11.690901296919815, 13.569981710105168, 14.175), # 35
(14.35101257344301, 15.1543, 14.455700000000002, 17.2612125, 15.663676297041972, 8.75, 11.37619411764706, 12.515300000000002, 16.907905, 10.84272, 11.685481818181819, 13.557600000000003, 14.175), # 36
(14.361711306959135, 15.119782030178326, 14.445860631001374, 17.252018158436215, 15.669030327981691, 8.75, 11.351819059146292, 12.455782716049384, 16.89832364197531, 10.817353369913125, 11.679704090285574, 13.544480841335163, 14.175), # 37
(14.372081630906267, 15.083489574759948, 14.43549122085048, 17.242296656378603, 15.674215502459768, 8.75, 11.326200911805053, 12.393569135802473, 16.88821339506173, 10.790739222679472, 11.673576493328346, 13.530654961133976, 14.175), # 38
(14.382122431126781, 15.045514814814815, 14.424614814814818, 17.232065277777778, 15.679231563505585, 8.75, 11.299406100217867, 12.328866666666666, 16.877595000000003, 10.762952839506175, 11.667107407407409, 13.516153086419752, 14.175), # 39
(14.39183259346303, 15.005949931412895, 14.413254458161866, 17.221341306584364, 15.684078254148528, 8.75, 11.271501048979264, 12.261882716049385, 16.866489197530868, 10.734069501600368, 11.660305212620028, 13.501005944215823, 14.175), # 40
(14.40121100375738, 14.964887105624143, 14.401433196159124, 17.210142026748972, 15.688755317417984, 8.75, 11.242552182683774, 12.192824691358027, 16.85491672839506, 10.704164490169182, 11.653178289063476, 13.485244261545498, 14.175), # 41
(14.410256547852201, 14.922418518518521, 14.389174074074077, 17.198484722222226, 15.693262496343333, 8.75, 11.212625925925927, 12.121900000000002, 16.842898333333338, 10.673313086419753, 11.645735016835017, 13.4688987654321, 14.175), # 42
(14.418968111589852, 14.878636351165984, 14.376500137174213, 17.186386676954736, 15.697599533953966, 8.75, 11.181788703300251, 12.049316049382718, 16.83045475308642, 10.641590571559215, 11.637983776031925, 13.452000182898951, 14.175), # 43
(14.427344580812699, 14.83363278463649, 14.363434430727025, 17.173865174897124, 15.701766173279264, 8.75, 11.150106939401276, 11.975280246913583, 16.817606728395063, 10.609072226794698, 11.629932946751465, 13.434579240969367, 14.175), # 44
(14.435384841363105, 14.787500000000001, 14.350000000000001, 17.160937500000003, 15.705762157348616, 8.75, 11.11764705882353, 11.9, 16.804375, 10.575833333333335, 11.62159090909091, 13.416666666666666, 14.175), # 45
(14.443087779083434, 14.740330178326476, 14.336219890260631, 17.147620936213993, 15.709587229191404, 8.75, 11.084475486161544, 11.823682716049385, 16.790780308641974, 10.541949172382258, 11.612966043147525, 13.398293187014175, 14.175), # 46
(14.45045227981605, 14.692215500685872, 14.322117146776408, 17.133932767489714, 15.713241131837016, 8.75, 11.050658646009847, 11.746535802469136, 16.776843395061732, 10.507495025148607, 11.604066729018582, 13.37948952903521, 14.175), # 47
(14.457477229403315, 14.64324814814815, 14.307714814814817, 17.11989027777778, 15.716723608314837, 8.75, 11.016262962962964, 11.668766666666668, 16.762585, 10.472546172839506, 11.594901346801347, 13.360286419753088, 14.175), # 48
(14.464161513687602, 14.593520301783265, 14.29303593964335, 17.10551075102881, 15.720034401654251, 8.75, 10.981354861615428, 11.590582716049383, 16.748025864197533, 10.437177896662096, 11.585478276593093, 13.340714586191131, 14.175), # 49
(14.470504018511264, 14.543124142661183, 14.278103566529495, 17.090811471193415, 15.723173254884642, 8.75, 10.94600076656177, 11.512191358024692, 16.73318672839506, 10.401465477823503, 11.575805898491085, 13.32080475537266, 14.175), # 50
(14.476503629716676, 14.492151851851853, 14.262940740740742, 17.075809722222225, 15.726139911035398, 8.75, 10.910267102396515, 11.433800000000002, 16.718088333333338, 10.365484197530865, 11.565892592592595, 13.30058765432099, 14.175), # 51
(14.482159233146191, 14.440695610425243, 14.247570507544584, 17.060522788065846, 15.728934113135901, 8.75, 10.874220293714194, 11.355616049382716, 16.70275141975309, 10.329309336991313, 11.555746738994888, 13.280094010059445, 14.175), # 52
(14.487469714642183, 14.388847599451307, 14.232015912208508, 17.0449679526749, 15.731555604215542, 8.75, 10.837926765109337, 11.277846913580248, 16.687196728395065, 10.293016177411982, 11.545376717795238, 13.259354549611341, 14.175), # 53
(14.492433960047004, 14.336700000000002, 14.2163, 17.0291625, 15.734004127303704, 8.75, 10.801452941176471, 11.2007, 16.671445000000002, 10.256680000000001, 11.534790909090908, 13.2384, 14.175), # 54
(14.497050855203032, 14.284344993141291, 14.200445816186559, 17.01312371399177, 15.736279425429768, 8.75, 10.764865246510128, 11.124382716049384, 16.655516975308643, 10.220376085962506, 11.523997692979176, 13.217261088248744, 14.175), # 55
(14.501319285952622, 14.231874759945132, 14.184476406035667, 16.996868878600825, 15.738381241623124, 8.75, 10.728230105704835, 11.049102469135804, 16.63943339506173, 10.184179716506632, 11.513005449557303, 13.195968541380887, 14.175), # 56
(14.505238138138138, 14.179381481481483, 14.168414814814819, 16.98041527777778, 15.740309318913155, 8.75, 10.69161394335512, 10.975066666666669, 16.623215000000002, 10.148166172839508, 11.50182255892256, 13.174553086419753, 14.175), # 57
(14.508806297601952, 14.126957338820304, 14.152284087791497, 16.96378019547325, 15.742063400329245, 8.75, 10.655083184055517, 10.902482716049382, 16.606882530864198, 10.112410736168268, 11.490457401172218, 13.153045450388662, 14.175), # 58
(14.51202265018642, 14.07469451303155, 14.136107270233198, 16.946980915637862, 15.743643228900785, 8.75, 10.61870425240055, 10.83155802469136, 16.590456728395065, 10.076988687700048, 11.478918356403542, 13.131476360310929, 14.175), # 59
(14.51488608173391, 14.022685185185187, 14.119907407407407, 16.930034722222224, 15.745048547657152, 8.75, 10.582543572984749, 10.762500000000001, 16.573958333333337, 10.041975308641977, 11.467213804713806, 13.109876543209879, 14.175), # 60
(14.517395478086781, 13.971021536351168, 14.10370754458162, 16.912958899176957, 15.746279099627737, 8.75, 10.546667570402647, 10.695516049382718, 16.557408086419755, 10.00744588020119, 11.455352126200275, 13.088276726108827, 14.175), # 61
(14.519549725087407, 13.919795747599453, 14.087530727023323, 16.89577073045268, 15.74733462784193, 8.75, 10.51114266924877, 10.630813580246915, 16.540826728395064, 9.973475683584821, 11.44334170096022, 13.066707636031095, 14.175), # 62
(14.521347708578144, 13.869100000000001, 14.071400000000002, 16.878487500000002, 15.7482148753291, 8.75, 10.476035294117647, 10.568600000000002, 16.524235, 9.94014, 11.43119090909091, 13.045200000000001, 14.175), # 63
(14.522788314401359, 13.819026474622772, 14.05533840877915, 16.86112649176955, 15.74891958511865, 8.75, 10.44141186960381, 10.509082716049384, 16.50765364197531, 9.907514110653864, 11.41890813068961, 13.023784545038868, 14.175), # 64
(14.523870428399414, 13.769667352537724, 14.03936899862826, 16.843704989711934, 15.749448500239955, 8.75, 10.407338820301785, 10.45246913580247, 16.49110339506173, 9.875673296753543, 11.4065017458536, 13.00249199817101, 14.175), # 65
(14.524592936414676, 13.721114814814818, 14.023514814814817, 16.826240277777778, 15.749801363722403, 8.75, 10.373882570806101, 10.398966666666668, 16.474605000000004, 9.844692839506173, 11.393980134680135, 12.981353086419755, 14.175), # 66
(14.524954724289511, 13.673461042524005, 14.00779890260631, 16.808749639917696, 15.749977918595382, 8.75, 10.341109545711289, 10.348782716049385, 16.458179197530864, 9.814648020118886, 11.381351677266494, 12.960398536808412, 14.175), # 67
(14.524708260273156, 13.626548095048452, 13.99216832990398, 16.7910984366613, 15.749829137416285, 8.74983761621704, 10.308921272761506, 10.301681390032009, 16.44172298811157, 9.785468618306034, 11.368400383956526, 12.939542030659641, 14.174825210048013), # 68
(14.522398389694043, 13.578943727598569, 13.976183796296295, 16.772396920289854, 15.748474945533768, 8.748553909465022, 10.27637545388526, 10.25513827160494, 16.424516975308645, 9.756328946986201, 11.35380797448166, 12.918106562703056, 14.17344039351852), # 69
(14.517840102582454, 13.5304294437807, 13.95977580589849, 16.752521973966722, 15.74579903978052, 8.746025758268557, 10.243324188385918, 10.208733424782809, 16.40646404892547, 9.727087334247829, 11.337408441136512, 12.895991865809934, 14.170705268347055), # 70
(14.511097524900102, 13.481034236028144, 13.942950120027435, 16.731502905260335, 15.74183531025579, 8.742294131992075, 10.209782323354585, 10.162482213077277, 16.387591095107457, 9.697744503079695, 11.319262319097408, 12.873214112097802, 14.166655842764062), # 71
(14.502234782608697, 13.430787096774193, 13.9257125, 16.709369021739132, 15.736617647058825, 8.737400000000001, 10.175764705882354, 10.1164, 16.367925000000003, 9.668301176470589, 11.299430143540672, 12.849789473684211, 14.161328125), # 72
(14.491316001669949, 13.379717018452144, 13.90806870713306, 16.686149630971553, 15.730179940288872, 8.73138433165676, 10.141286183060329, 10.070502149062644, 16.347492649748517, 9.63875807740929, 11.277972449642624, 12.825734122686688, 14.154758123285324), # 73
(14.478405308045566, 13.32785299349529, 13.890024502743485, 16.661874040526033, 15.722556080045187, 8.72428809632678, 10.106361601979613, 10.024804023776863, 16.3263209304984, 9.609115928884586, 11.254949772579598, 12.801064231222776, 14.146981845850483), # 74
(14.463566827697262, 13.275224014336917, 13.871585648148148, 16.636571557971017, 15.713779956427018, 8.716152263374488, 10.0710058097313, 9.979320987654322, 16.30443672839506, 9.579375453885259, 11.23042264752791, 12.775795971410007, 14.138035300925928), # 75
(14.44686468658675, 13.22185907341033, 13.852757904663925, 16.610271490874936, 15.703885459533609, 8.707017802164305, 10.035233653406493, 9.934068404206677, 16.281866929583906, 9.549537375400092, 11.20445160966389, 12.749945515365916, 14.127954496742113), # 76
(14.428363010675731, 13.167787163148816, 13.833547033607681, 16.583003146806227, 15.692906479464213, 8.696925682060662, 9.999059980096293, 9.88906163694559, 16.258638420210335, 9.519602416417872, 11.177097194163862, 12.723529035208049, 14.116775441529496), # 77
(14.408125925925928, 13.113037275985667, 13.813958796296298, 16.554795833333333, 15.680876906318085, 8.685916872427983, 9.962499636891796, 9.844316049382718, 16.23477808641975, 9.489571299927379, 11.148419936204148, 12.696562703053933, 14.10453414351852), # 78
(14.386217558299041, 13.057638404354178, 13.793998954046641, 16.525678858024694, 15.667830630194468, 8.674032342630696, 9.925567470884102, 9.799847005029722, 16.210312814357568, 9.4594447489174, 11.118480370961072, 12.669062691021107, 14.091266610939643), # 79
(14.362702033756786, 13.001619540687642, 13.773673268175584, 16.495681528448742, 15.653801541192612, 8.661313062033226, 9.888278329164315, 9.755669867398264, 16.185269490169183, 9.429223486376719, 11.087339033610965, 12.64104517122711, 14.07700885202332), # 80
(14.337643478260873, 12.945009677419357, 13.752987500000001, 16.464833152173917, 15.638823529411765, 8.6478, 9.85064705882353, 9.711800000000002, 16.159675, 9.398908235294119, 11.055056459330146, 12.612526315789475, 14.061796875), # 81
(14.311106017773009, 12.887837806982612, 13.731947410836765, 16.433163036768654, 15.622930484951183, 8.633534125895444, 9.812688506952853, 9.668252766346594, 16.133556229995428, 9.368499718658382, 11.02169318329494, 12.583522296825743, 14.045666688100141), # 82
(14.283153778254908, 12.8301329218107, 13.710558762002744, 16.400700489801395, 15.606156297910111, 8.618556409083983, 9.774417520643375, 9.625043529949703, 16.10694006630087, 9.337998659458297, 10.987309740681672, 12.554049286453447, 14.028654299554185), # 83
(14.253850885668278, 12.77192401433692, 13.688827314814816, 16.36747481884058, 15.588534858387801, 8.602907818930042, 9.735848946986202, 9.582187654320988, 16.07985339506173, 9.307405780682645, 10.951966666666667, 12.524123456790125, 14.010795717592593), # 84
(14.223261465974833, 12.713240076994557, 13.666758830589849, 16.333515331454645, 15.5701000564835, 8.58662932479805, 9.696997633072435, 9.53970050297211, 16.05232310242341, 9.276721805320209, 10.915724496426252, 12.493760979953313, 13.992126950445819), # 85
(14.191449645136279, 12.654110102216913, 13.644359070644722, 16.298851335212028, 15.550885782296458, 8.569761896052432, 9.65787842599317, 9.497597439414724, 16.024376074531325, 9.245947456359774, 10.878643765136749, 12.462978028060553, 13.97268400634431), # 86
(14.15847954911433, 12.594563082437277, 13.621633796296296, 16.26351213768116, 15.53092592592593, 8.552346502057613, 9.618506172839506, 9.455893827160494, 15.996039197530868, 9.215083456790124, 10.840785007974482, 12.43179077322937, 13.95250289351852), # 87
(14.124415303870702, 12.534628010088941, 13.598588768861456, 16.22752704643049, 15.510254377471155, 8.534424112178023, 9.578895720702548, 9.414605029721079, 15.967339357567447, 9.184130529600042, 10.802208760115779, 12.400215387577312, 13.931619620198905), # 88
(14.089321035367092, 12.474333877605204, 13.575229749657066, 16.19092536902845, 15.488905027031391, 8.516035695778085, 9.539061916673392, 9.37374641060814, 15.938303440786468, 9.153089397778317, 10.762975556736963, 12.36826804322191, 13.910070194615912), # 89
(14.053260869565218, 12.413709677419357, 13.551562500000001, 16.153736413043482, 15.466911764705886, 8.497222222222224, 9.499019607843138, 9.333333333333334, 15.908958333333336, 9.121960784313726, 10.723145933014354, 12.335964912280703, 13.887890625), # 90
(14.016298932426789, 12.352784401964689, 13.527592781207133, 16.11598948604402, 15.444308480593882, 8.478024660874867, 9.458783641302887, 9.293381161408323, 15.879330921353455, 9.090745412195057, 10.682780424124285, 12.303322166871226, 13.865116919581618), # 91
(13.978499349913523, 12.2915870436745, 13.503326354595337, 16.0777138955985, 15.421129064794641, 8.458483981100443, 9.418368864143739, 9.253905258344766, 15.84944809099223, 9.059444004411093, 10.641939565243074, 12.270355979111017, 13.841785086591221), # 92
(13.939926247987117, 12.230146594982081, 13.478768981481483, 16.038938949275366, 15.397407407407409, 8.438641152263374, 9.37779012345679, 9.214920987654322, 15.819336728395063, 9.028057283950616, 10.600683891547051, 12.23708252111761, 13.81793113425926), # 93
(13.900643752609293, 12.168492048320722, 13.453926423182445, 15.999693954643051, 15.37317739853143, 8.418537143728091, 9.337062266333147, 9.176443712848654, 15.789023719707364, 8.996585973802416, 10.559073938212535, 12.203517965008546, 13.793591070816188), # 94
(13.860715989741754, 12.106652396123724, 13.42880444101509, 15.960008219269996, 15.34847292826596, 8.398212924859017, 9.296200139863902, 9.138488797439416, 15.758535951074533, 8.96503079695527, 10.517170240415854, 12.169678482901354, 13.768800904492457), # 95
(13.820207085346219, 12.044656630824377, 13.403408796296299, 15.91991105072464, 15.32332788671024, 8.377709465020576, 9.25521859114016, 9.101071604938273, 15.727900308641976, 8.933392476397968, 10.475033333333334, 12.135580246913582, 13.74359664351852), # 96
(13.779181165384388, 11.98253374485597, 13.377745250342937, 15.879431756575416, 15.297776163963531, 8.357067733577198, 9.21413246725302, 9.064207498856883, 15.6971436785551, 8.901671735119288, 10.432723752141296, 12.101239429162758, 13.718014296124831), # 97
(13.737702355817978, 11.9203127306518, 13.35181956447188, 15.83859964439077, 15.271851650125074, 8.336328699893311, 9.17295661529358, 9.027911842706905, 15.666292946959304, 8.86986929610802, 10.390302032016068, 12.066672201766417, 13.69208987054184), # 98
(13.695834782608697, 11.858022580645162, 13.325637500000003, 15.797444021739132, 15.24558823529412, 8.315533333333335, 9.131705882352943, 8.9922, 15.635375000000002, 8.83798588235294, 10.347828708133973, 12.031894736842107, 13.665859375000002), # 99
(13.653642571718258, 11.795692287269347, 13.29920481824417, 15.755994196188944, 15.21901980956992, 8.294722603261699, 9.090395115522204, 8.957087334247829, 15.60441672382259, 8.806022216842843, 10.305364315671335, 11.996923206507354, 13.639358817729768), # 100
(13.611189849108369, 11.733350842957654, 13.272527280521263, 15.714279475308645, 15.192180263051725, 8.273937479042829, 9.049039161892468, 8.922589208962048, 15.573445004572475, 8.773979022566504, 10.262969389804478, 11.961773782879694, 13.612624206961591), # 101
(13.568540740740744, 11.67102724014337, 13.245610648148148, 15.67232916666667, 15.165103485838781, 8.253218930041154, 9.00765286855483, 8.888720987654322, 15.542486728395062, 8.741857022512711, 10.22070446570973, 11.926462638076675, 13.585691550925928), # 102
(13.525759372577088, 11.60875047125979, 13.218460682441702, 15.630172577831457, 15.137823368030341, 8.232607925621096, 8.966251082600394, 8.855498033836307, 15.511568781435757, 8.709656939670245, 10.178630078563414, 11.891005944215824, 13.558596857853223), # 103
(13.482909870579116, 11.546549528740211, 13.191083144718794, 15.587839016371445, 15.110373799725652, 8.212145435147082, 8.924848651120257, 8.822935711019662, 15.480718049839965, 8.677379497027893, 10.13680676354185, 11.855419873414677, 13.53137613597394), # 104
(13.440056360708535, 11.484453405017922, 13.163483796296298, 15.545357789855073, 15.082788671023966, 8.19187242798354, 8.883460421205521, 8.79104938271605, 15.449961419753087, 8.64502541757444, 10.095295055821373, 11.819720597790775, 13.50406539351852), # 105
(13.39726296892706, 11.42249109252622, 13.135668398491084, 15.50275820585078, 15.055101872024531, 8.171829873494895, 8.842101239947283, 8.759854412437129, 15.41932577732053, 8.612595424298663, 10.054155490578298, 11.783924289461654, 13.476700638717421), # 106
(13.3545938211964, 11.360691583698395, 13.10764271262003, 15.460069571927, 15.027347292826596, 8.152058741045574, 8.800785954436646, 8.72936616369456, 15.388838008687703, 8.580090240189355, 10.013448602988953, 11.748047120544847, 13.449317879801098), # 107
(13.312113043478263, 11.299083870967744, 13.079412500000002, 15.417321195652177, 14.999558823529412, 8.132600000000002, 8.759529411764706, 8.699600000000002, 15.358525000000002, 8.547510588235296, 9.973234928229665, 11.712105263157897, 13.421953125000002), # 108
(13.26988476173436, 11.237696946767558, 13.050983521947876, 15.374542384594738, 14.97177035423223, 8.113494619722603, 8.718346459022568, 8.670571284865114, 15.328413637402836, 8.514857191425268, 9.933575001476758, 11.676114889418335, 13.394642382544584), # 109
(13.227973101926404, 11.176559803531132, 13.022361539780524, 15.331762446323136, 14.944015775034297, 8.094783569577809, 8.677251943301325, 8.642295381801555, 15.29853080704161, 8.482130772748057, 9.894529357906551, 11.640092171443701, 13.367421660665297), # 110
(13.186442190016104, 11.11570143369176, 12.993552314814819, 15.2890106884058, 14.91632897603486, 8.076507818930043, 8.636260711692085, 8.614787654320988, 15.26890339506173, 8.449332055192448, 9.856158532695375, 11.60405328135153, 13.340326967592594), # 111
(13.14535615196517, 11.055150829682729, 12.96456160836763, 15.246316418411165, 14.888743847333174, 8.05870833714373, 8.595387611285942, 8.588063465935072, 15.239558287608595, 8.416461761747223, 9.818523061019553, 11.568014391259355, 13.313394311556928), # 112
(13.104705913184263, 10.995038066300333, 12.935464959552897, 15.203767435488858, 14.861245952243188, 8.04141767690032, 8.554736349119478, 8.562193596292849, 15.21059793576207, 8.383626631257822, 9.781693468614014, 11.5320701111062, 13.286621461180511), # 113
(13.064073257060091, 10.935956056935751, 12.906663945030267, 15.161705189788272, 14.833550696392859, 8.024596451941862, 8.514825491774811, 8.537495763307168, 15.182466649998286, 8.351441235077896, 9.745742071958476, 11.496677040958165, 13.25978557982405), # 114
(13.023338864205595, 10.877926078156266, 12.878175705790246, 15.120118307254492, 14.805570749044042, 8.008200917498272, 8.475683510268187, 8.513963715990194, 15.155174970136306, 8.319955459183308, 9.710616315997932, 11.461852615582393, 13.232809284324528), # 115
(12.982451822532688, 10.820863593808383, 12.849945065977423, 15.078932610372966, 14.777263936937292, 7.992192428201937, 8.43724674453905, 8.491532438058591, 15.128653874918964, 8.289110701829367, 9.676248303780074, 11.427532476482286, 13.205650163658248), # 116
(12.941361219953283, 10.76468406773861, 12.82191684973638, 15.038073921629142, 14.748588086813156, 7.976532338685248, 8.399451534526854, 8.47013691322902, 15.102834343089086, 8.258848361271381, 9.642570138352598, 11.39365226516125, 13.178265806801516), # 117
(12.900016144379297, 10.709302963793455, 12.794035881211714, 14.997468063508467, 14.71950102541218, 7.9611820035805945, 8.362234220171041, 8.449712125218136, 15.07764735338951, 8.229109835764664, 9.609513922763194, 11.36014762312269, 13.150613802730636), # 118
(12.858365683722639, 10.654635745819421, 12.766246984548014, 14.95704085849639, 14.689960579474912, 7.946102777520366, 8.325531141411059, 8.430193057742605, 15.053023884563062, 8.199836523564521, 9.577011760059559, 11.326954191870009, 13.122651740421906), # 119
(12.816358925895228, 10.600597877663022, 12.738494983889867, 14.916718129078353, 14.659924575741897, 7.931256015136952, 8.289278638186355, 8.41151469451908, 15.028894915352582, 8.170969822926269, 9.544995753289383, 11.294007612906617, 13.094337208851638), # 120
(12.773944958808976, 10.547104823170763, 12.710724703381864, 14.876425697739808, 14.629350840953688, 7.9166030710627435, 8.253413050436373, 8.39361201926423, 15.0051914245009, 8.142451132105215, 9.513398005500363, 11.261243527735912, 13.065627796996127), # 121
(12.731072870375797, 10.494072046189146, 12.682880967168597, 14.836089386966199, 14.598197201850828, 7.902105299930128, 8.217870718100565, 8.376420015694709, 14.981844390750846, 8.11422184935667, 9.482150619740192, 11.228597577861303, 13.036481093831679), # 122
(12.687691748507607, 10.441415010564684, 12.65490859939465, 14.795635019242972, 14.56642148517387, 7.887724056371495, 8.182587981118376, 8.359873667527177, 14.958784792845258, 8.086223372935942, 9.451185699056563, 11.19600540478619, 13.0068546883346), # 123
(12.643750681116316, 10.389049180143882, 12.62675242420462, 14.754988417055582, 14.533981517663353, 7.873420695019235, 8.147501179429248, 8.343907958478297, 14.935943609526962, 8.058397101098347, 9.420435346497168, 11.163402650013985, 12.976706169481197), # 124
(12.599198756113843, 10.33689001877325, 12.598357265743093, 14.714075402889465, 14.500835126059833, 7.859156570505739, 8.112546652972636, 8.328457872264728, 14.913251819538791, 8.030684432099187, 9.389831665109703, 11.130724955048088, 12.94599312624776), # 125
(12.553985061412101, 10.284852990299292, 12.56966794815466, 14.672821799230077, 14.466940137103851, 7.844893037463395, 8.077660741687978, 8.31345839260313, 14.890640401623585, 8.00302676419378, 9.359306757941859, 11.097907961391908, 12.91467314761061), # 126
(12.508058684923006, 10.232853558568515, 12.540629295583907, 14.63115342856286, 14.432254377535958, 7.830591450524592, 8.042779785514732, 8.298844503210164, 14.86804033452417, 7.975365495637434, 9.32879272804133, 11.064887310548842, 12.88270382254604), # 127
(12.461368714558466, 10.18080718742743, 12.51118613217543, 14.588996113373266, 14.396735674096707, 7.816213164321722, 8.007840124392336, 8.284551187802489, 14.845382596983379, 7.947642024685458, 9.298221678455814, 11.031598644022305, 12.850042740030352), # 128
(12.413864238230394, 10.128629340722538, 12.481283282073816, 14.546275676146736, 14.360341853526638, 7.801719533487173, 7.972778098260239, 8.270513430096765, 14.822598167744045, 7.919797749593164, 9.267525712233, 10.997977603315691, 12.816647489039854), # 129
(12.365494343850713, 10.076235482300353, 12.450865569423652, 14.502917939368722, 14.3230307425663, 7.7870719126533325, 7.937530047057888, 8.256666213809652, 14.799618025549002, 7.89177406861586, 9.236636932420582, 10.963959829932413, 12.78247565855085), # 130
(12.316208119331334, 10.023541076007378, 12.419877818369534, 14.458848725524668, 14.284760167956243, 7.772231656452593, 7.902032310724733, 8.24294452265781, 14.776373149141081, 7.86351238000886, 9.205487442066255, 10.929480965375875, 12.747484837539638), # 131
(12.265954652584163, 9.970461585690122, 12.388264853056045, 14.413993857100023, 14.245487956437017, 7.757160119517344, 7.8662212292002165, 8.229283340357902, 14.752794517263117, 7.834954082027471, 9.17400934421771, 10.894476651149478, 12.711632614982527), # 132
(12.21468303152113, 9.91691247519509, 12.355971497627777, 14.368279156580234, 14.205171934749162, 7.741818656479974, 7.830033142423786, 8.215617650626585, 14.728813108657938, 7.806040572927006, 9.142134741922645, 10.85888252875663, 12.674876579855821), # 133
(12.162342344054133, 9.862809208368793, 12.322942576229327, 14.321630446450746, 14.163769929633231, 7.726168621972872, 7.79340439033489, 8.201882437180522, 14.704359902068381, 7.776713250962773, 9.109795738228751, 10.822634239700733, 12.637174321135817), # 134
(12.108881678095097, 9.808067249057736, 12.289122913005274, 14.273973549197011, 14.12123976782977, 7.710171370628429, 7.756271312872975, 8.18801268373637, 14.679365876237274, 7.746913514390087, 9.07692443618372, 10.785667425485194, 12.59848342779883), # 135
(12.05425012155593, 9.752602061108423, 12.254457332100213, 14.225234287304469, 14.077539276079325, 7.693788257079036, 7.718570249977489, 8.173943374010788, 14.65376200990745, 7.716582761464252, 9.043452938835248, 10.747917727613418, 12.558761488821151), # 136
(11.998396762348548, 9.696329108367367, 12.218890657658735, 14.175338483258576, 14.032626281122448, 7.6769806359570785, 7.6802375415878785, 8.159609491720442, 14.627479281821747, 7.685662390440583, 9.009313349231029, 10.709320787588808, 12.517966093179089), # 137
(11.941270688384867, 9.639163854681073, 12.182367713825425, 14.12421195954477, 13.986458609699687, 7.6597098618949495, 7.6412095276435865, 8.144946020581987, 14.600448670722995, 7.654093799574386, 8.974437770418753, 10.66981224691477, 12.476054829848946), # 138
(11.882820987576796, 9.581021763896047, 12.144833324744877, 14.071780538648504, 13.938994088551583, 7.641937289525037, 7.601422548084064, 8.129887944312085, 14.572601155354022, 7.621818387120976, 8.938758305446116, 10.62932774709471, 12.432985287807028), # 139
(11.822996747836257, 9.521818299858795, 12.106232314561684, 14.017970043055223, 13.890190544418692, 7.623624273479732, 7.560812942848756, 8.114370246627395, 14.543867714457667, 7.588777551335661, 8.902207057360812, 10.58780292963203, 12.38871505602964), # 140
(11.761747057075162, 9.46146892641583, 12.066509507420426, 13.962706295250376, 13.840005804041555, 7.604732168391422, 7.519317051877113, 8.09832791124458, 14.514179326776754, 7.554912690473753, 8.864716129210535, 10.545173436030137, 12.34320172349308), # 141
(11.69902100320542, 9.399889107413653, 12.0256097274657, 13.90591511771941, 13.788397694160723, 7.585222328892499, 7.476871215108577, 8.081695921880296, 14.48346697105412, 7.52016520279056, 8.826217624042977, 10.501374907792433, 12.296402879173653), # 142
(11.634767674138946, 9.336994306698774, 11.983477798842097, 13.847522332947767, 13.735324041516742, 7.56505610961535, 7.4334117724825965, 8.064409262251205, 14.451661626032607, 7.484476486541395, 8.786643644905832, 10.456342986422326, 12.248276112047666), # 143
(11.56893615778766, 9.2726999881177, 11.9400585456942, 13.787453763420901, 13.680742672850162, 7.544194865192366, 7.3888750639386185, 8.04640291607397, 14.418694270455035, 7.4477879399815645, 8.745926294846791, 10.41001331342322, 12.198779011091421), # 144
(11.501475542063469, 9.20692161551694, 11.895296792166606, 13.725635231624254, 13.624611414901528, 7.5225999502559375, 7.343197429416091, 8.027611867065247, 14.384495883064238, 7.410040961366383, 8.703997676913554, 10.36232153029852, 12.14786916528122), # 145
(11.432334914878291, 9.139574652742999, 11.849137362403903, 13.661992560043277, 13.566888094411391, 7.500232719438453, 7.2963152088544625, 8.007971098941699, 14.34899744260305, 7.37117694895116, 8.660789894153808, 10.313203278551628, 12.095504163593366), # 146
(11.361463364144042, 9.070574563642383, 11.801525080550675, 13.596451571163414, 13.507530538120294, 7.477054527372301, 7.2481647421931745, 7.987415595419982, 14.312129927814308, 7.331137300991204, 8.616235049615252, 10.262594199685955, 12.041641595004167), # 147
(11.288809977772631, 8.999836812061604, 11.752404770751518, 13.528938087470117, 13.446496572768787, 7.453026728689875, 7.198682369371678, 7.965880340216761, 14.273824317440841, 7.289863415741826, 8.570265246345576, 10.210429935204898, 11.986239048489919), # 148
(11.214323843675977, 8.927276861847163, 11.701721257151021, 13.459377931448826, 13.38374402509742, 7.42811067802356, 7.147804430329418, 7.943300317048694, 14.234011590225474, 7.247296691458339, 8.522812587392474, 10.156646126611868, 11.929254113026934), # 149
(11.137954049765991, 8.852810176845571, 11.649419363893772, 13.387696925584994, 13.319230721846738, 7.402267730005749, 7.0954672650058415, 7.91961050963244, 14.192622724911054, 7.2033785263960475, 8.473809175803641, 10.101178415410269, 11.870644377591507), # 150
(11.059649683954586, 8.776352220903336, 11.59544391512436, 13.313820892364063, 13.252914489757288, 7.375459239268828, 7.041607213340397, 7.8947459016846615, 14.149588700240406, 7.15805031881027, 8.423187114626767, 10.043962443103501, 11.810367431159946), # 151
(10.979359834153682, 8.697818457866962, 11.539739734987382, 13.237675654271488, 13.184753155569618, 7.34764656044519, 6.986160615272531, 7.8686414769220185, 14.10484049495636, 7.11125346695631, 8.37087850690955, 9.984933851194974, 11.748380862708558), # 152
(10.897033588275185, 8.61712435158296, 11.482251647627416, 13.159187033792707, 13.11470454602428, 7.318791048167222, 6.929063810741687, 7.841232219061167, 14.058309087801755, 7.062929369089481, 8.316815455699683, 9.92402828118809, 11.68464226121364), # 153
(10.81262003423102, 8.534185365897834, 11.422924477189063, 13.078280853413174, 13.042726487861813, 7.288854057067317, 6.87025313968732, 7.8124531118187726, 14.009925457519413, 7.013019423465095, 8.260930064044857, 9.861181374586256, 11.6191092156515), # 154
(10.72606825993309, 8.448916964658093, 11.361703047816906, 12.99488293561833, 12.968776807822776, 7.257796941777861, 6.809664942048866, 7.782239138911491, 13.95962058285218, 6.9614650283384565, 8.203154434992767, 9.796328772892876, 11.551739314998438), # 155
(10.637327353293314, 8.361234611710243, 11.298532183655539, 12.908919102893627, 12.892813332647707, 7.225581056931246, 6.74723555776578, 7.750525284055986, 13.907325442542877, 6.9082075819648825, 8.143420671591107, 9.729406117611353, 11.48249014823076), # 156
(10.546346402223609, 8.271053770900794, 11.233356708849547, 12.820315177724513, 12.81479388907716, 7.19216775715986, 6.6829013267775075, 7.717246530968915, 13.852971015334345, 6.853188482599679, 8.08166087688757, 9.660349050245092, 11.411319304324769), # 157
(10.450553324967336, 8.176634369081162, 11.163028735463298, 12.725677414311741, 12.731153548219398, 7.155434266843955, 6.615149409299001, 7.680115733289122, 13.792326928238738, 6.794712282807602, 8.01583405355452, 9.586639389872076, 11.335080203181485), # 158
(10.335201473769764, 8.06829144743927, 11.069432945764184, 12.605568022303835, 12.62126783369428, 7.103165507209945, 6.535497868740003, 7.626098945870136, 13.700998165711002, 6.723193391738244, 7.934383709866593, 9.493907533156353, 11.235598705688274), # 159
(10.198820932866035, 7.945135419957, 10.950689341138245, 12.458008514572404, 12.482988183885514, 7.034077814466758, 6.443141247737298, 7.553838865338286, 13.576395318120113, 6.637687912608051, 7.8361633120533565, 9.380702728442985, 11.110988852451014), # 160
(10.042510876420344, 7.8079692153126565, 10.808065760674433, 12.28440150525942, 12.317750373994958, 6.94900813819844, 6.338754024409627, 7.464240746353693, 13.420161673798626, 6.5389214704393135, 7.7220383164395905, 9.248074456470599, 10.962523662746737), # 161
(9.8673704785969, 7.657595762184535, 10.642830043461695, 12.086149608506858, 12.126990179224487, 6.848793427989039, 6.223010676875733, 7.358209843576484, 13.233940521079093, 6.427619690254325, 7.592874179350069, 9.09707219797781, 10.791476155852466), # 162
(9.674498913559898, 7.494817989250934, 10.456250028588983, 11.864655438456708, 11.912143374775964, 6.734270633422602, 6.096585683254362, 7.2366514116667755, 13.019375148294069, 6.304508197075376, 7.449536357109572, 8.928745433703247, 10.599119351045232), # 163
(9.464995355473539, 7.320438825190149, 10.249593555145248, 11.621321609250947, 11.674645735851264, 6.606276704083181, 5.960153521664253, 7.100470705284697, 12.778108843776113, 6.170312615924756, 7.292890306042875, 8.744143644385526, 10.386726267602059), # 164
(9.239958978502024, 7.135261198680485, 10.024128462219437, 11.357550735031554, 11.415933037652254, 6.465648589554821, 5.814388670224151, 6.950572979090365, 12.511784895857772, 6.02575857182476, 7.123801482474756, 8.544316310763268, 10.155569924799979), # 165
(9.000488956809557, 6.940088038400237, 9.7811225889005, 11.074745429940503, 11.137441055380801, 6.313223239421572, 5.659965607052801, 6.787863487743908, 12.222046592871603, 5.871571689797677, 6.943135342729992, 8.330312913575103, 9.906923341916015), # 166
(8.747684464560333, 6.735722273027703, 9.521843774277388, 10.774308308119782, 10.840605564238773, 6.149837603267482, 5.497558810268945, 6.613247485905448, 11.91053722315016, 5.7084775948658, 6.751757343133359, 8.103182933559642, 9.642059538227196), # 167
(8.482644675918554, 6.52296683124118, 9.247559857439049, 10.457641983711365, 10.526862339428039, 5.9763286306765995, 5.327842757991326, 6.427630228235103, 11.578900075025999, 5.5372019120514215, 6.550532940009634, 7.863975851455517, 9.362251533010546), # 168
(8.206468765048422, 6.302624641718972, 8.959538677474432, 10.126149070857236, 10.197647156150468, 5.793533271232973, 5.151491928338689, 6.231916969393004, 11.228778436831673, 5.358470266376831, 6.3403275896835956, 7.613741148001342, 9.0687723455431), # 169
(7.9202559061141375, 6.0754986331393726, 8.659048073472489, 9.781232183699368, 9.854395789607928, 5.60228847452065, 4.9691807994297745, 6.027012964039266, 10.861815596899735, 5.173008282864322, 6.122006748480023, 7.353528303935743, 8.762894995101878), # 170
(7.6251052732799005, 5.842391734180682, 8.34735588452217, 9.424293936379751, 9.498544015002288, 5.403431190123678, 4.781583849383328, 5.813823466834017, 10.47965484356274, 4.981541586536184, 5.896435872723688, 7.0843867999973416, 8.445892500963913), # 171
(7.322116040709912, 5.604106873521197, 8.025729949712423, 9.056736943040356, 9.131527607535416, 5.197798367626108, 4.5893755563180925, 5.593253732437379, 10.083939465153241, 4.784795802414712, 5.664480418739371, 6.80736611692476, 8.119037882406225), # 172
(7.012387382568372, 5.3614469798392195, 7.695438108132197, 8.679963817823166, 8.754782342409182, 4.9862269566119855, 4.39323039835281, 5.366209015509473, 9.676312750003792, 4.583496555522195, 5.427005842851849, 6.523515735456615, 7.783604158705848), # 173
(6.697018473019482, 5.115214981813045, 7.357748198870443, 8.295377174870158, 8.369743994825454, 4.76955390666536, 4.193822853606226, 5.133594570710425, 9.25841798644695, 4.3783694708809255, 5.1848776013858995, 6.233885136331535, 7.440864349139807), # 174
(6.377108486227438, 4.866213808120973, 7.013928061016112, 7.904379628323315, 7.977848339986097, 4.54861616737028, 3.9918274001970815, 4.896315652700355, 8.831898462815268, 4.170140173513194, 4.938961150666297, 5.939523800288141, 7.092091472985131), # 175
(6.053756596356447, 4.615246387441302, 6.66524553365815, 7.508373792324615, 7.580531153092983, 4.324250688310793, 3.787918516244121, 4.655277516139389, 8.3983974674413, 3.959534288441294, 4.690121947017822, 5.641481208065051, 6.738558549518844), # 176
(5.7280619775707065, 4.363115648452332, 6.3129684558855095, 7.108762281016037, 7.179228209347984, 4.097294419070949, 3.582770679866088, 4.411385415687646, 7.959558288657599, 3.7472774406875144, 4.43922544676525, 5.340806840400891, 6.381538598017975), # 177
(5.401123804034416, 4.11062451983236, 5.95836466678714, 6.7069477085395635, 6.775375283952959, 3.8685843092347962, 3.3770583691817246, 4.165544606005252, 7.51702421479672, 3.5340952552741505, 4.187137106233358, 5.038550178034279, 6.022304637759553), # 178
(0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0), # 179
)
passenger_arriving_acc = (
(4, 8, 6, 6, 2, 1, 1, 5, 5, 0, 0, 2, 0, 12, 5, 4, 3, 5, 7, 4, 0, 3, 4, 0, 1, 0), # 0
(16, 19, 16, 17, 8, 6, 5, 9, 8, 1, 0, 2, 0, 20, 10, 10, 8, 9, 11, 5, 2, 5, 5, 1, 1, 0), # 1
(21, 29, 25, 27, 10, 9, 10, 11, 11, 3, 1, 2, 0, 34, 21, 15, 9, 17, 14, 9, 3, 9, 9, 2, 3, 0), # 2
(27, 38, 34, 36, 17, 11, 14, 14, 17, 3, 2, 4, 0, 43, 27, 22, 13, 27, 16, 13, 6, 14, 9, 4, 6, 0), # 3
(35, 48, 42, 47, 25, 14, 16, 19, 21, 4, 6, 6, 0, 51, 35, 26, 17, 37, 16, 17, 11, 17, 11, 9, 6, 0), # 4
(43, 55, 48, 49, 32, 18, 19, 23, 24, 4, 6, 9, 0, 60, 48, 31, 24, 41, 17, 22, 14, 20, 12, 11, 7, 0), # 5
(47, 69, 57, 58, 38, 19, 25, 29, 31, 6, 10, 9, 0, 65, 57, 34, 28, 51, 24, 26, 19, 24, 14, 15, 7, 0), # 6
(56, 81, 65, 64, 45, 24, 29, 36, 36, 8, 10, 10, 0, 74, 65, 39, 35, 53, 31, 29, 20, 25, 14, 15, 10, 0), # 7
(66, 87, 72, 75, 54, 27, 33, 39, 38, 11, 10, 10, 0, 82, 74, 46, 43, 62, 37, 32, 23, 28, 16, 17, 10, 0), # 8
(78, 100, 85, 78, 61, 31, 36, 46, 43, 13, 11, 11, 0, 98, 83, 55, 47, 71, 45, 36, 26, 29, 20, 18, 12, 0), # 9
(88, 110, 101, 91, 70, 34, 38, 53, 45, 15, 13, 11, 0, 109, 97, 62, 53, 79, 51, 39, 27, 33, 22, 21, 13, 0), # 10
(97, 121, 109, 98, 78, 36, 43, 56, 49, 16, 15, 11, 0, 124, 105, 70, 66, 86, 56, 42, 31, 39, 27, 23, 15, 0), # 11
(112, 132, 115, 107, 89, 43, 44, 60, 55, 18, 19, 13, 0, 135, 113, 75, 74, 100, 62, 47, 35, 42, 31, 25, 17, 0), # 12
(123, 141, 126, 114, 101, 50, 51, 64, 61, 19, 19, 13, 0, 146, 123, 88, 83, 114, 69, 55, 37, 45, 36, 26, 19, 0), # 13
(132, 152, 134, 127, 108, 57, 55, 73, 66, 21, 23, 14, 0, 160, 131, 95, 88, 126, 75, 62, 40, 47, 38, 27, 20, 0), # 14
(143, 166, 142, 139, 120, 63, 61, 75, 71, 25, 23, 14, 0, 173, 141, 98, 95, 137, 84, 71, 42, 54, 41, 32, 20, 0), # 15
(153, 187, 156, 143, 130, 72, 66, 79, 76, 27, 25, 16, 0, 182, 152, 109, 104, 142, 90, 75, 48, 56, 45, 34, 20, 0), # 16
(166, 203, 163, 155, 141, 76, 72, 83, 81, 28, 25, 18, 0, 204, 163, 119, 115, 160, 98, 82, 50, 62, 50, 36, 21, 0), # 17
(175, 224, 175, 163, 149, 80, 83, 91, 88, 31, 27, 19, 0, 217, 181, 128, 123, 168, 107, 90, 53, 67, 55, 40, 23, 0), # 18
(189, 234, 185, 176, 155, 83, 88, 97, 94, 32, 29, 22, 0, 229, 188, 144, 131, 186, 117, 93, 56, 71, 62, 41, 24, 0), # 19
(204, 245, 200, 187, 165, 87, 92, 102, 98, 35, 31, 23, 0, 239, 204, 161, 140, 194, 121, 98, 63, 79, 64, 45, 25, 0), # 20
(220, 258, 214, 198, 176, 91, 104, 108, 105, 38, 32, 26, 0, 262, 214, 177, 148, 205, 129, 101, 65, 88, 68, 50, 26, 0), # 21
(235, 273, 223, 211, 189, 95, 110, 117, 114, 41, 33, 26, 0, 282, 226, 182, 158, 221, 136, 105, 69, 93, 70, 54, 27, 0), # 22
(251, 280, 237, 226, 203, 103, 114, 121, 122, 42, 36, 27, 0, 303, 239, 189, 167, 240, 144, 107, 73, 99, 74, 57, 28, 0), # 23
(269, 293, 244, 244, 219, 109, 119, 126, 126, 46, 41, 28, 0, 322, 249, 200, 175, 254, 153, 114, 78, 107, 79, 59, 30, 0), # 24
(286, 315, 257, 264, 232, 114, 128, 131, 132, 46, 43, 28, 0, 334, 254, 209, 178, 273, 163, 120, 82, 110, 82, 60, 30, 0), # 25
(299, 331, 278, 286, 238, 117, 132, 136, 138, 50, 44, 30, 0, 349, 264, 218, 183, 279, 168, 124, 87, 116, 83, 63, 31, 0), # 26
(309, 353, 285, 299, 250, 120, 137, 139, 145, 53, 46, 30, 0, 365, 273, 232, 188, 293, 174, 127, 94, 122, 87, 65, 32, 0), # 27
(317, 373, 291, 309, 265, 122, 141, 146, 148, 54, 47, 32, 0, 381, 288, 242, 196, 305, 182, 134, 98, 126, 91, 69, 33, 0), # 28
(329, 382, 301, 322, 281, 127, 146, 155, 151, 55, 49, 33, 0, 393, 300, 249, 202, 315, 190, 143, 104, 129, 93, 73, 34, 0), # 29
(342, 395, 309, 334, 287, 135, 149, 159, 157, 56, 49, 37, 0, 407, 324, 257, 211, 326, 196, 153, 112, 134, 97, 74, 35, 0), # 30
(353, 411, 322, 346, 300, 141, 156, 162, 161, 58, 52, 40, 0, 414, 339, 263, 219, 338, 203, 160, 114, 146, 104, 77, 36, 0), # 31
(367, 420, 347, 356, 314, 145, 158, 166, 168, 62, 54, 41, 0, 424, 349, 276, 232, 347, 208, 169, 115, 150, 109, 78, 38, 0), # 32
(378, 438, 354, 374, 325, 151, 162, 175, 173, 65, 55, 43, 0, 442, 362, 283, 241, 358, 214, 171, 119, 157, 113, 83, 38, 0), # 33
(390, 455, 361, 391, 336, 157, 164, 184, 178, 68, 58, 44, 0, 452, 369, 299, 250, 378, 222, 180, 121, 166, 115, 85, 40, 0), # 34
(408, 473, 376, 404, 350, 160, 167, 191, 184, 73, 59, 44, 0, 462, 378, 307, 259, 389, 230, 187, 124, 174, 116, 87, 42, 0), # 35
(422, 486, 394, 416, 356, 165, 171, 196, 192, 75, 61, 45, 0, 477, 395, 314, 264, 400, 237, 193, 125, 180, 122, 89, 42, 0), # 36
(436, 496, 411, 433, 367, 169, 179, 201, 195, 76, 65, 46, 0, 487, 411, 320, 268, 412, 240, 202, 127, 182, 129, 94, 42, 0), # 37
(451, 508, 429, 448, 372, 176, 182, 208, 204, 79, 66, 52, 0, 502, 420, 329, 277, 422, 248, 209, 131, 186, 134, 96, 43, 0), # 38
(464, 527, 444, 460, 381, 181, 187, 214, 211, 82, 68, 53, 0, 519, 438, 338, 283, 436, 255, 214, 135, 190, 141, 99, 47, 0), # 39
(475, 537, 454, 463, 394, 188, 199, 218, 216, 86, 71, 55, 0, 538, 455, 348, 288, 455, 260, 222, 138, 195, 148, 104, 48, 0), # 40
(489, 551, 464, 474, 406, 196, 206, 228, 221, 87, 73, 57, 0, 551, 462, 357, 293, 466, 267, 226, 139, 197, 152, 109, 50, 0), # 41
(511, 560, 475, 488, 423, 204, 211, 235, 226, 89, 74, 58, 0, 565, 471, 366, 297, 475, 270, 229, 144, 206, 157, 111, 52, 0), # 42
(531, 574, 488, 500, 440, 210, 218, 238, 231, 90, 79, 59, 0, 584, 479, 375, 304, 489, 274, 242, 149, 210, 162, 113, 52, 0), # 43
(542, 588, 495, 505, 445, 211, 221, 244, 235, 92, 81, 59, 0, 601, 494, 380, 312, 503, 285, 246, 151, 215, 163, 115, 54, 0), # 44
(561, 597, 505, 517, 451, 221, 223, 248, 243, 95, 82, 60, 0, 614, 508, 389, 316, 517, 292, 249, 153, 225, 165, 115, 55, 0), # 45
(579, 615, 519, 526, 460, 229, 230, 251, 248, 97, 84, 60, 0, 622, 521, 397, 324, 529, 293, 251, 154, 226, 166, 117, 55, 0), # 46
(596, 627, 532, 544, 472, 232, 234, 259, 252, 98, 85, 61, 0, 648, 531, 410, 333, 547, 299, 253, 159, 234, 171, 123, 56, 0), # 47
(610, 643, 548, 563, 477, 235, 241, 265, 254, 100, 87, 62, 0, 663, 540, 419, 343, 557, 308, 258, 164, 238, 177, 126, 57, 0), # 48
(621, 655, 554, 577, 488, 238, 247, 267, 258, 103, 90, 62, 0, 673, 554, 426, 353, 567, 315, 267, 168, 244, 181, 127, 58, 0), # 49
(633, 670, 565, 588, 494, 244, 249, 273, 263, 105, 93, 62, 0, 693, 571, 431, 363, 577, 319, 274, 172, 249, 186, 128, 59, 0), # 50
(647, 673, 575, 599, 505, 248, 256, 276, 270, 106, 94, 63, 0, 707, 583, 442, 367, 591, 323, 277, 174, 253, 191, 128, 60, 0), # 51
(655, 681, 587, 611, 510, 252, 262, 280, 278, 113, 95, 65, 0, 721, 600, 453, 375, 599, 329, 282, 176, 255, 198, 128, 62, 0), # 52
(668, 693, 597, 627, 519, 259, 269, 282, 288, 114, 99, 66, 0, 732, 611, 464, 383, 609, 335, 289, 181, 262, 198, 133, 63, 0), # 53
(685, 708, 608, 641, 530, 266, 274, 282, 293, 115, 99, 67, 0, 747, 617, 479, 390, 615, 344, 294, 183, 268, 203, 137, 64, 0), # 54
(699, 723, 622, 649, 541, 272, 280, 286, 298, 116, 103, 67, 0, 759, 628, 491, 397, 625, 348, 303, 186, 274, 209, 138, 66, 0), # 55
(714, 733, 631, 660, 548, 274, 286, 290, 309, 118, 104, 68, 0, 781, 641, 504, 408, 633, 355, 308, 190, 279, 215, 140, 68, 0), # 56
(726, 747, 636, 672, 557, 280, 293, 294, 315, 120, 107, 69, 0, 787, 652, 511, 416, 646, 366, 315, 197, 287, 216, 143, 71, 0), # 57
(752, 752, 644, 688, 564, 285, 297, 298, 320, 123, 111, 70, 0, 797, 672, 521, 423, 653, 372, 320, 203, 292, 218, 147, 71, 0), # 58
(759, 768, 653, 704, 573, 288, 303, 300, 327, 125, 114, 72, 0, 809, 688, 534, 430, 666, 376, 324, 206, 301, 221, 151, 72, 0), # 59
(778, 782, 662, 717, 582, 291, 308, 302, 331, 127, 114, 72, 0, 817, 700, 545, 436, 677, 378, 328, 211, 307, 225, 154, 74, 0), # 60
(792, 795, 670, 729, 588, 295, 312, 309, 334, 128, 114, 75, 0, 832, 713, 553, 445, 690, 383, 331, 214, 315, 227, 159, 74, 0), # 61
(805, 812, 689, 742, 596, 297, 317, 311, 342, 133, 116, 77, 0, 846, 725, 566, 456, 702, 386, 335, 220, 321, 232, 164, 74, 0), # 62
(826, 823, 703, 755, 608, 301, 323, 318, 352, 136, 121, 78, 0, 854, 735, 574, 459, 715, 388, 335, 224, 331, 236, 165, 74, 0), # 63
(842, 834, 717, 770, 613, 306, 332, 322, 355, 142, 121, 80, 0, 866, 744, 587, 467, 725, 398, 340, 226, 338, 240, 165, 78, 0), # 64
(861, 842, 726, 783, 620, 308, 338, 327, 363, 145, 126, 82, 0, 880, 759, 597, 476, 736, 403, 348, 230, 343, 244, 165, 79, 0), # 65
(873, 860, 736, 793, 633, 313, 340, 331, 367, 148, 130, 82, 0, 889, 770, 610, 481, 750, 415, 352, 235, 351, 246, 165, 79, 0), # 66
(886, 875, 748, 804, 642, 324, 349, 332, 374, 152, 131, 84, 0, 903, 781, 619, 490, 767, 421, 355, 239, 356, 248, 165, 79, 0), # 67
(897, 886, 760, 809, 649, 327, 353, 335, 385, 156, 135, 85, 0, 918, 794, 633, 494, 783, 427, 363, 242, 363, 252, 174, 80, 0), # 68
(918, 898, 776, 817, 659, 338, 357, 337, 394, 158, 140, 85, 0, 935, 803, 643, 501, 799, 431, 369, 248, 365, 256, 177, 80, 0), # 69
(932, 910, 786, 832, 667, 343, 362, 340, 404, 159, 141, 85, 0, 946, 817, 649, 508, 812, 437, 374, 252, 368, 260, 178, 80, 0), # 70
(945, 918, 794, 842, 677, 346, 367, 345, 408, 161, 145, 87, 0, 962, 823, 655, 516, 820, 439, 380, 253, 372, 263, 180, 82, 0), # 71
(953, 934, 802, 851, 687, 353, 372, 350, 408, 165, 148, 90, 0, 971, 838, 664, 532, 838, 446, 383, 258, 375, 266, 181, 85, 0), # 72
(967, 944, 808, 860, 697, 358, 379, 351, 415, 168, 151, 92, 0, 982, 851, 678, 544, 844, 455, 388, 261, 383, 274, 183, 86, 0), # 73
(983, 955, 825, 873, 708, 362, 383, 355, 418, 169, 153, 92, 0, 998, 868, 689, 551, 858, 460, 393, 263, 387, 282, 185, 86, 0), # 74
(998, 975, 839, 878, 720, 365, 386, 358, 422, 171, 154, 92, 0, 1016, 880, 696, 562, 867, 465, 397, 268, 392, 284, 186, 87, 0), # 75
(1016, 986, 851, 893, 733, 369, 394, 362, 424, 175, 159, 94, 0, 1026, 898, 704, 569, 876, 475, 401, 271, 397, 289, 188, 90, 0), # 76
(1033, 1001, 861, 908, 740, 380, 405, 367, 427, 176, 160, 96, 0, 1034, 909, 714, 580, 884, 478, 402, 275, 405, 293, 190, 91, 0), # 77
(1046, 1012, 871, 921, 753, 387, 412, 375, 434, 177, 162, 96, 0, 1047, 921, 728, 587, 899, 484, 407, 280, 406, 298, 192, 93, 0), # 78
(1064, 1029, 887, 934, 760, 395, 415, 378, 439, 179, 165, 98, 0, 1059, 932, 739, 590, 912, 484, 414, 285, 413, 304, 195, 94, 0), # 79
(1083, 1045, 902, 950, 769, 402, 419, 384, 443, 183, 170, 99, 0, 1074, 946, 746, 598, 926, 493, 419, 289, 417, 307, 199, 95, 0), # 80
(1101, 1060, 911, 963, 775, 404, 423, 387, 450, 184, 172, 102, 0, 1082, 956, 756, 610, 929, 499, 425, 291, 420, 311, 204, 96, 0), # 81
(1112, 1070, 925, 971, 784, 409, 430, 390, 455, 188, 174, 103, 0, 1103, 966, 764, 618, 938, 507, 433, 295, 425, 315, 205, 99, 0), # 82
(1126, 1080, 942, 984, 797, 418, 435, 397, 464, 190, 175, 105, 0, 1115, 978, 777, 626, 951, 511, 438, 298, 429, 317, 206, 100, 0), # 83
(1141, 1101, 953, 1002, 805, 425, 437, 401, 465, 191, 175, 106, 0, 1133, 989, 784, 634, 960, 517, 444, 298, 433, 321, 209, 101, 0), # 84
(1152, 1109, 970, 1017, 817, 431, 443, 402, 474, 193, 176, 109, 0, 1150, 1002, 796, 639, 970, 523, 448, 300, 436, 323, 211, 102, 0), # 85
(1166, 1122, 985, 1028, 822, 436, 446, 410, 481, 194, 176, 114, 0, 1157, 1022, 802, 646, 985, 529, 450, 304, 441, 326, 215, 103, 0), # 86
(1183, 1141, 993, 1038, 830, 439, 447, 414, 482, 197, 176, 115, 0, 1168, 1039, 817, 652, 1002, 534, 454, 308, 450, 330, 221, 104, 0), # 87
(1196, 1156, 1002, 1051, 843, 440, 452, 422, 486, 201, 178, 115, 0, 1178, 1052, 828, 657, 1011, 537, 455, 310, 455, 337, 224, 105, 0), # 88
(1216, 1172, 1016, 1073, 854, 443, 458, 427, 490, 201, 179, 116, 0, 1196, 1063, 839, 665, 1027, 542, 457, 320, 459, 339, 225, 105, 0), # 89
(1235, 1183, 1024, 1079, 863, 446, 464, 429, 496, 203, 179, 116, 0, 1210, 1078, 851, 673, 1037, 548, 463, 325, 468, 346, 228, 106, 0), # 90
(1245, 1196, 1039, 1087, 870, 453, 467, 431, 502, 205, 180, 118, 0, 1225, 1088, 860, 678, 1052, 549, 468, 327, 470, 347, 229, 108, 0), # 91
(1255, 1209, 1050, 1096, 883, 458, 472, 436, 510, 206, 181, 119, 0, 1244, 1098, 868, 684, 1057, 558, 473, 329, 474, 351, 229, 108, 0), # 92
(1265, 1220, 1061, 1109, 887, 461, 473, 440, 514, 211, 185, 120, 0, 1252, 1110, 877, 692, 1075, 565, 478, 331, 480, 358, 231, 108, 0), # 93
(1278, 1225, 1070, 1115, 895, 466, 480, 445, 520, 211, 185, 121, 0, 1263, 1116, 892, 702, 1085, 573, 486, 335, 484, 361, 238, 109, 0), # 94
(1299, 1229, 1079, 1127, 903, 473, 484, 448, 527, 217, 186, 123, 0, 1274, 1136, 900, 710, 1095, 573, 489, 339, 489, 364, 240, 109, 0), # 95
(1304, 1240, 1086, 1140, 918, 476, 489, 453, 532, 219, 187, 127, 0, 1291, 1145, 910, 718, 1101, 577, 493, 344, 493, 366, 245, 109, 0), # 96
(1323, 1246, 1096, 1152, 933, 479, 493, 454, 537, 223, 188, 127, 0, 1305, 1151, 919, 722, 1113, 584, 499, 348, 497, 371, 248, 110, 0), # 97
(1338, 1260, 1102, 1168, 944, 487, 497, 460, 544, 225, 188, 128, 0, 1322, 1159, 927, 733, 1122, 587, 501, 349, 500, 372, 250, 110, 0), # 98
(1352, 1273, 1113, 1179, 961, 492, 501, 462, 550, 230, 189, 129, 0, 1339, 1170, 945, 745, 1139, 590, 505, 356, 507, 375, 253, 110, 0), # 99
(1362, 1288, 1124, 1196, 973, 497, 506, 468, 552, 231, 190, 129, 0, 1356, 1180, 964, 753, 1149, 596, 509, 361, 514, 377, 258, 110, 0), # 100
(1375, 1304, 1132, 1204, 980, 501, 513, 472, 558, 232, 190, 129, 0, 1370, 1188, 975, 759, 1161, 604, 512, 363, 518, 380, 258, 111, 0), # 101
(1388, 1320, 1137, 1210, 990, 505, 517, 477, 559, 232, 194, 130, 0, 1382, 1199, 983, 764, 1170, 611, 516, 366, 524, 383, 260, 114, 0), # 102
(1404, 1331, 1147, 1223, 1003, 510, 523, 483, 564, 233, 195, 131, 0, 1395, 1212, 994, 773, 1183, 614, 521, 369, 527, 387, 261, 115, 0), # 103
(1414, 1344, 1163, 1232, 1016, 515, 527, 485, 567, 235, 197, 132, 0, 1412, 1222, 997, 783, 1191, 618, 524, 372, 532, 391, 264, 116, 0), # 104
(1430, 1358, 1174, 1248, 1031, 519, 532, 490, 576, 235, 198, 132, 0, 1421, 1236, 1007, 792, 1201, 618, 531, 378, 537, 394, 265, 117, 0), # 105
(1445, 1374, 1184, 1260, 1037, 524, 535, 491, 581, 236, 198, 133, 0, 1430, 1245, 1017, 798, 1208, 623, 538, 384, 550, 401, 268, 117, 0), # 106
(1454, 1387, 1194, 1274, 1049, 528, 543, 494, 587, 241, 200, 134, 0, 1446, 1261, 1025, 804, 1218, 629, 545, 390, 554, 404, 270, 119, 0), # 107
(1470, 1402, 1202, 1279, 1056, 537, 546, 498, 593, 241, 202, 134, 0, 1459, 1273, 1030, 808, 1231, 631, 547, 390, 558, 408, 271, 119, 0), # 108
(1481, 1411, 1214, 1290, 1064, 541, 553, 503, 598, 243, 202, 134, 0, 1473, 1279, 1036, 810, 1237, 635, 551, 393, 561, 416, 272, 119, 0), # 109
(1498, 1422, 1227, 1306, 1077, 546, 557, 505, 604, 243, 202, 136, 0, 1482, 1292, 1046, 814, 1246, 640, 556, 396, 567, 418, 273, 119, 0), # 110
(1515, 1435, 1234, 1313, 1084, 551, 559, 509, 608, 245, 203, 136, 0, 1492, 1303, 1057, 823, 1256, 644, 560, 398, 572, 422, 278, 119, 0), # 111
(1528, 1448, 1245, 1318, 1091, 554, 562, 510, 614, 246, 205, 138, 0, 1500, 1318, 1062, 831, 1264, 650, 564, 399, 575, 425, 279, 121, 0), # 112
(1538, 1459, 1252, 1329, 1100, 556, 567, 512, 620, 247, 207, 141, 0, 1520, 1326, 1067, 835, 1274, 653, 566, 406, 578, 429, 281, 121, 0), # 113
(1551, 1471, 1264, 1337, 1110, 560, 572, 512, 623, 249, 209, 141, 0, 1525, 1341, 1075, 841, 1289, 656, 574, 407, 583, 432, 281, 121, 0), # 114
(1560, 1478, 1271, 1343, 1125, 569, 574, 518, 628, 253, 210, 144, 0, 1535, 1358, 1086, 844, 1302, 662, 579, 411, 589, 438, 281, 121, 0), # 115
(1571, 1490, 1280, 1355, 1129, 573, 580, 521, 632, 257, 212, 144, 0, 1546, 1375, 1093, 849, 1310, 667, 582, 414, 596, 439, 281, 121, 0), # 116
(1578, 1501, 1290, 1367, 1142, 576, 582, 522, 638, 260, 215, 145, 0, 1558, 1385, 1103, 850, 1324, 671, 587, 421, 599, 442, 285, 122, 0), # 117
(1589, 1512, 1298, 1375, 1153, 581, 585, 524, 639, 263, 215, 146, 0, 1570, 1400, 1111, 854, 1338, 674, 588, 428, 603, 446, 286, 125, 0), # 118
(1597, 1521, 1308, 1385, 1161, 586, 586, 527, 644, 264, 217, 147, 0, 1585, 1412, 1117, 859, 1351, 680, 591, 432, 608, 450, 287, 127, 0), # 119
(1611, 1533, 1318, 1398, 1168, 593, 591, 529, 650, 269, 218, 147, 0, 1601, 1427, 1120, 867, 1357, 683, 595, 434, 611, 453, 290, 129, 0), # 120
(1625, 1536, 1330, 1407, 1181, 598, 598, 533, 654, 270, 220, 150, 0, 1613, 1439, 1127, 874, 1365, 686, 596, 437, 619, 453, 291, 129, 0), # 121
(1634, 1546, 1339, 1415, 1189, 602, 604, 537, 663, 275, 223, 153, 0, 1622, 1448, 1136, 882, 1372, 693, 599, 438, 623, 457, 292, 130, 0), # 122
(1648, 1555, 1348, 1427, 1196, 605, 612, 540, 666, 277, 225, 153, 0, 1633, 1457, 1146, 890, 1381, 699, 602, 444, 632, 462, 293, 130, 0), # 123
(1654, 1562, 1359, 1442, 1205, 611, 617, 544, 673, 278, 227, 153, 0, 1647, 1472, 1153, 894, 1393, 705, 607, 447, 637, 466, 293, 130, 0), # 124
(1665, 1565, 1368, 1453, 1216, 614, 626, 546, 678, 279, 230, 154, 0, 1655, 1481, 1163, 902, 1401, 707, 610, 454, 641, 470, 296, 130, 0), # 125
(1676, 1571, 1379, 1464, 1224, 617, 629, 549, 683, 279, 232, 155, 0, 1670, 1489, 1171, 907, 1417, 712, 611, 457, 646, 473, 298, 133, 0), # 126
(1686, 1579, 1389, 1472, 1236, 618, 633, 552, 691, 280, 233, 157, 0, 1681, 1501, 1178, 910, 1427, 717, 613, 458, 649, 477, 302, 133, 0), # 127
(1697, 1592, 1402, 1483, 1251, 621, 636, 555, 695, 282, 236, 159, 0, 1695, 1513, 1184, 916, 1433, 720, 617, 461, 653, 483, 304, 134, 0), # 128
(1711, 1600, 1417, 1492, 1259, 630, 640, 564, 700, 285, 238, 160, 0, 1706, 1524, 1194, 922, 1446, 724, 620, 465, 660, 486, 307, 135, 0), # 129
(1725, 1606, 1424, 1502, 1266, 637, 643, 566, 705, 285, 243, 160, 0, 1725, 1530, 1201, 924, 1458, 730, 625, 470, 663, 491, 309, 135, 0), # 130
(1741, 1613, 1438, 1510, 1273, 640, 644, 567, 709, 285, 247, 162, 0, 1741, 1542, 1207, 935, 1472, 742, 629, 472, 669, 497, 312, 136, 0), # 131
(1750, 1617, 1447, 1517, 1283, 642, 649, 568, 713, 287, 250, 163, 0, 1755, 1553, 1215, 942, 1482, 745, 635, 475, 670, 499, 313, 137, 0), # 132
(1764, 1625, 1456, 1522, 1295, 647, 652, 571, 719, 287, 250, 164, 0, 1768, 1563, 1223, 951, 1486, 745, 636, 479, 675, 502, 314, 139, 0), # 133
(1771, 1633, 1463, 1529, 1311, 652, 654, 572, 725, 288, 253, 166, 0, 1779, 1577, 1227, 954, 1497, 747, 643, 485, 685, 504, 316, 140, 0), # 134
(1781, 1640, 1472, 1539, 1321, 653, 658, 577, 728, 288, 255, 166, 0, 1796, 1587, 1234, 963, 1510, 754, 644, 490, 689, 508, 317, 140, 0), # 135
(1792, 1649, 1481, 1555, 1328, 656, 658, 580, 736, 290, 259, 166, 0, 1804, 1598, 1241, 972, 1527, 757, 650, 493, 692, 510, 320, 141, 0), # 136
(1812, 1655, 1492, 1563, 1335, 660, 661, 586, 739, 291, 260, 167, 0, 1817, 1611, 1250, 977, 1536, 762, 655, 498, 696, 515, 321, 142, 0), # 137
(1818, 1659, 1503, 1569, 1341, 663, 665, 590, 745, 292, 264, 168, 0, 1838, 1620, 1259, 982, 1549, 766, 661, 499, 699, 519, 325, 143, 0), # 138
(1828, 1668, 1516, 1580, 1349, 671, 668, 599, 752, 294, 264, 169, 0, 1856, 1635, 1274, 983, 1558, 770, 664, 504, 702, 522, 327, 143, 0), # 139
(1834, 1677, 1523, 1591, 1358, 674, 672, 605, 753, 295, 265, 170, 0, 1874, 1645, 1277, 986, 1567, 772, 669, 510, 706, 526, 330, 143, 0), # 140
(1842, 1687, 1535, 1600, 1366, 676, 673, 606, 758, 298, 268, 171, 0, 1890, 1664, 1284, 992, 1575, 778, 673, 512, 713, 530, 331, 143, 0), # 141
(1849, 1693, 1546, 1613, 1380, 683, 673, 610, 764, 302, 270, 171, 0, 1903, 1672, 1288, 999, 1587, 781, 676, 517, 716, 533, 335, 145, 0), # 142
(1856, 1699, 1558, 1622, 1387, 686, 677, 612, 767, 303, 270, 171, 0, 1915, 1675, 1298, 1003, 1598, 784, 680, 517, 719, 535, 338, 146, 0), # 143
(1865, 1704, 1572, 1631, 1395, 689, 678, 615, 771, 304, 271, 171, 0, 1921, 1687, 1306, 1008, 1609, 789, 684, 520, 724, 536, 339, 147, 0), # 144
(1882, 1708, 1586, 1637, 1406, 692, 679, 618, 775, 305, 273, 171, 0, 1933, 1699, 1311, 1013, 1616, 794, 688, 522, 724, 539, 340, 147, 0), # 145
(1903, 1715, 1592, 1650, 1410, 696, 683, 625, 778, 306, 275, 172, 0, 1944, 1710, 1316, 1017, 1627, 796, 691, 526, 727, 546, 341, 147, 0), # 146
(1912, 1723, 1601, 1665, 1421, 700, 686, 629, 779, 307, 276, 174, 0, 1953, 1723, 1322, 1020, 1638, 802, 694, 530, 734, 549, 344, 148, 0), # 147
(1926, 1729, 1609, 1675, 1431, 709, 687, 632, 783, 311, 277, 174, 0, 1964, 1735, 1329, 1023, 1645, 808, 697, 534, 741, 551, 349, 148, 0), # 148
(1936, 1733, 1617, 1686, 1438, 713, 688, 636, 788, 312, 280, 174, 0, 1972, 1743, 1334, 1028, 1658, 813, 703, 539, 747, 553, 351, 148, 0), # 149
(1947, 1742, 1624, 1699, 1451, 717, 688, 639, 793, 313, 281, 174, 0, 1980, 1755, 1339, 1035, 1669, 817, 705, 540, 749, 555, 353, 148, 0), # 150
(1957, 1754, 1640, 1705, 1461, 723, 693, 645, 799, 314, 282, 176, 0, 1991, 1762, 1346, 1041, 1678, 822, 707, 544, 751, 557, 354, 148, 0), # 151
(1970, 1767, 1652, 1714, 1467, 732, 696, 649, 804, 315, 284, 177, 0, 2007, 1776, 1349, 1046, 1693, 826, 712, 548, 753, 560, 358, 149, 0), # 152
(1978, 1781, 1658, 1723, 1478, 737, 699, 650, 808, 317, 284, 179, 0, 2011, 1786, 1360, 1050, 1702, 831, 715, 549, 756, 565, 359, 150, 0), # 153
(1984, 1792, 1667, 1731, 1489, 738, 704, 656, 814, 320, 288, 179, 0, 2025, 1795, 1370, 1054, 1714, 833, 720, 552, 761, 568, 361, 150, 0), # 154
(1993, 1803, 1677, 1734, 1500, 738, 710, 659, 816, 322, 291, 180, 0, 2042, 1797, 1378, 1057, 1720, 836, 722, 557, 765, 571, 361, 151, 0), # 155
(2006, 1813, 1681, 1751, 1511, 742, 712, 664, 819, 323, 292, 182, 0, 2052, 1807, 1385, 1061, 1730, 840, 728, 560, 773, 574, 364, 151, 0), # 156
(2016, 1822, 1691, 1763, 1517, 746, 714, 668, 824, 324, 293, 182, 0, 2063, 1817, 1391, 1066, 1740, 845, 733, 562, 779, 577, 366, 152, 0), # 157
(2029, 1825, 1698, 1783, 1528, 754, 716, 669, 829, 324, 293, 184, 0, 2076, 1829, 1397, 1077, 1753, 850, 733, 567, 783, 582, 367, 152, 0), # 158
(2044, 1835, 1708, 1792, 1536, 757, 721, 672, 832, 325, 294, 185, 0, 2087, 1834, 1401, 1084, 1770, 853, 738, 572, 788, 587, 367, 152, 0), # 159
(2053, 1849, 1716, 1799, 1551, 764, 722, 675, 836, 329, 295, 185, 0, 2103, 1838, 1408, 1090, 1781, 857, 741, 573, 790, 589, 369, 152, 0), # 160
(2063, 1857, 1728, 1806, 1564, 766, 728, 680, 837, 330, 295, 186, 0, 2113, 1848, 1417, 1095, 1793, 862, 744, 577, 793, 592, 370, 153, 0), # 161
(2074, 1868, 1743, 1819, 1577, 767, 732, 683, 838, 332, 296, 186, 0, 2121, 1852, 1426, 1097, 1801, 866, 745, 578, 797, 597, 371, 156, 0), # 162
(2089, 1872, 1752, 1827, 1581, 769, 734, 685, 843, 333, 296, 187, 0, 2134, 1859, 1435, 1101, 1808, 870, 745, 581, 800, 601, 372, 157, 0), # 163
(2095, 1878, 1761, 1841, 1590, 772, 738, 688, 847, 334, 298, 187, 0, 2144, 1864, 1440, 1103, 1817, 871, 751, 582, 802, 606, 375, 158, 0), # 164
(2104, 1884, 1771, 1850, 1603, 775, 743, 691, 849, 335, 299, 187, 0, 2149, 1869, 1447, 1107, 1825, 877, 754, 584, 806, 606, 377, 159, 0), # 165
(2114, 1889, 1779, 1854, 1615, 777, 746, 696, 856, 337, 300, 187, 0, 2155, 1877, 1449, 1112, 1830, 880, 761, 587, 808, 610, 381, 160, 0), # 166
(2126, 1892, 1785, 1865, 1619, 784, 748, 701, 859, 340, 300, 187, 0, 2171, 1883, 1454, 1113, 1839, 885, 762, 589, 814, 614, 382, 160, 0), # 167
(2133, 1898, 1790, 1872, 1624, 787, 750, 707, 862, 345, 302, 188, 0, 2179, 1888, 1459, 1117, 1847, 886, 766, 589, 814, 617, 385, 160, 0), # 168
(2135, 1903, 1795, 1878, 1632, 788, 752, 708, 866, 345, 304, 188, 0, 2183, 1899, 1466, 1119, 1853, 889, 770, 590, 818, 619, 389, 162, 0), # 169
(2146, 1909, 1804, 1883, 1640, 790, 757, 711, 869, 345, 305, 188, 0, 2192, 1905, 1471, 1128, 1857, 890, 772, 595, 822, 623, 390, 163, 0), # 170
(2158, 1914, 1808, 1890, 1646, 796, 762, 713, 871, 346, 306, 188, 0, 2200, 1913, 1473, 1134, 1866, 892, 775, 595, 827, 624, 391, 164, 0), # 171
(2166, 1917, 1815, 1895, 1648, 797, 764, 714, 876, 347, 306, 188, 0, 2206, 1915, 1478, 1137, 1872, 895, 778, 599, 830, 627, 392, 164, 0), # 172
(2176, 1922, 1823, 1900, 1661, 800, 765, 718, 879, 348, 306, 188, 0, 2211, 1923, 1484, 1141, 1875, 897, 781, 603, 833, 632, 394, 166, 0), # 173
(2183, 1926, 1824, 1909, 1672, 803, 767, 719, 879, 348, 308, 188, 0, 2216, 1930, 1495, 1145, 1879, 900, 783, 603, 835, 632, 394, 166, 0), # 174
(2188, 1930, 1830, 1914, 1677, 804, 769, 721, 888, 348, 309, 188, 0, 2225, 1933, 1497, 1147, 1885, 902, 783, 605, 836, 635, 398, 167, 0), # 175
(2196, 1933, 1832, 1923, 1684, 808, 771, 722, 888, 349, 312, 188, 0, 2232, 1940, 1500, 1149, 1888, 905, 786, 607, 837, 637, 400, 167, 0), # 176
(2205, 1936, 1838, 1925, 1689, 809, 773, 722, 895, 350, 313, 188, 0, 2244, 1948, 1502, 1152, 1890, 907, 789, 608, 839, 639, 401, 167, 0), # 177
(2208, 1938, 1848, 1925, 1695, 811, 773, 725, 897, 351, 315, 188, 0, 2254, 1950, 1506, 1154, 1893, 910, 790, 612, 841, 641, 403, 167, 0), # 178
(2208, 1938, 1848, 1925, 1695, 811, 773, 725, 897, 351, 315, 188, 0, 2254, 1950, 1506, 1154, 1893, 910, 790, 612, 841, 641, 403, 167, 0), # 179
)
passenger_arriving_rate = (
(7.029211809720476, 7.090786984939564, 6.079830434547925, 6.525401162556605, 5.184373233768971, 2.563234861163827, 2.9022249307617405, 2.7143527675713304, 2.8420462290117365, 1.3853052554328298, 0.9812285382399741, 0.571423425802387, 0.0, 7.117432297609708, 6.285657683826256, 4.90614269119987, 4.155915766298489, 5.684092458023473, 3.8000938745998627, 2.9022249307617405, 1.8308820436884476, 2.5921866168844856, 2.175133720852202, 1.2159660869095852, 0.6446169986308695, 0.0), # 0
(7.496058012827964, 7.558911224152441, 6.4812376898851785, 6.956401465940448, 5.527657648309288, 2.7325532603014207, 3.093628258884586, 2.893049671694997, 3.0297144856220246, 1.4766432422970026, 1.0460557650564308, 0.6091419437616749, 0.0, 7.587708306415797, 6.700561381378422, 5.230278825282154, 4.429929726891007, 6.059428971244049, 4.050269540372995, 3.093628258884586, 1.9518237573581576, 2.763828824154644, 2.3188004886468163, 1.2962475379770357, 0.687173747650222, 0.0), # 1
(7.9614122125716245, 8.025177635976757, 6.881049333138649, 7.385687089898034, 5.869698775499761, 2.9011961768518306, 3.284272955572493, 3.071031394610912, 3.2166338432095234, 1.5676198212571917, 1.1106254013811399, 0.6467104760728565, 0.0, 8.056110759493567, 7.113815236801421, 5.553127006905699, 4.702859463771574, 6.433267686419047, 4.2994439524552766, 3.284272955572493, 2.0722829834655934, 2.9348493877498805, 2.4618956966326784, 1.37620986662773, 0.7295616032706144, 0.0), # 2
(8.423460910405188, 8.487736310818441, 7.277679347539831, 7.811555227908678, 6.209150897601775, 3.0684948417778424, 3.473402549153569, 3.2475923418717962, 3.4020630750965104, 1.657873944449164, 1.1746812960930562, 0.6839799965752206, 0.0, 8.520781928755916, 7.523779962327425, 5.873406480465281, 4.97362183334749, 6.804126150193021, 4.5466292786205145, 3.473402549153569, 2.191782029841316, 3.1045754488008876, 2.6038517426362264, 1.455535869507966, 0.7716123918925856, 0.0), # 3
(8.880390607782374, 8.94473733908341, 7.669541716320211, 8.232303073451698, 6.5446682968767265, 3.233780486042246, 3.6602605679559215, 3.4220269190303676, 3.585260954605263, 1.7470445640086882, 1.2379672980711345, 0.7208014791080559, 0.0, 8.979864086115745, 7.928816270188614, 6.189836490355671, 5.241133692026064, 7.170521909210526, 4.790837686642515, 3.6602605679559215, 2.30984320431589, 3.2723341484383632, 2.7441010244839, 1.5339083432640421, 0.8131579399166738, 0.0), # 4
(9.330387806156915, 9.394330811177607, 8.055050422711272, 8.646227820006413, 6.874905255585995, 3.396384340607826, 3.844090540307657, 3.593629531639346, 3.765486255058061, 1.8347706320715327, 1.300227256194331, 0.7570258975106506, 0.0, 9.43149950348596, 8.327284872617156, 6.501136280971655, 5.504311896214597, 7.530972510116122, 5.031081344295084, 3.844090540307657, 2.4259888147198754, 3.4374526277929975, 2.8820759400021383, 1.6110100845422546, 0.8540300737434189, 0.0), # 5
(9.771639006982534, 9.834666817506942, 8.43261944994451, 9.051626661052135, 7.198516055990973, 3.5556376364373725, 4.024135994536884, 3.7616945852514516, 3.9419977497771805, 1.920691100773466, 1.3612050193415997, 0.7925042256222944, 0.0, 9.87383045277945, 8.717546481845236, 6.806025096707997, 5.762073302320396, 7.883995499554361, 5.266372419352033, 4.024135994536884, 2.5397411688838374, 3.5992580279954867, 3.017208887017379, 1.6865238899889023, 0.8940606197733586, 0.0), # 6
(10.202330711712957, 10.263895448477353, 8.800662781251408, 9.446796790068186, 7.514154980353052, 3.710871604493673, 4.19964045897171, 3.9255164854194056, 4.1140542120849, 2.004444922250256, 1.4206444363918964, 0.8270874372822752, 0.0, 10.304999205909127, 9.097961810105026, 7.103222181959481, 6.013334766750766, 8.2281084241698, 5.495723079587168, 4.19964045897171, 2.6506225746383376, 3.757077490176526, 3.148932263356063, 1.7601325562502819, 0.9330814044070321, 0.0), # 7
(10.62064942180191, 10.68016679449476, 9.157594399863463, 9.830035400533875, 7.820476310933614, 3.8614174757395103, 4.369847461940239, 4.0843896376959234, 4.280914415303496, 2.0856710486376717, 1.4782893562241752, 0.8606265063298821, 0.0, 10.723148034787885, 9.466891569628702, 7.391446781120876, 6.257013145913014, 8.561828830606991, 5.718145492774292, 4.369847461940239, 2.758155339813936, 3.910238155466807, 3.276678466844626, 1.831518879972693, 0.9709242540449783, 0.0), # 8
(11.02478163870312, 11.081630945965095, 9.501828289012156, 10.199639685928528, 8.116134329994049, 4.006606481137679, 4.534000531770584, 4.237608447633729, 4.441837132755248, 2.1640084320714803, 1.5338836277173917, 0.8929724066044035, 0.0, 11.126419211328628, 9.822696472648436, 7.669418138586958, 6.49202529621444, 8.883674265510496, 5.932651826687221, 4.534000531770584, 2.861861772241199, 4.058067164997024, 3.3998798953095104, 1.9003656578024313, 1.0074209950877362, 0.0), # 9
(11.412913863870306, 11.46643799329428, 9.83177843192898, 10.553906839731454, 8.399783319795748, 4.145769851650964, 4.691343196790848, 4.38446732078554, 4.596081137762433, 2.2390960246874507, 1.5871710997505006, 0.923976111945128, 0.0, 11.512955007444255, 10.163737231396405, 7.935855498752503, 6.717288074062351, 9.192162275524867, 6.138254249099756, 4.691343196790848, 2.961264179750688, 4.199891659897874, 3.517968946577152, 1.9663556863857963, 1.0424034539358438, 0.0), # 10
(11.783232598757209, 11.832738026888249, 10.145858811845418, 10.891134055421968, 8.670077562600099, 4.278238818242151, 4.841118985329142, 4.524260662704076, 4.7429052036473305, 2.3105727786213524, 1.6378956212024585, 0.9534885961913449, 0.0, 11.880897695047656, 10.488374558104791, 8.189478106012292, 6.931718335864056, 9.485810407294661, 6.333964927785706, 4.841118985329142, 3.055884870172965, 4.3350387813000495, 3.63037801847399, 2.0291717623690837, 1.075703456989841, 0.0), # 11
(12.133924344817538, 12.178681137152912, 10.442483411992965, 11.209618526479394, 8.925671340668487, 4.403344611874027, 4.9825714257135685, 4.656282878942054, 4.881568103732217, 2.378077646008951, 1.6858010409522184, 0.9813608331823415, 0.0, 12.22838954605175, 10.794969165005755, 8.429005204761092, 7.134232938026852, 9.763136207464434, 6.518796030518876, 4.9825714257135685, 3.1452461513385908, 4.462835670334243, 3.7365395088264655, 2.0884966823985933, 1.107152830650265, 0.0), # 12
(12.463175603505027, 12.502417414494213, 10.720066215603106, 11.507657446383048, 9.165218936262296, 4.520418463509383, 5.11494404627224, 4.779828375052198, 5.011328611339368, 2.441249578986017, 1.7306312078787365, 1.0074437967574077, 0.0, 12.55357283236943, 11.08188176433148, 8.653156039393682, 7.323748736958049, 10.022657222678736, 6.691759725073078, 5.11494404627224, 3.228870331078131, 4.582609468131148, 3.8358858154610167, 2.1440132431206216, 1.136583401317656, 0.0), # 13
(12.769172876273403, 12.802096949318072, 10.977021205907338, 11.783548008612232, 9.387374631642924, 4.6287916041110035, 5.237480375333263, 4.894191556587227, 5.131445499791063, 2.4997275296883177, 1.7721299708609668, 1.0315884607558323, 0.0, 12.85458982591359, 11.347473068314153, 8.860649854304834, 7.499182589064952, 10.262890999582126, 6.8518681792221185, 5.237480375333263, 3.306279717222145, 4.693687315821462, 3.9278493362040785, 2.195404241181468, 1.1638269953925522, 0.0), # 14
(13.050102664576398, 13.075869832030413, 11.211762366137135, 12.035587406646286, 9.590792709071755, 4.72779526464168, 5.349423941224739, 4.998666829099858, 5.241177542409583, 2.5531504502516222, 1.810041178777865, 1.0536457990169035, 0.0, 13.129582798597134, 11.590103789185937, 9.050205893889325, 7.659451350754866, 10.482355084819165, 6.998133560739801, 5.349423941224739, 3.3769966176011996, 4.795396354535877, 4.0118624688820965, 2.242352473227427, 1.1887154392754924, 0.0), # 15
(13.30415146986772, 13.321886153037171, 11.422703679523998, 12.262072833964503, 9.774127450810177, 4.816760676064193, 5.450018272274784, 5.092548598142811, 5.339783512517201, 2.6011572928116995, 1.8441086805083868, 1.0734667853799098, 0.0, 13.376694022332964, 11.808134639179006, 9.220543402541933, 7.803471878435097, 10.679567025034402, 7.1295680373999355, 5.450018272274784, 3.440543340045852, 4.887063725405088, 4.087357611321502, 2.2845407359047996, 1.2110805593670158, 0.0), # 16
(13.529505793601107, 13.538296002744264, 11.608259129299412, 12.46130148404622, 9.936033139119584, 4.895019069341334, 5.538506896811498, 5.17513126926881, 5.426522183436193, 2.643387009504314, 1.874076324931487, 1.09090239368414, 0.0, 13.594065769033982, 11.999926330525538, 9.370381624657433, 7.9301610285129405, 10.853044366872385, 7.245183776976335, 5.538506896811498, 3.496442192386667, 4.968016569559792, 4.153767161348741, 2.3216518258598824, 1.2307541820676606, 0.0), # 17
(13.724352137230287, 13.723249471557619, 11.766842698694862, 12.631570550370744, 10.07516405626135, 4.961901675435895, 5.6141333431629965, 5.245709248030569, 5.500652328488845, 2.6794785524652385, 1.8996879609261188, 1.1058035977688838, 0.0, 13.779840310613086, 12.163839575457718, 9.498439804630594, 8.038435657395715, 11.00130465697769, 7.343992947242797, 5.6141333431629965, 3.5442154824542103, 5.037582028130675, 4.210523516790249, 2.3533685397389728, 1.2475681337779656, 0.0), # 18
(13.88687700220898, 13.874896649883173, 11.896868370941842, 12.77117722641738, 10.190174484496875, 5.0167397253106545, 5.676141139657377, 5.30357693998081, 5.561432720997431, 2.7090708738302403, 1.9206874373712384, 1.1180213714734282, 0.0, 13.932159918983176, 12.298235086207708, 9.603437186856192, 8.12721262149072, 11.122865441994861, 7.425007715973134, 5.676141139657377, 3.5833855180790386, 5.095087242248438, 4.257059075472461, 2.379373674188369, 1.2613542408984704, 0.0), # 19
(14.015266889990915, 13.991387628126835, 11.996750129271838, 12.87841870566547, 10.279718706087547, 5.058864449928407, 5.723773814622755, 5.348028750672253, 5.608122134284226, 2.731802925735086, 1.936818603145802, 1.1274066886370624, 0.0, 14.049166866057154, 12.401473575007685, 9.68409301572901, 8.195408777205257, 11.216244268568452, 7.487240250941153, 5.723773814622755, 3.6134746070917196, 5.139859353043773, 4.292806235221825, 2.399350025854368, 1.2719443298297126, 0.0), # 20
(14.107708302029813, 14.070872496694552, 12.064901956916339, 12.951592181594311, 10.34245100329475, 5.087607080251938, 5.756274896387231, 5.378359085657614, 5.63997934167151, 2.747313660315545, 1.9478253071287643, 1.133810523099076, 0.0, 14.12900342374791, 12.471915754089835, 9.739126535643821, 8.241940980946634, 11.27995868334302, 7.529702719920659, 5.756274896387231, 3.634005057322813, 5.171225501647375, 4.317197393864771, 2.412980391383268, 1.279170226972232, 0.0), # 21
(14.162387739779412, 14.111501345992236, 12.099737837106835, 12.988994847683228, 10.377025658379871, 5.102298847244033, 5.77288791327892, 5.393862350489618, 5.656263116481561, 2.7552420297073854, 1.9534513981990798, 1.1370838486987573, 0.0, 14.16981186396836, 12.50792233568633, 9.7672569909954, 8.265726089122154, 11.312526232963123, 7.551407290685465, 5.77288791327892, 3.644499176602881, 5.188512829189936, 4.329664949227744, 2.419947567421367, 1.282863758726567, 0.0), # 22
(14.182550708679697, 14.116311945587563, 12.104077046181986, 12.993677353395064, 10.385883252297091, 5.104166666666667, 5.774862801581538, 5.395538065843622, 5.658298909465021, 2.7561772953818022, 1.9541568753377396, 1.1374880506020426, 0.0, 14.175, 12.512368556622466, 9.770784376688697, 8.268531886145405, 11.316597818930042, 7.553753292181072, 5.774862801581538, 3.6458333333333335, 5.192941626148546, 4.331225784465023, 2.4208154092363974, 1.283301085962506, 0.0), # 23
(14.197417378247815, 14.113505864197531, 12.10336728395062, 12.99310104166667, 10.390900439373862, 5.104166666666667, 5.773777668845317, 5.393208333333334, 5.658026111111111, 2.755602716049383, 1.9540790684624023, 1.1373934156378602, 0.0, 14.175, 12.51132757201646, 9.77039534231201, 8.266808148148147, 11.316052222222222, 7.550491666666668, 5.773777668845317, 3.6458333333333335, 5.195450219686931, 4.331033680555557, 2.4206734567901242, 1.2830459876543212, 0.0), # 24
(14.211970122296213, 14.10797467992684, 12.101966163694561, 12.991960841049384, 10.39580728255487, 5.104166666666667, 5.771639231824418, 5.388631687242799, 5.657487139917696, 2.754471593507088, 1.9539247931994848, 1.1372065996037193, 0.0, 14.175, 12.509272595640908, 9.769623965997424, 8.263414780521263, 11.314974279835392, 7.544084362139919, 5.771639231824418, 3.6458333333333335, 5.197903641277435, 4.330653613683129, 2.4203932327389124, 1.2825431527206221, 0.0), # 25
(14.226207826667249, 14.099802892089624, 12.099892889803387, 12.990269714506173, 10.400603610526364, 5.104166666666667, 5.768480702816105, 5.381894547325103, 5.65668890946502, 2.7528027480566992, 1.9536954462318665, 1.136930163084896, 0.0, 14.175, 12.506231793933855, 9.768477231159332, 8.258408244170097, 11.31337781893004, 7.534652366255146, 5.768480702816105, 3.6458333333333335, 5.200301805263182, 4.330089904835392, 2.4199785779606775, 1.2818002629172387, 0.0), # 26
(14.240129377203292, 14.089075, 12.097166666666668, 12.988040625, 10.405289251974601, 5.104166666666667, 5.7643352941176484, 5.3730833333333345, 5.655638333333333, 2.7506150000000003, 1.9533924242424245, 1.1365666666666672, 0.0, 14.175, 12.502233333333336, 9.766962121212122, 8.251845, 11.311276666666666, 7.5223166666666685, 5.7643352941176484, 3.6458333333333335, 5.2026446259873005, 4.329346875000001, 2.4194333333333335, 1.280825, 0.0), # 27
(14.253733659746702, 14.075875502972108, 12.093806698673983, 12.985286535493827, 10.40986403558584, 5.104166666666667, 5.759236218026306, 5.362284465020577, 5.654342325102881, 2.7479271696387753, 1.9530171239140377, 1.1361186709343092, 0.0, 14.175, 12.4973053802774, 9.765085619570188, 8.243781508916324, 11.308684650205763, 7.507198251028808, 5.759236218026306, 3.6458333333333335, 5.20493201779292, 4.32842884516461, 2.418761339734797, 1.2796250457247373, 0.0), # 28
(14.26701956013985, 14.060288900320074, 12.089832190214908, 12.982020408950618, 10.41432779004634, 5.104166666666667, 5.753216686839346, 5.349584362139918, 5.652807798353909, 2.7447580772748066, 1.952570941929584, 1.1355887364730988, 0.0, 14.175, 12.491476101204084, 9.76285470964792, 8.234274231824418, 11.305615596707819, 7.489418106995886, 5.753216686839346, 3.6458333333333335, 5.20716389502317, 4.327340136316874, 2.4179664380429817, 1.2782080818472796, 0.0), # 29
(14.279985964225098, 14.042399691358026, 12.085262345679013, 12.978255208333334, 10.418680344042354, 5.104166666666667, 5.746309912854031, 5.335069444444444, 5.651041666666666, 2.7411265432098775, 1.952055274971942, 1.1349794238683129, 0.0, 14.175, 12.48477366255144, 9.760276374859709, 8.223379629629632, 11.302083333333332, 7.469097222222222, 5.746309912854031, 3.6458333333333335, 5.209340172021177, 4.326085069444446, 2.4170524691358026, 1.276581790123457, 0.0), # 30
(14.292631757844802, 14.022292375400093, 12.080116369455878, 12.97400389660494, 10.422921526260142, 5.104166666666667, 5.7385491083676285, 5.318826131687244, 5.649050843621399, 2.737051387745771, 1.9514715197239891, 1.1342932937052284, 0.0, 14.175, 12.477226230757509, 9.757357598619945, 8.211154163237312, 11.298101687242799, 7.4463565843621415, 5.7385491083676285, 3.6458333333333335, 5.211460763130071, 4.324667965534981, 2.416023273891176, 1.2747538523090995, 0.0), # 31
(14.304955826841338, 14.000051451760402, 12.07441346593507, 12.969279436728398, 10.427051165385956, 5.104166666666667, 5.7299674856774, 5.3009408436214, 5.646842242798354, 2.7325514311842714, 1.950821072868604, 1.1335329065691209, 0.0, 14.175, 12.468861972260328, 9.754105364343019, 8.197654293552812, 11.293684485596708, 7.421317181069961, 5.7299674856774, 3.6458333333333335, 5.213525582692978, 4.3230931455761334, 2.4148826931870144, 1.272731950160037, 0.0), # 32
(14.316957057057056, 13.975761419753086, 12.068172839506175, 12.964094791666666, 10.431069090106059, 5.104166666666667, 5.720598257080611, 5.2815, 5.644422777777778, 2.7276454938271613, 1.9501053310886647, 1.1327008230452675, 0.0, 14.175, 12.459709053497942, 9.750526655443322, 8.182936481481482, 11.288845555555556, 7.394100000000001, 5.720598257080611, 3.6458333333333335, 5.215534545053029, 4.321364930555556, 2.413634567901235, 1.2705237654320989, 0.0), # 33
(14.328634334334335, 13.949506778692271, 12.061413694558757, 12.958462924382715, 10.434975129106702, 5.104166666666667, 5.710474634874527, 5.260590020576132, 5.641799362139919, 2.7223523959762237, 1.9493256910670491, 1.1317996037189455, 0.0, 14.175, 12.449795640908398, 9.746628455335244, 8.16705718792867, 11.283598724279837, 7.3648260288065845, 5.710474634874527, 3.6458333333333335, 5.217487564553351, 4.319487641460906, 2.4122827389117516, 1.2681369798811157, 0.0), # 34
(14.339986544515531, 13.92137202789209, 12.054155235482398, 12.952396797839505, 10.438769111074146, 5.104166666666667, 5.699629831356412, 5.238297325102881, 5.638978909465021, 2.7166909579332423, 1.9484835494866362, 1.1308318091754308, 0.0, 14.175, 12.439149900929737, 9.74241774743318, 8.150072873799726, 11.277957818930043, 7.333616255144034, 5.699629831356412, 3.6458333333333335, 5.219384555537073, 4.317465599279836, 2.41083104709648, 1.2655792752629174, 0.0), # 35
(14.35101257344301, 13.891441666666665, 12.04641666666667, 12.945909375, 10.442450864694647, 5.104166666666667, 5.68809705882353, 5.214708333333334, 5.635968333333333, 2.7106800000000004, 1.9475803030303034, 1.1298000000000004, 0.0, 14.175, 12.427800000000001, 9.737901515151515, 8.13204, 11.271936666666665, 7.300591666666668, 5.68809705882353, 3.6458333333333335, 5.221225432347324, 4.315303125000001, 2.409283333333334, 1.2628583333333334, 0.0), # 36
(14.361711306959135, 13.859800194330132, 12.038217192501145, 12.939013618827161, 10.44602021865446, 5.104166666666667, 5.675909529573146, 5.189909465020577, 5.632774547325103, 2.7043383424782816, 1.9466173483809293, 1.1287067367779304, 0.0, 14.175, 12.415774104557233, 9.733086741904645, 8.113015027434844, 11.265549094650206, 7.265873251028808, 5.675909529573146, 3.6458333333333335, 5.22301010932723, 4.313004539609055, 2.407643438500229, 1.259981835848194, 0.0), # 37
(14.372081630906267, 13.826532110196618, 12.029576017375401, 12.931722492283953, 10.449477001639845, 5.104166666666667, 5.663100455902526, 5.1639871399176975, 5.629404465020576, 2.6976848056698683, 1.9455960822213911, 1.1275545800944982, 0.0, 14.175, 12.403100381039478, 9.727980411106955, 8.093054417009604, 11.258808930041152, 7.229581995884776, 5.663100455902526, 3.6458333333333335, 5.224738500819923, 4.3105741640946516, 2.40591520347508, 1.2569574645633292, 0.0), # 38
(14.382122431126781, 13.791721913580247, 12.020512345679016, 12.924048958333334, 10.452821042337057, 5.104166666666667, 5.649703050108934, 5.137027777777778, 5.625865000000001, 2.690738209876544, 1.9445179012345684, 1.1263460905349796, 0.0, 14.175, 12.389806995884772, 9.722589506172842, 8.07221462962963, 11.251730000000002, 7.191838888888889, 5.649703050108934, 3.6458333333333335, 5.226410521168528, 4.308016319444445, 2.4041024691358035, 1.253792901234568, 0.0), # 39
(14.39183259346303, 13.755454103795152, 12.011045381801555, 12.916005979938273, 10.45605216943235, 5.104166666666667, 5.635750524489632, 5.1091177983539104, 5.622163065843623, 2.6835173754000925, 1.943384202103338, 1.125083828684652, 0.0, 14.175, 12.375922115531171, 9.71692101051669, 8.050552126200277, 11.244326131687245, 7.1527649176954755, 5.635750524489632, 3.6458333333333335, 5.228026084716175, 4.305335326646092, 2.4022090763603114, 1.2504958276177414, 0.0), # 40
(14.40121100375738, 13.717813180155463, 12.001194330132604, 12.90760652006173, 10.459170211611989, 5.104166666666667, 5.621276091341887, 5.080343621399178, 5.618305576131687, 2.676041122542296, 1.9421963815105796, 1.1237703551287916, 0.0, 14.175, 12.361473906416705, 9.710981907552897, 8.028123367626886, 11.236611152263373, 7.112481069958849, 5.621276091341887, 3.6458333333333335, 5.229585105805994, 4.302535506687244, 2.400238866026521, 1.2470739254686787, 0.0), # 41
(14.410256547852201, 13.678883641975311, 11.990978395061731, 12.89886354166667, 10.462174997562222, 5.104166666666667, 5.6063129629629636, 5.050791666666668, 5.614299444444446, 2.668328271604939, 1.9409558361391697, 1.122408230452675, 0.0, 14.175, 12.346490534979424, 9.704779180695848, 8.004984814814815, 11.228598888888891, 7.071108333333335, 5.6063129629629636, 3.6458333333333335, 5.231087498781111, 4.299621180555557, 2.3981956790123466, 1.2435348765432102, 0.0), # 42
(14.418968111589852, 13.638749988568819, 11.980416780978512, 12.889790007716051, 10.46506635596931, 5.104166666666667, 5.5908943516501255, 5.020548353909466, 5.61015158436214, 2.660397642889804, 1.9396639626719878, 1.1210000152415793, 0.0, 14.175, 12.331000167657372, 9.698319813359937, 7.981192928669412, 11.22030316872428, 7.0287676954732525, 5.5908943516501255, 3.6458333333333335, 5.232533177984655, 4.296596669238685, 2.3960833561957027, 1.2398863625971654, 0.0), # 43
(14.427344580812699, 13.597496719250115, 11.969528692272522, 12.880398881172843, 10.467844115519508, 5.104166666666667, 5.575053469700638, 4.98970010288066, 5.605868909465021, 2.652268056698675, 1.938322157791911, 1.1195482700807806, 0.0, 14.175, 12.315030970888586, 9.691610788959554, 7.9568041700960235, 11.211737818930041, 6.985580144032924, 5.575053469700638, 3.6458333333333335, 5.233922057759754, 4.293466293724282, 2.3939057384545044, 1.2361360653863744, 0.0), # 44
(14.435384841363105, 13.555208333333335, 11.958333333333336, 12.870703125000002, 10.470508104899077, 5.104166666666667, 5.558823529411765, 4.958333333333334, 5.601458333333333, 2.6439583333333343, 1.9369318181818187, 1.1180555555555556, 0.0, 14.175, 12.29861111111111, 9.684659090909092, 7.931875000000002, 11.202916666666667, 6.941666666666667, 5.558823529411765, 3.6458333333333335, 5.235254052449538, 4.290234375000002, 2.391666666666667, 1.232291666666667, 0.0), # 45
(14.443087779083434, 13.511969330132603, 11.946849908550526, 12.860715702160494, 10.47305815279427, 5.104166666666667, 5.542237743080772, 4.926534465020577, 5.596926769547324, 2.635487293095565, 1.9354943405245877, 1.1165244322511814, 0.0, 14.175, 12.281768754762993, 9.677471702622938, 7.906461879286693, 11.193853539094649, 6.897148251028808, 5.542237743080772, 3.6458333333333335, 5.236529076397135, 4.286905234053499, 2.3893699817101055, 1.228360848193873, 0.0), # 46
(14.45045227981605, 13.46786420896205, 11.935097622313673, 12.850449575617287, 10.475494087891343, 5.104166666666667, 5.525329323004923, 4.894389917695474, 5.592281131687244, 2.6268737562871523, 1.9340111215030973, 1.1149574607529342, 0.0, 14.175, 12.264532068282275, 9.670055607515485, 7.880621268861455, 11.184562263374488, 6.852145884773663, 5.525329323004923, 3.6458333333333335, 5.237747043945672, 4.283483191872429, 2.387019524462735, 1.2243512917238228, 0.0), # 47
(14.457477229403315, 13.422977469135803, 11.923095679012349, 12.839917708333335, 10.477815738876558, 5.104166666666667, 5.508131481481482, 4.861986111111112, 5.587528333333333, 2.618136543209877, 1.9324835578002246, 1.1133572016460909, 0.0, 14.175, 12.246929218106997, 9.662417789001124, 7.854409629629629, 11.175056666666666, 6.806780555555557, 5.508131481481482, 3.6458333333333335, 5.238907869438279, 4.279972569444446, 2.38461913580247, 1.2202706790123459, 0.0), # 48
(14.464161513687602, 13.377393609967992, 11.910863283036125, 12.829133063271607, 10.480022934436168, 5.104166666666667, 5.490677430807714, 4.829409465020577, 5.582675288065844, 2.6092944741655244, 1.930913046098849, 1.1117262155159278, 0.0, 14.175, 12.228988370675204, 9.654565230494246, 7.827883422496572, 11.165350576131688, 6.761173251028807, 5.490677430807714, 3.6458333333333335, 5.240011467218084, 4.276377687757203, 2.382172656607225, 1.2161266918152722, 0.0), # 49
(14.470504018511264, 13.33119713077275, 11.89841963877458, 12.81810860339506, 10.482115503256427, 5.104166666666667, 5.473000383280885, 4.796746399176955, 5.57772890946502, 2.6003663694558763, 1.9293009830818477, 1.1100670629477218, 0.0, 14.175, 12.210737692424937, 9.646504915409238, 7.8010991083676275, 11.15545781893004, 6.715444958847738, 5.473000383280885, 3.6458333333333335, 5.2410577516282135, 4.272702867798355, 2.379683927754916, 1.211927011888432, 0.0), # 50
(14.476503629716676, 13.284472530864198, 11.885783950617286, 12.806857291666669, 10.484093274023598, 5.104166666666667, 5.455133551198258, 4.764083333333335, 5.572696111111112, 2.5913710493827167, 1.9276487654320995, 1.1083823045267494, 0.0, 14.175, 12.192205349794241, 9.638243827160496, 7.774113148148149, 11.145392222222224, 6.669716666666668, 5.455133551198258, 3.6458333333333335, 5.242046637011799, 4.268952430555557, 2.377156790123457, 1.2076793209876546, 0.0), # 51
(14.482159233146191, 13.237304309556471, 11.87297542295382, 12.795392091049385, 10.485956075423934, 5.104166666666667, 5.437110146857097, 4.731506687242798, 5.567583806584363, 2.582327334247829, 1.9259577898324816, 1.1066745008382872, 0.0, 14.175, 12.173419509221157, 9.629788949162407, 7.746982002743485, 11.135167613168726, 6.624109362139918, 5.437110146857097, 3.6458333333333335, 5.242978037711967, 4.265130697016462, 2.3745950845907644, 1.2033913008687704, 0.0), # 52
(14.487469714642183, 13.189776966163697, 11.860013260173757, 12.783725964506175, 10.487703736143693, 5.104166666666667, 5.418963382554669, 4.699102880658437, 5.5623989094650215, 2.573254044352996, 1.9242294529658732, 1.104946212467612, 0.0, 14.175, 12.15440833714373, 9.621147264829364, 7.719762133058986, 11.124797818930043, 6.578744032921811, 5.418963382554669, 3.6458333333333335, 5.243851868071847, 4.261241988168726, 2.3720026520347517, 1.199070633287609, 0.0), # 53
(14.492433960047004, 13.141975000000002, 11.846916666666667, 12.771871875000002, 10.489336084869135, 5.104166666666667, 5.400726470588236, 4.6669583333333335, 5.557148333333334, 2.5641700000000007, 1.9224651515151516, 1.1032000000000002, 0.0, 14.175, 12.1352, 9.612325757575757, 7.69251, 11.114296666666668, 6.533741666666667, 5.400726470588236, 3.6458333333333335, 5.244668042434568, 4.257290625000001, 2.369383333333334, 1.1947250000000003, 0.0), # 54
(14.497050855203032, 13.093982910379516, 11.833704846822133, 12.759842785493827, 10.490852950286511, 5.104166666666667, 5.382432623255064, 4.6351594650205765, 5.551838991769547, 2.555094021490627, 1.9206662821631961, 1.101438424020729, 0.0, 14.175, 12.115822664228014, 9.603331410815981, 7.66528206447188, 11.103677983539095, 6.4892232510288075, 5.382432623255064, 3.6458333333333335, 5.2454264751432556, 4.253280928497944, 2.3667409693644266, 1.1903620827617745, 0.0), # 55
(14.501319285952622, 13.045885196616371, 11.820397005029724, 12.74765165895062, 10.492254161082082, 5.104166666666667, 5.3641150528524175, 4.603792695473252, 5.5464777983539095, 2.5460449291266585, 1.918834241592884, 1.099664045115074, 0.0, 14.175, 12.096304496265812, 9.59417120796442, 7.638134787379974, 11.092955596707819, 6.445309773662553, 5.3641150528524175, 3.6458333333333335, 5.246127080541041, 4.249217219650207, 2.3640794010059447, 1.1859895633287612, 0.0), # 56
(14.505238138138138, 12.997766358024693, 11.807012345679016, 12.735311458333335, 10.493539545942102, 5.104166666666667, 5.34580697167756, 4.572944444444445, 5.541071666666667, 2.5370415432098774, 1.9169704264870937, 1.097879423868313, 0.0, 14.175, 12.076673662551439, 9.584852132435467, 7.61112462962963, 11.082143333333335, 6.402122222222224, 5.34580697167756, 3.6458333333333335, 5.246769772971051, 4.245103819444446, 2.3614024691358035, 1.1816151234567904, 0.0), # 57
(14.508806297601952, 12.949710893918612, 11.79357007315958, 12.72283514660494, 10.494708933552829, 5.104166666666667, 5.3275415920277585, 4.5427011316872425, 5.535627510288066, 2.5281026840420675, 1.9150762335287033, 1.096087120865722, 0.0, 14.175, 12.05695832952294, 9.575381167643515, 7.584308052126201, 11.071255020576132, 6.35978158436214, 5.3275415920277585, 3.6458333333333335, 5.2473544667764145, 4.240945048868314, 2.3587140146319165, 1.1772464449016922, 0.0), # 58
(14.51202265018642, 12.901803303612255, 11.780089391860999, 12.710235686728396, 10.495762152600523, 5.104166666666667, 5.309352126200275, 4.513149176954733, 5.530152242798355, 2.5192471719250125, 1.9131530594005905, 1.0942896966925775, 0.0, 14.175, 12.037186663618352, 9.565765297002951, 7.557741515775036, 11.06030448559671, 6.3184088477366265, 5.309352126200275, 3.6458333333333335, 5.247881076300262, 4.2367452289094665, 2.3560178783722, 1.172891209419296, 0.0), # 59
(14.51488608173391, 12.854128086419754, 11.76658950617284, 12.697526041666668, 10.496699031771435, 5.104166666666667, 5.291271786492374, 4.484375000000001, 5.524652777777779, 2.5104938271604946, 1.9112023007856345, 1.0924897119341568, 0.0, 14.175, 12.017386831275722, 9.556011503928172, 7.5314814814814826, 11.049305555555557, 6.278125000000001, 5.291271786492374, 3.6458333333333335, 5.248349515885717, 4.232508680555557, 2.353317901234568, 1.1685570987654323, 0.0), # 60
(14.517395478086781, 12.806769741655238, 11.753089620484685, 12.684719174382717, 10.497519399751823, 5.104166666666667, 5.273333785201324, 4.4564650205761325, 5.519136028806585, 2.501861470050298, 1.9092253543667126, 1.0906897271757356, 0.0, 14.175, 11.997586998933091, 9.546126771833563, 7.5055844101508935, 11.03827205761317, 6.2390510288065855, 5.273333785201324, 3.6458333333333335, 5.248759699875912, 4.22823972479424, 2.350617924096937, 1.1642517946959308, 0.0), # 61
(14.519549725087407, 12.759812768632832, 11.739608939186102, 12.671828047839508, 10.498223085227952, 5.104166666666667, 5.255571334624385, 4.429505658436215, 5.513608909465021, 2.4933689208962058, 1.9072236168267036, 1.0888923030025914, 0.0, 14.175, 11.977815333028504, 9.536118084133516, 7.4801067626886155, 11.027217818930042, 6.201307921810701, 5.255571334624385, 3.6458333333333335, 5.249111542613976, 4.2239426826131705, 2.3479217878372207, 1.1599829789666212, 0.0), # 62
(14.521347708578144, 12.713341666666667, 11.72616666666667, 12.658865625, 10.498809916886067, 5.104166666666667, 5.238017647058824, 4.4035833333333345, 5.508078333333334, 2.4850350000000003, 1.9051984848484853, 1.0871000000000002, 0.0, 14.175, 11.9581, 9.525992424242425, 7.455105, 11.016156666666667, 6.165016666666668, 5.238017647058824, 3.6458333333333335, 5.249404958443034, 4.219621875000001, 2.345233333333334, 1.1557583333333337, 0.0), # 63
(14.522788314401359, 12.667440935070873, 11.712782007315958, 12.645844868827162, 10.499279723412432, 5.104166666666667, 5.220705934801905, 4.378784465020577, 5.50255121399177, 2.4768785276634664, 1.9031513551149353, 1.0853153787532392, 0.0, 14.175, 11.938469166285628, 9.515756775574676, 7.430635582990398, 11.00510242798354, 6.130298251028808, 5.220705934801905, 3.6458333333333335, 5.249639861706216, 4.215281622942388, 2.342556401463192, 1.151585539551898, 0.0), # 64
(14.523870428399414, 12.62219507315958, 11.69947416552355, 12.63277874228395, 10.499632333493302, 5.104166666666667, 5.2036694101508925, 4.35519547325103, 5.497034465020577, 2.4689183241883863, 1.9010836243089335, 1.0835409998475842, 0.0, 14.175, 11.918950998323425, 9.505418121544666, 7.406754972565158, 10.994068930041154, 6.097273662551442, 5.2036694101508925, 3.6458333333333335, 5.249816166746651, 4.2109262474279845, 2.3398948331047102, 1.1474722793781438, 0.0), # 65
(14.524592936414676, 12.577688580246916, 11.686262345679015, 12.619680208333333, 10.499867575814935, 5.104166666666667, 5.1869412854030505, 4.332902777777779, 5.491535000000001, 2.4611732098765438, 1.898996689113356, 1.0817794238683132, 0.0, 14.175, 11.899573662551441, 9.49498344556678, 7.38351962962963, 10.983070000000001, 6.06606388888889, 5.1869412854030505, 3.6458333333333335, 5.249933787907468, 4.206560069444445, 2.337252469135803, 1.1434262345679016, 0.0), # 66
(14.524954724289511, 12.534005955647004, 11.673165752171926, 12.606562229938273, 10.499985279063587, 5.104166666666667, 5.1705547728556445, 4.311992798353911, 5.486059732510288, 2.453662005029722, 1.8968919462110825, 1.0800332114007012, 0.0, 14.175, 11.88036532540771, 9.484459731055413, 7.360986015089164, 10.972119465020576, 6.036789917695475, 5.1705547728556445, 3.6458333333333335, 5.2499926395317935, 4.202187409979425, 2.3346331504343856, 1.1394550868770006, 0.0), # 67
(14.524708260273156, 12.491002420461081, 11.660140274919984, 12.593323827495976, 10.499886091610856, 5.104071942793273, 5.154460636380753, 4.292367245846671, 5.480574329370524, 2.446367154576509, 1.894733397326088, 1.078295169221637, 0.0, 14.174825210048013, 11.861246861438005, 9.47366698663044, 7.339101463729525, 10.961148658741047, 6.009314144185339, 5.154460636380753, 3.6457656734237665, 5.249943045805428, 4.197774609165326, 2.3320280549839967, 1.135545674587371, 0.0), # 68
(14.522398389694043, 12.44736508363202, 11.646819830246914, 12.579297690217391, 10.498983297022512, 5.1033231138545965, 5.13818772694263, 4.272974279835392, 5.474838991769548, 2.439082236746551, 1.8923013290802768, 1.0765088802252547, 0.0, 14.17344039351852, 11.8415976824778, 9.461506645401384, 7.317246710239651, 10.949677983539097, 5.982163991769549, 5.13818772694263, 3.6452307956104257, 5.249491648511256, 4.193099230072464, 2.329363966049383, 1.1315786439665476, 0.0), # 69
(14.517840102582454, 12.402893656798973, 11.633146504915409, 12.564391480475042, 10.49719935985368, 5.101848358989992, 5.121662094192959, 4.253638926992837, 5.468821349641823, 2.4317718335619576, 1.8895680735227522, 1.0746659888174948, 0.0, 14.170705268347055, 11.82132587699244, 9.447840367613761, 7.295315500685872, 10.937642699283646, 5.955094497789972, 5.121662094192959, 3.6441773992785653, 5.24859967992684, 4.188130493491681, 2.326629300983082, 1.127535786981725, 0.0), # 70
(14.511097524900102, 12.357614716359132, 11.619125100022863, 12.548627178945251, 10.49455687350386, 5.0996715769953775, 5.104891161677292, 4.234367588782199, 5.462530365035819, 2.4244361257699243, 1.8865437198495683, 1.072767842674817, 0.0, 14.166655842764062, 11.800446269422984, 9.43271859924784, 7.273308377309771, 10.925060730071637, 5.928114624295079, 5.104891161677292, 3.642622554996698, 5.24727843675193, 4.182875726315085, 2.323825020004573, 1.1234195196690122, 0.0), # 71
(14.502234782608697, 12.311554838709677, 11.604760416666666, 12.532026766304348, 10.49107843137255, 5.096816666666667, 5.087882352941177, 4.215166666666667, 5.4559750000000005, 2.4170752941176477, 1.8832383572567788, 1.0708157894736845, 0.0, 14.161328125, 11.778973684210527, 9.416191786283894, 7.251225882352942, 10.911950000000001, 5.901233333333334, 5.087882352941177, 3.6405833333333337, 5.245539215686275, 4.177342255434784, 2.3209520833333337, 1.1192322580645162, 0.0), # 72
(14.491316001669949, 12.264740600247798, 11.590057255944217, 12.514612223228664, 10.486786626859248, 5.0933075267997765, 5.070643091530164, 4.196042562109436, 5.4491642165828384, 2.409689519352323, 1.8796620749404376, 1.0688111768905575, 0.0, 14.154758123285324, 11.75692294579613, 9.398310374702186, 7.229068558056968, 10.898328433165677, 5.8744595869532095, 5.070643091530164, 3.638076804856983, 5.243393313429624, 4.171537407742889, 2.3180114511888434, 1.1149764182043456, 0.0), # 73
(14.478405308045566, 12.21719857737068, 11.575020418952905, 12.496405530394526, 10.481704053363458, 5.089168056190623, 5.053180800989806, 4.177001676573693, 5.4421069768328, 2.402278982221147, 1.8758249620965999, 1.0667553526018982, 0.0, 14.146981845850483, 11.734308878620878, 9.379124810482999, 7.20683694666344, 10.8842139536656, 5.84780234720317, 5.053180800989806, 3.635120040136159, 5.240852026681729, 4.165468510131509, 2.315004083790581, 1.1106544161246077, 0.0), # 74
(14.463566827697262, 12.168955346475506, 11.559654706790123, 12.477428668478263, 10.475853304284678, 5.084422153635118, 5.03550290486565, 4.158050411522635, 5.434812242798353, 2.394843863471315, 1.8717371079213185, 1.0646496642841674, 0.0, 14.138035300925928, 11.711146307125839, 9.358685539606592, 7.184531590413944, 10.869624485596706, 5.821270576131688, 5.03550290486565, 3.63173010973937, 5.237926652142339, 4.159142889492755, 2.311930941358025, 1.10626866786141, 0.0), # 75
(14.44686468658675, 12.12003748395947, 11.543964920553272, 12.457703618156202, 10.469256973022405, 5.079093717929179, 5.017616826703247, 4.139195168419449, 5.427288976527969, 2.3873843438500235, 1.8674086016106486, 1.0624954596138265, 0.0, 14.127954496742113, 11.68745005575209, 9.337043008053241, 7.162153031550069, 10.854577953055937, 5.794873235787229, 5.017616826703247, 3.6279240842351275, 5.234628486511203, 4.152567872718735, 2.3087929841106543, 1.101821589450861, 0.0), # 76
(14.428363010675731, 12.070471566219748, 11.527955861339734, 12.43725236010467, 10.461937652976141, 5.07320664786872, 4.9995299900481465, 4.120442348727329, 5.4195461400701115, 2.3799006041044684, 1.8628495323606438, 1.0602940862673376, 0.0, 14.116775441529496, 11.663234948940712, 9.314247661803218, 7.139701812313404, 10.839092280140223, 5.768619288218261, 4.9995299900481465, 3.623719034191943, 5.230968826488071, 4.145750786701558, 2.305591172267947, 1.0973155969290682, 0.0), # 77
(14.408125925925928, 12.020284169653527, 11.511632330246915, 12.416096875000001, 10.45391793754539, 5.066784842249657, 4.981249818445898, 4.101798353909466, 5.41159269547325, 2.372392824981845, 1.8580699893673582, 1.0580468919211612, 0.0, 14.10453414351852, 11.638515811132772, 9.29034994683679, 7.1171784749455345, 10.8231853909465, 5.742517695473253, 4.981249818445898, 3.6191320301783265, 5.226958968772695, 4.138698958333334, 2.3023264660493834, 1.092753106332139, 0.0), # 78
(14.386217558299041, 11.969501870657995, 11.494999128372202, 12.394259143518521, 10.445220420129644, 5.0598521998679065, 4.962783735442051, 4.0832695854290515, 5.403437604785855, 2.3648611872293506, 1.8530800618268455, 1.0557552242517592, 0.0, 14.091266610939643, 11.613307466769347, 9.265400309134227, 7.094583561688051, 10.80687520957171, 5.716577419600672, 4.962783735442051, 3.61418014276279, 5.222610210064822, 4.131419714506174, 2.2989998256744406, 1.0881365336961817, 0.0), # 79
(14.362702033756786, 11.918151245630337, 11.478061056812987, 12.371761146336556, 10.435867694128408, 5.052432619519382, 4.9441391645821575, 4.064862444749277, 5.395089830056394, 2.35730587159418, 1.847889838935161, 1.0534204309355928, 0.0, 14.07700885202332, 11.587624740291517, 9.239449194675805, 7.071917614782539, 10.790179660112788, 5.690807422648988, 4.9441391645821575, 3.6088804425138443, 5.217933847064204, 4.123920382112186, 2.2956122113625974, 1.0834682950573036, 0.0), # 80
(14.337643478260873, 11.866258870967743, 11.460822916666668, 12.348624864130437, 10.425882352941176, 5.04455, 4.925323529411765, 4.046583333333334, 5.386558333333333, 2.34972705882353, 1.8425094098883579, 1.0510438596491232, 0.0, 14.061796875, 11.561482456140352, 9.212547049441788, 7.049181176470589, 10.773116666666667, 5.665216666666669, 4.925323529411765, 3.60325, 5.212941176470588, 4.11620828804348, 2.2921645833333337, 1.0787508064516131, 0.0), # 81
(14.311106017773009, 11.813851323067393, 11.443289509030638, 12.32487227757649, 10.415286989967456, 5.036228240105676, 4.906344253476426, 4.0284386526444145, 5.3778520766651425, 2.342124929664596, 1.83694886388249, 1.048626858068812, 0.0, 14.045666688100141, 11.53489543875693, 9.18474431941245, 7.026374788993786, 10.755704153330285, 5.63981411370218, 4.906344253476426, 3.5973058857897686, 5.207643494983728, 4.1082907591921645, 2.2886579018061277, 1.0739864839152178, 0.0), # 82
(14.283153778254908, 11.760955178326475, 11.425465635002288, 12.300525367351046, 10.40410419860674, 5.027491238632323, 4.887208760321688, 4.01043480414571, 5.368980022100289, 2.3344996648645746, 1.8312182901136123, 1.0461707738711208, 0.0, 14.028654299554185, 11.507878512582325, 9.156091450568061, 7.0034989945937225, 10.737960044200578, 5.614608725803994, 4.887208760321688, 3.5910651704516594, 5.20205209930337, 4.1001751224503495, 2.2850931270004575, 1.0691777434842251, 0.0), # 83
(14.253850885668278, 11.707597013142175, 11.407356095679013, 12.275606114130436, 10.392356572258533, 5.0183628943758585, 4.867924473493101, 3.9925781893004118, 5.359951131687243, 2.3268514451706617, 1.825327777777778, 1.0436769547325107, 0.0, 14.010795717592593, 11.480446502057614, 9.12663888888889, 6.980554335511984, 10.719902263374486, 5.589609465020577, 4.867924473493101, 3.5845449245541845, 5.196178286129267, 4.091868704710146, 2.281471219135803, 1.0643270011947434, 0.0), # 84
(14.223261465974833, 11.653803403911677, 11.388965692158209, 12.250136498590983, 10.380066704322333, 5.008867106132196, 4.8484988165362175, 3.974875209571713, 5.35077436747447, 2.3191804513300527, 1.8192874160710422, 1.041146748329443, 0.0, 13.992126950445819, 11.452614231623869, 9.09643708035521, 6.957541353990157, 10.70154873494894, 5.564825293400398, 4.8484988165362175, 3.577762218665854, 5.190033352161167, 4.083378832863662, 2.2777931384316417, 1.05943667308288, 0.0), # 85
(14.191449645136279, 11.59960092703217, 11.370299225537268, 12.224138501409021, 10.367257188197637, 4.999027772697253, 4.828939212996585, 3.9573322664228017, 5.341458691510441, 2.311486864089944, 1.8131072941894584, 1.0385815023383795, 0.0, 13.97268400634431, 11.424396525722173, 9.065536470947292, 6.934460592269831, 10.682917383020882, 5.540265172991923, 4.828939212996585, 3.57073412335518, 5.183628594098819, 4.074712833803008, 2.274059845107454, 1.0545091751847429, 0.0), # 86
(14.15847954911433, 11.545016158900838, 11.35136149691358, 12.19763410326087, 10.353950617283953, 4.988868792866941, 4.809253086419753, 3.939955761316873, 5.332013065843622, 2.3037708641975314, 1.8067975013290805, 1.035982564435781, 0.0, 13.95250289351852, 11.39580820879359, 9.033987506645403, 6.9113125925925925, 10.664026131687244, 5.515938065843622, 4.809253086419753, 3.563477709190672, 5.1769753086419765, 4.065878034420291, 2.2702722993827162, 1.0495469235364399, 0.0), # 87
(14.124415303870702, 11.490075675914863, 11.332157307384547, 12.170645284822868, 10.340169584980769, 4.97841406543718, 4.789447860351274, 3.9227520957171165, 5.322446452522482, 2.296032632400011, 1.8003681266859632, 1.0333512822981095, 0.0, 13.931619620198905, 11.366864105279202, 9.001840633429817, 6.888097897200032, 10.644892905044964, 5.491852934003963, 4.789447860351274, 3.556010046740843, 5.1700847924903846, 4.056881761607624, 2.2664314614769094, 1.0445523341740786, 0.0), # 88
(14.089321035367092, 11.434806054471437, 11.312691458047555, 12.143194026771337, 10.325936684687594, 4.967687489203883, 4.769530958336696, 3.905727671086725, 5.312767813595489, 2.2882723494445796, 1.7938292594561607, 1.030689003601826, 0.0, 13.910070194615912, 11.337579039620083, 8.969146297280803, 6.864817048333737, 10.625535627190978, 5.4680187395214155, 4.769530958336696, 3.548348206574202, 5.162968342343797, 4.047731342257113, 2.2625382916095114, 1.0395278231337672, 0.0), # 89
(14.053260869565218, 11.379233870967743, 11.292968750000002, 12.115302309782612, 10.311274509803923, 4.956712962962964, 4.749509803921569, 3.8888888888888893, 5.302986111111112, 2.280490196078432, 1.787190988835726, 1.027997076023392, 0.0, 13.887890625, 11.30796783625731, 8.93595494417863, 6.841470588235294, 10.605972222222224, 5.4444444444444455, 4.749509803921569, 3.54050925925926, 5.155637254901961, 4.0384341032608715, 2.2585937500000006, 1.0344758064516133, 0.0), # 90
(14.016298932426789, 11.323385701800964, 11.272993984339278, 12.086992114533015, 10.296205653729254, 4.945514385510339, 4.729391820651443, 3.8722421505868017, 5.293110307117818, 2.2726863530487647, 1.7804634040207143, 1.025276847239269, 0.0, 13.865116919581618, 11.278045319631957, 8.902317020103572, 6.818059059146293, 10.586220614235636, 5.4211390108215225, 4.729391820651443, 3.5325102753645283, 5.148102826864627, 4.0289973715110055, 2.254598796867856, 1.0293987001637241, 0.0), # 91
(13.978499349913523, 11.267288123368292, 11.252771962162782, 12.058285421698875, 10.280752709863094, 4.934115655641925, 4.709184432071869, 3.8557938576436523, 5.2831493636640765, 2.2648610011027737, 1.7736565942071794, 1.0225296649259181, 0.0, 13.841785086591221, 11.247826314185097, 8.868282971035896, 6.79458300330832, 10.566298727328153, 5.398111400701113, 4.709184432071869, 3.524368325458518, 5.140376354931547, 4.019428473899626, 2.2505543924325564, 1.0242989203062085, 0.0), # 92
(13.939926247987117, 11.210967712066907, 11.232307484567903, 12.029204211956525, 10.264938271604938, 4.9225406721536356, 4.688895061728395, 3.839550411522634, 5.273112242798354, 2.2570143209876545, 1.7667806485911755, 1.019756876759801, 0.0, 13.81793113425926, 11.217325644357809, 8.833903242955877, 6.771042962962962, 10.546224485596708, 5.375370576131688, 4.688895061728395, 3.5161004801097393, 5.132469135802469, 4.009734737318842, 2.246461496913581, 1.0191788829151736, 0.0), # 93
(13.900643752609293, 11.154451044293994, 11.211605352652038, 11.999770465982289, 10.248784932354287, 4.910813333841387, 4.6685311331665735, 3.8235182136869392, 5.263007906569121, 2.2491464934506045, 1.7598456563687561, 1.016959830417379, 0.0, 13.793591070816188, 11.186558134591166, 8.79922828184378, 6.747439480351812, 10.526015813138242, 5.3529254991617155, 4.6685311331665735, 3.5077238098867047, 5.124392466177143, 3.9999234886607637, 2.2423210705304077, 1.014041004026727, 0.0), # 94
(13.860715989741754, 11.097764696446747, 11.190670367512576, 11.970006164452498, 10.232315285510639, 4.898957539501094, 4.648100069931951, 3.807703665599757, 5.252845317024844, 2.241257699238818, 1.752861706735976, 1.014139873575113, 0.0, 13.768800904492457, 11.155538609326241, 8.764308533679879, 6.723773097716453, 10.505690634049689, 5.33078513183966, 4.648100069931951, 3.499255385357924, 5.1161576427553195, 3.9900020548175, 2.2381340735025153, 1.0088876996769771, 0.0), # 95
(13.820207085346219, 11.040935244922345, 11.169507330246915, 11.93993328804348, 10.215551924473493, 4.88699718792867, 4.62760929557008, 3.7921131687242804, 5.242633436213992, 2.2333481190994924, 1.7458388888888892, 1.0112983539094653, 0.0, 13.74359664351852, 11.124281893004117, 8.729194444444445, 6.700044357298475, 10.485266872427983, 5.3089584362139925, 4.62760929557008, 3.490712277091907, 5.1077759622367465, 3.9799777626811608, 2.2339014660493834, 1.0037213859020315, 0.0), # 96
(13.779181165384388, 10.983989266117973, 11.148121041952448, 11.909573817431562, 10.198517442642354, 4.8749561779200326, 4.60706623362651, 3.7767531245237014, 5.2323812261850335, 2.2254179337798226, 1.7387872920235496, 1.0084366190968967, 0.0, 13.718014296124831, 11.09280281006586, 8.693936460117747, 6.676253801339467, 10.464762452370067, 5.287454374333182, 4.60706623362651, 3.482111555657166, 5.099258721321177, 3.969857939143855, 2.2296242083904896, 0.9985444787379977, 0.0), # 97
(13.737702355817978, 10.926953336430817, 11.126516303726566, 11.878949733293078, 10.181234433416716, 4.862858408271099, 4.58647830764679, 3.7616299344612103, 5.222097648986434, 2.2174673240270053, 1.7317170053360116, 1.0055560168138682, 0.0, 13.69208987054184, 11.06111618495255, 8.658585026680058, 6.652401972081014, 10.444195297972868, 5.266281908245695, 4.58647830764679, 3.4734702916222133, 5.090617216708358, 3.9596499110976935, 2.2253032607453136, 0.9933593942209834, 0.0), # 98
(13.695834782608697, 10.869854032258065, 11.10469791666667, 11.848083016304349, 10.163725490196079, 4.850727777777779, 4.5658529411764714, 3.7467500000000005, 5.211791666666667, 2.2094964705882356, 1.724638118022329, 1.0026578947368423, 0.0, 13.665859375000002, 11.029236842105265, 8.623190590111644, 6.628489411764706, 10.423583333333333, 5.245450000000001, 4.5658529411764714, 3.4648055555555564, 5.081862745098039, 3.949361005434784, 2.220939583333334, 0.988168548387097, 0.0), # 99
(13.653642571718258, 10.8127179299969, 11.082670681870143, 11.816995647141708, 10.146013206379946, 4.8385881852359915, 4.545197557761102, 3.732119722603262, 5.201472241274196, 2.201505554210711, 1.717560719278556, 0.9997436005422796, 0.0, 13.639358817729768, 10.997179605965075, 8.58780359639278, 6.6045166626321326, 10.402944482548392, 5.224967611644567, 4.545197557761102, 3.456134418025708, 5.073006603189973, 3.938998549047237, 2.2165341363740287, 0.9829743572724456, 0.0), # 100
(13.611189849108369, 10.755571606044516, 11.060439400434387, 11.785709606481484, 10.128120175367815, 4.82646352944165, 4.524519580946234, 3.7177455037341867, 5.191148334857491, 2.1934947556416264, 1.7104948983007466, 0.9968144819066413, 0.0, 13.612624206961591, 10.964959300973053, 8.552474491503732, 6.580484266924878, 10.382296669714982, 5.204843705227861, 4.524519580946234, 3.4474739496011786, 5.064060087683908, 3.928569868827162, 2.2120878800868775, 0.977779236913138, 0.0), # 101
(13.568540740740744, 10.698441636798089, 11.038008873456791, 11.754246875000002, 10.110068990559187, 4.814377709190674, 4.503826434277415, 3.7036337448559675, 5.180828909465021, 2.1854642556281783, 1.7034507442849551, 0.9938718865063897, 0.0, 13.585691550925928, 10.932590751570284, 8.517253721424776, 6.556392766884533, 10.361657818930041, 5.185087242798355, 4.503826434277415, 3.438841220850481, 5.055034495279593, 3.918082291666668, 2.207601774691358, 0.972585603345281, 0.0), # 102
(13.525759372577088, 10.641354598654807, 11.015383902034753, 11.722629433373593, 10.09188224535356, 4.802354623278973, 4.483125541300197, 3.689790847431795, 5.170522927145252, 2.1774142349175616, 1.696438346427236, 0.9909171620179854, 0.0, 13.558596857853223, 10.900088782197837, 8.482191732136178, 6.532242704752683, 10.341045854290504, 5.1657071864045125, 4.483125541300197, 3.4302533023421233, 5.04594112267678, 3.907543144457865, 2.2030767804069504, 0.9673958726049827, 0.0), # 103
(13.482909870579116, 10.58433706801186, 10.992569287265662, 11.690879262278584, 10.073582533150434, 4.790418170502465, 4.462424325560129, 3.6762232129248593, 5.160239349946655, 2.1693448742569736, 1.689467793923642, 0.9879516561178898, 0.0, 13.53137613597394, 10.867468217296787, 8.447338969618208, 6.50803462277092, 10.32047869989331, 5.146712498094804, 4.462424325560129, 3.421727264644618, 5.036791266575217, 3.896959754092862, 2.1985138574531327, 0.9622124607283511, 0.0), # 104
(13.440056360708535, 10.527415621266428, 10.969569830246915, 11.659018342391304, 10.05519244734931, 4.778592249657065, 4.441730210602761, 3.662937242798354, 5.1499871399176955, 2.1612563543936103, 1.682549175970229, 0.9849767164825647, 0.0, 13.50406539351852, 10.83474388130821, 8.412745879851144, 6.48376906318083, 10.299974279835391, 5.128112139917696, 4.441730210602761, 3.4132801783264752, 5.027596223674655, 3.886339447463769, 2.1939139660493834, 0.9570377837514936, 0.0), # 105
(13.39726296892706, 10.470616834815702, 10.946390332075904, 11.627068654388085, 10.036734581349688, 4.766900759538689, 4.4210506199736415, 3.6499393385154706, 5.139775259106843, 2.153148856074666, 1.67569258176305, 0.9819936907884712, 0.0, 13.476700638717421, 10.801930598673183, 8.378462908815248, 6.459446568223997, 10.279550518213686, 5.109915073921659, 4.4210506199736415, 3.4049291139562063, 5.018367290674844, 3.875689551462696, 2.189278066415181, 0.9518742577105185, 0.0), # 106
(13.3545938211964, 10.413967285056863, 10.923035593850026, 11.59505217894525, 10.018231528551063, 4.755367598943252, 4.400392977218323, 3.6372359015394005, 5.129612669562567, 2.145022560047339, 1.6689081004981592, 0.9790039267120707, 0.0, 13.449317879801098, 10.769043193832776, 8.344540502490794, 6.435067680142016, 10.259225339125134, 5.092130262155161, 4.400392977218323, 3.3966911421023225, 5.009115764275531, 3.865017392981751, 2.1846071187700056, 0.9467242986415331, 0.0), # 107
(13.312113043478263, 10.357493548387097, 10.899510416666669, 11.562990896739132, 9.999705882352941, 4.744016666666668, 4.379764705882353, 3.6248333333333345, 5.119508333333334, 2.1368776470588244, 1.662205821371611, 0.9760087719298248, 0.0, 13.421953125000002, 10.736096491228071, 8.311029106858054, 6.4106329411764715, 10.239016666666668, 5.074766666666668, 4.379764705882353, 3.3885833333333344, 4.999852941176471, 3.854330298913045, 2.179902083333334, 0.9415903225806455, 0.0), # 108
(13.26988476173436, 10.301222201203595, 10.87581960162323, 11.530906788446053, 9.98118023615482, 4.732871861504853, 4.359173229511284, 3.612738035360464, 5.109471212467612, 2.1287142978563174, 1.6555958335794598, 0.9730095741181947, 0.0, 13.394642382544584, 10.70310531530014, 8.277979167897298, 6.386142893568951, 10.218942424935223, 5.05783324950465, 4.359173229511284, 3.3806227582177515, 4.99059011807741, 3.8436355961486854, 2.1751639203246462, 0.9364747455639633, 0.0), # 109
(13.227973101926404, 10.245179819903537, 10.851967949817103, 11.498821834742351, 9.962677183356197, 4.721957082253722, 4.3386259716506625, 3.6009564090839814, 5.099510269013869, 2.1205326931870148, 1.6490882263177586, 0.9700076809536419, 0.0, 13.367421660665297, 10.670084490490058, 8.245441131588793, 6.361598079561043, 10.199020538027739, 5.041338972717574, 4.3386259716506625, 3.372826487324087, 4.981338591678099, 3.832940611580785, 2.170393589963421, 0.9313799836275944, 0.0), # 110
(13.186442190016104, 10.189392980884113, 10.827960262345682, 11.46675801630435, 9.944219317356573, 4.711296227709192, 4.318130355846042, 3.5894948559670787, 5.089634465020577, 2.1123330137981124, 1.6426930887825626, 0.9670044401126275, 0.0, 13.340326967592594, 10.6370488412389, 8.213465443912813, 6.336999041394336, 10.179268930041154, 5.02529279835391, 4.318130355846042, 3.3652115912208513, 4.972109658678287, 3.8222526721014507, 2.1655920524691368, 0.9263084528076467, 0.0), # 111
(13.14535615196517, 10.133888260542502, 10.803801340306359, 11.434737313808373, 9.925829231555449, 4.700913196667176, 4.297693805642971, 3.5783597774729468, 5.079852762536198, 2.1041154404368063, 1.6364205101699256, 0.9640011992716131, 0.0, 13.313394311556928, 10.604013191987741, 8.182102550849628, 6.312346321310418, 10.159705525072397, 5.0097036884621255, 4.297693805642971, 3.357795140476554, 4.962914615777724, 3.8115791046027923, 2.160760268061272, 0.9212625691402275, 0.0), # 112
(13.104705913184263, 10.078784894108638, 10.779554132960747, 11.402825576616644, 9.907497301495457, 4.690826978191853, 4.277368174559739, 3.5675806651220205, 5.07019931192069, 2.095906657814456, 1.6302822447690024, 0.9610058425921835, 0.0, 13.286621461180511, 10.571064268514016, 8.151411223845011, 6.287719973443367, 10.14039862384138, 4.9946129311708285, 4.277368174559739, 3.3505906987084666, 4.953748650747729, 3.8009418588722155, 2.15591082659215, 0.9162531721916946, 0.0), # 113
(13.064073257060091, 10.024626385524439, 10.755553287525224, 11.371278892341204, 9.88903379759524, 4.681014596966087, 4.257412745887406, 3.557289901377987, 5.060822216666095, 2.0878603087694745, 1.6242903453264128, 0.9580564200798471, 0.0, 13.25978557982405, 10.538620620878318, 8.121451726632063, 6.263580926308422, 10.12164443333219, 4.980205861929182, 4.257412745887406, 3.3435818549757763, 4.94451689879762, 3.790426297447069, 2.1511106575050447, 0.9113296714113127, 0.0), # 114
(13.023338864205595, 9.97143223830991, 10.731813088158539, 11.340088730440868, 9.870380499362694, 4.671450535207326, 4.2378417551340934, 3.547484881662581, 5.051724990045435, 2.0799888647958276, 1.6184360526663222, 0.9551543846318662, 0.0, 13.232809284324528, 10.506698230950526, 8.09218026333161, 6.239966594387481, 10.10344998009087, 4.966478834327614, 4.2378417551340934, 3.336750382290947, 4.935190249681347, 3.780029576813624, 2.146362617631708, 0.9064938398463556, 0.0), # 115
(12.982451822532688, 9.919124960991017, 10.708287554981187, 11.309199457779725, 9.851509291291528, 4.662112249784464, 4.218623372269525, 3.5381385158577467, 5.042884624972988, 2.072277675457342, 1.6127080506300124, 0.9522943730401906, 0.0, 13.205650163658248, 10.475238103442095, 8.063540253150062, 6.216833026372026, 10.085769249945976, 4.953393922200846, 4.218623372269525, 3.330080178417474, 4.925754645645764, 3.7697331525932425, 2.1416575109962372, 0.9017386328173653, 0.0), # 116
(12.941361219953283, 9.867627062093726, 10.68493070811365, 11.278555441221856, 9.832392057875436, 4.652977197566394, 4.199725767263427, 3.529223713845425, 5.034278114363028, 2.0647120903178457, 1.6070950230587664, 0.949471022096771, 0.0, 13.178265806801516, 10.44418124306448, 8.035475115293831, 6.1941362709535355, 10.068556228726056, 4.940913199383595, 4.199725767263427, 3.3235551411188533, 4.916196028937718, 3.7595184804072863, 2.1369861416227303, 0.8970570056448843, 0.0), # 117
(12.900016144379297, 9.816861050144, 10.66169656767643, 11.248101047631351, 9.81300068360812, 4.644022835422014, 4.181117110085521, 3.5207133855075567, 5.025882451129837, 2.0572774589411664, 1.6015856537938657, 0.9466789685935577, 0.0, 13.150613802730636, 10.413468654529133, 8.007928268969328, 6.171832376823498, 10.051764902259674, 4.92899873971058, 4.181117110085521, 3.317159168158581, 4.90650034180406, 3.7493670158771177, 2.132339313535286, 0.8924419136494547, 0.0), # 118
(12.858365683722639, 9.766749433667803, 10.638539153790012, 11.217780643872292, 9.793307052983273, 4.635226620220214, 4.162765570705529, 3.512580440726085, 5.017674628187687, 2.0499591308911307, 1.5961686266765933, 0.9439128493225009, 0.0, 13.122651740421906, 10.383041342547507, 7.980843133382966, 6.149877392673391, 10.035349256375374, 4.91761261701652, 4.162765570705529, 3.310876157300153, 4.896653526491637, 3.7392602146240983, 2.1277078307580024, 0.8878863121516185, 0.0), # 119
(12.816358925895228, 9.717214721191104, 10.61541248657489, 11.187538596808764, 9.773283050494598, 4.626566008829889, 4.144639319093177, 3.5047977893829505, 5.009631638450861, 2.0427424557315677, 1.5908326255482306, 0.9411673010755515, 0.0, 13.094337208851638, 10.352840311831065, 7.954163127741153, 6.128227367194702, 10.019263276901722, 4.906716905136131, 4.144639319093177, 3.3046900063070637, 4.886641525247299, 3.729179532269589, 2.1230824973149782, 0.8833831564719186, 0.0), # 120
(12.773944958808976, 9.668179421239865, 10.592270586151553, 11.157319273304857, 9.75290056063579, 4.618018458119934, 4.126706525218187, 3.4973383413600962, 5.001730474833633, 2.035612783026304, 1.5855663342500608, 0.9384369606446594, 0.0, 13.065627796996127, 10.322806567091252, 7.927831671250303, 6.106838349078911, 10.003460949667266, 4.8962736779041345, 4.126706525218187, 3.29858461294281, 4.876450280317895, 3.719106424434953, 2.118454117230311, 0.878925401930897, 0.0), # 121
(12.731072870375797, 9.61956604234005, 10.569067472640498, 11.127067040224649, 9.732131467900551, 4.609561424959241, 4.108935359050283, 3.490175006539462, 4.993948130250281, 2.0285554623391677, 1.5803584366233656, 0.9357164648217753, 0.0, 13.036481093831679, 10.292881113039527, 7.901792183116827, 6.085666387017502, 9.987896260500563, 4.886245009155247, 4.108935359050283, 3.2925438749708866, 4.8660657339502755, 3.7090223467415506, 2.1138134945280997, 0.8745060038490956, 0.0), # 122
(12.687691748507607, 9.571297093017627, 10.54575716616221, 11.09672626443223, 9.71094765678258, 4.601172366216706, 4.091293990559188, 3.4832806948029904, 4.986261597615085, 2.021555843233986, 1.5751976165094272, 0.9330004503988493, 0.0, 13.0068546883346, 10.263004954387341, 7.875988082547136, 6.064667529701957, 9.97252319523017, 4.876592972724187, 4.091293990559188, 3.28655169015479, 4.85547382839129, 3.698908754810744, 2.109151433232442, 0.8701179175470571, 0.0), # 123
(12.643750681116316, 9.523295081798558, 10.522293686837184, 11.066241312791686, 9.689321011775569, 4.592828738761221, 4.073750589714624, 3.476628316032624, 4.97864786984232, 2.014599275274587, 1.5700725577495283, 0.9302835541678323, 0.0, 12.976706169481197, 10.233119095846153, 7.85036278874764, 6.04379782582376, 9.95729573968464, 4.8672796424456735, 4.073750589714624, 3.280591956258015, 4.844660505887784, 3.6887471042638964, 2.104458737367437, 0.8657540983453236, 0.0), # 124
(12.599198756113843, 9.475482517208812, 10.498631054785912, 11.0355565521671, 9.667223417373222, 4.584507999461682, 4.056273326486318, 3.4701907801103036, 4.971083939846263, 2.0076711080247973, 1.5649719441849508, 0.927560412920674, 0.0, 12.94599312624776, 10.203164542127412, 7.824859720924753, 6.023013324074391, 9.942167879692526, 4.858267092154425, 4.056273326486318, 3.2746485710440583, 4.833611708686611, 3.678518850722367, 2.0997262109571824, 0.8614075015644376, 0.0), # 125
(12.553985061412101, 9.427781907774351, 10.474723290128884, 11.004616349422557, 9.644626758069233, 4.5761876051869805, 4.038830370843989, 3.463940996917971, 4.963546800541195, 2.0007566910484456, 1.5598844596569765, 0.9248256634493257, 0.0, 12.91467314761061, 10.173082297942582, 7.799422298284883, 6.002270073145335, 9.92709360108239, 4.849517395685159, 4.038830370843989, 3.268705432276415, 4.822313379034616, 3.66820544980752, 2.094944658025777, 0.8570710825249411, 0.0), # 126
(12.508058684923006, 9.380115762021138, 10.450524412986589, 10.973365071422144, 9.621502918357304, 4.567845012806012, 4.021389892757366, 3.4578518763375685, 4.95601344484139, 1.993841373909359, 1.5547987880068885, 0.9220739425457369, 0.0, 12.88270382254604, 10.142813368003106, 7.773993940034442, 5.981524121728076, 9.91202688968278, 4.8409926268725965, 4.021389892757366, 3.26274643771858, 4.810751459178652, 3.6577883571407157, 2.090104882597318, 0.8527377965473764, 0.0), # 127
(12.461368714558466, 9.332406588475143, 10.425988443479525, 10.941747085029949, 9.597823782731137, 4.5594576791876715, 4.003920062196168, 3.451896328251037, 4.948460865661126, 1.986910506171365, 1.5497036130759692, 0.9192998870018588, 0.0, 12.850042740030352, 10.112298757020445, 7.748518065379845, 5.960731518514094, 9.896921731322252, 4.832654859551452, 4.003920062196168, 3.2567554851340508, 4.798911891365568, 3.6472490283433174, 2.085197688695905, 0.8484005989522859, 0.0), # 128
(12.413864238230394, 9.284576895662326, 10.401069401728181, 10.909706757110053, 9.573561235684425, 4.551003061200851, 3.9863890491301195, 3.446047262540319, 4.9408660559146815, 1.9799494373982915, 1.5445876187055003, 0.916498133609641, 0.0, 12.816647489039854, 10.08147946970605, 7.7229380935275005, 5.939848312194873, 9.881732111829363, 4.824466167556446, 3.9863890491301195, 3.250716472286322, 4.786780617842212, 3.636568919036685, 2.0802138803456365, 0.8440524450602116, 0.0), # 129
(12.365494343850713, 9.236549192108656, 10.375721307853043, 10.877188454526541, 9.548687161710866, 4.542458615714445, 3.968765023528944, 3.440277589087355, 4.933206008516334, 1.9729435171539655, 1.539439488736764, 0.9136633191610346, 0.0, 12.78247565855085, 10.050296510771378, 7.697197443683819, 5.9188305514618955, 9.866412017032667, 4.816388624722297, 3.968765023528944, 3.244613296938889, 4.774343580855433, 3.6257294848421813, 2.075144261570609, 0.8396862901916962, 0.0), # 130
(12.316208119331334, 9.188245986340096, 10.349898181974611, 10.8441365441435, 9.523173445304161, 4.533801799597346, 3.9510161553623666, 3.4345602177740875, 4.92545771638036, 1.9658780950022154, 1.5342479070110426, 0.9107900804479897, 0.0, 12.747484837539638, 10.018690884927885, 7.671239535055213, 5.897634285006645, 9.85091543276072, 4.808384304883723, 3.9510161553623666, 3.238429856855247, 4.761586722652081, 3.614712181381168, 2.0699796363949226, 0.8352950896672816, 0.0), # 131
(12.265954652584163, 9.139589786882611, 10.32355404421337, 10.810495392825016, 9.49699197095801, 4.525010069718451, 3.9331106146001082, 3.4288680584824593, 4.917598172421039, 1.9587385205068681, 1.5290015573696185, 0.9078730542624567, 0.0, 12.711632614982527, 9.986603596887022, 7.645007786848092, 5.876215561520603, 9.835196344842078, 4.800415281875443, 3.9331106146001082, 3.2321500497988938, 4.748495985479005, 3.6034984642750065, 2.0647108088426744, 0.8308717988075103, 0.0), # 132
(12.21468303152113, 9.090503102262165, 10.296642914689816, 10.776209367435175, 9.470114623166108, 4.516060882946651, 3.915016571211893, 3.4231740210944106, 4.909604369552646, 1.9515101432317519, 1.5236891236537742, 0.904906877396386, 0.0, 12.674876579855821, 9.953975651360244, 7.618445618268871, 5.854530429695254, 9.819208739105292, 4.792443629532175, 3.915016571211893, 3.2257577735333225, 4.735057311583054, 3.5920697891450595, 2.059328582937963, 0.8264093729329243, 0.0), # 133
(12.162342344054133, 9.040908441004726, 10.26911881352444, 10.741222834838059, 9.442513286422153, 4.5069316961508425, 3.896702195167445, 3.4174510154918845, 4.90145330068946, 1.9441783127406937, 1.518299289704792, 0.9018861866417278, 0.0, 12.637174321135817, 9.920748053059004, 7.5914964485239596, 5.83253493822208, 9.80290660137892, 4.784431421688638, 3.896702195167445, 3.21923692582203, 4.721256643211077, 3.5804076116126873, 2.053823762704888, 0.8219007673640661, 0.0), # 134
(12.108881678095097, 8.990728311636257, 10.24093576083773, 10.705480161897759, 9.414159845219846, 4.4975999661999175, 3.8781356564364877, 3.4116719515568206, 4.893121958745757, 1.9367283785975222, 1.5128207393639534, 0.898805618790433, 0.0, 12.59848342779883, 9.88686180669476, 7.5641036968197675, 5.810185135792565, 9.786243917491515, 4.776340732179549, 3.8781356564364877, 3.212571404428512, 4.707079922609923, 3.5684933872992537, 2.048187152167546, 0.817338937421478, 0.0), # 135
(12.05425012155593, 8.93988522268272, 10.212047776750177, 10.668925715478352, 9.385026184052883, 4.488043149962771, 3.8592851249887445, 3.4058097391711617, 4.884587336635816, 1.9291456903660635, 1.5072421564725416, 0.8956598106344515, 0.0, 12.558761488821151, 9.852257916978965, 7.536210782362707, 5.787437071098189, 9.769174673271632, 4.768133634839627, 3.8592851249887445, 3.205745107116265, 4.6925130920264415, 3.556308571826118, 2.042409555350036, 0.812716838425702, 0.0), # 136
(11.998396762348548, 8.888301682670086, 10.18240888138228, 10.631503862443932, 9.355084187414965, 4.478238704308296, 3.8401187707939393, 3.399837288216851, 4.875826427273916, 1.9214155976101461, 1.5015522248718383, 0.8924433989657341, 0.0, 12.517966093179089, 9.816877388623073, 7.507761124359191, 5.764246792830437, 9.751652854547832, 4.759772203503592, 3.8401187707939393, 3.1987419316487826, 4.6775420937074825, 3.543834620814645, 2.036481776276456, 0.8080274256972807, 0.0), # 137
(11.941270688384867, 8.835900200124316, 10.15197309485452, 10.593158969658578, 9.32430573979979, 4.4681640861053875, 3.8206047638217933, 3.393727508575828, 4.8668162235743315, 1.913523449893597, 1.4957396284031257, 0.889151020576231, 0.0, 12.476054829848946, 9.78066122633854, 7.478698142015627, 5.740570349680789, 9.733632447148663, 4.751218512006159, 3.8206047638217933, 3.1915457757895624, 4.662152869899895, 3.5310529898861933, 2.0303946189709046, 0.8032636545567561, 0.0), # 138
(11.882820987576796, 8.782603283571376, 10.120694437287398, 10.553835403986378, 9.292662725701055, 4.457796752222938, 3.800711274042032, 3.3874533101300353, 4.85753371845134, 1.9054545967802445, 1.4897930509076862, 0.8857773122578926, 0.0, 12.432985287807028, 9.743550434836816, 7.448965254538431, 5.716363790340733, 9.71506743690268, 4.742434634182049, 3.800711274042032, 3.184140537302099, 4.646331362850527, 3.517945134662127, 2.0241388874574797, 0.7984184803246707, 0.0), # 139
(11.822996747836257, 8.72833344153723, 10.088526928801404, 10.513477532291418, 9.26012702961246, 4.447114159529844, 3.780406471424378, 3.3809876027614147, 4.847955904819222, 1.8971943878339157, 1.4837011762268022, 0.8823169108026693, 0.0, 12.38871505602964, 9.70548601882936, 7.41850588113401, 5.691583163501746, 9.695911809638444, 4.733382643865981, 3.780406471424378, 3.176510113949888, 4.63006351480623, 3.5044925107638067, 2.017705385760281, 0.7934848583215663, 0.0), # 140
(11.761747057075162, 8.673013182547843, 10.055424589517022, 10.472029721437782, 9.226670536027703, 4.436093764894997, 3.7596585259385567, 3.374303296351908, 4.838059775592251, 1.8887281726184386, 1.477452688201756, 0.8787644530025115, 0.0, 12.34320172349308, 9.666408983027624, 7.38726344100878, 5.6661845178553145, 9.676119551184502, 4.724024614892672, 3.7596585259385567, 3.168638403496426, 4.613335268013851, 3.490676573812595, 2.0110849179034047, 0.7884557438679859, 0.0), # 141
(11.69902100320542, 8.616565015129181, 10.02134143955475, 10.429436338289557, 9.192265129440482, 4.424713025187291, 3.7384356075542886, 3.367373300783457, 4.827822323684707, 1.8800413006976404, 1.4710362706738296, 0.8751145756493696, 0.0, 12.296402879173653, 9.626260332143064, 7.355181353369148, 5.64012390209292, 9.655644647369414, 4.71432262109684, 3.7384356075542886, 3.160509303705208, 4.596132564720241, 3.4764787794298533, 2.0042682879109504, 0.7833240922844712, 0.0), # 142
(11.634767674138946, 8.558911447807208, 9.986231499035082, 10.385641749710825, 9.156882694344494, 4.412949397275621, 3.7167058862412983, 3.360170525938002, 4.817220542010869, 1.871119121635349, 1.4644406074843055, 0.8713619155351939, 0.0, 12.248276112047666, 9.584981070887132, 7.322203037421526, 5.6133573649060455, 9.634441084021738, 4.704238736313203, 3.7167058862412983, 3.1521067123397293, 4.578441347172247, 3.4618805832369426, 1.9972462998070164, 0.7780828588915646, 0.0), # 143
(11.56893615778766, 8.499974989107892, 9.950048788078501, 10.340590322565676, 9.12049511523344, 4.400780338028881, 3.6944375319693092, 3.3526678816974873, 4.806231423485011, 1.8619469849953916, 1.4576543824744654, 0.867501109451935, 0.0, 12.198779011091421, 9.542512203971285, 7.288271912372326, 5.585840954986173, 9.612462846970022, 4.693735034376482, 3.6944375319693092, 3.1434145271634857, 4.56024755761672, 3.446863440855226, 1.9900097576157, 0.7727249990098085, 0.0), # 144
(11.501475542063469, 8.439678147557194, 9.912747326805505, 10.294226423718191, 9.083074276601018, 4.388183304315964, 3.6715987147080456, 3.344838277943853, 4.794831961021412, 1.8525102403415963, 1.4506662794855925, 0.8635267941915434, 0.0, 12.14786916528122, 9.498794736106976, 7.253331397427962, 5.557530721024787, 9.589663922042824, 4.682773589121394, 3.6715987147080456, 3.1344166459399743, 4.541537138300509, 3.4314088079060645, 1.9825494653611013, 0.7672434679597451, 0.0), # 145
(11.432334914878291, 8.377943431681082, 9.874281135336586, 10.246494420032459, 9.044592062940927, 4.375135753005765, 3.6481576044272312, 3.336654624559041, 4.782999147534349, 1.8427942372377903, 1.4434649823589683, 0.8594336065459691, 0.0, 12.095504163593366, 9.453769672005658, 7.21732491179484, 5.52838271171337, 9.565998295068699, 4.671316474382658, 3.6481576044272312, 3.125096966432689, 4.522296031470463, 3.41549814001082, 1.9748562270673173, 0.7616312210619166, 0.0), # 146
(11.361463364144042, 8.314693350005518, 9.83460423379223, 10.19733867837256, 9.005020358746862, 4.361615140967176, 3.6240823710965873, 3.3280898314249927, 4.770709975938102, 1.8327843252478015, 1.4360391749358754, 0.855216183307163, 0.0, 12.041641595004167, 9.407378016378791, 7.180195874679377, 5.498352975743403, 9.541419951876204, 4.65932576399499, 3.6240823710965873, 3.1154393864051255, 4.502510179373431, 3.3991128927908543, 1.966920846758446, 0.7558812136368653, 0.0), # 147
(11.288809977772631, 8.24985041105647, 9.793670642292932, 10.146703565602587, 8.964331048512523, 4.347598925069094, 3.599341184685839, 3.3191168084236504, 4.757941439146947, 1.822465853935457, 1.428377541057596, 0.8508691612670749, 0.0, 11.986239048489919, 9.359560773937822, 7.141887705287981, 5.4673975618063695, 9.515882878293894, 4.646763531793111, 3.599341184685839, 3.105427803620781, 4.482165524256262, 3.38223452186753, 1.9587341284585866, 0.7499864010051337, 0.0), # 148
(11.214323843675977, 8.1833371233599, 9.751434380959186, 10.094533448586619, 8.922496016731612, 4.33306456218041, 3.573902215164709, 3.3097084654369557, 4.744670530075158, 1.8118241728645852, 1.4204687645654126, 0.8463871772176558, 0.0, 11.929254113026934, 9.310258949394212, 7.102343822827062, 5.4354725185937545, 9.489341060150316, 4.6335918516117385, 3.573902215164709, 3.09504611584315, 4.461248008365806, 3.3648444828622073, 1.950286876191837, 0.7439397384872637, 0.0), # 149
(11.137954049765991, 8.115075995441773, 9.707849469911476, 10.040772694188746, 8.879487147897825, 4.317989509170021, 3.5477336325029207, 3.29983771234685, 4.730874241637018, 1.8008446315990123, 1.412301529300607, 0.8417648679508558, 0.0, 11.870644377591507, 9.259413547459413, 7.061507646503035, 5.402533894797036, 9.461748483274036, 4.61977279728559, 3.5477336325029207, 3.084278220835729, 4.439743573948912, 3.3469242313962493, 1.9415698939822956, 0.7377341814037977, 0.0), # 150
(11.059649683954586, 8.044989535828057, 9.6628699292703, 9.985365669273047, 8.835276326504857, 4.302351222906816, 3.5208036066701984, 3.2894774590352758, 4.716529566746802, 1.789512579702568, 1.4038645191044614, 0.8369968702586252, 0.0, 11.810367431159946, 9.206965572844876, 7.019322595522306, 5.368537739107703, 9.433059133493604, 4.605268442649386, 3.5208036066701984, 3.0731080163620117, 4.417638163252429, 3.3284552230910167, 1.9325739858540603, 0.731362685075278, 0.0), # 151
(10.979359834153682, 7.973000253044715, 9.616449779156152, 9.928256740703617, 8.789835437046412, 4.286127160259694, 3.4930803076362653, 3.2786006153841747, 4.701613498318786, 1.7778133667390779, 1.3951464178182584, 0.8320778209329146, 0.0, 11.748380862708558, 9.15285603026206, 6.975732089091292, 5.333440100217232, 9.403226996637573, 4.590040861537845, 3.4930803076362653, 3.061519400185496, 4.394917718523206, 3.309418913567873, 1.9232899558312306, 0.7248182048222469, 0.0), # 152
(10.897033588275185, 7.899030655617714, 9.568543039689514, 9.86939027534453, 8.743136364016186, 4.269294778097547, 3.4645319053708437, 3.2671800912754865, 4.686103029267251, 1.7657323422723707, 1.3861359092832806, 0.8270023567656742, 0.0, 11.68464226121364, 9.097025924422415, 6.930679546416402, 5.297197026817111, 9.372206058534502, 4.574052127785681, 3.4645319053708437, 3.049496270069676, 4.371568182008093, 3.2897967584481775, 1.9137086079379029, 0.7180936959652467, 0.0), # 153
(10.81262003423102, 7.823003252073014, 9.519103730990887, 9.80871064005988, 8.695150991907875, 4.251831533289268, 3.43512656984366, 3.2551887965911552, 4.6699751525064706, 1.7532548558662742, 1.3768216773408095, 0.8217651145488547, 0.0, 11.6191092156515, 9.0394162600374, 6.884108386704048, 5.259764567598821, 9.339950305012941, 4.557264315227617, 3.43512656984366, 3.037022523778049, 4.347575495953937, 3.2695702133532945, 1.9038207461981775, 0.7111821138248196, 0.0), # 154
(10.72606825993309, 7.744840550936584, 9.468085873180756, 9.746162201713748, 8.645851205215184, 4.233714882703753, 3.404832471024433, 3.2425996412131215, 4.653206860950727, 1.7403662570846146, 1.3671924058321279, 0.8163607310744064, 0.0, 11.551739314998438, 8.97996804181847, 6.8359620291606396, 5.221098771253843, 9.306413721901453, 4.53963949769837, 3.404832471024433, 3.0240820590741087, 4.322925602607592, 3.2487207339045834, 1.8936171746361512, 0.7040764137215078, 0.0), # 155
(10.637327353293314, 7.664465060734389, 9.415443486379615, 9.68168932717022, 8.595208888431804, 4.214922283209894, 3.37361777888289, 3.2293855350233276, 4.635775147514292, 1.727051895491221, 1.357236778598518, 0.8107838431342794, 0.0, 11.48249014823076, 8.918622274477073, 6.7861838929925895, 5.181155686473662, 9.271550295028584, 4.521139749032659, 3.37361777888289, 3.0106587737213526, 4.297604444215902, 3.2272297757234076, 1.8830886972759233, 0.6967695509758537, 0.0), # 156
(10.546346402223609, 7.581799289992394, 9.361130590707957, 9.615236383293386, 8.543195926051439, 4.195431191676585, 3.3414506633887537, 3.215519387903715, 4.6176570051114485, 1.7132971206499201, 1.3469434794812618, 0.8050290875204243, 0.0, 11.411319304324769, 8.855319962724668, 6.734717397406309, 5.1398913619497595, 9.235314010222897, 4.501727143065201, 3.3414506633887537, 2.996736565483275, 4.2715979630257195, 3.205078794431129, 1.8722261181415913, 0.6892544809083996, 0.0), # 157
(10.450553324967336, 7.495248171657732, 9.302523946219415, 9.544258060733807, 8.48743569881293, 4.174003322325641, 3.3075747046495003, 3.200048222203801, 4.597442309412912, 1.698678070701901, 1.335972342259087, 0.7988866158226731, 0.0, 11.335080203181485, 8.787752774049402, 6.679861711295434, 5.096034212105701, 9.194884618825824, 4.480067511085322, 3.3075747046495003, 2.9814309445183147, 4.243717849406465, 3.1814193535779363, 1.8605047892438833, 0.6813861974234302, 0.0), # 158
(10.335201473769764, 7.395933826819331, 9.224527454803487, 9.454176016727876, 8.414178555796186, 4.143513212539135, 3.2677489343700015, 3.17754122744589, 4.566999388570334, 1.6807983479345614, 1.3223972849777657, 0.7911589610963629, 0.0, 11.235598705688274, 8.70274857205999, 6.611986424888827, 5.042395043803683, 9.133998777140668, 4.448557718424246, 3.2677489343700015, 2.9596522946708106, 4.207089277898093, 3.1513920055759597, 1.8449054909606977, 0.6723576206199392, 0.0), # 159
(10.198820932866035, 7.28304080162725, 9.125574450948537, 9.343506385929302, 8.321992122590341, 4.103212058438943, 3.221570623868649, 3.147432860557619, 4.525465106040038, 1.6594219781520132, 1.3060272186755595, 0.7817252273702489, 0.0, 11.110988852451014, 8.598977501072737, 6.530136093377798, 4.978265934456038, 9.050930212080075, 4.406406004780667, 3.221570623868649, 2.9308657560278157, 4.160996061295171, 3.114502128643102, 1.8251148901897079, 0.6620946183297501, 0.0), # 160
(10.042510876420344, 7.1573051140366015, 9.006721467228694, 9.213301128944565, 8.211833582663305, 4.053588080615757, 3.1693770122048135, 3.1101003109807053, 4.473387224599541, 1.6347303676098288, 1.2870063860732652, 0.77067287137255, 0.0, 10.962523662746737, 8.477401585098049, 6.435031930366326, 4.904191102829485, 8.946774449199083, 4.354140435372988, 3.1693770122048135, 2.8954200575826836, 4.105916791331652, 3.071100376314856, 1.801344293445739, 0.6506641012760548, 0.0), # 161
(9.8673704785969, 7.01946278200249, 8.86902503621808, 9.064612206380144, 8.08466011948299, 3.9951294996602726, 3.1115053384378664, 3.0659207681568685, 4.411313507026364, 1.6069049225635816, 1.2654790298916783, 0.7580893498314843, 0.0, 10.791476155852466, 8.338982848146326, 6.3273951494583915, 4.820714767690744, 8.822627014052728, 4.292289075419616, 3.1115053384378664, 2.8536639283287664, 4.042330059741495, 3.0215374021267154, 1.773805007243616, 0.6381329801820447, 0.0), # 162
(9.674498913559898, 6.870249823480022, 8.71354169049082, 8.898491578842531, 7.941428916517308, 3.928324536163185, 3.048292841627181, 3.015271421527823, 4.339791716098023, 1.5761270492688444, 1.2415893928515955, 0.7440621194752707, 0.0, 10.599119351045232, 8.184683314227977, 6.207946964257977, 4.728381147806532, 8.679583432196045, 4.221379990138953, 3.048292841627181, 2.8059460972594175, 3.970714458258654, 2.9661638596141775, 1.742708338098164, 0.6245681657709112, 0.0), # 163
(9.464995355473539, 6.710402256424303, 8.54132796262104, 8.71599120693821, 7.783097157234176, 3.853661410715189, 2.9800767608321266, 2.9585294605352903, 4.259369614592037, 1.5425781539811894, 1.2154817176738126, 0.7286786370321272, 0.0, 10.386726267602059, 8.015465007353399, 6.077408588369063, 4.627734461943566, 8.518739229184074, 4.141941244749407, 2.9800767608321266, 2.752615293367992, 3.891548578617088, 2.905330402312737, 1.7082655925242083, 0.6100365687658459, 0.0), # 164
(9.239958978502024, 6.5406560987904445, 8.353440385182864, 8.518163051273666, 7.610622025101502, 3.771628343906979, 2.9071943351120755, 2.8960720746209856, 4.1705949652859235, 1.5064396429561904, 1.1873002470791263, 0.7120263592302724, 0.0, 10.155569924799979, 7.832289951532995, 5.936501235395631, 4.51931892886857, 8.341189930571847, 4.05450090446938, 2.9071943351120755, 2.694020245647842, 3.805311012550751, 2.839387683757889, 1.670688077036573, 0.5946050998900405, 0.0), # 165
(9.000488956809557, 6.361747368533551, 8.150935490750417, 8.306059072455376, 7.4249607035872005, 3.682713556329251, 2.8299828035264003, 2.8282764532266285, 4.074015530957201, 1.4678929224494195, 1.157189223788332, 0.6941927427979253, 0.0, 9.906923341916015, 7.636120170777177, 5.78594611894166, 4.403678767348258, 8.148031061914402, 3.95958703451728, 2.8299828035264003, 2.630509683092322, 3.7124803517936003, 2.768686357485126, 1.6301870981500834, 0.5783406698666865, 0.0), # 166
(8.747684464560333, 6.174412083608727, 7.934869811897824, 8.080731231089835, 7.2270703761591815, 3.5874052685726983, 2.7487794051344725, 2.7555197857939366, 3.9701790743833865, 1.4271193987164503, 1.1252928905222266, 0.6752652444633036, 0.0, 9.642059538227196, 7.427917689096338, 5.626464452611132, 4.28135819614935, 7.940358148766773, 3.8577277001115116, 2.7487794051344725, 2.562432334694784, 3.6135351880795907, 2.693577077029946, 1.5869739623795647, 0.5613101894189753, 0.0), # 167
(8.482644675918554, 5.979386261971081, 7.706299881199207, 7.843231487783524, 7.017908226285359, 3.4861917012280164, 2.663921378995663, 2.6781792617646265, 3.8596333583419993, 1.3843004780128556, 1.0917554900016058, 0.6553313209546264, 0.0, 9.362251533010546, 7.20864453050089, 5.458777450008029, 4.152901434038566, 7.7192667166839986, 3.7494509664704774, 2.663921378995663, 2.490136929448583, 3.5089541131426794, 2.614410495927842, 1.5412599762398416, 0.5435805692700985, 0.0), # 168
(8.206468765048422, 5.777405921575724, 7.466282231228694, 7.594611803142927, 6.798431437433646, 3.3795610748859013, 2.5757459641693443, 2.5966320705804184, 3.7429261456105576, 1.339617566594208, 1.0567212649472661, 0.6344784290001119, 0.0, 9.0687723455431, 6.9792627190012295, 5.28360632473633, 4.018852699782624, 7.485852291221115, 3.635284898812586, 2.5757459641693443, 2.413972196347072, 3.399215718716823, 2.5315372677143095, 1.493256446245739, 0.5252187201432478, 0.0), # 169
(7.9202559061141375, 5.569207080377758, 7.215873394560408, 7.335924137774526, 6.569597193071951, 3.268001610137046, 2.4845903997148873, 2.5112554016830275, 3.620605198966578, 1.2932520707160806, 1.020334458080004, 0.6127940253279787, 0.0, 8.762894995101878, 6.740734278607764, 5.101672290400019, 3.879756212148241, 7.241210397933156, 3.5157575623562387, 2.4845903997148873, 2.3342868643836043, 3.2847985965359756, 2.4453080459248424, 1.4431746789120816, 0.5062915527616144, 0.0), # 170
(7.6251052732799005, 5.355525756332291, 6.956129903768475, 7.068220452284813, 6.3323626766681915, 3.152001527572146, 2.390791924691664, 2.4224264445141737, 3.4932182811875796, 1.2453853966340462, 0.9827393121206148, 0.5903655666664452, 0.0, 8.445892500963913, 6.494021233330896, 4.913696560603074, 3.736156189902138, 6.986436562375159, 3.3913970223198433, 2.390791924691664, 2.2514296625515327, 3.1661813383340958, 2.356073484094938, 1.391225980753695, 0.4868659778483902, 0.0), # 171
(7.322116040709912, 5.137097967394431, 6.688108291427019, 6.792552707280267, 6.087685071690277, 3.0320490477818964, 2.2946877781590462, 2.3305223885155746, 3.3613131550510804, 1.1961989506036783, 0.9440800697898953, 0.56728050974373, 0.0, 8.119037882406225, 6.24008560718103, 4.720400348949476, 3.588596851811034, 6.722626310102161, 3.2627313439218044, 2.2946877781590462, 2.165749319844212, 3.0438425358451386, 2.2641842357600894, 1.337621658285404, 0.4670089061267665, 0.0), # 172
(7.012387382568372, 4.914659731519285, 6.412865090110164, 6.509972863367375, 5.836521561606121, 2.9086323913569916, 2.196615199176405, 2.235920423128947, 3.225437583334597, 1.145874138880549, 0.9045009738086416, 0.5436263112880514, 0.0, 7.783604158705848, 5.979889424168563, 4.522504869043208, 3.437622416641646, 6.450875166669194, 3.130288592380526, 2.196615199176405, 2.077594565254994, 2.9182607808030605, 2.169990954455792, 1.282573018022033, 0.446787248319935, 0.0), # 173
(6.697018473019482, 4.6889470666619575, 6.131456832392036, 6.221532881152618, 5.579829329883635, 2.7822397788881266, 2.096911426803113, 2.1389977377960108, 3.08613932881565, 1.0945923677202316, 0.8641462668976501, 0.519490428027628, 0.0, 7.440864349139807, 5.7143947083039075, 4.32073133448825, 3.283777103160694, 6.1722786576313, 2.994596832914415, 2.096911426803113, 1.9873141277772333, 2.7899146649418176, 2.07384429371754, 1.2262913664784072, 0.42626791515108714, 0.0), # 174
(6.377108486227438, 4.460695990777558, 5.84494005084676, 5.928284721242486, 5.318565559990731, 2.653359430965997, 1.9959137000985407, 2.040131521958481, 2.943966154271756, 1.0425350433782987, 0.8231601917777163, 0.49496031669067847, 0.0, 7.092091472985131, 5.444563483597462, 4.115800958888581, 3.1276051301348957, 5.887932308543512, 2.8561841307418736, 1.9959137000985407, 1.8952567364042836, 2.6592827799953653, 1.9760949070808291, 1.1689880101693522, 0.40551781734341447, 0.0), # 175
(6.053756596356447, 4.230642521821194, 5.554371278048459, 5.631280344243462, 5.053687435395322, 2.5224795681812964, 1.8939592581220606, 1.9396989650580787, 2.7994658224804327, 0.9898835721103237, 0.781686991169637, 0.470123434005421, 0.0, 6.738558549518844, 5.17135777405963, 3.9084349558481852, 2.9696507163309707, 5.5989316449608655, 2.71557855108131, 1.8939592581220606, 1.8017711201294973, 2.526843717697661, 1.8770934480811543, 1.1108742556096918, 0.38460386562010856, 0.0), # 176
(5.7280619775707065, 3.9995226777479713, 5.260807046571258, 5.331571710762027, 4.786152139565322, 2.3900884111247205, 1.791385339933044, 1.8380772565365193, 2.6531860962191995, 0.9368193601718788, 0.7398709077942084, 0.4450672367000743, 0.0, 6.381538598017975, 4.895739603700816, 3.699354538971042, 2.8104580805156356, 5.306372192438399, 2.5733081591511273, 1.791385339933044, 1.707206007946229, 2.393076069782661, 1.7771905702540096, 1.0521614093142517, 0.3635929707043611, 0.0), # 177
(5.401123804034416, 3.7680724765129963, 4.9653038889892835, 5.030210781404673, 4.516916855968639, 2.2566741803869648, 1.6885291845908623, 1.7356435858355217, 2.505674738265573, 0.8835238138185378, 0.6978561843722264, 0.41987918150285664, 0.0, 6.022304637759553, 4.618670996531422, 3.489280921861132, 2.6505714414556127, 5.011349476531146, 2.4299010201697304, 1.6885291845908623, 1.611910128847832, 2.2584584279843196, 1.6767369271348913, 0.9930607777978567, 0.34255204331936334, 0.0), # 178
(0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0), # 179
)
passenger_allighting_rate = (
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 0
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 1
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 2
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 3
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 4
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 5
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 6
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 7
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 8
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 9
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 10
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 11
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 12
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 13
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 14
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 15
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 16
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 17
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 18
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 19
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 20
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 21
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 22
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 23
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 24
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 25
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 26
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 27
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 28
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 29
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 30
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 31
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 32
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 33
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 34
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 35
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 36
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 37
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 38
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 39
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 40
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 41
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 42
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 43
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 44
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 45
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 46
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 47
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 48
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 49
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 50
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 51
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 52
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 53
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 54
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 55
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 56
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 57
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 58
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 59
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 60
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 61
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 62
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 63
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 64
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 65
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 66
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 67
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 68
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 69
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 70
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 71
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 72
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 73
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 74
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 75
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 76
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 77
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 78
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 79
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 80
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 81
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 82
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 83
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 84
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 85
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 86
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 87
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 88
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 89
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 90
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 91
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 92
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 93
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 94
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 95
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 96
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 97
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 98
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 99
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 100
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 101
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 102
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 103
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 104
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 105
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 106
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 107
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 108
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 109
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 110
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 111
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 112
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 113
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 114
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 115
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 116
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 117
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 118
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 119
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 120
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 121
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 122
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 123
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 124
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 125
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 126
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 127
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 128
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 129
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 130
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 131
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 132
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 133
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 134
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 135
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 136
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 137
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 138
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 139
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 140
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 141
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 142
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 143
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 144
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 145
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 146
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 147
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 148
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 149
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 150
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 151
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 152
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 153
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 154
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 155
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 156
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 157
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 158
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 159
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 160
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 161
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 162
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 163
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 164
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 165
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 166
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 167
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 168
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 169
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 170
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 171
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 172
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 173
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 174
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 175
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 176
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 177
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 178
(0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 179
)
"""
parameters for reproducibiliy. More information: https://numpy.org/doc/stable/reference/random/parallel.html
"""
#initial entropy
entropy = 8991598675325360468762009371570610170
#index for seed sequence child
child_seed_index = (
1, # 0
15, # 1
)
|
# --------------------------------------------------------------------------
# Basic generation of the Fibonacci number sequence written in Python
# link: https://www.mycompiler.io/view/6S2zX4i
# author: milk
# --------------------------------------------------------------------------
# python fibonacci.py # to run this script
#
count=100 #set how many numbers into the sequence to show
#
# initial vars
a=0 # first number
b=0 # second number
c=1 # third number
i=0 # iterator
#
# loop for count
while (i<=count):
print(c) # display current number
a=b # first step
b=c # second step
c=a+b # third step
i+=1 # increment loop count
#
#
#
|
#!/usr/bin/python
def outlierCleaner(predictions, ages, net_worths):
"""
Clean away the 10% of points that have the largest
residual errors (difference between the prediction
and the actual net worth).
Return a list of tuples named cleaned_data where
each tuple is of the form (age, net_worth, error).
"""
errors = list(map(lambda x: x[0]-x[1], zip(predictions, net_worths)))
data = sorted(zip(ages, net_worths, errors), key = lambda x: x[2])
cleaned_data = data[:int(len(data)*0.9)]
print(f"len data = {len(predictions)}, len cleaned data = {len(cleaned_data)}")
return cleaned_data
|
# -*- coding: utf-8 -*-
"""
Created on Wed Sep 3 12:07:10 2020
@author: Georg Maubach
Programmieren Sie eine Klasse Becher, die Volumen und Fullmenge
des Bechers in Milliliter als Fliesskommazahl speichert.
Schreiben Sie einen Konstruktor für Volumen und Fullmenge,
setzen Sie fur leere Becher ein Standardagrument ein.
Schreiben Sie eine ausgabe-Methode.
Implementieren Sie Getter für die Attribute (keine Setter).
Prüfen Sie auf gültigen Zustand.
"""
class Becher:
def __init__(self, v, f = 0):
if (v <= 0):
raise ValueError("Volumen muss >0 sein.")
elif (f > v):
raise ValueError("Die Füllmenge ist groesser als der Becher")
else:
self._volumen = v
if (f < 0):
raise ValueError("F muss >=0 sein.")
else:
self._fuellmenge = f
def ausgabe(self):
print("Volumen: ", self._volumen,
"Füllmenge: ", self._fuellmenge)
def getFuellmenge(self):
return(self._fuellmenge)
def getVolumen(self):
return(self._volumen)
# https://www.python.org/dev/peps/pep-0008/
# EOF .
|
Ciudades=['Saltillo', 'Monterrey', 'Piedras Negras', 'San Pedro', 'Guadalajara']
print(Ciudades[0].title())
print(Ciudades[1].title())
print(Ciudades[2].title())
print(Ciudades[3].title())
print(Ciudades[4].title())
mensaje="Mi ciudad favorita es " + Ciudades[0].title()+ "."
print(mensaje)
M1="Me gusta viajar a " + Ciudades[4].title()+"."
print(M1)
Ciudades.append('Ramos Arizpe')
Ciudades[2]='Monclova'
Ciudades.insert(0, 'Acuña')
popped_Ciudades=Ciudades
Ciudades.pop()
Ciudades.sort()
print(sorted(Ciudades))
Ciudades.reverse()
Ciudades.sort(reverse=True)
print(Ciudades)
|
MATCHING_TICKETS_KEYS = ['id', 'category', 'status', 'date', 'price_id', 'quantity',
'section', 'row', 'remarks', 'user_id', 'username', 'updated_at']
MATCHING_TICKETS = '''
SELECT src.id, src.category, src.status, src.`date`, src.price_id, src.quantity, src.section, src.row, src.remarks, src.user_id, src.username, src.updated_at FROM
(SELECT id, category, status, `date`, price_id, quantity, section, row, remarks, updated_at, user_id, username, wish_dates, wish_price_ids, wish_quantities FROM tickets
WHERE status = 1 and category = 2 and is_banned = 0 and user_id != {user_id} ) as src,
(SELECT id, `date`, price_id, quantity, wish_dates, wish_price_ids, wish_quantities FROM tickets
WHERE user_id = {user_id} and status = 1 and category = 2 ) wish
WHERE find_in_set(src.date, wish.wish_dates)
and find_in_set(src.price_id, wish.wish_price_ids)
and find_in_set(src.quantity, wish.wish_quantities)
and find_in_set(wish.date, src.wish_dates)
and find_in_set(wish.price_id, src.wish_price_ids)
and find_in_set(wish.quantity, src.wish_quantities)
ORDER BY updated_at ASC
'''
SEARCH_BY_CONDITIONS_KEYS = ['id', 'category', 'status', 'date', 'price_id',
'quantity', 'section', 'row', 'wish_dates', 'wish_price_ids',
'wish_quantities', 'remarks', 'source_id', 'user_id', 'username', 'updated_at']
SEARCH_BY_CONDITIONS = '''SELECT id, category, status, `date`, price_id, quantity, section, `row`, wish_dates, wish_price_ids, wish_quantities, remarks, source_id, user_id, username, updated_at
FROM tickets WHERE is_banned = 0 AND {} ORDER BY id ASC;
'''
INSERT_TICKET = '''INSERT tickets (category, date, price_id, quantity, section, row, wish_dates, wish_price_ids, wish_quantities, user_id, username, updated_at)
VALUES ({category},{date},{price_id},{quantity},\'{section}\',\'{row}\', \'{wish_dates}\', \'{wish_price_ids}\', \'{wish_quantities}\', {user_id},\'{username}\', {updated_at});
'''
UPDATE_TICKET = '''UPDATE tickets SET {} WHERE id = {};'''
TICKET_DISTRIBUTION_KEYS = ['category', 'date', 'price_id', 'amount']
TICKET_DISTRIBUTION = '''SELECT category, `date`, price_id, count(1) as amount FROM tickets
WHERE status = 1 GROUP BY category, `date`, price_id ORDER BY category, `date`, price_id ASC;
'''
STATUS_DISRIBUTION_KEYS = ['status', 'amount']
STATUS_DISRIBUTION = 'SELECT status, count(1) as amount from tickets GROUP BY status ORDER BY status ASC;'
|
description = 'Beam limiter at position 1'
group = 'lowlevel'
display_order = 25
pvprefix = 'SQ:ICON:board1:'
devices = dict(
bl1left = device('nicos_ess.devices.epics.motor.HomingProtectedEpicsMotor',
epicstimeout = 3.0,
description = 'Beam limiter 1 -X',
motorpv = pvprefix + 'B1nX',
errormsgpv = pvprefix + 'B1nX-MsgTxt',
precision = 0.01,
lowlevel = True,
),
bl1right = device('nicos_ess.devices.epics.motor.HomingProtectedEpicsMotor',
epicstimeout = 3.0,
description = 'Beam limiter 1 +X',
motorpv = pvprefix + 'B1pX',
errormsgpv = pvprefix + 'B1pX-MsgTxt',
precision = 0.01,
lowlevel = True,
),
bl1bottom = device('nicos_ess.devices.epics.motor.HomingProtectedEpicsMotor',
epicstimeout = 3.0,
description = 'Beam limiter 1 -Y',
motorpv = pvprefix + 'B1nY',
errormsgpv = pvprefix + 'B1nY-MsgTxt',
precision = 0.01,
lowlevel = True,
),
bl1top = device('nicos_ess.devices.epics.motor.HomingProtectedEpicsMotor',
epicstimeout = 3.0,
description = 'Beam limiter 1 +Y',
motorpv = pvprefix + 'B1pY',
errormsgpv = pvprefix + 'B1pY-MsgTxt',
precision = 0.01,
lowlevel = True,
),
bl1 = device('nicos.devices.generic.slit.Slit',
description = 'Beam limiter 1',
opmode = 'offcentered',
left = 'bl1left',
right = 'bl1right',
top = 'bl1top',
bottom = 'bl1bottom',
),
bl1_width = device('nicos.devices.generic.slit.WidthSlitAxis',
description = 'Beam limiter 1 opening width',
slit = 'bl1',
unit = 'mm'
),
bl1_height = device('nicos.devices.generic.slit.HeightSlitAxis',
description = 'Beam limiter 1 opening width',
slit = 'bl1',
unit = 'mm'
),
bl1_center_h = device('nicos.devices.generic.slit.CenterXSlitAxis',
description = 'Beam limiter 1 horizontal center',
slit = 'bl1',
unit = 'mm'
),
bl1_center_v = device('nicos.devices.generic.slit.CenterYSlitAxis',
description = 'Beam limiter 1 vertical center',
slit = 'bl1',
unit = 'mm'
),
)
|
class Counter:
def __init__(self,low,high):
self.current = low
self.last = high
def __iter__(self):
return self #instead of: return iter("...") - this way 'self' here is set up with 'next' below
def __next__(self): # here we define __next__ because the 'self' returned from the __iter__ above is not an iterator yet and we'd get an error
if self.current < self.last:
num = self.current
self.current += 1
return num
raise StopIteration
for x in Counter(0,10): # for will call the __iter__ on this instance of Counter (Counter(0,10)), __iter__ returns self and this self is here set up with the __next__ method, so it can call next over and over and over, until next returns StopIteration
print(x)
for x in Counter(25,40):
print(x)
|
""" Asked by: Flipkart [Medium].
Snakes and Ladders is a game played on a 10 x 10 board, the goal of which is get from square 1 to square 100.
On each turn players will roll a six-sided die and move forward a number of spaces equal to the result.
If they land on a square that represents a snake or ladder, they will be transported ahead or behind, respectively, to a new square.
"""
|
"""
Spanish dictionary.
"""
words = {
"basisOfRecord": {"MachineObservation": "Observación con máquina"},
"lifeStage": {"adult": "adulto", "juvenile": "juvenil"},
"organismQuantityType": {"individuals": "individuos"},
"preparations": {"photograph": "fotografía"},
"sampleSizeUnit": {"trap-nights": "trampas-noche"},
"samplingEffort": {"trap-nights": "trampas-noche"},
"samplingProtocol": {"camera-trap": "fototrampeo"},
"sex": {"female": "hembra", "male": "macho", "unknown": "desconocido"},
"taxonRank": {
"class": "clase",
"family": "familia",
"genus": "género",
"kingdom": "reino",
"order": "orden",
"phylum": "filo",
"species": "especie",
"subspecies": "subespecie",
},
}
|
test = { 'name': 'q3c',
'points': 2,
'suites': [ { 'cases': [ {'code': '>>> independents_with_ratings.num_rows == 91\nTrue', 'hidden': False, 'locked': False},
{ 'code': ">>> independents_with_ratings.labels == ('Rank', 'Restaurant', 'Sales', 'Average Check', 'City', 'State', 'Meals Served', 'Rating')\nTrue",
'hidden': False,
'locked': False},
{'code': ">>> np.all(independents_with_ratings.column('Rating').take(np.arange(5)) == np.array([4, 4, 2.5, 3.5, 4]))\nTrue", 'hidden': False, 'locked': False},
{ 'code': '>>> np.all(independents_with_ratings.column(\'Restaurant\').take(np.arange(5)) == np.array(["Carmine\'s (Times Square)", \'The Boathouse Orlando\',\n'
"... 'LAVO Italian Restaurant & Nightclub', 'Bryant Park Grill & Cafe',\n"
"... 'Gibsons Bar & Steakhouse']))\n"
'True',
'hidden': False,
'locked': False}],
'scored': True,
'setup': '',
'teardown': '',
'type': 'doctest'}]}
|
# Copyright 2017 The Bazel Authors. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""Utilities for testing Apple rules."""
def apple_multi_shell_test(name,
src,
configurations={},
**kwargs):
"""Creates test targets for an Apple shell integration test script.
This macro allows for the easy creation of multiple test targets that each
run the given test script, but with different configuration arguments passed
into the test's `bazel` invocations. For example:
apple_multi_shell_test(
name = "my_test",
src = "my_test.sh",
configurations = {
"simulator": ["--ios_multi_cpus=x86_64"],
"device": ["--ios_multi_cpus=arm64,armv7"],
},
)
The above snippet would create three targets, named based on the
configurations:
* my_test.simulator: applies "--ios_multi_cpus=x86_64" to all builds.
* my_test.device: applies "--ios_multi_cpus=arm64,armv7" to all builds.
* my_test: A test suite containing the above tests.
Args:
name: The name of the test suite and prefix to use for each of the
individual configuration tests.
src: The shell script to run.
configurations: A dictionary with the configurations for which the test
should be run.
**kwargs: Additional attribute values to apply to each test target.
"""
if not configurations:
fail("You must specify at least one configuration in the " +
"'configurations' attribute.")
for (config_name, config_options) in configurations.items():
apple_shell_test(
name = "%s.%s" % (name, config_name),
src = src,
args = config_options,
**kwargs
)
native.test_suite(
name = name,
tests = [":%s.%s" % (name, config_name)
for config_name in configurations.keys()],
)
def apple_shell_test(name,
src,
args=[],
data=None,
deps=None,
tags=None,
**kwargs):
"""Creates a test target for an Apple shell integration test script.
This macro creates an sh_test target that uses bazel to run integration tests.
Args:
name: Name for the test target.
src: The shell script to run.
args: Additional args to pass to the test target.
data: Additional data dependencies to pass to the test target.
deps: Additional dependencies to pass to the test target.
tags: Additional tags to set on the test target. "requires-darwin" is
automatically added.
**kwargs: Additional attribute values to apply to the test target.
"""
# Depending on the memory on a machine, the sharding of these integration
# tests can take out a machine, so make it opt in via a define:
# '--define bazel_rules_apple.apple_shell_test.enable_sharding=1'
# '--define bazel_rules_apple.apple_shell_test.enable_sharding=0'
requested_shard_count = kwargs.pop("shard_count", 0)
shard_count = select({
"//test:apple_shell_test_disable_sharding": 0,
"//test:apple_shell_test_enable_sharding": requested_shard_count,
"//conditions:default": 0,
})
native.sh_test(
name = name,
srcs = ["bazel_testrunner.sh"],
args = [
src,
] + args,
data = [
src,
"//:for_bazel_tests",
"//test:apple_shell_testutils.sh",
"//test/testdata/provisioning:BUILD",
"//test/testdata/provisioning:integration_testing_profiles",
"//test:unittest.bash",
] + (data or []),
deps = deps or [],
shard_count = shard_count,
tags = ["requires-darwin"] + (tags or []),
**kwargs
)
|
def test_assert_false():
assert False, 'The assert should fail' # xfail
def test_assert_passed():
assert True, 'The assert should pass'
|
#Dictionary:
Dict={1:'Hi','name': 'Hello',3:'how are you?'}
#accessing a element using key
print(f'Accessing a element using a key: {Dict["name"]}')
#accessing a element using key
print(f'Accessing an element using a key: {Dict[1]}')
#accessing a element using get()
print(f'Accessing an element using get(): {Dict.get(3)}')
# Nested Dictionary
Dict={'Dict1': {1:'Hey'},
'Dict2': {1: 'What\'s up?',2:'Yo, let\'s party'}
}
print(f'Nested Dictionary: {Dict}')
#accessing a element using key
print(f'Accesing an element in the Nested Dictionary: {Dict["Dict1"]}')
print(f'Accesing an element in the Nested Dictionary: {Dict["Dict2"][1]} ')
print(f'Accesing an element in the Nested Dictionary: {Dict["Dict2"][2]} ')
|
class AumbryError(Exception):
def __init__(self, message):
self.message = message
super(AumbryError, self).__init__(message)
class LoadError(AumbryError):
pass
class SaveError(AumbryError):
pass
class ParsingError(AumbryError):
pass
class DependencyError(AumbryError):
def __init__(self, extras_name):
msg = (
'Dependencies unavailable: run "pip install aumbry[{}]" to '
'acquire to appropriate dependencies.'
).format(
extras_name
)
super(DependencyError, self).__init__(msg)
class UnknownSourceError(AumbryError):
def __init__(self, name):
super(UnknownSourceError, self).__init__(
'Couldn\'t find a source with the name: {}'.format(name)
)
|
"""
Given a non-empty array of integers nums, every element appears twice except for one. Find that single one.
Follow up: Could you implement a solution with a linear runtime complexity and without using extra memory?
Example 1:
Input: nums = [2,2,1]
Output: 1
Example 2:
Input: nums = [4,1,2,1,2]
Output: 4
Example 3:
Input: nums = [1]
Output: 1
"""
"""
solution:
=========
Concept
If we take XOR of zero and some bit, it will return that bit
a⊕0=a
If we take XOR of two same bits, it will return 0
0a⊕a=0
ba⊕b⊕a=(a⊕a)⊕b=0⊕b=b
So we can XOR all bits together to find the unique number.
"""
def single_number(nums: list) -> int:
a = 0
for i in nums:
a ^= i
return a
print(single_number([1,2,3,1,2,4,3]))
|
# Creamos un objeto como si fuese JSON
{
# targets son los objetivos donde va a tener que hacer la complilacion, como son mas de uno los ponemos en un array por ahroa un elemento!
"targets": [
{
# le ponemos el nombr que deseemos a nuestro modulo
"target_name" : "addon",
# de donde toma el codigo
"sources" : [ "hola.cc" ]
}
]
}
# NOTA : luego deberemos decir node que configure este modulo con node GYP! ejecutandolo desde terminal en la carpeta correcta!
|
"""Custom exceptions classes"""
class CoatiException(Exception):
pass
class CLIException(CoatiException):
pass
|
class Solution(object):
def search(self, nums, target):
"""
:type nums: List[int]
:type target: int
:rtype: int
"""
try:
return nums.index(target)
except:
return -1
|
"""
Nome: Beatiful_Color
Função: Estilizar sessões de um texto, com diversas cores e estilos
Autor: Állan Rocha
Data: 10/8/2017
"""
FONT_COLORS = {
'style' : '',
's': '',
'black': '30',
'b': '30',
'red': '31',
'r': '31',
'green': '32',
'g': '32',
'yellow': '33',
'y': '33',
'blue': '34',
'bl' : '34',
'magenta': '35',
'm': '35',
'cyan': '36',
'c': '36',
'white': '37',
'w': '37',
'default': '38',
'd': '38',
'rgb' : '##'
}
STYLES = {
"bold" : "1",
"b" : "1",
"light" : "2",
"l" : "2",
"italic": "3",
"i" : "3",
"underline" : "4",
"u" : "4",
"blink-slow" : "5",
"bs" : "5",
"blink-fast" : "6",
"bf" : "6",
"medium-line" : "9",
"ml" : "9",
"overline" : "53",
"ov" : "53"
}
ANSI = "\033["
END = "\033[0m"
def beatiful_font(text):
"""
Função que estiliza certas partes de um texto, de acordo com as cores e estilos
definidos pelo programador
"""
father = []
ansi = []
scala = -1
for word in text.split(">"):
start = word.find("<") + 1
color = word[start:]
tag = ""
for style in color.split(" "):
if style in STYLES:
tag += STYLES[style] + ";"
color = color.split(" ")[0]
if color.find("rgb") != -1 and color.find("/") == -1:
ansi_rgb_code = rgb_color(color)
FONT_COLORS["rgb"] = ansi_rgb_code
color = "rgb"
if color in FONT_COLORS:
tag_color = ANSI + tag
if FONT_COLORS[color] == "":
tag_color = tag_color[:len(tag_color) - 1] + "m"
else:
tag_color += FONT_COLORS[color] + "m"
pre_text = word[:start - 1]
ansi.extend([pre_text, tag_color])
father.append(tag_color)
scala += 1
elif color[1:] in FONT_COLORS or color.find("rgb") != -1:
pre_text = word[:start - 1]
if scala - 1 < 0:
ansi.extend([pre_text, END])
else:
ansi.extend([pre_text, END, father[scala - 1]])
scala -= 1
else:
ansi.append(word)
print(repr(ansi))
return "".join(ansi)
def rgb_color(code):
"""
Função que colore o texto com base no rgb
"""
rgb = code.split(":")[1]
ansi_code = ["38;2"]
for color in rgb.split(","):
ansi_code.append(color)
return ";".join(ansi_code)
if __name__ == "__main__":
print(beatiful_font("<b>Hello</b> <rgb:0,0,0>Programador</rgb> <y i>:)</y></s>"))
|
@kernel
def sample(device, data, samples, wait):
for i in range(samples):
try:
device.sample_mu(data[i])
delay(wait)
except RTIOUnderflow:
continue
@kernel(flags={"fast-math"})
def ramp(board, channels, starts, stops, steps, duration, now):
at_mu(now)
dt = duration / steps
dV = [(stops[i]-starts[i])/steps for i in range(len(channels))]
V = starts
for _ in range(steps):
delay(dt)
for i in range(len(channels)):
V[i] += dV[i]
board.set_dac(V, channels)
@kernel(flags={"fast-math"})
def ramp_DDS(dds, start, stop, steps, duration, now):
at_mu(now)
dt = duration / steps
df = (stop - start) / steps
f = start
for _ in range(steps):
delay(dt)
f += df
dds.set(f*MHz)
|
# Version is set for releases by our build system.
# Be extremely careful when modifying.
version = 'SNAPSHOT'
"""DC/OS version"""
|
# Copyright (c) 2018-Present Advanced Micro Devices, Inc. See LICENSE.TXT for terms.
#!/usr/bin/evn python3
# tvals = [8, 16, 32, 64, 128, 256]
# nw_args = {f'-s {s} -t {t}':[] for s in [16384, 32768] for t in tvals}
# lud_args = {f'-s {s} -t {t}':[] for s in [16384, 8192] for t in tvals}
gEnvVars = {
'ATMI_DEVICE_GPU_WORKERS' :{'full' : [1, 4, 8, 16, 24, 32],
'default': [1],
},
'ATMI_DEPENDENCY_SYNC_TYPE':{'full' : [ 'ATMI_SYNC_CALLBACK',
'ATMI_SYNC_BARRIER_PKT'],
'default' : ['ATMI_SYNC_CALLBACK'],
},
'ATMI_MAX_HSA_SIGNALS' :{'full': [ 32, 64, 128, 256, 512, 1024, 2048, 4096 ],
'default': [1024],
}
}
benchmarks = {
'NW' : {
'wd': 'nw',
'exe' : {'nw_atmi_task':{'tag':['ATMI', 'task'],
'wd' : ''},
'nw_hip_task':{'tag':['HIP', 'task'],
'wd' : ''},
'nw_atmi_bsp_cg':{'tag':['ATMI', 'bsp'],
'wd' : ''},
'nw_hip_bsp':{'tag':['HIP', 'BSP'],
'wd' : ''},
},
'arg' : { '-s 16384 -t 32': {'tag':['large']},
'-s 1024 -t 32' : {'tag':['small', 'default']},
'-s 8192 -t 32' : {'tag':['medium']},
},
'project' : 'TaskingBenchmarks',
},
'LUD' : {
'wd': 'lud',
'exe' : {'lud_atmi_task' :{'tag': ['ATMI', 'task'] ,
'wd' : ''},
'lud_atmi_bsp_cg' :{'tag': ['ATMI', 'bsp'] ,
'wd' : ''},
'lud_hip_agg_task' :{'tag': ['HIP', 'task'],
'wd' : ''},
'lud_hip_bsp' :{'tag': ['HIP', 'bsp'],
'wd' : ''},
},
'arg' : { '-s 1024 -t 32' : {'tag':['small']},
'-s 8192 -t 128': {'tag':['medium', 'default']},
'-s 16384 -t 512': {'tag':['large']},
},
'project' : 'TaskingBenchmarks',
},
'HIP_CHOL': {
'wd': 'cholesky',
'exe': {'bspCholeskyGPU' :{'tag': ['HIP', 'bsp'],
'wd' : 'hipCholesky'},
'taskCholeskyGPU':{'tag': ['HIP', 'task'],
'wd' : 'hipCholesky'},
'choleskyCPU':{'tag': ['CPU'],
'wd' : 'hipCholesky'},
},
'arg': {'-s 4096 -a CholOpt::RIGHT': {'tag':['medium', 'default']},
},
'project' : 'TaskingBenchmarks',
},
'LINEAR_DAG' : {
'wd': 'microbenchmarks',
'exe' : { 'atmi-linearDAG': {'tag':['ATMI'],
'wd' : 'ATMI/linear-dag'},
'hc-linearDAG':{'tag': ['HSA', 'HC'],
'wd': 'HSA/linear-dag/host-callback'},
'bp-linearDAG':{'tag': ['HSA', 'BP'],
'wd': 'HSA/linear-dag/barrier-pkt'},
},
'arg' : { '100 0' :{'tag':['no-work']},
'500 0' :{'tag':['no-work']},
'1000 0':{'tag':['default', 'no-work']},
'2000 0':{'tag':['no-work']},
'3000 0':{'tag':['no-work']},
'4000 0':{'tag':['no-work']},
'5000 0':{'tag':['no-work']} },
'project' : 'TaskingBenchmarks',
},
'MULTI_CHILD_DAG' : {
'wd': 'microbenchmarks',
'exe' : { 'atmi-multi-child': {'tag':['ATMI'],
'wd' : 'ATMI/multi-child'},
'single-bp':{'tag': ['HSA', 'BP', 'Single'],
'wd': 'HSA/multi-child/barrier-pkt'},
'multi-bp':{'tag': ['HSA', 'BP', 'Multi'],
'wd': 'HSA/multi-child/barrier-pkt'},
},
'arg' : { '100 0' :{'tag':['no-work']},
'500 0' :{'tag':['no-work']},
'1000 0':{'tag':['default', 'no-work']},
'2000 0':{'tag':['no-work']},
'3000 0':{'tag':['no-work']},
'4000 0':{'tag':['no-work']},
'5000 0':{'tag':['no-work']} },
'project' : 'TaskingBenchmarks',
},
}
|
#!/usr/bin/env python3
def fibonacci(n):
fib = [1, 1]
if n <= 2:
return fib
for num in range(2, n):
x = fib[num-1] + fib[num-2]
fib.append(x)
return fib
if __name__ == "__main__":
print(fibonacci(10))
|
number = float(input())
intervalos = ["[0,25]", "(25,50]", "(50,75]", "(75,100]"]
if(number < 0 or number > 100):
print("Fora de intervalo")
else:
if(number <= 25):
print("Intervalo", intervalos[0])
else:
if(number <= 50):
print("Intervalo", intervalos[1])
else:
if(number <= 75):
print("Intervalo", intervalos[2])
else:
if(number <= 100):
print("Intervalo", intervalos[3])
|
input = """
a v b.
:- b.
a v x v y :- x.
x v y :- y.
:- not x, not y.
"""
output = """
"""
|
# Love Calculator
# 💪 This is a Difficult Challenge 💪
# Instructions
# You are going to write a program that tests the compatibility between two people.
# To work out the love score between two people:
# > Take both people's names and check for the number of times the letters in the word TRUE occurs. Then check for the number of times the letters in the word LOVE occurs. Then combine these numbers to make a 2 digit number.
# For Love Scores **less than 10** or **greater than 90**, the message should be:
# `"Your score is **x**, you go together like coke and mentos."`
# For Love Scores **between 40** and **50**, the message should be:
# `"Your score is **y**, you are alright together."`
# Otherwise, the message will just be their score. e.g.:
# `"Your score is **z**."`
# e.g.
# `name1 = "Angela Yu"`
# `name2 = "Jack Bauer"`
# T occurs 0 times
# R occurs 1 time
# U occurs 2 times
# E occurs 2 times
# Total = 5
# L occurs 1 time
# O occurs 0 times
# V occurs 0 times
# E occurs 2 times
# Total = 3
# Love Score = 53
# Print: "Your score is 53."
# Example Input 1
# ```
# name1 = "Kanye West"
# ```
# ```
# name2 = "Kim Kardashian"
# ```
# Example Output 1
# ```
# Your score is 42, you are alright together.
# ```
# Example Input 2
# ```
# name1 = "Brad Pitt"
# ```
# ```
# name2 = "Jennifer Aniston"
# ```
# Example Output 2
# ```
# Your score is 73.
# ```
# e.g. When you hit **run**, this is what should happen:
# 
# The testing code will check for print output that is formatted like one of the lines below:
# ```
# "Your score is 47, you are alright together."
# "Your score is 125, you go together like coke and mentos."
# "Your score is 54."
# ```
# Hint
# 1. The `lower()` function changes all the letters in a string to lower case.
# [https://stackoverflow.com/questions/6797984/how-do-i-lowercase-a-string-in-python](https://stackoverflow.com/questions/6797984/how-do-i-lowercase-a-string-in-python)
# 2. The `count()` function will give you the number of times a letter occurs in a string.
# [https://stackoverflow.com/questions/1155617/count-the-number-occurrences-of-a-character-in-a-string](https://stackoverflow.com/questions/1155617/count-the-number-occurrences-of-a-character-in-a-string)
# Test Your Code
# Before checking the solution, try copy-pasting your code into this repl:
# [https://repl.it/@appbrewery/day-3-5-test-your-code](https://repl.it/@appbrewery/day-3-5-test-your-code)
# This repl includes my testing code that will check if your code meets this assignment's objectives.
# Solution
# [https://repl.it/@appbrewery/day-3-5-solution](https://repl.it/@appbrewery/day-3-5-solution)
#
#
#
# 🚨 Don't change the code below 👇
print("Welcome to the Love Calculator!")
name1 = input("What is your name? \n")
name2 = input("What is their name? \n")
# 🚨 Don't change the code above 👆
#Write your code below this line 👇
name1 = name1.lower()
name2 = name2.lower()
t_occurs = name1.count("t")
r_occurs = name1.count("r")
u_occurs = name1.count("u")
e_occurs = name1.count("e")
l_occurs = name1.count("l")
o_occurs = name1.count("o")
v_occurs = name1.count("v")
t_occurs += name2.count("t")
print(f"T occurs {t_occurs} times")
r_occurs += name2.count("r")
print(f"R occurs {r_occurs} times")
u_occurs += name2.count("u")
print(f"U occurs {u_occurs} times")
e_occurs += name2.count("e")
print(f"E occurs {e_occurs} times")
first_total = int(t_occurs) + int(r_occurs) + int(u_occurs) + int(e_occurs)
print(f"Total = {first_total}")
l_occurs += name2.count("l")
print(f"L occurs {l_occurs} times")
o_occurs += name2.count("o")
print(f"O occurs {o_occurs} times")
v_occurs += name2.count("v")
print(f"V occurs {v_occurs} times")
print(f"E occurs {e_occurs} times")
second_total = int(l_occurs) + int(o_occurs) + int(v_occurs) + int(e_occurs)
print(f"Total = {second_total}")
love_score = str(first_total) + str(second_total)
love_score = int(love_score)
if love_score < 10 or love_score > 90:
print(f"Your score is {love_score}, you go together like coke and mentos.")
elif 40 < love_score < 50:
print(f"Your score is {love_score}, you are alright together.")
else:
print(f"Your score is {love_score}.")
|
"""
Ejercicio 11
Desarrolle un algoritmo, que dado como dato una temperatura en grados Fahrenheit, determine el deporte que es apropiado practicar a esa
temperatura, teniendo en cuenta la siguiente tabla:
Deporte Temperatura
Natación Temp. > 85
Tenis 70 < Temp. <= 85
Golf 32 < Temp. <= 70
Esquí 10 < Temp. <= 32
Marcha Temp. <= 10
Entradas
Temperatura --> Float --> T
Salidas
Deporte --> Str --> D
"""
# Instrucciones al usuario
print("Este programa le permitira determinar el deporte apropiado para practicar dada la temperatura")
# Entradas
T = float(input("Digite la temperatura: "))
# Caja Negra
if T > 85:
D = "Natación"
elif T > 70 and T <= 85:
D = "Tenis"
elif T > 32 and T <= 70:
D = "Golf"
elif T > 10 and T <= 32:
D = "Esquí"
elif T >= 0 and T <= 10:
D = "Marcha"
else:
D = "No se ha encontrado un deporte"
# Salidas
print(f"El deporte apropiado para practicar es: {D}")
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.