content
stringlengths
7
1.05M
fixed_cases
stringlengths
1
1.28M
def includeme(config): config.add_static_view('static', 'static', cache_max_age=3600) config.add_route('home', '/') config.add_route('login', '/login') config.add_route('auth', '/auth/{action}') config.add_route('register', '/register') config.add_route('courses', '/courses') config.add_route('createcourse', '/createcourse') config.add_route('createscore', '/createscore') config.add_route('signscore', '/signscore/{id}') config.add_route('profile', '/user/{name}') config.scan()
def includeme(config): config.add_static_view('static', 'static', cache_max_age=3600) config.add_route('home', '/') config.add_route('login', '/login') config.add_route('auth', '/auth/{action}') config.add_route('register', '/register') config.add_route('courses', '/courses') config.add_route('createcourse', '/createcourse') config.add_route('createscore', '/createscore') config.add_route('signscore', '/signscore/{id}') config.add_route('profile', '/user/{name}') config.scan()
class ISOLATION_LEVEL: READ_COMMITTED = 'READ COMMITTED' READ_UNCOMMITTED = 'READ UNCOMMITTED' REPEATABLE_READ = 'REPEATABLE READ' SERIALIZABLE = 'SERIALIZABLE' AUTOCOMMIT = 'AUTOCOMMIT'
class Isolation_Level: read_committed = 'READ COMMITTED' read_uncommitted = 'READ UNCOMMITTED' repeatable_read = 'REPEATABLE READ' serializable = 'SERIALIZABLE' autocommit = 'AUTOCOMMIT'
#!/usr/bin/env python # -*- coding: utf-8 -*- ADMIN = 1 USER = 2 ROLES = {ADMIN: (ADMIN, 'Administrator'), USER: (USER, 'User')} administrators = {'Donovan du Plessis': 'donovan@verifaction.co.za'} error_messages = { 400: 'Bad request', 403: 'Forbidden resource requested', 404: [ 'Oops, page not found.', 'We\'re sorry', 'Uh Oh!', 'Nope, not here.' ], 500: 'Something went wrong', }
admin = 1 user = 2 roles = {ADMIN: (ADMIN, 'Administrator'), USER: (USER, 'User')} administrators = {'Donovan du Plessis': 'donovan@verifaction.co.za'} error_messages = {400: 'Bad request', 403: 'Forbidden resource requested', 404: ['Oops, page not found.', "We're sorry", 'Uh Oh!', 'Nope, not here.'], 500: 'Something went wrong'}
""" @author: karthikrao Program to calculate cost of a floorplan given its Polish Expression. """ def get_cost_FP(exp, w, h): """ Parameters ---------- Parameters ---------- exp : list Initial Polish Expression. w : dict Contains approx. width of each gate in the netlist. h : dict Contains approx. height of each gate in the netlist. Returns ------- cost : int Gives an estimate of the cost (area) of the floorplan. w1 : dict Contains approx. width of each gate in the netlist. h1 : dict Contains approx. height of each gate in the netlist. """ i=-1 c=0 exp1 = exp.copy() w1=w.copy() h1=h.copy() while len(exp1)>1: i+=1 if exp1[i] == 'H' or exp1[i] == 'V': new = 'tempnode'+str(c) if exp1[i] == 'H': h1[new] = h1[exp1[i-1]] + h1[exp1[i-2]] w1[new] = max(w1[exp1[i-1]], w1[exp1[i-2]]) if exp1[i] == 'V': h1[new] = max(h1[exp1[i-1]], h1[exp1[i-2]]) w1[new] = w1[exp1[i-1]] + w1[exp1[i-2]] exp1 = exp1[:i-2] + [new] + exp1[i+1:] i=-1 c+=1 cost = h1[exp1[0]]*w1[exp1[0]] return cost, w1, h1
""" @author: karthikrao Program to calculate cost of a floorplan given its Polish Expression. """ def get_cost_fp(exp, w, h): """ Parameters ---------- Parameters ---------- exp : list Initial Polish Expression. w : dict Contains approx. width of each gate in the netlist. h : dict Contains approx. height of each gate in the netlist. Returns ------- cost : int Gives an estimate of the cost (area) of the floorplan. w1 : dict Contains approx. width of each gate in the netlist. h1 : dict Contains approx. height of each gate in the netlist. """ i = -1 c = 0 exp1 = exp.copy() w1 = w.copy() h1 = h.copy() while len(exp1) > 1: i += 1 if exp1[i] == 'H' or exp1[i] == 'V': new = 'tempnode' + str(c) if exp1[i] == 'H': h1[new] = h1[exp1[i - 1]] + h1[exp1[i - 2]] w1[new] = max(w1[exp1[i - 1]], w1[exp1[i - 2]]) if exp1[i] == 'V': h1[new] = max(h1[exp1[i - 1]], h1[exp1[i - 2]]) w1[new] = w1[exp1[i - 1]] + w1[exp1[i - 2]] exp1 = exp1[:i - 2] + [new] + exp1[i + 1:] i = -1 c += 1 cost = h1[exp1[0]] * w1[exp1[0]] return (cost, w1, h1)
class Solution: def strStr(self, haystack: str, needle: str) -> int: if not needle: return 0 m, n = len(haystack), len(needle) for i in range(m-n+1): j = n +i if haystack[i:j] == needle: return i return -1
class Solution: def str_str(self, haystack: str, needle: str) -> int: if not needle: return 0 (m, n) = (len(haystack), len(needle)) for i in range(m - n + 1): j = n + i if haystack[i:j] == needle: return i return -1
for _ in range(int(input())): s=input() o,e,c1,c2=0,0,0,0 flag=0 for i in range(len(s)): if i%2==0: if s[i]=='1': e+=1 elif s[i]=='?': c1+=1 else: if s[i]=='1': o+=1 elif s[i]=='?': c2+=1 if o+c2 > e + (9-i)//2: print(i+1) flag=1 break if e+c1 > o + (10-i)//2: print(i+1) flag=1 break if not flag: print(10)
for _ in range(int(input())): s = input() (o, e, c1, c2) = (0, 0, 0, 0) flag = 0 for i in range(len(s)): if i % 2 == 0: if s[i] == '1': e += 1 elif s[i] == '?': c1 += 1 elif s[i] == '1': o += 1 elif s[i] == '?': c2 += 1 if o + c2 > e + (9 - i) // 2: print(i + 1) flag = 1 break if e + c1 > o + (10 - i) // 2: print(i + 1) flag = 1 break if not flag: print(10)
""" This sub-module contains input/output modifiers that can be applied to arguments to ``needs`` and ``provides`` to let GraphKit know it should treat them differently. Copyright 2016, Yahoo Inc. Licensed under the terms of the Apache License, Version 2.0. See the LICENSE file associated with the project for terms. """ class optional(str): """ An optional need signifies that the function's argument may not receive a value. Only input values in ``needs`` may be designated as optional using this modifier. An ``operation`` will receive a value for an optional need only if if it is available in the graph at the time of its invocation. The ``operation``'s function should have a defaulted parameter with the same name as the opetional, and the input value will be passed as a keyword argument, if it is available. Here is an example of an operation that uses an optional argument:: >>> from graphkit import operation, compose, optional >>> # Function that adds either two or three numbers. >>> def myadd(a, b, c=0): ... return a + b + c >>> # Designate c as an optional argument. >>> graph = compose('mygraph')( ... operation(name='myadd', needs=['a', 'b', optional('c')], provides='sum')(myadd) ... ) >>> graph NetworkOperation(name='mygraph', needs=[optional('a'), optional('b'), optional('c')], provides=['sum']) >>> # The graph works with and without 'c' provided as input. >>> graph({'a': 5, 'b': 2, 'c': 4})['sum'] 11 >>> graph({'a': 5, 'b': 2}) {'a': 5, 'b': 2, 'sum': 7} """ __slots__ = () # avoid __dict__ on instances def __repr__(self): return "optional('%s')" % self class sideffect(str): """ A sideffect data-dependency participates in the graph but never given/asked in functions. Both inputs & outputs in ``needs`` & ``provides`` may be designated as *sideffects* using this modifier. *Sideffects* work as usual while solving the graph but they do not interact with the ``operation``'s function; specifically: - input sideffects are NOT fed into the function; - output sideffects are NOT expected from the function. .. info: an ``operation`` with just a single *sideffect* output return no value at all, but it would still be called for its side-effect only. Their purpose is to describe operations that modify the internal state of some of their arguments ("side-effects"). A typical use case is to signify columns required to produce new ones in pandas dataframes:: >>> from graphkit import operation, compose, sideffect >>> # Function appending a new dataframe column from two pre-existing ones. >>> def addcolumns(df): ... df['sum'] = df['a'] + df['b'] >>> # Designate `a`, `b` & `sum` column names as an sideffect arguments. >>> graph = compose('mygraph')( ... operation( ... name='addcolumns', ... needs=['df', sideffect('a'), sideffect('b')], ... provides=[sideffect('sum')])(addcolumns) ... ) >>> graph NetworkOperation(name='mygraph', needs=[optional('df'), optional('sideffect(a)'), optional('sideffect(b)')], provides=['sideffect(sum)']) >>> # The graph works with and without 'c' provided as input. >>> df = pd.DataFrame({'a': [5], 'b': [2]}) # doctest: +SKIP >>> graph({'df': df})['sum'] == 11 # doctest: +SKIP True Note that regular data in *needs* and *provides* do not match same-named *sideffects*. That is, in the following operation, the ``prices`` input is different from the ``sideffect(prices)`` output: >>> def upd_prices(sales_df, prices): ... sales_df["Prices"] = prices >>> operation(fn=upd_prices, ... name="upd_prices", ... needs=["sales_df", "price"], ... provides=[sideffect("price")]) operation(name='upd_prices', needs=['sales_df', 'price'], provides=['sideffect(price)'], fn=upd_prices) .. note:: An ``operation`` with *sideffects* outputs only, have functions that return no value at all (like the one above). Such operation would still be called for their side-effects. .. tip:: You may associate sideffects with other data to convey their relationships, simply by including their names in the string - in the end, it's just a string - but no enforcement will happen from *graphkit*. >>> sideffect("price[sales_df]") 'sideffect(price[sales_df])' """ __slots__ = () # avoid __dict__ on instances def __new__(cls, name): return super(sideffect, cls).__new__(cls, "sideffect(%s)" % name)
""" This sub-module contains input/output modifiers that can be applied to arguments to ``needs`` and ``provides`` to let GraphKit know it should treat them differently. Copyright 2016, Yahoo Inc. Licensed under the terms of the Apache License, Version 2.0. See the LICENSE file associated with the project for terms. """ class Optional(str): """ An optional need signifies that the function's argument may not receive a value. Only input values in ``needs`` may be designated as optional using this modifier. An ``operation`` will receive a value for an optional need only if if it is available in the graph at the time of its invocation. The ``operation``'s function should have a defaulted parameter with the same name as the opetional, and the input value will be passed as a keyword argument, if it is available. Here is an example of an operation that uses an optional argument:: >>> from graphkit import operation, compose, optional >>> # Function that adds either two or three numbers. >>> def myadd(a, b, c=0): ... return a + b + c >>> # Designate c as an optional argument. >>> graph = compose('mygraph')( ... operation(name='myadd', needs=['a', 'b', optional('c')], provides='sum')(myadd) ... ) >>> graph NetworkOperation(name='mygraph', needs=[optional('a'), optional('b'), optional('c')], provides=['sum']) >>> # The graph works with and without 'c' provided as input. >>> graph({'a': 5, 'b': 2, 'c': 4})['sum'] 11 >>> graph({'a': 5, 'b': 2}) {'a': 5, 'b': 2, 'sum': 7} """ __slots__ = () def __repr__(self): return "optional('%s')" % self class Sideffect(str): """ A sideffect data-dependency participates in the graph but never given/asked in functions. Both inputs & outputs in ``needs`` & ``provides`` may be designated as *sideffects* using this modifier. *Sideffects* work as usual while solving the graph but they do not interact with the ``operation``'s function; specifically: - input sideffects are NOT fed into the function; - output sideffects are NOT expected from the function. .. info: an ``operation`` with just a single *sideffect* output return no value at all, but it would still be called for its side-effect only. Their purpose is to describe operations that modify the internal state of some of their arguments ("side-effects"). A typical use case is to signify columns required to produce new ones in pandas dataframes:: >>> from graphkit import operation, compose, sideffect >>> # Function appending a new dataframe column from two pre-existing ones. >>> def addcolumns(df): ... df['sum'] = df['a'] + df['b'] >>> # Designate `a`, `b` & `sum` column names as an sideffect arguments. >>> graph = compose('mygraph')( ... operation( ... name='addcolumns', ... needs=['df', sideffect('a'), sideffect('b')], ... provides=[sideffect('sum')])(addcolumns) ... ) >>> graph NetworkOperation(name='mygraph', needs=[optional('df'), optional('sideffect(a)'), optional('sideffect(b)')], provides=['sideffect(sum)']) >>> # The graph works with and without 'c' provided as input. >>> df = pd.DataFrame({'a': [5], 'b': [2]}) # doctest: +SKIP >>> graph({'df': df})['sum'] == 11 # doctest: +SKIP True Note that regular data in *needs* and *provides* do not match same-named *sideffects*. That is, in the following operation, the ``prices`` input is different from the ``sideffect(prices)`` output: >>> def upd_prices(sales_df, prices): ... sales_df["Prices"] = prices >>> operation(fn=upd_prices, ... name="upd_prices", ... needs=["sales_df", "price"], ... provides=[sideffect("price")]) operation(name='upd_prices', needs=['sales_df', 'price'], provides=['sideffect(price)'], fn=upd_prices) .. note:: An ``operation`` with *sideffects* outputs only, have functions that return no value at all (like the one above). Such operation would still be called for their side-effects. .. tip:: You may associate sideffects with other data to convey their relationships, simply by including their names in the string - in the end, it's just a string - but no enforcement will happen from *graphkit*. >>> sideffect("price[sales_df]") 'sideffect(price[sales_df])' """ __slots__ = () def __new__(cls, name): return super(sideffect, cls).__new__(cls, 'sideffect(%s)' % name)
def header_option(): return {'Access-Control-Allow-Origin': '*', 'Access-Control-Allow-Headers': '*', 'Access-Control-Allow-Methods': '*'} def check_session(header): session = header.get('session') or header.get('Session') if session: return session
def header_option(): return {'Access-Control-Allow-Origin': '*', 'Access-Control-Allow-Headers': '*', 'Access-Control-Allow-Methods': '*'} def check_session(header): session = header.get('session') or header.get('Session') if session: return session
def fib(n): if (n==1 or n==0): return n print("we are trying to calculate fib(",n,") we will call fib(",n-1,") fib(",n-2,")") return fib(n-1) + fib(n-2) for i in range(1,10): print (fib(i))
def fib(n): if n == 1 or n == 0: return n print('we are trying to calculate fib(', n, ') we will call fib(', n - 1, ') fib(', n - 2, ')') return fib(n - 1) + fib(n - 2) for i in range(1, 10): print(fib(i))
class Solution: def reverseList(self, head): """ :type head: ListNode :rtype: ListNode """ prev = None while head: next = head.next head.next = prev prev = head head = next return prev
class Solution: def reverse_list(self, head): """ :type head: ListNode :rtype: ListNode """ prev = None while head: next = head.next head.next = prev prev = head head = next return prev
class BotDBException(Exception): """DB exception""" class AlreadyHasItException(BotDBException): """The database already has such a record""" class NoSuchUser(BotDBException): """No such user in database""" class NoSuchChannel(BotDBException): """No such channel in database""" class ActuatorsRuntimeException(Exception): ... class ActuatorAlreadyConnected(ActuatorsRuntimeException): """Actuator already plugged on""" class NoSuchActuatorInRAM(ActuatorsRuntimeException): """No such client in ram_storage""" class NoSuchCommand(ActuatorsRuntimeException): """No such command for client""" def __init__(self, cmd: str, *args): super().__init__(*args) self.cmd = cmd
class Botdbexception(Exception): """DB exception""" class Alreadyhasitexception(BotDBException): """The database already has such a record""" class Nosuchuser(BotDBException): """No such user in database""" class Nosuchchannel(BotDBException): """No such channel in database""" class Actuatorsruntimeexception(Exception): ... class Actuatoralreadyconnected(ActuatorsRuntimeException): """Actuator already plugged on""" class Nosuchactuatorinram(ActuatorsRuntimeException): """No such client in ram_storage""" class Nosuchcommand(ActuatorsRuntimeException): """No such command for client""" def __init__(self, cmd: str, *args): super().__init__(*args) self.cmd = cmd
n1= int(input('Digite o primeiro numero ')) n2= int(input('digite o segundo numero ')) resultado = n1+n2 print ('O resultado de {} + {} = {}'.format(n1,n2,resultado))
n1 = int(input('Digite o primeiro numero ')) n2 = int(input('digite o segundo numero ')) resultado = n1 + n2 print('O resultado de {} + {} = {}'.format(n1, n2, resultado))
class DatabaseSeeder: seeds = [ # ]
class Databaseseeder: seeds = []
YOUTUBE_API_KEY = [ ""] YOUTUBE_KEY_NUMBER = 0 SPOTIFY_CLIENT_ID = "" SPOTIFY_CLIENT_SECRET = "" MONGO_ATLAS_USER = "" MONGO_ATLAS_PASSWORD = ""
youtube_api_key = [''] youtube_key_number = 0 spotify_client_id = '' spotify_client_secret = '' mongo_atlas_user = '' mongo_atlas_password = ''
# Time: O(n), where n=len(A)+len(B) # Space: O(n) class Solution: def intervalIntersection(self, A: List[List[int]], B: List[List[int]]) -> List[List[int]]: a = 0 b = 0 ans = [] while a<len(A) and b<len(B): start = max(A[a][0], B[b][0]) end = min(A[a][1], B[b][1]) if start<=end: ans.append([start, end]) if end==A[a][1]: a+=1 else: b+=1 return ans
class Solution: def interval_intersection(self, A: List[List[int]], B: List[List[int]]) -> List[List[int]]: a = 0 b = 0 ans = [] while a < len(A) and b < len(B): start = max(A[a][0], B[b][0]) end = min(A[a][1], B[b][1]) if start <= end: ans.append([start, end]) if end == A[a][1]: a += 1 else: b += 1 return ans
# -*- coding: utf-8 -*- def main(): employer_number = int(input()) worked_hours = int(input()) amount_per_hour = float(input()) salary = worked_hours * amount_per_hour print('NUMBER =', employer_number) print('SALARY = U$ %.2f' % salary) if __name__ == '__main__': main()
def main(): employer_number = int(input()) worked_hours = int(input()) amount_per_hour = float(input()) salary = worked_hours * amount_per_hour print('NUMBER =', employer_number) print('SALARY = U$ %.2f' % salary) if __name__ == '__main__': main()
# Self powers # Answer: 9110846700 def self_powers(limit=1001): total = 0 for x in range(1, limit): total += x ** x return str(total)[-10:] if __name__ == "__main__": print(self_powers())
def self_powers(limit=1001): total = 0 for x in range(1, limit): total += x ** x return str(total)[-10:] if __name__ == '__main__': print(self_powers())
# In this game basiclly I am going to let you input a bruch of # words and put them into my text, that makes a funny story. # A few ways to do this: # youtuber = 'Chanling' # print('subscribe to ' + youtuber) # print('subscribe to {}'.format(youtuber)) # print(f'subscribe to {youtuber}') color = input('Enter a color you love ') plural_noun = input('Enter a plural noun ') celebrity = input('Enter a celebrity ') print('Roses are ' + color) print(plural_noun + ' are blue') print('I love ' + celebrity)
color = input('Enter a color you love ') plural_noun = input('Enter a plural noun ') celebrity = input('Enter a celebrity ') print('Roses are ' + color) print(plural_noun + ' are blue') print('I love ' + celebrity)
{ "targets": [ { "target_name": "<(module_name)", "sources": [ "src/node-aes-ccm.cc", "src/node-aes-gcm.cc", "src/addon.cc" ], 'conditions': [ [ 'OS=="win"', { 'conditions': [ # "openssl_root" is the directory on Windows of the OpenSSL files [ 'target_arch=="x64"', { 'variables': { 'openssl_root%': 'C:/OpenSSL-Win64' }, #'libraries': [ '<(openssl_root)/lib/<!@(dir /B C:\OpenSSL-Win64\lib\libeay32.lib C:\OpenSSL-Win64\lib\libcrypto.lib)' ], }, { 'variables': { 'openssl_root%': 'C:/OpenSSL-Win32' }, #'libraries': [ '<(openssl_root)/lib/<!@(dir /B C:\OpenSSL-Win32\lib\libeay32.lib C:\OpenSSL-Win32\lib\libcrypto.lib)' ], } ], ], 'defines': [ 'uint=unsigned int', ], 'include_dirs': [ '<(openssl_root)/include', '<!(node -e "require(\'nan\')")', ], }, { # OS!="win" 'include_dirs': [ # use node's bundled openssl headers on Unix platforms '<(node_root_dir)/deps/openssl/openssl/include', '<!(node -e "require(\'nan\')")', ], } ], ], }, { "target_name": "action_after_build", "type": "none", "dependencies": [ "<(module_name)" ], "copies": [ { "files": [ "<(PRODUCT_DIR)/<(module_name).node" ], "destination": "<(module_path)" } ] } ] }
{'targets': [{'target_name': '<(module_name)', 'sources': ['src/node-aes-ccm.cc', 'src/node-aes-gcm.cc', 'src/addon.cc'], 'conditions': [['OS=="win"', {'conditions': [['target_arch=="x64"', {'variables': {'openssl_root%': 'C:/OpenSSL-Win64'}}, {'variables': {'openssl_root%': 'C:/OpenSSL-Win32'}}]], 'defines': ['uint=unsigned int'], 'include_dirs': ['<(openssl_root)/include', '<!(node -e "require(\'nan\')")']}, {'include_dirs': ['<(node_root_dir)/deps/openssl/openssl/include', '<!(node -e "require(\'nan\')")']}]]}, {'target_name': 'action_after_build', 'type': 'none', 'dependencies': ['<(module_name)'], 'copies': [{'files': ['<(PRODUCT_DIR)/<(module_name).node'], 'destination': '<(module_path)'}]}]}
""" https://leetcode.com/problems/restore-ip-addresses/ """ def solve(s): res = [] n = len(s) if n > 12: return [] def bt(ans, i): if i == n and len(ans) == 4: res.append(".".join(ans)) return for j in range(i + 1, n + 1): if len(ans) < 4: candidate = s[i:j] v = int(candidate) if v <= 255 and str(v) == candidate: bt(ans + [candidate], j) bt([], 0) return res
""" https://leetcode.com/problems/restore-ip-addresses/ """ def solve(s): res = [] n = len(s) if n > 12: return [] def bt(ans, i): if i == n and len(ans) == 4: res.append('.'.join(ans)) return for j in range(i + 1, n + 1): if len(ans) < 4: candidate = s[i:j] v = int(candidate) if v <= 255 and str(v) == candidate: bt(ans + [candidate], j) bt([], 0) return res
N = int(input()) w = input() d = {'b': 1, 'c': 1, 'd': 2, 'w': 2, 't': 3, 'j': 3, 'f': 4, 'q': 4, 'l': 5, 'v': 5, 's': 6, 'x': 6, 'p': 7, 'm': 7, 'h': 8, 'k': 8, 'n': 9, 'g': 9, 'z': 0, 'r': 0} result = [] for s in w.split(): t = ''.join(str(d[c]) for c in s.lower() if c in d).strip() if t != '': result.append(t) print(*result)
n = int(input()) w = input() d = {'b': 1, 'c': 1, 'd': 2, 'w': 2, 't': 3, 'j': 3, 'f': 4, 'q': 4, 'l': 5, 'v': 5, 's': 6, 'x': 6, 'p': 7, 'm': 7, 'h': 8, 'k': 8, 'n': 9, 'g': 9, 'z': 0, 'r': 0} result = [] for s in w.split(): t = ''.join((str(d[c]) for c in s.lower() if c in d)).strip() if t != '': result.append(t) print(*result)
class BotProcessorFactory(object): ''' Factory class to give the appropriate processor based on action ''' def __init__(self): pass def getProcessor(self,action): ''' Returns an object of Processor ''' pass class BaseProcessor(object): ''' BaseProcessor class to process actions Input: Structured JSON data returns response ''' def process(self,input): pass
class Botprocessorfactory(object): """ Factory class to give the appropriate processor based on action """ def __init__(self): pass def get_processor(self, action): """ Returns an object of Processor """ pass class Baseprocessor(object): """ BaseProcessor class to process actions Input: Structured JSON data returns response """ def process(self, input): pass
class Solution: def plusOne(self, digits): num = 0 for i in range(len(digits)): num += digits[i]*(10**(len(digits)-1-i)) list = [int(i) for i in str(num+1)] return list """ You are given a large integer represented as an integer array digits, where each digits[i] is the ith digit of the integer. The digits are ordered from most significant to least significant in left-to-right order. The large integer does not contain any leading 0's. Increment the large integer by one and return the resulting array of digits. Example 1: Input: digits = [1,2,3] Output: [1,2,4] Explanation: The array represents the integer 123. Incrementing by one gives 123 + 1 = 124. Thus, the result should be [1,2,4]. Example 2: Input: digits = [4,3,2,1] Output: [4,3,2,2] Explanation: The array represents the integer 4321. Incrementing by one gives 4321 + 1 = 4322. Thus, the result should be [4,3,2,2]. Example 3: Input: digits = [9] Output: [1,0] Explanation: The array represents the integer 9. Incrementing by one gives 9 + 1 = 10. Thus, the result should be [1,0]. """
class Solution: def plus_one(self, digits): num = 0 for i in range(len(digits)): num += digits[i] * 10 ** (len(digits) - 1 - i) list = [int(i) for i in str(num + 1)] return list "\nYou are given a large integer represented as an integer array digits, where each digits[i] is the ith digit of the integer. The digits are ordered from most significant to least significant in left-to-right order. The large integer does not contain any leading 0's.\nIncrement the large integer by one and return the resulting array of digits.\nExample 1:\nInput: digits = [1,2,3]\nOutput: [1,2,4]\nExplanation: The array represents the integer 123.\nIncrementing by one gives 123 + 1 = 124.\nThus, the result should be [1,2,4].\nExample 2:\nInput: digits = [4,3,2,1]\nOutput: [4,3,2,2]\nExplanation: The array represents the integer 4321.\nIncrementing by one gives 4321 + 1 = 4322.\nThus, the result should be [4,3,2,2].\nExample 3:\nInput: digits = [9]\nOutput: [1,0]\nExplanation: The array represents the integer 9.\nIncrementing by one gives 9 + 1 = 10.\nThus, the result should be [1,0].\n"
# Basic settings for test project # Database settings. This assumes that the default user and empty # password will work. DATABASES = { 'default': { 'ENGINE': 'django.db.backends.postgresql_psycopg2', 'NAME': 'django_pg_agefilter', 'USER': '', 'PASSWORD': '', 'HOST': 'localhost', } } SECRET_KEY = 'secret' INSTALLED_APPS = ( 'tests.app', ) SILENCED_SYSTEM_CHECKS = [ '1_7.W001', ]
databases = {'default': {'ENGINE': 'django.db.backends.postgresql_psycopg2', 'NAME': 'django_pg_agefilter', 'USER': '', 'PASSWORD': '', 'HOST': 'localhost'}} secret_key = 'secret' installed_apps = ('tests.app',) silenced_system_checks = ['1_7.W001']
#Unchanged Magicians: listOfMagicians = ['Dynamo','david blain','karan singh magic'] newListOfMagicians = [] def show_magicians(listOfMagicians): for magician in listOfMagicians: print(magician) def make_great(listofnames): for name in listofnames: newListOfMagicians.append("The Great "+name) show_magicians(listOfMagicians) make_great(listOfMagicians) show_magicians(newListOfMagicians)
list_of_magicians = ['Dynamo', 'david blain', 'karan singh magic'] new_list_of_magicians = [] def show_magicians(listOfMagicians): for magician in listOfMagicians: print(magician) def make_great(listofnames): for name in listofnames: newListOfMagicians.append('The Great ' + name) show_magicians(listOfMagicians) make_great(listOfMagicians) show_magicians(newListOfMagicians)
# # author: redleaf # email: redleaf@gapp.nthu.edu.tw # def solve1(A, B, C): a, b, c, ans = 0, 0, 0, 0 while a < len(A) and b < len(B) and c < len(C): if B[b] < A[a] and B[b] < C[c]: ans += (len(A) - a) * (len(C) - c) b += 1 elif A[a] < C[c]: a += 1 else: c += 1 return ans if __name__ == '__main__': na, nb, nc = map(int, input().split()) A = sorted(list(map(int, input().split()))) B = sorted(list(map(int, input().split()))) C = sorted(list(map(int, input().split()))) print(solve1(A, B, C))
def solve1(A, B, C): (a, b, c, ans) = (0, 0, 0, 0) while a < len(A) and b < len(B) and (c < len(C)): if B[b] < A[a] and B[b] < C[c]: ans += (len(A) - a) * (len(C) - c) b += 1 elif A[a] < C[c]: a += 1 else: c += 1 return ans if __name__ == '__main__': (na, nb, nc) = map(int, input().split()) a = sorted(list(map(int, input().split()))) b = sorted(list(map(int, input().split()))) c = sorted(list(map(int, input().split()))) print(solve1(A, B, C))
def screen(int): size = str(int) return str(size+"%") def vh(int): size = str(int) return str(size+"vh") def vw(int): size = str(int) return str(size+"vw") def px(int): size = str(int) return str(size+"px")
def screen(int): size = str(int) return str(size + '%') def vh(int): size = str(int) return str(size + 'vh') def vw(int): size = str(int) return str(size + 'vw') def px(int): size = str(int) return str(size + 'px')
def bubble_sort(data, size): swap = False for x in range(0, size-1): if data[x] > data[x+1]: data[x], data[x+1] = data[x+1], data[x] swap = True if swap: bubble_sort(data, size-1) if __name__ == '__main__': data = [2, 9, 8, 0, 1, 3, 5, 4, 6, 7] print(data) bubble_sort(data, len(data)) print(data)
def bubble_sort(data, size): swap = False for x in range(0, size - 1): if data[x] > data[x + 1]: (data[x], data[x + 1]) = (data[x + 1], data[x]) swap = True if swap: bubble_sort(data, size - 1) if __name__ == '__main__': data = [2, 9, 8, 0, 1, 3, 5, 4, 6, 7] print(data) bubble_sort(data, len(data)) print(data)
#coding=utf-8 #!encoding=utf-8 ''' Created on 2013-12-30 @author: ETHAN ''' class AutomationTaskDBRouter(object): ''' db router for automationtesting ''' def db_for_read(self,model,**hints): ''' read data from db automationtask ''' if model._meta.app_label=='automationtesting': return 'automationtesting' def db_for_write(self,model,**hints): ''' write data to db automationtask ''' if model._meta.app_label=='automationtesting': return 'automationtesting' def allow_syncdb(self,db,model): ''' make sure doraemon.automationtask just in db dorameon_automationtask ''' if db=='automationtesting': return model._meta.app_label=="automationtesting" elif model._meta.app_label=="automationtesting": return False def allwo_relation(self,obj1,obj2,**hints): if obj1._meta.app_label == 'automationtesting' or obj2._meta.app_label == 'automationtesting': return True return None
""" Created on 2013-12-30 @author: ETHAN """ class Automationtaskdbrouter(object): """ db router for automationtesting """ def db_for_read(self, model, **hints): """ read data from db automationtask """ if model._meta.app_label == 'automationtesting': return 'automationtesting' def db_for_write(self, model, **hints): """ write data to db automationtask """ if model._meta.app_label == 'automationtesting': return 'automationtesting' def allow_syncdb(self, db, model): """ make sure doraemon.automationtask just in db dorameon_automationtask """ if db == 'automationtesting': return model._meta.app_label == 'automationtesting' elif model._meta.app_label == 'automationtesting': return False def allwo_relation(self, obj1, obj2, **hints): if obj1._meta.app_label == 'automationtesting' or obj2._meta.app_label == 'automationtesting': return True return None
# 27 Remove Element class Solution: def removeElement(self, nums, val): nums[:] = [x for x in nums if x != val] return len(nums)
class Solution: def remove_element(self, nums, val): nums[:] = [x for x in nums if x != val] return len(nums)
word_list = [ "taken", "table", "taxes", "taste", "tales", "tasty", "tally", "taboo", "tacit", "taxis", "taper", "tango", "tacky", "taint", "tawny", "taker", "taunt", "tarot", "tabor", "tardy", "talon", "tarry", "tabby", "taffy", "tapas", "tatty", "tanto", "tansy", "talus", "tater", "takin", "tabla", "taupe", "talky", "taiga", "tasse", "taxon", "tapir", "tarty", "tapis", "tanka", "tache", "tabun", "tawse", "tanga", "targe", "tabes", "taler", "tazza", "tacet", "taluk", "tarok", "tafia", "tails", "tahrs", "talcs", "talas", "talar", "takes", "takas", "tains", "tajes", "taces", "tabus", "taber", "tabid", "tacos", "tacks", "tachs", "taels", "tacts", "taroc", "taros", "tarre", "tarps", "tarns", "tares", "tardo", "tared", "tarts", "tarsi", "taped", "tapes", "tamal", "talks", "talls", "tamed", "tamer", "tames", "tamps", "tamis", "tammy", "tangs", "tangy", "tanks", "tazze", "taxus", "taxed", "tawer", "taxol" ] temp = False acc_words = [] for i in word_list: for k in i: if k in "eryuoshlb": temp = True if temp: print(i, ": No") temp = False else: print(i, ": Yes") acc_words.append(i) print("Possibilites: " , acc_words) # TACIT is right answer, i won
word_list = ['taken', 'table', 'taxes', 'taste', 'tales', 'tasty', 'tally', 'taboo', 'tacit', 'taxis', 'taper', 'tango', 'tacky', 'taint', 'tawny', 'taker', 'taunt', 'tarot', 'tabor', 'tardy', 'talon', 'tarry', 'tabby', 'taffy', 'tapas', 'tatty', 'tanto', 'tansy', 'talus', 'tater', 'takin', 'tabla', 'taupe', 'talky', 'taiga', 'tasse', 'taxon', 'tapir', 'tarty', 'tapis', 'tanka', 'tache', 'tabun', 'tawse', 'tanga', 'targe', 'tabes', 'taler', 'tazza', 'tacet', 'taluk', 'tarok', 'tafia', 'tails', 'tahrs', 'talcs', 'talas', 'talar', 'takes', 'takas', 'tains', 'tajes', 'taces', 'tabus', 'taber', 'tabid', 'tacos', 'tacks', 'tachs', 'taels', 'tacts', 'taroc', 'taros', 'tarre', 'tarps', 'tarns', 'tares', 'tardo', 'tared', 'tarts', 'tarsi', 'taped', 'tapes', 'tamal', 'talks', 'talls', 'tamed', 'tamer', 'tames', 'tamps', 'tamis', 'tammy', 'tangs', 'tangy', 'tanks', 'tazze', 'taxus', 'taxed', 'tawer', 'taxol'] temp = False acc_words = [] for i in word_list: for k in i: if k in 'eryuoshlb': temp = True if temp: print(i, ': No') temp = False else: print(i, ': Yes') acc_words.append(i) print('Possibilites: ', acc_words)
def TiaraCreateTables(con): # tweet tables con.query(("create table if not exists tweets(" "id bigint not null," "user_id bigint not null," "retweets bigint not null," "favorites bigint not null," "primary key(user_id, id) using hash," "shard (user_id))")) followback_terms = ['follow','seguro','retweet','mgwv','followback','followtrain','followtrick','teamfollowback'] followbacker_regex = " + ".join([("(lcase_body regexp '%s')" % ("[^a-z][^a-z]*".join(fl))) for fl in followback_terms]) maybe_followbacker_regex = " + ".join([("(lcase_body regexp '%s')" % fl) for fl in followback_terms]) con.query(("create columnar table if not exists tweets_storage(" "id bigint not null," "parent bigint default null," "user_id bigint not null," "parent_id bigint default null," "body blob, " "ts datetime not null," "json json ," "lcase_body as lcase(cast(body as char)) persisted blob," "num_hashtags as ifnull(json_length(json::hashtags),0) persisted bigint, " "num_media as ifnull(json_length(json::media),0) persisted bigint, " "num_user_mentions as ifnull(json_length(json::user_mentions),0) persisted bigint, " "num_urls as ifnull(json_length(json::urls),0) persisted bigint, " "is_retweet as not isnull(json::retweeted_status) persisted boolean, " "language as json::$lang persisted varbinary(200), " "is_followbacker as %s persisted tinyint," "maybe_followbacker as %s persisted tinyint," "shard(user_id)," "index(user_id, id) using clustered columnar)" % (followbacker_regex, maybe_followbacker_regex))) con.query(("create table if not exists bot_tweets (" "id bigint not null," "parent bigint default null," "user_id bigint not null," "parent_id bigint default null," "body blob, " "ts datetime not null," "json json ," "conversation_id bigint not null, " "favorites bigint not null, " "retweets bigint not null, " "key (conversation_id), " "key (parent_id,parent), " "primary key(user_id, id), " "shard (user_id))")) con.query(("create table if not exists ungettable_tweets(" "id bigint primary key," "errorcode int)")) con.query(("create reference table if not exists conversation_upvotes(" "user_id bigint not null," "conversation_id bigint not null," "upvotes int not null," "primary key(user_id, conversation_id))")) # user tables con.query(("create table if not exists user_afflictions(" "id bigint," "affliction int," "primary key(id, affliction)," "shard(id))")) con.query(("create table if not exists users(" "id bigint primary key," "screen_name varbinary(200) not null," "num_followers bigint not null," "num_friends bigint not null," "language varbinary(200) not null," "updated timestamp default current_timestamp on update current_timestamp," "image_url varbinary(200)," "key (screen_name))")) con.query(("create table if not exists user_following_status(" "id bigint not null," "bot_id bigint not null," "following tinyint not null," "has_followed tinyint not null," "updated timestamp default current_timestamp on update current_timestamp," "unfollow_reason tinyint not null," "primary key(id, bot_id)," "shard(id))")) # TFIDF token tables # con.query(("create reference table if not exists token_id(" "id bigint primary key auto_increment," "token varbinary(200) not null," "unique key(token))")) con.query(("create reference table if not exists token_representatives(" "id bigint not null," "token varbinary(200) primary key)")) con.query(("create table if not exists user_token_frequency_proj_token(" "user_id bigint not null," "token bigint not null," "count bigint not null," "shard(token)," "key(token, user_id) using clustered columnstore)")) con.query(("create table if not exists user_token_frequency_proj_user(" "user_id bigint not null," "token bigint not null," "count bigint not null," "shard(token)," "key(token, user_id) using clustered columnstore)")) con.query(("create table if not exists tweet_tokens(" "user_id bigint not null," "id bigint not null," "token bigint not null," "shard(user_id)," "key(user_id, id, token) using clustered columnstore)")) con.query(("create reference table if not exists tweet_document_frequency(" "token bigint not null," "count bigint not null," "primary key(token) using hash)")) con.query(("create reference table if not exists user_document_frequency(" "token bigint not null," "count bigint not null," "primary key(token) using hash)")) # targeting tables # con.query(("create table if not exists ignored_users(" "id bigint primary key)")) con.query(("create table if not exists target_candidates(" "id bigint not null," "bot_id bigint not null," "primary key(bot_id, id)," "shard(id)," "processed datetime default null," "eliminated tinyint not null)")) con.query(("create reference table if not exists follower_cursors(" "id bigint not null," "bot_id bigint not null," "cursr bigint not null," "primary key(bot_id, id, cursr)," "processed datetime default null)")) con.query(("create reference table if not exists bots(" "id bigint primary key," "screen_name varbinary(200))")) # materialized view for targeting state # con.query(("create table if not exists targeting_state(" "bot_id bigint not null," "user_id bigint not null," "last_targeted datetime not null," "tweets_to bigint not null," "primary key(bot_id, user_id)," "shard(user_id))")) def DropViews(con): while True: views = [r["table_name"] for r in con.query("select table_name from information_schema.views where table_schema='tiaraboom'")] if len(views) == 0: break for v in views: try: con.query("drop view if exists %s" % v) except Exception: pass def TiaraCreateViews(con): views = {} default_args = {} DropViews(con) # views for convinience # con.query(("create view tweets_joined as " "select ts.id, ts.user_id, ts.parent_id, ts.parent, tweets.favorites, tweets.retweets, ts.body, ts.json, ts.ts " "from tweets_storage ts join tweets tweets " "on ts.user_id = tweets.user_id and ts.id = tweets.id ")) con.query(("create view tweets_joined_no_json as " "select ts.id, ts.user_id, ts.parent_id, ts.parent, tweets.favorites, tweets.retweets, ts.body, ts.ts, '{}' as json " "from tweets_storage ts join tweets tweets " "on ts.user_id = tweets.user_id and ts.id = tweets.id ")) # views for user level TFIDF # con.query("create view user_document_frequency_view as " "select token, count(distinct user_id) as count from user_token_frequency_proj_token group by 1") con.query("create view user_token_frequency_aggregated " "as select user_id, token, sum(count) as count " "from user_token_frequency_proj_user " "group by 1,2") con.query("create view max_df_view as " "select max(count) as val from user_document_frequency") con.query("create view tfidf_view_internal as " "select termfreq.token, termfreq.user_id, termfreq.count as tf, docfreq.count as df, " "log(1 + termfreq.count) * log((select val from max_df_view)/(1+docfreq.count)) as tfidf " "from user_token_frequency_aggregated termfreq join user_document_frequency docfreq " "on termfreq.token = docfreq.token") con.query("create view tfidf_view as " "select tid.token, tid.id as token_id, users.screen_name, tf.user_id, tf.tf, tf.df, tf.tfidf " "from tfidf_view_internal tf join token_id tid join users " "on tf.token = tid.id and tf.user_id = users.id") # views for tweet level TFIDF # con.query("create view max_tweet_df_view as " "select max(count) as val from tweet_document_frequency ") con.query("create view tweet_tfidf_view_internal as " "select user_id, id, tt.token, " "log(1000000/(1+tdf.count)) as tfidf " "from tweet_tokens tt join tweet_document_frequency tdf " "on tt.token = tdf.token " ) # views for selecting users to follow # con.query("create view followbackers_view as " "select user_id from tweets_storage " "group by 1 " "having sum(is_followbacker) > 0 or avg(maybe_followbacker) > 0.5 ") views["candidates_joined_view"] = """ select users.screen_name, users.id as uid, users.num_followers, users.num_friends, users.language, ts.id as tid, ts.lcase_body, ts.num_hashtags, ts.num_media, ts.num_urls, ts.num_user_mentions, ts.language as tweet_language, ts.is_retweet, ts.ts, ts.is_followbacker, ts.maybe_followbacker, ts.parent_id, tc.bot_id, tc.processed from tweets_storage ts join users join target_candidates tc on ts.user_id = users.id and users.id = tc.id where not tc.eliminated and users.id not in (select user_id from followbackers_view) and users.id not in (select id from user_following_status where has_followed) and users.id not in (select id from user_afflictions) %(and_bot_id)s""" default_args["and_bot_id"] = "" con.query("create view candidates_joined_view as %s" % (views["candidates_joined_view"] % default_args)) views["candidates_joined_filtered_view"] = """ select bot_id, screen_name, uid, lcase_body, parent_id, num_followers, num_friends, processed, ts, is_followbacker, maybe_followbacker from (%s) candidates_joined_view where num_user_mentions <= 1 and num_media = 0 and num_hashtags <= 2 and num_urls = 0 and not is_retweet and ts > processed - interval 7 day and ts < processed and num_followers <= 2500 and num_friends <= 2500 and num_followers >= 100 and num_friends >= 100 and language like 'en%%%%' and tweet_language like 'en%%%%' """ views["candidates_joined_filtered_view"] = views["candidates_joined_filtered_view"] % views["candidates_joined_view"] con.query("create view candidates_joined_filtered_view as %s" % (views["candidates_joined_filtered_view"] % default_args)) views["candidates_view"] = """ select %%(bot_id_comma)s screen_name, uid, num_followers, num_friends, sum(if(parent_id is null, %%(extra_agg)s, 0)) as count, approx_count_distinct(parent_id) as convos from (%s) candidates_joined_filtered_view group by %%(bot_id_comma)s uid having sum(%%(extra_agg)s) > 0""" views["candidates_view"] = views["candidates_view"] % views["candidates_joined_filtered_view"] default_args["bot_id_comma"] = "bot_id," default_args["extra_agg"] = "1" con.query("create view candidates_view as %s" % (views["candidates_view"] % default_args)) views["candidates_predictors_view"] = """ select %%(bot_id_comma)s cv.screen_name, uid, 3 * (1 - (1 - num_followers/500) * (1 - num_followers/500)) as follower_score, 3 * (1 - (1 - num_friends/500) * (1 - num_friends/500)) as friend_score, (1/2) * convos as convos_score, (1/25) * cv.count as count_score from (%s) cv """ views["candidates_predictors_view"] = views["candidates_predictors_view"] % views["candidates_view"] con.query("create view candidates_predictors_view as %s" % (views["candidates_predictors_view"] % default_args)) views["candidates_scored_view"] = """ select %%(bot_id_comma)s screen_name, uid, follower_score , friend_score , count_score , convos_score, follower_score + friend_score + count_score + convos_score as score from (%s) candidates_predictors_view""" views["candidates_scored_view"] = views["candidates_scored_view"] % views["candidates_predictors_view"] con.query("create view candidates_scored_view as %s" % (views["candidates_scored_view"] % default_args)) # bother targeting views # views["targeting_state_view"] = """ select user_id as ts_bot_id, parent_id as user_id, max(ts) as last_targeted, count(*) as tweets_to from bot_tweets join bots on bot_tweets.user_id = bots.id where parent_id is not null %(and_bots_dot_id)s group by %(user_id_comma)s bot_tweets.parent_id """ default_args["and_bots_dot_id"] = "" default_args["user_id_comma"] = "user_id," con.query("create view targeting_state_view as %s" % views["targeting_state_view"] % default_args) views["botherable_friends_view"] = """ select %%(bot_id_comma)s ufs.id as user_id from user_following_status ufs left join bot_tweets bs on bs.user_id = ufs.id and bs.parent_id = ufs.bot_id left join (%s) ltv on ufs.id = ltv.user_id and ufs.bot_id = ltv.ts_bot_id where ufs.following = 1 and (ltv.last_targeted is null or ltv.last_targeted < now() - interval 7 day) and ufs.id not in (select id from user_afflictions) and ufs.id not in (select user_id from followbackers_view) %%(and_bot_id)s group by %%(bot_id_comma)s ufs.id having count(bs.user_id) > 0 or ltv.tweets_to is null or ltv.tweets_to <= 1""" views["botherable_friends_view"] = views["botherable_friends_view"] % views["targeting_state_view"] con.query("create view botherable_friends_view as %s" % (views["botherable_friends_view"] % default_args)) views["botherable_tweets_view"] = """ select %%(bot_id_comma)s bfv.user_id, ts.id, ts.lcase_body, timestampdiff(second, ts.ts, now()) as recentness, tweets.favorites, tweets.retweets from (%s) bfv join tweets_storage ts join tweets tweets on bfv.user_id = ts.user_id and ts.user_id = tweets.user_id and ts.id = tweets.id where ts.num_user_mentions = 0 and ts.num_media = 0 and ts.num_hashtags <= 2 and ts.num_urls = 0 and ts.parent_id is null and not ts.is_retweet and ts.ts > now() - interval 7 day and ts.maybe_followbacker = 0 and ts.language like 'en%%%%' %%(and_extra_pred)s""" default_args["and_extra_pred"] = "" views["botherable_tweets_view"] = views["botherable_tweets_view"] % views["botherable_friends_view"] con.query("create view botherable_tweets_view as %s" % (views["botherable_tweets_view"] % default_args)) views["botherable_tweets_predictors_view"] = """ select %%(bot_id_comma)s btv.user_id, btv.id, - recentness / (24 * 60 * 60) as recentness_score, 2 * (1 - (favorites/3 - 1) * (favorites/3 - 1)) as favorites_score, 2 * (1 - (retweets/2 - 1) * (retweets/2 - 1)) as retweets_score from (%s) btv""" views["botherable_tweets_predictors_view"] = views["botherable_tweets_predictors_view"] % views["botherable_tweets_view"] con.query("create view botherable_tweets_predictors_view as %s" % (views["botherable_tweets_predictors_view"] % default_args)) views["botherable_tweets_scored_view_internal"] = """ select %%(bot_id_comma)s user_id, id, recentness_score , favorites_score , retweets_score , recentness_score + favorites_score + retweets_score as score from (%s) subq""" views["botherable_tweets_scored_view_internal"] = views["botherable_tweets_scored_view_internal"] % views["botherable_tweets_predictors_view"] con.query("create view botherable_tweets_scored_view_internal as %s" % (views["botherable_tweets_scored_view_internal"] % default_args)) con.query("create view botherable_tweets_scored_view as " "select bots.screen_name as bot_name, concat('www.twitter.com/', users.screen_name, '/status/',csv.id) as url, " " recentness_score , favorites_score , retweets_score , score " "from botherable_tweets_scored_view_internal csv join bots join users " "on bots.id = csv.bot_id and users.id = csv.user_id ") # GC friend view con.query(""" create view gc_friends_view as select bot_id, ufs.id as user_id from user_following_status ufs left join bot_tweets bs on bs.user_id = ufs.id and bs.parent_id = ufs.bot_id left join targeting_state_view ltv on ufs.id = ltv.user_id and ufs.bot_id = ltv.ts_bot_id where ufs.following = 1 and (ltv.last_targeted < now() - interval 7 day) and ufs.id not in (select id from user_afflictions) group by bot_id, ufs.id having count(bs.user_id) = 0 and ltv.tweets_to >= 2""") # web populating views con.query("create view conversations_view as " "select bot_tweets.conversation_id, max(bot_tweets.id) as max_id, count(*) as count, " " count(bots.id) as to_bots, count(bots2.id) as from_bots, max(bots2.screen_name) as bot_name, " " ifnull(sum(cu.upvotes), 0) as upvotes, " " sum((not isnull(bots2.id)) * bot_tweets.favorites) as bot_favorites, " " sum((not isnull(bots2.id)) * bot_tweets.retweets) as bot_retweets " "from bot_tweets " " left join bots bots on bot_tweets.parent_id = bots.id " " left join bots bots2 on bot_tweets.user_id = bots2.id " " left join conversation_upvotes cu on cu.conversation_id = bot_tweets.conversation_id " "group by bot_tweets.conversation_id") return views
def tiara_create_tables(con): con.query('create table if not exists tweets(id bigint not null,user_id bigint not null,retweets bigint not null,favorites bigint not null,primary key(user_id, id) using hash,shard (user_id))') followback_terms = ['follow', 'seguro', 'retweet', 'mgwv', 'followback', 'followtrain', 'followtrick', 'teamfollowback'] followbacker_regex = ' + '.join(["(lcase_body regexp '%s')" % '[^a-z][^a-z]*'.join(fl) for fl in followback_terms]) maybe_followbacker_regex = ' + '.join(["(lcase_body regexp '%s')" % fl for fl in followback_terms]) con.query('create columnar table if not exists tweets_storage(id bigint not null,parent bigint default null,user_id bigint not null,parent_id bigint default null,body blob, ts datetime not null,json json ,lcase_body as lcase(cast(body as char)) persisted blob,num_hashtags as ifnull(json_length(json::hashtags),0) persisted bigint, num_media as ifnull(json_length(json::media),0) persisted bigint, num_user_mentions as ifnull(json_length(json::user_mentions),0) persisted bigint, num_urls as ifnull(json_length(json::urls),0) persisted bigint, is_retweet as not isnull(json::retweeted_status) persisted boolean, language as json::$lang persisted varbinary(200), is_followbacker as %s persisted tinyint,maybe_followbacker as %s persisted tinyint,shard(user_id),index(user_id, id) using clustered columnar)' % (followbacker_regex, maybe_followbacker_regex)) con.query('create table if not exists bot_tweets (id bigint not null,parent bigint default null,user_id bigint not null,parent_id bigint default null,body blob, ts datetime not null,json json ,conversation_id bigint not null, favorites bigint not null, retweets bigint not null, key (conversation_id), key (parent_id,parent), primary key(user_id, id), shard (user_id))') con.query('create table if not exists ungettable_tweets(id bigint primary key,errorcode int)') con.query('create reference table if not exists conversation_upvotes(user_id bigint not null,conversation_id bigint not null,upvotes int not null,primary key(user_id, conversation_id))') con.query('create table if not exists user_afflictions(id bigint,affliction int,primary key(id, affliction),shard(id))') con.query('create table if not exists users(id bigint primary key,screen_name varbinary(200) not null,num_followers bigint not null,num_friends bigint not null,language varbinary(200) not null,updated timestamp default current_timestamp on update current_timestamp,image_url varbinary(200),key (screen_name))') con.query('create table if not exists user_following_status(id bigint not null,bot_id bigint not null,following tinyint not null,has_followed tinyint not null,updated timestamp default current_timestamp on update current_timestamp,unfollow_reason tinyint not null,primary key(id, bot_id),shard(id))') con.query('create reference table if not exists token_id(id bigint primary key auto_increment,token varbinary(200) not null,unique key(token))') con.query('create reference table if not exists token_representatives(id bigint not null,token varbinary(200) primary key)') con.query('create table if not exists user_token_frequency_proj_token(user_id bigint not null,token bigint not null,count bigint not null,shard(token),key(token, user_id) using clustered columnstore)') con.query('create table if not exists user_token_frequency_proj_user(user_id bigint not null,token bigint not null,count bigint not null,shard(token),key(token, user_id) using clustered columnstore)') con.query('create table if not exists tweet_tokens(user_id bigint not null,id bigint not null,token bigint not null,shard(user_id),key(user_id, id, token) using clustered columnstore)') con.query('create reference table if not exists tweet_document_frequency(token bigint not null,count bigint not null,primary key(token) using hash)') con.query('create reference table if not exists user_document_frequency(token bigint not null,count bigint not null,primary key(token) using hash)') con.query('create table if not exists ignored_users(id bigint primary key)') con.query('create table if not exists target_candidates(id bigint not null,bot_id bigint not null,primary key(bot_id, id),shard(id),processed datetime default null,eliminated tinyint not null)') con.query('create reference table if not exists follower_cursors(id bigint not null,bot_id bigint not null,cursr bigint not null,primary key(bot_id, id, cursr),processed datetime default null)') con.query('create reference table if not exists bots(id bigint primary key,screen_name varbinary(200))') con.query('create table if not exists targeting_state(bot_id bigint not null,user_id bigint not null,last_targeted datetime not null,tweets_to bigint not null,primary key(bot_id, user_id),shard(user_id))') def drop_views(con): while True: views = [r['table_name'] for r in con.query("select table_name from information_schema.views where table_schema='tiaraboom'")] if len(views) == 0: break for v in views: try: con.query('drop view if exists %s' % v) except Exception: pass def tiara_create_views(con): views = {} default_args = {} drop_views(con) con.query('create view tweets_joined as select ts.id, ts.user_id, ts.parent_id, ts.parent, tweets.favorites, tweets.retweets, ts.body, ts.json, ts.ts from tweets_storage ts join tweets tweets on ts.user_id = tweets.user_id and ts.id = tweets.id ') con.query("create view tweets_joined_no_json as select ts.id, ts.user_id, ts.parent_id, ts.parent, tweets.favorites, tweets.retweets, ts.body, ts.ts, '{}' as json from tweets_storage ts join tweets tweets on ts.user_id = tweets.user_id and ts.id = tweets.id ") con.query('create view user_document_frequency_view as select token, count(distinct user_id) as count from user_token_frequency_proj_token group by 1') con.query('create view user_token_frequency_aggregated as select user_id, token, sum(count) as count from user_token_frequency_proj_user group by 1,2') con.query('create view max_df_view as select max(count) as val from user_document_frequency') con.query('create view tfidf_view_internal as select termfreq.token, termfreq.user_id, termfreq.count as tf, docfreq.count as df, log(1 + termfreq.count) * log((select val from max_df_view)/(1+docfreq.count)) as tfidf from user_token_frequency_aggregated termfreq join user_document_frequency docfreq on termfreq.token = docfreq.token') con.query('create view tfidf_view as select tid.token, tid.id as token_id, users.screen_name, tf.user_id, tf.tf, tf.df, tf.tfidf from tfidf_view_internal tf join token_id tid join users on tf.token = tid.id and tf.user_id = users.id') con.query('create view max_tweet_df_view as select max(count) as val from tweet_document_frequency ') con.query('create view tweet_tfidf_view_internal as select user_id, id, tt.token, log(1000000/(1+tdf.count)) as tfidf from tweet_tokens tt join tweet_document_frequency tdf on tt.token = tdf.token ') con.query('create view followbackers_view as select user_id from tweets_storage group by 1 having sum(is_followbacker) > 0 or avg(maybe_followbacker) > 0.5 ') views['candidates_joined_view'] = '\n select users.screen_name, users.id as uid, users.num_followers, users.num_friends, users.language, \n ts.id as tid, ts.lcase_body, \n ts.num_hashtags, ts.num_media, ts.num_urls, ts.num_user_mentions, ts.language as tweet_language, \n ts.is_retweet, ts.ts, ts.is_followbacker, ts.maybe_followbacker, ts.parent_id, \n tc.bot_id, tc.processed \n from tweets_storage ts join users join target_candidates tc \n on ts.user_id = users.id and users.id = tc.id \n where not tc.eliminated \n and users.id not in (select user_id from followbackers_view) \n and users.id not in (select id from user_following_status where has_followed) \n and users.id not in (select id from user_afflictions)\n %(and_bot_id)s' default_args['and_bot_id'] = '' con.query('create view candidates_joined_view as %s' % (views['candidates_joined_view'] % default_args)) views['candidates_joined_filtered_view'] = "\n select bot_id, screen_name, uid, lcase_body, parent_id, num_followers, num_friends, processed, ts, is_followbacker, maybe_followbacker \n from (%s) candidates_joined_view \n where num_user_mentions <= 1 and num_media = 0 and num_hashtags <= 2 and num_urls = 0 \n and not is_retweet and ts > processed - interval 7 day and ts < processed \n and num_followers <= 2500 and num_friends <= 2500 and num_followers >= 100 and num_friends >= 100 \n and language like 'en%%%%' and tweet_language like 'en%%%%' " views['candidates_joined_filtered_view'] = views['candidates_joined_filtered_view'] % views['candidates_joined_view'] con.query('create view candidates_joined_filtered_view as %s' % (views['candidates_joined_filtered_view'] % default_args)) views['candidates_view'] = '\n select %%(bot_id_comma)s screen_name, uid, num_followers, num_friends, sum(if(parent_id is null, %%(extra_agg)s, 0)) as count, approx_count_distinct(parent_id) as convos\n from (%s) candidates_joined_filtered_view \n group by %%(bot_id_comma)s uid\n having sum(%%(extra_agg)s) > 0' views['candidates_view'] = views['candidates_view'] % views['candidates_joined_filtered_view'] default_args['bot_id_comma'] = 'bot_id,' default_args['extra_agg'] = '1' con.query('create view candidates_view as %s' % (views['candidates_view'] % default_args)) views['candidates_predictors_view'] = '\n select %%(bot_id_comma)s cv.screen_name, uid, \n 3 * (1 - (1 - num_followers/500) * (1 - num_followers/500)) as follower_score, \n 3 * (1 - (1 - num_friends/500) * (1 - num_friends/500)) as friend_score, \n (1/2) * convos as convos_score,\n (1/25) * cv.count as count_score\n from (%s) cv ' views['candidates_predictors_view'] = views['candidates_predictors_view'] % views['candidates_view'] con.query('create view candidates_predictors_view as %s' % (views['candidates_predictors_view'] % default_args)) views['candidates_scored_view'] = '\n select %%(bot_id_comma)s screen_name, uid, \n follower_score , friend_score , count_score , convos_score,\n follower_score + friend_score + count_score + convos_score as score \n from (%s) candidates_predictors_view' views['candidates_scored_view'] = views['candidates_scored_view'] % views['candidates_predictors_view'] con.query('create view candidates_scored_view as %s' % (views['candidates_scored_view'] % default_args)) views['targeting_state_view'] = '\n select user_id as ts_bot_id, parent_id as user_id, max(ts) as last_targeted, count(*) as tweets_to \n from bot_tweets join bots \n on bot_tweets.user_id = bots.id \n where parent_id is not null %(and_bots_dot_id)s\n group by %(user_id_comma)s bot_tweets.parent_id ' default_args['and_bots_dot_id'] = '' default_args['user_id_comma'] = 'user_id,' con.query('create view targeting_state_view as %s' % views['targeting_state_view'] % default_args) views['botherable_friends_view'] = '\n select %%(bot_id_comma)s ufs.id as user_id \n from user_following_status ufs \n left join bot_tweets bs on bs.user_id = ufs.id and bs.parent_id = ufs.bot_id \n left join (%s) ltv on ufs.id = ltv.user_id and ufs.bot_id = ltv.ts_bot_id \n where ufs.following = 1 \n and (ltv.last_targeted is null or ltv.last_targeted < now() - interval 7 day) \n and ufs.id not in (select id from user_afflictions) \n and ufs.id not in (select user_id from followbackers_view) \n %%(and_bot_id)s\n group by %%(bot_id_comma)s ufs.id \n having count(bs.user_id) > 0 or ltv.tweets_to is null or ltv.tweets_to <= 1' views['botherable_friends_view'] = views['botherable_friends_view'] % views['targeting_state_view'] con.query('create view botherable_friends_view as %s' % (views['botherable_friends_view'] % default_args)) views['botherable_tweets_view'] = "\n select %%(bot_id_comma)s bfv.user_id, ts.id, ts.lcase_body, timestampdiff(second, ts.ts, now()) as recentness, \n tweets.favorites, tweets.retweets \n from (%s) bfv join tweets_storage ts join tweets tweets \n on bfv.user_id = ts.user_id and ts.user_id = tweets.user_id and ts.id = tweets.id \n where ts.num_user_mentions = 0 and ts.num_media = 0 and ts.num_hashtags <= 2 and ts.num_urls = 0 \n and ts.parent_id is null and not ts.is_retweet and ts.ts > now() - interval 7 day \n and ts.maybe_followbacker = 0 \n and ts.language like 'en%%%%' \n %%(and_extra_pred)s" default_args['and_extra_pred'] = '' views['botherable_tweets_view'] = views['botherable_tweets_view'] % views['botherable_friends_view'] con.query('create view botherable_tweets_view as %s' % (views['botherable_tweets_view'] % default_args)) views['botherable_tweets_predictors_view'] = '\n select %%(bot_id_comma)s btv.user_id, btv.id, \n - recentness / (24 * 60 * 60) as recentness_score, \n 2 * (1 - (favorites/3 - 1) * (favorites/3 - 1)) as favorites_score, \n 2 * (1 - (retweets/2 - 1) * (retweets/2 - 1)) as retweets_score\n from (%s) btv' views['botherable_tweets_predictors_view'] = views['botherable_tweets_predictors_view'] % views['botherable_tweets_view'] con.query('create view botherable_tweets_predictors_view as %s' % (views['botherable_tweets_predictors_view'] % default_args)) views['botherable_tweets_scored_view_internal'] = '\n select %%(bot_id_comma)s user_id, id, \n recentness_score , favorites_score , retweets_score ,\n recentness_score + favorites_score + retweets_score as score \n from (%s) subq' views['botherable_tweets_scored_view_internal'] = views['botherable_tweets_scored_view_internal'] % views['botherable_tweets_predictors_view'] con.query('create view botherable_tweets_scored_view_internal as %s' % (views['botherable_tweets_scored_view_internal'] % default_args)) con.query("create view botherable_tweets_scored_view as select bots.screen_name as bot_name, concat('www.twitter.com/', users.screen_name, '/status/',csv.id) as url, recentness_score , favorites_score , retweets_score , score from botherable_tweets_scored_view_internal csv join bots join users on bots.id = csv.bot_id and users.id = csv.user_id ") con.query('\n create view gc_friends_view as\n select bot_id, ufs.id as user_id \n from user_following_status ufs \n left join bot_tweets bs on bs.user_id = ufs.id and bs.parent_id = ufs.bot_id \n left join targeting_state_view ltv on ufs.id = ltv.user_id and ufs.bot_id = ltv.ts_bot_id \n where ufs.following = 1 \n and (ltv.last_targeted < now() - interval 7 day) \n and ufs.id not in (select id from user_afflictions) \n group by bot_id, ufs.id \n having count(bs.user_id) = 0 and ltv.tweets_to >= 2') con.query('create view conversations_view as select bot_tweets.conversation_id, max(bot_tweets.id) as max_id, count(*) as count, count(bots.id) as to_bots, count(bots2.id) as from_bots, max(bots2.screen_name) as bot_name, ifnull(sum(cu.upvotes), 0) as upvotes, sum((not isnull(bots2.id)) * bot_tweets.favorites) as bot_favorites, sum((not isnull(bots2.id)) * bot_tweets.retweets) as bot_retweets from bot_tweets left join bots bots on bot_tweets.parent_id = bots.id left join bots bots2 on bot_tweets.user_id = bots2.id left join conversation_upvotes cu on cu.conversation_id = bot_tweets.conversation_id group by bot_tweets.conversation_id') return views
class Solution(object): def intersect(self, nums1, nums2): """ :type nums1: List[int] :type nums2: List[int] :rtype: List[int] """ s1 = sorted(nums1) s2 = sorted(nums2) result = [] i1 = i2 = 0 while i1 < len(s1) and i2 < len(s2): if s1[i1] < s2[i2]: i1 += 1 elif s1[i1] > s2[i2]: i2 += 1 else: result.append(s1[i1]) i1 += 1 i2 += 1 return result
class Solution(object): def intersect(self, nums1, nums2): """ :type nums1: List[int] :type nums2: List[int] :rtype: List[int] """ s1 = sorted(nums1) s2 = sorted(nums2) result = [] i1 = i2 = 0 while i1 < len(s1) and i2 < len(s2): if s1[i1] < s2[i2]: i1 += 1 elif s1[i1] > s2[i2]: i2 += 1 else: result.append(s1[i1]) i1 += 1 i2 += 1 return result
class Solution(object): def fullJustify(self, words, maxWidth): """ :type words: List[str] :type maxWidth: int :rtype: List[str] """ def format(wds, L): wdslen = len(''.join(wds)) l = len(wds) - 1 res = '' step = (L - wdslen) / l if l else L - len(wds[0]) - 1 diff = (L - wdslen) % l if l else 1 blanks = [' ' * (step + 1)] * diff + [' ' * step] * (l - diff) for i in range(len(blanks)): res += wds[i] + blanks[i] res += wds[-1] if l else '' return res lines = [] res = [] tmp = 0 for i in range(len(words)): word = words[i] if tmp and tmp + len(word) < maxWidth: lines[-1].append(word) tmp += len(word) + 1 else: tmp = 0 lines.append([]) lines[-1].append(word) tmp = len(word) for l in lines: res.append(format(l, maxWidth)) if len(res): res[-1] = ' '.join(res[-1].split()) res[-1] = res[-1] + (maxWidth - len(res[-1])) * ' ' return res
class Solution(object): def full_justify(self, words, maxWidth): """ :type words: List[str] :type maxWidth: int :rtype: List[str] """ def format(wds, L): wdslen = len(''.join(wds)) l = len(wds) - 1 res = '' step = (L - wdslen) / l if l else L - len(wds[0]) - 1 diff = (L - wdslen) % l if l else 1 blanks = [' ' * (step + 1)] * diff + [' ' * step] * (l - diff) for i in range(len(blanks)): res += wds[i] + blanks[i] res += wds[-1] if l else '' return res lines = [] res = [] tmp = 0 for i in range(len(words)): word = words[i] if tmp and tmp + len(word) < maxWidth: lines[-1].append(word) tmp += len(word) + 1 else: tmp = 0 lines.append([]) lines[-1].append(word) tmp = len(word) for l in lines: res.append(format(l, maxWidth)) if len(res): res[-1] = ' '.join(res[-1].split()) res[-1] = res[-1] + (maxWidth - len(res[-1])) * ' ' return res
# # PySNMP MIB module LIVINGSTON-PM-GLOBAL-MIB (http://snmplabs.com/pysmi) # ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/LIVINGSTON-PM-GLOBAL-MIB # Produced by pysmi-0.3.4 at Mon Apr 29 19:56:56 2019 # On host DAVWANG4-M-1475 platform Darwin version 18.5.0 by user davwang4 # Using Python version 3.7.3 (default, Mar 27 2019, 09:23:15) # OctetString, ObjectIdentifier, Integer = mibBuilder.importSymbols("ASN1", "OctetString", "ObjectIdentifier", "Integer") NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues") ConstraintsUnion, SingleValueConstraint, ConstraintsIntersection, ValueRangeConstraint, ValueSizeConstraint = mibBuilder.importSymbols("ASN1-REFINEMENT", "ConstraintsUnion", "SingleValueConstraint", "ConstraintsIntersection", "ValueRangeConstraint", "ValueSizeConstraint") lucentPMMib, = mibBuilder.importSymbols("LIVINGSTON-ROOT-MIB", "lucentPMMib") NotificationGroup, ModuleCompliance = mibBuilder.importSymbols("SNMPv2-CONF", "NotificationGroup", "ModuleCompliance") ObjectIdentity, MibIdentifier, MibScalar, MibTable, MibTableRow, MibTableColumn, NotificationType, TimeTicks, iso, Bits, Gauge32, Counter32, Integer32, Counter64, NotificationType, IpAddress, Unsigned32, ModuleIdentity = mibBuilder.importSymbols("SNMPv2-SMI", "ObjectIdentity", "MibIdentifier", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "NotificationType", "TimeTicks", "iso", "Bits", "Gauge32", "Counter32", "Integer32", "Counter64", "NotificationType", "IpAddress", "Unsigned32", "ModuleIdentity") TextualConvention, DisplayString = mibBuilder.importSymbols("SNMPv2-TC", "TextualConvention", "DisplayString") lucentPMGlobal = MibIdentifier((1, 3, 6, 1, 4, 1, 307, 1, 2, 1)) lucentPMGenGlobParams = MibIdentifier((1, 3, 6, 1, 4, 1, 307, 1, 2, 1, 1)) lucentPMGenPriNameSrvr = MibScalar((1, 3, 6, 1, 4, 1, 307, 1, 2, 1, 1, 1), IpAddress()).setMaxAccess("readwrite") if mibBuilder.loadTexts: lucentPMGenPriNameSrvr.setStatus('mandatory') lucentPMGenAltNameSrvr = MibScalar((1, 3, 6, 1, 4, 1, 307, 1, 2, 1, 1, 3), IpAddress()).setMaxAccess("readwrite") if mibBuilder.loadTexts: lucentPMGenAltNameSrvr.setStatus('mandatory') lucentPMGenSyslogHost = MibScalar((1, 3, 6, 1, 4, 1, 307, 1, 2, 1, 1, 4), IpAddress()).setMaxAccess("readwrite") if mibBuilder.loadTexts: lucentPMGenSyslogHost.setStatus('mandatory') lucentPMGenAssignedAddr = MibScalar((1, 3, 6, 1, 4, 1, 307, 1, 2, 1, 1, 5), IpAddress()).setMaxAccess("readwrite") if mibBuilder.loadTexts: lucentPMGenAssignedAddr.setStatus('mandatory') lucentPMGenReportedAddr = MibScalar((1, 3, 6, 1, 4, 1, 307, 1, 2, 1, 1, 6), IpAddress()).setMaxAccess("readwrite") if mibBuilder.loadTexts: lucentPMGenReportedAddr.setStatus('mandatory') lucentPMGenNetMask = MibScalar((1, 3, 6, 1, 4, 1, 307, 1, 2, 1, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("disable", 1), ("enable", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: lucentPMGenNetMask.setStatus('mandatory') lucentPMGenNameSvc = MibScalar((1, 3, 6, 1, 4, 1, 307, 1, 2, 1, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("none", 1), ("dns", 2), ("nis", 3)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: lucentPMGenNameSvc.setStatus('mandatory') lucentPMGenDomainName = MibScalar((1, 3, 6, 1, 4, 1, 307, 1, 2, 1, 1, 9), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: lucentPMGenDomainName.setStatus('mandatory') lucentPMGenTelnetPortNum = MibScalar((1, 3, 6, 1, 4, 1, 307, 1, 2, 1, 1, 10), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: lucentPMGenTelnetPortNum.setStatus('mandatory') lucentPMGenMaxConsConn = MibScalar((1, 3, 6, 1, 4, 1, 307, 1, 2, 1, 1, 11), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: lucentPMGenMaxConsConn.setStatus('mandatory') lucentPMGenOSPF = MibScalar((1, 3, 6, 1, 4, 1, 307, 1, 2, 1, 1, 12), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("disable", 1), ("enable", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: lucentPMGenOSPF.setStatus('mandatory') lucentPMGenBGP = MibScalar((1, 3, 6, 1, 4, 1, 307, 1, 2, 1, 1, 13), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("disable", 1), ("enable", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: lucentPMGenBGP.setStatus('mandatory') lucentPMGenIPX = MibScalar((1, 3, 6, 1, 4, 1, 307, 1, 2, 1, 1, 14), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("disable", 1), ("enable", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: lucentPMGenIPX.setStatus('mandatory') lucentPMGenNetBIOS = MibScalar((1, 3, 6, 1, 4, 1, 307, 1, 2, 1, 1, 15), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("disable", 1), ("enable", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: lucentPMGenNetBIOS.setStatus('mandatory') lucentPMGenCallCheck = MibScalar((1, 3, 6, 1, 4, 1, 307, 1, 2, 1, 1, 16), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("disable", 1), ("enable", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: lucentPMGenCallCheck.setStatus('mandatory') lucentPMRadiusMgmt = MibIdentifier((1, 3, 6, 1, 4, 1, 307, 1, 2, 1, 2)) lucentPMRadiusPriIP = MibScalar((1, 3, 6, 1, 4, 1, 307, 1, 2, 1, 2, 1), IpAddress()).setMaxAccess("readwrite") if mibBuilder.loadTexts: lucentPMRadiusPriIP.setStatus('mandatory') lucentPMRadiusAltIP = MibScalar((1, 3, 6, 1, 4, 1, 307, 1, 2, 1, 2, 2), IpAddress()).setMaxAccess("readwrite") if mibBuilder.loadTexts: lucentPMRadiusAltIP.setStatus('mandatory') lucentPMRadiusPriAcctIP = MibScalar((1, 3, 6, 1, 4, 1, 307, 1, 2, 1, 2, 3), IpAddress()).setMaxAccess("readwrite") if mibBuilder.loadTexts: lucentPMRadiusPriAcctIP.setStatus('mandatory') lucentPMRadiusAltAcctIP = MibScalar((1, 3, 6, 1, 4, 1, 307, 1, 2, 1, 2, 4), IpAddress()).setMaxAccess("readwrite") if mibBuilder.loadTexts: lucentPMRadiusAltAcctIP.setStatus('mandatory') lucentPMRadiusPriPort = MibScalar((1, 3, 6, 1, 4, 1, 307, 1, 2, 1, 2, 5), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: lucentPMRadiusPriPort.setStatus('mandatory') lucentPMRadiusAltPort = MibScalar((1, 3, 6, 1, 4, 1, 307, 1, 2, 1, 2, 6), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: lucentPMRadiusAltPort.setStatus('mandatory') lucentPMRadiusPriAcctPort = MibScalar((1, 3, 6, 1, 4, 1, 307, 1, 2, 1, 2, 7), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: lucentPMRadiusPriAcctPort.setStatus('mandatory') lucentPMRadiusAltAcctPort = MibScalar((1, 3, 6, 1, 4, 1, 307, 1, 2, 1, 2, 8), IpAddress()).setMaxAccess("readwrite") if mibBuilder.loadTexts: lucentPMRadiusAltAcctPort.setStatus('mandatory') lucentPMRadiusAuthFails = MibScalar((1, 3, 6, 1, 4, 1, 307, 1, 2, 1, 2, 9), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: lucentPMRadiusAuthFails.setStatus('mandatory') lucentPMRadiusRetrans = MibScalar((1, 3, 6, 1, 4, 1, 307, 1, 2, 1, 2, 10), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: lucentPMRadiusRetrans.setStatus('mandatory') lucentPMRadiusTimeout = MibScalar((1, 3, 6, 1, 4, 1, 307, 1, 2, 1, 2, 11), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: lucentPMRadiusTimeout.setStatus('mandatory') lucentPMRadiusAuth = MibScalar((1, 3, 6, 1, 4, 1, 307, 1, 2, 1, 2, 12), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: lucentPMRadiusAuth.setStatus('mandatory') lucentPMRadiusSecret = MibScalar((1, 3, 6, 1, 4, 1, 307, 1, 2, 1, 2, 13), OctetString().subtype(subtypeSpec=ValueSizeConstraint(1, 15))).setMaxAccess("writeonly") if mibBuilder.loadTexts: lucentPMRadiusSecret.setStatus('mandatory') lucentPMChoiceNetMgmt = MibIdentifier((1, 3, 6, 1, 4, 1, 307, 1, 2, 1, 3)) lucentPMChoiceNetPriIP = MibScalar((1, 3, 6, 1, 4, 1, 307, 1, 2, 1, 3, 1), IpAddress()).setMaxAccess("readwrite") if mibBuilder.loadTexts: lucentPMChoiceNetPriIP.setStatus('mandatory') lucentPMChoiceNetAltIP = MibScalar((1, 3, 6, 1, 4, 1, 307, 1, 2, 1, 3, 2), IpAddress()).setMaxAccess("readwrite") if mibBuilder.loadTexts: lucentPMChoiceNetAltIP.setStatus('mandatory') lucentPMChoiceNetPriPort = MibScalar((1, 3, 6, 1, 4, 1, 307, 1, 2, 1, 3, 3), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: lucentPMChoiceNetPriPort.setStatus('mandatory') lucentPMChoiceNetAltPort = MibScalar((1, 3, 6, 1, 4, 1, 307, 1, 2, 1, 3, 4), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: lucentPMChoiceNetAltPort.setStatus('mandatory') lucentPMChoiceNetSecret = MibScalar((1, 3, 6, 1, 4, 1, 307, 1, 2, 1, 3, 5), OctetString().subtype(subtypeSpec=ValueSizeConstraint(1, 15))).setMaxAccess("writeonly") if mibBuilder.loadTexts: lucentPMChoiceNetSecret.setStatus('mandatory') mibBuilder.exportSymbols("LIVINGSTON-PM-GLOBAL-MIB", lucentPMGenAltNameSrvr=lucentPMGenAltNameSrvr, lucentPMChoiceNetPriPort=lucentPMChoiceNetPriPort, lucentPMRadiusTimeout=lucentPMRadiusTimeout, lucentPMGlobal=lucentPMGlobal, lucentPMRadiusPriPort=lucentPMRadiusPriPort, lucentPMRadiusPriAcctIP=lucentPMRadiusPriAcctIP, lucentPMRadiusMgmt=lucentPMRadiusMgmt, lucentPMGenMaxConsConn=lucentPMGenMaxConsConn, lucentPMRadiusAltAcctIP=lucentPMRadiusAltAcctIP, lucentPMRadiusPriAcctPort=lucentPMRadiusPriAcctPort, lucentPMRadiusRetrans=lucentPMRadiusRetrans, lucentPMRadiusAltIP=lucentPMRadiusAltIP, lucentPMGenIPX=lucentPMGenIPX, lucentPMGenCallCheck=lucentPMGenCallCheck, lucentPMChoiceNetSecret=lucentPMChoiceNetSecret, lucentPMRadiusAuthFails=lucentPMRadiusAuthFails, lucentPMGenGlobParams=lucentPMGenGlobParams, lucentPMRadiusSecret=lucentPMRadiusSecret, lucentPMGenTelnetPortNum=lucentPMGenTelnetPortNum, lucentPMChoiceNetAltIP=lucentPMChoiceNetAltIP, lucentPMGenReportedAddr=lucentPMGenReportedAddr, lucentPMGenNetMask=lucentPMGenNetMask, lucentPMGenOSPF=lucentPMGenOSPF, lucentPMGenNetBIOS=lucentPMGenNetBIOS, lucentPMGenDomainName=lucentPMGenDomainName, lucentPMGenAssignedAddr=lucentPMGenAssignedAddr, lucentPMChoiceNetAltPort=lucentPMChoiceNetAltPort, lucentPMGenPriNameSrvr=lucentPMGenPriNameSrvr, lucentPMRadiusPriIP=lucentPMRadiusPriIP, lucentPMGenSyslogHost=lucentPMGenSyslogHost, lucentPMRadiusAltAcctPort=lucentPMRadiusAltAcctPort, lucentPMRadiusAltPort=lucentPMRadiusAltPort, lucentPMGenNameSvc=lucentPMGenNameSvc, lucentPMChoiceNetMgmt=lucentPMChoiceNetMgmt, lucentPMChoiceNetPriIP=lucentPMChoiceNetPriIP, lucentPMGenBGP=lucentPMGenBGP, lucentPMRadiusAuth=lucentPMRadiusAuth)
(octet_string, object_identifier, integer) = mibBuilder.importSymbols('ASN1', 'OctetString', 'ObjectIdentifier', 'Integer') (named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues') (constraints_union, single_value_constraint, constraints_intersection, value_range_constraint, value_size_constraint) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'ConstraintsUnion', 'SingleValueConstraint', 'ConstraintsIntersection', 'ValueRangeConstraint', 'ValueSizeConstraint') (lucent_pm_mib,) = mibBuilder.importSymbols('LIVINGSTON-ROOT-MIB', 'lucentPMMib') (notification_group, module_compliance) = mibBuilder.importSymbols('SNMPv2-CONF', 'NotificationGroup', 'ModuleCompliance') (object_identity, mib_identifier, mib_scalar, mib_table, mib_table_row, mib_table_column, notification_type, time_ticks, iso, bits, gauge32, counter32, integer32, counter64, notification_type, ip_address, unsigned32, module_identity) = mibBuilder.importSymbols('SNMPv2-SMI', 'ObjectIdentity', 'MibIdentifier', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn', 'NotificationType', 'TimeTicks', 'iso', 'Bits', 'Gauge32', 'Counter32', 'Integer32', 'Counter64', 'NotificationType', 'IpAddress', 'Unsigned32', 'ModuleIdentity') (textual_convention, display_string) = mibBuilder.importSymbols('SNMPv2-TC', 'TextualConvention', 'DisplayString') lucent_pm_global = mib_identifier((1, 3, 6, 1, 4, 1, 307, 1, 2, 1)) lucent_pm_gen_glob_params = mib_identifier((1, 3, 6, 1, 4, 1, 307, 1, 2, 1, 1)) lucent_pm_gen_pri_name_srvr = mib_scalar((1, 3, 6, 1, 4, 1, 307, 1, 2, 1, 1, 1), ip_address()).setMaxAccess('readwrite') if mibBuilder.loadTexts: lucentPMGenPriNameSrvr.setStatus('mandatory') lucent_pm_gen_alt_name_srvr = mib_scalar((1, 3, 6, 1, 4, 1, 307, 1, 2, 1, 1, 3), ip_address()).setMaxAccess('readwrite') if mibBuilder.loadTexts: lucentPMGenAltNameSrvr.setStatus('mandatory') lucent_pm_gen_syslog_host = mib_scalar((1, 3, 6, 1, 4, 1, 307, 1, 2, 1, 1, 4), ip_address()).setMaxAccess('readwrite') if mibBuilder.loadTexts: lucentPMGenSyslogHost.setStatus('mandatory') lucent_pm_gen_assigned_addr = mib_scalar((1, 3, 6, 1, 4, 1, 307, 1, 2, 1, 1, 5), ip_address()).setMaxAccess('readwrite') if mibBuilder.loadTexts: lucentPMGenAssignedAddr.setStatus('mandatory') lucent_pm_gen_reported_addr = mib_scalar((1, 3, 6, 1, 4, 1, 307, 1, 2, 1, 1, 6), ip_address()).setMaxAccess('readwrite') if mibBuilder.loadTexts: lucentPMGenReportedAddr.setStatus('mandatory') lucent_pm_gen_net_mask = mib_scalar((1, 3, 6, 1, 4, 1, 307, 1, 2, 1, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('disable', 1), ('enable', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: lucentPMGenNetMask.setStatus('mandatory') lucent_pm_gen_name_svc = mib_scalar((1, 3, 6, 1, 4, 1, 307, 1, 2, 1, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('none', 1), ('dns', 2), ('nis', 3)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: lucentPMGenNameSvc.setStatus('mandatory') lucent_pm_gen_domain_name = mib_scalar((1, 3, 6, 1, 4, 1, 307, 1, 2, 1, 1, 9), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: lucentPMGenDomainName.setStatus('mandatory') lucent_pm_gen_telnet_port_num = mib_scalar((1, 3, 6, 1, 4, 1, 307, 1, 2, 1, 1, 10), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: lucentPMGenTelnetPortNum.setStatus('mandatory') lucent_pm_gen_max_cons_conn = mib_scalar((1, 3, 6, 1, 4, 1, 307, 1, 2, 1, 1, 11), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: lucentPMGenMaxConsConn.setStatus('mandatory') lucent_pm_gen_ospf = mib_scalar((1, 3, 6, 1, 4, 1, 307, 1, 2, 1, 1, 12), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('disable', 1), ('enable', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: lucentPMGenOSPF.setStatus('mandatory') lucent_pm_gen_bgp = mib_scalar((1, 3, 6, 1, 4, 1, 307, 1, 2, 1, 1, 13), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('disable', 1), ('enable', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: lucentPMGenBGP.setStatus('mandatory') lucent_pm_gen_ipx = mib_scalar((1, 3, 6, 1, 4, 1, 307, 1, 2, 1, 1, 14), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('disable', 1), ('enable', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: lucentPMGenIPX.setStatus('mandatory') lucent_pm_gen_net_bios = mib_scalar((1, 3, 6, 1, 4, 1, 307, 1, 2, 1, 1, 15), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('disable', 1), ('enable', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: lucentPMGenNetBIOS.setStatus('mandatory') lucent_pm_gen_call_check = mib_scalar((1, 3, 6, 1, 4, 1, 307, 1, 2, 1, 1, 16), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('disable', 1), ('enable', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: lucentPMGenCallCheck.setStatus('mandatory') lucent_pm_radius_mgmt = mib_identifier((1, 3, 6, 1, 4, 1, 307, 1, 2, 1, 2)) lucent_pm_radius_pri_ip = mib_scalar((1, 3, 6, 1, 4, 1, 307, 1, 2, 1, 2, 1), ip_address()).setMaxAccess('readwrite') if mibBuilder.loadTexts: lucentPMRadiusPriIP.setStatus('mandatory') lucent_pm_radius_alt_ip = mib_scalar((1, 3, 6, 1, 4, 1, 307, 1, 2, 1, 2, 2), ip_address()).setMaxAccess('readwrite') if mibBuilder.loadTexts: lucentPMRadiusAltIP.setStatus('mandatory') lucent_pm_radius_pri_acct_ip = mib_scalar((1, 3, 6, 1, 4, 1, 307, 1, 2, 1, 2, 3), ip_address()).setMaxAccess('readwrite') if mibBuilder.loadTexts: lucentPMRadiusPriAcctIP.setStatus('mandatory') lucent_pm_radius_alt_acct_ip = mib_scalar((1, 3, 6, 1, 4, 1, 307, 1, 2, 1, 2, 4), ip_address()).setMaxAccess('readwrite') if mibBuilder.loadTexts: lucentPMRadiusAltAcctIP.setStatus('mandatory') lucent_pm_radius_pri_port = mib_scalar((1, 3, 6, 1, 4, 1, 307, 1, 2, 1, 2, 5), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: lucentPMRadiusPriPort.setStatus('mandatory') lucent_pm_radius_alt_port = mib_scalar((1, 3, 6, 1, 4, 1, 307, 1, 2, 1, 2, 6), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: lucentPMRadiusAltPort.setStatus('mandatory') lucent_pm_radius_pri_acct_port = mib_scalar((1, 3, 6, 1, 4, 1, 307, 1, 2, 1, 2, 7), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: lucentPMRadiusPriAcctPort.setStatus('mandatory') lucent_pm_radius_alt_acct_port = mib_scalar((1, 3, 6, 1, 4, 1, 307, 1, 2, 1, 2, 8), ip_address()).setMaxAccess('readwrite') if mibBuilder.loadTexts: lucentPMRadiusAltAcctPort.setStatus('mandatory') lucent_pm_radius_auth_fails = mib_scalar((1, 3, 6, 1, 4, 1, 307, 1, 2, 1, 2, 9), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: lucentPMRadiusAuthFails.setStatus('mandatory') lucent_pm_radius_retrans = mib_scalar((1, 3, 6, 1, 4, 1, 307, 1, 2, 1, 2, 10), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: lucentPMRadiusRetrans.setStatus('mandatory') lucent_pm_radius_timeout = mib_scalar((1, 3, 6, 1, 4, 1, 307, 1, 2, 1, 2, 11), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: lucentPMRadiusTimeout.setStatus('mandatory') lucent_pm_radius_auth = mib_scalar((1, 3, 6, 1, 4, 1, 307, 1, 2, 1, 2, 12), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: lucentPMRadiusAuth.setStatus('mandatory') lucent_pm_radius_secret = mib_scalar((1, 3, 6, 1, 4, 1, 307, 1, 2, 1, 2, 13), octet_string().subtype(subtypeSpec=value_size_constraint(1, 15))).setMaxAccess('writeonly') if mibBuilder.loadTexts: lucentPMRadiusSecret.setStatus('mandatory') lucent_pm_choice_net_mgmt = mib_identifier((1, 3, 6, 1, 4, 1, 307, 1, 2, 1, 3)) lucent_pm_choice_net_pri_ip = mib_scalar((1, 3, 6, 1, 4, 1, 307, 1, 2, 1, 3, 1), ip_address()).setMaxAccess('readwrite') if mibBuilder.loadTexts: lucentPMChoiceNetPriIP.setStatus('mandatory') lucent_pm_choice_net_alt_ip = mib_scalar((1, 3, 6, 1, 4, 1, 307, 1, 2, 1, 3, 2), ip_address()).setMaxAccess('readwrite') if mibBuilder.loadTexts: lucentPMChoiceNetAltIP.setStatus('mandatory') lucent_pm_choice_net_pri_port = mib_scalar((1, 3, 6, 1, 4, 1, 307, 1, 2, 1, 3, 3), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: lucentPMChoiceNetPriPort.setStatus('mandatory') lucent_pm_choice_net_alt_port = mib_scalar((1, 3, 6, 1, 4, 1, 307, 1, 2, 1, 3, 4), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: lucentPMChoiceNetAltPort.setStatus('mandatory') lucent_pm_choice_net_secret = mib_scalar((1, 3, 6, 1, 4, 1, 307, 1, 2, 1, 3, 5), octet_string().subtype(subtypeSpec=value_size_constraint(1, 15))).setMaxAccess('writeonly') if mibBuilder.loadTexts: lucentPMChoiceNetSecret.setStatus('mandatory') mibBuilder.exportSymbols('LIVINGSTON-PM-GLOBAL-MIB', lucentPMGenAltNameSrvr=lucentPMGenAltNameSrvr, lucentPMChoiceNetPriPort=lucentPMChoiceNetPriPort, lucentPMRadiusTimeout=lucentPMRadiusTimeout, lucentPMGlobal=lucentPMGlobal, lucentPMRadiusPriPort=lucentPMRadiusPriPort, lucentPMRadiusPriAcctIP=lucentPMRadiusPriAcctIP, lucentPMRadiusMgmt=lucentPMRadiusMgmt, lucentPMGenMaxConsConn=lucentPMGenMaxConsConn, lucentPMRadiusAltAcctIP=lucentPMRadiusAltAcctIP, lucentPMRadiusPriAcctPort=lucentPMRadiusPriAcctPort, lucentPMRadiusRetrans=lucentPMRadiusRetrans, lucentPMRadiusAltIP=lucentPMRadiusAltIP, lucentPMGenIPX=lucentPMGenIPX, lucentPMGenCallCheck=lucentPMGenCallCheck, lucentPMChoiceNetSecret=lucentPMChoiceNetSecret, lucentPMRadiusAuthFails=lucentPMRadiusAuthFails, lucentPMGenGlobParams=lucentPMGenGlobParams, lucentPMRadiusSecret=lucentPMRadiusSecret, lucentPMGenTelnetPortNum=lucentPMGenTelnetPortNum, lucentPMChoiceNetAltIP=lucentPMChoiceNetAltIP, lucentPMGenReportedAddr=lucentPMGenReportedAddr, lucentPMGenNetMask=lucentPMGenNetMask, lucentPMGenOSPF=lucentPMGenOSPF, lucentPMGenNetBIOS=lucentPMGenNetBIOS, lucentPMGenDomainName=lucentPMGenDomainName, lucentPMGenAssignedAddr=lucentPMGenAssignedAddr, lucentPMChoiceNetAltPort=lucentPMChoiceNetAltPort, lucentPMGenPriNameSrvr=lucentPMGenPriNameSrvr, lucentPMRadiusPriIP=lucentPMRadiusPriIP, lucentPMGenSyslogHost=lucentPMGenSyslogHost, lucentPMRadiusAltAcctPort=lucentPMRadiusAltAcctPort, lucentPMRadiusAltPort=lucentPMRadiusAltPort, lucentPMGenNameSvc=lucentPMGenNameSvc, lucentPMChoiceNetMgmt=lucentPMChoiceNetMgmt, lucentPMChoiceNetPriIP=lucentPMChoiceNetPriIP, lucentPMGenBGP=lucentPMGenBGP, lucentPMRadiusAuth=lucentPMRadiusAuth)
class HashTable(object): """A hash table is a data structure that can map keys to values. The mapping between an item and the slot where that item belongs is called the hash function. In practice there can be hash collisions when the hash function generates the same index for more than one key. This has to be managed. In python hash tables are implemented as `dict`, to solve collisions they use __eq__. Time complexity: search, insert, delete: O(1) Space complexity: O(n) source: http://interactivepython.org/runestone/static/pythonds/SortSearch/Hashing.html#implementing-the-map-abstract-data-type Args: size (int): Size of the hash table. Examples: >>> H=HashTable(5) >>> H[54]="cat" >>> H[26]="dog" >>> H[93]="lion" >>> H.slots [None, 26, None, 93, 54] >>> H.data [None, 'dog', None, 'lion', 'cat'] >>> H[26] = 'duck' >>> H.data [None, 'duck', None, 'lion', 'cat'] """ def __init__(self, size): self.size = size self.slots = [None] * self.size self.data = [None] * self.size def put(self, key, data): """Add a key and value.""" hashvalue = self.hashfunction(key, len(self.slots)) if self.slots[hashvalue] is None: self.slots[hashvalue] = key self.data[hashvalue] = data else: if self.slots[hashvalue] == key: self.data[hashvalue] = data # replace else: nextslot = self.rehash(hashvalue, len(self.slots)) while self.slots[nextslot] is not None and self.slots[nextslot] != key: nextslot = self.rehash(nextslot, len(self.slots)) if self.slots[nextslot] is None: self.slots[nextslot] = key self.data[nextslot] = data else: self.data[nextslot] = data # replace def hashfunction(self, key, size): """The hash function is a simple remainder method.""" return key % size def rehash(self, oldhash, size): """The collision resolution technique is linear probing with a "plus 1" rehash function. Linear probing is looking sequentially for the next open slot""" return (oldhash + 1) % size def get(self, key): """Return the value of a key.""" startslot = self.hashfunction(key, len(self.slots)) data = None stop = False found = False position = startslot while self.slots[position] is not None and not found and not stop: if self.slots[position] == key: found = True data = self.data[position] else: position = self.rehash(position, len(self.slots)) if position == startslot: stop = True return data def __getitem__(self, key): return self.get(key) def __setitem__(self, key, data): self.put(key, data)
class Hashtable(object): """A hash table is a data structure that can map keys to values. The mapping between an item and the slot where that item belongs is called the hash function. In practice there can be hash collisions when the hash function generates the same index for more than one key. This has to be managed. In python hash tables are implemented as `dict`, to solve collisions they use __eq__. Time complexity: search, insert, delete: O(1) Space complexity: O(n) source: http://interactivepython.org/runestone/static/pythonds/SortSearch/Hashing.html#implementing-the-map-abstract-data-type Args: size (int): Size of the hash table. Examples: >>> H=HashTable(5) >>> H[54]="cat" >>> H[26]="dog" >>> H[93]="lion" >>> H.slots [None, 26, None, 93, 54] >>> H.data [None, 'dog', None, 'lion', 'cat'] >>> H[26] = 'duck' >>> H.data [None, 'duck', None, 'lion', 'cat'] """ def __init__(self, size): self.size = size self.slots = [None] * self.size self.data = [None] * self.size def put(self, key, data): """Add a key and value.""" hashvalue = self.hashfunction(key, len(self.slots)) if self.slots[hashvalue] is None: self.slots[hashvalue] = key self.data[hashvalue] = data elif self.slots[hashvalue] == key: self.data[hashvalue] = data else: nextslot = self.rehash(hashvalue, len(self.slots)) while self.slots[nextslot] is not None and self.slots[nextslot] != key: nextslot = self.rehash(nextslot, len(self.slots)) if self.slots[nextslot] is None: self.slots[nextslot] = key self.data[nextslot] = data else: self.data[nextslot] = data def hashfunction(self, key, size): """The hash function is a simple remainder method.""" return key % size def rehash(self, oldhash, size): """The collision resolution technique is linear probing with a "plus 1" rehash function. Linear probing is looking sequentially for the next open slot""" return (oldhash + 1) % size def get(self, key): """Return the value of a key.""" startslot = self.hashfunction(key, len(self.slots)) data = None stop = False found = False position = startslot while self.slots[position] is not None and (not found) and (not stop): if self.slots[position] == key: found = True data = self.data[position] else: position = self.rehash(position, len(self.slots)) if position == startslot: stop = True return data def __getitem__(self, key): return self.get(key) def __setitem__(self, key, data): self.put(key, data)
# # PySNMP MIB module ONEACCESS-SHDSL-MIB (http://snmplabs.com/pysmi) # ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/ONEACCESS-SHDSL-MIB # Produced by pysmi-0.3.4 at Mon Apr 29 20:25:23 2019 # On host DAVWANG4-M-1475 platform Darwin version 18.5.0 by user davwang4 # Using Python version 3.7.3 (default, Mar 27 2019, 09:23:15) # ObjectIdentifier, OctetString, Integer = mibBuilder.importSymbols("ASN1", "ObjectIdentifier", "OctetString", "Integer") NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues") ConstraintsUnion, ValueSizeConstraint, ConstraintsIntersection, ValueRangeConstraint, SingleValueConstraint = mibBuilder.importSymbols("ASN1-REFINEMENT", "ConstraintsUnion", "ValueSizeConstraint", "ConstraintsIntersection", "ValueRangeConstraint", "SingleValueConstraint") hdsl2ShdslSpanConfProfileEntry, hdsl2ShdslEndpointCurrEntry, hdsl2ShdslSpanStatusEntry = mibBuilder.importSymbols("HDSL2-SHDSL-LINE-MIB", "hdsl2ShdslSpanConfProfileEntry", "hdsl2ShdslEndpointCurrEntry", "hdsl2ShdslSpanStatusEntry") ifIndex, = mibBuilder.importSymbols("IF-MIB", "ifIndex") oacExpIMSystem, = mibBuilder.importSymbols("ONEACCESS-GLOBAL-REG", "oacExpIMSystem") ModuleCompliance, NotificationGroup = mibBuilder.importSymbols("SNMPv2-CONF", "ModuleCompliance", "NotificationGroup") TimeTicks, iso, Gauge32, MibScalar, MibTable, MibTableRow, MibTableColumn, MibIdentifier, Counter64, Integer32, NotificationType, Bits, Unsigned32, ObjectIdentity, ModuleIdentity, IpAddress, Counter32 = mibBuilder.importSymbols("SNMPv2-SMI", "TimeTicks", "iso", "Gauge32", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "MibIdentifier", "Counter64", "Integer32", "NotificationType", "Bits", "Unsigned32", "ObjectIdentity", "ModuleIdentity", "IpAddress", "Counter32") TextualConvention, DisplayString = mibBuilder.importSymbols("SNMPv2-TC", "TextualConvention", "DisplayString") oacSHDSLMIBModule = ModuleIdentity((1, 3, 6, 1, 4, 1, 13191, 10, 3, 3, 3)) oacSHDSLMIBModule.setRevisions(('2011-06-15 00:00', '2010-08-20 00:01', '2010-07-30 00:01', '2010-07-08 00:01',)) if mibBuilder.loadTexts: oacSHDSLMIBModule.setLastUpdated('201106150000Z') if mibBuilder.loadTexts: oacSHDSLMIBModule.setOrganization(' OneAccess ') oacSHDSLObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 13191, 10, 3, 3, 3, 1)) oacSHDSLSpanStatusTable = MibTable((1, 3, 6, 1, 4, 1, 13191, 10, 3, 3, 3, 1, 2), ) if mibBuilder.loadTexts: oacSHDSLSpanStatusTable.setStatus('current') oacSHDSLSpanStatusEntry = MibTableRow((1, 3, 6, 1, 4, 1, 13191, 10, 3, 3, 3, 1, 2, 1), ) hdsl2ShdslSpanStatusEntry.registerAugmentions(("ONEACCESS-SHDSL-MIB", "oacSHDSLSpanStatusEntry")) oacSHDSLSpanStatusEntry.setIndexNames(*hdsl2ShdslSpanStatusEntry.getIndexNames()) if mibBuilder.loadTexts: oacSHDSLSpanStatusEntry.setStatus('current') oacSHDSLSpanStatusUpDown = MibTableColumn((1, 3, 6, 1, 4, 1, 13191, 10, 3, 3, 3, 1, 2, 1, 1), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: oacSHDSLSpanStatusUpDown.setStatus('current') oacSHDSLSpanStatusCurrStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 13191, 10, 3, 3, 3, 1, 2, 1, 2), OctetString().subtype(subtypeSpec=ValueSizeConstraint(30, 30)).setFixedLength(30)).setMaxAccess("readonly") if mibBuilder.loadTexts: oacSHDSLSpanStatusCurrStatus.setStatus('current') oacSHDSLSpanStatusCurrShowtimeStart = MibTableColumn((1, 3, 6, 1, 4, 1, 13191, 10, 3, 3, 3, 1, 2, 1, 3), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: oacSHDSLSpanStatusCurrShowtimeStart.setStatus('current') oacSHDSLSpanStatusCurrCellDelin = MibTableColumn((1, 3, 6, 1, 4, 1, 13191, 10, 3, 3, 3, 1, 2, 1, 4), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: oacSHDSLSpanStatusCurrCellDelin.setStatus('current') oacSHDSLSpanStatusCurrCRCanomalies = MibTableColumn((1, 3, 6, 1, 4, 1, 13191, 10, 3, 3, 3, 1, 2, 1, 5), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: oacSHDSLSpanStatusCurrCRCanomalies.setStatus('current') oacSHDSLSpanStatusCurrHECErrors = MibTableColumn((1, 3, 6, 1, 4, 1, 13191, 10, 3, 3, 3, 1, 2, 1, 6), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: oacSHDSLSpanStatusCurrHECErrors.setStatus('current') oacSHDSLSpanStatusCurrRxCells = MibTableColumn((1, 3, 6, 1, 4, 1, 13191, 10, 3, 3, 3, 1, 2, 1, 7), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: oacSHDSLSpanStatusCurrRxCells.setStatus('current') oacSHDSLSpanStatusCurrTxCells = MibTableColumn((1, 3, 6, 1, 4, 1, 13191, 10, 3, 3, 3, 1, 2, 1, 8), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: oacSHDSLSpanStatusCurrTxCells.setStatus('current') oacSHDSLSpanStatusCurrRxDrops = MibTableColumn((1, 3, 6, 1, 4, 1, 13191, 10, 3, 3, 3, 1, 2, 1, 9), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: oacSHDSLSpanStatusCurrRxDrops.setStatus('current') oacSHDSLSpanStatusCurrES = MibTableColumn((1, 3, 6, 1, 4, 1, 13191, 10, 3, 3, 3, 1, 2, 1, 10), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: oacSHDSLSpanStatusCurrES.setStatus('current') oacSHDSLSpanStatusCurrSES = MibTableColumn((1, 3, 6, 1, 4, 1, 13191, 10, 3, 3, 3, 1, 2, 1, 11), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: oacSHDSLSpanStatusCurrSES.setStatus('current') oacSHDSLSpanStatusCurrLOSWS = MibTableColumn((1, 3, 6, 1, 4, 1, 13191, 10, 3, 3, 3, 1, 2, 1, 12), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: oacSHDSLSpanStatusCurrLOSWS.setStatus('current') oacSHDSLSpanStatusCurrUAS = MibTableColumn((1, 3, 6, 1, 4, 1, 13191, 10, 3, 3, 3, 1, 2, 1, 13), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: oacSHDSLSpanStatusCurrUAS.setStatus('current') oacSHDSLSpanStatusCurrConstellation = MibTableColumn((1, 3, 6, 1, 4, 1, 13191, 10, 3, 3, 3, 1, 2, 1, 14), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(2, 3))).clone(namedValues=NamedValues(("tcPam16", 2), ("tcPam32", 3)))).setMaxAccess("readonly") if mibBuilder.loadTexts: oacSHDSLSpanStatusCurrConstellation.setStatus('current') oacSHDSLEndpointCurrTable = MibTable((1, 3, 6, 1, 4, 1, 13191, 10, 3, 3, 3, 1, 5), ) if mibBuilder.loadTexts: oacSHDSLEndpointCurrTable.setStatus('current') oacSHDSLEndpointCurrEntry = MibTableRow((1, 3, 6, 1, 4, 1, 13191, 10, 3, 3, 3, 1, 5, 1), ) hdsl2ShdslEndpointCurrEntry.registerAugmentions(("ONEACCESS-SHDSL-MIB", "oacSHDSLEndpointCurrEntry")) oacSHDSLEndpointCurrEntry.setIndexNames(*hdsl2ShdslEndpointCurrEntry.getIndexNames()) if mibBuilder.loadTexts: oacSHDSLEndpointCurrEntry.setStatus('current') oacSHDSLEndpointCurrAtn = MibTableColumn((1, 3, 6, 1, 4, 1, 13191, 10, 3, 3, 3, 1, 5, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(-1270, 1280))).setUnits('dB/10').setMaxAccess("readonly") if mibBuilder.loadTexts: oacSHDSLEndpointCurrAtn.setStatus('current') oacSHDSLEndpointCurrSnrMgn = MibTableColumn((1, 3, 6, 1, 4, 1, 13191, 10, 3, 3, 3, 1, 5, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(-1270, 1280))).setUnits('dB/10').setMaxAccess("readonly") if mibBuilder.loadTexts: oacSHDSLEndpointCurrSnrMgn.setStatus('current') oacSHDSLEndpointCurrTxPwr = MibTableColumn((1, 3, 6, 1, 4, 1, 13191, 10, 3, 3, 3, 1, 5, 1, 3), Integer32()).setUnits('dB/10').setMaxAccess("readonly") if mibBuilder.loadTexts: oacSHDSLEndpointCurrTxPwr.setStatus('current') oacSHDSLEndpointCurrRxGain = MibTableColumn((1, 3, 6, 1, 4, 1, 13191, 10, 3, 3, 3, 1, 5, 1, 4), Integer32()).setUnits('dB/10').setMaxAccess("readonly") if mibBuilder.loadTexts: oacSHDSLEndpointCurrRxGain.setStatus('current') oacSHDSLEndpointCurrMaxAttainableLineRate = MibTableColumn((1, 3, 6, 1, 4, 1, 13191, 10, 3, 3, 3, 1, 5, 1, 5), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: oacSHDSLEndpointCurrMaxAttainableLineRate.setStatus('current') oacSHDSLEndpointCurrCommands = MibTableColumn((1, 3, 6, 1, 4, 1, 13191, 10, 3, 3, 3, 1, 5, 1, 6), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: oacSHDSLEndpointCurrCommands.setStatus('current') oacSHDSLEndpointCurrResponses = MibTableColumn((1, 3, 6, 1, 4, 1, 13191, 10, 3, 3, 3, 1, 5, 1, 7), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: oacSHDSLEndpointCurrResponses.setStatus('current') oacSHDSLEndpointCurrdiscardedCommands = MibTableColumn((1, 3, 6, 1, 4, 1, 13191, 10, 3, 3, 3, 1, 5, 1, 8), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: oacSHDSLEndpointCurrdiscardedCommands.setStatus('current') oacSHDSLEndpointCurrerroredCommands = MibTableColumn((1, 3, 6, 1, 4, 1, 13191, 10, 3, 3, 3, 1, 5, 1, 9), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: oacSHDSLEndpointCurrerroredCommands.setStatus('current') oacSHDSLEndpointCurrReceivedFrames = MibTableColumn((1, 3, 6, 1, 4, 1, 13191, 10, 3, 3, 3, 1, 5, 1, 10), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: oacSHDSLEndpointCurrReceivedFrames.setStatus('current') oacSHDSLEndpointCurrBadTransparency = MibTableColumn((1, 3, 6, 1, 4, 1, 13191, 10, 3, 3, 3, 1, 5, 1, 11), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: oacSHDSLEndpointCurrBadTransparency.setStatus('current') oacSHDSLEndpointCurrBadFCS = MibTableColumn((1, 3, 6, 1, 4, 1, 13191, 10, 3, 3, 3, 1, 5, 1, 12), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: oacSHDSLEndpointCurrBadFCS.setStatus('current') oacSHDSLEndpointCurrEOCStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 13191, 10, 3, 3, 3, 1, 5, 1, 13), OctetString().subtype(subtypeSpec=ValueSizeConstraint(50, 50)).setFixedLength(50)).setMaxAccess("readonly") if mibBuilder.loadTexts: oacSHDSLEndpointCurrEOCStatus.setStatus('current') oacSHDSLEndpointCurrretrainTable = MibTable((1, 3, 6, 1, 4, 1, 13191, 10, 3, 3, 3, 1, 7), ) if mibBuilder.loadTexts: oacSHDSLEndpointCurrretrainTable.setStatus('current') oacSHDSLEndpointCurrretrainEntry = MibTableRow((1, 3, 6, 1, 4, 1, 13191, 10, 3, 3, 3, 1, 7, 1), ) hdsl2ShdslEndpointCurrEntry.registerAugmentions(("ONEACCESS-SHDSL-MIB", "oacSHDSLEndpointCurrretrainEntry")) oacSHDSLEndpointCurrretrainEntry.setIndexNames(*hdsl2ShdslEndpointCurrEntry.getIndexNames()) if mibBuilder.loadTexts: oacSHDSLEndpointCurrretrainEntry.setStatus('current') oacSHDSLEndpointCurrretrainSQPAIR = MibTableColumn((1, 3, 6, 1, 4, 1, 13191, 10, 3, 3, 3, 1, 7, 1, 1), Integer32()).setUnits('SQPAIR').setMaxAccess("readonly") if mibBuilder.loadTexts: oacSHDSLEndpointCurrretrainSQPAIR.setStatus('current') oacSHDSLEndpointCurrretrainSQLINE = MibTableColumn((1, 3, 6, 1, 4, 1, 13191, 10, 3, 3, 3, 1, 7, 1, 2), Integer32()).setUnits('SQLINE').setMaxAccess("readonly") if mibBuilder.loadTexts: oacSHDSLEndpointCurrretrainSQLINE.setStatus('current') oacSHDSLEndpointCurrretrainCRCPAIR = MibTableColumn((1, 3, 6, 1, 4, 1, 13191, 10, 3, 3, 3, 1, 7, 1, 3), Integer32()).setUnits('CRCPAIR').setMaxAccess("readonly") if mibBuilder.loadTexts: oacSHDSLEndpointCurrretrainCRCPAIR.setStatus('current') oacSHDSLEndpointCurrretrainCRCLINE = MibTableColumn((1, 3, 6, 1, 4, 1, 13191, 10, 3, 3, 3, 1, 7, 1, 4), Integer32()).setUnits('CRCLINE').setMaxAccess("readonly") if mibBuilder.loadTexts: oacSHDSLEndpointCurrretrainCRCLINE.setStatus('current') oacSHDSLEndpointCurrretrainFsyncPAIR = MibTableColumn((1, 3, 6, 1, 4, 1, 13191, 10, 3, 3, 3, 1, 7, 1, 5), Integer32()).setUnits('FsyncPAIR').setMaxAccess("readonly") if mibBuilder.loadTexts: oacSHDSLEndpointCurrretrainFsyncPAIR.setStatus('current') oacSHDSLEndpointCurrretrainFsyncLINE = MibTableColumn((1, 3, 6, 1, 4, 1, 13191, 10, 3, 3, 3, 1, 7, 1, 6), Integer32()).setUnits('FsyncLINE').setMaxAccess("readonly") if mibBuilder.loadTexts: oacSHDSLEndpointCurrretrainFsyncLINE.setStatus('current') oacSHDSLEndpointCurrretrainFSyncSQPAIR = MibTableColumn((1, 3, 6, 1, 4, 1, 13191, 10, 3, 3, 3, 1, 7, 1, 7), Integer32()).setUnits('FSync&SQPAIR').setMaxAccess("readonly") if mibBuilder.loadTexts: oacSHDSLEndpointCurrretrainFSyncSQPAIR.setStatus('current') oacSHDSLEndpointCurrretrainFSyncSQLINE = MibTableColumn((1, 3, 6, 1, 4, 1, 13191, 10, 3, 3, 3, 1, 7, 1, 8), Integer32()).setUnits('FSync&SQLINE').setMaxAccess("readonly") if mibBuilder.loadTexts: oacSHDSLEndpointCurrretrainFSyncSQLINE.setStatus('current') oacSHDSLTraps = MibIdentifier((1, 3, 6, 1, 4, 1, 13191, 10, 3, 3, 3, 2)) oacSHDSLTrapPrefix = MibIdentifier((1, 3, 6, 1, 4, 1, 13191, 10, 3, 3, 3, 2, 0)) oacSHDSLHardDownTrap = NotificationType((1, 3, 6, 1, 4, 1, 13191, 10, 3, 3, 3, 2, 0, 1)) if mibBuilder.loadTexts: oacSHDSLHardDownTrap.setStatus('current') oacSHDSLSpanConfProfileTable = MibTable((1, 3, 6, 1, 4, 1, 13191, 10, 3, 3, 3, 1, 10), ) if mibBuilder.loadTexts: oacSHDSLSpanConfProfileTable.setStatus('current') oacSHDSLSpanConfProfileEntry = MibTableRow((1, 3, 6, 1, 4, 1, 13191, 10, 3, 3, 3, 1, 10, 1), ) hdsl2ShdslSpanConfProfileEntry.registerAugmentions(("ONEACCESS-SHDSL-MIB", "oacSHDSLSpanConfProfileEntry")) oacSHDSLSpanConfProfileEntry.setIndexNames(*hdsl2ShdslSpanConfProfileEntry.getIndexNames()) if mibBuilder.loadTexts: oacSHDSLSpanConfProfileEntry.setStatus('current') oacSHDSLSpanConfProfileConstellation = MibTableColumn((1, 3, 6, 1, 4, 1, 13191, 10, 3, 3, 3, 1, 10, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("auto", 1), ("tcPam16", 2), ("tcPam32", 3)))).setMaxAccess("readonly") if mibBuilder.loadTexts: oacSHDSLSpanConfProfileConstellation.setStatus('current') oacSHDSLSpanConfProfileAutoConfig = MibTableColumn((1, 3, 6, 1, 4, 1, 13191, 10, 3, 3, 3, 1, 10, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: oacSHDSLSpanConfProfileAutoConfig.setStatus('current') oacSHDSLSpanConfProfileCaplist = MibTableColumn((1, 3, 6, 1, 4, 1, 13191, 10, 3, 3, 3, 1, 10, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("newstyle", 1), ("oldstyle", 2), ("auto", 3)))).setMaxAccess("readonly") if mibBuilder.loadTexts: oacSHDSLSpanConfProfileCaplist.setStatus('current') oacSHDSLSpanConfProfileEfmAggregation = MibTableColumn((1, 3, 6, 1, 4, 1, 13191, 10, 3, 3, 3, 1, 10, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("disabled", 1), ("auto", 2), ("negotiated", 3), ("static", 4)))).setMaxAccess("readonly") if mibBuilder.loadTexts: oacSHDSLSpanConfProfileEfmAggregation.setStatus('current') oacSHDSLSpanConfProfileCrcCheck = MibTableColumn((1, 3, 6, 1, 4, 1, 13191, 10, 3, 3, 3, 1, 10, 1, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 30))).setMaxAccess("readonly") if mibBuilder.loadTexts: oacSHDSLSpanConfProfileCrcCheck.setStatus('current') oacSHDSLSpanConfProfileMeansqCheck = MibTableColumn((1, 3, 6, 1, 4, 1, 13191, 10, 3, 3, 3, 1, 10, 1, 6), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 30))).setMaxAccess("readonly") if mibBuilder.loadTexts: oacSHDSLSpanConfProfileMeansqCheck.setStatus('current') oacSHDSLSpanConfProfileMeansqThreshold = MibTableColumn((1, 3, 6, 1, 4, 1, 13191, 10, 3, 3, 3, 1, 10, 1, 7), Integer32().subtype(subtypeSpec=ValueRangeConstraint(-2, 10))).setMaxAccess("readonly") if mibBuilder.loadTexts: oacSHDSLSpanConfProfileMeansqThreshold.setStatus('current') oacSHDSLSpanConfProfileLineProbing = MibTableColumn((1, 3, 6, 1, 4, 1, 13191, 10, 3, 3, 3, 1, 10, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("adaptive", 1), ("normal", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: oacSHDSLSpanConfProfileLineProbing.setStatus('current') oacSHDSLSpanConfProfileEocManagement = MibTableColumn((1, 3, 6, 1, 4, 1, 13191, 10, 3, 3, 3, 1, 10, 1, 9), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2))).clone('enabled')).setMaxAccess("readwrite") if mibBuilder.loadTexts: oacSHDSLSpanConfProfileEocManagement.setStatus('current') oacSHDSLSpanConfProfileEocStatusPollDelay = MibTableColumn((1, 3, 6, 1, 4, 1, 13191, 10, 3, 3, 3, 1, 10, 1, 10), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 29))).setUnits('seconds').setMaxAccess("readwrite") if mibBuilder.loadTexts: oacSHDSLSpanConfProfileEocStatusPollDelay.setStatus('current') oacSHDSLSpanConfProfileEocStatusPollInterval = MibTableColumn((1, 3, 6, 1, 4, 1, 13191, 10, 3, 3, 3, 1, 10, 1, 11), Integer32().subtype(subtypeSpec=ConstraintsUnion(ValueRangeConstraint(30, 30), ValueRangeConstraint(60, 60), ValueRangeConstraint(90, 90), ValueRangeConstraint(120, 120), )).clone(30)).setUnits('seconds').setMaxAccess("readwrite") if mibBuilder.loadTexts: oacSHDSLSpanConfProfileEocStatusPollInterval.setStatus('current') mibBuilder.exportSymbols("ONEACCESS-SHDSL-MIB", oacSHDSLSpanStatusCurrUAS=oacSHDSLSpanStatusCurrUAS, oacSHDSLEndpointCurrretrainFsyncLINE=oacSHDSLEndpointCurrretrainFsyncLINE, oacSHDSLEndpointCurrTxPwr=oacSHDSLEndpointCurrTxPwr, oacSHDSLEndpointCurrretrainCRCLINE=oacSHDSLEndpointCurrretrainCRCLINE, oacSHDSLTraps=oacSHDSLTraps, oacSHDSLSpanConfProfileMeansqCheck=oacSHDSLSpanConfProfileMeansqCheck, oacSHDSLSpanStatusCurrStatus=oacSHDSLSpanStatusCurrStatus, oacSHDSLSpanConfProfileEocStatusPollDelay=oacSHDSLSpanConfProfileEocStatusPollDelay, oacSHDSLEndpointCurrretrainCRCPAIR=oacSHDSLEndpointCurrretrainCRCPAIR, oacSHDSLSpanConfProfileMeansqThreshold=oacSHDSLSpanConfProfileMeansqThreshold, PYSNMP_MODULE_ID=oacSHDSLMIBModule, oacSHDSLEndpointCurrdiscardedCommands=oacSHDSLEndpointCurrdiscardedCommands, oacSHDSLMIBModule=oacSHDSLMIBModule, oacSHDSLSpanConfProfileConstellation=oacSHDSLSpanConfProfileConstellation, oacSHDSLEndpointCurrretrainEntry=oacSHDSLEndpointCurrretrainEntry, oacSHDSLSpanStatusCurrLOSWS=oacSHDSLSpanStatusCurrLOSWS, oacSHDSLSpanConfProfileEfmAggregation=oacSHDSLSpanConfProfileEfmAggregation, oacSHDSLSpanStatusCurrSES=oacSHDSLSpanStatusCurrSES, oacSHDSLSpanStatusCurrRxDrops=oacSHDSLSpanStatusCurrRxDrops, oacSHDSLEndpointCurrAtn=oacSHDSLEndpointCurrAtn, oacSHDSLTrapPrefix=oacSHDSLTrapPrefix, oacSHDSLSpanConfProfileTable=oacSHDSLSpanConfProfileTable, oacSHDSLEndpointCurrRxGain=oacSHDSLEndpointCurrRxGain, oacSHDSLSpanStatusCurrTxCells=oacSHDSLSpanStatusCurrTxCells, oacSHDSLEndpointCurrResponses=oacSHDSLEndpointCurrResponses, oacSHDSLSpanStatusCurrConstellation=oacSHDSLSpanStatusCurrConstellation, oacSHDSLEndpointCurrretrainFSyncSQLINE=oacSHDSLEndpointCurrretrainFSyncSQLINE, oacSHDSLSpanConfProfileLineProbing=oacSHDSLSpanConfProfileLineProbing, oacSHDSLEndpointCurrTable=oacSHDSLEndpointCurrTable, oacSHDSLSpanConfProfileCrcCheck=oacSHDSLSpanConfProfileCrcCheck, oacSHDSLEndpointCurrSnrMgn=oacSHDSLEndpointCurrSnrMgn, oacSHDSLSpanConfProfileEocStatusPollInterval=oacSHDSLSpanConfProfileEocStatusPollInterval, oacSHDSLEndpointCurrMaxAttainableLineRate=oacSHDSLEndpointCurrMaxAttainableLineRate, oacSHDSLObjects=oacSHDSLObjects, oacSHDSLSpanConfProfileAutoConfig=oacSHDSLSpanConfProfileAutoConfig, oacSHDSLSpanStatusTable=oacSHDSLSpanStatusTable, oacSHDSLEndpointCurrretrainFsyncPAIR=oacSHDSLEndpointCurrretrainFsyncPAIR, oacSHDSLEndpointCurrReceivedFrames=oacSHDSLEndpointCurrReceivedFrames, oacSHDSLSpanConfProfileCaplist=oacSHDSLSpanConfProfileCaplist, oacSHDSLSpanStatusEntry=oacSHDSLSpanStatusEntry, oacSHDSLSpanStatusUpDown=oacSHDSLSpanStatusUpDown, oacSHDSLHardDownTrap=oacSHDSLHardDownTrap, oacSHDSLEndpointCurrretrainTable=oacSHDSLEndpointCurrretrainTable, oacSHDSLSpanConfProfileEntry=oacSHDSLSpanConfProfileEntry, oacSHDSLEndpointCurrEntry=oacSHDSLEndpointCurrEntry, oacSHDSLEndpointCurrBadTransparency=oacSHDSLEndpointCurrBadTransparency, oacSHDSLEndpointCurrBadFCS=oacSHDSLEndpointCurrBadFCS, oacSHDSLSpanStatusCurrRxCells=oacSHDSLSpanStatusCurrRxCells, oacSHDSLEndpointCurrCommands=oacSHDSLEndpointCurrCommands, oacSHDSLEndpointCurrretrainSQLINE=oacSHDSLEndpointCurrretrainSQLINE, oacSHDSLSpanStatusCurrES=oacSHDSLSpanStatusCurrES, oacSHDSLSpanStatusCurrCRCanomalies=oacSHDSLSpanStatusCurrCRCanomalies, oacSHDSLSpanStatusCurrShowtimeStart=oacSHDSLSpanStatusCurrShowtimeStart, oacSHDSLEndpointCurrEOCStatus=oacSHDSLEndpointCurrEOCStatus, oacSHDSLEndpointCurrretrainFSyncSQPAIR=oacSHDSLEndpointCurrretrainFSyncSQPAIR, oacSHDSLSpanStatusCurrHECErrors=oacSHDSLSpanStatusCurrHECErrors, oacSHDSLEndpointCurrerroredCommands=oacSHDSLEndpointCurrerroredCommands, oacSHDSLSpanConfProfileEocManagement=oacSHDSLSpanConfProfileEocManagement, oacSHDSLEndpointCurrretrainSQPAIR=oacSHDSLEndpointCurrretrainSQPAIR, oacSHDSLSpanStatusCurrCellDelin=oacSHDSLSpanStatusCurrCellDelin)
(object_identifier, octet_string, integer) = mibBuilder.importSymbols('ASN1', 'ObjectIdentifier', 'OctetString', 'Integer') (named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues') (constraints_union, value_size_constraint, constraints_intersection, value_range_constraint, single_value_constraint) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'ConstraintsUnion', 'ValueSizeConstraint', 'ConstraintsIntersection', 'ValueRangeConstraint', 'SingleValueConstraint') (hdsl2_shdsl_span_conf_profile_entry, hdsl2_shdsl_endpoint_curr_entry, hdsl2_shdsl_span_status_entry) = mibBuilder.importSymbols('HDSL2-SHDSL-LINE-MIB', 'hdsl2ShdslSpanConfProfileEntry', 'hdsl2ShdslEndpointCurrEntry', 'hdsl2ShdslSpanStatusEntry') (if_index,) = mibBuilder.importSymbols('IF-MIB', 'ifIndex') (oac_exp_im_system,) = mibBuilder.importSymbols('ONEACCESS-GLOBAL-REG', 'oacExpIMSystem') (module_compliance, notification_group) = mibBuilder.importSymbols('SNMPv2-CONF', 'ModuleCompliance', 'NotificationGroup') (time_ticks, iso, gauge32, mib_scalar, mib_table, mib_table_row, mib_table_column, mib_identifier, counter64, integer32, notification_type, bits, unsigned32, object_identity, module_identity, ip_address, counter32) = mibBuilder.importSymbols('SNMPv2-SMI', 'TimeTicks', 'iso', 'Gauge32', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn', 'MibIdentifier', 'Counter64', 'Integer32', 'NotificationType', 'Bits', 'Unsigned32', 'ObjectIdentity', 'ModuleIdentity', 'IpAddress', 'Counter32') (textual_convention, display_string) = mibBuilder.importSymbols('SNMPv2-TC', 'TextualConvention', 'DisplayString') oac_shdslmib_module = module_identity((1, 3, 6, 1, 4, 1, 13191, 10, 3, 3, 3)) oacSHDSLMIBModule.setRevisions(('2011-06-15 00:00', '2010-08-20 00:01', '2010-07-30 00:01', '2010-07-08 00:01')) if mibBuilder.loadTexts: oacSHDSLMIBModule.setLastUpdated('201106150000Z') if mibBuilder.loadTexts: oacSHDSLMIBModule.setOrganization(' OneAccess ') oac_shdsl_objects = mib_identifier((1, 3, 6, 1, 4, 1, 13191, 10, 3, 3, 3, 1)) oac_shdsl_span_status_table = mib_table((1, 3, 6, 1, 4, 1, 13191, 10, 3, 3, 3, 1, 2)) if mibBuilder.loadTexts: oacSHDSLSpanStatusTable.setStatus('current') oac_shdsl_span_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 13191, 10, 3, 3, 3, 1, 2, 1)) hdsl2ShdslSpanStatusEntry.registerAugmentions(('ONEACCESS-SHDSL-MIB', 'oacSHDSLSpanStatusEntry')) oacSHDSLSpanStatusEntry.setIndexNames(*hdsl2ShdslSpanStatusEntry.getIndexNames()) if mibBuilder.loadTexts: oacSHDSLSpanStatusEntry.setStatus('current') oac_shdsl_span_status_up_down = mib_table_column((1, 3, 6, 1, 4, 1, 13191, 10, 3, 3, 3, 1, 2, 1, 1), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: oacSHDSLSpanStatusUpDown.setStatus('current') oac_shdsl_span_status_curr_status = mib_table_column((1, 3, 6, 1, 4, 1, 13191, 10, 3, 3, 3, 1, 2, 1, 2), octet_string().subtype(subtypeSpec=value_size_constraint(30, 30)).setFixedLength(30)).setMaxAccess('readonly') if mibBuilder.loadTexts: oacSHDSLSpanStatusCurrStatus.setStatus('current') oac_shdsl_span_status_curr_showtime_start = mib_table_column((1, 3, 6, 1, 4, 1, 13191, 10, 3, 3, 3, 1, 2, 1, 3), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: oacSHDSLSpanStatusCurrShowtimeStart.setStatus('current') oac_shdsl_span_status_curr_cell_delin = mib_table_column((1, 3, 6, 1, 4, 1, 13191, 10, 3, 3, 3, 1, 2, 1, 4), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: oacSHDSLSpanStatusCurrCellDelin.setStatus('current') oac_shdsl_span_status_curr_cr_canomalies = mib_table_column((1, 3, 6, 1, 4, 1, 13191, 10, 3, 3, 3, 1, 2, 1, 5), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: oacSHDSLSpanStatusCurrCRCanomalies.setStatus('current') oac_shdsl_span_status_curr_hec_errors = mib_table_column((1, 3, 6, 1, 4, 1, 13191, 10, 3, 3, 3, 1, 2, 1, 6), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: oacSHDSLSpanStatusCurrHECErrors.setStatus('current') oac_shdsl_span_status_curr_rx_cells = mib_table_column((1, 3, 6, 1, 4, 1, 13191, 10, 3, 3, 3, 1, 2, 1, 7), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: oacSHDSLSpanStatusCurrRxCells.setStatus('current') oac_shdsl_span_status_curr_tx_cells = mib_table_column((1, 3, 6, 1, 4, 1, 13191, 10, 3, 3, 3, 1, 2, 1, 8), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: oacSHDSLSpanStatusCurrTxCells.setStatus('current') oac_shdsl_span_status_curr_rx_drops = mib_table_column((1, 3, 6, 1, 4, 1, 13191, 10, 3, 3, 3, 1, 2, 1, 9), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: oacSHDSLSpanStatusCurrRxDrops.setStatus('current') oac_shdsl_span_status_curr_es = mib_table_column((1, 3, 6, 1, 4, 1, 13191, 10, 3, 3, 3, 1, 2, 1, 10), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: oacSHDSLSpanStatusCurrES.setStatus('current') oac_shdsl_span_status_curr_ses = mib_table_column((1, 3, 6, 1, 4, 1, 13191, 10, 3, 3, 3, 1, 2, 1, 11), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: oacSHDSLSpanStatusCurrSES.setStatus('current') oac_shdsl_span_status_curr_losws = mib_table_column((1, 3, 6, 1, 4, 1, 13191, 10, 3, 3, 3, 1, 2, 1, 12), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: oacSHDSLSpanStatusCurrLOSWS.setStatus('current') oac_shdsl_span_status_curr_uas = mib_table_column((1, 3, 6, 1, 4, 1, 13191, 10, 3, 3, 3, 1, 2, 1, 13), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: oacSHDSLSpanStatusCurrUAS.setStatus('current') oac_shdsl_span_status_curr_constellation = mib_table_column((1, 3, 6, 1, 4, 1, 13191, 10, 3, 3, 3, 1, 2, 1, 14), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(2, 3))).clone(namedValues=named_values(('tcPam16', 2), ('tcPam32', 3)))).setMaxAccess('readonly') if mibBuilder.loadTexts: oacSHDSLSpanStatusCurrConstellation.setStatus('current') oac_shdsl_endpoint_curr_table = mib_table((1, 3, 6, 1, 4, 1, 13191, 10, 3, 3, 3, 1, 5)) if mibBuilder.loadTexts: oacSHDSLEndpointCurrTable.setStatus('current') oac_shdsl_endpoint_curr_entry = mib_table_row((1, 3, 6, 1, 4, 1, 13191, 10, 3, 3, 3, 1, 5, 1)) hdsl2ShdslEndpointCurrEntry.registerAugmentions(('ONEACCESS-SHDSL-MIB', 'oacSHDSLEndpointCurrEntry')) oacSHDSLEndpointCurrEntry.setIndexNames(*hdsl2ShdslEndpointCurrEntry.getIndexNames()) if mibBuilder.loadTexts: oacSHDSLEndpointCurrEntry.setStatus('current') oac_shdsl_endpoint_curr_atn = mib_table_column((1, 3, 6, 1, 4, 1, 13191, 10, 3, 3, 3, 1, 5, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(-1270, 1280))).setUnits('dB/10').setMaxAccess('readonly') if mibBuilder.loadTexts: oacSHDSLEndpointCurrAtn.setStatus('current') oac_shdsl_endpoint_curr_snr_mgn = mib_table_column((1, 3, 6, 1, 4, 1, 13191, 10, 3, 3, 3, 1, 5, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(-1270, 1280))).setUnits('dB/10').setMaxAccess('readonly') if mibBuilder.loadTexts: oacSHDSLEndpointCurrSnrMgn.setStatus('current') oac_shdsl_endpoint_curr_tx_pwr = mib_table_column((1, 3, 6, 1, 4, 1, 13191, 10, 3, 3, 3, 1, 5, 1, 3), integer32()).setUnits('dB/10').setMaxAccess('readonly') if mibBuilder.loadTexts: oacSHDSLEndpointCurrTxPwr.setStatus('current') oac_shdsl_endpoint_curr_rx_gain = mib_table_column((1, 3, 6, 1, 4, 1, 13191, 10, 3, 3, 3, 1, 5, 1, 4), integer32()).setUnits('dB/10').setMaxAccess('readonly') if mibBuilder.loadTexts: oacSHDSLEndpointCurrRxGain.setStatus('current') oac_shdsl_endpoint_curr_max_attainable_line_rate = mib_table_column((1, 3, 6, 1, 4, 1, 13191, 10, 3, 3, 3, 1, 5, 1, 5), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: oacSHDSLEndpointCurrMaxAttainableLineRate.setStatus('current') oac_shdsl_endpoint_curr_commands = mib_table_column((1, 3, 6, 1, 4, 1, 13191, 10, 3, 3, 3, 1, 5, 1, 6), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: oacSHDSLEndpointCurrCommands.setStatus('current') oac_shdsl_endpoint_curr_responses = mib_table_column((1, 3, 6, 1, 4, 1, 13191, 10, 3, 3, 3, 1, 5, 1, 7), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: oacSHDSLEndpointCurrResponses.setStatus('current') oac_shdsl_endpoint_currdiscarded_commands = mib_table_column((1, 3, 6, 1, 4, 1, 13191, 10, 3, 3, 3, 1, 5, 1, 8), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: oacSHDSLEndpointCurrdiscardedCommands.setStatus('current') oac_shdsl_endpoint_currerrored_commands = mib_table_column((1, 3, 6, 1, 4, 1, 13191, 10, 3, 3, 3, 1, 5, 1, 9), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: oacSHDSLEndpointCurrerroredCommands.setStatus('current') oac_shdsl_endpoint_curr_received_frames = mib_table_column((1, 3, 6, 1, 4, 1, 13191, 10, 3, 3, 3, 1, 5, 1, 10), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: oacSHDSLEndpointCurrReceivedFrames.setStatus('current') oac_shdsl_endpoint_curr_bad_transparency = mib_table_column((1, 3, 6, 1, 4, 1, 13191, 10, 3, 3, 3, 1, 5, 1, 11), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: oacSHDSLEndpointCurrBadTransparency.setStatus('current') oac_shdsl_endpoint_curr_bad_fcs = mib_table_column((1, 3, 6, 1, 4, 1, 13191, 10, 3, 3, 3, 1, 5, 1, 12), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: oacSHDSLEndpointCurrBadFCS.setStatus('current') oac_shdsl_endpoint_curr_eoc_status = mib_table_column((1, 3, 6, 1, 4, 1, 13191, 10, 3, 3, 3, 1, 5, 1, 13), octet_string().subtype(subtypeSpec=value_size_constraint(50, 50)).setFixedLength(50)).setMaxAccess('readonly') if mibBuilder.loadTexts: oacSHDSLEndpointCurrEOCStatus.setStatus('current') oac_shdsl_endpoint_currretrain_table = mib_table((1, 3, 6, 1, 4, 1, 13191, 10, 3, 3, 3, 1, 7)) if mibBuilder.loadTexts: oacSHDSLEndpointCurrretrainTable.setStatus('current') oac_shdsl_endpoint_currretrain_entry = mib_table_row((1, 3, 6, 1, 4, 1, 13191, 10, 3, 3, 3, 1, 7, 1)) hdsl2ShdslEndpointCurrEntry.registerAugmentions(('ONEACCESS-SHDSL-MIB', 'oacSHDSLEndpointCurrretrainEntry')) oacSHDSLEndpointCurrretrainEntry.setIndexNames(*hdsl2ShdslEndpointCurrEntry.getIndexNames()) if mibBuilder.loadTexts: oacSHDSLEndpointCurrretrainEntry.setStatus('current') oac_shdsl_endpoint_currretrain_sqpair = mib_table_column((1, 3, 6, 1, 4, 1, 13191, 10, 3, 3, 3, 1, 7, 1, 1), integer32()).setUnits('SQPAIR').setMaxAccess('readonly') if mibBuilder.loadTexts: oacSHDSLEndpointCurrretrainSQPAIR.setStatus('current') oac_shdsl_endpoint_currretrain_sqline = mib_table_column((1, 3, 6, 1, 4, 1, 13191, 10, 3, 3, 3, 1, 7, 1, 2), integer32()).setUnits('SQLINE').setMaxAccess('readonly') if mibBuilder.loadTexts: oacSHDSLEndpointCurrretrainSQLINE.setStatus('current') oac_shdsl_endpoint_currretrain_crcpair = mib_table_column((1, 3, 6, 1, 4, 1, 13191, 10, 3, 3, 3, 1, 7, 1, 3), integer32()).setUnits('CRCPAIR').setMaxAccess('readonly') if mibBuilder.loadTexts: oacSHDSLEndpointCurrretrainCRCPAIR.setStatus('current') oac_shdsl_endpoint_currretrain_crcline = mib_table_column((1, 3, 6, 1, 4, 1, 13191, 10, 3, 3, 3, 1, 7, 1, 4), integer32()).setUnits('CRCLINE').setMaxAccess('readonly') if mibBuilder.loadTexts: oacSHDSLEndpointCurrretrainCRCLINE.setStatus('current') oac_shdsl_endpoint_currretrain_fsync_pair = mib_table_column((1, 3, 6, 1, 4, 1, 13191, 10, 3, 3, 3, 1, 7, 1, 5), integer32()).setUnits('FsyncPAIR').setMaxAccess('readonly') if mibBuilder.loadTexts: oacSHDSLEndpointCurrretrainFsyncPAIR.setStatus('current') oac_shdsl_endpoint_currretrain_fsync_line = mib_table_column((1, 3, 6, 1, 4, 1, 13191, 10, 3, 3, 3, 1, 7, 1, 6), integer32()).setUnits('FsyncLINE').setMaxAccess('readonly') if mibBuilder.loadTexts: oacSHDSLEndpointCurrretrainFsyncLINE.setStatus('current') oac_shdsl_endpoint_currretrain_f_sync_sqpair = mib_table_column((1, 3, 6, 1, 4, 1, 13191, 10, 3, 3, 3, 1, 7, 1, 7), integer32()).setUnits('FSync&SQPAIR').setMaxAccess('readonly') if mibBuilder.loadTexts: oacSHDSLEndpointCurrretrainFSyncSQPAIR.setStatus('current') oac_shdsl_endpoint_currretrain_f_sync_sqline = mib_table_column((1, 3, 6, 1, 4, 1, 13191, 10, 3, 3, 3, 1, 7, 1, 8), integer32()).setUnits('FSync&SQLINE').setMaxAccess('readonly') if mibBuilder.loadTexts: oacSHDSLEndpointCurrretrainFSyncSQLINE.setStatus('current') oac_shdsl_traps = mib_identifier((1, 3, 6, 1, 4, 1, 13191, 10, 3, 3, 3, 2)) oac_shdsl_trap_prefix = mib_identifier((1, 3, 6, 1, 4, 1, 13191, 10, 3, 3, 3, 2, 0)) oac_shdsl_hard_down_trap = notification_type((1, 3, 6, 1, 4, 1, 13191, 10, 3, 3, 3, 2, 0, 1)) if mibBuilder.loadTexts: oacSHDSLHardDownTrap.setStatus('current') oac_shdsl_span_conf_profile_table = mib_table((1, 3, 6, 1, 4, 1, 13191, 10, 3, 3, 3, 1, 10)) if mibBuilder.loadTexts: oacSHDSLSpanConfProfileTable.setStatus('current') oac_shdsl_span_conf_profile_entry = mib_table_row((1, 3, 6, 1, 4, 1, 13191, 10, 3, 3, 3, 1, 10, 1)) hdsl2ShdslSpanConfProfileEntry.registerAugmentions(('ONEACCESS-SHDSL-MIB', 'oacSHDSLSpanConfProfileEntry')) oacSHDSLSpanConfProfileEntry.setIndexNames(*hdsl2ShdslSpanConfProfileEntry.getIndexNames()) if mibBuilder.loadTexts: oacSHDSLSpanConfProfileEntry.setStatus('current') oac_shdsl_span_conf_profile_constellation = mib_table_column((1, 3, 6, 1, 4, 1, 13191, 10, 3, 3, 3, 1, 10, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('auto', 1), ('tcPam16', 2), ('tcPam32', 3)))).setMaxAccess('readonly') if mibBuilder.loadTexts: oacSHDSLSpanConfProfileConstellation.setStatus('current') oac_shdsl_span_conf_profile_auto_config = mib_table_column((1, 3, 6, 1, 4, 1, 13191, 10, 3, 3, 3, 1, 10, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: oacSHDSLSpanConfProfileAutoConfig.setStatus('current') oac_shdsl_span_conf_profile_caplist = mib_table_column((1, 3, 6, 1, 4, 1, 13191, 10, 3, 3, 3, 1, 10, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('newstyle', 1), ('oldstyle', 2), ('auto', 3)))).setMaxAccess('readonly') if mibBuilder.loadTexts: oacSHDSLSpanConfProfileCaplist.setStatus('current') oac_shdsl_span_conf_profile_efm_aggregation = mib_table_column((1, 3, 6, 1, 4, 1, 13191, 10, 3, 3, 3, 1, 10, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4))).clone(namedValues=named_values(('disabled', 1), ('auto', 2), ('negotiated', 3), ('static', 4)))).setMaxAccess('readonly') if mibBuilder.loadTexts: oacSHDSLSpanConfProfileEfmAggregation.setStatus('current') oac_shdsl_span_conf_profile_crc_check = mib_table_column((1, 3, 6, 1, 4, 1, 13191, 10, 3, 3, 3, 1, 10, 1, 5), integer32().subtype(subtypeSpec=value_range_constraint(0, 30))).setMaxAccess('readonly') if mibBuilder.loadTexts: oacSHDSLSpanConfProfileCrcCheck.setStatus('current') oac_shdsl_span_conf_profile_meansq_check = mib_table_column((1, 3, 6, 1, 4, 1, 13191, 10, 3, 3, 3, 1, 10, 1, 6), integer32().subtype(subtypeSpec=value_range_constraint(0, 30))).setMaxAccess('readonly') if mibBuilder.loadTexts: oacSHDSLSpanConfProfileMeansqCheck.setStatus('current') oac_shdsl_span_conf_profile_meansq_threshold = mib_table_column((1, 3, 6, 1, 4, 1, 13191, 10, 3, 3, 3, 1, 10, 1, 7), integer32().subtype(subtypeSpec=value_range_constraint(-2, 10))).setMaxAccess('readonly') if mibBuilder.loadTexts: oacSHDSLSpanConfProfileMeansqThreshold.setStatus('current') oac_shdsl_span_conf_profile_line_probing = mib_table_column((1, 3, 6, 1, 4, 1, 13191, 10, 3, 3, 3, 1, 10, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('adaptive', 1), ('normal', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: oacSHDSLSpanConfProfileLineProbing.setStatus('current') oac_shdsl_span_conf_profile_eoc_management = mib_table_column((1, 3, 6, 1, 4, 1, 13191, 10, 3, 3, 3, 1, 10, 1, 9), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2))).clone('enabled')).setMaxAccess('readwrite') if mibBuilder.loadTexts: oacSHDSLSpanConfProfileEocManagement.setStatus('current') oac_shdsl_span_conf_profile_eoc_status_poll_delay = mib_table_column((1, 3, 6, 1, 4, 1, 13191, 10, 3, 3, 3, 1, 10, 1, 10), integer32().subtype(subtypeSpec=value_range_constraint(0, 29))).setUnits('seconds').setMaxAccess('readwrite') if mibBuilder.loadTexts: oacSHDSLSpanConfProfileEocStatusPollDelay.setStatus('current') oac_shdsl_span_conf_profile_eoc_status_poll_interval = mib_table_column((1, 3, 6, 1, 4, 1, 13191, 10, 3, 3, 3, 1, 10, 1, 11), integer32().subtype(subtypeSpec=constraints_union(value_range_constraint(30, 30), value_range_constraint(60, 60), value_range_constraint(90, 90), value_range_constraint(120, 120))).clone(30)).setUnits('seconds').setMaxAccess('readwrite') if mibBuilder.loadTexts: oacSHDSLSpanConfProfileEocStatusPollInterval.setStatus('current') mibBuilder.exportSymbols('ONEACCESS-SHDSL-MIB', oacSHDSLSpanStatusCurrUAS=oacSHDSLSpanStatusCurrUAS, oacSHDSLEndpointCurrretrainFsyncLINE=oacSHDSLEndpointCurrretrainFsyncLINE, oacSHDSLEndpointCurrTxPwr=oacSHDSLEndpointCurrTxPwr, oacSHDSLEndpointCurrretrainCRCLINE=oacSHDSLEndpointCurrretrainCRCLINE, oacSHDSLTraps=oacSHDSLTraps, oacSHDSLSpanConfProfileMeansqCheck=oacSHDSLSpanConfProfileMeansqCheck, oacSHDSLSpanStatusCurrStatus=oacSHDSLSpanStatusCurrStatus, oacSHDSLSpanConfProfileEocStatusPollDelay=oacSHDSLSpanConfProfileEocStatusPollDelay, oacSHDSLEndpointCurrretrainCRCPAIR=oacSHDSLEndpointCurrretrainCRCPAIR, oacSHDSLSpanConfProfileMeansqThreshold=oacSHDSLSpanConfProfileMeansqThreshold, PYSNMP_MODULE_ID=oacSHDSLMIBModule, oacSHDSLEndpointCurrdiscardedCommands=oacSHDSLEndpointCurrdiscardedCommands, oacSHDSLMIBModule=oacSHDSLMIBModule, oacSHDSLSpanConfProfileConstellation=oacSHDSLSpanConfProfileConstellation, oacSHDSLEndpointCurrretrainEntry=oacSHDSLEndpointCurrretrainEntry, oacSHDSLSpanStatusCurrLOSWS=oacSHDSLSpanStatusCurrLOSWS, oacSHDSLSpanConfProfileEfmAggregation=oacSHDSLSpanConfProfileEfmAggregation, oacSHDSLSpanStatusCurrSES=oacSHDSLSpanStatusCurrSES, oacSHDSLSpanStatusCurrRxDrops=oacSHDSLSpanStatusCurrRxDrops, oacSHDSLEndpointCurrAtn=oacSHDSLEndpointCurrAtn, oacSHDSLTrapPrefix=oacSHDSLTrapPrefix, oacSHDSLSpanConfProfileTable=oacSHDSLSpanConfProfileTable, oacSHDSLEndpointCurrRxGain=oacSHDSLEndpointCurrRxGain, oacSHDSLSpanStatusCurrTxCells=oacSHDSLSpanStatusCurrTxCells, oacSHDSLEndpointCurrResponses=oacSHDSLEndpointCurrResponses, oacSHDSLSpanStatusCurrConstellation=oacSHDSLSpanStatusCurrConstellation, oacSHDSLEndpointCurrretrainFSyncSQLINE=oacSHDSLEndpointCurrretrainFSyncSQLINE, oacSHDSLSpanConfProfileLineProbing=oacSHDSLSpanConfProfileLineProbing, oacSHDSLEndpointCurrTable=oacSHDSLEndpointCurrTable, oacSHDSLSpanConfProfileCrcCheck=oacSHDSLSpanConfProfileCrcCheck, oacSHDSLEndpointCurrSnrMgn=oacSHDSLEndpointCurrSnrMgn, oacSHDSLSpanConfProfileEocStatusPollInterval=oacSHDSLSpanConfProfileEocStatusPollInterval, oacSHDSLEndpointCurrMaxAttainableLineRate=oacSHDSLEndpointCurrMaxAttainableLineRate, oacSHDSLObjects=oacSHDSLObjects, oacSHDSLSpanConfProfileAutoConfig=oacSHDSLSpanConfProfileAutoConfig, oacSHDSLSpanStatusTable=oacSHDSLSpanStatusTable, oacSHDSLEndpointCurrretrainFsyncPAIR=oacSHDSLEndpointCurrretrainFsyncPAIR, oacSHDSLEndpointCurrReceivedFrames=oacSHDSLEndpointCurrReceivedFrames, oacSHDSLSpanConfProfileCaplist=oacSHDSLSpanConfProfileCaplist, oacSHDSLSpanStatusEntry=oacSHDSLSpanStatusEntry, oacSHDSLSpanStatusUpDown=oacSHDSLSpanStatusUpDown, oacSHDSLHardDownTrap=oacSHDSLHardDownTrap, oacSHDSLEndpointCurrretrainTable=oacSHDSLEndpointCurrretrainTable, oacSHDSLSpanConfProfileEntry=oacSHDSLSpanConfProfileEntry, oacSHDSLEndpointCurrEntry=oacSHDSLEndpointCurrEntry, oacSHDSLEndpointCurrBadTransparency=oacSHDSLEndpointCurrBadTransparency, oacSHDSLEndpointCurrBadFCS=oacSHDSLEndpointCurrBadFCS, oacSHDSLSpanStatusCurrRxCells=oacSHDSLSpanStatusCurrRxCells, oacSHDSLEndpointCurrCommands=oacSHDSLEndpointCurrCommands, oacSHDSLEndpointCurrretrainSQLINE=oacSHDSLEndpointCurrretrainSQLINE, oacSHDSLSpanStatusCurrES=oacSHDSLSpanStatusCurrES, oacSHDSLSpanStatusCurrCRCanomalies=oacSHDSLSpanStatusCurrCRCanomalies, oacSHDSLSpanStatusCurrShowtimeStart=oacSHDSLSpanStatusCurrShowtimeStart, oacSHDSLEndpointCurrEOCStatus=oacSHDSLEndpointCurrEOCStatus, oacSHDSLEndpointCurrretrainFSyncSQPAIR=oacSHDSLEndpointCurrretrainFSyncSQPAIR, oacSHDSLSpanStatusCurrHECErrors=oacSHDSLSpanStatusCurrHECErrors, oacSHDSLEndpointCurrerroredCommands=oacSHDSLEndpointCurrerroredCommands, oacSHDSLSpanConfProfileEocManagement=oacSHDSLSpanConfProfileEocManagement, oacSHDSLEndpointCurrretrainSQPAIR=oacSHDSLEndpointCurrretrainSQPAIR, oacSHDSLSpanStatusCurrCellDelin=oacSHDSLSpanStatusCurrCellDelin)
""" Problem 2_2: Write a function 'problem2_2()' that takes a list and does the following to it. Actually, I've started the function for you below. Your function should do all of the following, each on a separate line. Recall that lists start numbering with 0. 0) print the whole list (this doesn't require a while or for loop) 1) print the item with index 0 2) print the last item in the list 3) print the items with indexes 3 through 5 but not including 5 4) print the items up to the one with index 3 but not including item 3 5) print the items starting at index 3 and going through the end. 6) print the length of the list ( use len() ) 7) Use the append() method of a list to append the letter "z" onto a list. Print the list with z appended. Make sure that your function also works with blist below. For this to work, you cannot use alist as a variable inside your function. """ #%% alist = ["a","e","i","o","u","y"] blist = ["alpha", "beta", "gamma", "delta", "epsilon", "eta", "theta"] def problem2_2(my_list): print(my_list) print(my_list[0]) print(my_list[-1]) print(my_list[3:5]) print(my_list[:3]) print(my_list[3:]) print(len(my_list)) my_list.append("z") print(my_list)
""" Problem 2_2: Write a function 'problem2_2()' that takes a list and does the following to it. Actually, I've started the function for you below. Your function should do all of the following, each on a separate line. Recall that lists start numbering with 0. 0) print the whole list (this doesn't require a while or for loop) 1) print the item with index 0 2) print the last item in the list 3) print the items with indexes 3 through 5 but not including 5 4) print the items up to the one with index 3 but not including item 3 5) print the items starting at index 3 and going through the end. 6) print the length of the list ( use len() ) 7) Use the append() method of a list to append the letter "z" onto a list. Print the list with z appended. Make sure that your function also works with blist below. For this to work, you cannot use alist as a variable inside your function. """ alist = ['a', 'e', 'i', 'o', 'u', 'y'] blist = ['alpha', 'beta', 'gamma', 'delta', 'epsilon', 'eta', 'theta'] def problem2_2(my_list): print(my_list) print(my_list[0]) print(my_list[-1]) print(my_list[3:5]) print(my_list[:3]) print(my_list[3:]) print(len(my_list)) my_list.append('z') print(my_list)
class AtaqueMonstro: def __init__( self, id: int, nome: str, quantidade_dado: int, numero_faces: int, dano_bonus: int, acerto: int = 0, cd: int = 0, teste: str = None ): self.__id = id self.__nome = nome self.__quantidade_dado = quantidade_dado self.__numero_faces = numero_faces self.__dano_bonus = dano_bonus self.__acerto = acerto self.__cd = cd self.__teste = teste @property def id(self) -> int: return self.__id @property def nome(self): return self.__nome @nome.setter def nome(self, nome: str): if isinstance(nome, str): self.__nome = nome @property def quantidade_dado(self): return self.__quantidade_dado @quantidade_dado.setter def quantidade_dado(self, quantidade: int): if isinstance(quantidade, int): self.__quantidade_dado = quantidade @property def numero_faces(self): return self.__numero_faces @numero_faces.setter def numero_faces(self, dado: int): if isinstance(dado, int): self.__numero_faces = dado @property def dano_bonus(self): return self.__dano_bonus @dano_bonus.setter def dano_bonus(self, dano: int): if isinstance(dano, int): self.__dano_bonus = dano @property def acerto(self): return self.__acerto @acerto.setter def acerto(self, acerto: int): if isinstance(acerto, int): self.__acerto = acerto @property def cd(self): return self.__cd @cd.setter def cd(self, cd: int): if isinstance(cd, int): self.__cd = cd @property def teste(self): return self.__teste @teste.setter def teste(self, teste: str): if isinstance(teste, str): self.__teste = teste
class Ataquemonstro: def __init__(self, id: int, nome: str, quantidade_dado: int, numero_faces: int, dano_bonus: int, acerto: int=0, cd: int=0, teste: str=None): self.__id = id self.__nome = nome self.__quantidade_dado = quantidade_dado self.__numero_faces = numero_faces self.__dano_bonus = dano_bonus self.__acerto = acerto self.__cd = cd self.__teste = teste @property def id(self) -> int: return self.__id @property def nome(self): return self.__nome @nome.setter def nome(self, nome: str): if isinstance(nome, str): self.__nome = nome @property def quantidade_dado(self): return self.__quantidade_dado @quantidade_dado.setter def quantidade_dado(self, quantidade: int): if isinstance(quantidade, int): self.__quantidade_dado = quantidade @property def numero_faces(self): return self.__numero_faces @numero_faces.setter def numero_faces(self, dado: int): if isinstance(dado, int): self.__numero_faces = dado @property def dano_bonus(self): return self.__dano_bonus @dano_bonus.setter def dano_bonus(self, dano: int): if isinstance(dano, int): self.__dano_bonus = dano @property def acerto(self): return self.__acerto @acerto.setter def acerto(self, acerto: int): if isinstance(acerto, int): self.__acerto = acerto @property def cd(self): return self.__cd @cd.setter def cd(self, cd: int): if isinstance(cd, int): self.__cd = cd @property def teste(self): return self.__teste @teste.setter def teste(self, teste: str): if isinstance(teste, str): self.__teste = teste
print(map(abs, [1,-2,3,-4])) l=list(map(abs, [1,-2,3,-4])) print(l) #>>[1,2,3,4] def addOne(num): return num+1 li=list(map(addOne, l)) print(li) #>>[2,3,4,5] lis = map(addOne, li) print(lis.__next__()) #>>3 print(lis.__next__()) #>>4 print(lis.__next__()) #>>5 print(lis.__next__()) #>>6 def applyToEach(L, f): for i in range(len(L)): L[i] = f(L[i]) testList = [1, -4, 8, -9] def mulByFiv(x): return 5*x applyToEach(testList, mulByFiv) print(testList) print(testList) nL = [1, 4, 8, 9] print(nL) def applytooEach(L, f): for i in range(len(L)): L[i] = f(L[i], i) def myFun(x, i): if i%2 == 0: x = x+1 return x else: x = x -10 return x applytooEach(nL, myFun) print(nL) def applyEachTo(L, x): result = [] for i in range(len(L)): result.append(L[i](x)) print(str(result)+" "+str(L[i])) return result def square(a): return a*a def halve(a): return a/2 def inc(a): return a+1 listt=list(applyEachTo([inc, square, halve, abs], 3.0)) print(listt)
print(map(abs, [1, -2, 3, -4])) l = list(map(abs, [1, -2, 3, -4])) print(l) def add_one(num): return num + 1 li = list(map(addOne, l)) print(li) lis = map(addOne, li) print(lis.__next__()) print(lis.__next__()) print(lis.__next__()) print(lis.__next__()) def apply_to_each(L, f): for i in range(len(L)): L[i] = f(L[i]) test_list = [1, -4, 8, -9] def mul_by_fiv(x): return 5 * x apply_to_each(testList, mulByFiv) print(testList) print(testList) n_l = [1, 4, 8, 9] print(nL) def applytoo_each(L, f): for i in range(len(L)): L[i] = f(L[i], i) def my_fun(x, i): if i % 2 == 0: x = x + 1 return x else: x = x - 10 return x applytoo_each(nL, myFun) print(nL) def apply_each_to(L, x): result = [] for i in range(len(L)): result.append(L[i](x)) print(str(result) + ' ' + str(L[i])) return result def square(a): return a * a def halve(a): return a / 2 def inc(a): return a + 1 listt = list(apply_each_to([inc, square, halve, abs], 3.0)) print(listt)
N=int(input()) S=[list(input()) for i in range(N)] takahashi=0 aoki=0 for s in S: takahashi+=s.count("R") aoki+=s.count("B") print("TAKAHASHI" if takahashi>aoki else "AOKI" if takahashi<aoki else "DRAW")
n = int(input()) s = [list(input()) for i in range(N)] takahashi = 0 aoki = 0 for s in S: takahashi += s.count('R') aoki += s.count('B') print('TAKAHASHI' if takahashi > aoki else 'AOKI' if takahashi < aoki else 'DRAW')
class Bunch(object): """Convert a dictionary to a class.""" def __init__(self, adict): self.__dict__.update(adict) def static_vars(**kwargs): """Enable static variables for functions persistent over several calls.""" def decorate(func): for k in kwargs: setattr(func, k, kwargs[k]) return func return decorate def flatten(container): """Flatten a nested list.""" for i in container: if isinstance(i, (list, tuple)): for j in flatten(i): yield j else: yield i def unflatten(flat_list, skeleton): """Recreate a nested list from a flattened list.""" it = iter(flat_list) def rec(skel): result = [] for cursk in skel: if isinstance(cursk, int): for i in range(cursk): result.append(next(it)) else: result.append(rec(cursk)) return result result = rec(skeleton) # check if all elements traversed try: next(it) raise IndexError except StopIteration: return result
class Bunch(object): """Convert a dictionary to a class.""" def __init__(self, adict): self.__dict__.update(adict) def static_vars(**kwargs): """Enable static variables for functions persistent over several calls.""" def decorate(func): for k in kwargs: setattr(func, k, kwargs[k]) return func return decorate def flatten(container): """Flatten a nested list.""" for i in container: if isinstance(i, (list, tuple)): for j in flatten(i): yield j else: yield i def unflatten(flat_list, skeleton): """Recreate a nested list from a flattened list.""" it = iter(flat_list) def rec(skel): result = [] for cursk in skel: if isinstance(cursk, int): for i in range(cursk): result.append(next(it)) else: result.append(rec(cursk)) return result result = rec(skeleton) try: next(it) raise IndexError except StopIteration: return result
# Third order Newton's method max_steps = 50 ## max number of iterations to use x0 = 2. def f(x): return x**3 - 2. def fp(x): return 3*x**2 def fpp(x): return 6*x def third_order(): global x x = [] x.append(x0) for i in range(max_steps): x.append(x[i] - f(x[i])/fp(x[i]) - (fpp(x[i])*f(x[i])**2)/(fp(x[i])**3)) return x
max_steps = 50 x0 = 2.0 def f(x): return x ** 3 - 2.0 def fp(x): return 3 * x ** 2 def fpp(x): return 6 * x def third_order(): global x x = [] x.append(x0) for i in range(max_steps): x.append(x[i] - f(x[i]) / fp(x[i]) - fpp(x[i]) * f(x[i]) ** 2 / fp(x[i]) ** 3) return x
#LeetCode problem 819: Most Common Word class Solution: def mostCommonWord(self, paragraph: str, banned: List[str]) -> str: ban = set(banned) words = re.findall(r'\w+', paragraph.lower()) return collections.Counter(w for w in words if w not in ban).most_common(1)[0][0]
class Solution: def most_common_word(self, paragraph: str, banned: List[str]) -> str: ban = set(banned) words = re.findall('\\w+', paragraph.lower()) return collections.Counter((w for w in words if w not in ban)).most_common(1)[0][0]
#!/usr/bin/env python target = 325489 # test values: # target = 23 # target = 12 # target = 1024 iter = 0 while True: iter += 1 n = 2 * iter + 1 if n ** 2 >= target: maxval = n ** 2 break if __debug__: print( "Matrix size is {}x{}. Greatest value at [{},{}] is {}".format(n, n, iter, iter, n ** 2)) xcoord = iter ycoord = iter if target >= maxval - (n - 1): # answer is on bottom row xcoord -= maxval - target elif target >= maxval - 2 * (n - 1): # answer is on left column xcoord = -iter ycoord -= maxval - n - 1 - target elif target >= maxval - 3 * (n - 1): # answer is on top row ycoord = - iter xcoord -= maxval - 2 * (n - 1) - target else: # answer is on right column ycoord -= maxval - 3 * (n - 1) - target print("Target coordinate is [{},{}]".format(xcoord, ycoord)) result = abs(xcoord) + abs(ycoord) print("Path is: {}".format(result)) # part2: sequence A141481 with open('seq.txt', 'r') as f: for line in f: v = int(line.strip()) if v >= target: print("Result2: {}".format(v)) break u""" --- Day 3: Spiral Memory --- You come across an experimental new kind of memory stored on an infinite two-dimensional grid. Each square on the grid is allocated in a spiral pattern starting at a location marked 1 and then counting up while spiraling outward. For example, the first few squares are allocated like this: 17 16 15 14 13 18 5 4 3 12 19 6 1 2 11 20 7 8 9 10 21 22 23---> ... While this is very space-efficient (no squares are skipped), requested data must be carried back to square 1 (the location of the only access port for this memory system) by programs that can only move up, down, left, or right. They always take the shortest path: the Manhattan Distance between the location of the data and square 1. For example: Data from square 1 is carried 0 steps, since it's at the access port. Data from square 12 is carried 3 steps, such as: down, left, left. Data from square 23 is carried only 2 steps: up twice. Data from square 1024 must be carried 31 steps. How many steps are required to carry the data from the square identified in your puzzle input all the way to the access port? --- Part Two --- As a stress test on the system, the programs here clear the grid and then store the value 1 in square 1. Then, in the same allocation order as shown above, they store the sum of the values in all adjacent squares, including diagonals. So, the first few squares' values are chosen as follows: Square 1 starts with the value 1. Square 2 has only one adjacent filled square (with value 1), so it also stores 1. Square 3 has both of the above squares as neighbors and stores the sum of their values, 2. Square 4 has all three of the aforementioned squares as neighbors and stores the sum of their values, 4. Square 5 only has the first and fourth squares as neighbors, so it gets the value 5. Once a square is written, its value does not change. Therefore, the first few squares would receive the following values: 147 142 133 122 59 304 5 4 2 57 330 10 1 1 54 351 11 23 25 26 362 747 806---> ... What is the first value written that is larger than your puzzle input? """
target = 325489 iter = 0 while True: iter += 1 n = 2 * iter + 1 if n ** 2 >= target: maxval = n ** 2 break if __debug__: print('Matrix size is {}x{}. Greatest value at [{},{}] is {}'.format(n, n, iter, iter, n ** 2)) xcoord = iter ycoord = iter if target >= maxval - (n - 1): xcoord -= maxval - target elif target >= maxval - 2 * (n - 1): xcoord = -iter ycoord -= maxval - n - 1 - target elif target >= maxval - 3 * (n - 1): ycoord = -iter xcoord -= maxval - 2 * (n - 1) - target else: ycoord -= maxval - 3 * (n - 1) - target print('Target coordinate is [{},{}]'.format(xcoord, ycoord)) result = abs(xcoord) + abs(ycoord) print('Path is: {}'.format(result)) with open('seq.txt', 'r') as f: for line in f: v = int(line.strip()) if v >= target: print('Result2: {}'.format(v)) break u"\n--- Day 3: Spiral Memory ---\n\nYou come across an experimental new kind of memory stored on an infinite two-dimensional grid.\n\nEach square on the grid is allocated in a spiral pattern starting at a location marked 1 and then counting up while spiraling outward. For example, the first few squares are allocated like this:\n\n17 16 15 14 13\n18 5 4 3 12\n19 6 1 2 11\n20 7 8 9 10\n21 22 23---> ...\n\nWhile this is very space-efficient (no squares are skipped), requested data must be carried back to square 1 (the location of the only access port for this memory system) by programs that can only move up, down, left, or right. They always take the shortest path: the Manhattan Distance between the location of the data and square 1.\n\nFor example:\n\n Data from square 1 is carried 0 steps, since it's at the access port.\n Data from square 12 is carried 3 steps, such as: down, left, left.\n Data from square 23 is carried only 2 steps: up twice.\n Data from square 1024 must be carried 31 steps.\n\nHow many steps are required to carry the data from the square identified in your puzzle input all the way to the access port?\n\n\n--- Part Two ---\n\nAs a stress test on the system, the programs here clear the grid and then store the value 1 in square 1. Then, in the same allocation order as shown above, they store the sum of the values in all adjacent squares, including diagonals.\n\nSo, the first few squares' values are chosen as follows:\n\n Square 1 starts with the value 1.\n Square 2 has only one adjacent filled square (with value 1), so it also stores 1.\n Square 3 has both of the above squares as neighbors and stores the sum of their values, 2.\n Square 4 has all three of the aforementioned squares as neighbors and stores the sum of their values, 4.\n Square 5 only has the first and fourth squares as neighbors, so it gets the value 5.\n\nOnce a square is written, its value does not change. Therefore, the first few squares would receive the following values:\n\n147 142 133 122 59\n304 5 4 2 57\n330 10 1 1 54\n351 11 23 25 26\n362 747 806---> ...\n\nWhat is the first value written that is larger than your puzzle input?\n\n"
pattern_zero=[0.0, 0.0099989797, 0.0197938986, 0.0202020202, 0.0293847567, 0.0302009999, 0.0387715539, 0.0399959188, 0.0404040404, 0.0479542904, 0.0495867769, 0.0504030201, 0.056932966, 0.0589735741, 0.060197939, 0.0606060606, 0.0657075809, 0.0681563106, 0.0697887971, 0.0706050403, 0.0742781349, 0.0771349862, 0.0791755943, 0.0803999592, 0.0808080808, 0.0826446281, 0.0859096011, 0.0883583308, 0.0899908173, 0.0908070605, 0.0944801551, 0.0973370064, 0.0987654321, 0.0993776145, 0.1006019794, 0.101010101, 0.1028466483, 0.1061116213, 0.1065197429, 0.108560351, 0.1101928375, 0.1110090807, 0.1140699929, 0.1146821753, 0.1175390266, 0.1189674523, 0.1195796347, 0.1208039996, 0.1212121212, 0.121416182, 0.1230486685, 0.1263136415, 0.1267217631, 0.1285583104, 0.1287623712, 0.1303948577, 0.1312111009, 0.1342720131, 0.1348841955, 0.1354963779, 0.1377410468, 0.1391694725, 0.1397816549, 0.1410060198, 0.1414141414, 0.1416182022, 0.1422303847, 0.1432506887, 0.1465156617, 0.1469237833, 0.1487603306, 0.1489643914, 0.1505968779, 0.1514131211, 0.1544740333, 0.1550862157, 0.1556983981, 0.157943067, 0.1593714927, 0.1599836751, 0.16120804, 0.1616161616, 0.1618202224, 0.1624324049, 0.1634527089, 0.1667176819, 0.1671258035, 0.1689623508, 0.1691664116, 0.1707988981, 0.1716151413, 0.1728395062, 0.1746760535, 0.1752882359, 0.1759004183, 0.1781450872, 0.178349148, 0.1795735129, 0.1801856953, 0.1814100602, 0.1818181818, 0.1820222426, 0.1826344251, 0.1836547291, 0.1869197021, 0.1873278237, 0.1887562494, 0.189164371, 0.1893684318, 0.1910009183, 0.1918171615, 0.1930415264, 0.1936537088, 0.1948780737, 0.1954902561, 0.1961024385, 0.1983471074, 0.1985511682, 0.1997755331, 0.2003877155, 0.2016120804, 0.202020202, 0.2022242628, 0.2028364453, 0.2038567493, 0.2071217223, 0.2075298439, 0.2089582696, 0.2093663912, 0.209570452, 0.2112029385, 0.2120191817, 0.2132435466, 0.213855729, 0.2150800939, 0.2156922763, 0.2163044587, 0.2185491276, 0.2187531885, 0.2199775533, 0.2205897357, 0.2218141006, 0.2222222222, 0.222426283, 0.2230384655, 0.2240587695, 0.2254871952, 0.2273237425, 0.2277318641, 0.2285481073, 0.2291602898, 0.2295684114, 0.2297724722, 0.2314049587, 0.2322212019, 0.2334455668, 0.2340577492, 0.2352821141, 0.2358942965, 0.2365064789, 0.2387511478, 0.2389552087, 0.2401795735, 0.2407917559, 0.2420161208, 0.2424242424, 0.2426283032, 0.2432404857, 0.2442607897, 0.2456892154, 0.2469135802, 0.2475257627, 0.2479338843, 0.2487501275, 0.24936231, 0.2497704316, 0.2499744924, 0.2516069789, 0.2524232221, 0.253647587, 0.2542597694, 0.2554841343, 0.2560963167, 0.2567084991, 0.258953168, 0.2591572289, 0.2603815937, 0.2609937761, 0.262218141, 0.2626262626, 0.2628303234, 0.2634425059, 0.2644628099, 0.2658912356, 0.2671156004, 0.2677277829, 0.2681359045, 0.2689521477, 0.2695643302, 0.2699724518, 0.2701765126, 0.2718089991, 0.2726252423, 0.2738496072, 0.2744617896, 0.2756861545, 0.2762983369, 0.2769105193, 0.2791551882, 0.2793592491, 0.2805836139, 0.2811957963, 0.2824201612, 0.2828282828, 0.2830323436, 0.2836445261, 0.2846648301, 0.2860932558, 0.2873176207, 0.2879298031, 0.2883379247, 0.2891541679, 0.2897663504, 0.290174472, 0.2903785328, 0.2920110193, 0.2928272625, 0.2940516274, 0.2946638098, 0.2958881747, 0.2965003571, 0.2971125395, 0.2993572084, 0.2995612693, 0.3007856341, 0.3013978165, 0.3026221814, 0.303030303, 0.3032343638, 0.3038465463, 0.3048668503, 0.306295276, 0.3075196409, 0.3081318233, 0.3085399449, 0.3093561881, 0.3099683706, 0.3103764922, 0.310580553, 0.3122130395, 0.3130292827, 0.3142536476, 0.31486583, 0.3160901949, 0.3167023773, 0.3173145597, 0.3195592287, 0.3197632895, 0.3209876543, 0.3215998368, 0.3228242016, 0.3232323232, 0.323436384, 0.3240485665, 0.3250688705, 0.3264972962, 0.3277216611, 0.3283338435, 0.3287419651, 0.3295582083, 0.3301703908, 0.3305785124, 0.3307825732, 0.3324150597, 0.3332313029, 0.3344556678, 0.3350678502, 0.3362922151, 0.3369043975, 0.3375165799, 0.3397612489, 0.3399653097, 0.3411896745, 0.341801857, 0.3430262218, 0.3434343434, 0.3436384042, 0.3442505867, 0.3452708907, 0.3466993164, 0.3479236813, 0.3485358637, 0.3489439853, 0.3497602285, 0.350372411, 0.3507805326, 0.3509845934, 0.3526170799, 0.3534333231, 0.354657688, 0.3552698704, 0.3564942353, 0.3571064177, 0.3577186001, 0.3599632691, 0.3601673299, 0.3613916947, 0.3620038772, 0.363228242, 0.3636363636, 0.3638404244, 0.3644526069, 0.3654729109, 0.3669013366, 0.3681257015, 0.3687378839, 0.3691460055, 0.3699622488, 0.3705744312, 0.3709825528, 0.3711866136, 0.3728191001, 0.3736353433, 0.3748597082, 0.3754718906, 0.3766962555, 0.3773084379, 0.3779206203, 0.3801652893, 0.3803693501, 0.3815937149, 0.3822058974, 0.3834302622, 0.3838383838, 0.3840424446, 0.3846546271, 0.3856749311, 0.3871033568, 0.3883277217, 0.3889399041, 0.3893480257, 0.390164269, 0.3907764514, 0.391184573, 0.3913886338, 0.3930211203, 0.3938373635, 0.3950617284, 0.3956739108, 0.3968982757, 0.3975104581, 0.3981226405, 0.4003673095, 0.4005713703, 0.4017957351, 0.4024079176, 0.4036322824, 0.404040404, 0.4042444649, 0.4048566473, 0.4058769513, 0.407305377, 0.4085297419, 0.4091419243, 0.4095500459, 0.4103662892, 0.4109784716, 0.4113865932, 0.411590654, 0.4132231405, 0.4140393837, 0.4152637486, 0.415875931, 0.4171002959, 0.4177124783, 0.4183246607, 0.4205693297, 0.4207733905, 0.4219977553, 0.4226099378, 0.4238343026, 0.4242424242, 0.4244464851, 0.4250586675, 0.4260789715, 0.4275073972, 0.4287317621, 0.4293439445, 0.4297520661, 0.4305683094, 0.4311804918, 0.4315886134, 0.4317926742, 0.4334251607, 0.4342414039, 0.4354657688, 0.4360779512, 0.4373023161, 0.4379144985, 0.438526681, 0.4407713499, 0.4409754107, 0.4421997755, 0.442811958, 0.4440363228, 0.4444444444, 0.4446485053, 0.4452606877, 0.4462809917, 0.4477094174, 0.4489337823, 0.4495459647, 0.4499540863, 0.4507703296, 0.451382512, 0.4517906336, 0.4519946944, 0.4536271809, 0.4544434241, 0.455667789, 0.4562799714, 0.4575043363, 0.4581165187, 0.4587287012, 0.4609733701, 0.4611774309, 0.4624017957, 0.4630139782, 0.464238343, 0.4646464646, 0.4648505255, 0.4654627079, 0.4664830119, 0.4679114376, 0.4691358025, 0.4697479849, 0.4701561065, 0.4709723498, 0.4715845322, 0.4719926538, 0.4721967146, 0.4738292011, 0.4746454443, 0.4758698092, 0.4764819916, 0.4777063565, 0.4783185389, 0.4789307214, 0.4811753903, 0.4813794511, 0.4826038159, 0.4832159984, 0.4844403632, 0.4848484848, 0.4850525457, 0.4856647281, 0.4866850321, 0.4881134578, 0.4893378227, 0.4899500051, 0.4903581267, 0.49117437, 0.4917865524, 0.492194674, 0.4923987348, 0.4940312213, 0.4948474645, 0.4960718294, 0.4966840118, 0.4979083767, 0.4985205591, 0.4991327416, 0.5013774105, 0.5015814713, 0.5028058361, 0.5034180186, 0.5046423834, 0.5050505051, 0.5052545659, 0.5058667483, 0.5068870523, 0.508315478, 0.5095398429, 0.5101520253, 0.5105601469, 0.5113763902, 0.5119885726, 0.5123966942, 0.512600755, 0.5142332415, 0.5150494847, 0.5162738496, 0.516886032, 0.5181103969, 0.5187225793, 0.5193347618, 0.5215794307, 0.5217834915, 0.5230078563, 0.5236200388, 0.5248444036, 0.5252525253, 0.5254565861, 0.5260687685, 0.5270890725, 0.5285174982, 0.5297418631, 0.5303540455, 0.5307621671, 0.5315784104, 0.5321905928, 0.5325987144, 0.5328027752, 0.5344352617, 0.5352515049, 0.5364758698, 0.5370880522, 0.5383124171, 0.5389245995, 0.539536782, 0.5417814509, 0.5419855117, 0.5432098765, 0.543822059, 0.5450464238, 0.5454545455, 0.5456586063, 0.5462707887, 0.5472910927, 0.5487195184, 0.5499438833, 0.5505560657, 0.5509641873, 0.5517804306, 0.552392613, 0.5528007346, 0.5530047954, 0.5546372819, 0.5554535252, 0.55667789, 0.5572900724, 0.5585144373, 0.5591266197, 0.5597388022, 0.5619834711, 0.5621875319, 0.5634118967, 0.5640240792, 0.565248444, 0.5656565657, 0.5658606265, 0.5664728089, 0.5674931129, 0.5689215386, 0.5701459035, 0.5707580859, 0.5711662075, 0.5719824508, 0.5725946332, 0.5730027548, 0.5732068156, 0.5748393021, 0.5756555454, 0.5768799102, 0.5774920926, 0.5787164575, 0.5793286399, 0.5799408224, 0.5821854913, 0.5823895521, 0.5836139169, 0.5842260994, 0.5854504642, 0.5858585859, 0.5860626467, 0.5866748291, 0.5876951332, 0.5891235588, 0.5903479237, 0.5909601061, 0.5913682277, 0.592184471, 0.5927966534, 0.593204775, 0.5934088358, 0.5950413223, 0.5958575656, 0.5970819304, 0.5976941128, 0.5989184777, 0.5995306601, 0.6001428426, 0.6023875115, 0.6025915723, 0.6038159371, 0.6044281196, 0.6056524844, 0.6060606061, 0.6062646669, 0.6068768493, 0.6078971534, 0.609325579, 0.6105499439, 0.6111621263, 0.6115702479, 0.6123864912, 0.6129986736, 0.6134067952, 0.613610856, 0.6152433425, 0.6160595858, 0.6172839506, 0.617896133, 0.6191204979, 0.6197326803, 0.6203448628, 0.6225895317, 0.6227935925, 0.6240179574, 0.6246301398, 0.6258545046, 0.6262626263, 0.6264666871, 0.6270788695, 0.6280991736, 0.6295275992, 0.6307519641, 0.6313641465, 0.6317722681, 0.6325885114, 0.6332006938, 0.6336088154, 0.6338128762, 0.6354453627, 0.636261606, 0.6374859708, 0.6380981533, 0.6393225181, 0.6399347005, 0.640546883, 0.6427915519, 0.6429956127, 0.6442199776, 0.64483216, 0.6460565248, 0.6464646465, 0.6466687073, 0.6472808897, 0.6483011938, 0.6497296194, 0.6509539843, 0.6515661667, 0.6519742883, 0.6527905316, 0.653402714, 0.6538108356, 0.6540148964, 0.6556473829, 0.6564636262, 0.657687991, 0.6583001735, 0.6595245383, 0.6601367207, 0.6607489032, 0.6629935721, 0.6631976329, 0.6644219978, 0.6650341802, 0.666258545, 0.6666666667, 0.6668707275, 0.6674829099, 0.668503214, 0.6699316396, 0.6711560045, 0.6717681869, 0.6721763085, 0.6729925518, 0.6736047342, 0.6740128558, 0.6742169166, 0.6758494031, 0.6766656464, 0.6778900112, 0.6785021937, 0.6797265585, 0.6803387409, 0.6809509234, 0.6831955923, 0.6833996531, 0.684624018, 0.6852362004, 0.6864605652, 0.6868686869, 0.6870727477, 0.6876849301, 0.6887052342, 0.6901336598, 0.6913580247, 0.6919702071, 0.6923783287, 0.693194572, 0.6938067544, 0.694214876, 0.6944189368, 0.6960514233, 0.6968676666, 0.6980920314, 0.6987042139, 0.6999285787, 0.7005407611, 0.7011529436, 0.7033976125, 0.7036016733, 0.7048260382, 0.7054382206, 0.7066625855, 0.7070707071, 0.7072747679, 0.7078869503, 0.7089072544, 0.71033568, 0.7115600449, 0.7121722273, 0.7125803489, 0.7133965922, 0.7140087746, 0.7144168962, 0.714620957, 0.7162534435, 0.7170696868, 0.7182940516, 0.7189062341, 0.7201305989, 0.7207427813, 0.7213549638, 0.7235996327, 0.7238036935, 0.7250280584, 0.7256402408, 0.7268646057, 0.7272727273, 0.7274767881, 0.7280889705, 0.7291092746, 0.7305377002, 0.7317620651, 0.7323742475, 0.7327823691, 0.7335986124, 0.7342107948, 0.7346189164, 0.7348229772, 0.7364554637, 0.737271707, 0.7384960718, 0.7391082543, 0.7403326191, 0.7409448016, 0.741556984, 0.7438016529, 0.7440057137, 0.7452300786, 0.745842261, 0.7470666259, 0.7474747475, 0.7476788083, 0.7482909907, 0.7493112948, 0.7507397204, 0.7519640853, 0.7525762677, 0.7529843893, 0.7538006326, 0.754412815, 0.7548209366, 0.7550249974, 0.7566574839, 0.7574737272, 0.758698092, 0.7593102745, 0.7605346393, 0.7611468218, 0.7617590042, 0.7640036731, 0.7642077339, 0.7654320988, 0.7660442812, 0.7672686461, 0.7676767677, 0.7678808285, 0.7684930109, 0.769513315, 0.7709417406, 0.7721661055, 0.7727782879, 0.7731864096, 0.7740026528, 0.7746148352, 0.7750229568, 0.7752270177, 0.7768595041, 0.7776757474, 0.7789001122, 0.7795122947, 0.7807366595, 0.781348842, 0.7819610244, 0.7842056933, 0.7844097541, 0.785634119, 0.7862463014, 0.7874706663, 0.7878787879, 0.7880828487, 0.7886950311, 0.7897153352, 0.7911437608, 0.7923681257, 0.7929803081, 0.7933884298, 0.794204673, 0.7948168554, 0.795224977, 0.7954290379, 0.7970615243, 0.7978777676, 0.7991021324, 0.7997143149, 0.8009386797, 0.8015508622, 0.8021630446, 0.8044077135, 0.8046117743, 0.8058361392, 0.8064483216, 0.8076726865, 0.8080808081, 0.8082848689, 0.8088970513, 0.8099173554, 0.811345781, 0.8125701459, 0.8131823283, 0.81359045, 0.8144066932, 0.8150188756, 0.8154269972, 0.8156310581, 0.8172635445, 0.8180797878, 0.8193041526, 0.8199163351, 0.8211406999, 0.8217528824, 0.8223650648, 0.8246097337, 0.8248137945, 0.8260381594, 0.8266503418, 0.8278747067, 0.8282828283, 0.8284868891, 0.8290990715, 0.8301193756, 0.8315478012, 0.8327721661, 0.8333843485, 0.8337924702, 0.8346087134, 0.8352208958, 0.8356290174, 0.8358330783, 0.8374655647, 0.838281808, 0.8395061728, 0.8401183553, 0.8413427201, 0.8419549026, 0.842567085, 0.8448117539, 0.8450158147, 0.8462401796, 0.846852362, 0.8480767269, 0.8484848485, 0.8486889093, 0.8493010917, 0.8503213958, 0.8517498214, 0.8529741863, 0.8535863687, 0.8539944904, 0.8548107336, 0.855422916, 0.8558310376, 0.8560350985, 0.8576675849, 0.8584838282, 0.859708193, 0.8603203755, 0.8615447403, 0.8621569228, 0.8627691052, 0.8650137741, 0.8652178349, 0.8664421998, 0.8670543822, 0.8682787471, 0.8686868687, 0.8688909295, 0.8695031119, 0.870523416, 0.8719518416, 0.8731762065, 0.8737883889, 0.8741965106, 0.8750127538, 0.8756249362, 0.8760330579, 0.8762371187, 0.8778696051, 0.8786858484, 0.8799102132, 0.8805223957, 0.8817467605, 0.882358943, 0.8829711254, 0.8852157943, 0.8854198551, 0.88664422, 0.8872564024, 0.8884807673, 0.8888888889, 0.8890929497, 0.8897051321, 0.8907254362, 0.8921538619, 0.8933782267, 0.8939904091, 0.8943985308, 0.895214774, 0.8958269564, 0.8962350781, 0.8964391389, 0.8980716253, 0.8988878686, 0.9001122334, 0.9007244159, 0.9019487807, 0.9025609632, 0.9031731456, 0.9054178145, 0.9056218753, 0.9068462402, 0.9074584226, 0.9086827875, 0.9090909091, 0.9092949699, 0.9099071523, 0.9109274564, 0.9123558821, 0.9135802469, 0.9141924293, 0.914600551, 0.9154167942, 0.9160289766, 0.9164370983, 0.9166411591, 0.9182736455, 0.9190898888, 0.9203142536, 0.9209264361, 0.9221508009, 0.9227629834, 0.9233751658, 0.9256198347, 0.9258238955, 0.9270482604, 0.9276604428, 0.9288848077, 0.9292929293, 0.9294969901, 0.9301091725, 0.9311294766, 0.9325579023, 0.9337822671, 0.9343944495, 0.9348025712, 0.9356188144, 0.9362309968, 0.9366391185, 0.9368431793, 0.9384756657, 0.939291909, 0.9405162739, 0.9411284563, 0.9423528211, 0.9429650036, 0.943577186, 0.9458218549, 0.9460259157, 0.9472502806, 0.947862463, 0.9490868279, 0.9494949495, 0.9496990103, 0.9503111927, 0.9513314968, 0.9527599225, 0.9539842873, 0.9545964697, 0.9550045914, 0.9558208346, 0.956433017, 0.9568411387, 0.9570451995, 0.958677686, 0.9594939292, 0.9607182941, 0.9613304765, 0.9625548413, 0.9631670238, 0.9637792062, 0.9660238751, 0.9662279359, 0.9674523008, 0.9680644832, 0.9692888481, 0.9696969697, 0.9699010305, 0.9705132129, 0.971533517, 0.9729619427, 0.9741863075, 0.97479849, 0.9752066116, 0.9760228548, 0.9766350372, 0.9770431589, 0.9772472197, 0.9788797062, 0.9796959494, 0.9809203143, 0.9815324967, 0.9827568615, 0.983369044, 0.9839812264, 0.9862258953, 0.9864299561, 0.987654321, 0.9882665034, 0.9894908683, 0.9898989899, 0.9901030507, 0.9907152331, 0.9917355372, 0.9931639629, 0.9943883277, 0.9950005102, 0.9954086318, 0.996224875, 0.9968370574, 0.9972451791, 0.9974492399, 0.9990817264, 0.9998979696] pattern_odd=[0.001122334, 0.001734517, 0.002958882, 0.003571064, 0.004183247, 0.006427916, 0.006631976, 0.007856341, 0.008468524, 0.009692888, 0.01010101, 0.010305071, 0.010917253, 0.011937557, 0.013365983, 0.014590348, 0.01520253, 0.015610652, 0.016426895, 0.017039078, 0.017447199, 0.01765126, 0.019283747, 0.02009999, 0.021324355, 0.021936537, 0.023160902, 0.023773084, 0.024385267, 0.026629936, 0.026833997, 0.028058361, 0.028670544, 0.029894909, 0.03030303, 0.030507091, 0.031119274, 0.032139578, 0.033568003, 0.034792368, 0.035404551, 0.035812672, 0.036628915, 0.037241098, 0.037649219, 0.03785328, 0.039485767, 0.04030201, 0.041526375, 0.042138557, 0.043362922, 0.043975105, 0.044587287, 0.046831956, 0.047036017, 0.048260382, 0.048872564, 0.050096929, 0.050505051, 0.050709111, 0.051321294, 0.052341598, 0.053770023, 0.054994388, 0.055606571, 0.056014692, 0.056830936, 0.057443118, 0.05785124, 0.0580553, 0.059687787, 0.06050403, 0.061728395, 0.062340577, 0.063564942, 0.064177125, 0.064789307, 0.067033976, 0.067238037, 0.068462402, 0.069074584, 0.070298949, 0.070707071, 0.070911132, 0.071523314, 0.072543618, 0.073972044, 0.075196409, 0.075808591, 0.076216713, 0.077032956, 0.077645138, 0.07805326, 0.078257321, 0.079889807, 0.08070605, 0.081930415, 0.082542598, 0.083766963, 0.084379145, 0.084991327, 0.087235996, 0.087440057, 0.088664422, 0.089276604, 0.090500969, 0.090909091, 0.091113152, 0.091725334, 0.092745638, 0.094174064, 0.095398429, 0.096010611, 0.096418733, 0.097234976, 0.097847158, 0.09825528, 0.098459341, 0.100091827, 0.100908071, 0.102132435, 0.102744618, 0.103968983, 0.104581165, 0.105193348, 0.107438017, 0.107642077, 0.108866442, 0.109478625, 0.110702989, 0.111111111, 0.111315172, 0.111927354, 0.112947658, 0.114376084, 0.115600449, 0.116212631, 0.116620753, 0.117436996, 0.118049179, 0.1184573, 0.118661361, 0.120293848, 0.121110091, 0.122334456, 0.122946638, 0.124171003, 0.124783185, 0.125395368, 0.127640037, 0.127844098, 0.129068462, 0.129680645, 0.13090501, 0.131313131, 0.131517192, 0.132129375, 0.133149679, 0.134578104, 0.135802469, 0.136414652, 0.136822773, 0.137639016, 0.138251199, 0.13865932, 0.138863381, 0.140495868, 0.141312111, 0.142536476, 0.143148658, 0.144373023, 0.144985206, 0.145597388, 0.147842057, 0.148046118, 0.149270483, 0.149882665, 0.15110703, 0.151515152, 0.151719212, 0.152331395, 0.153351699, 0.154780124, 0.156004489, 0.156616672, 0.157024793, 0.157841037, 0.158453219, 0.158861341, 0.159065401, 0.160697888, 0.161514131, 0.162738496, 0.163350679, 0.164575043, 0.165187226, 0.165799408, 0.168044077, 0.168248138, 0.169472503, 0.170084685, 0.17130905, 0.171717172, 0.171921233, 0.172533415, 0.173553719, 0.174982145, 0.17620651, 0.176818692, 0.177226814, 0.178043057, 0.178655239, 0.179063361, 0.179267422, 0.180899908, 0.181716151, 0.182940516, 0.183552699, 0.184777064, 0.185389246, 0.186001428, 0.188246097, 0.188450158, 0.189674523, 0.190286705, 0.19151107, 0.191919192, 0.192123253, 0.192735435, 0.193755739, 0.195184165, 0.19640853, 0.197020712, 0.197428834, 0.198245077, 0.198857259, 0.199265381, 0.199469442, 0.201101928, 0.201918172, 0.203142536, 0.203754719, 0.204979084, 0.205591266, 0.206203449, 0.208448118, 0.208652178, 0.209876543, 0.210488726, 0.211713091, 0.212121212, 0.212325273, 0.212937455, 0.213957759, 0.215386185, 0.21661055, 0.217222732, 0.217630854, 0.218447097, 0.21905928, 0.219467401, 0.219671462, 0.221303949, 0.222120192, 0.223344557, 0.223956739, 0.225181104, 0.225793286, 0.226405469, 0.228650138, 0.228854199, 0.230078563, 0.230690746, 0.231915111, 0.232323232, 0.232527293, 0.233139476, 0.23415978, 0.235588205, 0.23681257, 0.237424753, 0.237832874, 0.238649117, 0.2392613, 0.239669421, 0.239873482, 0.241505969, 0.242322212, 0.243546577, 0.244158759, 0.245383124, 0.245995307, 0.246607489, 0.248852158, 0.249056219, 0.250280584, 0.250892766, 0.252117131, 0.252525253, 0.252729313, 0.253341496, 0.2543618, 0.255790225, 0.25701459, 0.257626773, 0.258034894, 0.258851138, 0.25946332, 0.259871442, 0.260075503, 0.261707989, 0.262524232, 0.263748597, 0.26436078, 0.265585144, 0.266197327, 0.266809509, 0.269054178, 0.269258239, 0.270482604, 0.271094786, 0.272319151, 0.272727273, 0.272931334, 0.273543516, 0.27456382, 0.275992246, 0.277216611, 0.277828793, 0.278236915, 0.279053158, 0.27966534, 0.280073462, 0.280277523, 0.281910009, 0.282726252, 0.283950617, 0.2845628, 0.285787165, 0.286399347, 0.287011529, 0.289256198, 0.289460259, 0.290684624, 0.291296806, 0.292521171, 0.292929293, 0.293133354, 0.293745536, 0.29476584, 0.296194266, 0.297418631, 0.298030813, 0.298438935, 0.299255178, 0.29986736, 0.300275482, 0.300479543, 0.302112029, 0.302928273, 0.304152637, 0.30476482, 0.305989185, 0.306601367, 0.30721355, 0.309458219, 0.309662279, 0.310886644, 0.311498827, 0.312723192, 0.313131313, 0.313335374, 0.313947556, 0.31496786, 0.316396286, 0.317620651, 0.318232833, 0.318640955, 0.319457198, 0.320069381, 0.320477502, 0.320681563, 0.32231405, 0.323130293, 0.324354658, 0.32496684, 0.326191205, 0.326803387, 0.32741557, 0.329660239, 0.3298643, 0.331088664, 0.331700847, 0.332925212, 0.333333333, 0.333537394, 0.334149577, 0.335169881, 0.336598306, 0.337822671, 0.338434854, 0.338842975, 0.339659218, 0.340271401, 0.340679522, 0.340883583, 0.34251607, 0.343332313, 0.344556678, 0.34516886, 0.346393225, 0.347005408, 0.34761759, 0.349862259, 0.35006632, 0.351290685, 0.351902867, 0.353127232, 0.353535354, 0.353739414, 0.354351597, 0.355371901, 0.356800326, 0.358024691, 0.358636874, 0.359044995, 0.359861239, 0.360473421, 0.360881543, 0.361085604, 0.36271809, 0.363534333, 0.364758698, 0.365370881, 0.366595245, 0.367207428, 0.36781961, 0.370064279, 0.37026834, 0.371492705, 0.372104887, 0.373329252, 0.373737374, 0.373941435, 0.374553617, 0.375573921, 0.377002347, 0.378226712, 0.378838894, 0.379247016, 0.380063259, 0.380675441, 0.381083563, 0.381287624, 0.38292011, 0.383736353, 0.384960718, 0.385572901, 0.386797266, 0.387409448, 0.38802163, 0.390266299, 0.39047036, 0.391694725, 0.392306907, 0.393531272, 0.393939394, 0.394143455, 0.394755637, 0.395775941, 0.397204367, 0.398428732, 0.399040914, 0.399449036, 0.400265279, 0.400877461, 0.401285583, 0.401489644, 0.40312213, 0.403938374, 0.405162738, 0.405774921, 0.406999286, 0.407611468, 0.408223651, 0.41046832, 0.41067238, 0.411896745, 0.412508928, 0.413733293, 0.414141414, 0.414345475, 0.414957657, 0.415977961, 0.417406387, 0.418630752, 0.419242934, 0.419651056, 0.420467299, 0.421079482, 0.421487603, 0.421691664, 0.423324151, 0.424140394, 0.425364759, 0.425976941, 0.427201306, 0.427813488, 0.428425671, 0.43067034, 0.430874401, 0.432098765, 0.432710948, 0.433935313, 0.434343434, 0.434547495, 0.435159678, 0.436179982, 0.437608407, 0.438832772, 0.439444955, 0.439853076, 0.440669319, 0.441281502, 0.441689624, 0.441893684, 0.443526171, 0.444342414, 0.445566779, 0.446178961, 0.447403326, 0.448015509, 0.448627691, 0.45087236, 0.451076421, 0.452300786, 0.452912968, 0.454137333, 0.454545455, 0.454749515, 0.455361698, 0.456382002, 0.457810428, 0.459034792, 0.459646975, 0.460055096, 0.46087134, 0.461483522, 0.461891644, 0.462095705, 0.463728191, 0.464544434, 0.465768799, 0.466380982, 0.467605346, 0.468217529, 0.468829711, 0.47107438, 0.471278441, 0.472502806, 0.473114988, 0.474339353, 0.474747475, 0.474951536, 0.475563718, 0.476584022, 0.478012448, 0.479236813, 0.479848995, 0.480257117, 0.48107336, 0.481685542, 0.482093664, 0.482297725, 0.483930211, 0.484746454, 0.485970819, 0.486583002, 0.487807367, 0.488419549, 0.489031731, 0.4912764, 0.491480461, 0.492704826, 0.493317008, 0.494541373, 0.494949495, 0.495153556, 0.495765738, 0.496786042, 0.498214468, 0.499438833, 0.500051015, 0.500459137, 0.50127538, 0.501887562, 0.502295684, 0.502499745, 0.504132231, 0.504948475, 0.50617284, 0.506785022, 0.508009387, 0.508621569, 0.509233752, 0.511478421, 0.511682481, 0.512906846, 0.513519029, 0.514743394, 0.515151515, 0.515355576, 0.515967758, 0.516988062, 0.518416488, 0.519640853, 0.520253035, 0.520661157, 0.5214774, 0.522089583, 0.522497704, 0.522701765, 0.524334252, 0.525150495, 0.52637486, 0.526987042, 0.528211407, 0.528823589, 0.529435772, 0.531680441, 0.531884502, 0.533108866, 0.533721049, 0.534945414, 0.535353535, 0.535557596, 0.536169779, 0.537190083, 0.538618508, 0.539842873, 0.540455056, 0.540863177, 0.54167942, 0.542291603, 0.542699725, 0.542903785, 0.544536272, 0.545352515, 0.54657688, 0.547189062, 0.548413427, 0.54902561, 0.549637792, 0.551882461, 0.552086522, 0.553310887, 0.553923069, 0.555147434, 0.555555556, 0.555759616, 0.556371799, 0.557392103, 0.558820529, 0.560044893, 0.560657076, 0.561065197, 0.561881441, 0.562493623, 0.562901745, 0.563105806, 0.564738292, 0.565554535, 0.5667789, 0.567391083, 0.568615447, 0.56922763, 0.569839812, 0.572084481, 0.572288542, 0.573512907, 0.574125089, 0.575349454, 0.575757576, 0.575961637, 0.576573819, 0.577594123, 0.579022549, 0.580246914, 0.580859096, 0.581267218, 0.582083461, 0.582695643, 0.583103765, 0.583307826, 0.584940312, 0.585756555, 0.58698092, 0.587593103, 0.588817468, 0.58942965, 0.590041832, 0.592286501, 0.592490562, 0.593714927, 0.594327109, 0.595551474, 0.595959596, 0.596163657, 0.596775839, 0.597796143, 0.599224569, 0.600448934, 0.601061116, 0.601469238, 0.602285481, 0.602897664, 0.603305785, 0.603509846, 0.605142332, 0.605958576, 0.607182941, 0.607795123, 0.609019488, 0.60963167, 0.610243853, 0.612488522, 0.612692582, 0.613916947, 0.61452913, 0.615753495, 0.616161616, 0.616365677, 0.616977859, 0.617998163, 0.619426589, 0.620650954, 0.621263136, 0.621671258, 0.622487501, 0.623099684, 0.623507805, 0.623711866, 0.625344353, 0.626160596, 0.627384961, 0.627997143, 0.629221508, 0.62983369, 0.630445873, 0.632690542, 0.632894603, 0.634118967, 0.63473115, 0.635955515, 0.636363636, 0.636567697, 0.63717988, 0.638200184, 0.639628609, 0.640852974, 0.641465157, 0.641873278, 0.642689521, 0.643301704, 0.643709826, 0.643913886, 0.645546373, 0.646362616, 0.647586981, 0.648199163, 0.649423528, 0.650035711, 0.650647893, 0.652892562, 0.653096623, 0.654320988, 0.65493317, 0.656157535, 0.656565657, 0.656769717, 0.6573819, 0.658402204, 0.65983063, 0.661054994, 0.661667177, 0.662075298, 0.662891542, 0.663503724, 0.663911846, 0.664115907, 0.665748393, 0.666564636, 0.667789001, 0.668401184, 0.669625548, 0.670237731, 0.670849913, 0.673094582, 0.673298643, 0.674523008, 0.67513519, 0.676359555, 0.676767677, 0.676971738, 0.67758392, 0.678604224, 0.68003265, 0.681257015, 0.681869197, 0.682277319, 0.683093562, 0.683705744, 0.684113866, 0.684317927, 0.685950413, 0.686766656, 0.687991021, 0.688603204, 0.689827569, 0.690439751, 0.691051933, 0.693296602, 0.693500663, 0.694725028, 0.69533721, 0.696561575, 0.696969697, 0.697173758, 0.69778594, 0.698806244, 0.70023467, 0.701459035, 0.702071217, 0.702479339, 0.703295582, 0.703907765, 0.704315886, 0.704519947, 0.706152433, 0.706968677, 0.708193042, 0.708805224, 0.710029589, 0.710641771, 0.711253954, 0.713498623, 0.713702683, 0.714927048, 0.715539231, 0.716763596, 0.717171717, 0.717375778, 0.71798796, 0.719008264, 0.72043669, 0.721661055, 0.722273237, 0.722681359, 0.723497602, 0.724109785, 0.724517906, 0.724721967, 0.726354454, 0.727170697, 0.728395062, 0.729007244, 0.730231609, 0.730843791, 0.731455974, 0.733700643, 0.733904704, 0.735129068, 0.735741251, 0.736965616, 0.737373737, 0.737577798, 0.738189981, 0.739210285, 0.74063871, 0.741863075, 0.742475258, 0.742883379, 0.743699622, 0.744311805, 0.744719927, 0.744923987, 0.746556474, 0.747372717, 0.748597082, 0.749209264, 0.750433629, 0.751045812, 0.751657994, 0.753902663, 0.754106724, 0.755331089, 0.755943271, 0.757167636, 0.757575758, 0.757779818, 0.758392001, 0.759412305, 0.760840731, 0.762065095, 0.762677278, 0.763085399, 0.763901643, 0.764513825, 0.764921947, 0.765126008, 0.766758494, 0.767574737, 0.768799102, 0.769411285, 0.770635649, 0.771247832, 0.771860014, 0.774104683, 0.774308744, 0.775533109, 0.776145291, 0.777369656, 0.777777778, 0.777981839, 0.778594021, 0.779614325, 0.781042751, 0.782267116, 0.782879298, 0.78328742, 0.784103663, 0.784715845, 0.785123967, 0.785328028, 0.786960514, 0.787776757, 0.789001122, 0.789613305, 0.79083767, 0.791449852, 0.792062034, 0.794306703, 0.794510764, 0.795735129, 0.796347311, 0.797571676, 0.797979798, 0.798183859, 0.798796041, 0.799816345, 0.801244771, 0.802469136, 0.803081318, 0.80348944, 0.804305683, 0.804917866, 0.805325987, 0.805530048, 0.807162534, 0.807978778, 0.809203143, 0.809815325, 0.81103969, 0.811651872, 0.812264055, 0.814508724, 0.814712784, 0.815937149, 0.816549332, 0.817773697, 0.818181818, 0.818385879, 0.818998061, 0.820018365, 0.821446791, 0.822671156, 0.823283338, 0.82369146, 0.824507703, 0.825119886, 0.825528007, 0.825732068, 0.827364555, 0.828180798, 0.829405163, 0.830017345, 0.83124171, 0.831853892, 0.832466075, 0.834710744, 0.834914805, 0.836139169, 0.836751352, 0.837975717, 0.838383838, 0.838587899, 0.839200082, 0.840220386, 0.841648811, 0.842873176, 0.843485359, 0.84389348, 0.844709723, 0.845321906, 0.845730028, 0.845934088, 0.847566575, 0.848382818, 0.849607183, 0.850219365, 0.85144373, 0.852055913, 0.852668095, 0.854912764, 0.855116825, 0.85634119, 0.856953372, 0.858177737, 0.858585859, 0.858789919, 0.859402102, 0.860422406, 0.861850832, 0.863075196, 0.863687379, 0.8640955, 0.864911744, 0.865523926, 0.865932048, 0.866136109, 0.867768595, 0.868584838, 0.869809203, 0.870421386, 0.87164575, 0.872257933, 0.872870115, 0.875114784, 0.875318845, 0.87654321, 0.877155392, 0.878379757, 0.878787879, 0.87899194, 0.879604122, 0.880624426, 0.882052852, 0.883277217, 0.883889399, 0.884297521, 0.885113764, 0.885725946, 0.886134068, 0.886338129, 0.887970615, 0.888786858, 0.890011223, 0.890623406, 0.891847771, 0.892459953, 0.893072135, 0.895316804, 0.895520865, 0.89674523, 0.897357413, 0.898581777, 0.898989899, 0.89919396, 0.899806142, 0.900826446, 0.902254872, 0.903479237, 0.904091419, 0.904499541, 0.905315784, 0.905927967, 0.906336088, 0.906540149, 0.908172635, 0.908988879, 0.910213244, 0.910825426, 0.912049791, 0.912661973, 0.913274156, 0.915518825, 0.915722885, 0.91694725, 0.917559433, 0.918783798, 0.919191919, 0.91939598, 0.920008162, 0.921028466, 0.922456892, 0.923681257, 0.924293439, 0.924701561, 0.925517804, 0.926129987, 0.926538108, 0.926742169, 0.928374656, 0.929190899, 0.930415264, 0.931027446, 0.932251811, 0.932863993, 0.933476176, 0.935720845, 0.935924906, 0.93714927, 0.937761453, 0.938985818, 0.939393939, 0.939598, 0.940210183, 0.941230487, 0.942658912, 0.943883277, 0.94449546, 0.944903581, 0.945719825, 0.946332007, 0.946740129, 0.946944189, 0.948576676, 0.949392919, 0.950617284, 0.951229466, 0.952453831, 0.953066014, 0.953678196, 0.955922865, 0.956126926, 0.957351291, 0.957963473, 0.959187838, 0.95959596, 0.95980002, 0.960412203, 0.961432507, 0.962860933, 0.964085297, 0.96469748, 0.965105601, 0.965921845, 0.966534027, 0.966942149, 0.96714621, 0.968778696, 0.969594939, 0.970819304, 0.971431487, 0.972655851, 0.973268034, 0.973880216, 0.976124885, 0.976328946, 0.977553311, 0.978165493, 0.979389858, 0.97979798, 0.980002041, 0.980614223, 0.981634527, 0.983062953, 0.984287318, 0.9848995, 0.985307622, 0.986123865, 0.986736047, 0.987144169, 0.98734823, 0.988980716, 0.989796959, 0.991021324, 0.991633507, 0.992857872, 0.993470054, 0.994082237, 0.996326905, 0.996530966, 0.997755331, 0.998367514, 0.999591878] pattern_even=[0.0, 0.0002040608, 0.0008162432, 0.0018365473, 0.003264973, 0.0044893378, 0.0051015203, 0.0055096419, 0.0063258851, 0.0069380675, 0.0073461892, 0.00755025, 0.0091827365, 0.0099989797, 0.0112233446, 0.011835527, 0.0130598918, 0.0136720743, 0.0142842567, 0.0165289256, 0.0167329864, 0.0179573513, 0.0185695337, 0.0197938986, 0.0202020202, 0.020406081, 0.0210182634, 0.0220385675, 0.0234669932, 0.024691358, 0.0253035405, 0.0257116621, 0.0265279053, 0.0271400877, 0.0275482094, 0.0277522702, 0.0293847567, 0.0302009999, 0.0314253648, 0.0320375472, 0.0332619121, 0.0338740945, 0.0344862769, 0.0367309458, 0.0369350066, 0.0381593715, 0.0387715539, 0.0399959188, 0.0404040404, 0.0406081012, 0.0412202836, 0.0422405877, 0.0436690134, 0.0448933782, 0.0455055607, 0.0459136823, 0.0467299255, 0.0473421079, 0.0477502296, 0.0479542904, 0.0495867769, 0.0504030201, 0.051627385, 0.0522395674, 0.0534639323, 0.0540761147, 0.0546882971, 0.056932966, 0.0571370268, 0.0583613917, 0.0589735741, 0.060197939, 0.0606060606, 0.0608101214, 0.0614223038, 0.0624426079, 0.0638710336, 0.0650953984, 0.0657075809, 0.0661157025, 0.0669319457, 0.0675441282, 0.0679522498, 0.0681563106, 0.0697887971, 0.0706050403, 0.0718294052, 0.0724415876, 0.0736659525, 0.0742781349, 0.0748903173, 0.0771349862, 0.077339047, 0.0785634119, 0.0791755943, 0.0803999592, 0.0808080808, 0.0810121416, 0.081624324, 0.0826446281, 0.0840730538, 0.0852974186, 0.0859096011, 0.0863177227, 0.0871339659, 0.0877461484, 0.08815427, 0.0883583308, 0.0899908173, 0.0908070605, 0.0920314254, 0.0926436078, 0.0938679727, 0.0944801551, 0.0950923375, 0.0973370064, 0.0975410672, 0.0987654321, 0.0993776145, 0.1006019794, 0.101010101, 0.1012141618, 0.1018263443, 0.1028466483, 0.104275074, 0.1054994388, 0.1061116213, 0.1065197429, 0.1073359861, 0.1079481686, 0.1083562902, 0.108560351, 0.1101928375, 0.1110090807, 0.1122334456, 0.112845628, 0.1140699929, 0.1146821753, 0.1152943577, 0.1175390266, 0.1177430874, 0.1189674523, 0.1195796347, 0.1208039996, 0.1212121212, 0.121416182, 0.1220283645, 0.1230486685, 0.1244770942, 0.125701459, 0.1263136415, 0.1267217631, 0.1275380063, 0.1281501888, 0.1285583104, 0.1287623712, 0.1303948577, 0.1312111009, 0.1324354658, 0.1330476482, 0.1342720131, 0.1348841955, 0.1354963779, 0.1377410468, 0.1379451076, 0.1391694725, 0.1397816549, 0.1410060198, 0.1414141414, 0.1416182022, 0.1422303847, 0.1432506887, 0.1446791144, 0.1459034792, 0.1465156617, 0.1469237833, 0.1477400265, 0.148352209, 0.1487603306, 0.1489643914, 0.1505968779, 0.1514131211, 0.152637486, 0.1532496684, 0.1544740333, 0.1550862157, 0.1556983981, 0.157943067, 0.1581471278, 0.1593714927, 0.1599836751, 0.16120804, 0.1616161616, 0.1618202224, 0.1624324049, 0.1634527089, 0.1648811346, 0.1661054994, 0.1667176819, 0.1671258035, 0.1679420467, 0.1685542292, 0.1689623508, 0.1691664116, 0.1707988981, 0.1716151413, 0.1728395062, 0.1734516886, 0.1746760535, 0.1752882359, 0.1759004183, 0.1781450872, 0.178349148, 0.1795735129, 0.1801856953, 0.1814100602, 0.1818181818, 0.1820222426, 0.1826344251, 0.1836547291, 0.1850831548, 0.1863075196, 0.1869197021, 0.1873278237, 0.1881440669, 0.1887562494, 0.189164371, 0.1893684318, 0.1910009183, 0.1918171615, 0.1930415264, 0.1936537088, 0.1948780737, 0.1954902561, 0.1961024385, 0.1983471074, 0.1985511682, 0.1997755331, 0.2003877155, 0.2016120804, 0.202020202, 0.2022242628, 0.2028364453, 0.2038567493, 0.205285175, 0.2065095398, 0.2071217223, 0.2075298439, 0.2083460871, 0.2089582696, 0.2093663912, 0.209570452, 0.2112029385, 0.2120191817, 0.2132435466, 0.213855729, 0.2150800939, 0.2156922763, 0.2163044587, 0.2185491276, 0.2187531885, 0.2199775533, 0.2205897357, 0.2218141006, 0.2222222222, 0.222426283, 0.2230384655, 0.2240587695, 0.2254871952, 0.22671156, 0.2273237425, 0.2277318641, 0.2285481073, 0.2291602898, 0.2295684114, 0.2297724722, 0.2314049587, 0.2322212019, 0.2334455668, 0.2340577492, 0.2352821141, 0.2358942965, 0.2365064789, 0.2387511478, 0.2389552087, 0.2401795735, 0.2407917559, 0.2420161208, 0.2424242424, 0.2426283032, 0.2432404857, 0.2442607897, 0.2456892154, 0.2469135802, 0.2475257627, 0.2479338843, 0.2487501275, 0.24936231, 0.2497704316, 0.2499744924, 0.2516069789, 0.2524232221, 0.253647587, 0.2542597694, 0.2554841343, 0.2560963167, 0.2567084991, 0.258953168, 0.2591572289, 0.2603815937, 0.2609937761, 0.262218141, 0.2626262626, 0.2628303234, 0.2634425059, 0.2644628099, 0.2658912356, 0.2671156004, 0.2677277829, 0.2681359045, 0.2689521477, 0.2695643302, 0.2699724518, 0.2701765126, 0.2718089991, 0.2726252423, 0.2738496072, 0.2744617896, 0.2756861545, 0.2762983369, 0.2769105193, 0.2791551882, 0.2793592491, 0.2805836139, 0.2811957963, 0.2824201612, 0.2828282828, 0.2830323436, 0.2836445261, 0.2846648301, 0.2860932558, 0.2873176207, 0.2879298031, 0.2883379247, 0.2891541679, 0.2897663504, 0.290174472, 0.2903785328, 0.2920110193, 0.2928272625, 0.2940516274, 0.2946638098, 0.2958881747, 0.2965003571, 0.2971125395, 0.2993572084, 0.2995612693, 0.3007856341, 0.3013978165, 0.3026221814, 0.303030303, 0.3032343638, 0.3038465463, 0.3048668503, 0.306295276, 0.3075196409, 0.3081318233, 0.3085399449, 0.3093561881, 0.3099683706, 0.3103764922, 0.310580553, 0.3122130395, 0.3130292827, 0.3142536476, 0.31486583, 0.3160901949, 0.3167023773, 0.3173145597, 0.3195592287, 0.3197632895, 0.3209876543, 0.3215998368, 0.3228242016, 0.3232323232, 0.323436384, 0.3240485665, 0.3250688705, 0.3264972962, 0.3277216611, 0.3283338435, 0.3287419651, 0.3295582083, 0.3301703908, 0.3305785124, 0.3307825732, 0.3324150597, 0.3332313029, 0.3344556678, 0.3350678502, 0.3362922151, 0.3369043975, 0.3375165799, 0.3397612489, 0.3399653097, 0.3411896745, 0.341801857, 0.3430262218, 0.3434343434, 0.3436384042, 0.3442505867, 0.3452708907, 0.3466993164, 0.3479236813, 0.3485358637, 0.3489439853, 0.3497602285, 0.350372411, 0.3507805326, 0.3509845934, 0.3526170799, 0.3534333231, 0.354657688, 0.3552698704, 0.3564942353, 0.3571064177, 0.3577186001, 0.3599632691, 0.3601673299, 0.3613916947, 0.3620038772, 0.363228242, 0.3636363636, 0.3638404244, 0.3644526069, 0.3654729109, 0.3669013366, 0.3681257015, 0.3687378839, 0.3691460055, 0.3699622488, 0.3705744312, 0.3709825528, 0.3711866136, 0.3728191001, 0.3736353433, 0.3748597082, 0.3754718906, 0.3766962555, 0.3773084379, 0.3779206203, 0.3801652893, 0.3803693501, 0.3815937149, 0.3822058974, 0.3834302622, 0.3838383838, 0.3840424446, 0.3846546271, 0.3856749311, 0.3871033568, 0.3883277217, 0.3889399041, 0.3893480257, 0.390164269, 0.3907764514, 0.391184573, 0.3913886338, 0.3930211203, 0.3938373635, 0.3950617284, 0.3956739108, 0.3968982757, 0.3975104581, 0.3981226405, 0.4003673095, 0.4005713703, 0.4017957351, 0.4024079176, 0.4036322824, 0.404040404, 0.4042444649, 0.4048566473, 0.4058769513, 0.407305377, 0.4085297419, 0.4091419243, 0.4095500459, 0.4103662892, 0.4109784716, 0.4113865932, 0.411590654, 0.4132231405, 0.4140393837, 0.4152637486, 0.415875931, 0.4171002959, 0.4177124783, 0.4183246607, 0.4205693297, 0.4207733905, 0.4219977553, 0.4226099378, 0.4238343026, 0.4242424242, 0.4244464851, 0.4250586675, 0.4260789715, 0.4275073972, 0.4287317621, 0.4293439445, 0.4297520661, 0.4305683094, 0.4311804918, 0.4315886134, 0.4317926742, 0.4334251607, 0.4342414039, 0.4354657688, 0.4360779512, 0.4373023161, 0.4379144985, 0.438526681, 0.4407713499, 0.4409754107, 0.4421997755, 0.442811958, 0.4440363228, 0.4444444444, 0.4446485053, 0.4452606877, 0.4462809917, 0.4477094174, 0.4489337823, 0.4495459647, 0.4499540863, 0.4507703296, 0.451382512, 0.4517906336, 0.4519946944, 0.4536271809, 0.4544434241, 0.455667789, 0.4562799714, 0.4575043363, 0.4581165187, 0.4587287012, 0.4609733701, 0.4611774309, 0.4624017957, 0.4630139782, 0.464238343, 0.4646464646, 0.4648505255, 0.4654627079, 0.4664830119, 0.4679114376, 0.4691358025, 0.4697479849, 0.4701561065, 0.4709723498, 0.4715845322, 0.4719926538, 0.4721967146, 0.4738292011, 0.4746454443, 0.4758698092, 0.4764819916, 0.4777063565, 0.4783185389, 0.4789307214, 0.4811753903, 0.4813794511, 0.4826038159, 0.4832159984, 0.4844403632, 0.4848484848, 0.4850525457, 0.4856647281, 0.4866850321, 0.4881134578, 0.4893378227, 0.4899500051, 0.4903581267, 0.49117437, 0.4917865524, 0.492194674, 0.4923987348, 0.4940312213, 0.4948474645, 0.4960718294, 0.4966840118, 0.4979083767, 0.4985205591, 0.4991327416, 0.5013774105, 0.5015814713, 0.5028058361, 0.5034180186, 0.5046423834, 0.5050505051, 0.5052545659, 0.5058667483, 0.5068870523, 0.508315478, 0.5095398429, 0.5101520253, 0.5105601469, 0.5113763902, 0.5119885726, 0.5123966942, 0.512600755, 0.5142332415, 0.5150494847, 0.5162738496, 0.516886032, 0.5181103969, 0.5187225793, 0.5193347618, 0.5215794307, 0.5217834915, 0.5230078563, 0.5236200388, 0.5248444036, 0.5252525253, 0.5254565861, 0.5260687685, 0.5270890725, 0.5285174982, 0.5297418631, 0.5303540455, 0.5307621671, 0.5315784104, 0.5321905928, 0.5325987144, 0.5328027752, 0.5344352617, 0.5352515049, 0.5364758698, 0.5370880522, 0.5383124171, 0.5389245995, 0.539536782, 0.5417814509, 0.5419855117, 0.5432098765, 0.543822059, 0.5450464238, 0.5454545455, 0.5456586063, 0.5462707887, 0.5472910927, 0.5487195184, 0.5499438833, 0.5505560657, 0.5509641873, 0.5517804306, 0.552392613, 0.5528007346, 0.5530047954, 0.5546372819, 0.5554535252, 0.55667789, 0.5572900724, 0.5585144373, 0.5591266197, 0.5597388022, 0.5619834711, 0.5621875319, 0.5634118967, 0.5640240792, 0.565248444, 0.5656565657, 0.5658606265, 0.5664728089, 0.5674931129, 0.5689215386, 0.5701459035, 0.5707580859, 0.5711662075, 0.5719824508, 0.5725946332, 0.5730027548, 0.5732068156, 0.5748393021, 0.5756555454, 0.5768799102, 0.5774920926, 0.5787164575, 0.5793286399, 0.5799408224, 0.5821854913, 0.5823895521, 0.5836139169, 0.5842260994, 0.5854504642, 0.5858585859, 0.5860626467, 0.5866748291, 0.5876951332, 0.5891235588, 0.5903479237, 0.5909601061, 0.5913682277, 0.592184471, 0.5927966534, 0.593204775, 0.5934088358, 0.5950413223, 0.5958575656, 0.5970819304, 0.5976941128, 0.5989184777, 0.5995306601, 0.6001428426, 0.6023875115, 0.6025915723, 0.6038159371, 0.6044281196, 0.6056524844, 0.6060606061, 0.6062646669, 0.6068768493, 0.6078971534, 0.609325579, 0.6105499439, 0.6111621263, 0.6115702479, 0.6123864912, 0.6129986736, 0.6134067952, 0.613610856, 0.6152433425, 0.6160595858, 0.6172839506, 0.617896133, 0.6191204979, 0.6197326803, 0.6203448628, 0.6225895317, 0.6227935925, 0.6240179574, 0.6246301398, 0.6258545046, 0.6262626263, 0.6264666871, 0.6270788695, 0.6280991736, 0.6295275992, 0.6307519641, 0.6313641465, 0.6317722681, 0.6325885114, 0.6332006938, 0.6336088154, 0.6338128762, 0.6354453627, 0.636261606, 0.6374859708, 0.6380981533, 0.6393225181, 0.6399347005, 0.640546883, 0.6427915519, 0.6429956127, 0.6442199776, 0.64483216, 0.6460565248, 0.6464646465, 0.6466687073, 0.6472808897, 0.6483011938, 0.6497296194, 0.6509539843, 0.6515661667, 0.6519742883, 0.6527905316, 0.653402714, 0.6538108356, 0.6540148964, 0.6556473829, 0.6564636262, 0.657687991, 0.6583001735, 0.6595245383, 0.6601367207, 0.6607489032, 0.6629935721, 0.6631976329, 0.6644219978, 0.6650341802, 0.666258545, 0.6666666667, 0.6668707275, 0.6674829099, 0.668503214, 0.6699316396, 0.6711560045, 0.6717681869, 0.6721763085, 0.6729925518, 0.6736047342, 0.6740128558, 0.6742169166, 0.6758494031, 0.6766656464, 0.6778900112, 0.6785021937, 0.6797265585, 0.6803387409, 0.6809509234, 0.6831955923, 0.6833996531, 0.684624018, 0.6852362004, 0.6864605652, 0.6868686869, 0.6870727477, 0.6876849301, 0.6887052342, 0.6901336598, 0.6913580247, 0.6919702071, 0.6923783287, 0.693194572, 0.6938067544, 0.694214876, 0.6944189368, 0.6960514233, 0.6968676666, 0.6980920314, 0.6987042139, 0.6999285787, 0.7005407611, 0.7011529436, 0.7033976125, 0.7036016733, 0.7048260382, 0.7054382206, 0.7066625855, 0.7070707071, 0.7072747679, 0.7078869503, 0.7089072544, 0.71033568, 0.7115600449, 0.7121722273, 0.7125803489, 0.7133965922, 0.7140087746, 0.7144168962, 0.714620957, 0.7162534435, 0.7170696868, 0.7182940516, 0.7189062341, 0.7201305989, 0.7207427813, 0.7213549638, 0.7235996327, 0.7238036935, 0.7250280584, 0.7256402408, 0.7268646057, 0.7272727273, 0.7274767881, 0.7280889705, 0.7291092746, 0.7305377002, 0.7317620651, 0.7323742475, 0.7327823691, 0.7335986124, 0.7342107948, 0.7346189164, 0.7348229772, 0.7364554637, 0.737271707, 0.7384960718, 0.7391082543, 0.7403326191, 0.7409448016, 0.741556984, 0.7438016529, 0.7440057137, 0.7452300786, 0.745842261, 0.7470666259, 0.7474747475, 0.7476788083, 0.7482909907, 0.7493112948, 0.7507397204, 0.7519640853, 0.7525762677, 0.7529843893, 0.7538006326, 0.754412815, 0.7548209366, 0.7550249974, 0.7566574839, 0.7574737272, 0.758698092, 0.7593102745, 0.7605346393, 0.7611468218, 0.7617590042, 0.7640036731, 0.7642077339, 0.7654320988, 0.7660442812, 0.7672686461, 0.7676767677, 0.7678808285, 0.7684930109, 0.769513315, 0.7709417406, 0.7721661055, 0.7727782879, 0.7731864096, 0.7740026528, 0.7746148352, 0.7750229568, 0.7752270177, 0.7768595041, 0.7776757474, 0.7789001122, 0.7795122947, 0.7807366595, 0.781348842, 0.7819610244, 0.7842056933, 0.7844097541, 0.785634119, 0.7862463014, 0.7874706663, 0.7878787879, 0.7880828487, 0.7886950311, 0.7897153352, 0.7911437608, 0.7923681257, 0.7929803081, 0.7933884298, 0.794204673, 0.7948168554, 0.795224977, 0.7954290379, 0.7970615243, 0.7978777676, 0.7991021324, 0.7997143149, 0.8009386797, 0.8015508622, 0.8021630446, 0.8044077135, 0.8046117743, 0.8058361392, 0.8064483216, 0.8076726865, 0.8080808081, 0.8082848689, 0.8088970513, 0.8099173554, 0.811345781, 0.8125701459, 0.8131823283, 0.81359045, 0.8144066932, 0.8150188756, 0.8154269972, 0.8156310581, 0.8172635445, 0.8180797878, 0.8193041526, 0.8199163351, 0.8211406999, 0.8217528824, 0.8223650648, 0.8246097337, 0.8248137945, 0.8260381594, 0.8266503418, 0.8278747067, 0.8282828283, 0.8284868891, 0.8290990715, 0.8301193756, 0.8315478012, 0.8327721661, 0.8333843485, 0.8337924702, 0.8346087134, 0.8352208958, 0.8356290174, 0.8358330783, 0.8374655647, 0.838281808, 0.8395061728, 0.8401183553, 0.8413427201, 0.8419549026, 0.842567085, 0.8448117539, 0.8450158147, 0.8462401796, 0.846852362, 0.8480767269, 0.8484848485, 0.8486889093, 0.8493010917, 0.8503213958, 0.8517498214, 0.8529741863, 0.8535863687, 0.8539944904, 0.8548107336, 0.855422916, 0.8558310376, 0.8560350985, 0.8576675849, 0.8584838282, 0.859708193, 0.8603203755, 0.8615447403, 0.8621569228, 0.8627691052, 0.8650137741, 0.8652178349, 0.8664421998, 0.8670543822, 0.8682787471, 0.8686868687, 0.8688909295, 0.8695031119, 0.870523416, 0.8719518416, 0.8731762065, 0.8737883889, 0.8741965106, 0.8750127538, 0.8756249362, 0.8760330579, 0.8762371187, 0.8778696051, 0.8786858484, 0.8799102132, 0.8805223957, 0.8817467605, 0.882358943, 0.8829711254, 0.8852157943, 0.8854198551, 0.88664422, 0.8872564024, 0.8884807673, 0.8888888889, 0.8890929497, 0.8897051321, 0.8907254362, 0.8921538619, 0.8933782267, 0.8939904091, 0.8943985308, 0.895214774, 0.8958269564, 0.8962350781, 0.8964391389, 0.8980716253, 0.8988878686, 0.9001122334, 0.9007244159, 0.9019487807, 0.9025609632, 0.9031731456, 0.9054178145, 0.9056218753, 0.9068462402, 0.9074584226, 0.9086827875, 0.9090909091, 0.9092949699, 0.9099071523, 0.9109274564, 0.9123558821, 0.9135802469, 0.9141924293, 0.914600551, 0.9154167942, 0.9160289766, 0.9164370983, 0.9166411591, 0.9182736455, 0.9190898888, 0.9203142536, 0.9209264361, 0.9221508009, 0.9227629834, 0.9233751658, 0.9256198347, 0.9258238955, 0.9270482604, 0.9276604428, 0.9288848077, 0.9292929293, 0.9294969901, 0.9301091725, 0.9311294766, 0.9325579023, 0.9337822671, 0.9343944495, 0.9348025712, 0.9356188144, 0.9362309968, 0.9366391185, 0.9368431793, 0.9384756657, 0.939291909, 0.9405162739, 0.9411284563, 0.9423528211, 0.9429650036, 0.943577186, 0.9458218549, 0.9460259157, 0.9472502806, 0.947862463, 0.9490868279, 0.9494949495, 0.9496990103, 0.9503111927, 0.9513314968, 0.9527599225, 0.9539842873, 0.9545964697, 0.9550045914, 0.9558208346, 0.956433017, 0.9568411387, 0.9570451995, 0.958677686, 0.9594939292, 0.9607182941, 0.9613304765, 0.9625548413, 0.9631670238, 0.9637792062, 0.9660238751, 0.9662279359, 0.9674523008, 0.9680644832, 0.9692888481, 0.9696969697, 0.9699010305, 0.9705132129, 0.971533517, 0.9729619427, 0.9741863075, 0.97479849, 0.9752066116, 0.9760228548, 0.9766350372, 0.9770431589, 0.9772472197, 0.9788797062, 0.9796959494, 0.9809203143, 0.9815324967, 0.9827568615, 0.983369044, 0.9839812264, 0.9862258953, 0.9864299561, 0.987654321, 0.9882665034, 0.9894908683, 0.9898989899, 0.9901030507, 0.9907152331, 0.9917355372, 0.9931639629, 0.9943883277, 0.9950005102, 0.9954086318, 0.996224875, 0.9968370574, 0.9972451791, 0.9974492399, 0.9990817264, 0.9998979696] averages_even={0.0: [0.0, 0.6666666666667, 0.3333333333333], 0.306295276: [0.5656565656566, 0.6565656565657, 0.4343434343434, 0.3434343434343], 0.2738496072: [0.2222222222222, 0.7777777777778], 0.5858585859: [0.0, 0.3333333333333, 0.6666666666667], 0.7789001122: [0.2222222222222, 0.7777777777778], 0.121416182: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.4856647281: [0.1717171717172, 0.7171717171717, 0.8282828282828, 0.2828282828283], 0.4207733905: [0.2323232323232, 0.7676767676768, 0.6767676767677, 0.3232323232323], 0.3883277217: [0.4444444444444, 0.5555555555556], 0.323436384: [0.1414141414141, 0.8585858585859, 0.5858585858586, 0.4141414141414], 0.8741965106: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.0367309458: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.1469237833: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.003264973: [0.5656565656566, 0.6565656565657, 0.4343434343434, 0.3434343434343], 0.4379144985: [0.0808080808081, 0.1919191919192, 0.8080808080808, 0.9191919191919], 0.9788797062: [0.030303030303, 0.969696969697, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.9460259157: [0.2323232323232, 0.7676767676768, 0.6767676767677, 0.3232323232323], 0.4407713499: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.1101928375: [0.969696969697, 0.030303030303, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.7842056933: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.3434343434: [0.0, 0.6666666666667, 0.3333333333333], 0.1893684318: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.7250280584: [0.8888888888889, 0.1111111111111], 0.011835527: [0.2626262626263, 0.7373737373737, 0.6262626262626, 0.3737373737374], 0.6023875115: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.5303540455: [0.9292929292929, 0.0707070707071, 0.2929292929293, 0.7070707070707], 0.0197938986: [0.020202020202, 0.979797979798, 0.2020202020202, 0.7979797979798], 0.4903581267: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.5389245995: [0.0808080808081, 0.1919191919192, 0.9191919191919, 0.8080808080808], 0.9864299561: [0.2323232323232, 0.7676767676768, 0.6767676767677, 0.3232323232323], 0.5248444036: [0.020202020202, 0.2020202020202, 0.979797979798, 0.7979797979798], 0.3930211203: [0.969696969697, 0.030303030303, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.8890929497: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.9366391185: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.7593102745: [0.2626262626263, 0.7373737373737, 0.3737373737374, 0.6262626262626], 0.640546883: [0.1616161616162, 0.8383838383838, 0.6161616161616, 0.3838383838384], 0.6295275992: [0.3434343434343, 0.6565656565657, 0.4343434343434, 0.5656565656566], 0.4848484848: [0.0, 0.3333333333333, 0.6666666666667], 0.1330476482: [0.2626262626263, 0.7373737373737, 0.6262626262626, 0.3737373737374], 0.2689521477: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.2824201612: [0.020202020202, 0.979797979798, 0.2020202020202, 0.7979797979798], 0.8125701459: [0.4444444444444, 0.5555555555556], 0.9882665034: [0.040404040404, 0.4040404040404, 0.959595959596, 0.5959595959596], 0.9558208346: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.2389552087: [0.3232323232323, 0.7676767676768, 0.2323232323232, 0.6767676767677], 0.8374655647: [0.030303030303, 0.969696969697, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.2065095398: [0.4444444444444, 0.5555555555556], 0.7493112948: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.415875931: [0.2626262626263, 0.7373737373737, 0.6262626262626, 0.3737373737374], 0.6246301398: [0.040404040404, 0.4040404040404, 0.959595959596, 0.5959595959596], 0.3834302622: [0.020202020202, 0.979797979798, 0.7979797979798, 0.2020202020202], 0.0877461484: [0.2525252525253, 0.5252525252525, 0.4747474747475, 0.7474747474747], 0.2860932558: [0.5656565656566, 0.6565656565657, 0.4343434343434, 0.3434343434343], 0.253647587: [0.2222222222222, 0.7777777777778], 0.7189062341: [0.2626262626263, 0.7373737373737, 0.3737373737374, 0.6262626262626], 0.2475257627: [0.9292929292929, 0.2929292929293, 0.7070707070707, 0.0707070707071], 0.7125803489: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.1244770942: [0.5656565656566, 0.6565656565657, 0.4343434343434, 0.3434343434343], 0.4654627079: [0.1717171717172, 0.7171717171717, 0.8282828282828, 0.2828282828283], 0.4005713703: [0.3232323232323, 0.7676767676768, 0.2323232323232, 0.6767676767677], 0.3681257015: [0.4444444444444, 0.5555555555556], 0.0920314254: [0.2222222222222, 0.7777777777778], 0.3032343638: [0.1414141414141, 0.8585858585859, 0.5858585858586, 0.4141414141414], 0.5472910927: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.391184573: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.8962350781: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.4826038159: [0.1111111111111, 0.8888888888889], 0.6650341802: [0.040404040404, 0.4040404040404, 0.959595959596, 0.5959595959596], 0.3526170799: [0.969696969697, 0.030303030303, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.9384756657: [0.030303030303, 0.969696969697, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.794204673: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.4205693297: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.7391082543: [0.2626262626263, 0.7373737373737, 0.3737373737374, 0.6262626262626], 0.7438016529: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.1616161616: [0.0, 0.6666666666667, 0.3333333333333], 0.4048566473: [0.1717171717172, 0.7171717171717, 0.8282828282828, 0.2828282828283], 0.6197326803: [0.0808080808081, 0.1919191919192, 0.9191919191919, 0.8080808080808], 0.9190898888: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.9343944495: [0.9292929292929, 0.0707070707071, 0.2929292929293, 0.7070707070707], 0.1175390266: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.983369044: [0.0808080808081, 0.1919191919192, 0.9191919191919, 0.8080808080808], 0.5876951332: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.3728191001: [0.969696969697, 0.030303030303, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.6987042139: [0.2626262626263, 0.7373737373737, 0.3737373737374, 0.6262626262626], 0.1716151413: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.4646464646: [0.0, 0.3333333333333, 0.6666666666667], 0.8695031119: [0.1717171717172, 0.7171717171717, 0.8282828282828, 0.2828282828283], 0.1391694725: [0.8888888888889, 0.1111111111111], 0.8682787471: [0.020202020202, 0.2020202020202, 0.979797979798, 0.7979797979798], 0.7721661055: [0.4444444444444, 0.5555555555556], 0.8652178349: [0.2323232323232, 0.7676767676768, 0.6767676767677, 0.3232323232323], 0.6717681869: [0.9292929292929, 0.0707070707071, 0.2929292929293, 0.7070707070707], 0.9154167942: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.8829711254: [0.1616161616162, 0.3838383838384, 0.6161616161616, 0.8383838383838], 0.785634119: [0.8888888888889, 0.1111111111111], 0.1801856953: [0.040404040404, 0.4040404040404, 0.959595959596, 0.5959595959596], 0.3956739108: [0.2626262626263, 0.7373737373737, 0.6262626262626, 0.3737373737374], 0.0369350066: [0.3232323232323, 0.7676767676768, 0.2323232323232, 0.6767676767677], 0.1477400265: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.3307825732: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.7403326191: [0.1313131313131, 0.6868686868687, 0.3131313131313, 0.8686868686869], 0.2658912356: [0.5656565656566, 0.6565656565657, 0.4343434343434, 0.3434343434343], 0.1836547291: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.8484848485: [0.0, 0.3333333333333, 0.6666666666667], 0.8082848689: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.4777063565: [0.1313131313131, 0.6868686868687, 0.8686868686869, 0.3131313131313], 0.4452606877: [0.1717171717172, 0.7171717171717, 0.8282828282828, 0.2828282828283], 0.0950923375: [0.1616161616162, 0.3838383838384, 0.6161616161616, 0.8383838383838], 0.3803693501: [0.3232323232323, 0.7676767676768, 0.2323232323232, 0.6767676767677], 0.3479236813: [0.4444444444444, 0.5555555555556], 0.0320375472: [0.2626262626263, 0.7373737373737, 0.6262626262626, 0.3737373737374], 0.1267217631: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.7036016733: [0.2323232323232, 0.7676767676768, 0.6767676767677, 0.3232323232323], 0.9680644832: [0.040404040404, 0.4040404040404, 0.959595959596, 0.5959595959596], 0.4948474645: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.4624017957: [0.1111111111111, 0.8888888888889], 0.8217528824: [0.0808080808081, 0.1919191919192, 0.9191919191919, 0.8080808080808], 0.0993776145: [0.040404040404, 0.4040404040404, 0.959595959596, 0.5959595959596], 0.3975104581: [0.0808080808081, 0.1919191919192, 0.8080808080808, 0.9191919191919], 0.8980716253: [0.030303030303, 0.969696969697, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.4003673095: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.0167329864: [0.3232323232323, 0.7676767676768, 0.2323232323232, 0.6767676767677], 0.7033976125: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.9182736455: [0.030303030303, 0.969696969697, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.303030303: [0.0, 0.6666666666667, 0.3333333333333], 0.152637486: [0.2222222222222, 0.7777777777778], 0.9972451791: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.4499540863: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.6595245383: [0.1313131313131, 0.6868686868687, 0.3131313131313, 0.8686868686869], 0.0220385675: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.6460565248: [0.020202020202, 0.2020202020202, 0.979797979798, 0.7979797979798], 0.4219977553: [0.1111111111111, 0.8888888888889], 0.5162738496: [0.2222222222222, 0.7777777777778], 0.5730027548: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.0624426079: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.6868686869: [0.0, 0.3333333333333, 0.6666666666667], 0.7470666259: [0.020202020202, 0.2020202020202, 0.979797979798, 0.7979797979798], 0.5297418631: [0.4444444444444, 0.5555555555556], 0.9074584226: [0.040404040404, 0.4040404040404, 0.959595959596, 0.5959595959596], 0.0546882971: [0.1616161616162, 0.3838383838384, 0.6161616161616, 0.8383838383838], 0.2187531885: [0.3232323232323, 0.7676767676768, 0.2323232323232, 0.6767676767677], 0.7776757474: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.1863075196: [0.4444444444444, 0.5555555555556], 0.6803387409: [0.0808080808081, 0.1919191919192, 0.9191919191919, 0.8080808080808], 0.0938679727: [0.6868686868687, 0.3131313131313, 0.8686868686869, 0.1313131313131], 0.3430262218: [0.020202020202, 0.979797979798, 0.2020202020202, 0.7979797979798], 0.0234669932: [0.5656565656566, 0.6565656565657, 0.4343434343434, 0.3434343434343], 0.0504030201: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.9164370983: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.9741863075: [0.4444444444444, 0.5555555555556], 0.2273237425: [0.9292929292929, 0.2929292929293, 0.7070707070707, 0.0707070707071], 0.4899500051: [0.9292929292929, 0.7070707070707, 0.2929292929293, 0.0707070707071], 0.4575043363: [0.1313131313131, 0.6868686868687, 0.8686868686869, 0.3131313131313], 0.4250586675: [0.1717171717172, 0.7171717171717, 0.8282828282828, 0.2828282828283], 0.0406081012: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.9256198347: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.3601673299: [0.3232323232323, 0.7676767676768, 0.2323232323232, 0.6767676767677], 0.3277216611: [0.4444444444444, 0.5555555555556], 0.3599632691: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.97479849: [0.9292929292929, 0.0707070707071, 0.2929292929293, 0.7070707070707], 0.2628303234: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.0657075809: [0.9292929292929, 0.2929292929293, 0.7070707070707, 0.0707070707071], 0.6766656464: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.4630139782: [0.040404040404, 0.5959595959596, 0.4040404040404, 0.959595959596], 0.0589735741: [0.040404040404, 0.4040404040404, 0.959595959596, 0.5959595959596], 0.4746454443: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.4789307214: [0.1616161616162, 0.3838383838384, 0.6161616161616, 0.8383838383838], 0.4421997755: [0.1111111111111, 0.8888888888889], 0.7364554637: [0.030303030303, 0.969696969697, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.3773084379: [0.0808080808081, 0.1919191919192, 0.8080808080808, 0.9191919191919], 0.8627691052: [0.1616161616162, 0.8383838383838, 0.6161616161616, 0.3838383838384], 0.3801652893: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.6629935721: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.3411896745: [0.1111111111111, 0.8888888888889], 0.2828282828: [0.0, 0.6666666666667, 0.3333333333333], 0.4917865524: [0.5252525252525, 0.4747474747475, 0.2525252525253, 0.7474747474747], 0.7746148352: [0.7474747474747, 0.5252525252525, 0.2525252525253, 0.4747474747475], 0.9568411387: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.4297520661: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.8180797878: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.0185695337: [0.040404040404, 0.4040404040404, 0.959595959596, 0.5959595959596], 0.0540761147: [0.0808080808081, 0.8080808080808, 0.1919191919192, 0.9191919191919], 0.3324150597: [0.969696969697, 0.030303030303, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.5674931129: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.1514131211: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.5732068156: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.508315478: [0.3434343434343, 0.6565656565657, 0.4343434343434, 0.5656565656566], 0.64483216: [0.040404040404, 0.4040404040404, 0.959595959596, 0.5959595959596], 0.958677686: [0.030303030303, 0.969696969697, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.9968370574: [0.7474747474747, 0.5252525252525, 0.2525252525253, 0.4747474747475], 0.6123864912: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.4832159984: [0.040404040404, 0.5959595959596, 0.4040404040404, 0.959595959596], 0.8346087134: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.8021630446: [0.1616161616162, 0.8383838383838, 0.6161616161616, 0.3838383838384], 0.737271707: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.7048260382: [0.8888888888889, 0.1111111111111], 0.1599836751: [0.040404040404, 0.4040404040404, 0.959595959596, 0.5959595959596], 0.0099989797: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.1275380063: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.2903785328: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.3489439853: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.9662279359: [0.2323232323232, 0.7676767676768, 0.6767676767677, 0.3232323232323], 0.2334455668: [0.2222222222222, 0.7777777777778], 0.8688909295: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.4373023161: [0.1313131313131, 0.6868686868687, 0.8686868686869, 0.3131313131313], 0.1012141618: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.4113865932: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.3399653097: [0.3232323232323, 0.7676767676768, 0.2323232323232, 0.6767676767677], 0.3075196409: [0.4444444444444, 0.5555555555556], 0.3173145597: [0.1616161616162, 0.3838383838384, 0.6161616161616, 0.8383838383838], 0.5909601061: [0.9292929292929, 0.0707070707071, 0.2929292929293, 0.7070707070707], 0.2420161208: [0.020202020202, 0.979797979798, 0.2020202020202, 0.7979797979798], 0.9356188144: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.6944189368: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.4544434241: [0.1010101010101, 0.8989898989899, 0.989898989899, 0.010101010101], 0.1054994388: [0.4444444444444, 0.5555555555556], 0.3571064177: [0.0808080808081, 0.8080808080808, 0.1919191919192, 0.9191919191919], 0.0899908173: [0.969696969697, 0.030303030303, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.6225895317: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.2626262626: [0.0, 0.6666666666667, 0.3333333333333], 0.5252525253: [0.0, 0.3333333333333, 0.6666666666667], 0.9166411591: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.5656565657: [0.0, 0.3333333333333, 0.6666666666667], 0.4715845322: [0.2525252525253, 0.5252525252525, 0.4747474747475, 0.7474747474747], 0.666258545: [0.020202020202, 0.2020202020202, 0.979797979798, 0.7979797979798], 0.5321905928: [0.5252525252525, 0.4747474747475, 0.2525252525253, 0.7474747474747], 0.4095500459: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.8278747067: [0.020202020202, 0.2020202020202, 0.979797979798, 0.7979797979798], 0.8737883889: [0.9292929292929, 0.0707070707071, 0.2929292929293, 0.7070707070707], 0.3122130395: [0.969696969697, 0.030303030303, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.5270890725: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.5976941128: [0.2626262626263, 0.7373737373737, 0.3737373737374, 0.6262626262626], 0.565248444: [0.020202020202, 0.2020202020202, 0.979797979798, 0.7979797979798], 0.5328027752: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.2163044587: [0.1616161616162, 0.3838383838384, 0.6161616161616, 0.8383838383838], 0.9660238751: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.8088970513: [0.1717171717172, 0.7171717171717, 0.8282828282828, 0.2828282828283], 0.2295684114: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.592184471: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.7235996327: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.8266503418: [0.040404040404, 0.4040404040404, 0.959595959596, 0.5959595959596], 0.1985511682: [0.3232323232323, 0.7676767676768, 0.2323232323232, 0.6767676767677], 0.7617590042: [0.1616161616162, 0.8383838383838, 0.6161616161616, 0.3838383838384], 0.0165289256: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.1661054994: [0.4444444444444, 0.5555555555556], 0.5995306601: [0.0808080808081, 0.1919191919192, 0.9191919191919, 0.8080808080808], 0.9827568615: [0.1313131313131, 0.6868686868687, 0.3131313131313, 0.8686868686869], 0.2701765126: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.0675441282: [0.2525252525253, 0.5252525252525, 0.4747474747475, 0.7474747474747], 0.3287419651: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.9907152331: [0.2828282828283, 0.1717171717172, 0.8282828282828, 0.7171717171717], 0.3856749311: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.9258238955: [0.2323232323232, 0.7676767676768, 0.6767676767677, 0.3232323232323], 0.6466687073: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.8284868891: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.2071217223: [0.9292929292929, 0.2929292929293, 0.7070707070707, 0.0707070707071], 0.104275074: [0.5656565656566, 0.6565656565657, 0.4343434343434, 0.3434343434343], 0.3846546271: [0.2828282828283, 0.1717171717172, 0.8282828282828, 0.7171717171717], 0.5689215386: [0.3434343434343, 0.6565656565657, 0.4343434343434, 0.5656565656566], 0.3197632895: [0.3232323232323, 0.7676767676768, 0.2323232323232, 0.6767676767677], 0.0718294052: [0.2222222222222, 0.7777777777778], 0.9109274564: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.9839812264: [0.1616161616162, 0.3838383838384, 0.6161616161616, 0.8383838383838], 0.5989184777: [0.8686868686869, 0.1313131313131, 0.3131313131313, 0.6868686868687], 0.9233751658: [0.1616161616162, 0.3838383838384, 0.6161616161616, 0.8383838383838], 0.895214774: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.2156922763: [0.0808080808081, 0.8080808080808, 0.1919191919192, 0.9191919191919], 0.108560351: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.4017957351: [0.1111111111111, 0.8888888888889], 0.3369043975: [0.0808080808081, 0.8080808080808, 0.1919191919192, 0.9191919191919], 0.9539842873: [0.4444444444444, 0.5555555555556], 0.8260381594: [0.8888888888889, 0.1111111111111], 0.3397612489: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.5821854913: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.8044077135: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.9550045914: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.6472808897: [0.1717171717172, 0.7171717171717, 0.8282828282828, 0.2828282828283], 0.112845628: [0.2626262626263, 0.7373737373737, 0.6262626262626, 0.3737373737374], 0.9809203143: [0.2222222222222, 0.7777777777778], 0.8760330579: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.5823895521: [0.2323232323232, 0.7676767676768, 0.6767676767677, 0.3232323232323], 0.0973370064: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.3893480257: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.543822059: [0.040404040404, 0.4040404040404, 0.959595959596, 0.5959595959596], 0.2920110193: [0.969696969697, 0.030303030303, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.5572900724: [0.2626262626263, 0.7373737373737, 0.3737373737374, 0.6262626262626], 0.1312111009: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.3142536476: [0.2222222222222, 0.7777777777778], 0.3048668503: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.2897663504: [0.2525252525253, 0.5252525252525, 0.4747474747475, 0.7474747474747], 0.7978777676: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.6831955923: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.1707988981: [0.969696969697, 0.030303030303, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.7538006326: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.3509845934: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.6564636262: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.6240179574: [0.8888888888889, 0.1111111111111], 0.1397816549: [0.040404040404, 0.959595959596, 0.4040404040404, 0.5959595959596], 0.7213549638: [0.1616161616162, 0.8383838383838, 0.6161616161616, 0.3838383838384], 0.7182940516: [0.2222222222222, 0.7777777777778], 0.2442607897: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.9770431589: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.2456892154: [0.5656565656566, 0.6565656565657, 0.4343434343434, 0.3434343434343], 0.8539944904: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.8854198551: [0.2323232323232, 0.7676767676768, 0.6767676767677, 0.3232323232323], 0.2132435466: [0.2222222222222, 0.7777777777778], 0.7880828487: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.7440057137: [0.2323232323232, 0.7676767676768, 0.6767676767677, 0.3232323232323], 0.6258545046: [0.020202020202, 0.2020202020202, 0.979797979798, 0.7979797979798], 0.148352209: [0.2525252525253, 0.5252525252525, 0.4747474747475, 0.7474747474747], 0.5285174982: [0.3434343434343, 0.6565656565657, 0.4343434343434, 0.5656565656566], 0.0748903173: [0.1616161616162, 0.3838383838384, 0.6161616161616, 0.8383838383838], 0.2671156004: [0.4444444444444, 0.5555555555556], 0.855422916: [0.7474747474747, 0.5252525252525, 0.2525252525253, 0.4747474747475], 0.6203448628: [0.1616161616162, 0.8383838383838, 0.6161616161616, 0.3838383838384], 0.2218141006: [0.020202020202, 0.979797979798, 0.2020202020202, 0.7979797979798], 0.8548107336: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.0473421079: [0.2525252525253, 0.5252525252525, 0.4747474747475, 0.7474747474747], 0.4813794511: [0.3232323232323, 0.2323232323232, 0.6767676767677, 0.7676767676768], 0.4140393837: [0.1010101010101, 0.8989898989899, 0.989898989899, 0.010101010101], 0.3815937149: [0.1111111111111, 0.8888888888889], 0.0791755943: [0.040404040404, 0.4040404040404, 0.959595959596, 0.5959595959596], 0.3167023773: [0.0808080808081, 0.8080808080808, 0.1919191919192, 0.9191919191919], 0.3195592287: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.5417814509: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.8211406999: [0.1313131313131, 0.6868686868687, 0.3131313131313, 0.8686868686869], 0.4960718294: [0.2222222222222, 0.7777777777778], 0.4311804918: [0.2525252525253, 0.5252525252525, 0.4747474747475, 0.7474747474747], 0.492194674: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.7272727273: [0.0, 0.3333333333333, 0.6666666666667], 0.3013978165: [0.040404040404, 0.959595959596, 0.4040404040404, 0.5959595959596], 0.0051015203: [0.9292929292929, 0.2929292929293, 0.7070707070707, 0.0707070707071], 0.2718089991: [0.969696969697, 0.030303030303, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.0679522498: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.4979083767: [0.1313131313131, 0.6868686868687, 0.8686868686869, 0.3131313131313], 0.4171002959: [0.1313131313131, 0.6868686868687, 0.8686868686869, 0.3131313131313], 0.9348025712: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.5352515049: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.2093663912: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.9931639629: [0.3434343434343, 0.6565656565657, 0.4343434343434, 0.5656565656566], 0.7268646057: [0.020202020202, 0.2020202020202, 0.979797979798, 0.7979797979798], 0.6427915519: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.745842261: [0.040404040404, 0.4040404040404, 0.959595959596, 0.5959595959596], 0.7133965922: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.5454545455: [0.0, 0.3333333333333, 0.6666666666667], 0.6160595858: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.1459034792: [0.4444444444444, 0.5555555555556], 0.5187225793: [0.0808080808081, 0.1919191919192, 0.9191919191919, 0.8080808080808], 0.0344862769: [0.1616161616162, 0.3838383838384, 0.6161616161616, 0.8383838383838], 0.0583613917: [0.8888888888889, 0.1111111111111], 0.5193347618: [0.1616161616162, 0.3838383838384, 0.6161616161616, 0.8383838383838], 0.9099071523: [0.2828282828283, 0.1717171717172, 0.8282828282828, 0.7171717171717], 0.8450158147: [0.2323232323232, 0.7676767676768, 0.6767676767677, 0.3232323232323], 0.6115702479: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.0467299255: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.8933782267: [0.4444444444444, 0.5555555555556], 0.617896133: [0.2626262626263, 0.7373737373737, 0.3737373737374, 0.6262626262626], 0.1544740333: [0.6868686868687, 0.3131313131313, 0.8686868686869, 0.1313131313131], 0.5530047954: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.2793592491: [0.3232323232323, 0.7676767676768, 0.2323232323232, 0.6767676767677], 0.6968676666: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.5836139169: [0.8888888888889, 0.1111111111111], 0.4489337823: [0.4444444444444, 0.5555555555556], 0.8650137741: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.1624324049: [0.2828282828283, 0.1717171717172, 0.8282828282828, 0.7171717171717], 0.8144066932: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.1146821753: [0.0808080808081, 0.8080808080808, 0.1919191919192, 0.9191919191919], 0.5793286399: [0.0808080808081, 0.1919191919192, 0.9191919191919, 0.8080808080808], 0.3709825528: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.3938373635: [0.1010101010101, 0.8989898989899, 0.989898989899, 0.010101010101], 0.3613916947: [0.1111111111111, 0.8888888888889], 0.0495867769: [0.969696969697, 0.030303030303, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.5719824508: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.1746760535: [0.6868686868687, 0.3131313131313, 0.8686868686869, 0.1313131313131], 0.5013774105: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.2365064789: [0.1616161616162, 0.3838383838384, 0.6161616161616, 0.8383838383838], 0.1189674523: [0.8888888888889, 0.1111111111111], 0.4109784716: [0.2525252525253, 0.5252525252525, 0.4747474747475, 0.7474747474747], 0.0018365473: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.2811957963: [0.040404040404, 0.959595959596, 0.4040404040404, 0.5959595959596], 0.9429650036: [0.0808080808081, 0.1919191919192, 0.9191919191919, 0.8080808080808], 0.2516069789: [0.969696969697, 0.030303030303, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.3305785124: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.5181103969: [0.8686868686869, 0.1313131313131, 0.3131313131313, 0.6868686868687], 0.9545964697: [0.9292929292929, 0.0707070707071, 0.2929292929293, 0.7070707070707], 0.8888888889: [0.0, 0.3333333333333, 0.6666666666667], 0.2479338843: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.8943985308: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.7970615243: [0.030303030303, 0.969696969697, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.2873176207: [0.4444444444444, 0.5555555555556], 0.1505968779: [0.969696969697, 0.030303030303, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.6729925518: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.5050505051: [0.0, 0.3333333333333, 0.6666666666667], 0.5756555454: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.5432098765: [0.8888888888889, 0.1111111111111], 0.2240587695: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.5934088358: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.9019487807: [0.1313131313131, 0.6868686868687, 0.3131313131313, 0.8686868686869], 0.2254871952: [0.5656565656566, 0.6565656565657, 0.4343434343434, 0.3434343434343], 0.8046117743: [0.2323232323232, 0.7676767676768, 0.6767676767677, 0.3232323232323], 0.1930415264: [0.2222222222222, 0.7777777777778], 0.7072747679: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.101010101: [0.0, 0.6666666666667, 0.3333333333333], 0.5774920926: [0.2626262626263, 0.7373737373737, 0.3737373737374, 0.6262626262626], 0.5450464238: [0.020202020202, 0.2020202020202, 0.979797979798, 0.7979797979798], 0.1281501888: [0.2525252525253, 0.5252525252525, 0.4747474747475, 0.7474747474747], 0.5046423834: [0.020202020202, 0.2020202020202, 0.979797979798, 0.7979797979798], 0.2591572289: [0.3232323232323, 0.7676767676768, 0.2323232323232, 0.6767676767677], 0.9954086318: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.5236200388: [0.040404040404, 0.5959595959596, 0.4040404040404, 0.959595959596], 0.8786858484: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.2340577492: [0.2626262626263, 0.7373737373737, 0.6262626262626, 0.3737373737374], 0.2016120804: [0.020202020202, 0.979797979798, 0.2020202020202, 0.7979797979798], 0.7740026528: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.438526681: [0.1616161616162, 0.3838383838384, 0.6161616161616, 0.8383838383838], 0.1691664116: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.6442199776: [0.8888888888889, 0.1111111111111], 0.3736353433: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.0852974186: [0.4444444444444, 0.5555555555556], 0.8358330783: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.2762983369: [0.0808080808081, 0.8080808080808, 0.1919191919192, 0.9191919191919], 0.0697887971: [0.969696969697, 0.030303030303, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.2426283032: [0.1414141414141, 0.8585858585859, 0.5858585858586, 0.4141414141414], 0.4991327416: [0.1616161616162, 0.3838383838384, 0.6161616161616, 0.8383838383838], 0.0202020202: [0.0, 0.6666666666667, 0.3333333333333], 0.4881134578: [0.3434343434343, 0.6565656565657, 0.4343434343434, 0.5656565656566], 0.1220283645: [0.2828282828283, 0.1717171717172, 0.8282828282828, 0.7171717171717], 0.455667789: [0.2222222222222, 0.7777777777778], 0.8064483216: [0.040404040404, 0.4040404040404, 0.959595959596, 0.5959595959596], 0.3907764514: [0.2525252525253, 0.5252525252525, 0.4747474747475, 0.7474747474747], 0.0055096419: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.6833996531: [0.2323232323232, 0.7676767676768, 0.6767676767677, 0.3232323232323], 0.2609937761: [0.040404040404, 0.959595959596, 0.4040404040404, 0.5959595959596], 0.5052545659: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.1954902561: [0.0808080808081, 0.8080808080808, 0.1919191919192, 0.9191919191919], 0.4342414039: [0.1010101010101, 0.8989898989899, 0.989898989899, 0.010101010101], 0.9607182941: [0.2222222222222, 0.7777777777778], 0.9513314968: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.3754718906: [0.2626262626263, 0.7373737373737, 0.6262626262626, 0.3737373737374], 0.5217834915: [0.2323232323232, 0.7676767676768, 0.6767676767677, 0.3232323232323], 0.0179573513: [0.8888888888889, 0.1111111111111], 0.7566574839: [0.030303030303, 0.969696969697, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.189164371: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.0808080808: [0.0, 0.6666666666667, 0.3333333333333], 0.7323742475: [0.9292929292929, 0.0707070707071, 0.2929292929293, 0.7070707070707], 0.5619834711: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.6001428426: [0.1616161616162, 0.8383838383838, 0.6161616161616, 0.3838383838384], 0.125701459: [0.4444444444444, 0.5555555555556], 0.5028058361: [0.8888888888889, 0.1111111111111], 0.0314253648: [0.2222222222222, 0.7777777777778], 0.9123558821: [0.3434343434343, 0.6565656565657, 0.4343434343434, 0.5656565656566], 0.684624018: [0.8888888888889, 0.1111111111111], 0.8558310376: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.8615447403: [0.1313131313131, 0.6868686868687, 0.3131313131313, 0.8686868686869], 0.8290990715: [0.1717171717172, 0.7171717171717, 0.8282828282828, 0.2828282828283], 0.0826446281: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.7642077339: [0.2323232323232, 0.7676767676768, 0.6767676767677, 0.3232323232323], 0.7317620651: [0.4444444444444, 0.5555555555556], 0.1667176819: [0.9292929292929, 0.2929292929293, 0.7070707070707, 0.0707070707071], 0.5370880522: [0.2626262626263, 0.7373737373737, 0.3737373737374, 0.6262626262626], 0.1342720131: [0.6868686868687, 0.3131313131313, 0.8686868686869, 0.1313131313131], 0.7874706663: [0.020202020202, 0.2020202020202, 0.979797979798, 0.7979797979798], 0.2387511478: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.2401795735: [0.8888888888889, 0.1111111111111], 0.7933884298: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.8958269564: [0.7474747474747, 0.5252525252525, 0.2525252525253, 0.4747474747475], 0.7660442812: [0.040404040404, 0.4040404040404, 0.959595959596, 0.5959595959596], 0.7335986124: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.1752882359: [0.0808080808081, 0.8080808080808, 0.1919191919192, 0.9191919191919], 0.636261606: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.6038159371: [0.1111111111111, 0.8888888888889], 0.0883583308: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.3209876543: [0.1111111111111, 0.8888888888889], 0.2560963167: [0.0808080808081, 0.8080808080808, 0.1919191919192, 0.9191919191919], 0.3534333231: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.2487501275: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.9625548413: [0.1313131313131, 0.6868686868687, 0.3131313131313, 0.8686868686869], 0.9301091725: [0.2828282828283, 0.1717171717172, 0.8282828282828, 0.7171717171717], 0.5950413223: [0.030303030303, 0.969696969697, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.0112233446: [0.2222222222222, 0.7777777777778], 0.4679114376: [0.3434343434343, 0.6565656565657, 0.4343434343434, 0.5656565656566], 0.9696969697: [0.0, 0.3333333333333, 0.6666666666667], 0.4354657688: [0.2222222222222, 0.7777777777778], 0.0926436078: [0.2626262626263, 0.7373737373737, 0.6262626262626, 0.3737373737374], 0.7066625855: [0.020202020202, 0.2020202020202, 0.979797979798, 0.7979797979798], 0.8480767269: [0.020202020202, 0.2020202020202, 0.979797979798, 0.7979797979798], 0.3085399449: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.987654321: [0.8888888888889, 0.1111111111111], 0.4701561065: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.5364758698: [0.2222222222222, 0.7777777777778], 0.4850525457: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.8448117539: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.7507397204: [0.3434343434343, 0.6565656565657, 0.4343434343434, 0.5656565656566], 0.9917355372: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.2277318641: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.3552698704: [0.2626262626263, 0.7373737373737, 0.6262626262626, 0.3737373737374], 0.81359045: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.3228242016: [0.020202020202, 0.979797979798, 0.2020202020202, 0.7979797979798], 0.7162534435: [0.030303030303, 0.969696969697, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.9056218753: [0.2323232323232, 0.7676767676768, 0.6767676767677, 0.3232323232323], 0.539536782: [0.1616161616162, 0.8383838383838, 0.6161616161616, 0.3838383838384], 0.1303948577: [0.969696969697, 0.030303030303, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.9135802469: [0.4444444444444, 0.5555555555556], 0.4697479849: [0.9292929292929, 0.7070707070707, 0.2929292929293, 0.0707070707071], 0.451382512: [0.2525252525253, 0.5252525252525, 0.4747474747475, 0.7474747474747], 0.8486889093: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.2038567493: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.9950005102: [0.9292929292929, 0.0707070707071, 0.2929292929293, 0.7070707070707], 0.205285175: [0.5656565656566, 0.6565656565657, 0.4343434343434, 0.3434343434343], 0.3103764922: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.6913580247: [0.4444444444444, 0.5555555555556], 0.1728395062: [0.2222222222222, 0.7777777777778], 0.6264666871: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.9141924293: [0.9292929292929, 0.0707070707071, 0.2929292929293, 0.7070707070707], 0.7476788083: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.914600551: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.2971125395: [0.1616161616162, 0.3838383838384, 0.6161616161616, 0.8383838383838], 0.0069380675: [0.2525252525253, 0.5252525252525, 0.4747474747475, 0.7474747474747], 0.9203142536: [0.2222222222222, 0.7777777777778], 0.213855729: [0.2626262626263, 0.7373737373737, 0.6262626262626, 0.3737373737374], 0.0534639323: [0.6868686868687, 0.3131313131313, 0.8686868686869, 0.1313131313131], 0.1814100602: [0.020202020202, 0.979797979798, 0.2020202020202, 0.7979797979798], 0.693194572: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.6380981533: [0.2626262626263, 0.7373737373737, 0.3737373737374, 0.6262626262626], 0.1489643914: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.5634118967: [0.8888888888889, 0.1111111111111], 0.939291909: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.3007856341: [0.1111111111111, 0.8888888888889], 0.9974492399: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.859708193: [0.2222222222222, 0.7777777777778], 0.222426283: [0.1414141414141, 0.8585858585859, 0.5858585858586, 0.4141414141414], 0.55667789: [0.2222222222222, 0.7777777777778], 0.8248137945: [0.2323232323232, 0.7676767676768, 0.6767676767677, 0.3232323232323], 0.4477094174: [0.3434343434343, 0.6565656565657, 0.4343434343434, 0.5656565656566], 0.7274767881: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.4152637486: [0.2222222222222, 0.7777777777778], 0.9490868279: [0.020202020202, 0.2020202020202, 0.979797979798, 0.7979797979798], 0.404040404: [0.0, 0.6666666666667, 0.3333333333333], 0.350372411: [0.2525252525253, 0.5252525252525, 0.4747474747475, 0.7474747474747], 0.3705744312: [0.2525252525253, 0.5252525252525, 0.4747474747475, 0.7474747474747], 0.024691358: [0.4444444444444, 0.5555555555556], 0.956433017: [0.7474747474747, 0.5252525252525, 0.2525252525253, 0.4747474747475], 0.8333843485: [0.9292929292929, 0.0707070707071, 0.2929292929293, 0.7070707070707], 0.9337822671: [0.4444444444444, 0.5555555555556], 0.4648505255: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.6980920314: [0.2222222222222, 0.7777777777778], 0.8009386797: [0.1313131313131, 0.6868686868687, 0.3131313131313, 0.8686868686869], 0.668503214: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.0008162432: [0.2828282828283, 0.1717171717172, 0.8282828282828, 0.7171717171717], 0.7731864096: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.3026221814: [0.020202020202, 0.979797979798, 0.2020202020202, 0.7979797979798], 0.1689623508: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.4495459647: [0.9292929292929, 0.7070707070707, 0.2929292929293, 0.0707070707071], 0.2424242424: [0.0, 0.6666666666667, 0.3333333333333], 0.9362309968: [0.7474747474747, 0.5252525252525, 0.2525252525253, 0.4747474747475], 0.0661157025: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.7750229568: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.4440363228: [0.020202020202, 0.979797979798, 0.7979797979798, 0.2020202020202], 0.290174472: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.6509539843: [0.4444444444444, 0.5555555555556], 0.1465156617: [0.9292929292929, 0.2929292929293, 0.7070707070707, 0.0707070707071], 0.0271400877: [0.2525252525253, 0.5252525252525, 0.4747474747475, 0.7474747474747], 0.947862463: [0.040404040404, 0.4040404040404, 0.959595959596, 0.5959595959596], 0.411590654: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.2185491276: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.8686868687: [0.0, 0.3333333333333, 0.6666666666667], 0.7768595041: [0.030303030303, 0.969696969697, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.2199775533: [0.8888888888889, 0.1111111111111], 0.8150188756: [0.7474747474747, 0.5252525252525, 0.2525252525253, 0.4747474747475], 0.6336088154: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.6852362004: [0.040404040404, 0.4040404040404, 0.959595959596, 0.5959595959596], 0.1550862157: [0.0808080808081, 0.8080808080808, 0.1919191919192, 0.9191919191919], 0.5554535252: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.5230078563: [0.1111111111111, 0.8888888888889], 0.2805836139: [0.8888888888889, 0.1111111111111], 0.4866850321: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.1679420467: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.0142842567: [0.1616161616162, 0.3838383838384, 0.6161616161616, 0.8383838383838], 0.2285481073: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.8817467605: [0.1313131313131, 0.6868686868687, 0.3131313131313, 0.8686868686869], 0.2677277829: [0.9292929292929, 0.2929292929293, 0.7070707070707, 0.0707070707071], 0.1961024385: [0.1616161616162, 0.3838383838384, 0.6161616161616, 0.8383838383838], 0.7519640853: [0.4444444444444, 0.5555555555556], 0.6870727477: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.0987654321: [0.8888888888889, 0.1111111111111], 0.6497296194: [0.3434343434343, 0.6565656565657, 0.4343434343434, 0.5656565656566], 0.8778696051: [0.030303030303, 0.969696969697, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.3301703908: [0.2525252525253, 0.5252525252525, 0.4747474747475, 0.7474747474747], 0.7207427813: [0.0808080808081, 0.1919191919192, 0.9191919191919, 0.8080808080808], 0.5419855117: [0.2323232323232, 0.7676767676768, 0.6767676767677, 0.3232323232323], 0.5068870523: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.8327721661: [0.4444444444444, 0.5555555555556], 0.9160289766: [0.7474747474747, 0.5252525252525, 0.2525252525253, 0.4747474747475], 0.5095398429: [0.4444444444444, 0.5555555555556], 0.4446485053: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.0130598918: [0.6868686868687, 0.3131313131313, 0.8686868686869, 0.1313131313131], 0.0908070605: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.31486583: [0.2626262626263, 0.7373737373737, 0.6262626262626, 0.3737373737374], 0.0706050403: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.6354453627: [0.030303030303, 0.969696969697, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.9276604428: [0.040404040404, 0.4040404040404, 0.959595959596, 0.5959595959596], 0.5585144373: [0.8686868686869, 0.1313131313131, 0.3131313131313, 0.6868686868687], 0.0614223038: [0.2828282828283, 0.1717171717172, 0.8282828282828, 0.7171717171717], 0.9705132129: [0.2828282828283, 0.1717171717172, 0.8282828282828, 0.7171717171717], 0.7862463014: [0.040404040404, 0.4040404040404, 0.959595959596, 0.5959595959596], 0.9325579023: [0.3434343434343, 0.6565656565657, 0.4343434343434, 0.5656565656566], 0.1073359861: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.4293439445: [0.9292929292929, 0.7070707070707, 0.2929292929293, 0.0707070707071], 0.3968982757: [0.6868686868687, 0.3131313131313, 0.8686868686869, 0.1313131313131], 0.5842260994: [0.040404040404, 0.4040404040404, 0.959595959596, 0.5959595959596], 0.0091827365: [0.969696969697, 0.030303030303, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.0459136823: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.2699724518: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.6105499439: [0.4444444444444, 0.5555555555556], 0.0381593715: [0.8888888888889, 0.1111111111111], 0.5456586063: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.838281808: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.9311294766: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.8337924702: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.4244464851: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.5591266197: [0.0808080808081, 0.1919191919192, 0.9191919191919, 0.8080808080808], 0.8395061728: [0.2222222222222, 0.7777777777778], 0.1936537088: [0.2626262626263, 0.7373737373737, 0.6262626262626, 0.3737373737374], 0.16120804: [0.020202020202, 0.979797979798, 0.2020202020202, 0.7979797979798], 0.5799408224: [0.1616161616162, 0.8383838383838, 0.6161616161616, 0.3838383838384], 0.1287623712: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.846852362: [0.040404040404, 0.4040404040404, 0.959595959596, 0.5959595959596], 0.6527905316: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.5891235588: [0.3434343434343, 0.6565656565657, 0.4343434343434, 0.5656565656566], 0.4664830119: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.0606060606: [0.0, 0.6666666666667, 0.3333333333333], 0.7327823691: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.5970819304: [0.2222222222222, 0.7777777777778], 0.8413427201: [0.1313131313131, 0.6868686868687, 0.3131313131313, 0.8686868686869], 0.2022242628: [0.1414141414141, 0.8585858585859, 0.5858585858586, 0.4141414141414], 0.7115600449: [0.4444444444444, 0.5555555555556], 0.2089582696: [0.2525252525253, 0.5252525252525, 0.4747474747475, 0.7474747474747], 0.1018263443: [0.2828282828283, 0.1717171717172, 0.8282828282828, 0.7171717171717], 0.3748597082: [0.2222222222222, 0.7777777777778], 0.516886032: [0.2626262626263, 0.7373737373737, 0.3737373737374, 0.6262626262626], 0.3099683706: [0.2525252525253, 0.5252525252525, 0.4747474747475, 0.7474747474747], 0.9092949699: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.0608101214: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.2432404857: [0.2828282828283, 0.1717171717172, 0.8282828282828, 0.7171717171717], 0.8756249362: [0.7474747474747, 0.5252525252525, 0.2525252525253, 0.4747474747475], 0.4893378227: [0.4444444444444, 0.5555555555556], 0.178349148: [0.3232323232323, 0.7676767676768, 0.2323232323232, 0.6767676767677], 0.1061116213: [0.9292929292929, 0.2929292929293, 0.7070707070707, 0.0707070707071], 0.2946638098: [0.2626262626263, 0.7373737373737, 0.6262626262626, 0.3737373737374], 0.0736659525: [0.6868686868687, 0.3131313131313, 0.8686868686869, 0.1313131313131], 0.262218141: [0.020202020202, 0.979797979798, 0.2020202020202, 0.7979797979798], 0.1487603306: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.8301193756: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.9503111927: [0.1717171717172, 0.7171717171717, 0.8282828282828, 0.2828282828283], 0.7676767677: [0.0, 0.3333333333333, 0.6666666666667], 0.4091419243: [0.9292929292929, 0.7070707070707, 0.2929292929293, 0.0707070707071], 0.3766962555: [0.6868686868687, 0.3131313131313, 0.8686868686869, 0.1313131313131], 0.3442505867: [0.2828282828283, 0.1717171717172, 0.8282828282828, 0.7171717171717], 0.694214876: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.9729619427: [0.3434343434343, 0.6565656565657, 0.4343434343434, 0.5656565656566], 0.1263136415: [0.9292929292929, 0.2929292929293, 0.7070707070707, 0.0707070707071], 0.49117437: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.4940312213: [0.969696969697, 0.030303030303, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.8907254362: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.1983471074: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.6960514233: [0.030303030303, 0.969696969697, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.2993572084: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.7342107948: [0.7474747474747, 0.5252525252525, 0.2525252525253, 0.4747474747475], 0.6044281196: [0.040404040404, 0.4040404040404, 0.959595959596, 0.5959595959596], 0.1348841955: [0.0808080808081, 0.8080808080808, 0.1919191919192, 0.9191919191919], 0.6483011938: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.2830323436: [0.1414141414141, 0.8585858585859, 0.5858585858586, 0.4141414141414], 0.7997143149: [0.2626262626263, 0.7373737373737, 0.3737373737374, 0.6262626262626], 0.5768799102: [0.2222222222222, 0.7777777777778], 0.8576675849: [0.030303030303, 0.969696969697, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.4462809917: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.2407917559: [0.040404040404, 0.959595959596, 0.4040404040404, 0.5959595959596], 0.060197939: [0.020202020202, 0.979797979798, 0.2020202020202, 0.7979797979798], 0.2083460871: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.6583001735: [0.2626262626263, 0.7373737373737, 0.3737373737374, 0.6262626262626], 0.6864605652: [0.020202020202, 0.2020202020202, 0.979797979798, 0.7979797979798], 0.1759004183: [0.1616161616162, 0.3838383838384, 0.6161616161616, 0.8383838383838], 0.6711560045: [0.4444444444444, 0.5555555555556], 0.6062646669: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.3644526069: [0.2828282828283, 0.1717171717172, 0.8282828282828, 0.7171717171717], 0.0724415876: [0.2626262626263, 0.7373737373737, 0.6262626262626, 0.3737373737374], 0.3232323232: [0.0, 0.6666666666667, 0.3333333333333], 0.24936231: [0.2525252525253, 0.5252525252525, 0.4747474747475, 0.7474747474747], 0.9001122334: [0.2222222222222, 0.7777777777778], 0.8352208958: [0.7474747474747, 0.5252525252525, 0.2525252525253, 0.4747474747475], 0.4691358025: [0.4444444444444, 0.5555555555556], 0.7054382206: [0.040404040404, 0.4040404040404, 0.959595959596, 0.5959595959596], 0.4042444649: [0.1414141414141, 0.8585858585859, 0.5858585858586, 0.4141414141414], 0.2995612693: [0.3232323232323, 0.7676767676768, 0.2323232323232, 0.6767676767677], 0.7238036935: [0.2323232323232, 0.7676767676768, 0.6767676767677, 0.3232323232323], 0.2744617896: [0.2626262626263, 0.7373737373737, 0.6262626262626, 0.3737373737374], 0.5546372819: [0.030303030303, 0.969696969697, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.0399959188: [0.020202020202, 0.979797979798, 0.2020202020202, 0.7979797979798], 0.3240485665: [0.2828282828283, 0.1717171717172, 0.8282828282828, 0.7171717171717], 0.5150494847: [0.1010101010101, 0.8989898989899, 0.989898989899, 0.010101010101], 0.3889399041: [0.9292929292929, 0.2929292929293, 0.7070707070707, 0.0707070707071], 0.3564942353: [0.6868686868687, 0.3131313131313, 0.8686868686869, 0.1313131313131], 0.0810121416: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.4275073972: [0.5656565656566, 0.6565656565657, 0.4343434343434, 0.3434343434343], 0.1634527089: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.6538108356: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.1177430874: [0.3232323232323, 0.7676767676768, 0.2323232323232, 0.6767676767677], 0.4709723498: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.4738292011: [0.969696969697, 0.030303030303, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.8503213958: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.7529843893: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.9998979696: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.6556473829: [0.030303030303, 0.969696969697, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.2791551882: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.1410060198: [0.020202020202, 0.979797979798, 0.2020202020202, 0.7979797979798], 0.8872564024: [0.040404040404, 0.4040404040404, 0.959595959596, 0.5959595959596], 0.9494949495: [0.0, 0.3333333333333, 0.6666666666667], 0.6338128762: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.7409448016: [0.0808080808081, 0.1919191919192, 0.9191919191919, 0.8080808080808], 0.1065197429: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.9227629834: [0.0808080808081, 0.1919191919192, 0.9191919191919, 0.8080808080808], 0.7548209366: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.7929803081: [0.9292929292929, 0.0707070707071, 0.2929292929293, 0.7070707070707], 0.7605346393: [0.1313131313131, 0.6868686868687, 0.3131313131313, 0.8686868686869], 0.1820222426: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.0455055607: [0.9292929292929, 0.2929292929293, 0.7070707070707, 0.0707070707071], 0.6307519641: [0.4444444444444, 0.5555555555556], 0.5658606265: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.8154269972: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.2695643302: [0.2525252525253, 0.5252525252525, 0.4747474747475, 0.7474747474747], 0.5640240792: [0.040404040404, 0.4040404040404, 0.959595959596, 0.5959595959596], 0.943577186: [0.1616161616162, 0.3838383838384, 0.6161616161616, 0.8383838383838], 0.9894908683: [0.020202020202, 0.2020202020202, 0.979797979798, 0.7979797979798], 0.9570451995: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.8921538619: [0.3434343434343, 0.6565656565657, 0.4343434343434, 0.5656565656566], 0.2230384655: [0.2828282828283, 0.1717171717172, 0.8282828282828, 0.7171717171717], 0.5787164575: [0.1313131313131, 0.6868686868687, 0.3131313131313, 0.8686868686869], 0.7948168554: [0.7474747474747, 0.5252525252525, 0.2525252525253, 0.4747474747475], 0.1122334456: [0.2222222222222, 0.7777777777778], 0.1581471278: [0.3232323232323, 0.7676767676768, 0.2323232323232, 0.6767676767677], 0.6325885114: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.9527599225: [0.3434343434343, 0.6565656565657, 0.4343434343434, 0.5656565656566], 0.2542597694: [0.2626262626263, 0.7373737373737, 0.6262626262626, 0.3737373737374], 0.5215794307: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.1285583104: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.6060606061: [0.0, 0.3333333333333, 0.6666666666667], 0.5101520253: [0.9292929292929, 0.0707070707071, 0.2929292929293, 0.7070707070707], 0.4985205591: [0.0808080808081, 0.1919191919192, 0.9191919191919, 0.8080808080808], 0.9692888481: [0.020202020202, 0.2020202020202, 0.979797979798, 0.7979797979798], 0.4334251607: [0.969696969697, 0.030303030303, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.3687378839: [0.0707070707071, 0.7070707070707, 0.2929292929293, 0.9292929292929], 0.3362922151: [0.6868686868687, 0.3131313131313, 0.8686868686869, 0.1313131313131], 0.0840730538: [0.5656565656566, 0.6565656565657, 0.4343434343434, 0.3434343434343], 0.3038465463: [0.2828282828283, 0.1717171717172, 0.8282828282828, 0.7171717171717], 0.8223650648: [0.1616161616162, 0.3838383838384, 0.6161616161616, 0.8383838383838], 0.6134067952: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.7256402408: [0.040404040404, 0.4040404040404, 0.959595959596, 0.5959595959596], 0.1208039996: [0.020202020202, 0.979797979798, 0.2020202020202, 0.7979797979798], 0.4507703296: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.4183246607: [0.1616161616162, 0.3838383838384, 0.6161616161616, 0.8383838383838], 0.4536271809: [0.969696969697, 0.030303030303, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.8099173554: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.1781450872: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.6607489032: [0.1616161616162, 0.8383838383838, 0.6161616161616, 0.3838383838384], 0.6152433425: [0.030303030303, 0.969696969697, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.258953168: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.5958575656: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.7654320988: [0.8888888888889, 0.1111111111111], 0.3350678502: [0.2626262626263, 0.7373737373737, 0.6262626262626, 0.3737373737374], 0.8172635445: [0.030303030303, 0.969696969697, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.9699010305: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.9090909091: [0.0, 0.3333333333333, 0.6666666666667], 0.7611468218: [0.0808080808081, 0.1919191919192, 0.9191919191919, 0.8080808080808], 0.4058769513: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.882358943: [0.0808080808081, 0.1919191919192, 0.9191919191919, 0.8080808080808], 0.7144168962: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.1881440669: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.7201305989: [0.8686868686869, 0.1313131313131, 0.3131313131313, 0.6868686868687], 0.6876849301: [0.1717171717172, 0.7171717171717, 0.8282828282828, 0.2828282828283], 0.1556983981: [0.1616161616162, 0.3838383838384, 0.6161616161616, 0.8383838383838], 0.5903479237: [0.4444444444444, 0.5555555555556], 0.5254565861: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.1734516886: [0.2626262626263, 0.7373737373737, 0.6262626262626, 0.3737373737374], 0.056932966: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.9815324967: [0.2626262626263, 0.7373737373737, 0.3737373737374, 0.6262626262626], 0.7752270177: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.2291602898: [0.2525252525253, 0.5252525252525, 0.4747474747475, 0.7474747474747], 0.8517498214: [0.3434343434343, 0.6565656565657, 0.4343434343434, 0.5656565656566], 0.8193041526: [0.2222222222222, 0.7777777777778], 0.754412815: [0.7474747474747, 0.5252525252525, 0.2525252525253, 0.4747474747475], 0.3638404244: [0.1414141414141, 0.8585858585859, 0.5858585858586, 0.4141414141414], 0.5597388022: [0.1616161616162, 0.8383838383838, 0.6161616161616, 0.3838383838384], 0.0063258851: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.9898989899: [0.0, 0.3333333333333, 0.6666666666667], 0.6887052342: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.5315784104: [0.6464646464646, 0.5353535353535, 0.3535353535354, 0.4646464646465], 0.7121722273: [0.9292929292929, 0.0707070707071, 0.2929292929293, 0.7070707070707], 0.9031731456: [0.1616161616162, 0.3838383838384, 0.6161616161616, 0.8383838383838], 0.8535863687: [0.9292929292929, 0.0707070707071, 0.2929292929293, 0.7070707070707], 0.4783185389: [0.0808080808081, 0.1919191919192, 0.9191919191919, 0.8080808080808], 0.7886950311: [0.1717171717172, 0.7171717171717, 0.8282828282828, 0.2828282828283], 0.6129986736: [0.7474747474747, 0.5252525252525, 0.2525252525253, 0.4747474747475], 0.7807366595: [0.1313131313131, 0.6868686868687, 0.3131313131313, 0.8686868686869], 0.0871339659: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.3485358637: [0.9292929292929, 0.2929292929293, 0.7070707070707, 0.0707070707071], 0.3160901949: [0.6868686868687, 0.3131313131313, 0.8686868686869, 0.1313131313131], 0.2836445261: [0.2828282828283, 0.1717171717172, 0.8282828282828, 0.7171717171717], 0.08815427: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.1432506887: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.9221508009: [0.1313131313131, 0.6868686868687, 0.3131313131313, 0.8686868686869], 0.3093561881: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.4305683094: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.3981226405: [0.1616161616162, 0.3838383838384, 0.6161616161616, 0.8383838383838], 0.8493010917: [0.1717171717172, 0.7171717171717, 0.8282828282828, 0.2828282828283], 0.1083562902: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.3332313029: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.769513315: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.8356290174: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.6721763085: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.5748393021: [0.030303030303, 0.969696969697, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.6785021937: [0.2626262626263, 0.7373737373737, 0.3737373737374, 0.6262626262626], 0.7923681257: [0.4444444444444, 0.5555555555556], 0.613610856: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.6601367207: [0.0808080808081, 0.1919191919192, 0.9191919191919, 0.8080808080808], 0.3691460055: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.4260789715: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.6740128558: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.2883379247: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.6797265585: [0.1313131313131, 0.6868686868687, 0.3131313131313, 0.8686868686869], 0.1618202224: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.5487195184: [0.3434343434343, 0.6565656565657, 0.4343434343434, 0.5656565656566], 0.5499438833: [0.4444444444444, 0.5555555555556], 0.8076726865: [0.020202020202, 0.2020202020202, 0.979797979798, 0.7979797979798], 0.870523416: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.2352821141: [0.6868686868687, 0.3131313131313, 0.8686868686869, 0.1313131313131], 0.9086827875: [0.020202020202, 0.2020202020202, 0.979797979798, 0.7979797979798], 0.8762371187: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.811345781: [0.3434343434343, 0.6565656565657, 0.4343434343434, 0.5656565656566], 0.2028364453: [0.2828282828283, 0.1717171717172, 0.8282828282828, 0.7171717171717], 0.7140087746: [0.7474747474747, 0.5252525252525, 0.2525252525253, 0.4747474747475], 0.1379451076: [0.3232323232323, 0.7676767676768, 0.2323232323232, 0.6767676767677], 0.0859096011: [0.9292929292929, 0.2929292929293, 0.7070707070707, 0.0707070707071], 0.6631976329: [0.2323232323232, 0.7676767676768, 0.6767676767677, 0.3232323232323], 0.0044893378: [0.4444444444444, 0.5555555555556], 0.2497704316: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.8419549026: [0.0808080808081, 0.1919191919192, 0.9191919191919, 0.8080808080808], 0.8131823283: [0.9292929292929, 0.0707070707071, 0.2929292929293, 0.7070707070707], 0.4581165187: [0.0808080808081, 0.1919191919192, 0.9191919191919, 0.8080808080808], 0.7482909907: [0.1717171717172, 0.7171717171717, 0.8282828282828, 0.2828282828283], 0.7672686461: [0.020202020202, 0.2020202020202, 0.979797979798, 0.7979797979798], 0.3283338435: [0.9292929292929, 0.2929292929293, 0.7070707070707, 0.0707070707071], 0.2958881747: [0.6868686868687, 0.3131313131313, 0.8686868686869, 0.1313131313131], 0.2634425059: [0.2828282828283, 0.1717171717172, 0.8282828282828, 0.7171717171717], 0.6644219978: [0.8888888888889, 0.1111111111111], 0.5325987144: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.442811958: [0.040404040404, 0.5959595959596, 0.4040404040404, 0.959595959596], 0.4103662892: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.3779206203: [0.1616161616162, 0.3838383838384, 0.6161616161616, 0.8383838383838], 0.0944801551: [0.0808080808081, 0.8080808080808, 0.1919191919192, 0.9191919191919], 0.4132231405: [0.969696969697, 0.030303030303, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.3130292827: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.7291092746: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.157943067: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.6317722681: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.6464646465: [0.0, 0.3333333333333, 0.6666666666667], 0.5344352617: [0.030303030303, 0.969696969697, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.4923987348: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.842567085: [0.1616161616162, 0.8383838383838, 0.6161616161616, 0.3838383838384], 0.020406081: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.2314049587: [0.969696969697, 0.030303030303, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.8282828283: [0.0, 0.3333333333333, 0.6666666666667], 0.3654729109: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.8584838282: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.1910009183: [0.969696969697, 0.030303030303, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.7452300786: [0.8888888888889, 0.1111111111111], 0.2681359045: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.6393225181: [0.8686868686869, 0.1313131313131, 0.3131313131313, 0.6868686868687], 0.6068768493: [0.1717171717172, 0.7171717171717, 0.8282828282828, 0.2828282828283], 0.1354963779: [0.1616161616162, 0.3838383838384, 0.6161616161616, 0.8383838383838], 0.0338740945: [0.0808080808081, 0.8080808080808, 0.1919191919192, 0.9191919191919], 0.9292929293: [0.0, 0.3333333333333, 0.6666666666667], 0.2075298439: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.9007244159: [0.2626262626263, 0.7373737373737, 0.3737373737374, 0.6262626262626], 0.6540148964: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.0522395674: [0.2626262626263, 0.7373737373737, 0.3737373737374, 0.6262626262626], 0.7709417406: [0.3434343434343, 0.6565656565657, 0.4343434343434, 0.5656565656566], 0.7384960718: [0.2222222222222, 0.7777777777778], 0.6736047342: [0.7474747474747, 0.5252525252525, 0.2525252525253, 0.4747474747475], 0.5113763902: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.8080808081: [0.0, 0.3333333333333, 0.6666666666667], 0.7525762677: [0.9292929292929, 0.0707070707071, 0.2929292929293, 0.7070707070707], 0.5505560657: [0.9292929292929, 0.0707070707071, 0.2929292929293, 0.7070707070707], 0.971533517: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.2499744924: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.9674523008: [0.8888888888889, 0.1111111111111], 0.9025609632: [0.0808080808081, 0.1919191919192, 0.9191919191919, 0.8080808080808], 0.310580553: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.7727782879: [0.9292929292929, 0.0707070707071, 0.2929292929293, 0.7070707070707], 0.1850831548: [0.5656565656566, 0.6565656565657, 0.4343434343434, 0.3434343434343], 0.7078869503: [0.1717171717172, 0.7171717171717, 0.8282828282828, 0.2828282828283], 0.6429956127: [0.2323232323232, 0.7676767676768, 0.6767676767677, 0.3232323232323], 0.7819610244: [0.1616161616162, 0.8383838383838, 0.6161616161616, 0.3838383838384], 0.0275482094: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.3081318233: [0.9292929292929, 0.2929292929293, 0.7070707070707, 0.0707070707071], 0.2756861545: [0.6868686868687, 0.3131313131313, 0.8686868686869, 0.1313131313131], 0.7346189164: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.8731762065: [0.4444444444444, 0.5555555555556], 0.0002040608: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.6809509234: [0.1616161616162, 0.8383838383838, 0.6161616161616, 0.3838383838384], 0.9368431793: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.8719518416: [0.3434343434343, 0.6565656565657, 0.4343434343434, 0.5656565656566], 0.4226099378: [0.040404040404, 0.959595959596, 0.4040404040404, 0.5959595959596], 0.0975410672: [0.3232323232323, 0.7676767676768, 0.2323232323232, 0.6767676767677], 0.390164269: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.3577186001: [0.1616161616162, 0.3838383838384, 0.6161616161616, 0.8383838383838], 0.9901030507: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.2928272625: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.0650953984: [0.4444444444444, 0.5555555555556], 0.2603815937: [0.8888888888889, 0.1111111111111], 0.5913682277: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.0422405877: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.9990817264: [0.030303030303, 0.969696969697, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.3840424446: [0.1414141414141, 0.8585858585859, 0.5858585858586, 0.4141414141414], 0.0332619121: [0.6868686868687, 0.3131313131313, 0.8686868686869, 0.1313131313131], 0.4721967146: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.407305377: [0.5656565656566, 0.6565656565657, 0.4343434343434, 0.3434343434343], 0.8852157943: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.7878787879: [0.0, 0.3333333333333, 0.6666666666667], 0.3452708907: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.0863177227: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.051627385: [0.2222222222222, 0.7777777777778], 0.593204775: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.6923783287: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.6313641465: [0.9292929292929, 0.0707070707071, 0.2929292929293, 0.7070707070707], 0.1416182022: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.5664728089: [0.1717171717172, 0.7171717171717, 0.8282828282828, 0.2828282828283], 0.5015814713: [0.3232323232323, 0.2323232323232, 0.6767676767677, 0.7676767676768], 0.0265279053: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.1230486685: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.7305377002: [0.3434343434343, 0.6565656565657, 0.4343434343434, 0.5656565656566], 0.7897153352: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.2150800939: [0.6868686868687, 0.3131313131313, 0.8686868686869, 0.1313131313131], 0.3436384042: [0.1414141414141, 0.8585858585859, 0.5858585858586, 0.4141414141414], 0.7954290379: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.1826344251: [0.2828282828283, 0.1717171717172, 0.8282828282828, 0.7171717171717], 0.512600755: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.6332006938: [0.7474747474747, 0.5252525252525, 0.2525252525253, 0.4747474747475], 0.5034180186: [0.040404040404, 0.5959595959596, 0.4040404040404, 0.959595959596], 0.7795122947: [0.2626262626263, 0.7373737373737, 0.3737373737374, 0.6262626262626], 0.9862258953: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.2222222222: [0.0, 0.6666666666667, 0.3333333333333], 0.363228242: [0.020202020202, 0.979797979798, 0.7979797979798, 0.2020202020202], 0.9270482604: [0.8888888888889, 0.1111111111111], 0.8621569228: [0.0808080808081, 0.1919191919192, 0.9191919191919, 0.8080808080808], 0.9423528211: [0.1313131313131, 0.6868686868687, 0.3131313131313, 0.8686868686869], 0.5142332415: [0.030303030303, 0.969696969697, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.6999285787: [0.1313131313131, 0.6868686868687, 0.3131313131313, 0.8686868686869], 0.6674829099: [0.1717171717172, 0.7171717171717, 0.8282828282828, 0.2828282828283], 0.6025915723: [0.2323232323232, 0.7676767676768, 0.6767676767677, 0.3232323232323], 0.5701459035: [0.4444444444444, 0.5555555555556], 0.9496990103: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.8603203755: [0.2626262626263, 0.7373737373737, 0.3737373737374, 0.6262626262626], 0.2879298031: [0.9292929292929, 0.2929292929293, 0.7070707070707, 0.0707070707071], 0.2554841343: [0.6868686868687, 0.3131313131313, 0.8686868686869, 0.1313131313131], 0.9613304765: [0.2626262626263, 0.7373737373737, 0.3737373737374, 0.6262626262626], 0.1212121212: [0.0, 0.6666666666667, 0.3333333333333], 0.8964391389: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.8315478012: [0.3434343434343, 0.6565656565657, 0.4343434343434, 0.5656565656566], 0.1997755331: [0.8888888888889, 0.1111111111111], 0.1006019794: [0.020202020202, 0.979797979798, 0.2020202020202, 0.7979797979798], 0.3699622488: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.0293847567: [0.969696969697, 0.030303030303, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.2726252423: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.0681563106: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.1869197021: [0.9292929292929, 0.2929292929293, 0.7070707070707, 0.0707070707071], 0.1377410468: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.8939904091: [0.9292929292929, 0.0707070707071, 0.2929292929293, 0.7070707070707], 0.8058361392: [0.8888888888889, 0.1111111111111], 0.4844403632: [0.020202020202, 0.2020202020202, 0.979797979798, 0.7979797979798], 0.7011529436: [0.1616161616162, 0.8383838383838, 0.6161616161616, 0.3838383838384], 0.4519946944: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.3507805326: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.3871033568: [0.5656565656566, 0.6565656565657, 0.4343434343434, 0.3434343434343], 0.2112029385: [0.969696969697, 0.030303030303, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.8750127538: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.7474747475: [0.0, 0.3333333333333, 0.6666666666667], 0.3250688705: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.5528007346: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.5854504642: [0.020202020202, 0.2020202020202, 0.979797979798, 0.7979797979798], 0.5260687685: [0.1717171717172, 0.7171717171717, 0.8282828282828, 0.2828282828283], 0.9594939292: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.4719926538: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.1873278237: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.8199163351: [0.2626262626263, 0.7373737373737, 0.3737373737374, 0.6262626262626], 0.6519742883: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.1887562494: [0.2525252525253, 0.5252525252525, 0.4747474747475, 0.7474747474747], 0.6901336598: [0.3434343434343, 0.6565656565657, 0.4343434343434, 0.5656565656566], 0.657687991: [0.2222222222222, 0.7777777777778], 0.5927966534: [0.7474747474747, 0.5252525252525, 0.2525252525253, 0.4747474747475], 0.9458218549: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.4242424242: [0.0, 0.3333333333333, 0.6666666666667], 0.9631670238: [0.0808080808081, 0.1919191919192, 0.9191919191919, 0.8080808080808], 0.2297724722: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.88664422: [0.8888888888889, 0.1111111111111], 0.741556984: [0.1616161616162, 0.8383838383838, 0.6161616161616, 0.3838383838384], 0.0412202836: [0.2828282828283, 0.1717171717172, 0.8282828282828, 0.7171717171717], 0.6919702071: [0.9292929292929, 0.0707070707071, 0.2929292929293, 0.7070707070707], 0.1648811346: [0.5656565656566, 0.6565656565657, 0.4343434343434, 0.3434343434343], 0.6270788695: [0.1717171717172, 0.7171717171717, 0.8282828282828, 0.2828282828283], 0.5621875319: [0.2323232323232, 0.7676767676768, 0.6767676767677, 0.3232323232323], 0.1324354658: [0.2222222222222, 0.7777777777778], 0.5860626467: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.0669319457: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.9209264361: [0.2626262626263, 0.7373737373737, 0.3737373737374, 0.6262626262626], 0.8884807673: [0.020202020202, 0.2020202020202, 0.979797979798, 0.7979797979798], 0.8560350985: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.7911437608: [0.3434343434343, 0.6565656565657, 0.4343434343434, 0.5656565656566], 0.758698092: [0.2222222222222, 0.7777777777778], 0.3822058974: [0.040404040404, 0.959595959596, 0.4040404040404, 0.5959595959596], 0.3497602285: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.3636363636: [0.0, 0.6666666666667, 0.3333333333333], 0.0404040404: [0.0, 0.6666666666667, 0.3333333333333], 0.9766350372: [0.7474747474747, 0.5252525252525, 0.2525252525253, 0.4747474747475], 0.2524232221: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.6078971534: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.5105601469: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.2469135802: [0.4444444444444, 0.5555555555556], 0.4966840118: [0.2626262626263, 0.7373737373737, 0.3737373737374, 0.6262626262626], 0.464238343: [0.020202020202, 0.2020202020202, 0.979797979798, 0.7979797979798], 0.4317926742: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.1079481686: [0.2525252525253, 0.5252525252525, 0.4747474747475, 0.7474747474747], 0.4587287012: [0.1616161616162, 0.3838383838384, 0.6161616161616, 0.8383838383838], 0.3669013366: [0.5656565656566, 0.6565656565657, 0.4343434343434, 0.3434343434343], 0.3344556678: [0.2222222222222, 0.7777777777778], 0.7070707071: [0.0, 0.3333333333333, 0.6666666666667], 0.0136720743: [0.0808080808081, 0.8080808080808, 0.1919191919192, 0.9191919191919], 0.7280889705: [0.1717171717172, 0.7171717171717, 0.8282828282828, 0.2828282828283], 0.5123966942: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.0638710336: [0.5656565656566, 0.6565656565657, 0.4343434343434, 0.3434343434343], 0.4517906336: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.8529741863: [0.4444444444444, 0.5555555555556], 0.7170696868: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.7089072544: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.9772472197: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.1948780737: [0.6868686868687, 0.3131313131313, 0.8686868686869, 0.1313131313131], 0.714620957: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.0302009999: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.6172839506: [0.2222222222222, 0.7777777777778], 0.552392613: [0.7474747474747, 0.5252525252525, 0.2525252525253, 0.4747474747475], 0.6742169166: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.8799102132: [0.2222222222222, 0.7777777777778], 0.0210182634: [0.2828282828283, 0.1717171717172, 0.8282828282828, 0.7171717171717], 0.9054178145: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.9760228548: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.202020202: [0.0, 0.6666666666667, 0.3333333333333], 0.6668707275: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.8462401796: [0.8888888888889, 0.1111111111111], 0.781348842: [0.0808080808081, 0.1919191919192, 0.9191919191919, 0.8080808080808], 0.7991021324: [0.2222222222222, 0.7777777777778], 0.1414141414: [0.0, 0.6666666666667, 0.3333333333333], 0.6515661667: [0.9292929292929, 0.0707070707071, 0.2929292929293, 0.7070707070707], 0.6191204979: [0.8686868686869, 0.1313131313131, 0.3131313131313, 0.6868686868687], 0.5866748291: [0.1717171717172, 0.7171717171717, 0.8282828282828, 0.2828282828283], 0.2322212019: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.2965003571: [0.0808080808081, 0.8080808080808, 0.1919191919192, 0.9191919191919], 0.00755025: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.8805223957: [0.2626262626263, 0.7373737373737, 0.3737373737374, 0.6262626262626], 0.2120191817: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.8156310581: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.0448933782: [0.4444444444444, 0.5555555555556], 0.1795735129: [0.8888888888889, 0.1111111111111], 0.653402714: [0.7474747474747, 0.5252525252525, 0.2525252525253, 0.4747474747475], 0.3620038772: [0.040404040404, 0.959595959596, 0.4040404040404, 0.5959595959596], 0.3295582083: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.0742781349: [0.0808080808081, 0.8080808080808, 0.1919191919192, 0.9191919191919], 0.0387715539: [0.040404040404, 0.4040404040404, 0.959595959596, 0.5959595959596], 0.9796959494: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.9472502806: [0.8888888888889, 0.1111111111111], 0.2205897357: [0.040404040404, 0.959595959596, 0.4040404040404, 0.5959595959596], 0.4764819916: [0.2626262626263, 0.7373737373737, 0.3737373737374, 0.6262626262626], 0.1110090807: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.0277522702: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.4024079176: [0.040404040404, 0.959595959596, 0.4040404040404, 0.5959595959596], 0.3466993164: [0.5656565656566, 0.6565656565657, 0.4343434343434, 0.3434343434343], 0.7640036731: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.0785634119: [0.8888888888889, 0.1111111111111], 0.0477502296: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.6666666667: [0.0, 0.3333333333333, 0.6666666666667], 0.7574737272: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.2846648301: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.5517804306: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.1152943577: [0.1616161616162, 0.3838383838384, 0.6161616161616, 0.8383838383838], 0.4611774309: [0.2323232323232, 0.7676767676768, 0.6767676767677, 0.3232323232323], 0.4287317621: [0.4444444444444, 0.5555555555556], 0.3375165799: [0.1616161616162, 0.3838383838384, 0.6161616161616, 0.8383838383838], 0.4315886134: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.9288848077: [0.020202020202, 0.2020202020202, 0.979797979798, 0.7979797979798], 0.7550249974: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.1671258035: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.5711662075: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.7348229772: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.1685542292: [0.2525252525253, 0.5252525252525, 0.4747474747475, 0.7474747474747], 0.609325579: [0.3434343434343, 0.6565656565657, 0.4343434343434, 0.5656565656566], 0.0253035405: [0.9292929292929, 0.2929292929293, 0.7070707070707, 0.0707070707071], 0.5119885726: [0.5252525252525, 0.4747474747475, 0.2525252525253, 0.7474747474747], 0.1195796347: [0.040404040404, 0.4040404040404, 0.959595959596, 0.5959595959596], 0.4758698092: [0.2222222222222, 0.7777777777778], 0.4811753903: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.795224977: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.4177124783: [0.0808080808081, 0.1919191919192, 0.8080808080808, 0.9191919191919], 0.3838383838: [0.0, 0.6666666666667, 0.3333333333333], 0.209570452: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.6374859708: [0.2222222222222, 0.7777777777778], 0.9752066116: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.6111621263: [0.9292929292929, 0.0707070707071, 0.2929292929293, 0.7070707070707], 0.1446791144: [0.5656565656566, 0.6565656565657, 0.4343434343434, 0.3434343434343], 0.5462707887: [0.1717171717172, 0.7171717171717, 0.8282828282828, 0.2828282828283], 0.0571370268: [0.3232323232323, 0.7676767676768, 0.2323232323232, 0.6767676767677], 0.5509641873: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.6938067544: [0.7474747474747, 0.5252525252525, 0.2525252525253, 0.4747474747475], 0.0073461892: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.7678808285: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.8401183553: [0.2626262626263, 0.7373737373737, 0.3737373737374, 0.6262626262626], 0.3215998368: [0.040404040404, 0.959595959596, 0.4040404040404, 0.5959595959596], 0.71033568: [0.3434343434343, 0.6565656565657, 0.4343434343434, 0.5656565656566], 0.6778900112: [0.2222222222222, 0.7777777777778], 0.1532496684: [0.2626262626263, 0.7373737373737, 0.6262626262626, 0.3737373737374], 0.341801857: [0.040404040404, 0.959595959596, 0.4040404040404, 0.5959595959596], 0.077339047: [0.3232323232323, 0.7676767676768, 0.2323232323232, 0.6767676767677], 0.2769105193: [0.1616161616162, 0.3838383838384, 0.6161616161616, 0.8383838383838], 0.6758494031: [0.030303030303, 0.969696969697, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.7684930109: [0.1717171717172, 0.7171717171717, 0.8282828282828, 0.2828282828283], 0.2358942965: [0.0808080808081, 0.8080808080808, 0.1919191919192, 0.9191919191919], 0.22671156: [0.4444444444444, 0.5555555555556], 0.9068462402: [0.8888888888889, 0.1111111111111], 0.7844097541: [0.2323232323232, 0.7676767676768, 0.6767676767677, 0.3232323232323], 0.4562799714: [0.2626262626263, 0.7373737373737, 0.3737373737374, 0.6262626262626], 0.1140699929: [0.6868686868687, 0.3131313131313, 0.8686868686869, 0.1313131313131], 0.4238343026: [0.020202020202, 0.979797979798, 0.7979797979798, 0.2020202020202], 0.6056524844: [0.020202020202, 0.2020202020202, 0.979797979798, 0.7979797979798], 0.3913886338: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.081624324: [0.2828282828283, 0.1717171717172, 0.8282828282828, 0.7171717171717], 0.3264972962: [0.5656565656566, 0.6565656565657, 0.4343434343434, 0.3434343434343], 0.2940516274: [0.2222222222222, 0.7777777777778], 0.6262626263: [0.0, 0.3333333333333, 0.6666666666667], 0.2644628099: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.3950617284: [0.2222222222222, 0.7777777777778], 0.8897051321: [0.2828282828283, 0.1717171717172, 0.8282828282828, 0.7171717171717], 0.4409754107: [0.2323232323232, 0.7676767676768, 0.6767676767677, 0.3232323232323], 0.4085297419: [0.4444444444444, 0.5555555555556], 0.1028466483: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.9405162739: [0.2222222222222, 0.7777777777778], 0.0257116621: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.6399347005: [0.0808080808081, 0.1919191919192, 0.9191919191919, 0.8080808080808], 0.6280991736: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.5307621671: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.0436690134: [0.5656565656566, 0.6565656565657, 0.4343434343434, 0.3434343434343], 0.1422303847: [0.2828282828283, 0.1717171717172, 0.8282828282828, 0.7171717171717], 0.0771349862: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.8988878686: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.4609733701: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.9411284563: [0.2626262626263, 0.7373737373737, 0.3737373737374, 0.6262626262626], 0.8246097337: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.1818181818: [0.0, 0.6666666666667, 0.3333333333333], 0.354657688: [0.2222222222222, 0.7777777777778], 0.7005407611: [0.0808080808081, 0.1919191919192, 0.9191919191919, 0.8080808080808], 0.8015508622: [0.0808080808081, 0.1919191919192, 0.9191919191919, 0.8080808080808], 0.5707580859: [0.9292929292929, 0.0707070707071, 0.2929292929293, 0.7070707070707], 0.5383124171: [0.8686868686869, 0.1313131313131, 0.3131313131313, 0.6868686868687], 0.5058667483: [0.1717171717172, 0.7171717171717, 0.8282828282828, 0.2828282828283], 0.6227935925: [0.2323232323232, 0.7676767676768, 0.6767676767677, 0.3232323232323], 0.9943883277: [0.4444444444444, 0.5555555555556], 0.9294969901: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.1918171615: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.0479542904: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.6699316396: [0.3434343434343, 0.6565656565657, 0.4343434343434, 0.5656565656566], 0.1593714927: [0.8888888888889, 0.1111111111111], 0.5725946332: [0.7474747474747, 0.5252525252525, 0.2525252525253, 0.4747474747475], 0.0803999592: [0.020202020202, 0.979797979798, 0.2020202020202, 0.7979797979798], 0.2891541679: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.2567084991: [0.1616161616162, 0.3838383838384, 0.6161616161616, 0.8383838383838], 0.8670543822: [0.040404040404, 0.4040404040404, 0.959595959596, 0.5959595959596], 0.996224875: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.9637792062: [0.1616161616162, 0.3838383838384, 0.6161616161616, 0.8383838383838], 0.4444444444: [0.0, 0.3333333333333, 0.6666666666667], 0.8664421998: [0.8888888888889, 0.1111111111111], 0.2003877155: [0.040404040404, 0.959595959596, 0.4040404040404, 0.5959595959596], 0.4360779512: [0.2626262626263, 0.7373737373737, 0.3737373737374, 0.6262626262626], 0.4036322824: [0.020202020202, 0.979797979798, 0.7979797979798, 0.2020202020202], 0.3711866136: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505]} averages_odd={0.824507703: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.805325987: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.292929293: [0.0, 0.3333333333333, 0.6666666666667], 0.843485359: [0.9292929292929, 0.2929292929293, 0.7070707070707, 0.0707070707071], 0.778594021: [0.2828282828283, 0.1717171717172, 0.8282828282828, 0.7171717171717], 0.713702683: [0.3232323232323, 0.7676767676768, 0.2323232323232, 0.6767676767677], 0.681257015: [0.4444444444444, 0.5555555555556], 0.192735435: [0.2828282828283, 0.1717171717172, 0.8282828282828, 0.7171717171717], 0.372104887: [0.040404040404, 0.4040404040404, 0.959595959596, 0.5959595959596], 0.339659218: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.188450158: [0.2323232323232, 0.7676767676768, 0.6767676767677, 0.3232323232323], 0.913274156: [0.1616161616162, 0.3838383838384, 0.6161616161616, 0.8383838383838], 0.34251607: [0.030303030303, 0.969696969697, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.834914805: [0.3232323232323, 0.7676767676768, 0.2323232323232, 0.6767676767677], 0.46087134: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.845321906: [0.2525252525253, 0.5252525252525, 0.4747474747475, 0.7474747474747], 0.648199163: [0.2626262626263, 0.7373737373737, 0.3737373737374, 0.6262626262626], 0.650647893: [0.1616161616162, 0.3838383838384, 0.6161616161616, 0.8383838383838], 0.585756555: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.091113152: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.421691664: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.356800326: [0.3434343434343, 0.6565656565657, 0.4343434343434, 0.5656565656566], 0.233139476: [0.2828282828283, 0.1717171717172, 0.8282828282828, 0.7171717171717], 0.29476584: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.363534333: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.879604122: [0.2828282828283, 0.1717171717172, 0.8282828282828, 0.7171717171717], 0.420467299: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.935720845: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.365370881: [0.2626262626263, 0.7373737373737, 0.3737373737374, 0.6262626262626], 0.81103969: [0.6868686868687, 0.3131313131313, 0.8686868686869, 0.1313131313131], 0.095398429: [0.4444444444444, 0.5555555555556], 0.208448118: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.858585859: [0.0, 0.6666666666667, 0.3333333333333], 0.663911846: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.09825528: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.920008162: [0.2828282828283, 0.1717171717172, 0.8282828282828, 0.7171717171717], 0.35006632: [0.3232323232323, 0.7676767676768, 0.2323232323232, 0.6767676767677], 0.317620651: [0.4444444444444, 0.5555555555556], 0.067238037: [0.2323232323232, 0.7676767676768, 0.6767676767677, 0.3232323232323], 0.616365677: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.665748393: [0.969696969697, 0.030303030303, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.703907765: [0.2525252525253, 0.5252525252525, 0.4747474747475, 0.7474747474747], 0.412508928: [0.040404040404, 0.4040404040404, 0.959595959596, 0.5959595959596], 0.367207428: [0.0808080808081, 0.8080808080808, 0.1919191919192, 0.9191919191919], 0.95959596: [0.0, 0.6666666666667, 0.3333333333333], 0.34761759: [0.1616161616162, 0.3838383838384, 0.6161616161616, 0.8383838383838], 0.071523314: [0.2828282828283, 0.1717171717172, 0.8282828282828, 0.7171717171717], 0.764921947: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.272727273: [0.0, 0.3333333333333, 0.6666666666667], 0.738189981: [0.2828282828283, 0.1717171717172, 0.8282828282828, 0.7171717171717], 0.640852974: [0.4444444444444, 0.5555555555556], 0.932863993: [0.0808080808081, 0.8080808080808, 0.1919191919192, 0.9191919191919], 0.575961637: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.828180798: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.319457198: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.287011529: [0.1616161616162, 0.3838383838384, 0.6161616161616, 0.8383838383838], 0.961432507: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.8640955: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.32231405: [0.030303030303, 0.969696969697, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.239873482: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.724109785: [0.2525252525253, 0.5252525252525, 0.4747474747475, 0.7474747474747], 0.804917866: [0.2525252525253, 0.5252525252525, 0.4747474747475, 0.7474747474747], 0.138251199: [0.7474747474747, 0.5252525252525, 0.2525252525253, 0.4747474747475], 0.642689521: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.0580553: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.809815325: [0.2626262626263, 0.7373737373737, 0.3737373737374, 0.6262626262626], 0.512906846: [0.8888888888889, 0.1111111111111], 0.304152637: [0.2222222222222, 0.7777777777778], 0.552086522: [0.3232323232323, 0.7676767676768, 0.2323232323232, 0.6767676767677], 0.898989899: [0.0, 0.6666666666667, 0.3333333333333], 0.524334252: [0.030303030303, 0.969696969697, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.956126926: [0.3232323232323, 0.7676767676768, 0.2323232323232, 0.6767676767677], 0.87164575: [0.6868686868687, 0.3131313131313, 0.8686868686869, 0.1313131313131], 0.27456382: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.179267422: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.741863075: [0.4444444444444, 0.5555555555556], 0.312723192: [0.020202020202, 0.979797979798, 0.2020202020202, 0.7979797979798], 0.280277523: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.421487603: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.970819304: [0.2222222222222, 0.7777777777778], 0.910213244: [0.2222222222222, 0.7777777777778], 0.102744618: [0.2626262626263, 0.7373737373737, 0.3737373737374, 0.6262626262626], 0.882052852: [0.5656565656566, 0.6565656565657, 0.4343434343434, 0.3434343434343], 0.062340577: [0.2626262626263, 0.7373737373737, 0.3737373737374, 0.6262626262626], 0.3298643: [0.3232323232323, 0.7676767676768, 0.2323232323232, 0.6767676767677], 0.297418631: [0.4444444444444, 0.5555555555556], 0.47107438: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.722681359: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.63717988: [0.2828282828283, 0.1717171717172, 0.8282828282828, 0.7171717171717], 0.880624426: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.625344353: [0.030303030303, 0.969696969697, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.533721049: [0.040404040404, 0.4040404040404, 0.959595959596, 0.5959595959596], 0.131517192: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.347005408: [0.0808080808081, 0.8080808080808, 0.1919191919192, 0.9191919191919], 0.919191919: [0.0, 0.6666666666667, 0.3333333333333], 0.726354454: [0.030303030303, 0.969696969697, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.579022549: [0.3434343434343, 0.6565656565657, 0.4343434343434, 0.5656565656566], 0.724517906: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.683093562: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.002958882: [0.1313131313131, 0.6868686868687, 0.3131313131313, 0.8686868686869], 0.252525253: [0.0, 0.3333333333333, 0.6666666666667], 0.13865932: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.461483522: [0.2525252525253, 0.5252525252525, 0.4747474747475, 0.7474747474747], 0.535557596: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.111315172: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.973268034: [0.0808080808081, 0.8080808080808, 0.1919191919192, 0.9191919191919], 0.331700847: [0.040404040404, 0.4040404040404, 0.959595959596, 0.5959595959596], 0.299255178: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.266809509: [0.1616161616162, 0.3838383838384, 0.6161616161616, 0.8383838383838], 0.397204367: [0.3434343434343, 0.6565656565657, 0.4343434343434, 0.5656565656566], 0.861850832: [0.3434343434343, 0.6565656565657, 0.4343434343434, 0.5656565656566], 0.057443118: [0.7474747474747, 0.5252525252525, 0.2525252525253, 0.4747474747475], 0.446178961: [0.2626262626263, 0.7373737373737, 0.3737373737374, 0.6262626262626], 0.569839812: [0.1616161616162, 0.3838383838384, 0.6161616161616, 0.8383838383838], 0.248852158: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.017447199: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.048260382: [0.8888888888889, 0.1111111111111], 0.316396286: [0.3434343434343, 0.6565656565657, 0.4343434343434, 0.5656565656566], 0.283950617: [0.2222222222222, 0.7777777777778], 0.987144169: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.673298643: [0.3232323232323, 0.7676767676768, 0.2323232323232, 0.6767676767677], 0.955922865: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.83124171: [0.6868686868687, 0.3131313131313, 0.8686868686869, 0.1313131313131], 0.2543618: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.043362922: [0.1313131313131, 0.6868686868687, 0.3131313131313, 0.8686868686869], 0.495765738: [0.2828282828283, 0.1717171717172, 0.8282828282828, 0.7171717171717], 0.636567697: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.030507091: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.260075503: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.087440057: [0.2323232323232, 0.7676767676768, 0.6767676767677, 0.3232323232323], 0.401285583: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.906540149: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.226405469: [0.1616161616162, 0.3838383838384, 0.6161616161616, 0.8383838383838], 0.766758494: [0.969696969697, 0.030303030303, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.028058361: [0.8888888888889, 0.1111111111111], 0.865523926: [0.2525252525253, 0.5252525252525, 0.4747474747475, 0.7474747474747], 0.452300786: [0.8888888888889, 0.1111111111111], 0.763901643: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.091725334: [0.2828282828283, 0.1717171717172, 0.8282828282828, 0.7171717171717], 0.45087236: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.682277319: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.601061116: [0.9292929292929, 0.2929292929293, 0.7070707070707, 0.0707070707071], 0.405774921: [0.2626262626263, 0.7373737373737, 0.3737373737374, 0.6262626262626], 0.716763596: [0.020202020202, 0.979797979798, 0.2020202020202, 0.7979797979798], 0.424140394: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.107642077: [0.2323232323232, 0.7676767676768, 0.6767676767677, 0.3232323232323], 0.878787879: [0.0, 0.6666666666667, 0.3333333333333], 0.912049791: [0.6868686868687, 0.3131313131313, 0.8686868686869, 0.1313131313131], 0.825528007: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.063564942: [0.1313131313131, 0.6868686868687, 0.3131313131313, 0.8686868686869], 0.488419549: [0.0808080808081, 0.8080808080808, 0.1919191919192, 0.9191919191919], 0.814712784: [0.3232323232323, 0.7676767676768, 0.2323232323232, 0.6767676767677], 0.6573819: [0.2828282828283, 0.1717171717172, 0.8282828282828, 0.7171717171717], 0.178655239: [0.7474747474747, 0.5252525252525, 0.2525252525253, 0.4747474747475], 0.441281502: [0.2525252525253, 0.5252525252525, 0.4747474747475, 0.7474747474747], 0.033568003: [0.3434343434343, 0.6565656565657, 0.4343434343434, 0.5656565656566], 0.379247016: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.279053158: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.886338129: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.635955515: [0.020202020202, 0.979797979798, 0.2020202020202, 0.7979797979798], 0.844709723: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.219671462: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.594327109: [0.040404040404, 0.4040404040404, 0.959595959596, 0.5959595959596], 0.154780124: [0.3434343434343, 0.6565656565657, 0.4343434343434, 0.5656565656566], 0.425976941: [0.2626262626263, 0.7373737373737, 0.3737373737374, 0.6262626262626], 0.393531272: [0.020202020202, 0.979797979798, 0.2020202020202, 0.7979797979798], 0.059687787: [0.030303030303, 0.969696969697, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.587593103: [0.2626262626263, 0.7373737373737, 0.3737373737374, 0.6262626262626], 0.859402102: [0.2828282828283, 0.1717171717172, 0.8282828282828, 0.7171717171717], 0.02009999: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.953066014: [0.0808080808081, 0.8080808080808, 0.1919191919192, 0.9191919191919], 0.482093664: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.823283338: [0.9292929292929, 0.2929292929293, 0.7070707070707, 0.0707070707071], 0.758392001: [0.2828282828283, 0.1717171717172, 0.8282828282828, 0.7171717171717], 0.122946638: [0.2626262626263, 0.7373737373737, 0.3737373737374, 0.6262626262626], 0.661054994: [0.4444444444444, 0.5555555555556], 0.475563718: [0.2828282828283, 0.1717171717172, 0.8282828282828, 0.7171717171717], 0.41067238: [0.3232323232323, 0.7676767676768, 0.2323232323232, 0.6767676767677], 0.791449852: [0.0808080808081, 0.8080808080808, 0.1919191919192, 0.9191919191919], 0.733904704: [0.3232323232323, 0.7676767676768, 0.2323232323232, 0.6767676767677], 0.03785328: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.381083563: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.542699725: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.98734823: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.750433629: [0.6868686868687, 0.3131313131313, 0.8686868686869, 0.1313131313131], 0.386797266: [0.1313131313131, 0.6868686868687, 0.3131313131313, 0.8686868686869], 0.69533721: [0.040404040404, 0.4040404040404, 0.959595959596, 0.5959595959596], 0.023160902: [0.1313131313131, 0.6868686868687, 0.3131313131313, 0.8686868686869], 0.427813488: [0.0808080808081, 0.8080808080808, 0.1919191919192, 0.9191919191919], 0.739210285: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.333333333: [0.0, 0.3333333333333, 0.6666666666667], 0.762677278: [0.9292929292929, 0.2929292929293, 0.7070707070707, 0.0707070707071], 0.653096623: [0.3232323232323, 0.7676767676768, 0.2323232323232, 0.6767676767677], 0.924293439: [0.9292929292929, 0.2929292929293, 0.7070707070707, 0.0707070707071], 0.403938374: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.371492705: [0.8888888888889, 0.1111111111111], 0.553923069: [0.040404040404, 0.4040404040404, 0.959595959596, 0.5959595959596], 0.885113764: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.777369656: [0.020202020202, 0.979797979798, 0.2020202020202, 0.7979797979798], 0.309458219: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.643709826: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.959187838: [0.020202020202, 0.979797979798, 0.2020202020202, 0.7979797979798], 0.519640853: [0.4444444444444, 0.5555555555556], 0.421079482: [0.2525252525253, 0.5252525252525, 0.4747474747475, 0.7474747474747], 0.897357413: [0.040404040404, 0.4040404040404, 0.959595959596, 0.5959595959596], 0.014590348: [0.4444444444444, 0.5555555555556], 0.751045812: [0.0808080808081, 0.8080808080808, 0.1919191919192, 0.9191919191919], 0.922456892: [0.5656565656566, 0.6565656565657, 0.4343434343434, 0.3434343434343], 0.010917253: [0.2828282828283, 0.1717171717172, 0.8282828282828, 0.7171717171717], 0.742883379: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.261707989: [0.030303030303, 0.969696969697, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.924701561: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.035812672: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.683705744: [0.2525252525253, 0.5252525252525, 0.4747474747475, 0.7474747474747], 0.013365983: [0.3434343434343, 0.6565656565657, 0.4343434343434, 0.5656565656566], 0.120293848: [0.030303030303, 0.969696969697, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.5214774: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.373329252: [0.020202020202, 0.979797979798, 0.2020202020202, 0.7979797979798], 0.340883583: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.228650138: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.939393939: [0.0, 0.6666666666667, 0.3333333333333], 0.588817468: [0.1313131313131, 0.6868686868687, 0.3131313131313, 0.8686868686869], 0.977553311: [0.8888888888889, 0.1111111111111], 0.912661973: [0.0808080808081, 0.8080808080808, 0.1919191919192, 0.9191919191919], 0.556371799: [0.2828282828283, 0.1717171717172, 0.8282828282828, 0.7171717171717], 0.165187226: [0.0808080808081, 0.8080808080808, 0.1919191919192, 0.9191919191919], 0.71798796: [0.2828282828283, 0.1717171717172, 0.8282828282828, 0.7171717171717], 0.965921845: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.620650954: [0.4444444444444, 0.5555555555556], 0.555759616: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.39047036: [0.3232323232323, 0.7676767676768, 0.2323232323232, 0.6767676767677], 0.111927354: [0.2828282828283, 0.1717171717172, 0.8282828282828, 0.7171717171717], 0.406999286: [0.1313131313131, 0.6868686868687, 0.3131313131313, 0.8686868686869], 0.979389858: [0.020202020202, 0.979797979798, 0.2020202020202, 0.7979797979798], 0.360881543: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.946944189: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.206203449: [0.1616161616162, 0.3838383838384, 0.6161616161616, 0.8383838383838], 0.849607183: [0.2222222222222, 0.7777777777778], 0.784715845: [0.2525252525253, 0.5252525252525, 0.4747474747475, 0.7474747474747], 0.141312111: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.842873176: [0.4444444444444, 0.5555555555556], 0.334149577: [0.2828282828283, 0.1717171717172, 0.8282828282828, 0.7171717171717], 0.735741251: [0.040404040404, 0.4040404040404, 0.959595959596, 0.5959595959596], 0.180899908: [0.030303030303, 0.969696969697, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.4912764: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.313131313: [0.0, 0.3333333333333, 0.6666666666667], 0.670849913: [0.1616161616162, 0.3838383838384, 0.6161616161616, 0.8383838383838], 0.818998061: [0.2828282828283, 0.1717171717172, 0.8282828282828, 0.7171717171717], 0.149882665: [0.040404040404, 0.4040404040404, 0.959595959596, 0.5959595959596], 0.40312213: [0.030303030303, 0.969696969697, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.351290685: [0.8888888888889, 0.1111111111111], 0.009692888: [0.020202020202, 0.2020202020202, 0.979797979798, 0.7979797979798], 0.460055096: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.688603204: [0.2626262626263, 0.7373737373737, 0.3737373737374, 0.6262626262626], 0.807978778: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.603305785: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.157024793: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.993470054: [0.0808080808081, 0.8080808080808, 0.1919191919192, 0.9191919191919], 0.605958576: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.684317927: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.158453219: [0.7474747474747, 0.5252525252525, 0.2525252525253, 0.4747474747475], 0.508621569: [0.0808080808081, 0.8080808080808, 0.1919191919192, 0.9191919191919], 0.271094786: [0.040404040404, 0.4040404040404, 0.959595959596, 0.5959595959596], 0.001734517: [0.2626262626263, 0.7373737373737, 0.3737373737374, 0.6262626262626], 0.201101928: [0.030303030303, 0.969696969697, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.702479339: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.605142332: [0.969696969697, 0.030303030303, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.708193042: [0.2222222222222, 0.7777777777778], 0.643301704: [0.2525252525253, 0.5252525252525, 0.4747474747475, 0.7474747474747], 0.293745536: [0.2828282828283, 0.1717171717172, 0.8282828282828, 0.7171717171717], 0.134578104: [0.3434343434343, 0.6565656565657, 0.4343434343434, 0.5656565656566], 0.073972044: [0.3434343434343, 0.6565656565657, 0.4343434343434, 0.5656565656566], 0.353127232: [0.020202020202, 0.979797979798, 0.2020202020202, 0.7979797979798], 0.320681563: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.255790225: [0.3434343434343, 0.6565656565657, 0.4343434343434, 0.5656565656566], 0.817773697: [0.020202020202, 0.979797979798, 0.2020202020202, 0.7979797979798], 0.872257933: [0.0808080808081, 0.8080808080808, 0.1919191919192, 0.9191919191919], 0.710029589: [0.6868686868687, 0.3131313131313, 0.8686868686869, 0.1313131313131], 0.467605346: [0.1313131313131, 0.6868686868687, 0.3131313131313, 0.8686868686869], 0.612692582: [0.3232323232323, 0.7676767676768, 0.2323232323232, 0.6767676767677], 0.515355576: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.143148658: [0.2626262626263, 0.7373737373737, 0.3737373737374, 0.6262626262626], 0.337822671: [0.4444444444444, 0.5555555555556], 0.938985818: [0.020202020202, 0.979797979798, 0.2020202020202, 0.7979797979798], 0.841648811: [0.3434343434343, 0.6565656565657, 0.4343434343434, 0.5656565656566], 0.509233752: [0.1616161616162, 0.3838383838384, 0.6161616161616, 0.8383838383838], 0.484746454: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.601469238: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.932251811: [0.6868686868687, 0.3131313131313, 0.8686868686869, 0.1313131313131], 0.662891542: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.390266299: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.617998163: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.568615447: [0.1313131313131, 0.6868686868687, 0.3131313131313, 0.8686868686869], 0.561881441: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.996530966: [0.3232323232323, 0.7676767676768, 0.2323232323232, 0.6767676767677], 0.266197327: [0.0808080808081, 0.8080808080808, 0.1919191919192, 0.9191919191919], 0.845730028: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.158861341: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.656157535: [0.020202020202, 0.979797979798, 0.2020202020202, 0.7979797979798], 0.802469136: [0.4444444444444, 0.5555555555556], 0.562901745: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.197020712: [0.9292929292929, 0.0707070707071, 0.2929292929293, 0.7070707070707], 0.127844098: [0.2323232323232, 0.7676767676768, 0.6767676767677, 0.3232323232323], 0.536169779: [0.2828282828283, 0.1717171717172, 0.8282828282828, 0.7171717171717], 0.250892766: [0.040404040404, 0.4040404040404, 0.959595959596, 0.5959595959596], 0.759412305: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.662075298: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.765126008: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.109478625: [0.040404040404, 0.4040404040404, 0.959595959596, 0.5959595959596], 0.686766656: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.495153556: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.136414652: [0.9292929292929, 0.0707070707071, 0.2929292929293, 0.7070707070707], 0.757167636: [0.020202020202, 0.979797979798, 0.2020202020202, 0.7979797979798], 0.957963473: [0.040404040404, 0.4040404040404, 0.959595959596, 0.5959595959596], 0.619426589: [0.3434343434343, 0.6565656565657, 0.4343434343434, 0.5656565656566], 0.332925212: [0.020202020202, 0.979797979798, 0.2020202020202, 0.7979797979798], 0.300479543: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.782267116: [0.4444444444444, 0.5555555555556], 0.008468524: [0.040404040404, 0.4040404040404, 0.959595959596, 0.5959595959596], 0.122334456: [0.2222222222222, 0.7777777777778], 0.91694725: [0.8888888888889, 0.1111111111111], 0.246607489: [0.1616161616162, 0.3838383838384, 0.6161616161616, 0.8383838383838], 0.669625548: [0.6868686868687, 0.3131313131313, 0.8686868686869, 0.1313131313131], 0.181716151: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.144985206: [0.0808080808081, 0.8080808080808, 0.1919191919192, 0.9191919191919], 0.447403326: [0.1313131313131, 0.6868686868687, 0.3131313131313, 0.8686868686869], 0.414957657: [0.2828282828283, 0.1717171717172, 0.8282828282828, 0.7171717171717], 0.116620753: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.252729313: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.763085399: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.852055913: [0.0808080808081, 0.8080808080808, 0.1919191919192, 0.9191919191919], 0.513519029: [0.040404040404, 0.4040404040404, 0.959595959596, 0.5959595959596], 0.797979798: [0.0, 0.3333333333333, 0.6666666666667], 0.118049179: [0.7474747474747, 0.5252525252525, 0.2525252525253, 0.4747474747475], 0.190286705: [0.040404040404, 0.4040404040404, 0.959595959596, 0.5959595959596], 0.464544434: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.432098765: [0.8888888888889, 0.1111111111111], 0.053770023: [0.3434343434343, 0.6565656565657, 0.4343434343434, 0.5656565656566], 0.661667177: [0.9292929292929, 0.2929292929293, 0.7070707070707, 0.0707070707071], 0.370064279: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.160697888: [0.030303030303, 0.969696969697, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.931027446: [0.2626262626263, 0.7373737373737, 0.3737373737374, 0.6262626262626], 0.674523008: [0.8888888888889, 0.1111111111111], 0.770635649: [0.6868686868687, 0.3131313131313, 0.8686868686869, 0.1313131313131], 0.198857259: [0.7474747474747, 0.5252525252525, 0.2525252525253, 0.4747474747475], 0.481685542: [0.2525252525253, 0.5252525252525, 0.4747474747475, 0.7474747474747], 0.129680645: [0.040404040404, 0.4040404040404, 0.959595959596, 0.5959595959596], 0.996326905: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.814508724: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.560044893: [0.4444444444444, 0.5555555555556], 0.419651056: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.522497704: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.999591878: [0.020202020202, 0.979797979798, 0.2020202020202, 0.7979797979798], 0.136822773: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.994082237: [0.1616161616162, 0.3838383838384, 0.6161616161616, 0.8383838383838], 0.425364759: [0.2222222222222, 0.7777777777778], 0.01010101: [0.0, 0.3333333333333, 0.6666666666667], 0.094174064: [0.3434343434343, 0.6565656565657, 0.4343434343434, 0.5656565656566], 0.351902867: [0.040404040404, 0.4040404040404, 0.959595959596, 0.5959595959596], 0.719008264: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.641465157: [0.9292929292929, 0.2929292929293, 0.7070707070707, 0.0707070707071], 0.621671258: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.23415978: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.048872564: [0.040404040404, 0.4040404040404, 0.959595959596, 0.5959595959596], 0.031119274: [0.2828282828283, 0.1717171717172, 0.8282828282828, 0.7171717171717], 0.474951536: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.690439751: [0.0808080808081, 0.8080808080808, 0.1919191919192, 0.9191919191919], 0.63473115: [0.040404040404, 0.4040404040404, 0.959595959596, 0.5959595959596], 0.609019488: [0.1313131313131, 0.6868686868687, 0.3131313131313, 0.8686868686869], 0.098459341: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.678604224: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.915518825: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.818181818: [0.0, 0.6666666666667, 0.3333333333333], 0.358024691: [0.4444444444444, 0.5555555555556], 0.028670544: [0.040404040404, 0.4040404040404, 0.959595959596, 0.5959595959596], 0.85634119: [0.8888888888889, 0.1111111111111], 0.623507805: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.596775839: [0.2828282828283, 0.1717171717172, 0.8282828282828, 0.7171717171717], 0.034792368: [0.4444444444444, 0.5555555555556], 0.394755637: [0.2828282828283, 0.1717171717172, 0.8282828282828, 0.7171717171717], 0.652892562: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.070298949: [0.020202020202, 0.2020202020202, 0.979797979798, 0.7979797979798], 0.820018365: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.300275482: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.192123253: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.825732068: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.023773084: [0.0808080808081, 0.8080808080808, 0.1919191919192, 0.9191919191919], 0.663503724: [0.2525252525253, 0.5252525252525, 0.4747474747475, 0.7474747474747], 0.760840731: [0.3434343434343, 0.6565656565657, 0.4343434343434, 0.5656565656566], 0.444342414: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.411896745: [0.8888888888889, 0.1111111111111], 0.781042751: [0.3434343434343, 0.6565656565657, 0.4343434343434, 0.5656565656566], 0.199265381: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.043975105: [0.0808080808081, 0.8080808080808, 0.1919191919192, 0.9191919191919], 0.349862259: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.056014692: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.957351291: [0.8888888888889, 0.1111111111111], 0.892459953: [0.0808080808081, 0.8080808080808, 0.1919191919192, 0.9191919191919], 0.168248138: [0.2323232323232, 0.7676767676768, 0.6767676767677, 0.3232323232323], 0.96469748: [0.9292929292929, 0.2929292929293, 0.7070707070707, 0.0707070707071], 0.69778594: [0.2828282828283, 0.1717171717172, 0.8282828282828, 0.7171717171717], 0.67513519: [0.040404040404, 0.4040404040404, 0.959595959596, 0.5959595959596], 0.496786042: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.799816345: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.782879298: [0.9292929292929, 0.2929292929293, 0.7070707070707, 0.0707070707071], 0.676767677: [0.0, 0.3333333333333, 0.6666666666667], 0.856953372: [0.040404040404, 0.4040404040404, 0.959595959596, 0.5959595959596], 0.302112029: [0.030303030303, 0.969696969697, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.176818692: [0.9292929292929, 0.0707070707071, 0.2929292929293, 0.7070707070707], 0.144373023: [0.1313131313131, 0.6868686868687, 0.3131313131313, 0.8686868686869], 0.340271401: [0.2525252525253, 0.5252525252525, 0.4747474747475, 0.7474747474747], 0.711253954: [0.1616161616162, 0.3838383838384, 0.6161616161616, 0.8383838383838], 0.837975717: [0.020202020202, 0.979797979798, 0.2020202020202, 0.7979797979798], 0.545352515: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.278236915: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.320069381: [0.7474747474747, 0.5252525252525, 0.2525252525253, 0.4747474747475], 0.581267218: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.298438935: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.185389246: [0.0808080808081, 0.8080808080808, 0.1919191919192, 0.9191919191919], 0.522089583: [0.2525252525253, 0.5252525252525, 0.4747474747475, 0.7474747474747], 0.494541373: [0.020202020202, 0.979797979798, 0.2020202020202, 0.7979797979798], 0.32496684: [0.2626262626263, 0.7373737373737, 0.3737373737374, 0.6262626262626], 0.875114784: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.945719825: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.777777778: [0.0, 0.6666666666667, 0.3333333333333], 0.946740129: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.583103765: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.336598306: [0.3434343434343, 0.6565656565657, 0.4343434343434, 0.5656565656566], 0.161514131: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.129068462: [0.8888888888889, 0.1111111111111], 0.374553617: [0.2828282828283, 0.1717171717172, 0.8282828282828, 0.7171717171717], 0.309662279: [0.3232323232323, 0.7676767676768, 0.2323232323232, 0.6767676767677], 0.91939598: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.021324355: [0.2222222222222, 0.7777777777778], 0.779614325: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.280073462: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.785328028: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.687991021: [0.2222222222222, 0.7777777777778], 0.721661055: [0.4444444444444, 0.5555555555556], 0.623099684: [0.2525252525253, 0.5252525252525, 0.4747474747475, 0.7474747474747], 0.170084685: [0.040404040404, 0.4040404040404, 0.959595959596, 0.5959595959596], 0.137639016: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.391694725: [0.8888888888889, 0.1111111111111], 0.326803387: [0.0808080808081, 0.8080808080808, 0.1919191919192, 0.9191919191919], 0.976124885: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.076216713: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.562493623: [0.2525252525253, 0.5252525252525, 0.4747474747475, 0.7474747474747], 0.329660239: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.96714621: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.016426895: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.722273237: [0.9292929292929, 0.2929292929293, 0.7070707070707, 0.0707070707071], 0.296194266: [0.3434343434343, 0.6565656565657, 0.4343434343434, 0.5656565656566], 0.114376084: [0.3434343434343, 0.6565656565657, 0.4343434343434, 0.5656565656566], 0.385572901: [0.2626262626263, 0.7373737373737, 0.3737373737374, 0.6262626262626], 0.804305683: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.476584022: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.708805224: [0.2626262626263, 0.7373737373737, 0.3737373737374, 0.6262626262626], 0.951229466: [0.2626262626263, 0.7373737373737, 0.3737373737374, 0.6262626262626], 0.281910009: [0.030303030303, 0.969696969697, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.501887562: [0.2525252525253, 0.5252525252525, 0.4747474747475, 0.7474747474747], 0.789001122: [0.2222222222222, 0.7777777777778], 0.908172635: [0.969696969697, 0.030303030303, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.118661361: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.774308744: [0.3232323232323, 0.7676767676768, 0.2323232323232, 0.6767676767677], 0.87654321: [0.8888888888889, 0.1111111111111], 0.223956739: [0.2626262626263, 0.7373737373737, 0.3737373737374, 0.6262626262626], 0.540863177: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.821446791: [0.5656565656566, 0.6565656565657, 0.4343434343434, 0.3434343434343], 0.980002041: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.050505051: [0.0, 0.3333333333333, 0.6666666666667], 0.30476482: [0.2626262626263, 0.7373737373737, 0.3737373737374, 0.6262626262626], 0.272319151: [0.020202020202, 0.979797979798, 0.2020202020202, 0.7979797979798], 0.090500969: [0.020202020202, 0.2020202020202, 0.979797979798, 0.7979797979798], 0.834710744: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.737373737: [0.0, 0.3333333333333, 0.6666666666667], 0.232527293: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.163350679: [0.2626262626263, 0.7373737373737, 0.3737373737374, 0.6262626262626], 0.13090501: [0.020202020202, 0.979797979798, 0.2020202020202, 0.7979797979798], 0.548413427: [0.1313131313131, 0.6868686868687, 0.3131313131313, 0.8686868686869], 0.953678196: [0.1616161616162, 0.3838383838384, 0.6161616161616, 0.8383838383838], 0.107438017: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.904091419: [0.9292929292929, 0.2929292929293, 0.7070707070707, 0.0707070707071], 0.454545455: [0.0, 0.3333333333333, 0.6666666666667], 0.354351597: [0.2828282828283, 0.1717171717172, 0.8282828282828, 0.7171717171717], 0.289460259: [0.2323232323232, 0.7676767676768, 0.6767676767677, 0.3232323232323], 0.25701459: [0.4444444444444, 0.5555555555556], 0.986123865: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.259871442: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.208652178: [0.2323232323232, 0.7676767676768, 0.6767676767677, 0.3232323232323], 0.171921233: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.68003265: [0.3434343434343, 0.6565656565657, 0.4343434343434, 0.5656565656566], 0.468829711: [0.1616161616162, 0.3838383838384, 0.6161616161616, 0.8383838383838], 0.582695643: [0.2525252525253, 0.5252525252525, 0.4747474747475, 0.7474747474747], 0.748597082: [0.2222222222222, 0.7777777777778], 0.67758392: [0.2828282828283, 0.1717171717172, 0.8282828282828, 0.7171717171717], 0.755943271: [0.040404040404, 0.4040404040404, 0.959595959596, 0.5959595959596], 0.306601367: [0.0808080808081, 0.8080808080808, 0.1919191919192, 0.9191919191919], 0.179063361: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.908988879: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.811651872: [0.0808080808081, 0.8080808080808, 0.1919191919192, 0.9191919191919], 0.217222732: [0.9292929292929, 0.0707070707071, 0.2929292929293, 0.7070707070707], 0.148046118: [0.2323232323232, 0.7676767676768, 0.6767676767677, 0.3232323232323], 0.616977859: [0.2828282828283, 0.1717171717172, 0.8282828282828, 0.7171717171717], 0.250280584: [0.8888888888889, 0.1111111111111], 0.456382002: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.291296806: [0.040404040404, 0.4040404040404, 0.959595959596, 0.5959595959596], 0.878379757: [0.020202020202, 0.979797979798, 0.2020202020202, 0.7979797979798], 0.845934088: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.225793286: [0.0808080808081, 0.8080808080808, 0.1919191919192, 0.9191919191919], 0.078257321: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.156616672: [0.9292929292929, 0.0707070707071, 0.2929292929293, 0.7070707070707], 0.981634527: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.768799102: [0.2222222222222, 0.7777777777778], 0.597796143: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.500459137: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.131313131: [0.0, 0.3333333333333, 0.6666666666667], 0.70023467: [0.3434343434343, 0.6565656565657, 0.4343434343434, 0.5656565656566], 0.50617284: [0.2222222222222, 0.7777777777778], 0.439444955: [0.9292929292929, 0.0707070707071, 0.2929292929293, 0.7070707070707], 0.580859096: [0.9292929292929, 0.2929292929293, 0.7070707070707, 0.0707070707071], 0.2845628: [0.2626262626263, 0.7373737373737, 0.3737373737374, 0.6262626262626], 0.252117131: [0.020202020202, 0.979797979798, 0.2020202020202, 0.7979797979798], 0.97979798: [0.0, 0.6666666666667, 0.3333333333333], 0.696969697: [0.0, 0.3333333333333, 0.6666666666667], 0.502295684: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.870421386: [0.2626262626263, 0.7373737373737, 0.3737373737374, 0.6262626262626], 0.508009387: [0.1313131313131, 0.6868686868687, 0.3131313131313, 0.8686868686869], 0.241505969: [0.030303030303, 0.969696969697, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.269258239: [0.3232323232323, 0.7676767676768, 0.2323232323232, 0.6767676767677], 0.096418733: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.210488726: [0.040404040404, 0.4040404040404, 0.959595959596, 0.5959595959596], 0.825119886: [0.2525252525253, 0.5252525252525, 0.4747474747475, 0.7474747474747], 0.698806244: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.971431487: [0.2626262626263, 0.7373737373737, 0.3737373737374, 0.6262626262626], 0.704519947: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.504132231: [0.030303030303, 0.969696969697, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.448627691: [0.1616161616162, 0.3838383838384, 0.6161616161616, 0.8383838383838], 0.03030303: [0.0, 0.3333333333333, 0.6666666666667], 0.383736353: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.102132435: [0.2222222222222, 0.7777777777778], 0.868584838: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.286399347: [0.0808080808081, 0.8080808080808, 0.1919191919192, 0.9191919191919], 0.21905928: [0.7474747474747, 0.5252525252525, 0.2525252525253, 0.4747474747475], 0.933476176: [0.1616161616162, 0.3838383838384, 0.6161616161616, 0.8383838383838], 0.807162534: [0.969696969697, 0.030303030303, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.346393225: [0.1313131313131, 0.6868686868687, 0.3131313131313, 0.8686868686869], 0.771247832: [0.0808080808081, 0.8080808080808, 0.1919191919192, 0.9191919191919], 0.902254872: [0.5656565656566, 0.6565656565657, 0.4343434343434, 0.3434343434343], 0.239669421: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.498214468: [0.3434343434343, 0.6565656565657, 0.4343434343434, 0.5656565656566], 0.414141414: [0.0, 0.3333333333333, 0.6666666666667], 0.400877461: [0.7474747474747, 0.5252525252525, 0.2525252525253, 0.4747474747475], 0.630445873: [0.1616161616162, 0.3838383838384, 0.6161616161616, 0.8383838383838], 0.436179982: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.850219365: [0.2626262626263, 0.7373737373737, 0.3737373737374, 0.6262626262626], 0.72043669: [0.3434343434343, 0.6565656565657, 0.4343434343434, 0.5656565656566], 0.338842975: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.195184165: [0.3434343434343, 0.6565656565657, 0.4343434343434, 0.5656565656566], 0.072543618: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.74063871: [0.3434343434343, 0.6565656565657, 0.4343434343434, 0.5656565656566], 0.054994388: [0.4444444444444, 0.5555555555556], 0.891847771: [0.6868686868687, 0.3131313131313, 0.8686868686869, 0.1313131313131], 0.001122334: [0.2222222222222, 0.7777777777778], 0.110702989: [0.020202020202, 0.979797979798, 0.2020202020202, 0.7979797979798], 0.729007244: [0.2626262626263, 0.7373737373737, 0.3737373737374, 0.6262626262626], 0.133149679: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.557392103: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.803081318: [0.9292929292929, 0.2929292929293, 0.7070707070707, 0.0707070707071], 0.203754719: [0.2626262626263, 0.7373737373737, 0.3737373737374, 0.6262626262626], 0.17130905: [0.020202020202, 0.979797979798, 0.2020202020202, 0.7979797979798], 0.966942149: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.474747475: [0.0, 0.3333333333333, 0.6666666666667], 0.394143455: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.923681257: [0.4444444444444, 0.5555555555556], 0.948576676: [0.969696969697, 0.030303030303, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.744923987: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.26436078: [0.2626262626263, 0.7373737373737, 0.3737373737374, 0.6262626262626], 0.906336088: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.890011223: [0.2222222222222, 0.7777777777778], 0.656565657: [0.0, 0.3333333333333, 0.6666666666667], 0.340679522: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.212325273: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.298030813: [0.9292929292929, 0.0707070707071, 0.2929292929293, 0.7070707070707], 0.378838894: [0.9292929292929, 0.0707070707071, 0.2929292929293, 0.7070707070707], 0.647586981: [0.2222222222222, 0.7777777777778], 0.219467401: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.050096929: [0.020202020202, 0.979797979798, 0.2020202020202, 0.7979797979798], 0.658402204: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.08070605: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.561065197: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.006631976: [0.2323232323232, 0.7676767676768, 0.6767676767677, 0.3232323232323], 0.664115907: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.100908071: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.156004489: [0.4444444444444, 0.5555555555556], 0.428425671: [0.1616161616162, 0.3838383838384, 0.6161616161616, 0.8383838383838], 0.331088664: [0.8888888888889, 0.1111111111111], 0.854912764: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.269054178: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.795735129: [0.8888888888889, 0.1111111111111], 0.730843791: [0.0808080808081, 0.8080808080808, 0.1919191919192, 0.9191919191919], 0.555555556: [0.0, 0.3333333333333, 0.6666666666667], 0.105193348: [0.1616161616162, 0.3838383838384, 0.6161616161616, 0.8383838383838], 0.164575043: [0.1313131313131, 0.6868686868687, 0.3131313131313, 0.8686868686869], 0.445566779: [0.2222222222222, 0.7777777777778], 0.380675441: [0.2525252525253, 0.5252525252525, 0.4747474747475, 0.7474747474747], 0.860422406: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.627997143: [0.2626262626263, 0.7373737373737, 0.3737373737374, 0.6262626262626], 0.762065095: [0.4444444444444, 0.5555555555556], 0.318640955: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.866136109: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.991633507: [0.2626262626263, 0.7373737373737, 0.6262626262626, 0.3737373737374], 0.830017345: [0.2626262626263, 0.7373737373737, 0.3737373737374, 0.6262626262626], 0.797571676: [0.020202020202, 0.979797979798, 0.2020202020202, 0.7979797979798], 0.068462402: [0.8888888888889, 0.1111111111111], 0.667789001: [0.2222222222222, 0.7777777777778], 0.638200184: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.077032956: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.583307826: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.5667789: [0.2222222222222, 0.7777777777778], 0.079889807: [0.030303030303, 0.969696969697, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.838383838: [0.0, 0.6666666666667, 0.3333333333333], 0.831853892: [0.0808080808081, 0.8080808080808, 0.1919191919192, 0.9191919191919], 0.04030201: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.026833997: [0.2323232323232, 0.7676767676768, 0.6767676767677, 0.3232323232323], 0.373941435: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.989796959: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.684113866: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.006427916: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.713498623: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.616161616: [0.0, 0.3333333333333, 0.6666666666667], 0.024385267: [0.1616161616162, 0.3838383838384, 0.6161616161616, 0.8383838383838], 0.320477502: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.502499745: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.767574737: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.730231609: [0.1313131313131, 0.6868686868687, 0.3131313131313, 0.8686868686869], 0.358636874: [0.9292929292929, 0.0707070707071, 0.2929292929293, 0.7070707070707], 0.326191205: [0.1313131313131, 0.6868686868687, 0.3131313131313, 0.8686868686869], 0.221303949: [0.030303030303, 0.969696969697, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.021936537: [0.2626262626263, 0.7373737373737, 0.3737373737374, 0.6262626262626], 0.423324151: [0.030303030303, 0.969696969697, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.883277217: [0.4444444444444, 0.5555555555556], 0.485970819: [0.2222222222222, 0.7777777777778], 0.157841037: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.520661157: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.623711866: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.044587287: [0.1616161616162, 0.3838383838384, 0.6161616161616, 0.8383838383838], 0.52637486: [0.2222222222222, 0.7777777777778], 0.632894603: [0.3232323232323, 0.7676767676768, 0.2323232323232, 0.6767676767677], 0.408223651: [0.1616161616162, 0.3838383838384, 0.6161616161616, 0.8383838383838], 0.343332313: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.310886644: [0.8888888888889, 0.1111111111111], 0.439853076: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.197428834: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.600448934: [0.4444444444444, 0.5555555555556], 0.035404551: [0.9292929292929, 0.0707070707071, 0.2929292929293, 0.7070707070707], 0.595959596: [0.0, 0.3333333333333, 0.6666666666667], 0.235588205: [0.3434343434343, 0.6565656565657, 0.4343434343434, 0.5656565656566], 0.092745638: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.755331089: [0.8888888888889, 0.1111111111111], 0.649423528: [0.1313131313131, 0.6868686868687, 0.3131313131313, 0.8686868686869], 0.864911744: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.560657076: [0.9292929292929, 0.2929292929293, 0.7070707070707, 0.0707070707071], 0.528211407: [0.1313131313131, 0.6868686868687, 0.3131313131313, 0.8686868686869], 0.360473421: [0.2525252525253, 0.5252525252525, 0.4747474747475, 0.7474747474747], 0.173553719: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.984287318: [0.4444444444444, 0.5555555555556], 0.244158759: [0.2626262626263, 0.7373737373737, 0.3737373737374, 0.6262626262626], 0.968778696: [0.969696969697, 0.030303030303, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.174982145: [0.3434343434343, 0.6565656565657, 0.4343434343434, 0.5656565656566], 0.142536476: [0.2222222222222, 0.7777777777778], 0.440669319: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.926129987: [0.2525252525253, 0.5252525252525, 0.4747474747475, 0.7474747474747], 0.34516886: [0.2626262626263, 0.7373737373737, 0.3737373737374, 0.6262626262626], 0.714927048: [0.8888888888889, 0.1111111111111], 0.744311805: [0.2525252525253, 0.5252525252525, 0.4747474747475, 0.7474747474747], 0.478012448: [0.3434343434343, 0.6565656565657, 0.4343434343434, 0.5656565656566], 0.888786858: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.399449036: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.183552699: [0.2626262626263, 0.7373737373737, 0.3737373737374, 0.6262626262626], 0.15110703: [0.020202020202, 0.979797979798, 0.2020202020202, 0.7979797979798], 0.992857872: [0.6868686868687, 0.3131313131313, 0.8686868686869, 0.1313131313131], 0.494949495: [0.0, 0.3333333333333, 0.6666666666667], 0.65983063: [0.3434343434343, 0.6565656565657, 0.4343434343434, 0.5656565656566], 0.359044995: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.82369146: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.121110091: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.666564636: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.037649219: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.338434854: [0.9292929292929, 0.0707070707071, 0.2929292929293, 0.7070707070707], 0.305989185: [0.1313131313131, 0.6868686868687, 0.3131313131313, 0.8686868686869], 0.273543516: [0.2828282828283, 0.1717171717172, 0.8282828282828, 0.7171717171717], 0.017039078: [0.7474747474747, 0.5252525252525, 0.2525252525253, 0.4747474747475], 0.777981839: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.577594123: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.742475258: [0.9292929292929, 0.2929292929293, 0.7070707070707, 0.0707070707071], 0.832466075: [0.1616161616162, 0.3838383838384, 0.6161616161616, 0.8383838383838], 0.615753495: [0.020202020202, 0.979797979798, 0.2020202020202, 0.7979797979798], 0.518416488: [0.3434343434343, 0.6565656565657, 0.4343434343434, 0.5656565656566], 0.135802469: [0.4444444444444, 0.5555555555556], 0.764513825: [0.2525252525253, 0.5252525252525, 0.4747474747475, 0.7474747474747], 0.323130293: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.290684624: [0.8888888888889, 0.1111111111111], 0.237424753: [0.9292929292929, 0.0707070707071, 0.2929292929293, 0.7070707070707], 0.046831956: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.774104683: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.812264055: [0.1616161616162, 0.3838383838384, 0.6161616161616, 0.8383838383838], 0.747372717: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.486583002: [0.2626262626263, 0.7373737373737, 0.3737373737374, 0.6262626262626], 0.650035711: [0.0808080808081, 0.8080808080808, 0.1919191919192, 0.9191919191919], 0.437608407: [0.3434343434343, 0.6565656565657, 0.4343434343434, 0.5656565656566], 0.520253035: [0.9292929292929, 0.0707070707071, 0.2929292929293, 0.7070707070707], 0.097234976: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.905927967: [0.2525252525253, 0.5252525252525, 0.4747474747475, 0.7474747474747], 0.847566575: [0.969696969697, 0.030303030303, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.375573921: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.917559433: [0.040404040404, 0.4040404040404, 0.959595959596, 0.5959595959596], 0.245995307: [0.0808080808081, 0.8080808080808, 0.1919191919192, 0.9191919191919], 0.100091827: [0.030303030303, 0.969696969697, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.602285481: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.645546373: [0.969696969697, 0.030303030303, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.749209264: [0.2626262626263, 0.7373737373737, 0.3737373737374, 0.6262626262626], 0.943883277: [0.4444444444444, 0.5555555555556], 0.454749515: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.58698092: [0.2222222222222, 0.7777777777778], 0.829405163: [0.2222222222222, 0.7777777777778], 0.592490562: [0.3232323232323, 0.7676767676768, 0.2323232323232, 0.6767676767677], 0.069074584: [0.040404040404, 0.4040404040404, 0.959595959596, 0.5959595959596], 0.292521171: [0.020202020202, 0.979797979798, 0.2020202020202, 0.7979797979798], 0.222120192: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.978165493: [0.040404040404, 0.4040404040404, 0.959595959596, 0.5959595959596], 0.983062953: [0.5656565656566, 0.6565656565657, 0.4343434343434, 0.3434343434343], 0.848382818: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.815937149: [0.8888888888889, 0.1111111111111], 0.87899194: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.607182941: [0.2222222222222, 0.7777777777778], 0.205591266: [0.0808080808081, 0.8080808080808, 0.1919191919192, 0.9191919191919], 0.827364555: [0.969696969697, 0.030303030303, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.632690542: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.230690746: [0.040404040404, 0.4040404040404, 0.959595959596, 0.5959595959596], 0.198245077: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.007856341: [0.8888888888889, 0.1111111111111], 0.448015509: [0.0808080808081, 0.8080808080808, 0.1919191919192, 0.9191919191919], 0.622487501: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.015610652: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.489031731: [0.1616161616162, 0.3838383838384, 0.6161616161616, 0.8383838383838], 0.602897664: [0.2525252525253, 0.5252525252525, 0.4747474747475, 0.7474747474747], 0.285787165: [0.1313131313131, 0.6868686868687, 0.3131313131313, 0.8686868686869], 0.253341496: [0.2828282828283, 0.1717171717172, 0.8282828282828, 0.7171717171717], 0.077645138: [0.7474747474747, 0.5252525252525, 0.2525252525253, 0.4747474747475], 0.94449546: [0.9292929292929, 0.2929292929293, 0.7070707070707, 0.0707070707071], 0.2392613: [0.7474747474747, 0.5252525252525, 0.2525252525253, 0.4747474747475], 0.537190083: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.432710948: [0.040404040404, 0.4040404040404, 0.959595959596, 0.5959595959596], 0.400265279: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.929190899: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.928374656: [0.969696969697, 0.030303030303, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.302928273: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.270482604: [0.8888888888889, 0.1111111111111], 0.213957759: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.177226814: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.733700643: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.636363636: [0.0, 0.3333333333333, 0.6666666666667], 0.215386185: [0.3434343434343, 0.6565656565657, 0.4343434343434, 0.5656565656566], 0.182940516: [0.2222222222222, 0.7777777777778], 0.482297725: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.706968677: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.011937557: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.384960718: [0.2222222222222, 0.7777777777778], 0.717375778: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.032139578: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.355371901: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.479236813: [0.4444444444444, 0.5555555555556], 0.153351699: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.769411285: [0.2626262626263, 0.7373737373737, 0.3737373737374, 0.6262626262626], 0.798796041: [0.2828282828283, 0.1717171717172, 0.8282828282828, 0.7171717171717], 0.19151107: [0.020202020202, 0.979797979798, 0.2020202020202, 0.7979797979798], 0.159065401: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.151515152: [0.0, 0.3333333333333, 0.6666666666667], 0.54657688: [0.2222222222222, 0.7777777777778], 0.789613305: [0.2626262626263, 0.7373737373737, 0.3737373737374, 0.6262626262626], 0.070707071: [0.0, 0.3333333333333, 0.6666666666667], 0.555147434: [0.020202020202, 0.979797979798, 0.2020202020202, 0.7979797979798], 0.872870115: [0.1616161616162, 0.3838383838384, 0.6161616161616, 0.8383838383838], 0.937761453: [0.040404040404, 0.4040404040404, 0.959595959596, 0.5959595959596], 0.869809203: [0.2222222222222, 0.7777777777778], 0.710641771: [0.0808080808081, 0.8080808080808, 0.1919191919192, 0.9191919191919], 0.89674523: [0.8888888888889, 0.1111111111111], 0.108866442: [0.8888888888889, 0.1111111111111], 0.419242934: [0.9292929292929, 0.0707070707071, 0.2929292929293, 0.7070707070707], 0.004183247: [0.1616161616162, 0.3838383838384, 0.6161616161616, 0.8383838383838], 0.950617284: [0.2222222222222, 0.7777777777778], 0.715539231: [0.040404040404, 0.4040404040404, 0.959595959596, 0.5959595959596], 0.939598: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.840220386: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.643913886: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.702071217: [0.9292929292929, 0.2929292929293, 0.7070707070707, 0.0707070707071], 0.564738292: [0.030303030303, 0.969696969697, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.567391083: [0.2626262626263, 0.7373737373737, 0.3737373737374, 0.6262626262626], 0.487807367: [0.1313131313131, 0.6868686868687, 0.3131313131313, 0.8686868686869], 0.380063259: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.117436996: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.985307622: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.887970615: [0.969696969697, 0.030303030303, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.479848995: [0.9292929292929, 0.0707070707071, 0.2929292929293, 0.7070707070707], 0.925517804: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.693296602: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.184777064: [0.1313131313131, 0.6868686868687, 0.3131313131313, 0.8686868686869], 0.572288542: [0.3232323232323, 0.7676767676768, 0.2323232323232, 0.6767676767677], 0.06050403: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.56922763: [0.0808080808081, 0.8080808080808, 0.1919191919192, 0.9191919191919], 0.462095705: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.539842873: [0.4444444444444, 0.5555555555556], 0.364758698: [0.2222222222222, 0.7777777777778], 0.621263136: [0.9292929292929, 0.0707070707071, 0.2929292929293, 0.7070707070707], 0.089276604: [0.040404040404, 0.4040404040404, 0.959595959596, 0.5959595959596], 0.191919192: [0.0, 0.3333333333333, 0.6666666666667], 0.988980716: [0.969696969697, 0.030303030303, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.335169881: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.798183859: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.668401184: [0.2626262626263, 0.7373737373737, 0.3737373737374, 0.6262626262626], 0.603509846: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.538618508: [0.3434343434343, 0.6565656565657, 0.4343434343434, 0.5656565656566], 0.414345475: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.670237731: [0.0808080808081, 0.8080808080808, 0.1919191919192, 0.9191919191919], 0.816549332: [0.040404040404, 0.4040404040404, 0.959595959596, 0.5959595959596], 0.168044077: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.976328946: [0.3232323232323, 0.7676767676768, 0.2323232323232, 0.6767676767677], 0.238649117: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.201918172: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.169472503: [0.8888888888889, 0.1111111111111], 0.735129068: [0.8888888888889, 0.1111111111111], 0.399040914: [0.9292929292929, 0.0707070707071, 0.2929292929293, 0.7070707070707], 0.366595245: [0.1313131313131, 0.6868686868687, 0.3131313131313, 0.8686868686869], 0.097847158: [0.7474747474747, 0.5252525252525, 0.2525252525253, 0.4747474747475], 0.055606571: [0.9292929292929, 0.0707070707071, 0.2929292929293, 0.7070707070707], 0.964085297: [0.4444444444444, 0.5555555555556], 0.540455056: [0.9292929292929, 0.0707070707071, 0.2929292929293, 0.7070707070707], 0.178043057: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.145597388: [0.1616161616162, 0.3838383838384, 0.6161616161616, 0.8383838383838], 0.746556474: [0.969696969697, 0.030303030303, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.050709111: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.483930211: [0.030303030303, 0.969696969697, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.531884502: [0.3232323232323, 0.7676767676768, 0.2323232323232, 0.6767676767677], 0.217630854: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.041526375: [0.2222222222222, 0.7777777777778], 0.289256198: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.910825426: [0.2626262626263, 0.7373737373737, 0.3737373737374, 0.6262626262626], 0.083766963: [0.1313131313131, 0.6868686868687, 0.3131313131313, 0.8686868686869], 0.359861239: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.32741557: [0.1616161616162, 0.3838383838384, 0.6161616161616, 0.8383838383838], 0.9848995: [0.9292929292929, 0.2929292929293, 0.7070707070707, 0.0707070707071], 0.905315784: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.036628915: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.801244771: [0.3434343434343, 0.6565656565657, 0.4343434343434, 0.5656565656566], 0.193755739: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.277216611: [0.4444444444444, 0.5555555555556], 0.626160596: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.593714927: [0.8888888888889, 0.1111111111111], 0.162738496: [0.2222222222222, 0.7777777777778], 0.377002347: [0.3434343434343, 0.6565656565657, 0.4343434343434, 0.5656565656566], 0.344556678: [0.2222222222222, 0.7777777777778], 0.27966534: [0.7474747474747, 0.5252525252525, 0.2525252525253, 0.4747474747475], 0.090909091: [0.0, 0.3333333333333, 0.6666666666667], 0.575349454: [0.020202020202, 0.979797979798, 0.2020202020202, 0.7979797979798], 0.855116825: [0.3232323232323, 0.7676767676768, 0.2323232323232, 0.6767676767677], 0.822671156: [0.4444444444444, 0.5555555555556], 0.525150495: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.491480461: [0.3232323232323, 0.7676767676768, 0.2323232323232, 0.6767676767677], 0.595551474: [0.020202020202, 0.979797979798, 0.2020202020202, 0.7979797979798], 0.563105806: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.89919396: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.138863381: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.461891644: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.584940312: [0.969696969697, 0.030303030303, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.997755331: [0.8888888888889, 0.1111111111111], 0.986736047: [0.2525252525253, 0.5252525252525, 0.4747474747475, 0.7474747474747], 0.942658912: [0.5656565656566, 0.6565656565657, 0.4343434343434, 0.3434343434343], 0.915722885: [0.3232323232323, 0.7676767676768, 0.2323232323232, 0.6767676767677], 0.757575758: [0.0, 0.3333333333333, 0.6666666666667], 0.792062034: [0.1616161616162, 0.3838383838384, 0.6161616161616, 0.8383838383838], 0.694725028: [0.8888888888889, 0.1111111111111], 0.62983369: [0.0808080808081, 0.8080808080808, 0.1919191919192, 0.9191919191919], 0.500051015: [0.9292929292929, 0.0707070707071, 0.2929292929293, 0.7070707070707], 0.898581777: [0.020202020202, 0.979797979798, 0.2020202020202, 0.7979797979798], 0.064177125: [0.0808080808081, 0.1919191919192, 0.9191919191919, 0.8080808080808], 0.313947556: [0.2828282828283, 0.1717171717172, 0.8282828282828, 0.7171717171717], 0.249056219: [0.3232323232323, 0.7676767676768, 0.2323232323232, 0.6767676767677], 0.736965616: [0.020202020202, 0.979797979798, 0.2020202020202, 0.7979797979798], 0.511478421: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.067033976: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.237832874: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.858789919: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.639628609: [0.3434343434343, 0.6565656565657, 0.4343434343434, 0.5656565656566], 0.05785124: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.493317008: [0.040404040404, 0.4040404040404, 0.959595959596, 0.5959595959596], 0.696561575: [0.020202020202, 0.979797979798, 0.2020202020202, 0.7979797979798], 0.257626773: [0.9292929292929, 0.0707070707071, 0.2929292929293, 0.7070707070707], 0.01765126: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.48107336: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.225181104: [0.1313131313131, 0.6868686868687, 0.3131313131313, 0.8686868686869], 0.893072135: [0.1616161616162, 0.3838383838384, 0.6161616161616, 0.8383838383838], 0.542291603: [0.2525252525253, 0.5252525252525, 0.4747474747475, 0.7474747474747], 0.960412203: [0.2828282828283, 0.1717171717172, 0.8282828282828, 0.7171717171717], 0.904499541: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.30721355: [0.1616161616162, 0.3838383838384, 0.6161616161616, 0.8383838383838], 0.232323232: [0.0, 0.3333333333333, 0.6666666666667], 0.599224569: [0.3434343434343, 0.6565656565657, 0.4343434343434, 0.5656565656566], 0.415977961: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.612488522: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.515151515: [0.0, 0.3333333333333, 0.6666666666667], 0.112947658: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.132129375: [0.2828282828283, 0.1717171717172, 0.8282828282828, 0.7171717171717], 0.454137333: [0.020202020202, 0.979797979798, 0.2020202020202, 0.7979797979798], 0.553310887: [0.8888888888889, 0.1111111111111], 0.01520253: [0.9292929292929, 0.0707070707071, 0.2929292929293, 0.7070707070707], 0.875318845: [0.3232323232323, 0.7676767676768, 0.2323232323232, 0.6767676767677], 0.324354658: [0.2222222222222, 0.7777777777778], 0.25946332: [0.7474747474747, 0.5252525252525, 0.2525252525253, 0.4747474747475], 0.171717172: [0.0, 0.3333333333333, 0.6666666666667], 0.949392919: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.242322212: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.209876543: [0.8888888888889, 0.1111111111111], 0.516988062: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.471278441: [0.3232323232323, 0.7676767676768, 0.2323232323232, 0.6767676767677], 0.438832772: [0.4444444444444, 0.5555555555556], 0.522701765: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.952453831: [0.6868686868687, 0.3131313131313, 0.8686868686869, 0.1313131313131], 0.895316804: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.441689624: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.727170697: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.946332007: [0.2525252525253, 0.5252525252525, 0.4747474747475, 0.7474747474747], 0.147842057: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.784103663: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.218447097: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.186001428: [0.1616161616162, 0.3838383838384, 0.6161616161616, 0.8383838383838], 0.149270483: [0.8888888888889, 0.1111111111111], 0.654320988: [0.8888888888889, 0.1111111111111], 0.58942965: [0.0808080808081, 0.8080808080808, 0.1919191919192, 0.9191919191919], 0.140495868: [0.030303030303, 0.969696969697, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.526987042: [0.2626262626263, 0.7373737373737, 0.3737373737374, 0.6262626262626], 0.393939394: [0.0, 0.3333333333333, 0.6666666666667], 0.980614223: [0.2828282828283, 0.1717171717172, 0.8282828282828, 0.7171717171717], 0.836139169: [0.8888888888889, 0.1111111111111], 0.84389348: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.717171717: [0.0, 0.6666666666667, 0.3333333333333], 0.103968983: [0.1313131313131, 0.6868686868687, 0.3131313131313, 0.8686868686869], 0.473114988: [0.040404040404, 0.4040404040404, 0.959595959596, 0.5959595959596], 0.125395368: [0.1616161616162, 0.3838383838384, 0.6161616161616, 0.8383838383838], 0.052341598: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.443526171: [0.030303030303, 0.969696969697, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.689827569: [0.6868686868687, 0.3131313131313, 0.8686868686869, 0.1313131313131], 0.921028466: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.787776757: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.203142536: [0.2222222222222, 0.7777777777778], 0.463728191: [0.030303030303, 0.969696969697, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.075808591: [0.9292929292929, 0.0707070707071, 0.2929292929293, 0.7070707070707], 0.111111111: [0.0, 0.3333333333333, 0.6666666666667], 0.590041832: [0.1616161616162, 0.3838383838384, 0.6161616161616, 0.8383838383838], 0.081930415: [0.2222222222222, 0.7777777777778], 0.572084481: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.36271809: [0.030303030303, 0.969696969697, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.890623406: [0.2626262626263, 0.7373737373737, 0.3737373737374, 0.6262626262626], 0.610243853: [0.1616161616162, 0.3838383838384, 0.6161616161616, 0.8383838383838], 0.433935313: [0.020202020202, 0.979797979798, 0.2020202020202, 0.7979797979798], 0.401489644: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.465768799: [0.2222222222222, 0.7777777777778], 0.836751352: [0.040404040404, 0.4040404040404, 0.959595959596, 0.5959595959596], 0.511682481: [0.3232323232323, 0.7676767676768, 0.2323232323232, 0.6767676767677], 0.211713091: [0.020202020202, 0.979797979798, 0.2020202020202, 0.7979797979798], 0.839200082: [0.2828282828283, 0.1717171717172, 0.8282828282828, 0.7171717171717], 0.676971738: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.547189062: [0.2626262626263, 0.7373737373737, 0.3737373737374, 0.6262626262626], 0.418630752: [0.4444444444444, 0.5555555555556], 0.514743394: [0.020202020202, 0.979797979798, 0.2020202020202, 0.7979797979798], 0.353739414: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.534945414: [0.020202020202, 0.979797979798, 0.2020202020202, 0.7979797979798], 0.084379145: [0.0808080808081, 0.8080808080808, 0.1919191919192, 0.9191919191919], 0.867768595: [0.969696969697, 0.030303030303, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.998367514: [0.040404040404, 0.4040404040404, 0.959595959596, 0.5959595959596], 0.95980002: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.087235996: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.673094582: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.743699622: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.558820529: [0.3434343434343, 0.6565656565657, 0.4343434343434, 0.5656565656566], 0.613916947: [0.8888888888889, 0.1111111111111], 0.60963167: [0.0808080808081, 0.8080808080808, 0.1919191919192, 0.9191919191919], 0.468217529: [0.0808080808081, 0.8080808080808, 0.1919191919192, 0.9191919191919], 0.54902561: [0.0808080808081, 0.8080808080808, 0.1919191919192, 0.9191919191919], 0.457810428: [0.3434343434343, 0.6565656565657, 0.4343434343434, 0.5656565656566], 0.926742169: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.088664422: [0.8888888888889, 0.1111111111111], 0.373737374: [0.0, 0.3333333333333, 0.6666666666667], 0.972655851: [0.6868686868687, 0.3131313131313, 0.8686868686869, 0.1313131313131], 0.228854199: [0.3232323232323, 0.7676767676768, 0.2323232323232, 0.6767676767677], 0.940210183: [0.2828282828283, 0.1717171717172, 0.8282828282828, 0.7171717171717], 0.19640853: [0.4444444444444, 0.5555555555556], 0.417406387: [0.3434343434343, 0.6565656565657, 0.4343434343434, 0.5656565656566], 0.528823589: [0.0808080808081, 0.8080808080808, 0.1919191919192, 0.9191919191919], 0.452912968: [0.040404040404, 0.4040404040404, 0.959595959596, 0.5959595959596], 0.38802163: [0.1616161616162, 0.3838383838384, 0.6161616161616, 0.8383838383838], 0.395775941: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.818385879: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.918783798: [0.020202020202, 0.979797979798, 0.2020202020202, 0.7979797979798], 0.54167942: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.434343434: [0.0, 0.3333333333333, 0.6666666666667], 0.685950413: [0.969696969697, 0.030303030303, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.204979084: [0.1313131313131, 0.6868686868687, 0.3131313131313, 0.8686868686869], 0.172533415: [0.2828282828283, 0.1717171717172, 0.8282828282828, 0.7171717171717], 0.405162738: [0.2222222222222, 0.7777777777778], 0.863687379: [0.9292929292929, 0.2929292929293, 0.7070707070707, 0.0707070707071], 0.212121212: [0.0, 0.3333333333333, 0.6666666666667], 0.064789307: [0.1616161616162, 0.3838383838384, 0.6161616161616, 0.8383838383838], 0.531680441: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.115600449: [0.4444444444444, 0.5555555555556], 0.459646975: [0.9292929292929, 0.0707070707071, 0.2929292929293, 0.7070707070707], 0.504948475: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.413733293: [0.020202020202, 0.979797979798, 0.2020202020202, 0.7979797979798], 0.381287624: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.805530048: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.466380982: [0.2626262626263, 0.7373737373737, 0.3737373737374, 0.6262626262626], 0.965105601: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.188246097: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.010305071: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.701459035: [0.4444444444444, 0.5555555555556], 0.189674523: [0.8888888888889, 0.1111111111111], 0.506785022: [0.2626262626263, 0.7373737373737, 0.3737373737374, 0.6262626262626], 0.430874401: [0.3232323232323, 0.7676767676768, 0.2323232323232, 0.6767676767677], 0.398428732: [0.4444444444444, 0.5555555555556], 0.333537394: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.877155392: [0.040404040404, 0.4040404040404, 0.959595959596, 0.5959595959596], 0.529435772: [0.1616161616162, 0.3838383838384, 0.6161616161616, 0.8383838383838], 0.962860933: [0.5656565656566, 0.6565656565657, 0.4343434343434, 0.3434343434343], 0.930415264: [0.2222222222222, 0.7777777777778], 0.061728395: [0.2222222222222, 0.7777777777778], 0.127640037: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.535353535: [0.0, 0.3333333333333, 0.6666666666667], 0.124171003: [0.1313131313131, 0.6868686868687, 0.3131313131313, 0.8686868686869], 0.573512907: [0.8888888888889, 0.1111111111111], 0.165799408: [0.1616161616162, 0.3838383838384, 0.6161616161616, 0.8383838383838], 0.318232833: [0.9292929292929, 0.0707070707071, 0.2929292929293, 0.7070707070707], 0.926538108: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.353535354: [0.0, 0.3333333333333, 0.6666666666667], 0.899806142: [0.2828282828283, 0.1717171717172, 0.8282828282828, 0.7171717171717], 0.627384961: [0.2222222222222, 0.7777777777778], 0.1184573: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.026629936: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.737577798: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.607795123: [0.2626262626263, 0.7373737373737, 0.3737373737374, 0.6262626262626], 0.542903785: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.096010611: [0.9292929292929, 0.0707070707071, 0.2929292929293, 0.7070707070707], 0.36781961: [0.1616161616162, 0.3838383838384, 0.6161616161616, 0.8383838383838], 0.243546577: [0.2222222222222, 0.7777777777778], 0.574125089: [0.040404040404, 0.4040404040404, 0.959595959596, 0.5959595959596], 0.966534027: [0.2525252525253, 0.5252525252525, 0.4747474747475, 0.7474747474747], 0.681869197: [0.9292929292929, 0.2929292929293, 0.7070707070707, 0.0707070707071], 0.499438833: [0.4444444444444, 0.5555555555556], 0.771860014: [0.1616161616162, 0.3838383838384, 0.6161616161616, 0.8383838383838], 0.311498827: [0.040404040404, 0.4040404040404, 0.959595959596, 0.5959595959596], 0.434547495: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.056830936: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.78328742: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.676359555: [0.020202020202, 0.979797979798, 0.2020202020202, 0.7979797979798], 0.973880216: [0.1616161616162, 0.3838383838384, 0.6161616161616, 0.8383838383838], 0.258034894: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.969594939: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.361085604: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.104581165: [0.0808080808081, 0.8080808080808, 0.1919191919192, 0.9191919191919], 0.263748597: [0.2222222222222, 0.7777777777778], 0.93714927: [0.8888888888889, 0.1111111111111], 0.785123967: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.852668095: [0.1616161616162, 0.3838383838384, 0.6161616161616, 0.8383838383838], 0.731455974: [0.1616161616162, 0.3838383838384, 0.6161616161616, 0.8383838383838], 0.596163657: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.79083767: [0.6868686868687, 0.3131313131313, 0.8686868686869, 0.1313131313131], 0.378226712: [0.4444444444444, 0.5555555555556], 0.693500663: [0.3232323232323, 0.7676767676768, 0.2323232323232, 0.6767676767677], 0.313335374: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.884297521: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.786960514: [0.969696969697, 0.030303030303, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.895520865: [0.3232323232323, 0.7676767676768, 0.2323232323232, 0.6767676767677], 0.23681257: [0.4444444444444, 0.5555555555556], 0.592286501: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.451076421: [0.3232323232323, 0.7676767676768, 0.2323232323232, 0.6767676767677], 0.492704826: [0.8888888888889, 0.1111111111111], 0.565554535: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.533108866: [0.8888888888889, 0.1111111111111], 0.43067034: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.751657994: [0.1616161616162, 0.3838383838384, 0.6161616161616, 0.8383838383838], 0.265585144: [0.1313131313131, 0.6868686868687, 0.3131313131313, 0.8686868686869], 0.886134068: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.047036017: [0.2323232323232, 0.7676767676768, 0.6767676767677, 0.3232323232323], 0.865932048: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.245383124: [0.1313131313131, 0.6868686868687, 0.3131313131313, 0.8686868686869], 0.212937455: [0.2828282828283, 0.1717171717172, 0.8282828282828, 0.7171717171717], 0.17620651: [0.4444444444444, 0.5555555555556], 0.697173758: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.838587899: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.042138557: [0.2626262626263, 0.7373737373737, 0.3737373737374, 0.6262626262626], 0.480257117: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.38292011: [0.030303030303, 0.969696969697, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.282726252: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.084991327: [0.1616161616162, 0.3838383838384, 0.6161616161616, 0.8383838383838], 0.991021324: [0.2222222222222, 0.7777777777778], 0.019283747: [0.030303030303, 0.969696969697, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.796347311: [0.040404040404, 0.4040404040404, 0.959595959596, 0.5959595959596], 0.152331395: [0.2828282828283, 0.1717171717172, 0.8282828282828, 0.7171717171717], 0.634118967: [0.8888888888889, 0.1111111111111], 0.753902663: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.629221508: [0.1313131313131, 0.6868686868687, 0.3131313131313, 0.8686868686869], 0.258851138: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.775533109: [0.8888888888889, 0.1111111111111], 0.29986736: [0.7474747474747, 0.5252525252525, 0.2525252525253, 0.4747474747475], 0.051321294: [0.2828282828283, 0.1717171717172, 0.8282828282828, 0.7171717171717], 0.863075196: [0.4444444444444, 0.5555555555556], 0.230078563: [0.8888888888889, 0.1111111111111], 0.641873278: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.935924906: [0.3232323232323, 0.7676767676768, 0.2323232323232, 0.6767676767677], 0.794306703: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.070911132: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.427201306: [0.1313131313131, 0.6868686868687, 0.3131313131313, 0.8686868686869], 0.275992246: [0.3434343434343, 0.6565656565657, 0.4343434343434, 0.5656565656566], 0.029894909: [0.020202020202, 0.2020202020202, 0.979797979798, 0.7979797979798], 0.744719927: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.003571064: [0.0808080808081, 0.8080808080808, 0.1919191919192, 0.9191919191919], 0.037241098: [0.7474747474747, 0.5252525252525, 0.2525252525253, 0.4747474747475], 0.455361698: [0.2828282828283, 0.1717171717172, 0.8282828282828, 0.7171717171717], 0.776145291: [0.040404040404, 0.4040404040404, 0.959595959596, 0.5959595959596], 0.515967758: [0.2828282828283, 0.1717171717172, 0.8282828282828, 0.7171717171717], 0.075196409: [0.4444444444444, 0.5555555555556], 0.903479237: [0.4444444444444, 0.5555555555556], 0.941230487: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.293133354: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.703295582: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.07805326: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.794510764: [0.3232323232323, 0.7676767676768, 0.2323232323232, 0.6767676767677], 0.551882461: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.65493317: [0.040404040404, 0.4040404040404, 0.959595959596, 0.5959595959596], 0.472502806: [0.8888888888889, 0.1111111111111], 0.407611468: [0.0808080808081, 0.8080808080808, 0.1919191919192, 0.9191919191919], 0.116212631: [0.9292929292929, 0.0707070707071, 0.2929292929293, 0.7070707070707], 0.80348944: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.646362616: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.41046832: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.277828793: [0.9292929292929, 0.0707070707071, 0.2929292929293, 0.7070707070707], 0.883889399: [0.9292929292929, 0.2929292929293, 0.7070707070707, 0.0707070707071], 0.85144373: [0.6868686868687, 0.3131313131313, 0.8686868686869, 0.1313131313131], 0.754106724: [0.3232323232323, 0.7676767676768, 0.2323232323232, 0.6767676767677], 0.656769717: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.392306907: [0.040404040404, 0.4040404040404, 0.959595959596, 0.5959595959596], 0.944903581: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.262524232: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.223344557: [0.2222222222222, 0.7777777777778], 0.885725946: [0.2525252525253, 0.5252525252525, 0.4747474747475, 0.7474747474747], 0.723497602: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.691051933: [0.1616161616162, 0.3838383838384, 0.6161616161616, 0.8383838383838], 0.858177737: [0.020202020202, 0.979797979798, 0.2020202020202, 0.7979797979798], 0.474339353: [0.020202020202, 0.979797979798, 0.2020202020202, 0.7979797979798], 0.441893684: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.124783185: [0.0808080808081, 0.8080808080808, 0.1919191919192, 0.9191919191919], 0.724721967: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.31496786: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.231915111: [0.020202020202, 0.979797979798, 0.2020202020202, 0.7979797979798], 0.199469442: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.757779818: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.728395062: [0.2222222222222, 0.7777777777778], 0.459034792: [0.4444444444444, 0.5555555555556], 0.582083461: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.704315886: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.151719212: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.576573819: [0.2828282828283, 0.1717171717172, 0.8282828282828, 0.7171717171717], 0.580246914: [0.4444444444444, 0.5555555555556], 0.435159678: [0.2828282828283, 0.1717171717172, 0.8282828282828, 0.7171717171717], 0.37026834: [0.3232323232323, 0.7676767676768, 0.2323232323232, 0.6767676767677], 0.900826446: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.039485767: [0.030303030303, 0.969696969697, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.272931334: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.706152433: [0.969696969697, 0.030303030303, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.544536272: [0.030303030303, 0.969696969697, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.809203143: [0.2222222222222, 0.7777777777778], 0.50127538: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.21661055: [0.4444444444444, 0.5555555555556], 0.61452913: [0.040404040404, 0.4040404040404, 0.959595959596, 0.5959595959596], 0.549637792: [0.1616161616162, 0.3838383838384, 0.6161616161616, 0.8383838383838], 0.082542598: [0.2626262626263, 0.7373737373737, 0.3737373737374, 0.6262626262626], 0.575757576: [0.0, 0.3333333333333, 0.6666666666667], 0.387409448: [0.0808080808081, 0.8080808080808, 0.1919191919192, 0.9191919191919]}
pattern_zero = [0.0, 0.0099989797, 0.0197938986, 0.0202020202, 0.0293847567, 0.0302009999, 0.0387715539, 0.0399959188, 0.0404040404, 0.0479542904, 0.0495867769, 0.0504030201, 0.056932966, 0.0589735741, 0.060197939, 0.0606060606, 0.0657075809, 0.0681563106, 0.0697887971, 0.0706050403, 0.0742781349, 0.0771349862, 0.0791755943, 0.0803999592, 0.0808080808, 0.0826446281, 0.0859096011, 0.0883583308, 0.0899908173, 0.0908070605, 0.0944801551, 0.0973370064, 0.0987654321, 0.0993776145, 0.1006019794, 0.101010101, 0.1028466483, 0.1061116213, 0.1065197429, 0.108560351, 0.1101928375, 0.1110090807, 0.1140699929, 0.1146821753, 0.1175390266, 0.1189674523, 0.1195796347, 0.1208039996, 0.1212121212, 0.121416182, 0.1230486685, 0.1263136415, 0.1267217631, 0.1285583104, 0.1287623712, 0.1303948577, 0.1312111009, 0.1342720131, 0.1348841955, 0.1354963779, 0.1377410468, 0.1391694725, 0.1397816549, 0.1410060198, 0.1414141414, 0.1416182022, 0.1422303847, 0.1432506887, 0.1465156617, 0.1469237833, 0.1487603306, 0.1489643914, 0.1505968779, 0.1514131211, 0.1544740333, 0.1550862157, 0.1556983981, 0.157943067, 0.1593714927, 0.1599836751, 0.16120804, 0.1616161616, 0.1618202224, 0.1624324049, 0.1634527089, 0.1667176819, 0.1671258035, 0.1689623508, 0.1691664116, 0.1707988981, 0.1716151413, 0.1728395062, 0.1746760535, 0.1752882359, 0.1759004183, 0.1781450872, 0.178349148, 0.1795735129, 0.1801856953, 0.1814100602, 0.1818181818, 0.1820222426, 0.1826344251, 0.1836547291, 0.1869197021, 0.1873278237, 0.1887562494, 0.189164371, 0.1893684318, 0.1910009183, 0.1918171615, 0.1930415264, 0.1936537088, 0.1948780737, 0.1954902561, 0.1961024385, 0.1983471074, 0.1985511682, 0.1997755331, 0.2003877155, 0.2016120804, 0.202020202, 0.2022242628, 0.2028364453, 0.2038567493, 0.2071217223, 0.2075298439, 0.2089582696, 0.2093663912, 0.209570452, 0.2112029385, 0.2120191817, 0.2132435466, 0.213855729, 0.2150800939, 0.2156922763, 0.2163044587, 0.2185491276, 0.2187531885, 0.2199775533, 0.2205897357, 0.2218141006, 0.2222222222, 0.222426283, 0.2230384655, 0.2240587695, 0.2254871952, 0.2273237425, 0.2277318641, 0.2285481073, 0.2291602898, 0.2295684114, 0.2297724722, 0.2314049587, 0.2322212019, 0.2334455668, 0.2340577492, 0.2352821141, 0.2358942965, 0.2365064789, 0.2387511478, 0.2389552087, 0.2401795735, 0.2407917559, 0.2420161208, 0.2424242424, 0.2426283032, 0.2432404857, 0.2442607897, 0.2456892154, 0.2469135802, 0.2475257627, 0.2479338843, 0.2487501275, 0.24936231, 0.2497704316, 0.2499744924, 0.2516069789, 0.2524232221, 0.253647587, 0.2542597694, 0.2554841343, 0.2560963167, 0.2567084991, 0.258953168, 0.2591572289, 0.2603815937, 0.2609937761, 0.262218141, 0.2626262626, 0.2628303234, 0.2634425059, 0.2644628099, 0.2658912356, 0.2671156004, 0.2677277829, 0.2681359045, 0.2689521477, 0.2695643302, 0.2699724518, 0.2701765126, 0.2718089991, 0.2726252423, 0.2738496072, 0.2744617896, 0.2756861545, 0.2762983369, 0.2769105193, 0.2791551882, 0.2793592491, 0.2805836139, 0.2811957963, 0.2824201612, 0.2828282828, 0.2830323436, 0.2836445261, 0.2846648301, 0.2860932558, 0.2873176207, 0.2879298031, 0.2883379247, 0.2891541679, 0.2897663504, 0.290174472, 0.2903785328, 0.2920110193, 0.2928272625, 0.2940516274, 0.2946638098, 0.2958881747, 0.2965003571, 0.2971125395, 0.2993572084, 0.2995612693, 0.3007856341, 0.3013978165, 0.3026221814, 0.303030303, 0.3032343638, 0.3038465463, 0.3048668503, 0.306295276, 0.3075196409, 0.3081318233, 0.3085399449, 0.3093561881, 0.3099683706, 0.3103764922, 0.310580553, 0.3122130395, 0.3130292827, 0.3142536476, 0.31486583, 0.3160901949, 0.3167023773, 0.3173145597, 0.3195592287, 0.3197632895, 0.3209876543, 0.3215998368, 0.3228242016, 0.3232323232, 0.323436384, 0.3240485665, 0.3250688705, 0.3264972962, 0.3277216611, 0.3283338435, 0.3287419651, 0.3295582083, 0.3301703908, 0.3305785124, 0.3307825732, 0.3324150597, 0.3332313029, 0.3344556678, 0.3350678502, 0.3362922151, 0.3369043975, 0.3375165799, 0.3397612489, 0.3399653097, 0.3411896745, 0.341801857, 0.3430262218, 0.3434343434, 0.3436384042, 0.3442505867, 0.3452708907, 0.3466993164, 0.3479236813, 0.3485358637, 0.3489439853, 0.3497602285, 0.350372411, 0.3507805326, 0.3509845934, 0.3526170799, 0.3534333231, 0.354657688, 0.3552698704, 0.3564942353, 0.3571064177, 0.3577186001, 0.3599632691, 0.3601673299, 0.3613916947, 0.3620038772, 0.363228242, 0.3636363636, 0.3638404244, 0.3644526069, 0.3654729109, 0.3669013366, 0.3681257015, 0.3687378839, 0.3691460055, 0.3699622488, 0.3705744312, 0.3709825528, 0.3711866136, 0.3728191001, 0.3736353433, 0.3748597082, 0.3754718906, 0.3766962555, 0.3773084379, 0.3779206203, 0.3801652893, 0.3803693501, 0.3815937149, 0.3822058974, 0.3834302622, 0.3838383838, 0.3840424446, 0.3846546271, 0.3856749311, 0.3871033568, 0.3883277217, 0.3889399041, 0.3893480257, 0.390164269, 0.3907764514, 0.391184573, 0.3913886338, 0.3930211203, 0.3938373635, 0.3950617284, 0.3956739108, 0.3968982757, 0.3975104581, 0.3981226405, 0.4003673095, 0.4005713703, 0.4017957351, 0.4024079176, 0.4036322824, 0.404040404, 0.4042444649, 0.4048566473, 0.4058769513, 0.407305377, 0.4085297419, 0.4091419243, 0.4095500459, 0.4103662892, 0.4109784716, 0.4113865932, 0.411590654, 0.4132231405, 0.4140393837, 0.4152637486, 0.415875931, 0.4171002959, 0.4177124783, 0.4183246607, 0.4205693297, 0.4207733905, 0.4219977553, 0.4226099378, 0.4238343026, 0.4242424242, 0.4244464851, 0.4250586675, 0.4260789715, 0.4275073972, 0.4287317621, 0.4293439445, 0.4297520661, 0.4305683094, 0.4311804918, 0.4315886134, 0.4317926742, 0.4334251607, 0.4342414039, 0.4354657688, 0.4360779512, 0.4373023161, 0.4379144985, 0.438526681, 0.4407713499, 0.4409754107, 0.4421997755, 0.442811958, 0.4440363228, 0.4444444444, 0.4446485053, 0.4452606877, 0.4462809917, 0.4477094174, 0.4489337823, 0.4495459647, 0.4499540863, 0.4507703296, 0.451382512, 0.4517906336, 0.4519946944, 0.4536271809, 0.4544434241, 0.455667789, 0.4562799714, 0.4575043363, 0.4581165187, 0.4587287012, 0.4609733701, 0.4611774309, 0.4624017957, 0.4630139782, 0.464238343, 0.4646464646, 0.4648505255, 0.4654627079, 0.4664830119, 0.4679114376, 0.4691358025, 0.4697479849, 0.4701561065, 0.4709723498, 0.4715845322, 0.4719926538, 0.4721967146, 0.4738292011, 0.4746454443, 0.4758698092, 0.4764819916, 0.4777063565, 0.4783185389, 0.4789307214, 0.4811753903, 0.4813794511, 0.4826038159, 0.4832159984, 0.4844403632, 0.4848484848, 0.4850525457, 0.4856647281, 0.4866850321, 0.4881134578, 0.4893378227, 0.4899500051, 0.4903581267, 0.49117437, 0.4917865524, 0.492194674, 0.4923987348, 0.4940312213, 0.4948474645, 0.4960718294, 0.4966840118, 0.4979083767, 0.4985205591, 0.4991327416, 0.5013774105, 0.5015814713, 0.5028058361, 0.5034180186, 0.5046423834, 0.5050505051, 0.5052545659, 0.5058667483, 0.5068870523, 0.508315478, 0.5095398429, 0.5101520253, 0.5105601469, 0.5113763902, 0.5119885726, 0.5123966942, 0.512600755, 0.5142332415, 0.5150494847, 0.5162738496, 0.516886032, 0.5181103969, 0.5187225793, 0.5193347618, 0.5215794307, 0.5217834915, 0.5230078563, 0.5236200388, 0.5248444036, 0.5252525253, 0.5254565861, 0.5260687685, 0.5270890725, 0.5285174982, 0.5297418631, 0.5303540455, 0.5307621671, 0.5315784104, 0.5321905928, 0.5325987144, 0.5328027752, 0.5344352617, 0.5352515049, 0.5364758698, 0.5370880522, 0.5383124171, 0.5389245995, 0.539536782, 0.5417814509, 0.5419855117, 0.5432098765, 0.543822059, 0.5450464238, 0.5454545455, 0.5456586063, 0.5462707887, 0.5472910927, 0.5487195184, 0.5499438833, 0.5505560657, 0.5509641873, 0.5517804306, 0.552392613, 0.5528007346, 0.5530047954, 0.5546372819, 0.5554535252, 0.55667789, 0.5572900724, 0.5585144373, 0.5591266197, 0.5597388022, 0.5619834711, 0.5621875319, 0.5634118967, 0.5640240792, 0.565248444, 0.5656565657, 0.5658606265, 0.5664728089, 0.5674931129, 0.5689215386, 0.5701459035, 0.5707580859, 0.5711662075, 0.5719824508, 0.5725946332, 0.5730027548, 0.5732068156, 0.5748393021, 0.5756555454, 0.5768799102, 0.5774920926, 0.5787164575, 0.5793286399, 0.5799408224, 0.5821854913, 0.5823895521, 0.5836139169, 0.5842260994, 0.5854504642, 0.5858585859, 0.5860626467, 0.5866748291, 0.5876951332, 0.5891235588, 0.5903479237, 0.5909601061, 0.5913682277, 0.592184471, 0.5927966534, 0.593204775, 0.5934088358, 0.5950413223, 0.5958575656, 0.5970819304, 0.5976941128, 0.5989184777, 0.5995306601, 0.6001428426, 0.6023875115, 0.6025915723, 0.6038159371, 0.6044281196, 0.6056524844, 0.6060606061, 0.6062646669, 0.6068768493, 0.6078971534, 0.609325579, 0.6105499439, 0.6111621263, 0.6115702479, 0.6123864912, 0.6129986736, 0.6134067952, 0.613610856, 0.6152433425, 0.6160595858, 0.6172839506, 0.617896133, 0.6191204979, 0.6197326803, 0.6203448628, 0.6225895317, 0.6227935925, 0.6240179574, 0.6246301398, 0.6258545046, 0.6262626263, 0.6264666871, 0.6270788695, 0.6280991736, 0.6295275992, 0.6307519641, 0.6313641465, 0.6317722681, 0.6325885114, 0.6332006938, 0.6336088154, 0.6338128762, 0.6354453627, 0.636261606, 0.6374859708, 0.6380981533, 0.6393225181, 0.6399347005, 0.640546883, 0.6427915519, 0.6429956127, 0.6442199776, 0.64483216, 0.6460565248, 0.6464646465, 0.6466687073, 0.6472808897, 0.6483011938, 0.6497296194, 0.6509539843, 0.6515661667, 0.6519742883, 0.6527905316, 0.653402714, 0.6538108356, 0.6540148964, 0.6556473829, 0.6564636262, 0.657687991, 0.6583001735, 0.6595245383, 0.6601367207, 0.6607489032, 0.6629935721, 0.6631976329, 0.6644219978, 0.6650341802, 0.666258545, 0.6666666667, 0.6668707275, 0.6674829099, 0.668503214, 0.6699316396, 0.6711560045, 0.6717681869, 0.6721763085, 0.6729925518, 0.6736047342, 0.6740128558, 0.6742169166, 0.6758494031, 0.6766656464, 0.6778900112, 0.6785021937, 0.6797265585, 0.6803387409, 0.6809509234, 0.6831955923, 0.6833996531, 0.684624018, 0.6852362004, 0.6864605652, 0.6868686869, 0.6870727477, 0.6876849301, 0.6887052342, 0.6901336598, 0.6913580247, 0.6919702071, 0.6923783287, 0.693194572, 0.6938067544, 0.694214876, 0.6944189368, 0.6960514233, 0.6968676666, 0.6980920314, 0.6987042139, 0.6999285787, 0.7005407611, 0.7011529436, 0.7033976125, 0.7036016733, 0.7048260382, 0.7054382206, 0.7066625855, 0.7070707071, 0.7072747679, 0.7078869503, 0.7089072544, 0.71033568, 0.7115600449, 0.7121722273, 0.7125803489, 0.7133965922, 0.7140087746, 0.7144168962, 0.714620957, 0.7162534435, 0.7170696868, 0.7182940516, 0.7189062341, 0.7201305989, 0.7207427813, 0.7213549638, 0.7235996327, 0.7238036935, 0.7250280584, 0.7256402408, 0.7268646057, 0.7272727273, 0.7274767881, 0.7280889705, 0.7291092746, 0.7305377002, 0.7317620651, 0.7323742475, 0.7327823691, 0.7335986124, 0.7342107948, 0.7346189164, 0.7348229772, 0.7364554637, 0.737271707, 0.7384960718, 0.7391082543, 0.7403326191, 0.7409448016, 0.741556984, 0.7438016529, 0.7440057137, 0.7452300786, 0.745842261, 0.7470666259, 0.7474747475, 0.7476788083, 0.7482909907, 0.7493112948, 0.7507397204, 0.7519640853, 0.7525762677, 0.7529843893, 0.7538006326, 0.754412815, 0.7548209366, 0.7550249974, 0.7566574839, 0.7574737272, 0.758698092, 0.7593102745, 0.7605346393, 0.7611468218, 0.7617590042, 0.7640036731, 0.7642077339, 0.7654320988, 0.7660442812, 0.7672686461, 0.7676767677, 0.7678808285, 0.7684930109, 0.769513315, 0.7709417406, 0.7721661055, 0.7727782879, 0.7731864096, 0.7740026528, 0.7746148352, 0.7750229568, 0.7752270177, 0.7768595041, 0.7776757474, 0.7789001122, 0.7795122947, 0.7807366595, 0.781348842, 0.7819610244, 0.7842056933, 0.7844097541, 0.785634119, 0.7862463014, 0.7874706663, 0.7878787879, 0.7880828487, 0.7886950311, 0.7897153352, 0.7911437608, 0.7923681257, 0.7929803081, 0.7933884298, 0.794204673, 0.7948168554, 0.795224977, 0.7954290379, 0.7970615243, 0.7978777676, 0.7991021324, 0.7997143149, 0.8009386797, 0.8015508622, 0.8021630446, 0.8044077135, 0.8046117743, 0.8058361392, 0.8064483216, 0.8076726865, 0.8080808081, 0.8082848689, 0.8088970513, 0.8099173554, 0.811345781, 0.8125701459, 0.8131823283, 0.81359045, 0.8144066932, 0.8150188756, 0.8154269972, 0.8156310581, 0.8172635445, 0.8180797878, 0.8193041526, 0.8199163351, 0.8211406999, 0.8217528824, 0.8223650648, 0.8246097337, 0.8248137945, 0.8260381594, 0.8266503418, 0.8278747067, 0.8282828283, 0.8284868891, 0.8290990715, 0.8301193756, 0.8315478012, 0.8327721661, 0.8333843485, 0.8337924702, 0.8346087134, 0.8352208958, 0.8356290174, 0.8358330783, 0.8374655647, 0.838281808, 0.8395061728, 0.8401183553, 0.8413427201, 0.8419549026, 0.842567085, 0.8448117539, 0.8450158147, 0.8462401796, 0.846852362, 0.8480767269, 0.8484848485, 0.8486889093, 0.8493010917, 0.8503213958, 0.8517498214, 0.8529741863, 0.8535863687, 0.8539944904, 0.8548107336, 0.855422916, 0.8558310376, 0.8560350985, 0.8576675849, 0.8584838282, 0.859708193, 0.8603203755, 0.8615447403, 0.8621569228, 0.8627691052, 0.8650137741, 0.8652178349, 0.8664421998, 0.8670543822, 0.8682787471, 0.8686868687, 0.8688909295, 0.8695031119, 0.870523416, 0.8719518416, 0.8731762065, 0.8737883889, 0.8741965106, 0.8750127538, 0.8756249362, 0.8760330579, 0.8762371187, 0.8778696051, 0.8786858484, 0.8799102132, 0.8805223957, 0.8817467605, 0.882358943, 0.8829711254, 0.8852157943, 0.8854198551, 0.88664422, 0.8872564024, 0.8884807673, 0.8888888889, 0.8890929497, 0.8897051321, 0.8907254362, 0.8921538619, 0.8933782267, 0.8939904091, 0.8943985308, 0.895214774, 0.8958269564, 0.8962350781, 0.8964391389, 0.8980716253, 0.8988878686, 0.9001122334, 0.9007244159, 0.9019487807, 0.9025609632, 0.9031731456, 0.9054178145, 0.9056218753, 0.9068462402, 0.9074584226, 0.9086827875, 0.9090909091, 0.9092949699, 0.9099071523, 0.9109274564, 0.9123558821, 0.9135802469, 0.9141924293, 0.914600551, 0.9154167942, 0.9160289766, 0.9164370983, 0.9166411591, 0.9182736455, 0.9190898888, 0.9203142536, 0.9209264361, 0.9221508009, 0.9227629834, 0.9233751658, 0.9256198347, 0.9258238955, 0.9270482604, 0.9276604428, 0.9288848077, 0.9292929293, 0.9294969901, 0.9301091725, 0.9311294766, 0.9325579023, 0.9337822671, 0.9343944495, 0.9348025712, 0.9356188144, 0.9362309968, 0.9366391185, 0.9368431793, 0.9384756657, 0.939291909, 0.9405162739, 0.9411284563, 0.9423528211, 0.9429650036, 0.943577186, 0.9458218549, 0.9460259157, 0.9472502806, 0.947862463, 0.9490868279, 0.9494949495, 0.9496990103, 0.9503111927, 0.9513314968, 0.9527599225, 0.9539842873, 0.9545964697, 0.9550045914, 0.9558208346, 0.956433017, 0.9568411387, 0.9570451995, 0.958677686, 0.9594939292, 0.9607182941, 0.9613304765, 0.9625548413, 0.9631670238, 0.9637792062, 0.9660238751, 0.9662279359, 0.9674523008, 0.9680644832, 0.9692888481, 0.9696969697, 0.9699010305, 0.9705132129, 0.971533517, 0.9729619427, 0.9741863075, 0.97479849, 0.9752066116, 0.9760228548, 0.9766350372, 0.9770431589, 0.9772472197, 0.9788797062, 0.9796959494, 0.9809203143, 0.9815324967, 0.9827568615, 0.983369044, 0.9839812264, 0.9862258953, 0.9864299561, 0.987654321, 0.9882665034, 0.9894908683, 0.9898989899, 0.9901030507, 0.9907152331, 0.9917355372, 0.9931639629, 0.9943883277, 0.9950005102, 0.9954086318, 0.996224875, 0.9968370574, 0.9972451791, 0.9974492399, 0.9990817264, 0.9998979696] pattern_odd = [0.001122334, 0.001734517, 0.002958882, 0.003571064, 0.004183247, 0.006427916, 0.006631976, 0.007856341, 0.008468524, 0.009692888, 0.01010101, 0.010305071, 0.010917253, 0.011937557, 0.013365983, 0.014590348, 0.01520253, 0.015610652, 0.016426895, 0.017039078, 0.017447199, 0.01765126, 0.019283747, 0.02009999, 0.021324355, 0.021936537, 0.023160902, 0.023773084, 0.024385267, 0.026629936, 0.026833997, 0.028058361, 0.028670544, 0.029894909, 0.03030303, 0.030507091, 0.031119274, 0.032139578, 0.033568003, 0.034792368, 0.035404551, 0.035812672, 0.036628915, 0.037241098, 0.037649219, 0.03785328, 0.039485767, 0.04030201, 0.041526375, 0.042138557, 0.043362922, 0.043975105, 0.044587287, 0.046831956, 0.047036017, 0.048260382, 0.048872564, 0.050096929, 0.050505051, 0.050709111, 0.051321294, 0.052341598, 0.053770023, 0.054994388, 0.055606571, 0.056014692, 0.056830936, 0.057443118, 0.05785124, 0.0580553, 0.059687787, 0.06050403, 0.061728395, 0.062340577, 0.063564942, 0.064177125, 0.064789307, 0.067033976, 0.067238037, 0.068462402, 0.069074584, 0.070298949, 0.070707071, 0.070911132, 0.071523314, 0.072543618, 0.073972044, 0.075196409, 0.075808591, 0.076216713, 0.077032956, 0.077645138, 0.07805326, 0.078257321, 0.079889807, 0.08070605, 0.081930415, 0.082542598, 0.083766963, 0.084379145, 0.084991327, 0.087235996, 0.087440057, 0.088664422, 0.089276604, 0.090500969, 0.090909091, 0.091113152, 0.091725334, 0.092745638, 0.094174064, 0.095398429, 0.096010611, 0.096418733, 0.097234976, 0.097847158, 0.09825528, 0.098459341, 0.100091827, 0.100908071, 0.102132435, 0.102744618, 0.103968983, 0.104581165, 0.105193348, 0.107438017, 0.107642077, 0.108866442, 0.109478625, 0.110702989, 0.111111111, 0.111315172, 0.111927354, 0.112947658, 0.114376084, 0.115600449, 0.116212631, 0.116620753, 0.117436996, 0.118049179, 0.1184573, 0.118661361, 0.120293848, 0.121110091, 0.122334456, 0.122946638, 0.124171003, 0.124783185, 0.125395368, 0.127640037, 0.127844098, 0.129068462, 0.129680645, 0.13090501, 0.131313131, 0.131517192, 0.132129375, 0.133149679, 0.134578104, 0.135802469, 0.136414652, 0.136822773, 0.137639016, 0.138251199, 0.13865932, 0.138863381, 0.140495868, 0.141312111, 0.142536476, 0.143148658, 0.144373023, 0.144985206, 0.145597388, 0.147842057, 0.148046118, 0.149270483, 0.149882665, 0.15110703, 0.151515152, 0.151719212, 0.152331395, 0.153351699, 0.154780124, 0.156004489, 0.156616672, 0.157024793, 0.157841037, 0.158453219, 0.158861341, 0.159065401, 0.160697888, 0.161514131, 0.162738496, 0.163350679, 0.164575043, 0.165187226, 0.165799408, 0.168044077, 0.168248138, 0.169472503, 0.170084685, 0.17130905, 0.171717172, 0.171921233, 0.172533415, 0.173553719, 0.174982145, 0.17620651, 0.176818692, 0.177226814, 0.178043057, 0.178655239, 0.179063361, 0.179267422, 0.180899908, 0.181716151, 0.182940516, 0.183552699, 0.184777064, 0.185389246, 0.186001428, 0.188246097, 0.188450158, 0.189674523, 0.190286705, 0.19151107, 0.191919192, 0.192123253, 0.192735435, 0.193755739, 0.195184165, 0.19640853, 0.197020712, 0.197428834, 0.198245077, 0.198857259, 0.199265381, 0.199469442, 0.201101928, 0.201918172, 0.203142536, 0.203754719, 0.204979084, 0.205591266, 0.206203449, 0.208448118, 0.208652178, 0.209876543, 0.210488726, 0.211713091, 0.212121212, 0.212325273, 0.212937455, 0.213957759, 0.215386185, 0.21661055, 0.217222732, 0.217630854, 0.218447097, 0.21905928, 0.219467401, 0.219671462, 0.221303949, 0.222120192, 0.223344557, 0.223956739, 0.225181104, 0.225793286, 0.226405469, 0.228650138, 0.228854199, 0.230078563, 0.230690746, 0.231915111, 0.232323232, 0.232527293, 0.233139476, 0.23415978, 0.235588205, 0.23681257, 0.237424753, 0.237832874, 0.238649117, 0.2392613, 0.239669421, 0.239873482, 0.241505969, 0.242322212, 0.243546577, 0.244158759, 0.245383124, 0.245995307, 0.246607489, 0.248852158, 0.249056219, 0.250280584, 0.250892766, 0.252117131, 0.252525253, 0.252729313, 0.253341496, 0.2543618, 0.255790225, 0.25701459, 0.257626773, 0.258034894, 0.258851138, 0.25946332, 0.259871442, 0.260075503, 0.261707989, 0.262524232, 0.263748597, 0.26436078, 0.265585144, 0.266197327, 0.266809509, 0.269054178, 0.269258239, 0.270482604, 0.271094786, 0.272319151, 0.272727273, 0.272931334, 0.273543516, 0.27456382, 0.275992246, 0.277216611, 0.277828793, 0.278236915, 0.279053158, 0.27966534, 0.280073462, 0.280277523, 0.281910009, 0.282726252, 0.283950617, 0.2845628, 0.285787165, 0.286399347, 0.287011529, 0.289256198, 0.289460259, 0.290684624, 0.291296806, 0.292521171, 0.292929293, 0.293133354, 0.293745536, 0.29476584, 0.296194266, 0.297418631, 0.298030813, 0.298438935, 0.299255178, 0.29986736, 0.300275482, 0.300479543, 0.302112029, 0.302928273, 0.304152637, 0.30476482, 0.305989185, 0.306601367, 0.30721355, 0.309458219, 0.309662279, 0.310886644, 0.311498827, 0.312723192, 0.313131313, 0.313335374, 0.313947556, 0.31496786, 0.316396286, 0.317620651, 0.318232833, 0.318640955, 0.319457198, 0.320069381, 0.320477502, 0.320681563, 0.32231405, 0.323130293, 0.324354658, 0.32496684, 0.326191205, 0.326803387, 0.32741557, 0.329660239, 0.3298643, 0.331088664, 0.331700847, 0.332925212, 0.333333333, 0.333537394, 0.334149577, 0.335169881, 0.336598306, 0.337822671, 0.338434854, 0.338842975, 0.339659218, 0.340271401, 0.340679522, 0.340883583, 0.34251607, 0.343332313, 0.344556678, 0.34516886, 0.346393225, 0.347005408, 0.34761759, 0.349862259, 0.35006632, 0.351290685, 0.351902867, 0.353127232, 0.353535354, 0.353739414, 0.354351597, 0.355371901, 0.356800326, 0.358024691, 0.358636874, 0.359044995, 0.359861239, 0.360473421, 0.360881543, 0.361085604, 0.36271809, 0.363534333, 0.364758698, 0.365370881, 0.366595245, 0.367207428, 0.36781961, 0.370064279, 0.37026834, 0.371492705, 0.372104887, 0.373329252, 0.373737374, 0.373941435, 0.374553617, 0.375573921, 0.377002347, 0.378226712, 0.378838894, 0.379247016, 0.380063259, 0.380675441, 0.381083563, 0.381287624, 0.38292011, 0.383736353, 0.384960718, 0.385572901, 0.386797266, 0.387409448, 0.38802163, 0.390266299, 0.39047036, 0.391694725, 0.392306907, 0.393531272, 0.393939394, 0.394143455, 0.394755637, 0.395775941, 0.397204367, 0.398428732, 0.399040914, 0.399449036, 0.400265279, 0.400877461, 0.401285583, 0.401489644, 0.40312213, 0.403938374, 0.405162738, 0.405774921, 0.406999286, 0.407611468, 0.408223651, 0.41046832, 0.41067238, 0.411896745, 0.412508928, 0.413733293, 0.414141414, 0.414345475, 0.414957657, 0.415977961, 0.417406387, 0.418630752, 0.419242934, 0.419651056, 0.420467299, 0.421079482, 0.421487603, 0.421691664, 0.423324151, 0.424140394, 0.425364759, 0.425976941, 0.427201306, 0.427813488, 0.428425671, 0.43067034, 0.430874401, 0.432098765, 0.432710948, 0.433935313, 0.434343434, 0.434547495, 0.435159678, 0.436179982, 0.437608407, 0.438832772, 0.439444955, 0.439853076, 0.440669319, 0.441281502, 0.441689624, 0.441893684, 0.443526171, 0.444342414, 0.445566779, 0.446178961, 0.447403326, 0.448015509, 0.448627691, 0.45087236, 0.451076421, 0.452300786, 0.452912968, 0.454137333, 0.454545455, 0.454749515, 0.455361698, 0.456382002, 0.457810428, 0.459034792, 0.459646975, 0.460055096, 0.46087134, 0.461483522, 0.461891644, 0.462095705, 0.463728191, 0.464544434, 0.465768799, 0.466380982, 0.467605346, 0.468217529, 0.468829711, 0.47107438, 0.471278441, 0.472502806, 0.473114988, 0.474339353, 0.474747475, 0.474951536, 0.475563718, 0.476584022, 0.478012448, 0.479236813, 0.479848995, 0.480257117, 0.48107336, 0.481685542, 0.482093664, 0.482297725, 0.483930211, 0.484746454, 0.485970819, 0.486583002, 0.487807367, 0.488419549, 0.489031731, 0.4912764, 0.491480461, 0.492704826, 0.493317008, 0.494541373, 0.494949495, 0.495153556, 0.495765738, 0.496786042, 0.498214468, 0.499438833, 0.500051015, 0.500459137, 0.50127538, 0.501887562, 0.502295684, 0.502499745, 0.504132231, 0.504948475, 0.50617284, 0.506785022, 0.508009387, 0.508621569, 0.509233752, 0.511478421, 0.511682481, 0.512906846, 0.513519029, 0.514743394, 0.515151515, 0.515355576, 0.515967758, 0.516988062, 0.518416488, 0.519640853, 0.520253035, 0.520661157, 0.5214774, 0.522089583, 0.522497704, 0.522701765, 0.524334252, 0.525150495, 0.52637486, 0.526987042, 0.528211407, 0.528823589, 0.529435772, 0.531680441, 0.531884502, 0.533108866, 0.533721049, 0.534945414, 0.535353535, 0.535557596, 0.536169779, 0.537190083, 0.538618508, 0.539842873, 0.540455056, 0.540863177, 0.54167942, 0.542291603, 0.542699725, 0.542903785, 0.544536272, 0.545352515, 0.54657688, 0.547189062, 0.548413427, 0.54902561, 0.549637792, 0.551882461, 0.552086522, 0.553310887, 0.553923069, 0.555147434, 0.555555556, 0.555759616, 0.556371799, 0.557392103, 0.558820529, 0.560044893, 0.560657076, 0.561065197, 0.561881441, 0.562493623, 0.562901745, 0.563105806, 0.564738292, 0.565554535, 0.5667789, 0.567391083, 0.568615447, 0.56922763, 0.569839812, 0.572084481, 0.572288542, 0.573512907, 0.574125089, 0.575349454, 0.575757576, 0.575961637, 0.576573819, 0.577594123, 0.579022549, 0.580246914, 0.580859096, 0.581267218, 0.582083461, 0.582695643, 0.583103765, 0.583307826, 0.584940312, 0.585756555, 0.58698092, 0.587593103, 0.588817468, 0.58942965, 0.590041832, 0.592286501, 0.592490562, 0.593714927, 0.594327109, 0.595551474, 0.595959596, 0.596163657, 0.596775839, 0.597796143, 0.599224569, 0.600448934, 0.601061116, 0.601469238, 0.602285481, 0.602897664, 0.603305785, 0.603509846, 0.605142332, 0.605958576, 0.607182941, 0.607795123, 0.609019488, 0.60963167, 0.610243853, 0.612488522, 0.612692582, 0.613916947, 0.61452913, 0.615753495, 0.616161616, 0.616365677, 0.616977859, 0.617998163, 0.619426589, 0.620650954, 0.621263136, 0.621671258, 0.622487501, 0.623099684, 0.623507805, 0.623711866, 0.625344353, 0.626160596, 0.627384961, 0.627997143, 0.629221508, 0.62983369, 0.630445873, 0.632690542, 0.632894603, 0.634118967, 0.63473115, 0.635955515, 0.636363636, 0.636567697, 0.63717988, 0.638200184, 0.639628609, 0.640852974, 0.641465157, 0.641873278, 0.642689521, 0.643301704, 0.643709826, 0.643913886, 0.645546373, 0.646362616, 0.647586981, 0.648199163, 0.649423528, 0.650035711, 0.650647893, 0.652892562, 0.653096623, 0.654320988, 0.65493317, 0.656157535, 0.656565657, 0.656769717, 0.6573819, 0.658402204, 0.65983063, 0.661054994, 0.661667177, 0.662075298, 0.662891542, 0.663503724, 0.663911846, 0.664115907, 0.665748393, 0.666564636, 0.667789001, 0.668401184, 0.669625548, 0.670237731, 0.670849913, 0.673094582, 0.673298643, 0.674523008, 0.67513519, 0.676359555, 0.676767677, 0.676971738, 0.67758392, 0.678604224, 0.68003265, 0.681257015, 0.681869197, 0.682277319, 0.683093562, 0.683705744, 0.684113866, 0.684317927, 0.685950413, 0.686766656, 0.687991021, 0.688603204, 0.689827569, 0.690439751, 0.691051933, 0.693296602, 0.693500663, 0.694725028, 0.69533721, 0.696561575, 0.696969697, 0.697173758, 0.69778594, 0.698806244, 0.70023467, 0.701459035, 0.702071217, 0.702479339, 0.703295582, 0.703907765, 0.704315886, 0.704519947, 0.706152433, 0.706968677, 0.708193042, 0.708805224, 0.710029589, 0.710641771, 0.711253954, 0.713498623, 0.713702683, 0.714927048, 0.715539231, 0.716763596, 0.717171717, 0.717375778, 0.71798796, 0.719008264, 0.72043669, 0.721661055, 0.722273237, 0.722681359, 0.723497602, 0.724109785, 0.724517906, 0.724721967, 0.726354454, 0.727170697, 0.728395062, 0.729007244, 0.730231609, 0.730843791, 0.731455974, 0.733700643, 0.733904704, 0.735129068, 0.735741251, 0.736965616, 0.737373737, 0.737577798, 0.738189981, 0.739210285, 0.74063871, 0.741863075, 0.742475258, 0.742883379, 0.743699622, 0.744311805, 0.744719927, 0.744923987, 0.746556474, 0.747372717, 0.748597082, 0.749209264, 0.750433629, 0.751045812, 0.751657994, 0.753902663, 0.754106724, 0.755331089, 0.755943271, 0.757167636, 0.757575758, 0.757779818, 0.758392001, 0.759412305, 0.760840731, 0.762065095, 0.762677278, 0.763085399, 0.763901643, 0.764513825, 0.764921947, 0.765126008, 0.766758494, 0.767574737, 0.768799102, 0.769411285, 0.770635649, 0.771247832, 0.771860014, 0.774104683, 0.774308744, 0.775533109, 0.776145291, 0.777369656, 0.777777778, 0.777981839, 0.778594021, 0.779614325, 0.781042751, 0.782267116, 0.782879298, 0.78328742, 0.784103663, 0.784715845, 0.785123967, 0.785328028, 0.786960514, 0.787776757, 0.789001122, 0.789613305, 0.79083767, 0.791449852, 0.792062034, 0.794306703, 0.794510764, 0.795735129, 0.796347311, 0.797571676, 0.797979798, 0.798183859, 0.798796041, 0.799816345, 0.801244771, 0.802469136, 0.803081318, 0.80348944, 0.804305683, 0.804917866, 0.805325987, 0.805530048, 0.807162534, 0.807978778, 0.809203143, 0.809815325, 0.81103969, 0.811651872, 0.812264055, 0.814508724, 0.814712784, 0.815937149, 0.816549332, 0.817773697, 0.818181818, 0.818385879, 0.818998061, 0.820018365, 0.821446791, 0.822671156, 0.823283338, 0.82369146, 0.824507703, 0.825119886, 0.825528007, 0.825732068, 0.827364555, 0.828180798, 0.829405163, 0.830017345, 0.83124171, 0.831853892, 0.832466075, 0.834710744, 0.834914805, 0.836139169, 0.836751352, 0.837975717, 0.838383838, 0.838587899, 0.839200082, 0.840220386, 0.841648811, 0.842873176, 0.843485359, 0.84389348, 0.844709723, 0.845321906, 0.845730028, 0.845934088, 0.847566575, 0.848382818, 0.849607183, 0.850219365, 0.85144373, 0.852055913, 0.852668095, 0.854912764, 0.855116825, 0.85634119, 0.856953372, 0.858177737, 0.858585859, 0.858789919, 0.859402102, 0.860422406, 0.861850832, 0.863075196, 0.863687379, 0.8640955, 0.864911744, 0.865523926, 0.865932048, 0.866136109, 0.867768595, 0.868584838, 0.869809203, 0.870421386, 0.87164575, 0.872257933, 0.872870115, 0.875114784, 0.875318845, 0.87654321, 0.877155392, 0.878379757, 0.878787879, 0.87899194, 0.879604122, 0.880624426, 0.882052852, 0.883277217, 0.883889399, 0.884297521, 0.885113764, 0.885725946, 0.886134068, 0.886338129, 0.887970615, 0.888786858, 0.890011223, 0.890623406, 0.891847771, 0.892459953, 0.893072135, 0.895316804, 0.895520865, 0.89674523, 0.897357413, 0.898581777, 0.898989899, 0.89919396, 0.899806142, 0.900826446, 0.902254872, 0.903479237, 0.904091419, 0.904499541, 0.905315784, 0.905927967, 0.906336088, 0.906540149, 0.908172635, 0.908988879, 0.910213244, 0.910825426, 0.912049791, 0.912661973, 0.913274156, 0.915518825, 0.915722885, 0.91694725, 0.917559433, 0.918783798, 0.919191919, 0.91939598, 0.920008162, 0.921028466, 0.922456892, 0.923681257, 0.924293439, 0.924701561, 0.925517804, 0.926129987, 0.926538108, 0.926742169, 0.928374656, 0.929190899, 0.930415264, 0.931027446, 0.932251811, 0.932863993, 0.933476176, 0.935720845, 0.935924906, 0.93714927, 0.937761453, 0.938985818, 0.939393939, 0.939598, 0.940210183, 0.941230487, 0.942658912, 0.943883277, 0.94449546, 0.944903581, 0.945719825, 0.946332007, 0.946740129, 0.946944189, 0.948576676, 0.949392919, 0.950617284, 0.951229466, 0.952453831, 0.953066014, 0.953678196, 0.955922865, 0.956126926, 0.957351291, 0.957963473, 0.959187838, 0.95959596, 0.95980002, 0.960412203, 0.961432507, 0.962860933, 0.964085297, 0.96469748, 0.965105601, 0.965921845, 0.966534027, 0.966942149, 0.96714621, 0.968778696, 0.969594939, 0.970819304, 0.971431487, 0.972655851, 0.973268034, 0.973880216, 0.976124885, 0.976328946, 0.977553311, 0.978165493, 0.979389858, 0.97979798, 0.980002041, 0.980614223, 0.981634527, 0.983062953, 0.984287318, 0.9848995, 0.985307622, 0.986123865, 0.986736047, 0.987144169, 0.98734823, 0.988980716, 0.989796959, 0.991021324, 0.991633507, 0.992857872, 0.993470054, 0.994082237, 0.996326905, 0.996530966, 0.997755331, 0.998367514, 0.999591878] pattern_even = [0.0, 0.0002040608, 0.0008162432, 0.0018365473, 0.003264973, 0.0044893378, 0.0051015203, 0.0055096419, 0.0063258851, 0.0069380675, 0.0073461892, 0.00755025, 0.0091827365, 0.0099989797, 0.0112233446, 0.011835527, 0.0130598918, 0.0136720743, 0.0142842567, 0.0165289256, 0.0167329864, 0.0179573513, 0.0185695337, 0.0197938986, 0.0202020202, 0.020406081, 0.0210182634, 0.0220385675, 0.0234669932, 0.024691358, 0.0253035405, 0.0257116621, 0.0265279053, 0.0271400877, 0.0275482094, 0.0277522702, 0.0293847567, 0.0302009999, 0.0314253648, 0.0320375472, 0.0332619121, 0.0338740945, 0.0344862769, 0.0367309458, 0.0369350066, 0.0381593715, 0.0387715539, 0.0399959188, 0.0404040404, 0.0406081012, 0.0412202836, 0.0422405877, 0.0436690134, 0.0448933782, 0.0455055607, 0.0459136823, 0.0467299255, 0.0473421079, 0.0477502296, 0.0479542904, 0.0495867769, 0.0504030201, 0.051627385, 0.0522395674, 0.0534639323, 0.0540761147, 0.0546882971, 0.056932966, 0.0571370268, 0.0583613917, 0.0589735741, 0.060197939, 0.0606060606, 0.0608101214, 0.0614223038, 0.0624426079, 0.0638710336, 0.0650953984, 0.0657075809, 0.0661157025, 0.0669319457, 0.0675441282, 0.0679522498, 0.0681563106, 0.0697887971, 0.0706050403, 0.0718294052, 0.0724415876, 0.0736659525, 0.0742781349, 0.0748903173, 0.0771349862, 0.077339047, 0.0785634119, 0.0791755943, 0.0803999592, 0.0808080808, 0.0810121416, 0.081624324, 0.0826446281, 0.0840730538, 0.0852974186, 0.0859096011, 0.0863177227, 0.0871339659, 0.0877461484, 0.08815427, 0.0883583308, 0.0899908173, 0.0908070605, 0.0920314254, 0.0926436078, 0.0938679727, 0.0944801551, 0.0950923375, 0.0973370064, 0.0975410672, 0.0987654321, 0.0993776145, 0.1006019794, 0.101010101, 0.1012141618, 0.1018263443, 0.1028466483, 0.104275074, 0.1054994388, 0.1061116213, 0.1065197429, 0.1073359861, 0.1079481686, 0.1083562902, 0.108560351, 0.1101928375, 0.1110090807, 0.1122334456, 0.112845628, 0.1140699929, 0.1146821753, 0.1152943577, 0.1175390266, 0.1177430874, 0.1189674523, 0.1195796347, 0.1208039996, 0.1212121212, 0.121416182, 0.1220283645, 0.1230486685, 0.1244770942, 0.125701459, 0.1263136415, 0.1267217631, 0.1275380063, 0.1281501888, 0.1285583104, 0.1287623712, 0.1303948577, 0.1312111009, 0.1324354658, 0.1330476482, 0.1342720131, 0.1348841955, 0.1354963779, 0.1377410468, 0.1379451076, 0.1391694725, 0.1397816549, 0.1410060198, 0.1414141414, 0.1416182022, 0.1422303847, 0.1432506887, 0.1446791144, 0.1459034792, 0.1465156617, 0.1469237833, 0.1477400265, 0.148352209, 0.1487603306, 0.1489643914, 0.1505968779, 0.1514131211, 0.152637486, 0.1532496684, 0.1544740333, 0.1550862157, 0.1556983981, 0.157943067, 0.1581471278, 0.1593714927, 0.1599836751, 0.16120804, 0.1616161616, 0.1618202224, 0.1624324049, 0.1634527089, 0.1648811346, 0.1661054994, 0.1667176819, 0.1671258035, 0.1679420467, 0.1685542292, 0.1689623508, 0.1691664116, 0.1707988981, 0.1716151413, 0.1728395062, 0.1734516886, 0.1746760535, 0.1752882359, 0.1759004183, 0.1781450872, 0.178349148, 0.1795735129, 0.1801856953, 0.1814100602, 0.1818181818, 0.1820222426, 0.1826344251, 0.1836547291, 0.1850831548, 0.1863075196, 0.1869197021, 0.1873278237, 0.1881440669, 0.1887562494, 0.189164371, 0.1893684318, 0.1910009183, 0.1918171615, 0.1930415264, 0.1936537088, 0.1948780737, 0.1954902561, 0.1961024385, 0.1983471074, 0.1985511682, 0.1997755331, 0.2003877155, 0.2016120804, 0.202020202, 0.2022242628, 0.2028364453, 0.2038567493, 0.205285175, 0.2065095398, 0.2071217223, 0.2075298439, 0.2083460871, 0.2089582696, 0.2093663912, 0.209570452, 0.2112029385, 0.2120191817, 0.2132435466, 0.213855729, 0.2150800939, 0.2156922763, 0.2163044587, 0.2185491276, 0.2187531885, 0.2199775533, 0.2205897357, 0.2218141006, 0.2222222222, 0.222426283, 0.2230384655, 0.2240587695, 0.2254871952, 0.22671156, 0.2273237425, 0.2277318641, 0.2285481073, 0.2291602898, 0.2295684114, 0.2297724722, 0.2314049587, 0.2322212019, 0.2334455668, 0.2340577492, 0.2352821141, 0.2358942965, 0.2365064789, 0.2387511478, 0.2389552087, 0.2401795735, 0.2407917559, 0.2420161208, 0.2424242424, 0.2426283032, 0.2432404857, 0.2442607897, 0.2456892154, 0.2469135802, 0.2475257627, 0.2479338843, 0.2487501275, 0.24936231, 0.2497704316, 0.2499744924, 0.2516069789, 0.2524232221, 0.253647587, 0.2542597694, 0.2554841343, 0.2560963167, 0.2567084991, 0.258953168, 0.2591572289, 0.2603815937, 0.2609937761, 0.262218141, 0.2626262626, 0.2628303234, 0.2634425059, 0.2644628099, 0.2658912356, 0.2671156004, 0.2677277829, 0.2681359045, 0.2689521477, 0.2695643302, 0.2699724518, 0.2701765126, 0.2718089991, 0.2726252423, 0.2738496072, 0.2744617896, 0.2756861545, 0.2762983369, 0.2769105193, 0.2791551882, 0.2793592491, 0.2805836139, 0.2811957963, 0.2824201612, 0.2828282828, 0.2830323436, 0.2836445261, 0.2846648301, 0.2860932558, 0.2873176207, 0.2879298031, 0.2883379247, 0.2891541679, 0.2897663504, 0.290174472, 0.2903785328, 0.2920110193, 0.2928272625, 0.2940516274, 0.2946638098, 0.2958881747, 0.2965003571, 0.2971125395, 0.2993572084, 0.2995612693, 0.3007856341, 0.3013978165, 0.3026221814, 0.303030303, 0.3032343638, 0.3038465463, 0.3048668503, 0.306295276, 0.3075196409, 0.3081318233, 0.3085399449, 0.3093561881, 0.3099683706, 0.3103764922, 0.310580553, 0.3122130395, 0.3130292827, 0.3142536476, 0.31486583, 0.3160901949, 0.3167023773, 0.3173145597, 0.3195592287, 0.3197632895, 0.3209876543, 0.3215998368, 0.3228242016, 0.3232323232, 0.323436384, 0.3240485665, 0.3250688705, 0.3264972962, 0.3277216611, 0.3283338435, 0.3287419651, 0.3295582083, 0.3301703908, 0.3305785124, 0.3307825732, 0.3324150597, 0.3332313029, 0.3344556678, 0.3350678502, 0.3362922151, 0.3369043975, 0.3375165799, 0.3397612489, 0.3399653097, 0.3411896745, 0.341801857, 0.3430262218, 0.3434343434, 0.3436384042, 0.3442505867, 0.3452708907, 0.3466993164, 0.3479236813, 0.3485358637, 0.3489439853, 0.3497602285, 0.350372411, 0.3507805326, 0.3509845934, 0.3526170799, 0.3534333231, 0.354657688, 0.3552698704, 0.3564942353, 0.3571064177, 0.3577186001, 0.3599632691, 0.3601673299, 0.3613916947, 0.3620038772, 0.363228242, 0.3636363636, 0.3638404244, 0.3644526069, 0.3654729109, 0.3669013366, 0.3681257015, 0.3687378839, 0.3691460055, 0.3699622488, 0.3705744312, 0.3709825528, 0.3711866136, 0.3728191001, 0.3736353433, 0.3748597082, 0.3754718906, 0.3766962555, 0.3773084379, 0.3779206203, 0.3801652893, 0.3803693501, 0.3815937149, 0.3822058974, 0.3834302622, 0.3838383838, 0.3840424446, 0.3846546271, 0.3856749311, 0.3871033568, 0.3883277217, 0.3889399041, 0.3893480257, 0.390164269, 0.3907764514, 0.391184573, 0.3913886338, 0.3930211203, 0.3938373635, 0.3950617284, 0.3956739108, 0.3968982757, 0.3975104581, 0.3981226405, 0.4003673095, 0.4005713703, 0.4017957351, 0.4024079176, 0.4036322824, 0.404040404, 0.4042444649, 0.4048566473, 0.4058769513, 0.407305377, 0.4085297419, 0.4091419243, 0.4095500459, 0.4103662892, 0.4109784716, 0.4113865932, 0.411590654, 0.4132231405, 0.4140393837, 0.4152637486, 0.415875931, 0.4171002959, 0.4177124783, 0.4183246607, 0.4205693297, 0.4207733905, 0.4219977553, 0.4226099378, 0.4238343026, 0.4242424242, 0.4244464851, 0.4250586675, 0.4260789715, 0.4275073972, 0.4287317621, 0.4293439445, 0.4297520661, 0.4305683094, 0.4311804918, 0.4315886134, 0.4317926742, 0.4334251607, 0.4342414039, 0.4354657688, 0.4360779512, 0.4373023161, 0.4379144985, 0.438526681, 0.4407713499, 0.4409754107, 0.4421997755, 0.442811958, 0.4440363228, 0.4444444444, 0.4446485053, 0.4452606877, 0.4462809917, 0.4477094174, 0.4489337823, 0.4495459647, 0.4499540863, 0.4507703296, 0.451382512, 0.4517906336, 0.4519946944, 0.4536271809, 0.4544434241, 0.455667789, 0.4562799714, 0.4575043363, 0.4581165187, 0.4587287012, 0.4609733701, 0.4611774309, 0.4624017957, 0.4630139782, 0.464238343, 0.4646464646, 0.4648505255, 0.4654627079, 0.4664830119, 0.4679114376, 0.4691358025, 0.4697479849, 0.4701561065, 0.4709723498, 0.4715845322, 0.4719926538, 0.4721967146, 0.4738292011, 0.4746454443, 0.4758698092, 0.4764819916, 0.4777063565, 0.4783185389, 0.4789307214, 0.4811753903, 0.4813794511, 0.4826038159, 0.4832159984, 0.4844403632, 0.4848484848, 0.4850525457, 0.4856647281, 0.4866850321, 0.4881134578, 0.4893378227, 0.4899500051, 0.4903581267, 0.49117437, 0.4917865524, 0.492194674, 0.4923987348, 0.4940312213, 0.4948474645, 0.4960718294, 0.4966840118, 0.4979083767, 0.4985205591, 0.4991327416, 0.5013774105, 0.5015814713, 0.5028058361, 0.5034180186, 0.5046423834, 0.5050505051, 0.5052545659, 0.5058667483, 0.5068870523, 0.508315478, 0.5095398429, 0.5101520253, 0.5105601469, 0.5113763902, 0.5119885726, 0.5123966942, 0.512600755, 0.5142332415, 0.5150494847, 0.5162738496, 0.516886032, 0.5181103969, 0.5187225793, 0.5193347618, 0.5215794307, 0.5217834915, 0.5230078563, 0.5236200388, 0.5248444036, 0.5252525253, 0.5254565861, 0.5260687685, 0.5270890725, 0.5285174982, 0.5297418631, 0.5303540455, 0.5307621671, 0.5315784104, 0.5321905928, 0.5325987144, 0.5328027752, 0.5344352617, 0.5352515049, 0.5364758698, 0.5370880522, 0.5383124171, 0.5389245995, 0.539536782, 0.5417814509, 0.5419855117, 0.5432098765, 0.543822059, 0.5450464238, 0.5454545455, 0.5456586063, 0.5462707887, 0.5472910927, 0.5487195184, 0.5499438833, 0.5505560657, 0.5509641873, 0.5517804306, 0.552392613, 0.5528007346, 0.5530047954, 0.5546372819, 0.5554535252, 0.55667789, 0.5572900724, 0.5585144373, 0.5591266197, 0.5597388022, 0.5619834711, 0.5621875319, 0.5634118967, 0.5640240792, 0.565248444, 0.5656565657, 0.5658606265, 0.5664728089, 0.5674931129, 0.5689215386, 0.5701459035, 0.5707580859, 0.5711662075, 0.5719824508, 0.5725946332, 0.5730027548, 0.5732068156, 0.5748393021, 0.5756555454, 0.5768799102, 0.5774920926, 0.5787164575, 0.5793286399, 0.5799408224, 0.5821854913, 0.5823895521, 0.5836139169, 0.5842260994, 0.5854504642, 0.5858585859, 0.5860626467, 0.5866748291, 0.5876951332, 0.5891235588, 0.5903479237, 0.5909601061, 0.5913682277, 0.592184471, 0.5927966534, 0.593204775, 0.5934088358, 0.5950413223, 0.5958575656, 0.5970819304, 0.5976941128, 0.5989184777, 0.5995306601, 0.6001428426, 0.6023875115, 0.6025915723, 0.6038159371, 0.6044281196, 0.6056524844, 0.6060606061, 0.6062646669, 0.6068768493, 0.6078971534, 0.609325579, 0.6105499439, 0.6111621263, 0.6115702479, 0.6123864912, 0.6129986736, 0.6134067952, 0.613610856, 0.6152433425, 0.6160595858, 0.6172839506, 0.617896133, 0.6191204979, 0.6197326803, 0.6203448628, 0.6225895317, 0.6227935925, 0.6240179574, 0.6246301398, 0.6258545046, 0.6262626263, 0.6264666871, 0.6270788695, 0.6280991736, 0.6295275992, 0.6307519641, 0.6313641465, 0.6317722681, 0.6325885114, 0.6332006938, 0.6336088154, 0.6338128762, 0.6354453627, 0.636261606, 0.6374859708, 0.6380981533, 0.6393225181, 0.6399347005, 0.640546883, 0.6427915519, 0.6429956127, 0.6442199776, 0.64483216, 0.6460565248, 0.6464646465, 0.6466687073, 0.6472808897, 0.6483011938, 0.6497296194, 0.6509539843, 0.6515661667, 0.6519742883, 0.6527905316, 0.653402714, 0.6538108356, 0.6540148964, 0.6556473829, 0.6564636262, 0.657687991, 0.6583001735, 0.6595245383, 0.6601367207, 0.6607489032, 0.6629935721, 0.6631976329, 0.6644219978, 0.6650341802, 0.666258545, 0.6666666667, 0.6668707275, 0.6674829099, 0.668503214, 0.6699316396, 0.6711560045, 0.6717681869, 0.6721763085, 0.6729925518, 0.6736047342, 0.6740128558, 0.6742169166, 0.6758494031, 0.6766656464, 0.6778900112, 0.6785021937, 0.6797265585, 0.6803387409, 0.6809509234, 0.6831955923, 0.6833996531, 0.684624018, 0.6852362004, 0.6864605652, 0.6868686869, 0.6870727477, 0.6876849301, 0.6887052342, 0.6901336598, 0.6913580247, 0.6919702071, 0.6923783287, 0.693194572, 0.6938067544, 0.694214876, 0.6944189368, 0.6960514233, 0.6968676666, 0.6980920314, 0.6987042139, 0.6999285787, 0.7005407611, 0.7011529436, 0.7033976125, 0.7036016733, 0.7048260382, 0.7054382206, 0.7066625855, 0.7070707071, 0.7072747679, 0.7078869503, 0.7089072544, 0.71033568, 0.7115600449, 0.7121722273, 0.7125803489, 0.7133965922, 0.7140087746, 0.7144168962, 0.714620957, 0.7162534435, 0.7170696868, 0.7182940516, 0.7189062341, 0.7201305989, 0.7207427813, 0.7213549638, 0.7235996327, 0.7238036935, 0.7250280584, 0.7256402408, 0.7268646057, 0.7272727273, 0.7274767881, 0.7280889705, 0.7291092746, 0.7305377002, 0.7317620651, 0.7323742475, 0.7327823691, 0.7335986124, 0.7342107948, 0.7346189164, 0.7348229772, 0.7364554637, 0.737271707, 0.7384960718, 0.7391082543, 0.7403326191, 0.7409448016, 0.741556984, 0.7438016529, 0.7440057137, 0.7452300786, 0.745842261, 0.7470666259, 0.7474747475, 0.7476788083, 0.7482909907, 0.7493112948, 0.7507397204, 0.7519640853, 0.7525762677, 0.7529843893, 0.7538006326, 0.754412815, 0.7548209366, 0.7550249974, 0.7566574839, 0.7574737272, 0.758698092, 0.7593102745, 0.7605346393, 0.7611468218, 0.7617590042, 0.7640036731, 0.7642077339, 0.7654320988, 0.7660442812, 0.7672686461, 0.7676767677, 0.7678808285, 0.7684930109, 0.769513315, 0.7709417406, 0.7721661055, 0.7727782879, 0.7731864096, 0.7740026528, 0.7746148352, 0.7750229568, 0.7752270177, 0.7768595041, 0.7776757474, 0.7789001122, 0.7795122947, 0.7807366595, 0.781348842, 0.7819610244, 0.7842056933, 0.7844097541, 0.785634119, 0.7862463014, 0.7874706663, 0.7878787879, 0.7880828487, 0.7886950311, 0.7897153352, 0.7911437608, 0.7923681257, 0.7929803081, 0.7933884298, 0.794204673, 0.7948168554, 0.795224977, 0.7954290379, 0.7970615243, 0.7978777676, 0.7991021324, 0.7997143149, 0.8009386797, 0.8015508622, 0.8021630446, 0.8044077135, 0.8046117743, 0.8058361392, 0.8064483216, 0.8076726865, 0.8080808081, 0.8082848689, 0.8088970513, 0.8099173554, 0.811345781, 0.8125701459, 0.8131823283, 0.81359045, 0.8144066932, 0.8150188756, 0.8154269972, 0.8156310581, 0.8172635445, 0.8180797878, 0.8193041526, 0.8199163351, 0.8211406999, 0.8217528824, 0.8223650648, 0.8246097337, 0.8248137945, 0.8260381594, 0.8266503418, 0.8278747067, 0.8282828283, 0.8284868891, 0.8290990715, 0.8301193756, 0.8315478012, 0.8327721661, 0.8333843485, 0.8337924702, 0.8346087134, 0.8352208958, 0.8356290174, 0.8358330783, 0.8374655647, 0.838281808, 0.8395061728, 0.8401183553, 0.8413427201, 0.8419549026, 0.842567085, 0.8448117539, 0.8450158147, 0.8462401796, 0.846852362, 0.8480767269, 0.8484848485, 0.8486889093, 0.8493010917, 0.8503213958, 0.8517498214, 0.8529741863, 0.8535863687, 0.8539944904, 0.8548107336, 0.855422916, 0.8558310376, 0.8560350985, 0.8576675849, 0.8584838282, 0.859708193, 0.8603203755, 0.8615447403, 0.8621569228, 0.8627691052, 0.8650137741, 0.8652178349, 0.8664421998, 0.8670543822, 0.8682787471, 0.8686868687, 0.8688909295, 0.8695031119, 0.870523416, 0.8719518416, 0.8731762065, 0.8737883889, 0.8741965106, 0.8750127538, 0.8756249362, 0.8760330579, 0.8762371187, 0.8778696051, 0.8786858484, 0.8799102132, 0.8805223957, 0.8817467605, 0.882358943, 0.8829711254, 0.8852157943, 0.8854198551, 0.88664422, 0.8872564024, 0.8884807673, 0.8888888889, 0.8890929497, 0.8897051321, 0.8907254362, 0.8921538619, 0.8933782267, 0.8939904091, 0.8943985308, 0.895214774, 0.8958269564, 0.8962350781, 0.8964391389, 0.8980716253, 0.8988878686, 0.9001122334, 0.9007244159, 0.9019487807, 0.9025609632, 0.9031731456, 0.9054178145, 0.9056218753, 0.9068462402, 0.9074584226, 0.9086827875, 0.9090909091, 0.9092949699, 0.9099071523, 0.9109274564, 0.9123558821, 0.9135802469, 0.9141924293, 0.914600551, 0.9154167942, 0.9160289766, 0.9164370983, 0.9166411591, 0.9182736455, 0.9190898888, 0.9203142536, 0.9209264361, 0.9221508009, 0.9227629834, 0.9233751658, 0.9256198347, 0.9258238955, 0.9270482604, 0.9276604428, 0.9288848077, 0.9292929293, 0.9294969901, 0.9301091725, 0.9311294766, 0.9325579023, 0.9337822671, 0.9343944495, 0.9348025712, 0.9356188144, 0.9362309968, 0.9366391185, 0.9368431793, 0.9384756657, 0.939291909, 0.9405162739, 0.9411284563, 0.9423528211, 0.9429650036, 0.943577186, 0.9458218549, 0.9460259157, 0.9472502806, 0.947862463, 0.9490868279, 0.9494949495, 0.9496990103, 0.9503111927, 0.9513314968, 0.9527599225, 0.9539842873, 0.9545964697, 0.9550045914, 0.9558208346, 0.956433017, 0.9568411387, 0.9570451995, 0.958677686, 0.9594939292, 0.9607182941, 0.9613304765, 0.9625548413, 0.9631670238, 0.9637792062, 0.9660238751, 0.9662279359, 0.9674523008, 0.9680644832, 0.9692888481, 0.9696969697, 0.9699010305, 0.9705132129, 0.971533517, 0.9729619427, 0.9741863075, 0.97479849, 0.9752066116, 0.9760228548, 0.9766350372, 0.9770431589, 0.9772472197, 0.9788797062, 0.9796959494, 0.9809203143, 0.9815324967, 0.9827568615, 0.983369044, 0.9839812264, 0.9862258953, 0.9864299561, 0.987654321, 0.9882665034, 0.9894908683, 0.9898989899, 0.9901030507, 0.9907152331, 0.9917355372, 0.9931639629, 0.9943883277, 0.9950005102, 0.9954086318, 0.996224875, 0.9968370574, 0.9972451791, 0.9974492399, 0.9990817264, 0.9998979696] averages_even = {0.0: [0.0, 0.6666666666667, 0.3333333333333], 0.306295276: [0.5656565656566, 0.6565656565657, 0.4343434343434, 0.3434343434343], 0.2738496072: [0.2222222222222, 0.7777777777778], 0.5858585859: [0.0, 0.3333333333333, 0.6666666666667], 0.7789001122: [0.2222222222222, 0.7777777777778], 0.121416182: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.4856647281: [0.1717171717172, 0.7171717171717, 0.8282828282828, 0.2828282828283], 0.4207733905: [0.2323232323232, 0.7676767676768, 0.6767676767677, 0.3232323232323], 0.3883277217: [0.4444444444444, 0.5555555555556], 0.323436384: [0.1414141414141, 0.8585858585859, 0.5858585858586, 0.4141414141414], 0.8741965106: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.0367309458: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.1469237833: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.003264973: [0.5656565656566, 0.6565656565657, 0.4343434343434, 0.3434343434343], 0.4379144985: [0.0808080808081, 0.1919191919192, 0.8080808080808, 0.9191919191919], 0.9788797062: [0.030303030303, 0.969696969697, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.9460259157: [0.2323232323232, 0.7676767676768, 0.6767676767677, 0.3232323232323], 0.4407713499: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.1101928375: [0.969696969697, 0.030303030303, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.7842056933: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.3434343434: [0.0, 0.6666666666667, 0.3333333333333], 0.1893684318: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.7250280584: [0.8888888888889, 0.1111111111111], 0.011835527: [0.2626262626263, 0.7373737373737, 0.6262626262626, 0.3737373737374], 0.6023875115: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.5303540455: [0.9292929292929, 0.0707070707071, 0.2929292929293, 0.7070707070707], 0.0197938986: [0.020202020202, 0.979797979798, 0.2020202020202, 0.7979797979798], 0.4903581267: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.5389245995: [0.0808080808081, 0.1919191919192, 0.9191919191919, 0.8080808080808], 0.9864299561: [0.2323232323232, 0.7676767676768, 0.6767676767677, 0.3232323232323], 0.5248444036: [0.020202020202, 0.2020202020202, 0.979797979798, 0.7979797979798], 0.3930211203: [0.969696969697, 0.030303030303, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.8890929497: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.9366391185: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.7593102745: [0.2626262626263, 0.7373737373737, 0.3737373737374, 0.6262626262626], 0.640546883: [0.1616161616162, 0.8383838383838, 0.6161616161616, 0.3838383838384], 0.6295275992: [0.3434343434343, 0.6565656565657, 0.4343434343434, 0.5656565656566], 0.4848484848: [0.0, 0.3333333333333, 0.6666666666667], 0.1330476482: [0.2626262626263, 0.7373737373737, 0.6262626262626, 0.3737373737374], 0.2689521477: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.2824201612: [0.020202020202, 0.979797979798, 0.2020202020202, 0.7979797979798], 0.8125701459: [0.4444444444444, 0.5555555555556], 0.9882665034: [0.040404040404, 0.4040404040404, 0.959595959596, 0.5959595959596], 0.9558208346: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.2389552087: [0.3232323232323, 0.7676767676768, 0.2323232323232, 0.6767676767677], 0.8374655647: [0.030303030303, 0.969696969697, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.2065095398: [0.4444444444444, 0.5555555555556], 0.7493112948: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.415875931: [0.2626262626263, 0.7373737373737, 0.6262626262626, 0.3737373737374], 0.6246301398: [0.040404040404, 0.4040404040404, 0.959595959596, 0.5959595959596], 0.3834302622: [0.020202020202, 0.979797979798, 0.7979797979798, 0.2020202020202], 0.0877461484: [0.2525252525253, 0.5252525252525, 0.4747474747475, 0.7474747474747], 0.2860932558: [0.5656565656566, 0.6565656565657, 0.4343434343434, 0.3434343434343], 0.253647587: [0.2222222222222, 0.7777777777778], 0.7189062341: [0.2626262626263, 0.7373737373737, 0.3737373737374, 0.6262626262626], 0.2475257627: [0.9292929292929, 0.2929292929293, 0.7070707070707, 0.0707070707071], 0.7125803489: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.1244770942: [0.5656565656566, 0.6565656565657, 0.4343434343434, 0.3434343434343], 0.4654627079: [0.1717171717172, 0.7171717171717, 0.8282828282828, 0.2828282828283], 0.4005713703: [0.3232323232323, 0.7676767676768, 0.2323232323232, 0.6767676767677], 0.3681257015: [0.4444444444444, 0.5555555555556], 0.0920314254: [0.2222222222222, 0.7777777777778], 0.3032343638: [0.1414141414141, 0.8585858585859, 0.5858585858586, 0.4141414141414], 0.5472910927: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.391184573: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.8962350781: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.4826038159: [0.1111111111111, 0.8888888888889], 0.6650341802: [0.040404040404, 0.4040404040404, 0.959595959596, 0.5959595959596], 0.3526170799: [0.969696969697, 0.030303030303, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.9384756657: [0.030303030303, 0.969696969697, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.794204673: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.4205693297: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.7391082543: [0.2626262626263, 0.7373737373737, 0.3737373737374, 0.6262626262626], 0.7438016529: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.1616161616: [0.0, 0.6666666666667, 0.3333333333333], 0.4048566473: [0.1717171717172, 0.7171717171717, 0.8282828282828, 0.2828282828283], 0.6197326803: [0.0808080808081, 0.1919191919192, 0.9191919191919, 0.8080808080808], 0.9190898888: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.9343944495: [0.9292929292929, 0.0707070707071, 0.2929292929293, 0.7070707070707], 0.1175390266: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.983369044: [0.0808080808081, 0.1919191919192, 0.9191919191919, 0.8080808080808], 0.5876951332: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.3728191001: [0.969696969697, 0.030303030303, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.6987042139: [0.2626262626263, 0.7373737373737, 0.3737373737374, 0.6262626262626], 0.1716151413: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.4646464646: [0.0, 0.3333333333333, 0.6666666666667], 0.8695031119: [0.1717171717172, 0.7171717171717, 0.8282828282828, 0.2828282828283], 0.1391694725: [0.8888888888889, 0.1111111111111], 0.8682787471: [0.020202020202, 0.2020202020202, 0.979797979798, 0.7979797979798], 0.7721661055: [0.4444444444444, 0.5555555555556], 0.8652178349: [0.2323232323232, 0.7676767676768, 0.6767676767677, 0.3232323232323], 0.6717681869: [0.9292929292929, 0.0707070707071, 0.2929292929293, 0.7070707070707], 0.9154167942: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.8829711254: [0.1616161616162, 0.3838383838384, 0.6161616161616, 0.8383838383838], 0.785634119: [0.8888888888889, 0.1111111111111], 0.1801856953: [0.040404040404, 0.4040404040404, 0.959595959596, 0.5959595959596], 0.3956739108: [0.2626262626263, 0.7373737373737, 0.6262626262626, 0.3737373737374], 0.0369350066: [0.3232323232323, 0.7676767676768, 0.2323232323232, 0.6767676767677], 0.1477400265: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.3307825732: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.7403326191: [0.1313131313131, 0.6868686868687, 0.3131313131313, 0.8686868686869], 0.2658912356: [0.5656565656566, 0.6565656565657, 0.4343434343434, 0.3434343434343], 0.1836547291: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.8484848485: [0.0, 0.3333333333333, 0.6666666666667], 0.8082848689: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.4777063565: [0.1313131313131, 0.6868686868687, 0.8686868686869, 0.3131313131313], 0.4452606877: [0.1717171717172, 0.7171717171717, 0.8282828282828, 0.2828282828283], 0.0950923375: [0.1616161616162, 0.3838383838384, 0.6161616161616, 0.8383838383838], 0.3803693501: [0.3232323232323, 0.7676767676768, 0.2323232323232, 0.6767676767677], 0.3479236813: [0.4444444444444, 0.5555555555556], 0.0320375472: [0.2626262626263, 0.7373737373737, 0.6262626262626, 0.3737373737374], 0.1267217631: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.7036016733: [0.2323232323232, 0.7676767676768, 0.6767676767677, 0.3232323232323], 0.9680644832: [0.040404040404, 0.4040404040404, 0.959595959596, 0.5959595959596], 0.4948474645: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.4624017957: [0.1111111111111, 0.8888888888889], 0.8217528824: [0.0808080808081, 0.1919191919192, 0.9191919191919, 0.8080808080808], 0.0993776145: [0.040404040404, 0.4040404040404, 0.959595959596, 0.5959595959596], 0.3975104581: [0.0808080808081, 0.1919191919192, 0.8080808080808, 0.9191919191919], 0.8980716253: [0.030303030303, 0.969696969697, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.4003673095: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.0167329864: [0.3232323232323, 0.7676767676768, 0.2323232323232, 0.6767676767677], 0.7033976125: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.9182736455: [0.030303030303, 0.969696969697, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.303030303: [0.0, 0.6666666666667, 0.3333333333333], 0.152637486: [0.2222222222222, 0.7777777777778], 0.9972451791: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.4499540863: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.6595245383: [0.1313131313131, 0.6868686868687, 0.3131313131313, 0.8686868686869], 0.0220385675: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.6460565248: [0.020202020202, 0.2020202020202, 0.979797979798, 0.7979797979798], 0.4219977553: [0.1111111111111, 0.8888888888889], 0.5162738496: [0.2222222222222, 0.7777777777778], 0.5730027548: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.0624426079: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.6868686869: [0.0, 0.3333333333333, 0.6666666666667], 0.7470666259: [0.020202020202, 0.2020202020202, 0.979797979798, 0.7979797979798], 0.5297418631: [0.4444444444444, 0.5555555555556], 0.9074584226: [0.040404040404, 0.4040404040404, 0.959595959596, 0.5959595959596], 0.0546882971: [0.1616161616162, 0.3838383838384, 0.6161616161616, 0.8383838383838], 0.2187531885: [0.3232323232323, 0.7676767676768, 0.2323232323232, 0.6767676767677], 0.7776757474: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.1863075196: [0.4444444444444, 0.5555555555556], 0.6803387409: [0.0808080808081, 0.1919191919192, 0.9191919191919, 0.8080808080808], 0.0938679727: [0.6868686868687, 0.3131313131313, 0.8686868686869, 0.1313131313131], 0.3430262218: [0.020202020202, 0.979797979798, 0.2020202020202, 0.7979797979798], 0.0234669932: [0.5656565656566, 0.6565656565657, 0.4343434343434, 0.3434343434343], 0.0504030201: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.9164370983: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.9741863075: [0.4444444444444, 0.5555555555556], 0.2273237425: [0.9292929292929, 0.2929292929293, 0.7070707070707, 0.0707070707071], 0.4899500051: [0.9292929292929, 0.7070707070707, 0.2929292929293, 0.0707070707071], 0.4575043363: [0.1313131313131, 0.6868686868687, 0.8686868686869, 0.3131313131313], 0.4250586675: [0.1717171717172, 0.7171717171717, 0.8282828282828, 0.2828282828283], 0.0406081012: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.9256198347: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.3601673299: [0.3232323232323, 0.7676767676768, 0.2323232323232, 0.6767676767677], 0.3277216611: [0.4444444444444, 0.5555555555556], 0.3599632691: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.97479849: [0.9292929292929, 0.0707070707071, 0.2929292929293, 0.7070707070707], 0.2628303234: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.0657075809: [0.9292929292929, 0.2929292929293, 0.7070707070707, 0.0707070707071], 0.6766656464: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.4630139782: [0.040404040404, 0.5959595959596, 0.4040404040404, 0.959595959596], 0.0589735741: [0.040404040404, 0.4040404040404, 0.959595959596, 0.5959595959596], 0.4746454443: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.4789307214: [0.1616161616162, 0.3838383838384, 0.6161616161616, 0.8383838383838], 0.4421997755: [0.1111111111111, 0.8888888888889], 0.7364554637: [0.030303030303, 0.969696969697, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.3773084379: [0.0808080808081, 0.1919191919192, 0.8080808080808, 0.9191919191919], 0.8627691052: [0.1616161616162, 0.8383838383838, 0.6161616161616, 0.3838383838384], 0.3801652893: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.6629935721: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.3411896745: [0.1111111111111, 0.8888888888889], 0.2828282828: [0.0, 0.6666666666667, 0.3333333333333], 0.4917865524: [0.5252525252525, 0.4747474747475, 0.2525252525253, 0.7474747474747], 0.7746148352: [0.7474747474747, 0.5252525252525, 0.2525252525253, 0.4747474747475], 0.9568411387: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.4297520661: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.8180797878: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.0185695337: [0.040404040404, 0.4040404040404, 0.959595959596, 0.5959595959596], 0.0540761147: [0.0808080808081, 0.8080808080808, 0.1919191919192, 0.9191919191919], 0.3324150597: [0.969696969697, 0.030303030303, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.5674931129: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.1514131211: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.5732068156: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.508315478: [0.3434343434343, 0.6565656565657, 0.4343434343434, 0.5656565656566], 0.64483216: [0.040404040404, 0.4040404040404, 0.959595959596, 0.5959595959596], 0.958677686: [0.030303030303, 0.969696969697, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.9968370574: [0.7474747474747, 0.5252525252525, 0.2525252525253, 0.4747474747475], 0.6123864912: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.4832159984: [0.040404040404, 0.5959595959596, 0.4040404040404, 0.959595959596], 0.8346087134: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.8021630446: [0.1616161616162, 0.8383838383838, 0.6161616161616, 0.3838383838384], 0.737271707: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.7048260382: [0.8888888888889, 0.1111111111111], 0.1599836751: [0.040404040404, 0.4040404040404, 0.959595959596, 0.5959595959596], 0.0099989797: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.1275380063: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.2903785328: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.3489439853: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.9662279359: [0.2323232323232, 0.7676767676768, 0.6767676767677, 0.3232323232323], 0.2334455668: [0.2222222222222, 0.7777777777778], 0.8688909295: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.4373023161: [0.1313131313131, 0.6868686868687, 0.8686868686869, 0.3131313131313], 0.1012141618: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.4113865932: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.3399653097: [0.3232323232323, 0.7676767676768, 0.2323232323232, 0.6767676767677], 0.3075196409: [0.4444444444444, 0.5555555555556], 0.3173145597: [0.1616161616162, 0.3838383838384, 0.6161616161616, 0.8383838383838], 0.5909601061: [0.9292929292929, 0.0707070707071, 0.2929292929293, 0.7070707070707], 0.2420161208: [0.020202020202, 0.979797979798, 0.2020202020202, 0.7979797979798], 0.9356188144: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.6944189368: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.4544434241: [0.1010101010101, 0.8989898989899, 0.989898989899, 0.010101010101], 0.1054994388: [0.4444444444444, 0.5555555555556], 0.3571064177: [0.0808080808081, 0.8080808080808, 0.1919191919192, 0.9191919191919], 0.0899908173: [0.969696969697, 0.030303030303, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.6225895317: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.2626262626: [0.0, 0.6666666666667, 0.3333333333333], 0.5252525253: [0.0, 0.3333333333333, 0.6666666666667], 0.9166411591: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.5656565657: [0.0, 0.3333333333333, 0.6666666666667], 0.4715845322: [0.2525252525253, 0.5252525252525, 0.4747474747475, 0.7474747474747], 0.666258545: [0.020202020202, 0.2020202020202, 0.979797979798, 0.7979797979798], 0.5321905928: [0.5252525252525, 0.4747474747475, 0.2525252525253, 0.7474747474747], 0.4095500459: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.8278747067: [0.020202020202, 0.2020202020202, 0.979797979798, 0.7979797979798], 0.8737883889: [0.9292929292929, 0.0707070707071, 0.2929292929293, 0.7070707070707], 0.3122130395: [0.969696969697, 0.030303030303, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.5270890725: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.5976941128: [0.2626262626263, 0.7373737373737, 0.3737373737374, 0.6262626262626], 0.565248444: [0.020202020202, 0.2020202020202, 0.979797979798, 0.7979797979798], 0.5328027752: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.2163044587: [0.1616161616162, 0.3838383838384, 0.6161616161616, 0.8383838383838], 0.9660238751: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.8088970513: [0.1717171717172, 0.7171717171717, 0.8282828282828, 0.2828282828283], 0.2295684114: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.592184471: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.7235996327: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.8266503418: [0.040404040404, 0.4040404040404, 0.959595959596, 0.5959595959596], 0.1985511682: [0.3232323232323, 0.7676767676768, 0.2323232323232, 0.6767676767677], 0.7617590042: [0.1616161616162, 0.8383838383838, 0.6161616161616, 0.3838383838384], 0.0165289256: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.1661054994: [0.4444444444444, 0.5555555555556], 0.5995306601: [0.0808080808081, 0.1919191919192, 0.9191919191919, 0.8080808080808], 0.9827568615: [0.1313131313131, 0.6868686868687, 0.3131313131313, 0.8686868686869], 0.2701765126: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.0675441282: [0.2525252525253, 0.5252525252525, 0.4747474747475, 0.7474747474747], 0.3287419651: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.9907152331: [0.2828282828283, 0.1717171717172, 0.8282828282828, 0.7171717171717], 0.3856749311: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.9258238955: [0.2323232323232, 0.7676767676768, 0.6767676767677, 0.3232323232323], 0.6466687073: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.8284868891: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.2071217223: [0.9292929292929, 0.2929292929293, 0.7070707070707, 0.0707070707071], 0.104275074: [0.5656565656566, 0.6565656565657, 0.4343434343434, 0.3434343434343], 0.3846546271: [0.2828282828283, 0.1717171717172, 0.8282828282828, 0.7171717171717], 0.5689215386: [0.3434343434343, 0.6565656565657, 0.4343434343434, 0.5656565656566], 0.3197632895: [0.3232323232323, 0.7676767676768, 0.2323232323232, 0.6767676767677], 0.0718294052: [0.2222222222222, 0.7777777777778], 0.9109274564: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.9839812264: [0.1616161616162, 0.3838383838384, 0.6161616161616, 0.8383838383838], 0.5989184777: [0.8686868686869, 0.1313131313131, 0.3131313131313, 0.6868686868687], 0.9233751658: [0.1616161616162, 0.3838383838384, 0.6161616161616, 0.8383838383838], 0.895214774: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.2156922763: [0.0808080808081, 0.8080808080808, 0.1919191919192, 0.9191919191919], 0.108560351: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.4017957351: [0.1111111111111, 0.8888888888889], 0.3369043975: [0.0808080808081, 0.8080808080808, 0.1919191919192, 0.9191919191919], 0.9539842873: [0.4444444444444, 0.5555555555556], 0.8260381594: [0.8888888888889, 0.1111111111111], 0.3397612489: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.5821854913: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.8044077135: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.9550045914: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.6472808897: [0.1717171717172, 0.7171717171717, 0.8282828282828, 0.2828282828283], 0.112845628: [0.2626262626263, 0.7373737373737, 0.6262626262626, 0.3737373737374], 0.9809203143: [0.2222222222222, 0.7777777777778], 0.8760330579: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.5823895521: [0.2323232323232, 0.7676767676768, 0.6767676767677, 0.3232323232323], 0.0973370064: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.3893480257: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.543822059: [0.040404040404, 0.4040404040404, 0.959595959596, 0.5959595959596], 0.2920110193: [0.969696969697, 0.030303030303, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.5572900724: [0.2626262626263, 0.7373737373737, 0.3737373737374, 0.6262626262626], 0.1312111009: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.3142536476: [0.2222222222222, 0.7777777777778], 0.3048668503: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.2897663504: [0.2525252525253, 0.5252525252525, 0.4747474747475, 0.7474747474747], 0.7978777676: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.6831955923: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.1707988981: [0.969696969697, 0.030303030303, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.7538006326: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.3509845934: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.6564636262: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.6240179574: [0.8888888888889, 0.1111111111111], 0.1397816549: [0.040404040404, 0.959595959596, 0.4040404040404, 0.5959595959596], 0.7213549638: [0.1616161616162, 0.8383838383838, 0.6161616161616, 0.3838383838384], 0.7182940516: [0.2222222222222, 0.7777777777778], 0.2442607897: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.9770431589: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.2456892154: [0.5656565656566, 0.6565656565657, 0.4343434343434, 0.3434343434343], 0.8539944904: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.8854198551: [0.2323232323232, 0.7676767676768, 0.6767676767677, 0.3232323232323], 0.2132435466: [0.2222222222222, 0.7777777777778], 0.7880828487: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.7440057137: [0.2323232323232, 0.7676767676768, 0.6767676767677, 0.3232323232323], 0.6258545046: [0.020202020202, 0.2020202020202, 0.979797979798, 0.7979797979798], 0.148352209: [0.2525252525253, 0.5252525252525, 0.4747474747475, 0.7474747474747], 0.5285174982: [0.3434343434343, 0.6565656565657, 0.4343434343434, 0.5656565656566], 0.0748903173: [0.1616161616162, 0.3838383838384, 0.6161616161616, 0.8383838383838], 0.2671156004: [0.4444444444444, 0.5555555555556], 0.855422916: [0.7474747474747, 0.5252525252525, 0.2525252525253, 0.4747474747475], 0.6203448628: [0.1616161616162, 0.8383838383838, 0.6161616161616, 0.3838383838384], 0.2218141006: [0.020202020202, 0.979797979798, 0.2020202020202, 0.7979797979798], 0.8548107336: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.0473421079: [0.2525252525253, 0.5252525252525, 0.4747474747475, 0.7474747474747], 0.4813794511: [0.3232323232323, 0.2323232323232, 0.6767676767677, 0.7676767676768], 0.4140393837: [0.1010101010101, 0.8989898989899, 0.989898989899, 0.010101010101], 0.3815937149: [0.1111111111111, 0.8888888888889], 0.0791755943: [0.040404040404, 0.4040404040404, 0.959595959596, 0.5959595959596], 0.3167023773: [0.0808080808081, 0.8080808080808, 0.1919191919192, 0.9191919191919], 0.3195592287: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.5417814509: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.8211406999: [0.1313131313131, 0.6868686868687, 0.3131313131313, 0.8686868686869], 0.4960718294: [0.2222222222222, 0.7777777777778], 0.4311804918: [0.2525252525253, 0.5252525252525, 0.4747474747475, 0.7474747474747], 0.492194674: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.7272727273: [0.0, 0.3333333333333, 0.6666666666667], 0.3013978165: [0.040404040404, 0.959595959596, 0.4040404040404, 0.5959595959596], 0.0051015203: [0.9292929292929, 0.2929292929293, 0.7070707070707, 0.0707070707071], 0.2718089991: [0.969696969697, 0.030303030303, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.0679522498: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.4979083767: [0.1313131313131, 0.6868686868687, 0.8686868686869, 0.3131313131313], 0.4171002959: [0.1313131313131, 0.6868686868687, 0.8686868686869, 0.3131313131313], 0.9348025712: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.5352515049: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.2093663912: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.9931639629: [0.3434343434343, 0.6565656565657, 0.4343434343434, 0.5656565656566], 0.7268646057: [0.020202020202, 0.2020202020202, 0.979797979798, 0.7979797979798], 0.6427915519: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.745842261: [0.040404040404, 0.4040404040404, 0.959595959596, 0.5959595959596], 0.7133965922: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.5454545455: [0.0, 0.3333333333333, 0.6666666666667], 0.6160595858: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.1459034792: [0.4444444444444, 0.5555555555556], 0.5187225793: [0.0808080808081, 0.1919191919192, 0.9191919191919, 0.8080808080808], 0.0344862769: [0.1616161616162, 0.3838383838384, 0.6161616161616, 0.8383838383838], 0.0583613917: [0.8888888888889, 0.1111111111111], 0.5193347618: [0.1616161616162, 0.3838383838384, 0.6161616161616, 0.8383838383838], 0.9099071523: [0.2828282828283, 0.1717171717172, 0.8282828282828, 0.7171717171717], 0.8450158147: [0.2323232323232, 0.7676767676768, 0.6767676767677, 0.3232323232323], 0.6115702479: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.0467299255: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.8933782267: [0.4444444444444, 0.5555555555556], 0.617896133: [0.2626262626263, 0.7373737373737, 0.3737373737374, 0.6262626262626], 0.1544740333: [0.6868686868687, 0.3131313131313, 0.8686868686869, 0.1313131313131], 0.5530047954: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.2793592491: [0.3232323232323, 0.7676767676768, 0.2323232323232, 0.6767676767677], 0.6968676666: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.5836139169: [0.8888888888889, 0.1111111111111], 0.4489337823: [0.4444444444444, 0.5555555555556], 0.8650137741: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.1624324049: [0.2828282828283, 0.1717171717172, 0.8282828282828, 0.7171717171717], 0.8144066932: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.1146821753: [0.0808080808081, 0.8080808080808, 0.1919191919192, 0.9191919191919], 0.5793286399: [0.0808080808081, 0.1919191919192, 0.9191919191919, 0.8080808080808], 0.3709825528: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.3938373635: [0.1010101010101, 0.8989898989899, 0.989898989899, 0.010101010101], 0.3613916947: [0.1111111111111, 0.8888888888889], 0.0495867769: [0.969696969697, 0.030303030303, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.5719824508: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.1746760535: [0.6868686868687, 0.3131313131313, 0.8686868686869, 0.1313131313131], 0.5013774105: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.2365064789: [0.1616161616162, 0.3838383838384, 0.6161616161616, 0.8383838383838], 0.1189674523: [0.8888888888889, 0.1111111111111], 0.4109784716: [0.2525252525253, 0.5252525252525, 0.4747474747475, 0.7474747474747], 0.0018365473: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.2811957963: [0.040404040404, 0.959595959596, 0.4040404040404, 0.5959595959596], 0.9429650036: [0.0808080808081, 0.1919191919192, 0.9191919191919, 0.8080808080808], 0.2516069789: [0.969696969697, 0.030303030303, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.3305785124: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.5181103969: [0.8686868686869, 0.1313131313131, 0.3131313131313, 0.6868686868687], 0.9545964697: [0.9292929292929, 0.0707070707071, 0.2929292929293, 0.7070707070707], 0.8888888889: [0.0, 0.3333333333333, 0.6666666666667], 0.2479338843: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.8943985308: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.7970615243: [0.030303030303, 0.969696969697, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.2873176207: [0.4444444444444, 0.5555555555556], 0.1505968779: [0.969696969697, 0.030303030303, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.6729925518: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.5050505051: [0.0, 0.3333333333333, 0.6666666666667], 0.5756555454: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.5432098765: [0.8888888888889, 0.1111111111111], 0.2240587695: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.5934088358: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.9019487807: [0.1313131313131, 0.6868686868687, 0.3131313131313, 0.8686868686869], 0.2254871952: [0.5656565656566, 0.6565656565657, 0.4343434343434, 0.3434343434343], 0.8046117743: [0.2323232323232, 0.7676767676768, 0.6767676767677, 0.3232323232323], 0.1930415264: [0.2222222222222, 0.7777777777778], 0.7072747679: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.101010101: [0.0, 0.6666666666667, 0.3333333333333], 0.5774920926: [0.2626262626263, 0.7373737373737, 0.3737373737374, 0.6262626262626], 0.5450464238: [0.020202020202, 0.2020202020202, 0.979797979798, 0.7979797979798], 0.1281501888: [0.2525252525253, 0.5252525252525, 0.4747474747475, 0.7474747474747], 0.5046423834: [0.020202020202, 0.2020202020202, 0.979797979798, 0.7979797979798], 0.2591572289: [0.3232323232323, 0.7676767676768, 0.2323232323232, 0.6767676767677], 0.9954086318: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.5236200388: [0.040404040404, 0.5959595959596, 0.4040404040404, 0.959595959596], 0.8786858484: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.2340577492: [0.2626262626263, 0.7373737373737, 0.6262626262626, 0.3737373737374], 0.2016120804: [0.020202020202, 0.979797979798, 0.2020202020202, 0.7979797979798], 0.7740026528: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.438526681: [0.1616161616162, 0.3838383838384, 0.6161616161616, 0.8383838383838], 0.1691664116: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.6442199776: [0.8888888888889, 0.1111111111111], 0.3736353433: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.0852974186: [0.4444444444444, 0.5555555555556], 0.8358330783: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.2762983369: [0.0808080808081, 0.8080808080808, 0.1919191919192, 0.9191919191919], 0.0697887971: [0.969696969697, 0.030303030303, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.2426283032: [0.1414141414141, 0.8585858585859, 0.5858585858586, 0.4141414141414], 0.4991327416: [0.1616161616162, 0.3838383838384, 0.6161616161616, 0.8383838383838], 0.0202020202: [0.0, 0.6666666666667, 0.3333333333333], 0.4881134578: [0.3434343434343, 0.6565656565657, 0.4343434343434, 0.5656565656566], 0.1220283645: [0.2828282828283, 0.1717171717172, 0.8282828282828, 0.7171717171717], 0.455667789: [0.2222222222222, 0.7777777777778], 0.8064483216: [0.040404040404, 0.4040404040404, 0.959595959596, 0.5959595959596], 0.3907764514: [0.2525252525253, 0.5252525252525, 0.4747474747475, 0.7474747474747], 0.0055096419: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.6833996531: [0.2323232323232, 0.7676767676768, 0.6767676767677, 0.3232323232323], 0.2609937761: [0.040404040404, 0.959595959596, 0.4040404040404, 0.5959595959596], 0.5052545659: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.1954902561: [0.0808080808081, 0.8080808080808, 0.1919191919192, 0.9191919191919], 0.4342414039: [0.1010101010101, 0.8989898989899, 0.989898989899, 0.010101010101], 0.9607182941: [0.2222222222222, 0.7777777777778], 0.9513314968: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.3754718906: [0.2626262626263, 0.7373737373737, 0.6262626262626, 0.3737373737374], 0.5217834915: [0.2323232323232, 0.7676767676768, 0.6767676767677, 0.3232323232323], 0.0179573513: [0.8888888888889, 0.1111111111111], 0.7566574839: [0.030303030303, 0.969696969697, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.189164371: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.0808080808: [0.0, 0.6666666666667, 0.3333333333333], 0.7323742475: [0.9292929292929, 0.0707070707071, 0.2929292929293, 0.7070707070707], 0.5619834711: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.6001428426: [0.1616161616162, 0.8383838383838, 0.6161616161616, 0.3838383838384], 0.125701459: [0.4444444444444, 0.5555555555556], 0.5028058361: [0.8888888888889, 0.1111111111111], 0.0314253648: [0.2222222222222, 0.7777777777778], 0.9123558821: [0.3434343434343, 0.6565656565657, 0.4343434343434, 0.5656565656566], 0.684624018: [0.8888888888889, 0.1111111111111], 0.8558310376: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.8615447403: [0.1313131313131, 0.6868686868687, 0.3131313131313, 0.8686868686869], 0.8290990715: [0.1717171717172, 0.7171717171717, 0.8282828282828, 0.2828282828283], 0.0826446281: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.7642077339: [0.2323232323232, 0.7676767676768, 0.6767676767677, 0.3232323232323], 0.7317620651: [0.4444444444444, 0.5555555555556], 0.1667176819: [0.9292929292929, 0.2929292929293, 0.7070707070707, 0.0707070707071], 0.5370880522: [0.2626262626263, 0.7373737373737, 0.3737373737374, 0.6262626262626], 0.1342720131: [0.6868686868687, 0.3131313131313, 0.8686868686869, 0.1313131313131], 0.7874706663: [0.020202020202, 0.2020202020202, 0.979797979798, 0.7979797979798], 0.2387511478: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.2401795735: [0.8888888888889, 0.1111111111111], 0.7933884298: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.8958269564: [0.7474747474747, 0.5252525252525, 0.2525252525253, 0.4747474747475], 0.7660442812: [0.040404040404, 0.4040404040404, 0.959595959596, 0.5959595959596], 0.7335986124: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.1752882359: [0.0808080808081, 0.8080808080808, 0.1919191919192, 0.9191919191919], 0.636261606: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.6038159371: [0.1111111111111, 0.8888888888889], 0.0883583308: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.3209876543: [0.1111111111111, 0.8888888888889], 0.2560963167: [0.0808080808081, 0.8080808080808, 0.1919191919192, 0.9191919191919], 0.3534333231: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.2487501275: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.9625548413: [0.1313131313131, 0.6868686868687, 0.3131313131313, 0.8686868686869], 0.9301091725: [0.2828282828283, 0.1717171717172, 0.8282828282828, 0.7171717171717], 0.5950413223: [0.030303030303, 0.969696969697, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.0112233446: [0.2222222222222, 0.7777777777778], 0.4679114376: [0.3434343434343, 0.6565656565657, 0.4343434343434, 0.5656565656566], 0.9696969697: [0.0, 0.3333333333333, 0.6666666666667], 0.4354657688: [0.2222222222222, 0.7777777777778], 0.0926436078: [0.2626262626263, 0.7373737373737, 0.6262626262626, 0.3737373737374], 0.7066625855: [0.020202020202, 0.2020202020202, 0.979797979798, 0.7979797979798], 0.8480767269: [0.020202020202, 0.2020202020202, 0.979797979798, 0.7979797979798], 0.3085399449: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.987654321: [0.8888888888889, 0.1111111111111], 0.4701561065: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.5364758698: [0.2222222222222, 0.7777777777778], 0.4850525457: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.8448117539: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.7507397204: [0.3434343434343, 0.6565656565657, 0.4343434343434, 0.5656565656566], 0.9917355372: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.2277318641: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.3552698704: [0.2626262626263, 0.7373737373737, 0.6262626262626, 0.3737373737374], 0.81359045: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.3228242016: [0.020202020202, 0.979797979798, 0.2020202020202, 0.7979797979798], 0.7162534435: [0.030303030303, 0.969696969697, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.9056218753: [0.2323232323232, 0.7676767676768, 0.6767676767677, 0.3232323232323], 0.539536782: [0.1616161616162, 0.8383838383838, 0.6161616161616, 0.3838383838384], 0.1303948577: [0.969696969697, 0.030303030303, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.9135802469: [0.4444444444444, 0.5555555555556], 0.4697479849: [0.9292929292929, 0.7070707070707, 0.2929292929293, 0.0707070707071], 0.451382512: [0.2525252525253, 0.5252525252525, 0.4747474747475, 0.7474747474747], 0.8486889093: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.2038567493: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.9950005102: [0.9292929292929, 0.0707070707071, 0.2929292929293, 0.7070707070707], 0.205285175: [0.5656565656566, 0.6565656565657, 0.4343434343434, 0.3434343434343], 0.3103764922: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.6913580247: [0.4444444444444, 0.5555555555556], 0.1728395062: [0.2222222222222, 0.7777777777778], 0.6264666871: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.9141924293: [0.9292929292929, 0.0707070707071, 0.2929292929293, 0.7070707070707], 0.7476788083: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.914600551: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.2971125395: [0.1616161616162, 0.3838383838384, 0.6161616161616, 0.8383838383838], 0.0069380675: [0.2525252525253, 0.5252525252525, 0.4747474747475, 0.7474747474747], 0.9203142536: [0.2222222222222, 0.7777777777778], 0.213855729: [0.2626262626263, 0.7373737373737, 0.6262626262626, 0.3737373737374], 0.0534639323: [0.6868686868687, 0.3131313131313, 0.8686868686869, 0.1313131313131], 0.1814100602: [0.020202020202, 0.979797979798, 0.2020202020202, 0.7979797979798], 0.693194572: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.6380981533: [0.2626262626263, 0.7373737373737, 0.3737373737374, 0.6262626262626], 0.1489643914: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.5634118967: [0.8888888888889, 0.1111111111111], 0.939291909: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.3007856341: [0.1111111111111, 0.8888888888889], 0.9974492399: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.859708193: [0.2222222222222, 0.7777777777778], 0.222426283: [0.1414141414141, 0.8585858585859, 0.5858585858586, 0.4141414141414], 0.55667789: [0.2222222222222, 0.7777777777778], 0.8248137945: [0.2323232323232, 0.7676767676768, 0.6767676767677, 0.3232323232323], 0.4477094174: [0.3434343434343, 0.6565656565657, 0.4343434343434, 0.5656565656566], 0.7274767881: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.4152637486: [0.2222222222222, 0.7777777777778], 0.9490868279: [0.020202020202, 0.2020202020202, 0.979797979798, 0.7979797979798], 0.404040404: [0.0, 0.6666666666667, 0.3333333333333], 0.350372411: [0.2525252525253, 0.5252525252525, 0.4747474747475, 0.7474747474747], 0.3705744312: [0.2525252525253, 0.5252525252525, 0.4747474747475, 0.7474747474747], 0.024691358: [0.4444444444444, 0.5555555555556], 0.956433017: [0.7474747474747, 0.5252525252525, 0.2525252525253, 0.4747474747475], 0.8333843485: [0.9292929292929, 0.0707070707071, 0.2929292929293, 0.7070707070707], 0.9337822671: [0.4444444444444, 0.5555555555556], 0.4648505255: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.6980920314: [0.2222222222222, 0.7777777777778], 0.8009386797: [0.1313131313131, 0.6868686868687, 0.3131313131313, 0.8686868686869], 0.668503214: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.0008162432: [0.2828282828283, 0.1717171717172, 0.8282828282828, 0.7171717171717], 0.7731864096: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.3026221814: [0.020202020202, 0.979797979798, 0.2020202020202, 0.7979797979798], 0.1689623508: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.4495459647: [0.9292929292929, 0.7070707070707, 0.2929292929293, 0.0707070707071], 0.2424242424: [0.0, 0.6666666666667, 0.3333333333333], 0.9362309968: [0.7474747474747, 0.5252525252525, 0.2525252525253, 0.4747474747475], 0.0661157025: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.7750229568: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.4440363228: [0.020202020202, 0.979797979798, 0.7979797979798, 0.2020202020202], 0.290174472: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.6509539843: [0.4444444444444, 0.5555555555556], 0.1465156617: [0.9292929292929, 0.2929292929293, 0.7070707070707, 0.0707070707071], 0.0271400877: [0.2525252525253, 0.5252525252525, 0.4747474747475, 0.7474747474747], 0.947862463: [0.040404040404, 0.4040404040404, 0.959595959596, 0.5959595959596], 0.411590654: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.2185491276: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.8686868687: [0.0, 0.3333333333333, 0.6666666666667], 0.7768595041: [0.030303030303, 0.969696969697, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.2199775533: [0.8888888888889, 0.1111111111111], 0.8150188756: [0.7474747474747, 0.5252525252525, 0.2525252525253, 0.4747474747475], 0.6336088154: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.6852362004: [0.040404040404, 0.4040404040404, 0.959595959596, 0.5959595959596], 0.1550862157: [0.0808080808081, 0.8080808080808, 0.1919191919192, 0.9191919191919], 0.5554535252: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.5230078563: [0.1111111111111, 0.8888888888889], 0.2805836139: [0.8888888888889, 0.1111111111111], 0.4866850321: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.1679420467: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.0142842567: [0.1616161616162, 0.3838383838384, 0.6161616161616, 0.8383838383838], 0.2285481073: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.8817467605: [0.1313131313131, 0.6868686868687, 0.3131313131313, 0.8686868686869], 0.2677277829: [0.9292929292929, 0.2929292929293, 0.7070707070707, 0.0707070707071], 0.1961024385: [0.1616161616162, 0.3838383838384, 0.6161616161616, 0.8383838383838], 0.7519640853: [0.4444444444444, 0.5555555555556], 0.6870727477: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.0987654321: [0.8888888888889, 0.1111111111111], 0.6497296194: [0.3434343434343, 0.6565656565657, 0.4343434343434, 0.5656565656566], 0.8778696051: [0.030303030303, 0.969696969697, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.3301703908: [0.2525252525253, 0.5252525252525, 0.4747474747475, 0.7474747474747], 0.7207427813: [0.0808080808081, 0.1919191919192, 0.9191919191919, 0.8080808080808], 0.5419855117: [0.2323232323232, 0.7676767676768, 0.6767676767677, 0.3232323232323], 0.5068870523: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.8327721661: [0.4444444444444, 0.5555555555556], 0.9160289766: [0.7474747474747, 0.5252525252525, 0.2525252525253, 0.4747474747475], 0.5095398429: [0.4444444444444, 0.5555555555556], 0.4446485053: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.0130598918: [0.6868686868687, 0.3131313131313, 0.8686868686869, 0.1313131313131], 0.0908070605: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.31486583: [0.2626262626263, 0.7373737373737, 0.6262626262626, 0.3737373737374], 0.0706050403: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.6354453627: [0.030303030303, 0.969696969697, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.9276604428: [0.040404040404, 0.4040404040404, 0.959595959596, 0.5959595959596], 0.5585144373: [0.8686868686869, 0.1313131313131, 0.3131313131313, 0.6868686868687], 0.0614223038: [0.2828282828283, 0.1717171717172, 0.8282828282828, 0.7171717171717], 0.9705132129: [0.2828282828283, 0.1717171717172, 0.8282828282828, 0.7171717171717], 0.7862463014: [0.040404040404, 0.4040404040404, 0.959595959596, 0.5959595959596], 0.9325579023: [0.3434343434343, 0.6565656565657, 0.4343434343434, 0.5656565656566], 0.1073359861: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.4293439445: [0.9292929292929, 0.7070707070707, 0.2929292929293, 0.0707070707071], 0.3968982757: [0.6868686868687, 0.3131313131313, 0.8686868686869, 0.1313131313131], 0.5842260994: [0.040404040404, 0.4040404040404, 0.959595959596, 0.5959595959596], 0.0091827365: [0.969696969697, 0.030303030303, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.0459136823: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.2699724518: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.6105499439: [0.4444444444444, 0.5555555555556], 0.0381593715: [0.8888888888889, 0.1111111111111], 0.5456586063: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.838281808: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.9311294766: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.8337924702: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.4244464851: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.5591266197: [0.0808080808081, 0.1919191919192, 0.9191919191919, 0.8080808080808], 0.8395061728: [0.2222222222222, 0.7777777777778], 0.1936537088: [0.2626262626263, 0.7373737373737, 0.6262626262626, 0.3737373737374], 0.16120804: [0.020202020202, 0.979797979798, 0.2020202020202, 0.7979797979798], 0.5799408224: [0.1616161616162, 0.8383838383838, 0.6161616161616, 0.3838383838384], 0.1287623712: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.846852362: [0.040404040404, 0.4040404040404, 0.959595959596, 0.5959595959596], 0.6527905316: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.5891235588: [0.3434343434343, 0.6565656565657, 0.4343434343434, 0.5656565656566], 0.4664830119: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.0606060606: [0.0, 0.6666666666667, 0.3333333333333], 0.7327823691: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.5970819304: [0.2222222222222, 0.7777777777778], 0.8413427201: [0.1313131313131, 0.6868686868687, 0.3131313131313, 0.8686868686869], 0.2022242628: [0.1414141414141, 0.8585858585859, 0.5858585858586, 0.4141414141414], 0.7115600449: [0.4444444444444, 0.5555555555556], 0.2089582696: [0.2525252525253, 0.5252525252525, 0.4747474747475, 0.7474747474747], 0.1018263443: [0.2828282828283, 0.1717171717172, 0.8282828282828, 0.7171717171717], 0.3748597082: [0.2222222222222, 0.7777777777778], 0.516886032: [0.2626262626263, 0.7373737373737, 0.3737373737374, 0.6262626262626], 0.3099683706: [0.2525252525253, 0.5252525252525, 0.4747474747475, 0.7474747474747], 0.9092949699: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.0608101214: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.2432404857: [0.2828282828283, 0.1717171717172, 0.8282828282828, 0.7171717171717], 0.8756249362: [0.7474747474747, 0.5252525252525, 0.2525252525253, 0.4747474747475], 0.4893378227: [0.4444444444444, 0.5555555555556], 0.178349148: [0.3232323232323, 0.7676767676768, 0.2323232323232, 0.6767676767677], 0.1061116213: [0.9292929292929, 0.2929292929293, 0.7070707070707, 0.0707070707071], 0.2946638098: [0.2626262626263, 0.7373737373737, 0.6262626262626, 0.3737373737374], 0.0736659525: [0.6868686868687, 0.3131313131313, 0.8686868686869, 0.1313131313131], 0.262218141: [0.020202020202, 0.979797979798, 0.2020202020202, 0.7979797979798], 0.1487603306: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.8301193756: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.9503111927: [0.1717171717172, 0.7171717171717, 0.8282828282828, 0.2828282828283], 0.7676767677: [0.0, 0.3333333333333, 0.6666666666667], 0.4091419243: [0.9292929292929, 0.7070707070707, 0.2929292929293, 0.0707070707071], 0.3766962555: [0.6868686868687, 0.3131313131313, 0.8686868686869, 0.1313131313131], 0.3442505867: [0.2828282828283, 0.1717171717172, 0.8282828282828, 0.7171717171717], 0.694214876: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.9729619427: [0.3434343434343, 0.6565656565657, 0.4343434343434, 0.5656565656566], 0.1263136415: [0.9292929292929, 0.2929292929293, 0.7070707070707, 0.0707070707071], 0.49117437: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.4940312213: [0.969696969697, 0.030303030303, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.8907254362: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.1983471074: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.6960514233: [0.030303030303, 0.969696969697, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.2993572084: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.7342107948: [0.7474747474747, 0.5252525252525, 0.2525252525253, 0.4747474747475], 0.6044281196: [0.040404040404, 0.4040404040404, 0.959595959596, 0.5959595959596], 0.1348841955: [0.0808080808081, 0.8080808080808, 0.1919191919192, 0.9191919191919], 0.6483011938: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.2830323436: [0.1414141414141, 0.8585858585859, 0.5858585858586, 0.4141414141414], 0.7997143149: [0.2626262626263, 0.7373737373737, 0.3737373737374, 0.6262626262626], 0.5768799102: [0.2222222222222, 0.7777777777778], 0.8576675849: [0.030303030303, 0.969696969697, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.4462809917: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.2407917559: [0.040404040404, 0.959595959596, 0.4040404040404, 0.5959595959596], 0.060197939: [0.020202020202, 0.979797979798, 0.2020202020202, 0.7979797979798], 0.2083460871: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.6583001735: [0.2626262626263, 0.7373737373737, 0.3737373737374, 0.6262626262626], 0.6864605652: [0.020202020202, 0.2020202020202, 0.979797979798, 0.7979797979798], 0.1759004183: [0.1616161616162, 0.3838383838384, 0.6161616161616, 0.8383838383838], 0.6711560045: [0.4444444444444, 0.5555555555556], 0.6062646669: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.3644526069: [0.2828282828283, 0.1717171717172, 0.8282828282828, 0.7171717171717], 0.0724415876: [0.2626262626263, 0.7373737373737, 0.6262626262626, 0.3737373737374], 0.3232323232: [0.0, 0.6666666666667, 0.3333333333333], 0.24936231: [0.2525252525253, 0.5252525252525, 0.4747474747475, 0.7474747474747], 0.9001122334: [0.2222222222222, 0.7777777777778], 0.8352208958: [0.7474747474747, 0.5252525252525, 0.2525252525253, 0.4747474747475], 0.4691358025: [0.4444444444444, 0.5555555555556], 0.7054382206: [0.040404040404, 0.4040404040404, 0.959595959596, 0.5959595959596], 0.4042444649: [0.1414141414141, 0.8585858585859, 0.5858585858586, 0.4141414141414], 0.2995612693: [0.3232323232323, 0.7676767676768, 0.2323232323232, 0.6767676767677], 0.7238036935: [0.2323232323232, 0.7676767676768, 0.6767676767677, 0.3232323232323], 0.2744617896: [0.2626262626263, 0.7373737373737, 0.6262626262626, 0.3737373737374], 0.5546372819: [0.030303030303, 0.969696969697, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.0399959188: [0.020202020202, 0.979797979798, 0.2020202020202, 0.7979797979798], 0.3240485665: [0.2828282828283, 0.1717171717172, 0.8282828282828, 0.7171717171717], 0.5150494847: [0.1010101010101, 0.8989898989899, 0.989898989899, 0.010101010101], 0.3889399041: [0.9292929292929, 0.2929292929293, 0.7070707070707, 0.0707070707071], 0.3564942353: [0.6868686868687, 0.3131313131313, 0.8686868686869, 0.1313131313131], 0.0810121416: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.4275073972: [0.5656565656566, 0.6565656565657, 0.4343434343434, 0.3434343434343], 0.1634527089: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.6538108356: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.1177430874: [0.3232323232323, 0.7676767676768, 0.2323232323232, 0.6767676767677], 0.4709723498: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.4738292011: [0.969696969697, 0.030303030303, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.8503213958: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.7529843893: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.9998979696: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.6556473829: [0.030303030303, 0.969696969697, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.2791551882: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.1410060198: [0.020202020202, 0.979797979798, 0.2020202020202, 0.7979797979798], 0.8872564024: [0.040404040404, 0.4040404040404, 0.959595959596, 0.5959595959596], 0.9494949495: [0.0, 0.3333333333333, 0.6666666666667], 0.6338128762: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.7409448016: [0.0808080808081, 0.1919191919192, 0.9191919191919, 0.8080808080808], 0.1065197429: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.9227629834: [0.0808080808081, 0.1919191919192, 0.9191919191919, 0.8080808080808], 0.7548209366: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.7929803081: [0.9292929292929, 0.0707070707071, 0.2929292929293, 0.7070707070707], 0.7605346393: [0.1313131313131, 0.6868686868687, 0.3131313131313, 0.8686868686869], 0.1820222426: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.0455055607: [0.9292929292929, 0.2929292929293, 0.7070707070707, 0.0707070707071], 0.6307519641: [0.4444444444444, 0.5555555555556], 0.5658606265: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.8154269972: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.2695643302: [0.2525252525253, 0.5252525252525, 0.4747474747475, 0.7474747474747], 0.5640240792: [0.040404040404, 0.4040404040404, 0.959595959596, 0.5959595959596], 0.943577186: [0.1616161616162, 0.3838383838384, 0.6161616161616, 0.8383838383838], 0.9894908683: [0.020202020202, 0.2020202020202, 0.979797979798, 0.7979797979798], 0.9570451995: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.8921538619: [0.3434343434343, 0.6565656565657, 0.4343434343434, 0.5656565656566], 0.2230384655: [0.2828282828283, 0.1717171717172, 0.8282828282828, 0.7171717171717], 0.5787164575: [0.1313131313131, 0.6868686868687, 0.3131313131313, 0.8686868686869], 0.7948168554: [0.7474747474747, 0.5252525252525, 0.2525252525253, 0.4747474747475], 0.1122334456: [0.2222222222222, 0.7777777777778], 0.1581471278: [0.3232323232323, 0.7676767676768, 0.2323232323232, 0.6767676767677], 0.6325885114: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.9527599225: [0.3434343434343, 0.6565656565657, 0.4343434343434, 0.5656565656566], 0.2542597694: [0.2626262626263, 0.7373737373737, 0.6262626262626, 0.3737373737374], 0.5215794307: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.1285583104: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.6060606061: [0.0, 0.3333333333333, 0.6666666666667], 0.5101520253: [0.9292929292929, 0.0707070707071, 0.2929292929293, 0.7070707070707], 0.4985205591: [0.0808080808081, 0.1919191919192, 0.9191919191919, 0.8080808080808], 0.9692888481: [0.020202020202, 0.2020202020202, 0.979797979798, 0.7979797979798], 0.4334251607: [0.969696969697, 0.030303030303, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.3687378839: [0.0707070707071, 0.7070707070707, 0.2929292929293, 0.9292929292929], 0.3362922151: [0.6868686868687, 0.3131313131313, 0.8686868686869, 0.1313131313131], 0.0840730538: [0.5656565656566, 0.6565656565657, 0.4343434343434, 0.3434343434343], 0.3038465463: [0.2828282828283, 0.1717171717172, 0.8282828282828, 0.7171717171717], 0.8223650648: [0.1616161616162, 0.3838383838384, 0.6161616161616, 0.8383838383838], 0.6134067952: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.7256402408: [0.040404040404, 0.4040404040404, 0.959595959596, 0.5959595959596], 0.1208039996: [0.020202020202, 0.979797979798, 0.2020202020202, 0.7979797979798], 0.4507703296: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.4183246607: [0.1616161616162, 0.3838383838384, 0.6161616161616, 0.8383838383838], 0.4536271809: [0.969696969697, 0.030303030303, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.8099173554: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.1781450872: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.6607489032: [0.1616161616162, 0.8383838383838, 0.6161616161616, 0.3838383838384], 0.6152433425: [0.030303030303, 0.969696969697, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.258953168: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.5958575656: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.7654320988: [0.8888888888889, 0.1111111111111], 0.3350678502: [0.2626262626263, 0.7373737373737, 0.6262626262626, 0.3737373737374], 0.8172635445: [0.030303030303, 0.969696969697, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.9699010305: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.9090909091: [0.0, 0.3333333333333, 0.6666666666667], 0.7611468218: [0.0808080808081, 0.1919191919192, 0.9191919191919, 0.8080808080808], 0.4058769513: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.882358943: [0.0808080808081, 0.1919191919192, 0.9191919191919, 0.8080808080808], 0.7144168962: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.1881440669: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.7201305989: [0.8686868686869, 0.1313131313131, 0.3131313131313, 0.6868686868687], 0.6876849301: [0.1717171717172, 0.7171717171717, 0.8282828282828, 0.2828282828283], 0.1556983981: [0.1616161616162, 0.3838383838384, 0.6161616161616, 0.8383838383838], 0.5903479237: [0.4444444444444, 0.5555555555556], 0.5254565861: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.1734516886: [0.2626262626263, 0.7373737373737, 0.6262626262626, 0.3737373737374], 0.056932966: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.9815324967: [0.2626262626263, 0.7373737373737, 0.3737373737374, 0.6262626262626], 0.7752270177: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.2291602898: [0.2525252525253, 0.5252525252525, 0.4747474747475, 0.7474747474747], 0.8517498214: [0.3434343434343, 0.6565656565657, 0.4343434343434, 0.5656565656566], 0.8193041526: [0.2222222222222, 0.7777777777778], 0.754412815: [0.7474747474747, 0.5252525252525, 0.2525252525253, 0.4747474747475], 0.3638404244: [0.1414141414141, 0.8585858585859, 0.5858585858586, 0.4141414141414], 0.5597388022: [0.1616161616162, 0.8383838383838, 0.6161616161616, 0.3838383838384], 0.0063258851: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.9898989899: [0.0, 0.3333333333333, 0.6666666666667], 0.6887052342: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.5315784104: [0.6464646464646, 0.5353535353535, 0.3535353535354, 0.4646464646465], 0.7121722273: [0.9292929292929, 0.0707070707071, 0.2929292929293, 0.7070707070707], 0.9031731456: [0.1616161616162, 0.3838383838384, 0.6161616161616, 0.8383838383838], 0.8535863687: [0.9292929292929, 0.0707070707071, 0.2929292929293, 0.7070707070707], 0.4783185389: [0.0808080808081, 0.1919191919192, 0.9191919191919, 0.8080808080808], 0.7886950311: [0.1717171717172, 0.7171717171717, 0.8282828282828, 0.2828282828283], 0.6129986736: [0.7474747474747, 0.5252525252525, 0.2525252525253, 0.4747474747475], 0.7807366595: [0.1313131313131, 0.6868686868687, 0.3131313131313, 0.8686868686869], 0.0871339659: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.3485358637: [0.9292929292929, 0.2929292929293, 0.7070707070707, 0.0707070707071], 0.3160901949: [0.6868686868687, 0.3131313131313, 0.8686868686869, 0.1313131313131], 0.2836445261: [0.2828282828283, 0.1717171717172, 0.8282828282828, 0.7171717171717], 0.08815427: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.1432506887: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.9221508009: [0.1313131313131, 0.6868686868687, 0.3131313131313, 0.8686868686869], 0.3093561881: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.4305683094: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.3981226405: [0.1616161616162, 0.3838383838384, 0.6161616161616, 0.8383838383838], 0.8493010917: [0.1717171717172, 0.7171717171717, 0.8282828282828, 0.2828282828283], 0.1083562902: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.3332313029: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.769513315: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.8356290174: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.6721763085: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.5748393021: [0.030303030303, 0.969696969697, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.6785021937: [0.2626262626263, 0.7373737373737, 0.3737373737374, 0.6262626262626], 0.7923681257: [0.4444444444444, 0.5555555555556], 0.613610856: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.6601367207: [0.0808080808081, 0.1919191919192, 0.9191919191919, 0.8080808080808], 0.3691460055: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.4260789715: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.6740128558: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.2883379247: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.6797265585: [0.1313131313131, 0.6868686868687, 0.3131313131313, 0.8686868686869], 0.1618202224: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.5487195184: [0.3434343434343, 0.6565656565657, 0.4343434343434, 0.5656565656566], 0.5499438833: [0.4444444444444, 0.5555555555556], 0.8076726865: [0.020202020202, 0.2020202020202, 0.979797979798, 0.7979797979798], 0.870523416: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.2352821141: [0.6868686868687, 0.3131313131313, 0.8686868686869, 0.1313131313131], 0.9086827875: [0.020202020202, 0.2020202020202, 0.979797979798, 0.7979797979798], 0.8762371187: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.811345781: [0.3434343434343, 0.6565656565657, 0.4343434343434, 0.5656565656566], 0.2028364453: [0.2828282828283, 0.1717171717172, 0.8282828282828, 0.7171717171717], 0.7140087746: [0.7474747474747, 0.5252525252525, 0.2525252525253, 0.4747474747475], 0.1379451076: [0.3232323232323, 0.7676767676768, 0.2323232323232, 0.6767676767677], 0.0859096011: [0.9292929292929, 0.2929292929293, 0.7070707070707, 0.0707070707071], 0.6631976329: [0.2323232323232, 0.7676767676768, 0.6767676767677, 0.3232323232323], 0.0044893378: [0.4444444444444, 0.5555555555556], 0.2497704316: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.8419549026: [0.0808080808081, 0.1919191919192, 0.9191919191919, 0.8080808080808], 0.8131823283: [0.9292929292929, 0.0707070707071, 0.2929292929293, 0.7070707070707], 0.4581165187: [0.0808080808081, 0.1919191919192, 0.9191919191919, 0.8080808080808], 0.7482909907: [0.1717171717172, 0.7171717171717, 0.8282828282828, 0.2828282828283], 0.7672686461: [0.020202020202, 0.2020202020202, 0.979797979798, 0.7979797979798], 0.3283338435: [0.9292929292929, 0.2929292929293, 0.7070707070707, 0.0707070707071], 0.2958881747: [0.6868686868687, 0.3131313131313, 0.8686868686869, 0.1313131313131], 0.2634425059: [0.2828282828283, 0.1717171717172, 0.8282828282828, 0.7171717171717], 0.6644219978: [0.8888888888889, 0.1111111111111], 0.5325987144: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.442811958: [0.040404040404, 0.5959595959596, 0.4040404040404, 0.959595959596], 0.4103662892: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.3779206203: [0.1616161616162, 0.3838383838384, 0.6161616161616, 0.8383838383838], 0.0944801551: [0.0808080808081, 0.8080808080808, 0.1919191919192, 0.9191919191919], 0.4132231405: [0.969696969697, 0.030303030303, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.3130292827: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.7291092746: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.157943067: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.6317722681: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.6464646465: [0.0, 0.3333333333333, 0.6666666666667], 0.5344352617: [0.030303030303, 0.969696969697, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.4923987348: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.842567085: [0.1616161616162, 0.8383838383838, 0.6161616161616, 0.3838383838384], 0.020406081: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.2314049587: [0.969696969697, 0.030303030303, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.8282828283: [0.0, 0.3333333333333, 0.6666666666667], 0.3654729109: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.8584838282: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.1910009183: [0.969696969697, 0.030303030303, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.7452300786: [0.8888888888889, 0.1111111111111], 0.2681359045: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.6393225181: [0.8686868686869, 0.1313131313131, 0.3131313131313, 0.6868686868687], 0.6068768493: [0.1717171717172, 0.7171717171717, 0.8282828282828, 0.2828282828283], 0.1354963779: [0.1616161616162, 0.3838383838384, 0.6161616161616, 0.8383838383838], 0.0338740945: [0.0808080808081, 0.8080808080808, 0.1919191919192, 0.9191919191919], 0.9292929293: [0.0, 0.3333333333333, 0.6666666666667], 0.2075298439: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.9007244159: [0.2626262626263, 0.7373737373737, 0.3737373737374, 0.6262626262626], 0.6540148964: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.0522395674: [0.2626262626263, 0.7373737373737, 0.3737373737374, 0.6262626262626], 0.7709417406: [0.3434343434343, 0.6565656565657, 0.4343434343434, 0.5656565656566], 0.7384960718: [0.2222222222222, 0.7777777777778], 0.6736047342: [0.7474747474747, 0.5252525252525, 0.2525252525253, 0.4747474747475], 0.5113763902: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.8080808081: [0.0, 0.3333333333333, 0.6666666666667], 0.7525762677: [0.9292929292929, 0.0707070707071, 0.2929292929293, 0.7070707070707], 0.5505560657: [0.9292929292929, 0.0707070707071, 0.2929292929293, 0.7070707070707], 0.971533517: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.2499744924: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.9674523008: [0.8888888888889, 0.1111111111111], 0.9025609632: [0.0808080808081, 0.1919191919192, 0.9191919191919, 0.8080808080808], 0.310580553: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.7727782879: [0.9292929292929, 0.0707070707071, 0.2929292929293, 0.7070707070707], 0.1850831548: [0.5656565656566, 0.6565656565657, 0.4343434343434, 0.3434343434343], 0.7078869503: [0.1717171717172, 0.7171717171717, 0.8282828282828, 0.2828282828283], 0.6429956127: [0.2323232323232, 0.7676767676768, 0.6767676767677, 0.3232323232323], 0.7819610244: [0.1616161616162, 0.8383838383838, 0.6161616161616, 0.3838383838384], 0.0275482094: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.3081318233: [0.9292929292929, 0.2929292929293, 0.7070707070707, 0.0707070707071], 0.2756861545: [0.6868686868687, 0.3131313131313, 0.8686868686869, 0.1313131313131], 0.7346189164: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.8731762065: [0.4444444444444, 0.5555555555556], 0.0002040608: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.6809509234: [0.1616161616162, 0.8383838383838, 0.6161616161616, 0.3838383838384], 0.9368431793: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.8719518416: [0.3434343434343, 0.6565656565657, 0.4343434343434, 0.5656565656566], 0.4226099378: [0.040404040404, 0.959595959596, 0.4040404040404, 0.5959595959596], 0.0975410672: [0.3232323232323, 0.7676767676768, 0.2323232323232, 0.6767676767677], 0.390164269: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.3577186001: [0.1616161616162, 0.3838383838384, 0.6161616161616, 0.8383838383838], 0.9901030507: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.2928272625: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.0650953984: [0.4444444444444, 0.5555555555556], 0.2603815937: [0.8888888888889, 0.1111111111111], 0.5913682277: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.0422405877: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.9990817264: [0.030303030303, 0.969696969697, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.3840424446: [0.1414141414141, 0.8585858585859, 0.5858585858586, 0.4141414141414], 0.0332619121: [0.6868686868687, 0.3131313131313, 0.8686868686869, 0.1313131313131], 0.4721967146: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.407305377: [0.5656565656566, 0.6565656565657, 0.4343434343434, 0.3434343434343], 0.8852157943: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.7878787879: [0.0, 0.3333333333333, 0.6666666666667], 0.3452708907: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.0863177227: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.051627385: [0.2222222222222, 0.7777777777778], 0.593204775: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.6923783287: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.6313641465: [0.9292929292929, 0.0707070707071, 0.2929292929293, 0.7070707070707], 0.1416182022: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.5664728089: [0.1717171717172, 0.7171717171717, 0.8282828282828, 0.2828282828283], 0.5015814713: [0.3232323232323, 0.2323232323232, 0.6767676767677, 0.7676767676768], 0.0265279053: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.1230486685: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.7305377002: [0.3434343434343, 0.6565656565657, 0.4343434343434, 0.5656565656566], 0.7897153352: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.2150800939: [0.6868686868687, 0.3131313131313, 0.8686868686869, 0.1313131313131], 0.3436384042: [0.1414141414141, 0.8585858585859, 0.5858585858586, 0.4141414141414], 0.7954290379: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.1826344251: [0.2828282828283, 0.1717171717172, 0.8282828282828, 0.7171717171717], 0.512600755: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.6332006938: [0.7474747474747, 0.5252525252525, 0.2525252525253, 0.4747474747475], 0.5034180186: [0.040404040404, 0.5959595959596, 0.4040404040404, 0.959595959596], 0.7795122947: [0.2626262626263, 0.7373737373737, 0.3737373737374, 0.6262626262626], 0.9862258953: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.2222222222: [0.0, 0.6666666666667, 0.3333333333333], 0.363228242: [0.020202020202, 0.979797979798, 0.7979797979798, 0.2020202020202], 0.9270482604: [0.8888888888889, 0.1111111111111], 0.8621569228: [0.0808080808081, 0.1919191919192, 0.9191919191919, 0.8080808080808], 0.9423528211: [0.1313131313131, 0.6868686868687, 0.3131313131313, 0.8686868686869], 0.5142332415: [0.030303030303, 0.969696969697, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.6999285787: [0.1313131313131, 0.6868686868687, 0.3131313131313, 0.8686868686869], 0.6674829099: [0.1717171717172, 0.7171717171717, 0.8282828282828, 0.2828282828283], 0.6025915723: [0.2323232323232, 0.7676767676768, 0.6767676767677, 0.3232323232323], 0.5701459035: [0.4444444444444, 0.5555555555556], 0.9496990103: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.8603203755: [0.2626262626263, 0.7373737373737, 0.3737373737374, 0.6262626262626], 0.2879298031: [0.9292929292929, 0.2929292929293, 0.7070707070707, 0.0707070707071], 0.2554841343: [0.6868686868687, 0.3131313131313, 0.8686868686869, 0.1313131313131], 0.9613304765: [0.2626262626263, 0.7373737373737, 0.3737373737374, 0.6262626262626], 0.1212121212: [0.0, 0.6666666666667, 0.3333333333333], 0.8964391389: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.8315478012: [0.3434343434343, 0.6565656565657, 0.4343434343434, 0.5656565656566], 0.1997755331: [0.8888888888889, 0.1111111111111], 0.1006019794: [0.020202020202, 0.979797979798, 0.2020202020202, 0.7979797979798], 0.3699622488: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.0293847567: [0.969696969697, 0.030303030303, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.2726252423: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.0681563106: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.1869197021: [0.9292929292929, 0.2929292929293, 0.7070707070707, 0.0707070707071], 0.1377410468: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.8939904091: [0.9292929292929, 0.0707070707071, 0.2929292929293, 0.7070707070707], 0.8058361392: [0.8888888888889, 0.1111111111111], 0.4844403632: [0.020202020202, 0.2020202020202, 0.979797979798, 0.7979797979798], 0.7011529436: [0.1616161616162, 0.8383838383838, 0.6161616161616, 0.3838383838384], 0.4519946944: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.3507805326: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.3871033568: [0.5656565656566, 0.6565656565657, 0.4343434343434, 0.3434343434343], 0.2112029385: [0.969696969697, 0.030303030303, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.8750127538: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.7474747475: [0.0, 0.3333333333333, 0.6666666666667], 0.3250688705: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.5528007346: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.5854504642: [0.020202020202, 0.2020202020202, 0.979797979798, 0.7979797979798], 0.5260687685: [0.1717171717172, 0.7171717171717, 0.8282828282828, 0.2828282828283], 0.9594939292: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.4719926538: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.1873278237: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.8199163351: [0.2626262626263, 0.7373737373737, 0.3737373737374, 0.6262626262626], 0.6519742883: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.1887562494: [0.2525252525253, 0.5252525252525, 0.4747474747475, 0.7474747474747], 0.6901336598: [0.3434343434343, 0.6565656565657, 0.4343434343434, 0.5656565656566], 0.657687991: [0.2222222222222, 0.7777777777778], 0.5927966534: [0.7474747474747, 0.5252525252525, 0.2525252525253, 0.4747474747475], 0.9458218549: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.4242424242: [0.0, 0.3333333333333, 0.6666666666667], 0.9631670238: [0.0808080808081, 0.1919191919192, 0.9191919191919, 0.8080808080808], 0.2297724722: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.88664422: [0.8888888888889, 0.1111111111111], 0.741556984: [0.1616161616162, 0.8383838383838, 0.6161616161616, 0.3838383838384], 0.0412202836: [0.2828282828283, 0.1717171717172, 0.8282828282828, 0.7171717171717], 0.6919702071: [0.9292929292929, 0.0707070707071, 0.2929292929293, 0.7070707070707], 0.1648811346: [0.5656565656566, 0.6565656565657, 0.4343434343434, 0.3434343434343], 0.6270788695: [0.1717171717172, 0.7171717171717, 0.8282828282828, 0.2828282828283], 0.5621875319: [0.2323232323232, 0.7676767676768, 0.6767676767677, 0.3232323232323], 0.1324354658: [0.2222222222222, 0.7777777777778], 0.5860626467: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.0669319457: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.9209264361: [0.2626262626263, 0.7373737373737, 0.3737373737374, 0.6262626262626], 0.8884807673: [0.020202020202, 0.2020202020202, 0.979797979798, 0.7979797979798], 0.8560350985: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.7911437608: [0.3434343434343, 0.6565656565657, 0.4343434343434, 0.5656565656566], 0.758698092: [0.2222222222222, 0.7777777777778], 0.3822058974: [0.040404040404, 0.959595959596, 0.4040404040404, 0.5959595959596], 0.3497602285: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.3636363636: [0.0, 0.6666666666667, 0.3333333333333], 0.0404040404: [0.0, 0.6666666666667, 0.3333333333333], 0.9766350372: [0.7474747474747, 0.5252525252525, 0.2525252525253, 0.4747474747475], 0.2524232221: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.6078971534: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.5105601469: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.2469135802: [0.4444444444444, 0.5555555555556], 0.4966840118: [0.2626262626263, 0.7373737373737, 0.3737373737374, 0.6262626262626], 0.464238343: [0.020202020202, 0.2020202020202, 0.979797979798, 0.7979797979798], 0.4317926742: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.1079481686: [0.2525252525253, 0.5252525252525, 0.4747474747475, 0.7474747474747], 0.4587287012: [0.1616161616162, 0.3838383838384, 0.6161616161616, 0.8383838383838], 0.3669013366: [0.5656565656566, 0.6565656565657, 0.4343434343434, 0.3434343434343], 0.3344556678: [0.2222222222222, 0.7777777777778], 0.7070707071: [0.0, 0.3333333333333, 0.6666666666667], 0.0136720743: [0.0808080808081, 0.8080808080808, 0.1919191919192, 0.9191919191919], 0.7280889705: [0.1717171717172, 0.7171717171717, 0.8282828282828, 0.2828282828283], 0.5123966942: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.0638710336: [0.5656565656566, 0.6565656565657, 0.4343434343434, 0.3434343434343], 0.4517906336: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.8529741863: [0.4444444444444, 0.5555555555556], 0.7170696868: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.7089072544: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.9772472197: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.1948780737: [0.6868686868687, 0.3131313131313, 0.8686868686869, 0.1313131313131], 0.714620957: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.0302009999: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.6172839506: [0.2222222222222, 0.7777777777778], 0.552392613: [0.7474747474747, 0.5252525252525, 0.2525252525253, 0.4747474747475], 0.6742169166: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.8799102132: [0.2222222222222, 0.7777777777778], 0.0210182634: [0.2828282828283, 0.1717171717172, 0.8282828282828, 0.7171717171717], 0.9054178145: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.9760228548: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.202020202: [0.0, 0.6666666666667, 0.3333333333333], 0.6668707275: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.8462401796: [0.8888888888889, 0.1111111111111], 0.781348842: [0.0808080808081, 0.1919191919192, 0.9191919191919, 0.8080808080808], 0.7991021324: [0.2222222222222, 0.7777777777778], 0.1414141414: [0.0, 0.6666666666667, 0.3333333333333], 0.6515661667: [0.9292929292929, 0.0707070707071, 0.2929292929293, 0.7070707070707], 0.6191204979: [0.8686868686869, 0.1313131313131, 0.3131313131313, 0.6868686868687], 0.5866748291: [0.1717171717172, 0.7171717171717, 0.8282828282828, 0.2828282828283], 0.2322212019: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.2965003571: [0.0808080808081, 0.8080808080808, 0.1919191919192, 0.9191919191919], 0.00755025: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.8805223957: [0.2626262626263, 0.7373737373737, 0.3737373737374, 0.6262626262626], 0.2120191817: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.8156310581: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.0448933782: [0.4444444444444, 0.5555555555556], 0.1795735129: [0.8888888888889, 0.1111111111111], 0.653402714: [0.7474747474747, 0.5252525252525, 0.2525252525253, 0.4747474747475], 0.3620038772: [0.040404040404, 0.959595959596, 0.4040404040404, 0.5959595959596], 0.3295582083: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.0742781349: [0.0808080808081, 0.8080808080808, 0.1919191919192, 0.9191919191919], 0.0387715539: [0.040404040404, 0.4040404040404, 0.959595959596, 0.5959595959596], 0.9796959494: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.9472502806: [0.8888888888889, 0.1111111111111], 0.2205897357: [0.040404040404, 0.959595959596, 0.4040404040404, 0.5959595959596], 0.4764819916: [0.2626262626263, 0.7373737373737, 0.3737373737374, 0.6262626262626], 0.1110090807: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.0277522702: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.4024079176: [0.040404040404, 0.959595959596, 0.4040404040404, 0.5959595959596], 0.3466993164: [0.5656565656566, 0.6565656565657, 0.4343434343434, 0.3434343434343], 0.7640036731: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.0785634119: [0.8888888888889, 0.1111111111111], 0.0477502296: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.6666666667: [0.0, 0.3333333333333, 0.6666666666667], 0.7574737272: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.2846648301: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.5517804306: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.1152943577: [0.1616161616162, 0.3838383838384, 0.6161616161616, 0.8383838383838], 0.4611774309: [0.2323232323232, 0.7676767676768, 0.6767676767677, 0.3232323232323], 0.4287317621: [0.4444444444444, 0.5555555555556], 0.3375165799: [0.1616161616162, 0.3838383838384, 0.6161616161616, 0.8383838383838], 0.4315886134: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.9288848077: [0.020202020202, 0.2020202020202, 0.979797979798, 0.7979797979798], 0.7550249974: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.1671258035: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.5711662075: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.7348229772: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.1685542292: [0.2525252525253, 0.5252525252525, 0.4747474747475, 0.7474747474747], 0.609325579: [0.3434343434343, 0.6565656565657, 0.4343434343434, 0.5656565656566], 0.0253035405: [0.9292929292929, 0.2929292929293, 0.7070707070707, 0.0707070707071], 0.5119885726: [0.5252525252525, 0.4747474747475, 0.2525252525253, 0.7474747474747], 0.1195796347: [0.040404040404, 0.4040404040404, 0.959595959596, 0.5959595959596], 0.4758698092: [0.2222222222222, 0.7777777777778], 0.4811753903: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.795224977: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.4177124783: [0.0808080808081, 0.1919191919192, 0.8080808080808, 0.9191919191919], 0.3838383838: [0.0, 0.6666666666667, 0.3333333333333], 0.209570452: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.6374859708: [0.2222222222222, 0.7777777777778], 0.9752066116: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.6111621263: [0.9292929292929, 0.0707070707071, 0.2929292929293, 0.7070707070707], 0.1446791144: [0.5656565656566, 0.6565656565657, 0.4343434343434, 0.3434343434343], 0.5462707887: [0.1717171717172, 0.7171717171717, 0.8282828282828, 0.2828282828283], 0.0571370268: [0.3232323232323, 0.7676767676768, 0.2323232323232, 0.6767676767677], 0.5509641873: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.6938067544: [0.7474747474747, 0.5252525252525, 0.2525252525253, 0.4747474747475], 0.0073461892: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.7678808285: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.8401183553: [0.2626262626263, 0.7373737373737, 0.3737373737374, 0.6262626262626], 0.3215998368: [0.040404040404, 0.959595959596, 0.4040404040404, 0.5959595959596], 0.71033568: [0.3434343434343, 0.6565656565657, 0.4343434343434, 0.5656565656566], 0.6778900112: [0.2222222222222, 0.7777777777778], 0.1532496684: [0.2626262626263, 0.7373737373737, 0.6262626262626, 0.3737373737374], 0.341801857: [0.040404040404, 0.959595959596, 0.4040404040404, 0.5959595959596], 0.077339047: [0.3232323232323, 0.7676767676768, 0.2323232323232, 0.6767676767677], 0.2769105193: [0.1616161616162, 0.3838383838384, 0.6161616161616, 0.8383838383838], 0.6758494031: [0.030303030303, 0.969696969697, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.7684930109: [0.1717171717172, 0.7171717171717, 0.8282828282828, 0.2828282828283], 0.2358942965: [0.0808080808081, 0.8080808080808, 0.1919191919192, 0.9191919191919], 0.22671156: [0.4444444444444, 0.5555555555556], 0.9068462402: [0.8888888888889, 0.1111111111111], 0.7844097541: [0.2323232323232, 0.7676767676768, 0.6767676767677, 0.3232323232323], 0.4562799714: [0.2626262626263, 0.7373737373737, 0.3737373737374, 0.6262626262626], 0.1140699929: [0.6868686868687, 0.3131313131313, 0.8686868686869, 0.1313131313131], 0.4238343026: [0.020202020202, 0.979797979798, 0.7979797979798, 0.2020202020202], 0.6056524844: [0.020202020202, 0.2020202020202, 0.979797979798, 0.7979797979798], 0.3913886338: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.081624324: [0.2828282828283, 0.1717171717172, 0.8282828282828, 0.7171717171717], 0.3264972962: [0.5656565656566, 0.6565656565657, 0.4343434343434, 0.3434343434343], 0.2940516274: [0.2222222222222, 0.7777777777778], 0.6262626263: [0.0, 0.3333333333333, 0.6666666666667], 0.2644628099: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.3950617284: [0.2222222222222, 0.7777777777778], 0.8897051321: [0.2828282828283, 0.1717171717172, 0.8282828282828, 0.7171717171717], 0.4409754107: [0.2323232323232, 0.7676767676768, 0.6767676767677, 0.3232323232323], 0.4085297419: [0.4444444444444, 0.5555555555556], 0.1028466483: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.9405162739: [0.2222222222222, 0.7777777777778], 0.0257116621: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.6399347005: [0.0808080808081, 0.1919191919192, 0.9191919191919, 0.8080808080808], 0.6280991736: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.5307621671: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.0436690134: [0.5656565656566, 0.6565656565657, 0.4343434343434, 0.3434343434343], 0.1422303847: [0.2828282828283, 0.1717171717172, 0.8282828282828, 0.7171717171717], 0.0771349862: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.8988878686: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.4609733701: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.9411284563: [0.2626262626263, 0.7373737373737, 0.3737373737374, 0.6262626262626], 0.8246097337: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.1818181818: [0.0, 0.6666666666667, 0.3333333333333], 0.354657688: [0.2222222222222, 0.7777777777778], 0.7005407611: [0.0808080808081, 0.1919191919192, 0.9191919191919, 0.8080808080808], 0.8015508622: [0.0808080808081, 0.1919191919192, 0.9191919191919, 0.8080808080808], 0.5707580859: [0.9292929292929, 0.0707070707071, 0.2929292929293, 0.7070707070707], 0.5383124171: [0.8686868686869, 0.1313131313131, 0.3131313131313, 0.6868686868687], 0.5058667483: [0.1717171717172, 0.7171717171717, 0.8282828282828, 0.2828282828283], 0.6227935925: [0.2323232323232, 0.7676767676768, 0.6767676767677, 0.3232323232323], 0.9943883277: [0.4444444444444, 0.5555555555556], 0.9294969901: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.1918171615: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.0479542904: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.6699316396: [0.3434343434343, 0.6565656565657, 0.4343434343434, 0.5656565656566], 0.1593714927: [0.8888888888889, 0.1111111111111], 0.5725946332: [0.7474747474747, 0.5252525252525, 0.2525252525253, 0.4747474747475], 0.0803999592: [0.020202020202, 0.979797979798, 0.2020202020202, 0.7979797979798], 0.2891541679: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.2567084991: [0.1616161616162, 0.3838383838384, 0.6161616161616, 0.8383838383838], 0.8670543822: [0.040404040404, 0.4040404040404, 0.959595959596, 0.5959595959596], 0.996224875: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.9637792062: [0.1616161616162, 0.3838383838384, 0.6161616161616, 0.8383838383838], 0.4444444444: [0.0, 0.3333333333333, 0.6666666666667], 0.8664421998: [0.8888888888889, 0.1111111111111], 0.2003877155: [0.040404040404, 0.959595959596, 0.4040404040404, 0.5959595959596], 0.4360779512: [0.2626262626263, 0.7373737373737, 0.3737373737374, 0.6262626262626], 0.4036322824: [0.020202020202, 0.979797979798, 0.7979797979798, 0.2020202020202], 0.3711866136: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505]} averages_odd = {0.824507703: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.805325987: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.292929293: [0.0, 0.3333333333333, 0.6666666666667], 0.843485359: [0.9292929292929, 0.2929292929293, 0.7070707070707, 0.0707070707071], 0.778594021: [0.2828282828283, 0.1717171717172, 0.8282828282828, 0.7171717171717], 0.713702683: [0.3232323232323, 0.7676767676768, 0.2323232323232, 0.6767676767677], 0.681257015: [0.4444444444444, 0.5555555555556], 0.192735435: [0.2828282828283, 0.1717171717172, 0.8282828282828, 0.7171717171717], 0.372104887: [0.040404040404, 0.4040404040404, 0.959595959596, 0.5959595959596], 0.339659218: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.188450158: [0.2323232323232, 0.7676767676768, 0.6767676767677, 0.3232323232323], 0.913274156: [0.1616161616162, 0.3838383838384, 0.6161616161616, 0.8383838383838], 0.34251607: [0.030303030303, 0.969696969697, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.834914805: [0.3232323232323, 0.7676767676768, 0.2323232323232, 0.6767676767677], 0.46087134: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.845321906: [0.2525252525253, 0.5252525252525, 0.4747474747475, 0.7474747474747], 0.648199163: [0.2626262626263, 0.7373737373737, 0.3737373737374, 0.6262626262626], 0.650647893: [0.1616161616162, 0.3838383838384, 0.6161616161616, 0.8383838383838], 0.585756555: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.091113152: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.421691664: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.356800326: [0.3434343434343, 0.6565656565657, 0.4343434343434, 0.5656565656566], 0.233139476: [0.2828282828283, 0.1717171717172, 0.8282828282828, 0.7171717171717], 0.29476584: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.363534333: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.879604122: [0.2828282828283, 0.1717171717172, 0.8282828282828, 0.7171717171717], 0.420467299: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.935720845: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.365370881: [0.2626262626263, 0.7373737373737, 0.3737373737374, 0.6262626262626], 0.81103969: [0.6868686868687, 0.3131313131313, 0.8686868686869, 0.1313131313131], 0.095398429: [0.4444444444444, 0.5555555555556], 0.208448118: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.858585859: [0.0, 0.6666666666667, 0.3333333333333], 0.663911846: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.09825528: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.920008162: [0.2828282828283, 0.1717171717172, 0.8282828282828, 0.7171717171717], 0.35006632: [0.3232323232323, 0.7676767676768, 0.2323232323232, 0.6767676767677], 0.317620651: [0.4444444444444, 0.5555555555556], 0.067238037: [0.2323232323232, 0.7676767676768, 0.6767676767677, 0.3232323232323], 0.616365677: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.665748393: [0.969696969697, 0.030303030303, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.703907765: [0.2525252525253, 0.5252525252525, 0.4747474747475, 0.7474747474747], 0.412508928: [0.040404040404, 0.4040404040404, 0.959595959596, 0.5959595959596], 0.367207428: [0.0808080808081, 0.8080808080808, 0.1919191919192, 0.9191919191919], 0.95959596: [0.0, 0.6666666666667, 0.3333333333333], 0.34761759: [0.1616161616162, 0.3838383838384, 0.6161616161616, 0.8383838383838], 0.071523314: [0.2828282828283, 0.1717171717172, 0.8282828282828, 0.7171717171717], 0.764921947: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.272727273: [0.0, 0.3333333333333, 0.6666666666667], 0.738189981: [0.2828282828283, 0.1717171717172, 0.8282828282828, 0.7171717171717], 0.640852974: [0.4444444444444, 0.5555555555556], 0.932863993: [0.0808080808081, 0.8080808080808, 0.1919191919192, 0.9191919191919], 0.575961637: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.828180798: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.319457198: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.287011529: [0.1616161616162, 0.3838383838384, 0.6161616161616, 0.8383838383838], 0.961432507: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.8640955: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.32231405: [0.030303030303, 0.969696969697, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.239873482: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.724109785: [0.2525252525253, 0.5252525252525, 0.4747474747475, 0.7474747474747], 0.804917866: [0.2525252525253, 0.5252525252525, 0.4747474747475, 0.7474747474747], 0.138251199: [0.7474747474747, 0.5252525252525, 0.2525252525253, 0.4747474747475], 0.642689521: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.0580553: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.809815325: [0.2626262626263, 0.7373737373737, 0.3737373737374, 0.6262626262626], 0.512906846: [0.8888888888889, 0.1111111111111], 0.304152637: [0.2222222222222, 0.7777777777778], 0.552086522: [0.3232323232323, 0.7676767676768, 0.2323232323232, 0.6767676767677], 0.898989899: [0.0, 0.6666666666667, 0.3333333333333], 0.524334252: [0.030303030303, 0.969696969697, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.956126926: [0.3232323232323, 0.7676767676768, 0.2323232323232, 0.6767676767677], 0.87164575: [0.6868686868687, 0.3131313131313, 0.8686868686869, 0.1313131313131], 0.27456382: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.179267422: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.741863075: [0.4444444444444, 0.5555555555556], 0.312723192: [0.020202020202, 0.979797979798, 0.2020202020202, 0.7979797979798], 0.280277523: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.421487603: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.970819304: [0.2222222222222, 0.7777777777778], 0.910213244: [0.2222222222222, 0.7777777777778], 0.102744618: [0.2626262626263, 0.7373737373737, 0.3737373737374, 0.6262626262626], 0.882052852: [0.5656565656566, 0.6565656565657, 0.4343434343434, 0.3434343434343], 0.062340577: [0.2626262626263, 0.7373737373737, 0.3737373737374, 0.6262626262626], 0.3298643: [0.3232323232323, 0.7676767676768, 0.2323232323232, 0.6767676767677], 0.297418631: [0.4444444444444, 0.5555555555556], 0.47107438: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.722681359: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.63717988: [0.2828282828283, 0.1717171717172, 0.8282828282828, 0.7171717171717], 0.880624426: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.625344353: [0.030303030303, 0.969696969697, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.533721049: [0.040404040404, 0.4040404040404, 0.959595959596, 0.5959595959596], 0.131517192: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.347005408: [0.0808080808081, 0.8080808080808, 0.1919191919192, 0.9191919191919], 0.919191919: [0.0, 0.6666666666667, 0.3333333333333], 0.726354454: [0.030303030303, 0.969696969697, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.579022549: [0.3434343434343, 0.6565656565657, 0.4343434343434, 0.5656565656566], 0.724517906: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.683093562: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.002958882: [0.1313131313131, 0.6868686868687, 0.3131313131313, 0.8686868686869], 0.252525253: [0.0, 0.3333333333333, 0.6666666666667], 0.13865932: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.461483522: [0.2525252525253, 0.5252525252525, 0.4747474747475, 0.7474747474747], 0.535557596: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.111315172: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.973268034: [0.0808080808081, 0.8080808080808, 0.1919191919192, 0.9191919191919], 0.331700847: [0.040404040404, 0.4040404040404, 0.959595959596, 0.5959595959596], 0.299255178: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.266809509: [0.1616161616162, 0.3838383838384, 0.6161616161616, 0.8383838383838], 0.397204367: [0.3434343434343, 0.6565656565657, 0.4343434343434, 0.5656565656566], 0.861850832: [0.3434343434343, 0.6565656565657, 0.4343434343434, 0.5656565656566], 0.057443118: [0.7474747474747, 0.5252525252525, 0.2525252525253, 0.4747474747475], 0.446178961: [0.2626262626263, 0.7373737373737, 0.3737373737374, 0.6262626262626], 0.569839812: [0.1616161616162, 0.3838383838384, 0.6161616161616, 0.8383838383838], 0.248852158: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.017447199: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.048260382: [0.8888888888889, 0.1111111111111], 0.316396286: [0.3434343434343, 0.6565656565657, 0.4343434343434, 0.5656565656566], 0.283950617: [0.2222222222222, 0.7777777777778], 0.987144169: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.673298643: [0.3232323232323, 0.7676767676768, 0.2323232323232, 0.6767676767677], 0.955922865: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.83124171: [0.6868686868687, 0.3131313131313, 0.8686868686869, 0.1313131313131], 0.2543618: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.043362922: [0.1313131313131, 0.6868686868687, 0.3131313131313, 0.8686868686869], 0.495765738: [0.2828282828283, 0.1717171717172, 0.8282828282828, 0.7171717171717], 0.636567697: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.030507091: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.260075503: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.087440057: [0.2323232323232, 0.7676767676768, 0.6767676767677, 0.3232323232323], 0.401285583: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.906540149: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.226405469: [0.1616161616162, 0.3838383838384, 0.6161616161616, 0.8383838383838], 0.766758494: [0.969696969697, 0.030303030303, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.028058361: [0.8888888888889, 0.1111111111111], 0.865523926: [0.2525252525253, 0.5252525252525, 0.4747474747475, 0.7474747474747], 0.452300786: [0.8888888888889, 0.1111111111111], 0.763901643: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.091725334: [0.2828282828283, 0.1717171717172, 0.8282828282828, 0.7171717171717], 0.45087236: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.682277319: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.601061116: [0.9292929292929, 0.2929292929293, 0.7070707070707, 0.0707070707071], 0.405774921: [0.2626262626263, 0.7373737373737, 0.3737373737374, 0.6262626262626], 0.716763596: [0.020202020202, 0.979797979798, 0.2020202020202, 0.7979797979798], 0.424140394: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.107642077: [0.2323232323232, 0.7676767676768, 0.6767676767677, 0.3232323232323], 0.878787879: [0.0, 0.6666666666667, 0.3333333333333], 0.912049791: [0.6868686868687, 0.3131313131313, 0.8686868686869, 0.1313131313131], 0.825528007: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.063564942: [0.1313131313131, 0.6868686868687, 0.3131313131313, 0.8686868686869], 0.488419549: [0.0808080808081, 0.8080808080808, 0.1919191919192, 0.9191919191919], 0.814712784: [0.3232323232323, 0.7676767676768, 0.2323232323232, 0.6767676767677], 0.6573819: [0.2828282828283, 0.1717171717172, 0.8282828282828, 0.7171717171717], 0.178655239: [0.7474747474747, 0.5252525252525, 0.2525252525253, 0.4747474747475], 0.441281502: [0.2525252525253, 0.5252525252525, 0.4747474747475, 0.7474747474747], 0.033568003: [0.3434343434343, 0.6565656565657, 0.4343434343434, 0.5656565656566], 0.379247016: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.279053158: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.886338129: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.635955515: [0.020202020202, 0.979797979798, 0.2020202020202, 0.7979797979798], 0.844709723: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.219671462: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.594327109: [0.040404040404, 0.4040404040404, 0.959595959596, 0.5959595959596], 0.154780124: [0.3434343434343, 0.6565656565657, 0.4343434343434, 0.5656565656566], 0.425976941: [0.2626262626263, 0.7373737373737, 0.3737373737374, 0.6262626262626], 0.393531272: [0.020202020202, 0.979797979798, 0.2020202020202, 0.7979797979798], 0.059687787: [0.030303030303, 0.969696969697, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.587593103: [0.2626262626263, 0.7373737373737, 0.3737373737374, 0.6262626262626], 0.859402102: [0.2828282828283, 0.1717171717172, 0.8282828282828, 0.7171717171717], 0.02009999: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.953066014: [0.0808080808081, 0.8080808080808, 0.1919191919192, 0.9191919191919], 0.482093664: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.823283338: [0.9292929292929, 0.2929292929293, 0.7070707070707, 0.0707070707071], 0.758392001: [0.2828282828283, 0.1717171717172, 0.8282828282828, 0.7171717171717], 0.122946638: [0.2626262626263, 0.7373737373737, 0.3737373737374, 0.6262626262626], 0.661054994: [0.4444444444444, 0.5555555555556], 0.475563718: [0.2828282828283, 0.1717171717172, 0.8282828282828, 0.7171717171717], 0.41067238: [0.3232323232323, 0.7676767676768, 0.2323232323232, 0.6767676767677], 0.791449852: [0.0808080808081, 0.8080808080808, 0.1919191919192, 0.9191919191919], 0.733904704: [0.3232323232323, 0.7676767676768, 0.2323232323232, 0.6767676767677], 0.03785328: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.381083563: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.542699725: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.98734823: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.750433629: [0.6868686868687, 0.3131313131313, 0.8686868686869, 0.1313131313131], 0.386797266: [0.1313131313131, 0.6868686868687, 0.3131313131313, 0.8686868686869], 0.69533721: [0.040404040404, 0.4040404040404, 0.959595959596, 0.5959595959596], 0.023160902: [0.1313131313131, 0.6868686868687, 0.3131313131313, 0.8686868686869], 0.427813488: [0.0808080808081, 0.8080808080808, 0.1919191919192, 0.9191919191919], 0.739210285: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.333333333: [0.0, 0.3333333333333, 0.6666666666667], 0.762677278: [0.9292929292929, 0.2929292929293, 0.7070707070707, 0.0707070707071], 0.653096623: [0.3232323232323, 0.7676767676768, 0.2323232323232, 0.6767676767677], 0.924293439: [0.9292929292929, 0.2929292929293, 0.7070707070707, 0.0707070707071], 0.403938374: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.371492705: [0.8888888888889, 0.1111111111111], 0.553923069: [0.040404040404, 0.4040404040404, 0.959595959596, 0.5959595959596], 0.885113764: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.777369656: [0.020202020202, 0.979797979798, 0.2020202020202, 0.7979797979798], 0.309458219: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.643709826: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.959187838: [0.020202020202, 0.979797979798, 0.2020202020202, 0.7979797979798], 0.519640853: [0.4444444444444, 0.5555555555556], 0.421079482: [0.2525252525253, 0.5252525252525, 0.4747474747475, 0.7474747474747], 0.897357413: [0.040404040404, 0.4040404040404, 0.959595959596, 0.5959595959596], 0.014590348: [0.4444444444444, 0.5555555555556], 0.751045812: [0.0808080808081, 0.8080808080808, 0.1919191919192, 0.9191919191919], 0.922456892: [0.5656565656566, 0.6565656565657, 0.4343434343434, 0.3434343434343], 0.010917253: [0.2828282828283, 0.1717171717172, 0.8282828282828, 0.7171717171717], 0.742883379: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.261707989: [0.030303030303, 0.969696969697, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.924701561: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.035812672: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.683705744: [0.2525252525253, 0.5252525252525, 0.4747474747475, 0.7474747474747], 0.013365983: [0.3434343434343, 0.6565656565657, 0.4343434343434, 0.5656565656566], 0.120293848: [0.030303030303, 0.969696969697, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.5214774: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.373329252: [0.020202020202, 0.979797979798, 0.2020202020202, 0.7979797979798], 0.340883583: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.228650138: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.939393939: [0.0, 0.6666666666667, 0.3333333333333], 0.588817468: [0.1313131313131, 0.6868686868687, 0.3131313131313, 0.8686868686869], 0.977553311: [0.8888888888889, 0.1111111111111], 0.912661973: [0.0808080808081, 0.8080808080808, 0.1919191919192, 0.9191919191919], 0.556371799: [0.2828282828283, 0.1717171717172, 0.8282828282828, 0.7171717171717], 0.165187226: [0.0808080808081, 0.8080808080808, 0.1919191919192, 0.9191919191919], 0.71798796: [0.2828282828283, 0.1717171717172, 0.8282828282828, 0.7171717171717], 0.965921845: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.620650954: [0.4444444444444, 0.5555555555556], 0.555759616: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.39047036: [0.3232323232323, 0.7676767676768, 0.2323232323232, 0.6767676767677], 0.111927354: [0.2828282828283, 0.1717171717172, 0.8282828282828, 0.7171717171717], 0.406999286: [0.1313131313131, 0.6868686868687, 0.3131313131313, 0.8686868686869], 0.979389858: [0.020202020202, 0.979797979798, 0.2020202020202, 0.7979797979798], 0.360881543: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.946944189: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.206203449: [0.1616161616162, 0.3838383838384, 0.6161616161616, 0.8383838383838], 0.849607183: [0.2222222222222, 0.7777777777778], 0.784715845: [0.2525252525253, 0.5252525252525, 0.4747474747475, 0.7474747474747], 0.141312111: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.842873176: [0.4444444444444, 0.5555555555556], 0.334149577: [0.2828282828283, 0.1717171717172, 0.8282828282828, 0.7171717171717], 0.735741251: [0.040404040404, 0.4040404040404, 0.959595959596, 0.5959595959596], 0.180899908: [0.030303030303, 0.969696969697, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.4912764: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.313131313: [0.0, 0.3333333333333, 0.6666666666667], 0.670849913: [0.1616161616162, 0.3838383838384, 0.6161616161616, 0.8383838383838], 0.818998061: [0.2828282828283, 0.1717171717172, 0.8282828282828, 0.7171717171717], 0.149882665: [0.040404040404, 0.4040404040404, 0.959595959596, 0.5959595959596], 0.40312213: [0.030303030303, 0.969696969697, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.351290685: [0.8888888888889, 0.1111111111111], 0.009692888: [0.020202020202, 0.2020202020202, 0.979797979798, 0.7979797979798], 0.460055096: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.688603204: [0.2626262626263, 0.7373737373737, 0.3737373737374, 0.6262626262626], 0.807978778: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.603305785: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.157024793: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.993470054: [0.0808080808081, 0.8080808080808, 0.1919191919192, 0.9191919191919], 0.605958576: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.684317927: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.158453219: [0.7474747474747, 0.5252525252525, 0.2525252525253, 0.4747474747475], 0.508621569: [0.0808080808081, 0.8080808080808, 0.1919191919192, 0.9191919191919], 0.271094786: [0.040404040404, 0.4040404040404, 0.959595959596, 0.5959595959596], 0.001734517: [0.2626262626263, 0.7373737373737, 0.3737373737374, 0.6262626262626], 0.201101928: [0.030303030303, 0.969696969697, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.702479339: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.605142332: [0.969696969697, 0.030303030303, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.708193042: [0.2222222222222, 0.7777777777778], 0.643301704: [0.2525252525253, 0.5252525252525, 0.4747474747475, 0.7474747474747], 0.293745536: [0.2828282828283, 0.1717171717172, 0.8282828282828, 0.7171717171717], 0.134578104: [0.3434343434343, 0.6565656565657, 0.4343434343434, 0.5656565656566], 0.073972044: [0.3434343434343, 0.6565656565657, 0.4343434343434, 0.5656565656566], 0.353127232: [0.020202020202, 0.979797979798, 0.2020202020202, 0.7979797979798], 0.320681563: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.255790225: [0.3434343434343, 0.6565656565657, 0.4343434343434, 0.5656565656566], 0.817773697: [0.020202020202, 0.979797979798, 0.2020202020202, 0.7979797979798], 0.872257933: [0.0808080808081, 0.8080808080808, 0.1919191919192, 0.9191919191919], 0.710029589: [0.6868686868687, 0.3131313131313, 0.8686868686869, 0.1313131313131], 0.467605346: [0.1313131313131, 0.6868686868687, 0.3131313131313, 0.8686868686869], 0.612692582: [0.3232323232323, 0.7676767676768, 0.2323232323232, 0.6767676767677], 0.515355576: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.143148658: [0.2626262626263, 0.7373737373737, 0.3737373737374, 0.6262626262626], 0.337822671: [0.4444444444444, 0.5555555555556], 0.938985818: [0.020202020202, 0.979797979798, 0.2020202020202, 0.7979797979798], 0.841648811: [0.3434343434343, 0.6565656565657, 0.4343434343434, 0.5656565656566], 0.509233752: [0.1616161616162, 0.3838383838384, 0.6161616161616, 0.8383838383838], 0.484746454: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.601469238: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.932251811: [0.6868686868687, 0.3131313131313, 0.8686868686869, 0.1313131313131], 0.662891542: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.390266299: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.617998163: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.568615447: [0.1313131313131, 0.6868686868687, 0.3131313131313, 0.8686868686869], 0.561881441: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.996530966: [0.3232323232323, 0.7676767676768, 0.2323232323232, 0.6767676767677], 0.266197327: [0.0808080808081, 0.8080808080808, 0.1919191919192, 0.9191919191919], 0.845730028: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.158861341: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.656157535: [0.020202020202, 0.979797979798, 0.2020202020202, 0.7979797979798], 0.802469136: [0.4444444444444, 0.5555555555556], 0.562901745: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.197020712: [0.9292929292929, 0.0707070707071, 0.2929292929293, 0.7070707070707], 0.127844098: [0.2323232323232, 0.7676767676768, 0.6767676767677, 0.3232323232323], 0.536169779: [0.2828282828283, 0.1717171717172, 0.8282828282828, 0.7171717171717], 0.250892766: [0.040404040404, 0.4040404040404, 0.959595959596, 0.5959595959596], 0.759412305: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.662075298: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.765126008: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.109478625: [0.040404040404, 0.4040404040404, 0.959595959596, 0.5959595959596], 0.686766656: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.495153556: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.136414652: [0.9292929292929, 0.0707070707071, 0.2929292929293, 0.7070707070707], 0.757167636: [0.020202020202, 0.979797979798, 0.2020202020202, 0.7979797979798], 0.957963473: [0.040404040404, 0.4040404040404, 0.959595959596, 0.5959595959596], 0.619426589: [0.3434343434343, 0.6565656565657, 0.4343434343434, 0.5656565656566], 0.332925212: [0.020202020202, 0.979797979798, 0.2020202020202, 0.7979797979798], 0.300479543: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.782267116: [0.4444444444444, 0.5555555555556], 0.008468524: [0.040404040404, 0.4040404040404, 0.959595959596, 0.5959595959596], 0.122334456: [0.2222222222222, 0.7777777777778], 0.91694725: [0.8888888888889, 0.1111111111111], 0.246607489: [0.1616161616162, 0.3838383838384, 0.6161616161616, 0.8383838383838], 0.669625548: [0.6868686868687, 0.3131313131313, 0.8686868686869, 0.1313131313131], 0.181716151: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.144985206: [0.0808080808081, 0.8080808080808, 0.1919191919192, 0.9191919191919], 0.447403326: [0.1313131313131, 0.6868686868687, 0.3131313131313, 0.8686868686869], 0.414957657: [0.2828282828283, 0.1717171717172, 0.8282828282828, 0.7171717171717], 0.116620753: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.252729313: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.763085399: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.852055913: [0.0808080808081, 0.8080808080808, 0.1919191919192, 0.9191919191919], 0.513519029: [0.040404040404, 0.4040404040404, 0.959595959596, 0.5959595959596], 0.797979798: [0.0, 0.3333333333333, 0.6666666666667], 0.118049179: [0.7474747474747, 0.5252525252525, 0.2525252525253, 0.4747474747475], 0.190286705: [0.040404040404, 0.4040404040404, 0.959595959596, 0.5959595959596], 0.464544434: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.432098765: [0.8888888888889, 0.1111111111111], 0.053770023: [0.3434343434343, 0.6565656565657, 0.4343434343434, 0.5656565656566], 0.661667177: [0.9292929292929, 0.2929292929293, 0.7070707070707, 0.0707070707071], 0.370064279: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.160697888: [0.030303030303, 0.969696969697, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.931027446: [0.2626262626263, 0.7373737373737, 0.3737373737374, 0.6262626262626], 0.674523008: [0.8888888888889, 0.1111111111111], 0.770635649: [0.6868686868687, 0.3131313131313, 0.8686868686869, 0.1313131313131], 0.198857259: [0.7474747474747, 0.5252525252525, 0.2525252525253, 0.4747474747475], 0.481685542: [0.2525252525253, 0.5252525252525, 0.4747474747475, 0.7474747474747], 0.129680645: [0.040404040404, 0.4040404040404, 0.959595959596, 0.5959595959596], 0.996326905: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.814508724: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.560044893: [0.4444444444444, 0.5555555555556], 0.419651056: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.522497704: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.999591878: [0.020202020202, 0.979797979798, 0.2020202020202, 0.7979797979798], 0.136822773: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.994082237: [0.1616161616162, 0.3838383838384, 0.6161616161616, 0.8383838383838], 0.425364759: [0.2222222222222, 0.7777777777778], 0.01010101: [0.0, 0.3333333333333, 0.6666666666667], 0.094174064: [0.3434343434343, 0.6565656565657, 0.4343434343434, 0.5656565656566], 0.351902867: [0.040404040404, 0.4040404040404, 0.959595959596, 0.5959595959596], 0.719008264: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.641465157: [0.9292929292929, 0.2929292929293, 0.7070707070707, 0.0707070707071], 0.621671258: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.23415978: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.048872564: [0.040404040404, 0.4040404040404, 0.959595959596, 0.5959595959596], 0.031119274: [0.2828282828283, 0.1717171717172, 0.8282828282828, 0.7171717171717], 0.474951536: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.690439751: [0.0808080808081, 0.8080808080808, 0.1919191919192, 0.9191919191919], 0.63473115: [0.040404040404, 0.4040404040404, 0.959595959596, 0.5959595959596], 0.609019488: [0.1313131313131, 0.6868686868687, 0.3131313131313, 0.8686868686869], 0.098459341: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.678604224: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.915518825: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.818181818: [0.0, 0.6666666666667, 0.3333333333333], 0.358024691: [0.4444444444444, 0.5555555555556], 0.028670544: [0.040404040404, 0.4040404040404, 0.959595959596, 0.5959595959596], 0.85634119: [0.8888888888889, 0.1111111111111], 0.623507805: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.596775839: [0.2828282828283, 0.1717171717172, 0.8282828282828, 0.7171717171717], 0.034792368: [0.4444444444444, 0.5555555555556], 0.394755637: [0.2828282828283, 0.1717171717172, 0.8282828282828, 0.7171717171717], 0.652892562: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.070298949: [0.020202020202, 0.2020202020202, 0.979797979798, 0.7979797979798], 0.820018365: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.300275482: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.192123253: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.825732068: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.023773084: [0.0808080808081, 0.8080808080808, 0.1919191919192, 0.9191919191919], 0.663503724: [0.2525252525253, 0.5252525252525, 0.4747474747475, 0.7474747474747], 0.760840731: [0.3434343434343, 0.6565656565657, 0.4343434343434, 0.5656565656566], 0.444342414: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.411896745: [0.8888888888889, 0.1111111111111], 0.781042751: [0.3434343434343, 0.6565656565657, 0.4343434343434, 0.5656565656566], 0.199265381: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.043975105: [0.0808080808081, 0.8080808080808, 0.1919191919192, 0.9191919191919], 0.349862259: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.056014692: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.957351291: [0.8888888888889, 0.1111111111111], 0.892459953: [0.0808080808081, 0.8080808080808, 0.1919191919192, 0.9191919191919], 0.168248138: [0.2323232323232, 0.7676767676768, 0.6767676767677, 0.3232323232323], 0.96469748: [0.9292929292929, 0.2929292929293, 0.7070707070707, 0.0707070707071], 0.69778594: [0.2828282828283, 0.1717171717172, 0.8282828282828, 0.7171717171717], 0.67513519: [0.040404040404, 0.4040404040404, 0.959595959596, 0.5959595959596], 0.496786042: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.799816345: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.782879298: [0.9292929292929, 0.2929292929293, 0.7070707070707, 0.0707070707071], 0.676767677: [0.0, 0.3333333333333, 0.6666666666667], 0.856953372: [0.040404040404, 0.4040404040404, 0.959595959596, 0.5959595959596], 0.302112029: [0.030303030303, 0.969696969697, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.176818692: [0.9292929292929, 0.0707070707071, 0.2929292929293, 0.7070707070707], 0.144373023: [0.1313131313131, 0.6868686868687, 0.3131313131313, 0.8686868686869], 0.340271401: [0.2525252525253, 0.5252525252525, 0.4747474747475, 0.7474747474747], 0.711253954: [0.1616161616162, 0.3838383838384, 0.6161616161616, 0.8383838383838], 0.837975717: [0.020202020202, 0.979797979798, 0.2020202020202, 0.7979797979798], 0.545352515: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.278236915: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.320069381: [0.7474747474747, 0.5252525252525, 0.2525252525253, 0.4747474747475], 0.581267218: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.298438935: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.185389246: [0.0808080808081, 0.8080808080808, 0.1919191919192, 0.9191919191919], 0.522089583: [0.2525252525253, 0.5252525252525, 0.4747474747475, 0.7474747474747], 0.494541373: [0.020202020202, 0.979797979798, 0.2020202020202, 0.7979797979798], 0.32496684: [0.2626262626263, 0.7373737373737, 0.3737373737374, 0.6262626262626], 0.875114784: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.945719825: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.777777778: [0.0, 0.6666666666667, 0.3333333333333], 0.946740129: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.583103765: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.336598306: [0.3434343434343, 0.6565656565657, 0.4343434343434, 0.5656565656566], 0.161514131: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.129068462: [0.8888888888889, 0.1111111111111], 0.374553617: [0.2828282828283, 0.1717171717172, 0.8282828282828, 0.7171717171717], 0.309662279: [0.3232323232323, 0.7676767676768, 0.2323232323232, 0.6767676767677], 0.91939598: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.021324355: [0.2222222222222, 0.7777777777778], 0.779614325: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.280073462: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.785328028: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.687991021: [0.2222222222222, 0.7777777777778], 0.721661055: [0.4444444444444, 0.5555555555556], 0.623099684: [0.2525252525253, 0.5252525252525, 0.4747474747475, 0.7474747474747], 0.170084685: [0.040404040404, 0.4040404040404, 0.959595959596, 0.5959595959596], 0.137639016: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.391694725: [0.8888888888889, 0.1111111111111], 0.326803387: [0.0808080808081, 0.8080808080808, 0.1919191919192, 0.9191919191919], 0.976124885: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.076216713: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.562493623: [0.2525252525253, 0.5252525252525, 0.4747474747475, 0.7474747474747], 0.329660239: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.96714621: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.016426895: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.722273237: [0.9292929292929, 0.2929292929293, 0.7070707070707, 0.0707070707071], 0.296194266: [0.3434343434343, 0.6565656565657, 0.4343434343434, 0.5656565656566], 0.114376084: [0.3434343434343, 0.6565656565657, 0.4343434343434, 0.5656565656566], 0.385572901: [0.2626262626263, 0.7373737373737, 0.3737373737374, 0.6262626262626], 0.804305683: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.476584022: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.708805224: [0.2626262626263, 0.7373737373737, 0.3737373737374, 0.6262626262626], 0.951229466: [0.2626262626263, 0.7373737373737, 0.3737373737374, 0.6262626262626], 0.281910009: [0.030303030303, 0.969696969697, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.501887562: [0.2525252525253, 0.5252525252525, 0.4747474747475, 0.7474747474747], 0.789001122: [0.2222222222222, 0.7777777777778], 0.908172635: [0.969696969697, 0.030303030303, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.118661361: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.774308744: [0.3232323232323, 0.7676767676768, 0.2323232323232, 0.6767676767677], 0.87654321: [0.8888888888889, 0.1111111111111], 0.223956739: [0.2626262626263, 0.7373737373737, 0.3737373737374, 0.6262626262626], 0.540863177: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.821446791: [0.5656565656566, 0.6565656565657, 0.4343434343434, 0.3434343434343], 0.980002041: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.050505051: [0.0, 0.3333333333333, 0.6666666666667], 0.30476482: [0.2626262626263, 0.7373737373737, 0.3737373737374, 0.6262626262626], 0.272319151: [0.020202020202, 0.979797979798, 0.2020202020202, 0.7979797979798], 0.090500969: [0.020202020202, 0.2020202020202, 0.979797979798, 0.7979797979798], 0.834710744: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.737373737: [0.0, 0.3333333333333, 0.6666666666667], 0.232527293: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.163350679: [0.2626262626263, 0.7373737373737, 0.3737373737374, 0.6262626262626], 0.13090501: [0.020202020202, 0.979797979798, 0.2020202020202, 0.7979797979798], 0.548413427: [0.1313131313131, 0.6868686868687, 0.3131313131313, 0.8686868686869], 0.953678196: [0.1616161616162, 0.3838383838384, 0.6161616161616, 0.8383838383838], 0.107438017: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.904091419: [0.9292929292929, 0.2929292929293, 0.7070707070707, 0.0707070707071], 0.454545455: [0.0, 0.3333333333333, 0.6666666666667], 0.354351597: [0.2828282828283, 0.1717171717172, 0.8282828282828, 0.7171717171717], 0.289460259: [0.2323232323232, 0.7676767676768, 0.6767676767677, 0.3232323232323], 0.25701459: [0.4444444444444, 0.5555555555556], 0.986123865: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.259871442: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.208652178: [0.2323232323232, 0.7676767676768, 0.6767676767677, 0.3232323232323], 0.171921233: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.68003265: [0.3434343434343, 0.6565656565657, 0.4343434343434, 0.5656565656566], 0.468829711: [0.1616161616162, 0.3838383838384, 0.6161616161616, 0.8383838383838], 0.582695643: [0.2525252525253, 0.5252525252525, 0.4747474747475, 0.7474747474747], 0.748597082: [0.2222222222222, 0.7777777777778], 0.67758392: [0.2828282828283, 0.1717171717172, 0.8282828282828, 0.7171717171717], 0.755943271: [0.040404040404, 0.4040404040404, 0.959595959596, 0.5959595959596], 0.306601367: [0.0808080808081, 0.8080808080808, 0.1919191919192, 0.9191919191919], 0.179063361: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.908988879: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.811651872: [0.0808080808081, 0.8080808080808, 0.1919191919192, 0.9191919191919], 0.217222732: [0.9292929292929, 0.0707070707071, 0.2929292929293, 0.7070707070707], 0.148046118: [0.2323232323232, 0.7676767676768, 0.6767676767677, 0.3232323232323], 0.616977859: [0.2828282828283, 0.1717171717172, 0.8282828282828, 0.7171717171717], 0.250280584: [0.8888888888889, 0.1111111111111], 0.456382002: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.291296806: [0.040404040404, 0.4040404040404, 0.959595959596, 0.5959595959596], 0.878379757: [0.020202020202, 0.979797979798, 0.2020202020202, 0.7979797979798], 0.845934088: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.225793286: [0.0808080808081, 0.8080808080808, 0.1919191919192, 0.9191919191919], 0.078257321: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.156616672: [0.9292929292929, 0.0707070707071, 0.2929292929293, 0.7070707070707], 0.981634527: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.768799102: [0.2222222222222, 0.7777777777778], 0.597796143: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.500459137: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.131313131: [0.0, 0.3333333333333, 0.6666666666667], 0.70023467: [0.3434343434343, 0.6565656565657, 0.4343434343434, 0.5656565656566], 0.50617284: [0.2222222222222, 0.7777777777778], 0.439444955: [0.9292929292929, 0.0707070707071, 0.2929292929293, 0.7070707070707], 0.580859096: [0.9292929292929, 0.2929292929293, 0.7070707070707, 0.0707070707071], 0.2845628: [0.2626262626263, 0.7373737373737, 0.3737373737374, 0.6262626262626], 0.252117131: [0.020202020202, 0.979797979798, 0.2020202020202, 0.7979797979798], 0.97979798: [0.0, 0.6666666666667, 0.3333333333333], 0.696969697: [0.0, 0.3333333333333, 0.6666666666667], 0.502295684: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.870421386: [0.2626262626263, 0.7373737373737, 0.3737373737374, 0.6262626262626], 0.508009387: [0.1313131313131, 0.6868686868687, 0.3131313131313, 0.8686868686869], 0.241505969: [0.030303030303, 0.969696969697, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.269258239: [0.3232323232323, 0.7676767676768, 0.2323232323232, 0.6767676767677], 0.096418733: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.210488726: [0.040404040404, 0.4040404040404, 0.959595959596, 0.5959595959596], 0.825119886: [0.2525252525253, 0.5252525252525, 0.4747474747475, 0.7474747474747], 0.698806244: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.971431487: [0.2626262626263, 0.7373737373737, 0.3737373737374, 0.6262626262626], 0.704519947: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.504132231: [0.030303030303, 0.969696969697, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.448627691: [0.1616161616162, 0.3838383838384, 0.6161616161616, 0.8383838383838], 0.03030303: [0.0, 0.3333333333333, 0.6666666666667], 0.383736353: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.102132435: [0.2222222222222, 0.7777777777778], 0.868584838: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.286399347: [0.0808080808081, 0.8080808080808, 0.1919191919192, 0.9191919191919], 0.21905928: [0.7474747474747, 0.5252525252525, 0.2525252525253, 0.4747474747475], 0.933476176: [0.1616161616162, 0.3838383838384, 0.6161616161616, 0.8383838383838], 0.807162534: [0.969696969697, 0.030303030303, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.346393225: [0.1313131313131, 0.6868686868687, 0.3131313131313, 0.8686868686869], 0.771247832: [0.0808080808081, 0.8080808080808, 0.1919191919192, 0.9191919191919], 0.902254872: [0.5656565656566, 0.6565656565657, 0.4343434343434, 0.3434343434343], 0.239669421: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.498214468: [0.3434343434343, 0.6565656565657, 0.4343434343434, 0.5656565656566], 0.414141414: [0.0, 0.3333333333333, 0.6666666666667], 0.400877461: [0.7474747474747, 0.5252525252525, 0.2525252525253, 0.4747474747475], 0.630445873: [0.1616161616162, 0.3838383838384, 0.6161616161616, 0.8383838383838], 0.436179982: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.850219365: [0.2626262626263, 0.7373737373737, 0.3737373737374, 0.6262626262626], 0.72043669: [0.3434343434343, 0.6565656565657, 0.4343434343434, 0.5656565656566], 0.338842975: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.195184165: [0.3434343434343, 0.6565656565657, 0.4343434343434, 0.5656565656566], 0.072543618: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.74063871: [0.3434343434343, 0.6565656565657, 0.4343434343434, 0.5656565656566], 0.054994388: [0.4444444444444, 0.5555555555556], 0.891847771: [0.6868686868687, 0.3131313131313, 0.8686868686869, 0.1313131313131], 0.001122334: [0.2222222222222, 0.7777777777778], 0.110702989: [0.020202020202, 0.979797979798, 0.2020202020202, 0.7979797979798], 0.729007244: [0.2626262626263, 0.7373737373737, 0.3737373737374, 0.6262626262626], 0.133149679: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.557392103: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.803081318: [0.9292929292929, 0.2929292929293, 0.7070707070707, 0.0707070707071], 0.203754719: [0.2626262626263, 0.7373737373737, 0.3737373737374, 0.6262626262626], 0.17130905: [0.020202020202, 0.979797979798, 0.2020202020202, 0.7979797979798], 0.966942149: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.474747475: [0.0, 0.3333333333333, 0.6666666666667], 0.394143455: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.923681257: [0.4444444444444, 0.5555555555556], 0.948576676: [0.969696969697, 0.030303030303, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.744923987: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.26436078: [0.2626262626263, 0.7373737373737, 0.3737373737374, 0.6262626262626], 0.906336088: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.890011223: [0.2222222222222, 0.7777777777778], 0.656565657: [0.0, 0.3333333333333, 0.6666666666667], 0.340679522: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.212325273: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.298030813: [0.9292929292929, 0.0707070707071, 0.2929292929293, 0.7070707070707], 0.378838894: [0.9292929292929, 0.0707070707071, 0.2929292929293, 0.7070707070707], 0.647586981: [0.2222222222222, 0.7777777777778], 0.219467401: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.050096929: [0.020202020202, 0.979797979798, 0.2020202020202, 0.7979797979798], 0.658402204: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.08070605: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.561065197: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.006631976: [0.2323232323232, 0.7676767676768, 0.6767676767677, 0.3232323232323], 0.664115907: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.100908071: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.156004489: [0.4444444444444, 0.5555555555556], 0.428425671: [0.1616161616162, 0.3838383838384, 0.6161616161616, 0.8383838383838], 0.331088664: [0.8888888888889, 0.1111111111111], 0.854912764: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.269054178: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.795735129: [0.8888888888889, 0.1111111111111], 0.730843791: [0.0808080808081, 0.8080808080808, 0.1919191919192, 0.9191919191919], 0.555555556: [0.0, 0.3333333333333, 0.6666666666667], 0.105193348: [0.1616161616162, 0.3838383838384, 0.6161616161616, 0.8383838383838], 0.164575043: [0.1313131313131, 0.6868686868687, 0.3131313131313, 0.8686868686869], 0.445566779: [0.2222222222222, 0.7777777777778], 0.380675441: [0.2525252525253, 0.5252525252525, 0.4747474747475, 0.7474747474747], 0.860422406: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.627997143: [0.2626262626263, 0.7373737373737, 0.3737373737374, 0.6262626262626], 0.762065095: [0.4444444444444, 0.5555555555556], 0.318640955: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.866136109: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.991633507: [0.2626262626263, 0.7373737373737, 0.6262626262626, 0.3737373737374], 0.830017345: [0.2626262626263, 0.7373737373737, 0.3737373737374, 0.6262626262626], 0.797571676: [0.020202020202, 0.979797979798, 0.2020202020202, 0.7979797979798], 0.068462402: [0.8888888888889, 0.1111111111111], 0.667789001: [0.2222222222222, 0.7777777777778], 0.638200184: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.077032956: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.583307826: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.5667789: [0.2222222222222, 0.7777777777778], 0.079889807: [0.030303030303, 0.969696969697, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.838383838: [0.0, 0.6666666666667, 0.3333333333333], 0.831853892: [0.0808080808081, 0.8080808080808, 0.1919191919192, 0.9191919191919], 0.04030201: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.026833997: [0.2323232323232, 0.7676767676768, 0.6767676767677, 0.3232323232323], 0.373941435: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.989796959: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.684113866: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.006427916: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.713498623: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.616161616: [0.0, 0.3333333333333, 0.6666666666667], 0.024385267: [0.1616161616162, 0.3838383838384, 0.6161616161616, 0.8383838383838], 0.320477502: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.502499745: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.767574737: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.730231609: [0.1313131313131, 0.6868686868687, 0.3131313131313, 0.8686868686869], 0.358636874: [0.9292929292929, 0.0707070707071, 0.2929292929293, 0.7070707070707], 0.326191205: [0.1313131313131, 0.6868686868687, 0.3131313131313, 0.8686868686869], 0.221303949: [0.030303030303, 0.969696969697, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.021936537: [0.2626262626263, 0.7373737373737, 0.3737373737374, 0.6262626262626], 0.423324151: [0.030303030303, 0.969696969697, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.883277217: [0.4444444444444, 0.5555555555556], 0.485970819: [0.2222222222222, 0.7777777777778], 0.157841037: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.520661157: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.623711866: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.044587287: [0.1616161616162, 0.3838383838384, 0.6161616161616, 0.8383838383838], 0.52637486: [0.2222222222222, 0.7777777777778], 0.632894603: [0.3232323232323, 0.7676767676768, 0.2323232323232, 0.6767676767677], 0.408223651: [0.1616161616162, 0.3838383838384, 0.6161616161616, 0.8383838383838], 0.343332313: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.310886644: [0.8888888888889, 0.1111111111111], 0.439853076: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.197428834: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.600448934: [0.4444444444444, 0.5555555555556], 0.035404551: [0.9292929292929, 0.0707070707071, 0.2929292929293, 0.7070707070707], 0.595959596: [0.0, 0.3333333333333, 0.6666666666667], 0.235588205: [0.3434343434343, 0.6565656565657, 0.4343434343434, 0.5656565656566], 0.092745638: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.755331089: [0.8888888888889, 0.1111111111111], 0.649423528: [0.1313131313131, 0.6868686868687, 0.3131313131313, 0.8686868686869], 0.864911744: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.560657076: [0.9292929292929, 0.2929292929293, 0.7070707070707, 0.0707070707071], 0.528211407: [0.1313131313131, 0.6868686868687, 0.3131313131313, 0.8686868686869], 0.360473421: [0.2525252525253, 0.5252525252525, 0.4747474747475, 0.7474747474747], 0.173553719: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.984287318: [0.4444444444444, 0.5555555555556], 0.244158759: [0.2626262626263, 0.7373737373737, 0.3737373737374, 0.6262626262626], 0.968778696: [0.969696969697, 0.030303030303, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.174982145: [0.3434343434343, 0.6565656565657, 0.4343434343434, 0.5656565656566], 0.142536476: [0.2222222222222, 0.7777777777778], 0.440669319: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.926129987: [0.2525252525253, 0.5252525252525, 0.4747474747475, 0.7474747474747], 0.34516886: [0.2626262626263, 0.7373737373737, 0.3737373737374, 0.6262626262626], 0.714927048: [0.8888888888889, 0.1111111111111], 0.744311805: [0.2525252525253, 0.5252525252525, 0.4747474747475, 0.7474747474747], 0.478012448: [0.3434343434343, 0.6565656565657, 0.4343434343434, 0.5656565656566], 0.888786858: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.399449036: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.183552699: [0.2626262626263, 0.7373737373737, 0.3737373737374, 0.6262626262626], 0.15110703: [0.020202020202, 0.979797979798, 0.2020202020202, 0.7979797979798], 0.992857872: [0.6868686868687, 0.3131313131313, 0.8686868686869, 0.1313131313131], 0.494949495: [0.0, 0.3333333333333, 0.6666666666667], 0.65983063: [0.3434343434343, 0.6565656565657, 0.4343434343434, 0.5656565656566], 0.359044995: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.82369146: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.121110091: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.666564636: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.037649219: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.338434854: [0.9292929292929, 0.0707070707071, 0.2929292929293, 0.7070707070707], 0.305989185: [0.1313131313131, 0.6868686868687, 0.3131313131313, 0.8686868686869], 0.273543516: [0.2828282828283, 0.1717171717172, 0.8282828282828, 0.7171717171717], 0.017039078: [0.7474747474747, 0.5252525252525, 0.2525252525253, 0.4747474747475], 0.777981839: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.577594123: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.742475258: [0.9292929292929, 0.2929292929293, 0.7070707070707, 0.0707070707071], 0.832466075: [0.1616161616162, 0.3838383838384, 0.6161616161616, 0.8383838383838], 0.615753495: [0.020202020202, 0.979797979798, 0.2020202020202, 0.7979797979798], 0.518416488: [0.3434343434343, 0.6565656565657, 0.4343434343434, 0.5656565656566], 0.135802469: [0.4444444444444, 0.5555555555556], 0.764513825: [0.2525252525253, 0.5252525252525, 0.4747474747475, 0.7474747474747], 0.323130293: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.290684624: [0.8888888888889, 0.1111111111111], 0.237424753: [0.9292929292929, 0.0707070707071, 0.2929292929293, 0.7070707070707], 0.046831956: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.774104683: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.812264055: [0.1616161616162, 0.3838383838384, 0.6161616161616, 0.8383838383838], 0.747372717: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.486583002: [0.2626262626263, 0.7373737373737, 0.3737373737374, 0.6262626262626], 0.650035711: [0.0808080808081, 0.8080808080808, 0.1919191919192, 0.9191919191919], 0.437608407: [0.3434343434343, 0.6565656565657, 0.4343434343434, 0.5656565656566], 0.520253035: [0.9292929292929, 0.0707070707071, 0.2929292929293, 0.7070707070707], 0.097234976: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.905927967: [0.2525252525253, 0.5252525252525, 0.4747474747475, 0.7474747474747], 0.847566575: [0.969696969697, 0.030303030303, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.375573921: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.917559433: [0.040404040404, 0.4040404040404, 0.959595959596, 0.5959595959596], 0.245995307: [0.0808080808081, 0.8080808080808, 0.1919191919192, 0.9191919191919], 0.100091827: [0.030303030303, 0.969696969697, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.602285481: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.645546373: [0.969696969697, 0.030303030303, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.749209264: [0.2626262626263, 0.7373737373737, 0.3737373737374, 0.6262626262626], 0.943883277: [0.4444444444444, 0.5555555555556], 0.454749515: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.58698092: [0.2222222222222, 0.7777777777778], 0.829405163: [0.2222222222222, 0.7777777777778], 0.592490562: [0.3232323232323, 0.7676767676768, 0.2323232323232, 0.6767676767677], 0.069074584: [0.040404040404, 0.4040404040404, 0.959595959596, 0.5959595959596], 0.292521171: [0.020202020202, 0.979797979798, 0.2020202020202, 0.7979797979798], 0.222120192: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.978165493: [0.040404040404, 0.4040404040404, 0.959595959596, 0.5959595959596], 0.983062953: [0.5656565656566, 0.6565656565657, 0.4343434343434, 0.3434343434343], 0.848382818: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.815937149: [0.8888888888889, 0.1111111111111], 0.87899194: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.607182941: [0.2222222222222, 0.7777777777778], 0.205591266: [0.0808080808081, 0.8080808080808, 0.1919191919192, 0.9191919191919], 0.827364555: [0.969696969697, 0.030303030303, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.632690542: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.230690746: [0.040404040404, 0.4040404040404, 0.959595959596, 0.5959595959596], 0.198245077: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.007856341: [0.8888888888889, 0.1111111111111], 0.448015509: [0.0808080808081, 0.8080808080808, 0.1919191919192, 0.9191919191919], 0.622487501: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.015610652: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.489031731: [0.1616161616162, 0.3838383838384, 0.6161616161616, 0.8383838383838], 0.602897664: [0.2525252525253, 0.5252525252525, 0.4747474747475, 0.7474747474747], 0.285787165: [0.1313131313131, 0.6868686868687, 0.3131313131313, 0.8686868686869], 0.253341496: [0.2828282828283, 0.1717171717172, 0.8282828282828, 0.7171717171717], 0.077645138: [0.7474747474747, 0.5252525252525, 0.2525252525253, 0.4747474747475], 0.94449546: [0.9292929292929, 0.2929292929293, 0.7070707070707, 0.0707070707071], 0.2392613: [0.7474747474747, 0.5252525252525, 0.2525252525253, 0.4747474747475], 0.537190083: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.432710948: [0.040404040404, 0.4040404040404, 0.959595959596, 0.5959595959596], 0.400265279: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.929190899: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.928374656: [0.969696969697, 0.030303030303, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.302928273: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.270482604: [0.8888888888889, 0.1111111111111], 0.213957759: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.177226814: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.733700643: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.636363636: [0.0, 0.3333333333333, 0.6666666666667], 0.215386185: [0.3434343434343, 0.6565656565657, 0.4343434343434, 0.5656565656566], 0.182940516: [0.2222222222222, 0.7777777777778], 0.482297725: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.706968677: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.011937557: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.384960718: [0.2222222222222, 0.7777777777778], 0.717375778: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.032139578: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.355371901: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.479236813: [0.4444444444444, 0.5555555555556], 0.153351699: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.769411285: [0.2626262626263, 0.7373737373737, 0.3737373737374, 0.6262626262626], 0.798796041: [0.2828282828283, 0.1717171717172, 0.8282828282828, 0.7171717171717], 0.19151107: [0.020202020202, 0.979797979798, 0.2020202020202, 0.7979797979798], 0.159065401: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.151515152: [0.0, 0.3333333333333, 0.6666666666667], 0.54657688: [0.2222222222222, 0.7777777777778], 0.789613305: [0.2626262626263, 0.7373737373737, 0.3737373737374, 0.6262626262626], 0.070707071: [0.0, 0.3333333333333, 0.6666666666667], 0.555147434: [0.020202020202, 0.979797979798, 0.2020202020202, 0.7979797979798], 0.872870115: [0.1616161616162, 0.3838383838384, 0.6161616161616, 0.8383838383838], 0.937761453: [0.040404040404, 0.4040404040404, 0.959595959596, 0.5959595959596], 0.869809203: [0.2222222222222, 0.7777777777778], 0.710641771: [0.0808080808081, 0.8080808080808, 0.1919191919192, 0.9191919191919], 0.89674523: [0.8888888888889, 0.1111111111111], 0.108866442: [0.8888888888889, 0.1111111111111], 0.419242934: [0.9292929292929, 0.0707070707071, 0.2929292929293, 0.7070707070707], 0.004183247: [0.1616161616162, 0.3838383838384, 0.6161616161616, 0.8383838383838], 0.950617284: [0.2222222222222, 0.7777777777778], 0.715539231: [0.040404040404, 0.4040404040404, 0.959595959596, 0.5959595959596], 0.939598: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.840220386: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.643913886: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.702071217: [0.9292929292929, 0.2929292929293, 0.7070707070707, 0.0707070707071], 0.564738292: [0.030303030303, 0.969696969697, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.567391083: [0.2626262626263, 0.7373737373737, 0.3737373737374, 0.6262626262626], 0.487807367: [0.1313131313131, 0.6868686868687, 0.3131313131313, 0.8686868686869], 0.380063259: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.117436996: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.985307622: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.887970615: [0.969696969697, 0.030303030303, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.479848995: [0.9292929292929, 0.0707070707071, 0.2929292929293, 0.7070707070707], 0.925517804: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.693296602: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.184777064: [0.1313131313131, 0.6868686868687, 0.3131313131313, 0.8686868686869], 0.572288542: [0.3232323232323, 0.7676767676768, 0.2323232323232, 0.6767676767677], 0.06050403: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.56922763: [0.0808080808081, 0.8080808080808, 0.1919191919192, 0.9191919191919], 0.462095705: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.539842873: [0.4444444444444, 0.5555555555556], 0.364758698: [0.2222222222222, 0.7777777777778], 0.621263136: [0.9292929292929, 0.0707070707071, 0.2929292929293, 0.7070707070707], 0.089276604: [0.040404040404, 0.4040404040404, 0.959595959596, 0.5959595959596], 0.191919192: [0.0, 0.3333333333333, 0.6666666666667], 0.988980716: [0.969696969697, 0.030303030303, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.335169881: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.798183859: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.668401184: [0.2626262626263, 0.7373737373737, 0.3737373737374, 0.6262626262626], 0.603509846: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.538618508: [0.3434343434343, 0.6565656565657, 0.4343434343434, 0.5656565656566], 0.414345475: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.670237731: [0.0808080808081, 0.8080808080808, 0.1919191919192, 0.9191919191919], 0.816549332: [0.040404040404, 0.4040404040404, 0.959595959596, 0.5959595959596], 0.168044077: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.976328946: [0.3232323232323, 0.7676767676768, 0.2323232323232, 0.6767676767677], 0.238649117: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.201918172: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.169472503: [0.8888888888889, 0.1111111111111], 0.735129068: [0.8888888888889, 0.1111111111111], 0.399040914: [0.9292929292929, 0.0707070707071, 0.2929292929293, 0.7070707070707], 0.366595245: [0.1313131313131, 0.6868686868687, 0.3131313131313, 0.8686868686869], 0.097847158: [0.7474747474747, 0.5252525252525, 0.2525252525253, 0.4747474747475], 0.055606571: [0.9292929292929, 0.0707070707071, 0.2929292929293, 0.7070707070707], 0.964085297: [0.4444444444444, 0.5555555555556], 0.540455056: [0.9292929292929, 0.0707070707071, 0.2929292929293, 0.7070707070707], 0.178043057: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.145597388: [0.1616161616162, 0.3838383838384, 0.6161616161616, 0.8383838383838], 0.746556474: [0.969696969697, 0.030303030303, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.050709111: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.483930211: [0.030303030303, 0.969696969697, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.531884502: [0.3232323232323, 0.7676767676768, 0.2323232323232, 0.6767676767677], 0.217630854: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.041526375: [0.2222222222222, 0.7777777777778], 0.289256198: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.910825426: [0.2626262626263, 0.7373737373737, 0.3737373737374, 0.6262626262626], 0.083766963: [0.1313131313131, 0.6868686868687, 0.3131313131313, 0.8686868686869], 0.359861239: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.32741557: [0.1616161616162, 0.3838383838384, 0.6161616161616, 0.8383838383838], 0.9848995: [0.9292929292929, 0.2929292929293, 0.7070707070707, 0.0707070707071], 0.905315784: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.036628915: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.801244771: [0.3434343434343, 0.6565656565657, 0.4343434343434, 0.5656565656566], 0.193755739: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.277216611: [0.4444444444444, 0.5555555555556], 0.626160596: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.593714927: [0.8888888888889, 0.1111111111111], 0.162738496: [0.2222222222222, 0.7777777777778], 0.377002347: [0.3434343434343, 0.6565656565657, 0.4343434343434, 0.5656565656566], 0.344556678: [0.2222222222222, 0.7777777777778], 0.27966534: [0.7474747474747, 0.5252525252525, 0.2525252525253, 0.4747474747475], 0.090909091: [0.0, 0.3333333333333, 0.6666666666667], 0.575349454: [0.020202020202, 0.979797979798, 0.2020202020202, 0.7979797979798], 0.855116825: [0.3232323232323, 0.7676767676768, 0.2323232323232, 0.6767676767677], 0.822671156: [0.4444444444444, 0.5555555555556], 0.525150495: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.491480461: [0.3232323232323, 0.7676767676768, 0.2323232323232, 0.6767676767677], 0.595551474: [0.020202020202, 0.979797979798, 0.2020202020202, 0.7979797979798], 0.563105806: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.89919396: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.138863381: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.461891644: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.584940312: [0.969696969697, 0.030303030303, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.997755331: [0.8888888888889, 0.1111111111111], 0.986736047: [0.2525252525253, 0.5252525252525, 0.4747474747475, 0.7474747474747], 0.942658912: [0.5656565656566, 0.6565656565657, 0.4343434343434, 0.3434343434343], 0.915722885: [0.3232323232323, 0.7676767676768, 0.2323232323232, 0.6767676767677], 0.757575758: [0.0, 0.3333333333333, 0.6666666666667], 0.792062034: [0.1616161616162, 0.3838383838384, 0.6161616161616, 0.8383838383838], 0.694725028: [0.8888888888889, 0.1111111111111], 0.62983369: [0.0808080808081, 0.8080808080808, 0.1919191919192, 0.9191919191919], 0.500051015: [0.9292929292929, 0.0707070707071, 0.2929292929293, 0.7070707070707], 0.898581777: [0.020202020202, 0.979797979798, 0.2020202020202, 0.7979797979798], 0.064177125: [0.0808080808081, 0.1919191919192, 0.9191919191919, 0.8080808080808], 0.313947556: [0.2828282828283, 0.1717171717172, 0.8282828282828, 0.7171717171717], 0.249056219: [0.3232323232323, 0.7676767676768, 0.2323232323232, 0.6767676767677], 0.736965616: [0.020202020202, 0.979797979798, 0.2020202020202, 0.7979797979798], 0.511478421: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.067033976: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.237832874: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.858789919: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.639628609: [0.3434343434343, 0.6565656565657, 0.4343434343434, 0.5656565656566], 0.05785124: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.493317008: [0.040404040404, 0.4040404040404, 0.959595959596, 0.5959595959596], 0.696561575: [0.020202020202, 0.979797979798, 0.2020202020202, 0.7979797979798], 0.257626773: [0.9292929292929, 0.0707070707071, 0.2929292929293, 0.7070707070707], 0.01765126: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.48107336: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.225181104: [0.1313131313131, 0.6868686868687, 0.3131313131313, 0.8686868686869], 0.893072135: [0.1616161616162, 0.3838383838384, 0.6161616161616, 0.8383838383838], 0.542291603: [0.2525252525253, 0.5252525252525, 0.4747474747475, 0.7474747474747], 0.960412203: [0.2828282828283, 0.1717171717172, 0.8282828282828, 0.7171717171717], 0.904499541: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.30721355: [0.1616161616162, 0.3838383838384, 0.6161616161616, 0.8383838383838], 0.232323232: [0.0, 0.3333333333333, 0.6666666666667], 0.599224569: [0.3434343434343, 0.6565656565657, 0.4343434343434, 0.5656565656566], 0.415977961: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.612488522: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.515151515: [0.0, 0.3333333333333, 0.6666666666667], 0.112947658: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.132129375: [0.2828282828283, 0.1717171717172, 0.8282828282828, 0.7171717171717], 0.454137333: [0.020202020202, 0.979797979798, 0.2020202020202, 0.7979797979798], 0.553310887: [0.8888888888889, 0.1111111111111], 0.01520253: [0.9292929292929, 0.0707070707071, 0.2929292929293, 0.7070707070707], 0.875318845: [0.3232323232323, 0.7676767676768, 0.2323232323232, 0.6767676767677], 0.324354658: [0.2222222222222, 0.7777777777778], 0.25946332: [0.7474747474747, 0.5252525252525, 0.2525252525253, 0.4747474747475], 0.171717172: [0.0, 0.3333333333333, 0.6666666666667], 0.949392919: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.242322212: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.209876543: [0.8888888888889, 0.1111111111111], 0.516988062: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.471278441: [0.3232323232323, 0.7676767676768, 0.2323232323232, 0.6767676767677], 0.438832772: [0.4444444444444, 0.5555555555556], 0.522701765: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.952453831: [0.6868686868687, 0.3131313131313, 0.8686868686869, 0.1313131313131], 0.895316804: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.441689624: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.727170697: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.946332007: [0.2525252525253, 0.5252525252525, 0.4747474747475, 0.7474747474747], 0.147842057: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.784103663: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.218447097: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.186001428: [0.1616161616162, 0.3838383838384, 0.6161616161616, 0.8383838383838], 0.149270483: [0.8888888888889, 0.1111111111111], 0.654320988: [0.8888888888889, 0.1111111111111], 0.58942965: [0.0808080808081, 0.8080808080808, 0.1919191919192, 0.9191919191919], 0.140495868: [0.030303030303, 0.969696969697, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.526987042: [0.2626262626263, 0.7373737373737, 0.3737373737374, 0.6262626262626], 0.393939394: [0.0, 0.3333333333333, 0.6666666666667], 0.980614223: [0.2828282828283, 0.1717171717172, 0.8282828282828, 0.7171717171717], 0.836139169: [0.8888888888889, 0.1111111111111], 0.84389348: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.717171717: [0.0, 0.6666666666667, 0.3333333333333], 0.103968983: [0.1313131313131, 0.6868686868687, 0.3131313131313, 0.8686868686869], 0.473114988: [0.040404040404, 0.4040404040404, 0.959595959596, 0.5959595959596], 0.125395368: [0.1616161616162, 0.3838383838384, 0.6161616161616, 0.8383838383838], 0.052341598: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.443526171: [0.030303030303, 0.969696969697, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.689827569: [0.6868686868687, 0.3131313131313, 0.8686868686869, 0.1313131313131], 0.921028466: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.787776757: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.203142536: [0.2222222222222, 0.7777777777778], 0.463728191: [0.030303030303, 0.969696969697, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.075808591: [0.9292929292929, 0.0707070707071, 0.2929292929293, 0.7070707070707], 0.111111111: [0.0, 0.3333333333333, 0.6666666666667], 0.590041832: [0.1616161616162, 0.3838383838384, 0.6161616161616, 0.8383838383838], 0.081930415: [0.2222222222222, 0.7777777777778], 0.572084481: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.36271809: [0.030303030303, 0.969696969697, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.890623406: [0.2626262626263, 0.7373737373737, 0.3737373737374, 0.6262626262626], 0.610243853: [0.1616161616162, 0.3838383838384, 0.6161616161616, 0.8383838383838], 0.433935313: [0.020202020202, 0.979797979798, 0.2020202020202, 0.7979797979798], 0.401489644: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.465768799: [0.2222222222222, 0.7777777777778], 0.836751352: [0.040404040404, 0.4040404040404, 0.959595959596, 0.5959595959596], 0.511682481: [0.3232323232323, 0.7676767676768, 0.2323232323232, 0.6767676767677], 0.211713091: [0.020202020202, 0.979797979798, 0.2020202020202, 0.7979797979798], 0.839200082: [0.2828282828283, 0.1717171717172, 0.8282828282828, 0.7171717171717], 0.676971738: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.547189062: [0.2626262626263, 0.7373737373737, 0.3737373737374, 0.6262626262626], 0.418630752: [0.4444444444444, 0.5555555555556], 0.514743394: [0.020202020202, 0.979797979798, 0.2020202020202, 0.7979797979798], 0.353739414: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.534945414: [0.020202020202, 0.979797979798, 0.2020202020202, 0.7979797979798], 0.084379145: [0.0808080808081, 0.8080808080808, 0.1919191919192, 0.9191919191919], 0.867768595: [0.969696969697, 0.030303030303, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.998367514: [0.040404040404, 0.4040404040404, 0.959595959596, 0.5959595959596], 0.95980002: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.087235996: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.673094582: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.743699622: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.558820529: [0.3434343434343, 0.6565656565657, 0.4343434343434, 0.5656565656566], 0.613916947: [0.8888888888889, 0.1111111111111], 0.60963167: [0.0808080808081, 0.8080808080808, 0.1919191919192, 0.9191919191919], 0.468217529: [0.0808080808081, 0.8080808080808, 0.1919191919192, 0.9191919191919], 0.54902561: [0.0808080808081, 0.8080808080808, 0.1919191919192, 0.9191919191919], 0.457810428: [0.3434343434343, 0.6565656565657, 0.4343434343434, 0.5656565656566], 0.926742169: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.088664422: [0.8888888888889, 0.1111111111111], 0.373737374: [0.0, 0.3333333333333, 0.6666666666667], 0.972655851: [0.6868686868687, 0.3131313131313, 0.8686868686869, 0.1313131313131], 0.228854199: [0.3232323232323, 0.7676767676768, 0.2323232323232, 0.6767676767677], 0.940210183: [0.2828282828283, 0.1717171717172, 0.8282828282828, 0.7171717171717], 0.19640853: [0.4444444444444, 0.5555555555556], 0.417406387: [0.3434343434343, 0.6565656565657, 0.4343434343434, 0.5656565656566], 0.528823589: [0.0808080808081, 0.8080808080808, 0.1919191919192, 0.9191919191919], 0.452912968: [0.040404040404, 0.4040404040404, 0.959595959596, 0.5959595959596], 0.38802163: [0.1616161616162, 0.3838383838384, 0.6161616161616, 0.8383838383838], 0.395775941: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.818385879: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.918783798: [0.020202020202, 0.979797979798, 0.2020202020202, 0.7979797979798], 0.54167942: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.434343434: [0.0, 0.3333333333333, 0.6666666666667], 0.685950413: [0.969696969697, 0.030303030303, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.204979084: [0.1313131313131, 0.6868686868687, 0.3131313131313, 0.8686868686869], 0.172533415: [0.2828282828283, 0.1717171717172, 0.8282828282828, 0.7171717171717], 0.405162738: [0.2222222222222, 0.7777777777778], 0.863687379: [0.9292929292929, 0.2929292929293, 0.7070707070707, 0.0707070707071], 0.212121212: [0.0, 0.3333333333333, 0.6666666666667], 0.064789307: [0.1616161616162, 0.3838383838384, 0.6161616161616, 0.8383838383838], 0.531680441: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.115600449: [0.4444444444444, 0.5555555555556], 0.459646975: [0.9292929292929, 0.0707070707071, 0.2929292929293, 0.7070707070707], 0.504948475: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.413733293: [0.020202020202, 0.979797979798, 0.2020202020202, 0.7979797979798], 0.381287624: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.805530048: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.466380982: [0.2626262626263, 0.7373737373737, 0.3737373737374, 0.6262626262626], 0.965105601: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.188246097: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.010305071: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.701459035: [0.4444444444444, 0.5555555555556], 0.189674523: [0.8888888888889, 0.1111111111111], 0.506785022: [0.2626262626263, 0.7373737373737, 0.3737373737374, 0.6262626262626], 0.430874401: [0.3232323232323, 0.7676767676768, 0.2323232323232, 0.6767676767677], 0.398428732: [0.4444444444444, 0.5555555555556], 0.333537394: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.877155392: [0.040404040404, 0.4040404040404, 0.959595959596, 0.5959595959596], 0.529435772: [0.1616161616162, 0.3838383838384, 0.6161616161616, 0.8383838383838], 0.962860933: [0.5656565656566, 0.6565656565657, 0.4343434343434, 0.3434343434343], 0.930415264: [0.2222222222222, 0.7777777777778], 0.061728395: [0.2222222222222, 0.7777777777778], 0.127640037: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.535353535: [0.0, 0.3333333333333, 0.6666666666667], 0.124171003: [0.1313131313131, 0.6868686868687, 0.3131313131313, 0.8686868686869], 0.573512907: [0.8888888888889, 0.1111111111111], 0.165799408: [0.1616161616162, 0.3838383838384, 0.6161616161616, 0.8383838383838], 0.318232833: [0.9292929292929, 0.0707070707071, 0.2929292929293, 0.7070707070707], 0.926538108: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.353535354: [0.0, 0.3333333333333, 0.6666666666667], 0.899806142: [0.2828282828283, 0.1717171717172, 0.8282828282828, 0.7171717171717], 0.627384961: [0.2222222222222, 0.7777777777778], 0.1184573: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.026629936: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.737577798: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.607795123: [0.2626262626263, 0.7373737373737, 0.3737373737374, 0.6262626262626], 0.542903785: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.096010611: [0.9292929292929, 0.0707070707071, 0.2929292929293, 0.7070707070707], 0.36781961: [0.1616161616162, 0.3838383838384, 0.6161616161616, 0.8383838383838], 0.243546577: [0.2222222222222, 0.7777777777778], 0.574125089: [0.040404040404, 0.4040404040404, 0.959595959596, 0.5959595959596], 0.966534027: [0.2525252525253, 0.5252525252525, 0.4747474747475, 0.7474747474747], 0.681869197: [0.9292929292929, 0.2929292929293, 0.7070707070707, 0.0707070707071], 0.499438833: [0.4444444444444, 0.5555555555556], 0.771860014: [0.1616161616162, 0.3838383838384, 0.6161616161616, 0.8383838383838], 0.311498827: [0.040404040404, 0.4040404040404, 0.959595959596, 0.5959595959596], 0.434547495: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.056830936: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.78328742: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.676359555: [0.020202020202, 0.979797979798, 0.2020202020202, 0.7979797979798], 0.973880216: [0.1616161616162, 0.3838383838384, 0.6161616161616, 0.8383838383838], 0.258034894: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.969594939: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.361085604: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.104581165: [0.0808080808081, 0.8080808080808, 0.1919191919192, 0.9191919191919], 0.263748597: [0.2222222222222, 0.7777777777778], 0.93714927: [0.8888888888889, 0.1111111111111], 0.785123967: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.852668095: [0.1616161616162, 0.3838383838384, 0.6161616161616, 0.8383838383838], 0.731455974: [0.1616161616162, 0.3838383838384, 0.6161616161616, 0.8383838383838], 0.596163657: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.79083767: [0.6868686868687, 0.3131313131313, 0.8686868686869, 0.1313131313131], 0.378226712: [0.4444444444444, 0.5555555555556], 0.693500663: [0.3232323232323, 0.7676767676768, 0.2323232323232, 0.6767676767677], 0.313335374: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.884297521: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.786960514: [0.969696969697, 0.030303030303, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.895520865: [0.3232323232323, 0.7676767676768, 0.2323232323232, 0.6767676767677], 0.23681257: [0.4444444444444, 0.5555555555556], 0.592286501: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.451076421: [0.3232323232323, 0.7676767676768, 0.2323232323232, 0.6767676767677], 0.492704826: [0.8888888888889, 0.1111111111111], 0.565554535: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.533108866: [0.8888888888889, 0.1111111111111], 0.43067034: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.751657994: [0.1616161616162, 0.3838383838384, 0.6161616161616, 0.8383838383838], 0.265585144: [0.1313131313131, 0.6868686868687, 0.3131313131313, 0.8686868686869], 0.886134068: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.047036017: [0.2323232323232, 0.7676767676768, 0.6767676767677, 0.3232323232323], 0.865932048: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.245383124: [0.1313131313131, 0.6868686868687, 0.3131313131313, 0.8686868686869], 0.212937455: [0.2828282828283, 0.1717171717172, 0.8282828282828, 0.7171717171717], 0.17620651: [0.4444444444444, 0.5555555555556], 0.697173758: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.838587899: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.042138557: [0.2626262626263, 0.7373737373737, 0.3737373737374, 0.6262626262626], 0.480257117: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.38292011: [0.030303030303, 0.969696969697, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.282726252: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.084991327: [0.1616161616162, 0.3838383838384, 0.6161616161616, 0.8383838383838], 0.991021324: [0.2222222222222, 0.7777777777778], 0.019283747: [0.030303030303, 0.969696969697, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.796347311: [0.040404040404, 0.4040404040404, 0.959595959596, 0.5959595959596], 0.152331395: [0.2828282828283, 0.1717171717172, 0.8282828282828, 0.7171717171717], 0.634118967: [0.8888888888889, 0.1111111111111], 0.753902663: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.629221508: [0.1313131313131, 0.6868686868687, 0.3131313131313, 0.8686868686869], 0.258851138: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.775533109: [0.8888888888889, 0.1111111111111], 0.29986736: [0.7474747474747, 0.5252525252525, 0.2525252525253, 0.4747474747475], 0.051321294: [0.2828282828283, 0.1717171717172, 0.8282828282828, 0.7171717171717], 0.863075196: [0.4444444444444, 0.5555555555556], 0.230078563: [0.8888888888889, 0.1111111111111], 0.641873278: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.935924906: [0.3232323232323, 0.7676767676768, 0.2323232323232, 0.6767676767677], 0.794306703: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.070911132: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.427201306: [0.1313131313131, 0.6868686868687, 0.3131313131313, 0.8686868686869], 0.275992246: [0.3434343434343, 0.6565656565657, 0.4343434343434, 0.5656565656566], 0.029894909: [0.020202020202, 0.2020202020202, 0.979797979798, 0.7979797979798], 0.744719927: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.003571064: [0.0808080808081, 0.8080808080808, 0.1919191919192, 0.9191919191919], 0.037241098: [0.7474747474747, 0.5252525252525, 0.2525252525253, 0.4747474747475], 0.455361698: [0.2828282828283, 0.1717171717172, 0.8282828282828, 0.7171717171717], 0.776145291: [0.040404040404, 0.4040404040404, 0.959595959596, 0.5959595959596], 0.515967758: [0.2828282828283, 0.1717171717172, 0.8282828282828, 0.7171717171717], 0.075196409: [0.4444444444444, 0.5555555555556], 0.903479237: [0.4444444444444, 0.5555555555556], 0.941230487: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.293133354: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.703295582: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.07805326: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.794510764: [0.3232323232323, 0.7676767676768, 0.2323232323232, 0.6767676767677], 0.551882461: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.65493317: [0.040404040404, 0.4040404040404, 0.959595959596, 0.5959595959596], 0.472502806: [0.8888888888889, 0.1111111111111], 0.407611468: [0.0808080808081, 0.8080808080808, 0.1919191919192, 0.9191919191919], 0.116212631: [0.9292929292929, 0.0707070707071, 0.2929292929293, 0.7070707070707], 0.80348944: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.646362616: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.41046832: [0.0606060606061, 0.9393939393939, 0.3939393939394, 0.7272727272727, 0.6060606060606, 0.2727272727273], 0.277828793: [0.9292929292929, 0.0707070707071, 0.2929292929293, 0.7070707070707], 0.883889399: [0.9292929292929, 0.2929292929293, 0.7070707070707, 0.0707070707071], 0.85144373: [0.6868686868687, 0.3131313131313, 0.8686868686869, 0.1313131313131], 0.754106724: [0.3232323232323, 0.7676767676768, 0.2323232323232, 0.6767676767677], 0.656769717: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.392306907: [0.040404040404, 0.4040404040404, 0.959595959596, 0.5959595959596], 0.944903581: [0.1212121212121, 0.4545454545455, 0.8787878787879, 0.2121212121212, 0.7878787878788, 0.5454545454545], 0.262524232: [0.010101010101, 0.8989898989899, 0.989898989899, 0.1010101010101], 0.223344557: [0.2222222222222, 0.7777777777778], 0.885725946: [0.2525252525253, 0.5252525252525, 0.4747474747475, 0.7474747474747], 0.723497602: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.691051933: [0.1616161616162, 0.3838383838384, 0.6161616161616, 0.8383838383838], 0.858177737: [0.020202020202, 0.979797979798, 0.2020202020202, 0.7979797979798], 0.474339353: [0.020202020202, 0.979797979798, 0.2020202020202, 0.7979797979798], 0.441893684: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.124783185: [0.0808080808081, 0.8080808080808, 0.1919191919192, 0.9191919191919], 0.724721967: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.31496786: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.231915111: [0.020202020202, 0.979797979798, 0.2020202020202, 0.7979797979798], 0.199469442: [0.949494949495, 0.0505050505051, 0.9494949494949, 0.4949494949495, 0.5050505050505], 0.757779818: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.728395062: [0.2222222222222, 0.7777777777778], 0.459034792: [0.4444444444444, 0.5555555555556], 0.582083461: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.704315886: [0.4848484848485, 0.8484848484848, 0.8181818181818, 0.1818181818182, 0.1515151515152, 0.5151515151515], 0.151719212: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.576573819: [0.2828282828283, 0.1717171717172, 0.8282828282828, 0.7171717171717], 0.580246914: [0.4444444444444, 0.5555555555556], 0.435159678: [0.2828282828283, 0.1717171717172, 0.8282828282828, 0.7171717171717], 0.37026834: [0.3232323232323, 0.7676767676768, 0.2323232323232, 0.6767676767677], 0.900826446: [0.2424242424242, 0.9090909090909, 0.4242424242424, 0.7575757575758, 0.0909090909091, 0.5757575757576], 0.039485767: [0.030303030303, 0.969696969697, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.272931334: [0.1414141414141, 0.8585858585859, 0.4141414141414, 0.5858585858586], 0.706152433: [0.969696969697, 0.030303030303, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.544536272: [0.030303030303, 0.969696969697, 0.3636363636364, 0.6969696969697, 0.6363636363636, 0.3030303030303], 0.809203143: [0.2222222222222, 0.7777777777778], 0.50127538: [0.4646464646465, 0.5353535353535, 0.3535353535354, 0.6464646464646], 0.21661055: [0.4444444444444, 0.5555555555556], 0.61452913: [0.040404040404, 0.4040404040404, 0.959595959596, 0.5959595959596], 0.549637792: [0.1616161616162, 0.3838383838384, 0.6161616161616, 0.8383838383838], 0.082542598: [0.2626262626263, 0.7373737373737, 0.3737373737374, 0.6262626262626], 0.575757576: [0.0, 0.3333333333333, 0.6666666666667], 0.387409448: [0.0808080808081, 0.8080808080808, 0.1919191919192, 0.9191919191919]}
#!/usr/bin/env python # -*- coding: UTF-8 -*- """ @Project: point_set_platform @Author: anzii.Luo @Describe: @Date: 2021/8/3 """
""" @Project: point_set_platform @Author: anzii.Luo @Describe: @Date: 2021/8/3 """
''' Regex Version of strip Author: <your name> ''' def restrip(string, chars=None): '''Given a string, do the same thing as the strip() string method. If no other arguments are passed other than the string, then whitespace characters will be removed from the beginning and end of the string. Otherwise, the characters speci ed in the second argu- ment to the function will be removed from the string. ''' # place your solution in this function
""" Regex Version of strip Author: <your name> """ def restrip(string, chars=None): """Given a string, do the same thing as the strip() string method. If no other arguments are passed other than the string, then whitespace characters will be removed from the beginning and end of the string. Otherwise, the characters speci ed in the second argu- ment to the function will be removed from the string. """
def letters(word): ls = set() for c in word: ls |= {c} return ls def test_letters(): assert letters("book") == {'b', 'k', 'o'} assert letters("few") == {'f', 'e', 'w'} def letter_count(word): lc = {} for c in word: if c in lc: lc[c] += 1 else: lc[c] = 1 return lc def test_letter_count(): assert letter_count("book") == {'b': 1, 'o': 2, 'k': 1}
def letters(word): ls = set() for c in word: ls |= {c} return ls def test_letters(): assert letters('book') == {'b', 'k', 'o'} assert letters('few') == {'f', 'e', 'w'} def letter_count(word): lc = {} for c in word: if c in lc: lc[c] += 1 else: lc[c] = 1 return lc def test_letter_count(): assert letter_count('book') == {'b': 1, 'o': 2, 'k': 1}
WSStyleSheet = ''' QWidget { color: #ddd; background: transparent; } QWidget:disabled { color: #232323; background-color: transparent; } QLineEdit { border: 1px solid #232323; border-radius: 4px; } QToolTip { border: 1px solid #232323; background: #232323; color: #ddd; } QLineEdit:hover, QLineEdit:focus { border: 1px solid #FFC132; selection-color: #232323; selection-background-color: #FFC132; } QCheckBox::indicator { width : 12px; height : 12px; border-radius: 8px; border: 2px solid #232323; } QCheckBox::indicator:checked:hover, QCheckBox::indicator:unchecked:hover { border: 2px solid #FFC132; } QCheckBox::indicator:checked { background: #ddd; } QCheckBox::indicator:unchecked { background: #232323; } QAbstractItemView { border: 1px solid #232323; selection-color: #232323; selection-background-color: #FFC132; } QHeaderView::section { Background-color:#232323; padding:5px; border:0; font-weight: bold; } QScrollBar:vertical { background: transparent; width: 8px; border: 0; } QScrollBar::handle:vertical { background: #232323; min-height: 20px; border-radius: 4px; } QScrollBar::handle:vertical:hover { background: #FFC132; } QScrollBar::add-line:vertical, QScrollBar::sub-line:vertical, QScrollBar::add-page:vertical, QScrollBar::sub-page:vertical { border: none; background: none; } QScrollBar:horizontal { background: transparent; height: 8px; border: 1px solid #232323; } QScrollBar::handle:horizontal { background: #232323; min-width: 20px; border-radius: 4px; } QScrollBar::handle:horizontal:hover { background: #FFC132; } QScrollBar::add-line:horizontal, QScrollBar::sub-line:horizontal, QScrollBar::add-page:horizontal, QScrollBar::sub-page:horizontal { border: none; background: none; } QPushButton { background-color: #555; border: 2px solid #555; padding: 5px; border-radius: 4px; padding-left: 5px; padding-right: 5px; } QPushButton:hover{ color: #FFC132; border-color: #FFC132; } QPushButton:pressed, QPushButton:checked { color: #232323; border-color: #FFC132; background-color: #FFC132; } QPushButton:checked{ color: #FFC132; border-color: #FFC132; background-color: #232323; font-weight: bold; } '''
ws_style_sheet = '\nQWidget {\n\tcolor: #ddd;\n\tbackground: transparent;\n}\n\nQWidget:disabled {\n\tcolor: #232323;\n\tbackground-color: transparent;\n}\n\nQLineEdit {\n\tborder: 1px solid #232323;\n\tborder-radius: 4px;\n}\n\nQToolTip {\n\tborder: 1px solid #232323;\n\tbackground: #232323;\n\tcolor: #ddd;\n}\n\nQLineEdit:hover, QLineEdit:focus {\n\tborder: 1px solid #FFC132;\n selection-color: #232323;\n\tselection-background-color: #FFC132;\n}\nQCheckBox::indicator {\n\twidth : 12px;\n\theight : 12px;\n\tborder-radius: 8px;\n\tborder: 2px solid #232323;\n}\nQCheckBox::indicator:checked:hover, QCheckBox::indicator:unchecked:hover {\n\tborder: 2px solid #FFC132;\n}\nQCheckBox::indicator:checked {\n\tbackground: #ddd;\n}\nQCheckBox::indicator:unchecked {\n\tbackground: #232323;\n}\n\nQAbstractItemView {\n\tborder: 1px solid #232323;\n selection-color: #232323;\n\tselection-background-color: #FFC132;\n}\n\nQHeaderView::section {\n\tBackground-color:#232323;\n\tpadding:5px;\n\tborder:0;\n\tfont-weight: bold;\n}\n\nQScrollBar:vertical {\n\tbackground: transparent;\n\twidth: 8px;\n\tborder: 0;\n}\nQScrollBar::handle:vertical {\n\tbackground: #232323;\n\tmin-height: 20px;\n\tborder-radius: 4px;\n}\n\nQScrollBar::handle:vertical:hover {\n\tbackground: #FFC132;\n}\nQScrollBar::add-line:vertical, QScrollBar::sub-line:vertical, QScrollBar::add-page:vertical, QScrollBar::sub-page:vertical {\n\tborder: none;\n\tbackground: none;\n}\nQScrollBar:horizontal {\n\tbackground: transparent;\n\theight: 8px;\n\tborder: 1px solid #232323;\n}\nQScrollBar::handle:horizontal {\n\tbackground: #232323;\n\tmin-width: 20px;\n\tborder-radius: 4px;\n}\nQScrollBar::handle:horizontal:hover {\n\tbackground: #FFC132;\n}\nQScrollBar::add-line:horizontal, QScrollBar::sub-line:horizontal, QScrollBar::add-page:horizontal, QScrollBar::sub-page:horizontal {\n\tborder: none;\n\tbackground: none;\n}\n\nQPushButton {\n\tbackground-color: #555;\n\tborder: 2px solid #555;\n\tpadding: 5px;\n\tborder-radius: 4px;\n\tpadding-left: 5px;\n\tpadding-right: 5px;\n}\nQPushButton:hover{\n\tcolor: #FFC132;\n\tborder-color: #FFC132;\n}\nQPushButton:pressed, QPushButton:checked {\n\tcolor: #232323;\n\tborder-color: #FFC132;\n\tbackground-color: #FFC132;\n}\nQPushButton:checked{\n\tcolor: #FFC132;\n\tborder-color: #FFC132;\n\tbackground-color: #232323;\n\tfont-weight: bold;\n}\n'
class Solution: def minCostII(self, costs: List[List[int]]) -> int: if not any(costs): return 0 n, k = len(costs), len(costs[0]) for i in range(1, n): first, first_idx, second = math.inf, 0, math.inf for j, val in enumerate(costs[i - 1]): if val < first: first, first_idx, second = val, j, first elif val < second: second = val for j in range(k): if j == first_idx: costs[i][j] += second else: costs[i][j] += first return min(costs[-1])
class Solution: def min_cost_ii(self, costs: List[List[int]]) -> int: if not any(costs): return 0 (n, k) = (len(costs), len(costs[0])) for i in range(1, n): (first, first_idx, second) = (math.inf, 0, math.inf) for (j, val) in enumerate(costs[i - 1]): if val < first: (first, first_idx, second) = (val, j, first) elif val < second: second = val for j in range(k): if j == first_idx: costs[i][j] += second else: costs[i][j] += first return min(costs[-1])
libraries = '' entity_header = '''`timescale 1 ns / 1 ps module axilite_reg_if # ( // Width of S_AXI data bus parameter integer C_S_AXI_DATA_WIDTH = 32, // Width of S_AXI address bus parameter integer C_S_AXI_ADDR_WIDTH = 8 ) ( ''' st_in = ' input wire {name},\n' st_out = ' output wire {name},\n' sv_in = ' input wire [{width}:0] {name},\n' sv_out = ' output wire [{width}:0] {name},\n' clock_comment = ' // Clocks\n' pl_port_comment = ' // PL Ports\n' axi_ports_end = ''' // AXILite Signal input wire s_axi_aclk, input wire s_axi_areset, input wire [C_S_AXI_ADDR_WIDTH-1 : 0] s_axi_awaddr, input wire [2 : 0] s_axi_awprot, input wire s_axi_awvalid, output wire s_axi_awready, input wire [C_S_AXI_DATA_WIDTH-1 : 0] s_axi_wdata, input wire [(C_S_AXI_DATA_WIDTH/8)-1 : 0] s_axi_wstrb, input wire s_axi_wvalid, output wire s_axi_wready, output wire [1 : 0] s_axi_bresp, output wire s_axi_bvalid, input wire s_axi_bready, input wire [C_S_AXI_ADDR_WIDTH-1 : 0] s_axi_araddr, input wire [2 : 0] s_axi_arprot, input wire s_axi_arvalid, output wire s_axi_arready, output wire [C_S_AXI_DATA_WIDTH-1 : 0] s_axi_rdata, output wire [1 : 0] s_axi_rresp, output wire s_axi_rvalid, input wire s_axi_rready ); '''.format components = '' constants = ''' localparam integer ADDR_LSB = (C_S_AXI_DATA_WIDTH/32) + 1; localparam integer OPT_MEM_ADDR_BITS = {}; ''' internal_signals = ''' // AXI4LITE signals reg [C_S_AXI_ADDR_WIDTH-1 : 0] axi_awaddr; reg axi_awready; reg axi_wready; reg [1 : 0] axi_bresp; reg axi_bvalid; reg [C_S_AXI_ADDR_WIDTH-1 : 0] axi_araddr; reg axi_arready; reg [C_S_AXI_DATA_WIDTH-1 : 0] axi_rdata; reg [1 : 0] axi_rresp; reg axi_rvalid; wire slv_reg_rden; wire slv_reg_wren; reg [C_S_AXI_DATA_WIDTH-1:0] reg_data_out; integer byte_index; ''' signal_sv = ' wire [{width}:0] {name};\n' signal_st = ' wire {name};\n' reg_signal = ' reg [C_S_AXI_DATA_WIDTH-1:0] slv_reg{num};\n' begin_io_assgns_axi_logic = ''' // I/O Connections assignments assign s_axi_awready = axi_awready; assign s_axi_wready = axi_wready; assign s_axi_bresp = axi_bresp; assign s_axi_bvalid = axi_bvalid; assign s_axi_arready = axi_arready; assign s_axi_rdata = axi_rdata; assign s_axi_rresp = axi_rresp; assign s_axi_rvalid = axi_rvalid; // Implement axi_awready generation // axi_awready is asserted for one s_axi_aclk clock cycle when both // s_axi_awvalid and s_axi_wvalid are asserted. axi_awready is // de-asserted when reset is low. always @( posedge s_axi_aclk ) begin if ( s_axi_areset == 1'b1 ) begin axi_awready <= 1'b0; end else begin if (~axi_awready && s_axi_awvalid && s_axi_wvalid) begin // slave is ready to accept write address when // there is a valid write address and write data // on the write address and data bus. This design // expects no outstanding transactions. axi_awready <= 1'b1; end else begin axi_awready <= 1'b0; end end end // Implement axi_awaddr latching // This process is used to latch the address when both // s_axi_awvalid and s_axi_wvalid are valid. always @( posedge s_axi_aclk ) begin if ( s_axi_areset == 1'b1 ) begin axi_awaddr <= 0; end else begin if (~axi_awready && s_axi_awvalid && s_axi_wvalid) begin // Write Address latching axi_awaddr <= s_axi_awaddr; end end end // Implement axi_wready generation // axi_wready is asserted for one s_axi_aclk clock cycle when both // s_axi_awvalid and s_axi_wvalid are asserted. axi_wready is // de-asserted when reset is low. always @( posedge s_axi_aclk ) begin if ( s_axi_areset == 1'b1 ) begin axi_wready <= 1'b0; end else begin if (~axi_wready && s_axi_wvalid && s_axi_awvalid) begin // slave is ready to accept write data when // there is a valid write address and write data // on the write address and data bus. This design // expects no outstanding transactions. axi_wready <= 1'b1; end else begin axi_wready <= 1'b0; end end end // Implement memory mapped register select and write logic generation // The write data is accepted and written to memory mapped registers when // axi_awready, s_axi_wvalid, axi_wready and s_axi_wvalid are asserted. Write strobes are used to // select byte enables of slave registers while writing. // These registers are cleared when reset (active low) is applied. // Slave register write enable is asserted when valid address and data are available // and the slave is ready to accept the write address and write data. assign slv_reg_wren = axi_wready && s_axi_wvalid && axi_awready && s_axi_awvalid; ''' axi_write_header = ''' always @( posedge s_axi_aclk ) begin : axi_write_proc reg [OPT_MEM_ADDR_BITS:0] loc_addr; if ( s_axi_areset == 1'b1 ) begin''' axi_write_reset_reg = '\n'+' '*4+'slv_reg{} <= 0;' axi_write_else_header = ''' end else begin loc_addr = axi_awaddr[ADDR_LSB+OPT_MEM_ADDR_BITS:ADDR_LSB]; if (slv_reg_wren) begin''' axi_write_assign = ''' if (loc_addr == {len}'b{val}) begin for ( byte_index = 0; byte_index <= (C_S_AXI_DATA_WIDTH/8)-1; byte_index = byte_index+1 ) begin if ( s_axi_wstrb[byte_index] == 1 ) begin slv_reg{num}[(byte_index*8) +: 8] <= s_axi_wdata[(byte_index*8) +: 8]; end end''' axi_write_assign_else = '\n end else begin' axi_write_assign_end = '\n end' axi_write_else = '\n end else begin' axi_sclr_part1 = '{' axi_sclr_part2 = ', ' axi_sclr_part3 = '[{}:{}]' axi_sclr_part4 = '{size}\'b{val}' axi_sclr_part5 = '};' axi_write_footer = ''' end end end ''' axi_logic2 = ''' // Implement write response logic generation // The write response and response valid signals are asserted by the slave // when axi_wready, s_axi_wvalid, axi_wready and s_axi_wvalid are asserted. // This marks the acceptance of address and indicates the status of // write transaction. always @( posedge s_axi_aclk ) begin if ( s_axi_areset == 1'b1 ) begin axi_bvalid <= 0; axi_bresp <= 2'b0; end else begin if (axi_awready && s_axi_awvalid && ~axi_bvalid && axi_wready && s_axi_wvalid) begin // indicates a valid write response is available axi_bvalid <= 1'b1; axi_bresp <= 2'b0; // 'OKAY' response end // work error responses in future else begin if (s_axi_bready && axi_bvalid) //check if bready is asserted while bvalid is high) //(there is a possibility that bready is always asserted high) begin axi_bvalid <= 1'b0; end end end end // Implement axi_arready generation // axi_arready is asserted for one s_axi_aclk clock cycle when // s_axi_arvalid is asserted. axi_awready is // de-asserted when reset (active low) is asserted. // The read address is also latched when s_axi_arvalid is // asserted. axi_araddr is reset to zero on reset assertion. always @( posedge s_axi_aclk ) begin if ( s_axi_areset == 1'b1 ) begin axi_arready <= 1'b0; axi_araddr <= 32'b0; end else begin if (~axi_arready && s_axi_arvalid) begin // indicates that the slave has acceped the valid read address axi_arready <= 1'b1; // Read address latching axi_araddr <= s_axi_araddr; end else begin axi_arready <= 1'b0; end end end // Implement axi_arvalid generation // axi_rvalid is asserted for one s_axi_aclk clock cycle when both // s_axi_arvalid and axi_arready are asserted. The slave registers // data are available on the axi_rdata bus at this instance. The // assertion of axi_rvalid marks the validity of read data on the // bus and axi_rresp indicates the status of read transaction.axi_rvalid // is deasserted on reset (active low). axi_rresp and axi_rdata are // cleared to zero on reset (active low). always @( posedge s_axi_aclk ) begin if ( s_axi_areset == 1'b1 ) begin axi_rvalid <= 0; axi_rresp <= 0; end else begin if (axi_arready && s_axi_arvalid && ~axi_rvalid) begin // Valid read data is available at the read data bus axi_rvalid <= 1'b1; axi_rresp <= 2'b0; // 'OKAY' response end else if (axi_rvalid && s_axi_rready) begin // Read data is accepted by the master axi_rvalid <= 1'b0; end end end // Implement memory mapped register select and read logic generation // Slave register read enable is asserted when valid address is available // and the slave is ready to accept the read address. assign slv_reg_rden = axi_arready & s_axi_arvalid & ~axi_rvalid; ''' reg_data_out_header = ''' always @(*) begin if ( s_axi_areset == 1'b1 ) begin reg_data_out <= 0; end else begin // Address decoding for reading registers case ( axi_araddr[ADDR_LSB+OPT_MEM_ADDR_BITS:ADDR_LSB] )''' reg_data_out_when = ''' {size}'b{num_bin} : reg_data_out <= slv_reg{num};''' reg_data_out_footer_axi_logic = ''' default : reg_data_out <= 0; endcase end end // Output register or memory read data always @( posedge s_axi_aclk ) begin if ( s_axi_areset == 1'b1 ) begin axi_rdata <= 0; end else begin // When there is a valid read address (s_axi_arvalid) with // acceptance of read address by the slave (axi_arready), // output the read dada if (slv_reg_rden) begin axi_rdata <= reg_data_out; // register read data end end end ''' ctrl_sig_assgns_header = '\n // Assign registers to control signals\n' ctrl_sig_assgns = ' assign {:{}} = slv_reg{}[{}:{}];\n' ctrl_sig_assgns_1bit = ' assign {:{}} = slv_reg{}[{}];\n' sts_sig_assgns_header = ''' // Assign status signals to registers always@(posedge s_axi_aclk) begin : stat_to_reg_proc reg [OPT_MEM_ADDR_BITS:0] loc_addr; if (s_axi_areset == 1'b1) begin''' sts_sig_assgns_reset = '\n slv_reg{} <= 0;' sts_sig_assgns_reset_else = ''' end else begin loc_addr = axi_awaddr[ADDR_LSB + OPT_MEM_ADDR_BITS:ADDR_LSB];''' sts_sig_assgns_no_clr = '\n slv_reg{reg_no}[{msb}:{lsb}] <= {signal};' sts_sig_assgns_no_clr_1bit = '\n slv_reg{reg_no}[{msb}] <= {signal};' sts_sig_assgns_with_clr = ''' if ({signal_valid} == 1'b1) begin slv_reg{reg_no}({msb} downto {lsb}) <= {signal}; end else if (slv_reg_wren == 1'b1 && loc_addr == {size}'b{addr_bin} && s_axi_wstrb[{strb_lsb}:{strb_msb}] == "{strb_1s}" then slv_reg{reg_no}({msb} downto {lsb}) <= (others => \'0\'); else slv_reg{reg_no}({msb} downto {lsb}) <= slv_reg{reg_no}({msb} downto {lsb}); end''' sts_sig_assgns_with_clr_1bit = ''' if ({signal_valid} == 1'b1) begin slv_reg{reg_no}[{msb}] <= {signal}; end else if (slv_reg_wren == 1'b1 && loc_addr == {size}'b{addr_bin} && s_axi_wstrb[{strb_lsb}:{strb_msb}] == {strb_size}'b{strb_1s}) begin slv_reg{reg_no}[{msb}] <= 1\'b0; end else begin slv_reg{reg_no}[{msb}] <= slv_reg{reg_no}[{msb}]; end''' sts_sig_assgns_footer = ''' end end ''' cdc_inst_pl_read = ''' cdc_sync # ( .WIDTH ({width}), .WITH_VLD (0), .DAT_IS_REG (1) ) {signal}_cdc ( .src_clk (s_axi_aclk), .src_dat ({signal}_sync), .src_vld (1'b1), .dst_clk ({clock}), .dst_dat ({signal}), .dst_vld () ); ''' cdc_inst_pl_read_pulse = ''' cdc_sync # ( .WIDTH ({width}), .WITH_VLD (0), .SRC_PER_NS ({src_per}), .DST_PER_NS ({dst_per}), .IS_PULSE (1) ) {signal}_cdc ( .src_clk (s_axi_aclk), .src_dat ({signal}_sync), .src_vld (1'b1), .dst_clk ({clock}), .dst_dat ({signal}), .dst_vld () ); ''' cdc_inst_pl_write = ''' cdc_sync # ( .WIDTH ({width}), .WITH_VLD (0), .DAT_IS_REG (0) ) {signal}_cdc ( .src_clk ({clock}), .src_dat ({signal}), .src_vld (1'b1), .dst_clk (s_axi_aclk), .dst_dat ({signal}_sync), .dst_vld () ); ''' cdc_inst_pl_write_vld = ''' cdc_sync # ( .WIDTH ({width}), .WITH_VLD (1), .SRC_PER_NS ({src_per}), .DST_PER_NS ({dst_per}), .DAT_IS_REG (0) ) {signal}_cdc ( .src_clk ({clock}), .src_dat ({signal}), .src_vld ({signal}_vld), .dst_clk (s_axi_aclk), .dst_dat ({signal}_sync), .dst_vld ({signal}_vld_sync) ); ''' arc_footer = '\nendmodule'
libraries = '' entity_header = '`timescale 1 ns / 1 ps\n\nmodule axilite_reg_if #\n (\n // Width of S_AXI data bus\n parameter integer C_S_AXI_DATA_WIDTH = 32,\n // Width of S_AXI address bus\n parameter integer C_S_AXI_ADDR_WIDTH = 8\n )\n (\n' st_in = ' input wire {name},\n' st_out = ' output wire {name},\n' sv_in = ' input wire [{width}:0] {name},\n' sv_out = ' output wire [{width}:0] {name},\n' clock_comment = ' // Clocks\n' pl_port_comment = ' // PL Ports\n' axi_ports_end = ' // AXILite Signal\n input wire s_axi_aclk,\n input wire s_axi_areset,\n input wire [C_S_AXI_ADDR_WIDTH-1 : 0] s_axi_awaddr,\n input wire [2 : 0] s_axi_awprot,\n input wire s_axi_awvalid,\n output wire s_axi_awready,\n input wire [C_S_AXI_DATA_WIDTH-1 : 0] s_axi_wdata,\n input wire [(C_S_AXI_DATA_WIDTH/8)-1 : 0] s_axi_wstrb,\n input wire s_axi_wvalid,\n output wire s_axi_wready,\n output wire [1 : 0] s_axi_bresp,\n output wire s_axi_bvalid,\n input wire s_axi_bready,\n input wire [C_S_AXI_ADDR_WIDTH-1 : 0] s_axi_araddr,\n input wire [2 : 0] s_axi_arprot,\n input wire s_axi_arvalid,\n output wire s_axi_arready,\n output wire [C_S_AXI_DATA_WIDTH-1 : 0] s_axi_rdata,\n output wire [1 : 0] s_axi_rresp,\n output wire s_axi_rvalid,\n input wire s_axi_rready\n );\n'.format components = '' constants = '\n localparam integer ADDR_LSB = (C_S_AXI_DATA_WIDTH/32) + 1;\n localparam integer OPT_MEM_ADDR_BITS = {};\n' internal_signals = '\n // AXI4LITE signals\n reg [C_S_AXI_ADDR_WIDTH-1 : 0] axi_awaddr;\n reg axi_awready;\n reg axi_wready;\n reg [1 : 0] axi_bresp;\n reg axi_bvalid;\n reg [C_S_AXI_ADDR_WIDTH-1 : 0] axi_araddr;\n reg axi_arready;\n reg [C_S_AXI_DATA_WIDTH-1 : 0] axi_rdata;\n reg [1 : 0] axi_rresp;\n reg axi_rvalid;\n\n wire slv_reg_rden;\n wire slv_reg_wren;\n reg [C_S_AXI_DATA_WIDTH-1:0] reg_data_out;\n integer byte_index;\n\n' signal_sv = ' wire [{width}:0] {name};\n' signal_st = ' wire {name};\n' reg_signal = ' reg [C_S_AXI_DATA_WIDTH-1:0] slv_reg{num};\n' begin_io_assgns_axi_logic = "\n // I/O Connections assignments\n assign s_axi_awready = axi_awready;\n assign s_axi_wready = axi_wready;\n assign s_axi_bresp = axi_bresp;\n assign s_axi_bvalid = axi_bvalid;\n assign s_axi_arready = axi_arready;\n assign s_axi_rdata = axi_rdata;\n assign s_axi_rresp = axi_rresp;\n assign s_axi_rvalid = axi_rvalid;\n // Implement axi_awready generation\n // axi_awready is asserted for one s_axi_aclk clock cycle when both\n // s_axi_awvalid and s_axi_wvalid are asserted. axi_awready is\n // de-asserted when reset is low.\n\n always @( posedge s_axi_aclk )\n begin\n if ( s_axi_areset == 1'b1 )\n begin\n axi_awready <= 1'b0;\n end \n else\n begin \n if (~axi_awready && s_axi_awvalid && s_axi_wvalid)\n begin\n // slave is ready to accept write address when \n // there is a valid write address and write data\n // on the write address and data bus. This design \n // expects no outstanding transactions. \n axi_awready <= 1'b1;\n end\n else \n begin\n axi_awready <= 1'b0;\n end\n end \n end \n\n // Implement axi_awaddr latching\n // This process is used to latch the address when both \n // s_axi_awvalid and s_axi_wvalid are valid. \n\n always @( posedge s_axi_aclk )\n begin\n if ( s_axi_areset == 1'b1 )\n begin\n axi_awaddr <= 0;\n end \n else\n begin \n if (~axi_awready && s_axi_awvalid && s_axi_wvalid)\n begin\n // Write Address latching \n axi_awaddr <= s_axi_awaddr;\n end\n end \n end \n\n // Implement axi_wready generation\n // axi_wready is asserted for one s_axi_aclk clock cycle when both\n // s_axi_awvalid and s_axi_wvalid are asserted. axi_wready is \n // de-asserted when reset is low. \n\n always @( posedge s_axi_aclk )\n begin\n if ( s_axi_areset == 1'b1 )\n begin\n axi_wready <= 1'b0;\n end \n else\n begin \n if (~axi_wready && s_axi_wvalid && s_axi_awvalid)\n begin\n // slave is ready to accept write data when \n // there is a valid write address and write data\n // on the write address and data bus. This design \n // expects no outstanding transactions. \n axi_wready <= 1'b1;\n end\n else\n begin\n axi_wready <= 1'b0;\n end\n end \n end \n\n // Implement memory mapped register select and write logic generation\n // The write data is accepted and written to memory mapped registers when\n // axi_awready, s_axi_wvalid, axi_wready and s_axi_wvalid are asserted. Write strobes are used to\n // select byte enables of slave registers while writing.\n // These registers are cleared when reset (active low) is applied.\n // Slave register write enable is asserted when valid address and data are available\n // and the slave is ready to accept the write address and write data.\n assign slv_reg_wren = axi_wready && s_axi_wvalid && axi_awready && s_axi_awvalid;\n" axi_write_header = "\n always @( posedge s_axi_aclk )\n begin : axi_write_proc\n reg [OPT_MEM_ADDR_BITS:0] loc_addr;\n if ( s_axi_areset == 1'b1 )\n begin" axi_write_reset_reg = '\n' + ' ' * 4 + 'slv_reg{} <= 0;' axi_write_else_header = '\n end \n else begin\n loc_addr = axi_awaddr[ADDR_LSB+OPT_MEM_ADDR_BITS:ADDR_LSB];\n if (slv_reg_wren) begin' axi_write_assign = "\n if (loc_addr == {len}'b{val}) begin\n for ( byte_index = 0; byte_index <= (C_S_AXI_DATA_WIDTH/8)-1; byte_index = byte_index+1 ) begin\n if ( s_axi_wstrb[byte_index] == 1 ) begin\n slv_reg{num}[(byte_index*8) +: 8] <= s_axi_wdata[(byte_index*8) +: 8];\n end\n end" axi_write_assign_else = '\n end else begin' axi_write_assign_end = '\n end' axi_write_else = '\n end else begin' axi_sclr_part1 = '{' axi_sclr_part2 = ', ' axi_sclr_part3 = '[{}:{}]' axi_sclr_part4 = "{size}'b{val}" axi_sclr_part5 = '};' axi_write_footer = '\n end\n end\n end\n' axi_logic2 = "\n // Implement write response logic generation\n // The write response and response valid signals are asserted by the slave \n // when axi_wready, s_axi_wvalid, axi_wready and s_axi_wvalid are asserted. \n // This marks the acceptance of address and indicates the status of \n // write transaction.\n\n always @( posedge s_axi_aclk )\n begin\n if ( s_axi_areset == 1'b1 )\n begin\n axi_bvalid <= 0;\n axi_bresp <= 2'b0;\n end \n else\n begin \n if (axi_awready && s_axi_awvalid && ~axi_bvalid && axi_wready && s_axi_wvalid)\n begin\n // indicates a valid write response is available\n axi_bvalid <= 1'b1;\n axi_bresp <= 2'b0; // 'OKAY' response \n end // work error responses in future\n else\n begin\n if (s_axi_bready && axi_bvalid) \n //check if bready is asserted while bvalid is high) \n //(there is a possibility that bready is always asserted high) \n begin\n axi_bvalid <= 1'b0; \n end \n end\n end\n end \n\n // Implement axi_arready generation\n // axi_arready is asserted for one s_axi_aclk clock cycle when\n // s_axi_arvalid is asserted. axi_awready is \n // de-asserted when reset (active low) is asserted. \n // The read address is also latched when s_axi_arvalid is \n // asserted. axi_araddr is reset to zero on reset assertion.\n\n always @( posedge s_axi_aclk )\n begin\n if ( s_axi_areset == 1'b1 )\n begin\n axi_arready <= 1'b0;\n axi_araddr <= 32'b0;\n end \n else\n begin \n if (~axi_arready && s_axi_arvalid)\n begin\n // indicates that the slave has acceped the valid read address\n axi_arready <= 1'b1;\n // Read address latching\n axi_araddr <= s_axi_araddr;\n end\n else\n begin\n axi_arready <= 1'b0;\n end\n end \n end \n\n // Implement axi_arvalid generation\n // axi_rvalid is asserted for one s_axi_aclk clock cycle when both \n // s_axi_arvalid and axi_arready are asserted. The slave registers \n // data are available on the axi_rdata bus at this instance. The \n // assertion of axi_rvalid marks the validity of read data on the \n // bus and axi_rresp indicates the status of read transaction.axi_rvalid \n // is deasserted on reset (active low). axi_rresp and axi_rdata are \n // cleared to zero on reset (active low). \n always @( posedge s_axi_aclk )\n begin\n if ( s_axi_areset == 1'b1 )\n begin\n axi_rvalid <= 0;\n axi_rresp <= 0;\n end \n else\n begin \n if (axi_arready && s_axi_arvalid && ~axi_rvalid)\n begin\n // Valid read data is available at the read data bus\n axi_rvalid <= 1'b1;\n axi_rresp <= 2'b0; // 'OKAY' response\n end \n else if (axi_rvalid && s_axi_rready)\n begin\n // Read data is accepted by the master\n axi_rvalid <= 1'b0;\n end \n end\n end \n\n // Implement memory mapped register select and read logic generation\n // Slave register read enable is asserted when valid address is available\n // and the slave is ready to accept the read address.\n assign slv_reg_rden = axi_arready & s_axi_arvalid & ~axi_rvalid;\n" reg_data_out_header = "\n always @(*)\n begin\n if ( s_axi_areset == 1'b1 )\n begin\n reg_data_out <= 0;\n end \n else\n begin \n // Address decoding for reading registers\n case ( axi_araddr[ADDR_LSB+OPT_MEM_ADDR_BITS:ADDR_LSB] )" reg_data_out_when = "\n {size}'b{num_bin} : reg_data_out <= slv_reg{num};" reg_data_out_footer_axi_logic = "\n default : reg_data_out <= 0;\n endcase\n end \n end\n\n // Output register or memory read data\n always @( posedge s_axi_aclk )\n begin\n if ( s_axi_areset == 1'b1 )\n begin\n axi_rdata <= 0;\n end \n else\n begin \n // When there is a valid read address (s_axi_arvalid) with \n // acceptance of read address by the slave (axi_arready), \n // output the read dada \n if (slv_reg_rden)\n begin\n axi_rdata <= reg_data_out; // register read data\n end \n end\n end\n" ctrl_sig_assgns_header = '\n // Assign registers to control signals\n' ctrl_sig_assgns = ' assign {:{}} = slv_reg{}[{}:{}];\n' ctrl_sig_assgns_1bit = ' assign {:{}} = slv_reg{}[{}];\n' sts_sig_assgns_header = "\n // Assign status signals to registers\n always@(posedge s_axi_aclk)\n begin : stat_to_reg_proc\n reg [OPT_MEM_ADDR_BITS:0] loc_addr;\n if (s_axi_areset == 1'b1) begin" sts_sig_assgns_reset = '\n slv_reg{} <= 0;' sts_sig_assgns_reset_else = '\n end else begin\n loc_addr = axi_awaddr[ADDR_LSB + OPT_MEM_ADDR_BITS:ADDR_LSB];' sts_sig_assgns_no_clr = '\n slv_reg{reg_no}[{msb}:{lsb}] <= {signal};' sts_sig_assgns_no_clr_1bit = '\n slv_reg{reg_no}[{msb}] <= {signal};' sts_sig_assgns_with_clr = '\n if ({signal_valid} == 1\'b1) begin\n slv_reg{reg_no}({msb} downto {lsb}) <= {signal};\n end else if (slv_reg_wren == 1\'b1 && loc_addr == {size}\'b{addr_bin}\n && s_axi_wstrb[{strb_lsb}:{strb_msb}] == "{strb_1s}" then\n slv_reg{reg_no}({msb} downto {lsb}) <= (others => \'0\');\n else\n slv_reg{reg_no}({msb} downto {lsb}) <= slv_reg{reg_no}({msb} downto {lsb});\n end' sts_sig_assgns_with_clr_1bit = "\n if ({signal_valid} == 1'b1) begin\n slv_reg{reg_no}[{msb}] <= {signal};\n end else if (slv_reg_wren == 1'b1 && loc_addr == {size}'b{addr_bin}\n && s_axi_wstrb[{strb_lsb}:{strb_msb}] == {strb_size}'b{strb_1s}) begin\n slv_reg{reg_no}[{msb}] <= 1'b0;\n end else begin\n slv_reg{reg_no}[{msb}] <= slv_reg{reg_no}[{msb}];\n end" sts_sig_assgns_footer = '\n end\n end\n' cdc_inst_pl_read = "\n cdc_sync # (\n .WIDTH ({width}),\n .WITH_VLD (0),\n .DAT_IS_REG (1)\n ) {signal}_cdc (\n .src_clk (s_axi_aclk),\n .src_dat ({signal}_sync),\n .src_vld (1'b1),\n .dst_clk ({clock}),\n .dst_dat ({signal}),\n .dst_vld ()\n );\n" cdc_inst_pl_read_pulse = "\n cdc_sync # (\n .WIDTH ({width}),\n .WITH_VLD (0),\n .SRC_PER_NS ({src_per}),\n .DST_PER_NS ({dst_per}),\n .IS_PULSE (1)\n ) {signal}_cdc (\n .src_clk (s_axi_aclk),\n .src_dat ({signal}_sync),\n .src_vld (1'b1),\n .dst_clk ({clock}),\n .dst_dat ({signal}),\n .dst_vld ()\n );\n" cdc_inst_pl_write = "\n cdc_sync # (\n .WIDTH ({width}),\n .WITH_VLD (0),\n .DAT_IS_REG (0)\n ) {signal}_cdc (\n .src_clk ({clock}),\n .src_dat ({signal}),\n .src_vld (1'b1),\n .dst_clk (s_axi_aclk),\n .dst_dat ({signal}_sync),\n .dst_vld ()\n );\n" cdc_inst_pl_write_vld = '\n cdc_sync # (\n .WIDTH ({width}),\n .WITH_VLD (1),\n .SRC_PER_NS ({src_per}),\n .DST_PER_NS ({dst_per}),\n .DAT_IS_REG (0)\n ) {signal}_cdc (\n .src_clk ({clock}),\n .src_dat ({signal}),\n .src_vld ({signal}_vld),\n .dst_clk (s_axi_aclk),\n .dst_dat ({signal}_sync),\n .dst_vld ({signal}_vld_sync)\n );\n' arc_footer = '\nendmodule'
__author__ = "Grzegorz Holak" def czy_parzysta(liczba): if not liczba % 2 == 0: return False return True def zrob_parzysta(nieparzysta): return nieparzysta + 1 def dzielenie(dzielna, dzielnik): if not czy_parzysta(dzielnik): dzielnik = zrob_parzysta(dzielnik) if dzielnik == 0: return dzielna return dzielna / dzielnik
__author__ = 'Grzegorz Holak' def czy_parzysta(liczba): if not liczba % 2 == 0: return False return True def zrob_parzysta(nieparzysta): return nieparzysta + 1 def dzielenie(dzielna, dzielnik): if not czy_parzysta(dzielnik): dzielnik = zrob_parzysta(dzielnik) if dzielnik == 0: return dzielna return dzielna / dzielnik
# Zapfun # from # https://siafoo.net/snippet/173 # via https://web.archive.org/web/20110203052513/https://siafoo.net/snippet/173 size(1280,900) fill(0.2) rect(0,0,WIDTH,HEIGHT) fill(1) stroke(0.2) strokewidth(1) font('Zapfino') for i in range(400): fontsize(random(30,400)) rotate(random(360)) chars = 'absdefghijklmnopqrstuvwxyz' p = textpath(choice(chars), random(-50, WIDTH + 100), random(-50, HEIGHT + 100)) drawpath(p)
size(1280, 900) fill(0.2) rect(0, 0, WIDTH, HEIGHT) fill(1) stroke(0.2) strokewidth(1) font('Zapfino') for i in range(400): fontsize(random(30, 400)) rotate(random(360)) chars = 'absdefghijklmnopqrstuvwxyz' p = textpath(choice(chars), random(-50, WIDTH + 100), random(-50, HEIGHT + 100)) drawpath(p)
class Notifier: pass class AnotherNotifier: pass
class Notifier: pass class Anothernotifier: pass
sexo = '' while sexo != 'M' and sexo != 'F': r = str(input('informe seu sexo [M/F]: ')).upper().strip()[0] sexo = r if r not in 'MF': print('dados invalidos. por favor, ', end='') print('Sexo {} registrado com sucesso!'.format(sexo)) # pode ser feito de outra forma sexo = str(input('informe seu sexo [M/F]: ')).upper().strip()[0] while sexo not in 'MFmf': sexo = str(input('dados invalidos. por favor, informe seu sexo [M/F]: ')).upper().strip()[0] print('Sexo {} registrado com sucesso!'.format(sexo))
sexo = '' while sexo != 'M' and sexo != 'F': r = str(input('informe seu sexo [M/F]: ')).upper().strip()[0] sexo = r if r not in 'MF': print('dados invalidos. por favor, ', end='') print('Sexo {} registrado com sucesso!'.format(sexo)) sexo = str(input('informe seu sexo [M/F]: ')).upper().strip()[0] while sexo not in 'MFmf': sexo = str(input('dados invalidos. por favor, informe seu sexo [M/F]: ')).upper().strip()[0] print('Sexo {} registrado com sucesso!'.format(sexo))
#!/usr/bin/env python3 def spiral_corners(size): yield 1 num = 1 sidelen = 3 while sidelen <= size: for _ in range(4): num += sidelen - 1 yield num sidelen += 2 print(sum(spiral_corners(1001)))
def spiral_corners(size): yield 1 num = 1 sidelen = 3 while sidelen <= size: for _ in range(4): num += sidelen - 1 yield num sidelen += 2 print(sum(spiral_corners(1001)))
# V0 # V1 # https://blog.csdn.net/weixin_38111819/article/details/79131409 # https://blog.csdn.net/XX_123_1_RJ/article/details/81021815 # IDEA : DFS class Solution(object): def permuteUnique(self, nums): """ :type nums: List[int] :rtype: List[List[int]] """ res = [] nums.sort() self.dfs(nums, [], res) return res def dfs(self, nums, path, res): if not nums: res.append(path) for i in range(len(nums)): if i>0 and nums[i] == nums[i-1]: continue self.dfs(nums[:i]+nums[i+1:], path+[nums[i]], res) # V2 # Time: O(n * n!) # Space: O(n) class Solution(object): def permuteUnique(self, nums): """ :type nums: List[int] :rtype: List[List[int]] """ nums.sort() result = [] used = [False] * len(nums) self.permuteUniqueRecu(result, used, [], nums) return result def permuteUniqueRecu(self, result, used, cur, nums): if len(cur) == len(nums): result.append(cur + []) return for i in range(len(nums)): if used[i] or (i > 0 and nums[i-1] == nums[i] and not used[i-1]): continue used[i] = True cur.append(nums[i]) self.permuteUniqueRecu(result, used, cur, nums) cur.pop() used[i] = False class Solution2(object): # @param num, a list of integer # @return a list of lists of integers def permuteUnique(self, nums): solutions = [[]] for num in nums: next = [] for solution in solutions: for i in range(len(solution) + 1): candidate = solution[:i] + [num] + solution[i:] if candidate not in next: next.append(candidate) solutions = next return solutions
class Solution(object): def permute_unique(self, nums): """ :type nums: List[int] :rtype: List[List[int]] """ res = [] nums.sort() self.dfs(nums, [], res) return res def dfs(self, nums, path, res): if not nums: res.append(path) for i in range(len(nums)): if i > 0 and nums[i] == nums[i - 1]: continue self.dfs(nums[:i] + nums[i + 1:], path + [nums[i]], res) class Solution(object): def permute_unique(self, nums): """ :type nums: List[int] :rtype: List[List[int]] """ nums.sort() result = [] used = [False] * len(nums) self.permuteUniqueRecu(result, used, [], nums) return result def permute_unique_recu(self, result, used, cur, nums): if len(cur) == len(nums): result.append(cur + []) return for i in range(len(nums)): if used[i] or (i > 0 and nums[i - 1] == nums[i] and (not used[i - 1])): continue used[i] = True cur.append(nums[i]) self.permuteUniqueRecu(result, used, cur, nums) cur.pop() used[i] = False class Solution2(object): def permute_unique(self, nums): solutions = [[]] for num in nums: next = [] for solution in solutions: for i in range(len(solution) + 1): candidate = solution[:i] + [num] + solution[i:] if candidate not in next: next.append(candidate) solutions = next return solutions
class Solution1: def min_camera_cover(self, root): self._num_camera = 0 def dfs(node): if not node: return 2 left, right = dfs(node.left), dfs(node.right) if left == 0 or right == 0: self._num_camera += 1 return 1 return 2 if left == 1 or right == 1 else 0 return (dfs(root) == 0) + self._num_camera class SolutionMINE: def min_camera_cover(self, root): self._num_camera = 0 dummy = TreeNode(0, left=root, right=None) self.helper(dummy) return self._num_camera def helper(self, node): left = self.helper(node.left) if node.left else 0 right = self.helper(node.right) if node.right else 0 if left == 2 or right == 2: self._num_camera += 1 if left == right == 0: return 2 return max(left, right) - 1
class Solution1: def min_camera_cover(self, root): self._num_camera = 0 def dfs(node): if not node: return 2 (left, right) = (dfs(node.left), dfs(node.right)) if left == 0 or right == 0: self._num_camera += 1 return 1 return 2 if left == 1 or right == 1 else 0 return (dfs(root) == 0) + self._num_camera class Solutionmine: def min_camera_cover(self, root): self._num_camera = 0 dummy = tree_node(0, left=root, right=None) self.helper(dummy) return self._num_camera def helper(self, node): left = self.helper(node.left) if node.left else 0 right = self.helper(node.right) if node.right else 0 if left == 2 or right == 2: self._num_camera += 1 if left == right == 0: return 2 return max(left, right) - 1
# # PySNMP MIB module ZYXEL-STATIC-ROUTE-MIB (http://snmplabs.com/pysmi) # ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/ZYXEL-STATIC-ROUTE-MIB # Produced by pysmi-0.3.4 at Wed May 1 15:51:43 2019 # On host DAVWANG4-M-1475 platform Darwin version 18.5.0 by user davwang4 # Using Python version 3.7.3 (default, Mar 27 2019, 09:23:15) # ObjectIdentifier, Integer, OctetString = mibBuilder.importSymbols("ASN1", "ObjectIdentifier", "Integer", "OctetString") NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues") SingleValueConstraint, ConstraintsIntersection, ValueSizeConstraint, ValueRangeConstraint, ConstraintsUnion = mibBuilder.importSymbols("ASN1-REFINEMENT", "SingleValueConstraint", "ConstraintsIntersection", "ValueSizeConstraint", "ValueRangeConstraint", "ConstraintsUnion") NotificationGroup, ModuleCompliance = mibBuilder.importSymbols("SNMPv2-CONF", "NotificationGroup", "ModuleCompliance") Unsigned32, MibScalar, MibTable, MibTableRow, MibTableColumn, Bits, Counter32, iso, NotificationType, Integer32, IpAddress, Counter64, MibIdentifier, ObjectIdentity, TimeTicks, ModuleIdentity, Gauge32 = mibBuilder.importSymbols("SNMPv2-SMI", "Unsigned32", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "Bits", "Counter32", "iso", "NotificationType", "Integer32", "IpAddress", "Counter64", "MibIdentifier", "ObjectIdentity", "TimeTicks", "ModuleIdentity", "Gauge32") DisplayString, TextualConvention, RowStatus = mibBuilder.importSymbols("SNMPv2-TC", "DisplayString", "TextualConvention", "RowStatus") esMgmt, = mibBuilder.importSymbols("ZYXEL-ES-SMI", "esMgmt") zyxelStaticRoute = ModuleIdentity((1, 3, 6, 1, 4, 1, 890, 1, 15, 3, 77)) if mibBuilder.loadTexts: zyxelStaticRoute.setLastUpdated('201207010000Z') if mibBuilder.loadTexts: zyxelStaticRoute.setOrganization('Enterprise Solution ZyXEL') if mibBuilder.loadTexts: zyxelStaticRoute.setContactInfo('') if mibBuilder.loadTexts: zyxelStaticRoute.setDescription('The subtree for static route') zyxelStaticRouteSetup = MibIdentifier((1, 3, 6, 1, 4, 1, 890, 1, 15, 3, 77, 1)) zyStaticRouteMaxNumberOfRoutes = MibScalar((1, 3, 6, 1, 4, 1, 890, 1, 15, 3, 77, 1, 1), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: zyStaticRouteMaxNumberOfRoutes.setStatus('current') if mibBuilder.loadTexts: zyStaticRouteMaxNumberOfRoutes.setDescription('The maximum number of static route entries that can be created.') zyxelStaticRouteTable = MibTable((1, 3, 6, 1, 4, 1, 890, 1, 15, 3, 77, 1, 2), ) if mibBuilder.loadTexts: zyxelStaticRouteTable.setStatus('current') if mibBuilder.loadTexts: zyxelStaticRouteTable.setDescription('The table cantains static route configuration.') zyxelStaticRouteEntry = MibTableRow((1, 3, 6, 1, 4, 1, 890, 1, 15, 3, 77, 1, 2, 1), ).setIndexNames((0, "ZYXEL-STATIC-ROUTE-MIB", "zyStaticRouteIpAddress"), (0, "ZYXEL-STATIC-ROUTE-MIB", "zyStaticRouteSubnetMask"), (0, "ZYXEL-STATIC-ROUTE-MIB", "zyStaticRouteGateway")) if mibBuilder.loadTexts: zyxelStaticRouteEntry.setStatus('current') if mibBuilder.loadTexts: zyxelStaticRouteEntry.setDescription('An entry contains static route configuration.') zyStaticRouteName = MibTableColumn((1, 3, 6, 1, 4, 1, 890, 1, 15, 3, 77, 1, 2, 1, 1), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: zyStaticRouteName.setStatus('current') if mibBuilder.loadTexts: zyStaticRouteName.setDescription('A descriptive name (up to 10 printable ASCII characters) for identification purposes.') zyStaticRouteIpAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 890, 1, 15, 3, 77, 1, 2, 1, 2), IpAddress()) if mibBuilder.loadTexts: zyStaticRouteIpAddress.setStatus('current') if mibBuilder.loadTexts: zyStaticRouteIpAddress.setDescription('This parameter specifies the IP network address of the final destination. Routing is always based on network number. If you need to specify a route to a single host, use a subnet mask of 255.255.255.255 in the subnet mask field to force the network number to be identical to the host ID.') zyStaticRouteSubnetMask = MibTableColumn((1, 3, 6, 1, 4, 1, 890, 1, 15, 3, 77, 1, 2, 1, 3), IpAddress()) if mibBuilder.loadTexts: zyStaticRouteSubnetMask.setStatus('current') if mibBuilder.loadTexts: zyStaticRouteSubnetMask.setDescription('The subnet mask of an IP routing domain that is associated to a static route.') zyStaticRouteGateway = MibTableColumn((1, 3, 6, 1, 4, 1, 890, 1, 15, 3, 77, 1, 2, 1, 4), IpAddress()) if mibBuilder.loadTexts: zyStaticRouteGateway.setStatus('current') if mibBuilder.loadTexts: zyStaticRouteGateway.setDescription('The IP address of gateway. The gateway is an immediate neighbor of your Switch that will forward the packet to the destination. The gateway must be a router on the same segment as your Switch. ') zyStaticRouteMetric = MibTableColumn((1, 3, 6, 1, 4, 1, 890, 1, 15, 3, 77, 1, 2, 1, 5), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: zyStaticRouteMetric.setStatus('current') if mibBuilder.loadTexts: zyStaticRouteMetric.setDescription('The metric represents the cost of transmission for routing purposes. IP routing uses hop count as the measurement of cost, with a minimum of 1 for directly connected networks. Enter a number that approximates the cost for this link. The number need not be precise, but it must be between 1 and 15. In practice, 2 or 3 is usually a good number.') zyStaticRouteRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 890, 1, 15, 3, 77, 1, 2, 1, 6), RowStatus()).setMaxAccess("readcreate") if mibBuilder.loadTexts: zyStaticRouteRowStatus.setStatus('current') if mibBuilder.loadTexts: zyStaticRouteRowStatus.setDescription('This object allows entries to be created and deleted from the static route table.') mibBuilder.exportSymbols("ZYXEL-STATIC-ROUTE-MIB", zyStaticRouteRowStatus=zyStaticRouteRowStatus, zyStaticRouteIpAddress=zyStaticRouteIpAddress, zyStaticRouteSubnetMask=zyStaticRouteSubnetMask, zyStaticRouteMetric=zyStaticRouteMetric, zyxelStaticRouteTable=zyxelStaticRouteTable, zyxelStaticRouteSetup=zyxelStaticRouteSetup, zyStaticRouteGateway=zyStaticRouteGateway, zyxelStaticRouteEntry=zyxelStaticRouteEntry, zyxelStaticRoute=zyxelStaticRoute, PYSNMP_MODULE_ID=zyxelStaticRoute, zyStaticRouteMaxNumberOfRoutes=zyStaticRouteMaxNumberOfRoutes, zyStaticRouteName=zyStaticRouteName)
(object_identifier, integer, octet_string) = mibBuilder.importSymbols('ASN1', 'ObjectIdentifier', 'Integer', 'OctetString') (named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues') (single_value_constraint, constraints_intersection, value_size_constraint, value_range_constraint, constraints_union) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'SingleValueConstraint', 'ConstraintsIntersection', 'ValueSizeConstraint', 'ValueRangeConstraint', 'ConstraintsUnion') (notification_group, module_compliance) = mibBuilder.importSymbols('SNMPv2-CONF', 'NotificationGroup', 'ModuleCompliance') (unsigned32, mib_scalar, mib_table, mib_table_row, mib_table_column, bits, counter32, iso, notification_type, integer32, ip_address, counter64, mib_identifier, object_identity, time_ticks, module_identity, gauge32) = mibBuilder.importSymbols('SNMPv2-SMI', 'Unsigned32', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn', 'Bits', 'Counter32', 'iso', 'NotificationType', 'Integer32', 'IpAddress', 'Counter64', 'MibIdentifier', 'ObjectIdentity', 'TimeTicks', 'ModuleIdentity', 'Gauge32') (display_string, textual_convention, row_status) = mibBuilder.importSymbols('SNMPv2-TC', 'DisplayString', 'TextualConvention', 'RowStatus') (es_mgmt,) = mibBuilder.importSymbols('ZYXEL-ES-SMI', 'esMgmt') zyxel_static_route = module_identity((1, 3, 6, 1, 4, 1, 890, 1, 15, 3, 77)) if mibBuilder.loadTexts: zyxelStaticRoute.setLastUpdated('201207010000Z') if mibBuilder.loadTexts: zyxelStaticRoute.setOrganization('Enterprise Solution ZyXEL') if mibBuilder.loadTexts: zyxelStaticRoute.setContactInfo('') if mibBuilder.loadTexts: zyxelStaticRoute.setDescription('The subtree for static route') zyxel_static_route_setup = mib_identifier((1, 3, 6, 1, 4, 1, 890, 1, 15, 3, 77, 1)) zy_static_route_max_number_of_routes = mib_scalar((1, 3, 6, 1, 4, 1, 890, 1, 15, 3, 77, 1, 1), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: zyStaticRouteMaxNumberOfRoutes.setStatus('current') if mibBuilder.loadTexts: zyStaticRouteMaxNumberOfRoutes.setDescription('The maximum number of static route entries that can be created.') zyxel_static_route_table = mib_table((1, 3, 6, 1, 4, 1, 890, 1, 15, 3, 77, 1, 2)) if mibBuilder.loadTexts: zyxelStaticRouteTable.setStatus('current') if mibBuilder.loadTexts: zyxelStaticRouteTable.setDescription('The table cantains static route configuration.') zyxel_static_route_entry = mib_table_row((1, 3, 6, 1, 4, 1, 890, 1, 15, 3, 77, 1, 2, 1)).setIndexNames((0, 'ZYXEL-STATIC-ROUTE-MIB', 'zyStaticRouteIpAddress'), (0, 'ZYXEL-STATIC-ROUTE-MIB', 'zyStaticRouteSubnetMask'), (0, 'ZYXEL-STATIC-ROUTE-MIB', 'zyStaticRouteGateway')) if mibBuilder.loadTexts: zyxelStaticRouteEntry.setStatus('current') if mibBuilder.loadTexts: zyxelStaticRouteEntry.setDescription('An entry contains static route configuration.') zy_static_route_name = mib_table_column((1, 3, 6, 1, 4, 1, 890, 1, 15, 3, 77, 1, 2, 1, 1), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: zyStaticRouteName.setStatus('current') if mibBuilder.loadTexts: zyStaticRouteName.setDescription('A descriptive name (up to 10 printable ASCII characters) for identification purposes.') zy_static_route_ip_address = mib_table_column((1, 3, 6, 1, 4, 1, 890, 1, 15, 3, 77, 1, 2, 1, 2), ip_address()) if mibBuilder.loadTexts: zyStaticRouteIpAddress.setStatus('current') if mibBuilder.loadTexts: zyStaticRouteIpAddress.setDescription('This parameter specifies the IP network address of the final destination. Routing is always based on network number. If you need to specify a route to a single host, use a subnet mask of 255.255.255.255 in the subnet mask field to force the network number to be identical to the host ID.') zy_static_route_subnet_mask = mib_table_column((1, 3, 6, 1, 4, 1, 890, 1, 15, 3, 77, 1, 2, 1, 3), ip_address()) if mibBuilder.loadTexts: zyStaticRouteSubnetMask.setStatus('current') if mibBuilder.loadTexts: zyStaticRouteSubnetMask.setDescription('The subnet mask of an IP routing domain that is associated to a static route.') zy_static_route_gateway = mib_table_column((1, 3, 6, 1, 4, 1, 890, 1, 15, 3, 77, 1, 2, 1, 4), ip_address()) if mibBuilder.loadTexts: zyStaticRouteGateway.setStatus('current') if mibBuilder.loadTexts: zyStaticRouteGateway.setDescription('The IP address of gateway. The gateway is an immediate neighbor of your Switch that will forward the packet to the destination. The gateway must be a router on the same segment as your Switch. ') zy_static_route_metric = mib_table_column((1, 3, 6, 1, 4, 1, 890, 1, 15, 3, 77, 1, 2, 1, 5), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: zyStaticRouteMetric.setStatus('current') if mibBuilder.loadTexts: zyStaticRouteMetric.setDescription('The metric represents the cost of transmission for routing purposes. IP routing uses hop count as the measurement of cost, with a minimum of 1 for directly connected networks. Enter a number that approximates the cost for this link. The number need not be precise, but it must be between 1 and 15. In practice, 2 or 3 is usually a good number.') zy_static_route_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 890, 1, 15, 3, 77, 1, 2, 1, 6), row_status()).setMaxAccess('readcreate') if mibBuilder.loadTexts: zyStaticRouteRowStatus.setStatus('current') if mibBuilder.loadTexts: zyStaticRouteRowStatus.setDescription('This object allows entries to be created and deleted from the static route table.') mibBuilder.exportSymbols('ZYXEL-STATIC-ROUTE-MIB', zyStaticRouteRowStatus=zyStaticRouteRowStatus, zyStaticRouteIpAddress=zyStaticRouteIpAddress, zyStaticRouteSubnetMask=zyStaticRouteSubnetMask, zyStaticRouteMetric=zyStaticRouteMetric, zyxelStaticRouteTable=zyxelStaticRouteTable, zyxelStaticRouteSetup=zyxelStaticRouteSetup, zyStaticRouteGateway=zyStaticRouteGateway, zyxelStaticRouteEntry=zyxelStaticRouteEntry, zyxelStaticRoute=zyxelStaticRoute, PYSNMP_MODULE_ID=zyxelStaticRoute, zyStaticRouteMaxNumberOfRoutes=zyStaticRouteMaxNumberOfRoutes, zyStaticRouteName=zyStaticRouteName)
""" Preparing higher-resolution data generators for the Jena dataset """ # Previously set to 6 (1 point per hour); # now 3 (1 point per 30 min) step = 3 lookback = 720 delay = 144 train_gen = generator( float_data, lookback=lookback, delay=delay, min_index=0, max_index=200000, shuffle=True, step=step ) val_gen = generator( float_data, lookback=lookback, delay=delay, min_index=200001, max_index=300000, step=step ) test_gen = generator( float_data, lookback=lookback, delay=delay, min_index=300001, max_index=None, step=step ) val_steps = (300000 - 200001 - lookback) // 128 test_steps = (len(float_data) - 300001 - lookback) // 128
""" Preparing higher-resolution data generators for the Jena dataset """ step = 3 lookback = 720 delay = 144 train_gen = generator(float_data, lookback=lookback, delay=delay, min_index=0, max_index=200000, shuffle=True, step=step) val_gen = generator(float_data, lookback=lookback, delay=delay, min_index=200001, max_index=300000, step=step) test_gen = generator(float_data, lookback=lookback, delay=delay, min_index=300001, max_index=None, step=step) val_steps = (300000 - 200001 - lookback) // 128 test_steps = (len(float_data) - 300001 - lookback) // 128
""" Given a directed graph, check if it contains a cycle. What's the real time application of this? Imagine there is a deadlock detection in a system. Processes can be determined by vertices a& edge can be - Process is waiting for process B to release the mutex There are 2 approaches to this: 1. Using color theory 2. Using powers of two """ # These example inputs can be generated using defaultdict graph_with_cycle = { "A": ["B", "C"], "B": ["D"], "C": ["F"], "D": ["E", "F"], "E": ["B"], "F": [], } graph_without_cycle = { "A": ["B", "C"], "B": ["D", "E"], "C": ["F"], "D": ["E"], "E": [], "F": [], } color_map = {"WHITE": 0, "GRAY": 1, "BLACK": 2} def is_in_cycle(graph, states, vertex): if states[vertex] == color_map["GRAY"]: return True states[vertex] = color_map["GRAY"] for nei in graph[vertex]: if is_in_cycle(graph, states, nei): return True states[vertex] = color_map["BLACK"] return False def contains_cycle(graph): states = {vertex: color_map["WHITE"] for vertex in graph} for vertex, state in states.items(): if state == color_map["WHITE"] and is_in_cycle(graph, states, vertex): return True return False # ----------------------------------------------------------------------------------------- if __name__ == "__main__": print(contains_cycle(graph_with_cycle)) print(contains_cycle(graph_without_cycle))
""" Given a directed graph, check if it contains a cycle. What's the real time application of this? Imagine there is a deadlock detection in a system. Processes can be determined by vertices a& edge can be - Process is waiting for process B to release the mutex There are 2 approaches to this: 1. Using color theory 2. Using powers of two """ graph_with_cycle = {'A': ['B', 'C'], 'B': ['D'], 'C': ['F'], 'D': ['E', 'F'], 'E': ['B'], 'F': []} graph_without_cycle = {'A': ['B', 'C'], 'B': ['D', 'E'], 'C': ['F'], 'D': ['E'], 'E': [], 'F': []} color_map = {'WHITE': 0, 'GRAY': 1, 'BLACK': 2} def is_in_cycle(graph, states, vertex): if states[vertex] == color_map['GRAY']: return True states[vertex] = color_map['GRAY'] for nei in graph[vertex]: if is_in_cycle(graph, states, nei): return True states[vertex] = color_map['BLACK'] return False def contains_cycle(graph): states = {vertex: color_map['WHITE'] for vertex in graph} for (vertex, state) in states.items(): if state == color_map['WHITE'] and is_in_cycle(graph, states, vertex): return True return False if __name__ == '__main__': print(contains_cycle(graph_with_cycle)) print(contains_cycle(graph_without_cycle))
""" Given a collection of candidate numbers (candidates) and a target number (target), find all unique combinations in candidates where the candidate numbers sum to target. Each number in candidates may only be used once in the combination. Note: The solution set must not contain duplicate combinations. Example 1: Input: candidates = [10,1,2,7,6,1,5], target = 8 Output: [ [1,1,6], [1,2,5], [1,7], [2,6] ] Example 2: Input: candidates = [2,5,2,1,2], target = 5 Output: [ [1,2,2], [5] ] Constraints: 1. 1 <= candidates.length <= 100 2. 1 <= candidates[i] <= 50 3. 1 <= target <= 30 """ class Solution: def combinationSum2(self, candidates: List[int], target: int) -> List[List[int]]: """ Recursion Runtime: 40ms """ candidates.sort() def helper(nums, t: int): res = [] used = set() for i, x in enumerate(nums): if x not in used: if x > t: return res elif x == t: res.append([x]) return res used.add(x) if i < len(nums) - 1: next_comb = helper(nums[i+1:], t - x) for l in next_comb: res.append([x] + l) return res return helper(candidates, target)
""" Given a collection of candidate numbers (candidates) and a target number (target), find all unique combinations in candidates where the candidate numbers sum to target. Each number in candidates may only be used once in the combination. Note: The solution set must not contain duplicate combinations. Example 1: Input: candidates = [10,1,2,7,6,1,5], target = 8 Output: [ [1,1,6], [1,2,5], [1,7], [2,6] ] Example 2: Input: candidates = [2,5,2,1,2], target = 5 Output: [ [1,2,2], [5] ] Constraints: 1. 1 <= candidates.length <= 100 2. 1 <= candidates[i] <= 50 3. 1 <= target <= 30 """ class Solution: def combination_sum2(self, candidates: List[int], target: int) -> List[List[int]]: """ Recursion Runtime: 40ms """ candidates.sort() def helper(nums, t: int): res = [] used = set() for (i, x) in enumerate(nums): if x not in used: if x > t: return res elif x == t: res.append([x]) return res used.add(x) if i < len(nums) - 1: next_comb = helper(nums[i + 1:], t - x) for l in next_comb: res.append([x] + l) return res return helper(candidates, target)
""" Copyright (c) 2016 Alexander Menkin Use of this source code is governed by an MIT-style license that can be found in the LICENSE file at https://github.com/miloiloloo/diploma_2017_data_generation/blob/master/LICENSE """ def unite(parameters): """ unite n action's execution in one :param parameters: [(a1, p1) ... (an, pn)] where ai: action #i pi: parameters for action #i """ for pair in parameters: a, p = pair a(p) return def empty(parameters): """ empty action: it does nothing :param parameters: will be ignored """ return
""" Copyright (c) 2016 Alexander Menkin Use of this source code is governed by an MIT-style license that can be found in the LICENSE file at https://github.com/miloiloloo/diploma_2017_data_generation/blob/master/LICENSE """ def unite(parameters): """ unite n action's execution in one :param parameters: [(a1, p1) ... (an, pn)] where ai: action #i pi: parameters for action #i """ for pair in parameters: (a, p) = pair a(p) return def empty(parameters): """ empty action: it does nothing :param parameters: will be ignored """ return
one = input() two = input() one = one.split() two = two.split() print("VALOR A PAGAR: R$ {:.2f}".format((float(one[1]) * float(one[2])) + (float(two[1]) * float(two[2]))))
one = input() two = input() one = one.split() two = two.split() print('VALOR A PAGAR: R$ {:.2f}'.format(float(one[1]) * float(one[2]) + float(two[1]) * float(two[2])))
##Elias Howell | 10/02/2019 | Lab Assignment #4 ## ##Program takes status of buttons and outputs prank configured status of hallway lights ##Algorithm: ## 0)Requests individual button on/off status ## 1)Validates input to ensure input is on or off ## 2)Decides whether or not a hallway light should be on or off according to prank settings ## 3)Prints hallway light output to screen #Initialization of button status B1 = input("Enter the state of B1 (on|off): ") B1 = B1.upper() B2 = input("Enter the state of B2 (on|off): ") B2 = B2.upper() B3 = input("Enter the state of B3 (on|off): ") B3 = B3.upper() B4 = input("Enter the state of B4 (on|off): ") B4 = B4.upper() #Input validation for button status while not ((B1 == "ON" or B1 == "OFF") and (B2 == "ON" or B2 == "OFF") and (B3 == "ON" or B3 == "OFF") and (B4 == "ON" or B4 == "OFF")): print("\nOne of your inputs were invalid. Input must be 'on' or 'off' it isn't case sensetive.\n") B1 = input("Enter the state of B1 (on|off): ") B1 = B1.upper() B2 = input("Enter the state of B2 (on|off): ") B2 = B2.upper() B3 = input("Enter the state of B3 (on|off): ") B3 = B3.upper() B4 = input("Enter the state of B4 (on|off): ") B4 = B4.upper() #Decides whether or not a hallway light is ultimately on or off if (B1 == "ON" and B4 == "OFF") or (B1 == "OFF" and B4 == "ON"): nwStatus = "ON" else: nwStatus = "OFF" if (B2 == "ON" and B3 == "OFF") or (B2 == "OFF" and B3 == "ON"): neStatus = "ON" else: neStatus = "OFF" if (B1 == "ON" and B3 == "OFF") or (B1 == "OFF" and B3 == "ON"): seStatus = "ON" else: seStatus = "OFF" if (B2 == "ON" and B4 == "OFF") or (B2 == "OFF" and B4 == "ON"): swStatus = "ON" else: swStatus = "OFF" #Print light status print("\n\nLight status for NW Hallway:", nwStatus) print("Light status for NE Hallway:", neStatus) print("Light status for SE Hallway:", seStatus) print("Light status for SW Hallway:", swStatus)
b1 = input('Enter the state of B1 (on|off): ') b1 = B1.upper() b2 = input('Enter the state of B2 (on|off): ') b2 = B2.upper() b3 = input('Enter the state of B3 (on|off): ') b3 = B3.upper() b4 = input('Enter the state of B4 (on|off): ') b4 = B4.upper() while not ((B1 == 'ON' or B1 == 'OFF') and (B2 == 'ON' or B2 == 'OFF') and (B3 == 'ON' or B3 == 'OFF') and (B4 == 'ON' or B4 == 'OFF')): print("\nOne of your inputs were invalid. Input must be 'on' or 'off' it isn't case sensetive.\n") b1 = input('Enter the state of B1 (on|off): ') b1 = B1.upper() b2 = input('Enter the state of B2 (on|off): ') b2 = B2.upper() b3 = input('Enter the state of B3 (on|off): ') b3 = B3.upper() b4 = input('Enter the state of B4 (on|off): ') b4 = B4.upper() if B1 == 'ON' and B4 == 'OFF' or (B1 == 'OFF' and B4 == 'ON'): nw_status = 'ON' else: nw_status = 'OFF' if B2 == 'ON' and B3 == 'OFF' or (B2 == 'OFF' and B3 == 'ON'): ne_status = 'ON' else: ne_status = 'OFF' if B1 == 'ON' and B3 == 'OFF' or (B1 == 'OFF' and B3 == 'ON'): se_status = 'ON' else: se_status = 'OFF' if B2 == 'ON' and B4 == 'OFF' or (B2 == 'OFF' and B4 == 'ON'): sw_status = 'ON' else: sw_status = 'OFF' print('\n\nLight status for NW Hallway:', nwStatus) print('Light status for NE Hallway:', neStatus) print('Light status for SE Hallway:', seStatus) print('Light status for SW Hallway:', swStatus)
#-*- coding:utf-8 -*- class Filter(object): def __init__(self, all_seeds, ac, re): self._all = all_seeds self._accept = ac self._reject = re
class Filter(object): def __init__(self, all_seeds, ac, re): self._all = all_seeds self._accept = ac self._reject = re
def test_test(): assert 123 == "123" def test_test_2(): assert [] == "[]"
def test_test(): assert 123 == '123' def test_test_2(): assert [] == '[]'
class FileForm(forms.ModelForm): class Meta: model= File fields= ["name", "filepath"]
class Fileform(forms.ModelForm): class Meta: model = File fields = ['name', 'filepath']
class Solution: def longestStrChain(self, words: List[str]) -> int: words.sort(key=lambda x: len(x)) dp = {} ans = 0 for word in words: dp[word] = 1 for word in words: for i in range(len(word)): split = word[:i] + word[i + 1:] if split in dp: dp[word] = max(dp[word], dp[split] + 1) ans = max(ans, dp[word]) return ans
class Solution: def longest_str_chain(self, words: List[str]) -> int: words.sort(key=lambda x: len(x)) dp = {} ans = 0 for word in words: dp[word] = 1 for word in words: for i in range(len(word)): split = word[:i] + word[i + 1:] if split in dp: dp[word] = max(dp[word], dp[split] + 1) ans = max(ans, dp[word]) return ans
#!/usr/bin/env python3 #-*-coding:utf-8-*- """Note: In Python 3, there is only one integer type int, which is represented as a long integer, and there is no Long in python2. """ class BasicDataType(): str_a = "100" str_b = "300" # Note that this is in line with the rules of type string, # if the string is a text form or the like can not be int() a function of the cast. print(str_a + str_b) print(int(str_a) + int(str_b)) """ There is a string of decimal form can not be int() a function of conversion. It does not mean that floating-point numbers cannot be converted to integers, but the strings in decimal form cannot be forcibly converted to strings. print(int("66.66")) class BasicDataType(): File "python-practice/Basis/basis/transform.py", line 27, in BasicDataType print(int("66.66")) ValueError: invalid literal for int() with base 10: '66.66' """ #Float or can int() function conversion. print(int(66.66))
"""Note: In Python 3, there is only one integer type int, which is represented as a long integer, and there is no Long in python2. """ class Basicdatatype: str_a = '100' str_b = '300' print(str_a + str_b) print(int(str_a) + int(str_b)) '\n There is a string of decimal form can not be int() a function of conversion.\n \n It does not mean that floating-point numbers cannot be converted to integers, \n but the strings in decimal form cannot be forcibly converted to strings.\n \n print(int("66.66"))\n \n class BasicDataType():\n File "python-practice/Basis/basis/transform.py", line 27, in BasicDataType\n print(int("66.66"))\nValueError: invalid literal for int() with base 10: \'66.66\'\n ' print(int(66.66))
class A(object): def __init__(self, x): self.x = x def __neg__(self): return A(-self.x) def __pos__(self): return A(abs(self.x)) def __invert__(self): return A(~self.x) def __add__(self, other): return A(self.x + other.x) a1 = A(1) a2 = A(2) a3 = A(3) a5 = a1 + a2 + (-a3) + (+A(-4)) + (~a1) # breakpoint
class A(object): def __init__(self, x): self.x = x def __neg__(self): return a(-self.x) def __pos__(self): return a(abs(self.x)) def __invert__(self): return a(~self.x) def __add__(self, other): return a(self.x + other.x) a1 = a(1) a2 = a(2) a3 = a(3) a5 = a1 + a2 + -a3 + +a(-4) + ~a1
# Definition for a binary tree node. # class TreeNode: # def __init__(self, val=0, left=None, right=None): # self.val = val # self.left = left # self.right = right class Solution: def isSameTree(self, p: TreeNode, q: TreeNode) -> bool: stack1 = [p] stack2 = [q] while stack1 and stack2: node1 = stack1.pop() node2 = stack2.pop() if not node1 and not node2: continue if not node1 or not node2: return False if node1.val != node2.val: return False stack1.append(node1.left) stack1.append(node1.right) stack2.append(node2.left) stack2.append(node2.right) return len(stack1) == len(stack2)
class Solution: def is_same_tree(self, p: TreeNode, q: TreeNode) -> bool: stack1 = [p] stack2 = [q] while stack1 and stack2: node1 = stack1.pop() node2 = stack2.pop() if not node1 and (not node2): continue if not node1 or not node2: return False if node1.val != node2.val: return False stack1.append(node1.left) stack1.append(node1.right) stack2.append(node2.left) stack2.append(node2.right) return len(stack1) == len(stack2)
if __name__ == "__main__": print("Preprocessing data")
if __name__ == '__main__': print('Preprocessing data')
""" Project ======= """ def f(x: bool = True) -> bool: """ Given a boolean, return the opposite. :param bool x: our boolean parameter. :return: the opposite of the param. :rtype: bool :raises TypeError: if x isn't bool. """ if not type(x) == bool: raise TypeError("No!") return not x
""" Project ======= """ def f(x: bool=True) -> bool: """ Given a boolean, return the opposite. :param bool x: our boolean parameter. :return: the opposite of the param. :rtype: bool :raises TypeError: if x isn't bool. """ if not type(x) == bool: raise type_error('No!') return not x
power = {'BUSES': {'Area': 1.33155, 'Bus/Area': 1.33155, 'Bus/Gate Leakage': 0.00662954, 'Bus/Peak Dynamic': 0.0, 'Bus/Runtime Dynamic': 0.0, 'Bus/Subthreshold Leakage': 0.0691322, 'Bus/Subthreshold Leakage with power gating': 0.0259246, 'Gate Leakage': 0.00662954, 'Peak Dynamic': 0.0, 'Runtime Dynamic': 0.0, 'Subthreshold Leakage': 0.0691322, 'Subthreshold Leakage with power gating': 0.0259246}, 'Core': [{'Area': 32.6082, 'Execution Unit/Area': 8.2042, 'Execution Unit/Complex ALUs/Area': 0.235435, 'Execution Unit/Complex ALUs/Gate Leakage': 0.0132646, 'Execution Unit/Complex ALUs/Peak Dynamic': 0.252741, 'Execution Unit/Complex ALUs/Runtime Dynamic': 0.401203, 'Execution Unit/Complex ALUs/Subthreshold Leakage': 0.20111, 'Execution Unit/Complex ALUs/Subthreshold Leakage with power gating': 0.0754163, 'Execution Unit/Floating Point Units/Area': 4.6585, 'Execution Unit/Floating Point Units/Gate Leakage': 0.0656156, 'Execution Unit/Floating Point Units/Peak Dynamic': 1.06821, 'Execution Unit/Floating Point Units/Runtime Dynamic': 0.304033, 'Execution Unit/Floating Point Units/Subthreshold Leakage': 0.994829, 'Execution Unit/Floating Point Units/Subthreshold Leakage with power gating': 0.373061, 'Execution Unit/Gate Leakage': 0.122718, 'Execution Unit/Instruction Scheduler/Area': 2.17927, 'Execution Unit/Instruction Scheduler/FP Instruction Window/Area': 0.328073, 'Execution Unit/Instruction Scheduler/FP Instruction Window/Gate Leakage': 0.00115349, 'Execution Unit/Instruction Scheduler/FP Instruction Window/Peak Dynamic': 1.20978, 'Execution Unit/Instruction Scheduler/FP Instruction Window/Runtime Dynamic': 0.726949, 'Execution Unit/Instruction Scheduler/FP Instruction Window/Subthreshold Leakage': 0.017004, 'Execution Unit/Instruction Scheduler/FP Instruction Window/Subthreshold Leakage with power gating': 0.00962066, 'Execution Unit/Instruction Scheduler/Gate Leakage': 0.00730101, 'Execution Unit/Instruction Scheduler/Instruction Window/Area': 1.00996, 'Execution Unit/Instruction Scheduler/Instruction Window/Gate Leakage': 0.00529112, 'Execution Unit/Instruction Scheduler/Instruction Window/Peak Dynamic': 2.07911, 'Execution Unit/Instruction Scheduler/Instruction Window/Runtime Dynamic': 1.25881, 'Execution Unit/Instruction Scheduler/Instruction Window/Subthreshold Leakage': 0.0800117, 'Execution Unit/Instruction Scheduler/Instruction Window/Subthreshold Leakage with power gating': 0.0455351, 'Execution Unit/Instruction Scheduler/Peak Dynamic': 4.84781, 'Execution Unit/Instruction Scheduler/ROB/Area': 0.841232, 'Execution Unit/Instruction Scheduler/ROB/Gate Leakage': 0.000856399, 'Execution Unit/Instruction Scheduler/ROB/Peak Dynamic': 1.55892, 'Execution Unit/Instruction Scheduler/ROB/Runtime Dynamic': 0.721964, 'Execution Unit/Instruction Scheduler/ROB/Subthreshold Leakage': 0.0178624, 'Execution Unit/Instruction Scheduler/ROB/Subthreshold Leakage with power gating': 0.00897339, 'Execution Unit/Instruction Scheduler/Runtime Dynamic': 2.70773, 'Execution Unit/Instruction Scheduler/Subthreshold Leakage': 0.114878, 'Execution Unit/Instruction Scheduler/Subthreshold Leakage with power gating': 0.0641291, 'Execution Unit/Integer ALUs/Area': 0.47087, 'Execution Unit/Integer ALUs/Gate Leakage': 0.0265291, 'Execution Unit/Integer ALUs/Peak Dynamic': 0.554789, 'Execution Unit/Integer ALUs/Runtime Dynamic': 0.101344, 'Execution Unit/Integer ALUs/Subthreshold Leakage': 0.40222, 'Execution Unit/Integer ALUs/Subthreshold Leakage with power gating': 0.150833, 'Execution Unit/Peak Dynamic': 8.08567, 'Execution Unit/Register Files/Area': 0.570804, 'Execution Unit/Register Files/Floating Point RF/Area': 0.208131, 'Execution Unit/Register Files/Floating Point RF/Gate Leakage': 0.000232788, 'Execution Unit/Register Files/Floating Point RF/Peak Dynamic': 0.201807, 'Execution Unit/Register Files/Floating Point RF/Runtime Dynamic': 0.0263525, 'Execution Unit/Register Files/Floating Point RF/Subthreshold Leakage': 0.00399698, 'Execution Unit/Register Files/Floating Point RF/Subthreshold Leakage with power gating': 0.00176968, 'Execution Unit/Register Files/Gate Leakage': 0.000622708, 'Execution Unit/Register Files/Integer RF/Area': 0.362673, 'Execution Unit/Register Files/Integer RF/Gate Leakage': 0.00038992, 'Execution Unit/Register Files/Integer RF/Peak Dynamic': 0.297246, 'Execution Unit/Register Files/Integer RF/Runtime Dynamic': 0.194893, 'Execution Unit/Register Files/Integer RF/Subthreshold Leakage': 0.00614175, 'Execution Unit/Register Files/Integer RF/Subthreshold Leakage with power gating': 0.00246675, 'Execution Unit/Register Files/Peak Dynamic': 0.499054, 'Execution Unit/Register Files/Runtime Dynamic': 0.221245, 'Execution Unit/Register Files/Subthreshold Leakage': 0.0101387, 'Execution Unit/Register Files/Subthreshold Leakage with power gating': 0.00423643, 'Execution Unit/Results Broadcast Bus/Area Overhead': 0.0442632, 'Execution Unit/Results Broadcast Bus/Gate Leakage': 0.00607074, 'Execution Unit/Results Broadcast Bus/Peak Dynamic': 0.78751, 'Execution Unit/Results Broadcast Bus/Runtime Dynamic': 1.76002, 'Execution Unit/Results Broadcast Bus/Subthreshold Leakage': 0.0920413, 'Execution Unit/Results Broadcast Bus/Subthreshold Leakage with power gating': 0.0345155, 'Execution Unit/Runtime Dynamic': 5.49557, 'Execution Unit/Subthreshold Leakage': 1.83518, 'Execution Unit/Subthreshold Leakage with power gating': 0.709678, 'Gate Leakage': 0.372997, 'Instruction Fetch Unit/Area': 5.86007, 'Instruction Fetch Unit/Branch Predictor/Area': 0.138516, 'Instruction Fetch Unit/Branch Predictor/Chooser/Area': 0.0435221, 'Instruction Fetch Unit/Branch Predictor/Chooser/Gate Leakage': 0.000278362, 'Instruction Fetch Unit/Branch Predictor/Chooser/Peak Dynamic': 0.0168831, 'Instruction Fetch Unit/Branch Predictor/Chooser/Runtime Dynamic': 0.00212992, 'Instruction Fetch Unit/Branch Predictor/Chooser/Subthreshold Leakage': 0.00759719, 'Instruction Fetch Unit/Branch Predictor/Chooser/Subthreshold Leakage with power gating': 0.0039236, 'Instruction Fetch Unit/Branch Predictor/Gate Leakage': 0.000757657, 'Instruction Fetch Unit/Branch Predictor/Global Predictor/Area': 0.0435221, 'Instruction Fetch Unit/Branch Predictor/Global Predictor/Gate Leakage': 0.000278362, 'Instruction Fetch Unit/Branch Predictor/Global Predictor/Peak Dynamic': 0.0168831, 'Instruction Fetch Unit/Branch Predictor/Global Predictor/Runtime Dynamic': 0.00212992, 'Instruction Fetch Unit/Branch Predictor/Global Predictor/Subthreshold Leakage': 0.00759719, 'Instruction Fetch Unit/Branch Predictor/Global Predictor/Subthreshold Leakage with power gating': 0.0039236, 'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Area': 0.0257064, 'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Gate Leakage': 0.000154548, 'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Peak Dynamic': 0.0142575, 'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Runtime Dynamic': 0.00186263, 'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Subthreshold Leakage': 0.00384344, 'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Subthreshold Leakage with power gating': 0.00198631, 'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Area': 0.0151917, 'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Gate Leakage': 8.00196e-05, 'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Peak Dynamic': 0.00527447, 'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Runtime Dynamic': 0.000725147, 'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Subthreshold Leakage': 0.00181347, 'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Subthreshold Leakage with power gating': 0.000957045, 'Instruction Fetch Unit/Branch Predictor/Peak Dynamic': 0.0597838, 'Instruction Fetch Unit/Branch Predictor/RAS/Area': 0.0105732, 'Instruction Fetch Unit/Branch Predictor/RAS/Gate Leakage': 4.63858e-05, 'Instruction Fetch Unit/Branch Predictor/RAS/Peak Dynamic': 0.0117602, 'Instruction Fetch Unit/Branch Predictor/RAS/Runtime Dynamic': 0.00279965, 'Instruction Fetch Unit/Branch Predictor/RAS/Subthreshold Leakage': 0.000932505, 'Instruction Fetch Unit/Branch Predictor/RAS/Subthreshold Leakage with power gating': 0.000494733, 'Instruction Fetch Unit/Branch Predictor/Runtime Dynamic': 0.00892212, 'Instruction Fetch Unit/Branch Predictor/Subthreshold Leakage': 0.0199703, 'Instruction Fetch Unit/Branch Predictor/Subthreshold Leakage with power gating': 0.0103282, 'Instruction Fetch Unit/Branch Target Buffer/Area': 0.64954, 'Instruction Fetch Unit/Branch Target Buffer/Gate Leakage': 0.00272758, 'Instruction Fetch Unit/Branch Target Buffer/Peak Dynamic': 0.177867, 'Instruction Fetch Unit/Branch Target Buffer/Runtime Dynamic': 0.0201542, 'Instruction Fetch Unit/Branch Target Buffer/Subthreshold Leakage': 0.0811682, 'Instruction Fetch Unit/Branch Target Buffer/Subthreshold Leakage with power gating': 0.0435357, 'Instruction Fetch Unit/Gate Leakage': 0.0590479, 'Instruction Fetch Unit/Instruction Buffer/Area': 0.0226323, 'Instruction Fetch Unit/Instruction Buffer/Gate Leakage': 6.83558e-05, 'Instruction Fetch Unit/Instruction Buffer/Peak Dynamic': 0.606827, 'Instruction Fetch Unit/Instruction Buffer/Runtime Dynamic': 0.187355, 'Instruction Fetch Unit/Instruction Buffer/Subthreshold Leakage': 0.00151885, 'Instruction Fetch Unit/Instruction Buffer/Subthreshold Leakage with power gating': 0.000701682, 'Instruction Fetch Unit/Instruction Cache/Area': 3.14635, 'Instruction Fetch Unit/Instruction Cache/Gate Leakage': 0.029931, 'Instruction Fetch Unit/Instruction Cache/Peak Dynamic': 6.43323, 'Instruction Fetch Unit/Instruction Cache/Runtime Dynamic': 0.460187, 'Instruction Fetch Unit/Instruction Cache/Subthreshold Leakage': 0.367022, 'Instruction Fetch Unit/Instruction Cache/Subthreshold Leakage with power gating': 0.180386, 'Instruction Fetch Unit/Instruction Decoder/Area': 1.85799, 'Instruction Fetch Unit/Instruction Decoder/Gate Leakage': 0.0222493, 'Instruction Fetch Unit/Instruction Decoder/Peak Dynamic': 1.37404, 'Instruction Fetch Unit/Instruction Decoder/Runtime Dynamic': 0.636343, 'Instruction Fetch Unit/Instruction Decoder/Subthreshold Leakage': 0.442943, 'Instruction Fetch Unit/Instruction Decoder/Subthreshold Leakage with power gating': 0.166104, 'Instruction Fetch Unit/Peak Dynamic': 8.96874, 'Instruction Fetch Unit/Runtime Dynamic': 1.31296, 'Instruction Fetch Unit/Subthreshold Leakage': 0.932587, 'Instruction Fetch Unit/Subthreshold Leakage with power gating': 0.408542, 'L2/Area': 4.53318, 'L2/Gate Leakage': 0.015464, 'L2/Peak Dynamic': 0.0239757, 'L2/Runtime Dynamic': 0.00602306, 'L2/Subthreshold Leakage': 0.834142, 'L2/Subthreshold Leakage with power gating': 0.401066, 'Load Store Unit/Area': 8.80969, 'Load Store Unit/Data Cache/Area': 6.84535, 'Load Store Unit/Data Cache/Gate Leakage': 0.0279261, 'Load Store Unit/Data Cache/Peak Dynamic': 6.71927, 'Load Store Unit/Data Cache/Runtime Dynamic': 2.64227, 'Load Store Unit/Data Cache/Subthreshold Leakage': 0.527675, 'Load Store Unit/Data Cache/Subthreshold Leakage with power gating': 0.25085, 'Load Store Unit/Gate Leakage': 0.0351387, 'Load Store Unit/LoadQ/Area': 0.0836782, 'Load Store Unit/LoadQ/Gate Leakage': 0.00059896, 'Load Store Unit/LoadQ/Peak Dynamic': 0.177361, 'Load Store Unit/LoadQ/Runtime Dynamic': 0.177361, 'Load Store Unit/LoadQ/Subthreshold Leakage': 0.00941961, 'Load Store Unit/LoadQ/Subthreshold Leakage with power gating': 0.00536918, 'Load Store Unit/Peak Dynamic': 7.56022, 'Load Store Unit/Runtime Dynamic': 3.69432, 'Load Store Unit/StoreQ/Area': 0.322079, 'Load Store Unit/StoreQ/Gate Leakage': 0.00329971, 'Load Store Unit/StoreQ/Peak Dynamic': 0.437341, 'Load Store Unit/StoreQ/Runtime Dynamic': 0.874683, 'Load Store Unit/StoreQ/Subthreshold Leakage': 0.0345621, 'Load Store Unit/StoreQ/Subthreshold Leakage with power gating': 0.0197004, 'Load Store Unit/Subthreshold Leakage': 0.591622, 'Load Store Unit/Subthreshold Leakage with power gating': 0.283406, 'Memory Management Unit/Area': 0.434579, 'Memory Management Unit/Dtlb/Area': 0.0879726, 'Memory Management Unit/Dtlb/Gate Leakage': 0.00088729, 'Memory Management Unit/Dtlb/Peak Dynamic': 0.155214, 'Memory Management Unit/Dtlb/Runtime Dynamic': 0.155485, 'Memory Management Unit/Dtlb/Subthreshold Leakage': 0.0155699, 'Memory Management Unit/Dtlb/Subthreshold Leakage with power gating': 0.00887485, 'Memory Management Unit/Gate Leakage': 0.00813591, 'Memory Management Unit/Itlb/Area': 0.301552, 'Memory Management Unit/Itlb/Gate Leakage': 0.00393464, 'Memory Management Unit/Itlb/Peak Dynamic': 0.399995, 'Memory Management Unit/Itlb/Runtime Dynamic': 0.0757047, 'Memory Management Unit/Itlb/Subthreshold Leakage': 0.0413758, 'Memory Management Unit/Itlb/Subthreshold Leakage with power gating': 0.0235842, 'Memory Management Unit/Peak Dynamic': 0.826828, 'Memory Management Unit/Runtime Dynamic': 0.231189, 'Memory Management Unit/Subthreshold Leakage': 0.0769113, 'Memory Management Unit/Subthreshold Leakage with power gating': 0.0399462, 'Peak Dynamic': 30.0271, 'Renaming Unit/Area': 0.369768, 'Renaming Unit/FP Front End RAT/Area': 0.168486, 'Renaming Unit/FP Front End RAT/Gate Leakage': 0.00489731, 'Renaming Unit/FP Front End RAT/Peak Dynamic': 3.33511, 'Renaming Unit/FP Front End RAT/Runtime Dynamic': 0.704059, 'Renaming Unit/FP Front End RAT/Subthreshold Leakage': 0.0437281, 'Renaming Unit/FP Front End RAT/Subthreshold Leakage with power gating': 0.024925, 'Renaming Unit/Free List/Area': 0.0414755, 'Renaming Unit/Free List/Gate Leakage': 4.15911e-05, 'Renaming Unit/Free List/Peak Dynamic': 0.0401324, 'Renaming Unit/Free List/Runtime Dynamic': 0.0456443, 'Renaming Unit/Free List/Subthreshold Leakage': 0.000670426, 'Renaming Unit/Free List/Subthreshold Leakage with power gating': 0.000377987, 'Renaming Unit/Gate Leakage': 0.00863632, 'Renaming Unit/Int Front End RAT/Area': 0.114751, 'Renaming Unit/Int Front End RAT/Gate Leakage': 0.00038343, 'Renaming Unit/Int Front End RAT/Peak Dynamic': 0.86945, 'Renaming Unit/Int Front End RAT/Runtime Dynamic': 0.370308, 'Renaming Unit/Int Front End RAT/Subthreshold Leakage': 0.00611897, 'Renaming Unit/Int Front End RAT/Subthreshold Leakage with power gating': 0.00348781, 'Renaming Unit/Peak Dynamic': 4.56169, 'Renaming Unit/Runtime Dynamic': 1.12001, 'Renaming Unit/Subthreshold Leakage': 0.070483, 'Renaming Unit/Subthreshold Leakage with power gating': 0.0362779, 'Runtime Dynamic': 11.8601, 'Subthreshold Leakage': 6.21877, 'Subthreshold Leakage with power gating': 2.58311}, {'Area': 32.0201, 'Execution Unit/Area': 7.68434, 'Execution Unit/Complex ALUs/Area': 0.235435, 'Execution Unit/Complex ALUs/Gate Leakage': 0.0132646, 'Execution Unit/Complex ALUs/Peak Dynamic': 9.4469e-07, 'Execution Unit/Complex ALUs/Runtime Dynamic': 0.20269, 'Execution Unit/Complex ALUs/Subthreshold Leakage': 0.20111, 'Execution Unit/Complex ALUs/Subthreshold Leakage with power gating': 0.0754163, 'Execution Unit/Floating Point Units/Area': 4.6585, 'Execution Unit/Floating Point Units/Gate Leakage': 0.0656156, 'Execution Unit/Floating Point Units/Peak Dynamic': 7.59011e-06, 'Execution Unit/Floating Point Units/Runtime Dynamic': 0.304033, 'Execution Unit/Floating Point Units/Subthreshold Leakage': 0.994829, 'Execution Unit/Floating Point Units/Subthreshold Leakage with power gating': 0.373061, 'Execution Unit/Gate Leakage': 0.120359, 'Execution Unit/Instruction Scheduler/Area': 1.66526, 'Execution Unit/Instruction Scheduler/FP Instruction Window/Area': 0.275653, 'Execution Unit/Instruction Scheduler/FP Instruction Window/Gate Leakage': 0.000977433, 'Execution Unit/Instruction Scheduler/FP Instruction Window/Peak Dynamic': 1.04181, 'Execution Unit/Instruction Scheduler/FP Instruction Window/Runtime Dynamic': 0.194469, 'Execution Unit/Instruction Scheduler/FP Instruction Window/Subthreshold Leakage': 0.0143453, 'Execution Unit/Instruction Scheduler/FP Instruction Window/Subthreshold Leakage with power gating': 0.00810519, 'Execution Unit/Instruction Scheduler/Gate Leakage': 0.00568913, 'Execution Unit/Instruction Scheduler/Instruction Window/Area': 0.805223, 'Execution Unit/Instruction Scheduler/Instruction Window/Gate Leakage': 0.00414562, 'Execution Unit/Instruction Scheduler/Instruction Window/Peak Dynamic': 1.6763, 'Execution Unit/Instruction Scheduler/Instruction Window/Runtime Dynamic': 0.313671, 'Execution Unit/Instruction Scheduler/Instruction Window/Subthreshold Leakage': 0.0625755, 'Execution Unit/Instruction Scheduler/Instruction Window/Subthreshold Leakage with power gating': 0.0355964, 'Execution Unit/Instruction Scheduler/Peak Dynamic': 3.82262, 'Execution Unit/Instruction Scheduler/ROB/Area': 0.584388, 'Execution Unit/Instruction Scheduler/ROB/Gate Leakage': 0.00056608, 'Execution Unit/Instruction Scheduler/ROB/Peak Dynamic': 1.10451, 'Execution Unit/Instruction Scheduler/ROB/Runtime Dynamic': 0.158331, 'Execution Unit/Instruction Scheduler/ROB/Subthreshold Leakage': 0.00906853, 'Execution Unit/Instruction Scheduler/ROB/Subthreshold Leakage with power gating': 0.00364446, 'Execution Unit/Instruction Scheduler/Runtime Dynamic': 0.66647, 'Execution Unit/Instruction Scheduler/Subthreshold Leakage': 0.0859892, 'Execution Unit/Instruction Scheduler/Subthreshold Leakage with power gating': 0.047346, 'Execution Unit/Integer ALUs/Area': 0.47087, 'Execution Unit/Integer ALUs/Gate Leakage': 0.0265291, 'Execution Unit/Integer ALUs/Peak Dynamic': 0.222415, 'Execution Unit/Integer ALUs/Runtime Dynamic': 0.101344, 'Execution Unit/Integer ALUs/Subthreshold Leakage': 0.40222, 'Execution Unit/Integer ALUs/Subthreshold Leakage with power gating': 0.150833, 'Execution Unit/Peak Dynamic': 4.25813, 'Execution Unit/Register Files/Area': 0.570804, 'Execution Unit/Register Files/Floating Point RF/Area': 0.208131, 'Execution Unit/Register Files/Floating Point RF/Gate Leakage': 0.000232788, 'Execution Unit/Register Files/Floating Point RF/Peak Dynamic': 1.43393e-06, 'Execution Unit/Register Files/Floating Point RF/Runtime Dynamic': 0.00815689, 'Execution Unit/Register Files/Floating Point RF/Subthreshold Leakage': 0.00399698, 'Execution Unit/Register Files/Floating Point RF/Subthreshold Leakage with power gating': 0.00176968, 'Execution Unit/Register Files/Gate Leakage': 0.000622708, 'Execution Unit/Register Files/Integer RF/Area': 0.362673, 'Execution Unit/Register Files/Integer RF/Gate Leakage': 0.00038992, 'Execution Unit/Register Files/Integer RF/Peak Dynamic': 0.058985, 'Execution Unit/Register Files/Integer RF/Runtime Dynamic': 0.0603252, 'Execution Unit/Register Files/Integer RF/Subthreshold Leakage': 0.00614175, 'Execution Unit/Register Files/Integer RF/Subthreshold Leakage with power gating': 0.00246675, 'Execution Unit/Register Files/Peak Dynamic': 0.0589865, 'Execution Unit/Register Files/Runtime Dynamic': 0.0684821, 'Execution Unit/Register Files/Subthreshold Leakage': 0.0101387, 'Execution Unit/Register Files/Subthreshold Leakage with power gating': 0.00423643, 'Execution Unit/Results Broadcast Bus/Area Overhead': 0.0390912, 'Execution Unit/Results Broadcast Bus/Gate Leakage': 0.00537402, 'Execution Unit/Results Broadcast Bus/Peak Dynamic': 0.124265, 'Execution Unit/Results Broadcast Bus/Runtime Dynamic': 0.326404, 'Execution Unit/Results Broadcast Bus/Subthreshold Leakage': 0.081478, 'Execution Unit/Results Broadcast Bus/Subthreshold Leakage with power gating': 0.0305543, 'Execution Unit/Runtime Dynamic': 1.66942, 'Execution Unit/Subthreshold Leakage': 1.79543, 'Execution Unit/Subthreshold Leakage with power gating': 0.688821, 'Gate Leakage': 0.368936, 'Instruction Fetch Unit/Area': 5.85939, 'Instruction Fetch Unit/Branch Predictor/Area': 0.138516, 'Instruction Fetch Unit/Branch Predictor/Chooser/Area': 0.0435221, 'Instruction Fetch Unit/Branch Predictor/Chooser/Gate Leakage': 0.000278362, 'Instruction Fetch Unit/Branch Predictor/Chooser/Peak Dynamic': 0.0168831, 'Instruction Fetch Unit/Branch Predictor/Chooser/Runtime Dynamic': 0.00249135, 'Instruction Fetch Unit/Branch Predictor/Chooser/Subthreshold Leakage': 0.00759719, 'Instruction Fetch Unit/Branch Predictor/Chooser/Subthreshold Leakage with power gating': 0.0039236, 'Instruction Fetch Unit/Branch Predictor/Gate Leakage': 0.000757657, 'Instruction Fetch Unit/Branch Predictor/Global Predictor/Area': 0.0435221, 'Instruction Fetch Unit/Branch Predictor/Global Predictor/Gate Leakage': 0.000278362, 'Instruction Fetch Unit/Branch Predictor/Global Predictor/Peak Dynamic': 0.0168831, 'Instruction Fetch Unit/Branch Predictor/Global Predictor/Runtime Dynamic': 0.00249135, 'Instruction Fetch Unit/Branch Predictor/Global Predictor/Subthreshold Leakage': 0.00759719, 'Instruction Fetch Unit/Branch Predictor/Global Predictor/Subthreshold Leakage with power gating': 0.0039236, 'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Area': 0.0257064, 'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Gate Leakage': 0.000154548, 'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Peak Dynamic': 0.0142575, 'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Runtime Dynamic': 0.00223246, 'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Subthreshold Leakage': 0.00384344, 'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Subthreshold Leakage with power gating': 0.00198631, 'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Area': 0.0151917, 'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Gate Leakage': 8.00196e-05, 'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Peak Dynamic': 0.00527447, 'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Runtime Dynamic': 0.000898408, 'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Subthreshold Leakage': 0.00181347, 'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Subthreshold Leakage with power gating': 0.000957045, 'Instruction Fetch Unit/Branch Predictor/Peak Dynamic': 0.0597838, 'Instruction Fetch Unit/Branch Predictor/RAS/Area': 0.0105732, 'Instruction Fetch Unit/Branch Predictor/RAS/Gate Leakage': 4.63858e-05, 'Instruction Fetch Unit/Branch Predictor/RAS/Peak Dynamic': 0.0117602, 'Instruction Fetch Unit/Branch Predictor/RAS/Runtime Dynamic': 0.000866577, 'Instruction Fetch Unit/Branch Predictor/RAS/Subthreshold Leakage': 0.000932505, 'Instruction Fetch Unit/Branch Predictor/RAS/Subthreshold Leakage with power gating': 0.000494733, 'Instruction Fetch Unit/Branch Predictor/Runtime Dynamic': 0.00808174, 'Instruction Fetch Unit/Branch Predictor/Subthreshold Leakage': 0.0199703, 'Instruction Fetch Unit/Branch Predictor/Subthreshold Leakage with power gating': 0.0103282, 'Instruction Fetch Unit/Branch Target Buffer/Area': 0.64954, 'Instruction Fetch Unit/Branch Target Buffer/Gate Leakage': 0.00272758, 'Instruction Fetch Unit/Branch Target Buffer/Peak Dynamic': 0.177867, 'Instruction Fetch Unit/Branch Target Buffer/Runtime Dynamic': 0.0216537, 'Instruction Fetch Unit/Branch Target Buffer/Subthreshold Leakage': 0.0811682, 'Instruction Fetch Unit/Branch Target Buffer/Subthreshold Leakage with power gating': 0.0435357, 'Instruction Fetch Unit/Gate Leakage': 0.0589979, 'Instruction Fetch Unit/Instruction Buffer/Area': 0.0226323, 'Instruction Fetch Unit/Instruction Buffer/Gate Leakage': 6.83558e-05, 'Instruction Fetch Unit/Instruction Buffer/Peak Dynamic': 0.606827, 'Instruction Fetch Unit/Instruction Buffer/Runtime Dynamic': 0.0579922, 'Instruction Fetch Unit/Instruction Buffer/Subthreshold Leakage': 0.00151885, 'Instruction Fetch Unit/Instruction Buffer/Subthreshold Leakage with power gating': 0.000701682, 'Instruction Fetch Unit/Instruction Cache/Area': 3.14635, 'Instruction Fetch Unit/Instruction Cache/Gate Leakage': 0.029931, 'Instruction Fetch Unit/Instruction Cache/Peak Dynamic': 3.6888, 'Instruction Fetch Unit/Instruction Cache/Runtime Dynamic': 0.229628, 'Instruction Fetch Unit/Instruction Cache/Subthreshold Leakage': 0.367022, 'Instruction Fetch Unit/Instruction Cache/Subthreshold Leakage with power gating': 0.180386, 'Instruction Fetch Unit/Instruction Decoder/Area': 1.85799, 'Instruction Fetch Unit/Instruction Decoder/Gate Leakage': 0.0222493, 'Instruction Fetch Unit/Instruction Decoder/Peak Dynamic': 1.37404, 'Instruction Fetch Unit/Instruction Decoder/Runtime Dynamic': 0.196968, 'Instruction Fetch Unit/Instruction Decoder/Subthreshold Leakage': 0.442943, 'Instruction Fetch Unit/Instruction Decoder/Subthreshold Leakage with power gating': 0.166104, 'Instruction Fetch Unit/Peak Dynamic': 6.08634, 'Instruction Fetch Unit/Runtime Dynamic': 0.514323, 'Instruction Fetch Unit/Subthreshold Leakage': 0.932286, 'Instruction Fetch Unit/Subthreshold Leakage with power gating': 0.40843, 'L2/Area': 4.53318, 'L2/Gate Leakage': 0.015464, 'L2/Peak Dynamic': 0.0297368, 'L2/Runtime Dynamic': 0.00581389, 'L2/Subthreshold Leakage': 0.834142, 'L2/Subthreshold Leakage with power gating': 0.401066, 'Load Store Unit/Area': 8.80901, 'Load Store Unit/Data Cache/Area': 6.84535, 'Load Store Unit/Data Cache/Gate Leakage': 0.0279261, 'Load Store Unit/Data Cache/Peak Dynamic': 3.07721, 'Load Store Unit/Data Cache/Runtime Dynamic': 0.886587, 'Load Store Unit/Data Cache/Subthreshold Leakage': 0.527675, 'Load Store Unit/Data Cache/Subthreshold Leakage with power gating': 0.25085, 'Load Store Unit/Gate Leakage': 0.0350888, 'Load Store Unit/LoadQ/Area': 0.0836782, 'Load Store Unit/LoadQ/Gate Leakage': 0.00059896, 'Load Store Unit/LoadQ/Peak Dynamic': 0.0595312, 'Load Store Unit/LoadQ/Runtime Dynamic': 0.0595312, 'Load Store Unit/LoadQ/Subthreshold Leakage': 0.00941961, 'Load Store Unit/LoadQ/Subthreshold Leakage with power gating': 0.00536918, 'Load Store Unit/Peak Dynamic': 3.35833, 'Load Store Unit/Runtime Dynamic': 1.23971, 'Load Store Unit/StoreQ/Area': 0.322079, 'Load Store Unit/StoreQ/Gate Leakage': 0.00329971, 'Load Store Unit/StoreQ/Peak Dynamic': 0.146794, 'Load Store Unit/StoreQ/Runtime Dynamic': 0.293588, 'Load Store Unit/StoreQ/Subthreshold Leakage': 0.0345621, 'Load Store Unit/StoreQ/Subthreshold Leakage with power gating': 0.0197004, 'Load Store Unit/Subthreshold Leakage': 0.591321, 'Load Store Unit/Subthreshold Leakage with power gating': 0.283293, 'Memory Management Unit/Area': 0.4339, 'Memory Management Unit/Dtlb/Area': 0.0879726, 'Memory Management Unit/Dtlb/Gate Leakage': 0.00088729, 'Memory Management Unit/Dtlb/Peak Dynamic': 0.0520976, 'Memory Management Unit/Dtlb/Runtime Dynamic': 0.0523539, 'Memory Management Unit/Dtlb/Subthreshold Leakage': 0.0155699, 'Memory Management Unit/Dtlb/Subthreshold Leakage with power gating': 0.00887485, 'Memory Management Unit/Gate Leakage': 0.00808595, 'Memory Management Unit/Itlb/Area': 0.301552, 'Memory Management Unit/Itlb/Gate Leakage': 0.00393464, 'Memory Management Unit/Itlb/Peak Dynamic': 0.229356, 'Memory Management Unit/Itlb/Runtime Dynamic': 0.0382077, 'Memory Management Unit/Itlb/Subthreshold Leakage': 0.0413758, 'Memory Management Unit/Itlb/Subthreshold Leakage with power gating': 0.0235842, 'Memory Management Unit/Peak Dynamic': 0.474959, 'Memory Management Unit/Runtime Dynamic': 0.0905616, 'Memory Management Unit/Subthreshold Leakage': 0.0766103, 'Memory Management Unit/Subthreshold Leakage with power gating': 0.0398333, 'Peak Dynamic': 17.797, 'Renaming Unit/Area': 0.303608, 'Renaming Unit/FP Front End RAT/Area': 0.131045, 'Renaming Unit/FP Front End RAT/Gate Leakage': 0.00351123, 'Renaming Unit/FP Front End RAT/Peak Dynamic': 2.51468, 'Renaming Unit/FP Front End RAT/Runtime Dynamic': 4.00727e-06, 'Renaming Unit/FP Front End RAT/Subthreshold Leakage': 0.0308571, 'Renaming Unit/FP Front End RAT/Subthreshold Leakage with power gating': 0.0175885, 'Renaming Unit/Free List/Area': 0.0340654, 'Renaming Unit/Free List/Gate Leakage': 2.5481e-05, 'Renaming Unit/Free List/Peak Dynamic': 0.0306032, 'Renaming Unit/Free List/Runtime Dynamic': 0.00877394, 'Renaming Unit/Free List/Subthreshold Leakage': 0.000370144, 'Renaming Unit/Free List/Subthreshold Leakage with power gating': 0.000201064, 'Renaming Unit/Gate Leakage': 0.00708398, 'Renaming Unit/Int Front End RAT/Area': 0.0941223, 'Renaming Unit/Int Front End RAT/Gate Leakage': 0.000283242, 'Renaming Unit/Int Front End RAT/Peak Dynamic': 0.731965, 'Renaming Unit/Int Front End RAT/Runtime Dynamic': 0.0992643, 'Renaming Unit/Int Front End RAT/Subthreshold Leakage': 0.00435488, 'Renaming Unit/Int Front End RAT/Subthreshold Leakage with power gating': 0.00248228, 'Renaming Unit/Peak Dynamic': 3.58947, 'Renaming Unit/Runtime Dynamic': 0.108042, 'Renaming Unit/Subthreshold Leakage': 0.0552466, 'Renaming Unit/Subthreshold Leakage with power gating': 0.0276461, 'Runtime Dynamic': 3.62787, 'Subthreshold Leakage': 6.16288, 'Subthreshold Leakage with power gating': 2.55328}, {'Area': 32.0201, 'Execution Unit/Area': 7.68434, 'Execution Unit/Complex ALUs/Area': 0.235435, 'Execution Unit/Complex ALUs/Gate Leakage': 0.0132646, 'Execution Unit/Complex ALUs/Peak Dynamic': 0.0, 'Execution Unit/Complex ALUs/Runtime Dynamic': 0.202689, 'Execution Unit/Complex ALUs/Subthreshold Leakage': 0.20111, 'Execution Unit/Complex ALUs/Subthreshold Leakage with power gating': 0.0754163, 'Execution Unit/Floating Point Units/Area': 4.6585, 'Execution Unit/Floating Point Units/Gate Leakage': 0.0656156, 'Execution Unit/Floating Point Units/Peak Dynamic': 0.0, 'Execution Unit/Floating Point Units/Runtime Dynamic': 0.304033, 'Execution Unit/Floating Point Units/Subthreshold Leakage': 0.994829, 'Execution Unit/Floating Point Units/Subthreshold Leakage with power gating': 0.373061, 'Execution Unit/Gate Leakage': 0.120359, 'Execution Unit/Instruction Scheduler/Area': 1.66526, 'Execution Unit/Instruction Scheduler/FP Instruction Window/Area': 0.275653, 'Execution Unit/Instruction Scheduler/FP Instruction Window/Gate Leakage': 0.000977433, 'Execution Unit/Instruction Scheduler/FP Instruction Window/Peak Dynamic': 1.04181, 'Execution Unit/Instruction Scheduler/FP Instruction Window/Runtime Dynamic': 0.250302, 'Execution Unit/Instruction Scheduler/FP Instruction Window/Subthreshold Leakage': 0.0143453, 'Execution Unit/Instruction Scheduler/FP Instruction Window/Subthreshold Leakage with power gating': 0.00810519, 'Execution Unit/Instruction Scheduler/Gate Leakage': 0.00568913, 'Execution Unit/Instruction Scheduler/Instruction Window/Area': 0.805223, 'Execution Unit/Instruction Scheduler/Instruction Window/Gate Leakage': 0.00414562, 'Execution Unit/Instruction Scheduler/Instruction Window/Peak Dynamic': 1.6763, 'Execution Unit/Instruction Scheduler/Instruction Window/Runtime Dynamic': 0.403728, 'Execution Unit/Instruction Scheduler/Instruction Window/Subthreshold Leakage': 0.0625755, 'Execution Unit/Instruction Scheduler/Instruction Window/Subthreshold Leakage with power gating': 0.0355964, 'Execution Unit/Instruction Scheduler/Peak Dynamic': 3.82262, 'Execution Unit/Instruction Scheduler/ROB/Area': 0.584388, 'Execution Unit/Instruction Scheduler/ROB/Gate Leakage': 0.00056608, 'Execution Unit/Instruction Scheduler/ROB/Peak Dynamic': 1.10451, 'Execution Unit/Instruction Scheduler/ROB/Runtime Dynamic': 0.203789, 'Execution Unit/Instruction Scheduler/ROB/Subthreshold Leakage': 0.00906853, 'Execution Unit/Instruction Scheduler/ROB/Subthreshold Leakage with power gating': 0.00364446, 'Execution Unit/Instruction Scheduler/Runtime Dynamic': 0.857819, 'Execution Unit/Instruction Scheduler/Subthreshold Leakage': 0.0859892, 'Execution Unit/Instruction Scheduler/Subthreshold Leakage with power gating': 0.047346, 'Execution Unit/Integer ALUs/Area': 0.47087, 'Execution Unit/Integer ALUs/Gate Leakage': 0.0265291, 'Execution Unit/Integer ALUs/Peak Dynamic': 0.286273, 'Execution Unit/Integer ALUs/Runtime Dynamic': 0.101344, 'Execution Unit/Integer ALUs/Subthreshold Leakage': 0.40222, 'Execution Unit/Integer ALUs/Subthreshold Leakage with power gating': 0.150833, 'Execution Unit/Peak Dynamic': 4.38316, 'Execution Unit/Register Files/Area': 0.570804, 'Execution Unit/Register Files/Floating Point RF/Area': 0.208131, 'Execution Unit/Register Files/Floating Point RF/Gate Leakage': 0.000232788, 'Execution Unit/Register Files/Floating Point RF/Peak Dynamic': 0.0, 'Execution Unit/Register Files/Floating Point RF/Runtime Dynamic': 0.0104988, 'Execution Unit/Register Files/Floating Point RF/Subthreshold Leakage': 0.00399698, 'Execution Unit/Register Files/Floating Point RF/Subthreshold Leakage with power gating': 0.00176968, 'Execution Unit/Register Files/Gate Leakage': 0.000622708, 'Execution Unit/Register Files/Integer RF/Area': 0.362673, 'Execution Unit/Register Files/Integer RF/Gate Leakage': 0.00038992, 'Execution Unit/Register Files/Integer RF/Peak Dynamic': 0.0759195, 'Execution Unit/Register Files/Integer RF/Runtime Dynamic': 0.0776451, 'Execution Unit/Register Files/Integer RF/Subthreshold Leakage': 0.00614175, 'Execution Unit/Register Files/Integer RF/Subthreshold Leakage with power gating': 0.00246675, 'Execution Unit/Register Files/Peak Dynamic': 0.0759195, 'Execution Unit/Register Files/Runtime Dynamic': 0.0881439, 'Execution Unit/Register Files/Subthreshold Leakage': 0.0101387, 'Execution Unit/Register Files/Subthreshold Leakage with power gating': 0.00423643, 'Execution Unit/Results Broadcast Bus/Area Overhead': 0.0390912, 'Execution Unit/Results Broadcast Bus/Gate Leakage': 0.00537402, 'Execution Unit/Results Broadcast Bus/Peak Dynamic': 0.159941, 'Execution Unit/Results Broadcast Bus/Runtime Dynamic': 0.480583, 'Execution Unit/Results Broadcast Bus/Subthreshold Leakage': 0.081478, 'Execution Unit/Results Broadcast Bus/Subthreshold Leakage with power gating': 0.0305543, 'Execution Unit/Runtime Dynamic': 2.03461, 'Execution Unit/Subthreshold Leakage': 1.79543, 'Execution Unit/Subthreshold Leakage with power gating': 0.688821, 'Gate Leakage': 0.368936, 'Instruction Fetch Unit/Area': 5.85939, 'Instruction Fetch Unit/Branch Predictor/Area': 0.138516, 'Instruction Fetch Unit/Branch Predictor/Chooser/Area': 0.0435221, 'Instruction Fetch Unit/Branch Predictor/Chooser/Gate Leakage': 0.000278362, 'Instruction Fetch Unit/Branch Predictor/Chooser/Peak Dynamic': 0.0168831, 'Instruction Fetch Unit/Branch Predictor/Chooser/Runtime Dynamic': 0.0020578, 'Instruction Fetch Unit/Branch Predictor/Chooser/Subthreshold Leakage': 0.00759719, 'Instruction Fetch Unit/Branch Predictor/Chooser/Subthreshold Leakage with power gating': 0.0039236, 'Instruction Fetch Unit/Branch Predictor/Gate Leakage': 0.000757657, 'Instruction Fetch Unit/Branch Predictor/Global Predictor/Area': 0.0435221, 'Instruction Fetch Unit/Branch Predictor/Global Predictor/Gate Leakage': 0.000278362, 'Instruction Fetch Unit/Branch Predictor/Global Predictor/Peak Dynamic': 0.0168831, 'Instruction Fetch Unit/Branch Predictor/Global Predictor/Runtime Dynamic': 0.0020578, 'Instruction Fetch Unit/Branch Predictor/Global Predictor/Subthreshold Leakage': 0.00759719, 'Instruction Fetch Unit/Branch Predictor/Global Predictor/Subthreshold Leakage with power gating': 0.0039236, 'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Area': 0.0257064, 'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Gate Leakage': 0.000154548, 'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Peak Dynamic': 0.0142575, 'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Runtime Dynamic': 0.00183023, 'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Subthreshold Leakage': 0.00384344, 'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Subthreshold Leakage with power gating': 0.00198631, 'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Area': 0.0151917, 'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Gate Leakage': 8.00196e-05, 'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Peak Dynamic': 0.00527447, 'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Runtime Dynamic': 0.000729236, 'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Subthreshold Leakage': 0.00181347, 'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Subthreshold Leakage with power gating': 0.000957045, 'Instruction Fetch Unit/Branch Predictor/Peak Dynamic': 0.0597838, 'Instruction Fetch Unit/Branch Predictor/RAS/Area': 0.0105732, 'Instruction Fetch Unit/Branch Predictor/RAS/Gate Leakage': 4.63858e-05, 'Instruction Fetch Unit/Branch Predictor/RAS/Peak Dynamic': 0.0117602, 'Instruction Fetch Unit/Branch Predictor/RAS/Runtime Dynamic': 0.00111538, 'Instruction Fetch Unit/Branch Predictor/RAS/Subthreshold Leakage': 0.000932505, 'Instruction Fetch Unit/Branch Predictor/RAS/Subthreshold Leakage with power gating': 0.000494733, 'Instruction Fetch Unit/Branch Predictor/Runtime Dynamic': 0.00706122, 'Instruction Fetch Unit/Branch Predictor/Subthreshold Leakage': 0.0199703, 'Instruction Fetch Unit/Branch Predictor/Subthreshold Leakage with power gating': 0.0103282, 'Instruction Fetch Unit/Branch Target Buffer/Area': 0.64954, 'Instruction Fetch Unit/Branch Target Buffer/Gate Leakage': 0.00272758, 'Instruction Fetch Unit/Branch Target Buffer/Peak Dynamic': 0.177867, 'Instruction Fetch Unit/Branch Target Buffer/Runtime Dynamic': 0.0183763, 'Instruction Fetch Unit/Branch Target Buffer/Subthreshold Leakage': 0.0811682, 'Instruction Fetch Unit/Branch Target Buffer/Subthreshold Leakage with power gating': 0.0435357, 'Instruction Fetch Unit/Gate Leakage': 0.0589979, 'Instruction Fetch Unit/Instruction Buffer/Area': 0.0226323, 'Instruction Fetch Unit/Instruction Buffer/Gate Leakage': 6.83558e-05, 'Instruction Fetch Unit/Instruction Buffer/Peak Dynamic': 0.606827, 'Instruction Fetch Unit/Instruction Buffer/Runtime Dynamic': 0.0746422, 'Instruction Fetch Unit/Instruction Buffer/Subthreshold Leakage': 0.00151885, 'Instruction Fetch Unit/Instruction Buffer/Subthreshold Leakage with power gating': 0.000701682, 'Instruction Fetch Unit/Instruction Cache/Area': 3.14635, 'Instruction Fetch Unit/Instruction Cache/Gate Leakage': 0.029931, 'Instruction Fetch Unit/Instruction Cache/Peak Dynamic': 4.74789, 'Instruction Fetch Unit/Instruction Cache/Runtime Dynamic': 0.248026, 'Instruction Fetch Unit/Instruction Cache/Subthreshold Leakage': 0.367022, 'Instruction Fetch Unit/Instruction Cache/Subthreshold Leakage with power gating': 0.180386, 'Instruction Fetch Unit/Instruction Decoder/Area': 1.85799, 'Instruction Fetch Unit/Instruction Decoder/Gate Leakage': 0.0222493, 'Instruction Fetch Unit/Instruction Decoder/Peak Dynamic': 1.37404, 'Instruction Fetch Unit/Instruction Decoder/Runtime Dynamic': 0.253519, 'Instruction Fetch Unit/Instruction Decoder/Subthreshold Leakage': 0.442943, 'Instruction Fetch Unit/Instruction Decoder/Subthreshold Leakage with power gating': 0.166104, 'Instruction Fetch Unit/Peak Dynamic': 7.19682, 'Instruction Fetch Unit/Runtime Dynamic': 0.601624, 'Instruction Fetch Unit/Subthreshold Leakage': 0.932286, 'Instruction Fetch Unit/Subthreshold Leakage with power gating': 0.40843, 'L2/Area': 4.53318, 'L2/Gate Leakage': 0.015464, 'L2/Peak Dynamic': 0.0564862, 'L2/Runtime Dynamic': 0.0157907, 'L2/Subthreshold Leakage': 0.834142, 'L2/Subthreshold Leakage with power gating': 0.401066, 'Load Store Unit/Area': 8.80901, 'Load Store Unit/Data Cache/Area': 6.84535, 'Load Store Unit/Data Cache/Gate Leakage': 0.0279261, 'Load Store Unit/Data Cache/Peak Dynamic': 3.74708, 'Load Store Unit/Data Cache/Runtime Dynamic': 1.22701, 'Load Store Unit/Data Cache/Subthreshold Leakage': 0.527675, 'Load Store Unit/Data Cache/Subthreshold Leakage with power gating': 0.25085, 'Load Store Unit/Gate Leakage': 0.0350888, 'Load Store Unit/LoadQ/Area': 0.0836782, 'Load Store Unit/LoadQ/Gate Leakage': 0.00059896, 'Load Store Unit/LoadQ/Peak Dynamic': 0.0812033, 'Load Store Unit/LoadQ/Runtime Dynamic': 0.0812033, 'Load Store Unit/LoadQ/Subthreshold Leakage': 0.00941961, 'Load Store Unit/LoadQ/Subthreshold Leakage with power gating': 0.00536918, 'Load Store Unit/Peak Dynamic': 4.13054, 'Load Store Unit/Runtime Dynamic': 1.70868, 'Load Store Unit/StoreQ/Area': 0.322079, 'Load Store Unit/StoreQ/Gate Leakage': 0.00329971, 'Load Store Unit/StoreQ/Peak Dynamic': 0.200234, 'Load Store Unit/StoreQ/Runtime Dynamic': 0.400467, 'Load Store Unit/StoreQ/Subthreshold Leakage': 0.0345621, 'Load Store Unit/StoreQ/Subthreshold Leakage with power gating': 0.0197004, 'Load Store Unit/Subthreshold Leakage': 0.591321, 'Load Store Unit/Subthreshold Leakage with power gating': 0.283293, 'Memory Management Unit/Area': 0.4339, 'Memory Management Unit/Dtlb/Area': 0.0879726, 'Memory Management Unit/Dtlb/Gate Leakage': 0.00088729, 'Memory Management Unit/Dtlb/Peak Dynamic': 0.0710635, 'Memory Management Unit/Dtlb/Runtime Dynamic': 0.071909, 'Memory Management Unit/Dtlb/Subthreshold Leakage': 0.0155699, 'Memory Management Unit/Dtlb/Subthreshold Leakage with power gating': 0.00887485, 'Memory Management Unit/Gate Leakage': 0.00808595, 'Memory Management Unit/Itlb/Area': 0.301552, 'Memory Management Unit/Itlb/Gate Leakage': 0.00393464, 'Memory Management Unit/Itlb/Peak Dynamic': 0.295206, 'Memory Management Unit/Itlb/Runtime Dynamic': 0.0406684, 'Memory Management Unit/Itlb/Subthreshold Leakage': 0.0413758, 'Memory Management Unit/Itlb/Subthreshold Leakage with power gating': 0.0235842, 'Memory Management Unit/Peak Dynamic': 0.57339, 'Memory Management Unit/Runtime Dynamic': 0.112577, 'Memory Management Unit/Subthreshold Leakage': 0.0766103, 'Memory Management Unit/Subthreshold Leakage with power gating': 0.0398333, 'Peak Dynamic': 19.9299, 'Renaming Unit/Area': 0.303608, 'Renaming Unit/FP Front End RAT/Area': 0.131045, 'Renaming Unit/FP Front End RAT/Gate Leakage': 0.00351123, 'Renaming Unit/FP Front End RAT/Peak Dynamic': 2.51468, 'Renaming Unit/FP Front End RAT/Runtime Dynamic': 0.0, 'Renaming Unit/FP Front End RAT/Subthreshold Leakage': 0.0308571, 'Renaming Unit/FP Front End RAT/Subthreshold Leakage with power gating': 0.0175885, 'Renaming Unit/Free List/Area': 0.0340654, 'Renaming Unit/Free List/Gate Leakage': 2.5481e-05, 'Renaming Unit/Free List/Peak Dynamic': 0.0306032, 'Renaming Unit/Free List/Runtime Dynamic': 0.011293, 'Renaming Unit/Free List/Subthreshold Leakage': 0.000370144, 'Renaming Unit/Free List/Subthreshold Leakage with power gating': 0.000201064, 'Renaming Unit/Gate Leakage': 0.00708398, 'Renaming Unit/Int Front End RAT/Area': 0.0941223, 'Renaming Unit/Int Front End RAT/Gate Leakage': 0.000283242, 'Renaming Unit/Int Front End RAT/Peak Dynamic': 0.731965, 'Renaming Unit/Int Front End RAT/Runtime Dynamic': 0.130247, 'Renaming Unit/Int Front End RAT/Subthreshold Leakage': 0.00435488, 'Renaming Unit/Int Front End RAT/Subthreshold Leakage with power gating': 0.00248228, 'Renaming Unit/Peak Dynamic': 3.58947, 'Renaming Unit/Runtime Dynamic': 0.14154, 'Renaming Unit/Subthreshold Leakage': 0.0552466, 'Renaming Unit/Subthreshold Leakage with power gating': 0.0276461, 'Runtime Dynamic': 4.61483, 'Subthreshold Leakage': 6.16288, 'Subthreshold Leakage with power gating': 2.55328}, {'Area': 32.0201, 'Execution Unit/Area': 7.68434, 'Execution Unit/Complex ALUs/Area': 0.235435, 'Execution Unit/Complex ALUs/Gate Leakage': 0.0132646, 'Execution Unit/Complex ALUs/Peak Dynamic': 0.242453, 'Execution Unit/Complex ALUs/Runtime Dynamic': 0.393122, 'Execution Unit/Complex ALUs/Subthreshold Leakage': 0.20111, 'Execution Unit/Complex ALUs/Subthreshold Leakage with power gating': 0.0754163, 'Execution Unit/Floating Point Units/Area': 4.6585, 'Execution Unit/Floating Point Units/Gate Leakage': 0.0656156, 'Execution Unit/Floating Point Units/Peak Dynamic': 1.30863, 'Execution Unit/Floating Point Units/Runtime Dynamic': 0.304033, 'Execution Unit/Floating Point Units/Subthreshold Leakage': 0.994829, 'Execution Unit/Floating Point Units/Subthreshold Leakage with power gating': 0.373061, 'Execution Unit/Gate Leakage': 0.120359, 'Execution Unit/Instruction Scheduler/Area': 1.66526, 'Execution Unit/Instruction Scheduler/FP Instruction Window/Area': 0.275653, 'Execution Unit/Instruction Scheduler/FP Instruction Window/Gate Leakage': 0.000977433, 'Execution Unit/Instruction Scheduler/FP Instruction Window/Peak Dynamic': 1.04181, 'Execution Unit/Instruction Scheduler/FP Instruction Window/Runtime Dynamic': 0.337984, 'Execution Unit/Instruction Scheduler/FP Instruction Window/Subthreshold Leakage': 0.0143453, 'Execution Unit/Instruction Scheduler/FP Instruction Window/Subthreshold Leakage with power gating': 0.00810519, 'Execution Unit/Instruction Scheduler/Gate Leakage': 0.00568913, 'Execution Unit/Instruction Scheduler/Instruction Window/Area': 0.805223, 'Execution Unit/Instruction Scheduler/Instruction Window/Gate Leakage': 0.00414562, 'Execution Unit/Instruction Scheduler/Instruction Window/Peak Dynamic': 1.6763, 'Execution Unit/Instruction Scheduler/Instruction Window/Runtime Dynamic': 0.545156, 'Execution Unit/Instruction Scheduler/Instruction Window/Subthreshold Leakage': 0.0625755, 'Execution Unit/Instruction Scheduler/Instruction Window/Subthreshold Leakage with power gating': 0.0355964, 'Execution Unit/Instruction Scheduler/Peak Dynamic': 3.82262, 'Execution Unit/Instruction Scheduler/ROB/Area': 0.584388, 'Execution Unit/Instruction Scheduler/ROB/Gate Leakage': 0.00056608, 'Execution Unit/Instruction Scheduler/ROB/Peak Dynamic': 1.10451, 'Execution Unit/Instruction Scheduler/ROB/Runtime Dynamic': 0.275176, 'Execution Unit/Instruction Scheduler/ROB/Subthreshold Leakage': 0.00906853, 'Execution Unit/Instruction Scheduler/ROB/Subthreshold Leakage with power gating': 0.00364446, 'Execution Unit/Instruction Scheduler/Runtime Dynamic': 1.15832, 'Execution Unit/Instruction Scheduler/Subthreshold Leakage': 0.0859892, 'Execution Unit/Instruction Scheduler/Subthreshold Leakage with power gating': 0.047346, 'Execution Unit/Integer ALUs/Area': 0.47087, 'Execution Unit/Integer ALUs/Gate Leakage': 0.0265291, 'Execution Unit/Integer ALUs/Peak Dynamic': 0.185925, 'Execution Unit/Integer ALUs/Runtime Dynamic': 0.101344, 'Execution Unit/Integer ALUs/Subthreshold Leakage': 0.40222, 'Execution Unit/Integer ALUs/Subthreshold Leakage with power gating': 0.150833, 'Execution Unit/Peak Dynamic': 6.49299, 'Execution Unit/Register Files/Area': 0.570804, 'Execution Unit/Register Files/Floating Point RF/Area': 0.208131, 'Execution Unit/Register Files/Floating Point RF/Gate Leakage': 0.000232788, 'Execution Unit/Register Files/Floating Point RF/Peak Dynamic': 0.247228, 'Execution Unit/Register Files/Floating Point RF/Runtime Dynamic': 0.0141766, 'Execution Unit/Register Files/Floating Point RF/Subthreshold Leakage': 0.00399698, 'Execution Unit/Register Files/Floating Point RF/Subthreshold Leakage with power gating': 0.00176968, 'Execution Unit/Register Files/Gate Leakage': 0.000622708, 'Execution Unit/Register Files/Integer RF/Area': 0.362673, 'Execution Unit/Register Files/Integer RF/Gate Leakage': 0.00038992, 'Execution Unit/Register Files/Integer RF/Peak Dynamic': 0.193313, 'Execution Unit/Register Files/Integer RF/Runtime Dynamic': 0.104844, 'Execution Unit/Register Files/Integer RF/Subthreshold Leakage': 0.00614175, 'Execution Unit/Register Files/Integer RF/Subthreshold Leakage with power gating': 0.00246675, 'Execution Unit/Register Files/Peak Dynamic': 0.440541, 'Execution Unit/Register Files/Runtime Dynamic': 0.119021, 'Execution Unit/Register Files/Subthreshold Leakage': 0.0101387, 'Execution Unit/Register Files/Subthreshold Leakage with power gating': 0.00423643, 'Execution Unit/Results Broadcast Bus/Area Overhead': 0.0390912, 'Execution Unit/Results Broadcast Bus/Gate Leakage': 0.00537402, 'Execution Unit/Results Broadcast Bus/Peak Dynamic': 0.467883, 'Execution Unit/Results Broadcast Bus/Runtime Dynamic': 0.913945, 'Execution Unit/Results Broadcast Bus/Subthreshold Leakage': 0.081478, 'Execution Unit/Results Broadcast Bus/Subthreshold Leakage with power gating': 0.0305543, 'Execution Unit/Runtime Dynamic': 2.98978, 'Execution Unit/Subthreshold Leakage': 1.79543, 'Execution Unit/Subthreshold Leakage with power gating': 0.688821, 'Gate Leakage': 0.368936, 'Instruction Fetch Unit/Area': 5.85939, 'Instruction Fetch Unit/Branch Predictor/Area': 0.138516, 'Instruction Fetch Unit/Branch Predictor/Chooser/Area': 0.0435221, 'Instruction Fetch Unit/Branch Predictor/Chooser/Gate Leakage': 0.000278362, 'Instruction Fetch Unit/Branch Predictor/Chooser/Peak Dynamic': 0.0168831, 'Instruction Fetch Unit/Branch Predictor/Chooser/Runtime Dynamic': 0.000795581, 'Instruction Fetch Unit/Branch Predictor/Chooser/Subthreshold Leakage': 0.00759719, 'Instruction Fetch Unit/Branch Predictor/Chooser/Subthreshold Leakage with power gating': 0.0039236, 'Instruction Fetch Unit/Branch Predictor/Gate Leakage': 0.000757657, 'Instruction Fetch Unit/Branch Predictor/Global Predictor/Area': 0.0435221, 'Instruction Fetch Unit/Branch Predictor/Global Predictor/Gate Leakage': 0.000278362, 'Instruction Fetch Unit/Branch Predictor/Global Predictor/Peak Dynamic': 0.0168831, 'Instruction Fetch Unit/Branch Predictor/Global Predictor/Runtime Dynamic': 0.000795581, 'Instruction Fetch Unit/Branch Predictor/Global Predictor/Subthreshold Leakage': 0.00759719, 'Instruction Fetch Unit/Branch Predictor/Global Predictor/Subthreshold Leakage with power gating': 0.0039236, 'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Area': 0.0257064, 'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Gate Leakage': 0.000154548, 'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Peak Dynamic': 0.0142575, 'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Runtime Dynamic': 0.0006916, 'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Subthreshold Leakage': 0.00384344, 'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Subthreshold Leakage with power gating': 0.00198631, 'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Area': 0.0151917, 'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Gate Leakage': 8.00196e-05, 'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Peak Dynamic': 0.00527447, 'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Runtime Dynamic': 0.000266991, 'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Subthreshold Leakage': 0.00181347, 'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Subthreshold Leakage with power gating': 0.000957045, 'Instruction Fetch Unit/Branch Predictor/Peak Dynamic': 0.0597838, 'Instruction Fetch Unit/Branch Predictor/RAS/Area': 0.0105732, 'Instruction Fetch Unit/Branch Predictor/RAS/Gate Leakage': 4.63858e-05, 'Instruction Fetch Unit/Branch Predictor/RAS/Peak Dynamic': 0.0117602, 'Instruction Fetch Unit/Branch Predictor/RAS/Runtime Dynamic': 0.0015061, 'Instruction Fetch Unit/Branch Predictor/RAS/Subthreshold Leakage': 0.000932505, 'Instruction Fetch Unit/Branch Predictor/RAS/Subthreshold Leakage with power gating': 0.000494733, 'Instruction Fetch Unit/Branch Predictor/Runtime Dynamic': 0.00378886, 'Instruction Fetch Unit/Branch Predictor/Subthreshold Leakage': 0.0199703, 'Instruction Fetch Unit/Branch Predictor/Subthreshold Leakage with power gating': 0.0103282, 'Instruction Fetch Unit/Branch Target Buffer/Area': 0.64954, 'Instruction Fetch Unit/Branch Target Buffer/Gate Leakage': 0.00272758, 'Instruction Fetch Unit/Branch Target Buffer/Peak Dynamic': 0.177867, 'Instruction Fetch Unit/Branch Target Buffer/Runtime Dynamic': 0.00767621, 'Instruction Fetch Unit/Branch Target Buffer/Subthreshold Leakage': 0.0811682, 'Instruction Fetch Unit/Branch Target Buffer/Subthreshold Leakage with power gating': 0.0435357, 'Instruction Fetch Unit/Gate Leakage': 0.0589979, 'Instruction Fetch Unit/Instruction Buffer/Area': 0.0226323, 'Instruction Fetch Unit/Instruction Buffer/Gate Leakage': 6.83558e-05, 'Instruction Fetch Unit/Instruction Buffer/Peak Dynamic': 0.606827, 'Instruction Fetch Unit/Instruction Buffer/Runtime Dynamic': 0.10079, 'Instruction Fetch Unit/Instruction Buffer/Subthreshold Leakage': 0.00151885, 'Instruction Fetch Unit/Instruction Buffer/Subthreshold Leakage with power gating': 0.000701682, 'Instruction Fetch Unit/Instruction Cache/Area': 3.14635, 'Instruction Fetch Unit/Instruction Cache/Gate Leakage': 0.029931, 'Instruction Fetch Unit/Instruction Cache/Peak Dynamic': 6.41109, 'Instruction Fetch Unit/Instruction Cache/Runtime Dynamic': 0.248962, 'Instruction Fetch Unit/Instruction Cache/Subthreshold Leakage': 0.367022, 'Instruction Fetch Unit/Instruction Cache/Subthreshold Leakage with power gating': 0.180386, 'Instruction Fetch Unit/Instruction Decoder/Area': 1.85799, 'Instruction Fetch Unit/Instruction Decoder/Gate Leakage': 0.0222493, 'Instruction Fetch Unit/Instruction Decoder/Peak Dynamic': 1.37404, 'Instruction Fetch Unit/Instruction Decoder/Runtime Dynamic': 0.342327, 'Instruction Fetch Unit/Instruction Decoder/Subthreshold Leakage': 0.442943, 'Instruction Fetch Unit/Instruction Decoder/Subthreshold Leakage with power gating': 0.166104, 'Instruction Fetch Unit/Peak Dynamic': 8.94075, 'Instruction Fetch Unit/Runtime Dynamic': 0.703544, 'Instruction Fetch Unit/Subthreshold Leakage': 0.932286, 'Instruction Fetch Unit/Subthreshold Leakage with power gating': 0.40843, 'L2/Area': 4.53318, 'L2/Gate Leakage': 0.015464, 'L2/Peak Dynamic': 0.0657792, 'L2/Runtime Dynamic': 0.00413921, 'L2/Subthreshold Leakage': 0.834142, 'L2/Subthreshold Leakage with power gating': 0.401066, 'Load Store Unit/Area': 8.80901, 'Load Store Unit/Data Cache/Area': 6.84535, 'Load Store Unit/Data Cache/Gate Leakage': 0.0279261, 'Load Store Unit/Data Cache/Peak Dynamic': 2.98015, 'Load Store Unit/Data Cache/Runtime Dynamic': 0.839273, 'Load Store Unit/Data Cache/Subthreshold Leakage': 0.527675, 'Load Store Unit/Data Cache/Subthreshold Leakage with power gating': 0.25085, 'Load Store Unit/Gate Leakage': 0.0350888, 'Load Store Unit/LoadQ/Area': 0.0836782, 'Load Store Unit/LoadQ/Gate Leakage': 0.00059896, 'Load Store Unit/LoadQ/Peak Dynamic': 0.0563913, 'Load Store Unit/LoadQ/Runtime Dynamic': 0.0563912, 'Load Store Unit/LoadQ/Subthreshold Leakage': 0.00941961, 'Load Store Unit/LoadQ/Subthreshold Leakage with power gating': 0.00536918, 'Load Store Unit/Peak Dynamic': 3.24645, 'Load Store Unit/Runtime Dynamic': 1.17377, 'Load Store Unit/StoreQ/Area': 0.322079, 'Load Store Unit/StoreQ/Gate Leakage': 0.00329971, 'Load Store Unit/StoreQ/Peak Dynamic': 0.139051, 'Load Store Unit/StoreQ/Runtime Dynamic': 0.278102, 'Load Store Unit/StoreQ/Subthreshold Leakage': 0.0345621, 'Load Store Unit/StoreQ/Subthreshold Leakage with power gating': 0.0197004, 'Load Store Unit/Subthreshold Leakage': 0.591321, 'Load Store Unit/Subthreshold Leakage with power gating': 0.283293, 'Memory Management Unit/Area': 0.4339, 'Memory Management Unit/Dtlb/Area': 0.0879726, 'Memory Management Unit/Dtlb/Gate Leakage': 0.00088729, 'Memory Management Unit/Dtlb/Peak Dynamic': 0.0493498, 'Memory Management Unit/Dtlb/Runtime Dynamic': 0.0503302, 'Memory Management Unit/Dtlb/Subthreshold Leakage': 0.0155699, 'Memory Management Unit/Dtlb/Subthreshold Leakage with power gating': 0.00887485, 'Memory Management Unit/Gate Leakage': 0.00808595, 'Memory Management Unit/Itlb/Area': 0.301552, 'Memory Management Unit/Itlb/Gate Leakage': 0.00393464, 'Memory Management Unit/Itlb/Peak Dynamic': 0.398618, 'Memory Management Unit/Itlb/Runtime Dynamic': 0.0408354, 'Memory Management Unit/Itlb/Subthreshold Leakage': 0.0413758, 'Memory Management Unit/Itlb/Subthreshold Leakage with power gating': 0.0235842, 'Memory Management Unit/Peak Dynamic': 0.639501, 'Memory Management Unit/Runtime Dynamic': 0.0911656, 'Memory Management Unit/Subthreshold Leakage': 0.0766103, 'Memory Management Unit/Subthreshold Leakage with power gating': 0.0398333, 'Peak Dynamic': 22.9749, 'Renaming Unit/Area': 0.303608, 'Renaming Unit/FP Front End RAT/Area': 0.131045, 'Renaming Unit/FP Front End RAT/Gate Leakage': 0.00351123, 'Renaming Unit/FP Front End RAT/Peak Dynamic': 2.51468, 'Renaming Unit/FP Front End RAT/Runtime Dynamic': 0.650344, 'Renaming Unit/FP Front End RAT/Subthreshold Leakage': 0.0308571, 'Renaming Unit/FP Front End RAT/Subthreshold Leakage with power gating': 0.0175885, 'Renaming Unit/Free List/Area': 0.0340654, 'Renaming Unit/Free List/Gate Leakage': 2.5481e-05, 'Renaming Unit/Free List/Peak Dynamic': 0.0306032, 'Renaming Unit/Free List/Runtime Dynamic': 0.0231635, 'Renaming Unit/Free List/Subthreshold Leakage': 0.000370144, 'Renaming Unit/Free List/Subthreshold Leakage with power gating': 0.000201064, 'Renaming Unit/Gate Leakage': 0.00708398, 'Renaming Unit/Int Front End RAT/Area': 0.0941223, 'Renaming Unit/Int Front End RAT/Gate Leakage': 0.000283242, 'Renaming Unit/Int Front End RAT/Peak Dynamic': 0.731965, 'Renaming Unit/Int Front End RAT/Runtime Dynamic': 0.156297, 'Renaming Unit/Int Front End RAT/Subthreshold Leakage': 0.00435488, 'Renaming Unit/Int Front End RAT/Subthreshold Leakage with power gating': 0.00248228, 'Renaming Unit/Peak Dynamic': 3.58947, 'Renaming Unit/Runtime Dynamic': 0.829804, 'Renaming Unit/Subthreshold Leakage': 0.0552466, 'Renaming Unit/Subthreshold Leakage with power gating': 0.0276461, 'Runtime Dynamic': 5.7922, 'Subthreshold Leakage': 6.16288, 'Subthreshold Leakage with power gating': 2.55328}], 'DRAM': {'Area': 0, 'Gate Leakage': 0, 'Peak Dynamic': 0.5840218280895675, 'Runtime Dynamic': 0.5840218280895675, 'Subthreshold Leakage': 4.252, 'Subthreshold Leakage with power gating': 4.252}, 'L3': [{'Area': 61.9075, 'Gate Leakage': 0.0484137, 'Peak Dynamic': 0.202737, 'Runtime Dynamic': 0.119102, 'Subthreshold Leakage': 6.80085, 'Subthreshold Leakage with power gating': 3.32364}], 'Processor': {'Area': 191.908, 'Gate Leakage': 1.53485, 'Peak Dynamic': 90.9316, 'Peak Power': 124.044, 'Runtime Dynamic': 26.0141, 'Subthreshold Leakage': 31.5774, 'Subthreshold Leakage with power gating': 13.9484, 'Total Cores/Area': 128.669, 'Total Cores/Gate Leakage': 1.4798, 'Total Cores/Peak Dynamic': 90.7289, 'Total Cores/Runtime Dynamic': 25.895, 'Total Cores/Subthreshold Leakage': 24.7074, 'Total Cores/Subthreshold Leakage with power gating': 10.2429, 'Total L3s/Area': 61.9075, 'Total L3s/Gate Leakage': 0.0484137, 'Total L3s/Peak Dynamic': 0.202737, 'Total L3s/Runtime Dynamic': 0.119102, 'Total L3s/Subthreshold Leakage': 6.80085, 'Total L3s/Subthreshold Leakage with power gating': 3.32364, 'Total Leakage': 33.1122, 'Total NoCs/Area': 1.33155, 'Total NoCs/Gate Leakage': 0.00662954, 'Total NoCs/Peak Dynamic': 0.0, 'Total NoCs/Runtime Dynamic': 0.0, 'Total NoCs/Subthreshold Leakage': 0.0691322, 'Total NoCs/Subthreshold Leakage with power gating': 0.0259246}}
power = {'BUSES': {'Area': 1.33155, 'Bus/Area': 1.33155, 'Bus/Gate Leakage': 0.00662954, 'Bus/Peak Dynamic': 0.0, 'Bus/Runtime Dynamic': 0.0, 'Bus/Subthreshold Leakage': 0.0691322, 'Bus/Subthreshold Leakage with power gating': 0.0259246, 'Gate Leakage': 0.00662954, 'Peak Dynamic': 0.0, 'Runtime Dynamic': 0.0, 'Subthreshold Leakage': 0.0691322, 'Subthreshold Leakage with power gating': 0.0259246}, 'Core': [{'Area': 32.6082, 'Execution Unit/Area': 8.2042, 'Execution Unit/Complex ALUs/Area': 0.235435, 'Execution Unit/Complex ALUs/Gate Leakage': 0.0132646, 'Execution Unit/Complex ALUs/Peak Dynamic': 0.252741, 'Execution Unit/Complex ALUs/Runtime Dynamic': 0.401203, 'Execution Unit/Complex ALUs/Subthreshold Leakage': 0.20111, 'Execution Unit/Complex ALUs/Subthreshold Leakage with power gating': 0.0754163, 'Execution Unit/Floating Point Units/Area': 4.6585, 'Execution Unit/Floating Point Units/Gate Leakage': 0.0656156, 'Execution Unit/Floating Point Units/Peak Dynamic': 1.06821, 'Execution Unit/Floating Point Units/Runtime Dynamic': 0.304033, 'Execution Unit/Floating Point Units/Subthreshold Leakage': 0.994829, 'Execution Unit/Floating Point Units/Subthreshold Leakage with power gating': 0.373061, 'Execution Unit/Gate Leakage': 0.122718, 'Execution Unit/Instruction Scheduler/Area': 2.17927, 'Execution Unit/Instruction Scheduler/FP Instruction Window/Area': 0.328073, 'Execution Unit/Instruction Scheduler/FP Instruction Window/Gate Leakage': 0.00115349, 'Execution Unit/Instruction Scheduler/FP Instruction Window/Peak Dynamic': 1.20978, 'Execution Unit/Instruction Scheduler/FP Instruction Window/Runtime Dynamic': 0.726949, 'Execution Unit/Instruction Scheduler/FP Instruction Window/Subthreshold Leakage': 0.017004, 'Execution Unit/Instruction Scheduler/FP Instruction Window/Subthreshold Leakage with power gating': 0.00962066, 'Execution Unit/Instruction Scheduler/Gate Leakage': 0.00730101, 'Execution Unit/Instruction Scheduler/Instruction Window/Area': 1.00996, 'Execution Unit/Instruction Scheduler/Instruction Window/Gate Leakage': 0.00529112, 'Execution Unit/Instruction Scheduler/Instruction Window/Peak Dynamic': 2.07911, 'Execution Unit/Instruction Scheduler/Instruction Window/Runtime Dynamic': 1.25881, 'Execution Unit/Instruction Scheduler/Instruction Window/Subthreshold Leakage': 0.0800117, 'Execution Unit/Instruction Scheduler/Instruction Window/Subthreshold Leakage with power gating': 0.0455351, 'Execution Unit/Instruction Scheduler/Peak Dynamic': 4.84781, 'Execution Unit/Instruction Scheduler/ROB/Area': 0.841232, 'Execution Unit/Instruction Scheduler/ROB/Gate Leakage': 0.000856399, 'Execution Unit/Instruction Scheduler/ROB/Peak Dynamic': 1.55892, 'Execution Unit/Instruction Scheduler/ROB/Runtime Dynamic': 0.721964, 'Execution Unit/Instruction Scheduler/ROB/Subthreshold Leakage': 0.0178624, 'Execution Unit/Instruction Scheduler/ROB/Subthreshold Leakage with power gating': 0.00897339, 'Execution Unit/Instruction Scheduler/Runtime Dynamic': 2.70773, 'Execution Unit/Instruction Scheduler/Subthreshold Leakage': 0.114878, 'Execution Unit/Instruction Scheduler/Subthreshold Leakage with power gating': 0.0641291, 'Execution Unit/Integer ALUs/Area': 0.47087, 'Execution Unit/Integer ALUs/Gate Leakage': 0.0265291, 'Execution Unit/Integer ALUs/Peak Dynamic': 0.554789, 'Execution Unit/Integer ALUs/Runtime Dynamic': 0.101344, 'Execution Unit/Integer ALUs/Subthreshold Leakage': 0.40222, 'Execution Unit/Integer ALUs/Subthreshold Leakage with power gating': 0.150833, 'Execution Unit/Peak Dynamic': 8.08567, 'Execution Unit/Register Files/Area': 0.570804, 'Execution Unit/Register Files/Floating Point RF/Area': 0.208131, 'Execution Unit/Register Files/Floating Point RF/Gate Leakage': 0.000232788, 'Execution Unit/Register Files/Floating Point RF/Peak Dynamic': 0.201807, 'Execution Unit/Register Files/Floating Point RF/Runtime Dynamic': 0.0263525, 'Execution Unit/Register Files/Floating Point RF/Subthreshold Leakage': 0.00399698, 'Execution Unit/Register Files/Floating Point RF/Subthreshold Leakage with power gating': 0.00176968, 'Execution Unit/Register Files/Gate Leakage': 0.000622708, 'Execution Unit/Register Files/Integer RF/Area': 0.362673, 'Execution Unit/Register Files/Integer RF/Gate Leakage': 0.00038992, 'Execution Unit/Register Files/Integer RF/Peak Dynamic': 0.297246, 'Execution Unit/Register Files/Integer RF/Runtime Dynamic': 0.194893, 'Execution Unit/Register Files/Integer RF/Subthreshold Leakage': 0.00614175, 'Execution Unit/Register Files/Integer RF/Subthreshold Leakage with power gating': 0.00246675, 'Execution Unit/Register Files/Peak Dynamic': 0.499054, 'Execution Unit/Register Files/Runtime Dynamic': 0.221245, 'Execution Unit/Register Files/Subthreshold Leakage': 0.0101387, 'Execution Unit/Register Files/Subthreshold Leakage with power gating': 0.00423643, 'Execution Unit/Results Broadcast Bus/Area Overhead': 0.0442632, 'Execution Unit/Results Broadcast Bus/Gate Leakage': 0.00607074, 'Execution Unit/Results Broadcast Bus/Peak Dynamic': 0.78751, 'Execution Unit/Results Broadcast Bus/Runtime Dynamic': 1.76002, 'Execution Unit/Results Broadcast Bus/Subthreshold Leakage': 0.0920413, 'Execution Unit/Results Broadcast Bus/Subthreshold Leakage with power gating': 0.0345155, 'Execution Unit/Runtime Dynamic': 5.49557, 'Execution Unit/Subthreshold Leakage': 1.83518, 'Execution Unit/Subthreshold Leakage with power gating': 0.709678, 'Gate Leakage': 0.372997, 'Instruction Fetch Unit/Area': 5.86007, 'Instruction Fetch Unit/Branch Predictor/Area': 0.138516, 'Instruction Fetch Unit/Branch Predictor/Chooser/Area': 0.0435221, 'Instruction Fetch Unit/Branch Predictor/Chooser/Gate Leakage': 0.000278362, 'Instruction Fetch Unit/Branch Predictor/Chooser/Peak Dynamic': 0.0168831, 'Instruction Fetch Unit/Branch Predictor/Chooser/Runtime Dynamic': 0.00212992, 'Instruction Fetch Unit/Branch Predictor/Chooser/Subthreshold Leakage': 0.00759719, 'Instruction Fetch Unit/Branch Predictor/Chooser/Subthreshold Leakage with power gating': 0.0039236, 'Instruction Fetch Unit/Branch Predictor/Gate Leakage': 0.000757657, 'Instruction Fetch Unit/Branch Predictor/Global Predictor/Area': 0.0435221, 'Instruction Fetch Unit/Branch Predictor/Global Predictor/Gate Leakage': 0.000278362, 'Instruction Fetch Unit/Branch Predictor/Global Predictor/Peak Dynamic': 0.0168831, 'Instruction Fetch Unit/Branch Predictor/Global Predictor/Runtime Dynamic': 0.00212992, 'Instruction Fetch Unit/Branch Predictor/Global Predictor/Subthreshold Leakage': 0.00759719, 'Instruction Fetch Unit/Branch Predictor/Global Predictor/Subthreshold Leakage with power gating': 0.0039236, 'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Area': 0.0257064, 'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Gate Leakage': 0.000154548, 'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Peak Dynamic': 0.0142575, 'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Runtime Dynamic': 0.00186263, 'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Subthreshold Leakage': 0.00384344, 'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Subthreshold Leakage with power gating': 0.00198631, 'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Area': 0.0151917, 'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Gate Leakage': 8.00196e-05, 'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Peak Dynamic': 0.00527447, 'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Runtime Dynamic': 0.000725147, 'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Subthreshold Leakage': 0.00181347, 'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Subthreshold Leakage with power gating': 0.000957045, 'Instruction Fetch Unit/Branch Predictor/Peak Dynamic': 0.0597838, 'Instruction Fetch Unit/Branch Predictor/RAS/Area': 0.0105732, 'Instruction Fetch Unit/Branch Predictor/RAS/Gate Leakage': 4.63858e-05, 'Instruction Fetch Unit/Branch Predictor/RAS/Peak Dynamic': 0.0117602, 'Instruction Fetch Unit/Branch Predictor/RAS/Runtime Dynamic': 0.00279965, 'Instruction Fetch Unit/Branch Predictor/RAS/Subthreshold Leakage': 0.000932505, 'Instruction Fetch Unit/Branch Predictor/RAS/Subthreshold Leakage with power gating': 0.000494733, 'Instruction Fetch Unit/Branch Predictor/Runtime Dynamic': 0.00892212, 'Instruction Fetch Unit/Branch Predictor/Subthreshold Leakage': 0.0199703, 'Instruction Fetch Unit/Branch Predictor/Subthreshold Leakage with power gating': 0.0103282, 'Instruction Fetch Unit/Branch Target Buffer/Area': 0.64954, 'Instruction Fetch Unit/Branch Target Buffer/Gate Leakage': 0.00272758, 'Instruction Fetch Unit/Branch Target Buffer/Peak Dynamic': 0.177867, 'Instruction Fetch Unit/Branch Target Buffer/Runtime Dynamic': 0.0201542, 'Instruction Fetch Unit/Branch Target Buffer/Subthreshold Leakage': 0.0811682, 'Instruction Fetch Unit/Branch Target Buffer/Subthreshold Leakage with power gating': 0.0435357, 'Instruction Fetch Unit/Gate Leakage': 0.0590479, 'Instruction Fetch Unit/Instruction Buffer/Area': 0.0226323, 'Instruction Fetch Unit/Instruction Buffer/Gate Leakage': 6.83558e-05, 'Instruction Fetch Unit/Instruction Buffer/Peak Dynamic': 0.606827, 'Instruction Fetch Unit/Instruction Buffer/Runtime Dynamic': 0.187355, 'Instruction Fetch Unit/Instruction Buffer/Subthreshold Leakage': 0.00151885, 'Instruction Fetch Unit/Instruction Buffer/Subthreshold Leakage with power gating': 0.000701682, 'Instruction Fetch Unit/Instruction Cache/Area': 3.14635, 'Instruction Fetch Unit/Instruction Cache/Gate Leakage': 0.029931, 'Instruction Fetch Unit/Instruction Cache/Peak Dynamic': 6.43323, 'Instruction Fetch Unit/Instruction Cache/Runtime Dynamic': 0.460187, 'Instruction Fetch Unit/Instruction Cache/Subthreshold Leakage': 0.367022, 'Instruction Fetch Unit/Instruction Cache/Subthreshold Leakage with power gating': 0.180386, 'Instruction Fetch Unit/Instruction Decoder/Area': 1.85799, 'Instruction Fetch Unit/Instruction Decoder/Gate Leakage': 0.0222493, 'Instruction Fetch Unit/Instruction Decoder/Peak Dynamic': 1.37404, 'Instruction Fetch Unit/Instruction Decoder/Runtime Dynamic': 0.636343, 'Instruction Fetch Unit/Instruction Decoder/Subthreshold Leakage': 0.442943, 'Instruction Fetch Unit/Instruction Decoder/Subthreshold Leakage with power gating': 0.166104, 'Instruction Fetch Unit/Peak Dynamic': 8.96874, 'Instruction Fetch Unit/Runtime Dynamic': 1.31296, 'Instruction Fetch Unit/Subthreshold Leakage': 0.932587, 'Instruction Fetch Unit/Subthreshold Leakage with power gating': 0.408542, 'L2/Area': 4.53318, 'L2/Gate Leakage': 0.015464, 'L2/Peak Dynamic': 0.0239757, 'L2/Runtime Dynamic': 0.00602306, 'L2/Subthreshold Leakage': 0.834142, 'L2/Subthreshold Leakage with power gating': 0.401066, 'Load Store Unit/Area': 8.80969, 'Load Store Unit/Data Cache/Area': 6.84535, 'Load Store Unit/Data Cache/Gate Leakage': 0.0279261, 'Load Store Unit/Data Cache/Peak Dynamic': 6.71927, 'Load Store Unit/Data Cache/Runtime Dynamic': 2.64227, 'Load Store Unit/Data Cache/Subthreshold Leakage': 0.527675, 'Load Store Unit/Data Cache/Subthreshold Leakage with power gating': 0.25085, 'Load Store Unit/Gate Leakage': 0.0351387, 'Load Store Unit/LoadQ/Area': 0.0836782, 'Load Store Unit/LoadQ/Gate Leakage': 0.00059896, 'Load Store Unit/LoadQ/Peak Dynamic': 0.177361, 'Load Store Unit/LoadQ/Runtime Dynamic': 0.177361, 'Load Store Unit/LoadQ/Subthreshold Leakage': 0.00941961, 'Load Store Unit/LoadQ/Subthreshold Leakage with power gating': 0.00536918, 'Load Store Unit/Peak Dynamic': 7.56022, 'Load Store Unit/Runtime Dynamic': 3.69432, 'Load Store Unit/StoreQ/Area': 0.322079, 'Load Store Unit/StoreQ/Gate Leakage': 0.00329971, 'Load Store Unit/StoreQ/Peak Dynamic': 0.437341, 'Load Store Unit/StoreQ/Runtime Dynamic': 0.874683, 'Load Store Unit/StoreQ/Subthreshold Leakage': 0.0345621, 'Load Store Unit/StoreQ/Subthreshold Leakage with power gating': 0.0197004, 'Load Store Unit/Subthreshold Leakage': 0.591622, 'Load Store Unit/Subthreshold Leakage with power gating': 0.283406, 'Memory Management Unit/Area': 0.434579, 'Memory Management Unit/Dtlb/Area': 0.0879726, 'Memory Management Unit/Dtlb/Gate Leakage': 0.00088729, 'Memory Management Unit/Dtlb/Peak Dynamic': 0.155214, 'Memory Management Unit/Dtlb/Runtime Dynamic': 0.155485, 'Memory Management Unit/Dtlb/Subthreshold Leakage': 0.0155699, 'Memory Management Unit/Dtlb/Subthreshold Leakage with power gating': 0.00887485, 'Memory Management Unit/Gate Leakage': 0.00813591, 'Memory Management Unit/Itlb/Area': 0.301552, 'Memory Management Unit/Itlb/Gate Leakage': 0.00393464, 'Memory Management Unit/Itlb/Peak Dynamic': 0.399995, 'Memory Management Unit/Itlb/Runtime Dynamic': 0.0757047, 'Memory Management Unit/Itlb/Subthreshold Leakage': 0.0413758, 'Memory Management Unit/Itlb/Subthreshold Leakage with power gating': 0.0235842, 'Memory Management Unit/Peak Dynamic': 0.826828, 'Memory Management Unit/Runtime Dynamic': 0.231189, 'Memory Management Unit/Subthreshold Leakage': 0.0769113, 'Memory Management Unit/Subthreshold Leakage with power gating': 0.0399462, 'Peak Dynamic': 30.0271, 'Renaming Unit/Area': 0.369768, 'Renaming Unit/FP Front End RAT/Area': 0.168486, 'Renaming Unit/FP Front End RAT/Gate Leakage': 0.00489731, 'Renaming Unit/FP Front End RAT/Peak Dynamic': 3.33511, 'Renaming Unit/FP Front End RAT/Runtime Dynamic': 0.704059, 'Renaming Unit/FP Front End RAT/Subthreshold Leakage': 0.0437281, 'Renaming Unit/FP Front End RAT/Subthreshold Leakage with power gating': 0.024925, 'Renaming Unit/Free List/Area': 0.0414755, 'Renaming Unit/Free List/Gate Leakage': 4.15911e-05, 'Renaming Unit/Free List/Peak Dynamic': 0.0401324, 'Renaming Unit/Free List/Runtime Dynamic': 0.0456443, 'Renaming Unit/Free List/Subthreshold Leakage': 0.000670426, 'Renaming Unit/Free List/Subthreshold Leakage with power gating': 0.000377987, 'Renaming Unit/Gate Leakage': 0.00863632, 'Renaming Unit/Int Front End RAT/Area': 0.114751, 'Renaming Unit/Int Front End RAT/Gate Leakage': 0.00038343, 'Renaming Unit/Int Front End RAT/Peak Dynamic': 0.86945, 'Renaming Unit/Int Front End RAT/Runtime Dynamic': 0.370308, 'Renaming Unit/Int Front End RAT/Subthreshold Leakage': 0.00611897, 'Renaming Unit/Int Front End RAT/Subthreshold Leakage with power gating': 0.00348781, 'Renaming Unit/Peak Dynamic': 4.56169, 'Renaming Unit/Runtime Dynamic': 1.12001, 'Renaming Unit/Subthreshold Leakage': 0.070483, 'Renaming Unit/Subthreshold Leakage with power gating': 0.0362779, 'Runtime Dynamic': 11.8601, 'Subthreshold Leakage': 6.21877, 'Subthreshold Leakage with power gating': 2.58311}, {'Area': 32.0201, 'Execution Unit/Area': 7.68434, 'Execution Unit/Complex ALUs/Area': 0.235435, 'Execution Unit/Complex ALUs/Gate Leakage': 0.0132646, 'Execution Unit/Complex ALUs/Peak Dynamic': 9.4469e-07, 'Execution Unit/Complex ALUs/Runtime Dynamic': 0.20269, 'Execution Unit/Complex ALUs/Subthreshold Leakage': 0.20111, 'Execution Unit/Complex ALUs/Subthreshold Leakage with power gating': 0.0754163, 'Execution Unit/Floating Point Units/Area': 4.6585, 'Execution Unit/Floating Point Units/Gate Leakage': 0.0656156, 'Execution Unit/Floating Point Units/Peak Dynamic': 7.59011e-06, 'Execution Unit/Floating Point Units/Runtime Dynamic': 0.304033, 'Execution Unit/Floating Point Units/Subthreshold Leakage': 0.994829, 'Execution Unit/Floating Point Units/Subthreshold Leakage with power gating': 0.373061, 'Execution Unit/Gate Leakage': 0.120359, 'Execution Unit/Instruction Scheduler/Area': 1.66526, 'Execution Unit/Instruction Scheduler/FP Instruction Window/Area': 0.275653, 'Execution Unit/Instruction Scheduler/FP Instruction Window/Gate Leakage': 0.000977433, 'Execution Unit/Instruction Scheduler/FP Instruction Window/Peak Dynamic': 1.04181, 'Execution Unit/Instruction Scheduler/FP Instruction Window/Runtime Dynamic': 0.194469, 'Execution Unit/Instruction Scheduler/FP Instruction Window/Subthreshold Leakage': 0.0143453, 'Execution Unit/Instruction Scheduler/FP Instruction Window/Subthreshold Leakage with power gating': 0.00810519, 'Execution Unit/Instruction Scheduler/Gate Leakage': 0.00568913, 'Execution Unit/Instruction Scheduler/Instruction Window/Area': 0.805223, 'Execution Unit/Instruction Scheduler/Instruction Window/Gate Leakage': 0.00414562, 'Execution Unit/Instruction Scheduler/Instruction Window/Peak Dynamic': 1.6763, 'Execution Unit/Instruction Scheduler/Instruction Window/Runtime Dynamic': 0.313671, 'Execution Unit/Instruction Scheduler/Instruction Window/Subthreshold Leakage': 0.0625755, 'Execution Unit/Instruction Scheduler/Instruction Window/Subthreshold Leakage with power gating': 0.0355964, 'Execution Unit/Instruction Scheduler/Peak Dynamic': 3.82262, 'Execution Unit/Instruction Scheduler/ROB/Area': 0.584388, 'Execution Unit/Instruction Scheduler/ROB/Gate Leakage': 0.00056608, 'Execution Unit/Instruction Scheduler/ROB/Peak Dynamic': 1.10451, 'Execution Unit/Instruction Scheduler/ROB/Runtime Dynamic': 0.158331, 'Execution Unit/Instruction Scheduler/ROB/Subthreshold Leakage': 0.00906853, 'Execution Unit/Instruction Scheduler/ROB/Subthreshold Leakage with power gating': 0.00364446, 'Execution Unit/Instruction Scheduler/Runtime Dynamic': 0.66647, 'Execution Unit/Instruction Scheduler/Subthreshold Leakage': 0.0859892, 'Execution Unit/Instruction Scheduler/Subthreshold Leakage with power gating': 0.047346, 'Execution Unit/Integer ALUs/Area': 0.47087, 'Execution Unit/Integer ALUs/Gate Leakage': 0.0265291, 'Execution Unit/Integer ALUs/Peak Dynamic': 0.222415, 'Execution Unit/Integer ALUs/Runtime Dynamic': 0.101344, 'Execution Unit/Integer ALUs/Subthreshold Leakage': 0.40222, 'Execution Unit/Integer ALUs/Subthreshold Leakage with power gating': 0.150833, 'Execution Unit/Peak Dynamic': 4.25813, 'Execution Unit/Register Files/Area': 0.570804, 'Execution Unit/Register Files/Floating Point RF/Area': 0.208131, 'Execution Unit/Register Files/Floating Point RF/Gate Leakage': 0.000232788, 'Execution Unit/Register Files/Floating Point RF/Peak Dynamic': 1.43393e-06, 'Execution Unit/Register Files/Floating Point RF/Runtime Dynamic': 0.00815689, 'Execution Unit/Register Files/Floating Point RF/Subthreshold Leakage': 0.00399698, 'Execution Unit/Register Files/Floating Point RF/Subthreshold Leakage with power gating': 0.00176968, 'Execution Unit/Register Files/Gate Leakage': 0.000622708, 'Execution Unit/Register Files/Integer RF/Area': 0.362673, 'Execution Unit/Register Files/Integer RF/Gate Leakage': 0.00038992, 'Execution Unit/Register Files/Integer RF/Peak Dynamic': 0.058985, 'Execution Unit/Register Files/Integer RF/Runtime Dynamic': 0.0603252, 'Execution Unit/Register Files/Integer RF/Subthreshold Leakage': 0.00614175, 'Execution Unit/Register Files/Integer RF/Subthreshold Leakage with power gating': 0.00246675, 'Execution Unit/Register Files/Peak Dynamic': 0.0589865, 'Execution Unit/Register Files/Runtime Dynamic': 0.0684821, 'Execution Unit/Register Files/Subthreshold Leakage': 0.0101387, 'Execution Unit/Register Files/Subthreshold Leakage with power gating': 0.00423643, 'Execution Unit/Results Broadcast Bus/Area Overhead': 0.0390912, 'Execution Unit/Results Broadcast Bus/Gate Leakage': 0.00537402, 'Execution Unit/Results Broadcast Bus/Peak Dynamic': 0.124265, 'Execution Unit/Results Broadcast Bus/Runtime Dynamic': 0.326404, 'Execution Unit/Results Broadcast Bus/Subthreshold Leakage': 0.081478, 'Execution Unit/Results Broadcast Bus/Subthreshold Leakage with power gating': 0.0305543, 'Execution Unit/Runtime Dynamic': 1.66942, 'Execution Unit/Subthreshold Leakage': 1.79543, 'Execution Unit/Subthreshold Leakage with power gating': 0.688821, 'Gate Leakage': 0.368936, 'Instruction Fetch Unit/Area': 5.85939, 'Instruction Fetch Unit/Branch Predictor/Area': 0.138516, 'Instruction Fetch Unit/Branch Predictor/Chooser/Area': 0.0435221, 'Instruction Fetch Unit/Branch Predictor/Chooser/Gate Leakage': 0.000278362, 'Instruction Fetch Unit/Branch Predictor/Chooser/Peak Dynamic': 0.0168831, 'Instruction Fetch Unit/Branch Predictor/Chooser/Runtime Dynamic': 0.00249135, 'Instruction Fetch Unit/Branch Predictor/Chooser/Subthreshold Leakage': 0.00759719, 'Instruction Fetch Unit/Branch Predictor/Chooser/Subthreshold Leakage with power gating': 0.0039236, 'Instruction Fetch Unit/Branch Predictor/Gate Leakage': 0.000757657, 'Instruction Fetch Unit/Branch Predictor/Global Predictor/Area': 0.0435221, 'Instruction Fetch Unit/Branch Predictor/Global Predictor/Gate Leakage': 0.000278362, 'Instruction Fetch Unit/Branch Predictor/Global Predictor/Peak Dynamic': 0.0168831, 'Instruction Fetch Unit/Branch Predictor/Global Predictor/Runtime Dynamic': 0.00249135, 'Instruction Fetch Unit/Branch Predictor/Global Predictor/Subthreshold Leakage': 0.00759719, 'Instruction Fetch Unit/Branch Predictor/Global Predictor/Subthreshold Leakage with power gating': 0.0039236, 'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Area': 0.0257064, 'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Gate Leakage': 0.000154548, 'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Peak Dynamic': 0.0142575, 'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Runtime Dynamic': 0.00223246, 'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Subthreshold Leakage': 0.00384344, 'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Subthreshold Leakage with power gating': 0.00198631, 'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Area': 0.0151917, 'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Gate Leakage': 8.00196e-05, 'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Peak Dynamic': 0.00527447, 'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Runtime Dynamic': 0.000898408, 'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Subthreshold Leakage': 0.00181347, 'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Subthreshold Leakage with power gating': 0.000957045, 'Instruction Fetch Unit/Branch Predictor/Peak Dynamic': 0.0597838, 'Instruction Fetch Unit/Branch Predictor/RAS/Area': 0.0105732, 'Instruction Fetch Unit/Branch Predictor/RAS/Gate Leakage': 4.63858e-05, 'Instruction Fetch Unit/Branch Predictor/RAS/Peak Dynamic': 0.0117602, 'Instruction Fetch Unit/Branch Predictor/RAS/Runtime Dynamic': 0.000866577, 'Instruction Fetch Unit/Branch Predictor/RAS/Subthreshold Leakage': 0.000932505, 'Instruction Fetch Unit/Branch Predictor/RAS/Subthreshold Leakage with power gating': 0.000494733, 'Instruction Fetch Unit/Branch Predictor/Runtime Dynamic': 0.00808174, 'Instruction Fetch Unit/Branch Predictor/Subthreshold Leakage': 0.0199703, 'Instruction Fetch Unit/Branch Predictor/Subthreshold Leakage with power gating': 0.0103282, 'Instruction Fetch Unit/Branch Target Buffer/Area': 0.64954, 'Instruction Fetch Unit/Branch Target Buffer/Gate Leakage': 0.00272758, 'Instruction Fetch Unit/Branch Target Buffer/Peak Dynamic': 0.177867, 'Instruction Fetch Unit/Branch Target Buffer/Runtime Dynamic': 0.0216537, 'Instruction Fetch Unit/Branch Target Buffer/Subthreshold Leakage': 0.0811682, 'Instruction Fetch Unit/Branch Target Buffer/Subthreshold Leakage with power gating': 0.0435357, 'Instruction Fetch Unit/Gate Leakage': 0.0589979, 'Instruction Fetch Unit/Instruction Buffer/Area': 0.0226323, 'Instruction Fetch Unit/Instruction Buffer/Gate Leakage': 6.83558e-05, 'Instruction Fetch Unit/Instruction Buffer/Peak Dynamic': 0.606827, 'Instruction Fetch Unit/Instruction Buffer/Runtime Dynamic': 0.0579922, 'Instruction Fetch Unit/Instruction Buffer/Subthreshold Leakage': 0.00151885, 'Instruction Fetch Unit/Instruction Buffer/Subthreshold Leakage with power gating': 0.000701682, 'Instruction Fetch Unit/Instruction Cache/Area': 3.14635, 'Instruction Fetch Unit/Instruction Cache/Gate Leakage': 0.029931, 'Instruction Fetch Unit/Instruction Cache/Peak Dynamic': 3.6888, 'Instruction Fetch Unit/Instruction Cache/Runtime Dynamic': 0.229628, 'Instruction Fetch Unit/Instruction Cache/Subthreshold Leakage': 0.367022, 'Instruction Fetch Unit/Instruction Cache/Subthreshold Leakage with power gating': 0.180386, 'Instruction Fetch Unit/Instruction Decoder/Area': 1.85799, 'Instruction Fetch Unit/Instruction Decoder/Gate Leakage': 0.0222493, 'Instruction Fetch Unit/Instruction Decoder/Peak Dynamic': 1.37404, 'Instruction Fetch Unit/Instruction Decoder/Runtime Dynamic': 0.196968, 'Instruction Fetch Unit/Instruction Decoder/Subthreshold Leakage': 0.442943, 'Instruction Fetch Unit/Instruction Decoder/Subthreshold Leakage with power gating': 0.166104, 'Instruction Fetch Unit/Peak Dynamic': 6.08634, 'Instruction Fetch Unit/Runtime Dynamic': 0.514323, 'Instruction Fetch Unit/Subthreshold Leakage': 0.932286, 'Instruction Fetch Unit/Subthreshold Leakage with power gating': 0.40843, 'L2/Area': 4.53318, 'L2/Gate Leakage': 0.015464, 'L2/Peak Dynamic': 0.0297368, 'L2/Runtime Dynamic': 0.00581389, 'L2/Subthreshold Leakage': 0.834142, 'L2/Subthreshold Leakage with power gating': 0.401066, 'Load Store Unit/Area': 8.80901, 'Load Store Unit/Data Cache/Area': 6.84535, 'Load Store Unit/Data Cache/Gate Leakage': 0.0279261, 'Load Store Unit/Data Cache/Peak Dynamic': 3.07721, 'Load Store Unit/Data Cache/Runtime Dynamic': 0.886587, 'Load Store Unit/Data Cache/Subthreshold Leakage': 0.527675, 'Load Store Unit/Data Cache/Subthreshold Leakage with power gating': 0.25085, 'Load Store Unit/Gate Leakage': 0.0350888, 'Load Store Unit/LoadQ/Area': 0.0836782, 'Load Store Unit/LoadQ/Gate Leakage': 0.00059896, 'Load Store Unit/LoadQ/Peak Dynamic': 0.0595312, 'Load Store Unit/LoadQ/Runtime Dynamic': 0.0595312, 'Load Store Unit/LoadQ/Subthreshold Leakage': 0.00941961, 'Load Store Unit/LoadQ/Subthreshold Leakage with power gating': 0.00536918, 'Load Store Unit/Peak Dynamic': 3.35833, 'Load Store Unit/Runtime Dynamic': 1.23971, 'Load Store Unit/StoreQ/Area': 0.322079, 'Load Store Unit/StoreQ/Gate Leakage': 0.00329971, 'Load Store Unit/StoreQ/Peak Dynamic': 0.146794, 'Load Store Unit/StoreQ/Runtime Dynamic': 0.293588, 'Load Store Unit/StoreQ/Subthreshold Leakage': 0.0345621, 'Load Store Unit/StoreQ/Subthreshold Leakage with power gating': 0.0197004, 'Load Store Unit/Subthreshold Leakage': 0.591321, 'Load Store Unit/Subthreshold Leakage with power gating': 0.283293, 'Memory Management Unit/Area': 0.4339, 'Memory Management Unit/Dtlb/Area': 0.0879726, 'Memory Management Unit/Dtlb/Gate Leakage': 0.00088729, 'Memory Management Unit/Dtlb/Peak Dynamic': 0.0520976, 'Memory Management Unit/Dtlb/Runtime Dynamic': 0.0523539, 'Memory Management Unit/Dtlb/Subthreshold Leakage': 0.0155699, 'Memory Management Unit/Dtlb/Subthreshold Leakage with power gating': 0.00887485, 'Memory Management Unit/Gate Leakage': 0.00808595, 'Memory Management Unit/Itlb/Area': 0.301552, 'Memory Management Unit/Itlb/Gate Leakage': 0.00393464, 'Memory Management Unit/Itlb/Peak Dynamic': 0.229356, 'Memory Management Unit/Itlb/Runtime Dynamic': 0.0382077, 'Memory Management Unit/Itlb/Subthreshold Leakage': 0.0413758, 'Memory Management Unit/Itlb/Subthreshold Leakage with power gating': 0.0235842, 'Memory Management Unit/Peak Dynamic': 0.474959, 'Memory Management Unit/Runtime Dynamic': 0.0905616, 'Memory Management Unit/Subthreshold Leakage': 0.0766103, 'Memory Management Unit/Subthreshold Leakage with power gating': 0.0398333, 'Peak Dynamic': 17.797, 'Renaming Unit/Area': 0.303608, 'Renaming Unit/FP Front End RAT/Area': 0.131045, 'Renaming Unit/FP Front End RAT/Gate Leakage': 0.00351123, 'Renaming Unit/FP Front End RAT/Peak Dynamic': 2.51468, 'Renaming Unit/FP Front End RAT/Runtime Dynamic': 4.00727e-06, 'Renaming Unit/FP Front End RAT/Subthreshold Leakage': 0.0308571, 'Renaming Unit/FP Front End RAT/Subthreshold Leakage with power gating': 0.0175885, 'Renaming Unit/Free List/Area': 0.0340654, 'Renaming Unit/Free List/Gate Leakage': 2.5481e-05, 'Renaming Unit/Free List/Peak Dynamic': 0.0306032, 'Renaming Unit/Free List/Runtime Dynamic': 0.00877394, 'Renaming Unit/Free List/Subthreshold Leakage': 0.000370144, 'Renaming Unit/Free List/Subthreshold Leakage with power gating': 0.000201064, 'Renaming Unit/Gate Leakage': 0.00708398, 'Renaming Unit/Int Front End RAT/Area': 0.0941223, 'Renaming Unit/Int Front End RAT/Gate Leakage': 0.000283242, 'Renaming Unit/Int Front End RAT/Peak Dynamic': 0.731965, 'Renaming Unit/Int Front End RAT/Runtime Dynamic': 0.0992643, 'Renaming Unit/Int Front End RAT/Subthreshold Leakage': 0.00435488, 'Renaming Unit/Int Front End RAT/Subthreshold Leakage with power gating': 0.00248228, 'Renaming Unit/Peak Dynamic': 3.58947, 'Renaming Unit/Runtime Dynamic': 0.108042, 'Renaming Unit/Subthreshold Leakage': 0.0552466, 'Renaming Unit/Subthreshold Leakage with power gating': 0.0276461, 'Runtime Dynamic': 3.62787, 'Subthreshold Leakage': 6.16288, 'Subthreshold Leakage with power gating': 2.55328}, {'Area': 32.0201, 'Execution Unit/Area': 7.68434, 'Execution Unit/Complex ALUs/Area': 0.235435, 'Execution Unit/Complex ALUs/Gate Leakage': 0.0132646, 'Execution Unit/Complex ALUs/Peak Dynamic': 0.0, 'Execution Unit/Complex ALUs/Runtime Dynamic': 0.202689, 'Execution Unit/Complex ALUs/Subthreshold Leakage': 0.20111, 'Execution Unit/Complex ALUs/Subthreshold Leakage with power gating': 0.0754163, 'Execution Unit/Floating Point Units/Area': 4.6585, 'Execution Unit/Floating Point Units/Gate Leakage': 0.0656156, 'Execution Unit/Floating Point Units/Peak Dynamic': 0.0, 'Execution Unit/Floating Point Units/Runtime Dynamic': 0.304033, 'Execution Unit/Floating Point Units/Subthreshold Leakage': 0.994829, 'Execution Unit/Floating Point Units/Subthreshold Leakage with power gating': 0.373061, 'Execution Unit/Gate Leakage': 0.120359, 'Execution Unit/Instruction Scheduler/Area': 1.66526, 'Execution Unit/Instruction Scheduler/FP Instruction Window/Area': 0.275653, 'Execution Unit/Instruction Scheduler/FP Instruction Window/Gate Leakage': 0.000977433, 'Execution Unit/Instruction Scheduler/FP Instruction Window/Peak Dynamic': 1.04181, 'Execution Unit/Instruction Scheduler/FP Instruction Window/Runtime Dynamic': 0.250302, 'Execution Unit/Instruction Scheduler/FP Instruction Window/Subthreshold Leakage': 0.0143453, 'Execution Unit/Instruction Scheduler/FP Instruction Window/Subthreshold Leakage with power gating': 0.00810519, 'Execution Unit/Instruction Scheduler/Gate Leakage': 0.00568913, 'Execution Unit/Instruction Scheduler/Instruction Window/Area': 0.805223, 'Execution Unit/Instruction Scheduler/Instruction Window/Gate Leakage': 0.00414562, 'Execution Unit/Instruction Scheduler/Instruction Window/Peak Dynamic': 1.6763, 'Execution Unit/Instruction Scheduler/Instruction Window/Runtime Dynamic': 0.403728, 'Execution Unit/Instruction Scheduler/Instruction Window/Subthreshold Leakage': 0.0625755, 'Execution Unit/Instruction Scheduler/Instruction Window/Subthreshold Leakage with power gating': 0.0355964, 'Execution Unit/Instruction Scheduler/Peak Dynamic': 3.82262, 'Execution Unit/Instruction Scheduler/ROB/Area': 0.584388, 'Execution Unit/Instruction Scheduler/ROB/Gate Leakage': 0.00056608, 'Execution Unit/Instruction Scheduler/ROB/Peak Dynamic': 1.10451, 'Execution Unit/Instruction Scheduler/ROB/Runtime Dynamic': 0.203789, 'Execution Unit/Instruction Scheduler/ROB/Subthreshold Leakage': 0.00906853, 'Execution Unit/Instruction Scheduler/ROB/Subthreshold Leakage with power gating': 0.00364446, 'Execution Unit/Instruction Scheduler/Runtime Dynamic': 0.857819, 'Execution Unit/Instruction Scheduler/Subthreshold Leakage': 0.0859892, 'Execution Unit/Instruction Scheduler/Subthreshold Leakage with power gating': 0.047346, 'Execution Unit/Integer ALUs/Area': 0.47087, 'Execution Unit/Integer ALUs/Gate Leakage': 0.0265291, 'Execution Unit/Integer ALUs/Peak Dynamic': 0.286273, 'Execution Unit/Integer ALUs/Runtime Dynamic': 0.101344, 'Execution Unit/Integer ALUs/Subthreshold Leakage': 0.40222, 'Execution Unit/Integer ALUs/Subthreshold Leakage with power gating': 0.150833, 'Execution Unit/Peak Dynamic': 4.38316, 'Execution Unit/Register Files/Area': 0.570804, 'Execution Unit/Register Files/Floating Point RF/Area': 0.208131, 'Execution Unit/Register Files/Floating Point RF/Gate Leakage': 0.000232788, 'Execution Unit/Register Files/Floating Point RF/Peak Dynamic': 0.0, 'Execution Unit/Register Files/Floating Point RF/Runtime Dynamic': 0.0104988, 'Execution Unit/Register Files/Floating Point RF/Subthreshold Leakage': 0.00399698, 'Execution Unit/Register Files/Floating Point RF/Subthreshold Leakage with power gating': 0.00176968, 'Execution Unit/Register Files/Gate Leakage': 0.000622708, 'Execution Unit/Register Files/Integer RF/Area': 0.362673, 'Execution Unit/Register Files/Integer RF/Gate Leakage': 0.00038992, 'Execution Unit/Register Files/Integer RF/Peak Dynamic': 0.0759195, 'Execution Unit/Register Files/Integer RF/Runtime Dynamic': 0.0776451, 'Execution Unit/Register Files/Integer RF/Subthreshold Leakage': 0.00614175, 'Execution Unit/Register Files/Integer RF/Subthreshold Leakage with power gating': 0.00246675, 'Execution Unit/Register Files/Peak Dynamic': 0.0759195, 'Execution Unit/Register Files/Runtime Dynamic': 0.0881439, 'Execution Unit/Register Files/Subthreshold Leakage': 0.0101387, 'Execution Unit/Register Files/Subthreshold Leakage with power gating': 0.00423643, 'Execution Unit/Results Broadcast Bus/Area Overhead': 0.0390912, 'Execution Unit/Results Broadcast Bus/Gate Leakage': 0.00537402, 'Execution Unit/Results Broadcast Bus/Peak Dynamic': 0.159941, 'Execution Unit/Results Broadcast Bus/Runtime Dynamic': 0.480583, 'Execution Unit/Results Broadcast Bus/Subthreshold Leakage': 0.081478, 'Execution Unit/Results Broadcast Bus/Subthreshold Leakage with power gating': 0.0305543, 'Execution Unit/Runtime Dynamic': 2.03461, 'Execution Unit/Subthreshold Leakage': 1.79543, 'Execution Unit/Subthreshold Leakage with power gating': 0.688821, 'Gate Leakage': 0.368936, 'Instruction Fetch Unit/Area': 5.85939, 'Instruction Fetch Unit/Branch Predictor/Area': 0.138516, 'Instruction Fetch Unit/Branch Predictor/Chooser/Area': 0.0435221, 'Instruction Fetch Unit/Branch Predictor/Chooser/Gate Leakage': 0.000278362, 'Instruction Fetch Unit/Branch Predictor/Chooser/Peak Dynamic': 0.0168831, 'Instruction Fetch Unit/Branch Predictor/Chooser/Runtime Dynamic': 0.0020578, 'Instruction Fetch Unit/Branch Predictor/Chooser/Subthreshold Leakage': 0.00759719, 'Instruction Fetch Unit/Branch Predictor/Chooser/Subthreshold Leakage with power gating': 0.0039236, 'Instruction Fetch Unit/Branch Predictor/Gate Leakage': 0.000757657, 'Instruction Fetch Unit/Branch Predictor/Global Predictor/Area': 0.0435221, 'Instruction Fetch Unit/Branch Predictor/Global Predictor/Gate Leakage': 0.000278362, 'Instruction Fetch Unit/Branch Predictor/Global Predictor/Peak Dynamic': 0.0168831, 'Instruction Fetch Unit/Branch Predictor/Global Predictor/Runtime Dynamic': 0.0020578, 'Instruction Fetch Unit/Branch Predictor/Global Predictor/Subthreshold Leakage': 0.00759719, 'Instruction Fetch Unit/Branch Predictor/Global Predictor/Subthreshold Leakage with power gating': 0.0039236, 'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Area': 0.0257064, 'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Gate Leakage': 0.000154548, 'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Peak Dynamic': 0.0142575, 'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Runtime Dynamic': 0.00183023, 'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Subthreshold Leakage': 0.00384344, 'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Subthreshold Leakage with power gating': 0.00198631, 'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Area': 0.0151917, 'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Gate Leakage': 8.00196e-05, 'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Peak Dynamic': 0.00527447, 'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Runtime Dynamic': 0.000729236, 'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Subthreshold Leakage': 0.00181347, 'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Subthreshold Leakage with power gating': 0.000957045, 'Instruction Fetch Unit/Branch Predictor/Peak Dynamic': 0.0597838, 'Instruction Fetch Unit/Branch Predictor/RAS/Area': 0.0105732, 'Instruction Fetch Unit/Branch Predictor/RAS/Gate Leakage': 4.63858e-05, 'Instruction Fetch Unit/Branch Predictor/RAS/Peak Dynamic': 0.0117602, 'Instruction Fetch Unit/Branch Predictor/RAS/Runtime Dynamic': 0.00111538, 'Instruction Fetch Unit/Branch Predictor/RAS/Subthreshold Leakage': 0.000932505, 'Instruction Fetch Unit/Branch Predictor/RAS/Subthreshold Leakage with power gating': 0.000494733, 'Instruction Fetch Unit/Branch Predictor/Runtime Dynamic': 0.00706122, 'Instruction Fetch Unit/Branch Predictor/Subthreshold Leakage': 0.0199703, 'Instruction Fetch Unit/Branch Predictor/Subthreshold Leakage with power gating': 0.0103282, 'Instruction Fetch Unit/Branch Target Buffer/Area': 0.64954, 'Instruction Fetch Unit/Branch Target Buffer/Gate Leakage': 0.00272758, 'Instruction Fetch Unit/Branch Target Buffer/Peak Dynamic': 0.177867, 'Instruction Fetch Unit/Branch Target Buffer/Runtime Dynamic': 0.0183763, 'Instruction Fetch Unit/Branch Target Buffer/Subthreshold Leakage': 0.0811682, 'Instruction Fetch Unit/Branch Target Buffer/Subthreshold Leakage with power gating': 0.0435357, 'Instruction Fetch Unit/Gate Leakage': 0.0589979, 'Instruction Fetch Unit/Instruction Buffer/Area': 0.0226323, 'Instruction Fetch Unit/Instruction Buffer/Gate Leakage': 6.83558e-05, 'Instruction Fetch Unit/Instruction Buffer/Peak Dynamic': 0.606827, 'Instruction Fetch Unit/Instruction Buffer/Runtime Dynamic': 0.0746422, 'Instruction Fetch Unit/Instruction Buffer/Subthreshold Leakage': 0.00151885, 'Instruction Fetch Unit/Instruction Buffer/Subthreshold Leakage with power gating': 0.000701682, 'Instruction Fetch Unit/Instruction Cache/Area': 3.14635, 'Instruction Fetch Unit/Instruction Cache/Gate Leakage': 0.029931, 'Instruction Fetch Unit/Instruction Cache/Peak Dynamic': 4.74789, 'Instruction Fetch Unit/Instruction Cache/Runtime Dynamic': 0.248026, 'Instruction Fetch Unit/Instruction Cache/Subthreshold Leakage': 0.367022, 'Instruction Fetch Unit/Instruction Cache/Subthreshold Leakage with power gating': 0.180386, 'Instruction Fetch Unit/Instruction Decoder/Area': 1.85799, 'Instruction Fetch Unit/Instruction Decoder/Gate Leakage': 0.0222493, 'Instruction Fetch Unit/Instruction Decoder/Peak Dynamic': 1.37404, 'Instruction Fetch Unit/Instruction Decoder/Runtime Dynamic': 0.253519, 'Instruction Fetch Unit/Instruction Decoder/Subthreshold Leakage': 0.442943, 'Instruction Fetch Unit/Instruction Decoder/Subthreshold Leakage with power gating': 0.166104, 'Instruction Fetch Unit/Peak Dynamic': 7.19682, 'Instruction Fetch Unit/Runtime Dynamic': 0.601624, 'Instruction Fetch Unit/Subthreshold Leakage': 0.932286, 'Instruction Fetch Unit/Subthreshold Leakage with power gating': 0.40843, 'L2/Area': 4.53318, 'L2/Gate Leakage': 0.015464, 'L2/Peak Dynamic': 0.0564862, 'L2/Runtime Dynamic': 0.0157907, 'L2/Subthreshold Leakage': 0.834142, 'L2/Subthreshold Leakage with power gating': 0.401066, 'Load Store Unit/Area': 8.80901, 'Load Store Unit/Data Cache/Area': 6.84535, 'Load Store Unit/Data Cache/Gate Leakage': 0.0279261, 'Load Store Unit/Data Cache/Peak Dynamic': 3.74708, 'Load Store Unit/Data Cache/Runtime Dynamic': 1.22701, 'Load Store Unit/Data Cache/Subthreshold Leakage': 0.527675, 'Load Store Unit/Data Cache/Subthreshold Leakage with power gating': 0.25085, 'Load Store Unit/Gate Leakage': 0.0350888, 'Load Store Unit/LoadQ/Area': 0.0836782, 'Load Store Unit/LoadQ/Gate Leakage': 0.00059896, 'Load Store Unit/LoadQ/Peak Dynamic': 0.0812033, 'Load Store Unit/LoadQ/Runtime Dynamic': 0.0812033, 'Load Store Unit/LoadQ/Subthreshold Leakage': 0.00941961, 'Load Store Unit/LoadQ/Subthreshold Leakage with power gating': 0.00536918, 'Load Store Unit/Peak Dynamic': 4.13054, 'Load Store Unit/Runtime Dynamic': 1.70868, 'Load Store Unit/StoreQ/Area': 0.322079, 'Load Store Unit/StoreQ/Gate Leakage': 0.00329971, 'Load Store Unit/StoreQ/Peak Dynamic': 0.200234, 'Load Store Unit/StoreQ/Runtime Dynamic': 0.400467, 'Load Store Unit/StoreQ/Subthreshold Leakage': 0.0345621, 'Load Store Unit/StoreQ/Subthreshold Leakage with power gating': 0.0197004, 'Load Store Unit/Subthreshold Leakage': 0.591321, 'Load Store Unit/Subthreshold Leakage with power gating': 0.283293, 'Memory Management Unit/Area': 0.4339, 'Memory Management Unit/Dtlb/Area': 0.0879726, 'Memory Management Unit/Dtlb/Gate Leakage': 0.00088729, 'Memory Management Unit/Dtlb/Peak Dynamic': 0.0710635, 'Memory Management Unit/Dtlb/Runtime Dynamic': 0.071909, 'Memory Management Unit/Dtlb/Subthreshold Leakage': 0.0155699, 'Memory Management Unit/Dtlb/Subthreshold Leakage with power gating': 0.00887485, 'Memory Management Unit/Gate Leakage': 0.00808595, 'Memory Management Unit/Itlb/Area': 0.301552, 'Memory Management Unit/Itlb/Gate Leakage': 0.00393464, 'Memory Management Unit/Itlb/Peak Dynamic': 0.295206, 'Memory Management Unit/Itlb/Runtime Dynamic': 0.0406684, 'Memory Management Unit/Itlb/Subthreshold Leakage': 0.0413758, 'Memory Management Unit/Itlb/Subthreshold Leakage with power gating': 0.0235842, 'Memory Management Unit/Peak Dynamic': 0.57339, 'Memory Management Unit/Runtime Dynamic': 0.112577, 'Memory Management Unit/Subthreshold Leakage': 0.0766103, 'Memory Management Unit/Subthreshold Leakage with power gating': 0.0398333, 'Peak Dynamic': 19.9299, 'Renaming Unit/Area': 0.303608, 'Renaming Unit/FP Front End RAT/Area': 0.131045, 'Renaming Unit/FP Front End RAT/Gate Leakage': 0.00351123, 'Renaming Unit/FP Front End RAT/Peak Dynamic': 2.51468, 'Renaming Unit/FP Front End RAT/Runtime Dynamic': 0.0, 'Renaming Unit/FP Front End RAT/Subthreshold Leakage': 0.0308571, 'Renaming Unit/FP Front End RAT/Subthreshold Leakage with power gating': 0.0175885, 'Renaming Unit/Free List/Area': 0.0340654, 'Renaming Unit/Free List/Gate Leakage': 2.5481e-05, 'Renaming Unit/Free List/Peak Dynamic': 0.0306032, 'Renaming Unit/Free List/Runtime Dynamic': 0.011293, 'Renaming Unit/Free List/Subthreshold Leakage': 0.000370144, 'Renaming Unit/Free List/Subthreshold Leakage with power gating': 0.000201064, 'Renaming Unit/Gate Leakage': 0.00708398, 'Renaming Unit/Int Front End RAT/Area': 0.0941223, 'Renaming Unit/Int Front End RAT/Gate Leakage': 0.000283242, 'Renaming Unit/Int Front End RAT/Peak Dynamic': 0.731965, 'Renaming Unit/Int Front End RAT/Runtime Dynamic': 0.130247, 'Renaming Unit/Int Front End RAT/Subthreshold Leakage': 0.00435488, 'Renaming Unit/Int Front End RAT/Subthreshold Leakage with power gating': 0.00248228, 'Renaming Unit/Peak Dynamic': 3.58947, 'Renaming Unit/Runtime Dynamic': 0.14154, 'Renaming Unit/Subthreshold Leakage': 0.0552466, 'Renaming Unit/Subthreshold Leakage with power gating': 0.0276461, 'Runtime Dynamic': 4.61483, 'Subthreshold Leakage': 6.16288, 'Subthreshold Leakage with power gating': 2.55328}, {'Area': 32.0201, 'Execution Unit/Area': 7.68434, 'Execution Unit/Complex ALUs/Area': 0.235435, 'Execution Unit/Complex ALUs/Gate Leakage': 0.0132646, 'Execution Unit/Complex ALUs/Peak Dynamic': 0.242453, 'Execution Unit/Complex ALUs/Runtime Dynamic': 0.393122, 'Execution Unit/Complex ALUs/Subthreshold Leakage': 0.20111, 'Execution Unit/Complex ALUs/Subthreshold Leakage with power gating': 0.0754163, 'Execution Unit/Floating Point Units/Area': 4.6585, 'Execution Unit/Floating Point Units/Gate Leakage': 0.0656156, 'Execution Unit/Floating Point Units/Peak Dynamic': 1.30863, 'Execution Unit/Floating Point Units/Runtime Dynamic': 0.304033, 'Execution Unit/Floating Point Units/Subthreshold Leakage': 0.994829, 'Execution Unit/Floating Point Units/Subthreshold Leakage with power gating': 0.373061, 'Execution Unit/Gate Leakage': 0.120359, 'Execution Unit/Instruction Scheduler/Area': 1.66526, 'Execution Unit/Instruction Scheduler/FP Instruction Window/Area': 0.275653, 'Execution Unit/Instruction Scheduler/FP Instruction Window/Gate Leakage': 0.000977433, 'Execution Unit/Instruction Scheduler/FP Instruction Window/Peak Dynamic': 1.04181, 'Execution Unit/Instruction Scheduler/FP Instruction Window/Runtime Dynamic': 0.337984, 'Execution Unit/Instruction Scheduler/FP Instruction Window/Subthreshold Leakage': 0.0143453, 'Execution Unit/Instruction Scheduler/FP Instruction Window/Subthreshold Leakage with power gating': 0.00810519, 'Execution Unit/Instruction Scheduler/Gate Leakage': 0.00568913, 'Execution Unit/Instruction Scheduler/Instruction Window/Area': 0.805223, 'Execution Unit/Instruction Scheduler/Instruction Window/Gate Leakage': 0.00414562, 'Execution Unit/Instruction Scheduler/Instruction Window/Peak Dynamic': 1.6763, 'Execution Unit/Instruction Scheduler/Instruction Window/Runtime Dynamic': 0.545156, 'Execution Unit/Instruction Scheduler/Instruction Window/Subthreshold Leakage': 0.0625755, 'Execution Unit/Instruction Scheduler/Instruction Window/Subthreshold Leakage with power gating': 0.0355964, 'Execution Unit/Instruction Scheduler/Peak Dynamic': 3.82262, 'Execution Unit/Instruction Scheduler/ROB/Area': 0.584388, 'Execution Unit/Instruction Scheduler/ROB/Gate Leakage': 0.00056608, 'Execution Unit/Instruction Scheduler/ROB/Peak Dynamic': 1.10451, 'Execution Unit/Instruction Scheduler/ROB/Runtime Dynamic': 0.275176, 'Execution Unit/Instruction Scheduler/ROB/Subthreshold Leakage': 0.00906853, 'Execution Unit/Instruction Scheduler/ROB/Subthreshold Leakage with power gating': 0.00364446, 'Execution Unit/Instruction Scheduler/Runtime Dynamic': 1.15832, 'Execution Unit/Instruction Scheduler/Subthreshold Leakage': 0.0859892, 'Execution Unit/Instruction Scheduler/Subthreshold Leakage with power gating': 0.047346, 'Execution Unit/Integer ALUs/Area': 0.47087, 'Execution Unit/Integer ALUs/Gate Leakage': 0.0265291, 'Execution Unit/Integer ALUs/Peak Dynamic': 0.185925, 'Execution Unit/Integer ALUs/Runtime Dynamic': 0.101344, 'Execution Unit/Integer ALUs/Subthreshold Leakage': 0.40222, 'Execution Unit/Integer ALUs/Subthreshold Leakage with power gating': 0.150833, 'Execution Unit/Peak Dynamic': 6.49299, 'Execution Unit/Register Files/Area': 0.570804, 'Execution Unit/Register Files/Floating Point RF/Area': 0.208131, 'Execution Unit/Register Files/Floating Point RF/Gate Leakage': 0.000232788, 'Execution Unit/Register Files/Floating Point RF/Peak Dynamic': 0.247228, 'Execution Unit/Register Files/Floating Point RF/Runtime Dynamic': 0.0141766, 'Execution Unit/Register Files/Floating Point RF/Subthreshold Leakage': 0.00399698, 'Execution Unit/Register Files/Floating Point RF/Subthreshold Leakage with power gating': 0.00176968, 'Execution Unit/Register Files/Gate Leakage': 0.000622708, 'Execution Unit/Register Files/Integer RF/Area': 0.362673, 'Execution Unit/Register Files/Integer RF/Gate Leakage': 0.00038992, 'Execution Unit/Register Files/Integer RF/Peak Dynamic': 0.193313, 'Execution Unit/Register Files/Integer RF/Runtime Dynamic': 0.104844, 'Execution Unit/Register Files/Integer RF/Subthreshold Leakage': 0.00614175, 'Execution Unit/Register Files/Integer RF/Subthreshold Leakage with power gating': 0.00246675, 'Execution Unit/Register Files/Peak Dynamic': 0.440541, 'Execution Unit/Register Files/Runtime Dynamic': 0.119021, 'Execution Unit/Register Files/Subthreshold Leakage': 0.0101387, 'Execution Unit/Register Files/Subthreshold Leakage with power gating': 0.00423643, 'Execution Unit/Results Broadcast Bus/Area Overhead': 0.0390912, 'Execution Unit/Results Broadcast Bus/Gate Leakage': 0.00537402, 'Execution Unit/Results Broadcast Bus/Peak Dynamic': 0.467883, 'Execution Unit/Results Broadcast Bus/Runtime Dynamic': 0.913945, 'Execution Unit/Results Broadcast Bus/Subthreshold Leakage': 0.081478, 'Execution Unit/Results Broadcast Bus/Subthreshold Leakage with power gating': 0.0305543, 'Execution Unit/Runtime Dynamic': 2.98978, 'Execution Unit/Subthreshold Leakage': 1.79543, 'Execution Unit/Subthreshold Leakage with power gating': 0.688821, 'Gate Leakage': 0.368936, 'Instruction Fetch Unit/Area': 5.85939, 'Instruction Fetch Unit/Branch Predictor/Area': 0.138516, 'Instruction Fetch Unit/Branch Predictor/Chooser/Area': 0.0435221, 'Instruction Fetch Unit/Branch Predictor/Chooser/Gate Leakage': 0.000278362, 'Instruction Fetch Unit/Branch Predictor/Chooser/Peak Dynamic': 0.0168831, 'Instruction Fetch Unit/Branch Predictor/Chooser/Runtime Dynamic': 0.000795581, 'Instruction Fetch Unit/Branch Predictor/Chooser/Subthreshold Leakage': 0.00759719, 'Instruction Fetch Unit/Branch Predictor/Chooser/Subthreshold Leakage with power gating': 0.0039236, 'Instruction Fetch Unit/Branch Predictor/Gate Leakage': 0.000757657, 'Instruction Fetch Unit/Branch Predictor/Global Predictor/Area': 0.0435221, 'Instruction Fetch Unit/Branch Predictor/Global Predictor/Gate Leakage': 0.000278362, 'Instruction Fetch Unit/Branch Predictor/Global Predictor/Peak Dynamic': 0.0168831, 'Instruction Fetch Unit/Branch Predictor/Global Predictor/Runtime Dynamic': 0.000795581, 'Instruction Fetch Unit/Branch Predictor/Global Predictor/Subthreshold Leakage': 0.00759719, 'Instruction Fetch Unit/Branch Predictor/Global Predictor/Subthreshold Leakage with power gating': 0.0039236, 'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Area': 0.0257064, 'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Gate Leakage': 0.000154548, 'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Peak Dynamic': 0.0142575, 'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Runtime Dynamic': 0.0006916, 'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Subthreshold Leakage': 0.00384344, 'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Subthreshold Leakage with power gating': 0.00198631, 'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Area': 0.0151917, 'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Gate Leakage': 8.00196e-05, 'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Peak Dynamic': 0.00527447, 'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Runtime Dynamic': 0.000266991, 'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Subthreshold Leakage': 0.00181347, 'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Subthreshold Leakage with power gating': 0.000957045, 'Instruction Fetch Unit/Branch Predictor/Peak Dynamic': 0.0597838, 'Instruction Fetch Unit/Branch Predictor/RAS/Area': 0.0105732, 'Instruction Fetch Unit/Branch Predictor/RAS/Gate Leakage': 4.63858e-05, 'Instruction Fetch Unit/Branch Predictor/RAS/Peak Dynamic': 0.0117602, 'Instruction Fetch Unit/Branch Predictor/RAS/Runtime Dynamic': 0.0015061, 'Instruction Fetch Unit/Branch Predictor/RAS/Subthreshold Leakage': 0.000932505, 'Instruction Fetch Unit/Branch Predictor/RAS/Subthreshold Leakage with power gating': 0.000494733, 'Instruction Fetch Unit/Branch Predictor/Runtime Dynamic': 0.00378886, 'Instruction Fetch Unit/Branch Predictor/Subthreshold Leakage': 0.0199703, 'Instruction Fetch Unit/Branch Predictor/Subthreshold Leakage with power gating': 0.0103282, 'Instruction Fetch Unit/Branch Target Buffer/Area': 0.64954, 'Instruction Fetch Unit/Branch Target Buffer/Gate Leakage': 0.00272758, 'Instruction Fetch Unit/Branch Target Buffer/Peak Dynamic': 0.177867, 'Instruction Fetch Unit/Branch Target Buffer/Runtime Dynamic': 0.00767621, 'Instruction Fetch Unit/Branch Target Buffer/Subthreshold Leakage': 0.0811682, 'Instruction Fetch Unit/Branch Target Buffer/Subthreshold Leakage with power gating': 0.0435357, 'Instruction Fetch Unit/Gate Leakage': 0.0589979, 'Instruction Fetch Unit/Instruction Buffer/Area': 0.0226323, 'Instruction Fetch Unit/Instruction Buffer/Gate Leakage': 6.83558e-05, 'Instruction Fetch Unit/Instruction Buffer/Peak Dynamic': 0.606827, 'Instruction Fetch Unit/Instruction Buffer/Runtime Dynamic': 0.10079, 'Instruction Fetch Unit/Instruction Buffer/Subthreshold Leakage': 0.00151885, 'Instruction Fetch Unit/Instruction Buffer/Subthreshold Leakage with power gating': 0.000701682, 'Instruction Fetch Unit/Instruction Cache/Area': 3.14635, 'Instruction Fetch Unit/Instruction Cache/Gate Leakage': 0.029931, 'Instruction Fetch Unit/Instruction Cache/Peak Dynamic': 6.41109, 'Instruction Fetch Unit/Instruction Cache/Runtime Dynamic': 0.248962, 'Instruction Fetch Unit/Instruction Cache/Subthreshold Leakage': 0.367022, 'Instruction Fetch Unit/Instruction Cache/Subthreshold Leakage with power gating': 0.180386, 'Instruction Fetch Unit/Instruction Decoder/Area': 1.85799, 'Instruction Fetch Unit/Instruction Decoder/Gate Leakage': 0.0222493, 'Instruction Fetch Unit/Instruction Decoder/Peak Dynamic': 1.37404, 'Instruction Fetch Unit/Instruction Decoder/Runtime Dynamic': 0.342327, 'Instruction Fetch Unit/Instruction Decoder/Subthreshold Leakage': 0.442943, 'Instruction Fetch Unit/Instruction Decoder/Subthreshold Leakage with power gating': 0.166104, 'Instruction Fetch Unit/Peak Dynamic': 8.94075, 'Instruction Fetch Unit/Runtime Dynamic': 0.703544, 'Instruction Fetch Unit/Subthreshold Leakage': 0.932286, 'Instruction Fetch Unit/Subthreshold Leakage with power gating': 0.40843, 'L2/Area': 4.53318, 'L2/Gate Leakage': 0.015464, 'L2/Peak Dynamic': 0.0657792, 'L2/Runtime Dynamic': 0.00413921, 'L2/Subthreshold Leakage': 0.834142, 'L2/Subthreshold Leakage with power gating': 0.401066, 'Load Store Unit/Area': 8.80901, 'Load Store Unit/Data Cache/Area': 6.84535, 'Load Store Unit/Data Cache/Gate Leakage': 0.0279261, 'Load Store Unit/Data Cache/Peak Dynamic': 2.98015, 'Load Store Unit/Data Cache/Runtime Dynamic': 0.839273, 'Load Store Unit/Data Cache/Subthreshold Leakage': 0.527675, 'Load Store Unit/Data Cache/Subthreshold Leakage with power gating': 0.25085, 'Load Store Unit/Gate Leakage': 0.0350888, 'Load Store Unit/LoadQ/Area': 0.0836782, 'Load Store Unit/LoadQ/Gate Leakage': 0.00059896, 'Load Store Unit/LoadQ/Peak Dynamic': 0.0563913, 'Load Store Unit/LoadQ/Runtime Dynamic': 0.0563912, 'Load Store Unit/LoadQ/Subthreshold Leakage': 0.00941961, 'Load Store Unit/LoadQ/Subthreshold Leakage with power gating': 0.00536918, 'Load Store Unit/Peak Dynamic': 3.24645, 'Load Store Unit/Runtime Dynamic': 1.17377, 'Load Store Unit/StoreQ/Area': 0.322079, 'Load Store Unit/StoreQ/Gate Leakage': 0.00329971, 'Load Store Unit/StoreQ/Peak Dynamic': 0.139051, 'Load Store Unit/StoreQ/Runtime Dynamic': 0.278102, 'Load Store Unit/StoreQ/Subthreshold Leakage': 0.0345621, 'Load Store Unit/StoreQ/Subthreshold Leakage with power gating': 0.0197004, 'Load Store Unit/Subthreshold Leakage': 0.591321, 'Load Store Unit/Subthreshold Leakage with power gating': 0.283293, 'Memory Management Unit/Area': 0.4339, 'Memory Management Unit/Dtlb/Area': 0.0879726, 'Memory Management Unit/Dtlb/Gate Leakage': 0.00088729, 'Memory Management Unit/Dtlb/Peak Dynamic': 0.0493498, 'Memory Management Unit/Dtlb/Runtime Dynamic': 0.0503302, 'Memory Management Unit/Dtlb/Subthreshold Leakage': 0.0155699, 'Memory Management Unit/Dtlb/Subthreshold Leakage with power gating': 0.00887485, 'Memory Management Unit/Gate Leakage': 0.00808595, 'Memory Management Unit/Itlb/Area': 0.301552, 'Memory Management Unit/Itlb/Gate Leakage': 0.00393464, 'Memory Management Unit/Itlb/Peak Dynamic': 0.398618, 'Memory Management Unit/Itlb/Runtime Dynamic': 0.0408354, 'Memory Management Unit/Itlb/Subthreshold Leakage': 0.0413758, 'Memory Management Unit/Itlb/Subthreshold Leakage with power gating': 0.0235842, 'Memory Management Unit/Peak Dynamic': 0.639501, 'Memory Management Unit/Runtime Dynamic': 0.0911656, 'Memory Management Unit/Subthreshold Leakage': 0.0766103, 'Memory Management Unit/Subthreshold Leakage with power gating': 0.0398333, 'Peak Dynamic': 22.9749, 'Renaming Unit/Area': 0.303608, 'Renaming Unit/FP Front End RAT/Area': 0.131045, 'Renaming Unit/FP Front End RAT/Gate Leakage': 0.00351123, 'Renaming Unit/FP Front End RAT/Peak Dynamic': 2.51468, 'Renaming Unit/FP Front End RAT/Runtime Dynamic': 0.650344, 'Renaming Unit/FP Front End RAT/Subthreshold Leakage': 0.0308571, 'Renaming Unit/FP Front End RAT/Subthreshold Leakage with power gating': 0.0175885, 'Renaming Unit/Free List/Area': 0.0340654, 'Renaming Unit/Free List/Gate Leakage': 2.5481e-05, 'Renaming Unit/Free List/Peak Dynamic': 0.0306032, 'Renaming Unit/Free List/Runtime Dynamic': 0.0231635, 'Renaming Unit/Free List/Subthreshold Leakage': 0.000370144, 'Renaming Unit/Free List/Subthreshold Leakage with power gating': 0.000201064, 'Renaming Unit/Gate Leakage': 0.00708398, 'Renaming Unit/Int Front End RAT/Area': 0.0941223, 'Renaming Unit/Int Front End RAT/Gate Leakage': 0.000283242, 'Renaming Unit/Int Front End RAT/Peak Dynamic': 0.731965, 'Renaming Unit/Int Front End RAT/Runtime Dynamic': 0.156297, 'Renaming Unit/Int Front End RAT/Subthreshold Leakage': 0.00435488, 'Renaming Unit/Int Front End RAT/Subthreshold Leakage with power gating': 0.00248228, 'Renaming Unit/Peak Dynamic': 3.58947, 'Renaming Unit/Runtime Dynamic': 0.829804, 'Renaming Unit/Subthreshold Leakage': 0.0552466, 'Renaming Unit/Subthreshold Leakage with power gating': 0.0276461, 'Runtime Dynamic': 5.7922, 'Subthreshold Leakage': 6.16288, 'Subthreshold Leakage with power gating': 2.55328}], 'DRAM': {'Area': 0, 'Gate Leakage': 0, 'Peak Dynamic': 0.5840218280895675, 'Runtime Dynamic': 0.5840218280895675, 'Subthreshold Leakage': 4.252, 'Subthreshold Leakage with power gating': 4.252}, 'L3': [{'Area': 61.9075, 'Gate Leakage': 0.0484137, 'Peak Dynamic': 0.202737, 'Runtime Dynamic': 0.119102, 'Subthreshold Leakage': 6.80085, 'Subthreshold Leakage with power gating': 3.32364}], 'Processor': {'Area': 191.908, 'Gate Leakage': 1.53485, 'Peak Dynamic': 90.9316, 'Peak Power': 124.044, 'Runtime Dynamic': 26.0141, 'Subthreshold Leakage': 31.5774, 'Subthreshold Leakage with power gating': 13.9484, 'Total Cores/Area': 128.669, 'Total Cores/Gate Leakage': 1.4798, 'Total Cores/Peak Dynamic': 90.7289, 'Total Cores/Runtime Dynamic': 25.895, 'Total Cores/Subthreshold Leakage': 24.7074, 'Total Cores/Subthreshold Leakage with power gating': 10.2429, 'Total L3s/Area': 61.9075, 'Total L3s/Gate Leakage': 0.0484137, 'Total L3s/Peak Dynamic': 0.202737, 'Total L3s/Runtime Dynamic': 0.119102, 'Total L3s/Subthreshold Leakage': 6.80085, 'Total L3s/Subthreshold Leakage with power gating': 3.32364, 'Total Leakage': 33.1122, 'Total NoCs/Area': 1.33155, 'Total NoCs/Gate Leakage': 0.00662954, 'Total NoCs/Peak Dynamic': 0.0, 'Total NoCs/Runtime Dynamic': 0.0, 'Total NoCs/Subthreshold Leakage': 0.0691322, 'Total NoCs/Subthreshold Leakage with power gating': 0.0259246}}
#There are 2N people a company is planning to interview. #The cost of flying the i-th person to city A is costs[i][0], and #the cost of flying the i-th person to city B is costs[i][1]. #Return the minimum cost to fly every person to a city such that exactly N people arrive in each city. class Solution: def twoCitySchedCost(self, costs: List[List[int]]) -> int: res = 0 costs = sorted(costs, key=lambda x: abs(x[0]-x[1]), reverse=True)# this is key - to observe that we need to sort by diff in costs. N = len(costs)//2 countA = N countB = N for citya, cityb in costs: if countA > 0 and countB > 0: if citya < cityb: countA-=1 res+= citya else: countB-=1 res+=cityb elif countA == 0: res+=cityb else: res+=citya return res
class Solution: def two_city_sched_cost(self, costs: List[List[int]]) -> int: res = 0 costs = sorted(costs, key=lambda x: abs(x[0] - x[1]), reverse=True) n = len(costs) // 2 count_a = N count_b = N for (citya, cityb) in costs: if countA > 0 and countB > 0: if citya < cityb: count_a -= 1 res += citya else: count_b -= 1 res += cityb elif countA == 0: res += cityb else: res += citya return res
class Calculator: def __init__(self, a: int, b: int) -> None: self.a = a self.b = b def suma(self) -> int: return self.a + self.b def resta(self) -> int: return self.a - self.b def multi(self) -> int: return self.a * self.b def divicion(self): if self.b != 0: return self.a / self.b else: return "indeterminado" def potencia(self): return self.a ** self.b def raiz(self): if self.a < 0: cube_root = "indeterminado" else: if self.b > 0: cube_root = pow(self.a,1/self.b) else: cube_root = "indeterminado" return cube_root
class Calculator: def __init__(self, a: int, b: int) -> None: self.a = a self.b = b def suma(self) -> int: return self.a + self.b def resta(self) -> int: return self.a - self.b def multi(self) -> int: return self.a * self.b def divicion(self): if self.b != 0: return self.a / self.b else: return 'indeterminado' def potencia(self): return self.a ** self.b def raiz(self): if self.a < 0: cube_root = 'indeterminado' elif self.b > 0: cube_root = pow(self.a, 1 / self.b) else: cube_root = 'indeterminado' return cube_root
""" Time: O(NLogN), N is the number of points. Space: O(N) 1. Get the angle of each point relative to the "location" 2. Sort the angles 3. Do a sliding window to angles to see what the maximum number of angles within the interval "angle" [1] For example, angles = [10, 20, 360], angle = 20 we will count 2, but actually it will be 3. """ class Solution(object): def visiblePoints(self, points, angle, location): def getAngle(x, y): #4 axis if x>0 and y==0: return 0 elif x==0 and y>0: return 90 elif x<0 and y==0: return 180 elif x==0 and y<0: return 270 #4 quadrant if x>0 and y>0: return math.degrees(math.atan2(abs(y), abs(x))) elif x<0 and y>0: return 180-math.degrees(math.atan2(abs(y), abs(x))) elif x<0 and y<0: return 180+math.degrees(math.atan2(abs(y), abs(x))) else: return 360-math.degrees(math.atan2(abs(y), abs(x))) ans = 0 onLocation = 0 angles = [] for x, y in points: if x==location[0] and y==location[1]: onLocation += 1 else: a = getAngle(x-location[0], y-location[1]) angles.append(a) if a<=angle: angles.append(360+a) #[1] angles.sort() i = 0 for j in xrange(len(angles)): while angles[j]-angles[i]>angle: i += 1 ans = max(ans, j-i+1) return ans+onLocation
""" Time: O(NLogN), N is the number of points. Space: O(N) 1. Get the angle of each point relative to the "location" 2. Sort the angles 3. Do a sliding window to angles to see what the maximum number of angles within the interval "angle" [1] For example, angles = [10, 20, 360], angle = 20 we will count 2, but actually it will be 3. """ class Solution(object): def visible_points(self, points, angle, location): def get_angle(x, y): if x > 0 and y == 0: return 0 elif x == 0 and y > 0: return 90 elif x < 0 and y == 0: return 180 elif x == 0 and y < 0: return 270 if x > 0 and y > 0: return math.degrees(math.atan2(abs(y), abs(x))) elif x < 0 and y > 0: return 180 - math.degrees(math.atan2(abs(y), abs(x))) elif x < 0 and y < 0: return 180 + math.degrees(math.atan2(abs(y), abs(x))) else: return 360 - math.degrees(math.atan2(abs(y), abs(x))) ans = 0 on_location = 0 angles = [] for (x, y) in points: if x == location[0] and y == location[1]: on_location += 1 else: a = get_angle(x - location[0], y - location[1]) angles.append(a) if a <= angle: angles.append(360 + a) angles.sort() i = 0 for j in xrange(len(angles)): while angles[j] - angles[i] > angle: i += 1 ans = max(ans, j - i + 1) return ans + onLocation
#!/usr/bin/python # # Copyright (C) 2011-2016 Michel Dalle # # 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. """ Client API library for the Fujitsu Global Cloud Platform (FGCP) using XML-RPC API Version 2015-01-30 Requirements: this module uses tlslite.utils or gdata.tlslite.utils to create the key signature, see https://pypi.python.org/pypi/tlslite-ng or https://pypi.python.org/pypi/tlslite for download and installation Caution: this is a development work in progress - please do not use for productive systems without adequate testing... """ __version__ = '1.5.0' class FGCPError(Exception): """ Exception class for FGCP Errors """ def __init__(self, status, message): self.status = status self.message = message def __str__(self): return '\nStatus: %s\nMessage: %s' % (self.status, self.message)
""" Client API library for the Fujitsu Global Cloud Platform (FGCP) using XML-RPC API Version 2015-01-30 Requirements: this module uses tlslite.utils or gdata.tlslite.utils to create the key signature, see https://pypi.python.org/pypi/tlslite-ng or https://pypi.python.org/pypi/tlslite for download and installation Caution: this is a development work in progress - please do not use for productive systems without adequate testing... """ __version__ = '1.5.0' class Fgcperror(Exception): """ Exception class for FGCP Errors """ def __init__(self, status, message): self.status = status self.message = message def __str__(self): return '\nStatus: %s\nMessage: %s' % (self.status, self.message)
class BusinessCountry(object): """ Business Country Object used to store business coordinates and count. Properties: count, list of coordinates. """ def __init__(self, count=0, coords=None): self.count = count if coords == None: self.coords = [] else: self.coords = coords def addCoord(self, coord): self.coords.append(coord) self.increaseCount() def increaseCount(self): self.count += 1 def getCount(self): return self.count def getCoords(self): return self.coords
class Businesscountry(object): """ Business Country Object used to store business coordinates and count. Properties: count, list of coordinates. """ def __init__(self, count=0, coords=None): self.count = count if coords == None: self.coords = [] else: self.coords = coords def add_coord(self, coord): self.coords.append(coord) self.increaseCount() def increase_count(self): self.count += 1 def get_count(self): return self.count def get_coords(self): return self.coords
#!/usr/bin/env python3 # Implements a graph capable of storing edges of type N1 *-$ N2 where * and # $ are endpoints of type Endpoint. class Graph: # Adds a bidirected edges <-> to the graph. def add_bidirected_edge(self, node1, node2): raise NotImplementedError # Adds a directed edge --> to the graph. def add_directed_edge(self, node1, node2): raise NotImplementedError # Adds an undirected edge --- to the graph. def add_undirected_edge(self, node1, node2): raise NotImplementedError # Adds an nondirected edges o-o to the graph. def add_nondirected_edge(self, node1, node2): raise NotImplementedError # Adds a partially oriented edge o-> to the graph. def add_partially_oriented_edge(self, node1, node2): raise NotImplementedError # Adds the specified edge to the graph, provided it is not already in the # graph. def add_edge(self, edge): raise NotImplementedError # Adds a node to the graph. Precondition: The proposed name of the node # cannot already be used by any other node in the same graph. def add_node(self, node): raise NotImplementedError # Removes all nodes (and therefore all edges) from the graph. def clear(self): raise NotImplementedError # Determines whether this graph contains the given edge. # # Returns true iff the graph contain 'edge'. def contains_edge(self, edge): raise NotImplementedError # Determines whether this graph contains the given node. # # Returns true iff the graph contains 'node'. def contains_node(self, node): raise NotImplementedError # Returns true iff there is a directed cycle in the graph. def exists_directed_cycle(self): raise NotImplementedError # Returns true iff there is a directed path from node1 to node2 in the graph. def exists_directed_path_from_to(self, node1, node2): raise NotImplementedError # Returns true iff there is a path from node1 to node2 in the graph. def exists_undirected_path_from_to(self, node1, node2): raise NotImplementedError # A semi-directed path from A to B is an undirected path in which no # edge has an arrowhead pointing "back" towards A. # # Return true iff there is a semi-directed path from node1 to a node in nodes in the graph. def exists_semidirected_path_from_to(self, node1, nodes): raise NotImplementedError # Determines whether an inducing path exists between node1 and node2, given # a set O of observed nodes and a set sem of conditioned nodes. def exists_inducing_path(self, node1, node2): raise NotImplementedError # Returns true iff a trek exists between two nodes in the graph. A trek # exists if there is a directed path between the two nodes or else, for # some third node in the graph, there is a path to each of the two nodes in # question. def exists_trek(self, node1, node2): raise NotImplementedError # Determines whether this graph is equal to some other graph, in the sense # that they contain the same nodes and the sets of edges defined over these # nodes in the two graphs are isomorphic typewise. That is, if node A and B # exist in both graphs, and if there are, e.g., three edges between A and B # in the first graph, two of which are directed edges and one of which is # an undirected edge, then in the second graph there must also be two # directed edges and one undirected edge between nodes A and B. def __eq__(self, other): raise NotImplementedError # Removes all edges from the graph and fully connects it using $-$ edges, where $ is the given endpoint. def fully_connect(self, endpoint): raise NotImplementedError # Reorients all edges in the graph with the given endpoint. def reorient_all_with(self, endpoint): raise NotImplementedError # Returns a mutable list of nodes adjacent to the given node. def get_adjacent_nodes(self, node): raise NotImplementedError # Returns a mutable list of ancestors for the given nodes. def get_ancestors(self, nodes): raise NotImplementedError # Returns a mutable list of children for a node. def get_children(self, node): raise NotImplementedError # Returns the connectivity of the graph. def get_connectivity(self): raise NotImplementedError # Returns a mutable list of descendants for the given nodes. def get_descendants(self, nodes): raise NotImplementedError # Returns the edge connecting node1 and node2, provided a unique such edge exists. def get_edge(self, node1, node2): raise NotImplementedError # Returns the directed edge from node1 to node2, if there is one. def get_directed_edge(self, node1, node2): raise NotImplementedError # Returns the list of edges connected to a particular node. No particular ordering of the edges in the list is guaranteed. def get_node_edges(self, node): raise NotImplementedError # Returns the edges connecting node1 and node2. def get_connecting_edges(self, node1, node2): raise NotImplementedError # Returns the list of edges in the graph. No particular ordering is guaranteed. def get_graph_edges(self): raise NotImplementedError # Returns the endpoint along the edge from node1 to node2, at the node2 end. def get_endpoint(self, node1, node2): raise NotImplementedError # Returns the number of arrow endpoints adjacent to the node. def get_indegree(self, node): raise NotImplementedError # Returns the number of null endpoints adjacent to the node. def get_outdegree(self, node): raise NotImplementedError # Returns the total number of edges into and out of the node. def get_degree(self, node): raise NotImplementedError # Returns the node with the given string name. In case of accidental # duplicates, the first node encountered with the given name is returned. # In case no node exists with the given name, null is returned. def get_node(self, name): raise NotImplementedError # Returns the list of nodes for the graph. def get_nodes(self): raise NotImplementedError # Returns the names of the nodes, in the order of get_nodes. def get_node_names(self): raise NotImplementedError # Returns the number of edges in the entire graph. def get_num_edges(self): raise NotImplementedError # Returns the number of edges in the graph which are connected to a particular node. def get_num_connected_edges(self, node): raise NotImplementedError # Return the number of nodes in the graph. def get_num_nodes(self): raise NotImplementedError # Return the list of parents of a node. def get_parents(self, node): raise NotImplementedError # Return true iff node1 is adjacent to node2 in the graph. def is_adjacent_to(self, node1, node2): raise NotImplementedError # Return true iff node1 is an ancestor of node2. def is_ancestor_of(self, node1, node2): raise NotImplementedError # Return true iff node1 is a possible ancestor of node2. # # This is a low priority method and may not be implemented. def possible_ancestor(self, node1, node2): raise NotImplementedError # Return true iff node1 is a child of node2. def is_child_of(self, node1, node2): raise NotImplementedError # Returns true iff node1 is a parent of node2. def is_parent_of(self, node1, node2): raise NotImplementedError # Returns true iff node1 is a proper ancestor of node2. def is_proper_ancestor_of(self, node1, node2): raise NotImplementedError # Returns true iff node1 is a proper descendant of node2. def is_proper_descendant_of(self, node1, node2): raise NotImplementedError # Returns true iff node1 is a descendant of node2. def is_descendant_of(self, node1, node2): raise NotImplementedError # A node Y is a definite nondescendent of a node X just in case there is no # semi-directed path from X to Y. # # Returns true if node 2 is a definite nondecendent of node 1. # # This is a low priority method and may not be implemented def def_non_descendent(self, node1, node2): raise NotImplementedError # Returns true if node2 is a definite noncollider between node1 and node3. def is_def_noncollider(self, node1, node2, node3): raise NotImplementedError # Returns true if node2 is a definite collider between node1 and node3. def is_def_collider(self, node1, node2, node3): raise NotImplementedError # Returns true if node1 and node2 are d-connected on the set of nodes z. def is_dconnected_to(self, node1, node2, z): raise NotImplementedError # Returns true if node1 and node2 are d-separated on the set of nodes z. def is_dseparated_from(self, node1, node2, z): raise NotImplementedError # A path U is possibly-d-connecting if every definite collider on U # is a possible ancestor of a node in z and every definite non-collider is # not in z. # # Returns true iff node1 and node2 are possibly d-connected on z. # # This is a low priority method and may not be implemented. def poss_dconnected_to(self, node1, node2, z): raise NotImplementedError # Returns true if the graph is a pattern. def is_pattern(self): raise NotImplementedError # Sets whether the graph is a pattern. def set_pattern(self, pattern): raise NotImplementedError # Returns true if the graph is a PAG. def is_pag(self): raise NotImplementedError # Sets whether the graph is a PAG. def set_pag(self, pag): raise NotImplementedError # Returns true iff there is a single directed edge from node1 to node2. def is_directed_from_to(self, node1, node2): raise NotImplementedError # REturns true iff there is a single undirected edge between node1 and node2. def is_undirected_from_to(self, node1, node2): raise NotImplementedError # A directed edge A->B is definitely visible if there is a node C not # adjacent to B such that C*->A is in the PAG_of_the_true_DAG. # # Returns true iff the given edge is definitely visible. # # This is a low priority method and may not be implemented. def def_visible(self, edge): raise NotImplementedError # Returns true iff the given node is exogenous. def is_exogenous(self, node): raise NotImplementedError # Returns the nodes adjacent to the given node with the given proximal endpoint. def get_nodes_into(self, node, endpoint): raise NotImplementedError # Returns the nodes adjacent to the given node with the given distal endpoint. def get_nodes_out_of(self, node, endpoint): raise NotImplementedError # Removes the given edge from the graph. def remove_edge(self, edge): raise NotImplementedError # Removes the edge connecting the given two nodes, provided there is exactly one such edge. def remove_connecting_edge(self, node1, node2): raise NotImplementedError # Removes all edges connecting node A to node B. In most cases, this will # remove at most one edge, but since multiple edges are permitted in some # graph implementations, the number will in some cases be greater than # one. def remove_connecting_edges(self, node1, node2): raise NotImplementedError # Iterates through the list and removes any permissible edges found. The # order in which edges are removed is the order in which they are presented # in the iterator. def remove_edges(self, edges): raise NotImplementedError # Removes a node from the graph. def remove_node(self, node): raise NotImplementedError # Iterates through the list and removes any permissible nodes found. The # order in which nodes are removed is the order in which they are presented # in the iterator. def remove_nodes(self, nodes): raise NotImplementedError # Sets the endpoint type at the 'to' end of the edge from 'from' to 'to' to # the given endpoint. Note: NOT CONSTRAINT SAFE def set_endpoint(self, node1, node2, endpoint): raise NotImplementedError # Constructs and returns a subgraph consisting of a given subset of the # nodes of this graph together with the edges between them. def subgraph(self, nodes): raise NotImplementedError # Returns a string representation of the graph. def __str__(self): raise NotImplementedError # Transfers nodes and edges from one graph to another. One way this is # used is to change graph types. One constructs a new graph based on the # old graph, and this method is called to transfer the nodes and edges of # the old graph to the new graph. def transfer_nodes_and_edges(self, graph): raise NotImplementedError def transfer_attributes(self, graph): raise NotImplementedError # Returns the list of ambiguous triples associated with this graph. Triples <x, y, z> that no longer # lie along a path in the getModel graph are removed. def get_ambiguous_triples(self): raise NotImplementedError # Returns the set of underlines associated with this graph. def get_underlines(self): raise NotImplementedError # Returns the set of dotted underlines associated with this graph. def get_dotted_underlines(self): raise NotImplementedError # Returns true iff the triple <node1, node2, node3> is set as ambiguous. def is_ambiguous_triple(self, node1, node2, node3): raise NotImplementedError # Returns true iff the triple <node1, node2, node3> is set as underlined. def is_underline_triple(self, node1, node2, node3): raise NotImplementedError # Returns true iff the triple <node1, node2, node3> is set as dotted underlined. def is_dotted_underline_triple(self, node1, node2, node3): raise NotImplementedError # Adds the triple <node1, node2, node3> as an ambiguous triple to the graph. def add_ambiguous_triple(self, node1, node2, node3): raise NotImplementedError # Adds the triple <node1, node2, node3> as an underlined triple to the graph. def add_underline_triple(self, node1, node2, node3): raise NotImplementedError # Adds the triple <node1, node2, node3> as a dotted underlined triple to the graph. def add_dotted_underline_triple(self, node1, node2, node3): raise NotImplementedError # Removes the triple <node1, node2, node3> from the set of ambiguous triples. def remove_ambiguous_triple(self, node1, node2, node3): raise NotImplementedError # Removes the triple <node1, node2, node3> from the set of underlined triples. def remove_underline_triple(self, node1, node2, node3): raise NotImplementedError # Removes the triple <node1, node2, node3> from the set of dotted underlined triples. def remove_dotted_underline_triple(self, node1, node2, node3): raise NotImplementedError # Sets the list of ambiguous triples to the triples in the given set. def set_ambiguous_triples(self, triples): raise NotImplementedError # Sets the list of underlined triples to the triples in the given set. def set_underline_triples(self, triples): raise NotImplementedError # Sets the list of dotted underlined triples to the triples in the given set. def set_dotted_underline_triples(self, triples): raise NotImplementedError # Returns a tier ordering for acyclic graphs. def get_causal_ordering(self): raise NotImplementedError # Returns true if the given node is parameterizable. def is_parameterizable(self, node): raise NotImplementedError # Returns true if this is a time lag model. def is_time_lag_model(self): raise NotImplementedError # Returns the nodes in the sepset of node1 and node2. def get_sepset(self, node1, node2): raise NotImplementedError # Sets the list of nodes for this graph. def set_nodes(self, nodes): raise NotImplementedError def get_all_attributes(self): raise NotImplementedError def get_attribute(self, key): raise NotImplementedError def remove_attribute(self, key): raise NotImplementedError def add_attribute(self, key, value): raise NotImplementedError
class Graph: def add_bidirected_edge(self, node1, node2): raise NotImplementedError def add_directed_edge(self, node1, node2): raise NotImplementedError def add_undirected_edge(self, node1, node2): raise NotImplementedError def add_nondirected_edge(self, node1, node2): raise NotImplementedError def add_partially_oriented_edge(self, node1, node2): raise NotImplementedError def add_edge(self, edge): raise NotImplementedError def add_node(self, node): raise NotImplementedError def clear(self): raise NotImplementedError def contains_edge(self, edge): raise NotImplementedError def contains_node(self, node): raise NotImplementedError def exists_directed_cycle(self): raise NotImplementedError def exists_directed_path_from_to(self, node1, node2): raise NotImplementedError def exists_undirected_path_from_to(self, node1, node2): raise NotImplementedError def exists_semidirected_path_from_to(self, node1, nodes): raise NotImplementedError def exists_inducing_path(self, node1, node2): raise NotImplementedError def exists_trek(self, node1, node2): raise NotImplementedError def __eq__(self, other): raise NotImplementedError def fully_connect(self, endpoint): raise NotImplementedError def reorient_all_with(self, endpoint): raise NotImplementedError def get_adjacent_nodes(self, node): raise NotImplementedError def get_ancestors(self, nodes): raise NotImplementedError def get_children(self, node): raise NotImplementedError def get_connectivity(self): raise NotImplementedError def get_descendants(self, nodes): raise NotImplementedError def get_edge(self, node1, node2): raise NotImplementedError def get_directed_edge(self, node1, node2): raise NotImplementedError def get_node_edges(self, node): raise NotImplementedError def get_connecting_edges(self, node1, node2): raise NotImplementedError def get_graph_edges(self): raise NotImplementedError def get_endpoint(self, node1, node2): raise NotImplementedError def get_indegree(self, node): raise NotImplementedError def get_outdegree(self, node): raise NotImplementedError def get_degree(self, node): raise NotImplementedError def get_node(self, name): raise NotImplementedError def get_nodes(self): raise NotImplementedError def get_node_names(self): raise NotImplementedError def get_num_edges(self): raise NotImplementedError def get_num_connected_edges(self, node): raise NotImplementedError def get_num_nodes(self): raise NotImplementedError def get_parents(self, node): raise NotImplementedError def is_adjacent_to(self, node1, node2): raise NotImplementedError def is_ancestor_of(self, node1, node2): raise NotImplementedError def possible_ancestor(self, node1, node2): raise NotImplementedError def is_child_of(self, node1, node2): raise NotImplementedError def is_parent_of(self, node1, node2): raise NotImplementedError def is_proper_ancestor_of(self, node1, node2): raise NotImplementedError def is_proper_descendant_of(self, node1, node2): raise NotImplementedError def is_descendant_of(self, node1, node2): raise NotImplementedError def def_non_descendent(self, node1, node2): raise NotImplementedError def is_def_noncollider(self, node1, node2, node3): raise NotImplementedError def is_def_collider(self, node1, node2, node3): raise NotImplementedError def is_dconnected_to(self, node1, node2, z): raise NotImplementedError def is_dseparated_from(self, node1, node2, z): raise NotImplementedError def poss_dconnected_to(self, node1, node2, z): raise NotImplementedError def is_pattern(self): raise NotImplementedError def set_pattern(self, pattern): raise NotImplementedError def is_pag(self): raise NotImplementedError def set_pag(self, pag): raise NotImplementedError def is_directed_from_to(self, node1, node2): raise NotImplementedError def is_undirected_from_to(self, node1, node2): raise NotImplementedError def def_visible(self, edge): raise NotImplementedError def is_exogenous(self, node): raise NotImplementedError def get_nodes_into(self, node, endpoint): raise NotImplementedError def get_nodes_out_of(self, node, endpoint): raise NotImplementedError def remove_edge(self, edge): raise NotImplementedError def remove_connecting_edge(self, node1, node2): raise NotImplementedError def remove_connecting_edges(self, node1, node2): raise NotImplementedError def remove_edges(self, edges): raise NotImplementedError def remove_node(self, node): raise NotImplementedError def remove_nodes(self, nodes): raise NotImplementedError def set_endpoint(self, node1, node2, endpoint): raise NotImplementedError def subgraph(self, nodes): raise NotImplementedError def __str__(self): raise NotImplementedError def transfer_nodes_and_edges(self, graph): raise NotImplementedError def transfer_attributes(self, graph): raise NotImplementedError def get_ambiguous_triples(self): raise NotImplementedError def get_underlines(self): raise NotImplementedError def get_dotted_underlines(self): raise NotImplementedError def is_ambiguous_triple(self, node1, node2, node3): raise NotImplementedError def is_underline_triple(self, node1, node2, node3): raise NotImplementedError def is_dotted_underline_triple(self, node1, node2, node3): raise NotImplementedError def add_ambiguous_triple(self, node1, node2, node3): raise NotImplementedError def add_underline_triple(self, node1, node2, node3): raise NotImplementedError def add_dotted_underline_triple(self, node1, node2, node3): raise NotImplementedError def remove_ambiguous_triple(self, node1, node2, node3): raise NotImplementedError def remove_underline_triple(self, node1, node2, node3): raise NotImplementedError def remove_dotted_underline_triple(self, node1, node2, node3): raise NotImplementedError def set_ambiguous_triples(self, triples): raise NotImplementedError def set_underline_triples(self, triples): raise NotImplementedError def set_dotted_underline_triples(self, triples): raise NotImplementedError def get_causal_ordering(self): raise NotImplementedError def is_parameterizable(self, node): raise NotImplementedError def is_time_lag_model(self): raise NotImplementedError def get_sepset(self, node1, node2): raise NotImplementedError def set_nodes(self, nodes): raise NotImplementedError def get_all_attributes(self): raise NotImplementedError def get_attribute(self, key): raise NotImplementedError def remove_attribute(self, key): raise NotImplementedError def add_attribute(self, key, value): raise NotImplementedError
# coding: utf-8 class TestApp(object): def setup(self): pass def teardown(self): pass def test_app(self): assert True def test_app2(self): assert True
class Testapp(object): def setup(self): pass def teardown(self): pass def test_app(self): assert True def test_app2(self): assert True
class BST: class Node: def __init__(self, x = None, l = None, r = None): self.data = x self.left = l self.right = r def is_leaf(self): return self.left == None and self.right == None def __str__(self): return '(' + str(self.data) + ')' def __repr__(self): result = '(' + repr(self.data) + ' @' + str(id(self)) +\ ' left -> ' if self.left == None: result += 'None' else: result += '@' + str(id(self.left)) result += ' right -> ' if self.right == None: result += 'None' else: result += '@' + str(id(self.right)) result += ')' return result def __init__(self, orig = None): self.root = None if orig != None: for x in orig: self.add(x) ############################################################# # # These methods will call the methods that YOU must implement # ############################################################# def __len__(self): return self.subtree_size(self.root) def height(self): return self.subtree_height(self.root) def sum(self): return self.subtree_sum(self.root) def __contains__(self, value): return self.subtree_contains(value, self.root) def deepest_value(self): if self.root == None: return [None, 0] else: return self.subtree_deepest( self.root, 1) ###################################################################### # # YOU MUST MODIFY THE METHODS BELOW THIS LINE # (But look at the methods in the section just above, # to see how recursion starts) # # | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | # v v v v v v v v v v v v v v v v v v v v v v v v v v v v v v v v v v ''' Exercise 1: return True if root is None ''' def is_empty(self): if self.root == None: return True return False ''' Exercise 2: return 0 if node is None, or 1 + sum or left and right sizes ''' def subtree_size(self, node): if node == None: return 0 else: return 1 + self.subtree_size(node.left) + self.subtree_size(node.right) ''' Exercise 3: return 0 if node is None, or 1 + max of left and right heights ''' def subtree_height(self, node): if node == None: return 0 else: return 1 + max(self.subtree_size(node.left), self.subtree_size(node.right)) ''' Exercise 4: start at root, and loop node = node.right ''' def rightmost_data(self): if self.root == None: return None else: node = self.root.right while node.right != None: node = node.right return node ''' Exercise 5: return 0 if node is None, or data + left and right sums ''' def subtree_sum(self,node): if node == None: return 0 else: return node.data + self.subtree_sum(node.left) + self.subtree_sum(node.right) ''' Exercise 6: False if node is None, otherwise go right or left until you find value ''' def subtree_contains(self, value, node): return False ''' Exercise 7: return node's data and depth, if it's a leaf, otherwise find deepest in both subtrees, return deeper pair ''' def subtree_deepest(self, node, depth): return [None, 0] # ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ # | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | # # THE METHODS YOU MUST MODIFY ARE ABOVE THIS LINE # ######################################################################### def add(self, value): # print 'add: value=',value # print 'before add, tree is:', # print repr(self) if self.root == None: self.root = self.Node(value, None, None) else: p = self.root while True: if p.data == value: return False elif value < p.data: if p.left == None: p.left = self.Node(value) return True else: p = p.left else: # value > p.data if p.right == None: p.right = self.Node(value) return True else: p = p.right def inorder(self): result = [] self.inorder_into_list(self.root, result) return result def inorder_into_list(self, node, result): # print 'entering inorder_list.' # print ' node=',repr(node) # print ' result=',result if node != None: self.inorder_into_list(node.left, result) result.append(node.data) self.inorder_into_list(node.right, result) def __str__(self): l = self.inorder() return str(l) def __repr__(self): result = 'BST(\n' result += self.subtree_repr(self.root, 0) result += ')' return result def subtree_repr(self, node, depth): if node != None: r_repr = self.subtree_repr(node.right, depth+1) l_repr = self.subtree_repr(node.left, depth+1) return r_repr + \ ' ' + ' ' * depth + repr(node) + '\n' +\ l_repr else: return '' def main(): empty_tree = BST() print ("Is it empty?", empty_tree.is_empty()) tree = BST([3, 1, 4, 1, 5, 9, 2, 6, 5, 3, 5, 8, 9, 7]) print ("Is it empty?", tree.is_empty()) print ("tree values:", tree) print ("repr(tree):\n",repr(tree)) print ("size:",len(tree)) print ("height:",tree.height()) print ("rightmost:",tree.rightmost_data()) print ("sum:",tree.sum()) print ("contains 5?", (5 in tree)) print ("contains 0?", (0 in tree)) [value, depth] = tree.deepest_value() print ("deepest value:",value,"at depth",depth) if __name__ == '__main__': main()
class Bst: class Node: def __init__(self, x=None, l=None, r=None): self.data = x self.left = l self.right = r def is_leaf(self): return self.left == None and self.right == None def __str__(self): return '(' + str(self.data) + ')' def __repr__(self): result = '(' + repr(self.data) + ' @' + str(id(self)) + ' left -> ' if self.left == None: result += 'None' else: result += '@' + str(id(self.left)) result += ' right -> ' if self.right == None: result += 'None' else: result += '@' + str(id(self.right)) result += ')' return result def __init__(self, orig=None): self.root = None if orig != None: for x in orig: self.add(x) def __len__(self): return self.subtree_size(self.root) def height(self): return self.subtree_height(self.root) def sum(self): return self.subtree_sum(self.root) def __contains__(self, value): return self.subtree_contains(value, self.root) def deepest_value(self): if self.root == None: return [None, 0] else: return self.subtree_deepest(self.root, 1) ' Exercise 1: return True if root is None ' def is_empty(self): if self.root == None: return True return False ' Exercise 2: return 0 if node is None, \n or 1 + sum or left and right sizes ' def subtree_size(self, node): if node == None: return 0 else: return 1 + self.subtree_size(node.left) + self.subtree_size(node.right) ' Exercise 3: return 0 if node is None,\n or 1 + max of left and right heights ' def subtree_height(self, node): if node == None: return 0 else: return 1 + max(self.subtree_size(node.left), self.subtree_size(node.right)) ' Exercise 4: start at root, and loop node = node.right ' def rightmost_data(self): if self.root == None: return None else: node = self.root.right while node.right != None: node = node.right return node ' Exercise 5: return 0 if node is None,\n or data + left and right sums ' def subtree_sum(self, node): if node == None: return 0 else: return node.data + self.subtree_sum(node.left) + self.subtree_sum(node.right) ' Exercise 6: False if node is None,\n otherwise go right or left until you find value ' def subtree_contains(self, value, node): return False " Exercise 7: return node's data and depth, if it's a leaf,\n otherwise find deepest in both subtrees, return deeper pair " def subtree_deepest(self, node, depth): return [None, 0] def add(self, value): if self.root == None: self.root = self.Node(value, None, None) else: p = self.root while True: if p.data == value: return False elif value < p.data: if p.left == None: p.left = self.Node(value) return True else: p = p.left elif p.right == None: p.right = self.Node(value) return True else: p = p.right def inorder(self): result = [] self.inorder_into_list(self.root, result) return result def inorder_into_list(self, node, result): if node != None: self.inorder_into_list(node.left, result) result.append(node.data) self.inorder_into_list(node.right, result) def __str__(self): l = self.inorder() return str(l) def __repr__(self): result = 'BST(\n' result += self.subtree_repr(self.root, 0) result += ')' return result def subtree_repr(self, node, depth): if node != None: r_repr = self.subtree_repr(node.right, depth + 1) l_repr = self.subtree_repr(node.left, depth + 1) return r_repr + ' ' + ' ' * depth + repr(node) + '\n' + l_repr else: return '' def main(): empty_tree = bst() print('Is it empty?', empty_tree.is_empty()) tree = bst([3, 1, 4, 1, 5, 9, 2, 6, 5, 3, 5, 8, 9, 7]) print('Is it empty?', tree.is_empty()) print('tree values:', tree) print('repr(tree):\n', repr(tree)) print('size:', len(tree)) print('height:', tree.height()) print('rightmost:', tree.rightmost_data()) print('sum:', tree.sum()) print('contains 5?', 5 in tree) print('contains 0?', 0 in tree) [value, depth] = tree.deepest_value() print('deepest value:', value, 'at depth', depth) if __name__ == '__main__': main()
class LabeledImage(object): def __init__(self): self.height = -1 self.width = -1 self.filename = "" self.source_id = -1 self.encoded = -1 self.format = str.encode('jpeg') self.xmins = [] self.xmaxs = [] self.ymins = [] self.ymaxs = [] self.is_occluded = [] self.is_truncated = [] self.is_group_of = [] self.is_depicted = [] self.is_inside = [] self.text = [] self.label = [] def equal(self, img_name): if img_name == self.filename: return True else: return False # def set_height(self, val): # self.height = val # # def set_width(self, val): # self.width = val # # def set_filename(self, val): # self.filename = val # # def set_source_id(self, val): # self.source_id = val # # def set_encoded(self, val): # self.encoded = val # # def set_format(self, val): # self.format = val # # def set_xmin(self, val): # self.xmin = val # # def set_xmax(self, val): # self.xmax = val # # def set_ymin(self, val): # self.ymin = val # # def set_ymax(self, val): # self.ymax = val # # def set_text(self, val): # self.text = val # # def set_label(self, val): # self.label = val # # def get_height(self): # return self.height # # def get_width(self): # return self.width # # def get_filename(self): # return self.filename # # def get_source_id(self): # return self.source_id # # def get_encoded(self): # return self.encoded # # def get_format(self): # return self.format # # def get_xmin(self): # return self.xmin # # def get_xmax(self): # return self.xmax # # def get_ymin(self): # return self.ymin # # def get_ymax(self): # return self.ymax # # def get_text(self): # return self.text # # def get_label(self): # return self.label
class Labeledimage(object): def __init__(self): self.height = -1 self.width = -1 self.filename = '' self.source_id = -1 self.encoded = -1 self.format = str.encode('jpeg') self.xmins = [] self.xmaxs = [] self.ymins = [] self.ymaxs = [] self.is_occluded = [] self.is_truncated = [] self.is_group_of = [] self.is_depicted = [] self.is_inside = [] self.text = [] self.label = [] def equal(self, img_name): if img_name == self.filename: return True else: return False
class InvalidConfiguration(Exception): pass class RegionNotFound(Exception): pass
class Invalidconfiguration(Exception): pass class Regionnotfound(Exception): pass
# # PySNMP MIB module HPN-ICF-RS485-MIB (http://snmplabs.com/pysmi) # ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/HPN-ICF-RS485-MIB # Produced by pysmi-0.3.4 at Wed May 1 13:41:13 2019 # On host DAVWANG4-M-1475 platform Darwin version 18.5.0 by user davwang4 # Using Python version 3.7.3 (default, Mar 27 2019, 09:23:15) # Integer, ObjectIdentifier, OctetString = mibBuilder.importSymbols("ASN1", "Integer", "ObjectIdentifier", "OctetString") NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues") ConstraintsIntersection, ConstraintsUnion, SingleValueConstraint, ValueSizeConstraint, ValueRangeConstraint = mibBuilder.importSymbols("ASN1-REFINEMENT", "ConstraintsIntersection", "ConstraintsUnion", "SingleValueConstraint", "ValueSizeConstraint", "ValueRangeConstraint") hpnicfCommon, = mibBuilder.importSymbols("HPN-ICF-OID-MIB", "hpnicfCommon") ifIndex, = mibBuilder.importSymbols("IF-MIB", "ifIndex") InetAddressType, InetAddress = mibBuilder.importSymbols("INET-ADDRESS-MIB", "InetAddressType", "InetAddress") NotificationGroup, ModuleCompliance = mibBuilder.importSymbols("SNMPv2-CONF", "NotificationGroup", "ModuleCompliance") ModuleIdentity, Unsigned32, Integer32, IpAddress, Counter64, iso, TimeTicks, Gauge32, Counter32, NotificationType, MibIdentifier, Bits, ObjectIdentity, MibScalar, MibTable, MibTableRow, MibTableColumn = mibBuilder.importSymbols("SNMPv2-SMI", "ModuleIdentity", "Unsigned32", "Integer32", "IpAddress", "Counter64", "iso", "TimeTicks", "Gauge32", "Counter32", "NotificationType", "MibIdentifier", "Bits", "ObjectIdentity", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn") TextualConvention, RowStatus, DisplayString = mibBuilder.importSymbols("SNMPv2-TC", "TextualConvention", "RowStatus", "DisplayString") hpnicfRS485 = ModuleIdentity((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 2, 109)) if mibBuilder.loadTexts: hpnicfRS485.setLastUpdated('200910210000Z') if mibBuilder.loadTexts: hpnicfRS485.setOrganization('') if mibBuilder.loadTexts: hpnicfRS485.setContactInfo('') if mibBuilder.loadTexts: hpnicfRS485.setDescription('The objects in this MIB module are used to manage RS485 interfaces, and manage sessions on them.') hpnicfRS485Properties = MibIdentifier((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 2, 109, 1)) hpnicfRS485PropertiesTable = MibTable((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 2, 109, 1, 1), ) if mibBuilder.loadTexts: hpnicfRS485PropertiesTable.setStatus('current') if mibBuilder.loadTexts: hpnicfRS485PropertiesTable.setDescription('Propertie table.') hpnicfRS485PropertiesEntry = MibTableRow((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 2, 109, 1, 1, 1), ).setIndexNames((0, "IF-MIB", "ifIndex")) if mibBuilder.loadTexts: hpnicfRS485PropertiesEntry.setStatus('current') if mibBuilder.loadTexts: hpnicfRS485PropertiesEntry.setDescription('Propertie entry.') hpnicfRS485RawSessionNextIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 2, 109, 1, 1, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 64))).setMaxAccess("readonly") if mibBuilder.loadTexts: hpnicfRS485RawSessionNextIndex.setStatus('current') if mibBuilder.loadTexts: hpnicfRS485RawSessionNextIndex.setDescription('The next valid index of raw sessions, from 1 to 64, which session has been created. When there is no valid index left, it will return 0.') hpnicfRS485BaudRate = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 2, 109, 1, 1, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10))).clone(namedValues=NamedValues(("bautRate300", 1), ("bautRate600", 2), ("bautRate1200", 3), ("bautRate2400", 4), ("bautRate4800", 5), ("bautRate9600", 6), ("bautRate19200", 7), ("bautRate38400", 8), ("bautRate57600", 9), ("bautRate115200", 10))).clone('bautRate9600')).setMaxAccess("readwrite") if mibBuilder.loadTexts: hpnicfRS485BaudRate.setStatus('current') if mibBuilder.loadTexts: hpnicfRS485BaudRate.setDescription("The port's baud rate.") hpnicfRS485DataBits = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 2, 109, 1, 1, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("five", 1), ("six", 2), ("seven", 3), ("eight", 4))).clone('eight')).setUnits('bit').setMaxAccess("readwrite") if mibBuilder.loadTexts: hpnicfRS485DataBits.setStatus('current') if mibBuilder.loadTexts: hpnicfRS485DataBits.setDescription("The port's number of data bits in a character.") hpnicfRS485Parity = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 2, 109, 1, 1, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5))).clone(namedValues=NamedValues(("none", 1), ("odd", 2), ("even", 3), ("mark", 4), ("space", 5))).clone('none')).setMaxAccess("readwrite") if mibBuilder.loadTexts: hpnicfRS485Parity.setStatus('current') if mibBuilder.loadTexts: hpnicfRS485Parity.setDescription("The port's sense of a character parity bit.") hpnicfRS485StopBits = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 2, 109, 1, 1, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("one", 1), ("two", 2), ("oneAndHalf", 3))).clone('one')).setUnits('bit').setMaxAccess("readwrite") if mibBuilder.loadTexts: hpnicfRS485StopBits.setStatus('current') if mibBuilder.loadTexts: hpnicfRS485StopBits.setDescription("The port's number of stop bits.") hpnicfRS485FlowControl = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 2, 109, 1, 1, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("none", 1), ("hardware", 2), ("xonOrxoff", 3))).clone('none')).setMaxAccess("readwrite") if mibBuilder.loadTexts: hpnicfRS485FlowControl.setStatus('current') if mibBuilder.loadTexts: hpnicfRS485FlowControl.setDescription("The port's type of input flow control. 'none' indicates no flow control at this level. 'hardware' indicates use of hardware signals. 'xonOrxoff' indicates use of software function.") hpnicfRS485TXCharacters = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 2, 109, 1, 1, 1, 7), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: hpnicfRS485TXCharacters.setStatus('current') if mibBuilder.loadTexts: hpnicfRS485TXCharacters.setDescription('The number of output characters for the port.') hpnicfRS485RXCharacters = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 2, 109, 1, 1, 1, 8), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: hpnicfRS485RXCharacters.setStatus('current') if mibBuilder.loadTexts: hpnicfRS485RXCharacters.setDescription('The number of input characters for the port.') hpnicfRS485TXErrCharacters = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 2, 109, 1, 1, 1, 9), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: hpnicfRS485TXErrCharacters.setStatus('current') if mibBuilder.loadTexts: hpnicfRS485TXErrCharacters.setDescription('The number of output error characters for the port.') hpnicfRS485RXErrCharacters = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 2, 109, 1, 1, 1, 10), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: hpnicfRS485RXErrCharacters.setStatus('current') if mibBuilder.loadTexts: hpnicfRS485RXErrCharacters.setDescription('The number of input error characters for the port.') hpnicfRS485ResetCharacters = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 2, 109, 1, 1, 1, 11), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("counting", 1), ("clear", 2))).clone('counting')).setMaxAccess("readwrite") if mibBuilder.loadTexts: hpnicfRS485ResetCharacters.setStatus('current') if mibBuilder.loadTexts: hpnicfRS485ResetCharacters.setDescription('Reset the counters to zero, inlucding hpnicfRS485TXCharacters, hpnicfRS485RXCharacters, hpnicfRS485TXErrCharacters and hpnicfRS485RXErrCharacters.') hpnicfRS485RawSessions = MibIdentifier((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 2, 109, 2)) hpnicfRS485RawSessionSummary = MibIdentifier((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 2, 109, 2, 1)) hpnicfRS485RawSessionMaxNum = MibScalar((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 2, 109, 2, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 64))).setMaxAccess("readonly") if mibBuilder.loadTexts: hpnicfRS485RawSessionMaxNum.setStatus('current') if mibBuilder.loadTexts: hpnicfRS485RawSessionMaxNum.setDescription('The max number of raw sessions what we can support.') hpnicfRS485RawSessionTable = MibTable((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 2, 109, 2, 2), ) if mibBuilder.loadTexts: hpnicfRS485RawSessionTable.setStatus('current') if mibBuilder.loadTexts: hpnicfRS485RawSessionTable.setDescription('RS485 raw session table. Data recieved from rs485 will be sent to the destination by raw sockets.') hpnicfRS485RawSessionEntry = MibTableRow((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 2, 109, 2, 2, 1), ).setIndexNames((0, "IF-MIB", "ifIndex"), (0, "HPN-ICF-RS485-MIB", "hpnicfRS485SessionIndex")) if mibBuilder.loadTexts: hpnicfRS485RawSessionEntry.setStatus('current') if mibBuilder.loadTexts: hpnicfRS485RawSessionEntry.setDescription('Parameters of a session, including remote IP address, remote port, local port, and so on.') hpnicfRS485SessionIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 2, 109, 2, 2, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 64))) if mibBuilder.loadTexts: hpnicfRS485SessionIndex.setStatus('current') if mibBuilder.loadTexts: hpnicfRS485SessionIndex.setDescription('Raw session index.') hpnicfRS485SessionType = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 2, 109, 2, 2, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("udp", 1), ("tcpClient", 2), ("tcpServer", 3)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: hpnicfRS485SessionType.setStatus('current') if mibBuilder.loadTexts: hpnicfRS485SessionType.setDescription('The type of a session. A session can use UDP socket, TCP socket as a client, or TCP socket as a server.') hpnicfRS485SessionAddType = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 2, 109, 2, 2, 1, 3), InetAddressType().clone('ipv4')).setMaxAccess("readwrite") if mibBuilder.loadTexts: hpnicfRS485SessionAddType.setStatus('current') if mibBuilder.loadTexts: hpnicfRS485SessionAddType.setDescription('This object indicates the transport type of the address contained in hpnicfRS485SessionRemoteIP object.') hpnicfRS485SessionRemoteIP = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 2, 109, 2, 2, 1, 4), InetAddress()).setMaxAccess("readcreate") if mibBuilder.loadTexts: hpnicfRS485SessionRemoteIP.setStatus('current') if mibBuilder.loadTexts: hpnicfRS485SessionRemoteIP.setDescription("The IP of remote entry. When session type is 'udp', this is the IP of the peer. When session type is 'tcpClient', this is the IP of the server . When session type is 'tcpServer', this is invalid, it will return 0. ") hpnicfRS485SessionRemotePort = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 2, 109, 2, 2, 1, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1024, 65535))).setMaxAccess("readcreate") if mibBuilder.loadTexts: hpnicfRS485SessionRemotePort.setStatus('current') if mibBuilder.loadTexts: hpnicfRS485SessionRemotePort.setDescription("The port of remote entry. When session type is 'udp', this is port of the peer. When session type is 'tcpClient', this is the port of the server. When session type is 'tcpServer', this is invalid, it will return 0. ") hpnicfRS485SessionLocalPort = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 2, 109, 2, 2, 1, 6), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1024, 65535))).setMaxAccess("readcreate") if mibBuilder.loadTexts: hpnicfRS485SessionLocalPort.setStatus('current') if mibBuilder.loadTexts: hpnicfRS485SessionLocalPort.setDescription("Local socket port. When session type is 'udp', this is local UDP socket port. When session type is 'tcpClient', this is invalid, it will return 0. When session type is 'tcpServer', this is the local port which will be listened. ") hpnicfRS485SessionStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 2, 109, 2, 2, 1, 7), RowStatus()).setMaxAccess("readcreate") if mibBuilder.loadTexts: hpnicfRS485SessionStatus.setStatus('current') if mibBuilder.loadTexts: hpnicfRS485SessionStatus.setDescription('The status column used for creating, modifying, and deleting instances of the columnar objects in raw session table.') hpnicfRS485RawSessionErrInfoTable = MibTable((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 2, 109, 2, 3), ) if mibBuilder.loadTexts: hpnicfRS485RawSessionErrInfoTable.setStatus('current') if mibBuilder.loadTexts: hpnicfRS485RawSessionErrInfoTable.setDescription('Error infomation table. It is fail to create a session, management station can get infomation from this table.') hpnicfRS485RawSessionErrInfoEntry = MibTableRow((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 2, 109, 2, 3, 1), ).setIndexNames((0, "IF-MIB", "ifIndex"), (0, "HPN-ICF-RS485-MIB", "hpnicfRS485SessionIndex")) if mibBuilder.loadTexts: hpnicfRS485RawSessionErrInfoEntry.setStatus('current') if mibBuilder.loadTexts: hpnicfRS485RawSessionErrInfoEntry.setDescription('Error infomaition.') hpnicfRS485RawSessionErrInfo = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 2, 109, 2, 3, 1, 1), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: hpnicfRS485RawSessionErrInfo.setStatus('current') if mibBuilder.loadTexts: hpnicfRS485RawSessionErrInfo.setDescription("Error infomation string. When a response with 'noCreeation' for row creation in table hpnicfRS485RawSessionTable, the management station should display this string to users, thus users can konw the reason.") mibBuilder.exportSymbols("HPN-ICF-RS485-MIB", hpnicfRS485RawSessionSummary=hpnicfRS485RawSessionSummary, hpnicfRS485RawSessionMaxNum=hpnicfRS485RawSessionMaxNum, hpnicfRS485SessionRemotePort=hpnicfRS485SessionRemotePort, hpnicfRS485SessionLocalPort=hpnicfRS485SessionLocalPort, hpnicfRS485TXErrCharacters=hpnicfRS485TXErrCharacters, hpnicfRS485StopBits=hpnicfRS485StopBits, hpnicfRS485PropertiesEntry=hpnicfRS485PropertiesEntry, hpnicfRS485SessionIndex=hpnicfRS485SessionIndex, hpnicfRS485RXCharacters=hpnicfRS485RXCharacters, hpnicfRS485SessionRemoteIP=hpnicfRS485SessionRemoteIP, hpnicfRS485RawSessionErrInfoTable=hpnicfRS485RawSessionErrInfoTable, hpnicfRS485RawSessionErrInfoEntry=hpnicfRS485RawSessionErrInfoEntry, hpnicfRS485Properties=hpnicfRS485Properties, hpnicfRS485FlowControl=hpnicfRS485FlowControl, hpnicfRS485SessionStatus=hpnicfRS485SessionStatus, hpnicfRS485SessionAddType=hpnicfRS485SessionAddType, hpnicfRS485=hpnicfRS485, hpnicfRS485Parity=hpnicfRS485Parity, hpnicfRS485RXErrCharacters=hpnicfRS485RXErrCharacters, hpnicfRS485RawSessionTable=hpnicfRS485RawSessionTable, hpnicfRS485RawSessionNextIndex=hpnicfRS485RawSessionNextIndex, hpnicfRS485RawSessionEntry=hpnicfRS485RawSessionEntry, hpnicfRS485RawSessionErrInfo=hpnicfRS485RawSessionErrInfo, hpnicfRS485DataBits=hpnicfRS485DataBits, PYSNMP_MODULE_ID=hpnicfRS485, hpnicfRS485ResetCharacters=hpnicfRS485ResetCharacters, hpnicfRS485BaudRate=hpnicfRS485BaudRate, hpnicfRS485RawSessions=hpnicfRS485RawSessions, hpnicfRS485PropertiesTable=hpnicfRS485PropertiesTable, hpnicfRS485TXCharacters=hpnicfRS485TXCharacters, hpnicfRS485SessionType=hpnicfRS485SessionType)
(integer, object_identifier, octet_string) = mibBuilder.importSymbols('ASN1', 'Integer', 'ObjectIdentifier', 'OctetString') (named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues') (constraints_intersection, constraints_union, single_value_constraint, value_size_constraint, value_range_constraint) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'ConstraintsIntersection', 'ConstraintsUnion', 'SingleValueConstraint', 'ValueSizeConstraint', 'ValueRangeConstraint') (hpnicf_common,) = mibBuilder.importSymbols('HPN-ICF-OID-MIB', 'hpnicfCommon') (if_index,) = mibBuilder.importSymbols('IF-MIB', 'ifIndex') (inet_address_type, inet_address) = mibBuilder.importSymbols('INET-ADDRESS-MIB', 'InetAddressType', 'InetAddress') (notification_group, module_compliance) = mibBuilder.importSymbols('SNMPv2-CONF', 'NotificationGroup', 'ModuleCompliance') (module_identity, unsigned32, integer32, ip_address, counter64, iso, time_ticks, gauge32, counter32, notification_type, mib_identifier, bits, object_identity, mib_scalar, mib_table, mib_table_row, mib_table_column) = mibBuilder.importSymbols('SNMPv2-SMI', 'ModuleIdentity', 'Unsigned32', 'Integer32', 'IpAddress', 'Counter64', 'iso', 'TimeTicks', 'Gauge32', 'Counter32', 'NotificationType', 'MibIdentifier', 'Bits', 'ObjectIdentity', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn') (textual_convention, row_status, display_string) = mibBuilder.importSymbols('SNMPv2-TC', 'TextualConvention', 'RowStatus', 'DisplayString') hpnicf_rs485 = module_identity((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 2, 109)) if mibBuilder.loadTexts: hpnicfRS485.setLastUpdated('200910210000Z') if mibBuilder.loadTexts: hpnicfRS485.setOrganization('') if mibBuilder.loadTexts: hpnicfRS485.setContactInfo('') if mibBuilder.loadTexts: hpnicfRS485.setDescription('The objects in this MIB module are used to manage RS485 interfaces, and manage sessions on them.') hpnicf_rs485_properties = mib_identifier((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 2, 109, 1)) hpnicf_rs485_properties_table = mib_table((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 2, 109, 1, 1)) if mibBuilder.loadTexts: hpnicfRS485PropertiesTable.setStatus('current') if mibBuilder.loadTexts: hpnicfRS485PropertiesTable.setDescription('Propertie table.') hpnicf_rs485_properties_entry = mib_table_row((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 2, 109, 1, 1, 1)).setIndexNames((0, 'IF-MIB', 'ifIndex')) if mibBuilder.loadTexts: hpnicfRS485PropertiesEntry.setStatus('current') if mibBuilder.loadTexts: hpnicfRS485PropertiesEntry.setDescription('Propertie entry.') hpnicf_rs485_raw_session_next_index = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 2, 109, 1, 1, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 64))).setMaxAccess('readonly') if mibBuilder.loadTexts: hpnicfRS485RawSessionNextIndex.setStatus('current') if mibBuilder.loadTexts: hpnicfRS485RawSessionNextIndex.setDescription('The next valid index of raw sessions, from 1 to 64, which session has been created. When there is no valid index left, it will return 0.') hpnicf_rs485_baud_rate = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 2, 109, 1, 1, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10))).clone(namedValues=named_values(('bautRate300', 1), ('bautRate600', 2), ('bautRate1200', 3), ('bautRate2400', 4), ('bautRate4800', 5), ('bautRate9600', 6), ('bautRate19200', 7), ('bautRate38400', 8), ('bautRate57600', 9), ('bautRate115200', 10))).clone('bautRate9600')).setMaxAccess('readwrite') if mibBuilder.loadTexts: hpnicfRS485BaudRate.setStatus('current') if mibBuilder.loadTexts: hpnicfRS485BaudRate.setDescription("The port's baud rate.") hpnicf_rs485_data_bits = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 2, 109, 1, 1, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4))).clone(namedValues=named_values(('five', 1), ('six', 2), ('seven', 3), ('eight', 4))).clone('eight')).setUnits('bit').setMaxAccess('readwrite') if mibBuilder.loadTexts: hpnicfRS485DataBits.setStatus('current') if mibBuilder.loadTexts: hpnicfRS485DataBits.setDescription("The port's number of data bits in a character.") hpnicf_rs485_parity = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 2, 109, 1, 1, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5))).clone(namedValues=named_values(('none', 1), ('odd', 2), ('even', 3), ('mark', 4), ('space', 5))).clone('none')).setMaxAccess('readwrite') if mibBuilder.loadTexts: hpnicfRS485Parity.setStatus('current') if mibBuilder.loadTexts: hpnicfRS485Parity.setDescription("The port's sense of a character parity bit.") hpnicf_rs485_stop_bits = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 2, 109, 1, 1, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('one', 1), ('two', 2), ('oneAndHalf', 3))).clone('one')).setUnits('bit').setMaxAccess('readwrite') if mibBuilder.loadTexts: hpnicfRS485StopBits.setStatus('current') if mibBuilder.loadTexts: hpnicfRS485StopBits.setDescription("The port's number of stop bits.") hpnicf_rs485_flow_control = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 2, 109, 1, 1, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('none', 1), ('hardware', 2), ('xonOrxoff', 3))).clone('none')).setMaxAccess('readwrite') if mibBuilder.loadTexts: hpnicfRS485FlowControl.setStatus('current') if mibBuilder.loadTexts: hpnicfRS485FlowControl.setDescription("The port's type of input flow control. 'none' indicates no flow control at this level. 'hardware' indicates use of hardware signals. 'xonOrxoff' indicates use of software function.") hpnicf_rs485_tx_characters = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 2, 109, 1, 1, 1, 7), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: hpnicfRS485TXCharacters.setStatus('current') if mibBuilder.loadTexts: hpnicfRS485TXCharacters.setDescription('The number of output characters for the port.') hpnicf_rs485_rx_characters = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 2, 109, 1, 1, 1, 8), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: hpnicfRS485RXCharacters.setStatus('current') if mibBuilder.loadTexts: hpnicfRS485RXCharacters.setDescription('The number of input characters for the port.') hpnicf_rs485_tx_err_characters = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 2, 109, 1, 1, 1, 9), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: hpnicfRS485TXErrCharacters.setStatus('current') if mibBuilder.loadTexts: hpnicfRS485TXErrCharacters.setDescription('The number of output error characters for the port.') hpnicf_rs485_rx_err_characters = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 2, 109, 1, 1, 1, 10), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: hpnicfRS485RXErrCharacters.setStatus('current') if mibBuilder.loadTexts: hpnicfRS485RXErrCharacters.setDescription('The number of input error characters for the port.') hpnicf_rs485_reset_characters = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 2, 109, 1, 1, 1, 11), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('counting', 1), ('clear', 2))).clone('counting')).setMaxAccess('readwrite') if mibBuilder.loadTexts: hpnicfRS485ResetCharacters.setStatus('current') if mibBuilder.loadTexts: hpnicfRS485ResetCharacters.setDescription('Reset the counters to zero, inlucding hpnicfRS485TXCharacters, hpnicfRS485RXCharacters, hpnicfRS485TXErrCharacters and hpnicfRS485RXErrCharacters.') hpnicf_rs485_raw_sessions = mib_identifier((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 2, 109, 2)) hpnicf_rs485_raw_session_summary = mib_identifier((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 2, 109, 2, 1)) hpnicf_rs485_raw_session_max_num = mib_scalar((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 2, 109, 2, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 64))).setMaxAccess('readonly') if mibBuilder.loadTexts: hpnicfRS485RawSessionMaxNum.setStatus('current') if mibBuilder.loadTexts: hpnicfRS485RawSessionMaxNum.setDescription('The max number of raw sessions what we can support.') hpnicf_rs485_raw_session_table = mib_table((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 2, 109, 2, 2)) if mibBuilder.loadTexts: hpnicfRS485RawSessionTable.setStatus('current') if mibBuilder.loadTexts: hpnicfRS485RawSessionTable.setDescription('RS485 raw session table. Data recieved from rs485 will be sent to the destination by raw sockets.') hpnicf_rs485_raw_session_entry = mib_table_row((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 2, 109, 2, 2, 1)).setIndexNames((0, 'IF-MIB', 'ifIndex'), (0, 'HPN-ICF-RS485-MIB', 'hpnicfRS485SessionIndex')) if mibBuilder.loadTexts: hpnicfRS485RawSessionEntry.setStatus('current') if mibBuilder.loadTexts: hpnicfRS485RawSessionEntry.setDescription('Parameters of a session, including remote IP address, remote port, local port, and so on.') hpnicf_rs485_session_index = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 2, 109, 2, 2, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 64))) if mibBuilder.loadTexts: hpnicfRS485SessionIndex.setStatus('current') if mibBuilder.loadTexts: hpnicfRS485SessionIndex.setDescription('Raw session index.') hpnicf_rs485_session_type = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 2, 109, 2, 2, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('udp', 1), ('tcpClient', 2), ('tcpServer', 3)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: hpnicfRS485SessionType.setStatus('current') if mibBuilder.loadTexts: hpnicfRS485SessionType.setDescription('The type of a session. A session can use UDP socket, TCP socket as a client, or TCP socket as a server.') hpnicf_rs485_session_add_type = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 2, 109, 2, 2, 1, 3), inet_address_type().clone('ipv4')).setMaxAccess('readwrite') if mibBuilder.loadTexts: hpnicfRS485SessionAddType.setStatus('current') if mibBuilder.loadTexts: hpnicfRS485SessionAddType.setDescription('This object indicates the transport type of the address contained in hpnicfRS485SessionRemoteIP object.') hpnicf_rs485_session_remote_ip = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 2, 109, 2, 2, 1, 4), inet_address()).setMaxAccess('readcreate') if mibBuilder.loadTexts: hpnicfRS485SessionRemoteIP.setStatus('current') if mibBuilder.loadTexts: hpnicfRS485SessionRemoteIP.setDescription("The IP of remote entry. When session type is 'udp', this is the IP of the peer. When session type is 'tcpClient', this is the IP of the server . When session type is 'tcpServer', this is invalid, it will return 0. ") hpnicf_rs485_session_remote_port = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 2, 109, 2, 2, 1, 5), integer32().subtype(subtypeSpec=value_range_constraint(1024, 65535))).setMaxAccess('readcreate') if mibBuilder.loadTexts: hpnicfRS485SessionRemotePort.setStatus('current') if mibBuilder.loadTexts: hpnicfRS485SessionRemotePort.setDescription("The port of remote entry. When session type is 'udp', this is port of the peer. When session type is 'tcpClient', this is the port of the server. When session type is 'tcpServer', this is invalid, it will return 0. ") hpnicf_rs485_session_local_port = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 2, 109, 2, 2, 1, 6), integer32().subtype(subtypeSpec=value_range_constraint(1024, 65535))).setMaxAccess('readcreate') if mibBuilder.loadTexts: hpnicfRS485SessionLocalPort.setStatus('current') if mibBuilder.loadTexts: hpnicfRS485SessionLocalPort.setDescription("Local socket port. When session type is 'udp', this is local UDP socket port. When session type is 'tcpClient', this is invalid, it will return 0. When session type is 'tcpServer', this is the local port which will be listened. ") hpnicf_rs485_session_status = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 2, 109, 2, 2, 1, 7), row_status()).setMaxAccess('readcreate') if mibBuilder.loadTexts: hpnicfRS485SessionStatus.setStatus('current') if mibBuilder.loadTexts: hpnicfRS485SessionStatus.setDescription('The status column used for creating, modifying, and deleting instances of the columnar objects in raw session table.') hpnicf_rs485_raw_session_err_info_table = mib_table((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 2, 109, 2, 3)) if mibBuilder.loadTexts: hpnicfRS485RawSessionErrInfoTable.setStatus('current') if mibBuilder.loadTexts: hpnicfRS485RawSessionErrInfoTable.setDescription('Error infomation table. It is fail to create a session, management station can get infomation from this table.') hpnicf_rs485_raw_session_err_info_entry = mib_table_row((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 2, 109, 2, 3, 1)).setIndexNames((0, 'IF-MIB', 'ifIndex'), (0, 'HPN-ICF-RS485-MIB', 'hpnicfRS485SessionIndex')) if mibBuilder.loadTexts: hpnicfRS485RawSessionErrInfoEntry.setStatus('current') if mibBuilder.loadTexts: hpnicfRS485RawSessionErrInfoEntry.setDescription('Error infomaition.') hpnicf_rs485_raw_session_err_info = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 2, 109, 2, 3, 1, 1), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: hpnicfRS485RawSessionErrInfo.setStatus('current') if mibBuilder.loadTexts: hpnicfRS485RawSessionErrInfo.setDescription("Error infomation string. When a response with 'noCreeation' for row creation in table hpnicfRS485RawSessionTable, the management station should display this string to users, thus users can konw the reason.") mibBuilder.exportSymbols('HPN-ICF-RS485-MIB', hpnicfRS485RawSessionSummary=hpnicfRS485RawSessionSummary, hpnicfRS485RawSessionMaxNum=hpnicfRS485RawSessionMaxNum, hpnicfRS485SessionRemotePort=hpnicfRS485SessionRemotePort, hpnicfRS485SessionLocalPort=hpnicfRS485SessionLocalPort, hpnicfRS485TXErrCharacters=hpnicfRS485TXErrCharacters, hpnicfRS485StopBits=hpnicfRS485StopBits, hpnicfRS485PropertiesEntry=hpnicfRS485PropertiesEntry, hpnicfRS485SessionIndex=hpnicfRS485SessionIndex, hpnicfRS485RXCharacters=hpnicfRS485RXCharacters, hpnicfRS485SessionRemoteIP=hpnicfRS485SessionRemoteIP, hpnicfRS485RawSessionErrInfoTable=hpnicfRS485RawSessionErrInfoTable, hpnicfRS485RawSessionErrInfoEntry=hpnicfRS485RawSessionErrInfoEntry, hpnicfRS485Properties=hpnicfRS485Properties, hpnicfRS485FlowControl=hpnicfRS485FlowControl, hpnicfRS485SessionStatus=hpnicfRS485SessionStatus, hpnicfRS485SessionAddType=hpnicfRS485SessionAddType, hpnicfRS485=hpnicfRS485, hpnicfRS485Parity=hpnicfRS485Parity, hpnicfRS485RXErrCharacters=hpnicfRS485RXErrCharacters, hpnicfRS485RawSessionTable=hpnicfRS485RawSessionTable, hpnicfRS485RawSessionNextIndex=hpnicfRS485RawSessionNextIndex, hpnicfRS485RawSessionEntry=hpnicfRS485RawSessionEntry, hpnicfRS485RawSessionErrInfo=hpnicfRS485RawSessionErrInfo, hpnicfRS485DataBits=hpnicfRS485DataBits, PYSNMP_MODULE_ID=hpnicfRS485, hpnicfRS485ResetCharacters=hpnicfRS485ResetCharacters, hpnicfRS485BaudRate=hpnicfRS485BaudRate, hpnicfRS485RawSessions=hpnicfRS485RawSessions, hpnicfRS485PropertiesTable=hpnicfRS485PropertiesTable, hpnicfRS485TXCharacters=hpnicfRS485TXCharacters, hpnicfRS485SessionType=hpnicfRS485SessionType)
# https://leetcode.com/problems/lru-cache/# class Node: def __init__(self, value): self.value = value self.next = None self.prev = None def __repr__(self): if not self: return "{}()".format(self.__class__.__name__) return "{}({})".format(self.__class__.__name__, self.value) class LinkedList: def __init__(self, iterable=None): self.sentinel = Node(None) # at the top next left self.sentinel.next = self.sentinel # at the top previous right self.sentinel.prev = self.sentinel self.__len = 0 if iterable is not None: self += iterable def get_node(self, index): node = self.sentinel i = 0 while i <= index: node = node.next if node == self.sentinel: break i += 1 if node == self.sentinel: node = None return node def __getitem__(self, index): node = self.get_node(index) return node.value def __len__(self): return self.__len def __setitem__(self, index, value): node = self.get_node(index) node.value = value def __delitem__(self, index): node = self.get_node(index) self.del_node(node) def del_node(self, node): if node: node.prev.next = node.next if node.next: node.next.prev = node.prev node.prev = None node.next = None node.value = None self.__len -= 1 def __repr__(self): return str(self.to_list()) def to_list(self): elts = [] curr = self.sentinel.next while curr != self.sentinel: elts.append(curr.value) curr = curr.next return elts def append(self, value): node = Node(value) self.insert_between(node, self.sentinel.prev, self.sentinel) def appendleft(self, value): node = Node(value) self.insert_between(node, self.sentinel, self.sentinel.next) return node def insert(self, index, value): new_node = Node(value) len_ = len(self) if len_ == 0: self.insert_between(new_node, self.sentinel, self.sentinel) elif index >= 0 and index < len_: node = self.get_node(index) self.insert_between(new_node, node.prev, node) elif index == len_: self.insert_between(new_node, self.sentinel.prev, self.sentinel) else: raise IndexError self.__len += 1 def insert_between(self, node, left_node, right_node): if node and left_node and right_node: node.prev = left_node node.next = right_node left_node.next = node right_node.prev = node else: raise IndexError def merge_left(self, other): self.sentinel.next.prev = other.sentinel.prev other.sentinel.prev.next = self.sentinel.next self.sentinel.next = other.sentinel.next self.sentinel.next.prev = self.sentinel def merge_right(self, other): self.sentinel.prev.next = other.sentinel.next other.sentinel.next.prev = self.sentinel.prev self.sentinel.prev = other.sentinel.prev self.sentinel.prev.next = self.sentinel def pop_node(self): value = self.sentinel.prev.value self.del_node(self.sentinel.prev) return value class LRUCache: def __init__(self, capacity: int): self.access = {} self.data = LinkedList() self.capacity = capacity def get(self, key: int) -> int: if key in self.access: node = self.access[key] value_pair = node.value self.data.del_node(node) self.access[key] = self.data.appendleft(value_pair) return value_pair[1] else: return -1 def put(self, key: int, value: int) -> None: if not key in self.access and len(self.access) == self.capacity: remove_node_value = self.data.pop_node() del self.access[remove_node_value[0]] if key in self.access: node = self.access[key] self.data.del_node(node) self.access[key] = self.data.appendleft((key, value)) # lRUCache = LRUCache(2) # lRUCache.put(1, 1) # cache is {1=1} # lRUCache.put(2, 2) # cache is {1=1, 2=2} # # lRUCache.put(3, 3) # cache is {1=1, 2=2} # # lRUCache.put(4, 4) # cache is {1=1, 2=2} # print(lRUCache.get(1)) # return 1 # lRUCache.put(3, 3) # LRU key was 2, evicts key 2, cache is {1=1, 3=3} # print(lRUCache.get(2)) # returns -1 (not found) # lRUCache.put(4, 4) # LRU key was 1, evicts key 1, cache is {4=4, 3=3} # print(lRUCache.get(1)) # return -1 (not found) # print(lRUCache.get(3)) # return 3 # print(lRUCache.get(4)) # return 4 # # # ["LRUCache","put","put","get","put","get","get"] # [[2],[2,1],[1,1],[2],[4,1],[1],[2]] # lRUCache = LRUCache(2) # lRUCache.put(2,1) # lRUCache.put(1,1) # print(lRUCache.get(2)) # lRUCache.put(4,1) # print(lRUCache.get(1)) # print(lRUCache.get(2))
class Node: def __init__(self, value): self.value = value self.next = None self.prev = None def __repr__(self): if not self: return '{}()'.format(self.__class__.__name__) return '{}({})'.format(self.__class__.__name__, self.value) class Linkedlist: def __init__(self, iterable=None): self.sentinel = node(None) self.sentinel.next = self.sentinel self.sentinel.prev = self.sentinel self.__len = 0 if iterable is not None: self += iterable def get_node(self, index): node = self.sentinel i = 0 while i <= index: node = node.next if node == self.sentinel: break i += 1 if node == self.sentinel: node = None return node def __getitem__(self, index): node = self.get_node(index) return node.value def __len__(self): return self.__len def __setitem__(self, index, value): node = self.get_node(index) node.value = value def __delitem__(self, index): node = self.get_node(index) self.del_node(node) def del_node(self, node): if node: node.prev.next = node.next if node.next: node.next.prev = node.prev node.prev = None node.next = None node.value = None self.__len -= 1 def __repr__(self): return str(self.to_list()) def to_list(self): elts = [] curr = self.sentinel.next while curr != self.sentinel: elts.append(curr.value) curr = curr.next return elts def append(self, value): node = node(value) self.insert_between(node, self.sentinel.prev, self.sentinel) def appendleft(self, value): node = node(value) self.insert_between(node, self.sentinel, self.sentinel.next) return node def insert(self, index, value): new_node = node(value) len_ = len(self) if len_ == 0: self.insert_between(new_node, self.sentinel, self.sentinel) elif index >= 0 and index < len_: node = self.get_node(index) self.insert_between(new_node, node.prev, node) elif index == len_: self.insert_between(new_node, self.sentinel.prev, self.sentinel) else: raise IndexError self.__len += 1 def insert_between(self, node, left_node, right_node): if node and left_node and right_node: node.prev = left_node node.next = right_node left_node.next = node right_node.prev = node else: raise IndexError def merge_left(self, other): self.sentinel.next.prev = other.sentinel.prev other.sentinel.prev.next = self.sentinel.next self.sentinel.next = other.sentinel.next self.sentinel.next.prev = self.sentinel def merge_right(self, other): self.sentinel.prev.next = other.sentinel.next other.sentinel.next.prev = self.sentinel.prev self.sentinel.prev = other.sentinel.prev self.sentinel.prev.next = self.sentinel def pop_node(self): value = self.sentinel.prev.value self.del_node(self.sentinel.prev) return value class Lrucache: def __init__(self, capacity: int): self.access = {} self.data = linked_list() self.capacity = capacity def get(self, key: int) -> int: if key in self.access: node = self.access[key] value_pair = node.value self.data.del_node(node) self.access[key] = self.data.appendleft(value_pair) return value_pair[1] else: return -1 def put(self, key: int, value: int) -> None: if not key in self.access and len(self.access) == self.capacity: remove_node_value = self.data.pop_node() del self.access[remove_node_value[0]] if key in self.access: node = self.access[key] self.data.del_node(node) self.access[key] = self.data.appendleft((key, value))
information = { "site_title": "News Room", "site_short_name" : "News Room", "site_name" : "News Room", "site_motto" : "Get news anywhere", "site_url" : "https://github.com/arsho", "site_phone" : "+8801731246426", "site_email" : "shovon.sylhet@gmail.com", "site_year" : "2017", "site_admin_name" : "Admin", "site_admin_location": "Dhaka", "developer_company" : "", "developer_name" : "Ahmedur Rahman Shovon", "developer_url" : "https://github.com/arsho", "developer_phone" : "+8801731246426", "developer_email" : "shovon.sylhet@gmail.com", "page_header": "", "page_description": "" }
information = {'site_title': 'News Room', 'site_short_name': 'News Room', 'site_name': 'News Room', 'site_motto': 'Get news anywhere', 'site_url': 'https://github.com/arsho', 'site_phone': '+8801731246426', 'site_email': 'shovon.sylhet@gmail.com', 'site_year': '2017', 'site_admin_name': 'Admin', 'site_admin_location': 'Dhaka', 'developer_company': '', 'developer_name': 'Ahmedur Rahman Shovon', 'developer_url': 'https://github.com/arsho', 'developer_phone': '+8801731246426', 'developer_email': 'shovon.sylhet@gmail.com', 'page_header': '', 'page_description': ''}
# coding=utf-8 """ Base network servers - TODO: Describe Modules ======= .. currentmodule:: ultros.core.networks.base.servers .. autosummary:: :toctree: servers server """ __author__ = "Gareth Coles"
""" Base network servers - TODO: Describe Modules ======= .. currentmodule:: ultros.core.networks.base.servers .. autosummary:: :toctree: servers server """ __author__ = 'Gareth Coles'
def designer_mat1(val, sep, txt): c = sep t = txt for i in range(m // n): print((c * i).rjust(n + 2, "-") + c + (c * i).ljust(n + 2, "-")) print("".rjust(n, "-") + t + "".ljust(n, "-")) for i in range(m // n - 1, -1, -1): print((c * i).rjust(n + 2, "-") + c + (c * i).ljust(n + 2, "-")) def designer_mat2(val, sep, txt): c = sep t = txt N, M = map(int, val.split()) for i in range(1, N, 2): print((c * i).center(M, '-')) print(t.center(M, '-')) for i in range(N - 2, -1, -2): print((c * i).center(M, '-')) n = 9 m = 21 c = ".|." t = "WELCOME" designer_mat1(f"{n} {m}", c, t) designer_mat2(f"{n} {m}", c, t)
def designer_mat1(val, sep, txt): c = sep t = txt for i in range(m // n): print((c * i).rjust(n + 2, '-') + c + (c * i).ljust(n + 2, '-')) print(''.rjust(n, '-') + t + ''.ljust(n, '-')) for i in range(m // n - 1, -1, -1): print((c * i).rjust(n + 2, '-') + c + (c * i).ljust(n + 2, '-')) def designer_mat2(val, sep, txt): c = sep t = txt (n, m) = map(int, val.split()) for i in range(1, N, 2): print((c * i).center(M, '-')) print(t.center(M, '-')) for i in range(N - 2, -1, -2): print((c * i).center(M, '-')) n = 9 m = 21 c = '.|.' t = 'WELCOME' designer_mat1(f'{n} {m}', c, t) designer_mat2(f'{n} {m}', c, t)
#! /usr/bin/python # -*- coding iso-8859-15 # Entero INT / LONG a="cadena1" b="cadena2" c=a+b print (a) print (b) print (c)
a = 'cadena1' b = 'cadena2' c = a + b print(a) print(b) print(c)
class Motion(): def __init__(self, serial, map): self.serial = serial self.map = map def move_rel(self): """ Move to a new location relative to robot, returns new relative position and error :return: """ pass def move(self): """ Sends command to move forward at a speed. :return: """ pass def turn(self): """ Turns at a speed in a direction. :return: """ pass def waypoint_add_global(self): """ Adds absolute locations according to the map. :return: """ pass def waypoint_add_rel(self): """ Adds relative waypoint, which means it'll have a noisy space on the global map :return: """ pass def reckon(self): """ Figures out the location of the robot in map. :return: """
class Motion: def __init__(self, serial, map): self.serial = serial self.map = map def move_rel(self): """ Move to a new location relative to robot, returns new relative position and error :return: """ pass def move(self): """ Sends command to move forward at a speed. :return: """ pass def turn(self): """ Turns at a speed in a direction. :return: """ pass def waypoint_add_global(self): """ Adds absolute locations according to the map. :return: """ pass def waypoint_add_rel(self): """ Adds relative waypoint, which means it'll have a noisy space on the global map :return: """ pass def reckon(self): """ Figures out the location of the robot in map. :return: """
''' Implement a stack class with a max API Notes: * * what went right * remembered pattern of storing max values in a separate stack * bugs * forgot to check for size of max stack before checking top element ''' class Stack(object): def __init__(self): self.arr = [] self.max_arr = [] def push(self, el): self.arr.append(el) if len(self.max_arr) == 0 or self.max_arr[-1] <= el: self.max_arr.append(el) def pop(self): ret = self.arr.pop() if len(self.max_arr) > 0 and self.max_arr[-1] == ret: self.max_arr.pop() return ret def max(self): return self.max_arr[-1] if __name__ == '__main__': test_cases = [ [1,2,10,5,4,11], [1,2,12,5,4,11], [1,11,10,2,11], [1] ] for i, t in enumerate(test_cases): s = Stack() print('Test case', i) for el in t: s.push(el) print(el, s.max_arr, s.max())
""" Implement a stack class with a max API Notes: * * what went right * remembered pattern of storing max values in a separate stack * bugs * forgot to check for size of max stack before checking top element """ class Stack(object): def __init__(self): self.arr = [] self.max_arr = [] def push(self, el): self.arr.append(el) if len(self.max_arr) == 0 or self.max_arr[-1] <= el: self.max_arr.append(el) def pop(self): ret = self.arr.pop() if len(self.max_arr) > 0 and self.max_arr[-1] == ret: self.max_arr.pop() return ret def max(self): return self.max_arr[-1] if __name__ == '__main__': test_cases = [[1, 2, 10, 5, 4, 11], [1, 2, 12, 5, 4, 11], [1, 11, 10, 2, 11], [1]] for (i, t) in enumerate(test_cases): s = stack() print('Test case', i) for el in t: s.push(el) print(el, s.max_arr, s.max())
"""The min_max component.""" DOMAIN = "min_max" PLATFORMS = ["sensor"]
"""The min_max component.""" domain = 'min_max' platforms = ['sensor']
def sample_list(lst, iter_): return [[lst[i] for i in it] for it in iter_] # Return a list of all pairs of elements in a list, excluding flips. def iter_g_2D(n): assert n >= 2 for i in range(n): for j in range(i + 1, n): yield i, j def iter_gg_3D(n): assert n >= 3 for i in range(n): for j in range(i + 1, n): for k in range(j + 1, n): yield i, j, k def iter_gn_3D(n): assert n >= 3 for i in range(n): for j in range(i + 1, n): for k in range(n): if (k != i) and (k != j): yield i, j, k def iter_ggn_4D(n): assert n >= 4 for i in range(n): for j in range(i + 1, n): for k in range(j + 1, n): for l in range(n): if (l != i) and (l != j) and (l != k): yield i, j, k, l
def sample_list(lst, iter_): return [[lst[i] for i in it] for it in iter_] def iter_g_2_d(n): assert n >= 2 for i in range(n): for j in range(i + 1, n): yield (i, j) def iter_gg_3_d(n): assert n >= 3 for i in range(n): for j in range(i + 1, n): for k in range(j + 1, n): yield (i, j, k) def iter_gn_3_d(n): assert n >= 3 for i in range(n): for j in range(i + 1, n): for k in range(n): if k != i and k != j: yield (i, j, k) def iter_ggn_4_d(n): assert n >= 4 for i in range(n): for j in range(i + 1, n): for k in range(j + 1, n): for l in range(n): if l != i and l != j and (l != k): yield (i, j, k, l)
def is_numeric(line: str) -> bool: try: float(line) except: return False else: return True
def is_numeric(line: str) -> bool: try: float(line) except: return False else: return True
#!/usr/bin/env python3 def GenerateEOLTable(): table = [0] * 16 table[ord('\n')] = 1 table[ord('\r')] = 2 line = ', '.join(str(c) for c in table) line = line + ', // %02X - %02X' % (0, 15) print('EOLTable:', line) if __name__ == '__main__': GenerateEOLTable()
def generate_eol_table(): table = [0] * 16 table[ord('\n')] = 1 table[ord('\r')] = 2 line = ', '.join((str(c) for c in table)) line = line + ', // %02X - %02X' % (0, 15) print('EOLTable:', line) if __name__ == '__main__': generate_eol_table()
def for_I(): for row in range(7): for col in range(5): if (col==2) or (row==0 or row==6): print("*",end=" ") else: print(end=" ") print() def while_I(): i=0 while i<7: j=0 while j<5: if (j==2) or (i==0 or i==6): print("*",end=" ") else: print(end=" ") j+=1 i+=1 print()
def for_i(): for row in range(7): for col in range(5): if col == 2 or (row == 0 or row == 6): print('*', end=' ') else: print(end=' ') print() def while_i(): i = 0 while i < 7: j = 0 while j < 5: if j == 2 or (i == 0 or i == 6): print('*', end=' ') else: print(end=' ') j += 1 i += 1 print()
#!/usr/bin/python # -*- coding: utf-8 -*- #this is a comment print('Hello World!') #English
print('Hello World!')