content
stringlengths
7
1.05M
fixed_cases
stringlengths
1
1.28M
palavras = ('arvore', 'casa', 'carro', 'parada', 'hospital', 'imobiliaria', 'faca', 'comida') for palavra in palavras: print(f'\nNa palavra {palavra.upper()} temos vogais ', end='') for letra in palavra: if letra in 'aeiouAEIOU': print(letra,end='')
palavras = ('arvore', 'casa', 'carro', 'parada', 'hospital', 'imobiliaria', 'faca', 'comida') for palavra in palavras: print(f'\nNa palavra {palavra.upper()} temos vogais ', end='') for letra in palavra: if letra in 'aeiouAEIOU': print(letra, end='')
file = open("abc.txt", "w") #file.read() #print(a) #file.readline() #print(b) for line in file: print(line,end="")
file = open('abc.txt', 'w') for line in file: print(line, end='')
class Node: def __init__(self, value, next=None): self.value = value self.next = next def desc_make(): head = Node(0) this = head for i in range(1, 10): this = Node(i, this) return this def asc_make(): head = Node(0) this = head for i in range(1, 10): next = Node(i) this.next = next this = next return head def trav(this): while True: if this is None: break print(this.value) this = this.next def make_circle(this): that = this for i in range(10): that = that.next if i == 5: break while True: if this.next is None: break this = this.next this.next = that def check_circle(this): fast = slow = this while fast is not None and fast.next is not None: slow = slow.next fast = fast.next.next if slow is fast: # slow.next = None return True return False def get_circle(this): fast = slow = this while fast is not None and fast.next is not None: slow = slow.next fast = fast.next.next if slow is fast: break slow = this while slow is not fast: fast = fast.next slow = slow.next return slow def find_last_k(this, k=5): fast = slow = this for _ in range(5): fast = fast.next while fast is not None: fast = fast.next slow = slow.next return slow.value def binary_search(arr, value): n = len(arr) low = 0 high = n - 1 while low <= high: mid = (low + high) // 2 if arr[mid] == value: return mid elif arr[mid] > value: high = mid - 1 else: low = mid + 1 def twoSum(arr, value): low = 0 high = len(arr) - 1 while low < high: r = value - arr[low] if arr[high] == r: return low + 1, high + 1 elif arr[high] > r: high -= 1 else: low += 1 def reverse_list(arr): low = 0 high = len(arr) - 1 while low < high: arr[low], arr[high] = arr[high], arr[low] low += 1 high -= 1 return arr c = [2, 7, 11, 15, 18] k = twoSum(c, 34) print(k) # c = range(11,100) # cc = reverse_list(list(c)) # print(cc) # idx = binary_search(list(c),99) # print(idx) # # a = asc_make() # print(check_circle(a)) # # make_circle(a) # print() # # check_circle(a) # # trav(a) # # c = get_circle(this=a) # v = find_last_k(a) # print(v)
class Node: def __init__(self, value, next=None): self.value = value self.next = next def desc_make(): head = node(0) this = head for i in range(1, 10): this = node(i, this) return this def asc_make(): head = node(0) this = head for i in range(1, 10): next = node(i) this.next = next this = next return head def trav(this): while True: if this is None: break print(this.value) this = this.next def make_circle(this): that = this for i in range(10): that = that.next if i == 5: break while True: if this.next is None: break this = this.next this.next = that def check_circle(this): fast = slow = this while fast is not None and fast.next is not None: slow = slow.next fast = fast.next.next if slow is fast: return True return False def get_circle(this): fast = slow = this while fast is not None and fast.next is not None: slow = slow.next fast = fast.next.next if slow is fast: break slow = this while slow is not fast: fast = fast.next slow = slow.next return slow def find_last_k(this, k=5): fast = slow = this for _ in range(5): fast = fast.next while fast is not None: fast = fast.next slow = slow.next return slow.value def binary_search(arr, value): n = len(arr) low = 0 high = n - 1 while low <= high: mid = (low + high) // 2 if arr[mid] == value: return mid elif arr[mid] > value: high = mid - 1 else: low = mid + 1 def two_sum(arr, value): low = 0 high = len(arr) - 1 while low < high: r = value - arr[low] if arr[high] == r: return (low + 1, high + 1) elif arr[high] > r: high -= 1 else: low += 1 def reverse_list(arr): low = 0 high = len(arr) - 1 while low < high: (arr[low], arr[high]) = (arr[high], arr[low]) low += 1 high -= 1 return arr c = [2, 7, 11, 15, 18] k = two_sum(c, 34) print(k)
def parse_geneinfo_taxid(fileh): for line in fileh: if line.startswith("#"): # skip header continue taxid = line.split("\t")[0] yield {"_id" : taxid}
def parse_geneinfo_taxid(fileh): for line in fileh: if line.startswith('#'): continue taxid = line.split('\t')[0] yield {'_id': taxid}
class Solution: def validPalindrome(self, s: str) -> bool: def check_palin(string): return string == string[::-1] start = 0 end = len(s) - 1 while start < end: if s[start] == s[end]: start += 1 end -= 1 else: return check_palin(s[start + 1: end + 1]) or check_palin(s[start: end]) return True
class Solution: def valid_palindrome(self, s: str) -> bool: def check_palin(string): return string == string[::-1] start = 0 end = len(s) - 1 while start < end: if s[start] == s[end]: start += 1 end -= 1 else: return check_palin(s[start + 1:end + 1]) or check_palin(s[start:end]) return True
class TrieNode: def __init__(self): self.children = {} self.is_word = False self.word = None class Trie: def __init__(self): self.root = TrieNode() def add(self, word): node = self.root for ch in word: if ch not in node.children: node.children[ch] = TrieNode() node = node.children[ch] node.is_word = True node.word = word def find(self, word): node = self.root for ch in node.children: node = node.children.get(ch) if node is None: return None return node def searchWord(self, word): node = self.find(word) return node is not None and node.is_word def searchPrefix(self, prefix): node = self.find(prefix) return node is not None class Solution: """ @param board: A list of lists of character @param words: A list of string @return: A list of string """ dx = [0, 0, 1, -1] dy = [1, -1, 0, 0] def wordSearchII(self, board, words): # write your code here if not board or not words or len(board) == 0 or len(words) == 0: return [] trie = Trie() for word in words: trie.add(word) results = set() for i in range(len(board)): for j in range(len(board[0])): ch = board[i][j] self.dfs(board, trie.root.children.get(ch), i, j, set([(i, j)]), results, ch) results = list(results) return results def dfs(self, board, node, i, j, visited, results, current): if node is None: return if node.is_word: results.add(node.word) for k in range(4): x, y = i + self.dx[k], j + self.dy[k] if self._isValid(x, y, board, visited): ch = board[x][y] visited.add((x, y)) self.dfs(board, node.children.get(ch), x, y, visited, results, current + ch) visited.remove((x, y)) def _isValid(self, x, y, board, visited): return 0 <= x < len(board) and 0 <= y < len(board[0]) and (x, y) not in visited
class Trienode: def __init__(self): self.children = {} self.is_word = False self.word = None class Trie: def __init__(self): self.root = trie_node() def add(self, word): node = self.root for ch in word: if ch not in node.children: node.children[ch] = trie_node() node = node.children[ch] node.is_word = True node.word = word def find(self, word): node = self.root for ch in node.children: node = node.children.get(ch) if node is None: return None return node def search_word(self, word): node = self.find(word) return node is not None and node.is_word def search_prefix(self, prefix): node = self.find(prefix) return node is not None class Solution: """ @param board: A list of lists of character @param words: A list of string @return: A list of string """ dx = [0, 0, 1, -1] dy = [1, -1, 0, 0] def word_search_ii(self, board, words): if not board or not words or len(board) == 0 or (len(words) == 0): return [] trie = trie() for word in words: trie.add(word) results = set() for i in range(len(board)): for j in range(len(board[0])): ch = board[i][j] self.dfs(board, trie.root.children.get(ch), i, j, set([(i, j)]), results, ch) results = list(results) return results def dfs(self, board, node, i, j, visited, results, current): if node is None: return if node.is_word: results.add(node.word) for k in range(4): (x, y) = (i + self.dx[k], j + self.dy[k]) if self._isValid(x, y, board, visited): ch = board[x][y] visited.add((x, y)) self.dfs(board, node.children.get(ch), x, y, visited, results, current + ch) visited.remove((x, y)) def _is_valid(self, x, y, board, visited): return 0 <= x < len(board) and 0 <= y < len(board[0]) and ((x, y) not in visited)
def foo(): print("foo") def moduleb_fn(): print("import_moduleb.moduleb_fn()") class moduleb_class(object): def __init__(self): pass def msg(self,val): return "moduleb_class:"+str(val)
def foo(): print('foo') def moduleb_fn(): print('import_moduleb.moduleb_fn()') class Moduleb_Class(object): def __init__(self): pass def msg(self, val): return 'moduleb_class:' + str(val)
test = { 'name': 'Problem 2', 'points': 3, 'suites': [ { 'cases': [ { 'answer': 'A single tile that an Ant can be placed on and that connects to other Places', 'choices': [ r""" A single tile that an Ant can be placed on and that connects to other Places """, 'The entire space where the game takes place', 'The tunnel that bees travel through', 'Where the bees start out in the game' ], 'hidden': False, 'locked': False, 'question': 'What does a Place represent in the game?' }, { 'answer': 'When p is initialized', 'choices': [ 'When q.entrance is initialized', 'When q.exit is initialized', 'When p is initialized', 'Never, it is always set to None' ], 'hidden': False, 'locked': False, 'question': 'If p is a place whose entrance is q, when is p.entrance initialized?' } ], 'scored': True, 'type': 'concept' }, { 'cases': [ { 'code': r""" >>> # Simple test for Place >>> place0 = Place('place_0') >>> print(place0.exit) None >>> print(place0.entrance) None >>> place1 = Place('place_1', place0) >>> place1.exit is place0 True >>> place0.entrance is place1 True """, 'hidden': False, 'locked': False }, { 'code': r""" >>> # Testing if entrances are properly initialized >>> tunnel_len = 9 >>> for entrance in colony.bee_entrances: ... num_places = 0 ... place = entrance ... while place is not colony.queen: ... num_places += 1 ... assert place.entrance is not None,\ ... '{0} has no entrance'.format(place.name) ... place = place.exit ... assert num_places == tunnel_len,\ ... 'Found {0} places in tunnel instead of {1}'.format(num_places,tunnel_len) """, 'hidden': False, 'locked': False }, { 'code': r""" >>> # Testing if exits and entrances are different >>> for place in colony.places.values(): ... assert place is not place.exit,\ ... "{0}'s exit leads to itself".format(place.name) ... assert place is not place.entrance,\ ... "{0}'s entrance leads to itself".format(place.name) ... if place.exit and place.entrance: ... assert place.exit is not place.entrance,\ ... "{0}'s entrance and exit are the same".format(place.name) """, 'hidden': False, 'locked': False } ], 'scored': True, 'setup': r""" >>> from ants import * >>> # >>> # Create a test layout where the colony is a single row with 9 tiles >>> hive, layout = Hive(make_test_assault_plan()), dry_layout >>> dimensions = (1, 9) >>> colony = AntColony(None, hive, ant_types(), layout, dimensions) >>> # """, 'teardown': '', 'type': 'doctest' } ] }
test = {'name': 'Problem 2', 'points': 3, 'suites': [{'cases': [{'answer': 'A single tile that an Ant can be placed on and that connects to other Places', 'choices': ['\n A single tile that an Ant can be placed on and that connects to\n other Places\n ', 'The entire space where the game takes place', 'The tunnel that bees travel through', 'Where the bees start out in the game'], 'hidden': False, 'locked': False, 'question': 'What does a Place represent in the game?'}, {'answer': 'When p is initialized', 'choices': ['When q.entrance is initialized', 'When q.exit is initialized', 'When p is initialized', 'Never, it is always set to None'], 'hidden': False, 'locked': False, 'question': 'If p is a place whose entrance is q, when is p.entrance initialized?'}], 'scored': True, 'type': 'concept'}, {'cases': [{'code': "\n >>> # Simple test for Place\n >>> place0 = Place('place_0')\n >>> print(place0.exit)\n None\n >>> print(place0.entrance)\n None\n >>> place1 = Place('place_1', place0)\n >>> place1.exit is place0\n True\n >>> place0.entrance is place1\n True\n ", 'hidden': False, 'locked': False}, {'code': "\n >>> # Testing if entrances are properly initialized\n >>> tunnel_len = 9\n >>> for entrance in colony.bee_entrances:\n ... num_places = 0\n ... place = entrance\n ... while place is not colony.queen:\n ... num_places += 1\n ... assert place.entrance is not None,\\\n ... '{0} has no entrance'.format(place.name)\n ... place = place.exit\n ... assert num_places == tunnel_len,\\\n ... 'Found {0} places in tunnel instead of {1}'.format(num_places,tunnel_len)\n ", 'hidden': False, 'locked': False}, {'code': '\n >>> # Testing if exits and entrances are different\n >>> for place in colony.places.values():\n ... assert place is not place.exit,\\\n ... "{0}\'s exit leads to itself".format(place.name)\n ... assert place is not place.entrance,\\\n ... "{0}\'s entrance leads to itself".format(place.name)\n ... if place.exit and place.entrance:\n ... assert place.exit is not place.entrance,\\\n ... "{0}\'s entrance and exit are the same".format(place.name)\n ', 'hidden': False, 'locked': False}], 'scored': True, 'setup': '\n >>> from ants import *\n >>> #\n >>> # Create a test layout where the colony is a single row with 9 tiles\n >>> hive, layout = Hive(make_test_assault_plan()), dry_layout\n >>> dimensions = (1, 9)\n >>> colony = AntColony(None, hive, ant_types(), layout, dimensions)\n >>> #\n ', 'teardown': '', 'type': 'doctest'}]}
marks=int(input("Enter marks -> ")) if marks>=90: print("O") elif marks>=80: print("A") elif marks>=70: print("B") elif marks>=60: print("C") elif marks>=50: print("D") elif marks>=40: print("E") else: print("F")
marks = int(input('Enter marks -> ')) if marks >= 90: print('O') elif marks >= 80: print('A') elif marks >= 70: print('B') elif marks >= 60: print('C') elif marks >= 50: print('D') elif marks >= 40: print('E') else: print('F')
'''def old_macdonal(name): if(len(name)>3): return name[:3].capitalize()+name[3:].capitalize() else: return 'Name is too short' print(old_macdonal('macdonal')) def old_macdonald(name): letters = list(name) for index in range(len(name)): if index == 0: letters[index] = letters[index].upper() elif index == 3: letters[index] = letters[index].upper() return " ".join(letters) print(old_macdonal('hellothere')) def old_macdonald(name): mylist = list(name) mylist[0] = mylist[0].upper() mylist[3] = mylist[3].upper() return ''.join(mylist) print(old_macdonal('hellothere'))''' #easy method def cap_letter(name): first_letter = name[0] inbetween =name[1:3] fourth_letter=name[3] rest=name[4:] return first_letter.upper() + inbetween + fourth_letter.upper() + rest print(cap_letter('hellothere'))
"""def old_macdonal(name): if(len(name)>3): return name[:3].capitalize()+name[3:].capitalize() else: return 'Name is too short' print(old_macdonal('macdonal')) def old_macdonald(name): letters = list(name) for index in range(len(name)): if index == 0: letters[index] = letters[index].upper() elif index == 3: letters[index] = letters[index].upper() return " ".join(letters) print(old_macdonal('hellothere')) def old_macdonald(name): mylist = list(name) mylist[0] = mylist[0].upper() mylist[3] = mylist[3].upper() return ''.join(mylist) print(old_macdonal('hellothere'))""" def cap_letter(name): first_letter = name[0] inbetween = name[1:3] fourth_letter = name[3] rest = name[4:] return first_letter.upper() + inbetween + fourth_letter.upper() + rest print(cap_letter('hellothere'))
def convert_deciliter_to(capacity_to: str, amout: float): if capacity_to == 'litro(s)': value = amout / 10 if capacity_to == 'quilolitro(s)': value = amout / 10000 if capacity_to == 'hectolitro(s)': value = amout / 1000 if capacity_to == 'decalitro(s)': value = amout / 100 if capacity_to == 'decilitro(s)': value = amout if capacity_to == 'centilitro(s)': value = amout * 10 if capacity_to == 'mililitro(s)': value = amout * 100 return value
def convert_deciliter_to(capacity_to: str, amout: float): if capacity_to == 'litro(s)': value = amout / 10 if capacity_to == 'quilolitro(s)': value = amout / 10000 if capacity_to == 'hectolitro(s)': value = amout / 1000 if capacity_to == 'decalitro(s)': value = amout / 100 if capacity_to == 'decilitro(s)': value = amout if capacity_to == 'centilitro(s)': value = amout * 10 if capacity_to == 'mililitro(s)': value = amout * 100 return value
# SWEA 2063 n = int(input()) arr = list(map(int, input().split())) arr.sort() print(arr[len(arr) // 2])
n = int(input()) arr = list(map(int, input().split())) arr.sort() print(arr[len(arr) // 2])
UTILS = [ "//utils/osgiwrap:osgi-jar", "//utils/osgi:onlab-osgi", "//utils/junit:onlab-junit", "//utils/misc:onlab-misc", "//utils/rest:onlab-rest", ] API = [ "//core/api:onos-api", ] CORE = UTILS + API + [ "//core/net:onos-core-net", "//core/common:onos-core-common", "//core/store/primitives:onos-core-primitives", "//core/store/serializers:onos-core-serializers", "//core/store/dist:onos-core-dist", "//core/store/persistence:onos-core-persistence", "//cli:onos-cli", "//drivers/utilities:onos-drivers-utilities", "//providers/general/device:onos-providers-general-device", "//web/api:onos-rest", ] FEATURES = [ "//tools/package/features:onos-thirdparty-base", "//tools/package/features:onos-thirdparty-web", "//tools/package/features:onos-api", "//tools/package/features:onos-core", "//tools/package/features:onos-cli", "//tools/package/features:onos-rest", # "//tools/package/features:onos-security", ] # # ONOS Profile Maps # # To include a JAR or app in a specific profile, add the profile name # to the list in the maps below. If multiple profiles are listed, # then it will be included in each profile. Every item included in the # map will be included in the default profile (build with no profile # specified). # # # ONOS Protocols and Providers # PROTOCOL_MAP = { "//protocols/bgp/bgpio:onos-protocols-bgp-bgpio": [], "//protocols/bgp/api:onos-protocols-bgp-api": [], "//protocols/bgp/ctl:onos-protocols-bgp-ctl": [], "//protocols/isis/api:onos-protocols-isis-api": [], "//protocols/isis/ctl:onos-protocols-isis-ctl": [], "//protocols/isis/isisio:onos-protocols-isis-isisio": [], "//protocols/lisp/api:onos-protocols-lisp-api": [], "//protocols/lisp/ctl:onos-protocols-lisp-ctl": [], "//protocols/lisp/msg:onos-protocols-lisp-msg": [], "//protocols/netconf/api:onos-protocols-netconf-api": [], "//protocols/netconf/ctl:onos-protocols-netconf-ctl": [], "//protocols/openflow/api:onos-protocols-openflow-api": ["seba", "sona"], "//protocols/openflow/ctl:onos-protocols-openflow-ctl": ["seba", "sona"], "//protocols/ospf/api:onos-protocols-ospf-api": [], "//protocols/ospf/protocol:onos-protocols-ospf-protocol": [], "//protocols/ospf/ctl:onos-protocols-ospf-ctl": [], "//protocols/ovsdb/rfc:onos-protocols-ovsdb-rfc": ["sona"], "//protocols/ovsdb/api:onos-protocols-ovsdb-api": ["sona"], "//protocols/ovsdb/ctl:onos-protocols-ovsdb-ctl": ["sona"], "//protocols/p4runtime/api:onos-protocols-p4runtime-api": ["stratum"], "//protocols/p4runtime/model:onos-protocols-p4runtime-model": ["stratum"], "//protocols/pcep/pcepio:onos-protocols-pcep-pcepio": [], "//protocols/pcep/server/api:onos-protocols-pcep-server-api": [], "//protocols/pcep/server/ctl:onos-protocols-pcep-server-ctl": [], "//protocols/rest/api:onos-protocols-rest-api": [], "//protocols/rest/ctl:onos-protocols-rest-ctl": [], "//protocols/restconf/client/api:onos-protocols-restconf-client-api": [], "//protocols/restconf/client/ctl:onos-protocols-restconf-client-ctl": [], "//protocols/snmp/api:onos-protocols-snmp-api": [], "//protocols/snmp/ctl:onos-protocols-snmp-ctl": [], "//protocols/tl1/api:onos-protocols-tl1-api": [], "//protocols/tl1/ctl:onos-protocols-tl1-ctl": [], "//protocols/xmpp/core/api:onos-protocols-xmpp-core-api": [], "//protocols/xmpp/core/ctl:onos-protocols-xmpp-core-ctl": [], } PROTOCOL_APP_MAP = { "//protocols/grpc:onos-protocols-grpc-oar": ["stratum", "tost", "sona"], "//protocols/gnmi:onos-protocols-gnmi-oar": ["stratum", "tost", "sona"], "//protocols/gnoi:onos-protocols-gnoi-oar": ["stratum", "tost"], "//protocols/p4runtime:onos-protocols-p4runtime-oar": ["stratum", "tost"], "//protocols/restconf/server:onos-protocols-restconf-server-oar": [], "//protocols/xmpp/core:onos-protocols-xmpp-core-oar": [], "//protocols/xmpp/pubsub:onos-protocols-xmpp-pubsub-oar": [], } PROVIDER_MAP = { "//providers/netconf/device:onos-providers-netconf-device": [], "//providers/openflow/device:onos-providers-openflow-device": ["seba", "sona"], "//providers/openflow/packet:onos-providers-openflow-packet": ["seba", "sona"], "//providers/openflow/flow:onos-providers-openflow-flow": ["seba", "sona"], "//providers/openflow/group:onos-providers-openflow-group": ["seba", "sona"], "//providers/openflow/meter:onos-providers-openflow-meter": ["seba", "sona"], "//providers/ovsdb/device:onos-providers-ovsdb-device": ["sona"], "//providers/ovsdb/tunnel:onos-providers-ovsdb-tunnel": ["sona"], "//providers/p4runtime/packet:onos-providers-p4runtime-packet": ["stratum"], "//providers/rest/device:onos-providers-rest-device": [], "//providers/snmp/device:onos-providers-snmp-device": [], "//providers/isis/cfg:onos-providers-isis-cfg": [], "//providers/isis/topology:onos-providers-isis-topology": [], "//providers/lisp/device:onos-providers-lisp-device": [], "//providers/tl1/device:onos-providers-tl1-device": [], } PROVIDER_APP_MAP = { "//providers/general:onos-providers-general-oar": ["stratum", "tost", "sona"], "//providers/bgp:onos-providers-bgp-oar": [], "//providers/bgpcep:onos-providers-bgpcep-oar": [], "//providers/host:onos-providers-host-oar": ["seba", "stratum", "tost", "sona"], "//providers/hostprobing:onos-providers-hostprobing-oar": ["seba", "stratum", "tost", "sona"], "//providers/isis:onos-providers-isis-oar": [], "//providers/link:onos-providers-link-oar": ["stratum"], "//providers/lldp:onos-providers-lldp-oar": ["seba", "stratum", "tost", "sona"], "//providers/netcfghost:onos-providers-netcfghost-oar": ["seba", "stratum", "tost", "sona"], "//providers/netcfglinks:onos-providers-netcfglinks-oar": ["stratum"], "//providers/netconf:onos-providers-netconf-oar": [], "//providers/null:onos-providers-null-oar": [], "//providers/openflow/app:onos-providers-openflow-app-oar": ["seba", "sona"], "//providers/openflow/base:onos-providers-openflow-base-oar": ["seba", "sona"], "//providers/openflow/message:onos-providers-openflow-message-oar": ["seba", "sona"], "//providers/ovsdb:onos-providers-ovsdb-oar": ["sona"], "//providers/ovsdb/host:onos-providers-ovsdb-host-oar": ["sona"], "//providers/ovsdb/base:onos-providers-ovsdb-base-oar": ["sona"], "//providers/p4runtime:onos-providers-p4runtime-oar": ["stratum", "tost"], "//providers/pcep:onos-providers-pcep-oar": [], "//providers/rest:onos-providers-rest-oar": [], "//providers/snmp:onos-providers-snmp-oar": [], "//providers/lisp:onos-providers-lisp-oar": [], "//providers/tl1:onos-providers-tl1-oar": [], "//providers/xmpp/device:onos-providers-xmpp-device-oar": [], # "//providers/ietfte:onos-providers-ietfte-oar": [], } # # ONOS Drivers # DRIVER_MAP = { "//drivers/default:onos-drivers-default-oar": ["minimal", "seba", "stratum", "tost", "sona"], "//drivers/arista:onos-drivers-arista-oar": [], "//drivers/bmv2:onos-drivers-bmv2-oar": ["stratum", "tost"], "//drivers/barefoot:onos-drivers-barefoot-oar": ["stratum", "tost"], "//drivers/ciena/waveserver:onos-drivers-ciena-waveserver-oar": [], "//drivers/ciena/c5162:onos-drivers-ciena-c5162-oar": [], "//drivers/ciena/c5170:onos-drivers-ciena-c5170-oar": [], "//drivers/ciena/waveserverai:onos-drivers-ciena-waveserverai-oar": [], "//drivers/cisco/netconf:onos-drivers-cisco-netconf-oar": [], "//drivers/cisco/rest:onos-drivers-cisco-rest-oar": [], "//drivers/corsa:onos-drivers-corsa-oar": [], "//drivers/flowspec:onos-drivers-flowspec-oar": [], "//drivers/fujitsu:onos-drivers-fujitsu-oar": [], "//drivers/gnmi:onos-drivers-gnmi-oar": ["stratum", "tost", "sona"], "//drivers/gnoi:onos-drivers-gnoi-oar": ["stratum", "tost"], "//drivers/hp:onos-drivers-hp-oar": [], "//drivers/huawei:onos-drivers-huawei-oar": [], "//drivers/juniper:onos-drivers-juniper-oar": [], "//drivers/lisp:onos-drivers-lisp-oar": [], "//drivers/lumentum:onos-drivers-lumentum-oar": [], "//drivers/mellanox:onos-drivers-mellanox-oar": ["stratum"], "//drivers/microsemi/ea1000:onos-drivers-microsemi-ea1000-oar": [], "//drivers/netconf:onos-drivers-netconf-oar": [], "//drivers/odtn-driver:onos-drivers-odtn-driver-oar": [], "//drivers/oplink:onos-drivers-oplink-oar": [], "//drivers/optical:onos-drivers-optical-oar": [], "//drivers/ovsdb:onos-drivers-ovsdb-oar": ["sona"], "//drivers/p4runtime:onos-drivers-p4runtime-oar": ["stratum", "tost"], "//drivers/polatis/netconf:onos-drivers-polatis-netconf-oar": [], "//drivers/polatis/openflow:onos-drivers-polatis-openflow-oar": [], "//drivers/server:onos-drivers-server-oar": [], "//drivers/stratum:onos-drivers-stratum-oar": ["stratum", "tost"], } # # ONOS Apps and App API JARs # APP_JAR_MAP = { "//apps/cpman/api:onos-apps-cpman-api": [], "//apps/routing-api:onos-apps-routing-api": [], "//apps/dhcp/api:onos-apps-dhcp-api": [], "//apps/dhcp/app:onos-apps-dhcp-app": [], "//apps/imr/api:onos-apps-imr-api": [], "//apps/imr/app:onos-apps-imr-app": [], "//apps/dhcprelay/app:onos-apps-dhcprelay-app": [], "//apps/dhcprelay/web:onos-apps-dhcprelay-web": [], "//apps/fwd:onos-apps-fwd": [], "//apps/iptopology-api:onos-apps-iptopology-api": [], "//apps/kafka-integration/api:onos-apps-kafka-integration-api": [], "//apps/kafka-integration/app:onos-apps-kafka-integration-app": [], "//apps/routing/common:onos-apps-routing-common": [], "//apps/vtn/vtnrsc:onos-apps-vtn-vtnrsc": [], "//apps/vtn/sfcmgr:onos-apps-vtn-sfcmgr": [], "//apps/vtn/vtnmgr:onos-apps-vtn-vtnmgr": [], "//apps/vtn/vtnweb:onos-apps-vtn-vtnweb": [], } APP_MAP = { "//apps/acl:onos-apps-acl-oar": [], "//apps/artemis:onos-apps-artemis-oar": [], "//apps/bgprouter:onos-apps-bgprouter-oar": [], "//apps/castor:onos-apps-castor-oar": [], "//apps/cfm:onos-apps-cfm-oar": [], "//apps/cip:onos-apps-cip-oar": [], "//apps/config:onos-apps-config-oar": [], "//apps/configsync-netconf:onos-apps-configsync-netconf-oar": [], "//apps/configsync:onos-apps-configsync-oar": [], "//apps/cord-support:onos-apps-cord-support-oar": [], "//apps/cpman/app:onos-apps-cpman-app-oar": [], "//apps/dhcp:onos-apps-dhcp-oar": [], "//apps/dhcprelay:onos-apps-dhcprelay-oar": ["tost"], "//apps/drivermatrix:onos-apps-drivermatrix-oar": [], "//apps/events:onos-apps-events-oar": [], "//apps/evpn-route-service:onos-apps-evpn-route-service-oar": [], "//apps/evpnopenflow:onos-apps-evpnopenflow-oar": [], "//apps/faultmanagement:onos-apps-faultmanagement-oar": [], "//apps/flowanalyzer:onos-apps-flowanalyzer-oar": [], "//apps/flowspec-api:onos-apps-flowspec-api-oar": [], "//apps/fwd:onos-apps-fwd-oar": [], "//apps/gangliametrics:onos-apps-gangliametrics-oar": [], "//apps/gluon:onos-apps-gluon-oar": [], "//apps/graphitemetrics:onos-apps-graphitemetrics-oar": [], "//apps/imr:onos-apps-imr-oar": [], "//apps/inbandtelemetry:onos-apps-inbandtelemetry-oar": ["tost"], "//apps/influxdbmetrics:onos-apps-influxdbmetrics-oar": [], "//apps/intentsync:onos-apps-intentsync-oar": [], "//apps/k8s-networking:onos-apps-k8s-networking-oar": ["sona"], "//apps/k8s-node:onos-apps-k8s-node-oar": ["sona"], "//apps/kubevirt-networking:onos-apps-kubevirt-networking-oar": ["sona"], "//apps/kubevirt-node:onos-apps-kubevirt-node-oar": ["sona"], "//apps/kafka-integration:onos-apps-kafka-integration-oar": [], "//apps/l3vpn:onos-apps-l3vpn-oar": [], "//apps/layout:onos-apps-layout-oar": [], "//apps/linkprops:onos-apps-linkprops-oar": [], "//apps/mappingmanagement:onos-apps-mappingmanagement-oar": [], "//apps/mcast:onos-apps-mcast-oar": ["seba", "tost"], "//apps/metrics:onos-apps-metrics-oar": [], "//apps/mfwd:onos-apps-mfwd-oar": [], "//apps/mlb:onos-apps-mlb-oar": ["tost"], "//apps/mobility:onos-apps-mobility-oar": [], "//apps/netconf/client:onos-apps-netconf-client-oar": [], "//apps/network-troubleshoot:onos-apps-network-troubleshoot-oar": [], "//apps/newoptical:onos-apps-newoptical-oar": [], "//apps/nodemetrics:onos-apps-nodemetrics-oar": [], "//apps/odtn/api:onos-apps-odtn-api-oar": [], "//apps/odtn/service:onos-apps-odtn-service-oar": [], "//apps/ofagent:onos-apps-ofagent-oar": [], "//apps/onlp-demo:onos-apps-onlp-demo-oar": [], "//apps/openroadm:onos-apps-openroadm-oar": [], "//apps/openstacknetworking:onos-apps-openstacknetworking-oar": ["sona"], "//apps/openstacknetworkingui:onos-apps-openstacknetworkingui-oar": ["sona"], "//apps/openstacknode:onos-apps-openstacknode-oar": ["sona"], "//apps/openstacktelemetry:onos-apps-openstacktelemetry-oar": ["sona"], "//apps/openstacktroubleshoot:onos-apps-openstacktroubleshoot-oar": ["sona"], "//apps/openstackvtap:onos-apps-openstackvtap-oar": ["sona"], "//apps/optical-model:onos-apps-optical-model-oar": ["seba", "sona"], "//apps/optical-rest:onos-apps-optical-rest-oar": [], "//apps/p4-tutorial/mytunnel:onos-apps-p4-tutorial-mytunnel-oar": [], "//apps/p4-tutorial/pipeconf:onos-apps-p4-tutorial-pipeconf-oar": [], "//apps/p4-flowstats/flowstats:onos-apps-p4-flowstats-flowstats-oar": [], "//apps/p4-flowstats/pipeconf:onos-apps-p4-flowstats-pipeconf-oar": [], "//apps/p4-dma/dma:onos-apps-p4-dma-dma-oar": [], "//apps/p4-dma/pipeconf:onos-apps-p4-dma-pipeconf-oar": [], "//apps/p4-kitsune/kitsune:onos-apps-p4-kitsune-kitsune-oar": [], "//apps/p4-kitsune/pipeconf:onos-apps-p4-kitsune-pipeconf-oar": [], "//apps/packet-stats:onos-apps-packet-stats-oar": [], "//apps/packet-throttle:onos-apps-packet-throttle-oar": [], "//apps/pathpainter:onos-apps-pathpainter-oar": [], "//apps/pcep-api:onos-apps-pcep-api-oar": [], "//apps/pim:onos-apps-pim-oar": [], "//apps/portloadbalancer:onos-apps-portloadbalancer-oar": ["seba", "tost"], "//apps/powermanagement:onos-apps-powermanagement-oar": [], "//apps/proxyarp:onos-apps-proxyarp-oar": [], "//apps/rabbitmq:onos-apps-rabbitmq-oar": [], "//apps/reactive-routing:onos-apps-reactive-routing-oar": [], "//apps/restconf:onos-apps-restconf-oar": [], "//apps/roadm:onos-apps-roadm-oar": [], "//apps/route-service:onos-apps-route-service-oar": ["seba", "tost"], "//apps/routeradvertisement:onos-apps-routeradvertisement-oar": ["tost"], "//apps/routing/cpr:onos-apps-routing-cpr-oar": [], "//apps/routing/fibinstaller:onos-apps-routing-fibinstaller-oar": [], "//apps/routing/fpm:onos-apps-routing-fpm-oar": ["tost"], "//apps/scalablegateway:onos-apps-scalablegateway-oar": [], "//apps/sdnip:onos-apps-sdnip-oar": [], "//apps/segmentrouting:onos-apps-segmentrouting-oar": ["seba"], "//apps/simplefabric:onos-apps-simplefabric-oar": [], "//apps/t3:onos-apps-t3-oar": [], # "//apps/tenbi:onos-apps-tenbi-oar": [], # "//apps/tenbi/yangmodel:onos-apps-tenbi-yangmodel-feature": [], "//apps/test/cluster-ha:onos-apps-test-cluster-ha-oar": [], "//apps/test/demo:onos-apps-test-demo-oar": [], "//apps/test/distributed-primitives:onos-apps-test-distributed-primitives-oar": [], "//apps/test/election:onos-apps-test-election-oar": [], "//apps/test/flow-perf:onos-apps-test-flow-perf-oar": [], "//apps/test/intent-perf:onos-apps-test-intent-perf-oar": [], "//apps/test/loadtest:onos-apps-test-loadtest-oar": [], "//apps/test/messaging-perf:onos-apps-test-messaging-perf-oar": [], "//apps/test/netcfg-monitor:onos-apps-test-netcfg-monitor-oar": [], "//apps/test/primitive-perf:onos-apps-test-primitive-perf-oar": [], "//apps/test/route-scale:onos-apps-test-route-scale-oar": [], "//apps/test/transaction-perf:onos-apps-test-transaction-perf-oar": [], "//apps/tetopology:onos-apps-tetopology-oar": [], "//apps/tetunnel:onos-apps-tetunnel-oar": [], "//apps/tunnel:onos-apps-tunnel-oar": ["sona"], "//apps/virtual:onos-apps-virtual-oar": [], "//apps/virtualbng:onos-apps-virtualbng-oar": [], "//apps/vpls:onos-apps-vpls-oar": [], "//apps/vrouter:onos-apps-vrouter-oar": [], "//apps/vtn:onos-apps-vtn-oar": [], "//apps/workflow/ofoverlay:onos-apps-workflow-ofoverlay-oar": [], "//apps/workflow:onos-apps-workflow-oar": [], "//apps/yang-gui:onos-apps-yang-gui-oar": [], "//apps/yang:onos-apps-yang-oar": [], # "//apps/yms:onos-apps-yms-oar": [], "//web/gui:onos-web-gui-oar": ["sona", "tost"], "//web/gui2:onos-web-gui2-oar": ["stratum", "tost"], } # # Pipelines and Models # PIPELINE_MAP = { "//pipelines/basic:onos-pipelines-basic-oar": ["stratum", "tost"], "//pipelines/fabric:onos-pipelines-fabric-oar": ["stratum", "tost"], } MODELS_MAP = { "//models/ietf:onos-models-ietf-oar": [], "//models/common:onos-models-common-oar": [], "//models/huawei:onos-models-huawei-oar": [], "//models/openconfig:onos-models-openconfig-oar": [], "//models/openconfig-infinera:onos-models-openconfig-infinera-oar": [], "//models/openconfig-odtn:onos-models-openconfig-odtn-oar": [], "//models/openroadm:onos-models-openroadm-oar": [], "//models/tapi:onos-models-tapi-oar": [], "//models/l3vpn:onos-models-l3vpn-oar": [], "//models/microsemi:onos-models-microsemi-oar": [], "//models/polatis:onos-models-polatis-oar": [], "//models/ciena/waveserverai:onos-models-ciena-waveserverai-oar": [], } # # Convenience functions for processing profile maps # def filter(map, profile): all = not bool(profile) or profile == "all" return [k for k, v in map.items() if all or profile in v] def extensions(profile = None): return filter(PROTOCOL_MAP, profile) + filter(PROVIDER_MAP, profile) def apps(profile = None): return filter(PROTOCOL_APP_MAP, profile) + \ filter(PROVIDER_APP_MAP, profile) + \ filter(DRIVER_MAP, profile) + \ filter(APP_MAP, profile) + \ filter(APP_JAR_MAP, profile) + \ filter(PIPELINE_MAP, profile) + \ filter(MODELS_MAP, profile) # # Instantiate a config_setting for every profile in the list # def profiles(profiles): for p in profiles: native.config_setting( name = "%s_profile" % p, values = {"define": "profile=%s" % p}, )
utils = ['//utils/osgiwrap:osgi-jar', '//utils/osgi:onlab-osgi', '//utils/junit:onlab-junit', '//utils/misc:onlab-misc', '//utils/rest:onlab-rest'] api = ['//core/api:onos-api'] core = UTILS + API + ['//core/net:onos-core-net', '//core/common:onos-core-common', '//core/store/primitives:onos-core-primitives', '//core/store/serializers:onos-core-serializers', '//core/store/dist:onos-core-dist', '//core/store/persistence:onos-core-persistence', '//cli:onos-cli', '//drivers/utilities:onos-drivers-utilities', '//providers/general/device:onos-providers-general-device', '//web/api:onos-rest'] features = ['//tools/package/features:onos-thirdparty-base', '//tools/package/features:onos-thirdparty-web', '//tools/package/features:onos-api', '//tools/package/features:onos-core', '//tools/package/features:onos-cli', '//tools/package/features:onos-rest'] protocol_map = {'//protocols/bgp/bgpio:onos-protocols-bgp-bgpio': [], '//protocols/bgp/api:onos-protocols-bgp-api': [], '//protocols/bgp/ctl:onos-protocols-bgp-ctl': [], '//protocols/isis/api:onos-protocols-isis-api': [], '//protocols/isis/ctl:onos-protocols-isis-ctl': [], '//protocols/isis/isisio:onos-protocols-isis-isisio': [], '//protocols/lisp/api:onos-protocols-lisp-api': [], '//protocols/lisp/ctl:onos-protocols-lisp-ctl': [], '//protocols/lisp/msg:onos-protocols-lisp-msg': [], '//protocols/netconf/api:onos-protocols-netconf-api': [], '//protocols/netconf/ctl:onos-protocols-netconf-ctl': [], '//protocols/openflow/api:onos-protocols-openflow-api': ['seba', 'sona'], '//protocols/openflow/ctl:onos-protocols-openflow-ctl': ['seba', 'sona'], '//protocols/ospf/api:onos-protocols-ospf-api': [], '//protocols/ospf/protocol:onos-protocols-ospf-protocol': [], '//protocols/ospf/ctl:onos-protocols-ospf-ctl': [], '//protocols/ovsdb/rfc:onos-protocols-ovsdb-rfc': ['sona'], '//protocols/ovsdb/api:onos-protocols-ovsdb-api': ['sona'], '//protocols/ovsdb/ctl:onos-protocols-ovsdb-ctl': ['sona'], '//protocols/p4runtime/api:onos-protocols-p4runtime-api': ['stratum'], '//protocols/p4runtime/model:onos-protocols-p4runtime-model': ['stratum'], '//protocols/pcep/pcepio:onos-protocols-pcep-pcepio': [], '//protocols/pcep/server/api:onos-protocols-pcep-server-api': [], '//protocols/pcep/server/ctl:onos-protocols-pcep-server-ctl': [], '//protocols/rest/api:onos-protocols-rest-api': [], '//protocols/rest/ctl:onos-protocols-rest-ctl': [], '//protocols/restconf/client/api:onos-protocols-restconf-client-api': [], '//protocols/restconf/client/ctl:onos-protocols-restconf-client-ctl': [], '//protocols/snmp/api:onos-protocols-snmp-api': [], '//protocols/snmp/ctl:onos-protocols-snmp-ctl': [], '//protocols/tl1/api:onos-protocols-tl1-api': [], '//protocols/tl1/ctl:onos-protocols-tl1-ctl': [], '//protocols/xmpp/core/api:onos-protocols-xmpp-core-api': [], '//protocols/xmpp/core/ctl:onos-protocols-xmpp-core-ctl': []} protocol_app_map = {'//protocols/grpc:onos-protocols-grpc-oar': ['stratum', 'tost', 'sona'], '//protocols/gnmi:onos-protocols-gnmi-oar': ['stratum', 'tost', 'sona'], '//protocols/gnoi:onos-protocols-gnoi-oar': ['stratum', 'tost'], '//protocols/p4runtime:onos-protocols-p4runtime-oar': ['stratum', 'tost'], '//protocols/restconf/server:onos-protocols-restconf-server-oar': [], '//protocols/xmpp/core:onos-protocols-xmpp-core-oar': [], '//protocols/xmpp/pubsub:onos-protocols-xmpp-pubsub-oar': []} provider_map = {'//providers/netconf/device:onos-providers-netconf-device': [], '//providers/openflow/device:onos-providers-openflow-device': ['seba', 'sona'], '//providers/openflow/packet:onos-providers-openflow-packet': ['seba', 'sona'], '//providers/openflow/flow:onos-providers-openflow-flow': ['seba', 'sona'], '//providers/openflow/group:onos-providers-openflow-group': ['seba', 'sona'], '//providers/openflow/meter:onos-providers-openflow-meter': ['seba', 'sona'], '//providers/ovsdb/device:onos-providers-ovsdb-device': ['sona'], '//providers/ovsdb/tunnel:onos-providers-ovsdb-tunnel': ['sona'], '//providers/p4runtime/packet:onos-providers-p4runtime-packet': ['stratum'], '//providers/rest/device:onos-providers-rest-device': [], '//providers/snmp/device:onos-providers-snmp-device': [], '//providers/isis/cfg:onos-providers-isis-cfg': [], '//providers/isis/topology:onos-providers-isis-topology': [], '//providers/lisp/device:onos-providers-lisp-device': [], '//providers/tl1/device:onos-providers-tl1-device': []} provider_app_map = {'//providers/general:onos-providers-general-oar': ['stratum', 'tost', 'sona'], '//providers/bgp:onos-providers-bgp-oar': [], '//providers/bgpcep:onos-providers-bgpcep-oar': [], '//providers/host:onos-providers-host-oar': ['seba', 'stratum', 'tost', 'sona'], '//providers/hostprobing:onos-providers-hostprobing-oar': ['seba', 'stratum', 'tost', 'sona'], '//providers/isis:onos-providers-isis-oar': [], '//providers/link:onos-providers-link-oar': ['stratum'], '//providers/lldp:onos-providers-lldp-oar': ['seba', 'stratum', 'tost', 'sona'], '//providers/netcfghost:onos-providers-netcfghost-oar': ['seba', 'stratum', 'tost', 'sona'], '//providers/netcfglinks:onos-providers-netcfglinks-oar': ['stratum'], '//providers/netconf:onos-providers-netconf-oar': [], '//providers/null:onos-providers-null-oar': [], '//providers/openflow/app:onos-providers-openflow-app-oar': ['seba', 'sona'], '//providers/openflow/base:onos-providers-openflow-base-oar': ['seba', 'sona'], '//providers/openflow/message:onos-providers-openflow-message-oar': ['seba', 'sona'], '//providers/ovsdb:onos-providers-ovsdb-oar': ['sona'], '//providers/ovsdb/host:onos-providers-ovsdb-host-oar': ['sona'], '//providers/ovsdb/base:onos-providers-ovsdb-base-oar': ['sona'], '//providers/p4runtime:onos-providers-p4runtime-oar': ['stratum', 'tost'], '//providers/pcep:onos-providers-pcep-oar': [], '//providers/rest:onos-providers-rest-oar': [], '//providers/snmp:onos-providers-snmp-oar': [], '//providers/lisp:onos-providers-lisp-oar': [], '//providers/tl1:onos-providers-tl1-oar': [], '//providers/xmpp/device:onos-providers-xmpp-device-oar': []} driver_map = {'//drivers/default:onos-drivers-default-oar': ['minimal', 'seba', 'stratum', 'tost', 'sona'], '//drivers/arista:onos-drivers-arista-oar': [], '//drivers/bmv2:onos-drivers-bmv2-oar': ['stratum', 'tost'], '//drivers/barefoot:onos-drivers-barefoot-oar': ['stratum', 'tost'], '//drivers/ciena/waveserver:onos-drivers-ciena-waveserver-oar': [], '//drivers/ciena/c5162:onos-drivers-ciena-c5162-oar': [], '//drivers/ciena/c5170:onos-drivers-ciena-c5170-oar': [], '//drivers/ciena/waveserverai:onos-drivers-ciena-waveserverai-oar': [], '//drivers/cisco/netconf:onos-drivers-cisco-netconf-oar': [], '//drivers/cisco/rest:onos-drivers-cisco-rest-oar': [], '//drivers/corsa:onos-drivers-corsa-oar': [], '//drivers/flowspec:onos-drivers-flowspec-oar': [], '//drivers/fujitsu:onos-drivers-fujitsu-oar': [], '//drivers/gnmi:onos-drivers-gnmi-oar': ['stratum', 'tost', 'sona'], '//drivers/gnoi:onos-drivers-gnoi-oar': ['stratum', 'tost'], '//drivers/hp:onos-drivers-hp-oar': [], '//drivers/huawei:onos-drivers-huawei-oar': [], '//drivers/juniper:onos-drivers-juniper-oar': [], '//drivers/lisp:onos-drivers-lisp-oar': [], '//drivers/lumentum:onos-drivers-lumentum-oar': [], '//drivers/mellanox:onos-drivers-mellanox-oar': ['stratum'], '//drivers/microsemi/ea1000:onos-drivers-microsemi-ea1000-oar': [], '//drivers/netconf:onos-drivers-netconf-oar': [], '//drivers/odtn-driver:onos-drivers-odtn-driver-oar': [], '//drivers/oplink:onos-drivers-oplink-oar': [], '//drivers/optical:onos-drivers-optical-oar': [], '//drivers/ovsdb:onos-drivers-ovsdb-oar': ['sona'], '//drivers/p4runtime:onos-drivers-p4runtime-oar': ['stratum', 'tost'], '//drivers/polatis/netconf:onos-drivers-polatis-netconf-oar': [], '//drivers/polatis/openflow:onos-drivers-polatis-openflow-oar': [], '//drivers/server:onos-drivers-server-oar': [], '//drivers/stratum:onos-drivers-stratum-oar': ['stratum', 'tost']} app_jar_map = {'//apps/cpman/api:onos-apps-cpman-api': [], '//apps/routing-api:onos-apps-routing-api': [], '//apps/dhcp/api:onos-apps-dhcp-api': [], '//apps/dhcp/app:onos-apps-dhcp-app': [], '//apps/imr/api:onos-apps-imr-api': [], '//apps/imr/app:onos-apps-imr-app': [], '//apps/dhcprelay/app:onos-apps-dhcprelay-app': [], '//apps/dhcprelay/web:onos-apps-dhcprelay-web': [], '//apps/fwd:onos-apps-fwd': [], '//apps/iptopology-api:onos-apps-iptopology-api': [], '//apps/kafka-integration/api:onos-apps-kafka-integration-api': [], '//apps/kafka-integration/app:onos-apps-kafka-integration-app': [], '//apps/routing/common:onos-apps-routing-common': [], '//apps/vtn/vtnrsc:onos-apps-vtn-vtnrsc': [], '//apps/vtn/sfcmgr:onos-apps-vtn-sfcmgr': [], '//apps/vtn/vtnmgr:onos-apps-vtn-vtnmgr': [], '//apps/vtn/vtnweb:onos-apps-vtn-vtnweb': []} app_map = {'//apps/acl:onos-apps-acl-oar': [], '//apps/artemis:onos-apps-artemis-oar': [], '//apps/bgprouter:onos-apps-bgprouter-oar': [], '//apps/castor:onos-apps-castor-oar': [], '//apps/cfm:onos-apps-cfm-oar': [], '//apps/cip:onos-apps-cip-oar': [], '//apps/config:onos-apps-config-oar': [], '//apps/configsync-netconf:onos-apps-configsync-netconf-oar': [], '//apps/configsync:onos-apps-configsync-oar': [], '//apps/cord-support:onos-apps-cord-support-oar': [], '//apps/cpman/app:onos-apps-cpman-app-oar': [], '//apps/dhcp:onos-apps-dhcp-oar': [], '//apps/dhcprelay:onos-apps-dhcprelay-oar': ['tost'], '//apps/drivermatrix:onos-apps-drivermatrix-oar': [], '//apps/events:onos-apps-events-oar': [], '//apps/evpn-route-service:onos-apps-evpn-route-service-oar': [], '//apps/evpnopenflow:onos-apps-evpnopenflow-oar': [], '//apps/faultmanagement:onos-apps-faultmanagement-oar': [], '//apps/flowanalyzer:onos-apps-flowanalyzer-oar': [], '//apps/flowspec-api:onos-apps-flowspec-api-oar': [], '//apps/fwd:onos-apps-fwd-oar': [], '//apps/gangliametrics:onos-apps-gangliametrics-oar': [], '//apps/gluon:onos-apps-gluon-oar': [], '//apps/graphitemetrics:onos-apps-graphitemetrics-oar': [], '//apps/imr:onos-apps-imr-oar': [], '//apps/inbandtelemetry:onos-apps-inbandtelemetry-oar': ['tost'], '//apps/influxdbmetrics:onos-apps-influxdbmetrics-oar': [], '//apps/intentsync:onos-apps-intentsync-oar': [], '//apps/k8s-networking:onos-apps-k8s-networking-oar': ['sona'], '//apps/k8s-node:onos-apps-k8s-node-oar': ['sona'], '//apps/kubevirt-networking:onos-apps-kubevirt-networking-oar': ['sona'], '//apps/kubevirt-node:onos-apps-kubevirt-node-oar': ['sona'], '//apps/kafka-integration:onos-apps-kafka-integration-oar': [], '//apps/l3vpn:onos-apps-l3vpn-oar': [], '//apps/layout:onos-apps-layout-oar': [], '//apps/linkprops:onos-apps-linkprops-oar': [], '//apps/mappingmanagement:onos-apps-mappingmanagement-oar': [], '//apps/mcast:onos-apps-mcast-oar': ['seba', 'tost'], '//apps/metrics:onos-apps-metrics-oar': [], '//apps/mfwd:onos-apps-mfwd-oar': [], '//apps/mlb:onos-apps-mlb-oar': ['tost'], '//apps/mobility:onos-apps-mobility-oar': [], '//apps/netconf/client:onos-apps-netconf-client-oar': [], '//apps/network-troubleshoot:onos-apps-network-troubleshoot-oar': [], '//apps/newoptical:onos-apps-newoptical-oar': [], '//apps/nodemetrics:onos-apps-nodemetrics-oar': [], '//apps/odtn/api:onos-apps-odtn-api-oar': [], '//apps/odtn/service:onos-apps-odtn-service-oar': [], '//apps/ofagent:onos-apps-ofagent-oar': [], '//apps/onlp-demo:onos-apps-onlp-demo-oar': [], '//apps/openroadm:onos-apps-openroadm-oar': [], '//apps/openstacknetworking:onos-apps-openstacknetworking-oar': ['sona'], '//apps/openstacknetworkingui:onos-apps-openstacknetworkingui-oar': ['sona'], '//apps/openstacknode:onos-apps-openstacknode-oar': ['sona'], '//apps/openstacktelemetry:onos-apps-openstacktelemetry-oar': ['sona'], '//apps/openstacktroubleshoot:onos-apps-openstacktroubleshoot-oar': ['sona'], '//apps/openstackvtap:onos-apps-openstackvtap-oar': ['sona'], '//apps/optical-model:onos-apps-optical-model-oar': ['seba', 'sona'], '//apps/optical-rest:onos-apps-optical-rest-oar': [], '//apps/p4-tutorial/mytunnel:onos-apps-p4-tutorial-mytunnel-oar': [], '//apps/p4-tutorial/pipeconf:onos-apps-p4-tutorial-pipeconf-oar': [], '//apps/p4-flowstats/flowstats:onos-apps-p4-flowstats-flowstats-oar': [], '//apps/p4-flowstats/pipeconf:onos-apps-p4-flowstats-pipeconf-oar': [], '//apps/p4-dma/dma:onos-apps-p4-dma-dma-oar': [], '//apps/p4-dma/pipeconf:onos-apps-p4-dma-pipeconf-oar': [], '//apps/p4-kitsune/kitsune:onos-apps-p4-kitsune-kitsune-oar': [], '//apps/p4-kitsune/pipeconf:onos-apps-p4-kitsune-pipeconf-oar': [], '//apps/packet-stats:onos-apps-packet-stats-oar': [], '//apps/packet-throttle:onos-apps-packet-throttle-oar': [], '//apps/pathpainter:onos-apps-pathpainter-oar': [], '//apps/pcep-api:onos-apps-pcep-api-oar': [], '//apps/pim:onos-apps-pim-oar': [], '//apps/portloadbalancer:onos-apps-portloadbalancer-oar': ['seba', 'tost'], '//apps/powermanagement:onos-apps-powermanagement-oar': [], '//apps/proxyarp:onos-apps-proxyarp-oar': [], '//apps/rabbitmq:onos-apps-rabbitmq-oar': [], '//apps/reactive-routing:onos-apps-reactive-routing-oar': [], '//apps/restconf:onos-apps-restconf-oar': [], '//apps/roadm:onos-apps-roadm-oar': [], '//apps/route-service:onos-apps-route-service-oar': ['seba', 'tost'], '//apps/routeradvertisement:onos-apps-routeradvertisement-oar': ['tost'], '//apps/routing/cpr:onos-apps-routing-cpr-oar': [], '//apps/routing/fibinstaller:onos-apps-routing-fibinstaller-oar': [], '//apps/routing/fpm:onos-apps-routing-fpm-oar': ['tost'], '//apps/scalablegateway:onos-apps-scalablegateway-oar': [], '//apps/sdnip:onos-apps-sdnip-oar': [], '//apps/segmentrouting:onos-apps-segmentrouting-oar': ['seba'], '//apps/simplefabric:onos-apps-simplefabric-oar': [], '//apps/t3:onos-apps-t3-oar': [], '//apps/test/cluster-ha:onos-apps-test-cluster-ha-oar': [], '//apps/test/demo:onos-apps-test-demo-oar': [], '//apps/test/distributed-primitives:onos-apps-test-distributed-primitives-oar': [], '//apps/test/election:onos-apps-test-election-oar': [], '//apps/test/flow-perf:onos-apps-test-flow-perf-oar': [], '//apps/test/intent-perf:onos-apps-test-intent-perf-oar': [], '//apps/test/loadtest:onos-apps-test-loadtest-oar': [], '//apps/test/messaging-perf:onos-apps-test-messaging-perf-oar': [], '//apps/test/netcfg-monitor:onos-apps-test-netcfg-monitor-oar': [], '//apps/test/primitive-perf:onos-apps-test-primitive-perf-oar': [], '//apps/test/route-scale:onos-apps-test-route-scale-oar': [], '//apps/test/transaction-perf:onos-apps-test-transaction-perf-oar': [], '//apps/tetopology:onos-apps-tetopology-oar': [], '//apps/tetunnel:onos-apps-tetunnel-oar': [], '//apps/tunnel:onos-apps-tunnel-oar': ['sona'], '//apps/virtual:onos-apps-virtual-oar': [], '//apps/virtualbng:onos-apps-virtualbng-oar': [], '//apps/vpls:onos-apps-vpls-oar': [], '//apps/vrouter:onos-apps-vrouter-oar': [], '//apps/vtn:onos-apps-vtn-oar': [], '//apps/workflow/ofoverlay:onos-apps-workflow-ofoverlay-oar': [], '//apps/workflow:onos-apps-workflow-oar': [], '//apps/yang-gui:onos-apps-yang-gui-oar': [], '//apps/yang:onos-apps-yang-oar': [], '//web/gui:onos-web-gui-oar': ['sona', 'tost'], '//web/gui2:onos-web-gui2-oar': ['stratum', 'tost']} pipeline_map = {'//pipelines/basic:onos-pipelines-basic-oar': ['stratum', 'tost'], '//pipelines/fabric:onos-pipelines-fabric-oar': ['stratum', 'tost']} models_map = {'//models/ietf:onos-models-ietf-oar': [], '//models/common:onos-models-common-oar': [], '//models/huawei:onos-models-huawei-oar': [], '//models/openconfig:onos-models-openconfig-oar': [], '//models/openconfig-infinera:onos-models-openconfig-infinera-oar': [], '//models/openconfig-odtn:onos-models-openconfig-odtn-oar': [], '//models/openroadm:onos-models-openroadm-oar': [], '//models/tapi:onos-models-tapi-oar': [], '//models/l3vpn:onos-models-l3vpn-oar': [], '//models/microsemi:onos-models-microsemi-oar': [], '//models/polatis:onos-models-polatis-oar': [], '//models/ciena/waveserverai:onos-models-ciena-waveserverai-oar': []} def filter(map, profile): all = not bool(profile) or profile == 'all' return [k for (k, v) in map.items() if all or profile in v] def extensions(profile=None): return filter(PROTOCOL_MAP, profile) + filter(PROVIDER_MAP, profile) def apps(profile=None): return filter(PROTOCOL_APP_MAP, profile) + filter(PROVIDER_APP_MAP, profile) + filter(DRIVER_MAP, profile) + filter(APP_MAP, profile) + filter(APP_JAR_MAP, profile) + filter(PIPELINE_MAP, profile) + filter(MODELS_MAP, profile) def profiles(profiles): for p in profiles: native.config_setting(name='%s_profile' % p, values={'define': 'profile=%s' % p})
# # --- CityCulture --- # # # # - Deals with cities and their interactions with cultures # # # # --- --- --- --- # --- Constants --- DIVERGENCE_THRESHOLD = 27 MERGE_THRESHOLD = 18 # ------ def diverge(target): target.divergencePressure = 0 oldMax = target.maxCulture newCulture = None # Try a subculture, if not, make a new one if oldMax in oldMax.subCultures: candidates = sorted(oldMax.subCultures[oldMax], key=lambda c: target.suitability(c)) if candidates: if target.suitability(candidates[-1]) > target.suitability(oldMax): newCulture = candidates[-1] if newCulture is None: newCulture = oldMax.diverge(target) target.cultures[newCulture] = target.cultures[oldMax] target.cultures[oldMax] = 0 target.maxCulture = newCulture queue = [n for n in target.neighbors] checked = set([target]) while len(queue) > 0: city = queue.pop(0) if city not in checked: checked.add(city) if city.maxCulture == oldMax: if city.suitability(oldMax) < city.suitability(newCulture): cc = city.cultures cc[newCulture] = cc[oldMax] city.maxCulture = newCulture cc[oldMax] = 0 for n in city.neighbors: if n not in checked: queue.append(n) city.divergencePressure = 0 def reform(target): # Adaptible cultures can 'reform' instead of diverging target.divergencePressure = 0 queue = [n for n in target.neighbors] checked = set([target]) while len(queue) > 0: city = queue.pop(0) if city not in checked: checked.add(city) if city.maxCulture == target.maxCulture and \ city.divergencePressure > DIVERGENCE_THRESHOLD / 2: city.divergencePressure = 0 for n in city.neighbors: if n not in checked: queue.append(n) target.maxCulture.reform(target) def assimilate(target): # If isolated, and adjacent to ancestor/descendant, swap to that mc = target.maxCulture if mc: comrades = [n for n in target.neighbors if n.maxCulture == mc] if len(comrades) == 0: for n in target.neighbors: c = n.maxCulture if c: if c.isAncestor(mc) or mc.isAncestor(c): amount = target.cultures[mc] * 0.8 if c in target.cultures: target.cultures[c] += amount else: target.cultures[c] = amount target.cultures[mc] -= amount return def merge(target, other): # Merge the max culture with a minority target.mergePressures[other] = 0 oldMax = target.maxCulture newCulture = None # Check if other culture is a descendant if oldMax.isAncestor(other) or other.isAncestor(oldMax): newCulture = other if target.suitability(oldMax) > \ target.suitability(other) else oldMax elif other in oldMax.subCultures: candidates = sorted(oldMax.subCultures[other], key=lambda c: target.suitability(c), reverse=True) if candidates: newCulture = candidates[0] if newCulture is None: newCulture = oldMax.merge(other, target) target.cultures[newCulture] = target.cultures[oldMax] + \ target.cultures[other] if newCulture != oldMax: target.cultures[oldMax] = 0 if newCulture != other: target.cultures[other] = 0 target.maxCulture = newCulture queue = [n for n in target.neighbors] checked = set([target]) while len(queue) > 0: city = queue.pop(0) if city not in checked: checked.add(city) if city.maxCulture == oldMax and other in city.mergePressures: if city.mergePressures[other] > MERGE_THRESHOLD / 2: cc = city.cultures cc[newCulture] = cc[oldMax] + cc[other] if newCulture != oldMax: cc[oldMax] = 0 if newCulture != other: cc[other] = 0 city.maxCulture = newCulture for n in city.neighbors: if n not in checked: queue.append(n) city.mergePressures[other] = 0
divergence_threshold = 27 merge_threshold = 18 def diverge(target): target.divergencePressure = 0 old_max = target.maxCulture new_culture = None if oldMax in oldMax.subCultures: candidates = sorted(oldMax.subCultures[oldMax], key=lambda c: target.suitability(c)) if candidates: if target.suitability(candidates[-1]) > target.suitability(oldMax): new_culture = candidates[-1] if newCulture is None: new_culture = oldMax.diverge(target) target.cultures[newCulture] = target.cultures[oldMax] target.cultures[oldMax] = 0 target.maxCulture = newCulture queue = [n for n in target.neighbors] checked = set([target]) while len(queue) > 0: city = queue.pop(0) if city not in checked: checked.add(city) if city.maxCulture == oldMax: if city.suitability(oldMax) < city.suitability(newCulture): cc = city.cultures cc[newCulture] = cc[oldMax] city.maxCulture = newCulture cc[oldMax] = 0 for n in city.neighbors: if n not in checked: queue.append(n) city.divergencePressure = 0 def reform(target): target.divergencePressure = 0 queue = [n for n in target.neighbors] checked = set([target]) while len(queue) > 0: city = queue.pop(0) if city not in checked: checked.add(city) if city.maxCulture == target.maxCulture and city.divergencePressure > DIVERGENCE_THRESHOLD / 2: city.divergencePressure = 0 for n in city.neighbors: if n not in checked: queue.append(n) target.maxCulture.reform(target) def assimilate(target): mc = target.maxCulture if mc: comrades = [n for n in target.neighbors if n.maxCulture == mc] if len(comrades) == 0: for n in target.neighbors: c = n.maxCulture if c: if c.isAncestor(mc) or mc.isAncestor(c): amount = target.cultures[mc] * 0.8 if c in target.cultures: target.cultures[c] += amount else: target.cultures[c] = amount target.cultures[mc] -= amount return def merge(target, other): target.mergePressures[other] = 0 old_max = target.maxCulture new_culture = None if oldMax.isAncestor(other) or other.isAncestor(oldMax): new_culture = other if target.suitability(oldMax) > target.suitability(other) else oldMax elif other in oldMax.subCultures: candidates = sorted(oldMax.subCultures[other], key=lambda c: target.suitability(c), reverse=True) if candidates: new_culture = candidates[0] if newCulture is None: new_culture = oldMax.merge(other, target) target.cultures[newCulture] = target.cultures[oldMax] + target.cultures[other] if newCulture != oldMax: target.cultures[oldMax] = 0 if newCulture != other: target.cultures[other] = 0 target.maxCulture = newCulture queue = [n for n in target.neighbors] checked = set([target]) while len(queue) > 0: city = queue.pop(0) if city not in checked: checked.add(city) if city.maxCulture == oldMax and other in city.mergePressures: if city.mergePressures[other] > MERGE_THRESHOLD / 2: cc = city.cultures cc[newCulture] = cc[oldMax] + cc[other] if newCulture != oldMax: cc[oldMax] = 0 if newCulture != other: cc[other] = 0 city.maxCulture = newCulture for n in city.neighbors: if n not in checked: queue.append(n) city.mergePressures[other] = 0
"""Build definitions for Ruy that are specific to the open-source build.""" # Used for targets that #include <thread> def ruy_linkopts_thread_standard_library(): # In open source builds, GCC is a common occurence. It requires "-pthread" # to use the C++11 <thread> standard library header. This breaks the # opensource build on Windows and probably some other platforms, so that # will need to be fixed as needed. Ideally we would like to do this based # on GCC being the compiler, but that does not seem to be easy to achieve # with Bazel. Instead we do the following, which is copied from # https://github.com/abseil/abseil-cpp/blob/1112609635037a32435de7aa70a9188dcb591458/absl/base/BUILD.bazel#L155 return select({ "@bazel_tools//src/conditions:windows": [], "//conditions:default": ["-pthread"], })
"""Build definitions for Ruy that are specific to the open-source build.""" def ruy_linkopts_thread_standard_library(): return select({'@bazel_tools//src/conditions:windows': [], '//conditions:default': ['-pthread']})
def hello(name): print('Hello ' + name) hello('Alice') hello('Bob')
def hello(name): print('Hello ' + name) hello('Alice') hello('Bob')
''' python version limits ''' MINIMUM_VERSION = (3, 5, 0) VERSION_LIMIT = (9999, 9999, 9999)
""" python version limits """ minimum_version = (3, 5, 0) version_limit = (9999, 9999, 9999)
''' Pixel.py Essentially just holds color values in an intelligent way Author: Brandon Layton ''' class Pixel: red = 0 green = 0 blue = 0 alpha = 0 def __init__(self,red=0,green=0,blue=0,alpha=255,orig=None): if orig!=None: self.red = orig.red self.green = orig.green self.blue = orig.blue self.alpha = orig.alpha else: self.red = red self.green = green self.blue = blue self.alpha = alpha def __repr__(self): return "RGBA: ("+str(self.red)+","+str(self.green)+","+str(self.blue)+","+str(self.alpha)+")" def getRGB(self): return [self.red,self.green,self.blue] def setRGB(self,rgb): self.red = rgb[0] self.green = rgb[1] self.blue = rgb[2]
""" Pixel.py Essentially just holds color values in an intelligent way Author: Brandon Layton """ class Pixel: red = 0 green = 0 blue = 0 alpha = 0 def __init__(self, red=0, green=0, blue=0, alpha=255, orig=None): if orig != None: self.red = orig.red self.green = orig.green self.blue = orig.blue self.alpha = orig.alpha else: self.red = red self.green = green self.blue = blue self.alpha = alpha def __repr__(self): return 'RGBA: (' + str(self.red) + ',' + str(self.green) + ',' + str(self.blue) + ',' + str(self.alpha) + ')' def get_rgb(self): return [self.red, self.green, self.blue] def set_rgb(self, rgb): self.red = rgb[0] self.green = rgb[1] self.blue = rgb[2]
def drop_dataframe_values_by_threshold(dataframe, axis=1, threshold=0.75): # select axis to calculate percent of missing values mask_axis = 1 if axis == 0 else 0 # boolean mask to filter dataframe based on threshold mask = ( (dataframe.isnull().sum(axis=mask_axis) / dataframe.shape[mask_axis]) < threshold ).values if axis == 1: # get columns to drop for logging columns_to_drop = dataframe.columns[~mask].values.tolist() if len(columns_to_drop) > 0: print(f'dropping columns: {columns_to_drop}') # filter dataframe and reset index dataframe = dataframe.loc[:, mask].reset_index(drop=True) else: num_rows_original = dataframe.shape[0] # filter dataframe and reset index dataframe = dataframe.loc[mask, :].reset_index(drop=True) # calculate number of rows that are being dropped for logging num_rows_to_drop = num_rows_original - dataframe.shape[0] pct_dropped = round((num_rows_to_drop / num_rows_original) * 100, 1) print(f'dropping rows: {num_rows_to_drop} ({pct_dropped}%)') return dataframe
def drop_dataframe_values_by_threshold(dataframe, axis=1, threshold=0.75): mask_axis = 1 if axis == 0 else 0 mask = (dataframe.isnull().sum(axis=mask_axis) / dataframe.shape[mask_axis] < threshold).values if axis == 1: columns_to_drop = dataframe.columns[~mask].values.tolist() if len(columns_to_drop) > 0: print(f'dropping columns: {columns_to_drop}') dataframe = dataframe.loc[:, mask].reset_index(drop=True) else: num_rows_original = dataframe.shape[0] dataframe = dataframe.loc[mask, :].reset_index(drop=True) num_rows_to_drop = num_rows_original - dataframe.shape[0] pct_dropped = round(num_rows_to_drop / num_rows_original * 100, 1) print(f'dropping rows: {num_rows_to_drop} ({pct_dropped}%)') return dataframe
class Queue: def __init__(self): self.items = [] def enqueue(self,item): self.items.insert(0,item) def dequeue(self): return self.items.pop() def isEmpty(self): return self.items == [] def size(self): return len(self.items) q = Queue() print(q.isEmpty()) q.enqueue(234) q.enqueue("df") q.enqueue(12.10) print(q.size()) print(q.dequeue()) print(q.dequeue()) print(q.dequeue()) print(q.size())
class Queue: def __init__(self): self.items = [] def enqueue(self, item): self.items.insert(0, item) def dequeue(self): return self.items.pop() def is_empty(self): return self.items == [] def size(self): return len(self.items) q = queue() print(q.isEmpty()) q.enqueue(234) q.enqueue('df') q.enqueue(12.1) print(q.size()) print(q.dequeue()) print(q.dequeue()) print(q.dequeue()) print(q.size())
# List in py is mutable collection # Concatinaton of list # list is zero indexed # Can hold multiple data types # List supports negative indexing l = ['Jack', 1000, 20.3, True] print(l) #['Jack', 1000, 20.3, True] #l[0] == l[-4] (Negative indexing last element is indexed -1) print(l[0], l[-4]) #Jack Jack #Concatination s = l + ['John',20000] print(s) #['Jack', 1000, 20.3, True, 'John', 20000] #append (single element) l.append(30.5) print(l) #['Jack', 1000, 20.3, True, 30.5] #append (multiple elements) l.extend([11,'ok']) print(l) #['Jack', 1000, 20.3, True, 30.5, 11, 'ok'] #deleting with del del(l[1]) #Deleting element at index 1 print(l) #['Jack', 20.3, True, 30.5, 11, 'ok'] #sum() of all elements q = [10,20,30] print(sum(q)) #60 #sort() q.sort() #Default ascending order print(q) #[10, 20, 30] #reverse() q.reverse() print(q) #[30, 20, 10] #min() print(min(q)) #10 #max() print(max(q)) #30 #String to list s = 'This is python'.split() print(s) #['This', 'is', 'python'] #len() lenght of list print(len(s)) #3 #modify list s[0] = 'Loving' s[1] = 'The' print(s) #['Loving', 'The', 'python'] #slicing the list print(s[0:2]) #['Loving', 'The'] print('deep' in s) #False print('python' in s) #True #List Iteration for i in s: print(i) for i in range(len(s)): print(i, s[i]) #Print value with index
l = ['Jack', 1000, 20.3, True] print(l) print(l[0], l[-4]) s = l + ['John', 20000] print(s) l.append(30.5) print(l) l.extend([11, 'ok']) print(l) del l[1] print(l) q = [10, 20, 30] print(sum(q)) q.sort() print(q) q.reverse() print(q) print(min(q)) print(max(q)) s = 'This is python'.split() print(s) print(len(s)) s[0] = 'Loving' s[1] = 'The' print(s) print(s[0:2]) print('deep' in s) print('python' in s) for i in s: print(i) for i in range(len(s)): print(i, s[i])
#!/usr/bin/env python # # ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ # # Jiao Lin # California Institute of Technology # (C) 2005 All Rights Reserved # # {LicenseText} # # ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ # class Member: def __init__(self, type, name): self.type = type self.name = name return def identify(self, visitor): return visitor.onMember(self) pass # end of Member # version __id__ = "$Id$" # End of file
class Member: def __init__(self, type, name): self.type = type self.name = name return def identify(self, visitor): return visitor.onMember(self) pass __id__ = '$Id$'
def lengthOfLongestSubstring(s: str) -> int: """Given a string, find the length of the longest substring without repeating characters Solution: We use a window approach here so we can optimize and iterate just once through the list. When we find a repeat character, we keep the part of the substring that still remains unique, and just add the new letter and continue on. This way, we don't have to brute force from each position in the string. Args: s (str): the string to check Returns: int: the length of the longest substring in the string """ letters = [] longest = 0 for st in s: if st in letters: # Keep the substring from the last time we see the repeat letter letters = letters[letters.index(st)+1:] letters.append(st) longest = max(longest, len(letters)) return longest if __name__ == "__main__": assert lengthOfLongestSubstring("bbbbb") == 1 assert lengthOfLongestSubstring("pwwkew") == 3 assert lengthOfLongestSubstring("abcabcbb") == 3 assert lengthOfLongestSubstring("abccbcbbacde") == 5 assert lengthOfLongestSubstring("abccbailkmcbbacde") == 7 assert lengthOfLongestSubstring("dvdf") == 3 assert lengthOfLongestSubstring(" ") == 1
def length_of_longest_substring(s: str) -> int: """Given a string, find the length of the longest substring without repeating characters Solution: We use a window approach here so we can optimize and iterate just once through the list. When we find a repeat character, we keep the part of the substring that still remains unique, and just add the new letter and continue on. This way, we don't have to brute force from each position in the string. Args: s (str): the string to check Returns: int: the length of the longest substring in the string """ letters = [] longest = 0 for st in s: if st in letters: letters = letters[letters.index(st) + 1:] letters.append(st) longest = max(longest, len(letters)) return longest if __name__ == '__main__': assert length_of_longest_substring('bbbbb') == 1 assert length_of_longest_substring('pwwkew') == 3 assert length_of_longest_substring('abcabcbb') == 3 assert length_of_longest_substring('abccbcbbacde') == 5 assert length_of_longest_substring('abccbailkmcbbacde') == 7 assert length_of_longest_substring('dvdf') == 3 assert length_of_longest_substring(' ') == 1
class QueueNode(object): def __init__(self, next_node, prev_node, data): self.next_node = next_node self.prev_node = prev_node self.data = data class Queue(object): def __init__(self, first=None, last=None): self.first = first self.last = last def add(self, data): """ Add an item to the end of the list. """ if not self.last: self.last = QueueNode(self.first, None, data) else: old_node = self.last self.last = QueueNode(old_node, None, data) old_node.prev_node = self.last if not self.first: self.first = self.last def remove(self): """ Remove the first item in the queue. """ if self.isEmpty(): raise ValueError("Queue is empty cannot remove item") else: item_data = self.first.data self.first = self.first.prev_node if not self.first: self.last = None return item_data def peek(self): """ Return the top of the queue. """ if self.isEmpty(): raise ValueError("Queue is empty cannont peek.") else: return self.first.data def isEmpty(self): """ Returns True if and only if the queue is empty. """ return self.first is None
class Queuenode(object): def __init__(self, next_node, prev_node, data): self.next_node = next_node self.prev_node = prev_node self.data = data class Queue(object): def __init__(self, first=None, last=None): self.first = first self.last = last def add(self, data): """ Add an item to the end of the list. """ if not self.last: self.last = queue_node(self.first, None, data) else: old_node = self.last self.last = queue_node(old_node, None, data) old_node.prev_node = self.last if not self.first: self.first = self.last def remove(self): """ Remove the first item in the queue. """ if self.isEmpty(): raise value_error('Queue is empty cannot remove item') else: item_data = self.first.data self.first = self.first.prev_node if not self.first: self.last = None return item_data def peek(self): """ Return the top of the queue. """ if self.isEmpty(): raise value_error('Queue is empty cannont peek.') else: return self.first.data def is_empty(self): """ Returns True if and only if the queue is empty. """ return self.first is None
squares = lambda n: (i ** 2 for i in range(1, n + 1)) # generator expression print(list(squares(5))) def squares(n): i = 1 while i <= n: yield i ** 2 i += 1 print(list(squares(5)))
squares = lambda n: (i ** 2 for i in range(1, n + 1)) print(list(squares(5))) def squares(n): i = 1 while i <= n: yield (i ** 2) i += 1 print(list(squares(5)))
################################# ## ## ## 2021 (C) Amine M. Remita ## ## ## ## Laboratoire Bioinformatique ## ## Pr. Abdoulaye Diallo Group ## ## UQAM ## ## ## ################################# __author__ = "Amine Remita" __all__ = ["bayes", "markov"]
__author__ = 'Amine Remita' __all__ = ['bayes', 'markov']
"""If we list all the natural numbers below 10 that are multiples of 3 or 5, we get 3, 5, 6 and 9. The sum of these multiples is 23. Find the sum of all the multiples of 3 or 5 below 1000.""" def multipliers(muls): arr=[]; for mul in range(1,muls+1): if((mul%3==0) or (mul%5==0)): arr.append(mul) print(sum(arr)) multipliers(999)
"""If we list all the natural numbers below 10 that are multiples of 3 or 5, we get 3, 5, 6 and 9. The sum of these multiples is 23. Find the sum of all the multiples of 3 or 5 below 1000.""" def multipliers(muls): arr = [] for mul in range(1, muls + 1): if mul % 3 == 0 or mul % 5 == 0: arr.append(mul) print(sum(arr)) multipliers(999)
''' @author : CodePerfectPlus @python ''' class dog(): def __init__(self, name, age): self.name= name self.age = age def speak(self): print(f"I am {self.name} and my age is {self.age}.") one = dog("Tuktuk", 12) two = dog("Tyson",4) three = dog("Mike", 5) one.speak() two.speak() three.speak()
""" @author : CodePerfectPlus @python """ class Dog: def __init__(self, name, age): self.name = name self.age = age def speak(self): print(f'I am {self.name} and my age is {self.age}.') one = dog('Tuktuk', 12) two = dog('Tyson', 4) three = dog('Mike', 5) one.speak() two.speak() three.speak()
__author__ = 'Patrizio Tufarolo' __email__ = 'patrizio.tufarolo@studenti.unimi.it' ''' Project: testagent Author: Patrizio Tufarolo <patrizio.tufarolo@studenti.unimi.it> Date: 21/04/15 '''
__author__ = 'Patrizio Tufarolo' __email__ = 'patrizio.tufarolo@studenti.unimi.it' '\nProject: testagent\nAuthor: Patrizio Tufarolo <patrizio.tufarolo@studenti.unimi.it>\nDate: 21/04/15\n'
numbers = list(map(int,input().split())) index = input() count = 0 while index != 'End': index = int(index) if index < len(numbers): count +=1 shoot_position_num = numbers[index] for n in range(len(numbers)): if numbers[n] < 0: continue if numbers[n] > shoot_position_num: numbers[n] = numbers[n] - shoot_position_num else: numbers[n] = numbers[n] + shoot_position_num numbers[index] = -1 index = input() print(f"Shot targets: {count} -> {' '.join(map(str, numbers))}")
numbers = list(map(int, input().split())) index = input() count = 0 while index != 'End': index = int(index) if index < len(numbers): count += 1 shoot_position_num = numbers[index] for n in range(len(numbers)): if numbers[n] < 0: continue if numbers[n] > shoot_position_num: numbers[n] = numbers[n] - shoot_position_num else: numbers[n] = numbers[n] + shoot_position_num numbers[index] = -1 index = input() print(f"Shot targets: {count} -> {' '.join(map(str, numbers))}")
class Solution: def totalHammingDistance(self, nums): """ :type nums: List[int] :rtype: int """ ans = 0 for i in range(32): cnt = 0 for num in nums: if (num >> i) & 1: cnt += 1 ans += cnt * (len(nums) - cnt) return ans
class Solution: def total_hamming_distance(self, nums): """ :type nums: List[int] :rtype: int """ ans = 0 for i in range(32): cnt = 0 for num in nums: if num >> i & 1: cnt += 1 ans += cnt * (len(nums) - cnt) return ans
class AudioFrame: '' def copyfrom(): pass def is_playing(): pass def play(): pass def stop(): pass
class Audioframe: """""" def copyfrom(): pass def is_playing(): pass def play(): pass def stop(): pass
#!/usr/bin/env python def iter_block(check,r): """ Iterates through 'r', yielding a block in list form of items in r since the prior True result tested against the 'check' function. """ bunch = [] try: tr = iter(r) bunch.append(next(tr)) while True: a = next(tr) if check(a): yield bunch bunch = [] bunch.append(a) except StopIteration: if len(bunch) > 0: yield bunch def iter_block_end(check,r): """ Same as iter_block, except check's True occurs at the close of a block. """ bunch = [] try: tr = iter(r) while True: a = next(tr) bunch.append(a) if check(a): yield bunch bunch = [] except StopIteration: if len(bunch) > 0: yield bunch
def iter_block(check, r): """ Iterates through 'r', yielding a block in list form of items in r since the prior True result tested against the 'check' function. """ bunch = [] try: tr = iter(r) bunch.append(next(tr)) while True: a = next(tr) if check(a): yield bunch bunch = [] bunch.append(a) except StopIteration: if len(bunch) > 0: yield bunch def iter_block_end(check, r): """ Same as iter_block, except check's True occurs at the close of a block. """ bunch = [] try: tr = iter(r) while True: a = next(tr) bunch.append(a) if check(a): yield bunch bunch = [] except StopIteration: if len(bunch) > 0: yield bunch
class ItemResult(): source = None # ie, amazon, etc itemurl = None imageurl = None small_image_url = None medium_image_url = None large_image_url = None isbn = None
class Itemresult: source = None itemurl = None imageurl = None small_image_url = None medium_image_url = None large_image_url = None isbn = None
num = int(input()) factorial = 1 if num == 0: print("1") else: for i in range(1,num + 1): factorial = factorial*i print(factorial)
num = int(input()) factorial = 1 if num == 0: print('1') else: for i in range(1, num + 1): factorial = factorial * i print(factorial)
class Solution: def largestRectangleArea(self, heights: List[int]) -> int: stack = [] heights.append(0) mx = 0 for i, h in enumerate(heights): while stack and h < heights[stack[-1]]: height = heights[stack.pop()] if stack: left = stack[-1] else: left = -1 width = i - left - 1 mx = max(mx, height * width) stack.append(i) return mx
class Solution: def largest_rectangle_area(self, heights: List[int]) -> int: stack = [] heights.append(0) mx = 0 for (i, h) in enumerate(heights): while stack and h < heights[stack[-1]]: height = heights[stack.pop()] if stack: left = stack[-1] else: left = -1 width = i - left - 1 mx = max(mx, height * width) stack.append(i) return mx
def is_prime(x): if x > 2: for i in range(2, x): if x % i == 0: return False return True elif x == 0 or x == 1: return False elif x == 2: return True print(is_prime(9))
def is_prime(x): if x > 2: for i in range(2, x): if x % i == 0: return False return True elif x == 0 or x == 1: return False elif x == 2: return True print(is_prime(9))
#047 - Contagem de pares for n in range(2, 51, 2): print(n, end=' ') print('acabou')
for n in range(2, 51, 2): print(n, end=' ') print('acabou')
class Inventory: def __init__(self): self.stuff = [] def add(self, item): self.stuff.append(item) def drop(self, item): self.stuff.remove(item) return item def has(self, item): return item in self.stuff def all(self): return self.stuff
class Inventory: def __init__(self): self.stuff = [] def add(self, item): self.stuff.append(item) def drop(self, item): self.stuff.remove(item) return item def has(self, item): return item in self.stuff def all(self): return self.stuff
""" __version__.py ~~~~~~~~~~~~~~ Information about the current version of the package. """ __title__ = 'AI' __description__ = 'Simple Image Classificator Models' __version__ = '0.0.1' __author__ = 'Yast.AI' __author_email__ = 'yastai.data@gmail.com' __license__ = 'MIT License' __url__ = 'https://github.com/yast-ia/YastAI'
""" __version__.py ~~~~~~~~~~~~~~ Information about the current version of the package. """ __title__ = 'AI' __description__ = 'Simple Image Classificator Models' __version__ = '0.0.1' __author__ = 'Yast.AI' __author_email__ = 'yastai.data@gmail.com' __license__ = 'MIT License' __url__ = 'https://github.com/yast-ia/YastAI'
s=input() i=0 while i<len(s): if s[i]=='-' and s[i+1]=='-': print("2",end="") i+=2 elif s[i]=='-' and s[i+1]=='.': print("1",end="") i+=2 else: print("0",end="") i+=1
s = input() i = 0 while i < len(s): if s[i] == '-' and s[i + 1] == '-': print('2', end='') i += 2 elif s[i] == '-' and s[i + 1] == '.': print('1', end='') i += 2 else: print('0', end='') i += 1
def inc_hash(the_hash,the_key): try: the_hash[the_key] except: the_hash[the_key] = 0 pass finally: the_hash[the_key] += 1 def inc_double_key_hash(the_hash,the_key1,the_key2): try: the_hash[the_key1] except: the_hash[the_key1] = {} pass try: the_hash[the_key1][the_key2] except: the_hash[the_key1][the_key2] = 0 pass print(the_hash[the_key1][the_key2]) the_hash[the_key1][the_key2] += 1 def insert_double_key_hash(the_hash,the_key1,the_key2,the_value): try: the_hash[the_key1] except: the_hash[the_key1] = {} the_hash[the_key1][the_key2] = the_value def has_double_key_hash(the_hash,the_key1,the_key2): return_value = False try: the_hash[the_key1][the_key2] return_value = True except: pass return return_value
def inc_hash(the_hash, the_key): try: the_hash[the_key] except: the_hash[the_key] = 0 pass finally: the_hash[the_key] += 1 def inc_double_key_hash(the_hash, the_key1, the_key2): try: the_hash[the_key1] except: the_hash[the_key1] = {} pass try: the_hash[the_key1][the_key2] except: the_hash[the_key1][the_key2] = 0 pass print(the_hash[the_key1][the_key2]) the_hash[the_key1][the_key2] += 1 def insert_double_key_hash(the_hash, the_key1, the_key2, the_value): try: the_hash[the_key1] except: the_hash[the_key1] = {} the_hash[the_key1][the_key2] = the_value def has_double_key_hash(the_hash, the_key1, the_key2): return_value = False try: the_hash[the_key1][the_key2] return_value = True except: pass return return_value
# Copyright 2019 The Jetstack cert-manager contributors. # # 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. # This file is automatically updated by hack/update-deps.sh load("@bazel_gazelle//:deps.bzl", "go_repository") # Manually defined repositories are kept separate to keep things easy to # maintain. def manual_repositories(): # This is needed to avoid errors when building @io_k8s_code_generator cmd/ # targets that look like: # ERROR: /private/var/tmp/_bazel_james/7efc976e92b56f94fd5066e3c9f5d356/external/org_golang_x_tools/internal/imports/BUILD.bazel:3:1: no such package '@org_golang_x_mod//semver': The repository '@org_golang_x_mod' could not be resolved and referenced by '@org_golang_x_tools//internal/imports:go_default_library' go_repository( name = "org_golang_x_mod", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "golang.org/x/mod", sum = "h1:KU7oHjnv3XNWfa5COkzUifxZmxp1TyI7ImMXqFxLwvQ=", version = "v0.2.0", ) def go_repositories(): manual_repositories() go_repository( name = "co_honnef_go_tools", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "honnef.co/go/tools", sum = "h1:3JgtbtFHMiCmsznwGVTUWbgGov+pVqnlf1dEJTNAXeM=", version = "v0.0.1-2019.2.3", ) go_repository( name = "com_github_alecthomas_template", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/alecthomas/template", sum = "h1:JYp7IbQjafoB+tBA3gMyHYHrpOtNuDiK/uB5uXxq5wM=", version = "v0.0.0-20190718012654-fb15b899a751", ) go_repository( name = "com_github_alecthomas_units", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/alecthomas/units", sum = "h1:Hs82Z41s6SdL1CELW+XaDYmOH4hkBN4/N9og/AsOv7E=", version = "v0.0.0-20190717042225-c3de453c63f4", ) go_repository( name = "com_github_armon_consul_api", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/armon/consul-api", sum = "h1:G1bPvciwNyF7IUmKXNt9Ak3m6u9DE1rF+RmtIkBpVdA=", version = "v0.0.0-20180202201655-eb2c6b5be1b6", ) go_repository( name = "com_github_armon_go_metrics", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/armon/go-metrics", sum = "h1:8GUt8eRujhVEGZFFEjBj46YV4rDjvGrNxb0KMWYkL2I=", version = "v0.0.0-20180917152333-f0300d1749da", ) go_repository( name = "com_github_armon_go_radix", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/armon/go-radix", sum = "h1:BUAU3CGlLvorLI26FmByPp2eC2qla6E1Tw+scpcg/to=", version = "v0.0.0-20180808171621-7fddfc383310", ) go_repository( name = "com_github_asaskevich_govalidator", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/asaskevich/govalidator", sum = "h1:idn718Q4B6AGu/h5Sxe66HYVdqdGu2l9Iebqhi/AEoA=", version = "v0.0.0-20190424111038-f61b66f89f4a", ) go_repository( name = "com_github_aws_aws_sdk_go", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/aws/aws-sdk-go", sum = "h1:izATc/E0+HcT5YHmaQVjn7GHCoqaBxn0PGo6Zq5UNFA=", version = "v1.34.30", ) go_repository( name = "com_github_azure_azure_sdk_for_go", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/Azure/azure-sdk-for-go", sum = "h1:m4oQOm3HXtQh2Ipata+pLSS1kGUD/7ikkvNq81XM/7s=", version = "v46.3.0+incompatible", ) go_repository( name = "com_github_azure_go_ansiterm", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/Azure/go-ansiterm", sum = "h1:w+iIsaOQNcT7OZ575w+acHgRric5iCyQh+xv+KJ4HB8=", version = "v0.0.0-20170929234023-d6e3b3328b78", ) go_repository( name = "com_github_azure_go_autorest_autorest", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/Azure/go-autorest/autorest", sum = "h1:LIzfhNo9I3+il0KO2JY1/lgJmjig7lY0wFulQNZkbtg=", version = "v0.11.6", ) go_repository( name = "com_github_azure_go_autorest_autorest_adal", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/Azure/go-autorest/autorest/adal", sum = "h1:1/DtH4Szusk4psLBrJn/gocMRIf1ji30WAz3GfyULRQ=", version = "v0.9.4", ) go_repository( name = "com_github_azure_go_autorest_autorest_date", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/Azure/go-autorest/autorest/date", sum = "h1:7gUk1U5M/CQbp9WoqinNzJar+8KY+LPI6wiWrP/myHw=", version = "v0.3.0", ) go_repository( name = "com_github_azure_go_autorest_autorest_mocks", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/Azure/go-autorest/autorest/mocks", sum = "h1:K0laFcLE6VLTOwNgSxaGbUcLPuGXlNkbVvq4cW4nIHk=", version = "v0.4.1", ) go_repository( name = "com_github_azure_go_autorest_autorest_to", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/Azure/go-autorest/autorest/to", sum = "h1:oXVqrxakqqV1UZdSazDOPOLvOIz+XA683u8EctwboHk=", version = "v0.4.0", ) go_repository( name = "com_github_azure_go_autorest_autorest_validation", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/Azure/go-autorest/autorest/validation", sum = "h1:3I9AAI63HfcLtphd9g39ruUwRI+Ca+z/f36KHPFRUss=", version = "v0.3.0", ) go_repository( name = "com_github_azure_go_autorest_logger", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/Azure/go-autorest/logger", sum = "h1:e4RVHVZKC5p6UANLJHkM4OfR1UKZPj8Wt8Pcx+3oqrE=", version = "v0.2.0", ) go_repository( name = "com_github_azure_go_autorest_tracing", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/Azure/go-autorest/tracing", sum = "h1:TYi4+3m5t6K48TGI9AUdb+IzbnSxvnvUMfuitfgcfuo=", version = "v0.6.0", ) go_repository( name = "com_github_beorn7_perks", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/beorn7/perks", sum = "h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM=", version = "v1.0.1", ) go_repository( name = "com_github_bitly_go_hostpool", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/bitly/go-hostpool", sum = "h1:mXoPYz/Ul5HYEDvkta6I8/rnYM5gSdSV2tJ6XbZuEtY=", version = "v0.0.0-20171023180738-a3a6125de932", ) go_repository( name = "com_github_blang_semver", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/blang/semver", sum = "h1:CGxCgetQ64DKk7rdZ++Vfnb1+ogGNnB17OJKJXD2Cfs=", version = "v3.5.0+incompatible", ) go_repository( name = "com_github_bmizerany_assert", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/bmizerany/assert", sum = "h1:DDGfHa7BWjL4YnC6+E63dPcxHo2sUxDIu8g3QgEJdRY=", version = "v0.0.0-20160611221934-b7ed37b82869", ) go_repository( name = "com_github_burntsushi_toml", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/BurntSushi/toml", sum = "h1:WXkYYl6Yr3qBf1K79EBnL4mak0OimBfB0XUf9Vl28OQ=", version = "v0.3.1", ) go_repository( name = "com_github_burntsushi_xgb", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/BurntSushi/xgb", sum = "h1:1BDTz0u9nC3//pOCMdNH+CiXJVYJh5UQNCOBG7jbELc=", version = "v0.0.0-20160522181843-27f122750802", ) go_repository( name = "com_github_cenkalti_backoff", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/cenkalti/backoff", sum = "h1:tNowT99t7UNflLxfYYSlKYsBpXdEet03Pg2g16Swow4=", version = "v2.2.1+incompatible", ) go_repository( name = "com_github_client9_misspell", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/client9/misspell", sum = "h1:ta993UF76GwbvJcIo3Y68y/M3WxlpEHPWIGDkJYwzJI=", version = "v0.3.4", ) go_repository( name = "com_github_cloudflare_cloudflare_go", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/cloudflare/cloudflare-go", sum = "h1:bhMGoNhAg21DuqJjU9jQepRRft6vYfo6pejT3NN4V6A=", version = "v0.13.2", ) go_repository( name = "com_github_containerd_continuity", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/containerd/continuity", sum = "h1:4BX8f882bXEDKfWIf0wa8HRvpnBoPszJJXL+TVbBw4M=", version = "v0.0.0-20181203112020-004b46473808", ) go_repository( name = "com_github_coreos_bbolt", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/coreos/bbolt", sum = "h1:wZwiHHUieZCquLkDL0B8UhzreNWsPHooDAG3q34zk0s=", version = "v1.3.2", ) go_repository( name = "com_github_coreos_etcd", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/coreos/etcd", sum = "h1:8F3hqu9fGYLBifCmRCJsicFqDx/D68Rt3q1JMazcgBQ=", version = "v3.3.13+incompatible", ) go_repository( name = "com_github_coreos_go_etcd", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/coreos/go-etcd", sum = "h1:bXhRBIXoTm9BYHS3gE0TtQuyNZyeEMux2sDi4oo5YOo=", version = "v2.0.0+incompatible", ) go_repository( name = "com_github_coreos_go_oidc", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/coreos/go-oidc", sum = "h1:sdJrfw8akMnCuUlaZU3tE/uYXFgfqom8DBE9so9EBsM=", version = "v2.1.0+incompatible", ) go_repository( name = "com_github_coreos_go_semver", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/coreos/go-semver", sum = "h1:wkHLiw0WNATZnSG7epLsujiMCgPAc9xhjJ4tgnAxmfM=", version = "v0.3.0", ) go_repository( name = "com_github_coreos_go_systemd", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/coreos/go-systemd", sum = "h1:Wf6HqHfScWJN9/ZjdUKyjop4mf3Qdd+1TvvltAvM3m8=", version = "v0.0.0-20190321100706-95778dfbb74e", ) go_repository( name = "com_github_coreos_pkg", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/coreos/pkg", sum = "h1:lBNOc5arjvs8E5mO2tbpBpLoyyu8B6e44T7hJy6potg=", version = "v0.0.0-20180928190104-399ea9e2e55f", ) go_repository( name = "com_github_cpu_goacmedns", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/cpu/goacmedns", sum = "h1:QOeMpIEsIdm1LSASSswjaTf8CXmzcrgy5OeCfHjppA4=", version = "v0.0.3", ) go_repository( name = "com_github_cpuguy83_go_md2man", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/cpuguy83/go-md2man", sum = "h1:BSKMNlYxDvnunlTymqtgONjNnaRV1sTpcovwwjF22jk=", version = "v1.0.10", ) go_repository( name = "com_github_davecgh_go_spew", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/davecgh/go-spew", sum = "h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=", version = "v1.1.1", ) go_repository( name = "com_github_denisenkom_go_mssqldb", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/denisenkom/go-mssqldb", sum = "h1:yJ2kD1BvM28M4gt31MuDr0ROKsW+v6zBk9G0Bcr8qAY=", version = "v0.0.0-20190412130859-3b1d194e553a", ) go_repository( name = "com_github_dgrijalva_jwt_go", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/dgrijalva/jwt-go", sum = "h1:7qlOGliEKZXTDg6OTjfoBKDXWrumCAMpl/TFQ4/5kLM=", version = "v3.2.0+incompatible", ) go_repository( name = "com_github_digitalocean_godo", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/digitalocean/godo", sum = "h1:IMElzMUpO1dVR8qjSg53+5vDkOLzMbhJt4yTAq7NGCQ=", version = "v1.44.0", ) go_repository( name = "com_github_docker_docker", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/docker/docker", sum = "h1:w3NnFcKR5241cfmQU5ZZAsf0xcpId6mWOupTvJlUX2U=", version = "v0.7.3-0.20190327010347-be7ac8be2ae0", ) go_repository( name = "com_github_docker_go_connections", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/docker/go-connections", sum = "h1:El9xVISelRB7BuFusrZozjnkIM5YnzCViNKohAFqRJQ=", version = "v0.4.0", ) go_repository( name = "com_github_docker_go_units", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/docker/go-units", sum = "h1:3uh0PgVws3nIA0Q+MwDC8yjEPf9zjRfZZWXZYDct3Tw=", version = "v0.4.0", ) go_repository( name = "com_github_docker_spdystream", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/docker/spdystream", sum = "h1:cenwrSVm+Z7QLSV/BsnenAOcDXdX4cMv4wP0B/5QbPg=", version = "v0.0.0-20160310174837-449fdfce4d96", ) go_repository( name = "com_github_duosecurity_duo_api_golang", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/duosecurity/duo_api_golang", sum = "h1:2MIhn2R6oXQbgW5yHfS+d6YqyMfXiu2L55rFZC4UD/M=", version = "v0.0.0-20190308151101-6c680f768e74", ) go_repository( name = "com_github_elazarl_goproxy", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/elazarl/goproxy", sum = "h1:yUdfgN0XgIJw7foRItutHYUIhlcKzcSf5vDpdhQAKTc=", version = "v0.0.0-20180725130230-947c36da3153", ) go_repository( name = "com_github_emicklei_go_restful", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/emicklei/go-restful", sum = "h1:spTtZBk5DYEvbxMVutUuTyh1Ao2r4iyvLdACqsl/Ljk=", version = "v2.9.5+incompatible", ) go_repository( name = "com_github_evanphx_json_patch", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/evanphx/json-patch", sum = "h1:kLcOMZeuLAJvL2BPWLMIj5oaZQobrkAqrL+WFZwQses=", version = "v4.9.0+incompatible", ) go_repository( name = "com_github_fatih_color", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/fatih/color", sum = "h1:DkWD4oS2D8LGGgTQ6IvwJJXSL5Vp2ffcQg58nFV38Ys=", version = "v1.7.0", ) go_repository( name = "com_github_fatih_structs", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/fatih/structs", sum = "h1:Q7juDM0QtcnhCpeyLGQKyg4TOIghuNXrkL32pHAUMxo=", version = "v1.1.0", ) go_repository( name = "com_github_fsnotify_fsnotify", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/fsnotify/fsnotify", sum = "h1:hsms1Qyu0jgnwNXIxa+/V/PDsU6CfLf6CNO8H7IWoS4=", version = "v1.4.9", ) go_repository( name = "com_github_ghodss_yaml", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/ghodss/yaml", sum = "h1:wQHKEahhL6wmXdzwWG11gIVCkOv05bNOh+Rxn0yngAk=", version = "v1.0.0", ) go_repository( name = "com_github_globalsign_mgo", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/globalsign/mgo", sum = "h1:DujepqpGd1hyOd7aW59XpK7Qymp8iy83xq74fLr21is=", version = "v0.0.0-20181015135952-eeefdecb41b8", ) go_repository( name = "com_github_go_ini_ini", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/go-ini/ini", sum = "h1:TWr1wGj35+UiWHlBA8er89seFXxzwFn11spilrrj+38=", version = "v1.42.0", ) go_repository( name = "com_github_go_kit_kit", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/go-kit/kit", sum = "h1:wDJmvq38kDhkVxi50ni9ykkdUr1PKgqKOoi01fa0Mdk=", version = "v0.9.0", ) go_repository( name = "com_github_go_logfmt_logfmt", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/go-logfmt/logfmt", sum = "h1:MP4Eh7ZCb31lleYCFuwm0oe4/YGak+5l1vA2NOE80nA=", version = "v0.4.0", ) go_repository( name = "com_github_go_logr_logr", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/go-logr/logr", sum = "h1:ZPVluSmhtMIHlqUDMZu70FgMpRzbQfl4h9oKCAXOVDE=", version = "v0.2.1-0.20200730175230-ee2de8da5be6", ) go_repository( name = "com_github_go_logr_zapr", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/go-logr/zapr", sum = "h1:qXBXPDdNncunGs7XeEpsJt8wCjYBygluzfdLO0G5baE=", version = "v0.1.1", ) go_repository( name = "com_github_go_openapi_analysis", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/go-openapi/analysis", sum = "h1:8b2ZgKfKIUTVQpTb77MoRDIMEIwvDVw40o3aOXdfYzI=", version = "v0.19.5", ) go_repository( name = "com_github_go_openapi_errors", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/go-openapi/errors", sum = "h1:a2kIyV3w+OS3S97zxUndRVD46+FhGOUBDFY7nmu4CsY=", version = "v0.19.2", ) go_repository( name = "com_github_go_openapi_jsonpointer", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/go-openapi/jsonpointer", sum = "h1:gihV7YNZK1iK6Tgwwsxo2rJbD1GTbdm72325Bq8FI3w=", version = "v0.19.3", ) go_repository( name = "com_github_go_openapi_jsonreference", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/go-openapi/jsonreference", sum = "h1:5cxNfTy0UVC3X8JL5ymxzyoUZmo8iZb+jeTWn7tUa8o=", version = "v0.19.3", ) go_repository( name = "com_github_go_openapi_loads", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/go-openapi/loads", sum = "h1:5I4CCSqoWzT+82bBkNIvmLc0UOsoKKQ4Fz+3VxOB7SY=", version = "v0.19.4", ) go_repository( name = "com_github_go_openapi_runtime", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/go-openapi/runtime", sum = "h1:csnOgcgAiuGoM/Po7PEpKDoNulCcF3FGbSnbHfxgjMI=", version = "v0.19.4", ) go_repository( name = "com_github_go_openapi_spec", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/go-openapi/spec", sum = "h1:0XRyw8kguri6Yw4SxhsQA/atC88yqrk0+G4YhI2wabc=", version = "v0.19.3", ) go_repository( name = "com_github_go_openapi_strfmt", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/go-openapi/strfmt", sum = "h1:eRfyY5SkaNJCAwmmMcADjY31ow9+N7MCLW7oRkbsINA=", version = "v0.19.3", ) go_repository( name = "com_github_go_openapi_swag", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/go-openapi/swag", sum = "h1:lTz6Ys4CmqqCQmZPBlbQENR1/GucA2bzYTE12Pw4tFY=", version = "v0.19.5", ) go_repository( name = "com_github_go_openapi_validate", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/go-openapi/validate", sum = "h1:QhCBKRYqZR+SKo4gl1lPhPahope8/RLt6EVgY8X80w0=", version = "v0.19.5", ) go_repository( name = "com_github_go_sql_driver_mysql", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/go-sql-driver/mysql", sum = "h1:ozyZYNQW3x3HtqT1jira07DN2PArx2v7/mN66gGcHOs=", version = "v1.5.0", ) go_repository( name = "com_github_go_stack_stack", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/go-stack/stack", sum = "h1:5SgMzNM5HxrEjV0ww2lTmX6E2Izsfxas4+YHWRs3Lsk=", version = "v1.8.0", ) go_repository( name = "com_github_gobuffalo_flect", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/gobuffalo/flect", sum = "h1:EWCvMGGxOjsgwlWaP+f4+Hh6yrrte7JeFL2S6b+0hdM=", version = "v0.2.0", ) go_repository( name = "com_github_gocql_gocql", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/gocql/gocql", sum = "h1:fwXmhM0OqixzJDOGgTSyNH9eEDij9uGTXwsyWXvyR0A=", version = "v0.0.0-20190402132108-0e1d5de854df", ) go_repository( name = "com_github_gogo_protobuf", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/gogo/protobuf", sum = "h1:DqDEcV5aeaTmdFBePNpYsp3FlcVH/2ISVVM9Qf8PSls=", version = "v1.3.1", ) go_repository( name = "com_github_golang_glog", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/golang/glog", sum = "h1:VKtxabqXZkF25pY9ekfRL6a582T4P37/31XEstQ5p58=", version = "v0.0.0-20160126235308-23def4e6c14b", ) go_repository( name = "com_github_golang_groupcache", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/golang/groupcache", sum = "h1:5ZkaAPbicIKTF2I64qf5Fh8Aa83Q/dnOafMYV0OMwjA=", version = "v0.0.0-20191227052852-215e87163ea7", ) go_repository( name = "com_github_golang_mock", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/golang/mock", sum = "h1:qGJ6qTW+x6xX/my+8YUVl4WNpX9B7+/l2tRsHGZ7f2s=", version = "v1.3.1", ) go_repository( name = "com_github_golang_protobuf", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/golang/protobuf", sum = "h1:+Z5KGCizgyZCbGh1KZqA0fcLLkwbsjIzS4aV2v7wJX0=", version = "v1.4.2", ) go_repository( name = "com_github_golang_snappy", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/golang/snappy", sum = "h1:Qgr9rKW7uDUkrbSmQeiDsGa8SjGyCOGtuasMWwvp2P4=", version = "v0.0.1", ) go_repository( name = "com_github_google_btree", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/google/btree", sum = "h1:0udJVsspx3VBr5FwtLhQQtuAsVc79tTq0ocGIPAU6qo=", version = "v1.0.0", ) go_repository( name = "com_github_google_go_cmp", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/google/go-cmp", sum = "h1:/exdXoGamhu5ONeUJH0deniYLWYvQwW66yvlfiiKTu0=", version = "v0.4.1", ) go_repository( name = "com_github_google_go_github", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/google/go-github", sum = "h1:N0LgJ1j65A7kfXrZnUDaYCs/Sf4rEjNlfyDHW9dolSY=", version = "v17.0.0+incompatible", ) go_repository( name = "com_github_google_go_querystring", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/google/go-querystring", sum = "h1:Xkwi/a1rcvNg1PPYe5vI8GbeBY/jrVuDX5ASuANWTrk=", version = "v1.0.0", ) go_repository( name = "com_github_google_gofuzz", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/google/gofuzz", sum = "h1:xRy4A+RhZaiKjJ1bPfwQ8sedCA+YS2YcCHW6ec7JMi0=", version = "v1.2.0", ) go_repository( name = "com_github_google_martian", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/google/martian", sum = "h1:/CP5g8u/VJHijgedC/Legn3BAbAaWPgecwXBIDzw5no=", version = "v2.1.0+incompatible", ) go_repository( name = "com_github_google_pprof", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/google/pprof", sum = "h1:DLpL8pWq0v4JYoRpEhDfsJhhJyGKCcQM2WPW2TJs31c=", version = "v0.0.0-20191218002539-d4f498aebedc", ) go_repository( name = "com_github_google_uuid", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/google/uuid", sum = "h1:Gkbcsh/GbpXz7lPftLA3P6TYMwjCLYm83jiFQZF/3gY=", version = "v1.1.1", ) go_repository( name = "com_github_googleapis_gax_go_v2", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/googleapis/gax-go/v2", sum = "h1:sjZBwGj9Jlw33ImPtvFviGYvseOtDM7hkSKB7+Tv3SM=", version = "v2.0.5", ) go_repository( name = "com_github_googleapis_gnostic", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/googleapis/gnostic", sum = "h1:DLJCy1n/vrD4HPjOvYcT8aYQXpPIzoRZONaYwyycI+I=", version = "v0.4.1", ) go_repository( name = "com_github_gophercloud_gophercloud", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/gophercloud/gophercloud", sum = "h1:P/nh25+rzXouhytV2pUHBb65fnds26Ghl8/391+sT5o=", version = "v0.1.0", ) go_repository( name = "com_github_gopherjs_gopherjs", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/gopherjs/gopherjs", sum = "h1:EGx4pi6eqNxGaHF6qqu48+N2wcFQ5qg5FXgOdqsJ5d8=", version = "v0.0.0-20181017120253-0766667cb4d1", ) go_repository( name = "com_github_gorilla_context", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/gorilla/context", sum = "h1:AWwleXJkX/nhcU9bZSnZoi3h/qGYqQAGhq6zZe/aQW8=", version = "v1.1.1", ) go_repository( name = "com_github_gorilla_mux", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/gorilla/mux", sum = "h1:i40aqfkR1h2SlN9hojwV5ZA91wcXFOvkdNIeFDP5koI=", version = "v1.8.0", ) go_repository( name = "com_github_gorilla_websocket", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/gorilla/websocket", sum = "h1:+/TMaTYc4QFitKJxsQ7Yye35DkWvkdLcvGKqM+x0Ufc=", version = "v1.4.2", ) go_repository( name = "com_github_gotestyourself_gotestyourself", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/gotestyourself/gotestyourself", sum = "h1:AQwinXlbQR2HvPjQZOmDhRqsv5mZf+Jb1RnSLxcqZcI=", version = "v2.2.0+incompatible", ) go_repository( name = "com_github_gregjones_httpcache", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/gregjones/httpcache", sum = "h1:pdN6V1QBWetyv/0+wjACpqVH+eVULgEjkurDLq3goeM=", version = "v0.0.0-20180305231024-9cad4c3443a7", ) go_repository( name = "com_github_grpc_ecosystem_go_grpc_middleware", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/grpc-ecosystem/go-grpc-middleware", sum = "h1:z53tR0945TRRQO/fLEVPI6SMv7ZflF0TEaTAoU7tOzg=", version = "v1.0.1-0.20190118093823-f849b5445de4", ) go_repository( name = "com_github_grpc_ecosystem_go_grpc_prometheus", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/grpc-ecosystem/go-grpc-prometheus", sum = "h1:Ovs26xHkKqVztRpIrF/92BcuyuQ/YW4NSIpoGtfXNho=", version = "v1.2.0", ) go_repository( name = "com_github_grpc_ecosystem_grpc_gateway", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/grpc-ecosystem/grpc-gateway", sum = "h1:UImYN5qQ8tuGpGE16ZmjvcTtTw24zw1QAp/SlnNrZhI=", version = "v1.9.5", ) go_repository( name = "com_github_hailocab_go_hostpool", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/hailocab/go-hostpool", sum = "h1:5upAirOpQc1Q53c0bnx2ufif5kANL7bfZWcc6VJWJd8=", version = "v0.0.0-20160125115350-e80d13ce29ed", ) go_repository( name = "com_github_hashicorp_errwrap", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/hashicorp/errwrap", sum = "h1:hLrqtEDnRye3+sgx6z4qVLNuviH3MR5aQ0ykNJa/UYA=", version = "v1.0.0", ) go_repository( name = "com_github_hashicorp_go_cleanhttp", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/hashicorp/go-cleanhttp", sum = "h1:dH3aiDG9Jvb5r5+bYHsikaOUIpcM0xvgMXVoDkXMzJM=", version = "v0.5.1", ) go_repository( name = "com_github_hashicorp_go_hclog", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/hashicorp/go-hclog", sum = "h1:z3ollgGRg8RjfJH6UVBaG54R70GFd++QOkvnJH3VSBY=", version = "v0.8.0", ) go_repository( name = "com_github_hashicorp_go_immutable_radix", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/hashicorp/go-immutable-radix", sum = "h1:AKDB1HM5PWEA7i4nhcpwOrO2byshxBjXVn/J/3+z5/0=", version = "v1.0.0", ) go_repository( name = "com_github_hashicorp_go_memdb", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/hashicorp/go-memdb", sum = "h1:K1O4N2VPndZiTrdH3lmmf5bemr9Xw81KjVwhReIUjTQ=", version = "v1.0.0", ) go_repository( name = "com_github_hashicorp_go_multierror", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/hashicorp/go-multierror", sum = "h1:iVjPR7a6H0tWELX5NxNe7bYopibicUzc7uPribsnS6o=", version = "v1.0.0", ) go_repository( name = "com_github_hashicorp_go_plugin", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/hashicorp/go-plugin", sum = "h1:4OtAfUGbnKC6yS48p0CtMX2oFYtzFZVv6rok3cRWgnE=", version = "v1.0.1", ) go_repository( name = "com_github_hashicorp_go_rootcerts", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/hashicorp/go-rootcerts", sum = "h1:DMo4fmknnz0E0evoNYnV48RjWndOsmd6OW+09R3cEP8=", version = "v1.0.1", ) go_repository( name = "com_github_hashicorp_go_uuid", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/hashicorp/go-uuid", sum = "h1:fv1ep09latC32wFoVwnqcnKJGnMSdBanPczbHAYm1BE=", version = "v1.0.1", ) go_repository( name = "com_github_hashicorp_go_version", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/hashicorp/go-version", sum = "h1:bPIoEKD27tNdebFGGxxYwcL4nepeY4j1QP23PFRGzg0=", version = "v1.1.0", ) go_repository( name = "com_github_hashicorp_golang_lru", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/hashicorp/golang-lru", sum = "h1:YDjusn29QI/Das2iO9M0BHnIbxPeyuCHsjMW+lJfyTc=", version = "v0.5.4", ) go_repository( name = "com_github_hashicorp_golang_math_big", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/hashicorp/golang-math-big", sum = "h1:hGeXuXeccEhqbXZFgPdRq4oaaBE6QPve/X7A1VFiPhA=", version = "v0.0.0-20180316142257-561262b71329", ) go_repository( name = "com_github_hashicorp_hcl", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/hashicorp/hcl", sum = "h1:0Anlzjpi4vEasTeNFn2mLJgTSwt0+6sfsiTG8qcWGx4=", version = "v1.0.0", ) go_repository( name = "com_github_hashicorp_vault_api", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/hashicorp/vault/api", sum = "h1:j08Or/wryXT4AcHj1oCbMd7IijXcKzYUGw59LGu9onU=", version = "v1.0.4", ) go_repository( name = "com_github_hashicorp_vault_sdk", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/hashicorp/vault/sdk", sum = "h1:mOEPeOhT7jl0J4AMl1E705+BcmeRs1VmKNb9F0sMLy8=", version = "v0.1.13", ) go_repository( name = "com_github_hashicorp_go_retryablehttp", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/hashicorp/go-retryablehttp", sum = "h1:1BZvpawXoJCWX6pNtow9+rpEj+3itIlutiqnntI6jOE=", version = "v0.5.4", ) go_repository( name = "com_github_hashicorp_go_sockaddr", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/hashicorp/go-sockaddr", sum = "h1:ztczhD1jLxIRjVejw8gFomI1BQZOe2WoVOu0SyteCQc=", version = "v1.0.2", ) go_repository( name = "com_github_hashicorp_yamux", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/hashicorp/yamux", sum = "h1:kJCB4vdITiW1eC1vq2e6IsrXKrZit1bv/TDYFGMp4BQ=", version = "v0.0.0-20181012175058-2f1d1f20f75d", ) go_repository( name = "com_github_howeyc_gopass", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/howeyc/gopass", sum = "h1:kQWxfPIHVLbgLzphqk3QUflDy9QdksZR4ygR807bpy0=", version = "v0.0.0-20170109162249-bf9dde6d0d2c", ) go_repository( name = "com_github_hpcloud_tail", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/hpcloud/tail", sum = "h1:nfCOvKYfkgYP8hkirhJocXT2+zOD8yUNjXaWfTlyFKI=", version = "v1.0.0", ) go_repository( name = "com_github_imdario_mergo", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/imdario/mergo", sum = "h1:UauaLniWCFHWd+Jp9oCEkTBj8VO/9DKg3PV3VCNMDIg=", version = "v0.3.9", ) go_repository( name = "com_github_inconshreveable_mousetrap", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/inconshreveable/mousetrap", sum = "h1:Z8tu5sraLXCXIcARxBp/8cbvlwVa7Z1NHg9XEKhtSvM=", version = "v1.0.0", ) go_repository( name = "com_github_jeffail_gabs", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/Jeffail/gabs", sum = "h1:V0uzR08Hj22EX8+8QMhyI9sX2hwRu+/RJhJUmnwda/E=", version = "v1.1.1", ) go_repository( name = "com_github_jefferai_jsonx", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/jefferai/jsonx", sum = "h1:Xoz0ZbmkpBvED5W9W1B5B/zc3Oiq7oXqiW7iRV3B6EI=", version = "v1.0.0", ) go_repository( name = "com_github_jmespath_go_jmespath", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/jmespath/go-jmespath", sum = "h1:BEgLn5cpjn8UN1mAw4NjwDrS35OdebyEtFe+9YPoQUg=", version = "v0.4.0", ) go_repository( name = "com_github_jonboulle_clockwork", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/jonboulle/clockwork", sum = "h1:VKV+ZcuP6l3yW9doeqz6ziZGgcynBVQO+obU0+0hcPo=", version = "v0.1.0", ) go_repository( name = "com_github_json_iterator_go", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/json-iterator/go", sum = "h1:Kz6Cvnvv2wGdaG/V8yMvfkmNiXq9Ya2KUv4rouJJr68=", version = "v1.1.10", ) go_repository( name = "com_github_jstemmer_go_junit_report", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/jstemmer/go-junit-report", sum = "h1:6QPYqodiu3GuPL+7mfx+NwDdp2eTkp9IfEUpgAwUN0o=", version = "v0.9.1", ) go_repository( name = "com_github_jtolds_gls", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/jtolds/gls", sum = "h1:xdiiI2gbIgH/gLH7ADydsJ1uDOEzR8yvV7C0MuV77Wo=", version = "v4.20.0+incompatible", ) go_repository( name = "com_github_julienschmidt_httprouter", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/julienschmidt/httprouter", sum = "h1:TDTW5Yz1mjftljbcKqRcrYhd4XeOoI98t+9HbQbYf7g=", version = "v1.2.0", ) go_repository( name = "com_github_keybase_go_crypto", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/keybase/go-crypto", sum = "h1:Gsc9mVHLRqBjMgdQCghN9NObCcRncDqxJvBvEaIIQEo=", version = "v0.0.0-20190403132359-d65b6b94177f", ) go_repository( name = "com_github_kisielk_errcheck", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/kisielk/errcheck", sum = "h1:reN85Pxc5larApoH1keMBiu2GWtPqXQ1nc9gx+jOU+E=", version = "v1.2.0", ) go_repository( name = "com_github_kisielk_gotool", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/kisielk/gotool", sum = "h1:AV2c/EiW3KqPNT9ZKl07ehoAGi4C5/01Cfbblndcapg=", version = "v1.0.0", ) go_repository( name = "com_github_konsorten_go_windows_terminal_sequences", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/konsorten/go-windows-terminal-sequences", sum = "h1:CE8S1cTafDpPvMhIxNJKvHsGVBgn1xWYf1NbHQhywc8=", version = "v1.0.3", ) go_repository( name = "com_github_kr_logfmt", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/kr/logfmt", sum = "h1:T+h1c/A9Gawja4Y9mFVWj2vyii2bbUNDw3kt9VxK2EY=", version = "v0.0.0-20140226030751-b84e30acd515", ) go_repository( name = "com_github_kr_pretty", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/kr/pretty", sum = "h1:Fmg33tUaq4/8ym9TJN1x7sLJnHVwhP33CNkpYV/7rwI=", version = "v0.2.1", ) go_repository( name = "com_github_kr_pty", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/kr/pty", sum = "h1:hyz3dwM5QLc1Rfoz4FuWJQG5BN7tc6K1MndAUnGpQr4=", version = "v1.1.5", ) go_repository( name = "com_github_kr_text", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/kr/text", sum = "h1:45sCR5RtlFHMR4UwH9sdQ5TC8v0qDQCHnXt+kaKSTVE=", version = "v0.1.0", ) go_repository( name = "com_github_lib_pq", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/lib/pq", sum = "h1:X5PMW56eZitiTeO7tKzZxFCSpbFZJtkMMooicw2us9A=", version = "v1.0.0", ) go_repository( name = "com_github_magiconair_properties", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/magiconair/properties", sum = "h1:ZC2Vc7/ZFkGmsVC9KvOjumD+G5lXy2RtTKyzRKO2BQ4=", version = "v1.8.1", ) go_repository( name = "com_github_mailru_easyjson", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/mailru/easyjson", sum = "h1:aizVhC/NAAcKWb+5QsU1iNOZb4Yws5UO2I+aIprQITM=", version = "v0.7.0", ) go_repository( name = "com_github_mattbaird_jsonpatch", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/mattbaird/jsonpatch", sum = "h1:+J2gw7Bw77w/fbK7wnNJJDKmw1IbWft2Ul5BzrG1Qm8=", version = "v0.0.0-20171005235357-81af80346b1a", ) go_repository( name = "com_github_mattn_go_colorable", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/mattn/go-colorable", sum = "h1:/bC9yWikZXAL9uJdulbSfyVNIR3n3trXl+v8+1sx8mU=", version = "v0.1.2", ) go_repository( name = "com_github_mattn_go_isatty", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/mattn/go-isatty", sum = "h1:HLtExJ+uU2HOZ+wI0Tt5DtUDrx8yhUqDcp7fYERX4CE=", version = "v0.0.8", ) go_repository( name = "com_github_matttproud_golang_protobuf_extensions", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/matttproud/golang_protobuf_extensions", sum = "h1:I0XW9+e1XWDxdcEniV4rQAIOPUGDq67JSCiRCgGCZLI=", version = "v1.0.2-0.20181231171920-c182affec369", ) go_repository( name = "com_github_mgutz_ansi", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/mgutz/ansi", sum = "h1:j7+1HpAFS1zy5+Q4qx1fWh90gTKwiN4QCGoY9TWyyO4=", version = "v0.0.0-20170206155736-9520e82c474b", ) go_repository( name = "com_github_mgutz_logxi", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/mgutz/logxi", sum = "h1:n8cgpHzJ5+EDyDri2s/GC7a9+qK3/YEGnBsd0uS/8PY=", version = "v0.0.0-20161027140823-aebf8a7d67ab", ) go_repository( name = "com_github_microsoft_go_winio", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/Microsoft/go-winio", sum = "h1:xAfWHN1IrQ0NJ9TBC0KBZoqLjzDTr1ML+4MywiUOryc=", version = "v0.4.12", ) go_repository( name = "com_github_miekg_dns", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/miekg/dns", sum = "h1:sJFOl9BgwbYAWOGEwr61FU28pqsBNdpRBnhGXtO06Oo=", version = "v1.1.31", ) go_repository( name = "com_github_mitchellh_copystructure", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/mitchellh/copystructure", sum = "h1:Laisrj+bAB6b/yJwB5Bt3ITZhGJdqmxquMKeZ+mmkFQ=", version = "v1.0.0", ) go_repository( name = "com_github_mitchellh_go_homedir", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/mitchellh/go-homedir", sum = "h1:lukF9ziXFxDFPkA1vsr5zpc1XuPDn/wFntq5mG+4E0Y=", version = "v1.1.0", ) go_repository( name = "com_github_mitchellh_go_testing_interface", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/mitchellh/go-testing-interface", sum = "h1:fzU/JVNcaqHQEcVFAKeR41fkiLdIPrefOvVG1VZ96U0=", version = "v1.0.0", ) go_repository( name = "com_github_mitchellh_mapstructure", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/mitchellh/mapstructure", sum = "h1:fmNYVwqnSfB9mZU6OS2O6GsXM+wcskZDuKQzvN1EDeE=", version = "v1.1.2", ) go_repository( name = "com_github_mitchellh_reflectwalk", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/mitchellh/reflectwalk", sum = "h1:9D+8oIskB4VJBN5SFlmc27fSlIBZaov1Wpk/IfikLNY=", version = "v1.0.0", ) go_repository( name = "com_github_modern_go_concurrent", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/modern-go/concurrent", sum = "h1:TRLaZ9cD/w8PVh93nsPXa1VrQ6jlwL5oN8l14QlcNfg=", version = "v0.0.0-20180306012644-bacd9c7ef1dd", ) go_repository( name = "com_github_modern_go_reflect2", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/modern-go/reflect2", sum = "h1:9f412s+6RmYXLWZSEzVVgPGK7C2PphHj5RJrvfx9AWI=", version = "v1.0.1", ) go_repository( name = "com_github_munnerz_goautoneg", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/munnerz/goautoneg", sum = "h1:C3w9PqII01/Oq1c1nUAm88MOHcQC9l5mIlSMApZMrHA=", version = "v0.0.0-20191010083416-a7dc8b61c822", ) go_repository( name = "com_github_mwitkow_go_conntrack", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/mwitkow/go-conntrack", sum = "h1:F9x/1yl3T2AeKLr2AMdilSD8+f9bvMnNN8VS5iDtovc=", version = "v0.0.0-20161129095857-cc309e4a2223", ) go_repository( name = "com_github_mxk_go_flowrate", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/mxk/go-flowrate", sum = "h1:y5//uYreIhSUg3J1GEMiLbxo1LJaP8RfCpH6pymGZus=", version = "v0.0.0-20140419014527-cca7078d478f", ) go_repository( name = "com_github_nvveen_gotty", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/Nvveen/Gotty", sum = "h1:TngWCqHvy9oXAN6lEVMRuU21PR1EtLVZJmdB18Gu3Rw=", version = "v0.0.0-20120604004816-cd527374f1e5", ) go_repository( name = "com_github_nytimes_gziphandler", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/NYTimes/gziphandler", sum = "h1:lsxEuwrXEAokXB9qhlbKWPpo3KMLZQ5WB5WLQRW1uq0=", version = "v0.0.0-20170623195520-56545f4a5d46", ) go_repository( name = "com_github_oklog_run", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/oklog/run", sum = "h1:Ru7dDtJNOyC66gQ5dQmaCa0qIsAUFY3sFpK1Xk8igrw=", version = "v1.0.0", ) go_repository( name = "com_github_onsi_ginkgo", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/onsi/ginkgo", sum = "h1:mFwc4LvZ0xpSvDZ3E+k8Yte0hLOMxXUlP+yXtJqkYfQ=", version = "v1.12.1", ) go_repository( name = "com_github_onsi_gomega", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/onsi/gomega", sum = "h1:o0+MgICZLuZ7xjH7Vx6zS/zcu93/BEp1VwkIW1mEXCE=", version = "v1.10.1", ) go_repository( name = "com_github_opencontainers_go_digest", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/opencontainers/go-digest", sum = "h1:WzifXhOVOEOuFYOJAW6aQqW0TooG2iki3E3Ii+WN7gQ=", version = "v1.0.0-rc1", ) go_repository( name = "com_github_opencontainers_image_spec", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/opencontainers/image-spec", sum = "h1:JMemWkRwHx4Zj+fVxWoMCFm/8sYGGrUVojFA6h/TRcI=", version = "v1.0.1", ) go_repository( name = "com_github_opencontainers_runc", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/opencontainers/runc", sum = "h1:GlxAyO6x8rfZYN9Tt0Kti5a/cP41iuiO2yYT0IJGY8Y=", version = "v0.1.1", ) go_repository( name = "com_github_ory_dockertest", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/ory/dockertest", sum = "h1:VrpM6Gqg7CrPm3bL4Wm1skO+zFWLbh7/Xb5kGEbJRh8=", version = "v3.3.4+incompatible", ) go_repository( name = "com_github_pascaldekloe_goe", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/pascaldekloe/goe", sum = "h1:cBOtyMzM9HTpWjXfbbunk26uA6nG3a8n06Wieeh0MwY=", version = "v0.1.0", ) go_repository( name = "com_github_patrickmn_go_cache", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/patrickmn/go-cache", sum = "h1:HRMgzkcYKYpi3C8ajMPV8OFXaaRUnok+kx1WdO15EQc=", version = "v2.1.0+incompatible", ) go_repository( name = "com_github_pborman_uuid", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/pborman/uuid", sum = "h1:J7Q5mO4ysT1dv8hyrUGHb9+ooztCXu1D8MY8DZYsu3g=", version = "v1.2.0", ) go_repository( name = "com_github_pelletier_go_toml", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/pelletier/go-toml", sum = "h1:T5zMGML61Wp+FlcbWjRDT7yAxhJNAiPPLOFECq181zc=", version = "v1.2.0", ) go_repository( name = "com_github_peterbourgon_diskv", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/peterbourgon/diskv", sum = "h1:UBdAOUP5p4RWqPBg048CAvpKN+vxiaj6gdUUzhl4XmI=", version = "v2.0.1+incompatible", ) go_repository( name = "com_github_pkg_errors", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/pkg/errors", sum = "h1:FEBLx1zS214owpjy7qsBeixbURkuhQAwrK5UwLGTwt4=", version = "v0.9.1", ) go_repository( name = "com_github_pmezard_go_difflib", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/pmezard/go-difflib", sum = "h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=", version = "v1.0.0", ) go_repository( name = "com_github_pquerna_cachecontrol", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/pquerna/cachecontrol", sum = "h1:0XM1XL/OFFJjXsYXlG30spTkV/E9+gmd5GD1w2HE8xM=", version = "v0.0.0-20171018203845-0dec1b30a021", ) go_repository( name = "com_github_prometheus_client_golang", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/prometheus/client_golang", sum = "h1:NTGy1Ja9pByO+xAeH/qiWnLrKtr3hJPNjaVUwnjpdpA=", version = "v1.7.1", ) go_repository( name = "com_github_prometheus_client_model", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/prometheus/client_model", sum = "h1:uq5h0d+GuxiXLJLNABMgp2qUWDPiLvgCzz2dUR+/W/M=", version = "v0.2.0", ) go_repository( name = "com_github_prometheus_common", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/prometheus/common", sum = "h1:RyRA7RzGXQZiW+tGMr7sxa85G1z0yOpM1qq5c8lNawc=", version = "v0.10.0", ) go_repository( name = "com_github_prometheus_procfs", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/prometheus/procfs", sum = "h1:F0+tqvhOksq22sc6iCHF5WGlWjdwj92p0udFh1VFBS8=", version = "v0.1.3", ) go_repository( name = "com_github_puerkitobio_purell", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/PuerkitoBio/purell", sum = "h1:WEQqlqaGbrPkxLJWfBwQmfEAE1Z7ONdDLqrN38tNFfI=", version = "v1.1.1", ) go_repository( name = "com_github_puerkitobio_urlesc", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/PuerkitoBio/urlesc", sum = "h1:d+Bc7a5rLufV/sSk/8dngufqelfh6jnri85riMAaF/M=", version = "v0.0.0-20170810143723-de5bf2ad4578", ) go_repository( name = "com_github_remyoudompheng_bigfft", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/remyoudompheng/bigfft", sum = "h1:/NRJ5vAYoqz+7sG51ubIDHXeWO8DlTSrToPu6q11ziA=", version = "v0.0.0-20170806203942-52369c62f446", ) go_repository( name = "com_github_russross_blackfriday", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/russross/blackfriday", sum = "h1:HyvC0ARfnZBqnXwABFeSZHpKvJHJJfPz81GNueLj0oo=", version = "v1.5.2", ) go_repository( name = "com_github_ryanuber_go_glob", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/ryanuber/go-glob", sum = "h1:iQh3xXAumdQ+4Ufa5b25cRpC5TYKlno6hsv6Cb3pkBk=", version = "v1.0.0", ) go_repository( name = "com_github_sap_go_hdb", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/SAP/go-hdb", sum = "h1:hkw4ozGZ/i4eak7ZuGkY5e0hxiXFdNUBNhr4AvZVNFE=", version = "v0.14.1", ) go_repository( name = "com_github_sermodigital_jose", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/SermoDigital/jose", sum = "h1:atYaHPD3lPICcbK1owly3aPm0iaJGSGPi0WD4vLznv8=", version = "v0.9.1", ) go_repository( name = "com_github_sethgrid_pester", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/sethgrid/pester", sum = "h1:X9XMOYjxEfAYSy3xK1DzO5dMkkWhs9E9UCcS1IERx2k=", version = "v0.0.0-20190127155807-68a33a018ad0", ) go_repository( name = "com_github_sirupsen_logrus", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/sirupsen/logrus", sum = "h1:UBcNElsrwanuuMsnGSlYmtmgbb23qDR5dG+6X6Oo89I=", version = "v1.6.0", ) go_repository( name = "com_github_smartystreets_assertions", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/smartystreets/assertions", sum = "h1:42S6lae5dvLc7BrLu/0ugRtcFVjoJNMC/N3yZFZkDFs=", version = "v1.2.0", ) go_repository( name = "com_github_smartystreets_goconvey", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/smartystreets/goconvey", sum = "h1:fv0U8FUIMPNf1L9lnHLvLhgicrIVChEkdzIKYqbNC9s=", version = "v1.6.4", ) go_repository( name = "com_github_soheilhy_cmux", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/soheilhy/cmux", sum = "h1:0HKaf1o97UwFjHH9o5XsHUOF+tqmdA7KEzXLpiyaw0E=", version = "v0.1.4", ) go_repository( name = "com_github_spf13_afero", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/spf13/afero", sum = "h1:5jhuqJyZCZf2JRofRvN/nIFgIWNzPa3/Vz8mYylgbWc=", version = "v1.2.2", ) go_repository( name = "com_github_spf13_cast", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/spf13/cast", sum = "h1:oget//CVOEoFewqQxwr0Ej5yjygnqGkvggSE/gB35Q8=", version = "v1.3.0", ) go_repository( name = "com_github_spf13_cobra", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/spf13/cobra", sum = "h1:6m/oheQuQ13N9ks4hubMG6BnvwOeaJrqSPLahSnczz8=", version = "v1.0.0", ) go_repository( name = "com_github_spf13_jwalterweatherman", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/spf13/jwalterweatherman", sum = "h1:XHEdyB+EcvlqZamSM4ZOMGlc93t6AcsBEu9Gc1vn7yk=", version = "v1.0.0", ) go_repository( name = "com_github_spf13_pflag", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/spf13/pflag", sum = "h1:iy+VFUOCP1a+8yFto/drg2CJ5u0yRoB7fZw3DKv/JXA=", version = "v1.0.5", ) go_repository( name = "com_github_spf13_viper", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/spf13/viper", sum = "h1:xVKxvI7ouOI5I+U9s2eeiUfMaWBVoXA3AWskkrqK0VM=", version = "v1.7.0", ) go_repository( name = "com_github_stretchr_objx", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/stretchr/objx", sum = "h1:Hbg2NidpLE8veEBkEZTL3CvlkUIVzuU9jDplZO54c48=", version = "v0.2.0", ) go_repository( name = "com_github_stretchr_testify", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/stretchr/testify", sum = "h1:hDPOHmpOpP40lSULcqw7IrRb/u7w6RpDC9399XyoNd0=", version = "v1.6.1", ) go_repository( name = "com_github_tent_http_link_go", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/tent/http-link-go", sum = "h1:/Bsw4C+DEdqPjt8vAqaC9LAqpAQnaCQQqmolqq3S1T4=", version = "v0.0.0-20130702225549-ac974c61c2f9", ) go_repository( name = "com_github_tmc_grpc_websocket_proxy", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/tmc/grpc-websocket-proxy", sum = "h1:LnC5Kc/wtumK+WB441p7ynQJzVuNRJiqddSIE3IlSEQ=", version = "v0.0.0-20190109142713-0ad062ec5ee5", ) go_repository( name = "com_github_ugorji_go_codec", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/ugorji/go/codec", sum = "h1:3SVOIvH7Ae1KRYyQWRjXWJEA9sS/c/pjvH++55Gr648=", version = "v0.0.0-20181204163529-d75b2dcb6bc8", ) go_repository( name = "com_github_venafi_vcert", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/Venafi/vcert", sum = "h1:+J3fdxS1dgOJwGFM9LuQUr8F4YklF8hrq9BrNzLwPFE=", version = "v0.0.0-20200310111556-eba67a23943f", ) go_repository( name = "com_github_xiang90_probing", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/xiang90/probing", sum = "h1:eY9dn8+vbi4tKz5Qo6v2eYzo7kUS51QINcR5jNpbZS8=", version = "v0.0.0-20190116061207-43a291ad63a2", ) go_repository( name = "com_github_xordataexchange_crypt", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/xordataexchange/crypt", sum = "h1:ESFSdwYZvkeru3RtdrYueztKhOBCSAAzS4Gf+k0tEow=", version = "v0.0.3-0.20170626215501-b2862e3d0a77", ) go_repository( name = "com_google_cloud_go", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "cloud.google.com/go", sum = "h1:PvKAVQWCtlGUSlZkGW3QLelKaWq7KYv/MW1EboG8bfM=", version = "v0.51.0", ) go_repository( name = "com_sslmate_software_src_go_pkcs12", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "software.sslmate.com/src/go-pkcs12", sum = "h1:AVd6O+azYjVQYW1l55IqkbL8/JxjrLtO6q4FCmV8N5c=", version = "v0.0.0-20200830195227-52f69702a001", ) go_repository( name = "in_gopkg_alecthomas_kingpin_v2", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "gopkg.in/alecthomas/kingpin.v2", sum = "h1:jMFz6MfLP0/4fUyZle81rXUoxOBFi19VUFKVDOQfozc=", version = "v2.2.6", ) go_repository( name = "in_gopkg_check_v1", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "gopkg.in/check.v1", sum = "h1:YR8cESwS4TdDjEe65xsg0ogRM/Nc3DYOhEAlW+xobZo=", version = "v1.0.0-20190902080502-41f04d3bba15", ) go_repository( name = "in_gopkg_fsnotify_v1", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "gopkg.in/fsnotify.v1", sum = "h1:xOHLXZwVvI9hhs+cLKq5+I5onOuwQLhQwiu63xxlHs4=", version = "v1.4.7", ) go_repository( name = "in_gopkg_inf_v0", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "gopkg.in/inf.v0", sum = "h1:73M5CoZyi3ZLMOyDlQh031Cx6N9NDJ2Vvfl76EDAgDc=", version = "v0.9.1", ) go_repository( name = "in_gopkg_ini_v1", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "gopkg.in/ini.v1", sum = "h1:j+Lt/M1oPPejkniCg1TkWE2J3Eh1oZTsHSXzMTzUXn4=", version = "v1.52.0", ) go_repository( name = "in_gopkg_mgo_v2", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "gopkg.in/mgo.v2", sum = "h1:xcEWjVhvbDy+nHP67nPDDpbYrY+ILlfndk4bRioVHaU=", version = "v2.0.0-20180705113604-9856a29383ce", ) go_repository( name = "in_gopkg_natefinch_lumberjack_v2", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "gopkg.in/natefinch/lumberjack.v2", sum = "h1:1Lc07Kr7qY4U2YPouBjpCLxpiyxIVoxqXgkXLknAOE8=", version = "v2.0.0", ) go_repository( name = "in_gopkg_ory_am_dockertest_v3", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "gopkg.in/ory-am/dockertest.v3", sum = "h1:oen8RiwxVNxtQ1pRoV4e4jqh6UjNsOuIZ1NXns6jdcw=", version = "v3.3.4", ) go_repository( name = "in_gopkg_square_go_jose_v2", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "gopkg.in/square/go-jose.v2", sum = "h1:SK5KegNXmKmqE342YYN2qPHEnUYeoMiXXl1poUlI+o4=", version = "v2.3.1", ) go_repository( name = "in_gopkg_tomb_v1", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "gopkg.in/tomb.v1", sum = "h1:uRGJdciOHaEIrze2W8Q3AKkepLTh2hOroT7a+7czfdQ=", version = "v1.0.0-20141024135613-dd632973f1e7", ) go_repository( name = "in_gopkg_yaml_v2", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "gopkg.in/yaml.v2", sum = "h1:clyUAQHOM3G0M3f5vQj7LuJrETvjVot3Z5el9nffUtU=", version = "v2.3.0", ) go_repository( name = "io_k8s_api", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "k8s.io/api", sum = "h1:XyrFIJqTYZJ2DU7FBE/bSPz7b1HvbVBuBf07oeo6eTc=", version = "v0.19.0", ) go_repository( name = "io_k8s_apiextensions_apiserver", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "k8s.io/apiextensions-apiserver", sum = "h1:jlY13lvZp+0p9fRX2khHFdiT9PYzT7zUrANz6R1NKtY=", version = "v0.19.0", ) go_repository( name = "io_k8s_apimachinery", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "k8s.io/apimachinery", sum = "h1:gjKnAda/HZp5k4xQYjL0K/Yb66IvNqjthCb03QlKpaQ=", version = "v0.19.0", ) go_repository( name = "io_k8s_apiserver", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "k8s.io/apiserver", sum = "h1:jLhrL06wGAADbLUUQm8glSLnAGP6c7y5R3p19grkBoY=", version = "v0.19.0", ) go_repository( name = "io_k8s_client_go", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "k8s.io/client-go", sum = "h1:1+0E0zfWFIWeyRhQYWzimJOyAk2UT7TiARaLNwJCf7k=", version = "v0.19.0", ) go_repository( name = "io_k8s_code_generator", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "k8s.io/code-generator", sum = "h1:r0BxYnttP/r8uyKd4+Njg0B57kKi8wLvwEzaaVy3iZ8=", version = "v0.19.0", ) go_repository( name = "io_k8s_component_base", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "k8s.io/component-base", sum = "h1:OueXf1q3RW7NlLlUCj2Dimwt7E1ys6ZqRnq53l2YuoE=", version = "v0.19.0", ) go_repository( name = "io_k8s_gengo", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "k8s.io/gengo", sum = "h1:t4L10Qfx/p7ASH3gXCdIUtPbbIuegCoUJf3TMSFekjw=", version = "v0.0.0-20200428234225-8167cfdcfc14", ) go_repository( name = "io_k8s_klog", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "k8s.io/klog", sum = "h1:Pt+yjF5aB1xDSVbau4VsWe+dQNzA0qv1LlXdC2dF6Q8=", version = "v1.0.0", ) go_repository( name = "io_k8s_kube_aggregator", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "k8s.io/kube-aggregator", sum = "h1:rL4fsftMaqkKjaibArYDaBeqN41CHaJzgRJjUB9IrIg=", version = "v0.19.0", ) go_repository( name = "io_k8s_kube_openapi", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "k8s.io/kube-openapi", sum = "h1:+WnxoVtG8TMiudHBSEtrVL1egv36TkkJm+bA8AxicmQ=", version = "v0.0.0-20200805222855-6aeccd4b50c6", ) go_repository( name = "io_k8s_sigs_controller_runtime", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "sigs.k8s.io/controller-runtime", sum = "h1:jkAnfdTYBpFwlmBn3pS5HFO06SfxvnTZ1p5PeEF/zAA=", version = "v0.6.2", ) go_repository( name = "io_k8s_sigs_controller_tools", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "sigs.k8s.io/controller-tools", sum = "h1:PXOHvyYAjWfO0UfQvaUo33HpXNCOilV3i/Vjc7iM1/A=", version = "v0.2.9-0.20200414181213-645d44dca7c0", ) go_repository( name = "io_k8s_sigs_structured_merge_diff", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "sigs.k8s.io/structured-merge-diff", sum = "h1:zD2IemQ4LmOcAumeiyDWXKUI2SO0NYDe3H6QGvPOVgU=", version = "v1.0.1-0.20191108220359-b1b620dd3f06", ) go_repository( name = "io_k8s_sigs_testing_frameworks", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "sigs.k8s.io/testing_frameworks", sum = "h1:vK0+tvjF0BZ/RYFeZ1E6BYBwHJJXhjuZ3TdsEKH+UQM=", version = "v0.1.2", ) go_repository( name = "io_k8s_sigs_yaml", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "sigs.k8s.io/yaml", sum = "h1:kr/MCeFWJWTwyaHoR9c8EjH9OumOmoF9YGiZd7lFm/Q=", version = "v1.2.0", ) go_repository( name = "io_k8s_utils", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "k8s.io/utils", sum = "h1:uJmqzgNWG7XyClnU/mLPBWwfKKF1K8Hf8whTseBgJcg=", version = "v0.0.0-20200729134348-d5654de09c73", ) go_repository( name = "io_opencensus_go", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "go.opencensus.io", sum = "h1:75k/FF0Q2YM8QYo07VPddOLBslDt1MZOdEslOHvmzAs=", version = "v0.22.2", ) go_repository( name = "org_golang_google_api", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "google.golang.org/api", sum = "h1:yzlyyDW/J0w8yNFJIhiAJy4kq74S+1DOLdawELNxFMA=", version = "v0.15.0", ) go_repository( name = "org_golang_google_appengine", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "google.golang.org/appengine", sum = "h1:tycE03LOZYQNhDpS27tcQdAzLCVMaj7QT2SXxebnpCM=", version = "v1.6.5", ) go_repository( name = "org_golang_google_genproto", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "google.golang.org/genproto", sum = "h1:+kGHl1aib/qcwaRi1CbqBZ1rk19r85MNUf8HaBghugY=", version = "v0.0.0-20200526211855-cb27e3aa2013", ) go_repository( name = "org_golang_google_grpc", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "google.golang.org/grpc", sum = "h1:rRYRFMVgRv6E0D70Skyfsr28tDXIuuPZyWGMPdMcnXg=", version = "v1.27.0", ) go_repository( name = "org_golang_x_crypto", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "golang.org/x/crypto", replace = "github.com/meyskens/crypto", sum = "h1:09XQpCKCNW3zrjz4zvD/cYU3hqUEWW+bZrBwK8NwFW0=", version = "v0.0.0-20200821143559-6ca9aec645f0", ) go_repository( name = "org_golang_x_exp", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "golang.org/x/exp", sum = "h1:zQpM52jfKHG6II1ISZY1ZcpygvuSFZpLwfluuF89XOg=", version = "v0.0.0-20191227195350-da58074b4299", ) go_repository( name = "org_golang_x_image", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "golang.org/x/image", sum = "h1:+qEpEAPhDZ1o0x3tHzZTQDArnOixOzGD9HUJfcg0mb4=", version = "v0.0.0-20190802002840-cff245a6509b", ) go_repository( name = "org_golang_x_lint", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "golang.org/x/lint", sum = "h1:J5lckAjkw6qYlOZNj90mLYNTEKDvWeuc1yieZ8qUzUE=", version = "v0.0.0-20191125180803-fdd1cda4f05f", ) go_repository( name = "org_golang_x_mobile", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "golang.org/x/mobile", sum = "h1:4+4C/Iv2U4fMZBiMCc98MG1In4gJY5YRhtpDNeDeHWs=", version = "v0.0.0-20190719004257-d2bd2a29d028", ) go_repository( name = "org_golang_x_net", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "golang.org/x/net", sum = "h1:VvcQYSHwXgi7W+TpUR6A9g6Up98WAHf3f/ulnJ62IyA=", version = "v0.0.0-20200822124328-c89045814202", ) go_repository( name = "org_golang_x_oauth2", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "golang.org/x/oauth2", sum = "h1:TzXSXBo42m9gQenoE3b9BGiEpg5IG2JkU5FkPIawgtw=", version = "v0.0.0-20200107190931-bf48bf16ab8d", ) go_repository( name = "org_golang_x_sync", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "golang.org/x/sync", sum = "h1:vcxGaoTs7kV8m5Np9uUNQin4BrLOthgV7252N8V+FwY=", version = "v0.0.0-20190911185100-cd5d95a43a6e", ) go_repository( name = "org_golang_x_sys", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "golang.org/x/sys", sum = "h1:5/PjkGUjvEU5Gl6BxmvKRPpqo2uNMv4rcHBMwzk/st8=", version = "v0.0.0-20200622214017-ed371f2e16b4", ) go_repository( name = "org_golang_x_text", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "golang.org/x/text", sum = "h1:cokOdA+Jmi5PJGXLlLllQSgYigAEfHXJAERHVMaCc2k=", version = "v0.3.3", ) go_repository( name = "org_golang_x_time", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "golang.org/x/time", sum = "h1:EHBhcS0mlXEAVwNyO2dLfjToGsyY4j24pTs2ScHnX7s=", version = "v0.0.0-20200630173020-3af7569d3a1e", ) go_repository( name = "org_golang_x_tools", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "golang.org/x/tools", sum = "h1:HHeAlu5H9b71C+Fx0K+1dGgVFN1DM1/wz4aoGOA5qS8=", version = "v0.0.0-20200616133436-c1934b75d054", ) go_repository( name = "org_gonum_v1_gonum", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "gonum.org/v1/gonum", sum = "h1:OB/uP/Puiu5vS5QMRPrXCDWUPb+kt8f1KW8oQzFejQw=", version = "v0.0.0-20190331200053-3d26580ed485", ) go_repository( name = "org_gonum_v1_netlib", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "gonum.org/v1/netlib", sum = "h1:jRyg0XfpwWlhEV8mDfdNGBeSJM2fuyh9Yjrnd8kF2Ts=", version = "v0.0.0-20190331212654-76723241ea4e", ) go_repository( name = "org_modernc_cc", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "modernc.org/cc", sum = "h1:nPibNuDEx6tvYrUAtvDTTw98rx5juGsa5zuDnKwEEQQ=", version = "v1.0.0", ) go_repository( name = "org_modernc_golex", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "modernc.org/golex", sum = "h1:wWpDlbK8ejRfSyi0frMyhilD3JBvtcx2AdGDnU+JtsE=", version = "v1.0.0", ) go_repository( name = "org_modernc_mathutil", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "modernc.org/mathutil", sum = "h1:93vKjrJopTPrtTNpZ8XIovER7iCIH1QU7wNbOQXC60I=", version = "v1.0.0", ) go_repository( name = "org_modernc_strutil", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "modernc.org/strutil", sum = "h1:XVFtQwFVwc02Wk+0L/Z/zDDXO81r5Lhe6iMKmGX3KhE=", version = "v1.0.0", ) go_repository( name = "org_modernc_xc", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "modernc.org/xc", sum = "h1:7ccXrupWZIS3twbUGrtKmHS2DXY6xegFua+6O3xgAFU=", version = "v1.0.0", ) go_repository( name = "org_uber_go_atomic", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "go.uber.org/atomic", sum = "h1:cxzIVoETapQEqDhQu3QfnvXAV4AlzcvUCxkVUFw3+EU=", version = "v1.4.0", ) go_repository( name = "org_uber_go_multierr", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "go.uber.org/multierr", sum = "h1:HoEmRHQPVSqub6w2z2d2EOVs2fjyFRGyofhKuyDq0QI=", version = "v1.1.0", ) go_repository( name = "org_uber_go_zap", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "go.uber.org/zap", sum = "h1:ORx85nbTijNz8ljznvCMR1ZBIPKFn3jQrag10X2AsuM=", version = "v1.10.0", ) go_repository( name = "tools_gotest", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "gotest.tools", sum = "h1:VsBPFP1AI068pPrMxtb/S8Zkgf9xEmTLJjfM+P5UIEo=", version = "v2.2.0+incompatible", ) go_repository( name = "xyz_gomodules_jsonpatch_v2", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "gomodules.xyz/jsonpatch/v2", sum = "h1:xyiBuvkD2g5n7cYzx6u2sxQvsAy4QJsZFCzGVdzOXZ0=", version = "v2.0.1", ) go_repository( name = "net_launchpad_gocheck", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "launchpad.net/gocheck", sum = "h1:Izowp2XBH6Ya6rv+hqbceQyw/gSGoXfH/UPoTGduL54=", version = "v0.0.0-20140225173054-000000000087", ) go_repository( name = "com_github_apache_thrift", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/apache/thrift", sum = "h1:5hryIiq9gtn+MiLVn0wP37kb/uTeRZgN08WoCsAhIhI=", version = "v0.13.0", ) go_repository( name = "com_github_eapache_go_resiliency", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/eapache/go-resiliency", sum = "h1:1NtRmCAqadE2FN4ZcN6g90TP3uk8cg9rn9eNK2197aU=", version = "v1.1.0", ) go_repository( name = "com_github_eapache_go_xerial_snappy", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/eapache/go-xerial-snappy", sum = "h1:YEetp8/yCZMuEPMUDHG0CW/brkkEp8mzqk2+ODEitlw=", version = "v0.0.0-20180814174437-776d5712da21", ) go_repository( name = "com_github_eapache_queue", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/eapache/queue", sum = "h1:YOEu7KNc61ntiQlcEeUIoDTJ2o8mQznoNvUhiigpIqc=", version = "v1.1.0", ) go_repository( name = "com_github_openzipkin_zipkin_go", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/openzipkin/zipkin-go", sum = "h1:nY8Hti+WKaP0cRsSeQ026wU03QsM762XBeCXBb9NAWI=", version = "v0.2.2", ) go_repository( name = "com_github_pierrec_lz4", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/pierrec/lz4", sum = "h1:2xWsjqPFWcplujydGg4WmhC/6fZqK42wMM8aXeqhl0I=", version = "v2.0.5+incompatible", ) go_repository( name = "com_github_rcrowley_go_metrics", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/rcrowley/go-metrics", sum = "h1:9ZKAASQSHhDYGoxY8uLVpewe1GDZ2vu2Tr/vTdVAkFQ=", version = "v0.0.0-20181016184325-3113b8401b8a", ) go_repository( name = "com_github_shopify_sarama", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/Shopify/sarama", sum = "h1:9oksLxC6uxVPHPVYUmq6xhr1BOF/hHobWH2UzO67z1s=", version = "v1.19.0", ) go_repository( name = "com_github_shopify_toxiproxy", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/Shopify/toxiproxy", sum = "h1:TKdv8HiTLgE5wdJuEML90aBgNWsokNbMijUGhmcoBJc=", version = "v2.1.4+incompatible", ) go_repository( name = "in_gopkg_yaml_v3", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "gopkg.in/yaml.v3", sum = "h1:grhR+C34yXImVGp7EzNk+DTIk+323eIUWOmEevy6bDo=", version = "v3.0.0-20200605160147-a5ece683394c", ) go_repository( name = "com_github_docopt_docopt_go", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/docopt/docopt-go", sum = "h1:bWDMxwH3px2JBh6AyO7hdCn/PkvCZXii8TGj7sbtEbQ=", version = "v0.0.0-20180111231733-ee0de3bc6815", ) go_repository( name = "org_golang_x_xerrors", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "golang.org/x/xerrors", sum = "h1:E7g+9GITq07hpfrRu66IVDexMakfv52eLZ2CXBWiKr4=", version = "v0.0.0-20191204190536-9bdfabe68543", ) go_repository( name = "io_etcd_go_bbolt", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "go.etcd.io/bbolt", sum = "h1:XAzx9gjCb0Rxj7EoqcClPD1d5ZBxZJk0jbuoPHenBt0=", version = "v1.3.5", ) go_repository( name = "com_github_munnerz_crd_schema_fuzz", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/munnerz/crd-schema-fuzz", sum = "h1:8erI9yzEnOGw9K5O+a8zZdoo8N/OwrFi7c7SjBtkHAs=", version = "v1.0.0", ) go_repository( name = "com_github_agnivade_levenshtein", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/agnivade/levenshtein", sum = "h1:3oJU7J3FGFmyhn8KHjmVaZCN5hxTr7GxgRue+sxIXdQ=", version = "v1.0.1", ) go_repository( name = "com_github_andreyvit_diff", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/andreyvit/diff", sum = "h1:bvNMNQO63//z+xNgfBlViaCIJKLlCJ6/fmUseuG0wVQ=", version = "v0.0.0-20170406064948-c7f18ee00883", ) go_repository( name = "com_github_bgentry_speakeasy", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/bgentry/speakeasy", sum = "h1:ByYyxL9InA1OWqxJqqp2A5pYHUrCiAL6K3J+LKSsQkY=", version = "v0.1.0", ) go_repository( name = "com_github_cockroachdb_datadriven", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/cockroachdb/datadriven", sum = "h1:OaNxuTZr7kxeODyLWsRMC+OD03aFUH+mW6r2d+MWa5Y=", version = "v0.0.0-20190809214429-80d97fb3cbaa", ) go_repository( name = "com_github_creack_pty", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/creack/pty", sum = "h1:6pwm8kMQKCmgUg0ZHTm5+/YvRK0s3THD/28+T6/kk4A=", version = "v1.1.7", ) go_repository( name = "com_github_dustin_go_humanize", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/dustin/go-humanize", sum = "h1:VSnTsYCnlFHaM2/igO1h6X3HA71jcobQuxemgkq4zYo=", version = "v1.0.0", ) go_repository( name = "com_github_mattn_go_runewidth", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/mattn/go-runewidth", sum = "h1:Ei8KR0497xHyKJPAv59M1dkC+rOZCMBJ+t3fZ+twI54=", version = "v0.0.7", ) go_repository( name = "com_github_olekukonko_tablewriter", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/olekukonko/tablewriter", sum = "h1:vHD/YYe1Wolo78koG299f7V/VAS08c6IpCLn+Ejf/w8=", version = "v0.0.4", ) go_repository( name = "com_github_rogpeppe_fastuuid", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/rogpeppe/fastuuid", sum = "h1:gu+uRPtBe88sKxUCEXRoeCvVG90TJmwhiqRpvdhQFng=", version = "v0.0.0-20150106093220-6724a57986af", ) go_repository( name = "com_github_sergi_go_diff", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/sergi/go-diff", sum = "h1:we8PVUC3FE2uYfodKH/nBHMSetSfHDR6scGdBi+erh0=", version = "v1.1.0", ) go_repository( name = "com_github_tidwall_pretty", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/tidwall/pretty", sum = "h1:HsD+QiTn7sK6flMKIvNmpqz1qrpP3Ps6jOKIKMooyg4=", version = "v1.0.0", ) go_repository( name = "com_github_urfave_cli", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/urfave/cli", sum = "h1:u7tSpNPPswAFymm8IehJhy4uJMlUuU/GmqSkvJ1InXA=", version = "v1.22.4", ) go_repository( name = "com_github_vektah_gqlparser", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/vektah/gqlparser", sum = "h1:ZsyLGn7/7jDNI+y4SEhI4yAxRChlv15pUHMjijT+e68=", version = "v1.1.2", ) go_repository( name = "in_gopkg_cheggaaa_pb_v1", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "gopkg.in/cheggaaa/pb.v1", sum = "h1:Ev7yu1/f6+d+b3pi5vPdRPc6nNtP1umSfcWiEfRqv6I=", version = "v1.0.25", ) go_repository( name = "in_gopkg_resty_v1", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "gopkg.in/resty.v1", sum = "h1:CuXP0Pjfw9rOuY6EP+UvtNvt5DSqHpIxILZKT/quCZI=", version = "v1.12.0", ) go_repository( name = "io_etcd_go_etcd", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "go.etcd.io/etcd", sum = "h1:Gqga3zA9tdAcfqobUGjSoCob5L3f8Dt5EuOp3ihNZko=", version = "v0.5.0-alpha.5.0.20200819165624-17cef6e3e9d5", ) go_repository( name = "org_mongodb_go_mongo_driver", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "go.mongodb.org/mongo-driver", sum = "h1:jxcFYjlkl8xaERsgLo+RNquI0epW6zuy/ZRQs6jnrFA=", version = "v1.1.2", ) go_repository( name = "com_github_go_ldap_ldap", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/go-ldap/ldap", sum = "h1:kD5HQcAzlQ7yrhfn+h+MSABeAy/jAJhvIJ/QDllP44g=", version = "v3.0.2+incompatible", ) go_repository( name = "com_github_go_test_deep", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/go-test/deep", sum = "h1:28FVBuwkwowZMjbA7M0wXsI6t3PYulRTMio3SO+eKCM=", version = "v1.0.2-0.20181118220953-042da051cf31", ) go_repository( name = "com_github_mitchellh_cli", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/mitchellh/cli", sum = "h1:iGBIsUe3+HZ/AD/Vd7DErOt5sU9fa8Uj7A2s1aggv1Y=", version = "v1.0.0", ) go_repository( name = "com_github_mitchellh_go_wordwrap", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/mitchellh/go-wordwrap", sum = "h1:6GlHJ/LTGMrIJbwgdqdl2eEH8o+Exx/0m8ir9Gns0u4=", version = "v1.0.0", ) go_repository( name = "com_github_posener_complete", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/posener/complete", sum = "h1:ccV59UEOTzVDnDUEFdT95ZzHVZ+5+158q8+SJb2QV5w=", version = "v1.1.1", ) go_repository( name = "com_github_ryanuber_columnize", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/ryanuber/columnize", sum = "h1:j1Wcmh8OrK4Q7GXY+V7SVSY8nUWQxHW5TkBe7YUl+2s=", version = "v2.1.0+incompatible", ) go_repository( name = "in_gopkg_asn1_ber_v1", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "gopkg.in/asn1-ber.v1", sum = "h1:TxyelI5cVkbREznMhfzycHdkp5cLA7DpE+GKjSslYhM=", version = "v1.0.0-20181015200546-f715ec2f112d", ) go_repository( name = "com_github_pavel_v_chernykh_keystore_go", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/pavel-v-chernykh/keystore-go", sum = "h1:Jd6xfriVlJ6hWPvYOE0Ni0QWcNTLRehfGPFxr3eSL80=", version = "v2.1.0+incompatible", ) go_repository( name = "com_github_cpuguy83_go_md2man_v2", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/cpuguy83/go-md2man/v2", sum = "h1:EoUDS0afbrsXAZ9YQ9jdu/mZ2sXgT1/2yyNng4PGlyM=", version = "v2.0.0", ) go_repository( name = "com_github_russross_blackfriday_v2", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/russross/blackfriday/v2", sum = "h1:lPqVAte+HuHNfhJ/0LC98ESWRz8afy9tM/0RK8m9o+Q=", version = "v2.0.1", ) go_repository( name = "com_github_shurcool_sanitized_anchor_name", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/shurcooL/sanitized_anchor_name", sum = "h1:PdmoCO6wvbs+7yrJyMORt4/BmY5IYyJwS/kOiWx8mHo=", version = "v1.0.0", ) go_repository( name = "com_github_urfave_cli_v2", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/urfave/cli/v2", sum = "h1:Qt8FeAtxE/vfdrLmR3rxR6JRE0RoVmbXu8+6kZtYU4k=", version = "v2.1.1", ) go_repository( name = "com_github_census_instrumentation_opencensus_proto", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/census-instrumentation/opencensus-proto", sum = "h1:glEXhBS5PSLLv4IXzLA5yPRVX4bilULVyxxbrfOtDAk=", version = "v0.2.1", ) go_repository( name = "com_github_envoyproxy_go_control_plane", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/envoyproxy/go-control-plane", sum = "h1:4cmBvAEBNJaGARUEs3/suWRyfyBfhf7I60WBZq+bv2w=", version = "v0.9.1-0.20191026205805-5f8ba28d4473", ) go_repository( name = "com_github_envoyproxy_protoc_gen_validate", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/envoyproxy/protoc-gen-validate", sum = "h1:EQciDnbrYxy13PgWoY8AqoxGiPrpgBZ1R8UNe3ddc+A=", version = "v0.1.0", ) go_repository( name = "io_k8s_sigs_apiserver_network_proxy_konnectivity_client", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "sigs.k8s.io/apiserver-network-proxy/konnectivity-client", sum = "h1:rusRLrDhjBp6aYtl9sGEvQJr6faoHoDLd0YcUBTZguI=", version = "v0.0.9", ) go_repository( name = "io_k8s_sigs_structured_merge_diff_v3", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "sigs.k8s.io/structured-merge-diff/v3", sum = "h1:dOmIZBMfhcHS09XZkMyUgkq5trg3/jRyJYFZUiaOp8E=", version = "v3.0.0", ) go_repository( name = "com_github_chai2010_gettext_go", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/chai2010/gettext-go", sum = "h1:7aWHqerlJ41y6FOsEUvknqgXnGmJyJSbjhAWq5pO4F8=", version = "v0.0.0-20160711120539-c6fed771bfd5", ) go_repository( name = "com_github_daviddengcn_go_colortext", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/daviddengcn/go-colortext", sum = "h1:uVsMphB1eRx7xB1njzL3fuMdWRN8HtVzoUOItHMwv5c=", version = "v0.0.0-20160507010035-511bcaf42ccd", ) go_repository( name = "com_github_docker_distribution", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/docker/distribution", sum = "h1:a5mlkVzth6W5A4fOsS3D2EO5BUmsJpcB+cRlLU7cSug=", version = "v2.7.1+incompatible", ) go_repository( name = "com_github_exponent_io_jsonpath", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/exponent-io/jsonpath", sum = "h1:105gxyaGwCFad8crR9dcMQWvV9Hvulu6hwUh4tWPJnM=", version = "v0.0.0-20151013193312-d6023ce2651d", ) go_repository( name = "com_github_fatih_camelcase", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/fatih/camelcase", sum = "h1:hxNvNX/xYBp0ovncs8WyWZrOrpBNub/JfaMvbURyft8=", version = "v1.0.0", ) go_repository( name = "com_github_golangplus_bytes", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/golangplus/bytes", sum = "h1:7xqw01UYS+KCI25bMrPxwNYkSns2Db1ziQPpVq99FpE=", version = "v0.0.0-20160111154220-45c989fe5450", ) go_repository( name = "com_github_golangplus_fmt", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/golangplus/fmt", sum = "h1:f5gsjBiF9tRRVomCvrkGMMWI8W1f2OBFar2c5oakAP0=", version = "v0.0.0-20150411045040-2a5d6d7d2995", ) go_repository( name = "com_github_golangplus_testing", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/golangplus/testing", sum = "h1:KhcknUwkWHKZPbFy2P7jH5LKJ3La+0ZeknkkmrSgqb0=", version = "v0.0.0-20180327235837-af21d9c3145e", ) go_repository( name = "com_github_liggitt_tabwriter", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/liggitt/tabwriter", sum = "h1:9TO3cAIGXtEhnIaL+V+BEER86oLrvS+kWobKpbJuye0=", version = "v0.0.0-20181228230101-89fcab3d43de", ) go_repository( name = "com_github_lithammer_dedent", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/lithammer/dedent", sum = "h1:VNzHMVCBNG1j0fh3OrsFRkVUwStdDArbgBWoPAffktY=", version = "v1.1.0", ) go_repository( name = "com_github_makenowjust_heredoc", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/MakeNowJust/heredoc", sum = "h1:sjQovDkwrZp8u+gxLtPgKGjk5hCxuy2hrRejBTA9xFU=", version = "v0.0.0-20170808103936-bb23615498cd", ) go_repository( name = "com_github_xlab_handysort", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/xlab/handysort", sum = "h1:j2hhcujLRHAg872RWAV5yaUrEjHEObwDv3aImCaNLek=", version = "v0.0.0-20150421192137-fb3537ed64a1", ) go_repository( name = "io_k8s_cli_runtime", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "k8s.io/cli-runtime", sum = "h1:wLe+osHSqcItyS3MYQXVyGFa54fppORVA8Jn7DBGSWw=", version = "v0.19.0", ) go_repository( name = "io_k8s_kubectl", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "k8s.io/kubectl", sum = "h1:t9uxaZzGvqc2jY96mjnPSjFHtaKOxoUegeGZdaGT6aw=", version = "v0.19.0", ) go_repository( name = "io_k8s_metrics", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "k8s.io/metrics", sum = "h1:cKq0+Z7wg5qkK1n8dryNffKfU22DBX83JguGpR+TCk0=", version = "v0.19.0", ) go_repository( name = "io_k8s_sigs_kustomize", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "sigs.k8s.io/kustomize", sum = "h1:JUufWFNlI44MdtnjUqVnvh29rR37PQFzPbLXqhyOyX0=", version = "v2.0.3+incompatible", ) go_repository( name = "ml_vbom_util", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "vbom.ml/util", sum = "h1:MksmcCZQWAQJCTA5T0jgI/0sJ51AVm4Z41MrmfczEoc=", version = "v0.0.0-20160121211510-db5cfe13f5cc", ) go_repository( name = "org_golang_x_mod", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "golang.org/x/mod", sum = "h1:RM4zey1++hCTbCVQfnWeKs9/IEsaBLA8vTkd0WVtmH4=", version = "v0.3.0", ) go_repository( name = "com_github_ugorji_go", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/ugorji/go", sum = "h1:j4s+tAvLfL3bZyefP2SEWmhBzmuIlH/eqNuPdFPgngw=", version = "v1.1.4", ) go_repository( name = "io_k8s_klog_v2", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "k8s.io/klog/v2", sum = "h1:WmkrnW7fdrm0/DMClc+HIxtftvxVIPAhlVwMQo5yLco=", version = "v2.3.0", ) go_repository( name = "com_github_nxadm_tail", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/nxadm/tail", sum = "h1:DQuhQpB1tVlglWS2hLQ5OV6B5r8aGxSrPc5Qo6uTN78=", version = "v1.4.4", ) go_repository( name = "io_k8s_sigs_structured_merge_diff_v2", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "sigs.k8s.io/structured-merge-diff/v2", sum = "h1:I0h4buiCqDtPztO3NOiyoNMtqSIfld49D4Wj3UBXYZA=", version = "v2.0.1", ) go_repository( name = "org_golang_google_protobuf", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "google.golang.org/protobuf", sum = "h1:UhZDfRO8JRQru4/+LlLE0BRKGF8L+PICnvYZmx/fEGA=", version = "v1.24.0", ) go_repository( name = "com_github_cespare_xxhash", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/cespare/xxhash", sum = "h1:a6HrQnmkObjyL+Gs60czilIUGqrzKutQD6XZog3p+ko=", version = "v1.1.0", ) go_repository( name = "com_github_cespare_xxhash_v2", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/cespare/xxhash/v2", sum = "h1:6MnRN8NT7+YBpUIWxHtefFZOKTAPgGjpQSxqLNn0+qY=", version = "v2.1.1", ) go_repository( name = "com_github_chzyer_logex", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/chzyer/logex", sum = "h1:Swpa1K6QvQznwJRcfTfQJmTE72DqScAa40E+fbHEXEE=", version = "v1.1.10", ) go_repository( name = "com_github_chzyer_readline", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/chzyer/readline", sum = "h1:fY5BOSpyZCqRo5OhCuC+XN+r/bBCmeuuJtjz+bCNIf8=", version = "v0.0.0-20180603132655-2972be24d48e", ) go_repository( name = "com_github_chzyer_test", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/chzyer/test", sum = "h1:q763qf9huN11kDQavWsoZXJNW3xEE4JJyHa5Q25/sd8=", version = "v0.0.0-20180213035817-a1ea475d72b1", ) go_repository( name = "com_github_dgryski_go_sip13", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/dgryski/go-sip13", sum = "h1:RMLoZVzv4GliuWafOuPuQDKSm1SJph7uCRnnS61JAn4=", version = "v0.0.0-20181026042036-e10d5fee7954", ) go_repository( name = "com_github_go_gl_glfw_v3_3_glfw", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/go-gl/glfw/v3.3/glfw", sum = "h1:b+9H1GAsx5RsjvDFLoS5zkNBzIQMuVKUYQDmxU3N5XE=", version = "v0.0.0-20191125211704-12ad95a8df72", ) go_repository( name = "com_github_google_renameio", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/google/renameio", sum = "h1:GOZbcHa3HfsPKPlmyPyN2KEohoMXOhdMbHrvbpl2QaA=", version = "v0.1.0", ) go_repository( name = "com_github_ianlancetaylor_demangle", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/ianlancetaylor/demangle", sum = "h1:UDMh68UUwekSh5iP2OMhRRZJiiBccgV7axzUG8vi56c=", version = "v0.0.0-20181102032728-5e5cf60278f6", ) go_repository( name = "com_github_moby_term", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/moby/term", sum = "h1:aY7OQNf2XqY/JQ6qREWamhI/81os/agb2BAGpcx5yWI=", version = "v0.0.0-20200312100748-672ec06f55cd", ) go_repository( name = "com_github_oklog_ulid", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/oklog/ulid", sum = "h1:EGfNDEx6MqHz8B3uNV6QAib1UR2Lm97sHi3ocA6ESJ4=", version = "v1.3.1", ) go_repository( name = "com_github_oneofone_xxhash", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/OneOfOne/xxhash", sum = "h1:KMrpdQIwFcEqXDklaen+P1axHaj9BSKzvpUUfnHldSE=", version = "v1.2.2", ) go_repository( name = "com_github_prometheus_tsdb", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/prometheus/tsdb", sum = "h1:YZcsG11NqnK4czYLrWd9mpEuAJIHVQLwdrleYfszMAA=", version = "v0.7.1", ) go_repository( name = "com_github_rogpeppe_go_internal", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/rogpeppe/go-internal", sum = "h1:RR9dF3JtopPvtkroDZuVD7qquD0bnHlKSqaQhgwt8yk=", version = "v1.3.0", ) go_repository( name = "com_github_spaolacci_murmur3", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/spaolacci/murmur3", sum = "h1:qLC7fQah7D6K1B0ujays3HV9gkFtllcxhzImRR7ArPQ=", version = "v0.0.0-20180118202830-f09979ecbc72", ) go_repository( name = "com_github_yuin_goldmark", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/yuin/goldmark", sum = "h1:nqDD4MMMQA0lmWq03Z2/myGPYLQoXtmi0rGVs95ntbo=", version = "v1.1.27", ) go_repository( name = "com_google_cloud_go_bigquery", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "cloud.google.com/go/bigquery", sum = "h1:hL+ycaJpVE9M7nLoiXb/Pn10ENE2u+oddxbD8uu0ZVU=", version = "v1.0.1", ) go_repository( name = "com_google_cloud_go_datastore", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "cloud.google.com/go/datastore", sum = "h1:Kt+gOPPp2LEPWp8CSfxhsM8ik9CcyE/gYu+0r+RnZvM=", version = "v1.0.0", ) go_repository( name = "com_google_cloud_go_pubsub", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "cloud.google.com/go/pubsub", sum = "h1:W9tAK3E57P75u0XLLR82LZyw8VpAnhmyTOxW9qzmyj8=", version = "v1.0.1", ) go_repository( name = "com_google_cloud_go_storage", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "cloud.google.com/go/storage", sum = "h1:VV2nUM3wwLLGh9lSABFgZMjInyUbJeaRSE64WuAIQ+4=", version = "v1.0.0", ) go_repository( name = "com_shuralyov_dmitri_gpu_mtl", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "dmitri.shuralyov.com/gpu/mtl", sum = "h1:VpgP7xuJadIUuKccphEpTJnWhS2jkQyMt6Y7pJCD7fY=", version = "v0.0.0-20190408044501-666a987793e9", ) go_repository( name = "in_gopkg_errgo_v2", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "gopkg.in/errgo.v2", sum = "h1:0vLT13EuvQ0hNvakwLuFZ/jYrLp5F3kcWHXdRggjCE8=", version = "v2.1.0", ) go_repository( name = "io_rsc_binaryregexp", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "rsc.io/binaryregexp", sum = "h1:HfqmD5MEmC0zvwBuF187nq9mdnXjXsSivRiXN7SmRkE=", version = "v0.2.0", ) go_repository( name = "tools_gotest_v3", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "gotest.tools/v3", sum = "h1:kG1BFyqVHuQoVQiR1bWGnfz/fmHvvuiSPIV7rvl360E=", version = "v3.0.2", ) go_repository( name = "io_k8s_sigs_structured_merge_diff_v4", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "sigs.k8s.io/structured-merge-diff/v4", sum = "h1:YXTMot5Qz/X1iBRJhAt+vI+HVttY0WkSqqhKxQ0xVbA=", version = "v4.0.1", ) go_repository( name = "com_github_afex_hystrix_go", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/afex/hystrix-go", sum = "h1:rFw4nCn9iMW+Vajsk51NtYIcwSTkXr+JGrMd36kTDJw=", version = "v0.0.0-20180502004556-fa1af6a1f4f5", ) go_repository( name = "com_github_armon_circbuf", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/armon/circbuf", sum = "h1:QEF07wC0T1rKkctt1RINW/+RMTVmiwxETico2l3gxJA=", version = "v0.0.0-20150827004946-bbbad097214e", ) go_repository( name = "com_github_aryann_difflib", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/aryann/difflib", sum = "h1:pv34s756C4pEXnjgPfGYgdhg/ZdajGhyOvzx8k+23nw=", version = "v0.0.0-20170710044230-e206f873d14a", ) go_repository( name = "com_github_aws_aws_lambda_go", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/aws/aws-lambda-go", sum = "h1:SuCy7H3NLyp+1Mrfp+m80jcbi9KYWAs9/BXwppwRDzY=", version = "v1.13.3", ) go_repository( name = "com_github_aws_aws_sdk_go_v2", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/aws/aws-sdk-go-v2", sum = "h1:qZ+woO4SamnH/eEbjM2IDLhRNwIwND/RQyVlBLp3Jqg=", version = "v0.18.0", ) go_repository( name = "com_github_azure_go_autorest", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/Azure/go-autorest", sum = "h1:V5VMDjClD3GiElqLWO7mz2MxNAK/vTfRHdAubSIPRgs=", version = "v14.2.0+incompatible", ) go_repository( name = "com_github_casbin_casbin_v2", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/casbin/casbin/v2", sum = "h1:bTwon/ECRx9dwBy2ewRVr5OiqjeXSGiTUY74sDPQi/g=", version = "v2.1.2", ) go_repository( name = "com_github_clbanning_x2j", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/clbanning/x2j", sum = "h1:EdRZT3IeKQmfCSrgo8SZ8V3MEnskuJP0wCYNpe+aiXo=", version = "v0.0.0-20191024224557-825249438eec", ) go_repository( name = "com_github_cncf_udpa_go", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/cncf/udpa/go", sum = "h1:WBZRG4aNOuI15bLRrCgN8fCq8E5Xuty6jGbmSNEvSsU=", version = "v0.0.0-20191209042840-269d4d468f6f", ) go_repository( name = "com_github_codahale_hdrhistogram", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/codahale/hdrhistogram", sum = "h1:qMd81Ts1T2OTKmB4acZcyKaMtRnY5Y44NuXGX2GFJ1w=", version = "v0.0.0-20161010025455-3a0bb77429bd", ) go_repository( name = "com_github_edsrzf_mmap_go", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/edsrzf/mmap-go", sum = "h1:CEBF7HpRnUCSJgGUb5h1Gm7e3VkmVDrR8lvWVLtrOFw=", version = "v1.0.0", ) go_repository( name = "com_github_franela_goblin", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/franela/goblin", sum = "h1:gb2Z18BhTPJPpLQWj4T+rfKHYCHxRHCtRxhKKjRidVw=", version = "v0.0.0-20200105215937-c9ffbefa60db", ) go_repository( name = "com_github_franela_goreq", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/franela/goreq", sum = "h1:a9ENSRDFBUPkJ5lCgVZh26+ZbGyoVJG7yb5SSzF5H54=", version = "v0.0.0-20171204163338-bcd34c9993f8", ) go_repository( name = "com_github_frankban_quicktest", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/frankban/quicktest", sum = "h1:Yyrghcw93e1jKo4DTZkRFTTFvBsVhzbblBUPNU1vW6Q=", version = "v1.11.0", ) go_repository( name = "com_github_go_gl_glfw", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/go-gl/glfw", sum = "h1:QbL/5oDUmRBzO9/Z7Seo6zf912W/a6Sr4Eu0G/3Jho0=", version = "v0.0.0-20190409004039-e6da0acd62b1", ) go_repository( name = "com_github_gogo_googleapis", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/gogo/googleapis", sum = "h1:kFkMAZBNAn4j7K0GiZr8cRYzejq68VbheufiV3YuyFI=", version = "v1.1.0", ) go_repository( name = "com_github_google_martian_v3", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/google/martian/v3", sum = "h1:pMen7vLs8nvgEYhywH3KDWJIJTeEr2ULsVWHWYHQyBs=", version = "v3.0.0", ) go_repository( name = "com_github_hashicorp_consul_api", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/hashicorp/consul/api", sum = "h1:BNQPM9ytxj6jbjjdRPioQ94T6YXriSopn0i8COv6SRA=", version = "v1.1.0", ) go_repository( name = "com_github_hashicorp_consul_sdk", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/hashicorp/consul/sdk", sum = "h1:LnuDWGNsoajlhGyHJvuWW6FVqRl8JOTPqS6CPTsYjhY=", version = "v0.1.1", ) go_repository( name = "com_github_hashicorp_go_msgpack", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/hashicorp/go-msgpack", sum = "h1:zKjpN5BK/P5lMYrLmBHdBULWbJ0XpYR+7NGzqkZzoD4=", version = "v0.5.3", ) go_repository( name = "com_github_hashicorp_go_net", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/hashicorp/go.net", sum = "h1:sNCoNyDEvN1xa+X0baata4RdcpKwcMS6DH+xwfqPgjw=", version = "v0.0.1", ) go_repository( name = "com_github_hashicorp_go_syslog", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/hashicorp/go-syslog", sum = "h1:KaodqZuhUoZereWVIYmpUgZysurB1kBLX2j0MwMrUAE=", version = "v1.0.0", ) go_repository( name = "com_github_hashicorp_logutils", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/hashicorp/logutils", sum = "h1:dLEQVugN8vlakKOUE3ihGLTZJRB4j+M2cdTm/ORI65Y=", version = "v1.0.0", ) go_repository( name = "com_github_hashicorp_mdns", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/hashicorp/mdns", sum = "h1:WhIgCr5a7AaVH6jPUwjtRuuE7/RDufnUvzIr48smyxs=", version = "v1.0.0", ) go_repository( name = "com_github_hashicorp_memberlist", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/hashicorp/memberlist", sum = "h1:EmmoJme1matNzb+hMpDuR/0sbJSUisxyqBGG676r31M=", version = "v0.1.3", ) go_repository( name = "com_github_hashicorp_serf", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/hashicorp/serf", sum = "h1:YZ7UKsJv+hKjqGVUUbtE3HNj79Eln2oQ75tniF6iPt0=", version = "v0.8.2", ) go_repository( name = "com_github_hudl_fargo", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/hudl/fargo", sum = "h1:0U6+BtN6LhaYuTnIJq4Wyq5cpn6O2kWrxAtcqBmYY6w=", version = "v1.3.0", ) go_repository( name = "com_github_influxdata_influxdb1_client", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/influxdata/influxdb1-client", sum = "h1:/WZQPMZNsjZ7IlCpsLGdQBINg5bxKQ1K1sh6awxLtkA=", version = "v0.0.0-20191209144304-8bf82d3c094d", ) go_repository( name = "com_github_jmespath_go_jmespath_internal_testify", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/jmespath/go-jmespath/internal/testify", sum = "h1:shLQSRRSCCPj3f2gpwzGwWFoC7ycTf1rcQZHOlsJ6N8=", version = "v1.5.1", ) go_repository( name = "com_github_josharian_intern", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/josharian/intern", sum = "h1:vlS4z54oSdjm0bgjRigI+G1HpF+tI+9rE5LLzOg8HmY=", version = "v1.0.0", ) go_repository( name = "com_github_jpillora_backoff", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/jpillora/backoff", sum = "h1:uvFg412JmmHBHw7iwprIxkPMI+sGQ4kzOWsMeHnm2EA=", version = "v1.0.0", ) go_repository( name = "com_github_knetic_govaluate", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/Knetic/govaluate", sum = "h1:1G1pk05UrOh0NlF1oeaaix1x8XzrfjIDK47TY0Zehcw=", version = "v3.0.1-0.20171022003610-9aa49832a739+incompatible", ) go_repository( name = "com_github_lightstep_lightstep_tracer_common_golang_gogo", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/lightstep/lightstep-tracer-common/golang/gogo", sum = "h1:143Bb8f8DuGWck/xpNUOckBVYfFbBTnLevfRZ1aVVqo=", version = "v0.0.0-20190605223551-bc2310a04743", ) go_repository( name = "com_github_lightstep_lightstep_tracer_go", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/lightstep/lightstep-tracer-go", sum = "h1:vi1F1IQ8N7hNWytK9DpJsUfQhGuNSc19z330K6vl4zk=", version = "v0.18.1", ) go_repository( name = "com_github_lyft_protoc_gen_validate", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/lyft/protoc-gen-validate", sum = "h1:KNt/RhmQTOLr7Aj8PsJ7mTronaFyx80mRTT9qF261dA=", version = "v0.0.13", ) go_repository( name = "com_github_mitchellh_gox", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/mitchellh/gox", sum = "h1:lfGJxY7ToLJQjHHwi0EX6uYBdK78egf954SQl13PQJc=", version = "v0.4.0", ) go_repository( name = "com_github_mitchellh_iochan", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/mitchellh/iochan", sum = "h1:C+X3KsSTLFVBr/tK1eYN/vs4rJcvsiLU338UhYPJWeY=", version = "v1.0.0", ) go_repository( name = "com_github_nats_io_jwt", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/nats-io/jwt", sum = "h1:+RB5hMpXUUA2dfxuhBTEkMOrYmM+gKIZYS1KjSostMI=", version = "v0.3.2", ) go_repository( name = "com_github_nats_io_nats_go", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/nats-io/nats.go", sum = "h1:ik3HbLhZ0YABLto7iX80pZLPw/6dx3T+++MZJwLnMrQ=", version = "v1.9.1", ) go_repository( name = "com_github_nats_io_nats_server_v2", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/nats-io/nats-server/v2", sum = "h1:i2Ly0B+1+rzNZHHWtD4ZwKi+OU5l+uQo1iDHZ2PmiIc=", version = "v2.1.2", ) go_repository( name = "com_github_nats_io_nkeys", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/nats-io/nkeys", sum = "h1:6JrEfig+HzTH85yxzhSVbjHRJv9cn0p6n3IngIcM5/k=", version = "v0.1.3", ) go_repository( name = "com_github_nats_io_nuid", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/nats-io/nuid", sum = "h1:5iA8DT8V7q8WK2EScv2padNa/rTESc1KdnPw4TC2paw=", version = "v1.0.1", ) go_repository( name = "com_github_niemeyer_pretty", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/niemeyer/pretty", sum = "h1:fD57ERR4JtEqsWbfPhv4DMiApHyliiK5xCTNVSPiaAs=", version = "v0.0.0-20200227124842-a10e7caefd8e", ) go_repository( name = "com_github_oklog_oklog", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/oklog/oklog", sum = "h1:wVfs8F+in6nTBMkA7CbRw+zZMIB7nNM825cM1wuzoTk=", version = "v0.3.2", ) go_repository( name = "com_github_op_go_logging", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/op/go-logging", sum = "h1:lDH9UUVJtmYCjyT0CI4q8xvlXPxeZ0gYCVvWbmPlp88=", version = "v0.0.0-20160315200505-970db520ece7", ) go_repository( name = "com_github_opentracing_basictracer_go", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/opentracing/basictracer-go", sum = "h1:YyUAhaEfjoWXclZVJ9sGoNct7j4TVk7lZWlQw5UXuoo=", version = "v1.0.0", ) go_repository( name = "com_github_opentracing_contrib_go_observer", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/opentracing-contrib/go-observer", sum = "h1:lM6RxxfUMrYL/f8bWEUqdXrANWtrL7Nndbm9iFN0DlU=", version = "v0.0.0-20170622124052-a52f23424492", ) go_repository( name = "com_github_opentracing_opentracing_go", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/opentracing/opentracing-go", sum = "h1:pWlfV3Bxv7k65HYwkikxat0+s3pV4bsqf19k25Ur8rU=", version = "v1.1.0", ) go_repository( name = "com_github_openzipkin_contrib_zipkin_go_opentracing", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/openzipkin-contrib/zipkin-go-opentracing", sum = "h1:ZCnq+JUrvXcDVhX/xRolRBZifmabN1HcS1wrPSvxhrU=", version = "v0.4.5", ) go_repository( name = "com_github_pact_foundation_pact_go", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/pact-foundation/pact-go", sum = "h1:OYkFijGHoZAYbOIb1LWXrwKQbMMRUv1oQ89blD2Mh2Q=", version = "v1.0.4", ) go_repository( name = "com_github_performancecopilot_speed", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/performancecopilot/speed", sum = "h1:2WnRzIquHa5QxaJKShDkLM+sc0JPuwhXzK8OYOyt3Vg=", version = "v3.0.0+incompatible", ) go_repository( name = "com_github_pkg_profile", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/pkg/profile", sum = "h1:F++O52m40owAmADcojzM+9gyjmMOY/T4oYJkgFDH8RE=", version = "v1.2.1", ) go_repository( name = "com_github_samuel_go_zookeeper", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/samuel/go-zookeeper", sum = "h1:p3Vo3i64TCLY7gIfzeQaUJ+kppEO5WQG3cL8iE8tGHU=", version = "v0.0.0-20190923202752-2cc03de413da", ) go_repository( name = "com_github_sean__seed", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/sean-/seed", sum = "h1:nn5Wsu0esKSJiIVhscUtVbo7ada43DJhG55ua/hjS5I=", version = "v0.0.0-20170313163322-e2103e2c3529", ) go_repository( name = "com_github_sony_gobreaker", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/sony/gobreaker", sum = "h1:oMnRNZXX5j85zso6xCPRNPtmAycat+WcoKbklScLDgQ=", version = "v0.4.1", ) go_repository( name = "com_github_stoewer_go_strcase", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/stoewer/go-strcase", sum = "h1:Z2iHWqGXH00XYgqDmNgQbIBxf3wrNq0F3feEy0ainaU=", version = "v1.2.0", ) go_repository( name = "com_github_streadway_amqp", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/streadway/amqp", sum = "h1:WhxRHzgeVGETMlmVfqhRn8RIeeNoPr2Czh33I4Zdccw=", version = "v0.0.0-20190827072141-edfb9018d271", ) go_repository( name = "com_github_streadway_handy", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/streadway/handy", sum = "h1:AhmOdSHeswKHBjhsLs/7+1voOxT+LLrSk/Nxvk35fug=", version = "v0.0.0-20190108123426-d5acb3125c2a", ) go_repository( name = "com_github_vividcortex_gohistogram", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/VividCortex/gohistogram", sum = "h1:6+hBz+qvs0JOrrNhhmR7lFxo5sINxBCGXrdtl/UvroE=", version = "v1.0.0", ) go_repository( name = "com_sourcegraph_sourcegraph_appdash", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "sourcegraph.com/sourcegraph/appdash", sum = "h1:ucqkfpjg9WzSUubAO62csmucvxl4/JeW3F4I4909XkM=", version = "v0.0.0-20190731080439-ebfcffb1b5c0", ) go_repository( name = "in_gopkg_gcfg_v1", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "gopkg.in/gcfg.v1", sum = "h1:m8OOJ4ccYHnx2f4gQwpno8nAX5OGOh7RLaaz0pj3Ogs=", version = "v1.2.3", ) go_repository( name = "in_gopkg_warnings_v0", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "gopkg.in/warnings.v0", sum = "h1:wFXVbFY8DY5/xOe1ECiWdKCzZlxgshcYVNkBHstARME=", version = "v0.1.2", ) go_repository( name = "io_rsc_quote_v3", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "rsc.io/quote/v3", sum = "h1:9JKUTTIUgS6kzR9mK1YuGKv6Nl+DijDNIc0ghT58FaY=", version = "v3.1.0", ) go_repository( name = "io_rsc_sampler", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "rsc.io/sampler", sum = "h1:7uVkIFmeBqHfdjD+gZwtXXI+RODJ2Wc4O7MPEh/QiW4=", version = "v1.3.0", ) go_repository( name = "org_golang_google_grpc_examples", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "google.golang.org/grpc/examples", sum = "h1:unzgkDPNegIn/czOcgxzQaTzEzOiBH1V1j55rsEzVEg=", version = "v0.0.0-20200922230038-4e932bbcb079", ) go_repository( name = "org_golang_google_grpc_naming", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "google.golang.org/grpc/naming", replace = "github.com/xiegeo/grpc-naming", sum = "h1:B/eYkKzZDCUWQWl3XDLrSy8JjL332OCkYKZhU9iCyc0=", version = "v1.29.1-alpha", ) go_repository( name = "org_uber_go_tools", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "go.uber.org/tools", sum = "h1:0mgffUl7nfd+FpvXMVz4IDEaUSmT1ysygQC7qYo7sG4=", version = "v0.0.0-20190618225709-2cfd321de3ee", ) go_repository( name = "com_github_bketelsen_crypt", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/bketelsen/crypt", sum = "h1:+0HFd5KSZ/mm3JmhmrDukiId5iR6w4+BdFtfSy4yWIc=", version = "v0.0.3-0.20200106085610-5cbc8cc4026c", ) go_repository( name = "com_github_subosito_gotenv", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/subosito/gotenv", sum = "h1:Slr1R9HxAlEKefgq5jn9U+DnETlIUa6HfgEzj0g5d7s=", version = "v1.2.0", ) go_repository( name = "com_github_venafi_vcert_v4", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "github.com/Venafi/vcert/v4", sum = "h1:37gfyjS9v5YvZcIABwNPo1fAC31lIZT7glVK1vfUxk4=", version = "v4.11.0", ) go_repository( name = "com_google_cloud_go_firestore", build_file_generation = "on", build_file_proto_mode = "disable", importpath = "cloud.google.com/go/firestore", sum = "h1:9x7Bx0A9R5/M9jibeJeZWqjeVEIxYW9fZYqB9a70/bY=", version = "v1.1.0", )
load('@bazel_gazelle//:deps.bzl', 'go_repository') def manual_repositories(): go_repository(name='org_golang_x_mod', build_file_generation='on', build_file_proto_mode='disable', importpath='golang.org/x/mod', sum='h1:KU7oHjnv3XNWfa5COkzUifxZmxp1TyI7ImMXqFxLwvQ=', version='v0.2.0') def go_repositories(): manual_repositories() go_repository(name='co_honnef_go_tools', build_file_generation='on', build_file_proto_mode='disable', importpath='honnef.co/go/tools', sum='h1:3JgtbtFHMiCmsznwGVTUWbgGov+pVqnlf1dEJTNAXeM=', version='v0.0.1-2019.2.3') go_repository(name='com_github_alecthomas_template', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/alecthomas/template', sum='h1:JYp7IbQjafoB+tBA3gMyHYHrpOtNuDiK/uB5uXxq5wM=', version='v0.0.0-20190718012654-fb15b899a751') go_repository(name='com_github_alecthomas_units', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/alecthomas/units', sum='h1:Hs82Z41s6SdL1CELW+XaDYmOH4hkBN4/N9og/AsOv7E=', version='v0.0.0-20190717042225-c3de453c63f4') go_repository(name='com_github_armon_consul_api', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/armon/consul-api', sum='h1:G1bPvciwNyF7IUmKXNt9Ak3m6u9DE1rF+RmtIkBpVdA=', version='v0.0.0-20180202201655-eb2c6b5be1b6') go_repository(name='com_github_armon_go_metrics', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/armon/go-metrics', sum='h1:8GUt8eRujhVEGZFFEjBj46YV4rDjvGrNxb0KMWYkL2I=', version='v0.0.0-20180917152333-f0300d1749da') go_repository(name='com_github_armon_go_radix', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/armon/go-radix', sum='h1:BUAU3CGlLvorLI26FmByPp2eC2qla6E1Tw+scpcg/to=', version='v0.0.0-20180808171621-7fddfc383310') go_repository(name='com_github_asaskevich_govalidator', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/asaskevich/govalidator', sum='h1:idn718Q4B6AGu/h5Sxe66HYVdqdGu2l9Iebqhi/AEoA=', version='v0.0.0-20190424111038-f61b66f89f4a') go_repository(name='com_github_aws_aws_sdk_go', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/aws/aws-sdk-go', sum='h1:izATc/E0+HcT5YHmaQVjn7GHCoqaBxn0PGo6Zq5UNFA=', version='v1.34.30') go_repository(name='com_github_azure_azure_sdk_for_go', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/Azure/azure-sdk-for-go', sum='h1:m4oQOm3HXtQh2Ipata+pLSS1kGUD/7ikkvNq81XM/7s=', version='v46.3.0+incompatible') go_repository(name='com_github_azure_go_ansiterm', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/Azure/go-ansiterm', sum='h1:w+iIsaOQNcT7OZ575w+acHgRric5iCyQh+xv+KJ4HB8=', version='v0.0.0-20170929234023-d6e3b3328b78') go_repository(name='com_github_azure_go_autorest_autorest', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/Azure/go-autorest/autorest', sum='h1:LIzfhNo9I3+il0KO2JY1/lgJmjig7lY0wFulQNZkbtg=', version='v0.11.6') go_repository(name='com_github_azure_go_autorest_autorest_adal', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/Azure/go-autorest/autorest/adal', sum='h1:1/DtH4Szusk4psLBrJn/gocMRIf1ji30WAz3GfyULRQ=', version='v0.9.4') go_repository(name='com_github_azure_go_autorest_autorest_date', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/Azure/go-autorest/autorest/date', sum='h1:7gUk1U5M/CQbp9WoqinNzJar+8KY+LPI6wiWrP/myHw=', version='v0.3.0') go_repository(name='com_github_azure_go_autorest_autorest_mocks', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/Azure/go-autorest/autorest/mocks', sum='h1:K0laFcLE6VLTOwNgSxaGbUcLPuGXlNkbVvq4cW4nIHk=', version='v0.4.1') go_repository(name='com_github_azure_go_autorest_autorest_to', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/Azure/go-autorest/autorest/to', sum='h1:oXVqrxakqqV1UZdSazDOPOLvOIz+XA683u8EctwboHk=', version='v0.4.0') go_repository(name='com_github_azure_go_autorest_autorest_validation', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/Azure/go-autorest/autorest/validation', sum='h1:3I9AAI63HfcLtphd9g39ruUwRI+Ca+z/f36KHPFRUss=', version='v0.3.0') go_repository(name='com_github_azure_go_autorest_logger', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/Azure/go-autorest/logger', sum='h1:e4RVHVZKC5p6UANLJHkM4OfR1UKZPj8Wt8Pcx+3oqrE=', version='v0.2.0') go_repository(name='com_github_azure_go_autorest_tracing', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/Azure/go-autorest/tracing', sum='h1:TYi4+3m5t6K48TGI9AUdb+IzbnSxvnvUMfuitfgcfuo=', version='v0.6.0') go_repository(name='com_github_beorn7_perks', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/beorn7/perks', sum='h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM=', version='v1.0.1') go_repository(name='com_github_bitly_go_hostpool', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/bitly/go-hostpool', sum='h1:mXoPYz/Ul5HYEDvkta6I8/rnYM5gSdSV2tJ6XbZuEtY=', version='v0.0.0-20171023180738-a3a6125de932') go_repository(name='com_github_blang_semver', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/blang/semver', sum='h1:CGxCgetQ64DKk7rdZ++Vfnb1+ogGNnB17OJKJXD2Cfs=', version='v3.5.0+incompatible') go_repository(name='com_github_bmizerany_assert', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/bmizerany/assert', sum='h1:DDGfHa7BWjL4YnC6+E63dPcxHo2sUxDIu8g3QgEJdRY=', version='v0.0.0-20160611221934-b7ed37b82869') go_repository(name='com_github_burntsushi_toml', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/BurntSushi/toml', sum='h1:WXkYYl6Yr3qBf1K79EBnL4mak0OimBfB0XUf9Vl28OQ=', version='v0.3.1') go_repository(name='com_github_burntsushi_xgb', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/BurntSushi/xgb', sum='h1:1BDTz0u9nC3//pOCMdNH+CiXJVYJh5UQNCOBG7jbELc=', version='v0.0.0-20160522181843-27f122750802') go_repository(name='com_github_cenkalti_backoff', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/cenkalti/backoff', sum='h1:tNowT99t7UNflLxfYYSlKYsBpXdEet03Pg2g16Swow4=', version='v2.2.1+incompatible') go_repository(name='com_github_client9_misspell', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/client9/misspell', sum='h1:ta993UF76GwbvJcIo3Y68y/M3WxlpEHPWIGDkJYwzJI=', version='v0.3.4') go_repository(name='com_github_cloudflare_cloudflare_go', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/cloudflare/cloudflare-go', sum='h1:bhMGoNhAg21DuqJjU9jQepRRft6vYfo6pejT3NN4V6A=', version='v0.13.2') go_repository(name='com_github_containerd_continuity', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/containerd/continuity', sum='h1:4BX8f882bXEDKfWIf0wa8HRvpnBoPszJJXL+TVbBw4M=', version='v0.0.0-20181203112020-004b46473808') go_repository(name='com_github_coreos_bbolt', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/coreos/bbolt', sum='h1:wZwiHHUieZCquLkDL0B8UhzreNWsPHooDAG3q34zk0s=', version='v1.3.2') go_repository(name='com_github_coreos_etcd', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/coreos/etcd', sum='h1:8F3hqu9fGYLBifCmRCJsicFqDx/D68Rt3q1JMazcgBQ=', version='v3.3.13+incompatible') go_repository(name='com_github_coreos_go_etcd', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/coreos/go-etcd', sum='h1:bXhRBIXoTm9BYHS3gE0TtQuyNZyeEMux2sDi4oo5YOo=', version='v2.0.0+incompatible') go_repository(name='com_github_coreos_go_oidc', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/coreos/go-oidc', sum='h1:sdJrfw8akMnCuUlaZU3tE/uYXFgfqom8DBE9so9EBsM=', version='v2.1.0+incompatible') go_repository(name='com_github_coreos_go_semver', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/coreos/go-semver', sum='h1:wkHLiw0WNATZnSG7epLsujiMCgPAc9xhjJ4tgnAxmfM=', version='v0.3.0') go_repository(name='com_github_coreos_go_systemd', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/coreos/go-systemd', sum='h1:Wf6HqHfScWJN9/ZjdUKyjop4mf3Qdd+1TvvltAvM3m8=', version='v0.0.0-20190321100706-95778dfbb74e') go_repository(name='com_github_coreos_pkg', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/coreos/pkg', sum='h1:lBNOc5arjvs8E5mO2tbpBpLoyyu8B6e44T7hJy6potg=', version='v0.0.0-20180928190104-399ea9e2e55f') go_repository(name='com_github_cpu_goacmedns', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/cpu/goacmedns', sum='h1:QOeMpIEsIdm1LSASSswjaTf8CXmzcrgy5OeCfHjppA4=', version='v0.0.3') go_repository(name='com_github_cpuguy83_go_md2man', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/cpuguy83/go-md2man', sum='h1:BSKMNlYxDvnunlTymqtgONjNnaRV1sTpcovwwjF22jk=', version='v1.0.10') go_repository(name='com_github_davecgh_go_spew', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/davecgh/go-spew', sum='h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=', version='v1.1.1') go_repository(name='com_github_denisenkom_go_mssqldb', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/denisenkom/go-mssqldb', sum='h1:yJ2kD1BvM28M4gt31MuDr0ROKsW+v6zBk9G0Bcr8qAY=', version='v0.0.0-20190412130859-3b1d194e553a') go_repository(name='com_github_dgrijalva_jwt_go', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/dgrijalva/jwt-go', sum='h1:7qlOGliEKZXTDg6OTjfoBKDXWrumCAMpl/TFQ4/5kLM=', version='v3.2.0+incompatible') go_repository(name='com_github_digitalocean_godo', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/digitalocean/godo', sum='h1:IMElzMUpO1dVR8qjSg53+5vDkOLzMbhJt4yTAq7NGCQ=', version='v1.44.0') go_repository(name='com_github_docker_docker', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/docker/docker', sum='h1:w3NnFcKR5241cfmQU5ZZAsf0xcpId6mWOupTvJlUX2U=', version='v0.7.3-0.20190327010347-be7ac8be2ae0') go_repository(name='com_github_docker_go_connections', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/docker/go-connections', sum='h1:El9xVISelRB7BuFusrZozjnkIM5YnzCViNKohAFqRJQ=', version='v0.4.0') go_repository(name='com_github_docker_go_units', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/docker/go-units', sum='h1:3uh0PgVws3nIA0Q+MwDC8yjEPf9zjRfZZWXZYDct3Tw=', version='v0.4.0') go_repository(name='com_github_docker_spdystream', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/docker/spdystream', sum='h1:cenwrSVm+Z7QLSV/BsnenAOcDXdX4cMv4wP0B/5QbPg=', version='v0.0.0-20160310174837-449fdfce4d96') go_repository(name='com_github_duosecurity_duo_api_golang', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/duosecurity/duo_api_golang', sum='h1:2MIhn2R6oXQbgW5yHfS+d6YqyMfXiu2L55rFZC4UD/M=', version='v0.0.0-20190308151101-6c680f768e74') go_repository(name='com_github_elazarl_goproxy', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/elazarl/goproxy', sum='h1:yUdfgN0XgIJw7foRItutHYUIhlcKzcSf5vDpdhQAKTc=', version='v0.0.0-20180725130230-947c36da3153') go_repository(name='com_github_emicklei_go_restful', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/emicklei/go-restful', sum='h1:spTtZBk5DYEvbxMVutUuTyh1Ao2r4iyvLdACqsl/Ljk=', version='v2.9.5+incompatible') go_repository(name='com_github_evanphx_json_patch', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/evanphx/json-patch', sum='h1:kLcOMZeuLAJvL2BPWLMIj5oaZQobrkAqrL+WFZwQses=', version='v4.9.0+incompatible') go_repository(name='com_github_fatih_color', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/fatih/color', sum='h1:DkWD4oS2D8LGGgTQ6IvwJJXSL5Vp2ffcQg58nFV38Ys=', version='v1.7.0') go_repository(name='com_github_fatih_structs', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/fatih/structs', sum='h1:Q7juDM0QtcnhCpeyLGQKyg4TOIghuNXrkL32pHAUMxo=', version='v1.1.0') go_repository(name='com_github_fsnotify_fsnotify', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/fsnotify/fsnotify', sum='h1:hsms1Qyu0jgnwNXIxa+/V/PDsU6CfLf6CNO8H7IWoS4=', version='v1.4.9') go_repository(name='com_github_ghodss_yaml', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/ghodss/yaml', sum='h1:wQHKEahhL6wmXdzwWG11gIVCkOv05bNOh+Rxn0yngAk=', version='v1.0.0') go_repository(name='com_github_globalsign_mgo', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/globalsign/mgo', sum='h1:DujepqpGd1hyOd7aW59XpK7Qymp8iy83xq74fLr21is=', version='v0.0.0-20181015135952-eeefdecb41b8') go_repository(name='com_github_go_ini_ini', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/go-ini/ini', sum='h1:TWr1wGj35+UiWHlBA8er89seFXxzwFn11spilrrj+38=', version='v1.42.0') go_repository(name='com_github_go_kit_kit', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/go-kit/kit', sum='h1:wDJmvq38kDhkVxi50ni9ykkdUr1PKgqKOoi01fa0Mdk=', version='v0.9.0') go_repository(name='com_github_go_logfmt_logfmt', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/go-logfmt/logfmt', sum='h1:MP4Eh7ZCb31lleYCFuwm0oe4/YGak+5l1vA2NOE80nA=', version='v0.4.0') go_repository(name='com_github_go_logr_logr', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/go-logr/logr', sum='h1:ZPVluSmhtMIHlqUDMZu70FgMpRzbQfl4h9oKCAXOVDE=', version='v0.2.1-0.20200730175230-ee2de8da5be6') go_repository(name='com_github_go_logr_zapr', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/go-logr/zapr', sum='h1:qXBXPDdNncunGs7XeEpsJt8wCjYBygluzfdLO0G5baE=', version='v0.1.1') go_repository(name='com_github_go_openapi_analysis', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/go-openapi/analysis', sum='h1:8b2ZgKfKIUTVQpTb77MoRDIMEIwvDVw40o3aOXdfYzI=', version='v0.19.5') go_repository(name='com_github_go_openapi_errors', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/go-openapi/errors', sum='h1:a2kIyV3w+OS3S97zxUndRVD46+FhGOUBDFY7nmu4CsY=', version='v0.19.2') go_repository(name='com_github_go_openapi_jsonpointer', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/go-openapi/jsonpointer', sum='h1:gihV7YNZK1iK6Tgwwsxo2rJbD1GTbdm72325Bq8FI3w=', version='v0.19.3') go_repository(name='com_github_go_openapi_jsonreference', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/go-openapi/jsonreference', sum='h1:5cxNfTy0UVC3X8JL5ymxzyoUZmo8iZb+jeTWn7tUa8o=', version='v0.19.3') go_repository(name='com_github_go_openapi_loads', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/go-openapi/loads', sum='h1:5I4CCSqoWzT+82bBkNIvmLc0UOsoKKQ4Fz+3VxOB7SY=', version='v0.19.4') go_repository(name='com_github_go_openapi_runtime', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/go-openapi/runtime', sum='h1:csnOgcgAiuGoM/Po7PEpKDoNulCcF3FGbSnbHfxgjMI=', version='v0.19.4') go_repository(name='com_github_go_openapi_spec', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/go-openapi/spec', sum='h1:0XRyw8kguri6Yw4SxhsQA/atC88yqrk0+G4YhI2wabc=', version='v0.19.3') go_repository(name='com_github_go_openapi_strfmt', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/go-openapi/strfmt', sum='h1:eRfyY5SkaNJCAwmmMcADjY31ow9+N7MCLW7oRkbsINA=', version='v0.19.3') go_repository(name='com_github_go_openapi_swag', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/go-openapi/swag', sum='h1:lTz6Ys4CmqqCQmZPBlbQENR1/GucA2bzYTE12Pw4tFY=', version='v0.19.5') go_repository(name='com_github_go_openapi_validate', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/go-openapi/validate', sum='h1:QhCBKRYqZR+SKo4gl1lPhPahope8/RLt6EVgY8X80w0=', version='v0.19.5') go_repository(name='com_github_go_sql_driver_mysql', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/go-sql-driver/mysql', sum='h1:ozyZYNQW3x3HtqT1jira07DN2PArx2v7/mN66gGcHOs=', version='v1.5.0') go_repository(name='com_github_go_stack_stack', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/go-stack/stack', sum='h1:5SgMzNM5HxrEjV0ww2lTmX6E2Izsfxas4+YHWRs3Lsk=', version='v1.8.0') go_repository(name='com_github_gobuffalo_flect', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/gobuffalo/flect', sum='h1:EWCvMGGxOjsgwlWaP+f4+Hh6yrrte7JeFL2S6b+0hdM=', version='v0.2.0') go_repository(name='com_github_gocql_gocql', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/gocql/gocql', sum='h1:fwXmhM0OqixzJDOGgTSyNH9eEDij9uGTXwsyWXvyR0A=', version='v0.0.0-20190402132108-0e1d5de854df') go_repository(name='com_github_gogo_protobuf', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/gogo/protobuf', sum='h1:DqDEcV5aeaTmdFBePNpYsp3FlcVH/2ISVVM9Qf8PSls=', version='v1.3.1') go_repository(name='com_github_golang_glog', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/golang/glog', sum='h1:VKtxabqXZkF25pY9ekfRL6a582T4P37/31XEstQ5p58=', version='v0.0.0-20160126235308-23def4e6c14b') go_repository(name='com_github_golang_groupcache', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/golang/groupcache', sum='h1:5ZkaAPbicIKTF2I64qf5Fh8Aa83Q/dnOafMYV0OMwjA=', version='v0.0.0-20191227052852-215e87163ea7') go_repository(name='com_github_golang_mock', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/golang/mock', sum='h1:qGJ6qTW+x6xX/my+8YUVl4WNpX9B7+/l2tRsHGZ7f2s=', version='v1.3.1') go_repository(name='com_github_golang_protobuf', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/golang/protobuf', sum='h1:+Z5KGCizgyZCbGh1KZqA0fcLLkwbsjIzS4aV2v7wJX0=', version='v1.4.2') go_repository(name='com_github_golang_snappy', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/golang/snappy', sum='h1:Qgr9rKW7uDUkrbSmQeiDsGa8SjGyCOGtuasMWwvp2P4=', version='v0.0.1') go_repository(name='com_github_google_btree', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/google/btree', sum='h1:0udJVsspx3VBr5FwtLhQQtuAsVc79tTq0ocGIPAU6qo=', version='v1.0.0') go_repository(name='com_github_google_go_cmp', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/google/go-cmp', sum='h1:/exdXoGamhu5ONeUJH0deniYLWYvQwW66yvlfiiKTu0=', version='v0.4.1') go_repository(name='com_github_google_go_github', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/google/go-github', sum='h1:N0LgJ1j65A7kfXrZnUDaYCs/Sf4rEjNlfyDHW9dolSY=', version='v17.0.0+incompatible') go_repository(name='com_github_google_go_querystring', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/google/go-querystring', sum='h1:Xkwi/a1rcvNg1PPYe5vI8GbeBY/jrVuDX5ASuANWTrk=', version='v1.0.0') go_repository(name='com_github_google_gofuzz', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/google/gofuzz', sum='h1:xRy4A+RhZaiKjJ1bPfwQ8sedCA+YS2YcCHW6ec7JMi0=', version='v1.2.0') go_repository(name='com_github_google_martian', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/google/martian', sum='h1:/CP5g8u/VJHijgedC/Legn3BAbAaWPgecwXBIDzw5no=', version='v2.1.0+incompatible') go_repository(name='com_github_google_pprof', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/google/pprof', sum='h1:DLpL8pWq0v4JYoRpEhDfsJhhJyGKCcQM2WPW2TJs31c=', version='v0.0.0-20191218002539-d4f498aebedc') go_repository(name='com_github_google_uuid', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/google/uuid', sum='h1:Gkbcsh/GbpXz7lPftLA3P6TYMwjCLYm83jiFQZF/3gY=', version='v1.1.1') go_repository(name='com_github_googleapis_gax_go_v2', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/googleapis/gax-go/v2', sum='h1:sjZBwGj9Jlw33ImPtvFviGYvseOtDM7hkSKB7+Tv3SM=', version='v2.0.5') go_repository(name='com_github_googleapis_gnostic', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/googleapis/gnostic', sum='h1:DLJCy1n/vrD4HPjOvYcT8aYQXpPIzoRZONaYwyycI+I=', version='v0.4.1') go_repository(name='com_github_gophercloud_gophercloud', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/gophercloud/gophercloud', sum='h1:P/nh25+rzXouhytV2pUHBb65fnds26Ghl8/391+sT5o=', version='v0.1.0') go_repository(name='com_github_gopherjs_gopherjs', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/gopherjs/gopherjs', sum='h1:EGx4pi6eqNxGaHF6qqu48+N2wcFQ5qg5FXgOdqsJ5d8=', version='v0.0.0-20181017120253-0766667cb4d1') go_repository(name='com_github_gorilla_context', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/gorilla/context', sum='h1:AWwleXJkX/nhcU9bZSnZoi3h/qGYqQAGhq6zZe/aQW8=', version='v1.1.1') go_repository(name='com_github_gorilla_mux', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/gorilla/mux', sum='h1:i40aqfkR1h2SlN9hojwV5ZA91wcXFOvkdNIeFDP5koI=', version='v1.8.0') go_repository(name='com_github_gorilla_websocket', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/gorilla/websocket', sum='h1:+/TMaTYc4QFitKJxsQ7Yye35DkWvkdLcvGKqM+x0Ufc=', version='v1.4.2') go_repository(name='com_github_gotestyourself_gotestyourself', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/gotestyourself/gotestyourself', sum='h1:AQwinXlbQR2HvPjQZOmDhRqsv5mZf+Jb1RnSLxcqZcI=', version='v2.2.0+incompatible') go_repository(name='com_github_gregjones_httpcache', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/gregjones/httpcache', sum='h1:pdN6V1QBWetyv/0+wjACpqVH+eVULgEjkurDLq3goeM=', version='v0.0.0-20180305231024-9cad4c3443a7') go_repository(name='com_github_grpc_ecosystem_go_grpc_middleware', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/grpc-ecosystem/go-grpc-middleware', sum='h1:z53tR0945TRRQO/fLEVPI6SMv7ZflF0TEaTAoU7tOzg=', version='v1.0.1-0.20190118093823-f849b5445de4') go_repository(name='com_github_grpc_ecosystem_go_grpc_prometheus', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/grpc-ecosystem/go-grpc-prometheus', sum='h1:Ovs26xHkKqVztRpIrF/92BcuyuQ/YW4NSIpoGtfXNho=', version='v1.2.0') go_repository(name='com_github_grpc_ecosystem_grpc_gateway', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/grpc-ecosystem/grpc-gateway', sum='h1:UImYN5qQ8tuGpGE16ZmjvcTtTw24zw1QAp/SlnNrZhI=', version='v1.9.5') go_repository(name='com_github_hailocab_go_hostpool', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/hailocab/go-hostpool', sum='h1:5upAirOpQc1Q53c0bnx2ufif5kANL7bfZWcc6VJWJd8=', version='v0.0.0-20160125115350-e80d13ce29ed') go_repository(name='com_github_hashicorp_errwrap', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/hashicorp/errwrap', sum='h1:hLrqtEDnRye3+sgx6z4qVLNuviH3MR5aQ0ykNJa/UYA=', version='v1.0.0') go_repository(name='com_github_hashicorp_go_cleanhttp', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/hashicorp/go-cleanhttp', sum='h1:dH3aiDG9Jvb5r5+bYHsikaOUIpcM0xvgMXVoDkXMzJM=', version='v0.5.1') go_repository(name='com_github_hashicorp_go_hclog', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/hashicorp/go-hclog', sum='h1:z3ollgGRg8RjfJH6UVBaG54R70GFd++QOkvnJH3VSBY=', version='v0.8.0') go_repository(name='com_github_hashicorp_go_immutable_radix', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/hashicorp/go-immutable-radix', sum='h1:AKDB1HM5PWEA7i4nhcpwOrO2byshxBjXVn/J/3+z5/0=', version='v1.0.0') go_repository(name='com_github_hashicorp_go_memdb', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/hashicorp/go-memdb', sum='h1:K1O4N2VPndZiTrdH3lmmf5bemr9Xw81KjVwhReIUjTQ=', version='v1.0.0') go_repository(name='com_github_hashicorp_go_multierror', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/hashicorp/go-multierror', sum='h1:iVjPR7a6H0tWELX5NxNe7bYopibicUzc7uPribsnS6o=', version='v1.0.0') go_repository(name='com_github_hashicorp_go_plugin', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/hashicorp/go-plugin', sum='h1:4OtAfUGbnKC6yS48p0CtMX2oFYtzFZVv6rok3cRWgnE=', version='v1.0.1') go_repository(name='com_github_hashicorp_go_rootcerts', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/hashicorp/go-rootcerts', sum='h1:DMo4fmknnz0E0evoNYnV48RjWndOsmd6OW+09R3cEP8=', version='v1.0.1') go_repository(name='com_github_hashicorp_go_uuid', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/hashicorp/go-uuid', sum='h1:fv1ep09latC32wFoVwnqcnKJGnMSdBanPczbHAYm1BE=', version='v1.0.1') go_repository(name='com_github_hashicorp_go_version', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/hashicorp/go-version', sum='h1:bPIoEKD27tNdebFGGxxYwcL4nepeY4j1QP23PFRGzg0=', version='v1.1.0') go_repository(name='com_github_hashicorp_golang_lru', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/hashicorp/golang-lru', sum='h1:YDjusn29QI/Das2iO9M0BHnIbxPeyuCHsjMW+lJfyTc=', version='v0.5.4') go_repository(name='com_github_hashicorp_golang_math_big', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/hashicorp/golang-math-big', sum='h1:hGeXuXeccEhqbXZFgPdRq4oaaBE6QPve/X7A1VFiPhA=', version='v0.0.0-20180316142257-561262b71329') go_repository(name='com_github_hashicorp_hcl', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/hashicorp/hcl', sum='h1:0Anlzjpi4vEasTeNFn2mLJgTSwt0+6sfsiTG8qcWGx4=', version='v1.0.0') go_repository(name='com_github_hashicorp_vault_api', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/hashicorp/vault/api', sum='h1:j08Or/wryXT4AcHj1oCbMd7IijXcKzYUGw59LGu9onU=', version='v1.0.4') go_repository(name='com_github_hashicorp_vault_sdk', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/hashicorp/vault/sdk', sum='h1:mOEPeOhT7jl0J4AMl1E705+BcmeRs1VmKNb9F0sMLy8=', version='v0.1.13') go_repository(name='com_github_hashicorp_go_retryablehttp', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/hashicorp/go-retryablehttp', sum='h1:1BZvpawXoJCWX6pNtow9+rpEj+3itIlutiqnntI6jOE=', version='v0.5.4') go_repository(name='com_github_hashicorp_go_sockaddr', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/hashicorp/go-sockaddr', sum='h1:ztczhD1jLxIRjVejw8gFomI1BQZOe2WoVOu0SyteCQc=', version='v1.0.2') go_repository(name='com_github_hashicorp_yamux', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/hashicorp/yamux', sum='h1:kJCB4vdITiW1eC1vq2e6IsrXKrZit1bv/TDYFGMp4BQ=', version='v0.0.0-20181012175058-2f1d1f20f75d') go_repository(name='com_github_howeyc_gopass', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/howeyc/gopass', sum='h1:kQWxfPIHVLbgLzphqk3QUflDy9QdksZR4ygR807bpy0=', version='v0.0.0-20170109162249-bf9dde6d0d2c') go_repository(name='com_github_hpcloud_tail', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/hpcloud/tail', sum='h1:nfCOvKYfkgYP8hkirhJocXT2+zOD8yUNjXaWfTlyFKI=', version='v1.0.0') go_repository(name='com_github_imdario_mergo', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/imdario/mergo', sum='h1:UauaLniWCFHWd+Jp9oCEkTBj8VO/9DKg3PV3VCNMDIg=', version='v0.3.9') go_repository(name='com_github_inconshreveable_mousetrap', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/inconshreveable/mousetrap', sum='h1:Z8tu5sraLXCXIcARxBp/8cbvlwVa7Z1NHg9XEKhtSvM=', version='v1.0.0') go_repository(name='com_github_jeffail_gabs', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/Jeffail/gabs', sum='h1:V0uzR08Hj22EX8+8QMhyI9sX2hwRu+/RJhJUmnwda/E=', version='v1.1.1') go_repository(name='com_github_jefferai_jsonx', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/jefferai/jsonx', sum='h1:Xoz0ZbmkpBvED5W9W1B5B/zc3Oiq7oXqiW7iRV3B6EI=', version='v1.0.0') go_repository(name='com_github_jmespath_go_jmespath', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/jmespath/go-jmespath', sum='h1:BEgLn5cpjn8UN1mAw4NjwDrS35OdebyEtFe+9YPoQUg=', version='v0.4.0') go_repository(name='com_github_jonboulle_clockwork', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/jonboulle/clockwork', sum='h1:VKV+ZcuP6l3yW9doeqz6ziZGgcynBVQO+obU0+0hcPo=', version='v0.1.0') go_repository(name='com_github_json_iterator_go', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/json-iterator/go', sum='h1:Kz6Cvnvv2wGdaG/V8yMvfkmNiXq9Ya2KUv4rouJJr68=', version='v1.1.10') go_repository(name='com_github_jstemmer_go_junit_report', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/jstemmer/go-junit-report', sum='h1:6QPYqodiu3GuPL+7mfx+NwDdp2eTkp9IfEUpgAwUN0o=', version='v0.9.1') go_repository(name='com_github_jtolds_gls', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/jtolds/gls', sum='h1:xdiiI2gbIgH/gLH7ADydsJ1uDOEzR8yvV7C0MuV77Wo=', version='v4.20.0+incompatible') go_repository(name='com_github_julienschmidt_httprouter', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/julienschmidt/httprouter', sum='h1:TDTW5Yz1mjftljbcKqRcrYhd4XeOoI98t+9HbQbYf7g=', version='v1.2.0') go_repository(name='com_github_keybase_go_crypto', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/keybase/go-crypto', sum='h1:Gsc9mVHLRqBjMgdQCghN9NObCcRncDqxJvBvEaIIQEo=', version='v0.0.0-20190403132359-d65b6b94177f') go_repository(name='com_github_kisielk_errcheck', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/kisielk/errcheck', sum='h1:reN85Pxc5larApoH1keMBiu2GWtPqXQ1nc9gx+jOU+E=', version='v1.2.0') go_repository(name='com_github_kisielk_gotool', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/kisielk/gotool', sum='h1:AV2c/EiW3KqPNT9ZKl07ehoAGi4C5/01Cfbblndcapg=', version='v1.0.0') go_repository(name='com_github_konsorten_go_windows_terminal_sequences', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/konsorten/go-windows-terminal-sequences', sum='h1:CE8S1cTafDpPvMhIxNJKvHsGVBgn1xWYf1NbHQhywc8=', version='v1.0.3') go_repository(name='com_github_kr_logfmt', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/kr/logfmt', sum='h1:T+h1c/A9Gawja4Y9mFVWj2vyii2bbUNDw3kt9VxK2EY=', version='v0.0.0-20140226030751-b84e30acd515') go_repository(name='com_github_kr_pretty', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/kr/pretty', sum='h1:Fmg33tUaq4/8ym9TJN1x7sLJnHVwhP33CNkpYV/7rwI=', version='v0.2.1') go_repository(name='com_github_kr_pty', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/kr/pty', sum='h1:hyz3dwM5QLc1Rfoz4FuWJQG5BN7tc6K1MndAUnGpQr4=', version='v1.1.5') go_repository(name='com_github_kr_text', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/kr/text', sum='h1:45sCR5RtlFHMR4UwH9sdQ5TC8v0qDQCHnXt+kaKSTVE=', version='v0.1.0') go_repository(name='com_github_lib_pq', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/lib/pq', sum='h1:X5PMW56eZitiTeO7tKzZxFCSpbFZJtkMMooicw2us9A=', version='v1.0.0') go_repository(name='com_github_magiconair_properties', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/magiconair/properties', sum='h1:ZC2Vc7/ZFkGmsVC9KvOjumD+G5lXy2RtTKyzRKO2BQ4=', version='v1.8.1') go_repository(name='com_github_mailru_easyjson', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/mailru/easyjson', sum='h1:aizVhC/NAAcKWb+5QsU1iNOZb4Yws5UO2I+aIprQITM=', version='v0.7.0') go_repository(name='com_github_mattbaird_jsonpatch', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/mattbaird/jsonpatch', sum='h1:+J2gw7Bw77w/fbK7wnNJJDKmw1IbWft2Ul5BzrG1Qm8=', version='v0.0.0-20171005235357-81af80346b1a') go_repository(name='com_github_mattn_go_colorable', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/mattn/go-colorable', sum='h1:/bC9yWikZXAL9uJdulbSfyVNIR3n3trXl+v8+1sx8mU=', version='v0.1.2') go_repository(name='com_github_mattn_go_isatty', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/mattn/go-isatty', sum='h1:HLtExJ+uU2HOZ+wI0Tt5DtUDrx8yhUqDcp7fYERX4CE=', version='v0.0.8') go_repository(name='com_github_matttproud_golang_protobuf_extensions', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/matttproud/golang_protobuf_extensions', sum='h1:I0XW9+e1XWDxdcEniV4rQAIOPUGDq67JSCiRCgGCZLI=', version='v1.0.2-0.20181231171920-c182affec369') go_repository(name='com_github_mgutz_ansi', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/mgutz/ansi', sum='h1:j7+1HpAFS1zy5+Q4qx1fWh90gTKwiN4QCGoY9TWyyO4=', version='v0.0.0-20170206155736-9520e82c474b') go_repository(name='com_github_mgutz_logxi', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/mgutz/logxi', sum='h1:n8cgpHzJ5+EDyDri2s/GC7a9+qK3/YEGnBsd0uS/8PY=', version='v0.0.0-20161027140823-aebf8a7d67ab') go_repository(name='com_github_microsoft_go_winio', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/Microsoft/go-winio', sum='h1:xAfWHN1IrQ0NJ9TBC0KBZoqLjzDTr1ML+4MywiUOryc=', version='v0.4.12') go_repository(name='com_github_miekg_dns', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/miekg/dns', sum='h1:sJFOl9BgwbYAWOGEwr61FU28pqsBNdpRBnhGXtO06Oo=', version='v1.1.31') go_repository(name='com_github_mitchellh_copystructure', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/mitchellh/copystructure', sum='h1:Laisrj+bAB6b/yJwB5Bt3ITZhGJdqmxquMKeZ+mmkFQ=', version='v1.0.0') go_repository(name='com_github_mitchellh_go_homedir', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/mitchellh/go-homedir', sum='h1:lukF9ziXFxDFPkA1vsr5zpc1XuPDn/wFntq5mG+4E0Y=', version='v1.1.0') go_repository(name='com_github_mitchellh_go_testing_interface', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/mitchellh/go-testing-interface', sum='h1:fzU/JVNcaqHQEcVFAKeR41fkiLdIPrefOvVG1VZ96U0=', version='v1.0.0') go_repository(name='com_github_mitchellh_mapstructure', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/mitchellh/mapstructure', sum='h1:fmNYVwqnSfB9mZU6OS2O6GsXM+wcskZDuKQzvN1EDeE=', version='v1.1.2') go_repository(name='com_github_mitchellh_reflectwalk', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/mitchellh/reflectwalk', sum='h1:9D+8oIskB4VJBN5SFlmc27fSlIBZaov1Wpk/IfikLNY=', version='v1.0.0') go_repository(name='com_github_modern_go_concurrent', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/modern-go/concurrent', sum='h1:TRLaZ9cD/w8PVh93nsPXa1VrQ6jlwL5oN8l14QlcNfg=', version='v0.0.0-20180306012644-bacd9c7ef1dd') go_repository(name='com_github_modern_go_reflect2', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/modern-go/reflect2', sum='h1:9f412s+6RmYXLWZSEzVVgPGK7C2PphHj5RJrvfx9AWI=', version='v1.0.1') go_repository(name='com_github_munnerz_goautoneg', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/munnerz/goautoneg', sum='h1:C3w9PqII01/Oq1c1nUAm88MOHcQC9l5mIlSMApZMrHA=', version='v0.0.0-20191010083416-a7dc8b61c822') go_repository(name='com_github_mwitkow_go_conntrack', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/mwitkow/go-conntrack', sum='h1:F9x/1yl3T2AeKLr2AMdilSD8+f9bvMnNN8VS5iDtovc=', version='v0.0.0-20161129095857-cc309e4a2223') go_repository(name='com_github_mxk_go_flowrate', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/mxk/go-flowrate', sum='h1:y5//uYreIhSUg3J1GEMiLbxo1LJaP8RfCpH6pymGZus=', version='v0.0.0-20140419014527-cca7078d478f') go_repository(name='com_github_nvveen_gotty', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/Nvveen/Gotty', sum='h1:TngWCqHvy9oXAN6lEVMRuU21PR1EtLVZJmdB18Gu3Rw=', version='v0.0.0-20120604004816-cd527374f1e5') go_repository(name='com_github_nytimes_gziphandler', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/NYTimes/gziphandler', sum='h1:lsxEuwrXEAokXB9qhlbKWPpo3KMLZQ5WB5WLQRW1uq0=', version='v0.0.0-20170623195520-56545f4a5d46') go_repository(name='com_github_oklog_run', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/oklog/run', sum='h1:Ru7dDtJNOyC66gQ5dQmaCa0qIsAUFY3sFpK1Xk8igrw=', version='v1.0.0') go_repository(name='com_github_onsi_ginkgo', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/onsi/ginkgo', sum='h1:mFwc4LvZ0xpSvDZ3E+k8Yte0hLOMxXUlP+yXtJqkYfQ=', version='v1.12.1') go_repository(name='com_github_onsi_gomega', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/onsi/gomega', sum='h1:o0+MgICZLuZ7xjH7Vx6zS/zcu93/BEp1VwkIW1mEXCE=', version='v1.10.1') go_repository(name='com_github_opencontainers_go_digest', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/opencontainers/go-digest', sum='h1:WzifXhOVOEOuFYOJAW6aQqW0TooG2iki3E3Ii+WN7gQ=', version='v1.0.0-rc1') go_repository(name='com_github_opencontainers_image_spec', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/opencontainers/image-spec', sum='h1:JMemWkRwHx4Zj+fVxWoMCFm/8sYGGrUVojFA6h/TRcI=', version='v1.0.1') go_repository(name='com_github_opencontainers_runc', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/opencontainers/runc', sum='h1:GlxAyO6x8rfZYN9Tt0Kti5a/cP41iuiO2yYT0IJGY8Y=', version='v0.1.1') go_repository(name='com_github_ory_dockertest', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/ory/dockertest', sum='h1:VrpM6Gqg7CrPm3bL4Wm1skO+zFWLbh7/Xb5kGEbJRh8=', version='v3.3.4+incompatible') go_repository(name='com_github_pascaldekloe_goe', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/pascaldekloe/goe', sum='h1:cBOtyMzM9HTpWjXfbbunk26uA6nG3a8n06Wieeh0MwY=', version='v0.1.0') go_repository(name='com_github_patrickmn_go_cache', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/patrickmn/go-cache', sum='h1:HRMgzkcYKYpi3C8ajMPV8OFXaaRUnok+kx1WdO15EQc=', version='v2.1.0+incompatible') go_repository(name='com_github_pborman_uuid', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/pborman/uuid', sum='h1:J7Q5mO4ysT1dv8hyrUGHb9+ooztCXu1D8MY8DZYsu3g=', version='v1.2.0') go_repository(name='com_github_pelletier_go_toml', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/pelletier/go-toml', sum='h1:T5zMGML61Wp+FlcbWjRDT7yAxhJNAiPPLOFECq181zc=', version='v1.2.0') go_repository(name='com_github_peterbourgon_diskv', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/peterbourgon/diskv', sum='h1:UBdAOUP5p4RWqPBg048CAvpKN+vxiaj6gdUUzhl4XmI=', version='v2.0.1+incompatible') go_repository(name='com_github_pkg_errors', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/pkg/errors', sum='h1:FEBLx1zS214owpjy7qsBeixbURkuhQAwrK5UwLGTwt4=', version='v0.9.1') go_repository(name='com_github_pmezard_go_difflib', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/pmezard/go-difflib', sum='h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=', version='v1.0.0') go_repository(name='com_github_pquerna_cachecontrol', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/pquerna/cachecontrol', sum='h1:0XM1XL/OFFJjXsYXlG30spTkV/E9+gmd5GD1w2HE8xM=', version='v0.0.0-20171018203845-0dec1b30a021') go_repository(name='com_github_prometheus_client_golang', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/prometheus/client_golang', sum='h1:NTGy1Ja9pByO+xAeH/qiWnLrKtr3hJPNjaVUwnjpdpA=', version='v1.7.1') go_repository(name='com_github_prometheus_client_model', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/prometheus/client_model', sum='h1:uq5h0d+GuxiXLJLNABMgp2qUWDPiLvgCzz2dUR+/W/M=', version='v0.2.0') go_repository(name='com_github_prometheus_common', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/prometheus/common', sum='h1:RyRA7RzGXQZiW+tGMr7sxa85G1z0yOpM1qq5c8lNawc=', version='v0.10.0') go_repository(name='com_github_prometheus_procfs', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/prometheus/procfs', sum='h1:F0+tqvhOksq22sc6iCHF5WGlWjdwj92p0udFh1VFBS8=', version='v0.1.3') go_repository(name='com_github_puerkitobio_purell', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/PuerkitoBio/purell', sum='h1:WEQqlqaGbrPkxLJWfBwQmfEAE1Z7ONdDLqrN38tNFfI=', version='v1.1.1') go_repository(name='com_github_puerkitobio_urlesc', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/PuerkitoBio/urlesc', sum='h1:d+Bc7a5rLufV/sSk/8dngufqelfh6jnri85riMAaF/M=', version='v0.0.0-20170810143723-de5bf2ad4578') go_repository(name='com_github_remyoudompheng_bigfft', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/remyoudompheng/bigfft', sum='h1:/NRJ5vAYoqz+7sG51ubIDHXeWO8DlTSrToPu6q11ziA=', version='v0.0.0-20170806203942-52369c62f446') go_repository(name='com_github_russross_blackfriday', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/russross/blackfriday', sum='h1:HyvC0ARfnZBqnXwABFeSZHpKvJHJJfPz81GNueLj0oo=', version='v1.5.2') go_repository(name='com_github_ryanuber_go_glob', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/ryanuber/go-glob', sum='h1:iQh3xXAumdQ+4Ufa5b25cRpC5TYKlno6hsv6Cb3pkBk=', version='v1.0.0') go_repository(name='com_github_sap_go_hdb', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/SAP/go-hdb', sum='h1:hkw4ozGZ/i4eak7ZuGkY5e0hxiXFdNUBNhr4AvZVNFE=', version='v0.14.1') go_repository(name='com_github_sermodigital_jose', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/SermoDigital/jose', sum='h1:atYaHPD3lPICcbK1owly3aPm0iaJGSGPi0WD4vLznv8=', version='v0.9.1') go_repository(name='com_github_sethgrid_pester', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/sethgrid/pester', sum='h1:X9XMOYjxEfAYSy3xK1DzO5dMkkWhs9E9UCcS1IERx2k=', version='v0.0.0-20190127155807-68a33a018ad0') go_repository(name='com_github_sirupsen_logrus', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/sirupsen/logrus', sum='h1:UBcNElsrwanuuMsnGSlYmtmgbb23qDR5dG+6X6Oo89I=', version='v1.6.0') go_repository(name='com_github_smartystreets_assertions', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/smartystreets/assertions', sum='h1:42S6lae5dvLc7BrLu/0ugRtcFVjoJNMC/N3yZFZkDFs=', version='v1.2.0') go_repository(name='com_github_smartystreets_goconvey', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/smartystreets/goconvey', sum='h1:fv0U8FUIMPNf1L9lnHLvLhgicrIVChEkdzIKYqbNC9s=', version='v1.6.4') go_repository(name='com_github_soheilhy_cmux', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/soheilhy/cmux', sum='h1:0HKaf1o97UwFjHH9o5XsHUOF+tqmdA7KEzXLpiyaw0E=', version='v0.1.4') go_repository(name='com_github_spf13_afero', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/spf13/afero', sum='h1:5jhuqJyZCZf2JRofRvN/nIFgIWNzPa3/Vz8mYylgbWc=', version='v1.2.2') go_repository(name='com_github_spf13_cast', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/spf13/cast', sum='h1:oget//CVOEoFewqQxwr0Ej5yjygnqGkvggSE/gB35Q8=', version='v1.3.0') go_repository(name='com_github_spf13_cobra', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/spf13/cobra', sum='h1:6m/oheQuQ13N9ks4hubMG6BnvwOeaJrqSPLahSnczz8=', version='v1.0.0') go_repository(name='com_github_spf13_jwalterweatherman', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/spf13/jwalterweatherman', sum='h1:XHEdyB+EcvlqZamSM4ZOMGlc93t6AcsBEu9Gc1vn7yk=', version='v1.0.0') go_repository(name='com_github_spf13_pflag', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/spf13/pflag', sum='h1:iy+VFUOCP1a+8yFto/drg2CJ5u0yRoB7fZw3DKv/JXA=', version='v1.0.5') go_repository(name='com_github_spf13_viper', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/spf13/viper', sum='h1:xVKxvI7ouOI5I+U9s2eeiUfMaWBVoXA3AWskkrqK0VM=', version='v1.7.0') go_repository(name='com_github_stretchr_objx', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/stretchr/objx', sum='h1:Hbg2NidpLE8veEBkEZTL3CvlkUIVzuU9jDplZO54c48=', version='v0.2.0') go_repository(name='com_github_stretchr_testify', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/stretchr/testify', sum='h1:hDPOHmpOpP40lSULcqw7IrRb/u7w6RpDC9399XyoNd0=', version='v1.6.1') go_repository(name='com_github_tent_http_link_go', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/tent/http-link-go', sum='h1:/Bsw4C+DEdqPjt8vAqaC9LAqpAQnaCQQqmolqq3S1T4=', version='v0.0.0-20130702225549-ac974c61c2f9') go_repository(name='com_github_tmc_grpc_websocket_proxy', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/tmc/grpc-websocket-proxy', sum='h1:LnC5Kc/wtumK+WB441p7ynQJzVuNRJiqddSIE3IlSEQ=', version='v0.0.0-20190109142713-0ad062ec5ee5') go_repository(name='com_github_ugorji_go_codec', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/ugorji/go/codec', sum='h1:3SVOIvH7Ae1KRYyQWRjXWJEA9sS/c/pjvH++55Gr648=', version='v0.0.0-20181204163529-d75b2dcb6bc8') go_repository(name='com_github_venafi_vcert', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/Venafi/vcert', sum='h1:+J3fdxS1dgOJwGFM9LuQUr8F4YklF8hrq9BrNzLwPFE=', version='v0.0.0-20200310111556-eba67a23943f') go_repository(name='com_github_xiang90_probing', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/xiang90/probing', sum='h1:eY9dn8+vbi4tKz5Qo6v2eYzo7kUS51QINcR5jNpbZS8=', version='v0.0.0-20190116061207-43a291ad63a2') go_repository(name='com_github_xordataexchange_crypt', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/xordataexchange/crypt', sum='h1:ESFSdwYZvkeru3RtdrYueztKhOBCSAAzS4Gf+k0tEow=', version='v0.0.3-0.20170626215501-b2862e3d0a77') go_repository(name='com_google_cloud_go', build_file_generation='on', build_file_proto_mode='disable', importpath='cloud.google.com/go', sum='h1:PvKAVQWCtlGUSlZkGW3QLelKaWq7KYv/MW1EboG8bfM=', version='v0.51.0') go_repository(name='com_sslmate_software_src_go_pkcs12', build_file_generation='on', build_file_proto_mode='disable', importpath='software.sslmate.com/src/go-pkcs12', sum='h1:AVd6O+azYjVQYW1l55IqkbL8/JxjrLtO6q4FCmV8N5c=', version='v0.0.0-20200830195227-52f69702a001') go_repository(name='in_gopkg_alecthomas_kingpin_v2', build_file_generation='on', build_file_proto_mode='disable', importpath='gopkg.in/alecthomas/kingpin.v2', sum='h1:jMFz6MfLP0/4fUyZle81rXUoxOBFi19VUFKVDOQfozc=', version='v2.2.6') go_repository(name='in_gopkg_check_v1', build_file_generation='on', build_file_proto_mode='disable', importpath='gopkg.in/check.v1', sum='h1:YR8cESwS4TdDjEe65xsg0ogRM/Nc3DYOhEAlW+xobZo=', version='v1.0.0-20190902080502-41f04d3bba15') go_repository(name='in_gopkg_fsnotify_v1', build_file_generation='on', build_file_proto_mode='disable', importpath='gopkg.in/fsnotify.v1', sum='h1:xOHLXZwVvI9hhs+cLKq5+I5onOuwQLhQwiu63xxlHs4=', version='v1.4.7') go_repository(name='in_gopkg_inf_v0', build_file_generation='on', build_file_proto_mode='disable', importpath='gopkg.in/inf.v0', sum='h1:73M5CoZyi3ZLMOyDlQh031Cx6N9NDJ2Vvfl76EDAgDc=', version='v0.9.1') go_repository(name='in_gopkg_ini_v1', build_file_generation='on', build_file_proto_mode='disable', importpath='gopkg.in/ini.v1', sum='h1:j+Lt/M1oPPejkniCg1TkWE2J3Eh1oZTsHSXzMTzUXn4=', version='v1.52.0') go_repository(name='in_gopkg_mgo_v2', build_file_generation='on', build_file_proto_mode='disable', importpath='gopkg.in/mgo.v2', sum='h1:xcEWjVhvbDy+nHP67nPDDpbYrY+ILlfndk4bRioVHaU=', version='v2.0.0-20180705113604-9856a29383ce') go_repository(name='in_gopkg_natefinch_lumberjack_v2', build_file_generation='on', build_file_proto_mode='disable', importpath='gopkg.in/natefinch/lumberjack.v2', sum='h1:1Lc07Kr7qY4U2YPouBjpCLxpiyxIVoxqXgkXLknAOE8=', version='v2.0.0') go_repository(name='in_gopkg_ory_am_dockertest_v3', build_file_generation='on', build_file_proto_mode='disable', importpath='gopkg.in/ory-am/dockertest.v3', sum='h1:oen8RiwxVNxtQ1pRoV4e4jqh6UjNsOuIZ1NXns6jdcw=', version='v3.3.4') go_repository(name='in_gopkg_square_go_jose_v2', build_file_generation='on', build_file_proto_mode='disable', importpath='gopkg.in/square/go-jose.v2', sum='h1:SK5KegNXmKmqE342YYN2qPHEnUYeoMiXXl1poUlI+o4=', version='v2.3.1') go_repository(name='in_gopkg_tomb_v1', build_file_generation='on', build_file_proto_mode='disable', importpath='gopkg.in/tomb.v1', sum='h1:uRGJdciOHaEIrze2W8Q3AKkepLTh2hOroT7a+7czfdQ=', version='v1.0.0-20141024135613-dd632973f1e7') go_repository(name='in_gopkg_yaml_v2', build_file_generation='on', build_file_proto_mode='disable', importpath='gopkg.in/yaml.v2', sum='h1:clyUAQHOM3G0M3f5vQj7LuJrETvjVot3Z5el9nffUtU=', version='v2.3.0') go_repository(name='io_k8s_api', build_file_generation='on', build_file_proto_mode='disable', importpath='k8s.io/api', sum='h1:XyrFIJqTYZJ2DU7FBE/bSPz7b1HvbVBuBf07oeo6eTc=', version='v0.19.0') go_repository(name='io_k8s_apiextensions_apiserver', build_file_generation='on', build_file_proto_mode='disable', importpath='k8s.io/apiextensions-apiserver', sum='h1:jlY13lvZp+0p9fRX2khHFdiT9PYzT7zUrANz6R1NKtY=', version='v0.19.0') go_repository(name='io_k8s_apimachinery', build_file_generation='on', build_file_proto_mode='disable', importpath='k8s.io/apimachinery', sum='h1:gjKnAda/HZp5k4xQYjL0K/Yb66IvNqjthCb03QlKpaQ=', version='v0.19.0') go_repository(name='io_k8s_apiserver', build_file_generation='on', build_file_proto_mode='disable', importpath='k8s.io/apiserver', sum='h1:jLhrL06wGAADbLUUQm8glSLnAGP6c7y5R3p19grkBoY=', version='v0.19.0') go_repository(name='io_k8s_client_go', build_file_generation='on', build_file_proto_mode='disable', importpath='k8s.io/client-go', sum='h1:1+0E0zfWFIWeyRhQYWzimJOyAk2UT7TiARaLNwJCf7k=', version='v0.19.0') go_repository(name='io_k8s_code_generator', build_file_generation='on', build_file_proto_mode='disable', importpath='k8s.io/code-generator', sum='h1:r0BxYnttP/r8uyKd4+Njg0B57kKi8wLvwEzaaVy3iZ8=', version='v0.19.0') go_repository(name='io_k8s_component_base', build_file_generation='on', build_file_proto_mode='disable', importpath='k8s.io/component-base', sum='h1:OueXf1q3RW7NlLlUCj2Dimwt7E1ys6ZqRnq53l2YuoE=', version='v0.19.0') go_repository(name='io_k8s_gengo', build_file_generation='on', build_file_proto_mode='disable', importpath='k8s.io/gengo', sum='h1:t4L10Qfx/p7ASH3gXCdIUtPbbIuegCoUJf3TMSFekjw=', version='v0.0.0-20200428234225-8167cfdcfc14') go_repository(name='io_k8s_klog', build_file_generation='on', build_file_proto_mode='disable', importpath='k8s.io/klog', sum='h1:Pt+yjF5aB1xDSVbau4VsWe+dQNzA0qv1LlXdC2dF6Q8=', version='v1.0.0') go_repository(name='io_k8s_kube_aggregator', build_file_generation='on', build_file_proto_mode='disable', importpath='k8s.io/kube-aggregator', sum='h1:rL4fsftMaqkKjaibArYDaBeqN41CHaJzgRJjUB9IrIg=', version='v0.19.0') go_repository(name='io_k8s_kube_openapi', build_file_generation='on', build_file_proto_mode='disable', importpath='k8s.io/kube-openapi', sum='h1:+WnxoVtG8TMiudHBSEtrVL1egv36TkkJm+bA8AxicmQ=', version='v0.0.0-20200805222855-6aeccd4b50c6') go_repository(name='io_k8s_sigs_controller_runtime', build_file_generation='on', build_file_proto_mode='disable', importpath='sigs.k8s.io/controller-runtime', sum='h1:jkAnfdTYBpFwlmBn3pS5HFO06SfxvnTZ1p5PeEF/zAA=', version='v0.6.2') go_repository(name='io_k8s_sigs_controller_tools', build_file_generation='on', build_file_proto_mode='disable', importpath='sigs.k8s.io/controller-tools', sum='h1:PXOHvyYAjWfO0UfQvaUo33HpXNCOilV3i/Vjc7iM1/A=', version='v0.2.9-0.20200414181213-645d44dca7c0') go_repository(name='io_k8s_sigs_structured_merge_diff', build_file_generation='on', build_file_proto_mode='disable', importpath='sigs.k8s.io/structured-merge-diff', sum='h1:zD2IemQ4LmOcAumeiyDWXKUI2SO0NYDe3H6QGvPOVgU=', version='v1.0.1-0.20191108220359-b1b620dd3f06') go_repository(name='io_k8s_sigs_testing_frameworks', build_file_generation='on', build_file_proto_mode='disable', importpath='sigs.k8s.io/testing_frameworks', sum='h1:vK0+tvjF0BZ/RYFeZ1E6BYBwHJJXhjuZ3TdsEKH+UQM=', version='v0.1.2') go_repository(name='io_k8s_sigs_yaml', build_file_generation='on', build_file_proto_mode='disable', importpath='sigs.k8s.io/yaml', sum='h1:kr/MCeFWJWTwyaHoR9c8EjH9OumOmoF9YGiZd7lFm/Q=', version='v1.2.0') go_repository(name='io_k8s_utils', build_file_generation='on', build_file_proto_mode='disable', importpath='k8s.io/utils', sum='h1:uJmqzgNWG7XyClnU/mLPBWwfKKF1K8Hf8whTseBgJcg=', version='v0.0.0-20200729134348-d5654de09c73') go_repository(name='io_opencensus_go', build_file_generation='on', build_file_proto_mode='disable', importpath='go.opencensus.io', sum='h1:75k/FF0Q2YM8QYo07VPddOLBslDt1MZOdEslOHvmzAs=', version='v0.22.2') go_repository(name='org_golang_google_api', build_file_generation='on', build_file_proto_mode='disable', importpath='google.golang.org/api', sum='h1:yzlyyDW/J0w8yNFJIhiAJy4kq74S+1DOLdawELNxFMA=', version='v0.15.0') go_repository(name='org_golang_google_appengine', build_file_generation='on', build_file_proto_mode='disable', importpath='google.golang.org/appengine', sum='h1:tycE03LOZYQNhDpS27tcQdAzLCVMaj7QT2SXxebnpCM=', version='v1.6.5') go_repository(name='org_golang_google_genproto', build_file_generation='on', build_file_proto_mode='disable', importpath='google.golang.org/genproto', sum='h1:+kGHl1aib/qcwaRi1CbqBZ1rk19r85MNUf8HaBghugY=', version='v0.0.0-20200526211855-cb27e3aa2013') go_repository(name='org_golang_google_grpc', build_file_generation='on', build_file_proto_mode='disable', importpath='google.golang.org/grpc', sum='h1:rRYRFMVgRv6E0D70Skyfsr28tDXIuuPZyWGMPdMcnXg=', version='v1.27.0') go_repository(name='org_golang_x_crypto', build_file_generation='on', build_file_proto_mode='disable', importpath='golang.org/x/crypto', replace='github.com/meyskens/crypto', sum='h1:09XQpCKCNW3zrjz4zvD/cYU3hqUEWW+bZrBwK8NwFW0=', version='v0.0.0-20200821143559-6ca9aec645f0') go_repository(name='org_golang_x_exp', build_file_generation='on', build_file_proto_mode='disable', importpath='golang.org/x/exp', sum='h1:zQpM52jfKHG6II1ISZY1ZcpygvuSFZpLwfluuF89XOg=', version='v0.0.0-20191227195350-da58074b4299') go_repository(name='org_golang_x_image', build_file_generation='on', build_file_proto_mode='disable', importpath='golang.org/x/image', sum='h1:+qEpEAPhDZ1o0x3tHzZTQDArnOixOzGD9HUJfcg0mb4=', version='v0.0.0-20190802002840-cff245a6509b') go_repository(name='org_golang_x_lint', build_file_generation='on', build_file_proto_mode='disable', importpath='golang.org/x/lint', sum='h1:J5lckAjkw6qYlOZNj90mLYNTEKDvWeuc1yieZ8qUzUE=', version='v0.0.0-20191125180803-fdd1cda4f05f') go_repository(name='org_golang_x_mobile', build_file_generation='on', build_file_proto_mode='disable', importpath='golang.org/x/mobile', sum='h1:4+4C/Iv2U4fMZBiMCc98MG1In4gJY5YRhtpDNeDeHWs=', version='v0.0.0-20190719004257-d2bd2a29d028') go_repository(name='org_golang_x_net', build_file_generation='on', build_file_proto_mode='disable', importpath='golang.org/x/net', sum='h1:VvcQYSHwXgi7W+TpUR6A9g6Up98WAHf3f/ulnJ62IyA=', version='v0.0.0-20200822124328-c89045814202') go_repository(name='org_golang_x_oauth2', build_file_generation='on', build_file_proto_mode='disable', importpath='golang.org/x/oauth2', sum='h1:TzXSXBo42m9gQenoE3b9BGiEpg5IG2JkU5FkPIawgtw=', version='v0.0.0-20200107190931-bf48bf16ab8d') go_repository(name='org_golang_x_sync', build_file_generation='on', build_file_proto_mode='disable', importpath='golang.org/x/sync', sum='h1:vcxGaoTs7kV8m5Np9uUNQin4BrLOthgV7252N8V+FwY=', version='v0.0.0-20190911185100-cd5d95a43a6e') go_repository(name='org_golang_x_sys', build_file_generation='on', build_file_proto_mode='disable', importpath='golang.org/x/sys', sum='h1:5/PjkGUjvEU5Gl6BxmvKRPpqo2uNMv4rcHBMwzk/st8=', version='v0.0.0-20200622214017-ed371f2e16b4') go_repository(name='org_golang_x_text', build_file_generation='on', build_file_proto_mode='disable', importpath='golang.org/x/text', sum='h1:cokOdA+Jmi5PJGXLlLllQSgYigAEfHXJAERHVMaCc2k=', version='v0.3.3') go_repository(name='org_golang_x_time', build_file_generation='on', build_file_proto_mode='disable', importpath='golang.org/x/time', sum='h1:EHBhcS0mlXEAVwNyO2dLfjToGsyY4j24pTs2ScHnX7s=', version='v0.0.0-20200630173020-3af7569d3a1e') go_repository(name='org_golang_x_tools', build_file_generation='on', build_file_proto_mode='disable', importpath='golang.org/x/tools', sum='h1:HHeAlu5H9b71C+Fx0K+1dGgVFN1DM1/wz4aoGOA5qS8=', version='v0.0.0-20200616133436-c1934b75d054') go_repository(name='org_gonum_v1_gonum', build_file_generation='on', build_file_proto_mode='disable', importpath='gonum.org/v1/gonum', sum='h1:OB/uP/Puiu5vS5QMRPrXCDWUPb+kt8f1KW8oQzFejQw=', version='v0.0.0-20190331200053-3d26580ed485') go_repository(name='org_gonum_v1_netlib', build_file_generation='on', build_file_proto_mode='disable', importpath='gonum.org/v1/netlib', sum='h1:jRyg0XfpwWlhEV8mDfdNGBeSJM2fuyh9Yjrnd8kF2Ts=', version='v0.0.0-20190331212654-76723241ea4e') go_repository(name='org_modernc_cc', build_file_generation='on', build_file_proto_mode='disable', importpath='modernc.org/cc', sum='h1:nPibNuDEx6tvYrUAtvDTTw98rx5juGsa5zuDnKwEEQQ=', version='v1.0.0') go_repository(name='org_modernc_golex', build_file_generation='on', build_file_proto_mode='disable', importpath='modernc.org/golex', sum='h1:wWpDlbK8ejRfSyi0frMyhilD3JBvtcx2AdGDnU+JtsE=', version='v1.0.0') go_repository(name='org_modernc_mathutil', build_file_generation='on', build_file_proto_mode='disable', importpath='modernc.org/mathutil', sum='h1:93vKjrJopTPrtTNpZ8XIovER7iCIH1QU7wNbOQXC60I=', version='v1.0.0') go_repository(name='org_modernc_strutil', build_file_generation='on', build_file_proto_mode='disable', importpath='modernc.org/strutil', sum='h1:XVFtQwFVwc02Wk+0L/Z/zDDXO81r5Lhe6iMKmGX3KhE=', version='v1.0.0') go_repository(name='org_modernc_xc', build_file_generation='on', build_file_proto_mode='disable', importpath='modernc.org/xc', sum='h1:7ccXrupWZIS3twbUGrtKmHS2DXY6xegFua+6O3xgAFU=', version='v1.0.0') go_repository(name='org_uber_go_atomic', build_file_generation='on', build_file_proto_mode='disable', importpath='go.uber.org/atomic', sum='h1:cxzIVoETapQEqDhQu3QfnvXAV4AlzcvUCxkVUFw3+EU=', version='v1.4.0') go_repository(name='org_uber_go_multierr', build_file_generation='on', build_file_proto_mode='disable', importpath='go.uber.org/multierr', sum='h1:HoEmRHQPVSqub6w2z2d2EOVs2fjyFRGyofhKuyDq0QI=', version='v1.1.0') go_repository(name='org_uber_go_zap', build_file_generation='on', build_file_proto_mode='disable', importpath='go.uber.org/zap', sum='h1:ORx85nbTijNz8ljznvCMR1ZBIPKFn3jQrag10X2AsuM=', version='v1.10.0') go_repository(name='tools_gotest', build_file_generation='on', build_file_proto_mode='disable', importpath='gotest.tools', sum='h1:VsBPFP1AI068pPrMxtb/S8Zkgf9xEmTLJjfM+P5UIEo=', version='v2.2.0+incompatible') go_repository(name='xyz_gomodules_jsonpatch_v2', build_file_generation='on', build_file_proto_mode='disable', importpath='gomodules.xyz/jsonpatch/v2', sum='h1:xyiBuvkD2g5n7cYzx6u2sxQvsAy4QJsZFCzGVdzOXZ0=', version='v2.0.1') go_repository(name='net_launchpad_gocheck', build_file_generation='on', build_file_proto_mode='disable', importpath='launchpad.net/gocheck', sum='h1:Izowp2XBH6Ya6rv+hqbceQyw/gSGoXfH/UPoTGduL54=', version='v0.0.0-20140225173054-000000000087') go_repository(name='com_github_apache_thrift', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/apache/thrift', sum='h1:5hryIiq9gtn+MiLVn0wP37kb/uTeRZgN08WoCsAhIhI=', version='v0.13.0') go_repository(name='com_github_eapache_go_resiliency', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/eapache/go-resiliency', sum='h1:1NtRmCAqadE2FN4ZcN6g90TP3uk8cg9rn9eNK2197aU=', version='v1.1.0') go_repository(name='com_github_eapache_go_xerial_snappy', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/eapache/go-xerial-snappy', sum='h1:YEetp8/yCZMuEPMUDHG0CW/brkkEp8mzqk2+ODEitlw=', version='v0.0.0-20180814174437-776d5712da21') go_repository(name='com_github_eapache_queue', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/eapache/queue', sum='h1:YOEu7KNc61ntiQlcEeUIoDTJ2o8mQznoNvUhiigpIqc=', version='v1.1.0') go_repository(name='com_github_openzipkin_zipkin_go', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/openzipkin/zipkin-go', sum='h1:nY8Hti+WKaP0cRsSeQ026wU03QsM762XBeCXBb9NAWI=', version='v0.2.2') go_repository(name='com_github_pierrec_lz4', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/pierrec/lz4', sum='h1:2xWsjqPFWcplujydGg4WmhC/6fZqK42wMM8aXeqhl0I=', version='v2.0.5+incompatible') go_repository(name='com_github_rcrowley_go_metrics', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/rcrowley/go-metrics', sum='h1:9ZKAASQSHhDYGoxY8uLVpewe1GDZ2vu2Tr/vTdVAkFQ=', version='v0.0.0-20181016184325-3113b8401b8a') go_repository(name='com_github_shopify_sarama', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/Shopify/sarama', sum='h1:9oksLxC6uxVPHPVYUmq6xhr1BOF/hHobWH2UzO67z1s=', version='v1.19.0') go_repository(name='com_github_shopify_toxiproxy', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/Shopify/toxiproxy', sum='h1:TKdv8HiTLgE5wdJuEML90aBgNWsokNbMijUGhmcoBJc=', version='v2.1.4+incompatible') go_repository(name='in_gopkg_yaml_v3', build_file_generation='on', build_file_proto_mode='disable', importpath='gopkg.in/yaml.v3', sum='h1:grhR+C34yXImVGp7EzNk+DTIk+323eIUWOmEevy6bDo=', version='v3.0.0-20200605160147-a5ece683394c') go_repository(name='com_github_docopt_docopt_go', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/docopt/docopt-go', sum='h1:bWDMxwH3px2JBh6AyO7hdCn/PkvCZXii8TGj7sbtEbQ=', version='v0.0.0-20180111231733-ee0de3bc6815') go_repository(name='org_golang_x_xerrors', build_file_generation='on', build_file_proto_mode='disable', importpath='golang.org/x/xerrors', sum='h1:E7g+9GITq07hpfrRu66IVDexMakfv52eLZ2CXBWiKr4=', version='v0.0.0-20191204190536-9bdfabe68543') go_repository(name='io_etcd_go_bbolt', build_file_generation='on', build_file_proto_mode='disable', importpath='go.etcd.io/bbolt', sum='h1:XAzx9gjCb0Rxj7EoqcClPD1d5ZBxZJk0jbuoPHenBt0=', version='v1.3.5') go_repository(name='com_github_munnerz_crd_schema_fuzz', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/munnerz/crd-schema-fuzz', sum='h1:8erI9yzEnOGw9K5O+a8zZdoo8N/OwrFi7c7SjBtkHAs=', version='v1.0.0') go_repository(name='com_github_agnivade_levenshtein', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/agnivade/levenshtein', sum='h1:3oJU7J3FGFmyhn8KHjmVaZCN5hxTr7GxgRue+sxIXdQ=', version='v1.0.1') go_repository(name='com_github_andreyvit_diff', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/andreyvit/diff', sum='h1:bvNMNQO63//z+xNgfBlViaCIJKLlCJ6/fmUseuG0wVQ=', version='v0.0.0-20170406064948-c7f18ee00883') go_repository(name='com_github_bgentry_speakeasy', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/bgentry/speakeasy', sum='h1:ByYyxL9InA1OWqxJqqp2A5pYHUrCiAL6K3J+LKSsQkY=', version='v0.1.0') go_repository(name='com_github_cockroachdb_datadriven', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/cockroachdb/datadriven', sum='h1:OaNxuTZr7kxeODyLWsRMC+OD03aFUH+mW6r2d+MWa5Y=', version='v0.0.0-20190809214429-80d97fb3cbaa') go_repository(name='com_github_creack_pty', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/creack/pty', sum='h1:6pwm8kMQKCmgUg0ZHTm5+/YvRK0s3THD/28+T6/kk4A=', version='v1.1.7') go_repository(name='com_github_dustin_go_humanize', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/dustin/go-humanize', sum='h1:VSnTsYCnlFHaM2/igO1h6X3HA71jcobQuxemgkq4zYo=', version='v1.0.0') go_repository(name='com_github_mattn_go_runewidth', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/mattn/go-runewidth', sum='h1:Ei8KR0497xHyKJPAv59M1dkC+rOZCMBJ+t3fZ+twI54=', version='v0.0.7') go_repository(name='com_github_olekukonko_tablewriter', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/olekukonko/tablewriter', sum='h1:vHD/YYe1Wolo78koG299f7V/VAS08c6IpCLn+Ejf/w8=', version='v0.0.4') go_repository(name='com_github_rogpeppe_fastuuid', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/rogpeppe/fastuuid', sum='h1:gu+uRPtBe88sKxUCEXRoeCvVG90TJmwhiqRpvdhQFng=', version='v0.0.0-20150106093220-6724a57986af') go_repository(name='com_github_sergi_go_diff', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/sergi/go-diff', sum='h1:we8PVUC3FE2uYfodKH/nBHMSetSfHDR6scGdBi+erh0=', version='v1.1.0') go_repository(name='com_github_tidwall_pretty', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/tidwall/pretty', sum='h1:HsD+QiTn7sK6flMKIvNmpqz1qrpP3Ps6jOKIKMooyg4=', version='v1.0.0') go_repository(name='com_github_urfave_cli', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/urfave/cli', sum='h1:u7tSpNPPswAFymm8IehJhy4uJMlUuU/GmqSkvJ1InXA=', version='v1.22.4') go_repository(name='com_github_vektah_gqlparser', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/vektah/gqlparser', sum='h1:ZsyLGn7/7jDNI+y4SEhI4yAxRChlv15pUHMjijT+e68=', version='v1.1.2') go_repository(name='in_gopkg_cheggaaa_pb_v1', build_file_generation='on', build_file_proto_mode='disable', importpath='gopkg.in/cheggaaa/pb.v1', sum='h1:Ev7yu1/f6+d+b3pi5vPdRPc6nNtP1umSfcWiEfRqv6I=', version='v1.0.25') go_repository(name='in_gopkg_resty_v1', build_file_generation='on', build_file_proto_mode='disable', importpath='gopkg.in/resty.v1', sum='h1:CuXP0Pjfw9rOuY6EP+UvtNvt5DSqHpIxILZKT/quCZI=', version='v1.12.0') go_repository(name='io_etcd_go_etcd', build_file_generation='on', build_file_proto_mode='disable', importpath='go.etcd.io/etcd', sum='h1:Gqga3zA9tdAcfqobUGjSoCob5L3f8Dt5EuOp3ihNZko=', version='v0.5.0-alpha.5.0.20200819165624-17cef6e3e9d5') go_repository(name='org_mongodb_go_mongo_driver', build_file_generation='on', build_file_proto_mode='disable', importpath='go.mongodb.org/mongo-driver', sum='h1:jxcFYjlkl8xaERsgLo+RNquI0epW6zuy/ZRQs6jnrFA=', version='v1.1.2') go_repository(name='com_github_go_ldap_ldap', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/go-ldap/ldap', sum='h1:kD5HQcAzlQ7yrhfn+h+MSABeAy/jAJhvIJ/QDllP44g=', version='v3.0.2+incompatible') go_repository(name='com_github_go_test_deep', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/go-test/deep', sum='h1:28FVBuwkwowZMjbA7M0wXsI6t3PYulRTMio3SO+eKCM=', version='v1.0.2-0.20181118220953-042da051cf31') go_repository(name='com_github_mitchellh_cli', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/mitchellh/cli', sum='h1:iGBIsUe3+HZ/AD/Vd7DErOt5sU9fa8Uj7A2s1aggv1Y=', version='v1.0.0') go_repository(name='com_github_mitchellh_go_wordwrap', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/mitchellh/go-wordwrap', sum='h1:6GlHJ/LTGMrIJbwgdqdl2eEH8o+Exx/0m8ir9Gns0u4=', version='v1.0.0') go_repository(name='com_github_posener_complete', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/posener/complete', sum='h1:ccV59UEOTzVDnDUEFdT95ZzHVZ+5+158q8+SJb2QV5w=', version='v1.1.1') go_repository(name='com_github_ryanuber_columnize', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/ryanuber/columnize', sum='h1:j1Wcmh8OrK4Q7GXY+V7SVSY8nUWQxHW5TkBe7YUl+2s=', version='v2.1.0+incompatible') go_repository(name='in_gopkg_asn1_ber_v1', build_file_generation='on', build_file_proto_mode='disable', importpath='gopkg.in/asn1-ber.v1', sum='h1:TxyelI5cVkbREznMhfzycHdkp5cLA7DpE+GKjSslYhM=', version='v1.0.0-20181015200546-f715ec2f112d') go_repository(name='com_github_pavel_v_chernykh_keystore_go', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/pavel-v-chernykh/keystore-go', sum='h1:Jd6xfriVlJ6hWPvYOE0Ni0QWcNTLRehfGPFxr3eSL80=', version='v2.1.0+incompatible') go_repository(name='com_github_cpuguy83_go_md2man_v2', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/cpuguy83/go-md2man/v2', sum='h1:EoUDS0afbrsXAZ9YQ9jdu/mZ2sXgT1/2yyNng4PGlyM=', version='v2.0.0') go_repository(name='com_github_russross_blackfriday_v2', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/russross/blackfriday/v2', sum='h1:lPqVAte+HuHNfhJ/0LC98ESWRz8afy9tM/0RK8m9o+Q=', version='v2.0.1') go_repository(name='com_github_shurcool_sanitized_anchor_name', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/shurcooL/sanitized_anchor_name', sum='h1:PdmoCO6wvbs+7yrJyMORt4/BmY5IYyJwS/kOiWx8mHo=', version='v1.0.0') go_repository(name='com_github_urfave_cli_v2', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/urfave/cli/v2', sum='h1:Qt8FeAtxE/vfdrLmR3rxR6JRE0RoVmbXu8+6kZtYU4k=', version='v2.1.1') go_repository(name='com_github_census_instrumentation_opencensus_proto', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/census-instrumentation/opencensus-proto', sum='h1:glEXhBS5PSLLv4IXzLA5yPRVX4bilULVyxxbrfOtDAk=', version='v0.2.1') go_repository(name='com_github_envoyproxy_go_control_plane', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/envoyproxy/go-control-plane', sum='h1:4cmBvAEBNJaGARUEs3/suWRyfyBfhf7I60WBZq+bv2w=', version='v0.9.1-0.20191026205805-5f8ba28d4473') go_repository(name='com_github_envoyproxy_protoc_gen_validate', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/envoyproxy/protoc-gen-validate', sum='h1:EQciDnbrYxy13PgWoY8AqoxGiPrpgBZ1R8UNe3ddc+A=', version='v0.1.0') go_repository(name='io_k8s_sigs_apiserver_network_proxy_konnectivity_client', build_file_generation='on', build_file_proto_mode='disable', importpath='sigs.k8s.io/apiserver-network-proxy/konnectivity-client', sum='h1:rusRLrDhjBp6aYtl9sGEvQJr6faoHoDLd0YcUBTZguI=', version='v0.0.9') go_repository(name='io_k8s_sigs_structured_merge_diff_v3', build_file_generation='on', build_file_proto_mode='disable', importpath='sigs.k8s.io/structured-merge-diff/v3', sum='h1:dOmIZBMfhcHS09XZkMyUgkq5trg3/jRyJYFZUiaOp8E=', version='v3.0.0') go_repository(name='com_github_chai2010_gettext_go', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/chai2010/gettext-go', sum='h1:7aWHqerlJ41y6FOsEUvknqgXnGmJyJSbjhAWq5pO4F8=', version='v0.0.0-20160711120539-c6fed771bfd5') go_repository(name='com_github_daviddengcn_go_colortext', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/daviddengcn/go-colortext', sum='h1:uVsMphB1eRx7xB1njzL3fuMdWRN8HtVzoUOItHMwv5c=', version='v0.0.0-20160507010035-511bcaf42ccd') go_repository(name='com_github_docker_distribution', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/docker/distribution', sum='h1:a5mlkVzth6W5A4fOsS3D2EO5BUmsJpcB+cRlLU7cSug=', version='v2.7.1+incompatible') go_repository(name='com_github_exponent_io_jsonpath', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/exponent-io/jsonpath', sum='h1:105gxyaGwCFad8crR9dcMQWvV9Hvulu6hwUh4tWPJnM=', version='v0.0.0-20151013193312-d6023ce2651d') go_repository(name='com_github_fatih_camelcase', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/fatih/camelcase', sum='h1:hxNvNX/xYBp0ovncs8WyWZrOrpBNub/JfaMvbURyft8=', version='v1.0.0') go_repository(name='com_github_golangplus_bytes', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/golangplus/bytes', sum='h1:7xqw01UYS+KCI25bMrPxwNYkSns2Db1ziQPpVq99FpE=', version='v0.0.0-20160111154220-45c989fe5450') go_repository(name='com_github_golangplus_fmt', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/golangplus/fmt', sum='h1:f5gsjBiF9tRRVomCvrkGMMWI8W1f2OBFar2c5oakAP0=', version='v0.0.0-20150411045040-2a5d6d7d2995') go_repository(name='com_github_golangplus_testing', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/golangplus/testing', sum='h1:KhcknUwkWHKZPbFy2P7jH5LKJ3La+0ZeknkkmrSgqb0=', version='v0.0.0-20180327235837-af21d9c3145e') go_repository(name='com_github_liggitt_tabwriter', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/liggitt/tabwriter', sum='h1:9TO3cAIGXtEhnIaL+V+BEER86oLrvS+kWobKpbJuye0=', version='v0.0.0-20181228230101-89fcab3d43de') go_repository(name='com_github_lithammer_dedent', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/lithammer/dedent', sum='h1:VNzHMVCBNG1j0fh3OrsFRkVUwStdDArbgBWoPAffktY=', version='v1.1.0') go_repository(name='com_github_makenowjust_heredoc', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/MakeNowJust/heredoc', sum='h1:sjQovDkwrZp8u+gxLtPgKGjk5hCxuy2hrRejBTA9xFU=', version='v0.0.0-20170808103936-bb23615498cd') go_repository(name='com_github_xlab_handysort', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/xlab/handysort', sum='h1:j2hhcujLRHAg872RWAV5yaUrEjHEObwDv3aImCaNLek=', version='v0.0.0-20150421192137-fb3537ed64a1') go_repository(name='io_k8s_cli_runtime', build_file_generation='on', build_file_proto_mode='disable', importpath='k8s.io/cli-runtime', sum='h1:wLe+osHSqcItyS3MYQXVyGFa54fppORVA8Jn7DBGSWw=', version='v0.19.0') go_repository(name='io_k8s_kubectl', build_file_generation='on', build_file_proto_mode='disable', importpath='k8s.io/kubectl', sum='h1:t9uxaZzGvqc2jY96mjnPSjFHtaKOxoUegeGZdaGT6aw=', version='v0.19.0') go_repository(name='io_k8s_metrics', build_file_generation='on', build_file_proto_mode='disable', importpath='k8s.io/metrics', sum='h1:cKq0+Z7wg5qkK1n8dryNffKfU22DBX83JguGpR+TCk0=', version='v0.19.0') go_repository(name='io_k8s_sigs_kustomize', build_file_generation='on', build_file_proto_mode='disable', importpath='sigs.k8s.io/kustomize', sum='h1:JUufWFNlI44MdtnjUqVnvh29rR37PQFzPbLXqhyOyX0=', version='v2.0.3+incompatible') go_repository(name='ml_vbom_util', build_file_generation='on', build_file_proto_mode='disable', importpath='vbom.ml/util', sum='h1:MksmcCZQWAQJCTA5T0jgI/0sJ51AVm4Z41MrmfczEoc=', version='v0.0.0-20160121211510-db5cfe13f5cc') go_repository(name='org_golang_x_mod', build_file_generation='on', build_file_proto_mode='disable', importpath='golang.org/x/mod', sum='h1:RM4zey1++hCTbCVQfnWeKs9/IEsaBLA8vTkd0WVtmH4=', version='v0.3.0') go_repository(name='com_github_ugorji_go', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/ugorji/go', sum='h1:j4s+tAvLfL3bZyefP2SEWmhBzmuIlH/eqNuPdFPgngw=', version='v1.1.4') go_repository(name='io_k8s_klog_v2', build_file_generation='on', build_file_proto_mode='disable', importpath='k8s.io/klog/v2', sum='h1:WmkrnW7fdrm0/DMClc+HIxtftvxVIPAhlVwMQo5yLco=', version='v2.3.0') go_repository(name='com_github_nxadm_tail', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/nxadm/tail', sum='h1:DQuhQpB1tVlglWS2hLQ5OV6B5r8aGxSrPc5Qo6uTN78=', version='v1.4.4') go_repository(name='io_k8s_sigs_structured_merge_diff_v2', build_file_generation='on', build_file_proto_mode='disable', importpath='sigs.k8s.io/structured-merge-diff/v2', sum='h1:I0h4buiCqDtPztO3NOiyoNMtqSIfld49D4Wj3UBXYZA=', version='v2.0.1') go_repository(name='org_golang_google_protobuf', build_file_generation='on', build_file_proto_mode='disable', importpath='google.golang.org/protobuf', sum='h1:UhZDfRO8JRQru4/+LlLE0BRKGF8L+PICnvYZmx/fEGA=', version='v1.24.0') go_repository(name='com_github_cespare_xxhash', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/cespare/xxhash', sum='h1:a6HrQnmkObjyL+Gs60czilIUGqrzKutQD6XZog3p+ko=', version='v1.1.0') go_repository(name='com_github_cespare_xxhash_v2', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/cespare/xxhash/v2', sum='h1:6MnRN8NT7+YBpUIWxHtefFZOKTAPgGjpQSxqLNn0+qY=', version='v2.1.1') go_repository(name='com_github_chzyer_logex', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/chzyer/logex', sum='h1:Swpa1K6QvQznwJRcfTfQJmTE72DqScAa40E+fbHEXEE=', version='v1.1.10') go_repository(name='com_github_chzyer_readline', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/chzyer/readline', sum='h1:fY5BOSpyZCqRo5OhCuC+XN+r/bBCmeuuJtjz+bCNIf8=', version='v0.0.0-20180603132655-2972be24d48e') go_repository(name='com_github_chzyer_test', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/chzyer/test', sum='h1:q763qf9huN11kDQavWsoZXJNW3xEE4JJyHa5Q25/sd8=', version='v0.0.0-20180213035817-a1ea475d72b1') go_repository(name='com_github_dgryski_go_sip13', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/dgryski/go-sip13', sum='h1:RMLoZVzv4GliuWafOuPuQDKSm1SJph7uCRnnS61JAn4=', version='v0.0.0-20181026042036-e10d5fee7954') go_repository(name='com_github_go_gl_glfw_v3_3_glfw', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/go-gl/glfw/v3.3/glfw', sum='h1:b+9H1GAsx5RsjvDFLoS5zkNBzIQMuVKUYQDmxU3N5XE=', version='v0.0.0-20191125211704-12ad95a8df72') go_repository(name='com_github_google_renameio', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/google/renameio', sum='h1:GOZbcHa3HfsPKPlmyPyN2KEohoMXOhdMbHrvbpl2QaA=', version='v0.1.0') go_repository(name='com_github_ianlancetaylor_demangle', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/ianlancetaylor/demangle', sum='h1:UDMh68UUwekSh5iP2OMhRRZJiiBccgV7axzUG8vi56c=', version='v0.0.0-20181102032728-5e5cf60278f6') go_repository(name='com_github_moby_term', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/moby/term', sum='h1:aY7OQNf2XqY/JQ6qREWamhI/81os/agb2BAGpcx5yWI=', version='v0.0.0-20200312100748-672ec06f55cd') go_repository(name='com_github_oklog_ulid', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/oklog/ulid', sum='h1:EGfNDEx6MqHz8B3uNV6QAib1UR2Lm97sHi3ocA6ESJ4=', version='v1.3.1') go_repository(name='com_github_oneofone_xxhash', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/OneOfOne/xxhash', sum='h1:KMrpdQIwFcEqXDklaen+P1axHaj9BSKzvpUUfnHldSE=', version='v1.2.2') go_repository(name='com_github_prometheus_tsdb', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/prometheus/tsdb', sum='h1:YZcsG11NqnK4czYLrWd9mpEuAJIHVQLwdrleYfszMAA=', version='v0.7.1') go_repository(name='com_github_rogpeppe_go_internal', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/rogpeppe/go-internal', sum='h1:RR9dF3JtopPvtkroDZuVD7qquD0bnHlKSqaQhgwt8yk=', version='v1.3.0') go_repository(name='com_github_spaolacci_murmur3', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/spaolacci/murmur3', sum='h1:qLC7fQah7D6K1B0ujays3HV9gkFtllcxhzImRR7ArPQ=', version='v0.0.0-20180118202830-f09979ecbc72') go_repository(name='com_github_yuin_goldmark', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/yuin/goldmark', sum='h1:nqDD4MMMQA0lmWq03Z2/myGPYLQoXtmi0rGVs95ntbo=', version='v1.1.27') go_repository(name='com_google_cloud_go_bigquery', build_file_generation='on', build_file_proto_mode='disable', importpath='cloud.google.com/go/bigquery', sum='h1:hL+ycaJpVE9M7nLoiXb/Pn10ENE2u+oddxbD8uu0ZVU=', version='v1.0.1') go_repository(name='com_google_cloud_go_datastore', build_file_generation='on', build_file_proto_mode='disable', importpath='cloud.google.com/go/datastore', sum='h1:Kt+gOPPp2LEPWp8CSfxhsM8ik9CcyE/gYu+0r+RnZvM=', version='v1.0.0') go_repository(name='com_google_cloud_go_pubsub', build_file_generation='on', build_file_proto_mode='disable', importpath='cloud.google.com/go/pubsub', sum='h1:W9tAK3E57P75u0XLLR82LZyw8VpAnhmyTOxW9qzmyj8=', version='v1.0.1') go_repository(name='com_google_cloud_go_storage', build_file_generation='on', build_file_proto_mode='disable', importpath='cloud.google.com/go/storage', sum='h1:VV2nUM3wwLLGh9lSABFgZMjInyUbJeaRSE64WuAIQ+4=', version='v1.0.0') go_repository(name='com_shuralyov_dmitri_gpu_mtl', build_file_generation='on', build_file_proto_mode='disable', importpath='dmitri.shuralyov.com/gpu/mtl', sum='h1:VpgP7xuJadIUuKccphEpTJnWhS2jkQyMt6Y7pJCD7fY=', version='v0.0.0-20190408044501-666a987793e9') go_repository(name='in_gopkg_errgo_v2', build_file_generation='on', build_file_proto_mode='disable', importpath='gopkg.in/errgo.v2', sum='h1:0vLT13EuvQ0hNvakwLuFZ/jYrLp5F3kcWHXdRggjCE8=', version='v2.1.0') go_repository(name='io_rsc_binaryregexp', build_file_generation='on', build_file_proto_mode='disable', importpath='rsc.io/binaryregexp', sum='h1:HfqmD5MEmC0zvwBuF187nq9mdnXjXsSivRiXN7SmRkE=', version='v0.2.0') go_repository(name='tools_gotest_v3', build_file_generation='on', build_file_proto_mode='disable', importpath='gotest.tools/v3', sum='h1:kG1BFyqVHuQoVQiR1bWGnfz/fmHvvuiSPIV7rvl360E=', version='v3.0.2') go_repository(name='io_k8s_sigs_structured_merge_diff_v4', build_file_generation='on', build_file_proto_mode='disable', importpath='sigs.k8s.io/structured-merge-diff/v4', sum='h1:YXTMot5Qz/X1iBRJhAt+vI+HVttY0WkSqqhKxQ0xVbA=', version='v4.0.1') go_repository(name='com_github_afex_hystrix_go', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/afex/hystrix-go', sum='h1:rFw4nCn9iMW+Vajsk51NtYIcwSTkXr+JGrMd36kTDJw=', version='v0.0.0-20180502004556-fa1af6a1f4f5') go_repository(name='com_github_armon_circbuf', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/armon/circbuf', sum='h1:QEF07wC0T1rKkctt1RINW/+RMTVmiwxETico2l3gxJA=', version='v0.0.0-20150827004946-bbbad097214e') go_repository(name='com_github_aryann_difflib', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/aryann/difflib', sum='h1:pv34s756C4pEXnjgPfGYgdhg/ZdajGhyOvzx8k+23nw=', version='v0.0.0-20170710044230-e206f873d14a') go_repository(name='com_github_aws_aws_lambda_go', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/aws/aws-lambda-go', sum='h1:SuCy7H3NLyp+1Mrfp+m80jcbi9KYWAs9/BXwppwRDzY=', version='v1.13.3') go_repository(name='com_github_aws_aws_sdk_go_v2', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/aws/aws-sdk-go-v2', sum='h1:qZ+woO4SamnH/eEbjM2IDLhRNwIwND/RQyVlBLp3Jqg=', version='v0.18.0') go_repository(name='com_github_azure_go_autorest', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/Azure/go-autorest', sum='h1:V5VMDjClD3GiElqLWO7mz2MxNAK/vTfRHdAubSIPRgs=', version='v14.2.0+incompatible') go_repository(name='com_github_casbin_casbin_v2', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/casbin/casbin/v2', sum='h1:bTwon/ECRx9dwBy2ewRVr5OiqjeXSGiTUY74sDPQi/g=', version='v2.1.2') go_repository(name='com_github_clbanning_x2j', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/clbanning/x2j', sum='h1:EdRZT3IeKQmfCSrgo8SZ8V3MEnskuJP0wCYNpe+aiXo=', version='v0.0.0-20191024224557-825249438eec') go_repository(name='com_github_cncf_udpa_go', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/cncf/udpa/go', sum='h1:WBZRG4aNOuI15bLRrCgN8fCq8E5Xuty6jGbmSNEvSsU=', version='v0.0.0-20191209042840-269d4d468f6f') go_repository(name='com_github_codahale_hdrhistogram', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/codahale/hdrhistogram', sum='h1:qMd81Ts1T2OTKmB4acZcyKaMtRnY5Y44NuXGX2GFJ1w=', version='v0.0.0-20161010025455-3a0bb77429bd') go_repository(name='com_github_edsrzf_mmap_go', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/edsrzf/mmap-go', sum='h1:CEBF7HpRnUCSJgGUb5h1Gm7e3VkmVDrR8lvWVLtrOFw=', version='v1.0.0') go_repository(name='com_github_franela_goblin', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/franela/goblin', sum='h1:gb2Z18BhTPJPpLQWj4T+rfKHYCHxRHCtRxhKKjRidVw=', version='v0.0.0-20200105215937-c9ffbefa60db') go_repository(name='com_github_franela_goreq', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/franela/goreq', sum='h1:a9ENSRDFBUPkJ5lCgVZh26+ZbGyoVJG7yb5SSzF5H54=', version='v0.0.0-20171204163338-bcd34c9993f8') go_repository(name='com_github_frankban_quicktest', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/frankban/quicktest', sum='h1:Yyrghcw93e1jKo4DTZkRFTTFvBsVhzbblBUPNU1vW6Q=', version='v1.11.0') go_repository(name='com_github_go_gl_glfw', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/go-gl/glfw', sum='h1:QbL/5oDUmRBzO9/Z7Seo6zf912W/a6Sr4Eu0G/3Jho0=', version='v0.0.0-20190409004039-e6da0acd62b1') go_repository(name='com_github_gogo_googleapis', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/gogo/googleapis', sum='h1:kFkMAZBNAn4j7K0GiZr8cRYzejq68VbheufiV3YuyFI=', version='v1.1.0') go_repository(name='com_github_google_martian_v3', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/google/martian/v3', sum='h1:pMen7vLs8nvgEYhywH3KDWJIJTeEr2ULsVWHWYHQyBs=', version='v3.0.0') go_repository(name='com_github_hashicorp_consul_api', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/hashicorp/consul/api', sum='h1:BNQPM9ytxj6jbjjdRPioQ94T6YXriSopn0i8COv6SRA=', version='v1.1.0') go_repository(name='com_github_hashicorp_consul_sdk', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/hashicorp/consul/sdk', sum='h1:LnuDWGNsoajlhGyHJvuWW6FVqRl8JOTPqS6CPTsYjhY=', version='v0.1.1') go_repository(name='com_github_hashicorp_go_msgpack', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/hashicorp/go-msgpack', sum='h1:zKjpN5BK/P5lMYrLmBHdBULWbJ0XpYR+7NGzqkZzoD4=', version='v0.5.3') go_repository(name='com_github_hashicorp_go_net', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/hashicorp/go.net', sum='h1:sNCoNyDEvN1xa+X0baata4RdcpKwcMS6DH+xwfqPgjw=', version='v0.0.1') go_repository(name='com_github_hashicorp_go_syslog', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/hashicorp/go-syslog', sum='h1:KaodqZuhUoZereWVIYmpUgZysurB1kBLX2j0MwMrUAE=', version='v1.0.0') go_repository(name='com_github_hashicorp_logutils', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/hashicorp/logutils', sum='h1:dLEQVugN8vlakKOUE3ihGLTZJRB4j+M2cdTm/ORI65Y=', version='v1.0.0') go_repository(name='com_github_hashicorp_mdns', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/hashicorp/mdns', sum='h1:WhIgCr5a7AaVH6jPUwjtRuuE7/RDufnUvzIr48smyxs=', version='v1.0.0') go_repository(name='com_github_hashicorp_memberlist', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/hashicorp/memberlist', sum='h1:EmmoJme1matNzb+hMpDuR/0sbJSUisxyqBGG676r31M=', version='v0.1.3') go_repository(name='com_github_hashicorp_serf', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/hashicorp/serf', sum='h1:YZ7UKsJv+hKjqGVUUbtE3HNj79Eln2oQ75tniF6iPt0=', version='v0.8.2') go_repository(name='com_github_hudl_fargo', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/hudl/fargo', sum='h1:0U6+BtN6LhaYuTnIJq4Wyq5cpn6O2kWrxAtcqBmYY6w=', version='v1.3.0') go_repository(name='com_github_influxdata_influxdb1_client', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/influxdata/influxdb1-client', sum='h1:/WZQPMZNsjZ7IlCpsLGdQBINg5bxKQ1K1sh6awxLtkA=', version='v0.0.0-20191209144304-8bf82d3c094d') go_repository(name='com_github_jmespath_go_jmespath_internal_testify', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/jmespath/go-jmespath/internal/testify', sum='h1:shLQSRRSCCPj3f2gpwzGwWFoC7ycTf1rcQZHOlsJ6N8=', version='v1.5.1') go_repository(name='com_github_josharian_intern', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/josharian/intern', sum='h1:vlS4z54oSdjm0bgjRigI+G1HpF+tI+9rE5LLzOg8HmY=', version='v1.0.0') go_repository(name='com_github_jpillora_backoff', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/jpillora/backoff', sum='h1:uvFg412JmmHBHw7iwprIxkPMI+sGQ4kzOWsMeHnm2EA=', version='v1.0.0') go_repository(name='com_github_knetic_govaluate', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/Knetic/govaluate', sum='h1:1G1pk05UrOh0NlF1oeaaix1x8XzrfjIDK47TY0Zehcw=', version='v3.0.1-0.20171022003610-9aa49832a739+incompatible') go_repository(name='com_github_lightstep_lightstep_tracer_common_golang_gogo', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/lightstep/lightstep-tracer-common/golang/gogo', sum='h1:143Bb8f8DuGWck/xpNUOckBVYfFbBTnLevfRZ1aVVqo=', version='v0.0.0-20190605223551-bc2310a04743') go_repository(name='com_github_lightstep_lightstep_tracer_go', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/lightstep/lightstep-tracer-go', sum='h1:vi1F1IQ8N7hNWytK9DpJsUfQhGuNSc19z330K6vl4zk=', version='v0.18.1') go_repository(name='com_github_lyft_protoc_gen_validate', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/lyft/protoc-gen-validate', sum='h1:KNt/RhmQTOLr7Aj8PsJ7mTronaFyx80mRTT9qF261dA=', version='v0.0.13') go_repository(name='com_github_mitchellh_gox', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/mitchellh/gox', sum='h1:lfGJxY7ToLJQjHHwi0EX6uYBdK78egf954SQl13PQJc=', version='v0.4.0') go_repository(name='com_github_mitchellh_iochan', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/mitchellh/iochan', sum='h1:C+X3KsSTLFVBr/tK1eYN/vs4rJcvsiLU338UhYPJWeY=', version='v1.0.0') go_repository(name='com_github_nats_io_jwt', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/nats-io/jwt', sum='h1:+RB5hMpXUUA2dfxuhBTEkMOrYmM+gKIZYS1KjSostMI=', version='v0.3.2') go_repository(name='com_github_nats_io_nats_go', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/nats-io/nats.go', sum='h1:ik3HbLhZ0YABLto7iX80pZLPw/6dx3T+++MZJwLnMrQ=', version='v1.9.1') go_repository(name='com_github_nats_io_nats_server_v2', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/nats-io/nats-server/v2', sum='h1:i2Ly0B+1+rzNZHHWtD4ZwKi+OU5l+uQo1iDHZ2PmiIc=', version='v2.1.2') go_repository(name='com_github_nats_io_nkeys', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/nats-io/nkeys', sum='h1:6JrEfig+HzTH85yxzhSVbjHRJv9cn0p6n3IngIcM5/k=', version='v0.1.3') go_repository(name='com_github_nats_io_nuid', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/nats-io/nuid', sum='h1:5iA8DT8V7q8WK2EScv2padNa/rTESc1KdnPw4TC2paw=', version='v1.0.1') go_repository(name='com_github_niemeyer_pretty', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/niemeyer/pretty', sum='h1:fD57ERR4JtEqsWbfPhv4DMiApHyliiK5xCTNVSPiaAs=', version='v0.0.0-20200227124842-a10e7caefd8e') go_repository(name='com_github_oklog_oklog', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/oklog/oklog', sum='h1:wVfs8F+in6nTBMkA7CbRw+zZMIB7nNM825cM1wuzoTk=', version='v0.3.2') go_repository(name='com_github_op_go_logging', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/op/go-logging', sum='h1:lDH9UUVJtmYCjyT0CI4q8xvlXPxeZ0gYCVvWbmPlp88=', version='v0.0.0-20160315200505-970db520ece7') go_repository(name='com_github_opentracing_basictracer_go', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/opentracing/basictracer-go', sum='h1:YyUAhaEfjoWXclZVJ9sGoNct7j4TVk7lZWlQw5UXuoo=', version='v1.0.0') go_repository(name='com_github_opentracing_contrib_go_observer', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/opentracing-contrib/go-observer', sum='h1:lM6RxxfUMrYL/f8bWEUqdXrANWtrL7Nndbm9iFN0DlU=', version='v0.0.0-20170622124052-a52f23424492') go_repository(name='com_github_opentracing_opentracing_go', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/opentracing/opentracing-go', sum='h1:pWlfV3Bxv7k65HYwkikxat0+s3pV4bsqf19k25Ur8rU=', version='v1.1.0') go_repository(name='com_github_openzipkin_contrib_zipkin_go_opentracing', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/openzipkin-contrib/zipkin-go-opentracing', sum='h1:ZCnq+JUrvXcDVhX/xRolRBZifmabN1HcS1wrPSvxhrU=', version='v0.4.5') go_repository(name='com_github_pact_foundation_pact_go', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/pact-foundation/pact-go', sum='h1:OYkFijGHoZAYbOIb1LWXrwKQbMMRUv1oQ89blD2Mh2Q=', version='v1.0.4') go_repository(name='com_github_performancecopilot_speed', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/performancecopilot/speed', sum='h1:2WnRzIquHa5QxaJKShDkLM+sc0JPuwhXzK8OYOyt3Vg=', version='v3.0.0+incompatible') go_repository(name='com_github_pkg_profile', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/pkg/profile', sum='h1:F++O52m40owAmADcojzM+9gyjmMOY/T4oYJkgFDH8RE=', version='v1.2.1') go_repository(name='com_github_samuel_go_zookeeper', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/samuel/go-zookeeper', sum='h1:p3Vo3i64TCLY7gIfzeQaUJ+kppEO5WQG3cL8iE8tGHU=', version='v0.0.0-20190923202752-2cc03de413da') go_repository(name='com_github_sean__seed', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/sean-/seed', sum='h1:nn5Wsu0esKSJiIVhscUtVbo7ada43DJhG55ua/hjS5I=', version='v0.0.0-20170313163322-e2103e2c3529') go_repository(name='com_github_sony_gobreaker', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/sony/gobreaker', sum='h1:oMnRNZXX5j85zso6xCPRNPtmAycat+WcoKbklScLDgQ=', version='v0.4.1') go_repository(name='com_github_stoewer_go_strcase', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/stoewer/go-strcase', sum='h1:Z2iHWqGXH00XYgqDmNgQbIBxf3wrNq0F3feEy0ainaU=', version='v1.2.0') go_repository(name='com_github_streadway_amqp', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/streadway/amqp', sum='h1:WhxRHzgeVGETMlmVfqhRn8RIeeNoPr2Czh33I4Zdccw=', version='v0.0.0-20190827072141-edfb9018d271') go_repository(name='com_github_streadway_handy', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/streadway/handy', sum='h1:AhmOdSHeswKHBjhsLs/7+1voOxT+LLrSk/Nxvk35fug=', version='v0.0.0-20190108123426-d5acb3125c2a') go_repository(name='com_github_vividcortex_gohistogram', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/VividCortex/gohistogram', sum='h1:6+hBz+qvs0JOrrNhhmR7lFxo5sINxBCGXrdtl/UvroE=', version='v1.0.0') go_repository(name='com_sourcegraph_sourcegraph_appdash', build_file_generation='on', build_file_proto_mode='disable', importpath='sourcegraph.com/sourcegraph/appdash', sum='h1:ucqkfpjg9WzSUubAO62csmucvxl4/JeW3F4I4909XkM=', version='v0.0.0-20190731080439-ebfcffb1b5c0') go_repository(name='in_gopkg_gcfg_v1', build_file_generation='on', build_file_proto_mode='disable', importpath='gopkg.in/gcfg.v1', sum='h1:m8OOJ4ccYHnx2f4gQwpno8nAX5OGOh7RLaaz0pj3Ogs=', version='v1.2.3') go_repository(name='in_gopkg_warnings_v0', build_file_generation='on', build_file_proto_mode='disable', importpath='gopkg.in/warnings.v0', sum='h1:wFXVbFY8DY5/xOe1ECiWdKCzZlxgshcYVNkBHstARME=', version='v0.1.2') go_repository(name='io_rsc_quote_v3', build_file_generation='on', build_file_proto_mode='disable', importpath='rsc.io/quote/v3', sum='h1:9JKUTTIUgS6kzR9mK1YuGKv6Nl+DijDNIc0ghT58FaY=', version='v3.1.0') go_repository(name='io_rsc_sampler', build_file_generation='on', build_file_proto_mode='disable', importpath='rsc.io/sampler', sum='h1:7uVkIFmeBqHfdjD+gZwtXXI+RODJ2Wc4O7MPEh/QiW4=', version='v1.3.0') go_repository(name='org_golang_google_grpc_examples', build_file_generation='on', build_file_proto_mode='disable', importpath='google.golang.org/grpc/examples', sum='h1:unzgkDPNegIn/czOcgxzQaTzEzOiBH1V1j55rsEzVEg=', version='v0.0.0-20200922230038-4e932bbcb079') go_repository(name='org_golang_google_grpc_naming', build_file_generation='on', build_file_proto_mode='disable', importpath='google.golang.org/grpc/naming', replace='github.com/xiegeo/grpc-naming', sum='h1:B/eYkKzZDCUWQWl3XDLrSy8JjL332OCkYKZhU9iCyc0=', version='v1.29.1-alpha') go_repository(name='org_uber_go_tools', build_file_generation='on', build_file_proto_mode='disable', importpath='go.uber.org/tools', sum='h1:0mgffUl7nfd+FpvXMVz4IDEaUSmT1ysygQC7qYo7sG4=', version='v0.0.0-20190618225709-2cfd321de3ee') go_repository(name='com_github_bketelsen_crypt', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/bketelsen/crypt', sum='h1:+0HFd5KSZ/mm3JmhmrDukiId5iR6w4+BdFtfSy4yWIc=', version='v0.0.3-0.20200106085610-5cbc8cc4026c') go_repository(name='com_github_subosito_gotenv', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/subosito/gotenv', sum='h1:Slr1R9HxAlEKefgq5jn9U+DnETlIUa6HfgEzj0g5d7s=', version='v1.2.0') go_repository(name='com_github_venafi_vcert_v4', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/Venafi/vcert/v4', sum='h1:37gfyjS9v5YvZcIABwNPo1fAC31lIZT7glVK1vfUxk4=', version='v4.11.0') go_repository(name='com_google_cloud_go_firestore', build_file_generation='on', build_file_proto_mode='disable', importpath='cloud.google.com/go/firestore', sum='h1:9x7Bx0A9R5/M9jibeJeZWqjeVEIxYW9fZYqB9a70/bY=', version='v1.1.0')
"""Constants for the Matrix integration.""" DOMAIN = "matrix" SERVICE_SEND_MESSAGE = "send_message"
"""Constants for the Matrix integration.""" domain = 'matrix' service_send_message = 'send_message'
# two way to copy list ## one way is use constructor names = ['Anonymous','Tazri','Focasa','Troy','Farha']; names_two = list(names); print('names_two : '); print(names_two); ## use copy methods names_three = names.copy(); print("names_three : "); print(names_three);
names = ['Anonymous', 'Tazri', 'Focasa', 'Troy', 'Farha'] names_two = list(names) print('names_two : ') print(names_two) names_three = names.copy() print('names_three : ') print(names_three)
''' created by cicek on 07.07.2018 21:25 ''' try: firstNumber = int(input("enter first number: ")) secondNumber = int(input("enter second number: ")) except: print("\nenter a positive number. Please try again!") exit(0) if (firstNumber <= 0) or (secondNumber <= 0) : print("\nenter a positive value, please!") exit(0) leastNumber = 0 # find least number if (firstNumber < secondNumber): leastNumber = firstNumber else: leastNumber = secondNumber # find multiply multiply = firstNumber*secondNumber # create an array for firstNumber and secondNumber firstNumberArray = [] secondNumberArray = [] # assign first values of numbers addFirstNumber = firstNumber addSecondNumber = secondNumber # append multiples of firstNumber while (addFirstNumber <= multiply): firstNumberArray.append(addFirstNumber) addFirstNumber += firstNumber # append multiples of firstNumber while (addSecondNumber <= multiply): secondNumberArray.append(addSecondNumber) addSecondNumber += secondNumber # find LCM(x,y) for i in firstNumberArray: if i in secondNumberArray: print("\nLCM(" + str(firstNumber) + "," + str(secondNumber) + ") = " + str(i)) exit(1)
""" created by cicek on 07.07.2018 21:25 """ try: first_number = int(input('enter first number: ')) second_number = int(input('enter second number: ')) except: print('\nenter a positive number. Please try again!') exit(0) if firstNumber <= 0 or secondNumber <= 0: print('\nenter a positive value, please!') exit(0) least_number = 0 if firstNumber < secondNumber: least_number = firstNumber else: least_number = secondNumber multiply = firstNumber * secondNumber first_number_array = [] second_number_array = [] add_first_number = firstNumber add_second_number = secondNumber while addFirstNumber <= multiply: firstNumberArray.append(addFirstNumber) add_first_number += firstNumber while addSecondNumber <= multiply: secondNumberArray.append(addSecondNumber) add_second_number += secondNumber for i in firstNumberArray: if i in secondNumberArray: print('\nLCM(' + str(firstNumber) + ',' + str(secondNumber) + ') = ' + str(i)) exit(1)
def f(getrecursionlimit = getrecursionlimit): pass def f(*getrecursionlimit): pass def f(**getrecursionlimit): pass def f(fob, getrecursionlimit): pass def f(x, *getrecursionlimit): pass def f(x, **getrecursionlimit): pass def f(fob, getrecursionlimit = getrecursionlimit): pass def f(fob, oar = [], getrecursionlimit = getrecursionlimit): pass def f(fob, oar = 1 + 2, getrecursionlimit = getrecursionlimit): pass def f(fob =\ [], getrecursionlimit = getrecursionlimit): pass def f(fob\ = [], getrecursionlimit = getrecursionlimit): pass def f\ \ \ (\ \ getrecursionlimit): pass def \ f\ \ \ (\ \ getrecursionlimit): pass
def f(getrecursionlimit=getrecursionlimit): pass def f(*getrecursionlimit): pass def f(**getrecursionlimit): pass def f(fob, getrecursionlimit): pass def f(x, *getrecursionlimit): pass def f(x, **getrecursionlimit): pass def f(fob, getrecursionlimit=getrecursionlimit): pass def f(fob, oar=[], getrecursionlimit=getrecursionlimit): pass def f(fob, oar=1 + 2, getrecursionlimit=getrecursionlimit): pass def f(fob=[], getrecursionlimit=getrecursionlimit): pass def f(fob=[], getrecursionlimit=getrecursionlimit): pass def f(getrecursionlimit): pass def f(getrecursionlimit): pass
""" @author axiner @version v1.0.0 @created 2021/12/12 13:14 @abstract This is a tool library. @description @history """ __version__ = '2022.02.21'
""" @author axiner @version v1.0.0 @created 2021/12/12 13:14 @abstract This is a tool library. @description @history """ __version__ = '2022.02.21'
# # PySNMP MIB module HP-ICF-PIM6 (http://snmplabs.com/pysmi) # ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/HP-ICF-PIM6 # Produced by pysmi-0.3.4 at Mon Apr 29 19:22:27 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, ConstraintsIntersection, ValueSizeConstraint, ValueRangeConstraint, SingleValueConstraint = mibBuilder.importSymbols("ASN1-REFINEMENT", "ConstraintsUnion", "ConstraintsIntersection", "ValueSizeConstraint", "ValueRangeConstraint", "SingleValueConstraint") hpSwitch, = mibBuilder.importSymbols("HP-ICF-OID", "hpSwitch") IANAipRouteProtocol, IANAipMRouteProtocol = mibBuilder.importSymbols("IANA-RTPROTO-MIB", "IANAipRouteProtocol", "IANAipMRouteProtocol") InterfaceIndex, InterfaceIndexOrZero = mibBuilder.importSymbols("IF-MIB", "InterfaceIndex", "InterfaceIndexOrZero") InetAddressType, InetAddress, InetAddressPrefixLength = mibBuilder.importSymbols("INET-ADDRESS-MIB", "InetAddressType", "InetAddress", "InetAddressPrefixLength") pimRPSetComponent, = mibBuilder.importSymbols("PIM-MIB", "pimRPSetComponent") ModuleCompliance, NotificationGroup, ObjectGroup = mibBuilder.importSymbols("SNMPv2-CONF", "ModuleCompliance", "NotificationGroup", "ObjectGroup") IpAddress, MibScalar, MibTable, MibTableRow, MibTableColumn, TimeTicks, Unsigned32, Counter32, Counter64, iso, ObjectIdentity, Gauge32, Bits, NotificationType, MibIdentifier, Integer32, ModuleIdentity = mibBuilder.importSymbols("SNMPv2-SMI", "IpAddress", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "TimeTicks", "Unsigned32", "Counter32", "Counter64", "iso", "ObjectIdentity", "Gauge32", "Bits", "NotificationType", "MibIdentifier", "Integer32", "ModuleIdentity") DisplayString, RowStatus, TruthValue, TimeStamp, TextualConvention = mibBuilder.importSymbols("SNMPv2-TC", "DisplayString", "RowStatus", "TruthValue", "TimeStamp", "TextualConvention") hpicfPim6MIB = ModuleIdentity((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122)) hpicfPim6MIB.setRevisions(('2017-10-10 00:00', '2017-07-03 00:00', '2012-04-12 00:00',)) if mibBuilder.loadTexts: hpicfPim6MIB.setLastUpdated('201710100000Z') if mibBuilder.loadTexts: hpicfPim6MIB.setOrganization('HP Networking') hpicfPim6Objects = MibIdentifier((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1)) hpicfPim6Traps = MibIdentifier((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 0)) hpicfPim6 = MibIdentifier((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1)) hpicfPim6Conformance = MibIdentifier((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 2)) hpicfPim6Groups = MibIdentifier((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 2, 1)) hpicfPim6Compliances = MibIdentifier((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 2, 2)) hpicfPim6AdminStatus = MibScalar((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enable", 1), ("disable", 2))).clone('disable')).setMaxAccess("readwrite") if mibBuilder.loadTexts: hpicfPim6AdminStatus.setStatus('current') hpicfPim6StateRefreshInterval = MibScalar((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(10, 100)).clone(60)).setUnits('seconds').setMaxAccess("readwrite") if mibBuilder.loadTexts: hpicfPim6StateRefreshInterval.setStatus('current') hpicfPim6TrapControl = MibScalar((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 3), Bits().clone(namedValues=NamedValues(("neighborLoss", 0), ("hardMrtFull", 1), ("softMrtFull", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: hpicfPim6TrapControl.setStatus('current') hpicfPim6IfTable = MibTable((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 4), ) if mibBuilder.loadTexts: hpicfPim6IfTable.setStatus('current') hpicfPim6IfEntry = MibTableRow((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 4, 1), ).setIndexNames((0, "HP-ICF-PIM6", "hpicfPim6IfIndex")) if mibBuilder.loadTexts: hpicfPim6IfEntry.setStatus('current') hpicfPim6IfIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 4, 1, 1), InterfaceIndex()) if mibBuilder.loadTexts: hpicfPim6IfIndex.setStatus('current') hpicfPim6IfAddressType = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 4, 1, 2), InetAddressType()).setMaxAccess("readcreate") if mibBuilder.loadTexts: hpicfPim6IfAddressType.setStatus('current') hpicfPim6IfAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 4, 1, 3), InetAddress().subtype(subtypeSpec=ConstraintsUnion(ValueSizeConstraint(0, 0), ValueSizeConstraint(4, 4), ValueSizeConstraint(8, 8), ValueSizeConstraint(16, 16), ValueSizeConstraint(20, 20), ))).setMaxAccess("readcreate") if mibBuilder.loadTexts: hpicfPim6IfAddress.setStatus('current') hpicfPim6IfMode = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 4, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("dense", 1), ("sparse", 2))).clone('dense')).setMaxAccess("readcreate") if mibBuilder.loadTexts: hpicfPim6IfMode.setStatus('current') hpicfPim6IfTrigHelloInterval = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 4, 1, 5), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 5)).clone(5)).setUnits('seconds').setMaxAccess("readcreate") if mibBuilder.loadTexts: hpicfPim6IfTrigHelloInterval.setStatus('current') hpicfPim6IfHelloHoldtime = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 4, 1, 6), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535)).clone(105)).setUnits('seconds').setMaxAccess("readcreate") if mibBuilder.loadTexts: hpicfPim6IfHelloHoldtime.setStatus('current') hpicfPim6IfLanPruneDelay = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 4, 1, 7), TruthValue().clone('true')).setMaxAccess("readcreate") if mibBuilder.loadTexts: hpicfPim6IfLanPruneDelay.setStatus('current') hpicfPim6IfPropagationDelay = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 4, 1, 8), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(250, 2000)).clone(500)).setUnits('milliseconds').setMaxAccess("readcreate") if mibBuilder.loadTexts: hpicfPim6IfPropagationDelay.setStatus('current') hpicfPim6IfOverrideInterval = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 4, 1, 9), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(500, 6000)).clone(2500)).setUnits('milliseconds').setMaxAccess("readcreate") if mibBuilder.loadTexts: hpicfPim6IfOverrideInterval.setStatus('current') hpicfPim6IfGenerationID = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 4, 1, 10), TruthValue().clone('false')).setMaxAccess("readcreate") if mibBuilder.loadTexts: hpicfPim6IfGenerationID.setStatus('current') hpicfPim6IfJoinPruneHoldtime = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 4, 1, 11), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535)).clone(210)).setUnits('seconds').setMaxAccess("readcreate") if mibBuilder.loadTexts: hpicfPim6IfJoinPruneHoldtime.setStatus('current') hpicfPim6IfGraftRetryInterval = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 4, 1, 12), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(1, 10)).clone(3)).setUnits('seconds').setMaxAccess("readcreate") if mibBuilder.loadTexts: hpicfPim6IfGraftRetryInterval.setStatus('current') hpicfPim6IfMaxGraftRetries = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 4, 1, 13), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 10)).clone(2)).setMaxAccess("readcreate") if mibBuilder.loadTexts: hpicfPim6IfMaxGraftRetries.setStatus('current') hpicfPim6IfSRTTLThreshold = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 4, 1, 14), Unsigned32()).setMaxAccess("readcreate") if mibBuilder.loadTexts: hpicfPim6IfSRTTLThreshold.setStatus('current') hpicfPim6IfLanDelayEnabled = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 4, 1, 15), TruthValue()).setMaxAccess("readonly") if mibBuilder.loadTexts: hpicfPim6IfLanDelayEnabled.setStatus('current') hpicfPim6IfSRCapable = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 4, 1, 16), TruthValue()).setMaxAccess("readonly") if mibBuilder.loadTexts: hpicfPim6IfSRCapable.setStatus('current') hpicfPim6IfNBRTimeout = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 4, 1, 17), Integer32().subtype(subtypeSpec=ValueRangeConstraint(60, 8000)).clone(180)).setUnits('seconds').setMaxAccess("readcreate") if mibBuilder.loadTexts: hpicfPim6IfNBRTimeout.setStatus('current') hpicfPim6IfNBRCount = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 4, 1, 18), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: hpicfPim6IfNBRCount.setStatus('current') hpicfPim6IfNegotiatedPropagationDelay = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 4, 1, 19), TimeTicks()).setMaxAccess("readonly") if mibBuilder.loadTexts: hpicfPim6IfNegotiatedPropagationDelay.setStatus('current') hpicfPim6IfNegotiatedOverrideInterval = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 4, 1, 20), TimeTicks()).setMaxAccess("readonly") if mibBuilder.loadTexts: hpicfPim6IfNegotiatedOverrideInterval.setStatus('current') hpicfPim6IfAssertHoldInterval = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 4, 1, 21), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: hpicfPim6IfAssertHoldInterval.setStatus('current') hpicfPim6IfNumRoutersNotUsingLanDelay = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 4, 1, 22), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: hpicfPim6IfNumRoutersNotUsingLanDelay.setStatus('current') hpicfPim6IfHelloInterval = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 4, 1, 23), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(5, 300)).clone(30)).setUnits('seconds').setMaxAccess("readcreate") if mibBuilder.loadTexts: hpicfPim6IfHelloInterval.setStatus('current') hpicfPim6IfStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 4, 1, 24), RowStatus()).setMaxAccess("readcreate") if mibBuilder.loadTexts: hpicfPim6IfStatus.setStatus('current') hpicfPim6IfDRPriority = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 4, 1, 25), Unsigned32().clone(1)).setMaxAccess("readcreate") if mibBuilder.loadTexts: hpicfPim6IfDRPriority.setStatus('current') hpicfPim6IfDRType = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 4, 1, 26), InetAddressType()).setMaxAccess("readcreate") if mibBuilder.loadTexts: hpicfPim6IfDRType.setStatus('current') hpicfPim6IfDR = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 4, 1, 27), InetAddress().subtype(subtypeSpec=ConstraintsUnion(ValueSizeConstraint(0, 0), ValueSizeConstraint(4, 4), ValueSizeConstraint(8, 8), ValueSizeConstraint(16, 16), ValueSizeConstraint(20, 20), ))).setMaxAccess("readonly") if mibBuilder.loadTexts: hpicfPim6IfDR.setStatus('current') hpicfPim6RemoveConfig = MibScalar((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 5), TruthValue().clone('false')).setMaxAccess("readwrite") if mibBuilder.loadTexts: hpicfPim6RemoveConfig.setStatus('current') hpicfPim6NumStaticRpfEntries = MibScalar((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 6), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: hpicfPim6NumStaticRpfEntries.setStatus('current') hpicfPim6Version = MibScalar((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 7), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: hpicfPim6Version.setStatus('current') hpicfPim6StarGEntries = MibScalar((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 8), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: hpicfPim6StarGEntries.setStatus('current') hpicfPim6SGEntries = MibScalar((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 9), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: hpicfPim6SGEntries.setStatus('current') hpicfPim6TotalNeighborCount = MibScalar((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 10), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: hpicfPim6TotalNeighborCount.setStatus('current') hpicfPim6JoinPruneInterval = MibScalar((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 11), Integer32()).setUnits('seconds').setMaxAccess("readwrite") if mibBuilder.loadTexts: hpicfPim6JoinPruneInterval.setStatus('current') hpicfPim6StaticRPSetTable = MibTable((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 12), ) if mibBuilder.loadTexts: hpicfPim6StaticRPSetTable.setStatus('current') hpicfPim6StaticRPSetEntry = MibTableRow((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 12, 1), ).setIndexNames((0, "PIM-MIB", "pimRPSetComponent"), (0, "HP-ICF-PIM6", "hpicfPim6StaticRPSetGrpAddrType"), (0, "HP-ICF-PIM6", "hpicfPim6StaticRPSetGroupAddress"), (0, "HP-ICF-PIM6", "hpicfPim6StaticRPSetGrpMskType"), (0, "HP-ICF-PIM6", "hpicfPim6StaticRPSetGroupMask"), (0, "HP-ICF-PIM6", "hpicfPim6StaticRPSetAddressType"), (0, "HP-ICF-PIM6", "hpicfPim6StaticRPSetAddress")) if mibBuilder.loadTexts: hpicfPim6StaticRPSetEntry.setStatus('current') hpicfPim6StaticRPSetGrpAddrType = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 12, 1, 1), InetAddressType()) if mibBuilder.loadTexts: hpicfPim6StaticRPSetGrpAddrType.setStatus('current') hpicfPim6StaticRPSetGroupAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 12, 1, 2), InetAddress().subtype(subtypeSpec=ConstraintsUnion(ValueSizeConstraint(0, 0), ValueSizeConstraint(4, 4), ValueSizeConstraint(8, 8), ValueSizeConstraint(16, 16), ValueSizeConstraint(20, 20), ))) if mibBuilder.loadTexts: hpicfPim6StaticRPSetGroupAddress.setStatus('current') hpicfPim6StaticRPSetGrpMskType = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 12, 1, 3), InetAddressType()) if mibBuilder.loadTexts: hpicfPim6StaticRPSetGrpMskType.setStatus('current') hpicfPim6StaticRPSetGroupMask = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 12, 1, 4), InetAddress().subtype(subtypeSpec=ConstraintsUnion(ValueSizeConstraint(0, 0), ValueSizeConstraint(4, 4), ValueSizeConstraint(8, 8), ValueSizeConstraint(16, 16), ValueSizeConstraint(20, 20), ))) if mibBuilder.loadTexts: hpicfPim6StaticRPSetGroupMask.setStatus('current') hpicfPim6StaticRPSetAddressType = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 12, 1, 5), InetAddressType()) if mibBuilder.loadTexts: hpicfPim6StaticRPSetAddressType.setStatus('current') hpicfPim6StaticRPSetAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 12, 1, 6), InetAddress().subtype(subtypeSpec=ConstraintsUnion(ValueSizeConstraint(0, 0), ValueSizeConstraint(4, 4), ValueSizeConstraint(8, 8), ValueSizeConstraint(16, 16), ValueSizeConstraint(20, 20), ))) if mibBuilder.loadTexts: hpicfPim6StaticRPSetAddress.setStatus('current') hpicfPim6StaticRPSetOverride = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 12, 1, 7), TruthValue().clone('false')).setMaxAccess("readcreate") if mibBuilder.loadTexts: hpicfPim6StaticRPSetOverride.setStatus('current') hpicfPim6StaticRPSetRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 12, 1, 8), RowStatus()).setMaxAccess("readcreate") if mibBuilder.loadTexts: hpicfPim6StaticRPSetRowStatus.setStatus('current') hpicfPim6CandidateRPTable = MibTable((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 13), ) if mibBuilder.loadTexts: hpicfPim6CandidateRPTable.setStatus('current') hpicfPim6CandidateRPEntry = MibTableRow((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 13, 1), ).setIndexNames((0, "HP-ICF-PIM6", "hpicfPim6CandidateRPGrpAddrType"), (0, "HP-ICF-PIM6", "hpicfPim6CandidateRPGroupAddress"), (0, "HP-ICF-PIM6", "hpicfPim6CandidateRPGrpMskType"), (0, "HP-ICF-PIM6", "hpicfPim6CandidateRPGroupMask")) if mibBuilder.loadTexts: hpicfPim6CandidateRPEntry.setStatus('current') hpicfPim6CandidateRPGrpAddrType = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 13, 1, 1), InetAddressType()) if mibBuilder.loadTexts: hpicfPim6CandidateRPGrpAddrType.setStatus('current') hpicfPim6CandidateRPGroupAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 13, 1, 2), InetAddress().subtype(subtypeSpec=ConstraintsUnion(ValueSizeConstraint(0, 0), ValueSizeConstraint(4, 4), ValueSizeConstraint(8, 8), ValueSizeConstraint(16, 16), ValueSizeConstraint(20, 20), ))) if mibBuilder.loadTexts: hpicfPim6CandidateRPGroupAddress.setStatus('current') hpicfPim6CandidateRPGrpMskType = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 13, 1, 3), InetAddressType()) if mibBuilder.loadTexts: hpicfPim6CandidateRPGrpMskType.setStatus('current') hpicfPim6CandidateRPGroupMask = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 13, 1, 4), InetAddress().subtype(subtypeSpec=ConstraintsUnion(ValueSizeConstraint(0, 0), ValueSizeConstraint(4, 4), ValueSizeConstraint(8, 8), ValueSizeConstraint(16, 16), ValueSizeConstraint(20, 20), ))) if mibBuilder.loadTexts: hpicfPim6CandidateRPGroupMask.setStatus('current') hpicfPim6CandidateRPAddressType = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 13, 1, 5), InetAddressType()).setMaxAccess("readcreate") if mibBuilder.loadTexts: hpicfPim6CandidateRPAddressType.setStatus('current') hpicfPim6CandidateRPAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 13, 1, 6), InetAddress().subtype(subtypeSpec=ConstraintsUnion(ValueSizeConstraint(0, 0), ValueSizeConstraint(4, 4), ValueSizeConstraint(8, 8), ValueSizeConstraint(16, 16), ValueSizeConstraint(20, 20), ))).setMaxAccess("readcreate") if mibBuilder.loadTexts: hpicfPim6CandidateRPAddress.setStatus('current') hpicfPim6CandidateRPRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 13, 1, 7), RowStatus()).setMaxAccess("readcreate") if mibBuilder.loadTexts: hpicfPim6CandidateRPRowStatus.setStatus('current') hpicfPim6ComponentTable = MibTable((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 14), ) if mibBuilder.loadTexts: hpicfPim6ComponentTable.setStatus('current') hpicfPim6ComponentEntry = MibTableRow((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 14, 1), ).setIndexNames((0, "HP-ICF-PIM6", "hpicfPim6ComponentIndex")) if mibBuilder.loadTexts: hpicfPim6ComponentEntry.setStatus('current') hpicfPim6ComponentIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 14, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 255))) if mibBuilder.loadTexts: hpicfPim6ComponentIndex.setStatus('current') hpicfPim6ComponentBSRAddrType = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 14, 1, 2), InetAddressType()).setMaxAccess("readonly") if mibBuilder.loadTexts: hpicfPim6ComponentBSRAddrType.setStatus('current') hpicfPim6ComponentBSRAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 14, 1, 3), InetAddress()).setMaxAccess("readonly") if mibBuilder.loadTexts: hpicfPim6ComponentBSRAddress.setStatus('current') hpicfPim6ComponentBSRExpiryTime = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 14, 1, 4), TimeTicks()).setMaxAccess("readonly") if mibBuilder.loadTexts: hpicfPim6ComponentBSRExpiryTime.setStatus('current') hpicfPim6ComponentCRPHoldTime = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 14, 1, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 255))).setUnits('seconds').setMaxAccess("readcreate") if mibBuilder.loadTexts: hpicfPim6ComponentCRPHoldTime.setStatus('current') hpicfPim6ComponentStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 14, 1, 6), RowStatus()).setMaxAccess("readcreate") if mibBuilder.loadTexts: hpicfPim6ComponentStatus.setStatus('current') hpicfPim6ComponentCBSRAdmStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 14, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enable", 1), ("disable", 2))).clone('disable')).setMaxAccess("readcreate") if mibBuilder.loadTexts: hpicfPim6ComponentCBSRAdmStatus.setStatus('current') hpicfPim6ComponentCBSRAddrType = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 14, 1, 8), InetAddressType()).setMaxAccess("readcreate") if mibBuilder.loadTexts: hpicfPim6ComponentCBSRAddrType.setStatus('current') hpicfPim6ComponentCBSRAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 14, 1, 9), InetAddress()).setMaxAccess("readcreate") if mibBuilder.loadTexts: hpicfPim6ComponentCBSRAddress.setStatus('current') hpicfPim6ComponentCBSRPriority = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 14, 1, 10), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 255))).setMaxAccess("readcreate") if mibBuilder.loadTexts: hpicfPim6ComponentCBSRPriority.setStatus('current') hpicfPim6ComponentCBSRHashMskLen = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 14, 1, 11), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 128)).clone(126)).setMaxAccess("readcreate") if mibBuilder.loadTexts: hpicfPim6ComponentCBSRHashMskLen.setStatus('current') hpicfPim6ComponentCBSRMsgInt = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 14, 1, 12), Integer32().subtype(subtypeSpec=ValueRangeConstraint(5, 300)).clone(60)).setUnits('seconds').setMaxAccess("readcreate") if mibBuilder.loadTexts: hpicfPim6ComponentCBSRMsgInt.setStatus('current') hpicfPim6ComponentCRPPriority = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 14, 1, 13), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 255)).clone(192)).setMaxAccess("readcreate") if mibBuilder.loadTexts: hpicfPim6ComponentCRPPriority.setStatus('current') hpicfPim6ComponentCRPAdvInterval = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 14, 1, 14), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: hpicfPim6ComponentCRPAdvInterval.setStatus('current') hpicfPim6ComponentBSRPriority = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 14, 1, 15), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: hpicfPim6ComponentBSRPriority.setStatus('current') hpicfPim6ComponentBSRHashMskLen = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 14, 1, 16), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: hpicfPim6ComponentBSRHashMskLen.setStatus('current') hpicfPim6ComponentBSRUpTime = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 14, 1, 17), TimeTicks()).setMaxAccess("readonly") if mibBuilder.loadTexts: hpicfPim6ComponentBSRUpTime.setStatus('current') hpicfPim6ComponentBSRNextMessage = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 14, 1, 18), TimeTicks()).setMaxAccess("readonly") if mibBuilder.loadTexts: hpicfPim6ComponentBSRNextMessage.setStatus('current') hpicfPim6ComponentCRPAdvTimer = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 14, 1, 19), TimeTicks()).setMaxAccess("readonly") if mibBuilder.loadTexts: hpicfPim6ComponentCRPAdvTimer.setStatus('current') hpicfPim6SPTThreshold = MibScalar((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 15), Integer32().clone(-1)).setMaxAccess("readwrite") if mibBuilder.loadTexts: hpicfPim6SPTThreshold.setStatus('current') hpicfPim6NeighborTable = MibTable((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 16), ) if mibBuilder.loadTexts: hpicfPim6NeighborTable.setStatus('current') hpicfPim6NeighborEntry = MibTableRow((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 16, 1), ).setIndexNames((0, "HP-ICF-PIM6", "hpicfPim6NeighborIfIndex"), (0, "HP-ICF-PIM6", "hpicfPim6NeighborAddressType"), (0, "HP-ICF-PIM6", "hpicfPim6NeighborAddress")) if mibBuilder.loadTexts: hpicfPim6NeighborEntry.setStatus('current') hpicfPim6NeighborIfIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 16, 1, 1), InterfaceIndex()) if mibBuilder.loadTexts: hpicfPim6NeighborIfIndex.setStatus('current') hpicfPim6NeighborAddressType = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 16, 1, 2), InetAddressType()) if mibBuilder.loadTexts: hpicfPim6NeighborAddressType.setStatus('current') hpicfPim6NeighborAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 16, 1, 3), InetAddress().subtype(subtypeSpec=ConstraintsUnion(ValueSizeConstraint(4, 4), ValueSizeConstraint(8, 8), ValueSizeConstraint(16, 16), ValueSizeConstraint(20, 20), ))) if mibBuilder.loadTexts: hpicfPim6NeighborAddress.setStatus('current') hpicfPim6NeighborGenIDPresent = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 16, 1, 4), TruthValue()).setMaxAccess("readonly") if mibBuilder.loadTexts: hpicfPim6NeighborGenIDPresent.setStatus('current') hpicfPim6NeighborGenIDValue = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 16, 1, 5), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: hpicfPim6NeighborGenIDValue.setStatus('current') hpicfPim6NeighborUpTime = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 16, 1, 6), TimeTicks()).setMaxAccess("readonly") if mibBuilder.loadTexts: hpicfPim6NeighborUpTime.setStatus('current') hpicfPim6NeighborExpiryTime = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 16, 1, 7), TimeTicks()).setMaxAccess("readonly") if mibBuilder.loadTexts: hpicfPim6NeighborExpiryTime.setStatus('current') hpicfPim6NeighborDRPrioPresent = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 16, 1, 8), TruthValue()).setMaxAccess("readonly") if mibBuilder.loadTexts: hpicfPim6NeighborDRPrioPresent.setStatus('current') hpicfPim6NeighborDRPriority = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 16, 1, 9), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: hpicfPim6NeighborDRPriority.setStatus('current') hpicfPim6NeighborLanPruneDlyPres = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 16, 1, 10), TruthValue()).setMaxAccess("readonly") if mibBuilder.loadTexts: hpicfPim6NeighborLanPruneDlyPres.setStatus('current') hpicfPim6RPSetTable = MibTable((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 17), ) if mibBuilder.loadTexts: hpicfPim6RPSetTable.setStatus('current') hpicfPim6RPSetEntry = MibTableRow((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 17, 1), ).setIndexNames((0, "PIM-MIB", "pimRPSetComponent"), (0, "HP-ICF-PIM6", "hpicfPim6RPSetGroupAddressType"), (0, "HP-ICF-PIM6", "hpicfPim6RPSetGroupAddress"), (0, "HP-ICF-PIM6", "hpicfPim6RPSetGroupMaskType"), (0, "HP-ICF-PIM6", "hpicfPim6RPSetGroupMask"), (0, "HP-ICF-PIM6", "hpicfPim6RPSetAddressType"), (0, "HP-ICF-PIM6", "hpicfPim6RPSetAddress")) if mibBuilder.loadTexts: hpicfPim6RPSetEntry.setStatus('current') hpicfPim6RPSetGroupAddressType = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 17, 1, 1), InetAddressType()) if mibBuilder.loadTexts: hpicfPim6RPSetGroupAddressType.setStatus('current') hpicfPim6RPSetGroupAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 17, 1, 2), InetAddress().subtype(subtypeSpec=ConstraintsUnion(ValueSizeConstraint(0, 0), ValueSizeConstraint(4, 4), ValueSizeConstraint(8, 8), ValueSizeConstraint(16, 16), ValueSizeConstraint(20, 20), ))) if mibBuilder.loadTexts: hpicfPim6RPSetGroupAddress.setStatus('current') hpicfPim6RPSetGroupMaskType = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 17, 1, 3), InetAddressType()) if mibBuilder.loadTexts: hpicfPim6RPSetGroupMaskType.setStatus('current') hpicfPim6RPSetGroupMask = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 17, 1, 4), InetAddress().subtype(subtypeSpec=ConstraintsUnion(ValueSizeConstraint(0, 0), ValueSizeConstraint(4, 4), ValueSizeConstraint(8, 8), ValueSizeConstraint(16, 16), ValueSizeConstraint(20, 20), ))) if mibBuilder.loadTexts: hpicfPim6RPSetGroupMask.setStatus('current') hpicfPim6RPSetAddressType = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 17, 1, 5), InetAddressType()) if mibBuilder.loadTexts: hpicfPim6RPSetAddressType.setStatus('current') hpicfPim6RPSetAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 17, 1, 6), InetAddress().subtype(subtypeSpec=ConstraintsUnion(ValueSizeConstraint(0, 0), ValueSizeConstraint(4, 4), ValueSizeConstraint(8, 8), ValueSizeConstraint(16, 16), ValueSizeConstraint(20, 20), ))) if mibBuilder.loadTexts: hpicfPim6RPSetAddress.setStatus('current') hpicfPim6RPSetHoldTime = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 17, 1, 7), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 255))).setUnits('seconds').setMaxAccess("readonly") if mibBuilder.loadTexts: hpicfPim6RPSetHoldTime.setStatus('current') hpicfPim6RPSetExpiryTime = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 17, 1, 8), TimeTicks()).setMaxAccess("readonly") if mibBuilder.loadTexts: hpicfPim6RPSetExpiryTime.setStatus('current') hpicfPim6IpMcastEnabled = MibScalar((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 18), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: hpicfPim6IpMcastEnabled.setStatus('current') hpicfPim6IpMcastRouteEntryCount = MibScalar((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 19), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: hpicfPim6IpMcastRouteEntryCount.setStatus('current') hpicfPim6IpMRouteTable = MibTable((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 20), ) if mibBuilder.loadTexts: hpicfPim6IpMRouteTable.setStatus('current') hpicfPim6IpMRouteEntry = MibTableRow((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 20, 1), ).setIndexNames((0, "HP-ICF-PIM6", "hpicfPim6IpMRouteGrpAddrType"), (0, "HP-ICF-PIM6", "hpicfPim6IpMRouteGroup"), (0, "HP-ICF-PIM6", "hpicfPim6IpMRouteGrpPrefixLen"), (0, "HP-ICF-PIM6", "hpicfPim6IpMRouteSrcAddrType"), (0, "HP-ICF-PIM6", "hpicfPim6IpMRouteSource"), (0, "HP-ICF-PIM6", "hpicfPim6IpMRouteSrcPrefixLen")) if mibBuilder.loadTexts: hpicfPim6IpMRouteEntry.setStatus('current') hpicfPim6IpMRouteGrpAddrType = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 20, 1, 1), InetAddressType()) if mibBuilder.loadTexts: hpicfPim6IpMRouteGrpAddrType.setStatus('current') hpicfPim6IpMRouteGroup = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 20, 1, 2), InetAddress().subtype(subtypeSpec=ConstraintsUnion(ValueSizeConstraint(0, 0), ValueSizeConstraint(4, 4), ValueSizeConstraint(8, 8), ValueSizeConstraint(16, 16), ValueSizeConstraint(20, 20), ))) if mibBuilder.loadTexts: hpicfPim6IpMRouteGroup.setStatus('current') hpicfPim6IpMRouteGrpPrefixLen = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 20, 1, 3), InetAddressPrefixLength()) if mibBuilder.loadTexts: hpicfPim6IpMRouteGrpPrefixLen.setStatus('current') hpicfPim6IpMRouteSrcAddrType = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 20, 1, 4), InetAddressType()) if mibBuilder.loadTexts: hpicfPim6IpMRouteSrcAddrType.setStatus('current') hpicfPim6IpMRouteSource = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 20, 1, 5), InetAddress().subtype(subtypeSpec=ConstraintsUnion(ValueSizeConstraint(0, 0), ValueSizeConstraint(4, 4), ValueSizeConstraint(8, 8), ValueSizeConstraint(16, 16), ValueSizeConstraint(20, 20), ))) if mibBuilder.loadTexts: hpicfPim6IpMRouteSource.setStatus('current') hpicfPim6IpMRouteSrcPrefixLen = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 20, 1, 6), InetAddressPrefixLength()) if mibBuilder.loadTexts: hpicfPim6IpMRouteSrcPrefixLen.setStatus('current') hpicfPim6IpMRouteUpstrNbrType = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 20, 1, 7), InetAddressType()).setMaxAccess("readonly") if mibBuilder.loadTexts: hpicfPim6IpMRouteUpstrNbrType.setStatus('current') hpicfPim6IpMRouteUpstrNbr = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 20, 1, 8), InetAddress().subtype(subtypeSpec=ConstraintsUnion(ValueSizeConstraint(0, 0), ValueSizeConstraint(4, 4), ValueSizeConstraint(8, 8), ValueSizeConstraint(16, 16), ValueSizeConstraint(20, 20), ))).setMaxAccess("readonly") if mibBuilder.loadTexts: hpicfPim6IpMRouteUpstrNbr.setStatus('current') hpicfPim6IpMRouteInIfIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 20, 1, 9), InterfaceIndexOrZero()).setMaxAccess("readonly") if mibBuilder.loadTexts: hpicfPim6IpMRouteInIfIndex.setStatus('current') hpicfPim6IpMRouteTimeStamp = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 20, 1, 10), TimeStamp()).setMaxAccess("readonly") if mibBuilder.loadTexts: hpicfPim6IpMRouteTimeStamp.setStatus('current') hpicfPim6IpMRouteExpiryTime = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 20, 1, 11), TimeTicks()).setMaxAccess("readonly") if mibBuilder.loadTexts: hpicfPim6IpMRouteExpiryTime.setStatus('current') hpicfPim6IpMRouteProtocol = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 20, 1, 12), IANAipMRouteProtocol()).setMaxAccess("readonly") if mibBuilder.loadTexts: hpicfPim6IpMRouteProtocol.setStatus('current') hpicfPim6IpMRouteRtProtocol = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 20, 1, 13), IANAipRouteProtocol()).setMaxAccess("readonly") if mibBuilder.loadTexts: hpicfPim6IpMRouteRtProtocol.setStatus('current') hpicfPim6IpMRouteRtAddrType = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 20, 1, 14), InetAddressType()).setMaxAccess("readonly") if mibBuilder.loadTexts: hpicfPim6IpMRouteRtAddrType.setStatus('current') hpicfPim6IpMRouteRtAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 20, 1, 15), InetAddress().subtype(subtypeSpec=ConstraintsUnion(ValueSizeConstraint(0, 0), ValueSizeConstraint(4, 4), ValueSizeConstraint(8, 8), ValueSizeConstraint(16, 16), ValueSizeConstraint(20, 20), ))).setMaxAccess("readonly") if mibBuilder.loadTexts: hpicfPim6IpMRouteRtAddress.setStatus('current') hpicfPim6IpMRouteRtPrefixLen = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 20, 1, 16), InetAddressPrefixLength()).setMaxAccess("readonly") if mibBuilder.loadTexts: hpicfPim6IpMRouteRtPrefixLen.setStatus('current') hpicfPim6IpMRouteRtType = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 20, 1, 17), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("unicast", 1), ("multicast", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: hpicfPim6IpMRouteRtType.setStatus('current') hpicfPim6IpMRouteOctets = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 20, 1, 18), Counter64()).setMaxAccess("readonly") if mibBuilder.loadTexts: hpicfPim6IpMRouteOctets.setStatus('current') hpicfPim6IpMRoutePkts = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 20, 1, 19), Counter64()).setMaxAccess("readonly") if mibBuilder.loadTexts: hpicfPim6IpMRoutePkts.setStatus('current') hpicfPim6IpMRouteTtlDropOct = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 20, 1, 20), Counter64()).setMaxAccess("readonly") if mibBuilder.loadTexts: hpicfPim6IpMRouteTtlDropOct.setStatus('current') hpicfPim6IpMRouteTtlDropPkts = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 20, 1, 21), Counter64()).setMaxAccess("readonly") if mibBuilder.loadTexts: hpicfPim6IpMRouteTtlDropPkts.setStatus('current') hpicfPim6IpMRouteDiffInIfOct = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 20, 1, 22), Counter64()).setMaxAccess("readonly") if mibBuilder.loadTexts: hpicfPim6IpMRouteDiffInIfOct.setStatus('current') hpicfPim6IpMRouteDiffInIfPkts = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 20, 1, 23), Counter64()).setMaxAccess("readonly") if mibBuilder.loadTexts: hpicfPim6IpMRouteDiffInIfPkts.setStatus('current') hpicfPim6IpMRouteBps = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 20, 1, 24), Counter64()).setUnits('bits per second').setMaxAccess("readonly") if mibBuilder.loadTexts: hpicfPim6IpMRouteBps.setStatus('current') hpicfPim6IpMRouteNHopTable = MibTable((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 21), ) if mibBuilder.loadTexts: hpicfPim6IpMRouteNHopTable.setStatus('current') hpicfPim6IpMRouteNHopEntry = MibTableRow((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 21, 1), ).setIndexNames((0, "HP-ICF-PIM6", "hpicfPim6IpMRouteNHopGrpAddrType"), (0, "HP-ICF-PIM6", "hpicfPim6IpMRouteNHopGroup"), (0, "HP-ICF-PIM6", "hpicfPim6IpMRouteNHopGrpPLen"), (0, "HP-ICF-PIM6", "hpicfPim6IpMRouteNHopSrcAddrType"), (0, "HP-ICF-PIM6", "hpicfPim6IpMRouteNHopSource"), (0, "HP-ICF-PIM6", "hpicfPim6IpMRouteNHopSrcPLen"), (0, "HP-ICF-PIM6", "hpicfPim6IpMRouteNHopIfIndex"), (0, "HP-ICF-PIM6", "hpicfPim6IpMRouteNHopAddrType"), (0, "HP-ICF-PIM6", "hpicfPim6IpMRouteNHopAddress")) if mibBuilder.loadTexts: hpicfPim6IpMRouteNHopEntry.setStatus('current') hpicfPim6IpMRouteNHopGrpAddrType = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 21, 1, 1), InetAddressType()) if mibBuilder.loadTexts: hpicfPim6IpMRouteNHopGrpAddrType.setStatus('current') hpicfPim6IpMRouteNHopGroup = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 21, 1, 2), InetAddress().subtype(subtypeSpec=ConstraintsUnion(ValueSizeConstraint(0, 0), ValueSizeConstraint(4, 4), ValueSizeConstraint(8, 8), ValueSizeConstraint(16, 16), ValueSizeConstraint(20, 20), ))) if mibBuilder.loadTexts: hpicfPim6IpMRouteNHopGroup.setStatus('current') hpicfPim6IpMRouteNHopGrpPLen = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 21, 1, 3), InetAddressPrefixLength()) if mibBuilder.loadTexts: hpicfPim6IpMRouteNHopGrpPLen.setStatus('current') hpicfPim6IpMRouteNHopSrcAddrType = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 21, 1, 4), InetAddressType()) if mibBuilder.loadTexts: hpicfPim6IpMRouteNHopSrcAddrType.setStatus('current') hpicfPim6IpMRouteNHopSource = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 21, 1, 5), InetAddress().subtype(subtypeSpec=ConstraintsUnion(ValueSizeConstraint(0, 0), ValueSizeConstraint(4, 4), ValueSizeConstraint(8, 8), ValueSizeConstraint(16, 16), ValueSizeConstraint(20, 20), ))) if mibBuilder.loadTexts: hpicfPim6IpMRouteNHopSource.setStatus('current') hpicfPim6IpMRouteNHopSrcPLen = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 21, 1, 6), InetAddressPrefixLength()) if mibBuilder.loadTexts: hpicfPim6IpMRouteNHopSrcPLen.setStatus('current') hpicfPim6IpMRouteNHopIfIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 21, 1, 7), InterfaceIndex()) if mibBuilder.loadTexts: hpicfPim6IpMRouteNHopIfIndex.setStatus('current') hpicfPim6IpMRouteNHopAddrType = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 21, 1, 8), InetAddressType()) if mibBuilder.loadTexts: hpicfPim6IpMRouteNHopAddrType.setStatus('current') hpicfPim6IpMRouteNHopAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 21, 1, 9), InetAddress().subtype(subtypeSpec=ConstraintsUnion(ValueSizeConstraint(0, 0), ValueSizeConstraint(4, 4), ValueSizeConstraint(8, 8), ValueSizeConstraint(16, 16), ValueSizeConstraint(20, 20), ))) if mibBuilder.loadTexts: hpicfPim6IpMRouteNHopAddress.setStatus('current') hpicfPim6IpMRouteNHopState = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 21, 1, 10), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("pruned", 1), ("forwarding", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: hpicfPim6IpMRouteNHopState.setStatus('current') hpicfPim6IpMRouteNHopTStamp = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 21, 1, 11), TimeStamp()).setMaxAccess("readonly") if mibBuilder.loadTexts: hpicfPim6IpMRouteNHopTStamp.setStatus('current') hpicfPim6IpMRouteNHopExpTime = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 21, 1, 12), TimeTicks()).setMaxAccess("readonly") if mibBuilder.loadTexts: hpicfPim6IpMRouteNHopExpTime.setStatus('current') hpicfPim6IpMRouteNHopClsMHops = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 21, 1, 13), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 256))).setMaxAccess("readonly") if mibBuilder.loadTexts: hpicfPim6IpMRouteNHopClsMHops.setStatus('current') hpicfPim6IpMRouteNHopProtocol = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 21, 1, 14), IANAipMRouteProtocol()).setMaxAccess("readonly") if mibBuilder.loadTexts: hpicfPim6IpMRouteNHopProtocol.setStatus('current') hpicfPim6IpMRouteNHopOctets = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 21, 1, 15), Counter64()).setMaxAccess("readonly") if mibBuilder.loadTexts: hpicfPim6IpMRouteNHopOctets.setStatus('current') hpicfPim6IpMRouteNHopPkts = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 21, 1, 16), Counter64()).setMaxAccess("readonly") if mibBuilder.loadTexts: hpicfPim6IpMRouteNHopPkts.setStatus('current') hpicfPim6NeighborLoss = NotificationType((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 0, 1)) if mibBuilder.loadTexts: hpicfPim6NeighborLoss.setStatus('current') hpicfPim6HardMRTFull = NotificationType((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 0, 2)) if mibBuilder.loadTexts: hpicfPim6HardMRTFull.setStatus('current') hpicfPim6SoftMRTFull = NotificationType((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 0, 3)) if mibBuilder.loadTexts: hpicfPim6SoftMRTFull.setStatus('current') hpicfPim6DenseMIBCompliance = ModuleCompliance((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 2, 2, 1)).setObjects(("HP-ICF-PIM6", "hpicfPim6BaseGroup"), ("HP-ICF-PIM6", "hpicfPim6DenseIfGroup")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): hpicfPim6DenseMIBCompliance = hpicfPim6DenseMIBCompliance.setStatus('deprecated') hpicfPim6UcastRoutingCompliance = ModuleCompliance((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 2, 2, 2)).setObjects(("HP-ICF-PIM6", "hpicfPim6StaticRpfExtensionsGroup")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): hpicfPim6UcastRoutingCompliance = hpicfPim6UcastRoutingCompliance.setStatus('current') hpicfPim6GlobalCountersCompliance = ModuleCompliance((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 2, 2, 3)).setObjects(("HP-ICF-PIM6", "hpicfPim6GlobalCounterGroup")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): hpicfPim6GlobalCountersCompliance = hpicfPim6GlobalCountersCompliance.setStatus('current') hpicfPim6InterfaceInfoCompliance = ModuleCompliance((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 2, 2, 4)).setObjects(("HP-ICF-PIM6", "hpicfPim6InterfaceExtensionsGroup")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): hpicfPim6InterfaceInfoCompliance = hpicfPim6InterfaceInfoCompliance.setStatus('current') hpicfPim6NotificationCompliance = ModuleCompliance((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 2, 2, 5)).setObjects(("HP-ICF-PIM6", "hpicfPim6NotificationGroup")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): hpicfPim6NotificationCompliance = hpicfPim6NotificationCompliance.setStatus('current') hpicfPim6SparseModeMIBCompliance = ModuleCompliance((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 2, 2, 6)).setObjects(("HP-ICF-PIM6", "hpicfPim6CommonGroup"), ("HP-ICF-PIM6", "hpicfPim6StaticRPSetGroup"), ("HP-ICF-PIM6", "hpicfPim6SparseIfGroup"), ("HP-ICF-PIM6", "hpicfPim6CandidateRPGroup"), ("HP-ICF-PIM6", "hpicfPim6ComponentGroup"), ("HP-ICF-PIM6", "hpicfPim6NeighborGroup"), ("HP-ICF-PIM6", "hpicfPim6RPSetGroup"), ("HP-ICF-PIM6", "hpicfPim6MRouteGroup"), ("HP-ICF-PIM6", "hpicfPim6MRouteNHopGroup")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): hpicfPim6SparseModeMIBCompliance = hpicfPim6SparseModeMIBCompliance.setStatus('current') hpicfPim6DenseModeMIBCompliance = ModuleCompliance((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 2, 2, 7)).setObjects(("HP-ICF-PIM6", "hpicfPim6CommonGroup"), ("HP-ICF-PIM6", "hpicfPim6DenseIfGroup"), ("HP-ICF-PIM6", "hpicfPim6MRouteGroup"), ("HP-ICF-PIM6", "hpicfPim6MRouteNHopGroup")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): hpicfPim6DenseModeMIBCompliance = hpicfPim6DenseModeMIBCompliance.setStatus('current') hpicfPim6BaseGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 2, 1, 1)).setObjects(("HP-ICF-PIM6", "hpicfPim6AdminStatus"), ("HP-ICF-PIM6", "hpicfPim6StateRefreshInterval"), ("HP-ICF-PIM6", "hpicfPim6TrapControl"), ("HP-ICF-PIM6", "hpicfPim6JoinPruneInterval"), ("HP-ICF-PIM6", "hpicfPim6RemoveConfig")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): hpicfPim6BaseGroup = hpicfPim6BaseGroup.setStatus('deprecated') hpicfPim6DenseIfGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 2, 1, 2)).setObjects(("HP-ICF-PIM6", "hpicfPim6IfAddressType"), ("HP-ICF-PIM6", "hpicfPim6IfAddress"), ("HP-ICF-PIM6", "hpicfPim6IfMode"), ("HP-ICF-PIM6", "hpicfPim6IfStatus"), ("HP-ICF-PIM6", "hpicfPim6IfTrigHelloInterval"), ("HP-ICF-PIM6", "hpicfPim6IfHelloInterval"), ("HP-ICF-PIM6", "hpicfPim6IfHelloHoldtime"), ("HP-ICF-PIM6", "hpicfPim6IfLanPruneDelay"), ("HP-ICF-PIM6", "hpicfPim6IfPropagationDelay"), ("HP-ICF-PIM6", "hpicfPim6IfOverrideInterval"), ("HP-ICF-PIM6", "hpicfPim6IfGenerationID"), ("HP-ICF-PIM6", "hpicfPim6IfJoinPruneHoldtime"), ("HP-ICF-PIM6", "hpicfPim6IfGraftRetryInterval"), ("HP-ICF-PIM6", "hpicfPim6IfMaxGraftRetries"), ("HP-ICF-PIM6", "hpicfPim6IfSRTTLThreshold"), ("HP-ICF-PIM6", "hpicfPim6IfLanDelayEnabled"), ("HP-ICF-PIM6", "hpicfPim6IfSRCapable"), ("HP-ICF-PIM6", "hpicfPim6IfNBRTimeout")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): hpicfPim6DenseIfGroup = hpicfPim6DenseIfGroup.setStatus('current') hpicfPim6InterfaceExtensionsGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 2, 1, 3)).setObjects(("HP-ICF-PIM6", "hpicfPim6Version"), ("HP-ICF-PIM6", "hpicfPim6IfNBRCount"), ("HP-ICF-PIM6", "hpicfPim6IfNegotiatedPropagationDelay"), ("HP-ICF-PIM6", "hpicfPim6IfNegotiatedOverrideInterval"), ("HP-ICF-PIM6", "hpicfPim6IfAssertHoldInterval"), ("HP-ICF-PIM6", "hpicfPim6IfNumRoutersNotUsingLanDelay")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): hpicfPim6InterfaceExtensionsGroup = hpicfPim6InterfaceExtensionsGroup.setStatus('current') hpicfPim6StaticRpfExtensionsGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 2, 1, 4)).setObjects(("HP-ICF-PIM6", "hpicfPim6NumStaticRpfEntries")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): hpicfPim6StaticRpfExtensionsGroup = hpicfPim6StaticRpfExtensionsGroup.setStatus('current') hpicfPim6GlobalCounterGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 2, 1, 5)).setObjects(("HP-ICF-PIM6", "hpicfPim6StarGEntries"), ("HP-ICF-PIM6", "hpicfPim6SGEntries"), ("HP-ICF-PIM6", "hpicfPim6TotalNeighborCount")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): hpicfPim6GlobalCounterGroup = hpicfPim6GlobalCounterGroup.setStatus('current') hpicfPim6NotificationGroup = NotificationGroup((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 2, 1, 6)).setObjects(("HP-ICF-PIM6", "hpicfPim6NeighborLoss"), ("HP-ICF-PIM6", "hpicfPim6HardMRTFull"), ("HP-ICF-PIM6", "hpicfPim6SoftMRTFull")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): hpicfPim6NotificationGroup = hpicfPim6NotificationGroup.setStatus('current') hpicfPim6StaticRPSetGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 2, 1, 7)).setObjects(("HP-ICF-PIM6", "hpicfPim6StaticRPSetOverride"), ("HP-ICF-PIM6", "hpicfPim6StaticRPSetRowStatus")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): hpicfPim6StaticRPSetGroup = hpicfPim6StaticRPSetGroup.setStatus('current') hpicfPim6CandidateRPGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 2, 1, 8)).setObjects(("HP-ICF-PIM6", "hpicfPim6CandidateRPAddressType"), ("HP-ICF-PIM6", "hpicfPim6CandidateRPAddress"), ("HP-ICF-PIM6", "hpicfPim6CandidateRPRowStatus")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): hpicfPim6CandidateRPGroup = hpicfPim6CandidateRPGroup.setStatus('current') hpicfPim6ComponentGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 2, 1, 9)).setObjects(("HP-ICF-PIM6", "hpicfPim6ComponentBSRAddrType"), ("HP-ICF-PIM6", "hpicfPim6ComponentBSRAddress"), ("HP-ICF-PIM6", "hpicfPim6ComponentBSRExpiryTime"), ("HP-ICF-PIM6", "hpicfPim6ComponentCRPHoldTime"), ("HP-ICF-PIM6", "hpicfPim6ComponentStatus"), ("HP-ICF-PIM6", "hpicfPim6ComponentCBSRAdmStatus"), ("HP-ICF-PIM6", "hpicfPim6ComponentCBSRAddrType"), ("HP-ICF-PIM6", "hpicfPim6ComponentCBSRAddress"), ("HP-ICF-PIM6", "hpicfPim6ComponentCBSRPriority"), ("HP-ICF-PIM6", "hpicfPim6ComponentCBSRHashMskLen"), ("HP-ICF-PIM6", "hpicfPim6ComponentCBSRMsgInt"), ("HP-ICF-PIM6", "hpicfPim6ComponentCRPPriority"), ("HP-ICF-PIM6", "hpicfPim6ComponentCRPAdvInterval"), ("HP-ICF-PIM6", "hpicfPim6ComponentBSRPriority"), ("HP-ICF-PIM6", "hpicfPim6ComponentBSRHashMskLen"), ("HP-ICF-PIM6", "hpicfPim6ComponentBSRUpTime"), ("HP-ICF-PIM6", "hpicfPim6ComponentBSRNextMessage"), ("HP-ICF-PIM6", "hpicfPim6ComponentCRPAdvTimer")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): hpicfPim6ComponentGroup = hpicfPim6ComponentGroup.setStatus('current') hpicfPim6CommonGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 2, 1, 10)).setObjects(("HP-ICF-PIM6", "hpicfPim6AdminStatus"), ("HP-ICF-PIM6", "hpicfPim6StateRefreshInterval"), ("HP-ICF-PIM6", "hpicfPim6TrapControl"), ("HP-ICF-PIM6", "hpicfPim6JoinPruneInterval"), ("HP-ICF-PIM6", "hpicfPim6RemoveConfig"), ("HP-ICF-PIM6", "hpicfPim6SPTThreshold"), ("HP-ICF-PIM6", "hpicfPim6IpMcastEnabled"), ("HP-ICF-PIM6", "hpicfPim6IpMcastRouteEntryCount")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): hpicfPim6CommonGroup = hpicfPim6CommonGroup.setStatus('current') hpicfPim6SparseIfGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 2, 1, 11)).setObjects(("HP-ICF-PIM6", "hpicfPim6IfAddressType"), ("HP-ICF-PIM6", "hpicfPim6IfAddress"), ("HP-ICF-PIM6", "hpicfPim6IfTrigHelloInterval"), ("HP-ICF-PIM6", "hpicfPim6IfHelloHoldtime"), ("HP-ICF-PIM6", "hpicfPim6IfLanPruneDelay"), ("HP-ICF-PIM6", "hpicfPim6IfPropagationDelay"), ("HP-ICF-PIM6", "hpicfPim6IfOverrideInterval"), ("HP-ICF-PIM6", "hpicfPim6IfGenerationID"), ("HP-ICF-PIM6", "hpicfPim6IfJoinPruneHoldtime"), ("HP-ICF-PIM6", "hpicfPim6IfLanDelayEnabled"), ("HP-ICF-PIM6", "hpicfPim6IfDRPriority"), ("HP-ICF-PIM6", "hpicfPim6IfNBRTimeout"), ("HP-ICF-PIM6", "hpicfPim6IfDRType"), ("HP-ICF-PIM6", "hpicfPim6IfDR")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): hpicfPim6SparseIfGroup = hpicfPim6SparseIfGroup.setStatus('current') hpicfPim6NeighborGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 2, 1, 12)).setObjects(("HP-ICF-PIM6", "hpicfPim6NeighborGenIDPresent"), ("HP-ICF-PIM6", "hpicfPim6NeighborGenIDValue"), ("HP-ICF-PIM6", "hpicfPim6NeighborUpTime"), ("HP-ICF-PIM6", "hpicfPim6NeighborExpiryTime"), ("HP-ICF-PIM6", "hpicfPim6NeighborDRPrioPresent"), ("HP-ICF-PIM6", "hpicfPim6NeighborDRPriority"), ("HP-ICF-PIM6", "hpicfPim6NeighborLanPruneDlyPres")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): hpicfPim6NeighborGroup = hpicfPim6NeighborGroup.setStatus('current') hpicfPim6RPSetGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 2, 1, 13)).setObjects(("HP-ICF-PIM6", "hpicfPim6RPSetHoldTime"), ("HP-ICF-PIM6", "hpicfPim6RPSetExpiryTime")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): hpicfPim6RPSetGroup = hpicfPim6RPSetGroup.setStatus('current') hpicfPim6MRouteGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 2, 1, 14)).setObjects(("HP-ICF-PIM6", "hpicfPim6IpMRouteUpstrNbrType"), ("HP-ICF-PIM6", "hpicfPim6IpMRouteUpstrNbr"), ("HP-ICF-PIM6", "hpicfPim6IpMRouteInIfIndex"), ("HP-ICF-PIM6", "hpicfPim6IpMRouteTimeStamp"), ("HP-ICF-PIM6", "hpicfPim6IpMRouteExpiryTime"), ("HP-ICF-PIM6", "hpicfPim6IpMRouteProtocol"), ("HP-ICF-PIM6", "hpicfPim6IpMRouteRtProtocol"), ("HP-ICF-PIM6", "hpicfPim6IpMRouteRtAddrType"), ("HP-ICF-PIM6", "hpicfPim6IpMRouteRtAddress"), ("HP-ICF-PIM6", "hpicfPim6IpMRouteRtPrefixLen"), ("HP-ICF-PIM6", "hpicfPim6IpMRouteRtType"), ("HP-ICF-PIM6", "hpicfPim6IpMRouteOctets"), ("HP-ICF-PIM6", "hpicfPim6IpMRoutePkts"), ("HP-ICF-PIM6", "hpicfPim6IpMRouteTtlDropOct"), ("HP-ICF-PIM6", "hpicfPim6IpMRouteTtlDropPkts"), ("HP-ICF-PIM6", "hpicfPim6IpMRouteDiffInIfOct"), ("HP-ICF-PIM6", "hpicfPim6IpMRouteDiffInIfPkts"), ("HP-ICF-PIM6", "hpicfPim6IpMRouteBps")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): hpicfPim6MRouteGroup = hpicfPim6MRouteGroup.setStatus('current') hpicfPim6MRouteNHopGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 2, 1, 15)).setObjects(("HP-ICF-PIM6", "hpicfPim6IpMRouteNHopState"), ("HP-ICF-PIM6", "hpicfPim6IpMRouteNHopTStamp"), ("HP-ICF-PIM6", "hpicfPim6IpMRouteNHopExpTime"), ("HP-ICF-PIM6", "hpicfPim6IpMRouteNHopClsMHops"), ("HP-ICF-PIM6", "hpicfPim6IpMRouteNHopProtocol"), ("HP-ICF-PIM6", "hpicfPim6IpMRouteNHopOctets"), ("HP-ICF-PIM6", "hpicfPim6IpMRouteNHopPkts")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): hpicfPim6MRouteNHopGroup = hpicfPim6MRouteNHopGroup.setStatus('current') mibBuilder.exportSymbols("HP-ICF-PIM6", hpicfPim6BaseGroup=hpicfPim6BaseGroup, hpicfPim6ComponentIndex=hpicfPim6ComponentIndex, hpicfPim6IpMRouteNHopEntry=hpicfPim6IpMRouteNHopEntry, hpicfPim6Conformance=hpicfPim6Conformance, hpicfPim6ComponentBSRUpTime=hpicfPim6ComponentBSRUpTime, hpicfPim6CandidateRPGrpAddrType=hpicfPim6CandidateRPGrpAddrType, hpicfPim6NeighborAddressType=hpicfPim6NeighborAddressType, hpicfPim6TotalNeighborCount=hpicfPim6TotalNeighborCount, hpicfPim6IfNegotiatedPropagationDelay=hpicfPim6IfNegotiatedPropagationDelay, hpicfPim6NeighborEntry=hpicfPim6NeighborEntry, hpicfPim6IfLanDelayEnabled=hpicfPim6IfLanDelayEnabled, hpicfPim6ComponentStatus=hpicfPim6ComponentStatus, hpicfPim6ComponentBSRAddrType=hpicfPim6ComponentBSRAddrType, hpicfPim6NeighborUpTime=hpicfPim6NeighborUpTime, hpicfPim6MRouteNHopGroup=hpicfPim6MRouteNHopGroup, hpicfPim6IfDR=hpicfPim6IfDR, hpicfPim6NeighborLoss=hpicfPim6NeighborLoss, hpicfPim6RPSetGroupAddress=hpicfPim6RPSetGroupAddress, hpicfPim6RPSetAddressType=hpicfPim6RPSetAddressType, hpicfPim6SPTThreshold=hpicfPim6SPTThreshold, hpicfPim6CandidateRPGroup=hpicfPim6CandidateRPGroup, hpicfPim6InterfaceInfoCompliance=hpicfPim6InterfaceInfoCompliance, hpicfPim6StateRefreshInterval=hpicfPim6StateRefreshInterval, hpicfPim6SparseIfGroup=hpicfPim6SparseIfGroup, hpicfPim6IpMRouteBps=hpicfPim6IpMRouteBps, hpicfPim6AdminStatus=hpicfPim6AdminStatus, hpicfPim6ComponentCBSRPriority=hpicfPim6ComponentCBSRPriority, hpicfPim6IpMRouteExpiryTime=hpicfPim6IpMRouteExpiryTime, hpicfPim6Traps=hpicfPim6Traps, hpicfPim6DenseModeMIBCompliance=hpicfPim6DenseModeMIBCompliance, hpicfPim6CandidateRPTable=hpicfPim6CandidateRPTable, hpicfPim6IpMRouteTtlDropOct=hpicfPim6IpMRouteTtlDropOct, hpicfPim6ComponentBSRExpiryTime=hpicfPim6ComponentBSRExpiryTime, hpicfPim6IpMRouteNHopGrpPLen=hpicfPim6IpMRouteNHopGrpPLen, hpicfPim6RPSetGroupMaskType=hpicfPim6RPSetGroupMaskType, hpicfPim6ComponentCRPAdvInterval=hpicfPim6ComponentCRPAdvInterval, hpicfPim6NeighborIfIndex=hpicfPim6NeighborIfIndex, hpicfPim6ComponentTable=hpicfPim6ComponentTable, hpicfPim6CandidateRPGroupMask=hpicfPim6CandidateRPGroupMask, hpicfPim6IpMRouteNHopOctets=hpicfPim6IpMRouteNHopOctets, hpicfPim6IpMRouteUpstrNbrType=hpicfPim6IpMRouteUpstrNbrType, hpicfPim6IpMRouteDiffInIfPkts=hpicfPim6IpMRouteDiffInIfPkts, hpicfPim6ComponentBSRNextMessage=hpicfPim6ComponentBSRNextMessage, hpicfPim6IfGraftRetryInterval=hpicfPim6IfGraftRetryInterval, hpicfPim6CandidateRPEntry=hpicfPim6CandidateRPEntry, hpicfPim6IpMRouteNHopGroup=hpicfPim6IpMRouteNHopGroup, hpicfPim6SparseModeMIBCompliance=hpicfPim6SparseModeMIBCompliance, hpicfPim6IfLanPruneDelay=hpicfPim6IfLanPruneDelay, hpicfPim6StarGEntries=hpicfPim6StarGEntries, hpicfPim6StaticRPSetAddress=hpicfPim6StaticRPSetAddress, hpicfPim6IfHelloHoldtime=hpicfPim6IfHelloHoldtime, hpicfPim6IpMRouteProtocol=hpicfPim6IpMRouteProtocol, hpicfPim6IfDRType=hpicfPim6IfDRType, hpicfPim6IpMRouteInIfIndex=hpicfPim6IpMRouteInIfIndex, hpicfPim6CandidateRPGroupAddress=hpicfPim6CandidateRPGroupAddress, hpicfPim6IfEntry=hpicfPim6IfEntry, hpicfPim6RPSetHoldTime=hpicfPim6RPSetHoldTime, hpicfPim6IfTrigHelloInterval=hpicfPim6IfTrigHelloInterval, hpicfPim6Groups=hpicfPim6Groups, hpicfPim6IpMRouteGrpAddrType=hpicfPim6IpMRouteGrpAddrType, hpicfPim6CandidateRPGrpMskType=hpicfPim6CandidateRPGrpMskType, hpicfPim6IpMRouteDiffInIfOct=hpicfPim6IpMRouteDiffInIfOct, hpicfPim6IpMRouteSrcAddrType=hpicfPim6IpMRouteSrcAddrType, hpicfPim6IpMRouteNHopClsMHops=hpicfPim6IpMRouteNHopClsMHops, hpicfPim6IfNumRoutersNotUsingLanDelay=hpicfPim6IfNumRoutersNotUsingLanDelay, hpicfPim6IpMRouteNHopState=hpicfPim6IpMRouteNHopState, hpicfPim6IfTable=hpicfPim6IfTable, hpicfPim6StaticRPSetAddressType=hpicfPim6StaticRPSetAddressType, hpicfPim6IpMRouteRtPrefixLen=hpicfPim6IpMRouteRtPrefixLen, hpicfPim6HardMRTFull=hpicfPim6HardMRTFull, hpicfPim6IpMRouteRtAddress=hpicfPim6IpMRouteRtAddress, hpicfPim6ComponentGroup=hpicfPim6ComponentGroup, hpicfPim6StaticRPSetGroupAddress=hpicfPim6StaticRPSetGroupAddress, hpicfPim6RPSetTable=hpicfPim6RPSetTable, hpicfPim6IfAddressType=hpicfPim6IfAddressType, hpicfPim6StaticRPSetRowStatus=hpicfPim6StaticRPSetRowStatus, hpicfPim6IpMRouteNHopAddress=hpicfPim6IpMRouteNHopAddress, hpicfPim6NotificationGroup=hpicfPim6NotificationGroup, hpicfPim6MRouteGroup=hpicfPim6MRouteGroup, hpicfPim6=hpicfPim6, hpicfPim6StaticRPSetEntry=hpicfPim6StaticRPSetEntry, hpicfPim6IpMcastEnabled=hpicfPim6IpMcastEnabled, hpicfPim6NotificationCompliance=hpicfPim6NotificationCompliance, hpicfPim6CandidateRPAddress=hpicfPim6CandidateRPAddress, hpicfPim6IfAssertHoldInterval=hpicfPim6IfAssertHoldInterval, hpicfPim6InterfaceExtensionsGroup=hpicfPim6InterfaceExtensionsGroup, hpicfPim6RemoveConfig=hpicfPim6RemoveConfig, hpicfPim6JoinPruneInterval=hpicfPim6JoinPruneInterval, hpicfPim6NeighborDRPrioPresent=hpicfPim6NeighborDRPrioPresent, hpicfPim6StaticRPSetGrpAddrType=hpicfPim6StaticRPSetGrpAddrType, hpicfPim6IfStatus=hpicfPim6IfStatus, hpicfPim6IfNBRCount=hpicfPim6IfNBRCount, hpicfPim6ComponentCBSRHashMskLen=hpicfPim6ComponentCBSRHashMskLen, hpicfPim6IpMRouteTimeStamp=hpicfPim6IpMRouteTimeStamp, hpicfPim6RPSetGroupAddressType=hpicfPim6RPSetGroupAddressType, hpicfPim6ComponentEntry=hpicfPim6ComponentEntry, hpicfPim6RPSetExpiryTime=hpicfPim6RPSetExpiryTime, hpicfPim6IpMRouteTtlDropPkts=hpicfPim6IpMRouteTtlDropPkts, hpicfPim6SGEntries=hpicfPim6SGEntries, hpicfPim6IpMRouteNHopSource=hpicfPim6IpMRouteNHopSource, hpicfPim6NeighborAddress=hpicfPim6NeighborAddress, hpicfPim6IpMRouteNHopAddrType=hpicfPim6IpMRouteNHopAddrType, hpicfPim6IfSRTTLThreshold=hpicfPim6IfSRTTLThreshold, hpicfPim6StaticRPSetOverride=hpicfPim6StaticRPSetOverride, hpicfPim6IfSRCapable=hpicfPim6IfSRCapable, hpicfPim6ComponentBSRHashMskLen=hpicfPim6ComponentBSRHashMskLen, hpicfPim6IfPropagationDelay=hpicfPim6IfPropagationDelay, hpicfPim6IpMRouteTable=hpicfPim6IpMRouteTable, hpicfPim6IfDRPriority=hpicfPim6IfDRPriority, hpicfPim6IfOverrideInterval=hpicfPim6IfOverrideInterval, hpicfPim6MIB=hpicfPim6MIB, hpicfPim6IpMRouteNHopTStamp=hpicfPim6IpMRouteNHopTStamp, PYSNMP_MODULE_ID=hpicfPim6MIB, hpicfPim6IpMRouteRtProtocol=hpicfPim6IpMRouteRtProtocol, hpicfPim6StaticRPSetGrpMskType=hpicfPim6StaticRPSetGrpMskType, hpicfPim6ComponentBSRAddress=hpicfPim6ComponentBSRAddress, hpicfPim6IfIndex=hpicfPim6IfIndex, hpicfPim6IpMRouteNHopExpTime=hpicfPim6IpMRouteNHopExpTime, hpicfPim6DenseIfGroup=hpicfPim6DenseIfGroup, hpicfPim6StaticRpfExtensionsGroup=hpicfPim6StaticRpfExtensionsGroup, hpicfPim6IpMRouteNHopSrcAddrType=hpicfPim6IpMRouteNHopSrcAddrType, hpicfPim6IpMRouteSrcPrefixLen=hpicfPim6IpMRouteSrcPrefixLen, hpicfPim6IfGenerationID=hpicfPim6IfGenerationID, hpicfPim6Compliances=hpicfPim6Compliances, hpicfPim6IfHelloInterval=hpicfPim6IfHelloInterval, hpicfPim6IpMcastRouteEntryCount=hpicfPim6IpMcastRouteEntryCount, hpicfPim6StaticRPSetGroupMask=hpicfPim6StaticRPSetGroupMask, hpicfPim6IfJoinPruneHoldtime=hpicfPim6IfJoinPruneHoldtime, hpicfPim6ComponentCBSRMsgInt=hpicfPim6ComponentCBSRMsgInt, hpicfPim6RPSetGroup=hpicfPim6RPSetGroup, hpicfPim6IpMRouteNHopPkts=hpicfPim6IpMRouteNHopPkts, hpicfPim6IfNegotiatedOverrideInterval=hpicfPim6IfNegotiatedOverrideInterval, hpicfPim6GlobalCounterGroup=hpicfPim6GlobalCounterGroup, hpicfPim6NeighborDRPriority=hpicfPim6NeighborDRPriority, hpicfPim6TrapControl=hpicfPim6TrapControl, hpicfPim6RPSetGroupMask=hpicfPim6RPSetGroupMask, hpicfPim6IpMRouteRtAddrType=hpicfPim6IpMRouteRtAddrType, hpicfPim6IpMRouteOctets=hpicfPim6IpMRouteOctets, hpicfPim6CandidateRPAddressType=hpicfPim6CandidateRPAddressType, hpicfPim6NeighborExpiryTime=hpicfPim6NeighborExpiryTime, hpicfPim6NeighborGroup=hpicfPim6NeighborGroup, hpicfPim6ComponentCBSRAdmStatus=hpicfPim6ComponentCBSRAdmStatus, hpicfPim6ComponentCBSRAddrType=hpicfPim6ComponentCBSRAddrType, hpicfPim6DenseMIBCompliance=hpicfPim6DenseMIBCompliance, hpicfPim6StaticRPSetTable=hpicfPim6StaticRPSetTable, hpicfPim6NeighborGenIDPresent=hpicfPim6NeighborGenIDPresent, hpicfPim6IfNBRTimeout=hpicfPim6IfNBRTimeout, hpicfPim6SoftMRTFull=hpicfPim6SoftMRTFull, hpicfPim6CommonGroup=hpicfPim6CommonGroup, hpicfPim6IpMRoutePkts=hpicfPim6IpMRoutePkts, hpicfPim6IpMRouteNHopTable=hpicfPim6IpMRouteNHopTable, hpicfPim6NeighborTable=hpicfPim6NeighborTable, hpicfPim6RPSetAddress=hpicfPim6RPSetAddress, hpicfPim6IpMRouteGrpPrefixLen=hpicfPim6IpMRouteGrpPrefixLen, hpicfPim6ComponentCRPAdvTimer=hpicfPim6ComponentCRPAdvTimer, hpicfPim6NumStaticRpfEntries=hpicfPim6NumStaticRpfEntries, hpicfPim6IpMRouteSource=hpicfPim6IpMRouteSource, hpicfPim6IfMaxGraftRetries=hpicfPim6IfMaxGraftRetries, hpicfPim6IpMRouteNHopIfIndex=hpicfPim6IpMRouteNHopIfIndex, hpicfPim6IpMRouteUpstrNbr=hpicfPim6IpMRouteUpstrNbr, hpicfPim6UcastRoutingCompliance=hpicfPim6UcastRoutingCompliance, hpicfPim6IfMode=hpicfPim6IfMode, hpicfPim6ComponentCRPPriority=hpicfPim6ComponentCRPPriority, hpicfPim6IfAddress=hpicfPim6IfAddress, hpicfPim6IpMRouteNHopSrcPLen=hpicfPim6IpMRouteNHopSrcPLen, hpicfPim6IpMRouteEntry=hpicfPim6IpMRouteEntry, hpicfPim6IpMRouteNHopProtocol=hpicfPim6IpMRouteNHopProtocol, hpicfPim6Objects=hpicfPim6Objects, hpicfPim6Version=hpicfPim6Version, hpicfPim6IpMRouteRtType=hpicfPim6IpMRouteRtType, hpicfPim6IpMRouteGroup=hpicfPim6IpMRouteGroup, hpicfPim6StaticRPSetGroup=hpicfPim6StaticRPSetGroup, hpicfPim6NeighborGenIDValue=hpicfPim6NeighborGenIDValue, hpicfPim6GlobalCountersCompliance=hpicfPim6GlobalCountersCompliance, hpicfPim6ComponentCBSRAddress=hpicfPim6ComponentCBSRAddress, hpicfPim6ComponentBSRPriority=hpicfPim6ComponentBSRPriority, hpicfPim6NeighborLanPruneDlyPres=hpicfPim6NeighborLanPruneDlyPres, hpicfPim6ComponentCRPHoldTime=hpicfPim6ComponentCRPHoldTime, hpicfPim6IpMRouteNHopGrpAddrType=hpicfPim6IpMRouteNHopGrpAddrType, hpicfPim6CandidateRPRowStatus=hpicfPim6CandidateRPRowStatus, hpicfPim6RPSetEntry=hpicfPim6RPSetEntry)
(octet_string, object_identifier, integer) = mibBuilder.importSymbols('ASN1', 'OctetString', 'ObjectIdentifier', 'Integer') (named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues') (constraints_union, constraints_intersection, value_size_constraint, value_range_constraint, single_value_constraint) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'ConstraintsUnion', 'ConstraintsIntersection', 'ValueSizeConstraint', 'ValueRangeConstraint', 'SingleValueConstraint') (hp_switch,) = mibBuilder.importSymbols('HP-ICF-OID', 'hpSwitch') (ian_aip_route_protocol, ian_aip_m_route_protocol) = mibBuilder.importSymbols('IANA-RTPROTO-MIB', 'IANAipRouteProtocol', 'IANAipMRouteProtocol') (interface_index, interface_index_or_zero) = mibBuilder.importSymbols('IF-MIB', 'InterfaceIndex', 'InterfaceIndexOrZero') (inet_address_type, inet_address, inet_address_prefix_length) = mibBuilder.importSymbols('INET-ADDRESS-MIB', 'InetAddressType', 'InetAddress', 'InetAddressPrefixLength') (pim_rp_set_component,) = mibBuilder.importSymbols('PIM-MIB', 'pimRPSetComponent') (module_compliance, notification_group, object_group) = mibBuilder.importSymbols('SNMPv2-CONF', 'ModuleCompliance', 'NotificationGroup', 'ObjectGroup') (ip_address, mib_scalar, mib_table, mib_table_row, mib_table_column, time_ticks, unsigned32, counter32, counter64, iso, object_identity, gauge32, bits, notification_type, mib_identifier, integer32, module_identity) = mibBuilder.importSymbols('SNMPv2-SMI', 'IpAddress', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn', 'TimeTicks', 'Unsigned32', 'Counter32', 'Counter64', 'iso', 'ObjectIdentity', 'Gauge32', 'Bits', 'NotificationType', 'MibIdentifier', 'Integer32', 'ModuleIdentity') (display_string, row_status, truth_value, time_stamp, textual_convention) = mibBuilder.importSymbols('SNMPv2-TC', 'DisplayString', 'RowStatus', 'TruthValue', 'TimeStamp', 'TextualConvention') hpicf_pim6_mib = module_identity((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122)) hpicfPim6MIB.setRevisions(('2017-10-10 00:00', '2017-07-03 00:00', '2012-04-12 00:00')) if mibBuilder.loadTexts: hpicfPim6MIB.setLastUpdated('201710100000Z') if mibBuilder.loadTexts: hpicfPim6MIB.setOrganization('HP Networking') hpicf_pim6_objects = mib_identifier((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1)) hpicf_pim6_traps = mib_identifier((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 0)) hpicf_pim6 = mib_identifier((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1)) hpicf_pim6_conformance = mib_identifier((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 2)) hpicf_pim6_groups = mib_identifier((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 2, 1)) hpicf_pim6_compliances = mib_identifier((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 2, 2)) hpicf_pim6_admin_status = mib_scalar((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enable', 1), ('disable', 2))).clone('disable')).setMaxAccess('readwrite') if mibBuilder.loadTexts: hpicfPim6AdminStatus.setStatus('current') hpicf_pim6_state_refresh_interval = mib_scalar((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(10, 100)).clone(60)).setUnits('seconds').setMaxAccess('readwrite') if mibBuilder.loadTexts: hpicfPim6StateRefreshInterval.setStatus('current') hpicf_pim6_trap_control = mib_scalar((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 3), bits().clone(namedValues=named_values(('neighborLoss', 0), ('hardMrtFull', 1), ('softMrtFull', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: hpicfPim6TrapControl.setStatus('current') hpicf_pim6_if_table = mib_table((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 4)) if mibBuilder.loadTexts: hpicfPim6IfTable.setStatus('current') hpicf_pim6_if_entry = mib_table_row((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 4, 1)).setIndexNames((0, 'HP-ICF-PIM6', 'hpicfPim6IfIndex')) if mibBuilder.loadTexts: hpicfPim6IfEntry.setStatus('current') hpicf_pim6_if_index = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 4, 1, 1), interface_index()) if mibBuilder.loadTexts: hpicfPim6IfIndex.setStatus('current') hpicf_pim6_if_address_type = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 4, 1, 2), inet_address_type()).setMaxAccess('readcreate') if mibBuilder.loadTexts: hpicfPim6IfAddressType.setStatus('current') hpicf_pim6_if_address = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 4, 1, 3), inet_address().subtype(subtypeSpec=constraints_union(value_size_constraint(0, 0), value_size_constraint(4, 4), value_size_constraint(8, 8), value_size_constraint(16, 16), value_size_constraint(20, 20)))).setMaxAccess('readcreate') if mibBuilder.loadTexts: hpicfPim6IfAddress.setStatus('current') hpicf_pim6_if_mode = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 4, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('dense', 1), ('sparse', 2))).clone('dense')).setMaxAccess('readcreate') if mibBuilder.loadTexts: hpicfPim6IfMode.setStatus('current') hpicf_pim6_if_trig_hello_interval = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 4, 1, 5), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 5)).clone(5)).setUnits('seconds').setMaxAccess('readcreate') if mibBuilder.loadTexts: hpicfPim6IfTrigHelloInterval.setStatus('current') hpicf_pim6_if_hello_holdtime = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 4, 1, 6), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 65535)).clone(105)).setUnits('seconds').setMaxAccess('readcreate') if mibBuilder.loadTexts: hpicfPim6IfHelloHoldtime.setStatus('current') hpicf_pim6_if_lan_prune_delay = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 4, 1, 7), truth_value().clone('true')).setMaxAccess('readcreate') if mibBuilder.loadTexts: hpicfPim6IfLanPruneDelay.setStatus('current') hpicf_pim6_if_propagation_delay = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 4, 1, 8), unsigned32().subtype(subtypeSpec=value_range_constraint(250, 2000)).clone(500)).setUnits('milliseconds').setMaxAccess('readcreate') if mibBuilder.loadTexts: hpicfPim6IfPropagationDelay.setStatus('current') hpicf_pim6_if_override_interval = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 4, 1, 9), unsigned32().subtype(subtypeSpec=value_range_constraint(500, 6000)).clone(2500)).setUnits('milliseconds').setMaxAccess('readcreate') if mibBuilder.loadTexts: hpicfPim6IfOverrideInterval.setStatus('current') hpicf_pim6_if_generation_id = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 4, 1, 10), truth_value().clone('false')).setMaxAccess('readcreate') if mibBuilder.loadTexts: hpicfPim6IfGenerationID.setStatus('current') hpicf_pim6_if_join_prune_holdtime = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 4, 1, 11), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 65535)).clone(210)).setUnits('seconds').setMaxAccess('readcreate') if mibBuilder.loadTexts: hpicfPim6IfJoinPruneHoldtime.setStatus('current') hpicf_pim6_if_graft_retry_interval = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 4, 1, 12), unsigned32().subtype(subtypeSpec=value_range_constraint(1, 10)).clone(3)).setUnits('seconds').setMaxAccess('readcreate') if mibBuilder.loadTexts: hpicfPim6IfGraftRetryInterval.setStatus('current') hpicf_pim6_if_max_graft_retries = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 4, 1, 13), integer32().subtype(subtypeSpec=value_range_constraint(1, 10)).clone(2)).setMaxAccess('readcreate') if mibBuilder.loadTexts: hpicfPim6IfMaxGraftRetries.setStatus('current') hpicf_pim6_if_srttl_threshold = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 4, 1, 14), unsigned32()).setMaxAccess('readcreate') if mibBuilder.loadTexts: hpicfPim6IfSRTTLThreshold.setStatus('current') hpicf_pim6_if_lan_delay_enabled = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 4, 1, 15), truth_value()).setMaxAccess('readonly') if mibBuilder.loadTexts: hpicfPim6IfLanDelayEnabled.setStatus('current') hpicf_pim6_if_sr_capable = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 4, 1, 16), truth_value()).setMaxAccess('readonly') if mibBuilder.loadTexts: hpicfPim6IfSRCapable.setStatus('current') hpicf_pim6_if_nbr_timeout = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 4, 1, 17), integer32().subtype(subtypeSpec=value_range_constraint(60, 8000)).clone(180)).setUnits('seconds').setMaxAccess('readcreate') if mibBuilder.loadTexts: hpicfPim6IfNBRTimeout.setStatus('current') hpicf_pim6_if_nbr_count = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 4, 1, 18), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: hpicfPim6IfNBRCount.setStatus('current') hpicf_pim6_if_negotiated_propagation_delay = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 4, 1, 19), time_ticks()).setMaxAccess('readonly') if mibBuilder.loadTexts: hpicfPim6IfNegotiatedPropagationDelay.setStatus('current') hpicf_pim6_if_negotiated_override_interval = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 4, 1, 20), time_ticks()).setMaxAccess('readonly') if mibBuilder.loadTexts: hpicfPim6IfNegotiatedOverrideInterval.setStatus('current') hpicf_pim6_if_assert_hold_interval = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 4, 1, 21), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: hpicfPim6IfAssertHoldInterval.setStatus('current') hpicf_pim6_if_num_routers_not_using_lan_delay = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 4, 1, 22), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: hpicfPim6IfNumRoutersNotUsingLanDelay.setStatus('current') hpicf_pim6_if_hello_interval = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 4, 1, 23), unsigned32().subtype(subtypeSpec=value_range_constraint(5, 300)).clone(30)).setUnits('seconds').setMaxAccess('readcreate') if mibBuilder.loadTexts: hpicfPim6IfHelloInterval.setStatus('current') hpicf_pim6_if_status = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 4, 1, 24), row_status()).setMaxAccess('readcreate') if mibBuilder.loadTexts: hpicfPim6IfStatus.setStatus('current') hpicf_pim6_if_dr_priority = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 4, 1, 25), unsigned32().clone(1)).setMaxAccess('readcreate') if mibBuilder.loadTexts: hpicfPim6IfDRPriority.setStatus('current') hpicf_pim6_if_dr_type = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 4, 1, 26), inet_address_type()).setMaxAccess('readcreate') if mibBuilder.loadTexts: hpicfPim6IfDRType.setStatus('current') hpicf_pim6_if_dr = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 4, 1, 27), inet_address().subtype(subtypeSpec=constraints_union(value_size_constraint(0, 0), value_size_constraint(4, 4), value_size_constraint(8, 8), value_size_constraint(16, 16), value_size_constraint(20, 20)))).setMaxAccess('readonly') if mibBuilder.loadTexts: hpicfPim6IfDR.setStatus('current') hpicf_pim6_remove_config = mib_scalar((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 5), truth_value().clone('false')).setMaxAccess('readwrite') if mibBuilder.loadTexts: hpicfPim6RemoveConfig.setStatus('current') hpicf_pim6_num_static_rpf_entries = mib_scalar((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 6), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: hpicfPim6NumStaticRpfEntries.setStatus('current') hpicf_pim6_version = mib_scalar((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 7), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: hpicfPim6Version.setStatus('current') hpicf_pim6_star_g_entries = mib_scalar((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 8), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: hpicfPim6StarGEntries.setStatus('current') hpicf_pim6_sg_entries = mib_scalar((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 9), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: hpicfPim6SGEntries.setStatus('current') hpicf_pim6_total_neighbor_count = mib_scalar((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 10), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: hpicfPim6TotalNeighborCount.setStatus('current') hpicf_pim6_join_prune_interval = mib_scalar((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 11), integer32()).setUnits('seconds').setMaxAccess('readwrite') if mibBuilder.loadTexts: hpicfPim6JoinPruneInterval.setStatus('current') hpicf_pim6_static_rp_set_table = mib_table((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 12)) if mibBuilder.loadTexts: hpicfPim6StaticRPSetTable.setStatus('current') hpicf_pim6_static_rp_set_entry = mib_table_row((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 12, 1)).setIndexNames((0, 'PIM-MIB', 'pimRPSetComponent'), (0, 'HP-ICF-PIM6', 'hpicfPim6StaticRPSetGrpAddrType'), (0, 'HP-ICF-PIM6', 'hpicfPim6StaticRPSetGroupAddress'), (0, 'HP-ICF-PIM6', 'hpicfPim6StaticRPSetGrpMskType'), (0, 'HP-ICF-PIM6', 'hpicfPim6StaticRPSetGroupMask'), (0, 'HP-ICF-PIM6', 'hpicfPim6StaticRPSetAddressType'), (0, 'HP-ICF-PIM6', 'hpicfPim6StaticRPSetAddress')) if mibBuilder.loadTexts: hpicfPim6StaticRPSetEntry.setStatus('current') hpicf_pim6_static_rp_set_grp_addr_type = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 12, 1, 1), inet_address_type()) if mibBuilder.loadTexts: hpicfPim6StaticRPSetGrpAddrType.setStatus('current') hpicf_pim6_static_rp_set_group_address = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 12, 1, 2), inet_address().subtype(subtypeSpec=constraints_union(value_size_constraint(0, 0), value_size_constraint(4, 4), value_size_constraint(8, 8), value_size_constraint(16, 16), value_size_constraint(20, 20)))) if mibBuilder.loadTexts: hpicfPim6StaticRPSetGroupAddress.setStatus('current') hpicf_pim6_static_rp_set_grp_msk_type = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 12, 1, 3), inet_address_type()) if mibBuilder.loadTexts: hpicfPim6StaticRPSetGrpMskType.setStatus('current') hpicf_pim6_static_rp_set_group_mask = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 12, 1, 4), inet_address().subtype(subtypeSpec=constraints_union(value_size_constraint(0, 0), value_size_constraint(4, 4), value_size_constraint(8, 8), value_size_constraint(16, 16), value_size_constraint(20, 20)))) if mibBuilder.loadTexts: hpicfPim6StaticRPSetGroupMask.setStatus('current') hpicf_pim6_static_rp_set_address_type = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 12, 1, 5), inet_address_type()) if mibBuilder.loadTexts: hpicfPim6StaticRPSetAddressType.setStatus('current') hpicf_pim6_static_rp_set_address = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 12, 1, 6), inet_address().subtype(subtypeSpec=constraints_union(value_size_constraint(0, 0), value_size_constraint(4, 4), value_size_constraint(8, 8), value_size_constraint(16, 16), value_size_constraint(20, 20)))) if mibBuilder.loadTexts: hpicfPim6StaticRPSetAddress.setStatus('current') hpicf_pim6_static_rp_set_override = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 12, 1, 7), truth_value().clone('false')).setMaxAccess('readcreate') if mibBuilder.loadTexts: hpicfPim6StaticRPSetOverride.setStatus('current') hpicf_pim6_static_rp_set_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 12, 1, 8), row_status()).setMaxAccess('readcreate') if mibBuilder.loadTexts: hpicfPim6StaticRPSetRowStatus.setStatus('current') hpicf_pim6_candidate_rp_table = mib_table((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 13)) if mibBuilder.loadTexts: hpicfPim6CandidateRPTable.setStatus('current') hpicf_pim6_candidate_rp_entry = mib_table_row((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 13, 1)).setIndexNames((0, 'HP-ICF-PIM6', 'hpicfPim6CandidateRPGrpAddrType'), (0, 'HP-ICF-PIM6', 'hpicfPim6CandidateRPGroupAddress'), (0, 'HP-ICF-PIM6', 'hpicfPim6CandidateRPGrpMskType'), (0, 'HP-ICF-PIM6', 'hpicfPim6CandidateRPGroupMask')) if mibBuilder.loadTexts: hpicfPim6CandidateRPEntry.setStatus('current') hpicf_pim6_candidate_rp_grp_addr_type = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 13, 1, 1), inet_address_type()) if mibBuilder.loadTexts: hpicfPim6CandidateRPGrpAddrType.setStatus('current') hpicf_pim6_candidate_rp_group_address = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 13, 1, 2), inet_address().subtype(subtypeSpec=constraints_union(value_size_constraint(0, 0), value_size_constraint(4, 4), value_size_constraint(8, 8), value_size_constraint(16, 16), value_size_constraint(20, 20)))) if mibBuilder.loadTexts: hpicfPim6CandidateRPGroupAddress.setStatus('current') hpicf_pim6_candidate_rp_grp_msk_type = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 13, 1, 3), inet_address_type()) if mibBuilder.loadTexts: hpicfPim6CandidateRPGrpMskType.setStatus('current') hpicf_pim6_candidate_rp_group_mask = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 13, 1, 4), inet_address().subtype(subtypeSpec=constraints_union(value_size_constraint(0, 0), value_size_constraint(4, 4), value_size_constraint(8, 8), value_size_constraint(16, 16), value_size_constraint(20, 20)))) if mibBuilder.loadTexts: hpicfPim6CandidateRPGroupMask.setStatus('current') hpicf_pim6_candidate_rp_address_type = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 13, 1, 5), inet_address_type()).setMaxAccess('readcreate') if mibBuilder.loadTexts: hpicfPim6CandidateRPAddressType.setStatus('current') hpicf_pim6_candidate_rp_address = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 13, 1, 6), inet_address().subtype(subtypeSpec=constraints_union(value_size_constraint(0, 0), value_size_constraint(4, 4), value_size_constraint(8, 8), value_size_constraint(16, 16), value_size_constraint(20, 20)))).setMaxAccess('readcreate') if mibBuilder.loadTexts: hpicfPim6CandidateRPAddress.setStatus('current') hpicf_pim6_candidate_rp_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 13, 1, 7), row_status()).setMaxAccess('readcreate') if mibBuilder.loadTexts: hpicfPim6CandidateRPRowStatus.setStatus('current') hpicf_pim6_component_table = mib_table((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 14)) if mibBuilder.loadTexts: hpicfPim6ComponentTable.setStatus('current') hpicf_pim6_component_entry = mib_table_row((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 14, 1)).setIndexNames((0, 'HP-ICF-PIM6', 'hpicfPim6ComponentIndex')) if mibBuilder.loadTexts: hpicfPim6ComponentEntry.setStatus('current') hpicf_pim6_component_index = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 14, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 255))) if mibBuilder.loadTexts: hpicfPim6ComponentIndex.setStatus('current') hpicf_pim6_component_bsr_addr_type = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 14, 1, 2), inet_address_type()).setMaxAccess('readonly') if mibBuilder.loadTexts: hpicfPim6ComponentBSRAddrType.setStatus('current') hpicf_pim6_component_bsr_address = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 14, 1, 3), inet_address()).setMaxAccess('readonly') if mibBuilder.loadTexts: hpicfPim6ComponentBSRAddress.setStatus('current') hpicf_pim6_component_bsr_expiry_time = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 14, 1, 4), time_ticks()).setMaxAccess('readonly') if mibBuilder.loadTexts: hpicfPim6ComponentBSRExpiryTime.setStatus('current') hpicf_pim6_component_crp_hold_time = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 14, 1, 5), integer32().subtype(subtypeSpec=value_range_constraint(0, 255))).setUnits('seconds').setMaxAccess('readcreate') if mibBuilder.loadTexts: hpicfPim6ComponentCRPHoldTime.setStatus('current') hpicf_pim6_component_status = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 14, 1, 6), row_status()).setMaxAccess('readcreate') if mibBuilder.loadTexts: hpicfPim6ComponentStatus.setStatus('current') hpicf_pim6_component_cbsr_adm_status = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 14, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enable', 1), ('disable', 2))).clone('disable')).setMaxAccess('readcreate') if mibBuilder.loadTexts: hpicfPim6ComponentCBSRAdmStatus.setStatus('current') hpicf_pim6_component_cbsr_addr_type = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 14, 1, 8), inet_address_type()).setMaxAccess('readcreate') if mibBuilder.loadTexts: hpicfPim6ComponentCBSRAddrType.setStatus('current') hpicf_pim6_component_cbsr_address = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 14, 1, 9), inet_address()).setMaxAccess('readcreate') if mibBuilder.loadTexts: hpicfPim6ComponentCBSRAddress.setStatus('current') hpicf_pim6_component_cbsr_priority = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 14, 1, 10), integer32().subtype(subtypeSpec=value_range_constraint(0, 255))).setMaxAccess('readcreate') if mibBuilder.loadTexts: hpicfPim6ComponentCBSRPriority.setStatus('current') hpicf_pim6_component_cbsr_hash_msk_len = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 14, 1, 11), integer32().subtype(subtypeSpec=value_range_constraint(1, 128)).clone(126)).setMaxAccess('readcreate') if mibBuilder.loadTexts: hpicfPim6ComponentCBSRHashMskLen.setStatus('current') hpicf_pim6_component_cbsr_msg_int = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 14, 1, 12), integer32().subtype(subtypeSpec=value_range_constraint(5, 300)).clone(60)).setUnits('seconds').setMaxAccess('readcreate') if mibBuilder.loadTexts: hpicfPim6ComponentCBSRMsgInt.setStatus('current') hpicf_pim6_component_crp_priority = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 14, 1, 13), integer32().subtype(subtypeSpec=value_range_constraint(0, 255)).clone(192)).setMaxAccess('readcreate') if mibBuilder.loadTexts: hpicfPim6ComponentCRPPriority.setStatus('current') hpicf_pim6_component_crp_adv_interval = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 14, 1, 14), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: hpicfPim6ComponentCRPAdvInterval.setStatus('current') hpicf_pim6_component_bsr_priority = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 14, 1, 15), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: hpicfPim6ComponentBSRPriority.setStatus('current') hpicf_pim6_component_bsr_hash_msk_len = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 14, 1, 16), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: hpicfPim6ComponentBSRHashMskLen.setStatus('current') hpicf_pim6_component_bsr_up_time = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 14, 1, 17), time_ticks()).setMaxAccess('readonly') if mibBuilder.loadTexts: hpicfPim6ComponentBSRUpTime.setStatus('current') hpicf_pim6_component_bsr_next_message = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 14, 1, 18), time_ticks()).setMaxAccess('readonly') if mibBuilder.loadTexts: hpicfPim6ComponentBSRNextMessage.setStatus('current') hpicf_pim6_component_crp_adv_timer = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 14, 1, 19), time_ticks()).setMaxAccess('readonly') if mibBuilder.loadTexts: hpicfPim6ComponentCRPAdvTimer.setStatus('current') hpicf_pim6_spt_threshold = mib_scalar((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 15), integer32().clone(-1)).setMaxAccess('readwrite') if mibBuilder.loadTexts: hpicfPim6SPTThreshold.setStatus('current') hpicf_pim6_neighbor_table = mib_table((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 16)) if mibBuilder.loadTexts: hpicfPim6NeighborTable.setStatus('current') hpicf_pim6_neighbor_entry = mib_table_row((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 16, 1)).setIndexNames((0, 'HP-ICF-PIM6', 'hpicfPim6NeighborIfIndex'), (0, 'HP-ICF-PIM6', 'hpicfPim6NeighborAddressType'), (0, 'HP-ICF-PIM6', 'hpicfPim6NeighborAddress')) if mibBuilder.loadTexts: hpicfPim6NeighborEntry.setStatus('current') hpicf_pim6_neighbor_if_index = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 16, 1, 1), interface_index()) if mibBuilder.loadTexts: hpicfPim6NeighborIfIndex.setStatus('current') hpicf_pim6_neighbor_address_type = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 16, 1, 2), inet_address_type()) if mibBuilder.loadTexts: hpicfPim6NeighborAddressType.setStatus('current') hpicf_pim6_neighbor_address = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 16, 1, 3), inet_address().subtype(subtypeSpec=constraints_union(value_size_constraint(4, 4), value_size_constraint(8, 8), value_size_constraint(16, 16), value_size_constraint(20, 20)))) if mibBuilder.loadTexts: hpicfPim6NeighborAddress.setStatus('current') hpicf_pim6_neighbor_gen_id_present = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 16, 1, 4), truth_value()).setMaxAccess('readonly') if mibBuilder.loadTexts: hpicfPim6NeighborGenIDPresent.setStatus('current') hpicf_pim6_neighbor_gen_id_value = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 16, 1, 5), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: hpicfPim6NeighborGenIDValue.setStatus('current') hpicf_pim6_neighbor_up_time = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 16, 1, 6), time_ticks()).setMaxAccess('readonly') if mibBuilder.loadTexts: hpicfPim6NeighborUpTime.setStatus('current') hpicf_pim6_neighbor_expiry_time = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 16, 1, 7), time_ticks()).setMaxAccess('readonly') if mibBuilder.loadTexts: hpicfPim6NeighborExpiryTime.setStatus('current') hpicf_pim6_neighbor_dr_prio_present = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 16, 1, 8), truth_value()).setMaxAccess('readonly') if mibBuilder.loadTexts: hpicfPim6NeighborDRPrioPresent.setStatus('current') hpicf_pim6_neighbor_dr_priority = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 16, 1, 9), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: hpicfPim6NeighborDRPriority.setStatus('current') hpicf_pim6_neighbor_lan_prune_dly_pres = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 16, 1, 10), truth_value()).setMaxAccess('readonly') if mibBuilder.loadTexts: hpicfPim6NeighborLanPruneDlyPres.setStatus('current') hpicf_pim6_rp_set_table = mib_table((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 17)) if mibBuilder.loadTexts: hpicfPim6RPSetTable.setStatus('current') hpicf_pim6_rp_set_entry = mib_table_row((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 17, 1)).setIndexNames((0, 'PIM-MIB', 'pimRPSetComponent'), (0, 'HP-ICF-PIM6', 'hpicfPim6RPSetGroupAddressType'), (0, 'HP-ICF-PIM6', 'hpicfPim6RPSetGroupAddress'), (0, 'HP-ICF-PIM6', 'hpicfPim6RPSetGroupMaskType'), (0, 'HP-ICF-PIM6', 'hpicfPim6RPSetGroupMask'), (0, 'HP-ICF-PIM6', 'hpicfPim6RPSetAddressType'), (0, 'HP-ICF-PIM6', 'hpicfPim6RPSetAddress')) if mibBuilder.loadTexts: hpicfPim6RPSetEntry.setStatus('current') hpicf_pim6_rp_set_group_address_type = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 17, 1, 1), inet_address_type()) if mibBuilder.loadTexts: hpicfPim6RPSetGroupAddressType.setStatus('current') hpicf_pim6_rp_set_group_address = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 17, 1, 2), inet_address().subtype(subtypeSpec=constraints_union(value_size_constraint(0, 0), value_size_constraint(4, 4), value_size_constraint(8, 8), value_size_constraint(16, 16), value_size_constraint(20, 20)))) if mibBuilder.loadTexts: hpicfPim6RPSetGroupAddress.setStatus('current') hpicf_pim6_rp_set_group_mask_type = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 17, 1, 3), inet_address_type()) if mibBuilder.loadTexts: hpicfPim6RPSetGroupMaskType.setStatus('current') hpicf_pim6_rp_set_group_mask = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 17, 1, 4), inet_address().subtype(subtypeSpec=constraints_union(value_size_constraint(0, 0), value_size_constraint(4, 4), value_size_constraint(8, 8), value_size_constraint(16, 16), value_size_constraint(20, 20)))) if mibBuilder.loadTexts: hpicfPim6RPSetGroupMask.setStatus('current') hpicf_pim6_rp_set_address_type = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 17, 1, 5), inet_address_type()) if mibBuilder.loadTexts: hpicfPim6RPSetAddressType.setStatus('current') hpicf_pim6_rp_set_address = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 17, 1, 6), inet_address().subtype(subtypeSpec=constraints_union(value_size_constraint(0, 0), value_size_constraint(4, 4), value_size_constraint(8, 8), value_size_constraint(16, 16), value_size_constraint(20, 20)))) if mibBuilder.loadTexts: hpicfPim6RPSetAddress.setStatus('current') hpicf_pim6_rp_set_hold_time = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 17, 1, 7), integer32().subtype(subtypeSpec=value_range_constraint(0, 255))).setUnits('seconds').setMaxAccess('readonly') if mibBuilder.loadTexts: hpicfPim6RPSetHoldTime.setStatus('current') hpicf_pim6_rp_set_expiry_time = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 17, 1, 8), time_ticks()).setMaxAccess('readonly') if mibBuilder.loadTexts: hpicfPim6RPSetExpiryTime.setStatus('current') hpicf_pim6_ip_mcast_enabled = mib_scalar((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 18), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: hpicfPim6IpMcastEnabled.setStatus('current') hpicf_pim6_ip_mcast_route_entry_count = mib_scalar((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 19), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: hpicfPim6IpMcastRouteEntryCount.setStatus('current') hpicf_pim6_ip_m_route_table = mib_table((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 20)) if mibBuilder.loadTexts: hpicfPim6IpMRouteTable.setStatus('current') hpicf_pim6_ip_m_route_entry = mib_table_row((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 20, 1)).setIndexNames((0, 'HP-ICF-PIM6', 'hpicfPim6IpMRouteGrpAddrType'), (0, 'HP-ICF-PIM6', 'hpicfPim6IpMRouteGroup'), (0, 'HP-ICF-PIM6', 'hpicfPim6IpMRouteGrpPrefixLen'), (0, 'HP-ICF-PIM6', 'hpicfPim6IpMRouteSrcAddrType'), (0, 'HP-ICF-PIM6', 'hpicfPim6IpMRouteSource'), (0, 'HP-ICF-PIM6', 'hpicfPim6IpMRouteSrcPrefixLen')) if mibBuilder.loadTexts: hpicfPim6IpMRouteEntry.setStatus('current') hpicf_pim6_ip_m_route_grp_addr_type = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 20, 1, 1), inet_address_type()) if mibBuilder.loadTexts: hpicfPim6IpMRouteGrpAddrType.setStatus('current') hpicf_pim6_ip_m_route_group = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 20, 1, 2), inet_address().subtype(subtypeSpec=constraints_union(value_size_constraint(0, 0), value_size_constraint(4, 4), value_size_constraint(8, 8), value_size_constraint(16, 16), value_size_constraint(20, 20)))) if mibBuilder.loadTexts: hpicfPim6IpMRouteGroup.setStatus('current') hpicf_pim6_ip_m_route_grp_prefix_len = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 20, 1, 3), inet_address_prefix_length()) if mibBuilder.loadTexts: hpicfPim6IpMRouteGrpPrefixLen.setStatus('current') hpicf_pim6_ip_m_route_src_addr_type = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 20, 1, 4), inet_address_type()) if mibBuilder.loadTexts: hpicfPim6IpMRouteSrcAddrType.setStatus('current') hpicf_pim6_ip_m_route_source = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 20, 1, 5), inet_address().subtype(subtypeSpec=constraints_union(value_size_constraint(0, 0), value_size_constraint(4, 4), value_size_constraint(8, 8), value_size_constraint(16, 16), value_size_constraint(20, 20)))) if mibBuilder.loadTexts: hpicfPim6IpMRouteSource.setStatus('current') hpicf_pim6_ip_m_route_src_prefix_len = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 20, 1, 6), inet_address_prefix_length()) if mibBuilder.loadTexts: hpicfPim6IpMRouteSrcPrefixLen.setStatus('current') hpicf_pim6_ip_m_route_upstr_nbr_type = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 20, 1, 7), inet_address_type()).setMaxAccess('readonly') if mibBuilder.loadTexts: hpicfPim6IpMRouteUpstrNbrType.setStatus('current') hpicf_pim6_ip_m_route_upstr_nbr = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 20, 1, 8), inet_address().subtype(subtypeSpec=constraints_union(value_size_constraint(0, 0), value_size_constraint(4, 4), value_size_constraint(8, 8), value_size_constraint(16, 16), value_size_constraint(20, 20)))).setMaxAccess('readonly') if mibBuilder.loadTexts: hpicfPim6IpMRouteUpstrNbr.setStatus('current') hpicf_pim6_ip_m_route_in_if_index = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 20, 1, 9), interface_index_or_zero()).setMaxAccess('readonly') if mibBuilder.loadTexts: hpicfPim6IpMRouteInIfIndex.setStatus('current') hpicf_pim6_ip_m_route_time_stamp = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 20, 1, 10), time_stamp()).setMaxAccess('readonly') if mibBuilder.loadTexts: hpicfPim6IpMRouteTimeStamp.setStatus('current') hpicf_pim6_ip_m_route_expiry_time = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 20, 1, 11), time_ticks()).setMaxAccess('readonly') if mibBuilder.loadTexts: hpicfPim6IpMRouteExpiryTime.setStatus('current') hpicf_pim6_ip_m_route_protocol = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 20, 1, 12), ian_aip_m_route_protocol()).setMaxAccess('readonly') if mibBuilder.loadTexts: hpicfPim6IpMRouteProtocol.setStatus('current') hpicf_pim6_ip_m_route_rt_protocol = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 20, 1, 13), ian_aip_route_protocol()).setMaxAccess('readonly') if mibBuilder.loadTexts: hpicfPim6IpMRouteRtProtocol.setStatus('current') hpicf_pim6_ip_m_route_rt_addr_type = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 20, 1, 14), inet_address_type()).setMaxAccess('readonly') if mibBuilder.loadTexts: hpicfPim6IpMRouteRtAddrType.setStatus('current') hpicf_pim6_ip_m_route_rt_address = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 20, 1, 15), inet_address().subtype(subtypeSpec=constraints_union(value_size_constraint(0, 0), value_size_constraint(4, 4), value_size_constraint(8, 8), value_size_constraint(16, 16), value_size_constraint(20, 20)))).setMaxAccess('readonly') if mibBuilder.loadTexts: hpicfPim6IpMRouteRtAddress.setStatus('current') hpicf_pim6_ip_m_route_rt_prefix_len = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 20, 1, 16), inet_address_prefix_length()).setMaxAccess('readonly') if mibBuilder.loadTexts: hpicfPim6IpMRouteRtPrefixLen.setStatus('current') hpicf_pim6_ip_m_route_rt_type = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 20, 1, 17), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('unicast', 1), ('multicast', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: hpicfPim6IpMRouteRtType.setStatus('current') hpicf_pim6_ip_m_route_octets = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 20, 1, 18), counter64()).setMaxAccess('readonly') if mibBuilder.loadTexts: hpicfPim6IpMRouteOctets.setStatus('current') hpicf_pim6_ip_m_route_pkts = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 20, 1, 19), counter64()).setMaxAccess('readonly') if mibBuilder.loadTexts: hpicfPim6IpMRoutePkts.setStatus('current') hpicf_pim6_ip_m_route_ttl_drop_oct = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 20, 1, 20), counter64()).setMaxAccess('readonly') if mibBuilder.loadTexts: hpicfPim6IpMRouteTtlDropOct.setStatus('current') hpicf_pim6_ip_m_route_ttl_drop_pkts = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 20, 1, 21), counter64()).setMaxAccess('readonly') if mibBuilder.loadTexts: hpicfPim6IpMRouteTtlDropPkts.setStatus('current') hpicf_pim6_ip_m_route_diff_in_if_oct = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 20, 1, 22), counter64()).setMaxAccess('readonly') if mibBuilder.loadTexts: hpicfPim6IpMRouteDiffInIfOct.setStatus('current') hpicf_pim6_ip_m_route_diff_in_if_pkts = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 20, 1, 23), counter64()).setMaxAccess('readonly') if mibBuilder.loadTexts: hpicfPim6IpMRouteDiffInIfPkts.setStatus('current') hpicf_pim6_ip_m_route_bps = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 20, 1, 24), counter64()).setUnits('bits per second').setMaxAccess('readonly') if mibBuilder.loadTexts: hpicfPim6IpMRouteBps.setStatus('current') hpicf_pim6_ip_m_route_n_hop_table = mib_table((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 21)) if mibBuilder.loadTexts: hpicfPim6IpMRouteNHopTable.setStatus('current') hpicf_pim6_ip_m_route_n_hop_entry = mib_table_row((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 21, 1)).setIndexNames((0, 'HP-ICF-PIM6', 'hpicfPim6IpMRouteNHopGrpAddrType'), (0, 'HP-ICF-PIM6', 'hpicfPim6IpMRouteNHopGroup'), (0, 'HP-ICF-PIM6', 'hpicfPim6IpMRouteNHopGrpPLen'), (0, 'HP-ICF-PIM6', 'hpicfPim6IpMRouteNHopSrcAddrType'), (0, 'HP-ICF-PIM6', 'hpicfPim6IpMRouteNHopSource'), (0, 'HP-ICF-PIM6', 'hpicfPim6IpMRouteNHopSrcPLen'), (0, 'HP-ICF-PIM6', 'hpicfPim6IpMRouteNHopIfIndex'), (0, 'HP-ICF-PIM6', 'hpicfPim6IpMRouteNHopAddrType'), (0, 'HP-ICF-PIM6', 'hpicfPim6IpMRouteNHopAddress')) if mibBuilder.loadTexts: hpicfPim6IpMRouteNHopEntry.setStatus('current') hpicf_pim6_ip_m_route_n_hop_grp_addr_type = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 21, 1, 1), inet_address_type()) if mibBuilder.loadTexts: hpicfPim6IpMRouteNHopGrpAddrType.setStatus('current') hpicf_pim6_ip_m_route_n_hop_group = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 21, 1, 2), inet_address().subtype(subtypeSpec=constraints_union(value_size_constraint(0, 0), value_size_constraint(4, 4), value_size_constraint(8, 8), value_size_constraint(16, 16), value_size_constraint(20, 20)))) if mibBuilder.loadTexts: hpicfPim6IpMRouteNHopGroup.setStatus('current') hpicf_pim6_ip_m_route_n_hop_grp_p_len = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 21, 1, 3), inet_address_prefix_length()) if mibBuilder.loadTexts: hpicfPim6IpMRouteNHopGrpPLen.setStatus('current') hpicf_pim6_ip_m_route_n_hop_src_addr_type = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 21, 1, 4), inet_address_type()) if mibBuilder.loadTexts: hpicfPim6IpMRouteNHopSrcAddrType.setStatus('current') hpicf_pim6_ip_m_route_n_hop_source = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 21, 1, 5), inet_address().subtype(subtypeSpec=constraints_union(value_size_constraint(0, 0), value_size_constraint(4, 4), value_size_constraint(8, 8), value_size_constraint(16, 16), value_size_constraint(20, 20)))) if mibBuilder.loadTexts: hpicfPim6IpMRouteNHopSource.setStatus('current') hpicf_pim6_ip_m_route_n_hop_src_p_len = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 21, 1, 6), inet_address_prefix_length()) if mibBuilder.loadTexts: hpicfPim6IpMRouteNHopSrcPLen.setStatus('current') hpicf_pim6_ip_m_route_n_hop_if_index = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 21, 1, 7), interface_index()) if mibBuilder.loadTexts: hpicfPim6IpMRouteNHopIfIndex.setStatus('current') hpicf_pim6_ip_m_route_n_hop_addr_type = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 21, 1, 8), inet_address_type()) if mibBuilder.loadTexts: hpicfPim6IpMRouteNHopAddrType.setStatus('current') hpicf_pim6_ip_m_route_n_hop_address = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 21, 1, 9), inet_address().subtype(subtypeSpec=constraints_union(value_size_constraint(0, 0), value_size_constraint(4, 4), value_size_constraint(8, 8), value_size_constraint(16, 16), value_size_constraint(20, 20)))) if mibBuilder.loadTexts: hpicfPim6IpMRouteNHopAddress.setStatus('current') hpicf_pim6_ip_m_route_n_hop_state = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 21, 1, 10), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('pruned', 1), ('forwarding', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: hpicfPim6IpMRouteNHopState.setStatus('current') hpicf_pim6_ip_m_route_n_hop_t_stamp = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 21, 1, 11), time_stamp()).setMaxAccess('readonly') if mibBuilder.loadTexts: hpicfPim6IpMRouteNHopTStamp.setStatus('current') hpicf_pim6_ip_m_route_n_hop_exp_time = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 21, 1, 12), time_ticks()).setMaxAccess('readonly') if mibBuilder.loadTexts: hpicfPim6IpMRouteNHopExpTime.setStatus('current') hpicf_pim6_ip_m_route_n_hop_cls_m_hops = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 21, 1, 13), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 256))).setMaxAccess('readonly') if mibBuilder.loadTexts: hpicfPim6IpMRouteNHopClsMHops.setStatus('current') hpicf_pim6_ip_m_route_n_hop_protocol = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 21, 1, 14), ian_aip_m_route_protocol()).setMaxAccess('readonly') if mibBuilder.loadTexts: hpicfPim6IpMRouteNHopProtocol.setStatus('current') hpicf_pim6_ip_m_route_n_hop_octets = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 21, 1, 15), counter64()).setMaxAccess('readonly') if mibBuilder.loadTexts: hpicfPim6IpMRouteNHopOctets.setStatus('current') hpicf_pim6_ip_m_route_n_hop_pkts = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 21, 1, 16), counter64()).setMaxAccess('readonly') if mibBuilder.loadTexts: hpicfPim6IpMRouteNHopPkts.setStatus('current') hpicf_pim6_neighbor_loss = notification_type((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 0, 1)) if mibBuilder.loadTexts: hpicfPim6NeighborLoss.setStatus('current') hpicf_pim6_hard_mrt_full = notification_type((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 0, 2)) if mibBuilder.loadTexts: hpicfPim6HardMRTFull.setStatus('current') hpicf_pim6_soft_mrt_full = notification_type((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 0, 3)) if mibBuilder.loadTexts: hpicfPim6SoftMRTFull.setStatus('current') hpicf_pim6_dense_mib_compliance = module_compliance((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 2, 2, 1)).setObjects(('HP-ICF-PIM6', 'hpicfPim6BaseGroup'), ('HP-ICF-PIM6', 'hpicfPim6DenseIfGroup')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): hpicf_pim6_dense_mib_compliance = hpicfPim6DenseMIBCompliance.setStatus('deprecated') hpicf_pim6_ucast_routing_compliance = module_compliance((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 2, 2, 2)).setObjects(('HP-ICF-PIM6', 'hpicfPim6StaticRpfExtensionsGroup')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): hpicf_pim6_ucast_routing_compliance = hpicfPim6UcastRoutingCompliance.setStatus('current') hpicf_pim6_global_counters_compliance = module_compliance((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 2, 2, 3)).setObjects(('HP-ICF-PIM6', 'hpicfPim6GlobalCounterGroup')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): hpicf_pim6_global_counters_compliance = hpicfPim6GlobalCountersCompliance.setStatus('current') hpicf_pim6_interface_info_compliance = module_compliance((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 2, 2, 4)).setObjects(('HP-ICF-PIM6', 'hpicfPim6InterfaceExtensionsGroup')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): hpicf_pim6_interface_info_compliance = hpicfPim6InterfaceInfoCompliance.setStatus('current') hpicf_pim6_notification_compliance = module_compliance((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 2, 2, 5)).setObjects(('HP-ICF-PIM6', 'hpicfPim6NotificationGroup')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): hpicf_pim6_notification_compliance = hpicfPim6NotificationCompliance.setStatus('current') hpicf_pim6_sparse_mode_mib_compliance = module_compliance((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 2, 2, 6)).setObjects(('HP-ICF-PIM6', 'hpicfPim6CommonGroup'), ('HP-ICF-PIM6', 'hpicfPim6StaticRPSetGroup'), ('HP-ICF-PIM6', 'hpicfPim6SparseIfGroup'), ('HP-ICF-PIM6', 'hpicfPim6CandidateRPGroup'), ('HP-ICF-PIM6', 'hpicfPim6ComponentGroup'), ('HP-ICF-PIM6', 'hpicfPim6NeighborGroup'), ('HP-ICF-PIM6', 'hpicfPim6RPSetGroup'), ('HP-ICF-PIM6', 'hpicfPim6MRouteGroup'), ('HP-ICF-PIM6', 'hpicfPim6MRouteNHopGroup')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): hpicf_pim6_sparse_mode_mib_compliance = hpicfPim6SparseModeMIBCompliance.setStatus('current') hpicf_pim6_dense_mode_mib_compliance = module_compliance((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 2, 2, 7)).setObjects(('HP-ICF-PIM6', 'hpicfPim6CommonGroup'), ('HP-ICF-PIM6', 'hpicfPim6DenseIfGroup'), ('HP-ICF-PIM6', 'hpicfPim6MRouteGroup'), ('HP-ICF-PIM6', 'hpicfPim6MRouteNHopGroup')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): hpicf_pim6_dense_mode_mib_compliance = hpicfPim6DenseModeMIBCompliance.setStatus('current') hpicf_pim6_base_group = object_group((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 2, 1, 1)).setObjects(('HP-ICF-PIM6', 'hpicfPim6AdminStatus'), ('HP-ICF-PIM6', 'hpicfPim6StateRefreshInterval'), ('HP-ICF-PIM6', 'hpicfPim6TrapControl'), ('HP-ICF-PIM6', 'hpicfPim6JoinPruneInterval'), ('HP-ICF-PIM6', 'hpicfPim6RemoveConfig')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): hpicf_pim6_base_group = hpicfPim6BaseGroup.setStatus('deprecated') hpicf_pim6_dense_if_group = object_group((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 2, 1, 2)).setObjects(('HP-ICF-PIM6', 'hpicfPim6IfAddressType'), ('HP-ICF-PIM6', 'hpicfPim6IfAddress'), ('HP-ICF-PIM6', 'hpicfPim6IfMode'), ('HP-ICF-PIM6', 'hpicfPim6IfStatus'), ('HP-ICF-PIM6', 'hpicfPim6IfTrigHelloInterval'), ('HP-ICF-PIM6', 'hpicfPim6IfHelloInterval'), ('HP-ICF-PIM6', 'hpicfPim6IfHelloHoldtime'), ('HP-ICF-PIM6', 'hpicfPim6IfLanPruneDelay'), ('HP-ICF-PIM6', 'hpicfPim6IfPropagationDelay'), ('HP-ICF-PIM6', 'hpicfPim6IfOverrideInterval'), ('HP-ICF-PIM6', 'hpicfPim6IfGenerationID'), ('HP-ICF-PIM6', 'hpicfPim6IfJoinPruneHoldtime'), ('HP-ICF-PIM6', 'hpicfPim6IfGraftRetryInterval'), ('HP-ICF-PIM6', 'hpicfPim6IfMaxGraftRetries'), ('HP-ICF-PIM6', 'hpicfPim6IfSRTTLThreshold'), ('HP-ICF-PIM6', 'hpicfPim6IfLanDelayEnabled'), ('HP-ICF-PIM6', 'hpicfPim6IfSRCapable'), ('HP-ICF-PIM6', 'hpicfPim6IfNBRTimeout')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): hpicf_pim6_dense_if_group = hpicfPim6DenseIfGroup.setStatus('current') hpicf_pim6_interface_extensions_group = object_group((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 2, 1, 3)).setObjects(('HP-ICF-PIM6', 'hpicfPim6Version'), ('HP-ICF-PIM6', 'hpicfPim6IfNBRCount'), ('HP-ICF-PIM6', 'hpicfPim6IfNegotiatedPropagationDelay'), ('HP-ICF-PIM6', 'hpicfPim6IfNegotiatedOverrideInterval'), ('HP-ICF-PIM6', 'hpicfPim6IfAssertHoldInterval'), ('HP-ICF-PIM6', 'hpicfPim6IfNumRoutersNotUsingLanDelay')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): hpicf_pim6_interface_extensions_group = hpicfPim6InterfaceExtensionsGroup.setStatus('current') hpicf_pim6_static_rpf_extensions_group = object_group((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 2, 1, 4)).setObjects(('HP-ICF-PIM6', 'hpicfPim6NumStaticRpfEntries')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): hpicf_pim6_static_rpf_extensions_group = hpicfPim6StaticRpfExtensionsGroup.setStatus('current') hpicf_pim6_global_counter_group = object_group((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 2, 1, 5)).setObjects(('HP-ICF-PIM6', 'hpicfPim6StarGEntries'), ('HP-ICF-PIM6', 'hpicfPim6SGEntries'), ('HP-ICF-PIM6', 'hpicfPim6TotalNeighborCount')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): hpicf_pim6_global_counter_group = hpicfPim6GlobalCounterGroup.setStatus('current') hpicf_pim6_notification_group = notification_group((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 2, 1, 6)).setObjects(('HP-ICF-PIM6', 'hpicfPim6NeighborLoss'), ('HP-ICF-PIM6', 'hpicfPim6HardMRTFull'), ('HP-ICF-PIM6', 'hpicfPim6SoftMRTFull')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): hpicf_pim6_notification_group = hpicfPim6NotificationGroup.setStatus('current') hpicf_pim6_static_rp_set_group = object_group((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 2, 1, 7)).setObjects(('HP-ICF-PIM6', 'hpicfPim6StaticRPSetOverride'), ('HP-ICF-PIM6', 'hpicfPim6StaticRPSetRowStatus')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): hpicf_pim6_static_rp_set_group = hpicfPim6StaticRPSetGroup.setStatus('current') hpicf_pim6_candidate_rp_group = object_group((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 2, 1, 8)).setObjects(('HP-ICF-PIM6', 'hpicfPim6CandidateRPAddressType'), ('HP-ICF-PIM6', 'hpicfPim6CandidateRPAddress'), ('HP-ICF-PIM6', 'hpicfPim6CandidateRPRowStatus')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): hpicf_pim6_candidate_rp_group = hpicfPim6CandidateRPGroup.setStatus('current') hpicf_pim6_component_group = object_group((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 2, 1, 9)).setObjects(('HP-ICF-PIM6', 'hpicfPim6ComponentBSRAddrType'), ('HP-ICF-PIM6', 'hpicfPim6ComponentBSRAddress'), ('HP-ICF-PIM6', 'hpicfPim6ComponentBSRExpiryTime'), ('HP-ICF-PIM6', 'hpicfPim6ComponentCRPHoldTime'), ('HP-ICF-PIM6', 'hpicfPim6ComponentStatus'), ('HP-ICF-PIM6', 'hpicfPim6ComponentCBSRAdmStatus'), ('HP-ICF-PIM6', 'hpicfPim6ComponentCBSRAddrType'), ('HP-ICF-PIM6', 'hpicfPim6ComponentCBSRAddress'), ('HP-ICF-PIM6', 'hpicfPim6ComponentCBSRPriority'), ('HP-ICF-PIM6', 'hpicfPim6ComponentCBSRHashMskLen'), ('HP-ICF-PIM6', 'hpicfPim6ComponentCBSRMsgInt'), ('HP-ICF-PIM6', 'hpicfPim6ComponentCRPPriority'), ('HP-ICF-PIM6', 'hpicfPim6ComponentCRPAdvInterval'), ('HP-ICF-PIM6', 'hpicfPim6ComponentBSRPriority'), ('HP-ICF-PIM6', 'hpicfPim6ComponentBSRHashMskLen'), ('HP-ICF-PIM6', 'hpicfPim6ComponentBSRUpTime'), ('HP-ICF-PIM6', 'hpicfPim6ComponentBSRNextMessage'), ('HP-ICF-PIM6', 'hpicfPim6ComponentCRPAdvTimer')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): hpicf_pim6_component_group = hpicfPim6ComponentGroup.setStatus('current') hpicf_pim6_common_group = object_group((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 2, 1, 10)).setObjects(('HP-ICF-PIM6', 'hpicfPim6AdminStatus'), ('HP-ICF-PIM6', 'hpicfPim6StateRefreshInterval'), ('HP-ICF-PIM6', 'hpicfPim6TrapControl'), ('HP-ICF-PIM6', 'hpicfPim6JoinPruneInterval'), ('HP-ICF-PIM6', 'hpicfPim6RemoveConfig'), ('HP-ICF-PIM6', 'hpicfPim6SPTThreshold'), ('HP-ICF-PIM6', 'hpicfPim6IpMcastEnabled'), ('HP-ICF-PIM6', 'hpicfPim6IpMcastRouteEntryCount')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): hpicf_pim6_common_group = hpicfPim6CommonGroup.setStatus('current') hpicf_pim6_sparse_if_group = object_group((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 2, 1, 11)).setObjects(('HP-ICF-PIM6', 'hpicfPim6IfAddressType'), ('HP-ICF-PIM6', 'hpicfPim6IfAddress'), ('HP-ICF-PIM6', 'hpicfPim6IfTrigHelloInterval'), ('HP-ICF-PIM6', 'hpicfPim6IfHelloHoldtime'), ('HP-ICF-PIM6', 'hpicfPim6IfLanPruneDelay'), ('HP-ICF-PIM6', 'hpicfPim6IfPropagationDelay'), ('HP-ICF-PIM6', 'hpicfPim6IfOverrideInterval'), ('HP-ICF-PIM6', 'hpicfPim6IfGenerationID'), ('HP-ICF-PIM6', 'hpicfPim6IfJoinPruneHoldtime'), ('HP-ICF-PIM6', 'hpicfPim6IfLanDelayEnabled'), ('HP-ICF-PIM6', 'hpicfPim6IfDRPriority'), ('HP-ICF-PIM6', 'hpicfPim6IfNBRTimeout'), ('HP-ICF-PIM6', 'hpicfPim6IfDRType'), ('HP-ICF-PIM6', 'hpicfPim6IfDR')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): hpicf_pim6_sparse_if_group = hpicfPim6SparseIfGroup.setStatus('current') hpicf_pim6_neighbor_group = object_group((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 2, 1, 12)).setObjects(('HP-ICF-PIM6', 'hpicfPim6NeighborGenIDPresent'), ('HP-ICF-PIM6', 'hpicfPim6NeighborGenIDValue'), ('HP-ICF-PIM6', 'hpicfPim6NeighborUpTime'), ('HP-ICF-PIM6', 'hpicfPim6NeighborExpiryTime'), ('HP-ICF-PIM6', 'hpicfPim6NeighborDRPrioPresent'), ('HP-ICF-PIM6', 'hpicfPim6NeighborDRPriority'), ('HP-ICF-PIM6', 'hpicfPim6NeighborLanPruneDlyPres')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): hpicf_pim6_neighbor_group = hpicfPim6NeighborGroup.setStatus('current') hpicf_pim6_rp_set_group = object_group((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 2, 1, 13)).setObjects(('HP-ICF-PIM6', 'hpicfPim6RPSetHoldTime'), ('HP-ICF-PIM6', 'hpicfPim6RPSetExpiryTime')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): hpicf_pim6_rp_set_group = hpicfPim6RPSetGroup.setStatus('current') hpicf_pim6_m_route_group = object_group((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 2, 1, 14)).setObjects(('HP-ICF-PIM6', 'hpicfPim6IpMRouteUpstrNbrType'), ('HP-ICF-PIM6', 'hpicfPim6IpMRouteUpstrNbr'), ('HP-ICF-PIM6', 'hpicfPim6IpMRouteInIfIndex'), ('HP-ICF-PIM6', 'hpicfPim6IpMRouteTimeStamp'), ('HP-ICF-PIM6', 'hpicfPim6IpMRouteExpiryTime'), ('HP-ICF-PIM6', 'hpicfPim6IpMRouteProtocol'), ('HP-ICF-PIM6', 'hpicfPim6IpMRouteRtProtocol'), ('HP-ICF-PIM6', 'hpicfPim6IpMRouteRtAddrType'), ('HP-ICF-PIM6', 'hpicfPim6IpMRouteRtAddress'), ('HP-ICF-PIM6', 'hpicfPim6IpMRouteRtPrefixLen'), ('HP-ICF-PIM6', 'hpicfPim6IpMRouteRtType'), ('HP-ICF-PIM6', 'hpicfPim6IpMRouteOctets'), ('HP-ICF-PIM6', 'hpicfPim6IpMRoutePkts'), ('HP-ICF-PIM6', 'hpicfPim6IpMRouteTtlDropOct'), ('HP-ICF-PIM6', 'hpicfPim6IpMRouteTtlDropPkts'), ('HP-ICF-PIM6', 'hpicfPim6IpMRouteDiffInIfOct'), ('HP-ICF-PIM6', 'hpicfPim6IpMRouteDiffInIfPkts'), ('HP-ICF-PIM6', 'hpicfPim6IpMRouteBps')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): hpicf_pim6_m_route_group = hpicfPim6MRouteGroup.setStatus('current') hpicf_pim6_m_route_n_hop_group = object_group((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 2, 1, 15)).setObjects(('HP-ICF-PIM6', 'hpicfPim6IpMRouteNHopState'), ('HP-ICF-PIM6', 'hpicfPim6IpMRouteNHopTStamp'), ('HP-ICF-PIM6', 'hpicfPim6IpMRouteNHopExpTime'), ('HP-ICF-PIM6', 'hpicfPim6IpMRouteNHopClsMHops'), ('HP-ICF-PIM6', 'hpicfPim6IpMRouteNHopProtocol'), ('HP-ICF-PIM6', 'hpicfPim6IpMRouteNHopOctets'), ('HP-ICF-PIM6', 'hpicfPim6IpMRouteNHopPkts')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): hpicf_pim6_m_route_n_hop_group = hpicfPim6MRouteNHopGroup.setStatus('current') mibBuilder.exportSymbols('HP-ICF-PIM6', hpicfPim6BaseGroup=hpicfPim6BaseGroup, hpicfPim6ComponentIndex=hpicfPim6ComponentIndex, hpicfPim6IpMRouteNHopEntry=hpicfPim6IpMRouteNHopEntry, hpicfPim6Conformance=hpicfPim6Conformance, hpicfPim6ComponentBSRUpTime=hpicfPim6ComponentBSRUpTime, hpicfPim6CandidateRPGrpAddrType=hpicfPim6CandidateRPGrpAddrType, hpicfPim6NeighborAddressType=hpicfPim6NeighborAddressType, hpicfPim6TotalNeighborCount=hpicfPim6TotalNeighborCount, hpicfPim6IfNegotiatedPropagationDelay=hpicfPim6IfNegotiatedPropagationDelay, hpicfPim6NeighborEntry=hpicfPim6NeighborEntry, hpicfPim6IfLanDelayEnabled=hpicfPim6IfLanDelayEnabled, hpicfPim6ComponentStatus=hpicfPim6ComponentStatus, hpicfPim6ComponentBSRAddrType=hpicfPim6ComponentBSRAddrType, hpicfPim6NeighborUpTime=hpicfPim6NeighborUpTime, hpicfPim6MRouteNHopGroup=hpicfPim6MRouteNHopGroup, hpicfPim6IfDR=hpicfPim6IfDR, hpicfPim6NeighborLoss=hpicfPim6NeighborLoss, hpicfPim6RPSetGroupAddress=hpicfPim6RPSetGroupAddress, hpicfPim6RPSetAddressType=hpicfPim6RPSetAddressType, hpicfPim6SPTThreshold=hpicfPim6SPTThreshold, hpicfPim6CandidateRPGroup=hpicfPim6CandidateRPGroup, hpicfPim6InterfaceInfoCompliance=hpicfPim6InterfaceInfoCompliance, hpicfPim6StateRefreshInterval=hpicfPim6StateRefreshInterval, hpicfPim6SparseIfGroup=hpicfPim6SparseIfGroup, hpicfPim6IpMRouteBps=hpicfPim6IpMRouteBps, hpicfPim6AdminStatus=hpicfPim6AdminStatus, hpicfPim6ComponentCBSRPriority=hpicfPim6ComponentCBSRPriority, hpicfPim6IpMRouteExpiryTime=hpicfPim6IpMRouteExpiryTime, hpicfPim6Traps=hpicfPim6Traps, hpicfPim6DenseModeMIBCompliance=hpicfPim6DenseModeMIBCompliance, hpicfPim6CandidateRPTable=hpicfPim6CandidateRPTable, hpicfPim6IpMRouteTtlDropOct=hpicfPim6IpMRouteTtlDropOct, hpicfPim6ComponentBSRExpiryTime=hpicfPim6ComponentBSRExpiryTime, hpicfPim6IpMRouteNHopGrpPLen=hpicfPim6IpMRouteNHopGrpPLen, hpicfPim6RPSetGroupMaskType=hpicfPim6RPSetGroupMaskType, hpicfPim6ComponentCRPAdvInterval=hpicfPim6ComponentCRPAdvInterval, hpicfPim6NeighborIfIndex=hpicfPim6NeighborIfIndex, hpicfPim6ComponentTable=hpicfPim6ComponentTable, hpicfPim6CandidateRPGroupMask=hpicfPim6CandidateRPGroupMask, hpicfPim6IpMRouteNHopOctets=hpicfPim6IpMRouteNHopOctets, hpicfPim6IpMRouteUpstrNbrType=hpicfPim6IpMRouteUpstrNbrType, hpicfPim6IpMRouteDiffInIfPkts=hpicfPim6IpMRouteDiffInIfPkts, hpicfPim6ComponentBSRNextMessage=hpicfPim6ComponentBSRNextMessage, hpicfPim6IfGraftRetryInterval=hpicfPim6IfGraftRetryInterval, hpicfPim6CandidateRPEntry=hpicfPim6CandidateRPEntry, hpicfPim6IpMRouteNHopGroup=hpicfPim6IpMRouteNHopGroup, hpicfPim6SparseModeMIBCompliance=hpicfPim6SparseModeMIBCompliance, hpicfPim6IfLanPruneDelay=hpicfPim6IfLanPruneDelay, hpicfPim6StarGEntries=hpicfPim6StarGEntries, hpicfPim6StaticRPSetAddress=hpicfPim6StaticRPSetAddress, hpicfPim6IfHelloHoldtime=hpicfPim6IfHelloHoldtime, hpicfPim6IpMRouteProtocol=hpicfPim6IpMRouteProtocol, hpicfPim6IfDRType=hpicfPim6IfDRType, hpicfPim6IpMRouteInIfIndex=hpicfPim6IpMRouteInIfIndex, hpicfPim6CandidateRPGroupAddress=hpicfPim6CandidateRPGroupAddress, hpicfPim6IfEntry=hpicfPim6IfEntry, hpicfPim6RPSetHoldTime=hpicfPim6RPSetHoldTime, hpicfPim6IfTrigHelloInterval=hpicfPim6IfTrigHelloInterval, hpicfPim6Groups=hpicfPim6Groups, hpicfPim6IpMRouteGrpAddrType=hpicfPim6IpMRouteGrpAddrType, hpicfPim6CandidateRPGrpMskType=hpicfPim6CandidateRPGrpMskType, hpicfPim6IpMRouteDiffInIfOct=hpicfPim6IpMRouteDiffInIfOct, hpicfPim6IpMRouteSrcAddrType=hpicfPim6IpMRouteSrcAddrType, hpicfPim6IpMRouteNHopClsMHops=hpicfPim6IpMRouteNHopClsMHops, hpicfPim6IfNumRoutersNotUsingLanDelay=hpicfPim6IfNumRoutersNotUsingLanDelay, hpicfPim6IpMRouteNHopState=hpicfPim6IpMRouteNHopState, hpicfPim6IfTable=hpicfPim6IfTable, hpicfPim6StaticRPSetAddressType=hpicfPim6StaticRPSetAddressType, hpicfPim6IpMRouteRtPrefixLen=hpicfPim6IpMRouteRtPrefixLen, hpicfPim6HardMRTFull=hpicfPim6HardMRTFull, hpicfPim6IpMRouteRtAddress=hpicfPim6IpMRouteRtAddress, hpicfPim6ComponentGroup=hpicfPim6ComponentGroup, hpicfPim6StaticRPSetGroupAddress=hpicfPim6StaticRPSetGroupAddress, hpicfPim6RPSetTable=hpicfPim6RPSetTable, hpicfPim6IfAddressType=hpicfPim6IfAddressType, hpicfPim6StaticRPSetRowStatus=hpicfPim6StaticRPSetRowStatus, hpicfPim6IpMRouteNHopAddress=hpicfPim6IpMRouteNHopAddress, hpicfPim6NotificationGroup=hpicfPim6NotificationGroup, hpicfPim6MRouteGroup=hpicfPim6MRouteGroup, hpicfPim6=hpicfPim6, hpicfPim6StaticRPSetEntry=hpicfPim6StaticRPSetEntry, hpicfPim6IpMcastEnabled=hpicfPim6IpMcastEnabled, hpicfPim6NotificationCompliance=hpicfPim6NotificationCompliance, hpicfPim6CandidateRPAddress=hpicfPim6CandidateRPAddress, hpicfPim6IfAssertHoldInterval=hpicfPim6IfAssertHoldInterval, hpicfPim6InterfaceExtensionsGroup=hpicfPim6InterfaceExtensionsGroup, hpicfPim6RemoveConfig=hpicfPim6RemoveConfig, hpicfPim6JoinPruneInterval=hpicfPim6JoinPruneInterval, hpicfPim6NeighborDRPrioPresent=hpicfPim6NeighborDRPrioPresent, hpicfPim6StaticRPSetGrpAddrType=hpicfPim6StaticRPSetGrpAddrType, hpicfPim6IfStatus=hpicfPim6IfStatus, hpicfPim6IfNBRCount=hpicfPim6IfNBRCount, hpicfPim6ComponentCBSRHashMskLen=hpicfPim6ComponentCBSRHashMskLen, hpicfPim6IpMRouteTimeStamp=hpicfPim6IpMRouteTimeStamp, hpicfPim6RPSetGroupAddressType=hpicfPim6RPSetGroupAddressType, hpicfPim6ComponentEntry=hpicfPim6ComponentEntry, hpicfPim6RPSetExpiryTime=hpicfPim6RPSetExpiryTime, hpicfPim6IpMRouteTtlDropPkts=hpicfPim6IpMRouteTtlDropPkts, hpicfPim6SGEntries=hpicfPim6SGEntries, hpicfPim6IpMRouteNHopSource=hpicfPim6IpMRouteNHopSource, hpicfPim6NeighborAddress=hpicfPim6NeighborAddress, hpicfPim6IpMRouteNHopAddrType=hpicfPim6IpMRouteNHopAddrType, hpicfPim6IfSRTTLThreshold=hpicfPim6IfSRTTLThreshold, hpicfPim6StaticRPSetOverride=hpicfPim6StaticRPSetOverride, hpicfPim6IfSRCapable=hpicfPim6IfSRCapable, hpicfPim6ComponentBSRHashMskLen=hpicfPim6ComponentBSRHashMskLen, hpicfPim6IfPropagationDelay=hpicfPim6IfPropagationDelay, hpicfPim6IpMRouteTable=hpicfPim6IpMRouteTable, hpicfPim6IfDRPriority=hpicfPim6IfDRPriority, hpicfPim6IfOverrideInterval=hpicfPim6IfOverrideInterval, hpicfPim6MIB=hpicfPim6MIB, hpicfPim6IpMRouteNHopTStamp=hpicfPim6IpMRouteNHopTStamp, PYSNMP_MODULE_ID=hpicfPim6MIB, hpicfPim6IpMRouteRtProtocol=hpicfPim6IpMRouteRtProtocol, hpicfPim6StaticRPSetGrpMskType=hpicfPim6StaticRPSetGrpMskType, hpicfPim6ComponentBSRAddress=hpicfPim6ComponentBSRAddress, hpicfPim6IfIndex=hpicfPim6IfIndex, hpicfPim6IpMRouteNHopExpTime=hpicfPim6IpMRouteNHopExpTime, hpicfPim6DenseIfGroup=hpicfPim6DenseIfGroup, hpicfPim6StaticRpfExtensionsGroup=hpicfPim6StaticRpfExtensionsGroup, hpicfPim6IpMRouteNHopSrcAddrType=hpicfPim6IpMRouteNHopSrcAddrType, hpicfPim6IpMRouteSrcPrefixLen=hpicfPim6IpMRouteSrcPrefixLen, hpicfPim6IfGenerationID=hpicfPim6IfGenerationID, hpicfPim6Compliances=hpicfPim6Compliances, hpicfPim6IfHelloInterval=hpicfPim6IfHelloInterval, hpicfPim6IpMcastRouteEntryCount=hpicfPim6IpMcastRouteEntryCount, hpicfPim6StaticRPSetGroupMask=hpicfPim6StaticRPSetGroupMask, hpicfPim6IfJoinPruneHoldtime=hpicfPim6IfJoinPruneHoldtime, hpicfPim6ComponentCBSRMsgInt=hpicfPim6ComponentCBSRMsgInt, hpicfPim6RPSetGroup=hpicfPim6RPSetGroup, hpicfPim6IpMRouteNHopPkts=hpicfPim6IpMRouteNHopPkts, hpicfPim6IfNegotiatedOverrideInterval=hpicfPim6IfNegotiatedOverrideInterval, hpicfPim6GlobalCounterGroup=hpicfPim6GlobalCounterGroup, hpicfPim6NeighborDRPriority=hpicfPim6NeighborDRPriority, hpicfPim6TrapControl=hpicfPim6TrapControl, hpicfPim6RPSetGroupMask=hpicfPim6RPSetGroupMask, hpicfPim6IpMRouteRtAddrType=hpicfPim6IpMRouteRtAddrType, hpicfPim6IpMRouteOctets=hpicfPim6IpMRouteOctets, hpicfPim6CandidateRPAddressType=hpicfPim6CandidateRPAddressType, hpicfPim6NeighborExpiryTime=hpicfPim6NeighborExpiryTime, hpicfPim6NeighborGroup=hpicfPim6NeighborGroup, hpicfPim6ComponentCBSRAdmStatus=hpicfPim6ComponentCBSRAdmStatus, hpicfPim6ComponentCBSRAddrType=hpicfPim6ComponentCBSRAddrType, hpicfPim6DenseMIBCompliance=hpicfPim6DenseMIBCompliance, hpicfPim6StaticRPSetTable=hpicfPim6StaticRPSetTable, hpicfPim6NeighborGenIDPresent=hpicfPim6NeighborGenIDPresent, hpicfPim6IfNBRTimeout=hpicfPim6IfNBRTimeout, hpicfPim6SoftMRTFull=hpicfPim6SoftMRTFull, hpicfPim6CommonGroup=hpicfPim6CommonGroup, hpicfPim6IpMRoutePkts=hpicfPim6IpMRoutePkts, hpicfPim6IpMRouteNHopTable=hpicfPim6IpMRouteNHopTable, hpicfPim6NeighborTable=hpicfPim6NeighborTable, hpicfPim6RPSetAddress=hpicfPim6RPSetAddress, hpicfPim6IpMRouteGrpPrefixLen=hpicfPim6IpMRouteGrpPrefixLen, hpicfPim6ComponentCRPAdvTimer=hpicfPim6ComponentCRPAdvTimer, hpicfPim6NumStaticRpfEntries=hpicfPim6NumStaticRpfEntries, hpicfPim6IpMRouteSource=hpicfPim6IpMRouteSource, hpicfPim6IfMaxGraftRetries=hpicfPim6IfMaxGraftRetries, hpicfPim6IpMRouteNHopIfIndex=hpicfPim6IpMRouteNHopIfIndex, hpicfPim6IpMRouteUpstrNbr=hpicfPim6IpMRouteUpstrNbr, hpicfPim6UcastRoutingCompliance=hpicfPim6UcastRoutingCompliance, hpicfPim6IfMode=hpicfPim6IfMode, hpicfPim6ComponentCRPPriority=hpicfPim6ComponentCRPPriority, hpicfPim6IfAddress=hpicfPim6IfAddress, hpicfPim6IpMRouteNHopSrcPLen=hpicfPim6IpMRouteNHopSrcPLen, hpicfPim6IpMRouteEntry=hpicfPim6IpMRouteEntry, hpicfPim6IpMRouteNHopProtocol=hpicfPim6IpMRouteNHopProtocol, hpicfPim6Objects=hpicfPim6Objects, hpicfPim6Version=hpicfPim6Version, hpicfPim6IpMRouteRtType=hpicfPim6IpMRouteRtType, hpicfPim6IpMRouteGroup=hpicfPim6IpMRouteGroup, hpicfPim6StaticRPSetGroup=hpicfPim6StaticRPSetGroup, hpicfPim6NeighborGenIDValue=hpicfPim6NeighborGenIDValue, hpicfPim6GlobalCountersCompliance=hpicfPim6GlobalCountersCompliance, hpicfPim6ComponentCBSRAddress=hpicfPim6ComponentCBSRAddress, hpicfPim6ComponentBSRPriority=hpicfPim6ComponentBSRPriority, hpicfPim6NeighborLanPruneDlyPres=hpicfPim6NeighborLanPruneDlyPres, hpicfPim6ComponentCRPHoldTime=hpicfPim6ComponentCRPHoldTime, hpicfPim6IpMRouteNHopGrpAddrType=hpicfPim6IpMRouteNHopGrpAddrType, hpicfPim6CandidateRPRowStatus=hpicfPim6CandidateRPRowStatus, hpicfPim6RPSetEntry=hpicfPim6RPSetEntry)
with open('input', 'r') as fd: groups = fd.read().strip().split('\n\n') def count_shared_chars(raw_grp: str) -> int: grp = raw_grp.split('\n') return sum(1 if all(c in answer for answer in grp) else 0 for c in grp[0]) print(sum(count_shared_chars(group) for group in groups))
with open('input', 'r') as fd: groups = fd.read().strip().split('\n\n') def count_shared_chars(raw_grp: str) -> int: grp = raw_grp.split('\n') return sum((1 if all((c in answer for answer in grp)) else 0 for c in grp[0])) print(sum((count_shared_chars(group) for group in groups)))
""" PASSENGERS """ numPassengers = 19174 passenger_arriving = ( (8, 6, 8, 5, 3, 3, 3, 1, 2, 1, 1, 0, 0, 5, 6, 2, 2, 3, 2, 3, 0, 2, 1, 0, 0, 0), # 0 (5, 6, 5, 7, 4, 4, 1, 2, 5, 3, 2, 0, 0, 6, 5, 5, 4, 3, 4, 2, 3, 1, 2, 2, 0, 0), # 1 (12, 7, 6, 6, 4, 0, 0, 3, 3, 1, 0, 0, 0, 8, 5, 6, 1, 8, 5, 4, 1, 0, 0, 0, 1, 0), # 2 (7, 8, 5, 6, 3, 3, 6, 2, 1, 0, 0, 2, 0, 7, 5, 4, 4, 2, 4, 3, 2, 4, 3, 5, 1, 0), # 3 (9, 7, 4, 3, 7, 2, 5, 3, 4, 1, 2, 1, 0, 9, 7, 5, 7, 6, 5, 3, 0, 3, 4, 1, 0, 0), # 4 (7, 6, 6, 4, 10, 0, 2, 3, 3, 3, 0, 0, 0, 10, 6, 4, 5, 2, 3, 2, 1, 6, 2, 2, 1, 0), # 5 (4, 9, 6, 7, 7, 3, 2, 2, 3, 3, 1, 1, 0, 4, 10, 6, 5, 5, 4, 2, 2, 1, 0, 3, 2, 0), # 6 (10, 7, 12, 6, 5, 3, 3, 3, 2, 2, 0, 0, 0, 10, 4, 8, 3, 7, 1, 5, 2, 2, 3, 7, 2, 0), # 7 (13, 9, 10, 6, 4, 3, 7, 3, 6, 0, 3, 1, 0, 16, 6, 3, 2, 7, 3, 8, 1, 0, 3, 1, 2, 0), # 8 (5, 9, 6, 7, 3, 3, 3, 3, 5, 1, 0, 0, 0, 8, 2, 7, 7, 5, 1, 2, 0, 3, 2, 3, 1, 0), # 9 (8, 13, 4, 7, 4, 3, 3, 4, 3, 0, 1, 1, 0, 6, 6, 7, 4, 3, 6, 3, 1, 5, 2, 1, 2, 0), # 10 (3, 7, 10, 6, 3, 3, 3, 2, 4, 0, 0, 0, 0, 10, 3, 6, 8, 6, 6, 7, 0, 4, 0, 0, 0, 0), # 11 (5, 10, 6, 7, 5, 0, 3, 2, 4, 3, 0, 0, 0, 7, 6, 8, 6, 8, 3, 5, 2, 3, 1, 0, 1, 0), # 12 (12, 11, 10, 7, 7, 2, 4, 2, 2, 1, 3, 0, 0, 11, 7, 7, 5, 9, 7, 3, 1, 5, 4, 2, 0, 0), # 13 (14, 9, 5, 7, 6, 4, 3, 3, 2, 2, 2, 0, 0, 11, 5, 4, 3, 4, 5, 2, 3, 3, 6, 3, 1, 0), # 14 (8, 9, 7, 8, 8, 3, 5, 3, 2, 2, 2, 2, 0, 8, 6, 8, 2, 8, 6, 7, 3, 3, 4, 0, 1, 0), # 15 (7, 12, 3, 6, 10, 2, 1, 1, 3, 1, 3, 0, 0, 5, 7, 11, 4, 12, 2, 3, 3, 5, 1, 1, 0, 0), # 16 (10, 7, 6, 6, 6, 2, 5, 6, 3, 0, 0, 0, 0, 11, 9, 9, 5, 9, 8, 2, 3, 1, 3, 0, 1, 0), # 17 (10, 9, 6, 8, 10, 3, 1, 3, 0, 1, 3, 0, 0, 15, 7, 4, 2, 8, 3, 5, 1, 2, 3, 2, 1, 0), # 18 (13, 3, 8, 12, 8, 2, 3, 3, 3, 4, 1, 0, 0, 14, 5, 9, 2, 9, 6, 4, 2, 2, 2, 2, 0, 0), # 19 (11, 11, 11, 12, 6, 1, 3, 2, 6, 1, 1, 1, 0, 13, 7, 8, 6, 11, 5, 6, 2, 3, 4, 1, 3, 0), # 20 (6, 16, 10, 16, 7, 3, 8, 6, 2, 0, 0, 0, 0, 7, 5, 8, 8, 8, 1, 2, 0, 2, 5, 1, 0, 0), # 21 (5, 8, 5, 13, 14, 3, 6, 3, 3, 0, 1, 3, 0, 15, 9, 5, 4, 6, 4, 7, 3, 3, 3, 4, 1, 0), # 22 (10, 9, 9, 12, 10, 4, 5, 5, 2, 2, 3, 0, 0, 10, 10, 5, 3, 7, 6, 5, 4, 5, 2, 3, 1, 0), # 23 (7, 8, 9, 10, 3, 6, 7, 1, 4, 4, 0, 0, 0, 10, 11, 7, 6, 8, 5, 2, 2, 4, 4, 2, 0, 0), # 24 (8, 4, 11, 13, 9, 2, 4, 4, 6, 5, 0, 0, 0, 11, 17, 8, 8, 4, 5, 5, 5, 2, 1, 2, 2, 0), # 25 (10, 13, 12, 6, 10, 3, 3, 6, 6, 2, 4, 2, 0, 12, 17, 9, 4, 11, 6, 3, 7, 0, 5, 0, 0, 0), # 26 (9, 6, 17, 8, 3, 6, 3, 2, 3, 3, 3, 1, 0, 15, 10, 7, 5, 7, 9, 5, 4, 3, 4, 3, 1, 0), # 27 (9, 7, 6, 8, 5, 4, 3, 6, 6, 2, 3, 1, 0, 6, 10, 8, 6, 11, 8, 7, 3, 1, 2, 2, 1, 0), # 28 (10, 11, 10, 12, 6, 2, 8, 5, 6, 2, 1, 0, 0, 6, 6, 8, 6, 9, 10, 11, 3, 6, 2, 5, 1, 0), # 29 (12, 10, 10, 5, 8, 5, 5, 6, 1, 3, 5, 0, 0, 13, 6, 9, 7, 9, 2, 6, 3, 5, 5, 2, 0, 0), # 30 (10, 8, 6, 9, 12, 5, 10, 7, 3, 5, 1, 0, 0, 4, 5, 7, 11, 8, 4, 3, 1, 2, 6, 1, 2, 0), # 31 (18, 10, 8, 6, 4, 4, 3, 6, 5, 1, 0, 0, 0, 9, 8, 9, 6, 17, 5, 6, 2, 8, 3, 0, 1, 0), # 32 (5, 6, 9, 12, 9, 3, 8, 4, 2, 1, 1, 1, 0, 5, 14, 8, 7, 9, 7, 6, 5, 3, 3, 0, 0, 0), # 33 (12, 7, 7, 15, 6, 5, 4, 4, 3, 5, 2, 1, 0, 11, 9, 5, 7, 4, 7, 5, 4, 3, 2, 2, 1, 0), # 34 (13, 11, 11, 11, 10, 7, 6, 1, 3, 5, 0, 1, 0, 9, 6, 8, 6, 8, 5, 7, 1, 2, 6, 1, 1, 0), # 35 (11, 10, 8, 8, 7, 8, 5, 2, 5, 1, 0, 2, 0, 10, 10, 2, 7, 7, 4, 2, 5, 5, 6, 2, 3, 0), # 36 (12, 12, 9, 7, 8, 5, 5, 1, 4, 2, 4, 2, 0, 11, 7, 7, 6, 9, 3, 2, 2, 5, 2, 1, 0, 0), # 37 (14, 9, 8, 7, 8, 1, 7, 8, 0, 4, 1, 1, 0, 12, 9, 0, 6, 9, 8, 3, 1, 1, 2, 0, 0, 0), # 38 (8, 9, 7, 9, 4, 4, 2, 3, 2, 2, 0, 1, 0, 9, 5, 9, 8, 3, 4, 6, 3, 4, 2, 3, 0, 0), # 39 (9, 12, 4, 14, 7, 5, 2, 2, 5, 2, 3, 2, 0, 12, 5, 7, 10, 10, 4, 5, 5, 3, 3, 2, 0, 0), # 40 (16, 13, 6, 12, 9, 4, 4, 3, 1, 2, 1, 0, 0, 14, 9, 11, 7, 7, 6, 1, 4, 2, 2, 2, 3, 0), # 41 (15, 10, 10, 7, 12, 3, 7, 6, 4, 0, 3, 2, 0, 10, 10, 9, 9, 4, 5, 2, 4, 5, 4, 0, 0, 0), # 42 (11, 9, 5, 11, 9, 4, 8, 4, 5, 2, 2, 2, 0, 7, 3, 4, 3, 7, 7, 3, 1, 4, 2, 1, 0, 0), # 43 (6, 4, 8, 7, 7, 4, 2, 1, 2, 3, 0, 2, 0, 7, 10, 5, 7, 7, 8, 2, 4, 6, 0, 2, 1, 0), # 44 (16, 14, 6, 14, 14, 2, 1, 2, 7, 3, 2, 0, 0, 12, 8, 8, 8, 8, 3, 6, 2, 3, 4, 2, 0, 0), # 45 (13, 10, 5, 3, 9, 1, 3, 5, 6, 2, 1, 1, 0, 10, 8, 6, 3, 13, 4, 4, 1, 6, 3, 0, 1, 0), # 46 (8, 10, 10, 14, 10, 3, 5, 6, 2, 1, 0, 1, 0, 9, 6, 7, 9, 10, 4, 3, 0, 6, 4, 0, 0, 0), # 47 (9, 10, 5, 10, 6, 6, 8, 4, 4, 0, 2, 1, 0, 11, 7, 5, 7, 12, 2, 3, 1, 3, 5, 2, 0, 0), # 48 (1, 8, 14, 7, 8, 1, 6, 2, 2, 1, 2, 1, 0, 10, 5, 6, 6, 11, 5, 2, 3, 1, 2, 1, 0, 0), # 49 (8, 11, 9, 13, 6, 4, 5, 4, 1, 3, 2, 0, 0, 5, 13, 1, 5, 8, 2, 4, 1, 4, 2, 1, 0, 0), # 50 (8, 10, 8, 8, 6, 4, 7, 1, 2, 2, 0, 2, 0, 10, 5, 3, 4, 16, 6, 2, 1, 6, 1, 2, 2, 0), # 51 (15, 3, 9, 6, 9, 2, 7, 5, 5, 0, 2, 1, 0, 8, 9, 5, 5, 9, 8, 5, 3, 5, 6, 3, 0, 0), # 52 (8, 5, 7, 10, 10, 2, 2, 6, 6, 3, 0, 1, 0, 11, 8, 6, 6, 6, 7, 4, 4, 5, 4, 0, 2, 0), # 53 (9, 10, 8, 9, 11, 6, 3, 4, 4, 1, 0, 1, 0, 12, 7, 7, 5, 5, 4, 4, 0, 1, 2, 1, 0, 0), # 54 (11, 8, 9, 11, 9, 5, 2, 5, 7, 1, 3, 2, 0, 18, 10, 10, 6, 7, 13, 1, 6, 5, 0, 1, 0, 0), # 55 (6, 11, 3, 6, 7, 4, 0, 5, 1, 0, 0, 1, 0, 11, 6, 4, 8, 5, 6, 3, 4, 3, 3, 0, 0, 0), # 56 (14, 13, 13, 9, 9, 6, 5, 3, 7, 1, 0, 1, 0, 10, 10, 8, 4, 7, 6, 5, 1, 2, 3, 1, 0, 0), # 57 (9, 13, 6, 10, 13, 1, 3, 2, 6, 5, 1, 1, 0, 10, 9, 9, 4, 7, 11, 1, 4, 4, 6, 0, 0, 0), # 58 (9, 5, 7, 10, 7, 2, 1, 4, 7, 1, 0, 0, 0, 8, 6, 1, 7, 9, 4, 4, 2, 3, 3, 1, 0, 0), # 59 (9, 14, 10, 13, 13, 5, 4, 1, 2, 2, 3, 0, 0, 9, 4, 10, 5, 9, 2, 6, 3, 2, 2, 3, 1, 0), # 60 (9, 12, 2, 8, 9, 4, 2, 2, 5, 3, 1, 1, 0, 13, 6, 6, 5, 9, 4, 2, 2, 6, 4, 0, 0, 0), # 61 (9, 6, 12, 12, 3, 3, 1, 4, 4, 2, 1, 2, 0, 13, 10, 8, 6, 8, 9, 4, 2, 4, 6, 4, 1, 0), # 62 (15, 8, 9, 11, 8, 1, 6, 3, 3, 4, 1, 2, 0, 17, 7, 9, 2, 10, 0, 2, 1, 3, 5, 3, 4, 0), # 63 (11, 7, 7, 6, 9, 5, 3, 6, 4, 1, 3, 1, 0, 11, 8, 7, 6, 9, 6, 4, 4, 5, 3, 3, 1, 0), # 64 (9, 8, 3, 4, 5, 2, 5, 2, 3, 3, 0, 2, 0, 7, 6, 8, 3, 6, 4, 4, 2, 5, 1, 1, 0, 0), # 65 (6, 5, 12, 7, 11, 3, 1, 1, 7, 0, 2, 1, 0, 14, 8, 7, 3, 9, 7, 6, 5, 1, 3, 3, 0, 0), # 66 (11, 5, 13, 6, 6, 4, 1, 2, 1, 2, 1, 0, 0, 11, 9, 4, 9, 5, 5, 4, 3, 4, 5, 1, 1, 0), # 67 (9, 8, 4, 12, 5, 1, 5, 4, 7, 2, 1, 0, 0, 12, 5, 5, 8, 6, 8, 4, 1, 4, 2, 1, 0, 0), # 68 (10, 11, 8, 8, 6, 3, 5, 1, 1, 4, 0, 0, 0, 10, 5, 6, 2, 14, 6, 3, 7, 5, 0, 1, 1, 0), # 69 (14, 8, 5, 4, 7, 5, 3, 2, 4, 1, 1, 2, 0, 8, 13, 8, 7, 9, 4, 4, 1, 4, 3, 3, 2, 0), # 70 (8, 9, 8, 9, 3, 3, 6, 3, 2, 3, 5, 0, 0, 9, 4, 2, 3, 9, 2, 3, 1, 3, 3, 2, 2, 0), # 71 (11, 8, 6, 5, 7, 4, 3, 1, 2, 1, 3, 1, 0, 15, 10, 3, 7, 9, 4, 3, 0, 5, 7, 3, 1, 0), # 72 (7, 13, 5, 8, 5, 3, 2, 5, 5, 5, 0, 2, 0, 10, 6, 5, 10, 11, 4, 3, 0, 2, 1, 2, 0, 0), # 73 (7, 9, 9, 7, 12, 5, 3, 3, 5, 1, 2, 1, 0, 8, 7, 6, 10, 6, 2, 2, 2, 7, 1, 1, 1, 0), # 74 (11, 7, 8, 6, 4, 2, 2, 3, 3, 2, 0, 2, 0, 7, 10, 7, 3, 9, 4, 10, 0, 3, 6, 6, 0, 0), # 75 (9, 7, 8, 20, 10, 4, 3, 3, 4, 4, 0, 1, 0, 11, 4, 7, 7, 10, 3, 3, 6, 0, 3, 1, 0, 0), # 76 (10, 8, 1, 6, 6, 7, 1, 2, 3, 0, 0, 0, 0, 8, 10, 4, 7, 12, 2, 7, 2, 1, 0, 3, 3, 0), # 77 (7, 11, 10, 8, 8, 3, 2, 1, 5, 2, 2, 0, 0, 12, 7, 6, 4, 10, 2, 0, 4, 4, 6, 1, 1, 0), # 78 (9, 8, 7, 15, 9, 7, 2, 3, 0, 0, 0, 1, 0, 8, 7, 11, 2, 8, 4, 9, 1, 1, 2, 4, 2, 0), # 79 (4, 6, 8, 5, 8, 2, 3, 3, 4, 1, 3, 3, 0, 2, 10, 9, 3, 7, 7, 4, 0, 3, 0, 2, 1, 0), # 80 (11, 7, 6, 11, 7, 4, 2, 3, 1, 1, 0, 1, 0, 9, 6, 3, 7, 10, 3, 5, 0, 6, 2, 1, 0, 0), # 81 (9, 4, 5, 12, 7, 6, 5, 1, 4, 2, 2, 1, 0, 10, 11, 8, 6, 8, 5, 4, 1, 4, 3, 1, 2, 0), # 82 (16, 9, 13, 9, 8, 2, 3, 3, 1, 3, 1, 0, 0, 9, 5, 4, 7, 5, 0, 2, 2, 0, 0, 2, 0, 0), # 83 (9, 10, 12, 5, 10, 3, 0, 3, 2, 3, 1, 2, 0, 12, 6, 2, 6, 11, 5, 4, 2, 2, 1, 2, 0, 0), # 84 (7, 5, 10, 8, 6, 3, 4, 0, 3, 3, 0, 0, 0, 14, 7, 6, 4, 4, 4, 6, 1, 4, 3, 2, 0, 0), # 85 (7, 9, 6, 16, 3, 2, 1, 3, 3, 2, 0, 1, 0, 3, 9, 9, 7, 9, 4, 3, 3, 4, 2, 0, 0, 0), # 86 (11, 13, 12, 12, 6, 3, 2, 5, 5, 1, 1, 1, 0, 10, 6, 4, 4, 5, 3, 1, 2, 4, 5, 2, 2, 0), # 87 (9, 12, 9, 12, 7, 3, 2, 1, 2, 2, 1, 0, 0, 8, 12, 6, 5, 3, 3, 1, 0, 1, 2, 1, 0, 0), # 88 (15, 9, 4, 7, 8, 4, 2, 0, 5, 1, 2, 1, 0, 12, 5, 9, 6, 8, 3, 7, 5, 3, 1, 3, 2, 0), # 89 (11, 7, 12, 12, 5, 5, 5, 5, 3, 0, 2, 0, 0, 13, 9, 9, 5, 10, 9, 4, 2, 3, 5, 1, 1, 0), # 90 (11, 9, 8, 10, 7, 1, 2, 3, 6, 3, 0, 1, 0, 11, 7, 7, 6, 7, 4, 4, 3, 5, 3, 2, 0, 0), # 91 (4, 7, 11, 9, 7, 5, 4, 2, 1, 3, 1, 1, 0, 12, 4, 5, 5, 11, 3, 5, 5, 3, 3, 3, 0, 0), # 92 (9, 6, 8, 7, 5, 6, 6, 5, 6, 1, 0, 2, 0, 7, 7, 4, 5, 7, 2, 3, 6, 2, 3, 2, 0, 0), # 93 (7, 6, 11, 11, 7, 6, 5, 2, 6, 1, 2, 0, 0, 10, 9, 5, 5, 3, 1, 4, 1, 4, 2, 1, 0, 0), # 94 (7, 6, 6, 10, 8, 4, 5, 3, 1, 2, 1, 1, 0, 8, 5, 10, 3, 11, 7, 6, 0, 2, 3, 2, 1, 0), # 95 (13, 7, 12, 6, 5, 4, 5, 1, 2, 3, 0, 0, 0, 7, 7, 6, 2, 7, 3, 4, 3, 2, 2, 2, 2, 0), # 96 (8, 8, 7, 11, 2, 4, 3, 2, 6, 2, 4, 1, 0, 11, 7, 6, 4, 12, 6, 4, 1, 5, 1, 1, 4, 0), # 97 (11, 5, 8, 4, 6, 6, 4, 1, 1, 0, 2, 1, 0, 11, 10, 7, 7, 12, 5, 3, 0, 2, 5, 1, 0, 0), # 98 (8, 7, 11, 5, 6, 3, 4, 5, 4, 5, 1, 1, 0, 12, 8, 10, 10, 5, 2, 4, 2, 6, 1, 5, 0, 0), # 99 (5, 8, 11, 9, 10, 3, 2, 5, 2, 1, 2, 0, 0, 14, 6, 4, 6, 5, 5, 5, 2, 6, 1, 1, 3, 0), # 100 (8, 7, 7, 10, 9, 2, 5, 1, 5, 2, 2, 0, 0, 11, 6, 8, 4, 6, 6, 2, 2, 1, 5, 0, 0, 0), # 101 (10, 6, 5, 6, 7, 2, 1, 3, 1, 1, 1, 0, 0, 17, 6, 4, 5, 8, 2, 5, 3, 5, 2, 2, 0, 0), # 102 (12, 8, 8, 9, 7, 3, 2, 0, 6, 1, 0, 0, 0, 8, 11, 3, 0, 9, 4, 1, 5, 4, 1, 2, 0, 0), # 103 (6, 10, 8, 4, 4, 3, 4, 2, 3, 0, 2, 1, 0, 4, 6, 5, 5, 8, 4, 5, 3, 4, 0, 1, 0, 0), # 104 (14, 6, 4, 8, 6, 2, 5, 2, 6, 1, 0, 0, 0, 11, 5, 8, 1, 8, 2, 1, 2, 5, 6, 0, 2, 0), # 105 (7, 11, 6, 10, 6, 6, 5, 1, 1, 2, 2, 0, 0, 13, 10, 6, 4, 7, 2, 5, 1, 3, 3, 2, 2, 0), # 106 (9, 8, 9, 10, 4, 5, 4, 1, 2, 1, 0, 0, 0, 8, 9, 6, 3, 8, 2, 3, 3, 2, 3, 3, 0, 0), # 107 (9, 10, 9, 10, 6, 5, 4, 3, 3, 4, 0, 0, 0, 10, 2, 5, 2, 5, 3, 5, 3, 3, 3, 0, 0, 0), # 108 (9, 8, 13, 11, 9, 2, 1, 0, 2, 0, 1, 0, 0, 8, 3, 4, 6, 6, 4, 7, 1, 5, 1, 3, 0, 0), # 109 (5, 10, 5, 8, 6, 2, 3, 3, 4, 1, 2, 0, 0, 8, 5, 6, 5, 5, 6, 3, 3, 4, 5, 5, 0, 0), # 110 (10, 7, 5, 8, 3, 1, 5, 2, 2, 1, 2, 1, 0, 8, 12, 4, 2, 9, 4, 0, 1, 4, 3, 4, 0, 0), # 111 (10, 7, 5, 8, 8, 1, 5, 3, 2, 3, 0, 0, 0, 12, 7, 7, 10, 8, 5, 2, 3, 8, 1, 1, 1, 0), # 112 (10, 5, 5, 8, 6, 3, 3, 3, 5, 0, 0, 0, 0, 6, 11, 8, 5, 13, 5, 2, 3, 3, 4, 4, 1, 0), # 113 (12, 7, 7, 8, 8, 3, 5, 3, 8, 1, 2, 1, 0, 10, 13, 6, 0, 5, 2, 4, 3, 3, 4, 4, 1, 0), # 114 (8, 7, 9, 10, 6, 4, 3, 4, 4, 2, 0, 1, 0, 11, 6, 6, 14, 7, 4, 4, 1, 7, 2, 3, 0, 0), # 115 (13, 4, 11, 11, 8, 4, 1, 5, 3, 2, 1, 0, 0, 7, 10, 8, 3, 9, 2, 5, 0, 2, 8, 1, 0, 0), # 116 (17, 5, 5, 15, 10, 1, 4, 1, 2, 1, 0, 0, 0, 8, 10, 8, 2, 8, 6, 3, 2, 2, 5, 0, 1, 0), # 117 (8, 8, 9, 8, 7, 6, 3, 1, 1, 0, 2, 1, 0, 9, 11, 10, 3, 7, 3, 6, 4, 4, 5, 0, 0, 0), # 118 (16, 8, 5, 8, 2, 4, 1, 1, 1, 3, 0, 1, 0, 13, 11, 10, 2, 2, 3, 2, 0, 2, 1, 1, 1, 0), # 119 (8, 9, 3, 5, 10, 2, 3, 2, 6, 0, 2, 1, 0, 11, 4, 3, 3, 7, 7, 7, 1, 3, 2, 3, 0, 0), # 120 (12, 9, 7, 8, 7, 1, 5, 1, 3, 0, 1, 0, 0, 11, 5, 2, 4, 11, 5, 2, 1, 6, 3, 3, 0, 0), # 121 (7, 5, 3, 13, 6, 1, 5, 0, 2, 1, 3, 0, 0, 3, 7, 6, 5, 8, 5, 1, 2, 2, 6, 4, 1, 0), # 122 (6, 10, 8, 14, 6, 1, 4, 5, 1, 1, 1, 2, 0, 4, 5, 5, 5, 10, 2, 1, 6, 4, 0, 0, 0, 0), # 123 (11, 4, 7, 6, 9, 6, 2, 5, 4, 1, 1, 2, 0, 12, 10, 7, 2, 4, 5, 3, 2, 3, 2, 3, 0, 0), # 124 (10, 2, 7, 5, 14, 5, 2, 3, 4, 2, 2, 1, 0, 8, 11, 7, 3, 12, 5, 2, 3, 4, 3, 3, 1, 0), # 125 (4, 6, 8, 9, 9, 3, 1, 1, 6, 2, 1, 1, 0, 6, 10, 7, 3, 12, 0, 1, 6, 3, 3, 3, 1, 0), # 126 (8, 3, 6, 6, 7, 4, 2, 3, 3, 3, 0, 0, 0, 4, 6, 8, 6, 6, 3, 2, 2, 3, 5, 2, 0, 0), # 127 (3, 2, 10, 11, 6, 4, 2, 0, 2, 1, 1, 0, 0, 8, 10, 4, 3, 10, 1, 3, 2, 6, 1, 3, 0, 0), # 128 (5, 5, 8, 4, 4, 4, 8, 2, 3, 0, 1, 0, 0, 6, 7, 5, 5, 8, 5, 1, 1, 2, 6, 0, 0, 0), # 129 (14, 7, 11, 4, 6, 1, 0, 1, 2, 1, 0, 1, 0, 5, 8, 4, 5, 7, 4, 4, 0, 6, 1, 2, 0, 0), # 130 (10, 3, 8, 10, 7, 5, 4, 0, 7, 4, 0, 0, 0, 14, 9, 8, 4, 6, 4, 5, 2, 4, 2, 1, 0, 0), # 131 (8, 3, 5, 7, 2, 1, 3, 2, 4, 0, 2, 1, 0, 12, 9, 3, 1, 6, 2, 1, 0, 2, 3, 0, 0, 0), # 132 (3, 6, 7, 11, 4, 2, 4, 3, 4, 2, 1, 2, 0, 9, 4, 7, 5, 6, 4, 5, 2, 4, 4, 1, 0, 0), # 133 (5, 3, 8, 9, 10, 2, 1, 3, 4, 5, 2, 0, 0, 11, 9, 5, 4, 7, 5, 5, 3, 4, 4, 1, 1, 0), # 134 (9, 4, 9, 7, 8, 4, 2, 1, 1, 2, 3, 1, 0, 13, 11, 6, 5, 7, 2, 2, 0, 4, 3, 3, 1, 0), # 135 (11, 6, 7, 3, 9, 2, 3, 0, 4, 0, 0, 1, 0, 7, 11, 6, 7, 15, 5, 4, 5, 5, 1, 2, 4, 0), # 136 (19, 7, 8, 8, 2, 3, 3, 3, 5, 0, 0, 1, 0, 11, 12, 4, 3, 8, 3, 4, 0, 4, 4, 2, 1, 0), # 137 (10, 9, 5, 4, 3, 1, 3, 5, 2, 0, 1, 1, 0, 11, 7, 5, 3, 5, 6, 1, 3, 4, 2, 0, 0, 0), # 138 (9, 6, 8, 9, 6, 2, 3, 7, 3, 0, 1, 0, 0, 12, 9, 5, 3, 11, 6, 7, 3, 3, 3, 0, 1, 0), # 139 (5, 6, 4, 8, 7, 1, 2, 1, 5, 1, 2, 0, 0, 8, 5, 4, 4, 5, 3, 2, 2, 6, 1, 2, 0, 0), # 140 (13, 4, 4, 5, 3, 3, 1, 4, 3, 1, 0, 3, 0, 10, 7, 11, 2, 6, 6, 3, 1, 2, 5, 2, 1, 0), # 141 (6, 9, 11, 10, 11, 4, 4, 3, 4, 3, 0, 1, 0, 10, 7, 8, 4, 9, 3, 1, 2, 4, 2, 1, 0, 0), # 142 (14, 2, 5, 3, 7, 1, 2, 1, 1, 1, 1, 0, 0, 17, 7, 7, 4, 5, 4, 1, 2, 1, 3, 3, 1, 0), # 143 (7, 8, 7, 7, 6, 3, 2, 3, 4, 1, 0, 1, 0, 10, 2, 7, 3, 7, 2, 1, 4, 5, 3, 1, 1, 0), # 144 (6, 5, 6, 5, 7, 8, 1, 2, 5, 0, 2, 0, 0, 17, 12, 7, 7, 10, 4, 3, 0, 3, 4, 0, 0, 0), # 145 (8, 5, 9, 6, 8, 0, 4, 4, 5, 0, 2, 0, 0, 14, 5, 5, 5, 9, 2, 3, 3, 3, 1, 1, 0, 0), # 146 (7, 7, 1, 8, 7, 5, 0, 5, 1, 0, 1, 1, 0, 12, 7, 7, 2, 11, 3, 1, 4, 5, 4, 2, 1, 0), # 147 (7, 6, 7, 8, 8, 4, 1, 1, 1, 0, 2, 0, 0, 7, 7, 3, 2, 11, 4, 2, 1, 1, 4, 1, 0, 0), # 148 (15, 7, 5, 7, 8, 1, 5, 3, 5, 3, 1, 2, 0, 7, 8, 6, 2, 4, 3, 2, 1, 3, 2, 2, 1, 0), # 149 (5, 6, 6, 8, 5, 4, 4, 2, 4, 1, 1, 0, 0, 13, 7, 4, 1, 7, 2, 3, 2, 0, 5, 0, 0, 0), # 150 (8, 11, 9, 10, 8, 0, 2, 1, 5, 1, 0, 1, 0, 5, 5, 4, 5, 5, 4, 4, 1, 1, 1, 4, 2, 0), # 151 (8, 3, 4, 4, 9, 3, 1, 2, 4, 2, 0, 0, 0, 7, 5, 9, 5, 10, 5, 3, 2, 6, 2, 3, 0, 0), # 152 (8, 3, 8, 9, 7, 3, 2, 3, 5, 1, 1, 0, 0, 9, 8, 4, 4, 5, 3, 1, 3, 1, 2, 1, 0, 0), # 153 (2, 10, 7, 14, 4, 2, 4, 1, 3, 1, 0, 0, 0, 5, 5, 6, 4, 5, 3, 2, 4, 4, 3, 1, 1, 0), # 154 (11, 4, 7, 12, 6, 5, 3, 2, 5, 2, 3, 0, 0, 5, 7, 7, 0, 4, 3, 0, 3, 3, 0, 3, 0, 0), # 155 (9, 3, 9, 11, 1, 0, 1, 3, 1, 2, 0, 0, 0, 10, 9, 1, 6, 6, 3, 0, 2, 2, 2, 0, 1, 0), # 156 (5, 3, 13, 6, 11, 2, 4, 1, 4, 1, 0, 0, 0, 6, 12, 5, 11, 12, 5, 3, 1, 6, 1, 2, 0, 0), # 157 (4, 2, 4, 4, 4, 3, 3, 3, 1, 2, 0, 0, 0, 9, 8, 7, 2, 4, 1, 2, 1, 1, 2, 0, 0, 0), # 158 (9, 4, 8, 10, 10, 2, 3, 1, 3, 2, 2, 0, 0, 6, 2, 3, 3, 7, 3, 3, 3, 2, 3, 0, 0, 0), # 159 (9, 6, 6, 8, 6, 2, 1, 0, 6, 1, 0, 2, 0, 2, 6, 5, 2, 6, 3, 2, 1, 2, 2, 1, 1, 0), # 160 (8, 7, 8, 9, 9, 5, 1, 3, 2, 2, 0, 1, 0, 9, 6, 5, 1, 8, 7, 2, 4, 1, 2, 0, 1, 0), # 161 (10, 5, 5, 9, 7, 3, 1, 2, 2, 0, 0, 0, 0, 7, 5, 6, 2, 5, 3, 2, 3, 3, 3, 2, 1, 0), # 162 (12, 3, 6, 2, 7, 4, 5, 0, 3, 0, 2, 0, 0, 5, 5, 6, 3, 10, 5, 2, 3, 2, 4, 0, 0, 0), # 163 (5, 5, 5, 10, 10, 5, 3, 1, 3, 0, 3, 1, 0, 6, 5, 7, 4, 4, 7, 2, 1, 5, 2, 1, 2, 0), # 164 (10, 4, 5, 4, 3, 1, 0, 1, 1, 3, 1, 1, 0, 5, 2, 4, 3, 7, 3, 3, 1, 4, 0, 1, 0, 0), # 165 (11, 9, 3, 8, 1, 2, 0, 1, 1, 1, 1, 2, 0, 6, 7, 3, 2, 4, 1, 0, 2, 2, 2, 0, 1, 0), # 166 (1, 5, 5, 3, 5, 1, 1, 3, 5, 0, 2, 0, 0, 9, 6, 4, 2, 4, 4, 1, 0, 6, 1, 2, 1, 0), # 167 (5, 3, 5, 3, 5, 3, 4, 4, 2, 0, 3, 0, 0, 8, 5, 4, 3, 3, 4, 3, 5, 1, 1, 3, 0, 0), # 168 (5, 5, 5, 5, 13, 3, 5, 2, 2, 1, 0, 1, 0, 5, 5, 6, 7, 5, 3, 1, 2, 3, 0, 3, 0, 0), # 169 (4, 3, 8, 10, 4, 3, 1, 0, 3, 0, 0, 2, 0, 6, 4, 9, 1, 3, 4, 3, 1, 4, 1, 4, 0, 0), # 170 (2, 1, 4, 7, 5, 4, 1, 1, 1, 1, 0, 1, 0, 3, 2, 1, 2, 5, 3, 2, 2, 0, 2, 0, 0, 0), # 171 (7, 5, 3, 6, 3, 2, 0, 0, 2, 1, 1, 0, 0, 8, 7, 4, 1, 5, 0, 1, 0, 3, 2, 0, 0, 0), # 172 (5, 2, 7, 6, 7, 2, 1, 1, 4, 2, 1, 0, 0, 5, 1, 1, 2, 8, 2, 1, 2, 2, 1, 0, 0, 0), # 173 (5, 5, 8, 0, 0, 3, 0, 4, 1, 3, 2, 1, 0, 5, 5, 3, 5, 6, 2, 0, 2, 3, 1, 1, 0, 0), # 174 (4, 2, 5, 2, 4, 0, 0, 5, 2, 0, 1, 0, 0, 4, 9, 7, 1, 2, 1, 2, 2, 3, 1, 0, 0, 0), # 175 (5, 2, 0, 1, 5, 4, 3, 0, 3, 0, 0, 2, 0, 5, 2, 2, 2, 5, 2, 2, 0, 0, 2, 0, 0, 0), # 176 (3, 4, 7, 2, 0, 0, 7, 0, 4, 1, 0, 0, 0, 2, 3, 3, 2, 4, 2, 1, 2, 3, 0, 2, 0, 0), # 177 (2, 2, 5, 2, 2, 3, 1, 2, 3, 0, 1, 0, 0, 4, 0, 4, 3, 4, 2, 1, 3, 1, 3, 0, 1, 0), # 178 (0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), # 179 ) station_arriving_intensity = ( (5.020865578371768, 5.525288559693166, 5.211283229612507, 6.214667773863432, 5.554685607609612, 3.1386549320373387, 4.146035615373915, 4.653176172979423, 6.090099062168007, 3.9580150155223697, 4.205265163885603, 4.897915078306173, 5.083880212578363), # 0 (5.354327152019974, 5.890060694144759, 5.555346591330152, 6.625144253276616, 5.922490337474237, 3.3459835840425556, 4.419468941263694, 4.959513722905708, 6.492245326332909, 4.21898069227715, 4.483096135956131, 5.221216660814354, 5.419791647439855), # 1 (5.686723008979731, 6.253385170890979, 5.8980422855474135, 7.033987704664794, 6.288962973749744, 3.5524851145124448, 4.691818507960704, 5.264625247904419, 6.892786806877549, 4.478913775020546, 4.759823148776313, 5.543232652053055, 5.75436482820969), # 2 (6.016757793146562, 6.613820501936447, 6.238010869319854, 7.439576407532074, 6.652661676001902, 3.757340622585113, 4.962003641647955, 5.567301157494507, 7.290135160921093, 4.736782698426181, 5.0343484118273825, 5.862685684930461, 6.086272806254225), # 3 (6.343136148415981, 6.9699251992857745, 6.573892899703036, 7.840288641382569, 7.012144603796492, 3.9597312073986677, 5.2289436685084585, 5.866331861194915, 7.682702045582707, 4.991555897167679, 5.305574134590575, 6.178298392354764, 6.414188632939817), # 4 (6.66456271868351, 7.320257774943588, 6.9043289337525175, 8.234502685720393, 7.36596991669928, 4.158837968091214, 5.491557914725224, 6.160507768524592, 8.068899117981559, 5.242201805918663, 5.572402526547132, 6.488793407234148, 6.736785359632827), # 5 (6.979742147844666, 7.663376740914501, 7.227959528523866, 8.620596820049652, 7.712695774276043, 4.353842003800864, 5.7487657064812625, 6.4486192890024885, 8.447138035236815, 5.487688859352758, 5.833735797178282, 6.792893362476808, 7.052736037699606), # 6 (7.2873790797949685, 7.997840609203132, 7.543425241072635, 8.996949323874462, 8.050880336092554, 4.543924413665721, 5.999486369959585, 6.729456832147552, 8.815830454467644, 5.726985492143586, 6.088476155965268, 7.089320890990929, 7.360713718506519), # 7 (7.586178158429934, 8.322207891814099, 7.849366628454396, 9.361938476698928, 8.379081761714586, 4.7282662968238895, 6.2426392313431975, 7.001810807478725, 9.173388032793206, 5.959060138964774, 6.335525812389321, 7.376798625684702, 7.659391453419917), # 8 (7.874844027645085, 8.635037100752022, 8.144424247724704, 9.713942558027169, 8.69585821070791, 4.906048752413484, 6.47714361681512, 7.264471624514963, 9.518222427332674, 6.182881234489941, 6.573786975931678, 7.654049199466313, 7.947442293806162), # 9 (8.152081331335932, 8.934886748021516, 8.427238655939124, 10.051339847363288, 8.9997678426383, 5.076452879572607, 6.701918852558355, 7.516229692775211, 9.848745295205214, 6.397417213392714, 6.802161856073574, 7.919795245243952, 8.22353929103161), # 10 (8.416594713398005, 9.220315345627206, 8.696450410153215, 10.372508624211397, 9.289368817071534, 5.238659777439368, 6.915884264755916, 7.7558754217784145, 10.163368293529993, 6.601636510346719, 7.019552662296249, 8.17275939592581, 8.486355496462611), # 11 (8.667088817726812, 9.489881405573698, 8.95070006742254, 10.675827168075612, 9.563219293573377, 5.391850545151869, 7.1179591795908115, 7.982199221043521, 10.460503079426179, 6.794507560025572, 7.224861604080934, 8.411664284420068, 8.734563961465534), # 12 (8.902268288217876, 9.74214343986562, 9.188628184802662, 10.959673758460044, 9.819877431709601, 5.5352062818482235, 7.307062923246056, 8.193991500089481, 10.738561310012932, 6.974998797102904, 7.416990890908869, 8.63523254363492, 8.966837737406735), # 13 (9.120837768766716, 9.975659960507588, 9.408875319349146, 11.222426674868792, 10.05790139104599, 5.667908086666534, 7.482114821904661, 8.390042668435246, 10.995954642409421, 7.142078656252334, 7.594842732261284, 8.84218680647856, 9.181849875652563), # 14 (9.321501903268855, 10.188989479504217, 9.610082028117542, 11.462464196805985, 10.275849331148308, 5.789137058744912, 7.642034201749626, 8.569143135599756, 11.23109473373482, 7.29471557214749, 7.757319337619419, 9.031249705859171, 9.37827342756938), # 15 (9.5029653356198, 10.380690508860132, 9.790888868163425, 11.678164603775716, 10.472279411582333, 5.898074297221459, 7.785740388963976, 8.73008331110196, 11.442393241108286, 7.431877979461996, 7.9033229164645125, 9.20114387468494, 9.554781444523545), # 16 (9.663932709715075, 10.549321560579946, 9.949936396542352, 11.867906175282112, 10.645749791913838, 5.993900901234285, 7.9121527097307105, 8.871653604460818, 11.628261821648984, 7.552534312869467, 8.031755678277799, 9.350591945864055, 9.710046977881415), # 17 (9.803108669450204, 10.693441146668274, 10.08586517030988, 12.030067190829278, 10.794818631708589, 6.075797969921503, 8.020190490232851, 8.99264442519526, 11.787112132476096, 7.6556530070435365, 8.141519832540508, 9.478316552304715, 9.842743079009345), # 18 (9.919197858720699, 10.811607779129744, 10.197315746521578, 12.163025929921314, 10.918044090532366, 6.142946602421208, 8.108773056653394, 9.091846182824245, 11.917355830708779, 7.740202496657828, 8.231517588733878, 9.583040326915096, 9.951542799273696), # 19 (10.010904921422082, 10.902379969968962, 10.282928682233003, 12.265160672062354, 11.013984327950944, 6.194527897871518, 8.176819735175362, 9.168049286866717, 12.017404573466198, 7.805151216385958, 8.30065115633915, 9.66348590260339, 10.035119190040824), # 20 (10.076934501449866, 10.964316231190558, 10.341344534499719, 12.334849696756486, 11.081197503530088, 6.229722955410535, 8.223249851981759, 9.220044146841623, 12.085670017867521, 7.849467600901555, 8.34782274483756, 9.718375912277793, 10.092145302677078), # 21 (10.115991242699579, 10.995975074799144, 10.371203860377285, 12.370471283507836, 11.118241776835575, 6.247712874176367, 8.2469827332556, 9.246621172267915, 12.120563821031915, 7.872120084878242, 8.37193456371034, 9.74643298884649, 10.121294188548827), # 22 (10.13039336334264, 10.999723593964335, 10.374923182441702, 12.374930812757203, 11.127732056032597, 6.25, 8.249804002259339, 9.249493827160494, 12.124926234567901, 7.874792272519433, 8.37495803716174, 9.749897576588934, 10.125), # 23 (10.141012413034153, 10.997537037037038, 10.374314814814815, 12.374381944444446, 11.133107613614852, 6.25, 8.248253812636166, 9.2455, 12.124341666666666, 7.87315061728395, 8.37462457912458, 9.749086419753086, 10.125), # 24 (10.15140723021158, 10.993227023319616, 10.373113854595337, 12.373296039094651, 11.138364945594503, 6.25, 8.24519890260631, 9.237654320987655, 12.123186728395062, 7.869918838591678, 8.373963399426362, 9.747485139460448, 10.125), # 25 (10.161577019048034, 10.986859396433472, 10.371336762688616, 12.37168544238683, 11.143503868421105, 6.25, 8.240686718308721, 9.226104938271606, 12.1214762345679, 7.865150708733425, 8.372980483850855, 9.745115683584821, 10.125), # 26 (10.171520983716636, 10.978499999999999, 10.369, 12.369562499999999, 11.148524198544214, 6.25, 8.234764705882354, 9.211, 12.119225, 7.858899999999999, 8.371681818181818, 9.742, 10.125), # 27 (10.181238328390501, 10.968214677640603, 10.366120027434842, 12.366939557613168, 11.153425752413401, 6.25, 8.22748031146615, 9.192487654320988, 12.116447839506172, 7.851220484682213, 8.370073388203018, 9.73816003657979, 10.125), # 28 (10.19072825724275, 10.95606927297668, 10.362713305898492, 12.36382896090535, 11.15820834647822, 6.25, 8.218880981199066, 9.170716049382715, 12.113159567901235, 7.842165935070874, 8.368161179698216, 9.733617741197987, 10.125), # 29 (10.199989974446497, 10.94212962962963, 10.358796296296296, 12.360243055555555, 11.162871797188236, 6.25, 8.209014161220043, 9.145833333333332, 12.109375, 7.83179012345679, 8.365951178451178, 9.728395061728394, 10.125), # 30 (10.209022684174858, 10.926461591220852, 10.354385459533608, 12.356194187242798, 11.167415920993008, 6.25, 8.19792729766804, 9.117987654320988, 12.105108950617284, 7.820146822130773, 8.363449370245666, 9.722513946044812, 10.125), # 31 (10.217825590600954, 10.909131001371742, 10.349497256515773, 12.35169470164609, 11.171840534342095, 6.25, 8.185667836681999, 9.087327160493828, 12.100376234567902, 7.807289803383631, 8.360661740865444, 9.715996342021034, 10.125), # 32 (10.226397897897897, 10.890203703703703, 10.344148148148149, 12.346756944444444, 11.176145453685063, 6.25, 8.172283224400871, 9.054, 12.095191666666667, 7.793272839506173, 8.357594276094275, 9.708864197530863, 10.125), # 33 (10.23473881023881, 10.869745541838133, 10.338354595336076, 12.341393261316872, 11.180330495471466, 6.25, 8.15782090696361, 9.018154320987653, 12.089570061728397, 7.778149702789209, 8.354252961715924, 9.701139460448102, 10.125), # 34 (10.242847531796807, 10.847822359396433, 10.332133058984912, 12.335615997942385, 11.18439547615087, 6.25, 8.142328330509159, 8.979938271604938, 12.083526234567902, 7.761974165523548, 8.350643783514153, 9.692844078646548, 10.125), # 35 (10.250723266745005, 10.824499999999999, 10.3255, 12.3294375, 11.188340212172836, 6.25, 8.12585294117647, 8.9395, 12.077074999999999, 7.7448, 8.346772727272727, 9.684000000000001, 10.125), # 36 (10.258365219256524, 10.799844307270233, 10.318471879286694, 12.322870113168724, 11.192164519986921, 6.25, 8.108442185104494, 8.896987654320988, 12.070231172839506, 7.726680978509374, 8.34264577877541, 9.674629172382259, 10.125), # 37 (10.265772593504476, 10.773921124828533, 10.311065157750342, 12.315926183127573, 11.19586821604269, 6.25, 8.09014350843218, 8.85254938271605, 12.063009567901235, 7.707670873342479, 8.33826892380596, 9.664753543667125, 10.125), # 38 (10.272944593661986, 10.746796296296296, 10.303296296296297, 12.308618055555556, 11.199451116789703, 6.25, 8.071004357298476, 8.806333333333333, 12.055425000000001, 7.687823456790124, 8.333648148148148, 9.654395061728394, 10.125), # 39 (10.279880423902163, 10.718535665294924, 10.295181755829903, 12.300958076131687, 11.202913038677519, 6.25, 8.05107217784233, 8.758487654320989, 12.047492283950618, 7.667192501143119, 8.328789437585733, 9.643575674439873, 10.125), # 40 (10.286579288398128, 10.689205075445816, 10.286737997256516, 12.29295859053498, 11.206253798155702, 6.25, 8.030394416202695, 8.709160493827161, 12.0392262345679, 7.645831778692272, 8.323698777902482, 9.632317329675354, 10.125), # 41 (10.293040391323, 10.658870370370371, 10.277981481481483, 12.284631944444445, 11.209473211673808, 6.25, 8.009018518518518, 8.6585, 12.030641666666668, 7.623795061728395, 8.318382154882155, 9.620641975308642, 10.125), # 42 (10.299262936849892, 10.627597393689987, 10.268928669410151, 12.275990483539095, 11.212571095681403, 6.25, 7.98699193092875, 8.606654320987655, 12.021753395061728, 7.601136122542296, 8.312845554308517, 9.608571559213535, 10.125), # 43 (10.305246129151927, 10.595451989026063, 10.259596021947875, 12.267046553497943, 11.215547266628045, 6.25, 7.964362099572339, 8.553771604938273, 12.0125762345679, 7.577908733424783, 8.307094961965332, 9.596128029263832, 10.125), # 44 (10.310989172402216, 10.5625, 10.25, 12.2578125, 11.218401540963296, 6.25, 7.9411764705882355, 8.5, 12.003124999999999, 7.554166666666667, 8.301136363636363, 9.583333333333332, 10.125), # 45 (10.31649127077388, 10.528807270233196, 10.240157064471878, 12.24830066872428, 11.221133735136716, 6.25, 7.917482490115388, 8.445487654320988, 11.993414506172838, 7.529963694558756, 8.294975745105374, 9.57020941929584, 10.125), # 46 (10.321751628440035, 10.49443964334705, 10.230083676268862, 12.238523405349794, 11.223743665597867, 6.25, 7.893327604292747, 8.390382716049382, 11.983459567901235, 7.505353589391861, 8.288619092156129, 9.55677823502515, 10.125), # 47 (10.326769449573796, 10.459462962962963, 10.219796296296296, 12.228493055555557, 11.22623114879631, 6.25, 7.868759259259259, 8.334833333333334, 11.973275000000001, 7.4803901234567896, 8.28207239057239, 9.543061728395061, 10.125), # 48 (10.331543938348286, 10.42394307270233, 10.209311385459534, 12.218221965020577, 11.228596001181607, 6.25, 7.8438249011538765, 8.278987654320987, 11.96287561728395, 7.455127069044353, 8.275341626137923, 9.529081847279379, 10.125), # 49 (10.336074298936616, 10.387945816186559, 10.198645404663925, 12.207722479423868, 11.230838039203315, 6.25, 7.81857197611555, 8.222993827160494, 11.9522762345679, 7.429618198445358, 8.268432784636488, 9.514860539551899, 10.125), # 50 (10.34035973551191, 10.351537037037037, 10.187814814814814, 12.197006944444444, 11.232957079310998, 6.25, 7.793047930283224, 8.167, 11.941491666666668, 7.403917283950617, 8.261351851851853, 9.50041975308642, 10.125), # 51 (10.344399452247279, 10.314782578875173, 10.176836076817558, 12.186087705761317, 11.234952937954214, 6.25, 7.767300209795852, 8.111154320987653, 11.930536728395062, 7.3780780978509375, 8.254104813567777, 9.485781435756746, 10.125), # 52 (10.348192653315843, 10.27774828532236, 10.165725651577505, 12.174977109053497, 11.23682543158253, 6.25, 7.741376260792383, 8.055604938271605, 11.919426234567903, 7.3521544124371285, 8.246697655568026, 9.470967535436671, 10.125), # 53 (10.351738542890716, 10.2405, 10.154499999999999, 12.1636875, 11.238574376645502, 6.25, 7.715323529411765, 8.000499999999999, 11.908175, 7.3262, 8.239136363636362, 9.456, 10.125), # 54 (10.355036325145022, 10.203103566529492, 10.143175582990398, 12.152231224279834, 11.24019958959269, 6.25, 7.689189461792948, 7.945987654320987, 11.896797839506172, 7.300268632830361, 8.231426923556553, 9.44090077732053, 10.125), # 55 (10.358085204251871, 10.165624828532236, 10.131768861454047, 12.140620627572016, 11.241700886873659, 6.25, 7.663021504074881, 7.892216049382716, 11.885309567901235, 7.274414083219022, 8.223575321112358, 9.425691815272062, 10.125), # 56 (10.360884384384383, 10.12812962962963, 10.120296296296297, 12.128868055555555, 11.243078084937967, 6.25, 7.636867102396514, 7.839333333333334, 11.873725, 7.24869012345679, 8.215587542087542, 9.410395061728394, 10.125), # 57 (10.36343306971568, 10.090683813443073, 10.108774348422497, 12.116985853909464, 11.244331000235174, 6.25, 7.610773702896797, 7.787487654320987, 11.862058950617284, 7.223150525834477, 8.20746957226587, 9.395032464563329, 10.125), # 58 (10.36573046441887, 10.053353223593964, 10.097219478737998, 12.104986368312757, 11.245459449214845, 6.25, 7.584788751714678, 7.736827160493827, 11.850326234567902, 7.197849062642891, 8.1992273974311, 9.379625971650663, 10.125), # 59 (10.367775772667077, 10.016203703703704, 10.085648148148147, 12.092881944444445, 11.246463248326537, 6.25, 7.558959694989106, 7.6875, 11.838541666666668, 7.172839506172839, 8.190867003367003, 9.364197530864198, 10.125), # 60 (10.369568198633415, 9.97930109739369, 10.0740768175583, 12.080684927983539, 11.247342214019811, 6.25, 7.533333978859033, 7.639654320987654, 11.826720061728395, 7.148175628715135, 8.182394375857339, 9.348769090077733, 10.125), # 61 (10.371106946491004, 9.942711248285322, 10.062521947873801, 12.068407664609055, 11.248096162744234, 6.25, 7.507959049463406, 7.5934382716049384, 11.814876234567901, 7.123911202560586, 8.17381550068587, 9.333362597165067, 10.125), # 62 (10.37239122041296, 9.9065, 10.051, 12.056062500000001, 11.248724910949356, 6.25, 7.482882352941176, 7.549, 11.803025, 7.100099999999999, 8.165136363636364, 9.318, 10.125), # 63 (10.373420224572397, 9.870733196159122, 10.039527434842249, 12.043661779835391, 11.249228275084748, 6.25, 7.458151335431292, 7.506487654320988, 11.791181172839506, 7.076795793324188, 8.156362950492579, 9.302703246456334, 10.125), # 64 (10.374193163142438, 9.835476680384087, 10.0281207133059, 12.031217849794238, 11.249606071599967, 6.25, 7.433813443072703, 7.466049382716049, 11.779359567901235, 7.054052354823959, 8.147501247038285, 9.287494284407863, 10.125), # 65 (10.374709240296196, 9.800796296296298, 10.016796296296297, 12.018743055555555, 11.249858116944573, 6.25, 7.409916122004357, 7.427833333333334, 11.767575, 7.031923456790123, 8.138557239057238, 9.272395061728396, 10.125), # 66 (10.374967660206792, 9.766757887517146, 10.005570644718793, 12.006249742798353, 11.24998422756813, 6.25, 7.386506818365206, 7.391987654320989, 11.755842283950617, 7.010462871513489, 8.12953691233321, 9.257427526291723, 10.125), # 67 (10.374791614480825, 9.733248639320323, 9.994405949931412, 11.993641740472357, 11.249877955297345, 6.2498840115836, 7.363515194829646, 7.358343850022862, 11.744087848651121, 6.989620441647166, 8.120285988540376, 9.242530021899743, 10.124875150034294), # 68 (10.373141706924315, 9.699245519713262, 9.982988425925925, 11.980283514492752, 11.248910675381262, 6.248967078189301, 7.340268181346613, 7.325098765432099, 11.731797839506173, 6.968806390704429, 8.10986283891547, 9.227218973359324, 10.12388599537037), # 69 (10.369885787558895, 9.664592459843355, 9.971268432784635, 11.966087124261943, 11.246999314128942, 6.247161255906112, 7.31666013456137, 7.291952446273434, 11.718902892089622, 6.947919524462734, 8.09814888652608, 9.211422761292809, 10.121932334533609), # 70 (10.365069660642929, 9.62931016859153, 9.959250085733881, 11.951073503757382, 11.244168078754136, 6.244495808565767, 7.292701659538988, 7.258915866483768, 11.705422210791038, 6.926960359342639, 8.085187370783862, 9.195152937212715, 10.119039887688615), # 71 (10.358739130434783, 9.593419354838709, 9.946937499999999, 11.935263586956522, 11.240441176470588, 6.2410000000000005, 7.268403361344538, 7.226, 11.691375, 6.905929411764705, 8.07102153110048, 9.17842105263158, 10.115234375), # 72 (10.35094000119282, 9.556940727465816, 9.934334790809327, 11.918678307836823, 11.23584281449205, 6.236703094040542, 7.243775845043092, 7.193215820759031, 11.676780464106082, 6.884827198149493, 8.055694606887588, 9.161238659061919, 10.110541516632374), # 73 (10.341718077175404, 9.519894995353777, 9.921446073388202, 11.901338600375738, 11.230397200032275, 6.231634354519128, 7.218829715699722, 7.160574302697759, 11.661657807498857, 6.863654234917561, 8.039249837556856, 9.143617308016267, 10.104987032750344), # 74 (10.331119162640901, 9.482302867383511, 9.908275462962962, 11.883265398550725, 11.224128540305012, 6.22582304526749, 7.1935755783795, 7.128086419753086, 11.6460262345679, 6.84241103848947, 8.021730462519935, 9.125568551007147, 10.098596643518519), # 75 (10.319189061847677, 9.44418505243595, 9.894827074759945, 11.864479636339238, 11.217061042524005, 6.219298430117361, 7.168024038147495, 7.095763145861912, 11.629904949702789, 6.821098125285779, 8.003179721188491, 9.107103939547082, 10.091396069101508), # 76 (10.305973579054093, 9.40556225939201, 9.881105024005485, 11.845002247718732, 11.209218913903008, 6.212089772900472, 7.142185700068779, 7.063615454961135, 11.613313157293096, 6.7997160117270505, 7.983640852974187, 9.088235025148606, 10.083411029663925), # 77 (10.291518518518519, 9.366455197132618, 9.867113425925925, 11.824854166666666, 11.200626361655774, 6.204226337448559, 7.116071169208425, 7.031654320987655, 11.596270061728394, 6.7782652142338415, 7.9631570972886765, 9.068973359324238, 10.074667245370371), # 78 (10.275869684499314, 9.326884574538697, 9.8528563957476, 11.804056327160493, 11.191307592996047, 6.195737387593354, 7.089691050631501, 6.9998907178783725, 11.578794867398262, 6.756746249226714, 7.941771693543622, 9.049330493586504, 10.065190436385459), # 79 (10.259072881254847, 9.286871100491172, 9.838338048696844, 11.782629663177671, 11.181286815137579, 6.18665218716659, 7.063055949403081, 6.968335619570188, 11.560906778692273, 6.7351596331262265, 7.919527881150688, 9.029317979447935, 10.0550063228738), # 80 (10.241173913043479, 9.246435483870968, 9.8235625, 11.760595108695654, 11.170588235294117, 6.177, 7.036176470588235, 6.937, 11.542625, 6.713505882352941, 7.8964688995215315, 9.008947368421053, 10.044140624999999), # 81 (10.222218584123576, 9.205598433559008, 9.808533864883403, 11.737973597691894, 11.159236060679415, 6.166810089925317, 7.009063219252036, 6.90589483310471, 11.52396873571102, 6.691785513327416, 7.872637988067813, 8.988230212018387, 10.03261906292867), # 82 (10.202252698753504, 9.164380658436214, 9.793256258573388, 11.714786064143853, 11.147254498507221, 6.156111720774272, 6.981726800459553, 6.875031092821216, 11.504957190214906, 6.669999042470211, 7.848078386201194, 8.967178061752461, 10.020467356824417), # 83 (10.181322061191626, 9.122802867383513, 9.777733796296296, 11.691053442028986, 11.134667755991286, 6.144934156378601, 6.954177819275858, 6.844419753086419, 11.485609567901234, 6.648146986201889, 7.822833333333333, 8.945802469135803, 10.007711226851852), # 84 (10.159472475696308, 9.080885769281826, 9.761970593278463, 11.666796665324746, 11.121500040345357, 6.133306660570035, 6.926426880766024, 6.814071787837221, 11.465945073159578, 6.626229860943005, 7.796946068875894, 8.924114985680937, 9.994376393175584), # 85 (10.136749746525913, 9.03865007301208, 9.745970764746229, 11.64203666800859, 11.107775558783183, 6.121258497180309, 6.89848458999512, 6.783998171010516, 11.445982910379517, 6.604248183114124, 7.770459832240534, 8.902127162900394, 9.98048857596022), # 86 (10.113199677938807, 8.996116487455197, 9.729738425925925, 11.61679438405797, 11.09351851851852, 6.108818930041152, 6.870361552028219, 6.75420987654321, 11.425742283950619, 6.582202469135802, 7.743417862838915, 8.879850552306692, 9.96607349537037), # 87 (10.088868074193357, 8.9533057214921, 9.713277692043896, 11.59109074745035, 11.07875312676511, 6.096017222984301, 6.842068371930391, 6.724717878372199, 11.40524239826246, 6.560093235428601, 7.715863400082698, 8.857296705412365, 9.951156871570646), # 88 (10.063800739547922, 8.910238484003717, 9.696592678326475, 11.564946692163177, 11.063503590736707, 6.082882639841488, 6.813615654766708, 6.695533150434385, 11.384502457704619, 6.537920998413083, 7.687839683383544, 8.834477173729935, 9.935764424725651), # 89 (10.03804347826087, 8.866935483870968, 9.6796875, 11.538383152173914, 11.04779411764706, 6.069444444444445, 6.785014005602241, 6.666666666666666, 11.363541666666668, 6.515686274509804, 7.65938995215311, 8.81140350877193, 9.919921875), # 90 (10.011642094590563, 8.823417429974777, 9.662566272290809, 11.511421061460013, 11.031648914709915, 6.055731900624904, 6.756274029502062, 6.638129401005944, 11.342379229538182, 6.4933895801393255, 7.63055744580306, 8.788087262050874, 9.903654942558298), # 91 (9.984642392795372, 8.779705031196071, 9.64523311042524, 11.484081353998926, 11.015092189139029, 6.041774272214601, 6.727406331531242, 6.609932327389118, 11.321034350708734, 6.471031431722209, 7.601385403745053, 8.764539985079297, 9.886989347565157), # 92 (9.957090177133654, 8.735818996415771, 9.62769212962963, 11.456384963768118, 10.998148148148148, 6.027600823045267, 6.69842151675485, 6.582086419753087, 11.299526234567901, 6.448612345679011, 7.57191706539075, 8.74077322936972, 9.869950810185184), # 93 (9.92903125186378, 8.691780034514801, 9.609947445130317, 11.428352824745035, 10.98084099895102, 6.0132408169486355, 6.669330190237961, 6.554602652034752, 11.277874085505259, 6.426132838430297, 7.54219567015181, 8.716798546434674, 9.85256505058299), # 94 (9.90051142124411, 8.647608854374088, 9.592003172153635, 11.400005870907139, 10.963194948761398, 5.9987235177564395, 6.640142957045644, 6.527491998171011, 11.25609710791038, 6.403593426396621, 7.512264457439896, 8.69262748778668, 9.834857788923182), # 95 (9.871576489533012, 8.603326164874554, 9.573863425925927, 11.371365036231884, 10.945234204793028, 5.984078189300411, 6.610870422242971, 6.500765432098766, 11.234214506172838, 6.3809946259985475, 7.482166666666667, 8.668271604938273, 9.816854745370371), # 96 (9.842272260988848, 8.558952674897121, 9.555532321673525, 11.342451254696725, 10.926982974259664, 5.969334095412284, 6.581523190895013, 6.474433927754916, 11.212245484682214, 6.358336953656634, 7.451945537243782, 8.64374244940197, 9.798581640089164), # 97 (9.812644539869984, 8.514509093322713, 9.53701397462277, 11.31328546027912, 10.908465464375052, 5.954520499923793, 6.552111868066842, 6.44850845907636, 11.190209247828074, 6.335620925791441, 7.421644308582906, 8.619051572690298, 9.78006419324417), # 98 (9.782739130434782, 8.470016129032258, 9.5183125, 11.283888586956522, 10.889705882352942, 5.939666666666667, 6.52264705882353, 6.423, 11.168125, 6.312847058823529, 7.391306220095694, 8.59421052631579, 9.761328125), # 99 (9.752601836941611, 8.425494490906676, 9.49943201303155, 11.254281568706388, 10.870728435407084, 5.924801859472641, 6.493139368230145, 6.3979195244627345, 11.146011945587563, 6.290015869173458, 7.36097451119381, 8.569230861790967, 9.742399155521262), # 100 (9.722278463648834, 8.380964887826895, 9.480376628943759, 11.224485339506174, 10.85155733075123, 5.909955342173449, 6.463599401351762, 6.3732780064014625, 11.123889288980338, 6.267127873261788, 7.330692421288912, 8.544124130628353, 9.723303004972564), # 101 (9.691814814814816, 8.336448028673836, 9.461150462962962, 11.194520833333334, 10.832216775599129, 5.895156378600824, 6.43403776325345, 6.349086419753086, 11.1017762345679, 6.244183587509078, 7.300503189792663, 8.518901884340481, 9.704065393518519), # 102 (9.661256694697919, 8.291964622328422, 9.4417576303155, 11.164408984165325, 10.812730977164529, 5.880434232586496, 6.40446505900028, 6.325355738454504, 11.079691986739826, 6.221183528335889, 7.270450056116723, 8.493575674439873, 9.68471204132373), # 103 (9.63064990755651, 8.247535377671579, 9.422202246227709, 11.134170725979603, 10.79312414266118, 5.865818167962201, 6.374891893657326, 6.302096936442616, 11.057655749885688, 6.19812821216278, 7.24057625967275, 8.468157052439054, 9.665268668552812), # 104 (9.600040257648953, 8.203181003584229, 9.402488425925926, 11.103826992753623, 10.773420479302832, 5.851337448559671, 6.345328872289658, 6.279320987654321, 11.035686728395062, 6.175018155410313, 7.210925039872408, 8.442657569850553, 9.64576099537037), # 105 (9.569473549233614, 8.158922208947299, 9.382620284636488, 11.073398718464842, 10.753644194303236, 5.837021338210638, 6.315786599962345, 6.25703886602652, 11.01380412665752, 6.151853874499045, 7.181539636127355, 8.417088778186894, 9.626214741941014), # 106 (9.538995586568856, 8.11477970264171, 9.362601937585735, 11.042906837090714, 10.733819494876139, 5.822899100746838, 6.286275681740461, 6.235261545496114, 10.992027149062643, 6.128635885849539, 7.152463287849252, 8.391462228960604, 9.606655628429355), # 107 (9.508652173913044, 8.070774193548388, 9.3424375, 11.012372282608696, 10.713970588235293, 5.809, 6.256806722689075, 6.214, 10.970375, 6.105364705882353, 7.1237392344497605, 8.365789473684211, 9.587109375), # 108 (9.478489115524543, 8.026926390548255, 9.322131087105625, 10.98181598899624, 10.69412168159445, 5.795353299801859, 6.227390327873262, 6.193265203475081, 10.948866883859168, 6.082040851018047, 7.09541071534054, 8.340082063870238, 9.567601701817559), # 109 (9.448552215661715, 7.983257002522237, 9.301686814128946, 10.951258890230811, 10.674296982167354, 5.7819882639841484, 6.198037102358089, 6.173068129858253, 10.92752200502972, 6.058664837677183, 7.06752096993325, 8.314351551031214, 9.54815832904664), # 110 (9.41888727858293, 7.9397867383512555, 9.281108796296298, 10.920721920289855, 10.654520697167756, 5.768934156378601, 6.168757651208631, 6.153419753086419, 10.906359567901236, 6.035237182280319, 7.040113237639553, 8.288609486679663, 9.528804976851852), # 111 (9.38954010854655, 7.896536306916234, 9.26040114883402, 10.890226013150832, 10.634817033809409, 5.756220240816949, 6.139562579489958, 6.134331047096479, 10.885398776863282, 6.011758401248016, 7.013230757871109, 8.26286742232811, 9.509567365397805), # 112 (9.360504223703044, 7.853598618785952, 9.239617828252069, 10.85983388249204, 10.615175680173705, 5.7438697692145135, 6.1105259636567695, 6.115852568780606, 10.86471281125862, 5.988304736612729, 6.9869239061528665, 8.237192936504428, 9.490443900843221), # 113 (9.331480897900065, 7.811397183525536, 9.219045675021619, 10.829789421277336, 10.595393354566326, 5.731854608529901, 6.082018208410579, 6.09821125950512, 10.84461903571306, 5.965315167912783, 6.961244337113197, 8.211912172112974, 9.471275414160035), # 114 (9.302384903003995, 7.769947198683046, 9.198696932707318, 10.800084505181779, 10.5754076778886, 5.7201435124987645, 6.054059650191562, 6.081402654278709, 10.82512497866879, 5.942825327988077, 6.936154511427094, 8.187037582558851, 9.452006631660376), # 115 (9.273179873237634, 7.729188281291702, 9.178532189983873, 10.770666150266404, 10.555188526383779, 5.708708877287098, 6.026604817527893, 6.065380312898993, 10.80618133922783, 5.920793358449547, 6.911605931271481, 8.162523197487346, 9.43260725975589), # 116 (9.243829442823772, 7.689060048384721, 9.158512035525986, 10.741481372592244, 10.53470577629511, 5.6975230990608905, 5.9996082389477525, 6.050097795163585, 10.787738816492203, 5.899177400908129, 6.887550098823283, 8.13832304654375, 9.413047004858225), # 117 (9.214297245985211, 7.649502116995324, 9.138597058008367, 10.712477188220333, 10.513929303865842, 5.686558573986138, 5.973024442979315, 6.0355086608700965, 10.769748109563935, 5.877935596974759, 6.863938516259424, 8.11439115937335, 9.393295573379024), # 118 (9.184546916944742, 7.610454104156729, 9.118747846105723, 10.683600613211706, 10.492828985339221, 5.675787698228833, 5.946807958150756, 6.021566469816145, 10.752159917545043, 5.857026088260372, 6.840722685756828, 8.090681565621434, 9.373322671729932), # 119 (9.154542089925162, 7.571855626902158, 9.098924988492762, 10.654798663627394, 10.471374696958497, 5.665182867954965, 5.920913312990253, 6.008224781799343, 10.734924939537558, 5.836407016375905, 6.817854109492416, 8.067148294933297, 9.353098006322597), # 120 (9.124246399149268, 7.533646302264829, 9.079089073844187, 10.626018355528434, 10.449536314966918, 5.6547164793305305, 5.89529503602598, 5.995437156617307, 10.717993874643499, 5.816036522932296, 6.795284289643116, 8.043745376954222, 9.33259128356866), # 121 (9.093623478839854, 7.495765747277961, 9.059200690834711, 10.597206704975855, 10.427283715607734, 5.644360928521519, 5.869907655786117, 5.983157154067649, 10.70131742196489, 5.795872749540477, 6.772964728385851, 8.0204268413295, 9.31177220987977), # 122 (9.062636963219719, 7.458153578974774, 9.039220428139036, 10.568310728030694, 10.40458677512419, 5.634088611693925, 5.844705700798839, 5.971338333947983, 10.684846280603754, 5.775873837811387, 6.750846927897544, 7.997146717704421, 9.290610491667572), # 123 (9.031250486511654, 7.420749414388487, 9.01910887443187, 10.539277440753986, 10.381415369759537, 5.623871925013739, 5.819643699592319, 5.959934256055926, 10.668531149662115, 5.755997929355961, 6.728882390355119, 7.973859035724275, 9.269075835343711), # 124 (8.999427682938459, 7.38349287055232, 8.998826618387923, 10.51005385920676, 10.357739375757022, 5.613683264646956, 5.794676180694739, 5.948898480189091, 10.652322728241993, 5.736203165785134, 6.707022617935501, 7.950517825034348, 9.247137947319828), # 125 (8.967132186722928, 7.346323564499494, 8.978334248681898, 10.480586999450054, 10.333528669359893, 5.603495026759568, 5.76975767263427, 5.938184566145092, 10.636171715445418, 5.7164476887098425, 6.685219112815613, 7.927077115279934, 9.224766534007578), # 126 (8.93432763208786, 7.309181113263224, 8.957592353988504, 10.450823877544899, 10.308753126811398, 5.593279607517565, 5.744842703939094, 5.927746073721545, 10.620028810374407, 5.696689639741024, 6.6634233771723785, 7.903490936106316, 9.201931301818599), # 127 (8.900977653256046, 7.272005133876735, 8.93656152298245, 10.420711509552332, 10.28338262435479, 5.583009403086944, 5.719885803137382, 5.917536562716062, 10.603844712130984, 5.6768871604896125, 6.641586913182724, 7.879713317158788, 9.178601957164537), # 128 (8.867045884450281, 7.234735243373241, 8.91520234433844, 10.390196911533382, 10.257387038233311, 5.572656809633695, 5.694841498757313, 5.90750959292626, 10.587570119817174, 5.656998392566545, 6.619661223023571, 7.855698288082636, 9.154748206457038), # 129 (8.832495959893366, 7.197311058785966, 8.893475406731179, 10.359227099549086, 10.230736244690213, 5.562194223323808, 5.669664319327063, 5.89761872414975, 10.571155732535, 5.636981477582757, 6.5975978088718445, 7.831399878523152, 9.130339756107748), # 130 (8.797291513808094, 7.159672197148127, 8.87134129883538, 10.327749089660475, 10.203400119968745, 5.55159404032328, 5.644308793374809, 5.88781751618415, 10.554552249386486, 5.616794557149185, 6.575348172904468, 7.806772118125624, 9.105346312528312), # 131 (8.76139618041726, 7.121758275492944, 8.848760609325746, 10.295709897928587, 10.175348540312154, 5.540828656798102, 5.618729449428725, 5.878059528827073, 10.537710369473654, 5.596395772876765, 6.552863817298364, 7.781769036535342, 9.079737582130376), # 132 (8.724773593943663, 7.083508910853635, 8.825693926876983, 10.263056540414452, 10.146551381963686, 5.529870468914266, 5.592880816016989, 5.868298321876132, 10.520580791898526, 5.575743266376432, 6.53009624423046, 7.756344663397592, 9.053483271325586), # 133 (8.687387388610095, 7.044863720263423, 8.802101840163804, 10.229736033179103, 10.116978521166592, 5.518691872837765, 5.566717421667779, 5.858487455128944, 10.503114215763128, 5.5547951792591235, 6.506996955877678, 7.730453028357666, 9.026553086525583), # 134 (8.649201198639354, 7.005762320755524, 8.777944937860909, 10.195695392283579, 10.08659983416412, 5.507265264734592, 5.540193794909268, 5.84858048838312, 10.48526134016948, 5.533509653135776, 6.483517454416942, 7.704048161060852, 8.99891673414202), # 135 (8.610178658254235, 6.966144329363159, 8.753183808643008, 10.160881633788906, 10.055385197199517, 5.495563040770739, 5.513264464269635, 5.838530981436277, 10.466972864219606, 5.511844829617322, 6.459609242025177, 7.677084091152441, 8.970543920586536), # 136 (8.570283401677534, 6.925949363119547, 8.72777904118481, 10.125241773756125, 10.023304486516034, 5.483557597112198, 5.485883958277055, 5.828292494086029, 10.448199487015533, 5.4897588503147015, 6.435223820879306, 7.649514848277719, 8.941404352270776), # 137 (8.529479063132047, 6.885117039057908, 8.701691224161017, 10.088722828246263, 9.990327578356919, 5.471221329924964, 5.458006805459704, 5.81781858612999, 10.428891907659281, 5.4672098568388465, 6.410312693156252, 7.621294462081978, 8.91146773560639), # 138 (8.487729276840568, 6.843586974211461, 8.67488094624634, 10.051271813320358, 9.956424348965415, 5.458526635375026, 5.429587534345759, 5.807062817365774, 10.409000825252871, 5.444155990800697, 6.38482736103294, 7.592376962210506, 8.880703777005019), # 139 (8.444997677025897, 6.801298785613425, 8.647308796115487, 10.012835745039444, 9.92156467458478, 5.445445909628379, 5.400580673463397, 5.795978747590996, 10.388476938898332, 5.420555393811186, 6.358719326686294, 7.562716378308592, 8.849082182878314), # 140 (8.40124789791083, 6.758192090297021, 8.61893536244316, 9.973361639464553, 9.885718431458253, 5.431951548851015, 5.370940751340795, 5.78451993660327, 10.36727094769768, 5.396366207481251, 6.331940092293238, 7.532266740021525, 8.816572659637913), # 141 (8.356443573718156, 6.714206505295466, 8.58972123390407, 9.93279651265672, 9.848855495829087, 5.418015949208927, 5.340622296506126, 5.772639944200211, 10.345333550752942, 5.371546573421828, 6.304441160030697, 7.500982076994594, 8.783144913695466), # 142 (8.310548338670674, 6.669281647641981, 8.559626999172925, 9.891087380676975, 9.810945743940529, 5.403611506868106, 5.3095798374875685, 5.760292330179432, 10.322615447166147, 5.3460546332438525, 6.276174032075593, 7.4688164188730894, 8.748768651462617), # 143 (8.263525826991184, 6.623357134369786, 8.528613246924428, 9.848181259586356, 9.771959052035829, 5.388710617994547, 5.277767902813299, 5.747430654338549, 10.29906733603931, 5.31984852855826, 6.247090210604851, 7.435723795302299, 8.713413579351014), # 144 (8.215339672902477, 6.576372582512099, 8.496640565833289, 9.804025165445895, 9.731865296358233, 5.3732856787542405, 5.245141021011493, 5.734008476475176, 10.274639916474454, 5.292886400975988, 6.217141197795395, 7.401658235927513, 8.6770494037723), # 145 (8.16595351062735, 6.528267609102142, 8.463669544574216, 9.758566114316626, 9.690634353150992, 5.35730908531318, 5.21165372061033, 5.719979356386927, 10.249283887573606, 5.2651263921079705, 6.186278495824149, 7.3665737703940195, 8.639645831138118), # 146 (8.1153309743886, 6.47898183117313, 8.42966077182191, 9.71175112225958, 9.648236098657351, 5.340753233837358, 5.177260530137981, 5.705296853871415, 10.22294994843879, 5.236526643565146, 6.154453606868036, 7.3304244283471105, 8.601172567860118), # 147 (8.063435698409021, 6.428454865758288, 8.394574836251083, 9.663527205335797, 9.604640409120561, 5.323590520492767, 5.1419159781226265, 5.689914528726257, 10.195588798172029, 5.207045296958447, 6.1216180331039824, 7.29316423943207, 8.561599320349941), # 148 (8.010231316911412, 6.37662632989083, 8.358372326536443, 9.613841379606303, 9.55981716078387, 5.3057933414453995, 5.105574593092441, 5.673785940749067, 10.167151135875338, 5.176640493898813, 6.08772327670891, 7.254747233294191, 8.520895795019237), # 149 (7.955681464118564, 6.323435840603979, 8.321013831352694, 9.562640661132138, 9.513736229890526, 5.287334092861249, 5.0681909035756005, 5.656864649737456, 10.137587660650752, 5.1452703759971765, 6.0527208398597425, 7.215127439578763, 8.479031698279647), # 150 (7.899749774253275, 6.268823014930954, 8.282459939374542, 9.50987206597433, 9.466367492683776, 5.268185170906305, 5.029719438100283, 5.639104215489043, 10.106849071600289, 5.112893084864478, 6.016562224733405, 7.174258887931072, 8.435976736542818), # 151 (7.842399881538343, 6.212727469904973, 8.242671239276701, 9.455482610193918, 9.417680825406869, 5.2483189717465635, 4.9901147251946645, 5.620458197801441, 10.07488606782597, 5.079466762111649, 5.979198933506821, 7.132095607996409, 8.391700616220398), # 152 (7.78359542019656, 6.155088822559256, 8.201608319733868, 9.399419309851933, 9.367646104303056, 5.2277078915480155, 4.949331293386919, 5.600880156472262, 10.041649348429823, 5.044949549349629, 5.940582468356916, 7.088591629420064, 8.346173043724027), # 153 (7.723300024450729, 6.095846689927024, 8.159231769420758, 9.34162918100941, 9.31623320561558, 5.206324326476654, 4.907323671205228, 5.580323651299123, 10.007089612513866, 5.009299588189353, 5.900664331460612, 7.043700981847325, 8.299363725465357), # 154 (7.6614773285236355, 6.034940689041495, 8.115502177012075, 9.282059239727378, 9.263412005587696, 5.184140672698471, 4.864046387177761, 5.558742242079636, 9.971157559180128, 4.972475020241754, 5.859396024994833, 6.997377694923482, 8.251242367856026), # 155 (7.598090966638081, 5.972310436935888, 8.070380131182526, 9.220656502066875, 9.209152380462648, 5.161129326379461, 4.8194539698327, 5.5360894886114185, 9.933803887530626, 4.934433987117773, 5.816729051136504, 6.949575798293822, 8.201778677307685), # 156 (7.533104573016862, 5.907895550643423, 8.023826220606818, 9.157367984088937, 9.153424206483685, 5.137262683685614, 4.773500947698219, 5.512318950692082, 9.894979296667389, 4.895134630428341, 5.772614912062549, 6.900249321603637, 8.150942360231976), # 157 (7.464680946405239, 5.840453120772258, 7.973591953902355, 9.089769581651243, 9.093681105870997, 5.11102447631711, 4.725106720927857, 5.485796952349372, 9.851662091599097, 4.8533659162911436, 5.7255957525389425, 6.847599564194339, 8.096485859415345), # 158 (7.382286766978402, 5.763065319599478, 7.906737818402988, 9.003977158788453, 9.015191309781628, 5.073689648007103, 4.668212763385716, 5.4472135327643825, 9.786427261222144, 4.802280994098745, 5.667416935618994, 6.781362523683108, 8.025427646920194), # 159 (7.284872094904309, 5.675096728540714, 7.821920957955888, 8.89857751040886, 8.916420131346795, 5.024341296047684, 4.602243748383784, 5.3955991895273465, 9.697425227228651, 4.741205651862893, 5.59725950860954, 6.700501948887847, 7.93642060889358), # 160 (7.17322205458596, 5.577120868080469, 7.720046971910309, 8.774572503756728, 8.798393124282113, 4.963577241570314, 4.527681446006876, 5.33160053310978, 9.585829766999018, 4.6706581931709374, 5.515741654599707, 6.605767468907571, 7.830374044819097), # 161 (7.048121770426357, 5.469711258703239, 7.602021459615496, 8.632964006076326, 8.662135842303204, 4.891995305706455, 4.445007626339809, 5.255864173983202, 9.452814657913637, 4.5911569216102315, 5.42348155667862, 6.497908712841293, 7.708197254180333), # 162 (6.9103563668284975, 5.353441420893524, 7.468750020420702, 8.474753884611934, 8.508673839125688, 4.810193309587572, 4.354704059467401, 5.169036722619125, 9.299553677352906, 4.503220140768125, 5.321097397935408, 6.3776753097880325, 7.570799536460879), # 163 (6.760710968195384, 5.228884875135821, 7.321138253675176, 8.300944006607818, 8.339032668465189, 4.718769074345129, 4.257252515474466, 5.071764789489069, 9.127220602697223, 4.407366154231968, 5.209207361459196, 6.245816888846803, 7.419090191144328), # 164 (6.599970698930017, 5.096615141914632, 7.160091758728169, 8.112536239308252, 8.154237884037324, 4.618320421110586, 4.153134764445822, 4.964694985064546, 8.93698921132698, 4.3041132655891134, 5.088429630339111, 6.10308307911662, 7.25397851771427), # 165 (6.428920683435397, 4.957205741714454, 6.9865161349289275, 7.910532449957501, 7.955315039557714, 4.509445171015408, 4.042832576466286, 4.848473919817077, 8.730033280622573, 4.193979778426912, 4.959382387664279, 5.950223509696501, 7.0763738156542955), # 166 (6.248346046114523, 4.811230195019787, 6.801316981626704, 7.695934505799843, 7.74328968874198, 4.392741145191058, 3.9268277216206746, 4.723748204218176, 8.5075265879644, 4.077483996332714, 4.822683816523827, 5.7879878096854585, 6.887185384447996), # 167 (6.059031911370395, 4.659262022315128, 6.605399898170748, 7.469744274079546, 7.519187385305742, 4.268806164768999, 3.805601969993804, 4.5911644487393595, 8.270642910732855, 3.955144222893872, 4.678952100006881, 5.617125608182511, 6.6873225235789615), # 168 (5.861763403606015, 4.501874744084979, 6.399670483910309, 7.232963622040883, 7.28403368296462, 4.138238050880695, 3.6796370916704917, 4.451369263852145, 8.020556026308338, 3.8274787616977366, 4.528805421202568, 5.438386534286672, 6.477694532530785), # 169 (5.657325647224384, 4.339641880813837, 6.185034338194635, 6.98659441692812, 7.038854135434233, 4.001634624657607, 3.549414856735553, 4.305009260028047, 7.7584397120712385, 3.6950059163316578, 4.372861963200016, 5.252520217096959, 6.259210710787055), # 170 (5.4465037666285, 4.173136952986201, 5.962397060372978, 6.731638525985535, 6.784674296430206, 3.8595937072311983, 3.4154170352738054, 4.152731047738583, 7.485467745401956, 3.5582439903829886, 4.211739909088348, 5.060276285712386, 6.032780357831365), # 171 (5.230082886221365, 4.002933481086569, 5.7326642497945866, 6.4690978164573965, 6.5225197196681535, 3.7127131197329337, 3.2781253973700655, 3.9951812374552707, 7.202813903680886, 3.41771128743908, 4.046057441956694, 4.862404369231971, 5.799312773147303), # 172 (5.00884813040598, 3.8296049855994423, 5.4967415058087115, 6.1999741555879755, 6.253415958863702, 3.5615906832942748, 3.1380217131091497, 3.8330064396496235, 6.911651964288422, 3.2739261110872815, 3.8764327448941778, 4.659654096754725, 5.5597172562184625), # 173 (4.783584623585344, 3.653724987009318, 5.2555344277646014, 5.9252694106215404, 5.978388567732466, 3.406824219046685, 2.9955877525758754, 3.6668532647931604, 6.613155704604964, 3.1274067649149466, 3.7034840009899277, 4.452775097379668, 5.314903106528433), # 174 (4.555077490162455, 3.4758670058006946, 5.009948615011508, 5.645985448802367, 5.698463099990069, 3.2490115481216284, 2.851305285855058, 3.497368323357396, 6.308498902010905, 2.9786715525094243, 3.5278293933330693, 4.242517000205814, 5.0657796235608075), # 175 (4.324111854540319, 3.296604562458073, 4.760889666898678, 5.363124137374725, 5.41466510935213, 3.0887504916505666, 2.705656083031515, 3.325198225813849, 5.998855333886642, 2.828238777458067, 3.35008710501273, 4.029629434332179, 4.813256106799174), # 176 (4.0914728411219325, 3.1165111774659513, 4.5092631827753635, 5.077687343582883, 5.128020149534273, 2.9266388707649633, 2.5591219141900625, 3.1509895826340326, 5.68539877761257, 2.6766267433482245, 3.1708753191180357, 3.8148620288577786, 4.5582418557271245), # 177 (3.8579455743102966, 2.9361603713088282, 4.255974761990814, 4.790676934671116, 4.8395537742521135, 2.7632745065962827, 2.4121845494155174, 2.9753890042894655, 5.3693030105690855, 2.52435375376725, 2.9908122187381125, 3.598964412881627, 4.301646169828252), # 178 (0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0), # 179 ) passenger_arriving_acc = ( (8, 6, 8, 5, 3, 3, 3, 1, 2, 1, 1, 0, 0, 5, 6, 2, 2, 3, 2, 3, 0, 2, 1, 0, 0, 0), # 0 (13, 12, 13, 12, 7, 7, 4, 3, 7, 4, 3, 0, 0, 11, 11, 7, 6, 6, 6, 5, 3, 3, 3, 2, 0, 0), # 1 (25, 19, 19, 18, 11, 7, 4, 6, 10, 5, 3, 0, 0, 19, 16, 13, 7, 14, 11, 9, 4, 3, 3, 2, 1, 0), # 2 (32, 27, 24, 24, 14, 10, 10, 8, 11, 5, 3, 2, 0, 26, 21, 17, 11, 16, 15, 12, 6, 7, 6, 7, 2, 0), # 3 (41, 34, 28, 27, 21, 12, 15, 11, 15, 6, 5, 3, 0, 35, 28, 22, 18, 22, 20, 15, 6, 10, 10, 8, 2, 0), # 4 (48, 40, 34, 31, 31, 12, 17, 14, 18, 9, 5, 3, 0, 45, 34, 26, 23, 24, 23, 17, 7, 16, 12, 10, 3, 0), # 5 (52, 49, 40, 38, 38, 15, 19, 16, 21, 12, 6, 4, 0, 49, 44, 32, 28, 29, 27, 19, 9, 17, 12, 13, 5, 0), # 6 (62, 56, 52, 44, 43, 18, 22, 19, 23, 14, 6, 4, 0, 59, 48, 40, 31, 36, 28, 24, 11, 19, 15, 20, 7, 0), # 7 (75, 65, 62, 50, 47, 21, 29, 22, 29, 14, 9, 5, 0, 75, 54, 43, 33, 43, 31, 32, 12, 19, 18, 21, 9, 0), # 8 (80, 74, 68, 57, 50, 24, 32, 25, 34, 15, 9, 5, 0, 83, 56, 50, 40, 48, 32, 34, 12, 22, 20, 24, 10, 0), # 9 (88, 87, 72, 64, 54, 27, 35, 29, 37, 15, 10, 6, 0, 89, 62, 57, 44, 51, 38, 37, 13, 27, 22, 25, 12, 0), # 10 (91, 94, 82, 70, 57, 30, 38, 31, 41, 15, 10, 6, 0, 99, 65, 63, 52, 57, 44, 44, 13, 31, 22, 25, 12, 0), # 11 (96, 104, 88, 77, 62, 30, 41, 33, 45, 18, 10, 6, 0, 106, 71, 71, 58, 65, 47, 49, 15, 34, 23, 25, 13, 0), # 12 (108, 115, 98, 84, 69, 32, 45, 35, 47, 19, 13, 6, 0, 117, 78, 78, 63, 74, 54, 52, 16, 39, 27, 27, 13, 0), # 13 (122, 124, 103, 91, 75, 36, 48, 38, 49, 21, 15, 6, 0, 128, 83, 82, 66, 78, 59, 54, 19, 42, 33, 30, 14, 0), # 14 (130, 133, 110, 99, 83, 39, 53, 41, 51, 23, 17, 8, 0, 136, 89, 90, 68, 86, 65, 61, 22, 45, 37, 30, 15, 0), # 15 (137, 145, 113, 105, 93, 41, 54, 42, 54, 24, 20, 8, 0, 141, 96, 101, 72, 98, 67, 64, 25, 50, 38, 31, 15, 0), # 16 (147, 152, 119, 111, 99, 43, 59, 48, 57, 24, 20, 8, 0, 152, 105, 110, 77, 107, 75, 66, 28, 51, 41, 31, 16, 0), # 17 (157, 161, 125, 119, 109, 46, 60, 51, 57, 25, 23, 8, 0, 167, 112, 114, 79, 115, 78, 71, 29, 53, 44, 33, 17, 0), # 18 (170, 164, 133, 131, 117, 48, 63, 54, 60, 29, 24, 8, 0, 181, 117, 123, 81, 124, 84, 75, 31, 55, 46, 35, 17, 0), # 19 (181, 175, 144, 143, 123, 49, 66, 56, 66, 30, 25, 9, 0, 194, 124, 131, 87, 135, 89, 81, 33, 58, 50, 36, 20, 0), # 20 (187, 191, 154, 159, 130, 52, 74, 62, 68, 30, 25, 9, 0, 201, 129, 139, 95, 143, 90, 83, 33, 60, 55, 37, 20, 0), # 21 (192, 199, 159, 172, 144, 55, 80, 65, 71, 30, 26, 12, 0, 216, 138, 144, 99, 149, 94, 90, 36, 63, 58, 41, 21, 0), # 22 (202, 208, 168, 184, 154, 59, 85, 70, 73, 32, 29, 12, 0, 226, 148, 149, 102, 156, 100, 95, 40, 68, 60, 44, 22, 0), # 23 (209, 216, 177, 194, 157, 65, 92, 71, 77, 36, 29, 12, 0, 236, 159, 156, 108, 164, 105, 97, 42, 72, 64, 46, 22, 0), # 24 (217, 220, 188, 207, 166, 67, 96, 75, 83, 41, 29, 12, 0, 247, 176, 164, 116, 168, 110, 102, 47, 74, 65, 48, 24, 0), # 25 (227, 233, 200, 213, 176, 70, 99, 81, 89, 43, 33, 14, 0, 259, 193, 173, 120, 179, 116, 105, 54, 74, 70, 48, 24, 0), # 26 (236, 239, 217, 221, 179, 76, 102, 83, 92, 46, 36, 15, 0, 274, 203, 180, 125, 186, 125, 110, 58, 77, 74, 51, 25, 0), # 27 (245, 246, 223, 229, 184, 80, 105, 89, 98, 48, 39, 16, 0, 280, 213, 188, 131, 197, 133, 117, 61, 78, 76, 53, 26, 0), # 28 (255, 257, 233, 241, 190, 82, 113, 94, 104, 50, 40, 16, 0, 286, 219, 196, 137, 206, 143, 128, 64, 84, 78, 58, 27, 0), # 29 (267, 267, 243, 246, 198, 87, 118, 100, 105, 53, 45, 16, 0, 299, 225, 205, 144, 215, 145, 134, 67, 89, 83, 60, 27, 0), # 30 (277, 275, 249, 255, 210, 92, 128, 107, 108, 58, 46, 16, 0, 303, 230, 212, 155, 223, 149, 137, 68, 91, 89, 61, 29, 0), # 31 (295, 285, 257, 261, 214, 96, 131, 113, 113, 59, 46, 16, 0, 312, 238, 221, 161, 240, 154, 143, 70, 99, 92, 61, 30, 0), # 32 (300, 291, 266, 273, 223, 99, 139, 117, 115, 60, 47, 17, 0, 317, 252, 229, 168, 249, 161, 149, 75, 102, 95, 61, 30, 0), # 33 (312, 298, 273, 288, 229, 104, 143, 121, 118, 65, 49, 18, 0, 328, 261, 234, 175, 253, 168, 154, 79, 105, 97, 63, 31, 0), # 34 (325, 309, 284, 299, 239, 111, 149, 122, 121, 70, 49, 19, 0, 337, 267, 242, 181, 261, 173, 161, 80, 107, 103, 64, 32, 0), # 35 (336, 319, 292, 307, 246, 119, 154, 124, 126, 71, 49, 21, 0, 347, 277, 244, 188, 268, 177, 163, 85, 112, 109, 66, 35, 0), # 36 (348, 331, 301, 314, 254, 124, 159, 125, 130, 73, 53, 23, 0, 358, 284, 251, 194, 277, 180, 165, 87, 117, 111, 67, 35, 0), # 37 (362, 340, 309, 321, 262, 125, 166, 133, 130, 77, 54, 24, 0, 370, 293, 251, 200, 286, 188, 168, 88, 118, 113, 67, 35, 0), # 38 (370, 349, 316, 330, 266, 129, 168, 136, 132, 79, 54, 25, 0, 379, 298, 260, 208, 289, 192, 174, 91, 122, 115, 70, 35, 0), # 39 (379, 361, 320, 344, 273, 134, 170, 138, 137, 81, 57, 27, 0, 391, 303, 267, 218, 299, 196, 179, 96, 125, 118, 72, 35, 0), # 40 (395, 374, 326, 356, 282, 138, 174, 141, 138, 83, 58, 27, 0, 405, 312, 278, 225, 306, 202, 180, 100, 127, 120, 74, 38, 0), # 41 (410, 384, 336, 363, 294, 141, 181, 147, 142, 83, 61, 29, 0, 415, 322, 287, 234, 310, 207, 182, 104, 132, 124, 74, 38, 0), # 42 (421, 393, 341, 374, 303, 145, 189, 151, 147, 85, 63, 31, 0, 422, 325, 291, 237, 317, 214, 185, 105, 136, 126, 75, 38, 0), # 43 (427, 397, 349, 381, 310, 149, 191, 152, 149, 88, 63, 33, 0, 429, 335, 296, 244, 324, 222, 187, 109, 142, 126, 77, 39, 0), # 44 (443, 411, 355, 395, 324, 151, 192, 154, 156, 91, 65, 33, 0, 441, 343, 304, 252, 332, 225, 193, 111, 145, 130, 79, 39, 0), # 45 (456, 421, 360, 398, 333, 152, 195, 159, 162, 93, 66, 34, 0, 451, 351, 310, 255, 345, 229, 197, 112, 151, 133, 79, 40, 0), # 46 (464, 431, 370, 412, 343, 155, 200, 165, 164, 94, 66, 35, 0, 460, 357, 317, 264, 355, 233, 200, 112, 157, 137, 79, 40, 0), # 47 (473, 441, 375, 422, 349, 161, 208, 169, 168, 94, 68, 36, 0, 471, 364, 322, 271, 367, 235, 203, 113, 160, 142, 81, 40, 0), # 48 (474, 449, 389, 429, 357, 162, 214, 171, 170, 95, 70, 37, 0, 481, 369, 328, 277, 378, 240, 205, 116, 161, 144, 82, 40, 0), # 49 (482, 460, 398, 442, 363, 166, 219, 175, 171, 98, 72, 37, 0, 486, 382, 329, 282, 386, 242, 209, 117, 165, 146, 83, 40, 0), # 50 (490, 470, 406, 450, 369, 170, 226, 176, 173, 100, 72, 39, 0, 496, 387, 332, 286, 402, 248, 211, 118, 171, 147, 85, 42, 0), # 51 (505, 473, 415, 456, 378, 172, 233, 181, 178, 100, 74, 40, 0, 504, 396, 337, 291, 411, 256, 216, 121, 176, 153, 88, 42, 0), # 52 (513, 478, 422, 466, 388, 174, 235, 187, 184, 103, 74, 41, 0, 515, 404, 343, 297, 417, 263, 220, 125, 181, 157, 88, 44, 0), # 53 (522, 488, 430, 475, 399, 180, 238, 191, 188, 104, 74, 42, 0, 527, 411, 350, 302, 422, 267, 224, 125, 182, 159, 89, 44, 0), # 54 (533, 496, 439, 486, 408, 185, 240, 196, 195, 105, 77, 44, 0, 545, 421, 360, 308, 429, 280, 225, 131, 187, 159, 90, 44, 0), # 55 (539, 507, 442, 492, 415, 189, 240, 201, 196, 105, 77, 45, 0, 556, 427, 364, 316, 434, 286, 228, 135, 190, 162, 90, 44, 0), # 56 (553, 520, 455, 501, 424, 195, 245, 204, 203, 106, 77, 46, 0, 566, 437, 372, 320, 441, 292, 233, 136, 192, 165, 91, 44, 0), # 57 (562, 533, 461, 511, 437, 196, 248, 206, 209, 111, 78, 47, 0, 576, 446, 381, 324, 448, 303, 234, 140, 196, 171, 91, 44, 0), # 58 (571, 538, 468, 521, 444, 198, 249, 210, 216, 112, 78, 47, 0, 584, 452, 382, 331, 457, 307, 238, 142, 199, 174, 92, 44, 0), # 59 (580, 552, 478, 534, 457, 203, 253, 211, 218, 114, 81, 47, 0, 593, 456, 392, 336, 466, 309, 244, 145, 201, 176, 95, 45, 0), # 60 (589, 564, 480, 542, 466, 207, 255, 213, 223, 117, 82, 48, 0, 606, 462, 398, 341, 475, 313, 246, 147, 207, 180, 95, 45, 0), # 61 (598, 570, 492, 554, 469, 210, 256, 217, 227, 119, 83, 50, 0, 619, 472, 406, 347, 483, 322, 250, 149, 211, 186, 99, 46, 0), # 62 (613, 578, 501, 565, 477, 211, 262, 220, 230, 123, 84, 52, 0, 636, 479, 415, 349, 493, 322, 252, 150, 214, 191, 102, 50, 0), # 63 (624, 585, 508, 571, 486, 216, 265, 226, 234, 124, 87, 53, 0, 647, 487, 422, 355, 502, 328, 256, 154, 219, 194, 105, 51, 0), # 64 (633, 593, 511, 575, 491, 218, 270, 228, 237, 127, 87, 55, 0, 654, 493, 430, 358, 508, 332, 260, 156, 224, 195, 106, 51, 0), # 65 (639, 598, 523, 582, 502, 221, 271, 229, 244, 127, 89, 56, 0, 668, 501, 437, 361, 517, 339, 266, 161, 225, 198, 109, 51, 0), # 66 (650, 603, 536, 588, 508, 225, 272, 231, 245, 129, 90, 56, 0, 679, 510, 441, 370, 522, 344, 270, 164, 229, 203, 110, 52, 0), # 67 (659, 611, 540, 600, 513, 226, 277, 235, 252, 131, 91, 56, 0, 691, 515, 446, 378, 528, 352, 274, 165, 233, 205, 111, 52, 0), # 68 (669, 622, 548, 608, 519, 229, 282, 236, 253, 135, 91, 56, 0, 701, 520, 452, 380, 542, 358, 277, 172, 238, 205, 112, 53, 0), # 69 (683, 630, 553, 612, 526, 234, 285, 238, 257, 136, 92, 58, 0, 709, 533, 460, 387, 551, 362, 281, 173, 242, 208, 115, 55, 0), # 70 (691, 639, 561, 621, 529, 237, 291, 241, 259, 139, 97, 58, 0, 718, 537, 462, 390, 560, 364, 284, 174, 245, 211, 117, 57, 0), # 71 (702, 647, 567, 626, 536, 241, 294, 242, 261, 140, 100, 59, 0, 733, 547, 465, 397, 569, 368, 287, 174, 250, 218, 120, 58, 0), # 72 (709, 660, 572, 634, 541, 244, 296, 247, 266, 145, 100, 61, 0, 743, 553, 470, 407, 580, 372, 290, 174, 252, 219, 122, 58, 0), # 73 (716, 669, 581, 641, 553, 249, 299, 250, 271, 146, 102, 62, 0, 751, 560, 476, 417, 586, 374, 292, 176, 259, 220, 123, 59, 0), # 74 (727, 676, 589, 647, 557, 251, 301, 253, 274, 148, 102, 64, 0, 758, 570, 483, 420, 595, 378, 302, 176, 262, 226, 129, 59, 0), # 75 (736, 683, 597, 667, 567, 255, 304, 256, 278, 152, 102, 65, 0, 769, 574, 490, 427, 605, 381, 305, 182, 262, 229, 130, 59, 0), # 76 (746, 691, 598, 673, 573, 262, 305, 258, 281, 152, 102, 65, 0, 777, 584, 494, 434, 617, 383, 312, 184, 263, 229, 133, 62, 0), # 77 (753, 702, 608, 681, 581, 265, 307, 259, 286, 154, 104, 65, 0, 789, 591, 500, 438, 627, 385, 312, 188, 267, 235, 134, 63, 0), # 78 (762, 710, 615, 696, 590, 272, 309, 262, 286, 154, 104, 66, 0, 797, 598, 511, 440, 635, 389, 321, 189, 268, 237, 138, 65, 0), # 79 (766, 716, 623, 701, 598, 274, 312, 265, 290, 155, 107, 69, 0, 799, 608, 520, 443, 642, 396, 325, 189, 271, 237, 140, 66, 0), # 80 (777, 723, 629, 712, 605, 278, 314, 268, 291, 156, 107, 70, 0, 808, 614, 523, 450, 652, 399, 330, 189, 277, 239, 141, 66, 0), # 81 (786, 727, 634, 724, 612, 284, 319, 269, 295, 158, 109, 71, 0, 818, 625, 531, 456, 660, 404, 334, 190, 281, 242, 142, 68, 0), # 82 (802, 736, 647, 733, 620, 286, 322, 272, 296, 161, 110, 71, 0, 827, 630, 535, 463, 665, 404, 336, 192, 281, 242, 144, 68, 0), # 83 (811, 746, 659, 738, 630, 289, 322, 275, 298, 164, 111, 73, 0, 839, 636, 537, 469, 676, 409, 340, 194, 283, 243, 146, 68, 0), # 84 (818, 751, 669, 746, 636, 292, 326, 275, 301, 167, 111, 73, 0, 853, 643, 543, 473, 680, 413, 346, 195, 287, 246, 148, 68, 0), # 85 (825, 760, 675, 762, 639, 294, 327, 278, 304, 169, 111, 74, 0, 856, 652, 552, 480, 689, 417, 349, 198, 291, 248, 148, 68, 0), # 86 (836, 773, 687, 774, 645, 297, 329, 283, 309, 170, 112, 75, 0, 866, 658, 556, 484, 694, 420, 350, 200, 295, 253, 150, 70, 0), # 87 (845, 785, 696, 786, 652, 300, 331, 284, 311, 172, 113, 75, 0, 874, 670, 562, 489, 697, 423, 351, 200, 296, 255, 151, 70, 0), # 88 (860, 794, 700, 793, 660, 304, 333, 284, 316, 173, 115, 76, 0, 886, 675, 571, 495, 705, 426, 358, 205, 299, 256, 154, 72, 0), # 89 (871, 801, 712, 805, 665, 309, 338, 289, 319, 173, 117, 76, 0, 899, 684, 580, 500, 715, 435, 362, 207, 302, 261, 155, 73, 0), # 90 (882, 810, 720, 815, 672, 310, 340, 292, 325, 176, 117, 77, 0, 910, 691, 587, 506, 722, 439, 366, 210, 307, 264, 157, 73, 0), # 91 (886, 817, 731, 824, 679, 315, 344, 294, 326, 179, 118, 78, 0, 922, 695, 592, 511, 733, 442, 371, 215, 310, 267, 160, 73, 0), # 92 (895, 823, 739, 831, 684, 321, 350, 299, 332, 180, 118, 80, 0, 929, 702, 596, 516, 740, 444, 374, 221, 312, 270, 162, 73, 0), # 93 (902, 829, 750, 842, 691, 327, 355, 301, 338, 181, 120, 80, 0, 939, 711, 601, 521, 743, 445, 378, 222, 316, 272, 163, 73, 0), # 94 (909, 835, 756, 852, 699, 331, 360, 304, 339, 183, 121, 81, 0, 947, 716, 611, 524, 754, 452, 384, 222, 318, 275, 165, 74, 0), # 95 (922, 842, 768, 858, 704, 335, 365, 305, 341, 186, 121, 81, 0, 954, 723, 617, 526, 761, 455, 388, 225, 320, 277, 167, 76, 0), # 96 (930, 850, 775, 869, 706, 339, 368, 307, 347, 188, 125, 82, 0, 965, 730, 623, 530, 773, 461, 392, 226, 325, 278, 168, 80, 0), # 97 (941, 855, 783, 873, 712, 345, 372, 308, 348, 188, 127, 83, 0, 976, 740, 630, 537, 785, 466, 395, 226, 327, 283, 169, 80, 0), # 98 (949, 862, 794, 878, 718, 348, 376, 313, 352, 193, 128, 84, 0, 988, 748, 640, 547, 790, 468, 399, 228, 333, 284, 174, 80, 0), # 99 (954, 870, 805, 887, 728, 351, 378, 318, 354, 194, 130, 84, 0, 1002, 754, 644, 553, 795, 473, 404, 230, 339, 285, 175, 83, 0), # 100 (962, 877, 812, 897, 737, 353, 383, 319, 359, 196, 132, 84, 0, 1013, 760, 652, 557, 801, 479, 406, 232, 340, 290, 175, 83, 0), # 101 (972, 883, 817, 903, 744, 355, 384, 322, 360, 197, 133, 84, 0, 1030, 766, 656, 562, 809, 481, 411, 235, 345, 292, 177, 83, 0), # 102 (984, 891, 825, 912, 751, 358, 386, 322, 366, 198, 133, 84, 0, 1038, 777, 659, 562, 818, 485, 412, 240, 349, 293, 179, 83, 0), # 103 (990, 901, 833, 916, 755, 361, 390, 324, 369, 198, 135, 85, 0, 1042, 783, 664, 567, 826, 489, 417, 243, 353, 293, 180, 83, 0), # 104 (1004, 907, 837, 924, 761, 363, 395, 326, 375, 199, 135, 85, 0, 1053, 788, 672, 568, 834, 491, 418, 245, 358, 299, 180, 85, 0), # 105 (1011, 918, 843, 934, 767, 369, 400, 327, 376, 201, 137, 85, 0, 1066, 798, 678, 572, 841, 493, 423, 246, 361, 302, 182, 87, 0), # 106 (1020, 926, 852, 944, 771, 374, 404, 328, 378, 202, 137, 85, 0, 1074, 807, 684, 575, 849, 495, 426, 249, 363, 305, 185, 87, 0), # 107 (1029, 936, 861, 954, 777, 379, 408, 331, 381, 206, 137, 85, 0, 1084, 809, 689, 577, 854, 498, 431, 252, 366, 308, 185, 87, 0), # 108 (1038, 944, 874, 965, 786, 381, 409, 331, 383, 206, 138, 85, 0, 1092, 812, 693, 583, 860, 502, 438, 253, 371, 309, 188, 87, 0), # 109 (1043, 954, 879, 973, 792, 383, 412, 334, 387, 207, 140, 85, 0, 1100, 817, 699, 588, 865, 508, 441, 256, 375, 314, 193, 87, 0), # 110 (1053, 961, 884, 981, 795, 384, 417, 336, 389, 208, 142, 86, 0, 1108, 829, 703, 590, 874, 512, 441, 257, 379, 317, 197, 87, 0), # 111 (1063, 968, 889, 989, 803, 385, 422, 339, 391, 211, 142, 86, 0, 1120, 836, 710, 600, 882, 517, 443, 260, 387, 318, 198, 88, 0), # 112 (1073, 973, 894, 997, 809, 388, 425, 342, 396, 211, 142, 86, 0, 1126, 847, 718, 605, 895, 522, 445, 263, 390, 322, 202, 89, 0), # 113 (1085, 980, 901, 1005, 817, 391, 430, 345, 404, 212, 144, 87, 0, 1136, 860, 724, 605, 900, 524, 449, 266, 393, 326, 206, 90, 0), # 114 (1093, 987, 910, 1015, 823, 395, 433, 349, 408, 214, 144, 88, 0, 1147, 866, 730, 619, 907, 528, 453, 267, 400, 328, 209, 90, 0), # 115 (1106, 991, 921, 1026, 831, 399, 434, 354, 411, 216, 145, 88, 0, 1154, 876, 738, 622, 916, 530, 458, 267, 402, 336, 210, 90, 0), # 116 (1123, 996, 926, 1041, 841, 400, 438, 355, 413, 217, 145, 88, 0, 1162, 886, 746, 624, 924, 536, 461, 269, 404, 341, 210, 91, 0), # 117 (1131, 1004, 935, 1049, 848, 406, 441, 356, 414, 217, 147, 89, 0, 1171, 897, 756, 627, 931, 539, 467, 273, 408, 346, 210, 91, 0), # 118 (1147, 1012, 940, 1057, 850, 410, 442, 357, 415, 220, 147, 90, 0, 1184, 908, 766, 629, 933, 542, 469, 273, 410, 347, 211, 92, 0), # 119 (1155, 1021, 943, 1062, 860, 412, 445, 359, 421, 220, 149, 91, 0, 1195, 912, 769, 632, 940, 549, 476, 274, 413, 349, 214, 92, 0), # 120 (1167, 1030, 950, 1070, 867, 413, 450, 360, 424, 220, 150, 91, 0, 1206, 917, 771, 636, 951, 554, 478, 275, 419, 352, 217, 92, 0), # 121 (1174, 1035, 953, 1083, 873, 414, 455, 360, 426, 221, 153, 91, 0, 1209, 924, 777, 641, 959, 559, 479, 277, 421, 358, 221, 93, 0), # 122 (1180, 1045, 961, 1097, 879, 415, 459, 365, 427, 222, 154, 93, 0, 1213, 929, 782, 646, 969, 561, 480, 283, 425, 358, 221, 93, 0), # 123 (1191, 1049, 968, 1103, 888, 421, 461, 370, 431, 223, 155, 95, 0, 1225, 939, 789, 648, 973, 566, 483, 285, 428, 360, 224, 93, 0), # 124 (1201, 1051, 975, 1108, 902, 426, 463, 373, 435, 225, 157, 96, 0, 1233, 950, 796, 651, 985, 571, 485, 288, 432, 363, 227, 94, 0), # 125 (1205, 1057, 983, 1117, 911, 429, 464, 374, 441, 227, 158, 97, 0, 1239, 960, 803, 654, 997, 571, 486, 294, 435, 366, 230, 95, 0), # 126 (1213, 1060, 989, 1123, 918, 433, 466, 377, 444, 230, 158, 97, 0, 1243, 966, 811, 660, 1003, 574, 488, 296, 438, 371, 232, 95, 0), # 127 (1216, 1062, 999, 1134, 924, 437, 468, 377, 446, 231, 159, 97, 0, 1251, 976, 815, 663, 1013, 575, 491, 298, 444, 372, 235, 95, 0), # 128 (1221, 1067, 1007, 1138, 928, 441, 476, 379, 449, 231, 160, 97, 0, 1257, 983, 820, 668, 1021, 580, 492, 299, 446, 378, 235, 95, 0), # 129 (1235, 1074, 1018, 1142, 934, 442, 476, 380, 451, 232, 160, 98, 0, 1262, 991, 824, 673, 1028, 584, 496, 299, 452, 379, 237, 95, 0), # 130 (1245, 1077, 1026, 1152, 941, 447, 480, 380, 458, 236, 160, 98, 0, 1276, 1000, 832, 677, 1034, 588, 501, 301, 456, 381, 238, 95, 0), # 131 (1253, 1080, 1031, 1159, 943, 448, 483, 382, 462, 236, 162, 99, 0, 1288, 1009, 835, 678, 1040, 590, 502, 301, 458, 384, 238, 95, 0), # 132 (1256, 1086, 1038, 1170, 947, 450, 487, 385, 466, 238, 163, 101, 0, 1297, 1013, 842, 683, 1046, 594, 507, 303, 462, 388, 239, 95, 0), # 133 (1261, 1089, 1046, 1179, 957, 452, 488, 388, 470, 243, 165, 101, 0, 1308, 1022, 847, 687, 1053, 599, 512, 306, 466, 392, 240, 96, 0), # 134 (1270, 1093, 1055, 1186, 965, 456, 490, 389, 471, 245, 168, 102, 0, 1321, 1033, 853, 692, 1060, 601, 514, 306, 470, 395, 243, 97, 0), # 135 (1281, 1099, 1062, 1189, 974, 458, 493, 389, 475, 245, 168, 103, 0, 1328, 1044, 859, 699, 1075, 606, 518, 311, 475, 396, 245, 101, 0), # 136 (1300, 1106, 1070, 1197, 976, 461, 496, 392, 480, 245, 168, 104, 0, 1339, 1056, 863, 702, 1083, 609, 522, 311, 479, 400, 247, 102, 0), # 137 (1310, 1115, 1075, 1201, 979, 462, 499, 397, 482, 245, 169, 105, 0, 1350, 1063, 868, 705, 1088, 615, 523, 314, 483, 402, 247, 102, 0), # 138 (1319, 1121, 1083, 1210, 985, 464, 502, 404, 485, 245, 170, 105, 0, 1362, 1072, 873, 708, 1099, 621, 530, 317, 486, 405, 247, 103, 0), # 139 (1324, 1127, 1087, 1218, 992, 465, 504, 405, 490, 246, 172, 105, 0, 1370, 1077, 877, 712, 1104, 624, 532, 319, 492, 406, 249, 103, 0), # 140 (1337, 1131, 1091, 1223, 995, 468, 505, 409, 493, 247, 172, 108, 0, 1380, 1084, 888, 714, 1110, 630, 535, 320, 494, 411, 251, 104, 0), # 141 (1343, 1140, 1102, 1233, 1006, 472, 509, 412, 497, 250, 172, 109, 0, 1390, 1091, 896, 718, 1119, 633, 536, 322, 498, 413, 252, 104, 0), # 142 (1357, 1142, 1107, 1236, 1013, 473, 511, 413, 498, 251, 173, 109, 0, 1407, 1098, 903, 722, 1124, 637, 537, 324, 499, 416, 255, 105, 0), # 143 (1364, 1150, 1114, 1243, 1019, 476, 513, 416, 502, 252, 173, 110, 0, 1417, 1100, 910, 725, 1131, 639, 538, 328, 504, 419, 256, 106, 0), # 144 (1370, 1155, 1120, 1248, 1026, 484, 514, 418, 507, 252, 175, 110, 0, 1434, 1112, 917, 732, 1141, 643, 541, 328, 507, 423, 256, 106, 0), # 145 (1378, 1160, 1129, 1254, 1034, 484, 518, 422, 512, 252, 177, 110, 0, 1448, 1117, 922, 737, 1150, 645, 544, 331, 510, 424, 257, 106, 0), # 146 (1385, 1167, 1130, 1262, 1041, 489, 518, 427, 513, 252, 178, 111, 0, 1460, 1124, 929, 739, 1161, 648, 545, 335, 515, 428, 259, 107, 0), # 147 (1392, 1173, 1137, 1270, 1049, 493, 519, 428, 514, 252, 180, 111, 0, 1467, 1131, 932, 741, 1172, 652, 547, 336, 516, 432, 260, 107, 0), # 148 (1407, 1180, 1142, 1277, 1057, 494, 524, 431, 519, 255, 181, 113, 0, 1474, 1139, 938, 743, 1176, 655, 549, 337, 519, 434, 262, 108, 0), # 149 (1412, 1186, 1148, 1285, 1062, 498, 528, 433, 523, 256, 182, 113, 0, 1487, 1146, 942, 744, 1183, 657, 552, 339, 519, 439, 262, 108, 0), # 150 (1420, 1197, 1157, 1295, 1070, 498, 530, 434, 528, 257, 182, 114, 0, 1492, 1151, 946, 749, 1188, 661, 556, 340, 520, 440, 266, 110, 0), # 151 (1428, 1200, 1161, 1299, 1079, 501, 531, 436, 532, 259, 182, 114, 0, 1499, 1156, 955, 754, 1198, 666, 559, 342, 526, 442, 269, 110, 0), # 152 (1436, 1203, 1169, 1308, 1086, 504, 533, 439, 537, 260, 183, 114, 0, 1508, 1164, 959, 758, 1203, 669, 560, 345, 527, 444, 270, 110, 0), # 153 (1438, 1213, 1176, 1322, 1090, 506, 537, 440, 540, 261, 183, 114, 0, 1513, 1169, 965, 762, 1208, 672, 562, 349, 531, 447, 271, 111, 0), # 154 (1449, 1217, 1183, 1334, 1096, 511, 540, 442, 545, 263, 186, 114, 0, 1518, 1176, 972, 762, 1212, 675, 562, 352, 534, 447, 274, 111, 0), # 155 (1458, 1220, 1192, 1345, 1097, 511, 541, 445, 546, 265, 186, 114, 0, 1528, 1185, 973, 768, 1218, 678, 562, 354, 536, 449, 274, 112, 0), # 156 (1463, 1223, 1205, 1351, 1108, 513, 545, 446, 550, 266, 186, 114, 0, 1534, 1197, 978, 779, 1230, 683, 565, 355, 542, 450, 276, 112, 0), # 157 (1467, 1225, 1209, 1355, 1112, 516, 548, 449, 551, 268, 186, 114, 0, 1543, 1205, 985, 781, 1234, 684, 567, 356, 543, 452, 276, 112, 0), # 158 (1476, 1229, 1217, 1365, 1122, 518, 551, 450, 554, 270, 188, 114, 0, 1549, 1207, 988, 784, 1241, 687, 570, 359, 545, 455, 276, 112, 0), # 159 (1485, 1235, 1223, 1373, 1128, 520, 552, 450, 560, 271, 188, 116, 0, 1551, 1213, 993, 786, 1247, 690, 572, 360, 547, 457, 277, 113, 0), # 160 (1493, 1242, 1231, 1382, 1137, 525, 553, 453, 562, 273, 188, 117, 0, 1560, 1219, 998, 787, 1255, 697, 574, 364, 548, 459, 277, 114, 0), # 161 (1503, 1247, 1236, 1391, 1144, 528, 554, 455, 564, 273, 188, 117, 0, 1567, 1224, 1004, 789, 1260, 700, 576, 367, 551, 462, 279, 115, 0), # 162 (1515, 1250, 1242, 1393, 1151, 532, 559, 455, 567, 273, 190, 117, 0, 1572, 1229, 1010, 792, 1270, 705, 578, 370, 553, 466, 279, 115, 0), # 163 (1520, 1255, 1247, 1403, 1161, 537, 562, 456, 570, 273, 193, 118, 0, 1578, 1234, 1017, 796, 1274, 712, 580, 371, 558, 468, 280, 117, 0), # 164 (1530, 1259, 1252, 1407, 1164, 538, 562, 457, 571, 276, 194, 119, 0, 1583, 1236, 1021, 799, 1281, 715, 583, 372, 562, 468, 281, 117, 0), # 165 (1541, 1268, 1255, 1415, 1165, 540, 562, 458, 572, 277, 195, 121, 0, 1589, 1243, 1024, 801, 1285, 716, 583, 374, 564, 470, 281, 118, 0), # 166 (1542, 1273, 1260, 1418, 1170, 541, 563, 461, 577, 277, 197, 121, 0, 1598, 1249, 1028, 803, 1289, 720, 584, 374, 570, 471, 283, 119, 0), # 167 (1547, 1276, 1265, 1421, 1175, 544, 567, 465, 579, 277, 200, 121, 0, 1606, 1254, 1032, 806, 1292, 724, 587, 379, 571, 472, 286, 119, 0), # 168 (1552, 1281, 1270, 1426, 1188, 547, 572, 467, 581, 278, 200, 122, 0, 1611, 1259, 1038, 813, 1297, 727, 588, 381, 574, 472, 289, 119, 0), # 169 (1556, 1284, 1278, 1436, 1192, 550, 573, 467, 584, 278, 200, 124, 0, 1617, 1263, 1047, 814, 1300, 731, 591, 382, 578, 473, 293, 119, 0), # 170 (1558, 1285, 1282, 1443, 1197, 554, 574, 468, 585, 279, 200, 125, 0, 1620, 1265, 1048, 816, 1305, 734, 593, 384, 578, 475, 293, 119, 0), # 171 (1565, 1290, 1285, 1449, 1200, 556, 574, 468, 587, 280, 201, 125, 0, 1628, 1272, 1052, 817, 1310, 734, 594, 384, 581, 477, 293, 119, 0), # 172 (1570, 1292, 1292, 1455, 1207, 558, 575, 469, 591, 282, 202, 125, 0, 1633, 1273, 1053, 819, 1318, 736, 595, 386, 583, 478, 293, 119, 0), # 173 (1575, 1297, 1300, 1455, 1207, 561, 575, 473, 592, 285, 204, 126, 0, 1638, 1278, 1056, 824, 1324, 738, 595, 388, 586, 479, 294, 119, 0), # 174 (1579, 1299, 1305, 1457, 1211, 561, 575, 478, 594, 285, 205, 126, 0, 1642, 1287, 1063, 825, 1326, 739, 597, 390, 589, 480, 294, 119, 0), # 175 (1584, 1301, 1305, 1458, 1216, 565, 578, 478, 597, 285, 205, 128, 0, 1647, 1289, 1065, 827, 1331, 741, 599, 390, 589, 482, 294, 119, 0), # 176 (1587, 1305, 1312, 1460, 1216, 565, 585, 478, 601, 286, 205, 128, 0, 1649, 1292, 1068, 829, 1335, 743, 600, 392, 592, 482, 296, 119, 0), # 177 (1589, 1307, 1317, 1462, 1218, 568, 586, 480, 604, 286, 206, 128, 0, 1653, 1292, 1072, 832, 1339, 745, 601, 395, 593, 485, 296, 120, 0), # 178 (1589, 1307, 1317, 1462, 1218, 568, 586, 480, 604, 286, 206, 128, 0, 1653, 1292, 1072, 832, 1339, 745, 601, 395, 593, 485, 296, 120, 0), # 179 ) passenger_arriving_rate = ( (5.020865578371768, 5.064847846385402, 4.342736024677089, 4.661000830397574, 3.7031237384064077, 1.8308820436884476, 2.0730178076869574, 1.938823405408093, 2.030033020722669, 0.9895037538805926, 0.7008775273142672, 0.4081595898588478, 0.0, 5.083880212578363, 4.489755488447325, 3.5043876365713356, 2.968511261641777, 4.060066041445338, 2.7143527675713304, 2.0730178076869574, 1.3077728883488913, 1.8515618692032039, 1.5536669434658585, 0.8685472049354179, 0.4604407133077639, 0.0), # 0 (5.354327152019974, 5.399222302966028, 4.629455492775127, 4.968858189957462, 3.948326891649491, 1.9518237573581576, 2.209734470631847, 2.066464051210712, 2.164081775444303, 1.0547451730692876, 0.7471826893260219, 0.4351013884011963, 0.0, 5.419791647439855, 4.786115272413158, 3.73591344663011, 3.164235519207862, 4.328163550888606, 2.8930496716949965, 2.209734470631847, 1.3941598266843982, 1.9741634458247455, 1.6562860633191545, 0.9258910985550255, 0.49083839117872996, 0.0), # 1 (5.686723008979731, 5.732269739983398, 4.915035237956178, 5.275490778498595, 4.192641982499829, 2.072282983465593, 2.345909253980352, 2.193593853293508, 2.297595602292516, 1.1197284437551367, 0.7933038581293855, 0.46193605433775464, 0.0, 5.75436482820969, 5.0812965977153, 3.9665192906469278, 3.3591853312654094, 4.595191204585032, 3.0710313946109116, 2.345909253980352, 1.480202131046852, 2.0963209912499146, 1.758496926166199, 0.9830070475912357, 0.5211154309075817, 0.0), # 2 (6.016757793146562, 6.062668793441743, 5.198342391099879, 5.579682305649055, 4.435107784001268, 2.191782029841316, 2.4810018208239777, 2.3197088156227115, 2.430045053640364, 1.1841956746065454, 0.8390580686378972, 0.4885571404108718, 0.0, 6.086272806254225, 5.374128544519589, 4.195290343189486, 3.5525870238196355, 4.860090107280728, 3.247592341871796, 2.4810018208239777, 1.5655585927437972, 2.217553892000634, 1.8598941018830188, 1.0396684782199759, 0.551151708494704, 0.0), # 3 (6.343136148415981, 6.389098099345293, 5.478244083085864, 5.880216481036927, 4.674763069197661, 2.3098432043158894, 2.6144718342542292, 2.444304942164548, 2.560900681860902, 1.24788897429192, 0.8842623557650959, 0.514858199362897, 0.0, 6.414188632939817, 5.6634401929918665, 4.42131177882548, 3.743666922875759, 5.121801363721804, 3.422026919030367, 2.6144718342542292, 1.6498880030827783, 2.3373815345988307, 1.9600721603456428, 1.095648816617173, 0.5808270999404813, 0.0), # 4 (6.66456271868351, 6.710236293698289, 5.753607444793765, 6.175877014290295, 4.910646611132853, 2.4259888147198754, 2.745778957362612, 2.566878236885247, 2.689633039327186, 1.310550451479666, 0.9287337544245222, 0.5407327839361791, 0.0, 6.736785359632827, 5.948060623297969, 4.64366877212261, 3.9316513544389973, 5.379266078654372, 3.593629531639346, 2.745778957362612, 1.7328491533713395, 2.4553233055664263, 2.058625671430099, 1.1507214889587531, 0.6100214812452991, 0.0), # 5 (6.979742147844666, 7.024762012504959, 6.023299607103222, 6.465447615037239, 5.141797182850695, 2.5397411688838374, 2.8743828532406313, 2.686924703751037, 2.8157126784122717, 1.3719222148381898, 0.9722892995297139, 0.5660744468730674, 0.0, 7.052736037699606, 6.22681891560374, 4.8614464976485685, 4.115766644514569, 5.631425356824543, 3.761694585251452, 2.8743828532406313, 1.8141008349170267, 2.5708985914253475, 2.1551492050124135, 1.2046599214206444, 0.6386147284095418, 0.0), # 6 (7.2873790797949685, 7.331353891769537, 6.286187700893863, 6.747711992905847, 5.367253557395036, 2.650622574638337, 2.9997431849797924, 2.8039403467281465, 2.9386101514892147, 1.4317463730358968, 1.0147460259942116, 0.5907767409159108, 0.0, 7.360713718506519, 6.498544150075018, 5.073730129971057, 4.2952391191076895, 5.877220302978429, 3.9255164854194056, 2.9997431849797924, 1.8933018390273837, 2.683626778697518, 2.249237330968616, 1.2572375401787725, 0.6664867174335943, 0.0), # 7 (7.586178158429934, 7.628690567496257, 6.54113885704533, 7.021453857524196, 5.586054507809724, 2.7581553398139356, 3.1213196156715988, 2.917421169782802, 3.0577960109310682, 1.4897650347411937, 1.0559209687315536, 0.6147332188070586, 0.0, 7.659391453419917, 6.762065406877643, 5.279604843657768, 4.469295104223581, 6.1155920218621365, 4.084389637695923, 3.1213196156715988, 1.970110957009954, 2.793027253904862, 2.3404846191747324, 1.3082277714090662, 0.6935173243178416, 0.0), # 8 (7.874844027645085, 7.915450675689353, 6.787020206437253, 7.285456918520376, 5.797238807138606, 2.861861772241199, 3.23857180840756, 3.0268631768812346, 3.1727408091108913, 1.5457203086224858, 1.0956311626552797, 0.6378374332888596, 0.0, 7.947442293806162, 7.016211766177453, 5.478155813276398, 4.637160925867456, 6.345481618221783, 4.237608447633728, 3.23857180840756, 2.044186980172285, 2.898619403569303, 2.4284856395067926, 1.3574040412874508, 0.7195864250626686, 0.0), # 9 (8.152081331335932, 8.190312852353056, 7.022698879949271, 7.538504885522466, 5.999845228425533, 2.961264179750688, 3.3509594262791773, 3.1317623719896712, 3.282915098401738, 1.599354303348179, 1.133693642678929, 0.6599829371036627, 0.0, 8.22353929103161, 7.259812308140289, 5.668468213394645, 4.798062910044536, 6.565830196803476, 4.384467320785539, 3.3509594262791773, 2.11518869982192, 2.9999226142127666, 2.5128349618408223, 1.4045397759898541, 0.7445738956684597, 0.0), # 10 (8.416594713398005, 8.451955733491605, 7.247042008461013, 7.779381468158547, 6.192912544714355, 3.055884870172965, 3.457942132377958, 3.2316147590743394, 3.3877894311766643, 1.6504091275866801, 1.1699254437160416, 0.6810632829938176, 0.0, 8.486355496462611, 7.491696112931993, 5.849627218580208, 4.951227382760039, 6.775578862353329, 4.524260662704076, 3.457942132377958, 2.1827749072664036, 3.0964562723571776, 2.5931271560528497, 1.4494084016922026, 0.7683596121356006, 0.0), # 11 (8.667088817726812, 8.699057955109222, 7.458916722852117, 8.006870376056709, 6.375479529048918, 3.1452461513385908, 3.5589795897954057, 3.325916342101467, 3.486834359808726, 1.6986268900063934, 1.2041436006801558, 0.7009720237016724, 0.0, 8.734563961465534, 7.710692260718395, 6.020718003400779, 5.095880670019179, 6.973668719617452, 4.656282878942054, 3.5589795897954057, 2.246604393813279, 3.187739764524459, 2.6689567920189035, 1.4917833445704234, 0.7908234504644749, 0.0), # 12 (8.902268288217876, 8.93029815321015, 7.657190154002218, 8.219755318845033, 6.546584954473067, 3.2288703310781304, 3.653531461623028, 3.414163125037284, 3.579520436670977, 1.7437496992757264, 1.2361651484848115, 0.7196027119695768, 0.0, 8.966837737406735, 7.915629831665344, 6.180825742424058, 5.2312490978271775, 7.159040873341954, 4.7798283750521975, 3.653531461623028, 2.306335950770093, 3.2732924772365335, 2.7399184396150114, 1.5314380308004438, 0.8118452866554684, 0.0), # 13 (9.120837768766716, 9.144354963798623, 7.840729432790956, 8.416820006151594, 6.705267594030659, 3.306279717222145, 3.7410574109523305, 3.4958511118480193, 3.6653182141364735, 1.785519664063084, 1.2658071220435476, 0.7368489005398801, 0.0, 9.181849875652563, 8.10533790593868, 6.329035610217737, 5.3565589921892505, 7.330636428272947, 4.894191556587227, 3.7410574109523305, 2.3616283694443894, 3.3526337970153297, 2.8056066687171985, 1.5681458865581912, 0.8313049967089657, 0.0), # 14 (9.321501903268855, 9.339907022878865, 8.008401690097953, 8.59684814760449, 6.850566220765538, 3.376996617601199, 3.821017100874813, 3.5704763064998986, 3.743698244578273, 1.823678893036873, 1.2928865562699035, 0.752604142154931, 0.0, 9.37827342756938, 8.27864556370424, 6.464432781349516, 5.471036679110618, 7.487396489156546, 4.998666829099858, 3.821017100874813, 2.4121404411437135, 3.425283110382769, 2.865616049201497, 1.6016803380195905, 0.8490824566253515, 0.0), # 15 (9.5029653356198, 9.51563296645512, 8.159074056802854, 8.758623452831788, 6.981519607721555, 3.4405433400458514, 3.892870194481988, 3.6375347129591504, 3.8141310803694286, 1.8579694948654994, 1.3172204860774188, 0.7667619895570784, 0.0, 9.554781444523545, 8.434381885127861, 6.586102430387094, 5.5739084845964975, 7.628262160738857, 5.092548598142811, 3.892870194481988, 2.4575309571756083, 3.4907598038607777, 2.9195411509439295, 1.6318148113605708, 0.8650575424050111, 0.0), # 16 (9.663932709715075, 9.670211430531618, 8.291613663785293, 8.900929631461583, 7.097166527942559, 3.4964421923866666, 3.9560763548653552, 3.6965223351920073, 3.8760872738829946, 1.8881335782173672, 1.3386259463796333, 0.7792159954886714, 0.0, 9.710046977881415, 8.571375950375383, 6.693129731898166, 5.6644007346521, 7.752174547765989, 5.17513126926881, 3.9560763548653552, 2.4974587088476192, 3.5485832639712793, 2.9669765438205284, 1.6583227327570589, 0.8791101300483289, 0.0), # 17 (9.803108669450204, 9.802321051112584, 8.404887641924901, 9.022550393121959, 7.1965457544723925, 3.5442154824542103, 4.010095245116426, 3.746935177164692, 3.929037377492032, 1.9139132517608846, 1.3569199720900849, 0.7898597126920597, 0.0, 9.842743079009345, 8.688456839612655, 6.784599860450424, 5.741739755282652, 7.858074754984064, 5.245709248030569, 4.010095245116426, 2.531582487467293, 3.5982728772361963, 3.0075167977073205, 1.6809775283849802, 0.8911200955556896, 0.0), # 18 (9.919197858720699, 9.910640464202265, 8.497763122101317, 9.122269447440985, 7.2786960603549105, 3.5833855180790386, 4.054386528326697, 3.7882692428434357, 3.9724519435695926, 1.9350506241644574, 1.3719195981223131, 0.7985866939095915, 0.0, 9.951542799273696, 8.784453633005505, 6.859597990611565, 5.80515187249337, 7.944903887139185, 5.30357693998081, 4.054386528326697, 2.55956108434217, 3.6393480301774552, 3.0407564824803295, 1.6995526244202632, 0.9009673149274788, 0.0), # 19 (10.010904921422082, 9.993848305804882, 8.569107235194169, 9.198870504046766, 7.342656218633962, 3.613474607091719, 4.088409867587681, 3.8200205361944657, 4.005801524488732, 1.95128780409649, 1.3834418593898585, 0.805290491883616, 0.0, 10.035119190040824, 8.858195410719775, 6.9172092969492915, 5.853863412289469, 8.011603048977465, 5.348028750672252, 4.088409867587681, 2.5810532907797996, 3.671328109316981, 3.0662901680155894, 1.713821447038834, 0.9085316641640803, 0.0), # 20 (10.076934501449866, 10.050623211924679, 8.6177871120831, 9.251137272567364, 7.387465002353392, 3.6340050573228124, 4.1116249259908795, 3.84168506118401, 4.028556672622507, 1.9623669002253892, 1.39130379080626, 0.8098646593564828, 0.0, 10.092145302677078, 8.90851125292131, 6.9565189540313, 5.887100700676166, 8.057113345245014, 5.378359085657614, 4.1116249259908795, 2.5957178980877234, 3.693732501176696, 3.0837124241891223, 1.72355742241662, 0.91369301926588, 0.0), # 21 (10.115991242699579, 10.079643818565883, 8.642669883647738, 9.277853462630876, 7.41216118455705, 3.644499176602881, 4.1234913666278, 3.852758821778298, 4.040187940343971, 1.968030021219561, 1.3953224272850568, 0.8122027490705409, 0.0, 10.121294188548827, 8.934230239775948, 6.976612136425284, 5.904090063658682, 8.080375880687942, 5.393862350489617, 4.1234913666278, 2.6032136975734863, 3.706080592278525, 3.09261782087696, 1.7285339767295478, 0.9163312562332622, 0.0), # 22 (10.13039336334264, 10.083079961133974, 8.645769318701419, 9.281198109567903, 7.418488037355065, 3.6458333333333335, 4.124902001129669, 3.8539557613168727, 4.0416420781893, 1.9686980681298587, 1.3958263395269568, 0.8124914647157445, 0.0, 10.125, 8.93740611187319, 6.9791316976347835, 5.906094204389575, 8.0832841563786, 5.395538065843622, 4.124902001129669, 2.604166666666667, 3.7092440186775324, 3.0937327031893016, 1.729153863740284, 0.9166436328303613, 0.0), # 23 (10.141012413034153, 10.08107561728395, 8.645262345679013, 9.280786458333335, 7.422071742409901, 3.6458333333333335, 4.124126906318083, 3.852291666666667, 4.041447222222222, 1.968287654320988, 1.39577076318743, 0.8124238683127573, 0.0, 10.125, 8.936662551440328, 6.978853815937151, 5.904862962962962, 8.082894444444443, 5.393208333333334, 4.124126906318083, 2.604166666666667, 3.7110358712049507, 3.0935954861111123, 1.7290524691358027, 0.9164614197530866, 0.0), # 24 (10.15140723021158, 10.077124771376313, 8.644261545496114, 9.279972029320987, 7.4255766303963355, 3.6458333333333335, 4.122599451303155, 3.8490226337448563, 4.041062242798354, 1.96747970964792, 1.3956605665710604, 0.8122904282883707, 0.0, 10.125, 8.935194711172077, 6.978302832855302, 5.902439128943758, 8.082124485596708, 5.388631687242799, 4.122599451303155, 2.604166666666667, 3.7127883151981678, 3.0933240097736636, 1.728852309099223, 0.9161022519433014, 0.0), # 25 (10.161577019048034, 10.071287780064015, 8.642780635573846, 9.278764081790122, 7.429002578947403, 3.6458333333333335, 4.120343359154361, 3.8442103909465026, 4.0404920781893, 1.9662876771833566, 1.3954967473084758, 0.8120929736320684, 0.0, 10.125, 8.933022709952752, 6.977483736542379, 5.898863031550069, 8.0809841563786, 5.381894547325103, 4.120343359154361, 2.604166666666667, 3.7145012894737013, 3.0929213605967085, 1.7285561271147696, 0.915571616369456, 0.0), # 26 (10.171520983716636, 10.063624999999998, 8.640833333333333, 9.277171874999999, 7.432349465696142, 3.6458333333333335, 4.117382352941177, 3.837916666666667, 4.039741666666666, 1.9647250000000003, 1.3952803030303031, 0.8118333333333335, 0.0, 10.125, 8.930166666666667, 6.976401515151515, 5.894175, 8.079483333333332, 5.373083333333334, 4.117382352941177, 2.604166666666667, 3.716174732848071, 3.0923906250000006, 1.7281666666666669, 0.914875, 0.0), # 27 (10.181238328390501, 10.054196787837219, 8.638433356195703, 9.275204668209877, 7.4356171682756, 3.6458333333333335, 4.113740155733075, 3.830203189300412, 4.038815946502057, 1.9628051211705537, 1.3950122313671698, 0.8115133363816492, 0.0, 10.125, 8.926646700198141, 6.9750611568358485, 5.88841536351166, 8.077631893004114, 5.3622844650205765, 4.113740155733075, 2.604166666666667, 3.7178085841378, 3.091734889403293, 1.7276866712391405, 0.9140178898033837, 0.0), # 28 (10.19072825724275, 10.043063500228623, 8.635594421582077, 9.272871720679012, 7.438805564318813, 3.6458333333333335, 4.109440490599533, 3.821131687242798, 4.037719855967078, 1.9605414837677189, 1.3946935299497027, 0.811134811766499, 0.0, 10.125, 8.922482929431489, 6.973467649748514, 5.881624451303155, 8.075439711934155, 5.349584362139917, 4.109440490599533, 2.604166666666667, 3.7194027821594067, 3.0909572402263383, 1.7271188843164156, 0.9130057727480568, 0.0), # 29 (10.199989974446497, 10.03028549382716, 8.63233024691358, 9.270182291666666, 7.441914531458824, 3.6458333333333335, 4.104507080610022, 3.8107638888888884, 4.036458333333333, 1.957947530864198, 1.39432519640853, 0.8106995884773662, 0.0, 10.125, 8.917695473251028, 6.9716259820426485, 5.873842592592593, 8.072916666666666, 5.335069444444444, 4.104507080610022, 2.604166666666667, 3.720957265729412, 3.0900607638888897, 1.7264660493827162, 0.9118441358024693, 0.0), # 30 (10.209022684174858, 10.01592312528578, 8.62865454961134, 9.267145640432098, 7.444943947328672, 3.6458333333333335, 4.09896364883402, 3.799161522633745, 4.035036316872428, 1.9550367055326936, 1.3939082283742779, 0.8102094955037343, 0.0, 10.125, 8.912304450541077, 6.969541141871389, 5.865110116598079, 8.070072633744855, 5.318826131687243, 4.09896364883402, 2.604166666666667, 3.722471973664336, 3.0890485468107003, 1.7257309099222682, 0.910538465935071, 0.0), # 31 (10.217825590600954, 10.00003675125743, 8.624581047096479, 9.263771026234568, 7.447893689561397, 3.6458333333333335, 4.092833918340999, 3.7863863168724285, 4.033458744855967, 1.951822450845908, 1.3934436234775742, 0.8096663618350862, 0.0, 10.125, 8.906329980185948, 6.96721811738787, 5.8554673525377225, 8.066917489711933, 5.3009408436214, 4.092833918340999, 2.604166666666667, 3.7239468447806985, 3.0879236754115236, 1.7249162094192958, 0.909094250114312, 0.0), # 32 (10.226397897897897, 9.98268672839506, 8.620123456790123, 9.260067708333333, 7.450763635790041, 3.6458333333333335, 4.086141612200436, 3.7725000000000004, 4.031730555555555, 1.9483182098765437, 1.392932379349046, 0.8090720164609053, 0.0, 10.125, 8.899792181069957, 6.96466189674523, 5.84495462962963, 8.06346111111111, 5.2815, 4.086141612200436, 2.604166666666667, 3.7253818178950207, 3.086689236111112, 1.724024691358025, 0.9075169753086421, 0.0), # 33 (10.23473881023881, 9.963933413351622, 8.615295496113397, 9.256044945987654, 7.453553663647644, 3.6458333333333335, 4.078910453481805, 3.7575643004115222, 4.029856687242798, 1.9445374256973027, 1.3923754936193207, 0.8084282883706753, 0.0, 10.125, 8.892711172077426, 6.961877468096604, 5.833612277091907, 8.059713374485597, 5.260590020576132, 4.078910453481805, 2.604166666666667, 3.726776831823822, 3.085348315329219, 1.7230590992226795, 0.9058121284865113, 0.0), # 34 (10.242847531796807, 9.943837162780063, 8.610110882487428, 9.25171199845679, 7.456263650767246, 3.6458333333333335, 4.071164165254579, 3.741640946502058, 4.0278420781893, 1.9404935413808875, 1.3917739639190256, 0.807737006553879, 0.0, 10.125, 8.88510707209267, 6.958869819595128, 5.821480624142661, 8.0556841563786, 5.238297325102881, 4.071164165254579, 2.604166666666667, 3.728131825383623, 3.0839039994855972, 1.7220221764974855, 0.9039851966163696, 0.0), # 35 (10.250723266745005, 9.922458333333331, 8.604583333333334, 9.247078125, 7.45889347478189, 3.6458333333333335, 4.062926470588235, 3.724791666666667, 4.025691666666666, 1.9362000000000004, 1.391128787878788, 0.8070000000000002, 0.0, 10.125, 8.877, 6.95564393939394, 5.8086, 8.051383333333332, 5.214708333333334, 4.062926470588235, 2.604166666666667, 3.729446737390945, 3.0823593750000007, 1.7209166666666669, 0.9020416666666666, 0.0), # 36 (10.258365219256524, 9.89985728166438, 8.598726566072246, 9.242152584876543, 7.4614430133246135, 3.6458333333333335, 4.054221092552247, 3.707078189300412, 4.023410390946502, 1.931670244627344, 1.3904409631292352, 0.8062190976985216, 0.0, 10.125, 8.868410074683737, 6.952204815646175, 5.79501073388203, 8.046820781893004, 5.189909465020577, 4.054221092552247, 2.604166666666667, 3.7307215066623067, 3.080717528292182, 1.7197453132144491, 0.8999870256058529, 0.0), # 37 (10.265772593504476, 9.876094364426155, 8.592554298125286, 9.23694463734568, 7.46391214402846, 3.6458333333333335, 4.04507175421609, 3.6885622427983544, 4.021003189300411, 1.92691771833562, 1.3897114873009937, 0.8053961286389272, 0.0, 10.125, 8.859357415028198, 6.948557436504967, 5.780753155006859, 8.042006378600822, 5.163987139917697, 4.04507175421609, 2.604166666666667, 3.73195607201423, 3.078981545781894, 1.7185108596250571, 0.8978267604023779, 0.0), # 38 (10.272944593661986, 9.851229938271604, 8.586080246913582, 9.231463541666667, 7.466300744526468, 3.6458333333333335, 4.035502178649238, 3.6693055555555554, 4.0184750000000005, 1.9219558641975314, 1.3889413580246914, 0.8045329218106996, 0.0, 10.125, 8.849862139917693, 6.944706790123457, 5.765867592592593, 8.036950000000001, 5.137027777777778, 4.035502178649238, 2.604166666666667, 3.733150372263234, 3.07715451388889, 1.7172160493827164, 0.8955663580246914, 0.0), # 39 (10.279880423902163, 9.82532435985368, 8.579318129858253, 9.225718557098766, 7.468608692451679, 3.6458333333333335, 4.025536088921165, 3.649369855967079, 4.015830761316872, 1.9167981252857802, 1.3881315729309558, 0.8036313062033228, 0.0, 10.125, 8.83994436823655, 6.940657864654778, 5.750394375857339, 8.031661522633744, 5.1091177983539104, 4.025536088921165, 2.604166666666667, 3.7343043462258394, 3.0752395190329227, 1.7158636259716507, 0.8932113054412438, 0.0), # 40 (10.286579288398128, 9.79843798582533, 8.57228166438043, 9.219718942901235, 7.4708358654371345, 3.6458333333333335, 4.015197208101347, 3.628816872427984, 4.0130754115226335, 1.9114579446730684, 1.3872831296504138, 0.8026931108062796, 0.0, 10.125, 8.829624218869075, 6.936415648252069, 5.734373834019204, 8.026150823045267, 5.0803436213991775, 4.015197208101347, 2.604166666666667, 3.7354179327185673, 3.073239647633746, 1.7144563328760862, 0.8907670896204848, 0.0), # 41 (10.293040391323, 9.770631172839506, 8.564984567901236, 9.213473958333335, 7.472982141115872, 3.6458333333333335, 4.004509259259259, 3.6077083333333335, 4.010213888888889, 1.9059487654320992, 1.3863970258136926, 0.8017201646090536, 0.0, 10.125, 8.818921810699589, 6.931985129068463, 5.717846296296297, 8.020427777777778, 5.050791666666667, 4.004509259259259, 2.604166666666667, 3.736491070557936, 3.0711579861111122, 1.7129969135802474, 0.8882391975308643, 0.0), # 42 (10.299262936849892, 9.741964277549155, 8.557440557841794, 9.206992862654321, 7.475047397120935, 3.6458333333333335, 3.993495965464375, 3.58610596707819, 4.007251131687243, 1.9002840306355744, 1.3854742590514195, 0.800714296601128, 0.0, 10.125, 8.807857262612407, 6.927371295257098, 5.700852091906722, 8.014502263374485, 5.020548353909466, 3.993495965464375, 2.604166666666667, 3.7375236985604676, 3.0689976208847747, 1.7114881115683587, 0.8856331161408324, 0.0), # 43 (10.305246129151927, 9.712497656607225, 8.549663351623229, 9.200284915123458, 7.477031511085363, 3.6458333333333335, 3.9821810497861696, 3.564071502057614, 4.0041920781893, 1.8944771833561962, 1.3845158269942222, 0.7996773357719861, 0.0, 10.125, 8.796450693491845, 6.92257913497111, 5.683431550068587, 8.0083841563786, 4.98970010288066, 3.9821810497861696, 2.604166666666667, 3.7385157555426813, 3.0667616383744867, 1.709932670324646, 0.8829543324188387, 0.0), # 44 (10.310989172402216, 9.682291666666666, 8.541666666666668, 9.193359375, 7.478934360642197, 3.6458333333333335, 3.9705882352941178, 3.541666666666667, 4.001041666666666, 1.8885416666666672, 1.3835227272727273, 0.798611111111111, 0.0, 10.125, 8.784722222222221, 6.917613636363637, 5.665625, 8.002083333333331, 4.958333333333334, 3.9705882352941178, 2.604166666666667, 3.7394671803210984, 3.064453125000001, 1.7083333333333335, 0.8802083333333335, 0.0), # 45 (10.31649127077388, 9.65140666438043, 8.533464220393233, 9.186225501543209, 7.480755823424477, 3.6458333333333335, 3.958741245057694, 3.518953189300412, 3.997804835390946, 1.8824909236396894, 1.3824959575175624, 0.7975174516079867, 0.0, 10.125, 8.772691967687852, 6.912479787587812, 5.647472770919067, 7.995609670781892, 4.926534465020577, 3.958741245057694, 2.604166666666667, 3.7403779117122387, 3.062075167181071, 1.7066928440786466, 0.8774006058527665, 0.0), # 46 (10.321751628440035, 9.619903006401461, 8.525069730224052, 9.178892554012345, 7.482495777065244, 3.6458333333333335, 3.9466638021463734, 3.4959927983539094, 3.994486522633745, 1.8763383973479657, 1.3814365153593549, 0.7963981862520958, 0.0, 10.125, 8.760380048773053, 6.9071825767967745, 5.629015192043896, 7.98897304526749, 4.894389917695474, 3.9466638021463734, 2.604166666666667, 3.741247888532622, 3.0596308513374493, 1.7050139460448106, 0.8745366369455876, 0.0), # 47 (10.326769449573796, 9.587841049382716, 8.516496913580248, 9.171369791666667, 7.48415409919754, 3.6458333333333335, 3.9343796296296296, 3.4728472222222226, 3.9910916666666667, 1.8700975308641978, 1.3803453984287317, 0.7952551440329219, 0.0, 10.125, 8.74780658436214, 6.901726992143659, 5.610292592592592, 7.982183333333333, 4.861986111111112, 3.9343796296296296, 2.604166666666667, 3.74207704959877, 3.05712326388889, 1.7032993827160496, 0.871621913580247, 0.0), # 48 (10.331543938348286, 9.555281149977136, 8.507759487882945, 9.163666473765433, 7.485730667454405, 3.6458333333333335, 3.9219124505769383, 3.4495781893004116, 3.987625205761317, 1.8637817672610888, 1.3792236043563206, 0.7940901539399483, 0.0, 10.125, 8.73499169333943, 6.896118021781603, 5.5913453017832655, 7.975250411522634, 4.829409465020577, 3.9219124505769383, 2.604166666666667, 3.7428653337272024, 3.054555491255145, 1.7015518975765893, 0.8686619227251944, 0.0), # 49 (10.336074298936616, 9.522283664837678, 8.49887117055327, 9.155791859567902, 7.4872253594688765, 3.6458333333333335, 3.909285988057775, 3.4262474279835393, 3.9840920781893, 1.85740454961134, 1.3780721307727481, 0.7929050449626583, 0.0, 10.125, 8.72195549458924, 6.89036065386374, 5.572213648834019, 7.9681841563786, 4.796746399176955, 3.909285988057775, 2.604166666666667, 3.7436126797344382, 3.051930619855968, 1.6997742341106543, 0.86566215134888, 0.0), # 50 (10.34035973551191, 9.488908950617283, 8.489845679012346, 9.147755208333333, 7.488638052873998, 3.6458333333333335, 3.896523965141612, 3.4029166666666666, 3.9804972222222226, 1.8509793209876546, 1.3768919753086422, 0.7917016460905352, 0.0, 10.125, 8.708718106995885, 6.884459876543211, 5.552937962962963, 7.960994444444445, 4.764083333333334, 3.896523965141612, 2.604166666666667, 3.744319026436999, 3.049251736111112, 1.6979691358024693, 0.8626280864197532, 0.0), # 51 (10.344399452247279, 9.455217363968908, 8.480696730681299, 9.139565779320987, 7.489968625302809, 3.6458333333333335, 3.883650104897926, 3.3796476337448556, 3.976845576131687, 1.8445195244627348, 1.3756841355946297, 0.7904817863130622, 0.0, 10.125, 8.695299649443683, 6.878420677973147, 5.533558573388203, 7.953691152263374, 4.731506687242798, 3.883650104897926, 2.604166666666667, 3.7449843126514044, 3.04652192644033, 1.69613934613626, 0.8595652149062645, 0.0), # 52 (10.348192653315843, 9.421269261545497, 8.471438042981255, 9.131232831790122, 7.491216954388353, 3.6458333333333335, 3.8706881303961915, 3.3565020576131688, 3.9731420781893005, 1.8380386031092826, 1.3744496092613379, 0.7892472946197227, 0.0, 10.125, 8.681720240816947, 6.872248046306688, 5.514115809327846, 7.946284156378601, 4.699102880658437, 3.8706881303961915, 2.604166666666667, 3.7456084771941764, 3.043744277263375, 1.694287608596251, 0.8564790237768635, 0.0), # 53 (10.351738542890716, 9.387125000000001, 8.462083333333332, 9.122765625, 7.492382917763668, 3.6458333333333335, 3.8576617647058824, 3.333541666666666, 3.9693916666666667, 1.8315500000000005, 1.3731893939393938, 0.788, 0.0, 10.125, 8.668, 6.865946969696969, 5.49465, 7.938783333333333, 4.666958333333333, 3.8576617647058824, 2.604166666666667, 3.746191458881834, 3.040921875000001, 1.6924166666666667, 0.8533750000000002, 0.0), # 54 (10.355036325145022, 9.352844935985367, 8.452646319158665, 9.114173418209877, 7.493466393061793, 3.6458333333333335, 3.844594730896474, 3.3108281893004117, 3.9655992798353905, 1.8250671582075908, 1.3719044872594257, 0.7867417314433777, 0.0, 10.125, 8.654159045877153, 6.859522436297127, 5.4752014746227715, 7.931198559670781, 4.6351594650205765, 3.844594730896474, 2.604166666666667, 3.7467331965308963, 3.0380578060699595, 1.6905292638317333, 0.8502586305441244, 0.0), # 55 (10.358085204251871, 9.31848942615455, 8.443140717878373, 9.105465470679011, 7.4944672579157725, 3.6458333333333335, 3.8315107520374405, 3.288423353909465, 3.961769855967078, 1.818603520804756, 1.3705958868520598, 0.7854743179393385, 0.0, 10.125, 8.640217497332722, 6.852979434260299, 5.455810562414267, 7.923539711934156, 4.603792695473251, 3.8315107520374405, 2.604166666666667, 3.7472336289578863, 3.035155156893005, 1.6886281435756747, 0.8471354023776865, 0.0), # 56 (10.360884384384383, 9.284118827160494, 8.433580246913582, 9.096651041666666, 7.495385389958644, 3.6458333333333335, 3.818433551198257, 3.2663888888888892, 3.957908333333333, 1.812172530864198, 1.369264590347924, 0.7841995884773663, 0.0, 10.125, 8.626195473251027, 6.8463229517396185, 5.436517592592593, 7.915816666666666, 4.572944444444445, 3.818433551198257, 2.604166666666667, 3.747692694979322, 3.0322170138888898, 1.6867160493827165, 0.844010802469136, 0.0), # 57 (10.36343306971568, 9.24979349565615, 8.423978623685414, 9.087739390432098, 7.496220666823449, 3.6458333333333335, 3.8053868514483984, 3.2447865226337447, 3.954019650205761, 1.8057876314586196, 1.367911595377645, 0.7829193720469442, 0.0, 10.125, 8.612113092516385, 6.8395579768882255, 5.417362894375858, 7.908039300411522, 4.5427011316872425, 3.8053868514483984, 2.604166666666667, 3.7481103334117245, 3.029246463477367, 1.684795724737083, 0.8408903177869229, 0.0), # 58 (10.36573046441887, 9.215573788294467, 8.414349565614998, 9.078739776234567, 7.49697296614323, 3.6458333333333335, 3.792394375857339, 3.2236779835390945, 3.9501087448559673, 1.799462265660723, 1.3665378995718502, 0.7816354976375554, 0.0, 10.125, 8.597990474013107, 6.83268949785925, 5.398386796982168, 7.900217489711935, 4.513149176954733, 3.792394375857339, 2.604166666666667, 3.748486483071615, 3.02624659207819, 1.6828699131229998, 0.8377794352994972, 0.0), # 59 (10.367775772667077, 9.181520061728396, 8.404706790123456, 9.069661458333334, 7.497642165551024, 3.6458333333333335, 3.779479847494553, 3.203125, 3.946180555555556, 1.7932098765432103, 1.3651445005611673, 0.7803497942386832, 0.0, 10.125, 8.583847736625515, 6.825722502805837, 5.37962962962963, 7.892361111111112, 4.484375, 3.779479847494553, 2.604166666666667, 3.748821082775512, 3.023220486111112, 1.6809413580246915, 0.8346836419753088, 0.0), # 60 (10.369568198633415, 9.147692672610884, 8.395064014631917, 9.060513695987654, 7.498228142679874, 3.6458333333333335, 3.7666669894295164, 3.183189300411523, 3.9422400205761314, 1.7870439071787843, 1.3637323959762233, 0.7790640908398111, 0.0, 10.125, 8.56970499923792, 6.818661979881115, 5.361131721536351, 7.884480041152263, 4.456465020576132, 3.7666669894295164, 2.604166666666667, 3.749114071339937, 3.0201712319958856, 1.6790128029263836, 0.8316084247828076, 0.0), # 61 (10.371106946491004, 9.114151977594878, 8.385434956561502, 9.051305748456791, 7.498730775162823, 3.6458333333333335, 3.753979524731703, 3.1639326131687247, 3.9382920781893, 1.7809778006401469, 1.3623025834476452, 0.7777802164304223, 0.0, 10.125, 8.555582380734645, 6.811512917238226, 5.3429334019204395, 7.8765841563786, 4.429505658436215, 3.753979524731703, 2.604166666666667, 3.7493653875814115, 3.0171019161522645, 1.6770869913123003, 0.8285592706904436, 0.0), # 62 (10.37239122041296, 9.080958333333333, 8.375833333333334, 9.042046875, 7.499149940632904, 3.6458333333333335, 3.741441176470588, 3.1454166666666667, 3.9343416666666666, 1.7750250000000003, 1.360856060606061, 0.7765000000000001, 0.0, 10.125, 8.5415, 6.804280303030303, 5.325075, 7.868683333333333, 4.403583333333334, 3.741441176470588, 2.604166666666667, 3.749574970316452, 3.014015625000001, 1.675166666666667, 0.8255416666666667, 0.0), # 63 (10.373420224572397, 9.048172096479195, 8.366272862368541, 9.032746334876544, 7.4994855167231655, 3.6458333333333335, 3.729075667715646, 3.127703189300412, 3.9303937242798352, 1.7691989483310475, 1.3593938250820965, 0.7752252705380279, 0.0, 10.125, 8.527477975918305, 6.796969125410483, 5.307596844993141, 7.8607874485596705, 4.378784465020577, 3.729075667715646, 2.604166666666667, 3.7497427583615828, 3.0109154449588487, 1.6732545724737085, 0.822561099679927, 0.0), # 64 (10.374193163142438, 9.015853623685413, 8.35676726108825, 9.023413387345679, 7.499737381066645, 3.6458333333333335, 3.7169067215363514, 3.1108539094650207, 3.9264531893004113, 1.7635130887059902, 1.357916874506381, 0.7739578570339887, 0.0, 10.125, 8.513536427373873, 6.7895843725319045, 5.290539266117969, 7.852906378600823, 4.355195473251029, 3.7169067215363514, 2.604166666666667, 3.7498686905333223, 3.0078044624485605, 1.67135345221765, 0.819623056698674, 0.0), # 65 (10.374709240296196, 8.984063271604938, 8.34733024691358, 9.014057291666667, 7.499905411296382, 3.6458333333333335, 3.7049580610021784, 3.094930555555556, 3.9225250000000003, 1.7579808641975312, 1.3564262065095398, 0.7726995884773664, 0.0, 10.125, 8.499695473251029, 6.782131032547699, 5.273942592592592, 7.8450500000000005, 4.332902777777778, 3.7049580610021784, 2.604166666666667, 3.749952705648191, 3.0046857638888897, 1.6694660493827165, 0.8167330246913582, 0.0), # 66 (10.374967660206792, 8.952861396890716, 8.337975537265661, 9.004687307098765, 7.499989485045419, 3.6458333333333335, 3.693253409182603, 3.0799948559670787, 3.9186140946502057, 1.7526157178783728, 1.3549228187222018, 0.7714522938576437, 0.0, 10.125, 8.485975232434079, 6.774614093611008, 5.257847153635117, 7.837228189300411, 4.31199279835391, 3.693253409182603, 2.604166666666667, 3.7499947425227096, 3.001562435699589, 1.6675951074531323, 0.8138964906264289, 0.0), # 67 (10.374791614480825, 8.922144586043629, 8.328671624942844, 8.995231305354269, 7.499918636864896, 3.645765673423767, 3.681757597414823, 3.0659766041761927, 3.9146959495503735, 1.747405110411792, 1.3533809980900628, 0.770210835158312, 0.0, 10.124875150034294, 8.47231918674143, 6.766904990450313, 5.242215331235375, 7.829391899100747, 4.29236724584667, 3.681757597414823, 2.604118338159833, 3.749959318432448, 2.99841043511809, 1.6657343249885688, 0.8111040532766937, 0.0), # 68 (10.373141706924315, 8.890975059737157, 8.319157021604937, 8.985212635869564, 7.499273783587508, 3.6452307956104257, 3.6701340906733066, 3.052124485596708, 3.910599279835391, 1.7422015976761076, 1.3516438064859118, 0.7689349144466104, 0.0, 10.12388599537037, 8.458284058912714, 6.758219032429559, 5.226604793028321, 7.821198559670782, 4.272974279835391, 3.6701340906733066, 2.6037362825788755, 3.749636891793754, 2.9950708786231885, 1.6638314043209876, 0.8082704599761052, 0.0), # 69 (10.369885787558895, 8.859209754856408, 8.309390360653863, 8.974565343196456, 7.497999542752628, 3.6441773992785653, 3.658330067280685, 3.0383135192805977, 3.9063009640298736, 1.736979881115684, 1.3496914810876801, 0.7676185634410675, 0.0, 10.121932334533609, 8.44380419785174, 6.7484574054383994, 5.210939643347051, 7.812601928059747, 4.253638926992837, 3.658330067280685, 2.6029838566275467, 3.748999771376314, 2.991521781065486, 1.6618780721307727, 0.8053827049869463, 0.0), # 70 (10.365069660642929, 8.826867654542236, 8.299375071444901, 8.963305127818035, 7.496112052502757, 3.6426225549966977, 3.646350829769494, 3.0245482777015704, 3.9018074035970125, 1.7317400898356603, 1.347531228463977, 0.7662627447677263, 0.0, 10.119039887688615, 8.428890192444989, 6.737656142319885, 5.195220269506979, 7.803614807194025, 4.234367588782199, 3.646350829769494, 2.6018732535690696, 3.7480560262513785, 2.987768375939346, 1.6598750142889804, 0.8024425140492942, 0.0), # 71 (10.358739130434783, 8.793967741935482, 8.289114583333333, 8.95144769021739, 7.493627450980392, 3.6405833333333337, 3.634201680672269, 3.0108333333333333, 3.897125, 1.7264823529411768, 1.3451702551834133, 0.7648684210526316, 0.0, 10.115234375, 8.413552631578947, 6.7258512759170666, 5.179447058823529, 7.79425, 4.215166666666667, 3.634201680672269, 2.600416666666667, 3.746813725490196, 2.983815896739131, 1.6578229166666667, 0.7994516129032258, 0.0), # 72 (10.35094000119282, 8.760529000176998, 8.27861232567444, 8.939008730877617, 7.490561876328034, 3.638076804856983, 3.621887922521546, 2.9971732586495965, 3.8922601547020275, 1.7212067995373737, 1.3426157678145982, 0.7634365549218266, 0.0, 10.110541516632374, 8.397802104140093, 6.71307883907299, 5.163620398612119, 7.784520309404055, 4.196042562109435, 3.621887922521546, 2.598626289183559, 3.745280938164017, 2.979669576959206, 1.655722465134888, 0.7964117272888181, 0.0), # 73 (10.341718077175404, 8.726570412407629, 8.267871727823502, 8.926003950281803, 7.486931466688183, 3.6351200401361585, 3.609414857849861, 2.9835726261240665, 3.8872192691662857, 1.7159135587293908, 1.3398749729261428, 0.7619681090013557, 0.0, 10.104987032750344, 8.38164919901491, 6.699374864630713, 5.147740676188171, 7.774438538332571, 4.177001676573693, 3.609414857849861, 2.5965143143829703, 3.7434657333440917, 2.975334650093935, 1.6535743455647005, 0.7933245829461482, 0.0), # 74 (10.331119162640901, 8.692110961768218, 8.256896219135802, 8.912449048913043, 7.482752360203341, 3.6317301097393697, 3.59678778918975, 2.9700360082304527, 3.8820087448559666, 1.7106027596223679, 1.336955077086656, 0.7604640459172624, 0.0, 10.098596643518519, 8.365104505089885, 6.684775385433279, 5.131808278867102, 7.764017489711933, 4.158050411522634, 3.59678778918975, 2.594092935528121, 3.7413761801016703, 2.9708163496376816, 1.6513792438271604, 0.7901919056152927, 0.0), # 75 (10.319189061847677, 8.65716963139962, 8.245689228966622, 8.898359727254428, 7.478040695016003, 3.6279240842351275, 3.5840120190737474, 2.956567977442463, 3.876634983234263, 1.7052745313214452, 1.3338632868647486, 0.7589253282955902, 0.0, 10.091396069101508, 8.348178611251491, 6.669316434323743, 5.115823593964334, 7.753269966468526, 4.139195168419449, 3.5840120190737474, 2.5913743458822336, 3.7390203475080015, 2.96611990908481, 1.6491378457933243, 0.7870154210363293, 0.0), # 76 (10.305973579054093, 8.621765404442675, 8.234254186671238, 8.883751685789049, 7.472812609268672, 3.6237190341919425, 3.5710928500343897, 2.9431731062338065, 3.871104385764365, 1.699929002931763, 1.3306068088290313, 0.7573529187623839, 0.0, 10.083411029663925, 8.330882106386222, 6.653034044145156, 5.099787008795288, 7.74220877152873, 4.120442348727329, 3.5710928500343897, 2.58837073870853, 3.736406304634336, 2.9612505619296834, 1.6468508373342476, 0.7837968549493343, 0.0), # 77 (10.291518518518519, 8.585917264038233, 8.222594521604938, 8.868640625, 7.467084241103849, 3.6191320301783265, 3.5580355846042124, 2.9298559670781894, 3.8654233539094642, 1.6945663035584608, 1.327192849548113, 0.7557477799436866, 0.0, 10.074667245370371, 8.313225579380552, 6.635964247740564, 5.083698910675381, 7.7308467078189285, 4.101798353909466, 3.5580355846042124, 2.585094307270233, 3.7335421205519244, 2.956213541666667, 1.6445189043209878, 0.7805379330943849, 0.0), # 78 (10.275869684499314, 8.549644193327138, 8.210713663123, 8.85304224537037, 7.460871728664031, 3.61418014276279, 3.5448455253157505, 2.916621132449322, 3.859598289132754, 1.6891865623066789, 1.3236286155906039, 0.7541108744655421, 0.0, 10.065190436385459, 8.295219619120962, 6.618143077953018, 5.067559686920035, 7.719196578265508, 4.083269585429051, 3.5448455253157505, 2.5815572448305644, 3.7304358643320157, 2.951014081790124, 1.6421427326246, 0.7772403812115581, 0.0), # 79 (10.259072881254847, 8.51296517545024, 8.198615040580703, 8.836972247383253, 7.454191210091719, 3.6088804425138448, 3.5315279747015405, 2.9034731748209115, 3.853635592897424, 1.683789908281557, 1.3199213135251149, 0.7524431649539947, 0.0, 10.0550063228738, 8.27687481449394, 6.599606567625574, 5.05136972484467, 7.707271185794848, 4.064862444749276, 3.5315279747015405, 2.577771744652746, 3.7270956050458595, 2.945657415794418, 1.639723008116141, 0.7739059250409311, 0.0), # 80 (10.241173913043479, 8.475899193548386, 8.186302083333333, 8.82044633152174, 7.447058823529411, 3.60325, 3.5180882352941176, 2.890416666666667, 3.8475416666666664, 1.6783764705882358, 1.3160781499202554, 0.7507456140350878, 0.0, 10.044140624999999, 8.258201754385965, 6.580390749601277, 5.035129411764706, 7.695083333333333, 4.046583333333333, 3.5180882352941176, 2.57375, 3.7235294117647055, 2.940148777173914, 1.6372604166666667, 0.7705362903225808, 0.0), # 81 (10.222218584123576, 8.438465230762423, 8.17377822073617, 8.803480198268922, 7.43949070711961, 3.5973058857897686, 3.504531609626018, 2.8774561804602956, 3.841322911903673, 1.6729463783318543, 1.3121063313446355, 0.7490191843348656, 0.0, 10.03261906292867, 8.23921102768352, 6.560531656723177, 5.018839134995561, 7.682645823807346, 4.0284386526444145, 3.504531609626018, 2.5695042041355487, 3.719745353559805, 2.934493399422974, 1.634755644147234, 0.767133202796584, 0.0), # 82 (10.202252698753504, 8.400682270233196, 8.16104688214449, 8.78608954810789, 7.431502999004814, 3.591065170451659, 3.4908634002297765, 2.8645962886755068, 3.8349857300716352, 1.6674997606175532, 1.3080130643668657, 0.7472648384793719, 0.0, 10.020467356824417, 8.219913223273089, 6.540065321834328, 5.002499281852659, 7.6699714601432705, 4.01043480414571, 3.4908634002297765, 2.5650465503226134, 3.715751499502407, 2.9286965160359637, 1.632209376428898, 0.7636983882030178, 0.0), # 83 (10.181322061191626, 8.362569295101553, 8.14811149691358, 8.768290081521739, 7.423111837327523, 3.584544924554184, 3.477088909637929, 2.851841563786008, 3.8285365226337444, 1.6620367465504726, 1.3038055555555557, 0.7454835390946503, 0.0, 10.007711226851852, 8.200318930041153, 6.519027777777778, 4.986110239651417, 7.657073045267489, 3.9925781893004113, 3.477088909637929, 2.5603892318244172, 3.7115559186637617, 2.922763360507247, 1.629622299382716, 0.7602335722819594, 0.0), # 84 (10.159472475696308, 8.32414528850834, 8.13497549439872, 8.75009749899356, 7.414333360230238, 3.577762218665854, 3.463213440383012, 2.8391965782655086, 3.8219816910531925, 1.6565574652357518, 1.2994910114793157, 0.7436762488067449, 0.0, 9.994376393175584, 8.180438736874192, 6.497455057396579, 4.969672395707254, 7.643963382106385, 3.9748752095717124, 3.463213440383012, 2.5555444419041815, 3.707166680115119, 2.916699166331187, 1.626995098879744, 0.7567404807734855, 0.0), # 85 (10.136749746525913, 8.285429233594407, 8.121642303955191, 8.731527501006443, 7.405183705855455, 3.57073412335518, 3.44924229499756, 2.826665904587715, 3.815327636793172, 1.6510620457785314, 1.2950766387067558, 0.7418439302416996, 0.0, 9.98048857596022, 8.160283232658694, 6.475383193533778, 4.953186137335593, 7.630655273586344, 3.9573322664228017, 3.44924229499756, 2.550524373825129, 3.7025918529277275, 2.910509167002148, 1.6243284607910382, 0.7532208394176735, 0.0), # 86 (10.113199677938807, 8.246440113500597, 8.10811535493827, 8.712595788043478, 7.3956790123456795, 3.563477709190672, 3.4351807760141093, 2.8142541152263374, 3.8085807613168727, 1.645550617283951, 1.290569643806486, 0.7399875460255577, 0.0, 9.96607349537037, 8.139863006281134, 6.452848219032429, 4.936651851851852, 7.6171615226337455, 3.9399557613168725, 3.4351807760141093, 2.54534122085048, 3.6978395061728397, 2.904198596014493, 1.6216230709876542, 0.7496763739545999, 0.0), # 87 (10.088868074193357, 8.207196911367758, 8.094398076703246, 8.693318060587762, 7.385835417843406, 3.5560100467408424, 3.4210341859651954, 2.801965782655083, 3.8017474660874866, 1.6400233088571508, 1.2859772333471164, 0.7381080587843638, 0.0, 9.951156871570646, 8.119188646628, 6.429886166735582, 4.9200699265714505, 7.603494932174973, 3.9227520957171165, 3.4210341859651954, 2.540007176243459, 3.692917708921703, 2.897772686862588, 1.6188796153406495, 0.7461088101243417, 0.0), # 88 (10.063800739547922, 8.16771861033674, 8.080493898605397, 8.673710019122383, 7.375669060491138, 3.5483482065742016, 3.406807827383354, 2.7898054793476605, 3.794834152568206, 1.634480249603271, 1.2813066138972575, 0.7362064311441613, 0.0, 9.935764424725651, 8.098270742585774, 6.4065330694862865, 4.903440748809812, 7.589668305136412, 3.905727671086725, 3.406807827383354, 2.534534433267287, 3.687834530245569, 2.891236673040795, 1.6160987797210793, 0.7425198736669765, 0.0), # 89 (10.03804347826087, 8.128024193548386, 8.06640625, 8.653787364130435, 7.365196078431373, 3.5405092592592595, 3.3925070028011204, 2.7777777777777777, 3.7878472222222226, 1.6289215686274514, 1.2765649920255184, 0.7342836257309943, 0.0, 9.919921875, 8.077119883040936, 6.382824960127592, 4.886764705882353, 7.575694444444445, 3.888888888888889, 3.3925070028011204, 2.5289351851851856, 3.6825980392156863, 2.884595788043479, 1.6132812500000002, 0.7389112903225807, 0.0), # 90 (10.011642094590563, 8.088132644143545, 8.05213856024234, 8.63356579609501, 7.35443260980661, 3.532510275364528, 3.378137014751031, 2.7658872504191434, 3.780793076512727, 1.6233473950348318, 1.2717595743005101, 0.7323406051709063, 0.0, 9.903654942558298, 8.055746656879968, 6.35879787150255, 4.870042185104494, 7.561586153025454, 3.872242150586801, 3.378137014751031, 2.5232216252603767, 3.677216304903305, 2.8778552653650036, 1.6104277120484682, 0.7352847858312315, 0.0), # 91 (9.984642392795372, 8.048062945263066, 8.0376942586877, 8.613061015499195, 7.343394792759352, 3.524368325458518, 3.363703165765621, 2.754138469745466, 3.773678116902911, 1.6177578579305527, 1.2668975672908422, 0.7303783320899415, 0.0, 9.886989347565157, 8.034161652989356, 6.334487836454211, 4.853273573791657, 7.547356233805822, 3.8557938576436523, 3.363703165765621, 2.517405946756084, 3.671697396379676, 2.871020338499732, 1.6075388517375402, 0.7316420859330061, 0.0), # 92 (9.957090177133654, 8.00783408004779, 8.023076774691358, 8.592288722826089, 7.332098765432098, 3.5161004801097393, 3.349210758377425, 2.742536008230453, 3.766508744855967, 1.6121530864197533, 1.261986177565125, 0.7283977691141434, 0.0, 9.869950810185184, 8.012375460255576, 6.309930887825625, 4.836459259259259, 7.533017489711934, 3.839550411522634, 3.349210758377425, 2.5115003429355283, 3.666049382716049, 2.86409624094203, 1.6046153549382718, 0.727984916367981, 0.0), # 93 (9.92903125186378, 7.967465031638567, 8.008289537608597, 8.571264618558777, 7.320560665967347, 3.5077238098867043, 3.3346650951189805, 2.7310844383478132, 3.759291361835086, 1.6065332096075746, 1.2570326116919686, 0.7263998788695563, 0.0, 9.85256505058299, 7.990398667565118, 6.285163058459842, 4.819599628822722, 7.518582723670172, 3.823518213686939, 3.3346650951189805, 2.5055170070619317, 3.6602803329836733, 2.8570882061862592, 1.6016579075217197, 0.7243150028762335, 0.0), # 94 (9.90051142124411, 7.926974783176247, 7.993335976794697, 8.550004403180354, 7.308796632507598, 3.499255385357923, 3.320071478522822, 2.719788332571255, 3.7520323693034596, 1.6008983565991557, 1.2520440762399827, 0.7243856239822234, 0.0, 9.834857788923182, 7.968241863804456, 6.260220381199914, 4.8026950697974655, 7.504064738606919, 3.8077036655997567, 3.320071478522822, 2.4994681323985164, 3.654398316253799, 2.850001467726785, 1.5986671953589393, 0.7206340711978407, 0.0), # 95 (9.871576489533012, 7.886382317801674, 7.978219521604939, 8.528523777173913, 7.296822803195352, 3.4907122770919066, 3.3054352111214853, 2.708652263374486, 3.7447381687242793, 1.5952486564996373, 1.247027777777778, 0.7223559670781895, 0.0, 9.816854745370371, 7.945915637860083, 6.23513888888889, 4.785745969498911, 7.489476337448559, 3.7921131687242804, 3.3054352111214853, 2.4933659122085046, 3.648411401597676, 2.8428412590579715, 1.595643904320988, 0.7169438470728796, 0.0), # 96 (9.842272260988848, 7.845706618655694, 7.962943601394604, 8.506838441022543, 7.284655316173109, 3.482111555657166, 3.2907615954475067, 2.697680803231215, 3.7374151615607376, 1.589584238414159, 1.2419909228739638, 0.7203118707834976, 0.0, 9.798581640089164, 7.923430578618472, 6.209954614369819, 4.768752715242476, 7.474830323121475, 3.7767531245237014, 3.2907615954475067, 2.4872225397551184, 3.6423276580865545, 2.8356128136741816, 1.5925887202789208, 0.7132460562414268, 0.0), # 97 (9.812644539869984, 7.804966668879153, 7.947511645518976, 8.48496409520934, 7.272310309583368, 3.4734702916222124, 3.276055934033421, 2.68687852461515, 3.7300697492760246, 1.5839052314478608, 1.236940718097151, 0.7182542977241916, 0.0, 9.78006419324417, 7.900797274966106, 6.184703590485755, 4.751715694343581, 7.460139498552049, 3.7616299344612103, 3.276055934033421, 2.48105020830158, 3.636155154791684, 2.8283213650697805, 1.589502329103795, 0.7095424244435595, 0.0), # 98 (9.782739130434782, 7.764181451612902, 7.931927083333334, 8.462916440217391, 7.259803921568627, 3.464805555555556, 3.261323529411765, 2.67625, 3.7227083333333333, 1.5782117647058826, 1.2318843700159492, 0.7161842105263159, 0.0, 9.761328125, 7.878026315789473, 6.159421850079745, 4.734635294117647, 7.445416666666667, 3.7467500000000005, 3.261323529411765, 2.474861111111111, 3.6299019607843137, 2.820972146739131, 1.5863854166666669, 0.7058346774193549, 0.0), # 99 (9.752601836941611, 7.723369949997786, 7.916193344192958, 8.44071117652979, 7.247152290271389, 3.4561344180257074, 3.2465696841150726, 2.665799801859473, 3.715337315195854, 1.572503967293365, 1.2268290851989685, 0.714102571815914, 0.0, 9.742399155521262, 7.8551282899750525, 6.134145425994841, 4.717511901880093, 7.430674630391708, 3.732119722603262, 3.2465696841150726, 2.468667441446934, 3.6235761451356945, 2.8135703921765973, 1.5832386688385918, 0.7021245409088898, 0.0), # 100 (9.722278463648834, 7.682551147174654, 7.900313857453133, 8.41836400462963, 7.234371553834153, 3.4474739496011786, 3.231799700675881, 2.6555325026672763, 3.7079630963267793, 1.5667819683154474, 1.2217820702148188, 0.7120103442190294, 0.0, 9.723303004972564, 7.832113786409323, 6.108910351074094, 4.7003459049463405, 7.415926192653559, 3.7177455037341867, 3.231799700675881, 2.4624813925722706, 3.6171857769170765, 2.806121334876544, 1.5800627714906266, 0.6984137406522414, 0.0), # 101 (9.691814814814816, 7.641744026284349, 7.884292052469135, 8.395890625, 7.221477850399419, 3.4388412208504806, 3.217018881626725, 2.645452674897119, 3.7005920781893, 1.56104589687727, 1.2167505316321108, 0.7099084903617069, 0.0, 9.704065393518519, 7.808993393978774, 6.083752658160553, 4.683137690631809, 7.4011841563786, 3.703633744855967, 3.217018881626725, 2.4563151577503435, 3.6107389251997093, 2.798630208333334, 1.5768584104938272, 0.6947040023894864, 0.0), # 102 (9.661256694697919, 7.60096757046772, 7.8681313585962505, 8.373306738123993, 7.208487318109686, 3.430253302342123, 3.20223252950014, 2.63556489102271, 3.6932306622466085, 1.5552958820839726, 1.211741676019454, 0.7077979728699895, 0.0, 9.68471204132373, 7.785777701569883, 6.058708380097269, 4.6658876462519165, 7.386461324493217, 3.689790847431794, 3.20223252950014, 2.4501809302443736, 3.604243659054843, 2.7911022460413317, 1.5736262717192502, 0.6909970518607019, 0.0), # 103 (9.63064990755651, 7.560240762865614, 7.851835205189758, 8.350628044484703, 7.195416095107452, 3.421727264644617, 3.187445946828663, 2.6258737235177567, 3.685885249961896, 1.5495320530406955, 1.2067627099454585, 0.7056797543699213, 0.0, 9.665268668552812, 7.762477298069133, 6.033813549727292, 4.648596159122086, 7.371770499923792, 3.6762232129248593, 3.187445946828663, 2.4440909033175835, 3.597708047553726, 2.783542681494901, 1.5703670410379515, 0.687294614805965, 0.0), # 104 (9.600040257648953, 7.519582586618876, 7.835407021604938, 8.327870244565217, 7.182280319535221, 3.4132801783264752, 3.172664436144829, 2.6163837448559675, 3.6785622427983538, 1.5437545388525786, 1.201820839978735, 0.7035547974875461, 0.0, 9.64576099537037, 7.739102772363006, 6.009104199893674, 4.631263616557734, 7.3571244855967075, 3.662937242798354, 3.172664436144829, 2.4380572702331964, 3.5911401597676105, 2.775956748188406, 1.5670814043209877, 0.6835984169653525, 0.0), # 105 (9.569473549233614, 7.479012024868357, 7.818850237197074, 8.305049038848631, 7.1690961295354905, 3.404929113956206, 3.1578932999811724, 2.6070995275110502, 3.6712680422191735, 1.5379634686247616, 1.1969232726878927, 0.701424064848908, 0.0, 9.626214741941014, 7.715664713337986, 5.9846163634394625, 4.613890405874283, 7.342536084438347, 3.6499393385154706, 3.1578932999811724, 2.4320922242544327, 3.5845480647677452, 2.768349679616211, 1.5637700474394147, 0.6799101840789417, 0.0), # 106 (9.538995586568856, 7.438548060754901, 7.802168281321446, 8.282180127818036, 7.155879663250759, 3.3966911421023225, 3.1431378408702306, 2.5980256439567144, 3.6640090496875475, 1.532158971462385, 1.1920772146415421, 0.6992885190800504, 0.0, 9.606655628429355, 7.692173709880553, 5.96038607320771, 4.596476914387154, 7.328018099375095, 3.6372359015394005, 3.1431378408702306, 2.426207958644516, 3.5779398316253794, 2.760726709272679, 1.5604336562642893, 0.6762316418868093, 0.0), # 107 (9.508652173913044, 7.398209677419356, 7.785364583333334, 8.259279211956523, 7.1426470588235285, 3.3885833333333335, 3.1284033613445374, 2.589166666666667, 3.656791666666667, 1.5263411764705888, 1.1872898724082936, 0.6971491228070177, 0.0, 9.587109375, 7.668640350877193, 5.936449362041468, 4.579023529411765, 7.313583333333334, 3.624833333333334, 3.1284033613445374, 2.4204166666666667, 3.5713235294117642, 2.7530930706521746, 1.557072916666667, 0.6725645161290325, 0.0), # 108 (9.478489115524543, 7.358015858002567, 7.768442572588021, 8.23636199174718, 7.129414454396299, 3.3806227582177515, 3.113695163936631, 2.580527168114617, 3.6496222946197223, 1.5205102127545123, 1.1825684525567568, 0.6950068386558532, 0.0, 9.567601701817559, 7.645075225214384, 5.9128422627837836, 4.561530638263536, 7.299244589239445, 3.612738035360464, 3.113695163936631, 2.4147305415841083, 3.5647072271981495, 2.7454539972490606, 1.5536885145176043, 0.668910532545688, 0.0), # 109 (9.448552215661715, 7.317985585645383, 7.751405678440788, 8.213444167673108, 7.116197988111569, 3.3728264873240867, 3.0990185511790447, 2.5721117207742723, 3.6425073350099066, 1.5146662094192962, 1.177920161655542, 0.6928626292526012, 0.0, 9.54815832904664, 7.621488921778612, 5.8896008082777085, 4.543998628257887, 7.285014670019813, 3.600956409083981, 3.0990185511790447, 2.409161776660062, 3.5580989940557846, 2.737814722557703, 1.5502811356881578, 0.6652714168768531, 0.0), # 110 (9.41888727858293, 7.278137843488651, 7.7342573302469155, 8.190541440217391, 7.103013798111837, 3.365211591220851, 3.0843788256043156, 2.5639248971193416, 3.635453189300412, 1.5088092955700803, 1.173352206273259, 0.6907174572233054, 0.0, 9.528804976851852, 7.597892029456357, 5.866761031366295, 4.526427886710239, 7.270906378600824, 3.5894948559670783, 3.0843788256043156, 2.4037225651577505, 3.5515068990559184, 2.7301804800724643, 1.546851466049383, 0.6616488948626047, 0.0), # 111 (9.38954010854655, 7.238491614673214, 7.717000957361684, 8.167669509863124, 7.089878022539605, 3.357795140476554, 3.069781289744979, 2.5559712696235333, 3.628466258954427, 1.5029396003120044, 1.1688717929785184, 0.6885722851940093, 0.0, 9.509567365397805, 7.574295137134101, 5.844358964892591, 4.5088188009360115, 7.256932517908854, 3.5783597774729463, 3.069781289744979, 2.3984251003403956, 3.5449390112698027, 2.7225565032877084, 1.543400191472337, 0.6580446922430195, 0.0), # 112 (9.360504223703044, 7.1991320672204555, 7.699681523543391, 8.14487541186903, 7.076783786782469, 3.3505906987084666, 3.0552629818283847, 2.548271903658586, 3.6215709370862066, 1.4970761841531826, 1.1644873176921446, 0.6864327447087024, 0.0, 9.490443900843221, 7.550760191795725, 5.8224365884607225, 4.491228552459547, 7.243141874172413, 3.5675806651220205, 3.0552629818283847, 2.3932790705060474, 3.5383918933912346, 2.7149584706230105, 1.5399363047086783, 0.654466551565496, 0.0), # 113 (9.331480897900065, 7.16044741823174, 7.682538062518016, 8.122342065958001, 7.063595569710884, 3.343581854975776, 3.0410091042052896, 2.5409213581271333, 3.6148730119043533, 1.491328791978196, 1.1602073895188663, 0.684326014342748, 0.0, 9.471275414160035, 7.5275861577702265, 5.801036947594331, 4.473986375934587, 7.229746023808707, 3.557289901377987, 3.0410091042052896, 2.3882727535541255, 3.531797784855442, 2.7074473553193346, 1.5365076125036032, 0.6509497652937947, 0.0), # 114 (9.302384903003995, 7.122451598792792, 7.665580777256098, 8.100063378886334, 7.050271785259067, 3.3367503822909463, 3.027029825095781, 2.533917772616129, 3.6083749928895963, 1.4857063319970194, 1.1560257519045158, 0.6822531318799043, 0.0, 9.452006631660376, 7.5047844506789465, 5.7801287595225785, 4.457118995991058, 7.216749985779193, 3.5474848816625806, 3.027029825095781, 2.3833931302078186, 3.5251358926295335, 2.700021126295445, 1.5331161554512198, 0.647495599890254, 0.0), # 115 (9.273179873237634, 7.0850892578507265, 7.648776824986561, 8.077999612699802, 7.036792350922519, 3.330080178417474, 3.0133024087639466, 2.5272417970412473, 3.6020604464092765, 1.480198339612387, 1.1519343218785802, 0.6802102664572789, 0.0, 9.43260725975589, 7.482312931030067, 5.7596716093929015, 4.44059501883716, 7.204120892818553, 3.5381385158577463, 3.0133024087639466, 2.3786286988696244, 3.5183961754612594, 2.6926665375666015, 1.5297553649973124, 0.6440990234409752, 0.0), # 116 (9.243829442823772, 7.04830504435266, 7.632093362938321, 8.056111029444182, 7.02313718419674, 3.323555141118853, 2.9998041194738763, 2.5208740813181603, 3.5959129388307343, 1.4747943502270324, 1.1479250164705472, 0.6781935872119792, 0.0, 9.413047004858225, 7.46012945933177, 5.739625082352736, 4.424383050681096, 7.1918258776614685, 3.5292237138454245, 2.9998041194738763, 2.3739679579420376, 3.51156859209837, 2.6853703431480613, 1.5264186725876645, 0.6407550040320601, 0.0), # 117 (9.214297245985211, 7.0120436072457135, 7.615497548340306, 8.03435789116525, 7.009286202577227, 3.317159168158581, 2.9865122214896576, 2.51479527536254, 3.5899160365213114, 1.46948389924369, 1.143989752709904, 0.6761992632811126, 0.0, 9.393295573379024, 7.438191896092237, 5.71994876354952, 4.40845169773107, 7.179832073042623, 3.5207133855075567, 2.9865122214896576, 2.369399405827558, 3.5046431012886137, 2.678119297055084, 1.5230995096680613, 0.6374585097496104, 0.0), # 118 (9.184546916944742, 6.976249595477001, 7.598956538421437, 8.012700459908778, 6.99521932355948, 3.3108761573001524, 2.973403979075378, 2.5089860290900607, 3.5840533058483475, 1.4642565220650932, 1.1401204476261382, 0.6742234638017862, 0.0, 9.373322671729932, 7.416458101819647, 5.70060223813069, 4.392769566195279, 7.168106611696695, 3.5125804407260848, 2.973403979075378, 2.3649115409286803, 3.49760966177974, 2.670900153302927, 1.5197913076842873, 0.6342045086797276, 0.0), # 119 (9.154542089925162, 6.940867657993644, 7.582437490410635, 7.991098997720545, 6.980916464638998, 3.304690006307063, 2.9604566564951265, 2.5034269924163928, 3.578308313179186, 1.4591017540939766, 1.136309018248736, 0.6722623579111081, 0.0, 9.353098006322597, 7.394885937022188, 5.68154509124368, 4.377305262281929, 7.156616626358372, 3.50479778938295, 2.9604566564951265, 2.360492861647902, 3.490458232319499, 2.663699665906849, 1.516487498082127, 0.6309879689085133, 0.0), # 120 (9.124246399149268, 6.90584244374276, 7.565907561536823, 7.969513766646325, 6.966357543311279, 3.29858461294281, 2.94764751801299, 2.4980988152572112, 3.572664624881166, 1.4540091307330743, 1.1325473816071863, 0.6703121147461852, 0.0, 9.33259128356866, 7.373433262208036, 5.662736908035931, 4.362027392199222, 7.145329249762332, 3.497338341360096, 2.94764751801299, 2.356131866387721, 3.4831787716556395, 2.656504588882109, 1.5131815123073646, 0.6278038585220692, 0.0), # 121 (9.093623478839854, 6.871118601671464, 7.549333909028926, 7.947905028731892, 6.951522477071823, 3.292543874970886, 2.9349538278930587, 2.492982147528187, 3.5671058073216297, 1.4489681873851195, 1.1288274547309753, 0.6683689034441251, 0.0, 9.31177220987977, 7.352057937885375, 5.644137273654876, 4.346904562155357, 7.1342116146432595, 3.490175006539462, 2.9349538278930587, 2.351817053550633, 3.4757612385359113, 2.6493016762439643, 1.5098667818057854, 0.6246471456064968, 0.0), # 122 (9.062636963219719, 6.836640780726876, 7.532683690115864, 7.92623304602302, 6.936391183416127, 3.28655169015479, 2.9223528503994194, 2.4880576391449933, 3.5616154268679177, 1.443968459452847, 1.1251411546495909, 0.6664288931420351, 0.0, 9.290610491667572, 7.330717824562385, 5.625705773247954, 4.33190537835854, 7.123230853735835, 3.4832806948029904, 2.9223528503994194, 2.3475369215391355, 3.4681955917080636, 2.642077682007674, 1.5065367380231727, 0.621512798247898, 0.0), # 123 (9.031250486511654, 6.802353629856113, 7.515924062026559, 7.90445808056549, 6.920943579839691, 3.2805919562580144, 2.9098218497961597, 2.483305940023303, 3.5561770498873715, 1.4389994823389904, 1.1214803983925201, 0.664488252977023, 0.0, 9.269075835343711, 7.309370782747252, 5.6074019919625995, 4.316998447016971, 7.112354099774743, 3.476628316032624, 2.9098218497961597, 2.3432799687557244, 3.4604717899198456, 2.634819360188497, 1.5031848124053118, 0.618395784532374, 0.0), # 124 (8.999427682938459, 6.768201798006293, 7.499022181989936, 7.88254039440507, 6.905159583838015, 3.274648571044058, 2.8973380903473696, 2.478707700078788, 3.5507742427473308, 1.4340507914462837, 1.1178371029892504, 0.6625431520861957, 0.0, 9.247137947319828, 7.2879746729481525, 5.5891855149462515, 4.30215237433885, 7.1015484854946616, 3.470190780110303, 2.8973380903473696, 2.3390346936028985, 3.4525797919190073, 2.6275134648016905, 1.4998044363979874, 0.6152910725460268, 0.0), # 125 (8.967132186722928, 6.734129934124536, 7.481945207234916, 7.8604402495875405, 6.889019112906595, 3.2687054322764144, 2.884878836317135, 2.474243569227122, 3.545390571815139, 1.4291119221774609, 1.1142031854692689, 0.6605897596066612, 0.0, 9.224766534007578, 7.266487355673273, 5.571015927346345, 4.287335766532382, 7.090781143630278, 3.463940996917971, 2.884878836317135, 2.334789594483153, 3.4445095564532977, 2.620146749862514, 1.4963890414469831, 0.6121936303749579, 0.0), # 126 (8.93432763208786, 6.7000826871579555, 7.464660294990421, 7.838117908158674, 6.8725020845409315, 3.26274643771858, 2.872421351969547, 2.469894197383977, 3.5400096034581354, 1.4241724099352562, 1.1105705628620632, 0.6586242446755264, 0.0, 9.201931301818599, 7.244866691430789, 5.552852814310316, 4.272517229805768, 7.080019206916271, 3.457851876337568, 2.872421351969547, 2.3305331697989855, 3.4362510422704657, 2.612705969386225, 1.4929320589980841, 0.6090984261052688, 0.0), # 127 (8.900977653256046, 6.666004706053673, 7.447134602485375, 7.815533632164248, 6.855588416236526, 3.2567554851340508, 2.859942901568691, 2.465640234465026, 3.534614904043661, 1.4192217901224033, 1.1069311521971208, 0.6566427764298991, 0.0, 9.178601957164537, 7.223070540728888, 5.534655760985604, 4.257665370367209, 7.069229808087322, 3.4518963282510366, 2.859942901568691, 2.3262539179528936, 3.427794208118263, 2.6051778773880834, 1.4894269204970751, 0.6060004278230613, 0.0), # 128 (8.867045884450281, 6.631840639758805, 7.4293352869486995, 7.792647683650037, 6.838258025488874, 3.250716472286322, 2.8474207493786565, 2.4614623303859418, 3.529190039939058, 1.4142495981416365, 1.1032768705039286, 0.6546415240068865, 0.0, 9.154748206457038, 7.20105676407575, 5.516384352519642, 4.242748794424909, 7.058380079878116, 3.4460472625403185, 2.8474207493786565, 2.321940337347373, 3.419129012744437, 2.597549227883346, 1.4858670573897401, 0.6028946036144368, 0.0), # 129 (8.832495959893366, 6.5975351372204685, 7.411229505609316, 7.769420324661814, 6.820490829793475, 3.2446132969388883, 2.8348321596635313, 2.457341135062396, 3.5237185775116666, 1.4092453693956895, 1.0995996348119743, 0.6526166565435961, 0.0, 9.130339756107748, 7.178783221979556, 5.4979981740598705, 4.2277361081870675, 7.047437155023333, 3.4402775890873545, 2.8348321596635313, 2.3175809263849203, 3.4102454148967376, 2.589806774887272, 1.4822459011218634, 0.5997759215654973, 0.0), # 130 (8.797291513808094, 6.563032847385783, 7.392784415696151, 7.7458118172453565, 6.802266746645829, 3.238429856855247, 2.8221543966874045, 2.4532572984100627, 3.5181840831288285, 1.4041986392872965, 1.0958913621507447, 0.6505643431771354, 0.0, 9.105346312528312, 7.156207774948489, 5.479456810753724, 4.212595917861889, 7.036368166257657, 3.4345602177740875, 2.8221543966874045, 2.3131641834680337, 3.4011333733229145, 2.5819372724151193, 1.4785568831392302, 0.596639349762344, 0.0), # 131 (8.76139618041726, 6.528278419201865, 7.373967174438122, 7.72178242344644, 6.783565693541435, 3.2321500497988933, 2.8093647247143627, 2.449191470344614, 3.5125701231578845, 1.3990989432191914, 1.0921439695497275, 0.6484807530446118, 0.0, 9.079737582130376, 7.13328828349073, 5.460719847748638, 4.1972968296575734, 7.025140246315769, 3.4288680584824593, 2.8093647247143627, 2.3086786069992096, 3.3917828467707176, 2.573927474482147, 1.4747934348876244, 0.5934798562910787, 0.0), # 132 (8.724773593943663, 6.493216501615832, 7.354744939064153, 7.697292405310838, 6.764367587975791, 3.225757773533322, 2.7964404080084946, 2.445124300781722, 3.5068602639661752, 1.3939358165941083, 1.0883493740384103, 0.6463620552831327, 0.0, 9.053483271325586, 7.10998260811446, 5.44174687019205, 4.181807449782324, 7.0137205279323505, 3.4231740210944106, 2.7964404080084946, 2.3041126953809443, 3.3821837939878954, 2.5657641351036133, 1.4709489878128308, 0.590292409237803, 0.0), # 133 (8.687387388610095, 6.457791743574804, 7.33508486680317, 7.672302024884328, 6.7446523474443945, 3.2192369258220297, 2.7833587108338893, 2.44103643963706, 3.5010380719210428, 1.388698794814781, 1.0844994926462799, 0.6442044190298056, 0.0, 9.026553086525583, 7.0862486093278605, 5.422497463231399, 4.166096384444343, 7.0020761438420855, 3.417451015491884, 2.7833587108338893, 2.2994549470157355, 3.3723261737221972, 2.557434008294776, 1.4670169733606342, 0.5870719766886187, 0.0), # 134 (8.649201198639354, 6.421948794025897, 7.314954114884091, 7.646771544212684, 6.724399889442747, 3.212571404428512, 2.770096897454634, 2.4369085368263, 3.4950871133898262, 1.3833774132839443, 1.0805862424028239, 0.6420040134217377, 0.0, 8.99891673414202, 7.0620441476391145, 5.402931212014119, 4.150132239851832, 6.9901742267796525, 3.41167195155682, 2.770096897454634, 2.2946938603060802, 3.3621999447213735, 2.548923848070895, 1.4629908229768183, 0.583813526729627, 0.0), # 135 (8.610178658254235, 6.385632301916229, 7.294319840535841, 7.62066122534168, 6.703590131466344, 3.205745107116265, 2.7566322321348173, 2.4327212422651154, 3.4889909547398688, 1.3779612074043308, 1.0766015403375297, 0.6397570075960368, 0.0, 8.970543920586536, 7.037327083556404, 5.383007701687648, 4.133883622212991, 6.9779819094797375, 3.4058097391711617, 2.7566322321348173, 2.289817933654475, 3.351795065733172, 2.540220408447227, 1.4588639681071682, 0.58051202744693, 0.0), # 136 (8.570283401677534, 6.348786916192918, 7.273149200987342, 7.593931330317094, 6.682202991010689, 3.1987419316487826, 2.7429419791385277, 2.428455205869179, 3.4827331623385107, 1.3724397125786756, 1.0725373034798844, 0.63745957068981, 0.0, 8.941404352270776, 7.012055277587909, 5.362686517399421, 4.117319137736026, 6.965466324677021, 3.3998372882168506, 2.7429419791385277, 2.284815665463416, 3.3411014955053444, 2.5313104434390317, 1.4546298401974684, 0.577162446926629, 0.0), # 137 (8.529479063132047, 6.311357285803083, 7.251409353467515, 7.566542121184698, 6.660218385571278, 3.1915457757895624, 2.729003402729852, 2.4240910775541624, 3.4762973025530934, 1.3668024642097119, 1.0683854488593754, 0.6351078718401649, 0.0, 8.91146773560639, 6.986186590241813, 5.341927244296877, 4.100407392629135, 6.952594605106187, 3.3937275085758274, 2.729003402729852, 2.2796755541354017, 3.330109192785639, 2.5221807070615663, 1.450281870693503, 0.5737597532548258, 0.0), # 138 (8.487729276840568, 6.273288059693839, 7.229067455205284, 7.538453859990269, 6.63761623264361, 3.184140537302099, 2.7147937671728797, 2.4196095072357395, 3.469666941750957, 1.3610389977001744, 1.0641378935054902, 0.6326980801842089, 0.0, 8.880703777005019, 6.959678882026297, 5.32068946752745, 4.083116993100523, 6.939333883501914, 3.3874533101300353, 2.7147937671728797, 2.274386098072928, 3.318808116321805, 2.51281795333009, 1.4458134910410567, 0.5702989145176218, 0.0), # 139 (8.444997677025897, 6.234523886812306, 7.206090663429573, 7.509626808779583, 6.614376449723186, 3.176510113949888, 2.7002903367316984, 2.4149911448295818, 3.462825646299444, 1.3551388484527966, 1.0597865544477159, 0.6302263648590494, 0.0, 8.849082182878314, 6.932490013449542, 5.298932772238579, 4.0654165453583895, 6.925651292598888, 3.3809876027614147, 2.7002903367316984, 2.2689357956784915, 3.307188224861593, 2.5032089362598615, 1.4412181326859146, 0.5667748988011189, 0.0), # 140 (8.40124789791083, 6.195009416105602, 7.1824461353693, 7.480021229598415, 6.590478954305501, 3.1686384034964257, 2.6854703756703975, 2.4102166402513627, 3.455756982565893, 1.349091551870313, 1.0553233487155398, 0.6276888950017938, 0.0, 8.816572659637913, 6.904577845019731, 5.276616743577699, 4.047274655610939, 6.911513965131786, 3.3743032963519077, 2.6854703756703975, 2.26331314535459, 3.2952394771527507, 2.4933404098661387, 1.4364892270738603, 0.5631826741914184, 0.0), # 141 (8.356443573718156, 6.154689296520844, 7.158101028253392, 7.44959738449254, 6.565903663886058, 3.1605093037052074, 2.670311148253063, 2.4052666434167547, 3.448444516917647, 1.3428866433554572, 1.0507401933384497, 0.6250818397495496, 0.0, 8.783144913695466, 6.875900237245045, 5.253700966692247, 4.028659930066371, 6.896889033835294, 3.3673733007834565, 2.670311148253063, 2.2575066455037196, 3.282951831943029, 2.4831991281641805, 1.4316202056506786, 0.5595172087746222, 0.0), # 142 (8.310548338670674, 6.113508177005149, 7.133022499310772, 7.418315535507731, 6.540630495960352, 3.152106712339729, 2.6547899187437842, 2.4001218042414303, 3.4408718157220486, 1.3365136583109634, 1.0460290053459322, 0.6224013682394242, 0.0, 8.748768651462617, 6.846415050633665, 5.230145026729661, 4.009540974932889, 6.881743631444097, 3.360170525938002, 2.6547899187437842, 2.251504794528378, 3.270315247980176, 2.472771845169244, 1.4266044998621543, 0.5557734706368318, 0.0), # 143 (8.263525826991184, 6.071410706505636, 7.107177705770357, 7.386135944689768, 6.514639368023886, 3.1434145271634857, 2.6388839514066493, 2.3947627726410623, 3.4330224453464364, 1.3299621321395652, 1.0411817017674754, 0.619643649608525, 0.0, 8.713413579351014, 6.816080145693774, 5.205908508837376, 3.9898863964186946, 6.866044890692873, 3.3526678816974873, 2.6388839514066493, 2.245296090831061, 3.257319684011943, 2.4620453148965895, 1.4214355411540713, 0.5519464278641489, 0.0), # 144 (8.215339672902477, 6.0283415339694235, 7.080533804861075, 7.353018874084421, 6.487910197572155, 3.134416645939974, 2.6225705105057466, 2.3891701985313234, 3.424879972158151, 1.3232216002439972, 1.036190199632566, 0.6168048529939595, 0.0, 8.6770494037723, 6.784853382933553, 5.180950998162829, 3.969664800731991, 6.849759944316302, 3.344838277943853, 2.6225705105057466, 2.238869032814267, 3.2439550987860777, 2.451006291361474, 1.4161067609722149, 0.548031048542675, 0.0), # 145 (8.16595351062735, 5.984245308343629, 7.053057953811847, 7.318924585737469, 6.460422902100661, 3.1250969664326886, 2.605826860305165, 2.3833247318278863, 3.4164279625245353, 1.3162815980269928, 1.0310464159706916, 0.6138811475328351, 0.0, 8.639645831138118, 6.7526926228611845, 5.155232079853457, 3.948844794080978, 6.832855925049071, 3.3366546245590407, 2.605826860305165, 2.2322121188804918, 3.2302114510503306, 2.439641528579157, 1.4106115907623695, 0.5440223007585119, 0.0), # 146 (8.1153309743886, 5.93906667857537, 7.024717309851591, 7.283813341694685, 6.4321573991049, 3.1154393864051255, 2.5886302650689905, 2.3772070224464232, 3.40764998281293, 1.3091316608912866, 1.0257422678113395, 0.6108687023622593, 0.0, 8.601172567860118, 6.719555725984851, 5.1287113390566965, 3.9273949826738592, 6.81529996562586, 3.3280898314249923, 2.5886302650689905, 2.2253138474322327, 3.21607869955245, 2.4279377805648954, 1.4049434619703185, 0.5399151525977609, 0.0), # 147 (8.063435698409021, 5.892750293611764, 6.9954790302092364, 7.247645404001847, 6.403093606080374, 3.105427803620781, 2.5709579890613132, 2.3707977203026074, 3.398529599390676, 1.301761324239612, 1.0202696721839972, 0.6077636866193392, 0.0, 8.561599320349941, 6.68540055281273, 5.101348360919985, 3.905283972718835, 6.797059198781352, 3.3191168084236504, 2.5709579890613132, 2.2181627168719866, 3.201546803040187, 2.4158818013339496, 1.3990958060418472, 0.535704572146524, 0.0), # 148 (8.010231316911412, 5.845240802399927, 6.965310272113703, 7.210381034704727, 6.37321144052258, 3.0950461158431497, 2.5527872965462204, 2.3640774753121114, 3.3890503786251127, 1.2941601234747035, 1.0146205461181517, 0.6045622694411826, 0.0, 8.520895795019237, 6.650184963853008, 5.073102730590758, 3.88248037042411, 6.778100757250225, 3.3097084654369557, 2.5527872965462204, 2.21074722560225, 3.18660572026129, 2.403460344901576, 1.3930620544227408, 0.5313855274909026, 0.0), # 149 (7.955681464118564, 5.796482853886981, 6.934178192793912, 7.171980495849104, 6.342490819927017, 3.0842782208357287, 2.5340954517878003, 2.3570269373906068, 3.3791958868835836, 1.2863175939992944, 1.0087868066432906, 0.601260619964897, 0.0, 8.479031698279647, 6.6138668196138655, 5.043934033216452, 3.8589527819978824, 6.758391773767167, 3.2998377123468496, 2.5340954517878003, 2.2030558720255207, 3.1712454099635083, 2.390660165283035, 1.3868356385587826, 0.5269529867169983, 0.0), # 150 (7.899749774253275, 5.746421097020041, 6.902049949478785, 7.132404049480748, 6.310911661789184, 3.0731080163620113, 2.5148597190501416, 2.3496267564537683, 3.3689496905334293, 1.2782232712161197, 1.002760370788901, 0.5978549073275894, 0.0, 8.435976736542818, 6.576403980603482, 5.013801853944504, 3.8346698136483583, 6.737899381066859, 3.2894774590352753, 2.5148597190501416, 2.1950771545442938, 3.155455830894592, 2.377468016493583, 1.3804099898957571, 0.5224019179109128, 0.0), # 151 (7.842399881538343, 5.6950001807462245, 6.868892699397251, 7.091611957645439, 6.278453883604579, 3.0615194001854955, 2.4950573625973322, 2.3418575824172674, 3.3582953559419897, 1.2698666905279126, 0.9965331555844703, 0.5943413006663675, 0.0, 8.391700616220398, 6.537754307330042, 4.982665777922351, 3.809600071583737, 6.716590711883979, 3.2786006153841742, 2.4950573625973322, 2.1867995715610684, 3.1392269418022893, 2.36387065254848, 1.3737785398794504, 0.5177272891587478, 0.0), # 152 (7.78359542019656, 5.642164754012652, 6.834673599778224, 7.049564482388949, 6.245097402868703, 3.049496270069676, 2.4746656466934596, 2.333700065196776, 3.3472164494766075, 1.2612373873374074, 0.9900970780594861, 0.5907159691183387, 0.0, 8.346173043724027, 6.497875660301725, 4.95048539029743, 3.783712162012222, 6.694432898953215, 3.2671800912754865, 2.4746656466934596, 2.17821162147834, 3.1225487014343516, 2.3498548274629836, 1.3669347199556448, 0.5129240685466048, 0.0), # 153 (7.723300024450729, 5.587859465766439, 6.7993598078506325, 7.006221885757057, 6.210822137077053, 3.0370225237780484, 2.453661835602614, 2.325134854707968, 3.3356965375046217, 1.2523248970473384, 0.9834440552434354, 0.5869750818206104, 0.0, 8.299363725465357, 6.456725900026714, 4.917220276217177, 3.7569746911420143, 6.671393075009243, 3.2551887965911552, 2.453661835602614, 2.169301802698606, 3.1054110685385266, 2.335407295252353, 1.3598719615701265, 0.5079872241605854, 0.0), # 154 (7.6614773285236355, 5.532028964954703, 6.762918480843396, 6.961544429795533, 6.175608003725131, 3.0240820590741087, 2.4320231935888805, 2.316142600866515, 3.323719186393376, 1.2431187550604388, 0.9765660041658056, 0.5831148079102902, 0.0, 8.251242367856026, 6.414262887013191, 4.882830020829028, 3.7293562651813157, 6.647438372786752, 3.242599641213121, 2.4320231935888805, 2.160058613624363, 3.0878040018625654, 2.320514809931845, 1.3525836961686795, 0.5029117240867913, 0.0), # 155 (7.598090966638081, 5.474617900524564, 6.725316775985439, 6.915492376550157, 6.139434920308432, 3.0106587737213526, 2.40972698491635, 2.3067039535880913, 3.3112679625102084, 1.2336084967794434, 0.9694548418560842, 0.5791313165244852, 0.0, 8.201778677307685, 6.370444481769337, 4.84727420928042, 3.7008254903383295, 6.622535925020417, 3.2293855350233276, 2.40972698491635, 2.150470552658109, 3.069717460154216, 2.3051641255167192, 1.3450633551970879, 0.49769253641132405, 0.0), # 156 (7.533104573016862, 5.415570921423138, 6.686521850505682, 6.868025988066703, 6.102282804322456, 2.9967365654832747, 2.3867504738491094, 2.2967995627883675, 3.2983264322224626, 1.2237836576070855, 0.9621024853437583, 0.5750207768003032, 0.0, 8.150942360231976, 6.325228544803333, 4.810512426718791, 3.671350972821256, 6.596652864444925, 3.2155193879037145, 2.3867504738491094, 2.140526118202339, 3.051141402161228, 2.2893419960222348, 1.3373043701011365, 0.4923246292202853, 0.0), # 157 (7.464680946405239, 5.353748694041236, 6.644659961585297, 6.817327186238432, 6.062454070580665, 2.9814309445183143, 2.3625533604639286, 2.285748730145572, 3.2838873638663655, 1.213341479072786, 0.9542659587564906, 0.570633297016195, 0.0, 8.096485859415345, 6.276966267178143, 4.771329793782452, 3.640024437218358, 6.567774727732731, 3.200048222203801, 2.3625533604639286, 2.129593531798796, 3.0312270352903323, 2.2724423954128112, 1.3289319923170593, 0.48670442673102154, 0.0), # 158 (7.382286766978402, 5.282809876299521, 6.58894818200249, 6.7529828690913405, 6.010127539854418, 2.95965229467081, 2.334106381692858, 2.2696723053184926, 3.2621424204073812, 1.2005702485246865, 0.9445694892698324, 0.5651135436402591, 0.0, 8.025427646920194, 6.216248980042849, 4.722847446349162, 3.601710745574059, 6.5242848408147625, 3.17754122744589, 2.334106381692858, 2.114037353336293, 3.005063769927209, 2.250994289697114, 1.3177896364004982, 0.4802554432999565, 0.0), # 159 (7.284872094904309, 5.202172001162321, 6.51826746496324, 6.673933132806645, 5.94428008756453, 2.9308657560278157, 2.301121874191892, 2.248166328969728, 3.2324750757428835, 1.1853014129657236, 0.9328765847682567, 0.5583751624073207, 0.0, 7.93642060889358, 6.142126786480525, 4.664382923841283, 3.55590423889717, 6.464950151485767, 3.147432860557619, 2.301121874191892, 2.0934755400198686, 2.972140043782265, 2.2246443776022153, 1.3036534929926482, 0.47292472737839286, 0.0), # 160 (7.17322205458596, 5.11236079574043, 6.4333724765919245, 6.5809293778175455, 5.865595416188075, 2.895420057582683, 2.263840723003438, 2.2215002221290754, 3.1952765889996724, 1.1676645482927346, 0.9192902757666179, 0.5504806224089643, 0.0, 7.830374044819097, 6.055286846498606, 4.596451378833089, 3.5029936448782033, 6.390553177999345, 3.1101003109807053, 2.263840723003438, 2.0681571839876307, 2.9327977080940375, 2.1936431259391824, 1.2866744953183848, 0.46476007234003913, 0.0), # 161 (7.048121770426357, 5.013901987144635, 6.335017883012913, 6.474723004557244, 5.7747572282021356, 2.853663928328766, 2.2225038131699044, 2.1899434058263343, 3.150938219304545, 1.147789230402558, 0.9039135927797701, 0.5414923927367745, 0.0, 7.708197254180333, 5.956416320104519, 4.519567963898851, 3.4433676912076736, 6.30187643860909, 3.065920768156868, 2.2225038131699044, 2.03833137737769, 2.8873786141010678, 2.158241001519082, 1.2670035766025827, 0.4558092715586033, 0.0), # 162 (6.9103563668284975, 4.90732130248573, 6.223958350350585, 6.35606541345895, 5.672449226083792, 2.8059460972594175, 2.1773520297337003, 2.153765301091302, 3.0998512257843016, 1.1258050351920315, 0.8868495663225682, 0.5314729424823361, 0.0, 7.570799536460879, 5.846202367305696, 4.43424783161284, 3.3774151055760937, 6.199702451568603, 3.015271421527823, 2.1773520297337003, 2.0042472123281554, 2.836224613041896, 2.118688471152984, 1.2447916700701172, 0.4461201184077937, 0.0), # 163 (6.760710968195384, 4.793144468874502, 6.100948544729314, 6.225708004955863, 5.559355112310126, 2.752615293367992, 2.128626257737233, 2.113235328953779, 3.0424068675657407, 1.1018415385579923, 0.8682012269098661, 0.5204847407372336, 0.0, 7.419090191144328, 5.725332148109569, 4.34100613454933, 3.305524615673976, 6.0848137351314815, 2.9585294605352903, 2.128626257737233, 1.9661537809771372, 2.779677556155063, 2.075236001651955, 1.2201897089458629, 0.43574040626131844, 0.0), # 164 (6.599970698930017, 4.671897213421746, 5.966743132273474, 6.084402179481189, 5.436158589358215, 2.694020245647842, 2.076567382222911, 2.068622910443561, 2.9789964037756596, 1.0760283163972786, 0.8480716050565187, 0.5085902565930517, 0.0, 7.25397851771427, 5.594492822523568, 4.2403580252825925, 3.2280849491918353, 5.957992807551319, 2.8960720746209856, 2.076567382222911, 1.9243001754627442, 2.7180792946791077, 2.0281340598270634, 1.1933486264546949, 0.42471792849288603, 0.0), # 165 (6.428920683435397, 4.54410526323825, 5.82209677910744, 5.932899337468126, 5.3035433597051425, 2.630509683092322, 2.021416288233143, 2.020197466590449, 2.9100110935408576, 1.0484949446067282, 0.8265637312773799, 0.49585195914137514, 0.0, 7.0763738156542955, 5.454371550555126, 4.1328186563869, 3.145484833820184, 5.820022187081715, 2.8282764532266285, 2.021416288233143, 1.8789354879230868, 2.6517716798525712, 1.9776331124893758, 1.1644193558214881, 0.41310047847620457, 0.0), # 166 (6.248346046114523, 4.410294345434805, 5.667764151355587, 5.771950879349882, 5.1621931258279865, 2.562432334694784, 1.9634138608103373, 1.9682284184242402, 2.835842195988133, 1.0193709990831787, 0.8037806360873045, 0.48233231747378824, 0.0, 6.887185384447996, 5.30565549221167, 4.0189031804365225, 3.058112997249536, 5.671684391976266, 2.755519785793936, 1.9634138608103373, 1.8303088104962744, 2.5810965629139933, 1.9239836264499612, 1.1335528302711175, 0.4009358495849823, 0.0), # 167 (6.059031911370395, 4.270990187122201, 5.50449991514229, 5.60230820555966, 5.012791590203827, 2.490136929448583, 1.902800984996902, 1.9129851869747332, 2.7568809702442847, 0.9887860557234682, 0.7798253500011468, 0.468093800681876, 0.0, 6.6873225235789615, 5.149031807500635, 3.8991267500057343, 2.9663581671704042, 5.513761940488569, 2.6781792617646265, 1.902800984996902, 1.7786692353204163, 2.5063957951019136, 1.867436068519887, 1.100899983028458, 0.3882718351929274, 0.0), # 168 (5.861763403606015, 4.1267185154112305, 5.333058736591924, 5.4247227165306615, 4.856022455309747, 2.413972196347072, 1.8398185458352458, 1.8547371932717271, 2.6735186754361124, 0.9568696904244344, 0.7548009035337614, 0.45319887785722274, 0.0, 6.477694532530785, 4.985187656429449, 3.774004517668807, 2.8706090712733023, 5.347037350872225, 2.596632070580418, 1.8398185458352458, 1.724265854533623, 2.4280112276548733, 1.808240905510221, 1.066611747318385, 0.3751562286737483, 0.0), # 169 (5.657325647224384, 3.978005057412684, 5.154195281828863, 5.23994581269609, 4.692569423622822, 2.334286864383604, 1.7747074283677764, 1.7937538583450197, 2.5861465706904125, 0.9237514790829147, 0.7288103272000027, 0.4377100180914133, 0.0, 6.259210710787055, 4.814810199005545, 3.6440516360000137, 2.7712544372487433, 5.172293141380825, 2.5112554016830275, 1.7747074283677764, 1.6673477602740028, 2.346284711811411, 1.7466486042320304, 1.0308390563657726, 0.36163682340115316, 0.0), # 170 (5.4465037666285, 3.82537554023735, 4.968664216977482, 5.048728894489152, 4.523116197620137, 2.2514296625515327, 1.7077085176369027, 1.7303046032244096, 2.495155915133985, 0.8895609975957474, 0.7019566515147247, 0.4216896904760322, 0.0, 6.032780357831365, 4.638586595236354, 3.509783257573624, 2.6686829927872413, 4.99031183026797, 2.4224264445141737, 1.7077085176369027, 1.6081640446796661, 2.2615580988100685, 1.6829096314963843, 0.9937328433954964, 0.3477614127488501, 0.0), # 171 (5.230082886221365, 3.6693556909960217, 4.777220208162156, 4.851823362343048, 4.348346479778769, 2.1657493198442115, 1.6390626986850327, 1.664658848939696, 2.4009379678936282, 0.8544278218597702, 0.6743429069927823, 0.4052003641026643, 0.0, 5.799312773147303, 4.457204005129307, 3.3717145349639117, 2.56328346557931, 4.8018759357872565, 2.3305223885155746, 1.6390626986850327, 1.5469637998887225, 2.1741732398893845, 1.6172744541143496, 0.9554440416324312, 0.3335777900905475, 0.0), # 172 (5.00884813040598, 3.510471236799489, 4.58061792150726, 4.649980616690982, 4.168943972575801, 2.077594565254994, 1.5690108565545748, 1.5970860165206766, 2.303883988096141, 0.8184815277718206, 0.6460721241490297, 0.3883045080628938, 0.0, 5.5597172562184625, 4.271349588691831, 3.2303606207451483, 2.4554445833154612, 4.607767976192282, 2.235920423128947, 1.5690108565545748, 1.483996118039281, 2.0844719862879004, 1.5499935388969943, 0.916123584301452, 0.31913374879995354, 0.0), # 173 (4.783584623585344, 3.349247904758541, 4.3796120231371685, 4.443952057966156, 3.9855923784883105, 1.987314127777233, 1.4977938762879377, 1.5278555269971503, 2.204385234868321, 0.7818516912287369, 0.6172473334983214, 0.37106459144830567, 0.0, 5.314903106528433, 4.081710505931362, 3.0862366674916064, 2.34555507368621, 4.408770469736642, 2.1389977377960103, 1.4977938762879377, 1.4195100912694523, 1.9927961892441552, 1.4813173526553853, 0.8759224046274336, 0.3044770822507765, 0.0), # 174 (4.555077490162455, 3.18621142198397, 4.174957179176257, 4.2344890866017755, 3.7989753999933793, 1.8952567364042834, 1.425652642927529, 1.457236801398915, 2.102832967336968, 0.7446678881273562, 0.5879715655555117, 0.35354308335048457, 0.0, 5.0657796235608075, 3.8889739168553294, 2.939857827777558, 2.234003664382068, 4.205665934673936, 2.040131521958481, 1.425652642927529, 1.3537548117173452, 1.8994876999966896, 1.411496362200592, 0.8349914358352515, 0.28965558381672457, 0.0), # 175 (4.324111854540319, 3.0218875155865668, 3.9674080557488987, 4.0223431030310435, 3.609776739568087, 1.8017711201294973, 1.3528280415157574, 1.3854992607557703, 1.9996184446288805, 0.7070596943645169, 0.558347850835455, 0.33580245286101496, 0.0, 4.813256106799174, 3.693826981471164, 2.791739254177275, 2.1211790830935504, 3.999236889257761, 1.9396989650580787, 1.3528280415157574, 1.2869793715210696, 1.8048883697840434, 1.3407810343436815, 0.7934816111497798, 0.2747170468715061, 0.0), # 176 (4.0914728411219325, 2.856801912677122, 3.7577193189794698, 3.808265507687162, 3.4186800996895155, 1.7072060079462288, 1.2795609570950313, 1.3129123260975137, 1.8951329258708567, 0.6691566858370562, 0.528479219853006, 0.3179051690714816, 0.0, 4.5582418557271245, 3.496956859786297, 2.6423960992650297, 2.0074700575111684, 3.7902658517417134, 1.838077256536519, 1.2795609570950313, 1.2194328628187348, 1.7093400498447577, 1.269421835895721, 0.751543863795894, 0.25970926478882933, 0.0), # 177 (3.8579455743102966, 2.6914803403664256, 3.5466456349923448, 3.593007701003337, 3.226369182834742, 1.6119101288478317, 1.2060922747077587, 1.239745418453944, 1.7897676701896952, 0.6310884384418126, 0.49846870312301883, 0.299913701073469, 0.0, 4.301646169828252, 3.299050711808158, 2.4923435156150937, 1.8932653153254375, 3.5795353403793904, 1.7356435858355217, 1.2060922747077587, 1.1513643777484512, 1.613184591417371, 1.1976692336677792, 0.7093291269984691, 0.24468003094240237, 0.0), # 178 (0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0), # 179 ) passenger_allighting_rate = ( (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 0 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 1 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 2 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 3 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 4 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 5 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 6 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 7 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 8 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 9 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 10 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 11 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 12 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 13 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 14 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 15 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 16 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 17 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 18 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 19 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 20 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 21 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 22 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 23 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 24 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 25 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 26 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 27 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 28 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 29 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 30 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 31 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 32 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 33 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 34 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 35 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 36 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 37 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 38 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 39 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 40 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 41 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 42 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 43 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 44 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 45 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 46 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 47 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 48 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 49 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 50 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 51 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 52 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 53 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 54 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 55 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 56 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 57 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 58 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 59 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 60 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 61 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 62 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 63 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 64 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 65 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 66 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 67 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 68 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 69 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 70 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 71 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 72 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 73 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 74 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 75 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 76 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 77 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 78 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 79 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 80 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 81 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 82 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 83 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 84 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 85 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 86 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 87 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 88 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 89 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 90 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 91 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 92 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 93 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 94 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 95 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 96 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 97 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 98 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 99 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 100 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 101 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 102 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 103 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 104 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 105 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 106 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 107 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 108 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 109 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 110 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 111 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 112 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 113 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 114 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 115 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 116 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 117 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 118 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 119 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 120 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 121 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 122 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 123 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 124 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 125 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 126 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 127 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 128 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 129 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 130 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 131 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 132 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 133 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 134 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 135 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 136 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 137 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 138 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 139 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 140 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 141 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 142 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 143 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 144 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 145 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 146 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 147 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 148 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 149 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 150 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 151 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 152 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 153 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 154 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 155 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 156 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 157 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 158 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 159 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 160 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 161 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 162 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 163 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 164 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 165 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 166 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 167 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 168 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 169 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 170 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 171 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 172 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 173 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 174 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 175 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 176 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 177 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 178 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 179 ) """ parameters for reproducibiliy. More information: https://numpy.org/doc/stable/reference/random/parallel.html """ #initial entropy entropy = 8991598675325360468762009371570610170 #index for seed sequence child child_seed_index = ( 1, # 0 67, # 1 )
""" PASSENGERS """ num_passengers = 19174 passenger_arriving = ((8, 6, 8, 5, 3, 3, 3, 1, 2, 1, 1, 0, 0, 5, 6, 2, 2, 3, 2, 3, 0, 2, 1, 0, 0, 0), (5, 6, 5, 7, 4, 4, 1, 2, 5, 3, 2, 0, 0, 6, 5, 5, 4, 3, 4, 2, 3, 1, 2, 2, 0, 0), (12, 7, 6, 6, 4, 0, 0, 3, 3, 1, 0, 0, 0, 8, 5, 6, 1, 8, 5, 4, 1, 0, 0, 0, 1, 0), (7, 8, 5, 6, 3, 3, 6, 2, 1, 0, 0, 2, 0, 7, 5, 4, 4, 2, 4, 3, 2, 4, 3, 5, 1, 0), (9, 7, 4, 3, 7, 2, 5, 3, 4, 1, 2, 1, 0, 9, 7, 5, 7, 6, 5, 3, 0, 3, 4, 1, 0, 0), (7, 6, 6, 4, 10, 0, 2, 3, 3, 3, 0, 0, 0, 10, 6, 4, 5, 2, 3, 2, 1, 6, 2, 2, 1, 0), (4, 9, 6, 7, 7, 3, 2, 2, 3, 3, 1, 1, 0, 4, 10, 6, 5, 5, 4, 2, 2, 1, 0, 3, 2, 0), (10, 7, 12, 6, 5, 3, 3, 3, 2, 2, 0, 0, 0, 10, 4, 8, 3, 7, 1, 5, 2, 2, 3, 7, 2, 0), (13, 9, 10, 6, 4, 3, 7, 3, 6, 0, 3, 1, 0, 16, 6, 3, 2, 7, 3, 8, 1, 0, 3, 1, 2, 0), (5, 9, 6, 7, 3, 3, 3, 3, 5, 1, 0, 0, 0, 8, 2, 7, 7, 5, 1, 2, 0, 3, 2, 3, 1, 0), (8, 13, 4, 7, 4, 3, 3, 4, 3, 0, 1, 1, 0, 6, 6, 7, 4, 3, 6, 3, 1, 5, 2, 1, 2, 0), (3, 7, 10, 6, 3, 3, 3, 2, 4, 0, 0, 0, 0, 10, 3, 6, 8, 6, 6, 7, 0, 4, 0, 0, 0, 0), (5, 10, 6, 7, 5, 0, 3, 2, 4, 3, 0, 0, 0, 7, 6, 8, 6, 8, 3, 5, 2, 3, 1, 0, 1, 0), (12, 11, 10, 7, 7, 2, 4, 2, 2, 1, 3, 0, 0, 11, 7, 7, 5, 9, 7, 3, 1, 5, 4, 2, 0, 0), (14, 9, 5, 7, 6, 4, 3, 3, 2, 2, 2, 0, 0, 11, 5, 4, 3, 4, 5, 2, 3, 3, 6, 3, 1, 0), (8, 9, 7, 8, 8, 3, 5, 3, 2, 2, 2, 2, 0, 8, 6, 8, 2, 8, 6, 7, 3, 3, 4, 0, 1, 0), (7, 12, 3, 6, 10, 2, 1, 1, 3, 1, 3, 0, 0, 5, 7, 11, 4, 12, 2, 3, 3, 5, 1, 1, 0, 0), (10, 7, 6, 6, 6, 2, 5, 6, 3, 0, 0, 0, 0, 11, 9, 9, 5, 9, 8, 2, 3, 1, 3, 0, 1, 0), (10, 9, 6, 8, 10, 3, 1, 3, 0, 1, 3, 0, 0, 15, 7, 4, 2, 8, 3, 5, 1, 2, 3, 2, 1, 0), (13, 3, 8, 12, 8, 2, 3, 3, 3, 4, 1, 0, 0, 14, 5, 9, 2, 9, 6, 4, 2, 2, 2, 2, 0, 0), (11, 11, 11, 12, 6, 1, 3, 2, 6, 1, 1, 1, 0, 13, 7, 8, 6, 11, 5, 6, 2, 3, 4, 1, 3, 0), (6, 16, 10, 16, 7, 3, 8, 6, 2, 0, 0, 0, 0, 7, 5, 8, 8, 8, 1, 2, 0, 2, 5, 1, 0, 0), (5, 8, 5, 13, 14, 3, 6, 3, 3, 0, 1, 3, 0, 15, 9, 5, 4, 6, 4, 7, 3, 3, 3, 4, 1, 0), (10, 9, 9, 12, 10, 4, 5, 5, 2, 2, 3, 0, 0, 10, 10, 5, 3, 7, 6, 5, 4, 5, 2, 3, 1, 0), (7, 8, 9, 10, 3, 6, 7, 1, 4, 4, 0, 0, 0, 10, 11, 7, 6, 8, 5, 2, 2, 4, 4, 2, 0, 0), (8, 4, 11, 13, 9, 2, 4, 4, 6, 5, 0, 0, 0, 11, 17, 8, 8, 4, 5, 5, 5, 2, 1, 2, 2, 0), (10, 13, 12, 6, 10, 3, 3, 6, 6, 2, 4, 2, 0, 12, 17, 9, 4, 11, 6, 3, 7, 0, 5, 0, 0, 0), (9, 6, 17, 8, 3, 6, 3, 2, 3, 3, 3, 1, 0, 15, 10, 7, 5, 7, 9, 5, 4, 3, 4, 3, 1, 0), (9, 7, 6, 8, 5, 4, 3, 6, 6, 2, 3, 1, 0, 6, 10, 8, 6, 11, 8, 7, 3, 1, 2, 2, 1, 0), (10, 11, 10, 12, 6, 2, 8, 5, 6, 2, 1, 0, 0, 6, 6, 8, 6, 9, 10, 11, 3, 6, 2, 5, 1, 0), (12, 10, 10, 5, 8, 5, 5, 6, 1, 3, 5, 0, 0, 13, 6, 9, 7, 9, 2, 6, 3, 5, 5, 2, 0, 0), (10, 8, 6, 9, 12, 5, 10, 7, 3, 5, 1, 0, 0, 4, 5, 7, 11, 8, 4, 3, 1, 2, 6, 1, 2, 0), (18, 10, 8, 6, 4, 4, 3, 6, 5, 1, 0, 0, 0, 9, 8, 9, 6, 17, 5, 6, 2, 8, 3, 0, 1, 0), (5, 6, 9, 12, 9, 3, 8, 4, 2, 1, 1, 1, 0, 5, 14, 8, 7, 9, 7, 6, 5, 3, 3, 0, 0, 0), (12, 7, 7, 15, 6, 5, 4, 4, 3, 5, 2, 1, 0, 11, 9, 5, 7, 4, 7, 5, 4, 3, 2, 2, 1, 0), (13, 11, 11, 11, 10, 7, 6, 1, 3, 5, 0, 1, 0, 9, 6, 8, 6, 8, 5, 7, 1, 2, 6, 1, 1, 0), (11, 10, 8, 8, 7, 8, 5, 2, 5, 1, 0, 2, 0, 10, 10, 2, 7, 7, 4, 2, 5, 5, 6, 2, 3, 0), (12, 12, 9, 7, 8, 5, 5, 1, 4, 2, 4, 2, 0, 11, 7, 7, 6, 9, 3, 2, 2, 5, 2, 1, 0, 0), (14, 9, 8, 7, 8, 1, 7, 8, 0, 4, 1, 1, 0, 12, 9, 0, 6, 9, 8, 3, 1, 1, 2, 0, 0, 0), (8, 9, 7, 9, 4, 4, 2, 3, 2, 2, 0, 1, 0, 9, 5, 9, 8, 3, 4, 6, 3, 4, 2, 3, 0, 0), (9, 12, 4, 14, 7, 5, 2, 2, 5, 2, 3, 2, 0, 12, 5, 7, 10, 10, 4, 5, 5, 3, 3, 2, 0, 0), (16, 13, 6, 12, 9, 4, 4, 3, 1, 2, 1, 0, 0, 14, 9, 11, 7, 7, 6, 1, 4, 2, 2, 2, 3, 0), (15, 10, 10, 7, 12, 3, 7, 6, 4, 0, 3, 2, 0, 10, 10, 9, 9, 4, 5, 2, 4, 5, 4, 0, 0, 0), (11, 9, 5, 11, 9, 4, 8, 4, 5, 2, 2, 2, 0, 7, 3, 4, 3, 7, 7, 3, 1, 4, 2, 1, 0, 0), (6, 4, 8, 7, 7, 4, 2, 1, 2, 3, 0, 2, 0, 7, 10, 5, 7, 7, 8, 2, 4, 6, 0, 2, 1, 0), (16, 14, 6, 14, 14, 2, 1, 2, 7, 3, 2, 0, 0, 12, 8, 8, 8, 8, 3, 6, 2, 3, 4, 2, 0, 0), (13, 10, 5, 3, 9, 1, 3, 5, 6, 2, 1, 1, 0, 10, 8, 6, 3, 13, 4, 4, 1, 6, 3, 0, 1, 0), (8, 10, 10, 14, 10, 3, 5, 6, 2, 1, 0, 1, 0, 9, 6, 7, 9, 10, 4, 3, 0, 6, 4, 0, 0, 0), (9, 10, 5, 10, 6, 6, 8, 4, 4, 0, 2, 1, 0, 11, 7, 5, 7, 12, 2, 3, 1, 3, 5, 2, 0, 0), (1, 8, 14, 7, 8, 1, 6, 2, 2, 1, 2, 1, 0, 10, 5, 6, 6, 11, 5, 2, 3, 1, 2, 1, 0, 0), (8, 11, 9, 13, 6, 4, 5, 4, 1, 3, 2, 0, 0, 5, 13, 1, 5, 8, 2, 4, 1, 4, 2, 1, 0, 0), (8, 10, 8, 8, 6, 4, 7, 1, 2, 2, 0, 2, 0, 10, 5, 3, 4, 16, 6, 2, 1, 6, 1, 2, 2, 0), (15, 3, 9, 6, 9, 2, 7, 5, 5, 0, 2, 1, 0, 8, 9, 5, 5, 9, 8, 5, 3, 5, 6, 3, 0, 0), (8, 5, 7, 10, 10, 2, 2, 6, 6, 3, 0, 1, 0, 11, 8, 6, 6, 6, 7, 4, 4, 5, 4, 0, 2, 0), (9, 10, 8, 9, 11, 6, 3, 4, 4, 1, 0, 1, 0, 12, 7, 7, 5, 5, 4, 4, 0, 1, 2, 1, 0, 0), (11, 8, 9, 11, 9, 5, 2, 5, 7, 1, 3, 2, 0, 18, 10, 10, 6, 7, 13, 1, 6, 5, 0, 1, 0, 0), (6, 11, 3, 6, 7, 4, 0, 5, 1, 0, 0, 1, 0, 11, 6, 4, 8, 5, 6, 3, 4, 3, 3, 0, 0, 0), (14, 13, 13, 9, 9, 6, 5, 3, 7, 1, 0, 1, 0, 10, 10, 8, 4, 7, 6, 5, 1, 2, 3, 1, 0, 0), (9, 13, 6, 10, 13, 1, 3, 2, 6, 5, 1, 1, 0, 10, 9, 9, 4, 7, 11, 1, 4, 4, 6, 0, 0, 0), (9, 5, 7, 10, 7, 2, 1, 4, 7, 1, 0, 0, 0, 8, 6, 1, 7, 9, 4, 4, 2, 3, 3, 1, 0, 0), (9, 14, 10, 13, 13, 5, 4, 1, 2, 2, 3, 0, 0, 9, 4, 10, 5, 9, 2, 6, 3, 2, 2, 3, 1, 0), (9, 12, 2, 8, 9, 4, 2, 2, 5, 3, 1, 1, 0, 13, 6, 6, 5, 9, 4, 2, 2, 6, 4, 0, 0, 0), (9, 6, 12, 12, 3, 3, 1, 4, 4, 2, 1, 2, 0, 13, 10, 8, 6, 8, 9, 4, 2, 4, 6, 4, 1, 0), (15, 8, 9, 11, 8, 1, 6, 3, 3, 4, 1, 2, 0, 17, 7, 9, 2, 10, 0, 2, 1, 3, 5, 3, 4, 0), (11, 7, 7, 6, 9, 5, 3, 6, 4, 1, 3, 1, 0, 11, 8, 7, 6, 9, 6, 4, 4, 5, 3, 3, 1, 0), (9, 8, 3, 4, 5, 2, 5, 2, 3, 3, 0, 2, 0, 7, 6, 8, 3, 6, 4, 4, 2, 5, 1, 1, 0, 0), (6, 5, 12, 7, 11, 3, 1, 1, 7, 0, 2, 1, 0, 14, 8, 7, 3, 9, 7, 6, 5, 1, 3, 3, 0, 0), (11, 5, 13, 6, 6, 4, 1, 2, 1, 2, 1, 0, 0, 11, 9, 4, 9, 5, 5, 4, 3, 4, 5, 1, 1, 0), (9, 8, 4, 12, 5, 1, 5, 4, 7, 2, 1, 0, 0, 12, 5, 5, 8, 6, 8, 4, 1, 4, 2, 1, 0, 0), (10, 11, 8, 8, 6, 3, 5, 1, 1, 4, 0, 0, 0, 10, 5, 6, 2, 14, 6, 3, 7, 5, 0, 1, 1, 0), (14, 8, 5, 4, 7, 5, 3, 2, 4, 1, 1, 2, 0, 8, 13, 8, 7, 9, 4, 4, 1, 4, 3, 3, 2, 0), (8, 9, 8, 9, 3, 3, 6, 3, 2, 3, 5, 0, 0, 9, 4, 2, 3, 9, 2, 3, 1, 3, 3, 2, 2, 0), (11, 8, 6, 5, 7, 4, 3, 1, 2, 1, 3, 1, 0, 15, 10, 3, 7, 9, 4, 3, 0, 5, 7, 3, 1, 0), (7, 13, 5, 8, 5, 3, 2, 5, 5, 5, 0, 2, 0, 10, 6, 5, 10, 11, 4, 3, 0, 2, 1, 2, 0, 0), (7, 9, 9, 7, 12, 5, 3, 3, 5, 1, 2, 1, 0, 8, 7, 6, 10, 6, 2, 2, 2, 7, 1, 1, 1, 0), (11, 7, 8, 6, 4, 2, 2, 3, 3, 2, 0, 2, 0, 7, 10, 7, 3, 9, 4, 10, 0, 3, 6, 6, 0, 0), (9, 7, 8, 20, 10, 4, 3, 3, 4, 4, 0, 1, 0, 11, 4, 7, 7, 10, 3, 3, 6, 0, 3, 1, 0, 0), (10, 8, 1, 6, 6, 7, 1, 2, 3, 0, 0, 0, 0, 8, 10, 4, 7, 12, 2, 7, 2, 1, 0, 3, 3, 0), (7, 11, 10, 8, 8, 3, 2, 1, 5, 2, 2, 0, 0, 12, 7, 6, 4, 10, 2, 0, 4, 4, 6, 1, 1, 0), (9, 8, 7, 15, 9, 7, 2, 3, 0, 0, 0, 1, 0, 8, 7, 11, 2, 8, 4, 9, 1, 1, 2, 4, 2, 0), (4, 6, 8, 5, 8, 2, 3, 3, 4, 1, 3, 3, 0, 2, 10, 9, 3, 7, 7, 4, 0, 3, 0, 2, 1, 0), (11, 7, 6, 11, 7, 4, 2, 3, 1, 1, 0, 1, 0, 9, 6, 3, 7, 10, 3, 5, 0, 6, 2, 1, 0, 0), (9, 4, 5, 12, 7, 6, 5, 1, 4, 2, 2, 1, 0, 10, 11, 8, 6, 8, 5, 4, 1, 4, 3, 1, 2, 0), (16, 9, 13, 9, 8, 2, 3, 3, 1, 3, 1, 0, 0, 9, 5, 4, 7, 5, 0, 2, 2, 0, 0, 2, 0, 0), (9, 10, 12, 5, 10, 3, 0, 3, 2, 3, 1, 2, 0, 12, 6, 2, 6, 11, 5, 4, 2, 2, 1, 2, 0, 0), (7, 5, 10, 8, 6, 3, 4, 0, 3, 3, 0, 0, 0, 14, 7, 6, 4, 4, 4, 6, 1, 4, 3, 2, 0, 0), (7, 9, 6, 16, 3, 2, 1, 3, 3, 2, 0, 1, 0, 3, 9, 9, 7, 9, 4, 3, 3, 4, 2, 0, 0, 0), (11, 13, 12, 12, 6, 3, 2, 5, 5, 1, 1, 1, 0, 10, 6, 4, 4, 5, 3, 1, 2, 4, 5, 2, 2, 0), (9, 12, 9, 12, 7, 3, 2, 1, 2, 2, 1, 0, 0, 8, 12, 6, 5, 3, 3, 1, 0, 1, 2, 1, 0, 0), (15, 9, 4, 7, 8, 4, 2, 0, 5, 1, 2, 1, 0, 12, 5, 9, 6, 8, 3, 7, 5, 3, 1, 3, 2, 0), (11, 7, 12, 12, 5, 5, 5, 5, 3, 0, 2, 0, 0, 13, 9, 9, 5, 10, 9, 4, 2, 3, 5, 1, 1, 0), (11, 9, 8, 10, 7, 1, 2, 3, 6, 3, 0, 1, 0, 11, 7, 7, 6, 7, 4, 4, 3, 5, 3, 2, 0, 0), (4, 7, 11, 9, 7, 5, 4, 2, 1, 3, 1, 1, 0, 12, 4, 5, 5, 11, 3, 5, 5, 3, 3, 3, 0, 0), (9, 6, 8, 7, 5, 6, 6, 5, 6, 1, 0, 2, 0, 7, 7, 4, 5, 7, 2, 3, 6, 2, 3, 2, 0, 0), (7, 6, 11, 11, 7, 6, 5, 2, 6, 1, 2, 0, 0, 10, 9, 5, 5, 3, 1, 4, 1, 4, 2, 1, 0, 0), (7, 6, 6, 10, 8, 4, 5, 3, 1, 2, 1, 1, 0, 8, 5, 10, 3, 11, 7, 6, 0, 2, 3, 2, 1, 0), (13, 7, 12, 6, 5, 4, 5, 1, 2, 3, 0, 0, 0, 7, 7, 6, 2, 7, 3, 4, 3, 2, 2, 2, 2, 0), (8, 8, 7, 11, 2, 4, 3, 2, 6, 2, 4, 1, 0, 11, 7, 6, 4, 12, 6, 4, 1, 5, 1, 1, 4, 0), (11, 5, 8, 4, 6, 6, 4, 1, 1, 0, 2, 1, 0, 11, 10, 7, 7, 12, 5, 3, 0, 2, 5, 1, 0, 0), (8, 7, 11, 5, 6, 3, 4, 5, 4, 5, 1, 1, 0, 12, 8, 10, 10, 5, 2, 4, 2, 6, 1, 5, 0, 0), (5, 8, 11, 9, 10, 3, 2, 5, 2, 1, 2, 0, 0, 14, 6, 4, 6, 5, 5, 5, 2, 6, 1, 1, 3, 0), (8, 7, 7, 10, 9, 2, 5, 1, 5, 2, 2, 0, 0, 11, 6, 8, 4, 6, 6, 2, 2, 1, 5, 0, 0, 0), (10, 6, 5, 6, 7, 2, 1, 3, 1, 1, 1, 0, 0, 17, 6, 4, 5, 8, 2, 5, 3, 5, 2, 2, 0, 0), (12, 8, 8, 9, 7, 3, 2, 0, 6, 1, 0, 0, 0, 8, 11, 3, 0, 9, 4, 1, 5, 4, 1, 2, 0, 0), (6, 10, 8, 4, 4, 3, 4, 2, 3, 0, 2, 1, 0, 4, 6, 5, 5, 8, 4, 5, 3, 4, 0, 1, 0, 0), (14, 6, 4, 8, 6, 2, 5, 2, 6, 1, 0, 0, 0, 11, 5, 8, 1, 8, 2, 1, 2, 5, 6, 0, 2, 0), (7, 11, 6, 10, 6, 6, 5, 1, 1, 2, 2, 0, 0, 13, 10, 6, 4, 7, 2, 5, 1, 3, 3, 2, 2, 0), (9, 8, 9, 10, 4, 5, 4, 1, 2, 1, 0, 0, 0, 8, 9, 6, 3, 8, 2, 3, 3, 2, 3, 3, 0, 0), (9, 10, 9, 10, 6, 5, 4, 3, 3, 4, 0, 0, 0, 10, 2, 5, 2, 5, 3, 5, 3, 3, 3, 0, 0, 0), (9, 8, 13, 11, 9, 2, 1, 0, 2, 0, 1, 0, 0, 8, 3, 4, 6, 6, 4, 7, 1, 5, 1, 3, 0, 0), (5, 10, 5, 8, 6, 2, 3, 3, 4, 1, 2, 0, 0, 8, 5, 6, 5, 5, 6, 3, 3, 4, 5, 5, 0, 0), (10, 7, 5, 8, 3, 1, 5, 2, 2, 1, 2, 1, 0, 8, 12, 4, 2, 9, 4, 0, 1, 4, 3, 4, 0, 0), (10, 7, 5, 8, 8, 1, 5, 3, 2, 3, 0, 0, 0, 12, 7, 7, 10, 8, 5, 2, 3, 8, 1, 1, 1, 0), (10, 5, 5, 8, 6, 3, 3, 3, 5, 0, 0, 0, 0, 6, 11, 8, 5, 13, 5, 2, 3, 3, 4, 4, 1, 0), (12, 7, 7, 8, 8, 3, 5, 3, 8, 1, 2, 1, 0, 10, 13, 6, 0, 5, 2, 4, 3, 3, 4, 4, 1, 0), (8, 7, 9, 10, 6, 4, 3, 4, 4, 2, 0, 1, 0, 11, 6, 6, 14, 7, 4, 4, 1, 7, 2, 3, 0, 0), (13, 4, 11, 11, 8, 4, 1, 5, 3, 2, 1, 0, 0, 7, 10, 8, 3, 9, 2, 5, 0, 2, 8, 1, 0, 0), (17, 5, 5, 15, 10, 1, 4, 1, 2, 1, 0, 0, 0, 8, 10, 8, 2, 8, 6, 3, 2, 2, 5, 0, 1, 0), (8, 8, 9, 8, 7, 6, 3, 1, 1, 0, 2, 1, 0, 9, 11, 10, 3, 7, 3, 6, 4, 4, 5, 0, 0, 0), (16, 8, 5, 8, 2, 4, 1, 1, 1, 3, 0, 1, 0, 13, 11, 10, 2, 2, 3, 2, 0, 2, 1, 1, 1, 0), (8, 9, 3, 5, 10, 2, 3, 2, 6, 0, 2, 1, 0, 11, 4, 3, 3, 7, 7, 7, 1, 3, 2, 3, 0, 0), (12, 9, 7, 8, 7, 1, 5, 1, 3, 0, 1, 0, 0, 11, 5, 2, 4, 11, 5, 2, 1, 6, 3, 3, 0, 0), (7, 5, 3, 13, 6, 1, 5, 0, 2, 1, 3, 0, 0, 3, 7, 6, 5, 8, 5, 1, 2, 2, 6, 4, 1, 0), (6, 10, 8, 14, 6, 1, 4, 5, 1, 1, 1, 2, 0, 4, 5, 5, 5, 10, 2, 1, 6, 4, 0, 0, 0, 0), (11, 4, 7, 6, 9, 6, 2, 5, 4, 1, 1, 2, 0, 12, 10, 7, 2, 4, 5, 3, 2, 3, 2, 3, 0, 0), (10, 2, 7, 5, 14, 5, 2, 3, 4, 2, 2, 1, 0, 8, 11, 7, 3, 12, 5, 2, 3, 4, 3, 3, 1, 0), (4, 6, 8, 9, 9, 3, 1, 1, 6, 2, 1, 1, 0, 6, 10, 7, 3, 12, 0, 1, 6, 3, 3, 3, 1, 0), (8, 3, 6, 6, 7, 4, 2, 3, 3, 3, 0, 0, 0, 4, 6, 8, 6, 6, 3, 2, 2, 3, 5, 2, 0, 0), (3, 2, 10, 11, 6, 4, 2, 0, 2, 1, 1, 0, 0, 8, 10, 4, 3, 10, 1, 3, 2, 6, 1, 3, 0, 0), (5, 5, 8, 4, 4, 4, 8, 2, 3, 0, 1, 0, 0, 6, 7, 5, 5, 8, 5, 1, 1, 2, 6, 0, 0, 0), (14, 7, 11, 4, 6, 1, 0, 1, 2, 1, 0, 1, 0, 5, 8, 4, 5, 7, 4, 4, 0, 6, 1, 2, 0, 0), (10, 3, 8, 10, 7, 5, 4, 0, 7, 4, 0, 0, 0, 14, 9, 8, 4, 6, 4, 5, 2, 4, 2, 1, 0, 0), (8, 3, 5, 7, 2, 1, 3, 2, 4, 0, 2, 1, 0, 12, 9, 3, 1, 6, 2, 1, 0, 2, 3, 0, 0, 0), (3, 6, 7, 11, 4, 2, 4, 3, 4, 2, 1, 2, 0, 9, 4, 7, 5, 6, 4, 5, 2, 4, 4, 1, 0, 0), (5, 3, 8, 9, 10, 2, 1, 3, 4, 5, 2, 0, 0, 11, 9, 5, 4, 7, 5, 5, 3, 4, 4, 1, 1, 0), (9, 4, 9, 7, 8, 4, 2, 1, 1, 2, 3, 1, 0, 13, 11, 6, 5, 7, 2, 2, 0, 4, 3, 3, 1, 0), (11, 6, 7, 3, 9, 2, 3, 0, 4, 0, 0, 1, 0, 7, 11, 6, 7, 15, 5, 4, 5, 5, 1, 2, 4, 0), (19, 7, 8, 8, 2, 3, 3, 3, 5, 0, 0, 1, 0, 11, 12, 4, 3, 8, 3, 4, 0, 4, 4, 2, 1, 0), (10, 9, 5, 4, 3, 1, 3, 5, 2, 0, 1, 1, 0, 11, 7, 5, 3, 5, 6, 1, 3, 4, 2, 0, 0, 0), (9, 6, 8, 9, 6, 2, 3, 7, 3, 0, 1, 0, 0, 12, 9, 5, 3, 11, 6, 7, 3, 3, 3, 0, 1, 0), (5, 6, 4, 8, 7, 1, 2, 1, 5, 1, 2, 0, 0, 8, 5, 4, 4, 5, 3, 2, 2, 6, 1, 2, 0, 0), (13, 4, 4, 5, 3, 3, 1, 4, 3, 1, 0, 3, 0, 10, 7, 11, 2, 6, 6, 3, 1, 2, 5, 2, 1, 0), (6, 9, 11, 10, 11, 4, 4, 3, 4, 3, 0, 1, 0, 10, 7, 8, 4, 9, 3, 1, 2, 4, 2, 1, 0, 0), (14, 2, 5, 3, 7, 1, 2, 1, 1, 1, 1, 0, 0, 17, 7, 7, 4, 5, 4, 1, 2, 1, 3, 3, 1, 0), (7, 8, 7, 7, 6, 3, 2, 3, 4, 1, 0, 1, 0, 10, 2, 7, 3, 7, 2, 1, 4, 5, 3, 1, 1, 0), (6, 5, 6, 5, 7, 8, 1, 2, 5, 0, 2, 0, 0, 17, 12, 7, 7, 10, 4, 3, 0, 3, 4, 0, 0, 0), (8, 5, 9, 6, 8, 0, 4, 4, 5, 0, 2, 0, 0, 14, 5, 5, 5, 9, 2, 3, 3, 3, 1, 1, 0, 0), (7, 7, 1, 8, 7, 5, 0, 5, 1, 0, 1, 1, 0, 12, 7, 7, 2, 11, 3, 1, 4, 5, 4, 2, 1, 0), (7, 6, 7, 8, 8, 4, 1, 1, 1, 0, 2, 0, 0, 7, 7, 3, 2, 11, 4, 2, 1, 1, 4, 1, 0, 0), (15, 7, 5, 7, 8, 1, 5, 3, 5, 3, 1, 2, 0, 7, 8, 6, 2, 4, 3, 2, 1, 3, 2, 2, 1, 0), (5, 6, 6, 8, 5, 4, 4, 2, 4, 1, 1, 0, 0, 13, 7, 4, 1, 7, 2, 3, 2, 0, 5, 0, 0, 0), (8, 11, 9, 10, 8, 0, 2, 1, 5, 1, 0, 1, 0, 5, 5, 4, 5, 5, 4, 4, 1, 1, 1, 4, 2, 0), (8, 3, 4, 4, 9, 3, 1, 2, 4, 2, 0, 0, 0, 7, 5, 9, 5, 10, 5, 3, 2, 6, 2, 3, 0, 0), (8, 3, 8, 9, 7, 3, 2, 3, 5, 1, 1, 0, 0, 9, 8, 4, 4, 5, 3, 1, 3, 1, 2, 1, 0, 0), (2, 10, 7, 14, 4, 2, 4, 1, 3, 1, 0, 0, 0, 5, 5, 6, 4, 5, 3, 2, 4, 4, 3, 1, 1, 0), (11, 4, 7, 12, 6, 5, 3, 2, 5, 2, 3, 0, 0, 5, 7, 7, 0, 4, 3, 0, 3, 3, 0, 3, 0, 0), (9, 3, 9, 11, 1, 0, 1, 3, 1, 2, 0, 0, 0, 10, 9, 1, 6, 6, 3, 0, 2, 2, 2, 0, 1, 0), (5, 3, 13, 6, 11, 2, 4, 1, 4, 1, 0, 0, 0, 6, 12, 5, 11, 12, 5, 3, 1, 6, 1, 2, 0, 0), (4, 2, 4, 4, 4, 3, 3, 3, 1, 2, 0, 0, 0, 9, 8, 7, 2, 4, 1, 2, 1, 1, 2, 0, 0, 0), (9, 4, 8, 10, 10, 2, 3, 1, 3, 2, 2, 0, 0, 6, 2, 3, 3, 7, 3, 3, 3, 2, 3, 0, 0, 0), (9, 6, 6, 8, 6, 2, 1, 0, 6, 1, 0, 2, 0, 2, 6, 5, 2, 6, 3, 2, 1, 2, 2, 1, 1, 0), (8, 7, 8, 9, 9, 5, 1, 3, 2, 2, 0, 1, 0, 9, 6, 5, 1, 8, 7, 2, 4, 1, 2, 0, 1, 0), (10, 5, 5, 9, 7, 3, 1, 2, 2, 0, 0, 0, 0, 7, 5, 6, 2, 5, 3, 2, 3, 3, 3, 2, 1, 0), (12, 3, 6, 2, 7, 4, 5, 0, 3, 0, 2, 0, 0, 5, 5, 6, 3, 10, 5, 2, 3, 2, 4, 0, 0, 0), (5, 5, 5, 10, 10, 5, 3, 1, 3, 0, 3, 1, 0, 6, 5, 7, 4, 4, 7, 2, 1, 5, 2, 1, 2, 0), (10, 4, 5, 4, 3, 1, 0, 1, 1, 3, 1, 1, 0, 5, 2, 4, 3, 7, 3, 3, 1, 4, 0, 1, 0, 0), (11, 9, 3, 8, 1, 2, 0, 1, 1, 1, 1, 2, 0, 6, 7, 3, 2, 4, 1, 0, 2, 2, 2, 0, 1, 0), (1, 5, 5, 3, 5, 1, 1, 3, 5, 0, 2, 0, 0, 9, 6, 4, 2, 4, 4, 1, 0, 6, 1, 2, 1, 0), (5, 3, 5, 3, 5, 3, 4, 4, 2, 0, 3, 0, 0, 8, 5, 4, 3, 3, 4, 3, 5, 1, 1, 3, 0, 0), (5, 5, 5, 5, 13, 3, 5, 2, 2, 1, 0, 1, 0, 5, 5, 6, 7, 5, 3, 1, 2, 3, 0, 3, 0, 0), (4, 3, 8, 10, 4, 3, 1, 0, 3, 0, 0, 2, 0, 6, 4, 9, 1, 3, 4, 3, 1, 4, 1, 4, 0, 0), (2, 1, 4, 7, 5, 4, 1, 1, 1, 1, 0, 1, 0, 3, 2, 1, 2, 5, 3, 2, 2, 0, 2, 0, 0, 0), (7, 5, 3, 6, 3, 2, 0, 0, 2, 1, 1, 0, 0, 8, 7, 4, 1, 5, 0, 1, 0, 3, 2, 0, 0, 0), (5, 2, 7, 6, 7, 2, 1, 1, 4, 2, 1, 0, 0, 5, 1, 1, 2, 8, 2, 1, 2, 2, 1, 0, 0, 0), (5, 5, 8, 0, 0, 3, 0, 4, 1, 3, 2, 1, 0, 5, 5, 3, 5, 6, 2, 0, 2, 3, 1, 1, 0, 0), (4, 2, 5, 2, 4, 0, 0, 5, 2, 0, 1, 0, 0, 4, 9, 7, 1, 2, 1, 2, 2, 3, 1, 0, 0, 0), (5, 2, 0, 1, 5, 4, 3, 0, 3, 0, 0, 2, 0, 5, 2, 2, 2, 5, 2, 2, 0, 0, 2, 0, 0, 0), (3, 4, 7, 2, 0, 0, 7, 0, 4, 1, 0, 0, 0, 2, 3, 3, 2, 4, 2, 1, 2, 3, 0, 2, 0, 0), (2, 2, 5, 2, 2, 3, 1, 2, 3, 0, 1, 0, 0, 4, 0, 4, 3, 4, 2, 1, 3, 1, 3, 0, 1, 0), (0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0)) station_arriving_intensity = ((5.020865578371768, 5.525288559693166, 5.211283229612507, 6.214667773863432, 5.554685607609612, 3.1386549320373387, 4.146035615373915, 4.653176172979423, 6.090099062168007, 3.9580150155223697, 4.205265163885603, 4.897915078306173, 5.083880212578363), (5.354327152019974, 5.890060694144759, 5.555346591330152, 6.625144253276616, 5.922490337474237, 3.3459835840425556, 4.419468941263694, 4.959513722905708, 6.492245326332909, 4.21898069227715, 4.483096135956131, 5.221216660814354, 5.419791647439855), (5.686723008979731, 6.253385170890979, 5.8980422855474135, 7.033987704664794, 6.288962973749744, 3.5524851145124448, 4.691818507960704, 5.264625247904419, 6.892786806877549, 4.478913775020546, 4.759823148776313, 5.543232652053055, 5.75436482820969), (6.016757793146562, 6.613820501936447, 6.238010869319854, 7.439576407532074, 6.652661676001902, 3.757340622585113, 4.962003641647955, 5.567301157494507, 7.290135160921093, 4.736782698426181, 5.0343484118273825, 5.862685684930461, 6.086272806254225), (6.343136148415981, 6.9699251992857745, 6.573892899703036, 7.840288641382569, 7.012144603796492, 3.9597312073986677, 5.2289436685084585, 5.866331861194915, 7.682702045582707, 4.991555897167679, 5.305574134590575, 6.178298392354764, 6.414188632939817), (6.66456271868351, 7.320257774943588, 6.9043289337525175, 8.234502685720393, 7.36596991669928, 4.158837968091214, 5.491557914725224, 6.160507768524592, 8.068899117981559, 5.242201805918663, 5.572402526547132, 6.488793407234148, 6.736785359632827), (6.979742147844666, 7.663376740914501, 7.227959528523866, 8.620596820049652, 7.712695774276043, 4.353842003800864, 5.7487657064812625, 6.4486192890024885, 8.447138035236815, 5.487688859352758, 5.833735797178282, 6.792893362476808, 7.052736037699606), (7.2873790797949685, 7.997840609203132, 7.543425241072635, 8.996949323874462, 8.050880336092554, 4.543924413665721, 5.999486369959585, 6.729456832147552, 8.815830454467644, 5.726985492143586, 6.088476155965268, 7.089320890990929, 7.360713718506519), (7.586178158429934, 8.322207891814099, 7.849366628454396, 9.361938476698928, 8.379081761714586, 4.7282662968238895, 6.2426392313431975, 7.001810807478725, 9.173388032793206, 5.959060138964774, 6.335525812389321, 7.376798625684702, 7.659391453419917), (7.874844027645085, 8.635037100752022, 8.144424247724704, 9.713942558027169, 8.69585821070791, 4.906048752413484, 6.47714361681512, 7.264471624514963, 9.518222427332674, 6.182881234489941, 6.573786975931678, 7.654049199466313, 7.947442293806162), (8.152081331335932, 8.934886748021516, 8.427238655939124, 10.051339847363288, 8.9997678426383, 5.076452879572607, 6.701918852558355, 7.516229692775211, 9.848745295205214, 6.397417213392714, 6.802161856073574, 7.919795245243952, 8.22353929103161), (8.416594713398005, 9.220315345627206, 8.696450410153215, 10.372508624211397, 9.289368817071534, 5.238659777439368, 6.915884264755916, 7.7558754217784145, 10.163368293529993, 6.601636510346719, 7.019552662296249, 8.17275939592581, 8.486355496462611), (8.667088817726812, 9.489881405573698, 8.95070006742254, 10.675827168075612, 9.563219293573377, 5.391850545151869, 7.1179591795908115, 7.982199221043521, 10.460503079426179, 6.794507560025572, 7.224861604080934, 8.411664284420068, 8.734563961465534), (8.902268288217876, 9.74214343986562, 9.188628184802662, 10.959673758460044, 9.819877431709601, 5.5352062818482235, 7.307062923246056, 8.193991500089481, 10.738561310012932, 6.974998797102904, 7.416990890908869, 8.63523254363492, 8.966837737406735), (9.120837768766716, 9.975659960507588, 9.408875319349146, 11.222426674868792, 10.05790139104599, 5.667908086666534, 7.482114821904661, 8.390042668435246, 10.995954642409421, 7.142078656252334, 7.594842732261284, 8.84218680647856, 9.181849875652563), (9.321501903268855, 10.188989479504217, 9.610082028117542, 11.462464196805985, 10.275849331148308, 5.789137058744912, 7.642034201749626, 8.569143135599756, 11.23109473373482, 7.29471557214749, 7.757319337619419, 9.031249705859171, 9.37827342756938), (9.5029653356198, 10.380690508860132, 9.790888868163425, 11.678164603775716, 10.472279411582333, 5.898074297221459, 7.785740388963976, 8.73008331110196, 11.442393241108286, 7.431877979461996, 7.9033229164645125, 9.20114387468494, 9.554781444523545), (9.663932709715075, 10.549321560579946, 9.949936396542352, 11.867906175282112, 10.645749791913838, 5.993900901234285, 7.9121527097307105, 8.871653604460818, 11.628261821648984, 7.552534312869467, 8.031755678277799, 9.350591945864055, 9.710046977881415), (9.803108669450204, 10.693441146668274, 10.08586517030988, 12.030067190829278, 10.794818631708589, 6.075797969921503, 8.020190490232851, 8.99264442519526, 11.787112132476096, 7.6556530070435365, 8.141519832540508, 9.478316552304715, 9.842743079009345), (9.919197858720699, 10.811607779129744, 10.197315746521578, 12.163025929921314, 10.918044090532366, 6.142946602421208, 8.108773056653394, 9.091846182824245, 11.917355830708779, 7.740202496657828, 8.231517588733878, 9.583040326915096, 9.951542799273696), (10.010904921422082, 10.902379969968962, 10.282928682233003, 12.265160672062354, 11.013984327950944, 6.194527897871518, 8.176819735175362, 9.168049286866717, 12.017404573466198, 7.805151216385958, 8.30065115633915, 9.66348590260339, 10.035119190040824), (10.076934501449866, 10.964316231190558, 10.341344534499719, 12.334849696756486, 11.081197503530088, 6.229722955410535, 8.223249851981759, 9.220044146841623, 12.085670017867521, 7.849467600901555, 8.34782274483756, 9.718375912277793, 10.092145302677078), (10.115991242699579, 10.995975074799144, 10.371203860377285, 12.370471283507836, 11.118241776835575, 6.247712874176367, 8.2469827332556, 9.246621172267915, 12.120563821031915, 7.872120084878242, 8.37193456371034, 9.74643298884649, 10.121294188548827), (10.13039336334264, 10.999723593964335, 10.374923182441702, 12.374930812757203, 11.127732056032597, 6.25, 8.249804002259339, 9.249493827160494, 12.124926234567901, 7.874792272519433, 8.37495803716174, 9.749897576588934, 10.125), (10.141012413034153, 10.997537037037038, 10.374314814814815, 12.374381944444446, 11.133107613614852, 6.25, 8.248253812636166, 9.2455, 12.124341666666666, 7.87315061728395, 8.37462457912458, 9.749086419753086, 10.125), (10.15140723021158, 10.993227023319616, 10.373113854595337, 12.373296039094651, 11.138364945594503, 6.25, 8.24519890260631, 9.237654320987655, 12.123186728395062, 7.869918838591678, 8.373963399426362, 9.747485139460448, 10.125), (10.161577019048034, 10.986859396433472, 10.371336762688616, 12.37168544238683, 11.143503868421105, 6.25, 8.240686718308721, 9.226104938271606, 12.1214762345679, 7.865150708733425, 8.372980483850855, 9.745115683584821, 10.125), (10.171520983716636, 10.978499999999999, 10.369, 12.369562499999999, 11.148524198544214, 6.25, 8.234764705882354, 9.211, 12.119225, 7.858899999999999, 8.371681818181818, 9.742, 10.125), (10.181238328390501, 10.968214677640603, 10.366120027434842, 12.366939557613168, 11.153425752413401, 6.25, 8.22748031146615, 9.192487654320988, 12.116447839506172, 7.851220484682213, 8.370073388203018, 9.73816003657979, 10.125), (10.19072825724275, 10.95606927297668, 10.362713305898492, 12.36382896090535, 11.15820834647822, 6.25, 8.218880981199066, 9.170716049382715, 12.113159567901235, 7.842165935070874, 8.368161179698216, 9.733617741197987, 10.125), (10.199989974446497, 10.94212962962963, 10.358796296296296, 12.360243055555555, 11.162871797188236, 6.25, 8.209014161220043, 9.145833333333332, 12.109375, 7.83179012345679, 8.365951178451178, 9.728395061728394, 10.125), (10.209022684174858, 10.926461591220852, 10.354385459533608, 12.356194187242798, 11.167415920993008, 6.25, 8.19792729766804, 9.117987654320988, 12.105108950617284, 7.820146822130773, 8.363449370245666, 9.722513946044812, 10.125), (10.217825590600954, 10.909131001371742, 10.349497256515773, 12.35169470164609, 11.171840534342095, 6.25, 8.185667836681999, 9.087327160493828, 12.100376234567902, 7.807289803383631, 8.360661740865444, 9.715996342021034, 10.125), (10.226397897897897, 10.890203703703703, 10.344148148148149, 12.346756944444444, 11.176145453685063, 6.25, 8.172283224400871, 9.054, 12.095191666666667, 7.793272839506173, 8.357594276094275, 9.708864197530863, 10.125), (10.23473881023881, 10.869745541838133, 10.338354595336076, 12.341393261316872, 11.180330495471466, 6.25, 8.15782090696361, 9.018154320987653, 12.089570061728397, 7.778149702789209, 8.354252961715924, 9.701139460448102, 10.125), (10.242847531796807, 10.847822359396433, 10.332133058984912, 12.335615997942385, 11.18439547615087, 6.25, 8.142328330509159, 8.979938271604938, 12.083526234567902, 7.761974165523548, 8.350643783514153, 9.692844078646548, 10.125), (10.250723266745005, 10.824499999999999, 10.3255, 12.3294375, 11.188340212172836, 6.25, 8.12585294117647, 8.9395, 12.077074999999999, 7.7448, 8.346772727272727, 9.684000000000001, 10.125), (10.258365219256524, 10.799844307270233, 10.318471879286694, 12.322870113168724, 11.192164519986921, 6.25, 8.108442185104494, 8.896987654320988, 12.070231172839506, 7.726680978509374, 8.34264577877541, 9.674629172382259, 10.125), (10.265772593504476, 10.773921124828533, 10.311065157750342, 12.315926183127573, 11.19586821604269, 6.25, 8.09014350843218, 8.85254938271605, 12.063009567901235, 7.707670873342479, 8.33826892380596, 9.664753543667125, 10.125), (10.272944593661986, 10.746796296296296, 10.303296296296297, 12.308618055555556, 11.199451116789703, 6.25, 8.071004357298476, 8.806333333333333, 12.055425000000001, 7.687823456790124, 8.333648148148148, 9.654395061728394, 10.125), (10.279880423902163, 10.718535665294924, 10.295181755829903, 12.300958076131687, 11.202913038677519, 6.25, 8.05107217784233, 8.758487654320989, 12.047492283950618, 7.667192501143119, 8.328789437585733, 9.643575674439873, 10.125), (10.286579288398128, 10.689205075445816, 10.286737997256516, 12.29295859053498, 11.206253798155702, 6.25, 8.030394416202695, 8.709160493827161, 12.0392262345679, 7.645831778692272, 8.323698777902482, 9.632317329675354, 10.125), (10.293040391323, 10.658870370370371, 10.277981481481483, 12.284631944444445, 11.209473211673808, 6.25, 8.009018518518518, 8.6585, 12.030641666666668, 7.623795061728395, 8.318382154882155, 9.620641975308642, 10.125), (10.299262936849892, 10.627597393689987, 10.268928669410151, 12.275990483539095, 11.212571095681403, 6.25, 7.98699193092875, 8.606654320987655, 12.021753395061728, 7.601136122542296, 8.312845554308517, 9.608571559213535, 10.125), (10.305246129151927, 10.595451989026063, 10.259596021947875, 12.267046553497943, 11.215547266628045, 6.25, 7.964362099572339, 8.553771604938273, 12.0125762345679, 7.577908733424783, 8.307094961965332, 9.596128029263832, 10.125), (10.310989172402216, 10.5625, 10.25, 12.2578125, 11.218401540963296, 6.25, 7.9411764705882355, 8.5, 12.003124999999999, 7.554166666666667, 8.301136363636363, 9.583333333333332, 10.125), (10.31649127077388, 10.528807270233196, 10.240157064471878, 12.24830066872428, 11.221133735136716, 6.25, 7.917482490115388, 8.445487654320988, 11.993414506172838, 7.529963694558756, 8.294975745105374, 9.57020941929584, 10.125), (10.321751628440035, 10.49443964334705, 10.230083676268862, 12.238523405349794, 11.223743665597867, 6.25, 7.893327604292747, 8.390382716049382, 11.983459567901235, 7.505353589391861, 8.288619092156129, 9.55677823502515, 10.125), (10.326769449573796, 10.459462962962963, 10.219796296296296, 12.228493055555557, 11.22623114879631, 6.25, 7.868759259259259, 8.334833333333334, 11.973275000000001, 7.4803901234567896, 8.28207239057239, 9.543061728395061, 10.125), (10.331543938348286, 10.42394307270233, 10.209311385459534, 12.218221965020577, 11.228596001181607, 6.25, 7.8438249011538765, 8.278987654320987, 11.96287561728395, 7.455127069044353, 8.275341626137923, 9.529081847279379, 10.125), (10.336074298936616, 10.387945816186559, 10.198645404663925, 12.207722479423868, 11.230838039203315, 6.25, 7.81857197611555, 8.222993827160494, 11.9522762345679, 7.429618198445358, 8.268432784636488, 9.514860539551899, 10.125), (10.34035973551191, 10.351537037037037, 10.187814814814814, 12.197006944444444, 11.232957079310998, 6.25, 7.793047930283224, 8.167, 11.941491666666668, 7.403917283950617, 8.261351851851853, 9.50041975308642, 10.125), (10.344399452247279, 10.314782578875173, 10.176836076817558, 12.186087705761317, 11.234952937954214, 6.25, 7.767300209795852, 8.111154320987653, 11.930536728395062, 7.3780780978509375, 8.254104813567777, 9.485781435756746, 10.125), (10.348192653315843, 10.27774828532236, 10.165725651577505, 12.174977109053497, 11.23682543158253, 6.25, 7.741376260792383, 8.055604938271605, 11.919426234567903, 7.3521544124371285, 8.246697655568026, 9.470967535436671, 10.125), (10.351738542890716, 10.2405, 10.154499999999999, 12.1636875, 11.238574376645502, 6.25, 7.715323529411765, 8.000499999999999, 11.908175, 7.3262, 8.239136363636362, 9.456, 10.125), (10.355036325145022, 10.203103566529492, 10.143175582990398, 12.152231224279834, 11.24019958959269, 6.25, 7.689189461792948, 7.945987654320987, 11.896797839506172, 7.300268632830361, 8.231426923556553, 9.44090077732053, 10.125), (10.358085204251871, 10.165624828532236, 10.131768861454047, 12.140620627572016, 11.241700886873659, 6.25, 7.663021504074881, 7.892216049382716, 11.885309567901235, 7.274414083219022, 8.223575321112358, 9.425691815272062, 10.125), (10.360884384384383, 10.12812962962963, 10.120296296296297, 12.128868055555555, 11.243078084937967, 6.25, 7.636867102396514, 7.839333333333334, 11.873725, 7.24869012345679, 8.215587542087542, 9.410395061728394, 10.125), (10.36343306971568, 10.090683813443073, 10.108774348422497, 12.116985853909464, 11.244331000235174, 6.25, 7.610773702896797, 7.787487654320987, 11.862058950617284, 7.223150525834477, 8.20746957226587, 9.395032464563329, 10.125), (10.36573046441887, 10.053353223593964, 10.097219478737998, 12.104986368312757, 11.245459449214845, 6.25, 7.584788751714678, 7.736827160493827, 11.850326234567902, 7.197849062642891, 8.1992273974311, 9.379625971650663, 10.125), (10.367775772667077, 10.016203703703704, 10.085648148148147, 12.092881944444445, 11.246463248326537, 6.25, 7.558959694989106, 7.6875, 11.838541666666668, 7.172839506172839, 8.190867003367003, 9.364197530864198, 10.125), (10.369568198633415, 9.97930109739369, 10.0740768175583, 12.080684927983539, 11.247342214019811, 6.25, 7.533333978859033, 7.639654320987654, 11.826720061728395, 7.148175628715135, 8.182394375857339, 9.348769090077733, 10.125), (10.371106946491004, 9.942711248285322, 10.062521947873801, 12.068407664609055, 11.248096162744234, 6.25, 7.507959049463406, 7.5934382716049384, 11.814876234567901, 7.123911202560586, 8.17381550068587, 9.333362597165067, 10.125), (10.37239122041296, 9.9065, 10.051, 12.056062500000001, 11.248724910949356, 6.25, 7.482882352941176, 7.549, 11.803025, 7.100099999999999, 8.165136363636364, 9.318, 10.125), (10.373420224572397, 9.870733196159122, 10.039527434842249, 12.043661779835391, 11.249228275084748, 6.25, 7.458151335431292, 7.506487654320988, 11.791181172839506, 7.076795793324188, 8.156362950492579, 9.302703246456334, 10.125), (10.374193163142438, 9.835476680384087, 10.0281207133059, 12.031217849794238, 11.249606071599967, 6.25, 7.433813443072703, 7.466049382716049, 11.779359567901235, 7.054052354823959, 8.147501247038285, 9.287494284407863, 10.125), (10.374709240296196, 9.800796296296298, 10.016796296296297, 12.018743055555555, 11.249858116944573, 6.25, 7.409916122004357, 7.427833333333334, 11.767575, 7.031923456790123, 8.138557239057238, 9.272395061728396, 10.125), (10.374967660206792, 9.766757887517146, 10.005570644718793, 12.006249742798353, 11.24998422756813, 6.25, 7.386506818365206, 7.391987654320989, 11.755842283950617, 7.010462871513489, 8.12953691233321, 9.257427526291723, 10.125), (10.374791614480825, 9.733248639320323, 9.994405949931412, 11.993641740472357, 11.249877955297345, 6.2498840115836, 7.363515194829646, 7.358343850022862, 11.744087848651121, 6.989620441647166, 8.120285988540376, 9.242530021899743, 10.124875150034294), (10.373141706924315, 9.699245519713262, 9.982988425925925, 11.980283514492752, 11.248910675381262, 6.248967078189301, 7.340268181346613, 7.325098765432099, 11.731797839506173, 6.968806390704429, 8.10986283891547, 9.227218973359324, 10.12388599537037), (10.369885787558895, 9.664592459843355, 9.971268432784635, 11.966087124261943, 11.246999314128942, 6.247161255906112, 7.31666013456137, 7.291952446273434, 11.718902892089622, 6.947919524462734, 8.09814888652608, 9.211422761292809, 10.121932334533609), (10.365069660642929, 9.62931016859153, 9.959250085733881, 11.951073503757382, 11.244168078754136, 6.244495808565767, 7.292701659538988, 7.258915866483768, 11.705422210791038, 6.926960359342639, 8.085187370783862, 9.195152937212715, 10.119039887688615), (10.358739130434783, 9.593419354838709, 9.946937499999999, 11.935263586956522, 11.240441176470588, 6.2410000000000005, 7.268403361344538, 7.226, 11.691375, 6.905929411764705, 8.07102153110048, 9.17842105263158, 10.115234375), (10.35094000119282, 9.556940727465816, 9.934334790809327, 11.918678307836823, 11.23584281449205, 6.236703094040542, 7.243775845043092, 7.193215820759031, 11.676780464106082, 6.884827198149493, 8.055694606887588, 9.161238659061919, 10.110541516632374), (10.341718077175404, 9.519894995353777, 9.921446073388202, 11.901338600375738, 11.230397200032275, 6.231634354519128, 7.218829715699722, 7.160574302697759, 11.661657807498857, 6.863654234917561, 8.039249837556856, 9.143617308016267, 10.104987032750344), (10.331119162640901, 9.482302867383511, 9.908275462962962, 11.883265398550725, 11.224128540305012, 6.22582304526749, 7.1935755783795, 7.128086419753086, 11.6460262345679, 6.84241103848947, 8.021730462519935, 9.125568551007147, 10.098596643518519), (10.319189061847677, 9.44418505243595, 9.894827074759945, 11.864479636339238, 11.217061042524005, 6.219298430117361, 7.168024038147495, 7.095763145861912, 11.629904949702789, 6.821098125285779, 8.003179721188491, 9.107103939547082, 10.091396069101508), (10.305973579054093, 9.40556225939201, 9.881105024005485, 11.845002247718732, 11.209218913903008, 6.212089772900472, 7.142185700068779, 7.063615454961135, 11.613313157293096, 6.7997160117270505, 7.983640852974187, 9.088235025148606, 10.083411029663925), (10.291518518518519, 9.366455197132618, 9.867113425925925, 11.824854166666666, 11.200626361655774, 6.204226337448559, 7.116071169208425, 7.031654320987655, 11.596270061728394, 6.7782652142338415, 7.9631570972886765, 9.068973359324238, 10.074667245370371), (10.275869684499314, 9.326884574538697, 9.8528563957476, 11.804056327160493, 11.191307592996047, 6.195737387593354, 7.089691050631501, 6.9998907178783725, 11.578794867398262, 6.756746249226714, 7.941771693543622, 9.049330493586504, 10.065190436385459), (10.259072881254847, 9.286871100491172, 9.838338048696844, 11.782629663177671, 11.181286815137579, 6.18665218716659, 7.063055949403081, 6.968335619570188, 11.560906778692273, 6.7351596331262265, 7.919527881150688, 9.029317979447935, 10.0550063228738), (10.241173913043479, 9.246435483870968, 9.8235625, 11.760595108695654, 11.170588235294117, 6.177, 7.036176470588235, 6.937, 11.542625, 6.713505882352941, 7.8964688995215315, 9.008947368421053, 10.044140624999999), (10.222218584123576, 9.205598433559008, 9.808533864883403, 11.737973597691894, 11.159236060679415, 6.166810089925317, 7.009063219252036, 6.90589483310471, 11.52396873571102, 6.691785513327416, 7.872637988067813, 8.988230212018387, 10.03261906292867), (10.202252698753504, 9.164380658436214, 9.793256258573388, 11.714786064143853, 11.147254498507221, 6.156111720774272, 6.981726800459553, 6.875031092821216, 11.504957190214906, 6.669999042470211, 7.848078386201194, 8.967178061752461, 10.020467356824417), (10.181322061191626, 9.122802867383513, 9.777733796296296, 11.691053442028986, 11.134667755991286, 6.144934156378601, 6.954177819275858, 6.844419753086419, 11.485609567901234, 6.648146986201889, 7.822833333333333, 8.945802469135803, 10.007711226851852), (10.159472475696308, 9.080885769281826, 9.761970593278463, 11.666796665324746, 11.121500040345357, 6.133306660570035, 6.926426880766024, 6.814071787837221, 11.465945073159578, 6.626229860943005, 7.796946068875894, 8.924114985680937, 9.994376393175584), (10.136749746525913, 9.03865007301208, 9.745970764746229, 11.64203666800859, 11.107775558783183, 6.121258497180309, 6.89848458999512, 6.783998171010516, 11.445982910379517, 6.604248183114124, 7.770459832240534, 8.902127162900394, 9.98048857596022), (10.113199677938807, 8.996116487455197, 9.729738425925925, 11.61679438405797, 11.09351851851852, 6.108818930041152, 6.870361552028219, 6.75420987654321, 11.425742283950619, 6.582202469135802, 7.743417862838915, 8.879850552306692, 9.96607349537037), (10.088868074193357, 8.9533057214921, 9.713277692043896, 11.59109074745035, 11.07875312676511, 6.096017222984301, 6.842068371930391, 6.724717878372199, 11.40524239826246, 6.560093235428601, 7.715863400082698, 8.857296705412365, 9.951156871570646), (10.063800739547922, 8.910238484003717, 9.696592678326475, 11.564946692163177, 11.063503590736707, 6.082882639841488, 6.813615654766708, 6.695533150434385, 11.384502457704619, 6.537920998413083, 7.687839683383544, 8.834477173729935, 9.935764424725651), (10.03804347826087, 8.866935483870968, 9.6796875, 11.538383152173914, 11.04779411764706, 6.069444444444445, 6.785014005602241, 6.666666666666666, 11.363541666666668, 6.515686274509804, 7.65938995215311, 8.81140350877193, 9.919921875), (10.011642094590563, 8.823417429974777, 9.662566272290809, 11.511421061460013, 11.031648914709915, 6.055731900624904, 6.756274029502062, 6.638129401005944, 11.342379229538182, 6.4933895801393255, 7.63055744580306, 8.788087262050874, 9.903654942558298), (9.984642392795372, 8.779705031196071, 9.64523311042524, 11.484081353998926, 11.015092189139029, 6.041774272214601, 6.727406331531242, 6.609932327389118, 11.321034350708734, 6.471031431722209, 7.601385403745053, 8.764539985079297, 9.886989347565157), (9.957090177133654, 8.735818996415771, 9.62769212962963, 11.456384963768118, 10.998148148148148, 6.027600823045267, 6.69842151675485, 6.582086419753087, 11.299526234567901, 6.448612345679011, 7.57191706539075, 8.74077322936972, 9.869950810185184), (9.92903125186378, 8.691780034514801, 9.609947445130317, 11.428352824745035, 10.98084099895102, 6.0132408169486355, 6.669330190237961, 6.554602652034752, 11.277874085505259, 6.426132838430297, 7.54219567015181, 8.716798546434674, 9.85256505058299), (9.90051142124411, 8.647608854374088, 9.592003172153635, 11.400005870907139, 10.963194948761398, 5.9987235177564395, 6.640142957045644, 6.527491998171011, 11.25609710791038, 6.403593426396621, 7.512264457439896, 8.69262748778668, 9.834857788923182), (9.871576489533012, 8.603326164874554, 9.573863425925927, 11.371365036231884, 10.945234204793028, 5.984078189300411, 6.610870422242971, 6.500765432098766, 11.234214506172838, 6.3809946259985475, 7.482166666666667, 8.668271604938273, 9.816854745370371), (9.842272260988848, 8.558952674897121, 9.555532321673525, 11.342451254696725, 10.926982974259664, 5.969334095412284, 6.581523190895013, 6.474433927754916, 11.212245484682214, 6.358336953656634, 7.451945537243782, 8.64374244940197, 9.798581640089164), (9.812644539869984, 8.514509093322713, 9.53701397462277, 11.31328546027912, 10.908465464375052, 5.954520499923793, 6.552111868066842, 6.44850845907636, 11.190209247828074, 6.335620925791441, 7.421644308582906, 8.619051572690298, 9.78006419324417), (9.782739130434782, 8.470016129032258, 9.5183125, 11.283888586956522, 10.889705882352942, 5.939666666666667, 6.52264705882353, 6.423, 11.168125, 6.312847058823529, 7.391306220095694, 8.59421052631579, 9.761328125), (9.752601836941611, 8.425494490906676, 9.49943201303155, 11.254281568706388, 10.870728435407084, 5.924801859472641, 6.493139368230145, 6.3979195244627345, 11.146011945587563, 6.290015869173458, 7.36097451119381, 8.569230861790967, 9.742399155521262), (9.722278463648834, 8.380964887826895, 9.480376628943759, 11.224485339506174, 10.85155733075123, 5.909955342173449, 6.463599401351762, 6.3732780064014625, 11.123889288980338, 6.267127873261788, 7.330692421288912, 8.544124130628353, 9.723303004972564), (9.691814814814816, 8.336448028673836, 9.461150462962962, 11.194520833333334, 10.832216775599129, 5.895156378600824, 6.43403776325345, 6.349086419753086, 11.1017762345679, 6.244183587509078, 7.300503189792663, 8.518901884340481, 9.704065393518519), (9.661256694697919, 8.291964622328422, 9.4417576303155, 11.164408984165325, 10.812730977164529, 5.880434232586496, 6.40446505900028, 6.325355738454504, 11.079691986739826, 6.221183528335889, 7.270450056116723, 8.493575674439873, 9.68471204132373), (9.63064990755651, 8.247535377671579, 9.422202246227709, 11.134170725979603, 10.79312414266118, 5.865818167962201, 6.374891893657326, 6.302096936442616, 11.057655749885688, 6.19812821216278, 7.24057625967275, 8.468157052439054, 9.665268668552812), (9.600040257648953, 8.203181003584229, 9.402488425925926, 11.103826992753623, 10.773420479302832, 5.851337448559671, 6.345328872289658, 6.279320987654321, 11.035686728395062, 6.175018155410313, 7.210925039872408, 8.442657569850553, 9.64576099537037), (9.569473549233614, 8.158922208947299, 9.382620284636488, 11.073398718464842, 10.753644194303236, 5.837021338210638, 6.315786599962345, 6.25703886602652, 11.01380412665752, 6.151853874499045, 7.181539636127355, 8.417088778186894, 9.626214741941014), (9.538995586568856, 8.11477970264171, 9.362601937585735, 11.042906837090714, 10.733819494876139, 5.822899100746838, 6.286275681740461, 6.235261545496114, 10.992027149062643, 6.128635885849539, 7.152463287849252, 8.391462228960604, 9.606655628429355), (9.508652173913044, 8.070774193548388, 9.3424375, 11.012372282608696, 10.713970588235293, 5.809, 6.256806722689075, 6.214, 10.970375, 6.105364705882353, 7.1237392344497605, 8.365789473684211, 9.587109375), (9.478489115524543, 8.026926390548255, 9.322131087105625, 10.98181598899624, 10.69412168159445, 5.795353299801859, 6.227390327873262, 6.193265203475081, 10.948866883859168, 6.082040851018047, 7.09541071534054, 8.340082063870238, 9.567601701817559), (9.448552215661715, 7.983257002522237, 9.301686814128946, 10.951258890230811, 10.674296982167354, 5.7819882639841484, 6.198037102358089, 6.173068129858253, 10.92752200502972, 6.058664837677183, 7.06752096993325, 8.314351551031214, 9.54815832904664), (9.41888727858293, 7.9397867383512555, 9.281108796296298, 10.920721920289855, 10.654520697167756, 5.768934156378601, 6.168757651208631, 6.153419753086419, 10.906359567901236, 6.035237182280319, 7.040113237639553, 8.288609486679663, 9.528804976851852), (9.38954010854655, 7.896536306916234, 9.26040114883402, 10.890226013150832, 10.634817033809409, 5.756220240816949, 6.139562579489958, 6.134331047096479, 10.885398776863282, 6.011758401248016, 7.013230757871109, 8.26286742232811, 9.509567365397805), (9.360504223703044, 7.853598618785952, 9.239617828252069, 10.85983388249204, 10.615175680173705, 5.7438697692145135, 6.1105259636567695, 6.115852568780606, 10.86471281125862, 5.988304736612729, 6.9869239061528665, 8.237192936504428, 9.490443900843221), (9.331480897900065, 7.811397183525536, 9.219045675021619, 10.829789421277336, 10.595393354566326, 5.731854608529901, 6.082018208410579, 6.09821125950512, 10.84461903571306, 5.965315167912783, 6.961244337113197, 8.211912172112974, 9.471275414160035), (9.302384903003995, 7.769947198683046, 9.198696932707318, 10.800084505181779, 10.5754076778886, 5.7201435124987645, 6.054059650191562, 6.081402654278709, 10.82512497866879, 5.942825327988077, 6.936154511427094, 8.187037582558851, 9.452006631660376), (9.273179873237634, 7.729188281291702, 9.178532189983873, 10.770666150266404, 10.555188526383779, 5.708708877287098, 6.026604817527893, 6.065380312898993, 10.80618133922783, 5.920793358449547, 6.911605931271481, 8.162523197487346, 9.43260725975589), (9.243829442823772, 7.689060048384721, 9.158512035525986, 10.741481372592244, 10.53470577629511, 5.6975230990608905, 5.9996082389477525, 6.050097795163585, 10.787738816492203, 5.899177400908129, 6.887550098823283, 8.13832304654375, 9.413047004858225), (9.214297245985211, 7.649502116995324, 9.138597058008367, 10.712477188220333, 10.513929303865842, 5.686558573986138, 5.973024442979315, 6.0355086608700965, 10.769748109563935, 5.877935596974759, 6.863938516259424, 8.11439115937335, 9.393295573379024), (9.184546916944742, 7.610454104156729, 9.118747846105723, 10.683600613211706, 10.492828985339221, 5.675787698228833, 5.946807958150756, 6.021566469816145, 10.752159917545043, 5.857026088260372, 6.840722685756828, 8.090681565621434, 9.373322671729932), (9.154542089925162, 7.571855626902158, 9.098924988492762, 10.654798663627394, 10.471374696958497, 5.665182867954965, 5.920913312990253, 6.008224781799343, 10.734924939537558, 5.836407016375905, 6.817854109492416, 8.067148294933297, 9.353098006322597), (9.124246399149268, 7.533646302264829, 9.079089073844187, 10.626018355528434, 10.449536314966918, 5.6547164793305305, 5.89529503602598, 5.995437156617307, 10.717993874643499, 5.816036522932296, 6.795284289643116, 8.043745376954222, 9.33259128356866), (9.093623478839854, 7.495765747277961, 9.059200690834711, 10.597206704975855, 10.427283715607734, 5.644360928521519, 5.869907655786117, 5.983157154067649, 10.70131742196489, 5.795872749540477, 6.772964728385851, 8.0204268413295, 9.31177220987977), (9.062636963219719, 7.458153578974774, 9.039220428139036, 10.568310728030694, 10.40458677512419, 5.634088611693925, 5.844705700798839, 5.971338333947983, 10.684846280603754, 5.775873837811387, 6.750846927897544, 7.997146717704421, 9.290610491667572), (9.031250486511654, 7.420749414388487, 9.01910887443187, 10.539277440753986, 10.381415369759537, 5.623871925013739, 5.819643699592319, 5.959934256055926, 10.668531149662115, 5.755997929355961, 6.728882390355119, 7.973859035724275, 9.269075835343711), (8.999427682938459, 7.38349287055232, 8.998826618387923, 10.51005385920676, 10.357739375757022, 5.613683264646956, 5.794676180694739, 5.948898480189091, 10.652322728241993, 5.736203165785134, 6.707022617935501, 7.950517825034348, 9.247137947319828), (8.967132186722928, 7.346323564499494, 8.978334248681898, 10.480586999450054, 10.333528669359893, 5.603495026759568, 5.76975767263427, 5.938184566145092, 10.636171715445418, 5.7164476887098425, 6.685219112815613, 7.927077115279934, 9.224766534007578), (8.93432763208786, 7.309181113263224, 8.957592353988504, 10.450823877544899, 10.308753126811398, 5.593279607517565, 5.744842703939094, 5.927746073721545, 10.620028810374407, 5.696689639741024, 6.6634233771723785, 7.903490936106316, 9.201931301818599), (8.900977653256046, 7.272005133876735, 8.93656152298245, 10.420711509552332, 10.28338262435479, 5.583009403086944, 5.719885803137382, 5.917536562716062, 10.603844712130984, 5.6768871604896125, 6.641586913182724, 7.879713317158788, 9.178601957164537), (8.867045884450281, 7.234735243373241, 8.91520234433844, 10.390196911533382, 10.257387038233311, 5.572656809633695, 5.694841498757313, 5.90750959292626, 10.587570119817174, 5.656998392566545, 6.619661223023571, 7.855698288082636, 9.154748206457038), (8.832495959893366, 7.197311058785966, 8.893475406731179, 10.359227099549086, 10.230736244690213, 5.562194223323808, 5.669664319327063, 5.89761872414975, 10.571155732535, 5.636981477582757, 6.5975978088718445, 7.831399878523152, 9.130339756107748), (8.797291513808094, 7.159672197148127, 8.87134129883538, 10.327749089660475, 10.203400119968745, 5.55159404032328, 5.644308793374809, 5.88781751618415, 10.554552249386486, 5.616794557149185, 6.575348172904468, 7.806772118125624, 9.105346312528312), (8.76139618041726, 7.121758275492944, 8.848760609325746, 10.295709897928587, 10.175348540312154, 5.540828656798102, 5.618729449428725, 5.878059528827073, 10.537710369473654, 5.596395772876765, 6.552863817298364, 7.781769036535342, 9.079737582130376), (8.724773593943663, 7.083508910853635, 8.825693926876983, 10.263056540414452, 10.146551381963686, 5.529870468914266, 5.592880816016989, 5.868298321876132, 10.520580791898526, 5.575743266376432, 6.53009624423046, 7.756344663397592, 9.053483271325586), (8.687387388610095, 7.044863720263423, 8.802101840163804, 10.229736033179103, 10.116978521166592, 5.518691872837765, 5.566717421667779, 5.858487455128944, 10.503114215763128, 5.5547951792591235, 6.506996955877678, 7.730453028357666, 9.026553086525583), (8.649201198639354, 7.005762320755524, 8.777944937860909, 10.195695392283579, 10.08659983416412, 5.507265264734592, 5.540193794909268, 5.84858048838312, 10.48526134016948, 5.533509653135776, 6.483517454416942, 7.704048161060852, 8.99891673414202), (8.610178658254235, 6.966144329363159, 8.753183808643008, 10.160881633788906, 10.055385197199517, 5.495563040770739, 5.513264464269635, 5.838530981436277, 10.466972864219606, 5.511844829617322, 6.459609242025177, 7.677084091152441, 8.970543920586536), (8.570283401677534, 6.925949363119547, 8.72777904118481, 10.125241773756125, 10.023304486516034, 5.483557597112198, 5.485883958277055, 5.828292494086029, 10.448199487015533, 5.4897588503147015, 6.435223820879306, 7.649514848277719, 8.941404352270776), (8.529479063132047, 6.885117039057908, 8.701691224161017, 10.088722828246263, 9.990327578356919, 5.471221329924964, 5.458006805459704, 5.81781858612999, 10.428891907659281, 5.4672098568388465, 6.410312693156252, 7.621294462081978, 8.91146773560639), (8.487729276840568, 6.843586974211461, 8.67488094624634, 10.051271813320358, 9.956424348965415, 5.458526635375026, 5.429587534345759, 5.807062817365774, 10.409000825252871, 5.444155990800697, 6.38482736103294, 7.592376962210506, 8.880703777005019), (8.444997677025897, 6.801298785613425, 8.647308796115487, 10.012835745039444, 9.92156467458478, 5.445445909628379, 5.400580673463397, 5.795978747590996, 10.388476938898332, 5.420555393811186, 6.358719326686294, 7.562716378308592, 8.849082182878314), (8.40124789791083, 6.758192090297021, 8.61893536244316, 9.973361639464553, 9.885718431458253, 5.431951548851015, 5.370940751340795, 5.78451993660327, 10.36727094769768, 5.396366207481251, 6.331940092293238, 7.532266740021525, 8.816572659637913), (8.356443573718156, 6.714206505295466, 8.58972123390407, 9.93279651265672, 9.848855495829087, 5.418015949208927, 5.340622296506126, 5.772639944200211, 10.345333550752942, 5.371546573421828, 6.304441160030697, 7.500982076994594, 8.783144913695466), (8.310548338670674, 6.669281647641981, 8.559626999172925, 9.891087380676975, 9.810945743940529, 5.403611506868106, 5.3095798374875685, 5.760292330179432, 10.322615447166147, 5.3460546332438525, 6.276174032075593, 7.4688164188730894, 8.748768651462617), (8.263525826991184, 6.623357134369786, 8.528613246924428, 9.848181259586356, 9.771959052035829, 5.388710617994547, 5.277767902813299, 5.747430654338549, 10.29906733603931, 5.31984852855826, 6.247090210604851, 7.435723795302299, 8.713413579351014), (8.215339672902477, 6.576372582512099, 8.496640565833289, 9.804025165445895, 9.731865296358233, 5.3732856787542405, 5.245141021011493, 5.734008476475176, 10.274639916474454, 5.292886400975988, 6.217141197795395, 7.401658235927513, 8.6770494037723), (8.16595351062735, 6.528267609102142, 8.463669544574216, 9.758566114316626, 9.690634353150992, 5.35730908531318, 5.21165372061033, 5.719979356386927, 10.249283887573606, 5.2651263921079705, 6.186278495824149, 7.3665737703940195, 8.639645831138118), (8.1153309743886, 6.47898183117313, 8.42966077182191, 9.71175112225958, 9.648236098657351, 5.340753233837358, 5.177260530137981, 5.705296853871415, 10.22294994843879, 5.236526643565146, 6.154453606868036, 7.3304244283471105, 8.601172567860118), (8.063435698409021, 6.428454865758288, 8.394574836251083, 9.663527205335797, 9.604640409120561, 5.323590520492767, 5.1419159781226265, 5.689914528726257, 10.195588798172029, 5.207045296958447, 6.1216180331039824, 7.29316423943207, 8.561599320349941), (8.010231316911412, 6.37662632989083, 8.358372326536443, 9.613841379606303, 9.55981716078387, 5.3057933414453995, 5.105574593092441, 5.673785940749067, 10.167151135875338, 5.176640493898813, 6.08772327670891, 7.254747233294191, 8.520895795019237), (7.955681464118564, 6.323435840603979, 8.321013831352694, 9.562640661132138, 9.513736229890526, 5.287334092861249, 5.0681909035756005, 5.656864649737456, 10.137587660650752, 5.1452703759971765, 6.0527208398597425, 7.215127439578763, 8.479031698279647), (7.899749774253275, 6.268823014930954, 8.282459939374542, 9.50987206597433, 9.466367492683776, 5.268185170906305, 5.029719438100283, 5.639104215489043, 10.106849071600289, 5.112893084864478, 6.016562224733405, 7.174258887931072, 8.435976736542818), (7.842399881538343, 6.212727469904973, 8.242671239276701, 9.455482610193918, 9.417680825406869, 5.2483189717465635, 4.9901147251946645, 5.620458197801441, 10.07488606782597, 5.079466762111649, 5.979198933506821, 7.132095607996409, 8.391700616220398), (7.78359542019656, 6.155088822559256, 8.201608319733868, 9.399419309851933, 9.367646104303056, 5.2277078915480155, 4.949331293386919, 5.600880156472262, 10.041649348429823, 5.044949549349629, 5.940582468356916, 7.088591629420064, 8.346173043724027), (7.723300024450729, 6.095846689927024, 8.159231769420758, 9.34162918100941, 9.31623320561558, 5.206324326476654, 4.907323671205228, 5.580323651299123, 10.007089612513866, 5.009299588189353, 5.900664331460612, 7.043700981847325, 8.299363725465357), (7.6614773285236355, 6.034940689041495, 8.115502177012075, 9.282059239727378, 9.263412005587696, 5.184140672698471, 4.864046387177761, 5.558742242079636, 9.971157559180128, 4.972475020241754, 5.859396024994833, 6.997377694923482, 8.251242367856026), (7.598090966638081, 5.972310436935888, 8.070380131182526, 9.220656502066875, 9.209152380462648, 5.161129326379461, 4.8194539698327, 5.5360894886114185, 9.933803887530626, 4.934433987117773, 5.816729051136504, 6.949575798293822, 8.201778677307685), (7.533104573016862, 5.907895550643423, 8.023826220606818, 9.157367984088937, 9.153424206483685, 5.137262683685614, 4.773500947698219, 5.512318950692082, 9.894979296667389, 4.895134630428341, 5.772614912062549, 6.900249321603637, 8.150942360231976), (7.464680946405239, 5.840453120772258, 7.973591953902355, 9.089769581651243, 9.093681105870997, 5.11102447631711, 4.725106720927857, 5.485796952349372, 9.851662091599097, 4.8533659162911436, 5.7255957525389425, 6.847599564194339, 8.096485859415345), (7.382286766978402, 5.763065319599478, 7.906737818402988, 9.003977158788453, 9.015191309781628, 5.073689648007103, 4.668212763385716, 5.4472135327643825, 9.786427261222144, 4.802280994098745, 5.667416935618994, 6.781362523683108, 8.025427646920194), (7.284872094904309, 5.675096728540714, 7.821920957955888, 8.89857751040886, 8.916420131346795, 5.024341296047684, 4.602243748383784, 5.3955991895273465, 9.697425227228651, 4.741205651862893, 5.59725950860954, 6.700501948887847, 7.93642060889358), (7.17322205458596, 5.577120868080469, 7.720046971910309, 8.774572503756728, 8.798393124282113, 4.963577241570314, 4.527681446006876, 5.33160053310978, 9.585829766999018, 4.6706581931709374, 5.515741654599707, 6.605767468907571, 7.830374044819097), (7.048121770426357, 5.469711258703239, 7.602021459615496, 8.632964006076326, 8.662135842303204, 4.891995305706455, 4.445007626339809, 5.255864173983202, 9.452814657913637, 4.5911569216102315, 5.42348155667862, 6.497908712841293, 7.708197254180333), (6.9103563668284975, 5.353441420893524, 7.468750020420702, 8.474753884611934, 8.508673839125688, 4.810193309587572, 4.354704059467401, 5.169036722619125, 9.299553677352906, 4.503220140768125, 5.321097397935408, 6.3776753097880325, 7.570799536460879), (6.760710968195384, 5.228884875135821, 7.321138253675176, 8.300944006607818, 8.339032668465189, 4.718769074345129, 4.257252515474466, 5.071764789489069, 9.127220602697223, 4.407366154231968, 5.209207361459196, 6.245816888846803, 7.419090191144328), (6.599970698930017, 5.096615141914632, 7.160091758728169, 8.112536239308252, 8.154237884037324, 4.618320421110586, 4.153134764445822, 4.964694985064546, 8.93698921132698, 4.3041132655891134, 5.088429630339111, 6.10308307911662, 7.25397851771427), (6.428920683435397, 4.957205741714454, 6.9865161349289275, 7.910532449957501, 7.955315039557714, 4.509445171015408, 4.042832576466286, 4.848473919817077, 8.730033280622573, 4.193979778426912, 4.959382387664279, 5.950223509696501, 7.0763738156542955), (6.248346046114523, 4.811230195019787, 6.801316981626704, 7.695934505799843, 7.74328968874198, 4.392741145191058, 3.9268277216206746, 4.723748204218176, 8.5075265879644, 4.077483996332714, 4.822683816523827, 5.7879878096854585, 6.887185384447996), (6.059031911370395, 4.659262022315128, 6.605399898170748, 7.469744274079546, 7.519187385305742, 4.268806164768999, 3.805601969993804, 4.5911644487393595, 8.270642910732855, 3.955144222893872, 4.678952100006881, 5.617125608182511, 6.6873225235789615), (5.861763403606015, 4.501874744084979, 6.399670483910309, 7.232963622040883, 7.28403368296462, 4.138238050880695, 3.6796370916704917, 4.451369263852145, 8.020556026308338, 3.8274787616977366, 4.528805421202568, 5.438386534286672, 6.477694532530785), (5.657325647224384, 4.339641880813837, 6.185034338194635, 6.98659441692812, 7.038854135434233, 4.001634624657607, 3.549414856735553, 4.305009260028047, 7.7584397120712385, 3.6950059163316578, 4.372861963200016, 5.252520217096959, 6.259210710787055), (5.4465037666285, 4.173136952986201, 5.962397060372978, 6.731638525985535, 6.784674296430206, 3.8595937072311983, 3.4154170352738054, 4.152731047738583, 7.485467745401956, 3.5582439903829886, 4.211739909088348, 5.060276285712386, 6.032780357831365), (5.230082886221365, 4.002933481086569, 5.7326642497945866, 6.4690978164573965, 6.5225197196681535, 3.7127131197329337, 3.2781253973700655, 3.9951812374552707, 7.202813903680886, 3.41771128743908, 4.046057441956694, 4.862404369231971, 5.799312773147303), (5.00884813040598, 3.8296049855994423, 5.4967415058087115, 6.1999741555879755, 6.253415958863702, 3.5615906832942748, 3.1380217131091497, 3.8330064396496235, 6.911651964288422, 3.2739261110872815, 3.8764327448941778, 4.659654096754725, 5.5597172562184625), (4.783584623585344, 3.653724987009318, 5.2555344277646014, 5.9252694106215404, 5.978388567732466, 3.406824219046685, 2.9955877525758754, 3.6668532647931604, 6.613155704604964, 3.1274067649149466, 3.7034840009899277, 4.452775097379668, 5.314903106528433), (4.555077490162455, 3.4758670058006946, 5.009948615011508, 5.645985448802367, 5.698463099990069, 3.2490115481216284, 2.851305285855058, 3.497368323357396, 6.308498902010905, 2.9786715525094243, 3.5278293933330693, 4.242517000205814, 5.0657796235608075), (4.324111854540319, 3.296604562458073, 4.760889666898678, 5.363124137374725, 5.41466510935213, 3.0887504916505666, 2.705656083031515, 3.325198225813849, 5.998855333886642, 2.828238777458067, 3.35008710501273, 4.029629434332179, 4.813256106799174), (4.0914728411219325, 3.1165111774659513, 4.5092631827753635, 5.077687343582883, 5.128020149534273, 2.9266388707649633, 2.5591219141900625, 3.1509895826340326, 5.68539877761257, 2.6766267433482245, 3.1708753191180357, 3.8148620288577786, 4.5582418557271245), (3.8579455743102966, 2.9361603713088282, 4.255974761990814, 4.790676934671116, 4.8395537742521135, 2.7632745065962827, 2.4121845494155174, 2.9753890042894655, 5.3693030105690855, 2.52435375376725, 2.9908122187381125, 3.598964412881627, 4.301646169828252), (0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0)) passenger_arriving_acc = ((8, 6, 8, 5, 3, 3, 3, 1, 2, 1, 1, 0, 0, 5, 6, 2, 2, 3, 2, 3, 0, 2, 1, 0, 0, 0), (13, 12, 13, 12, 7, 7, 4, 3, 7, 4, 3, 0, 0, 11, 11, 7, 6, 6, 6, 5, 3, 3, 3, 2, 0, 0), (25, 19, 19, 18, 11, 7, 4, 6, 10, 5, 3, 0, 0, 19, 16, 13, 7, 14, 11, 9, 4, 3, 3, 2, 1, 0), (32, 27, 24, 24, 14, 10, 10, 8, 11, 5, 3, 2, 0, 26, 21, 17, 11, 16, 15, 12, 6, 7, 6, 7, 2, 0), (41, 34, 28, 27, 21, 12, 15, 11, 15, 6, 5, 3, 0, 35, 28, 22, 18, 22, 20, 15, 6, 10, 10, 8, 2, 0), (48, 40, 34, 31, 31, 12, 17, 14, 18, 9, 5, 3, 0, 45, 34, 26, 23, 24, 23, 17, 7, 16, 12, 10, 3, 0), (52, 49, 40, 38, 38, 15, 19, 16, 21, 12, 6, 4, 0, 49, 44, 32, 28, 29, 27, 19, 9, 17, 12, 13, 5, 0), (62, 56, 52, 44, 43, 18, 22, 19, 23, 14, 6, 4, 0, 59, 48, 40, 31, 36, 28, 24, 11, 19, 15, 20, 7, 0), (75, 65, 62, 50, 47, 21, 29, 22, 29, 14, 9, 5, 0, 75, 54, 43, 33, 43, 31, 32, 12, 19, 18, 21, 9, 0), (80, 74, 68, 57, 50, 24, 32, 25, 34, 15, 9, 5, 0, 83, 56, 50, 40, 48, 32, 34, 12, 22, 20, 24, 10, 0), (88, 87, 72, 64, 54, 27, 35, 29, 37, 15, 10, 6, 0, 89, 62, 57, 44, 51, 38, 37, 13, 27, 22, 25, 12, 0), (91, 94, 82, 70, 57, 30, 38, 31, 41, 15, 10, 6, 0, 99, 65, 63, 52, 57, 44, 44, 13, 31, 22, 25, 12, 0), (96, 104, 88, 77, 62, 30, 41, 33, 45, 18, 10, 6, 0, 106, 71, 71, 58, 65, 47, 49, 15, 34, 23, 25, 13, 0), (108, 115, 98, 84, 69, 32, 45, 35, 47, 19, 13, 6, 0, 117, 78, 78, 63, 74, 54, 52, 16, 39, 27, 27, 13, 0), (122, 124, 103, 91, 75, 36, 48, 38, 49, 21, 15, 6, 0, 128, 83, 82, 66, 78, 59, 54, 19, 42, 33, 30, 14, 0), (130, 133, 110, 99, 83, 39, 53, 41, 51, 23, 17, 8, 0, 136, 89, 90, 68, 86, 65, 61, 22, 45, 37, 30, 15, 0), (137, 145, 113, 105, 93, 41, 54, 42, 54, 24, 20, 8, 0, 141, 96, 101, 72, 98, 67, 64, 25, 50, 38, 31, 15, 0), (147, 152, 119, 111, 99, 43, 59, 48, 57, 24, 20, 8, 0, 152, 105, 110, 77, 107, 75, 66, 28, 51, 41, 31, 16, 0), (157, 161, 125, 119, 109, 46, 60, 51, 57, 25, 23, 8, 0, 167, 112, 114, 79, 115, 78, 71, 29, 53, 44, 33, 17, 0), (170, 164, 133, 131, 117, 48, 63, 54, 60, 29, 24, 8, 0, 181, 117, 123, 81, 124, 84, 75, 31, 55, 46, 35, 17, 0), (181, 175, 144, 143, 123, 49, 66, 56, 66, 30, 25, 9, 0, 194, 124, 131, 87, 135, 89, 81, 33, 58, 50, 36, 20, 0), (187, 191, 154, 159, 130, 52, 74, 62, 68, 30, 25, 9, 0, 201, 129, 139, 95, 143, 90, 83, 33, 60, 55, 37, 20, 0), (192, 199, 159, 172, 144, 55, 80, 65, 71, 30, 26, 12, 0, 216, 138, 144, 99, 149, 94, 90, 36, 63, 58, 41, 21, 0), (202, 208, 168, 184, 154, 59, 85, 70, 73, 32, 29, 12, 0, 226, 148, 149, 102, 156, 100, 95, 40, 68, 60, 44, 22, 0), (209, 216, 177, 194, 157, 65, 92, 71, 77, 36, 29, 12, 0, 236, 159, 156, 108, 164, 105, 97, 42, 72, 64, 46, 22, 0), (217, 220, 188, 207, 166, 67, 96, 75, 83, 41, 29, 12, 0, 247, 176, 164, 116, 168, 110, 102, 47, 74, 65, 48, 24, 0), (227, 233, 200, 213, 176, 70, 99, 81, 89, 43, 33, 14, 0, 259, 193, 173, 120, 179, 116, 105, 54, 74, 70, 48, 24, 0), (236, 239, 217, 221, 179, 76, 102, 83, 92, 46, 36, 15, 0, 274, 203, 180, 125, 186, 125, 110, 58, 77, 74, 51, 25, 0), (245, 246, 223, 229, 184, 80, 105, 89, 98, 48, 39, 16, 0, 280, 213, 188, 131, 197, 133, 117, 61, 78, 76, 53, 26, 0), (255, 257, 233, 241, 190, 82, 113, 94, 104, 50, 40, 16, 0, 286, 219, 196, 137, 206, 143, 128, 64, 84, 78, 58, 27, 0), (267, 267, 243, 246, 198, 87, 118, 100, 105, 53, 45, 16, 0, 299, 225, 205, 144, 215, 145, 134, 67, 89, 83, 60, 27, 0), (277, 275, 249, 255, 210, 92, 128, 107, 108, 58, 46, 16, 0, 303, 230, 212, 155, 223, 149, 137, 68, 91, 89, 61, 29, 0), (295, 285, 257, 261, 214, 96, 131, 113, 113, 59, 46, 16, 0, 312, 238, 221, 161, 240, 154, 143, 70, 99, 92, 61, 30, 0), (300, 291, 266, 273, 223, 99, 139, 117, 115, 60, 47, 17, 0, 317, 252, 229, 168, 249, 161, 149, 75, 102, 95, 61, 30, 0), (312, 298, 273, 288, 229, 104, 143, 121, 118, 65, 49, 18, 0, 328, 261, 234, 175, 253, 168, 154, 79, 105, 97, 63, 31, 0), (325, 309, 284, 299, 239, 111, 149, 122, 121, 70, 49, 19, 0, 337, 267, 242, 181, 261, 173, 161, 80, 107, 103, 64, 32, 0), (336, 319, 292, 307, 246, 119, 154, 124, 126, 71, 49, 21, 0, 347, 277, 244, 188, 268, 177, 163, 85, 112, 109, 66, 35, 0), (348, 331, 301, 314, 254, 124, 159, 125, 130, 73, 53, 23, 0, 358, 284, 251, 194, 277, 180, 165, 87, 117, 111, 67, 35, 0), (362, 340, 309, 321, 262, 125, 166, 133, 130, 77, 54, 24, 0, 370, 293, 251, 200, 286, 188, 168, 88, 118, 113, 67, 35, 0), (370, 349, 316, 330, 266, 129, 168, 136, 132, 79, 54, 25, 0, 379, 298, 260, 208, 289, 192, 174, 91, 122, 115, 70, 35, 0), (379, 361, 320, 344, 273, 134, 170, 138, 137, 81, 57, 27, 0, 391, 303, 267, 218, 299, 196, 179, 96, 125, 118, 72, 35, 0), (395, 374, 326, 356, 282, 138, 174, 141, 138, 83, 58, 27, 0, 405, 312, 278, 225, 306, 202, 180, 100, 127, 120, 74, 38, 0), (410, 384, 336, 363, 294, 141, 181, 147, 142, 83, 61, 29, 0, 415, 322, 287, 234, 310, 207, 182, 104, 132, 124, 74, 38, 0), (421, 393, 341, 374, 303, 145, 189, 151, 147, 85, 63, 31, 0, 422, 325, 291, 237, 317, 214, 185, 105, 136, 126, 75, 38, 0), (427, 397, 349, 381, 310, 149, 191, 152, 149, 88, 63, 33, 0, 429, 335, 296, 244, 324, 222, 187, 109, 142, 126, 77, 39, 0), (443, 411, 355, 395, 324, 151, 192, 154, 156, 91, 65, 33, 0, 441, 343, 304, 252, 332, 225, 193, 111, 145, 130, 79, 39, 0), (456, 421, 360, 398, 333, 152, 195, 159, 162, 93, 66, 34, 0, 451, 351, 310, 255, 345, 229, 197, 112, 151, 133, 79, 40, 0), (464, 431, 370, 412, 343, 155, 200, 165, 164, 94, 66, 35, 0, 460, 357, 317, 264, 355, 233, 200, 112, 157, 137, 79, 40, 0), (473, 441, 375, 422, 349, 161, 208, 169, 168, 94, 68, 36, 0, 471, 364, 322, 271, 367, 235, 203, 113, 160, 142, 81, 40, 0), (474, 449, 389, 429, 357, 162, 214, 171, 170, 95, 70, 37, 0, 481, 369, 328, 277, 378, 240, 205, 116, 161, 144, 82, 40, 0), (482, 460, 398, 442, 363, 166, 219, 175, 171, 98, 72, 37, 0, 486, 382, 329, 282, 386, 242, 209, 117, 165, 146, 83, 40, 0), (490, 470, 406, 450, 369, 170, 226, 176, 173, 100, 72, 39, 0, 496, 387, 332, 286, 402, 248, 211, 118, 171, 147, 85, 42, 0), (505, 473, 415, 456, 378, 172, 233, 181, 178, 100, 74, 40, 0, 504, 396, 337, 291, 411, 256, 216, 121, 176, 153, 88, 42, 0), (513, 478, 422, 466, 388, 174, 235, 187, 184, 103, 74, 41, 0, 515, 404, 343, 297, 417, 263, 220, 125, 181, 157, 88, 44, 0), (522, 488, 430, 475, 399, 180, 238, 191, 188, 104, 74, 42, 0, 527, 411, 350, 302, 422, 267, 224, 125, 182, 159, 89, 44, 0), (533, 496, 439, 486, 408, 185, 240, 196, 195, 105, 77, 44, 0, 545, 421, 360, 308, 429, 280, 225, 131, 187, 159, 90, 44, 0), (539, 507, 442, 492, 415, 189, 240, 201, 196, 105, 77, 45, 0, 556, 427, 364, 316, 434, 286, 228, 135, 190, 162, 90, 44, 0), (553, 520, 455, 501, 424, 195, 245, 204, 203, 106, 77, 46, 0, 566, 437, 372, 320, 441, 292, 233, 136, 192, 165, 91, 44, 0), (562, 533, 461, 511, 437, 196, 248, 206, 209, 111, 78, 47, 0, 576, 446, 381, 324, 448, 303, 234, 140, 196, 171, 91, 44, 0), (571, 538, 468, 521, 444, 198, 249, 210, 216, 112, 78, 47, 0, 584, 452, 382, 331, 457, 307, 238, 142, 199, 174, 92, 44, 0), (580, 552, 478, 534, 457, 203, 253, 211, 218, 114, 81, 47, 0, 593, 456, 392, 336, 466, 309, 244, 145, 201, 176, 95, 45, 0), (589, 564, 480, 542, 466, 207, 255, 213, 223, 117, 82, 48, 0, 606, 462, 398, 341, 475, 313, 246, 147, 207, 180, 95, 45, 0), (598, 570, 492, 554, 469, 210, 256, 217, 227, 119, 83, 50, 0, 619, 472, 406, 347, 483, 322, 250, 149, 211, 186, 99, 46, 0), (613, 578, 501, 565, 477, 211, 262, 220, 230, 123, 84, 52, 0, 636, 479, 415, 349, 493, 322, 252, 150, 214, 191, 102, 50, 0), (624, 585, 508, 571, 486, 216, 265, 226, 234, 124, 87, 53, 0, 647, 487, 422, 355, 502, 328, 256, 154, 219, 194, 105, 51, 0), (633, 593, 511, 575, 491, 218, 270, 228, 237, 127, 87, 55, 0, 654, 493, 430, 358, 508, 332, 260, 156, 224, 195, 106, 51, 0), (639, 598, 523, 582, 502, 221, 271, 229, 244, 127, 89, 56, 0, 668, 501, 437, 361, 517, 339, 266, 161, 225, 198, 109, 51, 0), (650, 603, 536, 588, 508, 225, 272, 231, 245, 129, 90, 56, 0, 679, 510, 441, 370, 522, 344, 270, 164, 229, 203, 110, 52, 0), (659, 611, 540, 600, 513, 226, 277, 235, 252, 131, 91, 56, 0, 691, 515, 446, 378, 528, 352, 274, 165, 233, 205, 111, 52, 0), (669, 622, 548, 608, 519, 229, 282, 236, 253, 135, 91, 56, 0, 701, 520, 452, 380, 542, 358, 277, 172, 238, 205, 112, 53, 0), (683, 630, 553, 612, 526, 234, 285, 238, 257, 136, 92, 58, 0, 709, 533, 460, 387, 551, 362, 281, 173, 242, 208, 115, 55, 0), (691, 639, 561, 621, 529, 237, 291, 241, 259, 139, 97, 58, 0, 718, 537, 462, 390, 560, 364, 284, 174, 245, 211, 117, 57, 0), (702, 647, 567, 626, 536, 241, 294, 242, 261, 140, 100, 59, 0, 733, 547, 465, 397, 569, 368, 287, 174, 250, 218, 120, 58, 0), (709, 660, 572, 634, 541, 244, 296, 247, 266, 145, 100, 61, 0, 743, 553, 470, 407, 580, 372, 290, 174, 252, 219, 122, 58, 0), (716, 669, 581, 641, 553, 249, 299, 250, 271, 146, 102, 62, 0, 751, 560, 476, 417, 586, 374, 292, 176, 259, 220, 123, 59, 0), (727, 676, 589, 647, 557, 251, 301, 253, 274, 148, 102, 64, 0, 758, 570, 483, 420, 595, 378, 302, 176, 262, 226, 129, 59, 0), (736, 683, 597, 667, 567, 255, 304, 256, 278, 152, 102, 65, 0, 769, 574, 490, 427, 605, 381, 305, 182, 262, 229, 130, 59, 0), (746, 691, 598, 673, 573, 262, 305, 258, 281, 152, 102, 65, 0, 777, 584, 494, 434, 617, 383, 312, 184, 263, 229, 133, 62, 0), (753, 702, 608, 681, 581, 265, 307, 259, 286, 154, 104, 65, 0, 789, 591, 500, 438, 627, 385, 312, 188, 267, 235, 134, 63, 0), (762, 710, 615, 696, 590, 272, 309, 262, 286, 154, 104, 66, 0, 797, 598, 511, 440, 635, 389, 321, 189, 268, 237, 138, 65, 0), (766, 716, 623, 701, 598, 274, 312, 265, 290, 155, 107, 69, 0, 799, 608, 520, 443, 642, 396, 325, 189, 271, 237, 140, 66, 0), (777, 723, 629, 712, 605, 278, 314, 268, 291, 156, 107, 70, 0, 808, 614, 523, 450, 652, 399, 330, 189, 277, 239, 141, 66, 0), (786, 727, 634, 724, 612, 284, 319, 269, 295, 158, 109, 71, 0, 818, 625, 531, 456, 660, 404, 334, 190, 281, 242, 142, 68, 0), (802, 736, 647, 733, 620, 286, 322, 272, 296, 161, 110, 71, 0, 827, 630, 535, 463, 665, 404, 336, 192, 281, 242, 144, 68, 0), (811, 746, 659, 738, 630, 289, 322, 275, 298, 164, 111, 73, 0, 839, 636, 537, 469, 676, 409, 340, 194, 283, 243, 146, 68, 0), (818, 751, 669, 746, 636, 292, 326, 275, 301, 167, 111, 73, 0, 853, 643, 543, 473, 680, 413, 346, 195, 287, 246, 148, 68, 0), (825, 760, 675, 762, 639, 294, 327, 278, 304, 169, 111, 74, 0, 856, 652, 552, 480, 689, 417, 349, 198, 291, 248, 148, 68, 0), (836, 773, 687, 774, 645, 297, 329, 283, 309, 170, 112, 75, 0, 866, 658, 556, 484, 694, 420, 350, 200, 295, 253, 150, 70, 0), (845, 785, 696, 786, 652, 300, 331, 284, 311, 172, 113, 75, 0, 874, 670, 562, 489, 697, 423, 351, 200, 296, 255, 151, 70, 0), (860, 794, 700, 793, 660, 304, 333, 284, 316, 173, 115, 76, 0, 886, 675, 571, 495, 705, 426, 358, 205, 299, 256, 154, 72, 0), (871, 801, 712, 805, 665, 309, 338, 289, 319, 173, 117, 76, 0, 899, 684, 580, 500, 715, 435, 362, 207, 302, 261, 155, 73, 0), (882, 810, 720, 815, 672, 310, 340, 292, 325, 176, 117, 77, 0, 910, 691, 587, 506, 722, 439, 366, 210, 307, 264, 157, 73, 0), (886, 817, 731, 824, 679, 315, 344, 294, 326, 179, 118, 78, 0, 922, 695, 592, 511, 733, 442, 371, 215, 310, 267, 160, 73, 0), (895, 823, 739, 831, 684, 321, 350, 299, 332, 180, 118, 80, 0, 929, 702, 596, 516, 740, 444, 374, 221, 312, 270, 162, 73, 0), (902, 829, 750, 842, 691, 327, 355, 301, 338, 181, 120, 80, 0, 939, 711, 601, 521, 743, 445, 378, 222, 316, 272, 163, 73, 0), (909, 835, 756, 852, 699, 331, 360, 304, 339, 183, 121, 81, 0, 947, 716, 611, 524, 754, 452, 384, 222, 318, 275, 165, 74, 0), (922, 842, 768, 858, 704, 335, 365, 305, 341, 186, 121, 81, 0, 954, 723, 617, 526, 761, 455, 388, 225, 320, 277, 167, 76, 0), (930, 850, 775, 869, 706, 339, 368, 307, 347, 188, 125, 82, 0, 965, 730, 623, 530, 773, 461, 392, 226, 325, 278, 168, 80, 0), (941, 855, 783, 873, 712, 345, 372, 308, 348, 188, 127, 83, 0, 976, 740, 630, 537, 785, 466, 395, 226, 327, 283, 169, 80, 0), (949, 862, 794, 878, 718, 348, 376, 313, 352, 193, 128, 84, 0, 988, 748, 640, 547, 790, 468, 399, 228, 333, 284, 174, 80, 0), (954, 870, 805, 887, 728, 351, 378, 318, 354, 194, 130, 84, 0, 1002, 754, 644, 553, 795, 473, 404, 230, 339, 285, 175, 83, 0), (962, 877, 812, 897, 737, 353, 383, 319, 359, 196, 132, 84, 0, 1013, 760, 652, 557, 801, 479, 406, 232, 340, 290, 175, 83, 0), (972, 883, 817, 903, 744, 355, 384, 322, 360, 197, 133, 84, 0, 1030, 766, 656, 562, 809, 481, 411, 235, 345, 292, 177, 83, 0), (984, 891, 825, 912, 751, 358, 386, 322, 366, 198, 133, 84, 0, 1038, 777, 659, 562, 818, 485, 412, 240, 349, 293, 179, 83, 0), (990, 901, 833, 916, 755, 361, 390, 324, 369, 198, 135, 85, 0, 1042, 783, 664, 567, 826, 489, 417, 243, 353, 293, 180, 83, 0), (1004, 907, 837, 924, 761, 363, 395, 326, 375, 199, 135, 85, 0, 1053, 788, 672, 568, 834, 491, 418, 245, 358, 299, 180, 85, 0), (1011, 918, 843, 934, 767, 369, 400, 327, 376, 201, 137, 85, 0, 1066, 798, 678, 572, 841, 493, 423, 246, 361, 302, 182, 87, 0), (1020, 926, 852, 944, 771, 374, 404, 328, 378, 202, 137, 85, 0, 1074, 807, 684, 575, 849, 495, 426, 249, 363, 305, 185, 87, 0), (1029, 936, 861, 954, 777, 379, 408, 331, 381, 206, 137, 85, 0, 1084, 809, 689, 577, 854, 498, 431, 252, 366, 308, 185, 87, 0), (1038, 944, 874, 965, 786, 381, 409, 331, 383, 206, 138, 85, 0, 1092, 812, 693, 583, 860, 502, 438, 253, 371, 309, 188, 87, 0), (1043, 954, 879, 973, 792, 383, 412, 334, 387, 207, 140, 85, 0, 1100, 817, 699, 588, 865, 508, 441, 256, 375, 314, 193, 87, 0), (1053, 961, 884, 981, 795, 384, 417, 336, 389, 208, 142, 86, 0, 1108, 829, 703, 590, 874, 512, 441, 257, 379, 317, 197, 87, 0), (1063, 968, 889, 989, 803, 385, 422, 339, 391, 211, 142, 86, 0, 1120, 836, 710, 600, 882, 517, 443, 260, 387, 318, 198, 88, 0), (1073, 973, 894, 997, 809, 388, 425, 342, 396, 211, 142, 86, 0, 1126, 847, 718, 605, 895, 522, 445, 263, 390, 322, 202, 89, 0), (1085, 980, 901, 1005, 817, 391, 430, 345, 404, 212, 144, 87, 0, 1136, 860, 724, 605, 900, 524, 449, 266, 393, 326, 206, 90, 0), (1093, 987, 910, 1015, 823, 395, 433, 349, 408, 214, 144, 88, 0, 1147, 866, 730, 619, 907, 528, 453, 267, 400, 328, 209, 90, 0), (1106, 991, 921, 1026, 831, 399, 434, 354, 411, 216, 145, 88, 0, 1154, 876, 738, 622, 916, 530, 458, 267, 402, 336, 210, 90, 0), (1123, 996, 926, 1041, 841, 400, 438, 355, 413, 217, 145, 88, 0, 1162, 886, 746, 624, 924, 536, 461, 269, 404, 341, 210, 91, 0), (1131, 1004, 935, 1049, 848, 406, 441, 356, 414, 217, 147, 89, 0, 1171, 897, 756, 627, 931, 539, 467, 273, 408, 346, 210, 91, 0), (1147, 1012, 940, 1057, 850, 410, 442, 357, 415, 220, 147, 90, 0, 1184, 908, 766, 629, 933, 542, 469, 273, 410, 347, 211, 92, 0), (1155, 1021, 943, 1062, 860, 412, 445, 359, 421, 220, 149, 91, 0, 1195, 912, 769, 632, 940, 549, 476, 274, 413, 349, 214, 92, 0), (1167, 1030, 950, 1070, 867, 413, 450, 360, 424, 220, 150, 91, 0, 1206, 917, 771, 636, 951, 554, 478, 275, 419, 352, 217, 92, 0), (1174, 1035, 953, 1083, 873, 414, 455, 360, 426, 221, 153, 91, 0, 1209, 924, 777, 641, 959, 559, 479, 277, 421, 358, 221, 93, 0), (1180, 1045, 961, 1097, 879, 415, 459, 365, 427, 222, 154, 93, 0, 1213, 929, 782, 646, 969, 561, 480, 283, 425, 358, 221, 93, 0), (1191, 1049, 968, 1103, 888, 421, 461, 370, 431, 223, 155, 95, 0, 1225, 939, 789, 648, 973, 566, 483, 285, 428, 360, 224, 93, 0), (1201, 1051, 975, 1108, 902, 426, 463, 373, 435, 225, 157, 96, 0, 1233, 950, 796, 651, 985, 571, 485, 288, 432, 363, 227, 94, 0), (1205, 1057, 983, 1117, 911, 429, 464, 374, 441, 227, 158, 97, 0, 1239, 960, 803, 654, 997, 571, 486, 294, 435, 366, 230, 95, 0), (1213, 1060, 989, 1123, 918, 433, 466, 377, 444, 230, 158, 97, 0, 1243, 966, 811, 660, 1003, 574, 488, 296, 438, 371, 232, 95, 0), (1216, 1062, 999, 1134, 924, 437, 468, 377, 446, 231, 159, 97, 0, 1251, 976, 815, 663, 1013, 575, 491, 298, 444, 372, 235, 95, 0), (1221, 1067, 1007, 1138, 928, 441, 476, 379, 449, 231, 160, 97, 0, 1257, 983, 820, 668, 1021, 580, 492, 299, 446, 378, 235, 95, 0), (1235, 1074, 1018, 1142, 934, 442, 476, 380, 451, 232, 160, 98, 0, 1262, 991, 824, 673, 1028, 584, 496, 299, 452, 379, 237, 95, 0), (1245, 1077, 1026, 1152, 941, 447, 480, 380, 458, 236, 160, 98, 0, 1276, 1000, 832, 677, 1034, 588, 501, 301, 456, 381, 238, 95, 0), (1253, 1080, 1031, 1159, 943, 448, 483, 382, 462, 236, 162, 99, 0, 1288, 1009, 835, 678, 1040, 590, 502, 301, 458, 384, 238, 95, 0), (1256, 1086, 1038, 1170, 947, 450, 487, 385, 466, 238, 163, 101, 0, 1297, 1013, 842, 683, 1046, 594, 507, 303, 462, 388, 239, 95, 0), (1261, 1089, 1046, 1179, 957, 452, 488, 388, 470, 243, 165, 101, 0, 1308, 1022, 847, 687, 1053, 599, 512, 306, 466, 392, 240, 96, 0), (1270, 1093, 1055, 1186, 965, 456, 490, 389, 471, 245, 168, 102, 0, 1321, 1033, 853, 692, 1060, 601, 514, 306, 470, 395, 243, 97, 0), (1281, 1099, 1062, 1189, 974, 458, 493, 389, 475, 245, 168, 103, 0, 1328, 1044, 859, 699, 1075, 606, 518, 311, 475, 396, 245, 101, 0), (1300, 1106, 1070, 1197, 976, 461, 496, 392, 480, 245, 168, 104, 0, 1339, 1056, 863, 702, 1083, 609, 522, 311, 479, 400, 247, 102, 0), (1310, 1115, 1075, 1201, 979, 462, 499, 397, 482, 245, 169, 105, 0, 1350, 1063, 868, 705, 1088, 615, 523, 314, 483, 402, 247, 102, 0), (1319, 1121, 1083, 1210, 985, 464, 502, 404, 485, 245, 170, 105, 0, 1362, 1072, 873, 708, 1099, 621, 530, 317, 486, 405, 247, 103, 0), (1324, 1127, 1087, 1218, 992, 465, 504, 405, 490, 246, 172, 105, 0, 1370, 1077, 877, 712, 1104, 624, 532, 319, 492, 406, 249, 103, 0), (1337, 1131, 1091, 1223, 995, 468, 505, 409, 493, 247, 172, 108, 0, 1380, 1084, 888, 714, 1110, 630, 535, 320, 494, 411, 251, 104, 0), (1343, 1140, 1102, 1233, 1006, 472, 509, 412, 497, 250, 172, 109, 0, 1390, 1091, 896, 718, 1119, 633, 536, 322, 498, 413, 252, 104, 0), (1357, 1142, 1107, 1236, 1013, 473, 511, 413, 498, 251, 173, 109, 0, 1407, 1098, 903, 722, 1124, 637, 537, 324, 499, 416, 255, 105, 0), (1364, 1150, 1114, 1243, 1019, 476, 513, 416, 502, 252, 173, 110, 0, 1417, 1100, 910, 725, 1131, 639, 538, 328, 504, 419, 256, 106, 0), (1370, 1155, 1120, 1248, 1026, 484, 514, 418, 507, 252, 175, 110, 0, 1434, 1112, 917, 732, 1141, 643, 541, 328, 507, 423, 256, 106, 0), (1378, 1160, 1129, 1254, 1034, 484, 518, 422, 512, 252, 177, 110, 0, 1448, 1117, 922, 737, 1150, 645, 544, 331, 510, 424, 257, 106, 0), (1385, 1167, 1130, 1262, 1041, 489, 518, 427, 513, 252, 178, 111, 0, 1460, 1124, 929, 739, 1161, 648, 545, 335, 515, 428, 259, 107, 0), (1392, 1173, 1137, 1270, 1049, 493, 519, 428, 514, 252, 180, 111, 0, 1467, 1131, 932, 741, 1172, 652, 547, 336, 516, 432, 260, 107, 0), (1407, 1180, 1142, 1277, 1057, 494, 524, 431, 519, 255, 181, 113, 0, 1474, 1139, 938, 743, 1176, 655, 549, 337, 519, 434, 262, 108, 0), (1412, 1186, 1148, 1285, 1062, 498, 528, 433, 523, 256, 182, 113, 0, 1487, 1146, 942, 744, 1183, 657, 552, 339, 519, 439, 262, 108, 0), (1420, 1197, 1157, 1295, 1070, 498, 530, 434, 528, 257, 182, 114, 0, 1492, 1151, 946, 749, 1188, 661, 556, 340, 520, 440, 266, 110, 0), (1428, 1200, 1161, 1299, 1079, 501, 531, 436, 532, 259, 182, 114, 0, 1499, 1156, 955, 754, 1198, 666, 559, 342, 526, 442, 269, 110, 0), (1436, 1203, 1169, 1308, 1086, 504, 533, 439, 537, 260, 183, 114, 0, 1508, 1164, 959, 758, 1203, 669, 560, 345, 527, 444, 270, 110, 0), (1438, 1213, 1176, 1322, 1090, 506, 537, 440, 540, 261, 183, 114, 0, 1513, 1169, 965, 762, 1208, 672, 562, 349, 531, 447, 271, 111, 0), (1449, 1217, 1183, 1334, 1096, 511, 540, 442, 545, 263, 186, 114, 0, 1518, 1176, 972, 762, 1212, 675, 562, 352, 534, 447, 274, 111, 0), (1458, 1220, 1192, 1345, 1097, 511, 541, 445, 546, 265, 186, 114, 0, 1528, 1185, 973, 768, 1218, 678, 562, 354, 536, 449, 274, 112, 0), (1463, 1223, 1205, 1351, 1108, 513, 545, 446, 550, 266, 186, 114, 0, 1534, 1197, 978, 779, 1230, 683, 565, 355, 542, 450, 276, 112, 0), (1467, 1225, 1209, 1355, 1112, 516, 548, 449, 551, 268, 186, 114, 0, 1543, 1205, 985, 781, 1234, 684, 567, 356, 543, 452, 276, 112, 0), (1476, 1229, 1217, 1365, 1122, 518, 551, 450, 554, 270, 188, 114, 0, 1549, 1207, 988, 784, 1241, 687, 570, 359, 545, 455, 276, 112, 0), (1485, 1235, 1223, 1373, 1128, 520, 552, 450, 560, 271, 188, 116, 0, 1551, 1213, 993, 786, 1247, 690, 572, 360, 547, 457, 277, 113, 0), (1493, 1242, 1231, 1382, 1137, 525, 553, 453, 562, 273, 188, 117, 0, 1560, 1219, 998, 787, 1255, 697, 574, 364, 548, 459, 277, 114, 0), (1503, 1247, 1236, 1391, 1144, 528, 554, 455, 564, 273, 188, 117, 0, 1567, 1224, 1004, 789, 1260, 700, 576, 367, 551, 462, 279, 115, 0), (1515, 1250, 1242, 1393, 1151, 532, 559, 455, 567, 273, 190, 117, 0, 1572, 1229, 1010, 792, 1270, 705, 578, 370, 553, 466, 279, 115, 0), (1520, 1255, 1247, 1403, 1161, 537, 562, 456, 570, 273, 193, 118, 0, 1578, 1234, 1017, 796, 1274, 712, 580, 371, 558, 468, 280, 117, 0), (1530, 1259, 1252, 1407, 1164, 538, 562, 457, 571, 276, 194, 119, 0, 1583, 1236, 1021, 799, 1281, 715, 583, 372, 562, 468, 281, 117, 0), (1541, 1268, 1255, 1415, 1165, 540, 562, 458, 572, 277, 195, 121, 0, 1589, 1243, 1024, 801, 1285, 716, 583, 374, 564, 470, 281, 118, 0), (1542, 1273, 1260, 1418, 1170, 541, 563, 461, 577, 277, 197, 121, 0, 1598, 1249, 1028, 803, 1289, 720, 584, 374, 570, 471, 283, 119, 0), (1547, 1276, 1265, 1421, 1175, 544, 567, 465, 579, 277, 200, 121, 0, 1606, 1254, 1032, 806, 1292, 724, 587, 379, 571, 472, 286, 119, 0), (1552, 1281, 1270, 1426, 1188, 547, 572, 467, 581, 278, 200, 122, 0, 1611, 1259, 1038, 813, 1297, 727, 588, 381, 574, 472, 289, 119, 0), (1556, 1284, 1278, 1436, 1192, 550, 573, 467, 584, 278, 200, 124, 0, 1617, 1263, 1047, 814, 1300, 731, 591, 382, 578, 473, 293, 119, 0), (1558, 1285, 1282, 1443, 1197, 554, 574, 468, 585, 279, 200, 125, 0, 1620, 1265, 1048, 816, 1305, 734, 593, 384, 578, 475, 293, 119, 0), (1565, 1290, 1285, 1449, 1200, 556, 574, 468, 587, 280, 201, 125, 0, 1628, 1272, 1052, 817, 1310, 734, 594, 384, 581, 477, 293, 119, 0), (1570, 1292, 1292, 1455, 1207, 558, 575, 469, 591, 282, 202, 125, 0, 1633, 1273, 1053, 819, 1318, 736, 595, 386, 583, 478, 293, 119, 0), (1575, 1297, 1300, 1455, 1207, 561, 575, 473, 592, 285, 204, 126, 0, 1638, 1278, 1056, 824, 1324, 738, 595, 388, 586, 479, 294, 119, 0), (1579, 1299, 1305, 1457, 1211, 561, 575, 478, 594, 285, 205, 126, 0, 1642, 1287, 1063, 825, 1326, 739, 597, 390, 589, 480, 294, 119, 0), (1584, 1301, 1305, 1458, 1216, 565, 578, 478, 597, 285, 205, 128, 0, 1647, 1289, 1065, 827, 1331, 741, 599, 390, 589, 482, 294, 119, 0), (1587, 1305, 1312, 1460, 1216, 565, 585, 478, 601, 286, 205, 128, 0, 1649, 1292, 1068, 829, 1335, 743, 600, 392, 592, 482, 296, 119, 0), (1589, 1307, 1317, 1462, 1218, 568, 586, 480, 604, 286, 206, 128, 0, 1653, 1292, 1072, 832, 1339, 745, 601, 395, 593, 485, 296, 120, 0), (1589, 1307, 1317, 1462, 1218, 568, 586, 480, 604, 286, 206, 128, 0, 1653, 1292, 1072, 832, 1339, 745, 601, 395, 593, 485, 296, 120, 0)) passenger_arriving_rate = ((5.020865578371768, 5.064847846385402, 4.342736024677089, 4.661000830397574, 3.7031237384064077, 1.8308820436884476, 2.0730178076869574, 1.938823405408093, 2.030033020722669, 0.9895037538805926, 0.7008775273142672, 0.4081595898588478, 0.0, 5.083880212578363, 4.489755488447325, 3.5043876365713356, 2.968511261641777, 4.060066041445338, 2.7143527675713304, 2.0730178076869574, 1.3077728883488913, 1.8515618692032039, 1.5536669434658585, 0.8685472049354179, 0.4604407133077639, 0.0), (5.354327152019974, 5.399222302966028, 4.629455492775127, 4.968858189957462, 3.948326891649491, 1.9518237573581576, 2.209734470631847, 2.066464051210712, 2.164081775444303, 1.0547451730692876, 0.7471826893260219, 0.4351013884011963, 0.0, 5.419791647439855, 4.786115272413158, 3.73591344663011, 3.164235519207862, 4.328163550888606, 2.8930496716949965, 2.209734470631847, 1.3941598266843982, 1.9741634458247455, 1.6562860633191545, 0.9258910985550255, 0.49083839117872996, 0.0), (5.686723008979731, 5.732269739983398, 4.915035237956178, 5.275490778498595, 4.192641982499829, 2.072282983465593, 2.345909253980352, 2.193593853293508, 2.297595602292516, 1.1197284437551367, 0.7933038581293855, 0.46193605433775464, 0.0, 5.75436482820969, 5.0812965977153, 3.9665192906469278, 3.3591853312654094, 4.595191204585032, 3.0710313946109116, 2.345909253980352, 1.480202131046852, 2.0963209912499146, 1.758496926166199, 0.9830070475912357, 0.5211154309075817, 0.0), (6.016757793146562, 6.062668793441743, 5.198342391099879, 5.579682305649055, 4.435107784001268, 2.191782029841316, 2.4810018208239777, 2.3197088156227115, 2.430045053640364, 1.1841956746065454, 0.8390580686378972, 0.4885571404108718, 0.0, 6.086272806254225, 5.374128544519589, 4.195290343189486, 3.5525870238196355, 4.860090107280728, 3.247592341871796, 2.4810018208239777, 1.5655585927437972, 2.217553892000634, 1.8598941018830188, 1.0396684782199759, 0.551151708494704, 0.0), (6.343136148415981, 6.389098099345293, 5.478244083085864, 5.880216481036927, 4.674763069197661, 2.3098432043158894, 2.6144718342542292, 2.444304942164548, 2.560900681860902, 1.24788897429192, 0.8842623557650959, 0.514858199362897, 0.0, 6.414188632939817, 5.6634401929918665, 4.42131177882548, 3.743666922875759, 5.121801363721804, 3.422026919030367, 2.6144718342542292, 1.6498880030827783, 2.3373815345988307, 1.9600721603456428, 1.095648816617173, 0.5808270999404813, 0.0), (6.66456271868351, 6.710236293698289, 5.753607444793765, 6.175877014290295, 4.910646611132853, 2.4259888147198754, 2.745778957362612, 2.566878236885247, 2.689633039327186, 1.310550451479666, 0.9287337544245222, 0.5407327839361791, 0.0, 6.736785359632827, 5.948060623297969, 4.64366877212261, 3.9316513544389973, 5.379266078654372, 3.593629531639346, 2.745778957362612, 1.7328491533713395, 2.4553233055664263, 2.058625671430099, 1.1507214889587531, 0.6100214812452991, 0.0), (6.979742147844666, 7.024762012504959, 6.023299607103222, 6.465447615037239, 5.141797182850695, 2.5397411688838374, 2.8743828532406313, 2.686924703751037, 2.8157126784122717, 1.3719222148381898, 0.9722892995297139, 0.5660744468730674, 0.0, 7.052736037699606, 6.22681891560374, 4.8614464976485685, 4.115766644514569, 5.631425356824543, 3.761694585251452, 2.8743828532406313, 1.8141008349170267, 2.5708985914253475, 2.1551492050124135, 1.2046599214206444, 0.6386147284095418, 0.0), (7.2873790797949685, 7.331353891769537, 6.286187700893863, 6.747711992905847, 5.367253557395036, 2.650622574638337, 2.9997431849797924, 2.8039403467281465, 2.9386101514892147, 1.4317463730358968, 1.0147460259942116, 0.5907767409159108, 0.0, 7.360713718506519, 6.498544150075018, 5.073730129971057, 4.2952391191076895, 5.877220302978429, 3.9255164854194056, 2.9997431849797924, 1.8933018390273837, 2.683626778697518, 2.249237330968616, 1.2572375401787725, 0.6664867174335943, 0.0), (7.586178158429934, 7.628690567496257, 6.54113885704533, 7.021453857524196, 5.586054507809724, 2.7581553398139356, 3.1213196156715988, 2.917421169782802, 3.0577960109310682, 1.4897650347411937, 1.0559209687315536, 0.6147332188070586, 0.0, 7.659391453419917, 6.762065406877643, 5.279604843657768, 4.469295104223581, 6.1155920218621365, 4.084389637695923, 3.1213196156715988, 1.970110957009954, 2.793027253904862, 2.3404846191747324, 1.3082277714090662, 0.6935173243178416, 0.0), (7.874844027645085, 7.915450675689353, 6.787020206437253, 7.285456918520376, 5.797238807138606, 2.861861772241199, 3.23857180840756, 3.0268631768812346, 3.1727408091108913, 1.5457203086224858, 1.0956311626552797, 0.6378374332888596, 0.0, 7.947442293806162, 7.016211766177453, 5.478155813276398, 4.637160925867456, 6.345481618221783, 4.237608447633728, 3.23857180840756, 2.044186980172285, 2.898619403569303, 2.4284856395067926, 1.3574040412874508, 0.7195864250626686, 0.0), (8.152081331335932, 8.190312852353056, 7.022698879949271, 7.538504885522466, 5.999845228425533, 2.961264179750688, 3.3509594262791773, 3.1317623719896712, 3.282915098401738, 1.599354303348179, 1.133693642678929, 0.6599829371036627, 0.0, 8.22353929103161, 7.259812308140289, 5.668468213394645, 4.798062910044536, 6.565830196803476, 4.384467320785539, 3.3509594262791773, 2.11518869982192, 2.9999226142127666, 2.5128349618408223, 1.4045397759898541, 0.7445738956684597, 0.0), (8.416594713398005, 8.451955733491605, 7.247042008461013, 7.779381468158547, 6.192912544714355, 3.055884870172965, 3.457942132377958, 3.2316147590743394, 3.3877894311766643, 1.6504091275866801, 1.1699254437160416, 0.6810632829938176, 0.0, 8.486355496462611, 7.491696112931993, 5.849627218580208, 4.951227382760039, 6.775578862353329, 4.524260662704076, 3.457942132377958, 2.1827749072664036, 3.0964562723571776, 2.5931271560528497, 1.4494084016922026, 0.7683596121356006, 0.0), (8.667088817726812, 8.699057955109222, 7.458916722852117, 8.006870376056709, 6.375479529048918, 3.1452461513385908, 3.5589795897954057, 3.325916342101467, 3.486834359808726, 1.6986268900063934, 1.2041436006801558, 0.7009720237016724, 0.0, 8.734563961465534, 7.710692260718395, 6.020718003400779, 5.095880670019179, 6.973668719617452, 4.656282878942054, 3.5589795897954057, 2.246604393813279, 3.187739764524459, 2.6689567920189035, 1.4917833445704234, 0.7908234504644749, 0.0), (8.902268288217876, 8.93029815321015, 7.657190154002218, 8.219755318845033, 6.546584954473067, 3.2288703310781304, 3.653531461623028, 3.414163125037284, 3.579520436670977, 1.7437496992757264, 1.2361651484848115, 0.7196027119695768, 0.0, 8.966837737406735, 7.915629831665344, 6.180825742424058, 5.2312490978271775, 7.159040873341954, 4.7798283750521975, 3.653531461623028, 2.306335950770093, 3.2732924772365335, 2.7399184396150114, 1.5314380308004438, 0.8118452866554684, 0.0), (9.120837768766716, 9.144354963798623, 7.840729432790956, 8.416820006151594, 6.705267594030659, 3.306279717222145, 3.7410574109523305, 3.4958511118480193, 3.6653182141364735, 1.785519664063084, 1.2658071220435476, 0.7368489005398801, 0.0, 9.181849875652563, 8.10533790593868, 6.329035610217737, 5.3565589921892505, 7.330636428272947, 4.894191556587227, 3.7410574109523305, 2.3616283694443894, 3.3526337970153297, 2.8056066687171985, 1.5681458865581912, 0.8313049967089657, 0.0), (9.321501903268855, 9.339907022878865, 8.008401690097953, 8.59684814760449, 6.850566220765538, 3.376996617601199, 3.821017100874813, 3.5704763064998986, 3.743698244578273, 1.823678893036873, 1.2928865562699035, 0.752604142154931, 0.0, 9.37827342756938, 8.27864556370424, 6.464432781349516, 5.471036679110618, 7.487396489156546, 4.998666829099858, 3.821017100874813, 2.4121404411437135, 3.425283110382769, 2.865616049201497, 1.6016803380195905, 0.8490824566253515, 0.0), (9.5029653356198, 9.51563296645512, 8.159074056802854, 8.758623452831788, 6.981519607721555, 3.4405433400458514, 3.892870194481988, 3.6375347129591504, 3.8141310803694286, 1.8579694948654994, 1.3172204860774188, 0.7667619895570784, 0.0, 9.554781444523545, 8.434381885127861, 6.586102430387094, 5.5739084845964975, 7.628262160738857, 5.092548598142811, 3.892870194481988, 2.4575309571756083, 3.4907598038607777, 2.9195411509439295, 1.6318148113605708, 0.8650575424050111, 0.0), (9.663932709715075, 9.670211430531618, 8.291613663785293, 8.900929631461583, 7.097166527942559, 3.4964421923866666, 3.9560763548653552, 3.6965223351920073, 3.8760872738829946, 1.8881335782173672, 1.3386259463796333, 0.7792159954886714, 0.0, 9.710046977881415, 8.571375950375383, 6.693129731898166, 5.6644007346521, 7.752174547765989, 5.17513126926881, 3.9560763548653552, 2.4974587088476192, 3.5485832639712793, 2.9669765438205284, 1.6583227327570589, 0.8791101300483289, 0.0), (9.803108669450204, 9.802321051112584, 8.404887641924901, 9.022550393121959, 7.1965457544723925, 3.5442154824542103, 4.010095245116426, 3.746935177164692, 3.929037377492032, 1.9139132517608846, 1.3569199720900849, 0.7898597126920597, 0.0, 9.842743079009345, 8.688456839612655, 6.784599860450424, 5.741739755282652, 7.858074754984064, 5.245709248030569, 4.010095245116426, 2.531582487467293, 3.5982728772361963, 3.0075167977073205, 1.6809775283849802, 0.8911200955556896, 0.0), (9.919197858720699, 9.910640464202265, 8.497763122101317, 9.122269447440985, 7.2786960603549105, 3.5833855180790386, 4.054386528326697, 3.7882692428434357, 3.9724519435695926, 1.9350506241644574, 1.3719195981223131, 0.7985866939095915, 0.0, 9.951542799273696, 8.784453633005505, 6.859597990611565, 5.80515187249337, 7.944903887139185, 5.30357693998081, 4.054386528326697, 2.55956108434217, 3.6393480301774552, 3.0407564824803295, 1.6995526244202632, 0.9009673149274788, 0.0), (10.010904921422082, 9.993848305804882, 8.569107235194169, 9.198870504046766, 7.342656218633962, 3.613474607091719, 4.088409867587681, 3.8200205361944657, 4.005801524488732, 1.95128780409649, 1.3834418593898585, 0.805290491883616, 0.0, 10.035119190040824, 8.858195410719775, 6.9172092969492915, 5.853863412289469, 8.011603048977465, 5.348028750672252, 4.088409867587681, 2.5810532907797996, 3.671328109316981, 3.0662901680155894, 1.713821447038834, 0.9085316641640803, 0.0), (10.076934501449866, 10.050623211924679, 8.6177871120831, 9.251137272567364, 7.387465002353392, 3.6340050573228124, 4.1116249259908795, 3.84168506118401, 4.028556672622507, 1.9623669002253892, 1.39130379080626, 0.8098646593564828, 0.0, 10.092145302677078, 8.90851125292131, 6.9565189540313, 5.887100700676166, 8.057113345245014, 5.378359085657614, 4.1116249259908795, 2.5957178980877234, 3.693732501176696, 3.0837124241891223, 1.72355742241662, 0.91369301926588, 0.0), (10.115991242699579, 10.079643818565883, 8.642669883647738, 9.277853462630876, 7.41216118455705, 3.644499176602881, 4.1234913666278, 3.852758821778298, 4.040187940343971, 1.968030021219561, 1.3953224272850568, 0.8122027490705409, 0.0, 10.121294188548827, 8.934230239775948, 6.976612136425284, 5.904090063658682, 8.080375880687942, 5.393862350489617, 4.1234913666278, 2.6032136975734863, 3.706080592278525, 3.09261782087696, 1.7285339767295478, 0.9163312562332622, 0.0), (10.13039336334264, 10.083079961133974, 8.645769318701419, 9.281198109567903, 7.418488037355065, 3.6458333333333335, 4.124902001129669, 3.8539557613168727, 4.0416420781893, 1.9686980681298587, 1.3958263395269568, 0.8124914647157445, 0.0, 10.125, 8.93740611187319, 6.9791316976347835, 5.906094204389575, 8.0832841563786, 5.395538065843622, 4.124902001129669, 2.604166666666667, 3.7092440186775324, 3.0937327031893016, 1.729153863740284, 0.9166436328303613, 0.0), (10.141012413034153, 10.08107561728395, 8.645262345679013, 9.280786458333335, 7.422071742409901, 3.6458333333333335, 4.124126906318083, 3.852291666666667, 4.041447222222222, 1.968287654320988, 1.39577076318743, 0.8124238683127573, 0.0, 10.125, 8.936662551440328, 6.978853815937151, 5.904862962962962, 8.082894444444443, 5.393208333333334, 4.124126906318083, 2.604166666666667, 3.7110358712049507, 3.0935954861111123, 1.7290524691358027, 0.9164614197530866, 0.0), (10.15140723021158, 10.077124771376313, 8.644261545496114, 9.279972029320987, 7.4255766303963355, 3.6458333333333335, 4.122599451303155, 3.8490226337448563, 4.041062242798354, 1.96747970964792, 1.3956605665710604, 0.8122904282883707, 0.0, 10.125, 8.935194711172077, 6.978302832855302, 5.902439128943758, 8.082124485596708, 5.388631687242799, 4.122599451303155, 2.604166666666667, 3.7127883151981678, 3.0933240097736636, 1.728852309099223, 0.9161022519433014, 0.0), (10.161577019048034, 10.071287780064015, 8.642780635573846, 9.278764081790122, 7.429002578947403, 3.6458333333333335, 4.120343359154361, 3.8442103909465026, 4.0404920781893, 1.9662876771833566, 1.3954967473084758, 0.8120929736320684, 0.0, 10.125, 8.933022709952752, 6.977483736542379, 5.898863031550069, 8.0809841563786, 5.381894547325103, 4.120343359154361, 2.604166666666667, 3.7145012894737013, 3.0929213605967085, 1.7285561271147696, 0.915571616369456, 0.0), (10.171520983716636, 10.063624999999998, 8.640833333333333, 9.277171874999999, 7.432349465696142, 3.6458333333333335, 4.117382352941177, 3.837916666666667, 4.039741666666666, 1.9647250000000003, 1.3952803030303031, 0.8118333333333335, 0.0, 10.125, 8.930166666666667, 6.976401515151515, 5.894175, 8.079483333333332, 5.373083333333334, 4.117382352941177, 2.604166666666667, 3.716174732848071, 3.0923906250000006, 1.7281666666666669, 0.914875, 0.0), (10.181238328390501, 10.054196787837219, 8.638433356195703, 9.275204668209877, 7.4356171682756, 3.6458333333333335, 4.113740155733075, 3.830203189300412, 4.038815946502057, 1.9628051211705537, 1.3950122313671698, 0.8115133363816492, 0.0, 10.125, 8.926646700198141, 6.9750611568358485, 5.88841536351166, 8.077631893004114, 5.3622844650205765, 4.113740155733075, 2.604166666666667, 3.7178085841378, 3.091734889403293, 1.7276866712391405, 0.9140178898033837, 0.0), (10.19072825724275, 10.043063500228623, 8.635594421582077, 9.272871720679012, 7.438805564318813, 3.6458333333333335, 4.109440490599533, 3.821131687242798, 4.037719855967078, 1.9605414837677189, 1.3946935299497027, 0.811134811766499, 0.0, 10.125, 8.922482929431489, 6.973467649748514, 5.881624451303155, 8.075439711934155, 5.349584362139917, 4.109440490599533, 2.604166666666667, 3.7194027821594067, 3.0909572402263383, 1.7271188843164156, 0.9130057727480568, 0.0), (10.199989974446497, 10.03028549382716, 8.63233024691358, 9.270182291666666, 7.441914531458824, 3.6458333333333335, 4.104507080610022, 3.8107638888888884, 4.036458333333333, 1.957947530864198, 1.39432519640853, 0.8106995884773662, 0.0, 10.125, 8.917695473251028, 6.9716259820426485, 5.873842592592593, 8.072916666666666, 5.335069444444444, 4.104507080610022, 2.604166666666667, 3.720957265729412, 3.0900607638888897, 1.7264660493827162, 0.9118441358024693, 0.0), (10.209022684174858, 10.01592312528578, 8.62865454961134, 9.267145640432098, 7.444943947328672, 3.6458333333333335, 4.09896364883402, 3.799161522633745, 4.035036316872428, 1.9550367055326936, 1.3939082283742779, 0.8102094955037343, 0.0, 10.125, 8.912304450541077, 6.969541141871389, 5.865110116598079, 8.070072633744855, 5.318826131687243, 4.09896364883402, 2.604166666666667, 3.722471973664336, 3.0890485468107003, 1.7257309099222682, 0.910538465935071, 0.0), (10.217825590600954, 10.00003675125743, 8.624581047096479, 9.263771026234568, 7.447893689561397, 3.6458333333333335, 4.092833918340999, 3.7863863168724285, 4.033458744855967, 1.951822450845908, 1.3934436234775742, 0.8096663618350862, 0.0, 10.125, 8.906329980185948, 6.96721811738787, 5.8554673525377225, 8.066917489711933, 5.3009408436214, 4.092833918340999, 2.604166666666667, 3.7239468447806985, 3.0879236754115236, 1.7249162094192958, 0.909094250114312, 0.0), (10.226397897897897, 9.98268672839506, 8.620123456790123, 9.260067708333333, 7.450763635790041, 3.6458333333333335, 4.086141612200436, 3.7725000000000004, 4.031730555555555, 1.9483182098765437, 1.392932379349046, 0.8090720164609053, 0.0, 10.125, 8.899792181069957, 6.96466189674523, 5.84495462962963, 8.06346111111111, 5.2815, 4.086141612200436, 2.604166666666667, 3.7253818178950207, 3.086689236111112, 1.724024691358025, 0.9075169753086421, 0.0), (10.23473881023881, 9.963933413351622, 8.615295496113397, 9.256044945987654, 7.453553663647644, 3.6458333333333335, 4.078910453481805, 3.7575643004115222, 4.029856687242798, 1.9445374256973027, 1.3923754936193207, 0.8084282883706753, 0.0, 10.125, 8.892711172077426, 6.961877468096604, 5.833612277091907, 8.059713374485597, 5.260590020576132, 4.078910453481805, 2.604166666666667, 3.726776831823822, 3.085348315329219, 1.7230590992226795, 0.9058121284865113, 0.0), (10.242847531796807, 9.943837162780063, 8.610110882487428, 9.25171199845679, 7.456263650767246, 3.6458333333333335, 4.071164165254579, 3.741640946502058, 4.0278420781893, 1.9404935413808875, 1.3917739639190256, 0.807737006553879, 0.0, 10.125, 8.88510707209267, 6.958869819595128, 5.821480624142661, 8.0556841563786, 5.238297325102881, 4.071164165254579, 2.604166666666667, 3.728131825383623, 3.0839039994855972, 1.7220221764974855, 0.9039851966163696, 0.0), (10.250723266745005, 9.922458333333331, 8.604583333333334, 9.247078125, 7.45889347478189, 3.6458333333333335, 4.062926470588235, 3.724791666666667, 4.025691666666666, 1.9362000000000004, 1.391128787878788, 0.8070000000000002, 0.0, 10.125, 8.877, 6.95564393939394, 5.8086, 8.051383333333332, 5.214708333333334, 4.062926470588235, 2.604166666666667, 3.729446737390945, 3.0823593750000007, 1.7209166666666669, 0.9020416666666666, 0.0), (10.258365219256524, 9.89985728166438, 8.598726566072246, 9.242152584876543, 7.4614430133246135, 3.6458333333333335, 4.054221092552247, 3.707078189300412, 4.023410390946502, 1.931670244627344, 1.3904409631292352, 0.8062190976985216, 0.0, 10.125, 8.868410074683737, 6.952204815646175, 5.79501073388203, 8.046820781893004, 5.189909465020577, 4.054221092552247, 2.604166666666667, 3.7307215066623067, 3.080717528292182, 1.7197453132144491, 0.8999870256058529, 0.0), (10.265772593504476, 9.876094364426155, 8.592554298125286, 9.23694463734568, 7.46391214402846, 3.6458333333333335, 4.04507175421609, 3.6885622427983544, 4.021003189300411, 1.92691771833562, 1.3897114873009937, 0.8053961286389272, 0.0, 10.125, 8.859357415028198, 6.948557436504967, 5.780753155006859, 8.042006378600822, 5.163987139917697, 4.04507175421609, 2.604166666666667, 3.73195607201423, 3.078981545781894, 1.7185108596250571, 0.8978267604023779, 0.0), (10.272944593661986, 9.851229938271604, 8.586080246913582, 9.231463541666667, 7.466300744526468, 3.6458333333333335, 4.035502178649238, 3.6693055555555554, 4.0184750000000005, 1.9219558641975314, 1.3889413580246914, 0.8045329218106996, 0.0, 10.125, 8.849862139917693, 6.944706790123457, 5.765867592592593, 8.036950000000001, 5.137027777777778, 4.035502178649238, 2.604166666666667, 3.733150372263234, 3.07715451388889, 1.7172160493827164, 0.8955663580246914, 0.0), (10.279880423902163, 9.82532435985368, 8.579318129858253, 9.225718557098766, 7.468608692451679, 3.6458333333333335, 4.025536088921165, 3.649369855967079, 4.015830761316872, 1.9167981252857802, 1.3881315729309558, 0.8036313062033228, 0.0, 10.125, 8.83994436823655, 6.940657864654778, 5.750394375857339, 8.031661522633744, 5.1091177983539104, 4.025536088921165, 2.604166666666667, 3.7343043462258394, 3.0752395190329227, 1.7158636259716507, 0.8932113054412438, 0.0), (10.286579288398128, 9.79843798582533, 8.57228166438043, 9.219718942901235, 7.4708358654371345, 3.6458333333333335, 4.015197208101347, 3.628816872427984, 4.0130754115226335, 1.9114579446730684, 1.3872831296504138, 0.8026931108062796, 0.0, 10.125, 8.829624218869075, 6.936415648252069, 5.734373834019204, 8.026150823045267, 5.0803436213991775, 4.015197208101347, 2.604166666666667, 3.7354179327185673, 3.073239647633746, 1.7144563328760862, 0.8907670896204848, 0.0), (10.293040391323, 9.770631172839506, 8.564984567901236, 9.213473958333335, 7.472982141115872, 3.6458333333333335, 4.004509259259259, 3.6077083333333335, 4.010213888888889, 1.9059487654320992, 1.3863970258136926, 0.8017201646090536, 0.0, 10.125, 8.818921810699589, 6.931985129068463, 5.717846296296297, 8.020427777777778, 5.050791666666667, 4.004509259259259, 2.604166666666667, 3.736491070557936, 3.0711579861111122, 1.7129969135802474, 0.8882391975308643, 0.0), (10.299262936849892, 9.741964277549155, 8.557440557841794, 9.206992862654321, 7.475047397120935, 3.6458333333333335, 3.993495965464375, 3.58610596707819, 4.007251131687243, 1.9002840306355744, 1.3854742590514195, 0.800714296601128, 0.0, 10.125, 8.807857262612407, 6.927371295257098, 5.700852091906722, 8.014502263374485, 5.020548353909466, 3.993495965464375, 2.604166666666667, 3.7375236985604676, 3.0689976208847747, 1.7114881115683587, 0.8856331161408324, 0.0), (10.305246129151927, 9.712497656607225, 8.549663351623229, 9.200284915123458, 7.477031511085363, 3.6458333333333335, 3.9821810497861696, 3.564071502057614, 4.0041920781893, 1.8944771833561962, 1.3845158269942222, 0.7996773357719861, 0.0, 10.125, 8.796450693491845, 6.92257913497111, 5.683431550068587, 8.0083841563786, 4.98970010288066, 3.9821810497861696, 2.604166666666667, 3.7385157555426813, 3.0667616383744867, 1.709932670324646, 0.8829543324188387, 0.0), (10.310989172402216, 9.682291666666666, 8.541666666666668, 9.193359375, 7.478934360642197, 3.6458333333333335, 3.9705882352941178, 3.541666666666667, 4.001041666666666, 1.8885416666666672, 1.3835227272727273, 0.798611111111111, 0.0, 10.125, 8.784722222222221, 6.917613636363637, 5.665625, 8.002083333333331, 4.958333333333334, 3.9705882352941178, 2.604166666666667, 3.7394671803210984, 3.064453125000001, 1.7083333333333335, 0.8802083333333335, 0.0), (10.31649127077388, 9.65140666438043, 8.533464220393233, 9.186225501543209, 7.480755823424477, 3.6458333333333335, 3.958741245057694, 3.518953189300412, 3.997804835390946, 1.8824909236396894, 1.3824959575175624, 0.7975174516079867, 0.0, 10.125, 8.772691967687852, 6.912479787587812, 5.647472770919067, 7.995609670781892, 4.926534465020577, 3.958741245057694, 2.604166666666667, 3.7403779117122387, 3.062075167181071, 1.7066928440786466, 0.8774006058527665, 0.0), (10.321751628440035, 9.619903006401461, 8.525069730224052, 9.178892554012345, 7.482495777065244, 3.6458333333333335, 3.9466638021463734, 3.4959927983539094, 3.994486522633745, 1.8763383973479657, 1.3814365153593549, 0.7963981862520958, 0.0, 10.125, 8.760380048773053, 6.9071825767967745, 5.629015192043896, 7.98897304526749, 4.894389917695474, 3.9466638021463734, 2.604166666666667, 3.741247888532622, 3.0596308513374493, 1.7050139460448106, 0.8745366369455876, 0.0), (10.326769449573796, 9.587841049382716, 8.516496913580248, 9.171369791666667, 7.48415409919754, 3.6458333333333335, 3.9343796296296296, 3.4728472222222226, 3.9910916666666667, 1.8700975308641978, 1.3803453984287317, 0.7952551440329219, 0.0, 10.125, 8.74780658436214, 6.901726992143659, 5.610292592592592, 7.982183333333333, 4.861986111111112, 3.9343796296296296, 2.604166666666667, 3.74207704959877, 3.05712326388889, 1.7032993827160496, 0.871621913580247, 0.0), (10.331543938348286, 9.555281149977136, 8.507759487882945, 9.163666473765433, 7.485730667454405, 3.6458333333333335, 3.9219124505769383, 3.4495781893004116, 3.987625205761317, 1.8637817672610888, 1.3792236043563206, 0.7940901539399483, 0.0, 10.125, 8.73499169333943, 6.896118021781603, 5.5913453017832655, 7.975250411522634, 4.829409465020577, 3.9219124505769383, 2.604166666666667, 3.7428653337272024, 3.054555491255145, 1.7015518975765893, 0.8686619227251944, 0.0), (10.336074298936616, 9.522283664837678, 8.49887117055327, 9.155791859567902, 7.4872253594688765, 3.6458333333333335, 3.909285988057775, 3.4262474279835393, 3.9840920781893, 1.85740454961134, 1.3780721307727481, 0.7929050449626583, 0.0, 10.125, 8.72195549458924, 6.89036065386374, 5.572213648834019, 7.9681841563786, 4.796746399176955, 3.909285988057775, 2.604166666666667, 3.7436126797344382, 3.051930619855968, 1.6997742341106543, 0.86566215134888, 0.0), (10.34035973551191, 9.488908950617283, 8.489845679012346, 9.147755208333333, 7.488638052873998, 3.6458333333333335, 3.896523965141612, 3.4029166666666666, 3.9804972222222226, 1.8509793209876546, 1.3768919753086422, 0.7917016460905352, 0.0, 10.125, 8.708718106995885, 6.884459876543211, 5.552937962962963, 7.960994444444445, 4.764083333333334, 3.896523965141612, 2.604166666666667, 3.744319026436999, 3.049251736111112, 1.6979691358024693, 0.8626280864197532, 0.0), (10.344399452247279, 9.455217363968908, 8.480696730681299, 9.139565779320987, 7.489968625302809, 3.6458333333333335, 3.883650104897926, 3.3796476337448556, 3.976845576131687, 1.8445195244627348, 1.3756841355946297, 0.7904817863130622, 0.0, 10.125, 8.695299649443683, 6.878420677973147, 5.533558573388203, 7.953691152263374, 4.731506687242798, 3.883650104897926, 2.604166666666667, 3.7449843126514044, 3.04652192644033, 1.69613934613626, 0.8595652149062645, 0.0), (10.348192653315843, 9.421269261545497, 8.471438042981255, 9.131232831790122, 7.491216954388353, 3.6458333333333335, 3.8706881303961915, 3.3565020576131688, 3.9731420781893005, 1.8380386031092826, 1.3744496092613379, 0.7892472946197227, 0.0, 10.125, 8.681720240816947, 6.872248046306688, 5.514115809327846, 7.946284156378601, 4.699102880658437, 3.8706881303961915, 2.604166666666667, 3.7456084771941764, 3.043744277263375, 1.694287608596251, 0.8564790237768635, 0.0), (10.351738542890716, 9.387125000000001, 8.462083333333332, 9.122765625, 7.492382917763668, 3.6458333333333335, 3.8576617647058824, 3.333541666666666, 3.9693916666666667, 1.8315500000000005, 1.3731893939393938, 0.788, 0.0, 10.125, 8.668, 6.865946969696969, 5.49465, 7.938783333333333, 4.666958333333333, 3.8576617647058824, 2.604166666666667, 3.746191458881834, 3.040921875000001, 1.6924166666666667, 0.8533750000000002, 0.0), (10.355036325145022, 9.352844935985367, 8.452646319158665, 9.114173418209877, 7.493466393061793, 3.6458333333333335, 3.844594730896474, 3.3108281893004117, 3.9655992798353905, 1.8250671582075908, 1.3719044872594257, 0.7867417314433777, 0.0, 10.125, 8.654159045877153, 6.859522436297127, 5.4752014746227715, 7.931198559670781, 4.6351594650205765, 3.844594730896474, 2.604166666666667, 3.7467331965308963, 3.0380578060699595, 1.6905292638317333, 0.8502586305441244, 0.0), (10.358085204251871, 9.31848942615455, 8.443140717878373, 9.105465470679011, 7.4944672579157725, 3.6458333333333335, 3.8315107520374405, 3.288423353909465, 3.961769855967078, 1.818603520804756, 1.3705958868520598, 0.7854743179393385, 0.0, 10.125, 8.640217497332722, 6.852979434260299, 5.455810562414267, 7.923539711934156, 4.603792695473251, 3.8315107520374405, 2.604166666666667, 3.7472336289578863, 3.035155156893005, 1.6886281435756747, 0.8471354023776865, 0.0), (10.360884384384383, 9.284118827160494, 8.433580246913582, 9.096651041666666, 7.495385389958644, 3.6458333333333335, 3.818433551198257, 3.2663888888888892, 3.957908333333333, 1.812172530864198, 1.369264590347924, 0.7841995884773663, 0.0, 10.125, 8.626195473251027, 6.8463229517396185, 5.436517592592593, 7.915816666666666, 4.572944444444445, 3.818433551198257, 2.604166666666667, 3.747692694979322, 3.0322170138888898, 1.6867160493827165, 0.844010802469136, 0.0), (10.36343306971568, 9.24979349565615, 8.423978623685414, 9.087739390432098, 7.496220666823449, 3.6458333333333335, 3.8053868514483984, 3.2447865226337447, 3.954019650205761, 1.8057876314586196, 1.367911595377645, 0.7829193720469442, 0.0, 10.125, 8.612113092516385, 6.8395579768882255, 5.417362894375858, 7.908039300411522, 4.5427011316872425, 3.8053868514483984, 2.604166666666667, 3.7481103334117245, 3.029246463477367, 1.684795724737083, 0.8408903177869229, 0.0), (10.36573046441887, 9.215573788294467, 8.414349565614998, 9.078739776234567, 7.49697296614323, 3.6458333333333335, 3.792394375857339, 3.2236779835390945, 3.9501087448559673, 1.799462265660723, 1.3665378995718502, 0.7816354976375554, 0.0, 10.125, 8.597990474013107, 6.83268949785925, 5.398386796982168, 7.900217489711935, 4.513149176954733, 3.792394375857339, 2.604166666666667, 3.748486483071615, 3.02624659207819, 1.6828699131229998, 0.8377794352994972, 0.0), (10.367775772667077, 9.181520061728396, 8.404706790123456, 9.069661458333334, 7.497642165551024, 3.6458333333333335, 3.779479847494553, 3.203125, 3.946180555555556, 1.7932098765432103, 1.3651445005611673, 0.7803497942386832, 0.0, 10.125, 8.583847736625515, 6.825722502805837, 5.37962962962963, 7.892361111111112, 4.484375, 3.779479847494553, 2.604166666666667, 3.748821082775512, 3.023220486111112, 1.6809413580246915, 0.8346836419753088, 0.0), (10.369568198633415, 9.147692672610884, 8.395064014631917, 9.060513695987654, 7.498228142679874, 3.6458333333333335, 3.7666669894295164, 3.183189300411523, 3.9422400205761314, 1.7870439071787843, 1.3637323959762233, 0.7790640908398111, 0.0, 10.125, 8.56970499923792, 6.818661979881115, 5.361131721536351, 7.884480041152263, 4.456465020576132, 3.7666669894295164, 2.604166666666667, 3.749114071339937, 3.0201712319958856, 1.6790128029263836, 0.8316084247828076, 0.0), (10.371106946491004, 9.114151977594878, 8.385434956561502, 9.051305748456791, 7.498730775162823, 3.6458333333333335, 3.753979524731703, 3.1639326131687247, 3.9382920781893, 1.7809778006401469, 1.3623025834476452, 0.7777802164304223, 0.0, 10.125, 8.555582380734645, 6.811512917238226, 5.3429334019204395, 7.8765841563786, 4.429505658436215, 3.753979524731703, 2.604166666666667, 3.7493653875814115, 3.0171019161522645, 1.6770869913123003, 0.8285592706904436, 0.0), (10.37239122041296, 9.080958333333333, 8.375833333333334, 9.042046875, 7.499149940632904, 3.6458333333333335, 3.741441176470588, 3.1454166666666667, 3.9343416666666666, 1.7750250000000003, 1.360856060606061, 0.7765000000000001, 0.0, 10.125, 8.5415, 6.804280303030303, 5.325075, 7.868683333333333, 4.403583333333334, 3.741441176470588, 2.604166666666667, 3.749574970316452, 3.014015625000001, 1.675166666666667, 0.8255416666666667, 0.0), (10.373420224572397, 9.048172096479195, 8.366272862368541, 9.032746334876544, 7.4994855167231655, 3.6458333333333335, 3.729075667715646, 3.127703189300412, 3.9303937242798352, 1.7691989483310475, 1.3593938250820965, 0.7752252705380279, 0.0, 10.125, 8.527477975918305, 6.796969125410483, 5.307596844993141, 7.8607874485596705, 4.378784465020577, 3.729075667715646, 2.604166666666667, 3.7497427583615828, 3.0109154449588487, 1.6732545724737085, 0.822561099679927, 0.0), (10.374193163142438, 9.015853623685413, 8.35676726108825, 9.023413387345679, 7.499737381066645, 3.6458333333333335, 3.7169067215363514, 3.1108539094650207, 3.9264531893004113, 1.7635130887059902, 1.357916874506381, 0.7739578570339887, 0.0, 10.125, 8.513536427373873, 6.7895843725319045, 5.290539266117969, 7.852906378600823, 4.355195473251029, 3.7169067215363514, 2.604166666666667, 3.7498686905333223, 3.0078044624485605, 1.67135345221765, 0.819623056698674, 0.0), (10.374709240296196, 8.984063271604938, 8.34733024691358, 9.014057291666667, 7.499905411296382, 3.6458333333333335, 3.7049580610021784, 3.094930555555556, 3.9225250000000003, 1.7579808641975312, 1.3564262065095398, 0.7726995884773664, 0.0, 10.125, 8.499695473251029, 6.782131032547699, 5.273942592592592, 7.8450500000000005, 4.332902777777778, 3.7049580610021784, 2.604166666666667, 3.749952705648191, 3.0046857638888897, 1.6694660493827165, 0.8167330246913582, 0.0), (10.374967660206792, 8.952861396890716, 8.337975537265661, 9.004687307098765, 7.499989485045419, 3.6458333333333335, 3.693253409182603, 3.0799948559670787, 3.9186140946502057, 1.7526157178783728, 1.3549228187222018, 0.7714522938576437, 0.0, 10.125, 8.485975232434079, 6.774614093611008, 5.257847153635117, 7.837228189300411, 4.31199279835391, 3.693253409182603, 2.604166666666667, 3.7499947425227096, 3.001562435699589, 1.6675951074531323, 0.8138964906264289, 0.0), (10.374791614480825, 8.922144586043629, 8.328671624942844, 8.995231305354269, 7.499918636864896, 3.645765673423767, 3.681757597414823, 3.0659766041761927, 3.9146959495503735, 1.747405110411792, 1.3533809980900628, 0.770210835158312, 0.0, 10.124875150034294, 8.47231918674143, 6.766904990450313, 5.242215331235375, 7.829391899100747, 4.29236724584667, 3.681757597414823, 2.604118338159833, 3.749959318432448, 2.99841043511809, 1.6657343249885688, 0.8111040532766937, 0.0), (10.373141706924315, 8.890975059737157, 8.319157021604937, 8.985212635869564, 7.499273783587508, 3.6452307956104257, 3.6701340906733066, 3.052124485596708, 3.910599279835391, 1.7422015976761076, 1.3516438064859118, 0.7689349144466104, 0.0, 10.12388599537037, 8.458284058912714, 6.758219032429559, 5.226604793028321, 7.821198559670782, 4.272974279835391, 3.6701340906733066, 2.6037362825788755, 3.749636891793754, 2.9950708786231885, 1.6638314043209876, 0.8082704599761052, 0.0), (10.369885787558895, 8.859209754856408, 8.309390360653863, 8.974565343196456, 7.497999542752628, 3.6441773992785653, 3.658330067280685, 3.0383135192805977, 3.9063009640298736, 1.736979881115684, 1.3496914810876801, 0.7676185634410675, 0.0, 10.121932334533609, 8.44380419785174, 6.7484574054383994, 5.210939643347051, 7.812601928059747, 4.253638926992837, 3.658330067280685, 2.6029838566275467, 3.748999771376314, 2.991521781065486, 1.6618780721307727, 0.8053827049869463, 0.0), (10.365069660642929, 8.826867654542236, 8.299375071444901, 8.963305127818035, 7.496112052502757, 3.6426225549966977, 3.646350829769494, 3.0245482777015704, 3.9018074035970125, 1.7317400898356603, 1.347531228463977, 0.7662627447677263, 0.0, 10.119039887688615, 8.428890192444989, 6.737656142319885, 5.195220269506979, 7.803614807194025, 4.234367588782199, 3.646350829769494, 2.6018732535690696, 3.7480560262513785, 2.987768375939346, 1.6598750142889804, 0.8024425140492942, 0.0), (10.358739130434783, 8.793967741935482, 8.289114583333333, 8.95144769021739, 7.493627450980392, 3.6405833333333337, 3.634201680672269, 3.0108333333333333, 3.897125, 1.7264823529411768, 1.3451702551834133, 0.7648684210526316, 0.0, 10.115234375, 8.413552631578947, 6.7258512759170666, 5.179447058823529, 7.79425, 4.215166666666667, 3.634201680672269, 2.600416666666667, 3.746813725490196, 2.983815896739131, 1.6578229166666667, 0.7994516129032258, 0.0), (10.35094000119282, 8.760529000176998, 8.27861232567444, 8.939008730877617, 7.490561876328034, 3.638076804856983, 3.621887922521546, 2.9971732586495965, 3.8922601547020275, 1.7212067995373737, 1.3426157678145982, 0.7634365549218266, 0.0, 10.110541516632374, 8.397802104140093, 6.71307883907299, 5.163620398612119, 7.784520309404055, 4.196042562109435, 3.621887922521546, 2.598626289183559, 3.745280938164017, 2.979669576959206, 1.655722465134888, 0.7964117272888181, 0.0), (10.341718077175404, 8.726570412407629, 8.267871727823502, 8.926003950281803, 7.486931466688183, 3.6351200401361585, 3.609414857849861, 2.9835726261240665, 3.8872192691662857, 1.7159135587293908, 1.3398749729261428, 0.7619681090013557, 0.0, 10.104987032750344, 8.38164919901491, 6.699374864630713, 5.147740676188171, 7.774438538332571, 4.177001676573693, 3.609414857849861, 2.5965143143829703, 3.7434657333440917, 2.975334650093935, 1.6535743455647005, 0.7933245829461482, 0.0), (10.331119162640901, 8.692110961768218, 8.256896219135802, 8.912449048913043, 7.482752360203341, 3.6317301097393697, 3.59678778918975, 2.9700360082304527, 3.8820087448559666, 1.7106027596223679, 1.336955077086656, 0.7604640459172624, 0.0, 10.098596643518519, 8.365104505089885, 6.684775385433279, 5.131808278867102, 7.764017489711933, 4.158050411522634, 3.59678778918975, 2.594092935528121, 3.7413761801016703, 2.9708163496376816, 1.6513792438271604, 0.7901919056152927, 0.0), (10.319189061847677, 8.65716963139962, 8.245689228966622, 8.898359727254428, 7.478040695016003, 3.6279240842351275, 3.5840120190737474, 2.956567977442463, 3.876634983234263, 1.7052745313214452, 1.3338632868647486, 0.7589253282955902, 0.0, 10.091396069101508, 8.348178611251491, 6.669316434323743, 5.115823593964334, 7.753269966468526, 4.139195168419449, 3.5840120190737474, 2.5913743458822336, 3.7390203475080015, 2.96611990908481, 1.6491378457933243, 0.7870154210363293, 0.0), (10.305973579054093, 8.621765404442675, 8.234254186671238, 8.883751685789049, 7.472812609268672, 3.6237190341919425, 3.5710928500343897, 2.9431731062338065, 3.871104385764365, 1.699929002931763, 1.3306068088290313, 0.7573529187623839, 0.0, 10.083411029663925, 8.330882106386222, 6.653034044145156, 5.099787008795288, 7.74220877152873, 4.120442348727329, 3.5710928500343897, 2.58837073870853, 3.736406304634336, 2.9612505619296834, 1.6468508373342476, 0.7837968549493343, 0.0), (10.291518518518519, 8.585917264038233, 8.222594521604938, 8.868640625, 7.467084241103849, 3.6191320301783265, 3.5580355846042124, 2.9298559670781894, 3.8654233539094642, 1.6945663035584608, 1.327192849548113, 0.7557477799436866, 0.0, 10.074667245370371, 8.313225579380552, 6.635964247740564, 5.083698910675381, 7.7308467078189285, 4.101798353909466, 3.5580355846042124, 2.585094307270233, 3.7335421205519244, 2.956213541666667, 1.6445189043209878, 0.7805379330943849, 0.0), (10.275869684499314, 8.549644193327138, 8.210713663123, 8.85304224537037, 7.460871728664031, 3.61418014276279, 3.5448455253157505, 2.916621132449322, 3.859598289132754, 1.6891865623066789, 1.3236286155906039, 0.7541108744655421, 0.0, 10.065190436385459, 8.295219619120962, 6.618143077953018, 5.067559686920035, 7.719196578265508, 4.083269585429051, 3.5448455253157505, 2.5815572448305644, 3.7304358643320157, 2.951014081790124, 1.6421427326246, 0.7772403812115581, 0.0), (10.259072881254847, 8.51296517545024, 8.198615040580703, 8.836972247383253, 7.454191210091719, 3.6088804425138448, 3.5315279747015405, 2.9034731748209115, 3.853635592897424, 1.683789908281557, 1.3199213135251149, 0.7524431649539947, 0.0, 10.0550063228738, 8.27687481449394, 6.599606567625574, 5.05136972484467, 7.707271185794848, 4.064862444749276, 3.5315279747015405, 2.577771744652746, 3.7270956050458595, 2.945657415794418, 1.639723008116141, 0.7739059250409311, 0.0), (10.241173913043479, 8.475899193548386, 8.186302083333333, 8.82044633152174, 7.447058823529411, 3.60325, 3.5180882352941176, 2.890416666666667, 3.8475416666666664, 1.6783764705882358, 1.3160781499202554, 0.7507456140350878, 0.0, 10.044140624999999, 8.258201754385965, 6.580390749601277, 5.035129411764706, 7.695083333333333, 4.046583333333333, 3.5180882352941176, 2.57375, 3.7235294117647055, 2.940148777173914, 1.6372604166666667, 0.7705362903225808, 0.0), (10.222218584123576, 8.438465230762423, 8.17377822073617, 8.803480198268922, 7.43949070711961, 3.5973058857897686, 3.504531609626018, 2.8774561804602956, 3.841322911903673, 1.6729463783318543, 1.3121063313446355, 0.7490191843348656, 0.0, 10.03261906292867, 8.23921102768352, 6.560531656723177, 5.018839134995561, 7.682645823807346, 4.0284386526444145, 3.504531609626018, 2.5695042041355487, 3.719745353559805, 2.934493399422974, 1.634755644147234, 0.767133202796584, 0.0), (10.202252698753504, 8.400682270233196, 8.16104688214449, 8.78608954810789, 7.431502999004814, 3.591065170451659, 3.4908634002297765, 2.8645962886755068, 3.8349857300716352, 1.6674997606175532, 1.3080130643668657, 0.7472648384793719, 0.0, 10.020467356824417, 8.219913223273089, 6.540065321834328, 5.002499281852659, 7.6699714601432705, 4.01043480414571, 3.4908634002297765, 2.5650465503226134, 3.715751499502407, 2.9286965160359637, 1.632209376428898, 0.7636983882030178, 0.0), (10.181322061191626, 8.362569295101553, 8.14811149691358, 8.768290081521739, 7.423111837327523, 3.584544924554184, 3.477088909637929, 2.851841563786008, 3.8285365226337444, 1.6620367465504726, 1.3038055555555557, 0.7454835390946503, 0.0, 10.007711226851852, 8.200318930041153, 6.519027777777778, 4.986110239651417, 7.657073045267489, 3.9925781893004113, 3.477088909637929, 2.5603892318244172, 3.7115559186637617, 2.922763360507247, 1.629622299382716, 0.7602335722819594, 0.0), (10.159472475696308, 8.32414528850834, 8.13497549439872, 8.75009749899356, 7.414333360230238, 3.577762218665854, 3.463213440383012, 2.8391965782655086, 3.8219816910531925, 1.6565574652357518, 1.2994910114793157, 0.7436762488067449, 0.0, 9.994376393175584, 8.180438736874192, 6.497455057396579, 4.969672395707254, 7.643963382106385, 3.9748752095717124, 3.463213440383012, 2.5555444419041815, 3.707166680115119, 2.916699166331187, 1.626995098879744, 0.7567404807734855, 0.0), (10.136749746525913, 8.285429233594407, 8.121642303955191, 8.731527501006443, 7.405183705855455, 3.57073412335518, 3.44924229499756, 2.826665904587715, 3.815327636793172, 1.6510620457785314, 1.2950766387067558, 0.7418439302416996, 0.0, 9.98048857596022, 8.160283232658694, 6.475383193533778, 4.953186137335593, 7.630655273586344, 3.9573322664228017, 3.44924229499756, 2.550524373825129, 3.7025918529277275, 2.910509167002148, 1.6243284607910382, 0.7532208394176735, 0.0), (10.113199677938807, 8.246440113500597, 8.10811535493827, 8.712595788043478, 7.3956790123456795, 3.563477709190672, 3.4351807760141093, 2.8142541152263374, 3.8085807613168727, 1.645550617283951, 1.290569643806486, 0.7399875460255577, 0.0, 9.96607349537037, 8.139863006281134, 6.452848219032429, 4.936651851851852, 7.6171615226337455, 3.9399557613168725, 3.4351807760141093, 2.54534122085048, 3.6978395061728397, 2.904198596014493, 1.6216230709876542, 0.7496763739545999, 0.0), (10.088868074193357, 8.207196911367758, 8.094398076703246, 8.693318060587762, 7.385835417843406, 3.5560100467408424, 3.4210341859651954, 2.801965782655083, 3.8017474660874866, 1.6400233088571508, 1.2859772333471164, 0.7381080587843638, 0.0, 9.951156871570646, 8.119188646628, 6.429886166735582, 4.9200699265714505, 7.603494932174973, 3.9227520957171165, 3.4210341859651954, 2.540007176243459, 3.692917708921703, 2.897772686862588, 1.6188796153406495, 0.7461088101243417, 0.0), (10.063800739547922, 8.16771861033674, 8.080493898605397, 8.673710019122383, 7.375669060491138, 3.5483482065742016, 3.406807827383354, 2.7898054793476605, 3.794834152568206, 1.634480249603271, 1.2813066138972575, 0.7362064311441613, 0.0, 9.935764424725651, 8.098270742585774, 6.4065330694862865, 4.903440748809812, 7.589668305136412, 3.905727671086725, 3.406807827383354, 2.534534433267287, 3.687834530245569, 2.891236673040795, 1.6160987797210793, 0.7425198736669765, 0.0), (10.03804347826087, 8.128024193548386, 8.06640625, 8.653787364130435, 7.365196078431373, 3.5405092592592595, 3.3925070028011204, 2.7777777777777777, 3.7878472222222226, 1.6289215686274514, 1.2765649920255184, 0.7342836257309943, 0.0, 9.919921875, 8.077119883040936, 6.382824960127592, 4.886764705882353, 7.575694444444445, 3.888888888888889, 3.3925070028011204, 2.5289351851851856, 3.6825980392156863, 2.884595788043479, 1.6132812500000002, 0.7389112903225807, 0.0), (10.011642094590563, 8.088132644143545, 8.05213856024234, 8.63356579609501, 7.35443260980661, 3.532510275364528, 3.378137014751031, 2.7658872504191434, 3.780793076512727, 1.6233473950348318, 1.2717595743005101, 0.7323406051709063, 0.0, 9.903654942558298, 8.055746656879968, 6.35879787150255, 4.870042185104494, 7.561586153025454, 3.872242150586801, 3.378137014751031, 2.5232216252603767, 3.677216304903305, 2.8778552653650036, 1.6104277120484682, 0.7352847858312315, 0.0), (9.984642392795372, 8.048062945263066, 8.0376942586877, 8.613061015499195, 7.343394792759352, 3.524368325458518, 3.363703165765621, 2.754138469745466, 3.773678116902911, 1.6177578579305527, 1.2668975672908422, 0.7303783320899415, 0.0, 9.886989347565157, 8.034161652989356, 6.334487836454211, 4.853273573791657, 7.547356233805822, 3.8557938576436523, 3.363703165765621, 2.517405946756084, 3.671697396379676, 2.871020338499732, 1.6075388517375402, 0.7316420859330061, 0.0), (9.957090177133654, 8.00783408004779, 8.023076774691358, 8.592288722826089, 7.332098765432098, 3.5161004801097393, 3.349210758377425, 2.742536008230453, 3.766508744855967, 1.6121530864197533, 1.261986177565125, 0.7283977691141434, 0.0, 9.869950810185184, 8.012375460255576, 6.309930887825625, 4.836459259259259, 7.533017489711934, 3.839550411522634, 3.349210758377425, 2.5115003429355283, 3.666049382716049, 2.86409624094203, 1.6046153549382718, 0.727984916367981, 0.0), (9.92903125186378, 7.967465031638567, 8.008289537608597, 8.571264618558777, 7.320560665967347, 3.5077238098867043, 3.3346650951189805, 2.7310844383478132, 3.759291361835086, 1.6065332096075746, 1.2570326116919686, 0.7263998788695563, 0.0, 9.85256505058299, 7.990398667565118, 6.285163058459842, 4.819599628822722, 7.518582723670172, 3.823518213686939, 3.3346650951189805, 2.5055170070619317, 3.6602803329836733, 2.8570882061862592, 1.6016579075217197, 0.7243150028762335, 0.0), (9.90051142124411, 7.926974783176247, 7.993335976794697, 8.550004403180354, 7.308796632507598, 3.499255385357923, 3.320071478522822, 2.719788332571255, 3.7520323693034596, 1.6008983565991557, 1.2520440762399827, 0.7243856239822234, 0.0, 9.834857788923182, 7.968241863804456, 6.260220381199914, 4.8026950697974655, 7.504064738606919, 3.8077036655997567, 3.320071478522822, 2.4994681323985164, 3.654398316253799, 2.850001467726785, 1.5986671953589393, 0.7206340711978407, 0.0), (9.871576489533012, 7.886382317801674, 7.978219521604939, 8.528523777173913, 7.296822803195352, 3.4907122770919066, 3.3054352111214853, 2.708652263374486, 3.7447381687242793, 1.5952486564996373, 1.247027777777778, 0.7223559670781895, 0.0, 9.816854745370371, 7.945915637860083, 6.23513888888889, 4.785745969498911, 7.489476337448559, 3.7921131687242804, 3.3054352111214853, 2.4933659122085046, 3.648411401597676, 2.8428412590579715, 1.595643904320988, 0.7169438470728796, 0.0), (9.842272260988848, 7.845706618655694, 7.962943601394604, 8.506838441022543, 7.284655316173109, 3.482111555657166, 3.2907615954475067, 2.697680803231215, 3.7374151615607376, 1.589584238414159, 1.2419909228739638, 0.7203118707834976, 0.0, 9.798581640089164, 7.923430578618472, 6.209954614369819, 4.768752715242476, 7.474830323121475, 3.7767531245237014, 3.2907615954475067, 2.4872225397551184, 3.6423276580865545, 2.8356128136741816, 1.5925887202789208, 0.7132460562414268, 0.0), (9.812644539869984, 7.804966668879153, 7.947511645518976, 8.48496409520934, 7.272310309583368, 3.4734702916222124, 3.276055934033421, 2.68687852461515, 3.7300697492760246, 1.5839052314478608, 1.236940718097151, 0.7182542977241916, 0.0, 9.78006419324417, 7.900797274966106, 6.184703590485755, 4.751715694343581, 7.460139498552049, 3.7616299344612103, 3.276055934033421, 2.48105020830158, 3.636155154791684, 2.8283213650697805, 1.589502329103795, 0.7095424244435595, 0.0), (9.782739130434782, 7.764181451612902, 7.931927083333334, 8.462916440217391, 7.259803921568627, 3.464805555555556, 3.261323529411765, 2.67625, 3.7227083333333333, 1.5782117647058826, 1.2318843700159492, 0.7161842105263159, 0.0, 9.761328125, 7.878026315789473, 6.159421850079745, 4.734635294117647, 7.445416666666667, 3.7467500000000005, 3.261323529411765, 2.474861111111111, 3.6299019607843137, 2.820972146739131, 1.5863854166666669, 0.7058346774193549, 0.0), (9.752601836941611, 7.723369949997786, 7.916193344192958, 8.44071117652979, 7.247152290271389, 3.4561344180257074, 3.2465696841150726, 2.665799801859473, 3.715337315195854, 1.572503967293365, 1.2268290851989685, 0.714102571815914, 0.0, 9.742399155521262, 7.8551282899750525, 6.134145425994841, 4.717511901880093, 7.430674630391708, 3.732119722603262, 3.2465696841150726, 2.468667441446934, 3.6235761451356945, 2.8135703921765973, 1.5832386688385918, 0.7021245409088898, 0.0), (9.722278463648834, 7.682551147174654, 7.900313857453133, 8.41836400462963, 7.234371553834153, 3.4474739496011786, 3.231799700675881, 2.6555325026672763, 3.7079630963267793, 1.5667819683154474, 1.2217820702148188, 0.7120103442190294, 0.0, 9.723303004972564, 7.832113786409323, 6.108910351074094, 4.7003459049463405, 7.415926192653559, 3.7177455037341867, 3.231799700675881, 2.4624813925722706, 3.6171857769170765, 2.806121334876544, 1.5800627714906266, 0.6984137406522414, 0.0), (9.691814814814816, 7.641744026284349, 7.884292052469135, 8.395890625, 7.221477850399419, 3.4388412208504806, 3.217018881626725, 2.645452674897119, 3.7005920781893, 1.56104589687727, 1.2167505316321108, 0.7099084903617069, 0.0, 9.704065393518519, 7.808993393978774, 6.083752658160553, 4.683137690631809, 7.4011841563786, 3.703633744855967, 3.217018881626725, 2.4563151577503435, 3.6107389251997093, 2.798630208333334, 1.5768584104938272, 0.6947040023894864, 0.0), (9.661256694697919, 7.60096757046772, 7.8681313585962505, 8.373306738123993, 7.208487318109686, 3.430253302342123, 3.20223252950014, 2.63556489102271, 3.6932306622466085, 1.5552958820839726, 1.211741676019454, 0.7077979728699895, 0.0, 9.68471204132373, 7.785777701569883, 6.058708380097269, 4.6658876462519165, 7.386461324493217, 3.689790847431794, 3.20223252950014, 2.4501809302443736, 3.604243659054843, 2.7911022460413317, 1.5736262717192502, 0.6909970518607019, 0.0), (9.63064990755651, 7.560240762865614, 7.851835205189758, 8.350628044484703, 7.195416095107452, 3.421727264644617, 3.187445946828663, 2.6258737235177567, 3.685885249961896, 1.5495320530406955, 1.2067627099454585, 0.7056797543699213, 0.0, 9.665268668552812, 7.762477298069133, 6.033813549727292, 4.648596159122086, 7.371770499923792, 3.6762232129248593, 3.187445946828663, 2.4440909033175835, 3.597708047553726, 2.783542681494901, 1.5703670410379515, 0.687294614805965, 0.0), (9.600040257648953, 7.519582586618876, 7.835407021604938, 8.327870244565217, 7.182280319535221, 3.4132801783264752, 3.172664436144829, 2.6163837448559675, 3.6785622427983538, 1.5437545388525786, 1.201820839978735, 0.7035547974875461, 0.0, 9.64576099537037, 7.739102772363006, 6.009104199893674, 4.631263616557734, 7.3571244855967075, 3.662937242798354, 3.172664436144829, 2.4380572702331964, 3.5911401597676105, 2.775956748188406, 1.5670814043209877, 0.6835984169653525, 0.0), (9.569473549233614, 7.479012024868357, 7.818850237197074, 8.305049038848631, 7.1690961295354905, 3.404929113956206, 3.1578932999811724, 2.6070995275110502, 3.6712680422191735, 1.5379634686247616, 1.1969232726878927, 0.701424064848908, 0.0, 9.626214741941014, 7.715664713337986, 5.9846163634394625, 4.613890405874283, 7.342536084438347, 3.6499393385154706, 3.1578932999811724, 2.4320922242544327, 3.5845480647677452, 2.768349679616211, 1.5637700474394147, 0.6799101840789417, 0.0), (9.538995586568856, 7.438548060754901, 7.802168281321446, 8.282180127818036, 7.155879663250759, 3.3966911421023225, 3.1431378408702306, 2.5980256439567144, 3.6640090496875475, 1.532158971462385, 1.1920772146415421, 0.6992885190800504, 0.0, 9.606655628429355, 7.692173709880553, 5.96038607320771, 4.596476914387154, 7.328018099375095, 3.6372359015394005, 3.1431378408702306, 2.426207958644516, 3.5779398316253794, 2.760726709272679, 1.5604336562642893, 0.6762316418868093, 0.0), (9.508652173913044, 7.398209677419356, 7.785364583333334, 8.259279211956523, 7.1426470588235285, 3.3885833333333335, 3.1284033613445374, 2.589166666666667, 3.656791666666667, 1.5263411764705888, 1.1872898724082936, 0.6971491228070177, 0.0, 9.587109375, 7.668640350877193, 5.936449362041468, 4.579023529411765, 7.313583333333334, 3.624833333333334, 3.1284033613445374, 2.4204166666666667, 3.5713235294117642, 2.7530930706521746, 1.557072916666667, 0.6725645161290325, 0.0), (9.478489115524543, 7.358015858002567, 7.768442572588021, 8.23636199174718, 7.129414454396299, 3.3806227582177515, 3.113695163936631, 2.580527168114617, 3.6496222946197223, 1.5205102127545123, 1.1825684525567568, 0.6950068386558532, 0.0, 9.567601701817559, 7.645075225214384, 5.9128422627837836, 4.561530638263536, 7.299244589239445, 3.612738035360464, 3.113695163936631, 2.4147305415841083, 3.5647072271981495, 2.7454539972490606, 1.5536885145176043, 0.668910532545688, 0.0), (9.448552215661715, 7.317985585645383, 7.751405678440788, 8.213444167673108, 7.116197988111569, 3.3728264873240867, 3.0990185511790447, 2.5721117207742723, 3.6425073350099066, 1.5146662094192962, 1.177920161655542, 0.6928626292526012, 0.0, 9.54815832904664, 7.621488921778612, 5.8896008082777085, 4.543998628257887, 7.285014670019813, 3.600956409083981, 3.0990185511790447, 2.409161776660062, 3.5580989940557846, 2.737814722557703, 1.5502811356881578, 0.6652714168768531, 0.0), (9.41888727858293, 7.278137843488651, 7.7342573302469155, 8.190541440217391, 7.103013798111837, 3.365211591220851, 3.0843788256043156, 2.5639248971193416, 3.635453189300412, 1.5088092955700803, 1.173352206273259, 0.6907174572233054, 0.0, 9.528804976851852, 7.597892029456357, 5.866761031366295, 4.526427886710239, 7.270906378600824, 3.5894948559670783, 3.0843788256043156, 2.4037225651577505, 3.5515068990559184, 2.7301804800724643, 1.546851466049383, 0.6616488948626047, 0.0), (9.38954010854655, 7.238491614673214, 7.717000957361684, 8.167669509863124, 7.089878022539605, 3.357795140476554, 3.069781289744979, 2.5559712696235333, 3.628466258954427, 1.5029396003120044, 1.1688717929785184, 0.6885722851940093, 0.0, 9.509567365397805, 7.574295137134101, 5.844358964892591, 4.5088188009360115, 7.256932517908854, 3.5783597774729463, 3.069781289744979, 2.3984251003403956, 3.5449390112698027, 2.7225565032877084, 1.543400191472337, 0.6580446922430195, 0.0), (9.360504223703044, 7.1991320672204555, 7.699681523543391, 8.14487541186903, 7.076783786782469, 3.3505906987084666, 3.0552629818283847, 2.548271903658586, 3.6215709370862066, 1.4970761841531826, 1.1644873176921446, 0.6864327447087024, 0.0, 9.490443900843221, 7.550760191795725, 5.8224365884607225, 4.491228552459547, 7.243141874172413, 3.5675806651220205, 3.0552629818283847, 2.3932790705060474, 3.5383918933912346, 2.7149584706230105, 1.5399363047086783, 0.654466551565496, 0.0), (9.331480897900065, 7.16044741823174, 7.682538062518016, 8.122342065958001, 7.063595569710884, 3.343581854975776, 3.0410091042052896, 2.5409213581271333, 3.6148730119043533, 1.491328791978196, 1.1602073895188663, 0.684326014342748, 0.0, 9.471275414160035, 7.5275861577702265, 5.801036947594331, 4.473986375934587, 7.229746023808707, 3.557289901377987, 3.0410091042052896, 2.3882727535541255, 3.531797784855442, 2.7074473553193346, 1.5365076125036032, 0.6509497652937947, 0.0), (9.302384903003995, 7.122451598792792, 7.665580777256098, 8.100063378886334, 7.050271785259067, 3.3367503822909463, 3.027029825095781, 2.533917772616129, 3.6083749928895963, 1.4857063319970194, 1.1560257519045158, 0.6822531318799043, 0.0, 9.452006631660376, 7.5047844506789465, 5.7801287595225785, 4.457118995991058, 7.216749985779193, 3.5474848816625806, 3.027029825095781, 2.3833931302078186, 3.5251358926295335, 2.700021126295445, 1.5331161554512198, 0.647495599890254, 0.0), (9.273179873237634, 7.0850892578507265, 7.648776824986561, 8.077999612699802, 7.036792350922519, 3.330080178417474, 3.0133024087639466, 2.5272417970412473, 3.6020604464092765, 1.480198339612387, 1.1519343218785802, 0.6802102664572789, 0.0, 9.43260725975589, 7.482312931030067, 5.7596716093929015, 4.44059501883716, 7.204120892818553, 3.5381385158577463, 3.0133024087639466, 2.3786286988696244, 3.5183961754612594, 2.6926665375666015, 1.5297553649973124, 0.6440990234409752, 0.0), (9.243829442823772, 7.04830504435266, 7.632093362938321, 8.056111029444182, 7.02313718419674, 3.323555141118853, 2.9998041194738763, 2.5208740813181603, 3.5959129388307343, 1.4747943502270324, 1.1479250164705472, 0.6781935872119792, 0.0, 9.413047004858225, 7.46012945933177, 5.739625082352736, 4.424383050681096, 7.1918258776614685, 3.5292237138454245, 2.9998041194738763, 2.3739679579420376, 3.51156859209837, 2.6853703431480613, 1.5264186725876645, 0.6407550040320601, 0.0), (9.214297245985211, 7.0120436072457135, 7.615497548340306, 8.03435789116525, 7.009286202577227, 3.317159168158581, 2.9865122214896576, 2.51479527536254, 3.5899160365213114, 1.46948389924369, 1.143989752709904, 0.6761992632811126, 0.0, 9.393295573379024, 7.438191896092237, 5.71994876354952, 4.40845169773107, 7.179832073042623, 3.5207133855075567, 2.9865122214896576, 2.369399405827558, 3.5046431012886137, 2.678119297055084, 1.5230995096680613, 0.6374585097496104, 0.0), (9.184546916944742, 6.976249595477001, 7.598956538421437, 8.012700459908778, 6.99521932355948, 3.3108761573001524, 2.973403979075378, 2.5089860290900607, 3.5840533058483475, 1.4642565220650932, 1.1401204476261382, 0.6742234638017862, 0.0, 9.373322671729932, 7.416458101819647, 5.70060223813069, 4.392769566195279, 7.168106611696695, 3.5125804407260848, 2.973403979075378, 2.3649115409286803, 3.49760966177974, 2.670900153302927, 1.5197913076842873, 0.6342045086797276, 0.0), (9.154542089925162, 6.940867657993644, 7.582437490410635, 7.991098997720545, 6.980916464638998, 3.304690006307063, 2.9604566564951265, 2.5034269924163928, 3.578308313179186, 1.4591017540939766, 1.136309018248736, 0.6722623579111081, 0.0, 9.353098006322597, 7.394885937022188, 5.68154509124368, 4.377305262281929, 7.156616626358372, 3.50479778938295, 2.9604566564951265, 2.360492861647902, 3.490458232319499, 2.663699665906849, 1.516487498082127, 0.6309879689085133, 0.0), (9.124246399149268, 6.90584244374276, 7.565907561536823, 7.969513766646325, 6.966357543311279, 3.29858461294281, 2.94764751801299, 2.4980988152572112, 3.572664624881166, 1.4540091307330743, 1.1325473816071863, 0.6703121147461852, 0.0, 9.33259128356866, 7.373433262208036, 5.662736908035931, 4.362027392199222, 7.145329249762332, 3.497338341360096, 2.94764751801299, 2.356131866387721, 3.4831787716556395, 2.656504588882109, 1.5131815123073646, 0.6278038585220692, 0.0), (9.093623478839854, 6.871118601671464, 7.549333909028926, 7.947905028731892, 6.951522477071823, 3.292543874970886, 2.9349538278930587, 2.492982147528187, 3.5671058073216297, 1.4489681873851195, 1.1288274547309753, 0.6683689034441251, 0.0, 9.31177220987977, 7.352057937885375, 5.644137273654876, 4.346904562155357, 7.1342116146432595, 3.490175006539462, 2.9349538278930587, 2.351817053550633, 3.4757612385359113, 2.6493016762439643, 1.5098667818057854, 0.6246471456064968, 0.0), (9.062636963219719, 6.836640780726876, 7.532683690115864, 7.92623304602302, 6.936391183416127, 3.28655169015479, 2.9223528503994194, 2.4880576391449933, 3.5616154268679177, 1.443968459452847, 1.1251411546495909, 0.6664288931420351, 0.0, 9.290610491667572, 7.330717824562385, 5.625705773247954, 4.33190537835854, 7.123230853735835, 3.4832806948029904, 2.9223528503994194, 2.3475369215391355, 3.4681955917080636, 2.642077682007674, 1.5065367380231727, 0.621512798247898, 0.0), (9.031250486511654, 6.802353629856113, 7.515924062026559, 7.90445808056549, 6.920943579839691, 3.2805919562580144, 2.9098218497961597, 2.483305940023303, 3.5561770498873715, 1.4389994823389904, 1.1214803983925201, 0.664488252977023, 0.0, 9.269075835343711, 7.309370782747252, 5.6074019919625995, 4.316998447016971, 7.112354099774743, 3.476628316032624, 2.9098218497961597, 2.3432799687557244, 3.4604717899198456, 2.634819360188497, 1.5031848124053118, 0.618395784532374, 0.0), (8.999427682938459, 6.768201798006293, 7.499022181989936, 7.88254039440507, 6.905159583838015, 3.274648571044058, 2.8973380903473696, 2.478707700078788, 3.5507742427473308, 1.4340507914462837, 1.1178371029892504, 0.6625431520861957, 0.0, 9.247137947319828, 7.2879746729481525, 5.5891855149462515, 4.30215237433885, 7.1015484854946616, 3.470190780110303, 2.8973380903473696, 2.3390346936028985, 3.4525797919190073, 2.6275134648016905, 1.4998044363979874, 0.6152910725460268, 0.0), (8.967132186722928, 6.734129934124536, 7.481945207234916, 7.8604402495875405, 6.889019112906595, 3.2687054322764144, 2.884878836317135, 2.474243569227122, 3.545390571815139, 1.4291119221774609, 1.1142031854692689, 0.6605897596066612, 0.0, 9.224766534007578, 7.266487355673273, 5.571015927346345, 4.287335766532382, 7.090781143630278, 3.463940996917971, 2.884878836317135, 2.334789594483153, 3.4445095564532977, 2.620146749862514, 1.4963890414469831, 0.6121936303749579, 0.0), (8.93432763208786, 6.7000826871579555, 7.464660294990421, 7.838117908158674, 6.8725020845409315, 3.26274643771858, 2.872421351969547, 2.469894197383977, 3.5400096034581354, 1.4241724099352562, 1.1105705628620632, 0.6586242446755264, 0.0, 9.201931301818599, 7.244866691430789, 5.552852814310316, 4.272517229805768, 7.080019206916271, 3.457851876337568, 2.872421351969547, 2.3305331697989855, 3.4362510422704657, 2.612705969386225, 1.4929320589980841, 0.6090984261052688, 0.0), (8.900977653256046, 6.666004706053673, 7.447134602485375, 7.815533632164248, 6.855588416236526, 3.2567554851340508, 2.859942901568691, 2.465640234465026, 3.534614904043661, 1.4192217901224033, 1.1069311521971208, 0.6566427764298991, 0.0, 9.178601957164537, 7.223070540728888, 5.534655760985604, 4.257665370367209, 7.069229808087322, 3.4518963282510366, 2.859942901568691, 2.3262539179528936, 3.427794208118263, 2.6051778773880834, 1.4894269204970751, 0.6060004278230613, 0.0), (8.867045884450281, 6.631840639758805, 7.4293352869486995, 7.792647683650037, 6.838258025488874, 3.250716472286322, 2.8474207493786565, 2.4614623303859418, 3.529190039939058, 1.4142495981416365, 1.1032768705039286, 0.6546415240068865, 0.0, 9.154748206457038, 7.20105676407575, 5.516384352519642, 4.242748794424909, 7.058380079878116, 3.4460472625403185, 2.8474207493786565, 2.321940337347373, 3.419129012744437, 2.597549227883346, 1.4858670573897401, 0.6028946036144368, 0.0), (8.832495959893366, 6.5975351372204685, 7.411229505609316, 7.769420324661814, 6.820490829793475, 3.2446132969388883, 2.8348321596635313, 2.457341135062396, 3.5237185775116666, 1.4092453693956895, 1.0995996348119743, 0.6526166565435961, 0.0, 9.130339756107748, 7.178783221979556, 5.4979981740598705, 4.2277361081870675, 7.047437155023333, 3.4402775890873545, 2.8348321596635313, 2.3175809263849203, 3.4102454148967376, 2.589806774887272, 1.4822459011218634, 0.5997759215654973, 0.0), (8.797291513808094, 6.563032847385783, 7.392784415696151, 7.7458118172453565, 6.802266746645829, 3.238429856855247, 2.8221543966874045, 2.4532572984100627, 3.5181840831288285, 1.4041986392872965, 1.0958913621507447, 0.6505643431771354, 0.0, 9.105346312528312, 7.156207774948489, 5.479456810753724, 4.212595917861889, 7.036368166257657, 3.4345602177740875, 2.8221543966874045, 2.3131641834680337, 3.4011333733229145, 2.5819372724151193, 1.4785568831392302, 0.596639349762344, 0.0), (8.76139618041726, 6.528278419201865, 7.373967174438122, 7.72178242344644, 6.783565693541435, 3.2321500497988933, 2.8093647247143627, 2.449191470344614, 3.5125701231578845, 1.3990989432191914, 1.0921439695497275, 0.6484807530446118, 0.0, 9.079737582130376, 7.13328828349073, 5.460719847748638, 4.1972968296575734, 7.025140246315769, 3.4288680584824593, 2.8093647247143627, 2.3086786069992096, 3.3917828467707176, 2.573927474482147, 1.4747934348876244, 0.5934798562910787, 0.0), (8.724773593943663, 6.493216501615832, 7.354744939064153, 7.697292405310838, 6.764367587975791, 3.225757773533322, 2.7964404080084946, 2.445124300781722, 3.5068602639661752, 1.3939358165941083, 1.0883493740384103, 0.6463620552831327, 0.0, 9.053483271325586, 7.10998260811446, 5.44174687019205, 4.181807449782324, 7.0137205279323505, 3.4231740210944106, 2.7964404080084946, 2.3041126953809443, 3.3821837939878954, 2.5657641351036133, 1.4709489878128308, 0.590292409237803, 0.0), (8.687387388610095, 6.457791743574804, 7.33508486680317, 7.672302024884328, 6.7446523474443945, 3.2192369258220297, 2.7833587108338893, 2.44103643963706, 3.5010380719210428, 1.388698794814781, 1.0844994926462799, 0.6442044190298056, 0.0, 9.026553086525583, 7.0862486093278605, 5.422497463231399, 4.166096384444343, 7.0020761438420855, 3.417451015491884, 2.7833587108338893, 2.2994549470157355, 3.3723261737221972, 2.557434008294776, 1.4670169733606342, 0.5870719766886187, 0.0), (8.649201198639354, 6.421948794025897, 7.314954114884091, 7.646771544212684, 6.724399889442747, 3.212571404428512, 2.770096897454634, 2.4369085368263, 3.4950871133898262, 1.3833774132839443, 1.0805862424028239, 0.6420040134217377, 0.0, 8.99891673414202, 7.0620441476391145, 5.402931212014119, 4.150132239851832, 6.9901742267796525, 3.41167195155682, 2.770096897454634, 2.2946938603060802, 3.3621999447213735, 2.548923848070895, 1.4629908229768183, 0.583813526729627, 0.0), (8.610178658254235, 6.385632301916229, 7.294319840535841, 7.62066122534168, 6.703590131466344, 3.205745107116265, 2.7566322321348173, 2.4327212422651154, 3.4889909547398688, 1.3779612074043308, 1.0766015403375297, 0.6397570075960368, 0.0, 8.970543920586536, 7.037327083556404, 5.383007701687648, 4.133883622212991, 6.9779819094797375, 3.4058097391711617, 2.7566322321348173, 2.289817933654475, 3.351795065733172, 2.540220408447227, 1.4588639681071682, 0.58051202744693, 0.0), (8.570283401677534, 6.348786916192918, 7.273149200987342, 7.593931330317094, 6.682202991010689, 3.1987419316487826, 2.7429419791385277, 2.428455205869179, 3.4827331623385107, 1.3724397125786756, 1.0725373034798844, 0.63745957068981, 0.0, 8.941404352270776, 7.012055277587909, 5.362686517399421, 4.117319137736026, 6.965466324677021, 3.3998372882168506, 2.7429419791385277, 2.284815665463416, 3.3411014955053444, 2.5313104434390317, 1.4546298401974684, 0.577162446926629, 0.0), (8.529479063132047, 6.311357285803083, 7.251409353467515, 7.566542121184698, 6.660218385571278, 3.1915457757895624, 2.729003402729852, 2.4240910775541624, 3.4762973025530934, 1.3668024642097119, 1.0683854488593754, 0.6351078718401649, 0.0, 8.91146773560639, 6.986186590241813, 5.341927244296877, 4.100407392629135, 6.952594605106187, 3.3937275085758274, 2.729003402729852, 2.2796755541354017, 3.330109192785639, 2.5221807070615663, 1.450281870693503, 0.5737597532548258, 0.0), (8.487729276840568, 6.273288059693839, 7.229067455205284, 7.538453859990269, 6.63761623264361, 3.184140537302099, 2.7147937671728797, 2.4196095072357395, 3.469666941750957, 1.3610389977001744, 1.0641378935054902, 0.6326980801842089, 0.0, 8.880703777005019, 6.959678882026297, 5.32068946752745, 4.083116993100523, 6.939333883501914, 3.3874533101300353, 2.7147937671728797, 2.274386098072928, 3.318808116321805, 2.51281795333009, 1.4458134910410567, 0.5702989145176218, 0.0), (8.444997677025897, 6.234523886812306, 7.206090663429573, 7.509626808779583, 6.614376449723186, 3.176510113949888, 2.7002903367316984, 2.4149911448295818, 3.462825646299444, 1.3551388484527966, 1.0597865544477159, 0.6302263648590494, 0.0, 8.849082182878314, 6.932490013449542, 5.298932772238579, 4.0654165453583895, 6.925651292598888, 3.3809876027614147, 2.7002903367316984, 2.2689357956784915, 3.307188224861593, 2.5032089362598615, 1.4412181326859146, 0.5667748988011189, 0.0), (8.40124789791083, 6.195009416105602, 7.1824461353693, 7.480021229598415, 6.590478954305501, 3.1686384034964257, 2.6854703756703975, 2.4102166402513627, 3.455756982565893, 1.349091551870313, 1.0553233487155398, 0.6276888950017938, 0.0, 8.816572659637913, 6.904577845019731, 5.276616743577699, 4.047274655610939, 6.911513965131786, 3.3743032963519077, 2.6854703756703975, 2.26331314535459, 3.2952394771527507, 2.4933404098661387, 1.4364892270738603, 0.5631826741914184, 0.0), (8.356443573718156, 6.154689296520844, 7.158101028253392, 7.44959738449254, 6.565903663886058, 3.1605093037052074, 2.670311148253063, 2.4052666434167547, 3.448444516917647, 1.3428866433554572, 1.0507401933384497, 0.6250818397495496, 0.0, 8.783144913695466, 6.875900237245045, 5.253700966692247, 4.028659930066371, 6.896889033835294, 3.3673733007834565, 2.670311148253063, 2.2575066455037196, 3.282951831943029, 2.4831991281641805, 1.4316202056506786, 0.5595172087746222, 0.0), (8.310548338670674, 6.113508177005149, 7.133022499310772, 7.418315535507731, 6.540630495960352, 3.152106712339729, 2.6547899187437842, 2.4001218042414303, 3.4408718157220486, 1.3365136583109634, 1.0460290053459322, 0.6224013682394242, 0.0, 8.748768651462617, 6.846415050633665, 5.230145026729661, 4.009540974932889, 6.881743631444097, 3.360170525938002, 2.6547899187437842, 2.251504794528378, 3.270315247980176, 2.472771845169244, 1.4266044998621543, 0.5557734706368318, 0.0), (8.263525826991184, 6.071410706505636, 7.107177705770357, 7.386135944689768, 6.514639368023886, 3.1434145271634857, 2.6388839514066493, 2.3947627726410623, 3.4330224453464364, 1.3299621321395652, 1.0411817017674754, 0.619643649608525, 0.0, 8.713413579351014, 6.816080145693774, 5.205908508837376, 3.9898863964186946, 6.866044890692873, 3.3526678816974873, 2.6388839514066493, 2.245296090831061, 3.257319684011943, 2.4620453148965895, 1.4214355411540713, 0.5519464278641489, 0.0), (8.215339672902477, 6.0283415339694235, 7.080533804861075, 7.353018874084421, 6.487910197572155, 3.134416645939974, 2.6225705105057466, 2.3891701985313234, 3.424879972158151, 1.3232216002439972, 1.036190199632566, 0.6168048529939595, 0.0, 8.6770494037723, 6.784853382933553, 5.180950998162829, 3.969664800731991, 6.849759944316302, 3.344838277943853, 2.6225705105057466, 2.238869032814267, 3.2439550987860777, 2.451006291361474, 1.4161067609722149, 0.548031048542675, 0.0), (8.16595351062735, 5.984245308343629, 7.053057953811847, 7.318924585737469, 6.460422902100661, 3.1250969664326886, 2.605826860305165, 2.3833247318278863, 3.4164279625245353, 1.3162815980269928, 1.0310464159706916, 0.6138811475328351, 0.0, 8.639645831138118, 6.7526926228611845, 5.155232079853457, 3.948844794080978, 6.832855925049071, 3.3366546245590407, 2.605826860305165, 2.2322121188804918, 3.2302114510503306, 2.439641528579157, 1.4106115907623695, 0.5440223007585119, 0.0), (8.1153309743886, 5.93906667857537, 7.024717309851591, 7.283813341694685, 6.4321573991049, 3.1154393864051255, 2.5886302650689905, 2.3772070224464232, 3.40764998281293, 1.3091316608912866, 1.0257422678113395, 0.6108687023622593, 0.0, 8.601172567860118, 6.719555725984851, 5.1287113390566965, 3.9273949826738592, 6.81529996562586, 3.3280898314249923, 2.5886302650689905, 2.2253138474322327, 3.21607869955245, 2.4279377805648954, 1.4049434619703185, 0.5399151525977609, 0.0), (8.063435698409021, 5.892750293611764, 6.9954790302092364, 7.247645404001847, 6.403093606080374, 3.105427803620781, 2.5709579890613132, 2.3707977203026074, 3.398529599390676, 1.301761324239612, 1.0202696721839972, 0.6077636866193392, 0.0, 8.561599320349941, 6.68540055281273, 5.101348360919985, 3.905283972718835, 6.797059198781352, 3.3191168084236504, 2.5709579890613132, 2.2181627168719866, 3.201546803040187, 2.4158818013339496, 1.3990958060418472, 0.535704572146524, 0.0), (8.010231316911412, 5.845240802399927, 6.965310272113703, 7.210381034704727, 6.37321144052258, 3.0950461158431497, 2.5527872965462204, 2.3640774753121114, 3.3890503786251127, 1.2941601234747035, 1.0146205461181517, 0.6045622694411826, 0.0, 8.520895795019237, 6.650184963853008, 5.073102730590758, 3.88248037042411, 6.778100757250225, 3.3097084654369557, 2.5527872965462204, 2.21074722560225, 3.18660572026129, 2.403460344901576, 1.3930620544227408, 0.5313855274909026, 0.0), (7.955681464118564, 5.796482853886981, 6.934178192793912, 7.171980495849104, 6.342490819927017, 3.0842782208357287, 2.5340954517878003, 2.3570269373906068, 3.3791958868835836, 1.2863175939992944, 1.0087868066432906, 0.601260619964897, 0.0, 8.479031698279647, 6.6138668196138655, 5.043934033216452, 3.8589527819978824, 6.758391773767167, 3.2998377123468496, 2.5340954517878003, 2.2030558720255207, 3.1712454099635083, 2.390660165283035, 1.3868356385587826, 0.5269529867169983, 0.0), (7.899749774253275, 5.746421097020041, 6.902049949478785, 7.132404049480748, 6.310911661789184, 3.0731080163620113, 2.5148597190501416, 2.3496267564537683, 3.3689496905334293, 1.2782232712161197, 1.002760370788901, 0.5978549073275894, 0.0, 8.435976736542818, 6.576403980603482, 5.013801853944504, 3.8346698136483583, 6.737899381066859, 3.2894774590352753, 2.5148597190501416, 2.1950771545442938, 3.155455830894592, 2.377468016493583, 1.3804099898957571, 0.5224019179109128, 0.0), (7.842399881538343, 5.6950001807462245, 6.868892699397251, 7.091611957645439, 6.278453883604579, 3.0615194001854955, 2.4950573625973322, 2.3418575824172674, 3.3582953559419897, 1.2698666905279126, 0.9965331555844703, 0.5943413006663675, 0.0, 8.391700616220398, 6.537754307330042, 4.982665777922351, 3.809600071583737, 6.716590711883979, 3.2786006153841742, 2.4950573625973322, 2.1867995715610684, 3.1392269418022893, 2.36387065254848, 1.3737785398794504, 0.5177272891587478, 0.0), (7.78359542019656, 5.642164754012652, 6.834673599778224, 7.049564482388949, 6.245097402868703, 3.049496270069676, 2.4746656466934596, 2.333700065196776, 3.3472164494766075, 1.2612373873374074, 0.9900970780594861, 0.5907159691183387, 0.0, 8.346173043724027, 6.497875660301725, 4.95048539029743, 3.783712162012222, 6.694432898953215, 3.2671800912754865, 2.4746656466934596, 2.17821162147834, 3.1225487014343516, 2.3498548274629836, 1.3669347199556448, 0.5129240685466048, 0.0), (7.723300024450729, 5.587859465766439, 6.7993598078506325, 7.006221885757057, 6.210822137077053, 3.0370225237780484, 2.453661835602614, 2.325134854707968, 3.3356965375046217, 1.2523248970473384, 0.9834440552434354, 0.5869750818206104, 0.0, 8.299363725465357, 6.456725900026714, 4.917220276217177, 3.7569746911420143, 6.671393075009243, 3.2551887965911552, 2.453661835602614, 2.169301802698606, 3.1054110685385266, 2.335407295252353, 1.3598719615701265, 0.5079872241605854, 0.0), (7.6614773285236355, 5.532028964954703, 6.762918480843396, 6.961544429795533, 6.175608003725131, 3.0240820590741087, 2.4320231935888805, 2.316142600866515, 3.323719186393376, 1.2431187550604388, 0.9765660041658056, 0.5831148079102902, 0.0, 8.251242367856026, 6.414262887013191, 4.882830020829028, 3.7293562651813157, 6.647438372786752, 3.242599641213121, 2.4320231935888805, 2.160058613624363, 3.0878040018625654, 2.320514809931845, 1.3525836961686795, 0.5029117240867913, 0.0), (7.598090966638081, 5.474617900524564, 6.725316775985439, 6.915492376550157, 6.139434920308432, 3.0106587737213526, 2.40972698491635, 2.3067039535880913, 3.3112679625102084, 1.2336084967794434, 0.9694548418560842, 0.5791313165244852, 0.0, 8.201778677307685, 6.370444481769337, 4.84727420928042, 3.7008254903383295, 6.622535925020417, 3.2293855350233276, 2.40972698491635, 2.150470552658109, 3.069717460154216, 2.3051641255167192, 1.3450633551970879, 0.49769253641132405, 0.0), (7.533104573016862, 5.415570921423138, 6.686521850505682, 6.868025988066703, 6.102282804322456, 2.9967365654832747, 2.3867504738491094, 2.2967995627883675, 3.2983264322224626, 1.2237836576070855, 0.9621024853437583, 0.5750207768003032, 0.0, 8.150942360231976, 6.325228544803333, 4.810512426718791, 3.671350972821256, 6.596652864444925, 3.2155193879037145, 2.3867504738491094, 2.140526118202339, 3.051141402161228, 2.2893419960222348, 1.3373043701011365, 0.4923246292202853, 0.0), (7.464680946405239, 5.353748694041236, 6.644659961585297, 6.817327186238432, 6.062454070580665, 2.9814309445183143, 2.3625533604639286, 2.285748730145572, 3.2838873638663655, 1.213341479072786, 0.9542659587564906, 0.570633297016195, 0.0, 8.096485859415345, 6.276966267178143, 4.771329793782452, 3.640024437218358, 6.567774727732731, 3.200048222203801, 2.3625533604639286, 2.129593531798796, 3.0312270352903323, 2.2724423954128112, 1.3289319923170593, 0.48670442673102154, 0.0), (7.382286766978402, 5.282809876299521, 6.58894818200249, 6.7529828690913405, 6.010127539854418, 2.95965229467081, 2.334106381692858, 2.2696723053184926, 3.2621424204073812, 1.2005702485246865, 0.9445694892698324, 0.5651135436402591, 0.0, 8.025427646920194, 6.216248980042849, 4.722847446349162, 3.601710745574059, 6.5242848408147625, 3.17754122744589, 2.334106381692858, 2.114037353336293, 3.005063769927209, 2.250994289697114, 1.3177896364004982, 0.4802554432999565, 0.0), (7.284872094904309, 5.202172001162321, 6.51826746496324, 6.673933132806645, 5.94428008756453, 2.9308657560278157, 2.301121874191892, 2.248166328969728, 3.2324750757428835, 1.1853014129657236, 0.9328765847682567, 0.5583751624073207, 0.0, 7.93642060889358, 6.142126786480525, 4.664382923841283, 3.55590423889717, 6.464950151485767, 3.147432860557619, 2.301121874191892, 2.0934755400198686, 2.972140043782265, 2.2246443776022153, 1.3036534929926482, 0.47292472737839286, 0.0), (7.17322205458596, 5.11236079574043, 6.4333724765919245, 6.5809293778175455, 5.865595416188075, 2.895420057582683, 2.263840723003438, 2.2215002221290754, 3.1952765889996724, 1.1676645482927346, 0.9192902757666179, 0.5504806224089643, 0.0, 7.830374044819097, 6.055286846498606, 4.596451378833089, 3.5029936448782033, 6.390553177999345, 3.1101003109807053, 2.263840723003438, 2.0681571839876307, 2.9327977080940375, 2.1936431259391824, 1.2866744953183848, 0.46476007234003913, 0.0), (7.048121770426357, 5.013901987144635, 6.335017883012913, 6.474723004557244, 5.7747572282021356, 2.853663928328766, 2.2225038131699044, 2.1899434058263343, 3.150938219304545, 1.147789230402558, 0.9039135927797701, 0.5414923927367745, 0.0, 7.708197254180333, 5.956416320104519, 4.519567963898851, 3.4433676912076736, 6.30187643860909, 3.065920768156868, 2.2225038131699044, 2.03833137737769, 2.8873786141010678, 2.158241001519082, 1.2670035766025827, 0.4558092715586033, 0.0), (6.9103563668284975, 4.90732130248573, 6.223958350350585, 6.35606541345895, 5.672449226083792, 2.8059460972594175, 2.1773520297337003, 2.153765301091302, 3.0998512257843016, 1.1258050351920315, 0.8868495663225682, 0.5314729424823361, 0.0, 7.570799536460879, 5.846202367305696, 4.43424783161284, 3.3774151055760937, 6.199702451568603, 3.015271421527823, 2.1773520297337003, 2.0042472123281554, 2.836224613041896, 2.118688471152984, 1.2447916700701172, 0.4461201184077937, 0.0), (6.760710968195384, 4.793144468874502, 6.100948544729314, 6.225708004955863, 5.559355112310126, 2.752615293367992, 2.128626257737233, 2.113235328953779, 3.0424068675657407, 1.1018415385579923, 0.8682012269098661, 0.5204847407372336, 0.0, 7.419090191144328, 5.725332148109569, 4.34100613454933, 3.305524615673976, 6.0848137351314815, 2.9585294605352903, 2.128626257737233, 1.9661537809771372, 2.779677556155063, 2.075236001651955, 1.2201897089458629, 0.43574040626131844, 0.0), (6.599970698930017, 4.671897213421746, 5.966743132273474, 6.084402179481189, 5.436158589358215, 2.694020245647842, 2.076567382222911, 2.068622910443561, 2.9789964037756596, 1.0760283163972786, 0.8480716050565187, 0.5085902565930517, 0.0, 7.25397851771427, 5.594492822523568, 4.2403580252825925, 3.2280849491918353, 5.957992807551319, 2.8960720746209856, 2.076567382222911, 1.9243001754627442, 2.7180792946791077, 2.0281340598270634, 1.1933486264546949, 0.42471792849288603, 0.0), (6.428920683435397, 4.54410526323825, 5.82209677910744, 5.932899337468126, 5.3035433597051425, 2.630509683092322, 2.021416288233143, 2.020197466590449, 2.9100110935408576, 1.0484949446067282, 0.8265637312773799, 0.49585195914137514, 0.0, 7.0763738156542955, 5.454371550555126, 4.1328186563869, 3.145484833820184, 5.820022187081715, 2.8282764532266285, 2.021416288233143, 1.8789354879230868, 2.6517716798525712, 1.9776331124893758, 1.1644193558214881, 0.41310047847620457, 0.0), (6.248346046114523, 4.410294345434805, 5.667764151355587, 5.771950879349882, 5.1621931258279865, 2.562432334694784, 1.9634138608103373, 1.9682284184242402, 2.835842195988133, 1.0193709990831787, 0.8037806360873045, 0.48233231747378824, 0.0, 6.887185384447996, 5.30565549221167, 4.0189031804365225, 3.058112997249536, 5.671684391976266, 2.755519785793936, 1.9634138608103373, 1.8303088104962744, 2.5810965629139933, 1.9239836264499612, 1.1335528302711175, 0.4009358495849823, 0.0), (6.059031911370395, 4.270990187122201, 5.50449991514229, 5.60230820555966, 5.012791590203827, 2.490136929448583, 1.902800984996902, 1.9129851869747332, 2.7568809702442847, 0.9887860557234682, 0.7798253500011468, 0.468093800681876, 0.0, 6.6873225235789615, 5.149031807500635, 3.8991267500057343, 2.9663581671704042, 5.513761940488569, 2.6781792617646265, 1.902800984996902, 1.7786692353204163, 2.5063957951019136, 1.867436068519887, 1.100899983028458, 0.3882718351929274, 0.0), (5.861763403606015, 4.1267185154112305, 5.333058736591924, 5.4247227165306615, 4.856022455309747, 2.413972196347072, 1.8398185458352458, 1.8547371932717271, 2.6735186754361124, 0.9568696904244344, 0.7548009035337614, 0.45319887785722274, 0.0, 6.477694532530785, 4.985187656429449, 3.774004517668807, 2.8706090712733023, 5.347037350872225, 2.596632070580418, 1.8398185458352458, 1.724265854533623, 2.4280112276548733, 1.808240905510221, 1.066611747318385, 0.3751562286737483, 0.0), (5.657325647224384, 3.978005057412684, 5.154195281828863, 5.23994581269609, 4.692569423622822, 2.334286864383604, 1.7747074283677764, 1.7937538583450197, 2.5861465706904125, 0.9237514790829147, 0.7288103272000027, 0.4377100180914133, 0.0, 6.259210710787055, 4.814810199005545, 3.6440516360000137, 2.7712544372487433, 5.172293141380825, 2.5112554016830275, 1.7747074283677764, 1.6673477602740028, 2.346284711811411, 1.7466486042320304, 1.0308390563657726, 0.36163682340115316, 0.0), (5.4465037666285, 3.82537554023735, 4.968664216977482, 5.048728894489152, 4.523116197620137, 2.2514296625515327, 1.7077085176369027, 1.7303046032244096, 2.495155915133985, 0.8895609975957474, 0.7019566515147247, 0.4216896904760322, 0.0, 6.032780357831365, 4.638586595236354, 3.509783257573624, 2.6686829927872413, 4.99031183026797, 2.4224264445141737, 1.7077085176369027, 1.6081640446796661, 2.2615580988100685, 1.6829096314963843, 0.9937328433954964, 0.3477614127488501, 0.0), (5.230082886221365, 3.6693556909960217, 4.777220208162156, 4.851823362343048, 4.348346479778769, 2.1657493198442115, 1.6390626986850327, 1.664658848939696, 2.4009379678936282, 0.8544278218597702, 0.6743429069927823, 0.4052003641026643, 0.0, 5.799312773147303, 4.457204005129307, 3.3717145349639117, 2.56328346557931, 4.8018759357872565, 2.3305223885155746, 1.6390626986850327, 1.5469637998887225, 2.1741732398893845, 1.6172744541143496, 0.9554440416324312, 0.3335777900905475, 0.0), (5.00884813040598, 3.510471236799489, 4.58061792150726, 4.649980616690982, 4.168943972575801, 2.077594565254994, 1.5690108565545748, 1.5970860165206766, 2.303883988096141, 0.8184815277718206, 0.6460721241490297, 0.3883045080628938, 0.0, 5.5597172562184625, 4.271349588691831, 3.2303606207451483, 2.4554445833154612, 4.607767976192282, 2.235920423128947, 1.5690108565545748, 1.483996118039281, 2.0844719862879004, 1.5499935388969943, 0.916123584301452, 0.31913374879995354, 0.0), (4.783584623585344, 3.349247904758541, 4.3796120231371685, 4.443952057966156, 3.9855923784883105, 1.987314127777233, 1.4977938762879377, 1.5278555269971503, 2.204385234868321, 0.7818516912287369, 0.6172473334983214, 0.37106459144830567, 0.0, 5.314903106528433, 4.081710505931362, 3.0862366674916064, 2.34555507368621, 4.408770469736642, 2.1389977377960103, 1.4977938762879377, 1.4195100912694523, 1.9927961892441552, 1.4813173526553853, 0.8759224046274336, 0.3044770822507765, 0.0), (4.555077490162455, 3.18621142198397, 4.174957179176257, 4.2344890866017755, 3.7989753999933793, 1.8952567364042834, 1.425652642927529, 1.457236801398915, 2.102832967336968, 0.7446678881273562, 0.5879715655555117, 0.35354308335048457, 0.0, 5.0657796235608075, 3.8889739168553294, 2.939857827777558, 2.234003664382068, 4.205665934673936, 2.040131521958481, 1.425652642927529, 1.3537548117173452, 1.8994876999966896, 1.411496362200592, 0.8349914358352515, 0.28965558381672457, 0.0), (4.324111854540319, 3.0218875155865668, 3.9674080557488987, 4.0223431030310435, 3.609776739568087, 1.8017711201294973, 1.3528280415157574, 1.3854992607557703, 1.9996184446288805, 0.7070596943645169, 0.558347850835455, 0.33580245286101496, 0.0, 4.813256106799174, 3.693826981471164, 2.791739254177275, 2.1211790830935504, 3.999236889257761, 1.9396989650580787, 1.3528280415157574, 1.2869793715210696, 1.8048883697840434, 1.3407810343436815, 0.7934816111497798, 0.2747170468715061, 0.0), (4.0914728411219325, 2.856801912677122, 3.7577193189794698, 3.808265507687162, 3.4186800996895155, 1.7072060079462288, 1.2795609570950313, 1.3129123260975137, 1.8951329258708567, 0.6691566858370562, 0.528479219853006, 0.3179051690714816, 0.0, 4.5582418557271245, 3.496956859786297, 2.6423960992650297, 2.0074700575111684, 3.7902658517417134, 1.838077256536519, 1.2795609570950313, 1.2194328628187348, 1.7093400498447577, 1.269421835895721, 0.751543863795894, 0.25970926478882933, 0.0), (3.8579455743102966, 2.6914803403664256, 3.5466456349923448, 3.593007701003337, 3.226369182834742, 1.6119101288478317, 1.2060922747077587, 1.239745418453944, 1.7897676701896952, 0.6310884384418126, 0.49846870312301883, 0.299913701073469, 0.0, 4.301646169828252, 3.299050711808158, 2.4923435156150937, 1.8932653153254375, 3.5795353403793904, 1.7356435858355217, 1.2060922747077587, 1.1513643777484512, 1.613184591417371, 1.1976692336677792, 0.7093291269984691, 0.24468003094240237, 0.0), (0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0)) passenger_allighting_rate = ((0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1)) '\nparameters for reproducibiliy. More information: https://numpy.org/doc/stable/reference/random/parallel.html\n' entropy = 8991598675325360468762009371570610170 child_seed_index = (1, 67)
# https://leetcode.com/problems/best-time-to-buy-and-sell-stock-with-cooldown/ class Solution: def maxProfit(self, prices: list[int]) -> int: max_profit = 0 last_no_stock = 0 last_have_stock = -prices[0] last_sold_stock = -1 for price in prices[1:]: curr_no_stock = max(last_no_stock, last_sold_stock) curr_have_stock = max(last_have_stock, last_no_stock - price) curr_sold_stock = last_have_stock + price max_profit = max( max_profit, curr_no_stock, curr_have_stock, curr_sold_stock) last_no_stock = curr_no_stock last_have_stock = curr_have_stock last_sold_stock = curr_sold_stock return max_profit
class Solution: def max_profit(self, prices: list[int]) -> int: max_profit = 0 last_no_stock = 0 last_have_stock = -prices[0] last_sold_stock = -1 for price in prices[1:]: curr_no_stock = max(last_no_stock, last_sold_stock) curr_have_stock = max(last_have_stock, last_no_stock - price) curr_sold_stock = last_have_stock + price max_profit = max(max_profit, curr_no_stock, curr_have_stock, curr_sold_stock) last_no_stock = curr_no_stock last_have_stock = curr_have_stock last_sold_stock = curr_sold_stock return max_profit
__author__ = 'Hinsteny' class A(object): """""" #---------------------------------------------------------------------- def __init__(self, *args, **kwargs): print("init_for:",self.__class__) def __new__(cls, *args, **kwargs): print("new_for:",cls) return object.__new__(cls) a = A("ww") print() class Foo(object): """ """ #---------------------------------------------------------------------- def __new__(cls, *args, **kwargs): # obj = object.__new__(cls, *args, **kwargs) obj = Bar.__new__(cls, *args, **kwargs) # obj = super(Foo, cls).__new__(cls, *args, **kwargs) print("Call_new_Foo:", obj.__class__) return obj def __init__(self): print("Call_init_for_Foo:", self.__class__) class Bar(Foo): """ """ #---------------------------------------------------------------------- def __new__(cls, *args, **kwargs): print("Call_new_Bar:",) obj = Car.__new__(cls, *args, **kwargs) return obj def __init__(self): print("Call_init_Bar:", self.__class__) class Student(object): """ """ #---------------------------------------------------------------------- def __init__(self): pass class Car(object): """ """ #---------------------------------------------------------------------- def __new__(cls, *args, **kwargs): obj = object.__new__(cls, *args, **kwargs) print("Call_new_Car:", obj.__class__) return obj def __init__(self): print("Call_init_Car:", self.__class__) foo = Foo() bar = Bar() car = Car() print() class X(object): """ X class """ flag = 521 #---------------------------------------------------------------------- def __init__(self, *args, **kwargs): print("Call_init_from:", self.__class__) def __new__(cls, *args, **kwargs): obj = object.__new__(cls, *args, **kwargs) print("Call_new_for:", cls.__class__) return obj class Y(object): """ Y class """ #---------------------------------------------------------------------- def __init__(self, *args, **kwargs): print("Call_init_from:", self.__class__) def __new__(cls, *args, **kwargs): obj = object.__new__(X, *args, **kwargs) print("Call_new_for:", cls.__class__) return obj y = Y() print(type(y)) print(y.flag) print() class RoundFloat(float): """ """ #---------------------------------------------------------------------- def __new__(cls, num): num = round(num, 2) print(num) return float.__new__(RoundFloat, num) def __init__(self, num): print(num) pass f = RoundFloat(9.2143464) print(f) print()
__author__ = 'Hinsteny' class A(object): """""" def __init__(self, *args, **kwargs): print('init_for:', self.__class__) def __new__(cls, *args, **kwargs): print('new_for:', cls) return object.__new__(cls) a = a('ww') print() class Foo(object): """ """ def __new__(cls, *args, **kwargs): obj = Bar.__new__(cls, *args, **kwargs) print('Call_new_Foo:', obj.__class__) return obj def __init__(self): print('Call_init_for_Foo:', self.__class__) class Bar(Foo): """ """ def __new__(cls, *args, **kwargs): print('Call_new_Bar:') obj = Car.__new__(cls, *args, **kwargs) return obj def __init__(self): print('Call_init_Bar:', self.__class__) class Student(object): """ """ def __init__(self): pass class Car(object): """ """ def __new__(cls, *args, **kwargs): obj = object.__new__(cls, *args, **kwargs) print('Call_new_Car:', obj.__class__) return obj def __init__(self): print('Call_init_Car:', self.__class__) foo = foo() bar = bar() car = car() print() class X(object): """ X class """ flag = 521 def __init__(self, *args, **kwargs): print('Call_init_from:', self.__class__) def __new__(cls, *args, **kwargs): obj = object.__new__(cls, *args, **kwargs) print('Call_new_for:', cls.__class__) return obj class Y(object): """ Y class """ def __init__(self, *args, **kwargs): print('Call_init_from:', self.__class__) def __new__(cls, *args, **kwargs): obj = object.__new__(X, *args, **kwargs) print('Call_new_for:', cls.__class__) return obj y = y() print(type(y)) print(y.flag) print() class Roundfloat(float): """ """ def __new__(cls, num): num = round(num, 2) print(num) return float.__new__(RoundFloat, num) def __init__(self, num): print(num) pass f = round_float(9.2143464) print(f) print()
class LibrusLoginError(Exception): pass class LibrusNotHandlerableError(Exception): pass class SynergiaNotFound(Exception): pass class LibrusInvalidPasswordError(Exception): pass class SynergiaAccessDenied(Exception): pass class WrongHTTPMethod(Exception): pass class SynergiaInvalidRequest(Exception): pass class TokenExpired(Exception): pass class SynergiaForbidden(Exception): pass class InvalidCacheManager(Exception): pass
class Librusloginerror(Exception): pass class Librusnothandlerableerror(Exception): pass class Synergianotfound(Exception): pass class Librusinvalidpassworderror(Exception): pass class Synergiaaccessdenied(Exception): pass class Wronghttpmethod(Exception): pass class Synergiainvalidrequest(Exception): pass class Tokenexpired(Exception): pass class Synergiaforbidden(Exception): pass class Invalidcachemanager(Exception): pass
""" ###################### EDGE ####################""" class edge: def __init__(self, node1, node2): self.start = node1 self.end = node2 self.cost_triples = [] class vertex: def __init__(self, node): self.id = node self.edges = [] class Graph: def __init__(self): self.vert_dict = {} #self.edge_dict = {} self.num_vertices = 0 def add_vertex(self, node): if node not in self.vert_dict.keys(): self.num_vertices = self.num_vertices + 1 new_vertex = vertex(node) self.vert_dict[node] = new_vertex return new_vertex return self.vert_dict[node] def add_edge(self, frm, to): frmob = self.add_vertex(frm) toob = self.add_vertex(to) new_edge = edge(frm, to) #self.edge_dict[frm+to] = new_edge frmob.edges.append(new_edge) toob.edges.append(new_edge) if __name__ == "__main__": # create a graphof 4 nodes # # if a node is added - only node list is updated # call graph insert method # if an edge is added - possibly two nodes will be added g = Graph() g.add_vertex('a') g.add_edge('a','b') g.add_edge('a','c') g.add_edge('b','c') g.add_edge('b','d') g.add_edge('c','d') source_vert = g.vert_dict['a'] for edge in g.vert_dict['a'].edges: if edge.end == 'c': edge.cost_triples.append([1,2,3]) print("found") #edge_temp = g.edge_dict['ab'] #edge_temp.cost_triples.append([1,2,3]) #g.add_vertex('b') #g.add_vertex('c') #g.add_vertex('d') #g.add_vertex('e') print("done") """ ###################### VERTEX ####################""" """ class Vertex: def __init__(self, node, mat): self.id = node self.mcv = mat self.adjacent = {} def __str__(self): return str(self.id) + ' adjacent: ' + str([x.id for x in self.adjacent]) def add_neighbor(self, neighbor, weight=0): # add a multi-dim value here that represent the number of agents on that edge self.adjacent[neighbor] = weight def del_neighbor(self, neighbor): if neighbor in self.adjacent.keys(): del self.adjacent[neighbor] def get_connections(self): return self.adjacent.keys() def get_id(self): return self.id def get_mcv(self): return self.mcv def set_mcv(self, tempMCV): self.mcv = tempMCV def get_weight(self, neighbor): return self.adjacent[neighbor] """ """ ###################### GRAPH ####################""" """ class Graph: def __init__(self): self.vert_dict = {} self.num_vertices = 0 def __iter__(self): return iter(self.vert_dict.values()) def add_vertex(self, node, mat): if node not in self.vert_dict.keys(): self.num_vertices = self.num_vertices + 1 new_vertex = Vertex(node, mat) self.vert_dict[node] = new_vertex return new_vertex return None def del_vertex(self, node): self.num_vertices = self.num_vertices - 1 del self.vert_dict[node] def get_vertex(self, n): if n in self.vert_dict: return self.vert_dict[n] else: return None def get_vertex_mcv(self, n): if n in self.vert_dict: return self.vert_dict[n].get_mcv() else: return None def set_vertex_mcv(self, n, tempMCV): self.vert_dict[n].set_mcv(tempMCV) def add_edge(self, frm, frm_mat, to, to_mat, cost = 0): if frm not in self.vert_dict: self.add_vertex(frm, frm_mat) if to not in self.vert_dict: self.add_vertex(to, to_mat) self.vert_dict[frm].add_neighbor(self.vert_dict[to], cost) self.vert_dict[to].add_neighbor(self.vert_dict[frm], cost) def del_edge(self, frm, to): self.vert_dict[frm].del_neighbor(self.vert_dict[to]) self.vert_dict[to].del_neighbor(self.vert_dict[frm]) def get_vertices(self): return self.vert_dict.keys() def is_neighbour(self, frm, to): vertex = self.vert_dict[to] for w in vertex.get_connections(): if frm == w.get_id(): return True return False """
""" ###################### EDGE ####################""" class Edge: def __init__(self, node1, node2): self.start = node1 self.end = node2 self.cost_triples = [] class Vertex: def __init__(self, node): self.id = node self.edges = [] class Graph: def __init__(self): self.vert_dict = {} self.num_vertices = 0 def add_vertex(self, node): if node not in self.vert_dict.keys(): self.num_vertices = self.num_vertices + 1 new_vertex = vertex(node) self.vert_dict[node] = new_vertex return new_vertex return self.vert_dict[node] def add_edge(self, frm, to): frmob = self.add_vertex(frm) toob = self.add_vertex(to) new_edge = edge(frm, to) frmob.edges.append(new_edge) toob.edges.append(new_edge) if __name__ == '__main__': g = graph() g.add_vertex('a') g.add_edge('a', 'b') g.add_edge('a', 'c') g.add_edge('b', 'c') g.add_edge('b', 'd') g.add_edge('c', 'd') source_vert = g.vert_dict['a'] for edge in g.vert_dict['a'].edges: if edge.end == 'c': edge.cost_triples.append([1, 2, 3]) print('found') print('done') ' ###################### VERTEX ####################' "\nclass Vertex:\n def __init__(self, node, mat):\n self.id = node\n self.mcv = mat\n self.adjacent = {}\n\n def __str__(self):\n return str(self.id) + ' adjacent: ' + str([x.id for x in self.adjacent])\n\n def add_neighbor(self, neighbor, weight=0):\n # add a multi-dim value here that represent the number of agents on that edge\n self.adjacent[neighbor] = weight\n\n def del_neighbor(self, neighbor):\n if neighbor in self.adjacent.keys():\n del self.adjacent[neighbor]\n\n\n def get_connections(self):\n return self.adjacent.keys()\n\n def get_id(self):\n return self.id\n\n def get_mcv(self):\n return self.mcv\n\n def set_mcv(self, tempMCV):\n self.mcv = tempMCV\n\n def get_weight(self, neighbor):\n return self.adjacent[neighbor]\n" ' ###################### GRAPH ####################' '\nclass Graph:\n def __init__(self):\n self.vert_dict = {}\n self.num_vertices = 0\n\n def __iter__(self):\n return iter(self.vert_dict.values())\n\n def add_vertex(self, node, mat):\n if node not in self.vert_dict.keys():\n self.num_vertices = self.num_vertices + 1\n new_vertex = Vertex(node, mat)\n self.vert_dict[node] = new_vertex\n return new_vertex\n return None\n\n\n def del_vertex(self, node):\n self.num_vertices = self.num_vertices - 1\n del self.vert_dict[node]\n\n\n def get_vertex(self, n):\n if n in self.vert_dict:\n return self.vert_dict[n]\n else:\n return None\n\n def get_vertex_mcv(self, n):\n if n in self.vert_dict:\n return self.vert_dict[n].get_mcv()\n else:\n return None\n\n def set_vertex_mcv(self, n, tempMCV):\n self.vert_dict[n].set_mcv(tempMCV)\n\n def add_edge(self, frm, frm_mat, to, to_mat, cost = 0):\n if frm not in self.vert_dict:\n self.add_vertex(frm, frm_mat)\n if to not in self.vert_dict:\n self.add_vertex(to, to_mat)\n\n self.vert_dict[frm].add_neighbor(self.vert_dict[to], cost)\n self.vert_dict[to].add_neighbor(self.vert_dict[frm], cost)\n\n def del_edge(self, frm, to):\n\n self.vert_dict[frm].del_neighbor(self.vert_dict[to])\n self.vert_dict[to].del_neighbor(self.vert_dict[frm])\n\n def get_vertices(self):\n return self.vert_dict.keys()\n\n def is_neighbour(self, frm, to):\n vertex = self.vert_dict[to]\n for w in vertex.get_connections():\n if frm == w.get_id():\n return True\n return False\n\n'
#https://leetcode.com/problems/fruit-into-type_baskets/ class Solution(object): #Time Efficiency: O(N), where N is the fruit count in the trees. #Space Efficiency: O(K), where K is the total types of fruit in the trees. def totalFruit(self, tree): counter = 0 #max fruit count start = 0 #the point where from start to i has only two types of fruit mark = {} #we keep track of each type of fruit's index last seen type_basket = [] #types of fruit in the basket now for i in range(len(tree)): t = tree[i] if t not in type_basket: if len(type_basket)<2: """ if this type of fruit not in type_basket and the type_basket is not full yet add the type to the type_basket """ type_basket.append(t) elif len(type_basket)==2: """ if this type of fruit not in type_basket and the type_basket has two types already we get rid of the type with smaller last seen index by moving the start to its index+1 so now between start and i has only two types of fruit """ t1 = type_basket[0] t2 = type_basket[1] if mark[t1]<mark[t2]: start = mark[t1]+1 type_basket[0] = t else: start = mark[t2]+1 type_basket[1] = t else: #basket should not have more than two types print('ERROR') return 0 counter = max(counter, i-start+1) mark[t] = i return counter """ Find the length of longest subarray that at most has 2 unique number. """ class Solution(object): def totalFruit(self, fruits): ans = 0 uniqueFruits = 0 i = 0 counter = collections.Counter() for j, fruit in enumerate(fruits): counter[fruit] += 1 if counter[fruit]==1: uniqueFruits += 1 while uniqueFruits>2: counter[fruits[i]] -= 1 if counter[fruits[i]]==0: uniqueFruits -= 1 i += 1 ans = max(ans, j-i+1) return ans
class Solution(object): def total_fruit(self, tree): counter = 0 start = 0 mark = {} type_basket = [] for i in range(len(tree)): t = tree[i] if t not in type_basket: if len(type_basket) < 2: '\n if this type of fruit not in type_basket\n and the type_basket is not full yet\n add the type to the type_basket\n ' type_basket.append(t) elif len(type_basket) == 2: '\n if this type of fruit not in type_basket\n and the type_basket has two types already\n we get rid of the type with smaller last seen index\n by moving the start to its index+1\n so now between start and i has only two types of fruit\n ' t1 = type_basket[0] t2 = type_basket[1] if mark[t1] < mark[t2]: start = mark[t1] + 1 type_basket[0] = t else: start = mark[t2] + 1 type_basket[1] = t else: print('ERROR') return 0 counter = max(counter, i - start + 1) mark[t] = i return counter '\nFind the length of longest subarray that at most has 2 unique number.\n' class Solution(object): def total_fruit(self, fruits): ans = 0 unique_fruits = 0 i = 0 counter = collections.Counter() for (j, fruit) in enumerate(fruits): counter[fruit] += 1 if counter[fruit] == 1: unique_fruits += 1 while uniqueFruits > 2: counter[fruits[i]] -= 1 if counter[fruits[i]] == 0: unique_fruits -= 1 i += 1 ans = max(ans, j - i + 1) return ans
#deleteListElements.py colors = ["red", "blue", "orange", "black", "white", "golden"] list2 = ["nose", "ice", "fire", "cat", "mouse", "dog"] len_colors = len(colors) len_list2 = len(list2) if len_colors == len_list2: for i in range(len_colors): print(colors[i], "\t", list2[i]) #print("\n") print() del colors[0] del list2[5] len_colors = len(colors) len_list2 = len(list2) print("lists after deletion: ") if len_colors == len_list2: for i in range(len_colors): print(colors[i],"\t", list2[i])
colors = ['red', 'blue', 'orange', 'black', 'white', 'golden'] list2 = ['nose', 'ice', 'fire', 'cat', 'mouse', 'dog'] len_colors = len(colors) len_list2 = len(list2) if len_colors == len_list2: for i in range(len_colors): print(colors[i], '\t', list2[i]) print() del colors[0] del list2[5] len_colors = len(colors) len_list2 = len(list2) print('lists after deletion: ') if len_colors == len_list2: for i in range(len_colors): print(colors[i], '\t', list2[i])
class Outcar(object): """ object to manage IO to VASP through the OUTCAR file Many of the attributes in this class are initialized to None at instanciation. They are processed when the OUTCAR file is read. Args: filename (str): filename of the OUTCAR file Attributes: total_energy (float): total energy of the structure in eV. elastic_tensor (nd.array): the components of the elastic tensor. The components of the array start at :math:`0`. So the :math:`c_{11}` component would be accessed by elastic_tensor[0,0] phonon_eig_val (nd.array): the eigenvalues of the phonons determined by lattice dynamics. phonon_eig_vec (nd.array): the eigenvectors of the phonons determined by lattice dynamics. """ def __init__(self, filename="OUTCAR"): self.filename = filename self.total_energy = None self.encut = None self.entropy = None self.elastic_tensor = None self.phonon_eig_val = None # phonon eigenvalues self.phonon_eig_vec = None # phonon eigenvectors self.magnetic_moments = None def read(self,filename=None): """ read a VASP outcar file and parse for information Args: filename (str): filename encut (float): energy cutoff for this simulation total_energy (float): total energy for this simulation """ if filename is not None: self.filename = filename with open(self.filename) as f: for line in f: # check if free energy line if "TOTEN" in line: try: E = line.strip().split('=')[1].strip().split(' ')[0] E = float(E) self.total_energy = E except ValueError as e: if type(self.total_energy) is not float: pass except IndexError as e: if type(self.total_energy) is not float: pass elif "ENCUT" in line: E = line.strip().split('=')[1].strip().split(' ')[0] E = float(E) self.encut = E elif "EENTRO" in line: try: E = line.strip().split('=')[1].strip() E = float(E) self.entropy = E except ValueError as e: if type(self.entropy) is not float: pass except IndexError as e: if type(self.entropy) is not float: pass else: pass def __string__(): print("total_energy[eV] = {}".format(self._ecoh_per_structure)) def get_phonons(self): pass def get_time_of_calculation(self): pass def get_number_of_atoms(self): pass def get_energy(self, fname="OUTCAR"): self.ecoh_per_structure = None self.ecoh_per_atom = None def get_magnetic_moments(self, filename=None): if filename is None: filename_ = self.filename else: self.filename = filename filename_ = filename with open(filename_) as f: line = f.readline() while line: if "magnetization (x)" in line: self.magnetic_moments = [] line = f.readline() line = f.readline() line = line.replace('# of ion','atom_id') line = line.replace('tot','total') labels = line.strip().split() while '---' not in line: line = f.readline() line = f.readline() while '---' not in line: values = [float(k) for k in line.strip().split()] self.magnetic_moments.append(values[1:]) line = f.readline() line = f.readline() return self.magnetic_moments
class Outcar(object): """ object to manage IO to VASP through the OUTCAR file Many of the attributes in this class are initialized to None at instanciation. They are processed when the OUTCAR file is read. Args: filename (str): filename of the OUTCAR file Attributes: total_energy (float): total energy of the structure in eV. elastic_tensor (nd.array): the components of the elastic tensor. The components of the array start at :math:`0`. So the :math:`c_{11}` component would be accessed by elastic_tensor[0,0] phonon_eig_val (nd.array): the eigenvalues of the phonons determined by lattice dynamics. phonon_eig_vec (nd.array): the eigenvectors of the phonons determined by lattice dynamics. """ def __init__(self, filename='OUTCAR'): self.filename = filename self.total_energy = None self.encut = None self.entropy = None self.elastic_tensor = None self.phonon_eig_val = None self.phonon_eig_vec = None self.magnetic_moments = None def read(self, filename=None): """ read a VASP outcar file and parse for information Args: filename (str): filename encut (float): energy cutoff for this simulation total_energy (float): total energy for this simulation """ if filename is not None: self.filename = filename with open(self.filename) as f: for line in f: if 'TOTEN' in line: try: e = line.strip().split('=')[1].strip().split(' ')[0] e = float(E) self.total_energy = E except ValueError as e: if type(self.total_energy) is not float: pass except IndexError as e: if type(self.total_energy) is not float: pass elif 'ENCUT' in line: e = line.strip().split('=')[1].strip().split(' ')[0] e = float(E) self.encut = E elif 'EENTRO' in line: try: e = line.strip().split('=')[1].strip() e = float(E) self.entropy = E except ValueError as e: if type(self.entropy) is not float: pass except IndexError as e: if type(self.entropy) is not float: pass else: pass def __string__(): print('total_energy[eV] = {}'.format(self._ecoh_per_structure)) def get_phonons(self): pass def get_time_of_calculation(self): pass def get_number_of_atoms(self): pass def get_energy(self, fname='OUTCAR'): self.ecoh_per_structure = None self.ecoh_per_atom = None def get_magnetic_moments(self, filename=None): if filename is None: filename_ = self.filename else: self.filename = filename filename_ = filename with open(filename_) as f: line = f.readline() while line: if 'magnetization (x)' in line: self.magnetic_moments = [] line = f.readline() line = f.readline() line = line.replace('# of ion', 'atom_id') line = line.replace('tot', 'total') labels = line.strip().split() while '---' not in line: line = f.readline() line = f.readline() while '---' not in line: values = [float(k) for k in line.strip().split()] self.magnetic_moments.append(values[1:]) line = f.readline() line = f.readline() return self.magnetic_moments
#!/bin/python # Licensed to the Apache Software Foundation (ASF) under one # or more contributor license agreements. See the NOTICE file # distributed with this work for additional information # regarding copyright ownership. The ASF licenses this file # to you 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. # Usage: python bpacking_avx512_codegen.py > bpacking_avx512_generated.h def print_unpack_bit_func(bit): shift = 0 shifts = [] in_index = 0 inls = [] mask = (1 << bit) - 1 bracket = "{" print( f"inline const uint32_t* unpack{bit}_32(const uint32_t* in, uint32_t* out) {bracket}") print(" uint32_t mask = 0x%x;" % mask) print(" __m512i reg_shifts, reg_inls, reg_masks;") print(" __m512i results[2];") print("") for i in range(32): if shift + bit == 32: shifts.append(shift) inls.append(f"in[{in_index}]") in_index += 1 shift = 0 elif shift + bit > 32: # croos the boundary inls.append( f"in[{in_index}] >> {shift} | in[{in_index + 1}] << {32 - shift}") in_index += 1 shift = bit - (32 - shift) shifts.append(0) # zero shift else: shifts.append(shift) inls.append(f"in[{in_index}]") shift += bit print(" reg_masks = _mm512_set1_epi32(mask);") print("") print(" // shift the first 16 outs") print( f" reg_shifts = _mm512_set_epi32({shifts[15]}, {shifts[14]}, {shifts[13]}, {shifts[12]},") print( f" {shifts[11]}, {shifts[10]}, {shifts[9]}, {shifts[8]},") print( f" {shifts[7]}, {shifts[6]}, {shifts[5]}, {shifts[4]},") print( f" {shifts[3]}, {shifts[2]}, {shifts[1]}, {shifts[0]});") print(f" reg_inls = _mm512_set_epi32({inls[15]}, {inls[14]},") print(f" {inls[13]}, {inls[12]},") print(f" {inls[11]}, {inls[10]},") print(f" {inls[9]}, {inls[8]},") print(f" {inls[7]}, {inls[6]},") print(f" {inls[5]}, {inls[4]},") print(f" {inls[3]}, {inls[2]},") print(f" {inls[1]}, {inls[0]});") print( " results[0] = _mm512_and_epi32(_mm512_srlv_epi32(reg_inls, reg_shifts), reg_masks);") print("") print(" // shift the second 16 outs") print( f" reg_shifts = _mm512_set_epi32({shifts[31]}, {shifts[30]}, {shifts[29]}, {shifts[28]},") print( f" {shifts[27]}, {shifts[26]}, {shifts[25]}, {shifts[24]},") print( f" {shifts[23]}, {shifts[22]}, {shifts[21]}, {shifts[20]},") print( f" {shifts[19]}, {shifts[18]}, {shifts[17]}, {shifts[16]});") print(f" reg_inls = _mm512_set_epi32({inls[31]}, {inls[30]},") print(f" {inls[29]}, {inls[28]},") print(f" {inls[27]}, {inls[26]},") print(f" {inls[25]}, {inls[24]},") print(f" {inls[23]}, {inls[22]},") print(f" {inls[21]}, {inls[20]},") print(f" {inls[19]}, {inls[18]},") print(f" {inls[17]}, {inls[16]});") print( " results[1] = _mm512_and_epi32(_mm512_srlv_epi32(reg_inls, reg_shifts), reg_masks);") print("") print(" memcpy(out, &results, 32 * sizeof(*out));") print(" out += 32;") print(f" in += {bit};") print("") print(" return in;") print("}") def print_unpack_bit0_func(): print( "inline const uint32_t* nullunpacker32(const uint32_t* in, uint32_t* out) {") print(" memset(out, 0x0, 32 * sizeof(*out));") print(" out += 32;") print("") print(" return in;") print("}") def print_unpack_bit32_func(): print( "inline const uint32_t* unpack32_32(const uint32_t* in, uint32_t* out) {") print(" memcpy(out, in, 32 * sizeof(*out));") print(" in += 32;") print(" out += 32;") print("") print(" return in;") print("}") def print_copyright(): print( """// Licensed to the Apache Software Foundation (ASF) under one // or more contributor license agreements. See the NOTICE file // distributed with this work for additional information // regarding copyright ownership. The ASF licenses this file // to you 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.""") def print_note(): print("//") print("// Automatically generated file; DO NOT EDIT.") def main(): print_copyright() print_note() print("") print("#pragma once") print("") print("#include <immintrin.h>") print("") print("namespace arrow {") print("namespace internal {") print("") print_unpack_bit0_func() print("") for i in range(1, 32): print_unpack_bit_func(i) print("") print_unpack_bit32_func() print("") print("} // namespace internal") print("} // namespace arrow") if __name__ == '__main__': main()
def print_unpack_bit_func(bit): shift = 0 shifts = [] in_index = 0 inls = [] mask = (1 << bit) - 1 bracket = '{' print(f'inline const uint32_t* unpack{bit}_32(const uint32_t* in, uint32_t* out) {bracket}') print(' uint32_t mask = 0x%x;' % mask) print(' __m512i reg_shifts, reg_inls, reg_masks;') print(' __m512i results[2];') print('') for i in range(32): if shift + bit == 32: shifts.append(shift) inls.append(f'in[{in_index}]') in_index += 1 shift = 0 elif shift + bit > 32: inls.append(f'in[{in_index}] >> {shift} | in[{in_index + 1}] << {32 - shift}') in_index += 1 shift = bit - (32 - shift) shifts.append(0) else: shifts.append(shift) inls.append(f'in[{in_index}]') shift += bit print(' reg_masks = _mm512_set1_epi32(mask);') print('') print(' // shift the first 16 outs') print(f' reg_shifts = _mm512_set_epi32({shifts[15]}, {shifts[14]}, {shifts[13]}, {shifts[12]},') print(f' {shifts[11]}, {shifts[10]}, {shifts[9]}, {shifts[8]},') print(f' {shifts[7]}, {shifts[6]}, {shifts[5]}, {shifts[4]},') print(f' {shifts[3]}, {shifts[2]}, {shifts[1]}, {shifts[0]});') print(f' reg_inls = _mm512_set_epi32({inls[15]}, {inls[14]},') print(f' {inls[13]}, {inls[12]},') print(f' {inls[11]}, {inls[10]},') print(f' {inls[9]}, {inls[8]},') print(f' {inls[7]}, {inls[6]},') print(f' {inls[5]}, {inls[4]},') print(f' {inls[3]}, {inls[2]},') print(f' {inls[1]}, {inls[0]});') print(' results[0] = _mm512_and_epi32(_mm512_srlv_epi32(reg_inls, reg_shifts), reg_masks);') print('') print(' // shift the second 16 outs') print(f' reg_shifts = _mm512_set_epi32({shifts[31]}, {shifts[30]}, {shifts[29]}, {shifts[28]},') print(f' {shifts[27]}, {shifts[26]}, {shifts[25]}, {shifts[24]},') print(f' {shifts[23]}, {shifts[22]}, {shifts[21]}, {shifts[20]},') print(f' {shifts[19]}, {shifts[18]}, {shifts[17]}, {shifts[16]});') print(f' reg_inls = _mm512_set_epi32({inls[31]}, {inls[30]},') print(f' {inls[29]}, {inls[28]},') print(f' {inls[27]}, {inls[26]},') print(f' {inls[25]}, {inls[24]},') print(f' {inls[23]}, {inls[22]},') print(f' {inls[21]}, {inls[20]},') print(f' {inls[19]}, {inls[18]},') print(f' {inls[17]}, {inls[16]});') print(' results[1] = _mm512_and_epi32(_mm512_srlv_epi32(reg_inls, reg_shifts), reg_masks);') print('') print(' memcpy(out, &results, 32 * sizeof(*out));') print(' out += 32;') print(f' in += {bit};') print('') print(' return in;') print('}') def print_unpack_bit0_func(): print('inline const uint32_t* nullunpacker32(const uint32_t* in, uint32_t* out) {') print(' memset(out, 0x0, 32 * sizeof(*out));') print(' out += 32;') print('') print(' return in;') print('}') def print_unpack_bit32_func(): print('inline const uint32_t* unpack32_32(const uint32_t* in, uint32_t* out) {') print(' memcpy(out, in, 32 * sizeof(*out));') print(' in += 32;') print(' out += 32;') print('') print(' return in;') print('}') def print_copyright(): print('// Licensed to the Apache Software Foundation (ASF) under one\n// or more contributor license agreements. See the NOTICE file\n// distributed with this work for additional information\n// regarding copyright ownership. The ASF licenses this file\n// to you under the Apache License, Version 2.0 (the\n// "License"); you may not use this file except in compliance\n// with the License. You may obtain a copy of the License at\n//\n// http://www.apache.org/licenses/LICENSE-2.0\n//\n// Unless required by applicable law or agreed to in writing,\n// software distributed under the License is distributed on an\n// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n// KIND, either express or implied. See the License for the\n// specific language governing permissions and limitations\n// under the License.') def print_note(): print('//') print('// Automatically generated file; DO NOT EDIT.') def main(): print_copyright() print_note() print('') print('#pragma once') print('') print('#include <immintrin.h>') print('') print('namespace arrow {') print('namespace internal {') print('') print_unpack_bit0_func() print('') for i in range(1, 32): print_unpack_bit_func(i) print('') print_unpack_bit32_func() print('') print('} // namespace internal') print('} // namespace arrow') if __name__ == '__main__': main()
# 1182. Shortest Distance to Target Color # Runtime: 3768 ms, faster than 6.63% of Python3 online submissions for Shortest Distance to Target Color. # Memory Usage: 38.2 MB, less than 24.70% of Python3 online submissions for Shortest Distance to Target Color. class Solution: # Dynamic Programming def shortestDistanceColor(self, colors: list[int], queries: list[list[int]]) -> list[int]: dist = [[-1] * len(colors) for _ in range(3)] right_most = [0, 0, 0] left_most = [len(colors) - 1, len(colors) - 1, len(colors) - 1] # Iterating from left to right, # and looking forwards to find the nearest target color on the left. for i in range(len(colors)): color = colors[i] - 1 for j in range(right_most[color], i + 1): dist[color][j] = i - j right_most[color] = i + 1 # Iterating from right to left, # and looking backwards to find the nearest target color on the right. for i in range(len(colors) - 1, -1, -1): color = colors[i] - 1 for j in range(left_most[color], i - 1, -1): if dist[color][j] == -1 or dist[color][j] > j - i: dist[color][j] = j - i left_most[color] = i - 1 return [dist[color - 1][index] for index, color in queries]
class Solution: def shortest_distance_color(self, colors: list[int], queries: list[list[int]]) -> list[int]: dist = [[-1] * len(colors) for _ in range(3)] right_most = [0, 0, 0] left_most = [len(colors) - 1, len(colors) - 1, len(colors) - 1] for i in range(len(colors)): color = colors[i] - 1 for j in range(right_most[color], i + 1): dist[color][j] = i - j right_most[color] = i + 1 for i in range(len(colors) - 1, -1, -1): color = colors[i] - 1 for j in range(left_most[color], i - 1, -1): if dist[color][j] == -1 or dist[color][j] > j - i: dist[color][j] = j - i left_most[color] = i - 1 return [dist[color - 1][index] for (index, color) in queries]
# You are playing the following Flip Game with your friend: Given a string that contains only these two characters: + and -, you and your friend take turns to flip two consecutive "++" into "--". The game ends when a person can no longer make a move and therefore the other person will be the winner. # # Write a function to compute all possible states of the string after one valid move. # # Example # Given s = "++++", after one move, it may become one of the following states: # # [ # "--++", # "+--+", # "++--" # ] # If there is no valid move, return an empty list []. class Solution: def generatePossibleNextMoves(self, s): # write your code here if len(s) <= 1: return [] res = [] for i in range(len(s)-1): if s[i] == s[i+1] and s[i] == '+': res.append(s[:i] + '--' + s[i+2:]) return res
class Solution: def generate_possible_next_moves(self, s): if len(s) <= 1: return [] res = [] for i in range(len(s) - 1): if s[i] == s[i + 1] and s[i] == '+': res.append(s[:i] + '--' + s[i + 2:]) return res
def binit_r(x): leng = 13 if (x<0): y = x + 8 else: y = x str = bin(y)[2:] while len(str) < 3: str = '0' + str while len(str) < leng: if x<0: str = '1' + str else: str = '0' + str while len(str) > leng: str = str[1:] return str list = [ [0,0], [0,1], [1,1] ] temp = [] for i in range(701): temp += list[i%3] for i in range(1402): print(temp[i],end="") print("\n")
def binit_r(x): leng = 13 if x < 0: y = x + 8 else: y = x str = bin(y)[2:] while len(str) < 3: str = '0' + str while len(str) < leng: if x < 0: str = '1' + str else: str = '0' + str while len(str) > leng: str = str[1:] return str list = [[0, 0], [0, 1], [1, 1]] temp = [] for i in range(701): temp += list[i % 3] for i in range(1402): print(temp[i], end='') print('\n')
# time: O(n) # space: O(n) """ # Definition for a Node. class Node(object): def __init__(self, val, children): self.val = val self.children = children """ class Solution(object): def levelOrder(self, root): """ :type root: Node :rtype: List[List[int]] """ if not root: return [] t1 = [root] res = [] while t1: res.append([node.val for node in t1]) t1 = [child for node in t1 for child in node.children if child] return res
""" # Definition for a Node. class Node(object): def __init__(self, val, children): self.val = val self.children = children """ class Solution(object): def level_order(self, root): """ :type root: Node :rtype: List[List[int]] """ if not root: return [] t1 = [root] res = [] while t1: res.append([node.val for node in t1]) t1 = [child for node in t1 for child in node.children if child] return res
def minRewards(scores): rewards = [1] * len(scores) #start from index 1, move left to right for i in range(1, len(scores)): #if number greater then prev num, reward = reward of prev num +1 if scores[i] > scores[i-1]: rewards[i] = rewards[i-1] + 1 print(rewards) #start at one before last, move right to left(reversed) for i in range(len(scores)-2, -1, -1): #if number greater then next num, reward = MAX OF reward of next num +1 OR current reward # max for accomodating edge case where current reward is higher because of left to right iteration if scores[i] > scores[i+1]: rewards[i] = max(rewards[i+1]+1, rewards[i]) print(rewards) return sum(rewards)
def min_rewards(scores): rewards = [1] * len(scores) for i in range(1, len(scores)): if scores[i] > scores[i - 1]: rewards[i] = rewards[i - 1] + 1 print(rewards) for i in range(len(scores) - 2, -1, -1): if scores[i] > scores[i + 1]: rewards[i] = max(rewards[i + 1] + 1, rewards[i]) print(rewards) return sum(rewards)
class MonsterList: monsters = [ { "id": 1, "name": "Goblin", "level": 1, "hd": 4, "atk": 2, "ac": 2, "total": 8, "type": "humanoid", "subtype": "", "atk_type": "slash", "resist": "", "vulnerability": "", "special": "", "": 26 }, { "id": 2, "name": "Kobold", "level": 1, "hd": 3, "atk": 3, "ac": 1, "total": 7, "type": "humanoid", "subtype": "", "atk_type": "pierce", "resist": "", "vulnerability": "", "special": "", "": "" }, { "id": 3, "name": "Dog", "level": 1, "hd": 2, "atk": 4, "ac": 2, "total": 8, "type": "animal", "subtype": "mammal", "atk_type": "pierce", "resist": "", "vulnerability": "", "special": "", "": "" }, { "id": 4, "name": "Jelly", "level": 1, "hd": 5, "atk": 1, "ac": 4, "total": 10, "type": "aberration", "subtype": "", "atk_type": "acid", "resist": "acid", "vulnerability": "electric", "special": "melt", "": "" }, { "id": 5, "name": "Skeleton", "level": 2, "hd": 3, "atk": 4, "ac": 3, "total": 10, "type": "humanoid", "subtype": "undead", "atk_type": "slash", "resist": "slash", "vulnerability": "blunt", "special": "", "": "" }, { "id": 6, "name": "Orc", "level": 2, "hd": 4, "atk": 3, "ac": 3, "total": 10, "type": "humanoid", "subtype": "", "atk_type": "blunt", "resist": "", "vulnerability": "", "special": "sunder", "": "" }, { "id": 7, "name": "Slime", "level": 2, "hd": 7, "atk": 3, "ac": 5, "total": 15, "type": "aberration", "subtype": "", "atk_type": "acid", "resist": "acid", "vulnerability": "electric", "special": "melt", "": "" }, { "id": 8, "name": "Wolf", "level": 2, "hd": 3, "atk": 4, "ac": 3, "total": 10, "type": "animal", "subtype": "mammal", "atk_type": "pierce", "resist": "", "vulnerability": "", "special": "", "": "" }, { "id": 9, "name": "Imp", "level": 2, "hd": 3, "atk": 5, "ac": 3, "total": 11, "type": "demon", "subtype": "", "atk_type": "fire", "resist": "fire", "vulnerability": "cold", "special": "burn", "": "" }, { "id": 10, "name": "Gnoll", "level": 3, "hd": 4, "atk": 4, "ac": 3, "total": 11, "type": "humanoid", "subtype": "", "atk_type": "blunt", "resist": "", "vulnerability": "", "special": "", "": "" }, { "id": 11, "name": "Zombie", "level": 3, "hd": 7, "atk": 3, "ac": 5, "total": 15, "type": "humanoid", "subtype": "undead", "atk_type": "blunt", "resist": "cold", "vulnerability": "fire", "special": "", "": "" }, { "id": 12, "name": "Python", "level": 3, "hd": 5, "atk": 5, "ac": 5, "total": 15, "type": "animal", "subtype": "reptile", "atk_type": "grab", "resist": "", "vulnerability": "", "special": "", "": "" }, { "id": 13, "name": "Spectre", "level": 4, "hd": 6, "atk": 6, "ac": 4, "total": 16, "type": "humanoid", "subtype": "undead", "atk_type": "touch", "resist": "", "vulnerability": "", "special": "drain", "": "" }, { "id": 14, "name": "Griffon", "level": 4, "hd": 5, "atk": 7, "ac": 4, "total": 16, "type": "animal", "subtype": "", "atk_type": "slash", "resist": "", "vulnerability": "", "special": "", "": "" }, { "id": 15, "name": "Ogre", "level": 4, "hd": 7, "atk": 7, "ac": 5, "total": 19, "type": "humanoid", "subtype": "", "atk_type": "blunt", "resist": "", "vulnerability": "", "special": "sunder", "": "" }, { "id": 16, "name": "Quasit", "level": 4, "hd": 4, "atk": 5, "ac": 7, "total": 16, "type": "demon", "subtype": "", "atk_type": "cold", "resist": "pierce", "vulnerability": "slash", "special": "freeze", "": "" }, { "id": 17, "name": "Ooze", "level": 4, "hd": 8, "atk": 3, "ac": 5, "total": 16, "type": "aberration", "subtype": "", "atk_type": "acid", "resist": "electric", "vulnerability": "fire", "special": "melt", "": "" }, { "id": 18, "name": "Spider", "level": 5, "hd": 6, "atk": 8, "ac": 7, "total": 21, "type": "animal", "subtype": "insect", "atk_type": "pierce", "resist": "pierce", "vulnerability": "fire", "special": "drain", "": "" }, { "id": 19, "name": "Shambler", "level": 5, "hd": 7, "atk": 8, "ac": 5, "total": 20, "type": "aberration", "subtype": "", "atk_type": "blunt", "resist": "fire", "vulnerability": "slash", "special": "", "": "" }, { "id": 20, "name": "Wraith", "level": 5, "hd": 5, "atk": 8, "ac": 11, "total": 24, "type": "humanoid", "subtype": "undead", "atk_type": "cold", "resist": "cold", "vulnerability": "electric", "special": "drain", "": "" }, { "id": 21, "name": "Werewolf", "level": 5, "hd": 6, "atk": 8, "ac": 7, "total": 21, "type": "animal", "subtype": "mammal", "atk_type": "slash", "resist": "blunt", "vulnerability": "", "special": "", "": "" }, { "id": 22, "name": "Drake", "level": 5, "hd": 9, "atk": 8, "ac": 9, "total": 26, "type": "dragon", "subtype": "", "atk_type": "slash", "resist": "fire", "vulnerability": "cold", "special": "burn", "": "" }, { "id": 23, "name": "Gremlin", "level": 6, "hd": 7, "atk": 9, "ac": 8, "total": 24, "type": "demon", "subtype": "", "atk_type": "acid", "resist": "fire", "vulnerability": "blunt", "special": "melt", "": "" }, { "id": 24, "name": "Panther", "level": 6, "hd": 6, "atk": 11, "ac": 9, "total": 26, "type": "animal", "subtype": "", "atk_type": "slash", "resist": "", "vulnerability": "", "special": "", "": "" }, { "id": 25, "name": "Automaton", "level": 6, "hd": 10, "atk": 8, "ac": 8, "total": 26, "type": "humanoid", "subtype": "construct", "atk_type": "electric", "resist": "blunt", "vulnerability": "pierce", "special": "shock", "": "" }, { "id": 26, "name": "Bugbear", "level": 6, "hd": 8, "atk": 10, "ac": 9, "total": 27, "type": "humanoid", "subtype": "", "atk_type": "blunt", "resist": "", "vulnerability": "", "special": "sunder", "": "" }, { "id": 27, "name": "Crab", "level": 7, "hd": 8, "atk": 10, "ac": 12, "total": 30, "type": "animal", "subtype": "insect", "atk_type": "slash", "resist": "slash", "vulnerability": "cold", "special": "", "": "" }, { "id": 28, "name": "Lizardman", "level": 7, "hd": 10, "atk": 10, "ac": 10, "total": 30, "type": "humanoid", "subtype": "", "atk_type": "pierce", "resist": "", "vulnerability": "", "special": "", "": "" }, { "id": 29, "name": "Ghoul", "level": 7, "hd": 9, "atk": 11, "ac": 11, "total": 31, "type": "humanoid", "subtype": "undead", "atk_type": "slash", "resist": "cold", "vulnerability": "fire", "special": "drain", "": "" }, { "id": 30, "name": "Gargoyle", "level": 7, "hd": 12, "atk": 8, "ac": 10, "total": 30, "type": "humanoid", "subtype": "construct", "atk_type": "slash", "resist": "blunt", "vulnerability": "cold", "special": "", "": "" }, { "id": 31, "name": "Minotaur", "level": 8, "hd": 8, "atk": 11, "ac": 9, "total": 34, "type": "humanoid", "subtype": "", "atk_type": "slash", "resist": "", "vulnerability": "", "special": "sunder", "": "" }, { "id": 32, "name": "Bear", "level": 8, "hd": 9, "atk": 11, "ac": 5, "total": 31, "type": "animal", "subtype": "", "atk_type": "grab", "resist": "", "vulnerability": "", "special": "", "": "" }, { "id": 33, "name": "Golem", "level": 8, "hd": 10, "atk": 10, "ac": 10, "total": 36, "type": "humanoid", "subtype": "construct", "atk_type": "blunt", "resist": "slash", "vulnerability": "electric", "special": "", "": "" }, { "id": 34, "name": "Shadow", "level": 8, "hd": 7, "atk": 13, "ac": 7, "total": 33, "type": "humanoid", "subtype": "undead", "atk_type": "touch", "resist": "electric", "vulnerability": "fire", "special": "drain", "": "" }, { "id": 35, "name": "Centaur", "level": 9, "hd": 11, "atk": 13, "ac": 12, "total": 39, "type": "humanoid", "subtype": "", "atk_type": "slash", "resist": "", "vulnerability": "", "special": "", "": "" }, { "id": 36, "name": "Eagle", "level": 9, "hd": 10, "atk": 15, "ac": 13, "total": 41, "type": "animal", "subtype": "bird", "atk_type": "pierce", "resist": "", "vulnerability": "", "special": "", "": "" }, { "id": 37, "name": "Yeti", "level": 9, "hd": 14, "atk": 12, "ac": 12, "total": 41, "type": "humanoid", "subtype": "", "atk_type": "blunt", "resist": "cold", "vulnerability": "fire", "special": "freeze", "": "" }, { "id": 38, "name": "Wyvern", "level": 9, "hd": 12, "atk": 14, "ac": 13, "total": 42, "type": "dragon", "subtype": "", "atk_type": "pierce", "resist": "", "vulnerability": "", "special": "drain", "": "" }, { "id": 27, "name": "Tiger", "level": 10, "hd": 11, "atk": 13, "ac": 15, "total": 30, "type": "animal", "subtype": "", "atk_type": "slash", "resist": "", "vulnerability": "", "special": "", "": "" }, { "id": 28, "name": "Hag", "level": 10, "hd": 13, "atk": 13, "ac": 13, "total": 30, "type": "humanoid", "subtype": "", "atk_type": "fire", "resist": "fire", "vulnerability": "pierce", "special": "burn", "": "" }, { "id": 29, "name": "Will-o-wisp", "level": 10, "hd": 12, "atk": 14, "ac": 14, "total": 31, "type": "humanoid", "subtype": "fae", "atk_type": "electric", "resist": "electric", "vulnerability": "blunt", "special": "shock", "": "" }, { "id": 30, "name": "Hell Hound", "level": 10, "hd": 15, "atk": 11, "ac": 13, "total": 30, "type": "demon", "subtype": "", "atk_type": "fire", "resist": "fire", "vulnerability": "cold", "special": "burn", "": "" }, { "id": 31, "name": "Scorpion", "level": 11, "hd": 12, "atk": 15, "ac": 13, "total": 34, "type": "animal", "subtype": "insect", "atk_type": "pierce", "resist": "slash", "vulnerability": "blunt", "special": "drain", "": "" }, { "id": 32, "name": "Mummy", "level": 11, "hd": 13, "atk": 15, "ac": 9, "total": 31, "type": "humanoid", "subtype": "undead", "atk_type": "blunt", "resist": "cold", "vulnerability": "fire", "special": "drain", "": "" }, { "id": 33, "name": "Tentaculus", "level": 11, "hd": 14, "atk": 14, "ac": 14, "total": 36, "type": "aberration", "subtype": "", "atk_type": "grab", "resist": "blunt", "vulnerability": "slash", "special": "melt", "": "" }, { "id": 34, "name": "Troll", "level": 11, "hd": 11, "atk": 17, "ac": 11, "total": 33, "type": "humanoid", "subtype": "", "atk_type": "slash", "resist": "pierce", "vulnerability": "fire", "special": "", "": "" }, { "id": 35, "name": "Naga", "level": 12, "hd": 12, "atk": 14, "ac": 13, "total": 39, "type": "demon", "subtype": "", "atk_type": "grab", "resist": "", "vulnerability": "", "special": "", "": "" }, { "id": 36, "name": "Chimera", "level": 12, "hd": 11, "atk": 16, "ac": 14, "total": 41, "type": "animal", "subtype": "", "atk_type": "slash", "resist": "", "vulnerability": "", "special": "", "": "" }, { "id": 37, "name": "Vampire", "level": 12, "hd": 15, "atk": 13, "ac": 13, "total": 41, "type": "humanoid", "subtype": "undead", "atk_type": "pierce", "resist": "electric", "vulnerability": "fire", "special": "drain", "": "" }, { "id": 38, "name": "Manticore", "level": 12, "hd": 13, "atk": 15, "ac": 14, "total": 42, "type": "animal", "subtype": "", "atk_type": "pierce", "resist": "", "vulnerability": "", "special": "", "": "" }, { "id": 39, "name": "Ghost", "level": 13, "hd": 13, "atk": 15, "ac": 17, "total": 45, "type": "humanoid", "subtype": "undead", "atk_type": "touch", "resist": "slash", "vulnerability": "", "special": "drain", "": "" }, { "id": 40, "name": "Giant", "level": 13, "hd": 15, "atk": 15, "ac": 15, "total": 45, "type": "humanoid", "subtype": "", "atk_type": "blunt", "resist": "", "vulnerability": "", "special": "sunder", "": "" }, { "id": 41, "name": "Wyrm", "level": 13, "hd": 14, "atk": 16, "ac": 16, "total": 46, "type": "dragon", "subtype": "", "atk_type": "fire", "resist": "pierce", "vulnerability": "cold", "special": "burn", "": "" }, { "id": 42, "name": "Horror", "level": 13, "hd": 17, "atk": 13, "ac": 15, "total": 45, "type": "aberration", "subtype": "", "atk_type": "grab", "resist": "fire", "vulnerability": "electric", "special": "drain", "": "" }, { "id": 43, "name": "Death Knight", "level": 14, "hd": 15, "atk": 18, "ac": 16, "total": 49, "type": "humanoid", "subtype": "undead", "atk_type": "slash", "resist": "", "vulnerability": "", "special": "freeze", "": "" }, { "id": 44, "name": "Hydra", "level": 14, "hd": 16, "atk": 18, "ac": 12, "total": 46, "type": "animal", "subtype": "reptile", "atk_type": "pierce", "resist": "slash", "vulnerability": "fire", "special": "", "": "" }, { "id": 45, "name": "Titan", "level": 14, "hd": 17, "atk": 17, "ac": 17, "total": 51, "type": "humanoid", "subtype": "", "atk_type": "slash", "resist": "", "vulnerability": "", "special": "sunder", "": "" }, { "id": 46, "name": "Demon", "level": 14, "hd": 14, "atk": 20, "ac": 14, "total": 48, "type": "demon", "subtype": "", "atk_type": "pierce", "resist": "fire", "vulnerability": "acid", "special": "burn", "": "" } ] descriptors = { "humanoid" : [ "Big", "Burly", "Massive", "Hulking", "Monstrous" ], "animal" : [ "Wild", "Snarling", "Vicious", "Rabid", "Dire" ], "reptile" : [ "Hissing", "Lurking", "Vicious", "Striking", "Dire" ], "insect" : [ "Shiny", "Chittering", "Gangly", "Chitinous", "Looming" ], "undead" : [ "Spooky", "Moaning", "Rotting", "Wailing", "Eternal" ], "fae" : [ "Glittering", "Glamoured", "Forest", "Ancient", "First" ], "construct" : [ "Wooden", "Clay", "Stone", "Iron", "Crystal" ], "aberration" : [ "Weird", "Strange", "Confusing", "Horrifying", "Insane" ], "demon" : [ "Smoking", "Glowing", "Flaming", "Inferno", "Holocaust" ], "dragon" : [ "Young", "Mature", "Gleaming", "Ancent", "Elder" ] } bossDescriptors = { "humanoid" : [ ("", "King"), ("Mighty", "Warrior"), ("Ultimate", "") ], "animal" : [ ("Prehistoric", ""), ("Legendary", ""), ("", "of the Wildlands") ], "reptile" : [ ("Enormous", ""), ("Cthonic", ""), ("Fanged", "") ], "insect" : [ ("", "Queen"), ("Emerald", ""), ("Winged", "") ], "undead" : [ ("", "Lord"), ("Unholy", ""), ("", "of Nightmares") ], "fae" : [ ("", "Noble"), ("Unseelie", ""), ("", "of the Deep Green") ], "aberration" : [ ("Royal", ""), ("Great Old", ""), ("", "That Never Sleeps") ], "demon" : [ ("Noble", "of Dis"), ("Damned", ""), ("", "Torturer") ], "dragon" : [ ("Mother", ""), ("Golden-Winged", ""), ("Black", "of the Pit") ] } bossQuotes = { "humanoid" : [ '"You\'ll never survive me!"', '"I\'m your worst nightmare!"', '"Come a little closer..."' ], "animal" : [ "It roars a challenge!", "The ground shakes as it stomps toward you!", "You feel its eyes on you..." ], "insect" : [ "Venom drips from its fangs!", "It chitters menacingly...", "It gathers itself to strike..." ], "undead" : [ '"Join me in the world beyond life!"', "Its eyes glow with a cold light...", '"Life is wasted on the living!"' ], "fae" : [ 'It whispers eldritch words you half understand...', "You feel drawn toward another realm...", 'It suddenly appears right next to you!' ], "construct" : [ 'Gears grind within its body...', "Lifeless eyes track your movement...", 'It relentlessly pursues you!' ], "aberration" : [ "It contorts weirdly...", "You see unnatural shapes in its surface...", "It surges toward you!" ], "demon" : [ '"The underworld awaits!"', '"Time to pay for your sins!"', '"Feel the flames of the Abyss!"' ], "dragon" : [ '"You look tasty..."', "It coils itself, ready to attack!", '"My treasures are mine alone!"' ] } atkVerbs = { "slash": [ "slashes", "cuts", "hacks" ], "pierce": [ "stabs", "pokes", "impales" ], "blunt": [ "bashes", "smashes", "crushes" ], "touch": [ "touches", "grips", "gropes" ], "grab": [ "grabs", "squeezes", "crushes" ], "fire": [ "scorches", "burns", "chars" ], "cold": [ "freezes", "chills", "frosts" ], "electric": [ "zaps", "shocks", "jolts" ], "acid": [ "dissolves", "burns", "melts" ], "animal": { "slash": [ "claws", "rakes", "slashes" ], "pierce": [ "bites", "gnaws", "chews" ] }, "aberration": { "grab": [ "engulfs", "smothers", "grapples" ], "blunt": [ "slams", "slaps", "mangles" ] }, "demon": {}, "dragon": { "slash": [ "claws", "rakes", "slashes" ], "pierce": [ "impales", "stings", "bites" ] }, "insect": { "pierce": [ "impales", "stings", "bites" ] } }
class Monsterlist: monsters = [{'id': 1, 'name': 'Goblin', 'level': 1, 'hd': 4, 'atk': 2, 'ac': 2, 'total': 8, 'type': 'humanoid', 'subtype': '', 'atk_type': 'slash', 'resist': '', 'vulnerability': '', 'special': '', '': 26}, {'id': 2, 'name': 'Kobold', 'level': 1, 'hd': 3, 'atk': 3, 'ac': 1, 'total': 7, 'type': 'humanoid', 'subtype': '', 'atk_type': 'pierce', 'resist': '', 'vulnerability': '', 'special': '', '': ''}, {'id': 3, 'name': 'Dog', 'level': 1, 'hd': 2, 'atk': 4, 'ac': 2, 'total': 8, 'type': 'animal', 'subtype': 'mammal', 'atk_type': 'pierce', 'resist': '', 'vulnerability': '', 'special': '', '': ''}, {'id': 4, 'name': 'Jelly', 'level': 1, 'hd': 5, 'atk': 1, 'ac': 4, 'total': 10, 'type': 'aberration', 'subtype': '', 'atk_type': 'acid', 'resist': 'acid', 'vulnerability': 'electric', 'special': 'melt', '': ''}, {'id': 5, 'name': 'Skeleton', 'level': 2, 'hd': 3, 'atk': 4, 'ac': 3, 'total': 10, 'type': 'humanoid', 'subtype': 'undead', 'atk_type': 'slash', 'resist': 'slash', 'vulnerability': 'blunt', 'special': '', '': ''}, {'id': 6, 'name': 'Orc', 'level': 2, 'hd': 4, 'atk': 3, 'ac': 3, 'total': 10, 'type': 'humanoid', 'subtype': '', 'atk_type': 'blunt', 'resist': '', 'vulnerability': '', 'special': 'sunder', '': ''}, {'id': 7, 'name': 'Slime', 'level': 2, 'hd': 7, 'atk': 3, 'ac': 5, 'total': 15, 'type': 'aberration', 'subtype': '', 'atk_type': 'acid', 'resist': 'acid', 'vulnerability': 'electric', 'special': 'melt', '': ''}, {'id': 8, 'name': 'Wolf', 'level': 2, 'hd': 3, 'atk': 4, 'ac': 3, 'total': 10, 'type': 'animal', 'subtype': 'mammal', 'atk_type': 'pierce', 'resist': '', 'vulnerability': '', 'special': '', '': ''}, {'id': 9, 'name': 'Imp', 'level': 2, 'hd': 3, 'atk': 5, 'ac': 3, 'total': 11, 'type': 'demon', 'subtype': '', 'atk_type': 'fire', 'resist': 'fire', 'vulnerability': 'cold', 'special': 'burn', '': ''}, {'id': 10, 'name': 'Gnoll', 'level': 3, 'hd': 4, 'atk': 4, 'ac': 3, 'total': 11, 'type': 'humanoid', 'subtype': '', 'atk_type': 'blunt', 'resist': '', 'vulnerability': '', 'special': '', '': ''}, {'id': 11, 'name': 'Zombie', 'level': 3, 'hd': 7, 'atk': 3, 'ac': 5, 'total': 15, 'type': 'humanoid', 'subtype': 'undead', 'atk_type': 'blunt', 'resist': 'cold', 'vulnerability': 'fire', 'special': '', '': ''}, {'id': 12, 'name': 'Python', 'level': 3, 'hd': 5, 'atk': 5, 'ac': 5, 'total': 15, 'type': 'animal', 'subtype': 'reptile', 'atk_type': 'grab', 'resist': '', 'vulnerability': '', 'special': '', '': ''}, {'id': 13, 'name': 'Spectre', 'level': 4, 'hd': 6, 'atk': 6, 'ac': 4, 'total': 16, 'type': 'humanoid', 'subtype': 'undead', 'atk_type': 'touch', 'resist': '', 'vulnerability': '', 'special': 'drain', '': ''}, {'id': 14, 'name': 'Griffon', 'level': 4, 'hd': 5, 'atk': 7, 'ac': 4, 'total': 16, 'type': 'animal', 'subtype': '', 'atk_type': 'slash', 'resist': '', 'vulnerability': '', 'special': '', '': ''}, {'id': 15, 'name': 'Ogre', 'level': 4, 'hd': 7, 'atk': 7, 'ac': 5, 'total': 19, 'type': 'humanoid', 'subtype': '', 'atk_type': 'blunt', 'resist': '', 'vulnerability': '', 'special': 'sunder', '': ''}, {'id': 16, 'name': 'Quasit', 'level': 4, 'hd': 4, 'atk': 5, 'ac': 7, 'total': 16, 'type': 'demon', 'subtype': '', 'atk_type': 'cold', 'resist': 'pierce', 'vulnerability': 'slash', 'special': 'freeze', '': ''}, {'id': 17, 'name': 'Ooze', 'level': 4, 'hd': 8, 'atk': 3, 'ac': 5, 'total': 16, 'type': 'aberration', 'subtype': '', 'atk_type': 'acid', 'resist': 'electric', 'vulnerability': 'fire', 'special': 'melt', '': ''}, {'id': 18, 'name': 'Spider', 'level': 5, 'hd': 6, 'atk': 8, 'ac': 7, 'total': 21, 'type': 'animal', 'subtype': 'insect', 'atk_type': 'pierce', 'resist': 'pierce', 'vulnerability': 'fire', 'special': 'drain', '': ''}, {'id': 19, 'name': 'Shambler', 'level': 5, 'hd': 7, 'atk': 8, 'ac': 5, 'total': 20, 'type': 'aberration', 'subtype': '', 'atk_type': 'blunt', 'resist': 'fire', 'vulnerability': 'slash', 'special': '', '': ''}, {'id': 20, 'name': 'Wraith', 'level': 5, 'hd': 5, 'atk': 8, 'ac': 11, 'total': 24, 'type': 'humanoid', 'subtype': 'undead', 'atk_type': 'cold', 'resist': 'cold', 'vulnerability': 'electric', 'special': 'drain', '': ''}, {'id': 21, 'name': 'Werewolf', 'level': 5, 'hd': 6, 'atk': 8, 'ac': 7, 'total': 21, 'type': 'animal', 'subtype': 'mammal', 'atk_type': 'slash', 'resist': 'blunt', 'vulnerability': '', 'special': '', '': ''}, {'id': 22, 'name': 'Drake', 'level': 5, 'hd': 9, 'atk': 8, 'ac': 9, 'total': 26, 'type': 'dragon', 'subtype': '', 'atk_type': 'slash', 'resist': 'fire', 'vulnerability': 'cold', 'special': 'burn', '': ''}, {'id': 23, 'name': 'Gremlin', 'level': 6, 'hd': 7, 'atk': 9, 'ac': 8, 'total': 24, 'type': 'demon', 'subtype': '', 'atk_type': 'acid', 'resist': 'fire', 'vulnerability': 'blunt', 'special': 'melt', '': ''}, {'id': 24, 'name': 'Panther', 'level': 6, 'hd': 6, 'atk': 11, 'ac': 9, 'total': 26, 'type': 'animal', 'subtype': '', 'atk_type': 'slash', 'resist': '', 'vulnerability': '', 'special': '', '': ''}, {'id': 25, 'name': 'Automaton', 'level': 6, 'hd': 10, 'atk': 8, 'ac': 8, 'total': 26, 'type': 'humanoid', 'subtype': 'construct', 'atk_type': 'electric', 'resist': 'blunt', 'vulnerability': 'pierce', 'special': 'shock', '': ''}, {'id': 26, 'name': 'Bugbear', 'level': 6, 'hd': 8, 'atk': 10, 'ac': 9, 'total': 27, 'type': 'humanoid', 'subtype': '', 'atk_type': 'blunt', 'resist': '', 'vulnerability': '', 'special': 'sunder', '': ''}, {'id': 27, 'name': 'Crab', 'level': 7, 'hd': 8, 'atk': 10, 'ac': 12, 'total': 30, 'type': 'animal', 'subtype': 'insect', 'atk_type': 'slash', 'resist': 'slash', 'vulnerability': 'cold', 'special': '', '': ''}, {'id': 28, 'name': 'Lizardman', 'level': 7, 'hd': 10, 'atk': 10, 'ac': 10, 'total': 30, 'type': 'humanoid', 'subtype': '', 'atk_type': 'pierce', 'resist': '', 'vulnerability': '', 'special': '', '': ''}, {'id': 29, 'name': 'Ghoul', 'level': 7, 'hd': 9, 'atk': 11, 'ac': 11, 'total': 31, 'type': 'humanoid', 'subtype': 'undead', 'atk_type': 'slash', 'resist': 'cold', 'vulnerability': 'fire', 'special': 'drain', '': ''}, {'id': 30, 'name': 'Gargoyle', 'level': 7, 'hd': 12, 'atk': 8, 'ac': 10, 'total': 30, 'type': 'humanoid', 'subtype': 'construct', 'atk_type': 'slash', 'resist': 'blunt', 'vulnerability': 'cold', 'special': '', '': ''}, {'id': 31, 'name': 'Minotaur', 'level': 8, 'hd': 8, 'atk': 11, 'ac': 9, 'total': 34, 'type': 'humanoid', 'subtype': '', 'atk_type': 'slash', 'resist': '', 'vulnerability': '', 'special': 'sunder', '': ''}, {'id': 32, 'name': 'Bear', 'level': 8, 'hd': 9, 'atk': 11, 'ac': 5, 'total': 31, 'type': 'animal', 'subtype': '', 'atk_type': 'grab', 'resist': '', 'vulnerability': '', 'special': '', '': ''}, {'id': 33, 'name': 'Golem', 'level': 8, 'hd': 10, 'atk': 10, 'ac': 10, 'total': 36, 'type': 'humanoid', 'subtype': 'construct', 'atk_type': 'blunt', 'resist': 'slash', 'vulnerability': 'electric', 'special': '', '': ''}, {'id': 34, 'name': 'Shadow', 'level': 8, 'hd': 7, 'atk': 13, 'ac': 7, 'total': 33, 'type': 'humanoid', 'subtype': 'undead', 'atk_type': 'touch', 'resist': 'electric', 'vulnerability': 'fire', 'special': 'drain', '': ''}, {'id': 35, 'name': 'Centaur', 'level': 9, 'hd': 11, 'atk': 13, 'ac': 12, 'total': 39, 'type': 'humanoid', 'subtype': '', 'atk_type': 'slash', 'resist': '', 'vulnerability': '', 'special': '', '': ''}, {'id': 36, 'name': 'Eagle', 'level': 9, 'hd': 10, 'atk': 15, 'ac': 13, 'total': 41, 'type': 'animal', 'subtype': 'bird', 'atk_type': 'pierce', 'resist': '', 'vulnerability': '', 'special': '', '': ''}, {'id': 37, 'name': 'Yeti', 'level': 9, 'hd': 14, 'atk': 12, 'ac': 12, 'total': 41, 'type': 'humanoid', 'subtype': '', 'atk_type': 'blunt', 'resist': 'cold', 'vulnerability': 'fire', 'special': 'freeze', '': ''}, {'id': 38, 'name': 'Wyvern', 'level': 9, 'hd': 12, 'atk': 14, 'ac': 13, 'total': 42, 'type': 'dragon', 'subtype': '', 'atk_type': 'pierce', 'resist': '', 'vulnerability': '', 'special': 'drain', '': ''}, {'id': 27, 'name': 'Tiger', 'level': 10, 'hd': 11, 'atk': 13, 'ac': 15, 'total': 30, 'type': 'animal', 'subtype': '', 'atk_type': 'slash', 'resist': '', 'vulnerability': '', 'special': '', '': ''}, {'id': 28, 'name': 'Hag', 'level': 10, 'hd': 13, 'atk': 13, 'ac': 13, 'total': 30, 'type': 'humanoid', 'subtype': '', 'atk_type': 'fire', 'resist': 'fire', 'vulnerability': 'pierce', 'special': 'burn', '': ''}, {'id': 29, 'name': 'Will-o-wisp', 'level': 10, 'hd': 12, 'atk': 14, 'ac': 14, 'total': 31, 'type': 'humanoid', 'subtype': 'fae', 'atk_type': 'electric', 'resist': 'electric', 'vulnerability': 'blunt', 'special': 'shock', '': ''}, {'id': 30, 'name': 'Hell Hound', 'level': 10, 'hd': 15, 'atk': 11, 'ac': 13, 'total': 30, 'type': 'demon', 'subtype': '', 'atk_type': 'fire', 'resist': 'fire', 'vulnerability': 'cold', 'special': 'burn', '': ''}, {'id': 31, 'name': 'Scorpion', 'level': 11, 'hd': 12, 'atk': 15, 'ac': 13, 'total': 34, 'type': 'animal', 'subtype': 'insect', 'atk_type': 'pierce', 'resist': 'slash', 'vulnerability': 'blunt', 'special': 'drain', '': ''}, {'id': 32, 'name': 'Mummy', 'level': 11, 'hd': 13, 'atk': 15, 'ac': 9, 'total': 31, 'type': 'humanoid', 'subtype': 'undead', 'atk_type': 'blunt', 'resist': 'cold', 'vulnerability': 'fire', 'special': 'drain', '': ''}, {'id': 33, 'name': 'Tentaculus', 'level': 11, 'hd': 14, 'atk': 14, 'ac': 14, 'total': 36, 'type': 'aberration', 'subtype': '', 'atk_type': 'grab', 'resist': 'blunt', 'vulnerability': 'slash', 'special': 'melt', '': ''}, {'id': 34, 'name': 'Troll', 'level': 11, 'hd': 11, 'atk': 17, 'ac': 11, 'total': 33, 'type': 'humanoid', 'subtype': '', 'atk_type': 'slash', 'resist': 'pierce', 'vulnerability': 'fire', 'special': '', '': ''}, {'id': 35, 'name': 'Naga', 'level': 12, 'hd': 12, 'atk': 14, 'ac': 13, 'total': 39, 'type': 'demon', 'subtype': '', 'atk_type': 'grab', 'resist': '', 'vulnerability': '', 'special': '', '': ''}, {'id': 36, 'name': 'Chimera', 'level': 12, 'hd': 11, 'atk': 16, 'ac': 14, 'total': 41, 'type': 'animal', 'subtype': '', 'atk_type': 'slash', 'resist': '', 'vulnerability': '', 'special': '', '': ''}, {'id': 37, 'name': 'Vampire', 'level': 12, 'hd': 15, 'atk': 13, 'ac': 13, 'total': 41, 'type': 'humanoid', 'subtype': 'undead', 'atk_type': 'pierce', 'resist': 'electric', 'vulnerability': 'fire', 'special': 'drain', '': ''}, {'id': 38, 'name': 'Manticore', 'level': 12, 'hd': 13, 'atk': 15, 'ac': 14, 'total': 42, 'type': 'animal', 'subtype': '', 'atk_type': 'pierce', 'resist': '', 'vulnerability': '', 'special': '', '': ''}, {'id': 39, 'name': 'Ghost', 'level': 13, 'hd': 13, 'atk': 15, 'ac': 17, 'total': 45, 'type': 'humanoid', 'subtype': 'undead', 'atk_type': 'touch', 'resist': 'slash', 'vulnerability': '', 'special': 'drain', '': ''}, {'id': 40, 'name': 'Giant', 'level': 13, 'hd': 15, 'atk': 15, 'ac': 15, 'total': 45, 'type': 'humanoid', 'subtype': '', 'atk_type': 'blunt', 'resist': '', 'vulnerability': '', 'special': 'sunder', '': ''}, {'id': 41, 'name': 'Wyrm', 'level': 13, 'hd': 14, 'atk': 16, 'ac': 16, 'total': 46, 'type': 'dragon', 'subtype': '', 'atk_type': 'fire', 'resist': 'pierce', 'vulnerability': 'cold', 'special': 'burn', '': ''}, {'id': 42, 'name': 'Horror', 'level': 13, 'hd': 17, 'atk': 13, 'ac': 15, 'total': 45, 'type': 'aberration', 'subtype': '', 'atk_type': 'grab', 'resist': 'fire', 'vulnerability': 'electric', 'special': 'drain', '': ''}, {'id': 43, 'name': 'Death Knight', 'level': 14, 'hd': 15, 'atk': 18, 'ac': 16, 'total': 49, 'type': 'humanoid', 'subtype': 'undead', 'atk_type': 'slash', 'resist': '', 'vulnerability': '', 'special': 'freeze', '': ''}, {'id': 44, 'name': 'Hydra', 'level': 14, 'hd': 16, 'atk': 18, 'ac': 12, 'total': 46, 'type': 'animal', 'subtype': 'reptile', 'atk_type': 'pierce', 'resist': 'slash', 'vulnerability': 'fire', 'special': '', '': ''}, {'id': 45, 'name': 'Titan', 'level': 14, 'hd': 17, 'atk': 17, 'ac': 17, 'total': 51, 'type': 'humanoid', 'subtype': '', 'atk_type': 'slash', 'resist': '', 'vulnerability': '', 'special': 'sunder', '': ''}, {'id': 46, 'name': 'Demon', 'level': 14, 'hd': 14, 'atk': 20, 'ac': 14, 'total': 48, 'type': 'demon', 'subtype': '', 'atk_type': 'pierce', 'resist': 'fire', 'vulnerability': 'acid', 'special': 'burn', '': ''}] descriptors = {'humanoid': ['Big', 'Burly', 'Massive', 'Hulking', 'Monstrous'], 'animal': ['Wild', 'Snarling', 'Vicious', 'Rabid', 'Dire'], 'reptile': ['Hissing', 'Lurking', 'Vicious', 'Striking', 'Dire'], 'insect': ['Shiny', 'Chittering', 'Gangly', 'Chitinous', 'Looming'], 'undead': ['Spooky', 'Moaning', 'Rotting', 'Wailing', 'Eternal'], 'fae': ['Glittering', 'Glamoured', 'Forest', 'Ancient', 'First'], 'construct': ['Wooden', 'Clay', 'Stone', 'Iron', 'Crystal'], 'aberration': ['Weird', 'Strange', 'Confusing', 'Horrifying', 'Insane'], 'demon': ['Smoking', 'Glowing', 'Flaming', 'Inferno', 'Holocaust'], 'dragon': ['Young', 'Mature', 'Gleaming', 'Ancent', 'Elder']} boss_descriptors = {'humanoid': [('', 'King'), ('Mighty', 'Warrior'), ('Ultimate', '')], 'animal': [('Prehistoric', ''), ('Legendary', ''), ('', 'of the Wildlands')], 'reptile': [('Enormous', ''), ('Cthonic', ''), ('Fanged', '')], 'insect': [('', 'Queen'), ('Emerald', ''), ('Winged', '')], 'undead': [('', 'Lord'), ('Unholy', ''), ('', 'of Nightmares')], 'fae': [('', 'Noble'), ('Unseelie', ''), ('', 'of the Deep Green')], 'aberration': [('Royal', ''), ('Great Old', ''), ('', 'That Never Sleeps')], 'demon': [('Noble', 'of Dis'), ('Damned', ''), ('', 'Torturer')], 'dragon': [('Mother', ''), ('Golden-Winged', ''), ('Black', 'of the Pit')]} boss_quotes = {'humanoid': ['"You\'ll never survive me!"', '"I\'m your worst nightmare!"', '"Come a little closer..."'], 'animal': ['It roars a challenge!', 'The ground shakes as it stomps toward you!', 'You feel its eyes on you...'], 'insect': ['Venom drips from its fangs!', 'It chitters menacingly...', 'It gathers itself to strike...'], 'undead': ['"Join me in the world beyond life!"', 'Its eyes glow with a cold light...', '"Life is wasted on the living!"'], 'fae': ['It whispers eldritch words you half understand...', 'You feel drawn toward another realm...', 'It suddenly appears right next to you!'], 'construct': ['Gears grind within its body...', 'Lifeless eyes track your movement...', 'It relentlessly pursues you!'], 'aberration': ['It contorts weirdly...', 'You see unnatural shapes in its surface...', 'It surges toward you!'], 'demon': ['"The underworld awaits!"', '"Time to pay for your sins!"', '"Feel the flames of the Abyss!"'], 'dragon': ['"You look tasty..."', 'It coils itself, ready to attack!', '"My treasures are mine alone!"']} atk_verbs = {'slash': ['slashes', 'cuts', 'hacks'], 'pierce': ['stabs', 'pokes', 'impales'], 'blunt': ['bashes', 'smashes', 'crushes'], 'touch': ['touches', 'grips', 'gropes'], 'grab': ['grabs', 'squeezes', 'crushes'], 'fire': ['scorches', 'burns', 'chars'], 'cold': ['freezes', 'chills', 'frosts'], 'electric': ['zaps', 'shocks', 'jolts'], 'acid': ['dissolves', 'burns', 'melts'], 'animal': {'slash': ['claws', 'rakes', 'slashes'], 'pierce': ['bites', 'gnaws', 'chews']}, 'aberration': {'grab': ['engulfs', 'smothers', 'grapples'], 'blunt': ['slams', 'slaps', 'mangles']}, 'demon': {}, 'dragon': {'slash': ['claws', 'rakes', 'slashes'], 'pierce': ['impales', 'stings', 'bites']}, 'insect': {'pierce': ['impales', 'stings', 'bites']}}
#!/usr/bin/env python """ Copyright 2014 Wordnik, Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. """ class WordList: """NOTE: This class is auto generated by the swagger code generator program. Do not edit the class manually.""" def __init__(self): self.swaggerTypes = { 'id': 'long', 'permalink': 'str', 'name': 'str', 'createdAt': 'datetime', 'updatedAt': 'datetime', 'lastActivityAt': 'datetime', 'username': 'str', 'userId': 'long', 'description': 'str', 'numberWordsInList': 'long', 'type': 'str' } self.id = None # long self.permalink = None # str self.name = None # str self.createdAt = None # datetime self.updatedAt = None # datetime self.lastActivityAt = None # datetime self.username = None # str self.userId = None # long self.description = None # str self.numberWordsInList = None # long self.type = None # str
""" Copyright 2014 Wordnik, Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. """ class Wordlist: """NOTE: This class is auto generated by the swagger code generator program. Do not edit the class manually.""" def __init__(self): self.swaggerTypes = {'id': 'long', 'permalink': 'str', 'name': 'str', 'createdAt': 'datetime', 'updatedAt': 'datetime', 'lastActivityAt': 'datetime', 'username': 'str', 'userId': 'long', 'description': 'str', 'numberWordsInList': 'long', 'type': 'str'} self.id = None self.permalink = None self.name = None self.createdAt = None self.updatedAt = None self.lastActivityAt = None self.username = None self.userId = None self.description = None self.numberWordsInList = None self.type = None
# -*- coding: utf-8 -*- """ Created on Wed Jan 10 15:43:28 2018 @author: User """ def splitLines(S): mylist = [] for lines in S: lines = str(lines.replace('.','').replace(',','')) mylist += [lines] # print(mylist) wordfreq = [] for line in mylist: somelist = [] for i in line.split(): print(i) wordfreq.append(line.count(i)) somelist += mylist, wordfreq print(somelist) # wordlist = listofwords(mylist) ## print(wordlist) # counts = (countword(wordlist)) # for word in list((wordlist)): # for key, value in counts.items(): # if key == word: # print([key, value]) def listofwords(astring): wordlist = [] for element in astring: word = element.split() wordlist += word return wordlist def countword(somewords): counts = dict() for word in somewords: if word in counts: counts[word] +=1 else: counts[word] = 1 return counts S = ['CS116 is difficult.', 'However, is CS116 is also full of fun.'] #somefn(S) (splitLines(S)) # some additional code: #def countword(S): # finalLines = '' # for lines in S: # lines = str(lines.replace('.','').replace(',','')) # positionof = enumFn(lines) # finalLines += lines + ' ' # allwords = str.split(lines) # print(allwords, positionof) # # #def enumFn(lines): # newlist = [] # for item, index in (enumerate(lines.split())): # newlist = newlist + [item] # return newlist # # #document1 = ['CS116 is difficult.', 'However, CS116 is also full of fun.'] #(countword(document1)) ###################################### # another one #def stripfn(S): # for lines in (S): # lines = str(lines.replace('.','').replace(',','')) # for i in enumerate(lines.split()): # print(i) # for i in range(len(S)): # mylist = S[i] # print(countword(mylist)) # #def countword(astring): # counts = dict() # allwords = str.split(astring) # for word in allwords: # if word in counts: # counts[word] +=1 # else: # counts[word] = 1 # return counts # #def count_consecutive(string, start_pos): # index = start_pos # while (index < len(string) and string[start_pos] == string[index]): # index += 1 # return index - start_pos # # #document1 = ['CS116 is difficult.', 'However, also CS116 is also full of fun.'] #(stripfn(document1))
""" Created on Wed Jan 10 15:43:28 2018 @author: User """ def split_lines(S): mylist = [] for lines in S: lines = str(lines.replace('.', '').replace(',', '')) mylist += [lines] wordfreq = [] for line in mylist: somelist = [] for i in line.split(): print(i) wordfreq.append(line.count(i)) somelist += (mylist, wordfreq) print(somelist) def listofwords(astring): wordlist = [] for element in astring: word = element.split() wordlist += word return wordlist def countword(somewords): counts = dict() for word in somewords: if word in counts: counts[word] += 1 else: counts[word] = 1 return counts s = ['CS116 is difficult.', 'However, is CS116 is also full of fun.'] split_lines(S)
class Solution: def isValid(self, s: str) -> bool: stack = [] for c in s: if c in ")}]": if len(stack)==0: return False popped = stack.pop() if popped=="(" and c==")": continue if popped=="[" and c=="]": continue if popped=="{" and c=="}": continue else: return False else: stack.append(c) if len(stack)!=0: return False return True
class Solution: def is_valid(self, s: str) -> bool: stack = [] for c in s: if c in ')}]': if len(stack) == 0: return False popped = stack.pop() if popped == '(' and c == ')': continue if popped == '[' and c == ']': continue if popped == '{' and c == '}': continue else: return False else: stack.append(c) if len(stack) != 0: return False return True
class RichTextBoxLanguageOptions(Enum,IComparable,IFormattable,IConvertible): """ Provides System.Windows.Forms.RichTextBox settings for Input Method Editor (IME) and Asian language support. enum (flags) RichTextBoxLanguageOptions,values: AutoFont (2),AutoFontSizeAdjust (16),AutoKeyboard (1),DualFont (128),ImeAlwaysSendNotify (8),ImeCancelComplete (4),UIFonts (32) """ def __eq__(self,*args): """ x.__eq__(y) <==> x==yx.__eq__(y) <==> x==yx.__eq__(y) <==> x==y """ pass def __format__(self,*args): """ __format__(formattable: IFormattable,format: str) -> str """ pass def __ge__(self,*args): pass def __gt__(self,*args): pass def __init__(self,*args): """ x.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signature """ pass def __le__(self,*args): pass def __lt__(self,*args): pass def __ne__(self,*args): pass def __reduce_ex__(self,*args): pass def __str__(self,*args): pass AutoFont=None AutoFontSizeAdjust=None AutoKeyboard=None DualFont=None ImeAlwaysSendNotify=None ImeCancelComplete=None UIFonts=None value__=None
class Richtextboxlanguageoptions(Enum, IComparable, IFormattable, IConvertible): """ Provides System.Windows.Forms.RichTextBox settings for Input Method Editor (IME) and Asian language support. enum (flags) RichTextBoxLanguageOptions,values: AutoFont (2),AutoFontSizeAdjust (16),AutoKeyboard (1),DualFont (128),ImeAlwaysSendNotify (8),ImeCancelComplete (4),UIFonts (32) """ def __eq__(self, *args): """ x.__eq__(y) <==> x==yx.__eq__(y) <==> x==yx.__eq__(y) <==> x==y """ pass def __format__(self, *args): """ __format__(formattable: IFormattable,format: str) -> str """ pass def __ge__(self, *args): pass def __gt__(self, *args): pass def __init__(self, *args): """ x.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signature """ pass def __le__(self, *args): pass def __lt__(self, *args): pass def __ne__(self, *args): pass def __reduce_ex__(self, *args): pass def __str__(self, *args): pass auto_font = None auto_font_size_adjust = None auto_keyboard = None dual_font = None ime_always_send_notify = None ime_cancel_complete = None ui_fonts = None value__ = None
''' given two strings make them anagrams by performing deletions on both, return number of deletions ''' def makeAnagram(s1, s2): hM = dict() deletes = 0 for char in s1: if char in hM: hM[char] += 1 else: hM[char] = 1 for char in s2: if char in hM: hM[char] -= 1 else: hM[char] = -1 for k,v in hM.items(): deletes += abs(v) return deletes s1 = 'abccd' s2 = 'cde' print(makeAnagram(s1, s2))
""" given two strings make them anagrams by performing deletions on both, return number of deletions """ def make_anagram(s1, s2): h_m = dict() deletes = 0 for char in s1: if char in hM: hM[char] += 1 else: hM[char] = 1 for char in s2: if char in hM: hM[char] -= 1 else: hM[char] = -1 for (k, v) in hM.items(): deletes += abs(v) return deletes s1 = 'abccd' s2 = 'cde' print(make_anagram(s1, s2))
class Coerce(object): @staticmethod def bool(space, w_obj): return space.is_true(w_obj) @staticmethod def symbol(space, w_obj): if space.is_kind_of(w_obj, space.w_symbol): return space.symbol_w(w_obj) else: w_str = space.convert_type(w_obj, space.w_string, "to_str", raise_error=False) if w_str is space.w_nil: w_inspect_str = space.send(w_obj, "inspect") if not space.is_kind_of(w_inspect_str, space.w_string): inspect_str = space.any_to_s(w_obj) else: inspect_str = space.str_w(w_inspect_str) raise space.error(space.w_TypeError, "%s is not a symbol" % inspect_str) else: return space.str_w(w_str) @staticmethod def int(space, w_obj): if space.is_kind_of(w_obj, space.w_fixnum): return space.int_w(w_obj) else: return space.int_w( space.convert_type(w_obj, space.w_integer, "to_int")) @staticmethod def bigint(space, w_obj): return space.bigint_w( space.convert_type(w_obj, space.w_integer, "to_int")) @staticmethod def float(space, w_obj): if space.is_kind_of(w_obj, space.w_float): return space.float_w(w_obj) else: return space.float_w(space.send(w_obj, "Float", [w_obj])) @staticmethod def strictfloat(space, w_obj): if not space.is_kind_of(w_obj, space.w_numeric): clsname = w_obj.getclass(space).name raise space.error(space.w_TypeError, "can't convert %s into Float" % clsname) return Coerce.float(space, w_obj) @staticmethod def str(space, w_obj): if (space.is_kind_of(w_obj, space.w_string) or space.is_kind_of(w_obj, space.w_symbol)): return space.str_w(w_obj) else: return space.str_w( space.convert_type(w_obj, space.w_string, "to_str")) @staticmethod def path(space, w_obj): w_string = space.convert_type(w_obj, space.w_string, "to_path", raise_error=False) if w_string is space.w_nil: w_string = space.convert_type(w_obj, space.w_string, "to_str") return space.str0_w(w_string) @staticmethod def array(space, w_obj): if not space.is_kind_of(w_obj, space.w_array): w_obj = space.convert_type(w_obj, space.w_array, "to_ary") return space.listview(w_obj) @staticmethod def hash(space, w_obj): if not space.is_kind_of(w_obj, space.w_hash): return space.convert_type(w_obj, space.w_hash, "to_hash") return w_obj
class Coerce(object): @staticmethod def bool(space, w_obj): return space.is_true(w_obj) @staticmethod def symbol(space, w_obj): if space.is_kind_of(w_obj, space.w_symbol): return space.symbol_w(w_obj) else: w_str = space.convert_type(w_obj, space.w_string, 'to_str', raise_error=False) if w_str is space.w_nil: w_inspect_str = space.send(w_obj, 'inspect') if not space.is_kind_of(w_inspect_str, space.w_string): inspect_str = space.any_to_s(w_obj) else: inspect_str = space.str_w(w_inspect_str) raise space.error(space.w_TypeError, '%s is not a symbol' % inspect_str) else: return space.str_w(w_str) @staticmethod def int(space, w_obj): if space.is_kind_of(w_obj, space.w_fixnum): return space.int_w(w_obj) else: return space.int_w(space.convert_type(w_obj, space.w_integer, 'to_int')) @staticmethod def bigint(space, w_obj): return space.bigint_w(space.convert_type(w_obj, space.w_integer, 'to_int')) @staticmethod def float(space, w_obj): if space.is_kind_of(w_obj, space.w_float): return space.float_w(w_obj) else: return space.float_w(space.send(w_obj, 'Float', [w_obj])) @staticmethod def strictfloat(space, w_obj): if not space.is_kind_of(w_obj, space.w_numeric): clsname = w_obj.getclass(space).name raise space.error(space.w_TypeError, "can't convert %s into Float" % clsname) return Coerce.float(space, w_obj) @staticmethod def str(space, w_obj): if space.is_kind_of(w_obj, space.w_string) or space.is_kind_of(w_obj, space.w_symbol): return space.str_w(w_obj) else: return space.str_w(space.convert_type(w_obj, space.w_string, 'to_str')) @staticmethod def path(space, w_obj): w_string = space.convert_type(w_obj, space.w_string, 'to_path', raise_error=False) if w_string is space.w_nil: w_string = space.convert_type(w_obj, space.w_string, 'to_str') return space.str0_w(w_string) @staticmethod def array(space, w_obj): if not space.is_kind_of(w_obj, space.w_array): w_obj = space.convert_type(w_obj, space.w_array, 'to_ary') return space.listview(w_obj) @staticmethod def hash(space, w_obj): if not space.is_kind_of(w_obj, space.w_hash): return space.convert_type(w_obj, space.w_hash, 'to_hash') return w_obj
def main(): testCase = int(input()) def isprime(n): if n<=1: return False for i in range(2,n): if n%i ==0: return False return True while testCase >0: LR = list(map(int,input().strip().split())) first = LR[0] last = LR[1] f = 0 l = 0 for i in range(first,last+1): if f ==0: if isprime(i): f=i else: i = i+1 if l==0: if isprime(last): l=last else: last -=1 if f!=0 and l!=0: break if f!=0 and l!=0: print(l-f) else: print(-1) testCase -=1 main()
def main(): test_case = int(input()) def isprime(n): if n <= 1: return False for i in range(2, n): if n % i == 0: return False return True while testCase > 0: lr = list(map(int, input().strip().split())) first = LR[0] last = LR[1] f = 0 l = 0 for i in range(first, last + 1): if f == 0: if isprime(i): f = i else: i = i + 1 if l == 0: if isprime(last): l = last else: last -= 1 if f != 0 and l != 0: break if f != 0 and l != 0: print(l - f) else: print(-1) test_case -= 1 main()
''' Pycache directory(.pyc) Pycache is basically a folder that contains Python3 byte code, which has already been complied and is ready to be executed. They make my program start faster. They are automatically created after a module has been imported and used. '''
""" Pycache directory(.pyc) Pycache is basically a folder that contains Python3 byte code, which has already been complied and is ready to be executed. They make my program start faster. They are automatically created after a module has been imported and used. """
def join(list): return "".join(map(str,list)) def joinComma(list): return f"\n<symbol> , </symbol>\n".join(map(str,list)) def joinDot(list): return f"\n<symbol> . </symbol>\n".join(map(str,list)) class Class: def __init__(self, name, defs): self.name = name self.fields = defs[0] self.methods = defs[1] def __str__(self): return f""" <class> <keyword> class </keyword> {self.name} <symbol> {{ </symbol> {join(self.fields)} {join(self.methods)} <symbol> }} </symbol> </class> """ class Expr: def __init__(self, what): self.what = what def __str__(self): return f""" <expression> {self.what} </expression> """ class Term: def __init__(self, what): self.what = what def __str__(self): return f""" <term> {self.what} </term> """ class PropDef: def __init__(self, cat, type, identifiers): self.cat = cat self.type = type self.identifiers = identifiers def __str__(self): return f""" <classVarDec> <keyword> {self.cat} </keyword> {self.type} {joinComma(self.identifiers)} <symbol> ; </symbol> </classVarDec> """ class MethodDef: def __init__(self, cat, type, name, params, body): self.cat=cat self.type=type self.name=name self.params=params self.body=body def __str__(self): return f""" <subroutineDec> <keyword> {self.cat} </keyword> {self.type} {self.name} <symbol> ( </symbol> <parameterList> {joinComma(self.params)} </parameterList> <symbol> ) </symbol> <subroutineBody> <symbol> {{ </symbol> {self.body} <symbol> }} </symbol> </subroutineBody> </subroutineDec> """ class Body: def __init__(self, local, statements): self.local = local self.statements = statements def __str__(self): return f""" {join(self.local)} <statements> {join(self.statements)} </statements> """ class LocalDef: def __init__(self, type, identifiers): self.type = type self.identifiers = identifiers def __str__(self): return f""" <varDec> <keyword> var </keyword> {self.type} {joinComma(self.identifiers)} <symbol> ; </symbol> </varDec> """ class Identifier: def __init__(self, name): self.name = name def __str__(self): return f"<identifier> {self.name} </identifier>" class PrimType: def __init__(self, name): self.name = name def __str__(self): return f"<keyword> {self.name} </keyword>" class LetStmt: def __init__(self,var,expr): self.var=var self.expr=expr def __str__(self): return f""" <letStatement> <keyword> let </keyword> {self.var} <symbol> = </symbol> <expression> {self.expr} </expression> <symbol> ; </symbol> </letStatement> """ class DoStmt: def __init__(self,call): self.call=call def __str__(self): return f""" <doStatement> <keyword> do </keyword> {self.call} <symbol> ; </symbol> </doStatement> """ class ReturnStmt: def __init__(self,expr=None): self.expr=expr def __str__(self): return f""" <returnStatement> <keyword> return </keyword> {Expr(self.expr) if self.expr else ""} <symbol> ; </symbol> </returnStatement> """ class WhileStmt: def __init__(self,cond,body): self.cond=cond self.body=body def __str__(self): return f""" <whileStatement> <keyword> while </keyword> <symbol> ( </symbol> <expression> {self.cond} </expression> <symbol> ) </symbol> <symbol> {{ </symbol> <statements> {join(self.body)} </statements> <symbol> }} </symbol> </whileStatement> """ class IfStmt: def __init__(self,cond,iftrue,iffalse): self.cond=cond self.iftrue=iftrue self.iffalse=iffalse def _iffalse(self): if self.iffalse is None: return "" else: return f""" <keyword> else </keyword> <symbol> {{ </symbol> <statements> {join(self.iffalse)} </statements> <symbol> }} </symbol> """ def __str__(self): return f""" <ifStatement> <keyword> if </keyword> <symbol> ( </symbol> <expression> {self.cond} </expression> <symbol> ) </symbol> <symbol> {{ </symbol> <statements> {join(self.iftrue)} </statements> <symbol> }} </symbol> {self._iffalse()} </ifStatement> """ class ArrayExpr: def __init__(self, name, idx): self.name=name self.idx=idx def __str__(self): return f""" {self.name} <symbol> [ </symbol> <expression> {self.idx} </expression> <symbol> ] </symbol> """ class IntConst: def __init__(self, value): self.value = value def __str__(self): return f"<integerConstant>{self.value}</integerConstant>" class StrConst: def __init__(self, value): self.value = value def __str__(self): return f"<stringConstant>{self.value}</stringConstant>" class Call: def __init__(self, method, arguments): self.method = method self.arguments = arguments def __str__(self): return f""" {joinDot(self.method)} <symbol> ( </symbol> <expressionList> {joinComma(map(Expr, self.arguments))} </expressionList> <symbol> ) </symbol> """ class PrimVal: def __init__(self, val): self.val = val def __str__(self): return f"<keyword> {self.val} </keyword>" class Not: def __init__(self, expr): self.expr = expr def __str__(self): return f""" <term> <symbol> ~ </symbol> {self.expr} </term> """ class Neg: def __init__(self, expr): self.expr = expr def __str__(self): return f""" <term> <symbol> - </symbol> {self.expr} </term> """ class Parens: def __init__(self, expr): self.expr = expr def __str__(self): return f""" <term> <symbol> ( </symbol> <expression> {self.expr} </expression> <symbol> ) </symbol> </term> """ class BinOp: def __init__(self, op, a, b): self.op = op self.a = a self.b = b def __str__(self): return f""" {self.a} <symbol> {escape(self.op)} </symbol> {self.b} """ def escape(s): return s.replace('&', '&amp;')\ .replace('"', '&quot;')\ .replace('<', '&lt;')\ .replace('>', '&gt;') class Parameter: def __init__(self,type, name): self.type=type self.name=name def __str__(self): return f""" {self.type} {self.name} """
def join(list): return ''.join(map(str, list)) def join_comma(list): return f'\n<symbol> , </symbol>\n'.join(map(str, list)) def join_dot(list): return f'\n<symbol> . </symbol>\n'.join(map(str, list)) class Class: def __init__(self, name, defs): self.name = name self.fields = defs[0] self.methods = defs[1] def __str__(self): return f'\n<class>\n<keyword> class </keyword>\n{self.name}\n<symbol> {{ </symbol>\n{join(self.fields)}\n{join(self.methods)}\n<symbol> }} </symbol>\n</class>\n' class Expr: def __init__(self, what): self.what = what def __str__(self): return f'\n<expression>\n{self.what}\n</expression>\n' class Term: def __init__(self, what): self.what = what def __str__(self): return f'\n<term>\n{self.what}\n</term>\n' class Propdef: def __init__(self, cat, type, identifiers): self.cat = cat self.type = type self.identifiers = identifiers def __str__(self): return f'\n<classVarDec>\n<keyword> {self.cat} </keyword>\n{self.type}\n{join_comma(self.identifiers)}\n<symbol> ; </symbol>\n</classVarDec>\n' class Methoddef: def __init__(self, cat, type, name, params, body): self.cat = cat self.type = type self.name = name self.params = params self.body = body def __str__(self): return f'\n<subroutineDec>\n<keyword> {self.cat} </keyword>\n{self.type}\n{self.name}\n<symbol> ( </symbol>\n<parameterList>\n{join_comma(self.params)}\n</parameterList>\n<symbol> ) </symbol>\n<subroutineBody>\n<symbol> {{ </symbol>\n{self.body}\n<symbol> }} </symbol>\n</subroutineBody>\n</subroutineDec>\n' class Body: def __init__(self, local, statements): self.local = local self.statements = statements def __str__(self): return f'\n{join(self.local)}\n<statements>\n{join(self.statements)}\n</statements>\n' class Localdef: def __init__(self, type, identifiers): self.type = type self.identifiers = identifiers def __str__(self): return f'\n<varDec>\n<keyword> var </keyword>\n{self.type}\n{join_comma(self.identifiers)}\n<symbol> ; </symbol>\n</varDec>\n' class Identifier: def __init__(self, name): self.name = name def __str__(self): return f'<identifier> {self.name} </identifier>' class Primtype: def __init__(self, name): self.name = name def __str__(self): return f'<keyword> {self.name} </keyword>' class Letstmt: def __init__(self, var, expr): self.var = var self.expr = expr def __str__(self): return f'\n<letStatement>\n<keyword> let </keyword>\n{self.var}\n<symbol> = </symbol>\n<expression>\n{self.expr}\n</expression>\n<symbol> ; </symbol>\n</letStatement>\n' class Dostmt: def __init__(self, call): self.call = call def __str__(self): return f'\n<doStatement>\n<keyword> do </keyword>\n{self.call}\n<symbol> ; </symbol>\n</doStatement>\n' class Returnstmt: def __init__(self, expr=None): self.expr = expr def __str__(self): return f"\n<returnStatement>\n<keyword> return </keyword>\n{(expr(self.expr) if self.expr else '')}\n<symbol> ; </symbol>\n</returnStatement>\n" class Whilestmt: def __init__(self, cond, body): self.cond = cond self.body = body def __str__(self): return f'\n<whileStatement>\n<keyword> while </keyword>\n<symbol> ( </symbol>\n<expression>\n{self.cond}\n</expression>\n<symbol> ) </symbol>\n<symbol> {{ </symbol>\n<statements>\n{join(self.body)}\n</statements>\n<symbol> }} </symbol>\n</whileStatement>\n' class Ifstmt: def __init__(self, cond, iftrue, iffalse): self.cond = cond self.iftrue = iftrue self.iffalse = iffalse def _iffalse(self): if self.iffalse is None: return '' else: return f'\n<keyword> else </keyword>\n<symbol> {{ </symbol>\n<statements>\n{join(self.iffalse)}\n</statements>\n<symbol> }} </symbol>\n' def __str__(self): return f'\n<ifStatement>\n<keyword> if </keyword>\n<symbol> ( </symbol>\n<expression>\n{self.cond}\n</expression>\n<symbol> ) </symbol>\n<symbol> {{ </symbol>\n<statements>\n{join(self.iftrue)}\n</statements>\n<symbol> }} </symbol>\n{self._iffalse()}\n</ifStatement>\n' class Arrayexpr: def __init__(self, name, idx): self.name = name self.idx = idx def __str__(self): return f'\n{self.name}\n<symbol> [ </symbol>\n<expression>\n{self.idx}\n</expression>\n<symbol> ] </symbol>\n' class Intconst: def __init__(self, value): self.value = value def __str__(self): return f'<integerConstant>{self.value}</integerConstant>' class Strconst: def __init__(self, value): self.value = value def __str__(self): return f'<stringConstant>{self.value}</stringConstant>' class Call: def __init__(self, method, arguments): self.method = method self.arguments = arguments def __str__(self): return f'\n{join_dot(self.method)}\n<symbol> ( </symbol>\n<expressionList>\n{join_comma(map(Expr, self.arguments))}\n</expressionList>\n<symbol> ) </symbol>\n' class Primval: def __init__(self, val): self.val = val def __str__(self): return f'<keyword> {self.val} </keyword>' class Not: def __init__(self, expr): self.expr = expr def __str__(self): return f'\n<term>\n<symbol> ~ </symbol>\n{self.expr}\n</term>\n' class Neg: def __init__(self, expr): self.expr = expr def __str__(self): return f'\n<term>\n<symbol> - </symbol>\n{self.expr}\n</term>\n' class Parens: def __init__(self, expr): self.expr = expr def __str__(self): return f'\n<term>\n<symbol> ( </symbol>\n<expression>\n{self.expr}\n</expression>\n<symbol> ) </symbol>\n</term>\n' class Binop: def __init__(self, op, a, b): self.op = op self.a = a self.b = b def __str__(self): return f'\n{self.a}\n<symbol> {escape(self.op)} </symbol>\n{self.b}\n' def escape(s): return s.replace('&', '&amp;').replace('"', '&quot;').replace('<', '&lt;').replace('>', '&gt;') class Parameter: def __init__(self, type, name): self.type = type self.name = name def __str__(self): return f'\n{self.type}\n{self.name}\n'
# -*- mode: python -*- # Ansible is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with Ansible. If not, see <http://www.gnu.org/licenses/>. DOCUMENTATION = ''' --- author: "Allen Sanabria (@linuxdynasty)" module: include_vars short_description: Load variables from files, dynamically within a task. description: - Loads variables from a YAML/JSON files dynamically from within a file or from a directory recursively during task runtime. If loading a directory, the files are sorted alphabetically before being loaded. options: file: version_added: "2.2" description: - The file name from which variables should be loaded. - If the path is relative, it will look for the file in vars/ subdirectory of a role or relative to playbook. dir: version_added: "2.2" description: - The directory name from which the variables should be loaded. - If the path is relative, it will look for the file in vars/ subdirectory of a role or relative to playbook. default: null name: version_added: "2.2" description: - The name of a variable into which assign the included vars, if omitted (null) they will be made top level vars. default: null depth: version_added: "2.2" description: - By default, this module will recursively go through each sub directory and load up the variables. By explicitly setting the depth, this module will only go as deep as the depth. default: 0 files_matching: version_added: "2.2" description: - Limit the variables that are loaded within any directory to this regular expression. default: null ignore_files: version_added: "2.2" description: - List of file names to ignore. The defaults can not be overridden, but can be extended. default: null free-form: description: - This module allows you to specify the 'file' option directly w/o any other options. ''' EXAMPLES = """ # Include vars of stuff.yml into the 'stuff' variable (2.2). - include_vars: file: stuff.yml name: stuff # Conditionally decide to load in variables into 'plans' when x is 0, otherwise do not. (2.2) - include_vars: file=contingency_plan.yml name=plans when: x == 0 # Load a variable file based on the OS type, or a default if not found. - include_vars: "{{ item }}" with_first_found: - "{{ ansible_distribution }}.yml" - "{{ ansible_os_family }}.yml" - "default.yml" # bare include (free-form) - include_vars: myvars.yml # Include all yml files in vars/all and all nested directories - include_vars: dir: 'vars/all' # Include all yml files in vars/all and all nested directories and save the output in test. - include_vars: dir: 'vars/all' name: test # Include all yml files in vars/services - include_vars: dir: 'vars/services' depth: 1 # Include only bastion.yml files - include_vars: dir: 'vars' files_matching: 'bastion.yml' # Include only all yml files exception bastion.yml - include_vars: dir: 'vars' ignore_files: 'bastion.yml' """
documentation = '\n---\nauthor: "Allen Sanabria (@linuxdynasty)"\nmodule: include_vars\nshort_description: Load variables from files, dynamically within a task.\ndescription:\n - Loads variables from a YAML/JSON files dynamically from within a file or\n from a directory recursively during task runtime. If loading a directory, the files are sorted alphabetically before being loaded.\noptions:\n file:\n version_added: "2.2"\n description:\n - The file name from which variables should be loaded.\n - If the path is relative, it will look for the file in vars/ subdirectory of a role or relative to playbook.\n dir:\n version_added: "2.2"\n description:\n - The directory name from which the variables should be loaded.\n - If the path is relative, it will look for the file in vars/ subdirectory of a role or relative to playbook.\n default: null\n name:\n version_added: "2.2"\n description:\n - The name of a variable into which assign the included vars, if omitted (null) they will be made top level vars.\n default: null\n depth:\n version_added: "2.2"\n description:\n - By default, this module will recursively go through each sub directory and load up the variables. By explicitly setting the depth, this module will only go as deep as the depth.\n default: 0\n files_matching:\n version_added: "2.2"\n description:\n - Limit the variables that are loaded within any directory to this regular expression.\n default: null\n ignore_files:\n version_added: "2.2"\n description:\n - List of file names to ignore. The defaults can not be overridden, but can be extended.\n default: null\n free-form:\n description:\n - This module allows you to specify the \'file\' option directly w/o any other options.\n' examples = '\n# Include vars of stuff.yml into the \'stuff\' variable (2.2).\n- include_vars:\n file: stuff.yml\n name: stuff\n\n# Conditionally decide to load in variables into \'plans\' when x is 0, otherwise do not. (2.2)\n- include_vars: file=contingency_plan.yml name=plans\n when: x == 0\n\n# Load a variable file based on the OS type, or a default if not found.\n- include_vars: "{{ item }}"\n with_first_found:\n - "{{ ansible_distribution }}.yml"\n - "{{ ansible_os_family }}.yml"\n - "default.yml"\n\n# bare include (free-form)\n- include_vars: myvars.yml\n\n# Include all yml files in vars/all and all nested directories\n- include_vars:\n dir: \'vars/all\'\n\n# Include all yml files in vars/all and all nested directories and save the output in test.\n- include_vars:\n dir: \'vars/all\'\n name: test\n\n# Include all yml files in vars/services\n- include_vars:\n dir: \'vars/services\'\n depth: 1\n\n# Include only bastion.yml files\n- include_vars:\n dir: \'vars\'\n files_matching: \'bastion.yml\'\n\n# Include only all yml files exception bastion.yml\n- include_vars:\n dir: \'vars\'\n ignore_files: \'bastion.yml\'\n'
# Brak : Is what we write to exit the loop whenever we want. # 1. Example using while loop ''' while True: command = input("Type 'exit' to exit : ") if (command == 'exit'): break # Halt the execution of the loop. ''' # 2. Example using for loop ''' for x in range(1,101): print(x) if x == 19 : break ''' # 3. Repetitive Room Problem times = int(input("How many times do I have to tell you ? ")) for time in range(times): print("Clean up your ROOM!") if time >= 3 : print("Do you even listen anymore ?") break
""" while True: command = input("Type 'exit' to exit : ") if (command == 'exit'): break # Halt the execution of the loop. """ '\nfor x in range(1,101):\n print(x)\n if x == 19 :\n break\n' times = int(input('How many times do I have to tell you ? ')) for time in range(times): print('Clean up your ROOM!') if time >= 3: print('Do you even listen anymore ?') break
#!/usr/bin/env python3.4 # -*- coding: utf-8 -*- __author__ = 'Moskvitin Maxim' class DatabaseException(Exception): pass
__author__ = 'Moskvitin Maxim' class Databaseexception(Exception): pass
class Floor: def __init__(self, floorNum): self.floorNum = floorNum self.waitingPersons = [] def addWaitingPerson(self, person): self.waitingPersons.append(person) def removeWaitingPerson(self, person): self.waitingPersons.remove(person) def getWaitingPersons(self): return self.waitingPersons def getNextWaitingPerson(self): if len(self.waitingPersons) > 0: person = self.waitingPersons.pop(0) return person return None def getWaitingPosition(self, person): return self.waitingPersons.index(person)
class Floor: def __init__(self, floorNum): self.floorNum = floorNum self.waitingPersons = [] def add_waiting_person(self, person): self.waitingPersons.append(person) def remove_waiting_person(self, person): self.waitingPersons.remove(person) def get_waiting_persons(self): return self.waitingPersons def get_next_waiting_person(self): if len(self.waitingPersons) > 0: person = self.waitingPersons.pop(0) return person return None def get_waiting_position(self, person): return self.waitingPersons.index(person)
class ValueRange(object): """Some command values are defined as a range of possible values, such as from 1 to 100. We use a custom type to represen this. We used to use range() or xrange(), but a list is not hashable, and a generator can be exhausted after use. """ def __init__(self, start, end): self.start = start self.end = end self._range = tuple(range(start, end + 1)) def __contains__(self, value): return value in self._range def format_nri_list(data): """Return NRI lists as dict with names or ids as the key.""" if not data: return None info = {} for item in data: if item.get("name") is not None: key = item.pop("name") elif item.get("id") is not None: key = item.pop("id") else: return None info[key] = item return info
class Valuerange(object): """Some command values are defined as a range of possible values, such as from 1 to 100. We use a custom type to represen this. We used to use range() or xrange(), but a list is not hashable, and a generator can be exhausted after use. """ def __init__(self, start, end): self.start = start self.end = end self._range = tuple(range(start, end + 1)) def __contains__(self, value): return value in self._range def format_nri_list(data): """Return NRI lists as dict with names or ids as the key.""" if not data: return None info = {} for item in data: if item.get('name') is not None: key = item.pop('name') elif item.get('id') is not None: key = item.pop('id') else: return None info[key] = item return info
# -*- coding: utf-8 -*- """ fudcon.modules.rooms ------ fudcon module rooms application package """
""" fudcon.modules.rooms ------ fudcon module rooms application package """
class Row: def __getitem__(self, item): if isinstance(item, int): return list(self.__dict__.values())[item] return self.__dict__[item]
class Row: def __getitem__(self, item): if isinstance(item, int): return list(self.__dict__.values())[item] return self.__dict__[item]
def set_tile_id(matrix): tileDict = {} for y in range(len(matrix)): for x in matrix[y]: tileDict[x[0]] = x[1] return tileDict
def set_tile_id(matrix): tile_dict = {} for y in range(len(matrix)): for x in matrix[y]: tileDict[x[0]] = x[1] return tileDict
# exc. 4.3.1 (Rolling Mission) guess_letter = input("Enter your guess here: ") if (len(guess_letter) > 1) and (guess_letter.isalpha()): print('E1') elif (guess_letter.isalpha() == False) and (len(guess_letter) > 1) : print('E3') elif guess_letter.isalpha() == False: print('E2') else: guess_letter = guess_letter.lower() print(guess_letter)
guess_letter = input('Enter your guess here: ') if len(guess_letter) > 1 and guess_letter.isalpha(): print('E1') elif guess_letter.isalpha() == False and len(guess_letter) > 1: print('E3') elif guess_letter.isalpha() == False: print('E2') else: guess_letter = guess_letter.lower() print(guess_letter)
# -*- coding: utf-8 -*- """ Created on Tue Feb 1 18:10:43 2022 @author: Nima """ class Point: """ Showing A 2D Point. """ def print_point(p): print('(%g, %g)' % (p.x,p.y)) class Rect: """ Show Rectangle attributes: length, width, point. """ rec1 = Rect() rec1.length = 50.0 rec1.width = 80.0 rec1.point = Point() rec1.point.x = 0.0 rec1.point.y = 0.0 def center(most): p = Point() p.x = most.point.x + most.length/2 p.y = most.point.y - most.width/2 return p rec1.length = rec1.length + 500 rec1.width = rec1.width + 500 def change_rect_size(most,cLength,cWidth): most.length += cLength most.width += cWidth
""" Created on Tue Feb 1 18:10:43 2022 @author: Nima """ class Point: """ Showing A 2D Point. """ def print_point(p): print('(%g, %g)' % (p.x, p.y)) class Rect: """ Show Rectangle attributes: length, width, point. """ rec1 = rect() rec1.length = 50.0 rec1.width = 80.0 rec1.point = point() rec1.point.x = 0.0 rec1.point.y = 0.0 def center(most): p = point() p.x = most.point.x + most.length / 2 p.y = most.point.y - most.width / 2 return p rec1.length = rec1.length + 500 rec1.width = rec1.width + 500 def change_rect_size(most, cLength, cWidth): most.length += cLength most.width += cWidth
def get_course_grade_data(course_id): """ *** Please override this function in a file called custom_utilities.py, with the same call signature. *** Given a course ID, this function should return a dictionary keyed by user ID for the users in the course. Each user's value should be a dict with the keys: - grade: The user's grade in the course - completed: A boolean indicating whether the student completed the course. Example of output format: { 1980032: {"grade": 0.74, "completed": True}, 1981432: {"grade": 0.24, "completed": False}, . . . } :param course_id: ID for course to fetch grade data for. :return: Dictionary """ raise NotImplementedError("The function get_course_grade_data is not implemented. \ Please create a file called custom_utilities.py and implement this function with the same call signature in it.") def get_course_metadata(): """ *** Please override this function in a file called custom_utilities.py, with the same call signature. *** Generate the course metadata required by the analysis for all courses. The output is a dict, keyed by course ID. Each course's value is a :return: A dict, where each key is a course ID, and the value is a dict with fields - "course_id", - "semester", - "course_launch", - "4-way" """ raise NotImplementedError("The function get_course_metadata is not implemented. \ Please create a file called custom_utilities.py and implement this function with the same call signature in it.")
def get_course_grade_data(course_id): """ *** Please override this function in a file called custom_utilities.py, with the same call signature. *** Given a course ID, this function should return a dictionary keyed by user ID for the users in the course. Each user's value should be a dict with the keys: - grade: The user's grade in the course - completed: A boolean indicating whether the student completed the course. Example of output format: { 1980032: {"grade": 0.74, "completed": True}, 1981432: {"grade": 0.24, "completed": False}, . . . } :param course_id: ID for course to fetch grade data for. :return: Dictionary """ raise not_implemented_error('The function get_course_grade_data is not implemented. Please create a file called custom_utilities.py and implement this function with the same call signature in it.') def get_course_metadata(): """ *** Please override this function in a file called custom_utilities.py, with the same call signature. *** Generate the course metadata required by the analysis for all courses. The output is a dict, keyed by course ID. Each course's value is a :return: A dict, where each key is a course ID, and the value is a dict with fields - "course_id", - "semester", - "course_launch", - "4-way" """ raise not_implemented_error('The function get_course_metadata is not implemented. Please create a file called custom_utilities.py and implement this function with the same call signature in it.')
# -*- coding: utf-8 -*- """ Created on Thu Jul 11 17:01:57 2019 @author: Manav """ list =[] length=len(list) print(length)
""" Created on Thu Jul 11 17:01:57 2019 @author: Manav """ list = [] length = len(list) print(length)
class Pi: ''' Gives digits of pi for use when Highlighting the leds @see https://www.w3resource.com/projects/python/python-projects-1.php @see https://stackoverflow.com/questions/9004789/1000-digits-of-pi-in-python ''' def generator(self): q, r, t, k, m, x = 1, 0, 1, 1, 3, 3 j = -1 while True: j += 1 if 4 * q + r - t < m * t: yield m q, r, t, k, m, x = 10 * q, 10 * (r - m * t), t, k, (10 * (3 * q + r)) // t - 10 * m, x else: q, r, t, k, m, x = q * k, (2 * q + r) * x, t * x, k + 1, (q * (7 * k + 2) + r * x) // (t * x), x + 2 if __name__ == '__main__': ''' Just a little test ''' pi = Pi() for c in pi.generator(): print(str(c))
class Pi: """ Gives digits of pi for use when Highlighting the leds @see https://www.w3resource.com/projects/python/python-projects-1.php @see https://stackoverflow.com/questions/9004789/1000-digits-of-pi-in-python """ def generator(self): (q, r, t, k, m, x) = (1, 0, 1, 1, 3, 3) j = -1 while True: j += 1 if 4 * q + r - t < m * t: yield m (q, r, t, k, m, x) = (10 * q, 10 * (r - m * t), t, k, 10 * (3 * q + r) // t - 10 * m, x) else: (q, r, t, k, m, x) = (q * k, (2 * q + r) * x, t * x, k + 1, (q * (7 * k + 2) + r * x) // (t * x), x + 2) if __name__ == '__main__': '\n Just a little test\n ' pi = pi() for c in pi.generator(): print(str(c))
""" .. note:: In many real world applications of machine learning datasets are heavily biased. This is a direct consequence of the fact that the data is sampled from a distribution which itself is biased as well. In this tutorial, we show how such dataset biases can be mitigated through clever rebalancing. .. _lightly-tutorial-aquarium-custom-metadata: Tutorial 5: Custom Metadata and Rebalancing ============================================= The addition of custom metadata to your dataset can lead to valuable insights which in turn can drastically improve your machine learning models. Lightly supports the upload of categorical (e.g. weather scenario, road type, or copyright license) and numerical metadata (e.g. instance counts, outside temperature, or vehicle velocity). Here, you will learn how to upload custom metadata to your dataset, gain insights about the data, and how to curate the data for better model training. What you will learn -------------------- * How to upload custom metadata to your datasets. * How to detect and mitigate biases in your dataset through rebalancing. Requirements ------------- You can use your own dataset or the one we provide for this tutorial. The dataset we will use is the training set of `Roboflow's Aquarium Dataset <https://public.roboflow.com/object-detection/aquarium>`_. It consists of 448 images from two aquariums in the United States and was made for object detection. You can download it here `aquarium.zip <https://storage.googleapis.com/datasets_boris/aquarium.zip>`_. For this tutorial the `lightly` pip package needs to be installed: .. code-block:: bash # Install lightly as a pip package pip install lightly Custom Metadata ----------------- In many datasets, images come with additional metainformation. For example, in autonomous driving, it's normal to record not only the image but also the current weather situation, the road type, and further situation specific information like the presence of vulnerable street users. In our case, the metadata can be extracted from the annotations. .. note:: Balancing a dataset by different available metadata is crucial for machine learning. Let's take a look at the dataset statistics from the `Roboflow website <https://public.roboflow.com/object-detection/aquarium>`_. The table below contains the category names and instance counts of the dataset +---------------+----------------+ | Category Name | Instance Count | +===============+================+ | fish | 2669 | +---------------+----------------+ | jellyfish | 694 | +---------------+----------------+ | penguin | 516 | +---------------+----------------+ | shark | 354 | +---------------+----------------+ | puffin | 284 | +---------------+----------------+ | stingray | 184 | +---------------+----------------+ | starfish | 116 | +---------------+----------------+ We can see that the dataset at hand is heavily imbalanced - the category distribution is long tail. The most common category is `fish` and objects of that category appear 23 times more often than members of the weakest represented category `starfish`. In order to counteract this imbalance, we want to **remove redundant images which show a lot of fish** from the dataset. Let's start by figuring out how many objects of each category are on each image. The following code extracts metadata from COCO annotations and saves them in a lightly-friendly format. If you want to skip this step, you can use the provided `_annotations.coco.metadata.json`. .. note:: Check out :py:class:`lightly.api.api_workflow_client.ApiWorkflowClient.upload_custom_metadata` to learn more about the expected format of the custom metadata json file. .. note:: You can save your own custom metadata with :py:class:`lightly.utils.io.save_custom_metadata`. .. code-block:: python import json from lightly.utils import save_custom_metadata PATH_TO_COCO_ANNOTATIONS = './aquarium/_annotations.coco.json' OUTPUT_FILE = '_annotations.coco.metadata.json' # read coco annotations with open(PATH_TO_COCO_ANNOTATIONS, 'r') as f: coco_annotations = json.load(f) annotations = coco_annotations['annotations'] categories = coco_annotations['categories'] images = coco_annotations['images'] # create a mapping from category id to category name category_id_to_category_name = {} for category in categories: category_id_to_category_name[category['id']] = category['name'] # create a list of pairs of (filename, metadata) custom_metadata = [] for image in images: # we want to count the number of instances of every category on the image metadata = {'number_of_instances': {}} for category in categories: metadata['number_of_instances'][category['name']] = 0 # count all annotations for that image for annotation in annotations: if annotation['image_id'] == image['id']: metadata['number_of_instances'][category_id_to_category_name[annotation['category_id']]] += 1 # append (filename, metadata) to the list custom_metadata.append((image['file_name'], metadata)) # save custom metadata in the correct json format save_custom_metadata(OUTPUT_FILE, custom_metadata) Now that we have extracted and saved the custom metadata in the correct format, we can upload the dataset to the `Lightly web-app <https://app.lightly.ai>`_. Don't forget to replace the variables `YOUR_TOKEN`, and `YOUR_CUSTOM_METADATA_FILE.json` in the command below. .. code-block:: bash lightly-magic input_dir="./aquarium" trainer.max_epochs=0 token=YOUR_TOKEN new_dataset_name="Aquarium" custom_metadata=YOUR_CUSTOM_METADATA_FILE.json Note that if you already have a dataset on the Lightly platform, you can add custom metadata with: .. code-block:: bash lightly-upload token=YOUR_TOKEN dataset_id=YOUR_DATASET_ID custom_metadata=YOUR_CUSTOM_METADATA_FILE.json Configuration --------------- In order to use custom metadata in the web-app, it needs to be configured first. For this, head to your dataset and select the `Settings > Custom Metadata` menu. We name the configuration `Number of Fish` since we're interested in the number of fish on each image. Next, we fill in the `Path`: To do so, we click on it and select `number_of_instances.fish`. Finally, we pick `Integer` as a data type. The configured custom metadata should look like this: .. figure:: ../../tutorials_source/platform/images/custom_metadata_configuration_aquarium.png :align: center :alt: Custom metadata configuration for number of fish Completed configuration for the custom metadata "Number of Fish". To verify the configuration works correctly, we can head to the `Explore` screen and sort our dataset by the `Number of Fish`. If we sort in descending order we see that images with many fish are shown first. This verifies that the metadata is configured properly. Next, we head to the `Embedding` page. On the top right, we select `Color by property` and set it to `Number of Fish`. This will highlight clusters of similar images with many fish on them: .. figure:: ../../tutorials_source/platform/images/custom_metadata_scatter_plot.png :align: center :alt: Custom metadata scatter plot Scatter plot highlighting clusters of similar images with many fish on them (light green). Rebalancing ---------------- As we have seen earlier in this tutorial, the aquarium dataset is heavily imbalanced. The scatter plot also tells us that the bulk of the fish instances in the dataset comes from a few, similar images. We want to rebalance the dataset by only keeping a diverse subset of these images. For this, we start by creating a new tag consisting only of images with a lot of fish in them. We do so, by shift-clicking in the scatter plot and drawing a circle around the clusters of interest. We call the tag `Fish`. .. figure:: ../../tutorials_source/platform/images/custom_metadata_scatter_plot_with_tag.png :align: center :alt: Custom metadata scatter plot (fish tag) Scatter plot of the tag we named "Fish". Now, we can use CORESET selection strategy to diversify this tag and create the tag `FewerFish` with only 10 remaining images. See :ref:`lightly-tutorial-sunflowers` for more information on selection strategies". Lastly, all we need to do in order to get the balanced dataset is merge the `FewerFish` tag with the remainder of the dataset. For this we can use `tag arithmetics`: 1. We open the tag tree by clicking on the three dots in the navigation bar and unravel it. 2. We create a new tag which is the inverse of the `Fish` tag. We start by left-clicking on `initial-tag` and shift-clicking on the `Fish` tag. The tag arithmetics menu should pop up. We select `difference`, put in the name `NoFish` and hit enter. 3. We create the final dataset by taking the union of the `NoFish` and the `FewerFish` tag. In the end, the tag tree should look like this: .. figure:: ../../tutorials_source/platform/images/final_tag_tree.png :align: center :alt: Final tag tree. The final tag tree with the tags `Fish`, `FewerFish`, `NoFish`, and `final-tag`. Now we can use the balanced dataset to train our machine learning model. We can easily download the data from the `Download` page. """
""" .. note:: In many real world applications of machine learning datasets are heavily biased. This is a direct consequence of the fact that the data is sampled from a distribution which itself is biased as well. In this tutorial, we show how such dataset biases can be mitigated through clever rebalancing. .. _lightly-tutorial-aquarium-custom-metadata: Tutorial 5: Custom Metadata and Rebalancing ============================================= The addition of custom metadata to your dataset can lead to valuable insights which in turn can drastically improve your machine learning models. Lightly supports the upload of categorical (e.g. weather scenario, road type, or copyright license) and numerical metadata (e.g. instance counts, outside temperature, or vehicle velocity). Here, you will learn how to upload custom metadata to your dataset, gain insights about the data, and how to curate the data for better model training. What you will learn -------------------- * How to upload custom metadata to your datasets. * How to detect and mitigate biases in your dataset through rebalancing. Requirements ------------- You can use your own dataset or the one we provide for this tutorial. The dataset we will use is the training set of `Roboflow's Aquarium Dataset <https://public.roboflow.com/object-detection/aquarium>`_. It consists of 448 images from two aquariums in the United States and was made for object detection. You can download it here `aquarium.zip <https://storage.googleapis.com/datasets_boris/aquarium.zip>`_. For this tutorial the `lightly` pip package needs to be installed: .. code-block:: bash # Install lightly as a pip package pip install lightly Custom Metadata ----------------- In many datasets, images come with additional metainformation. For example, in autonomous driving, it's normal to record not only the image but also the current weather situation, the road type, and further situation specific information like the presence of vulnerable street users. In our case, the metadata can be extracted from the annotations. .. note:: Balancing a dataset by different available metadata is crucial for machine learning. Let's take a look at the dataset statistics from the `Roboflow website <https://public.roboflow.com/object-detection/aquarium>`_. The table below contains the category names and instance counts of the dataset +---------------+----------------+ | Category Name | Instance Count | +===============+================+ | fish | 2669 | +---------------+----------------+ | jellyfish | 694 | +---------------+----------------+ | penguin | 516 | +---------------+----------------+ | shark | 354 | +---------------+----------------+ | puffin | 284 | +---------------+----------------+ | stingray | 184 | +---------------+----------------+ | starfish | 116 | +---------------+----------------+ We can see that the dataset at hand is heavily imbalanced - the category distribution is long tail. The most common category is `fish` and objects of that category appear 23 times more often than members of the weakest represented category `starfish`. In order to counteract this imbalance, we want to **remove redundant images which show a lot of fish** from the dataset. Let's start by figuring out how many objects of each category are on each image. The following code extracts metadata from COCO annotations and saves them in a lightly-friendly format. If you want to skip this step, you can use the provided `_annotations.coco.metadata.json`. .. note:: Check out :py:class:`lightly.api.api_workflow_client.ApiWorkflowClient.upload_custom_metadata` to learn more about the expected format of the custom metadata json file. .. note:: You can save your own custom metadata with :py:class:`lightly.utils.io.save_custom_metadata`. .. code-block:: python import json from lightly.utils import save_custom_metadata PATH_TO_COCO_ANNOTATIONS = './aquarium/_annotations.coco.json' OUTPUT_FILE = '_annotations.coco.metadata.json' # read coco annotations with open(PATH_TO_COCO_ANNOTATIONS, 'r') as f: coco_annotations = json.load(f) annotations = coco_annotations['annotations'] categories = coco_annotations['categories'] images = coco_annotations['images'] # create a mapping from category id to category name category_id_to_category_name = {} for category in categories: category_id_to_category_name[category['id']] = category['name'] # create a list of pairs of (filename, metadata) custom_metadata = [] for image in images: # we want to count the number of instances of every category on the image metadata = {'number_of_instances': {}} for category in categories: metadata['number_of_instances'][category['name']] = 0 # count all annotations for that image for annotation in annotations: if annotation['image_id'] == image['id']: metadata['number_of_instances'][category_id_to_category_name[annotation['category_id']]] += 1 # append (filename, metadata) to the list custom_metadata.append((image['file_name'], metadata)) # save custom metadata in the correct json format save_custom_metadata(OUTPUT_FILE, custom_metadata) Now that we have extracted and saved the custom metadata in the correct format, we can upload the dataset to the `Lightly web-app <https://app.lightly.ai>`_. Don't forget to replace the variables `YOUR_TOKEN`, and `YOUR_CUSTOM_METADATA_FILE.json` in the command below. .. code-block:: bash lightly-magic input_dir="./aquarium" trainer.max_epochs=0 token=YOUR_TOKEN new_dataset_name="Aquarium" custom_metadata=YOUR_CUSTOM_METADATA_FILE.json Note that if you already have a dataset on the Lightly platform, you can add custom metadata with: .. code-block:: bash lightly-upload token=YOUR_TOKEN dataset_id=YOUR_DATASET_ID custom_metadata=YOUR_CUSTOM_METADATA_FILE.json Configuration --------------- In order to use custom metadata in the web-app, it needs to be configured first. For this, head to your dataset and select the `Settings > Custom Metadata` menu. We name the configuration `Number of Fish` since we're interested in the number of fish on each image. Next, we fill in the `Path`: To do so, we click on it and select `number_of_instances.fish`. Finally, we pick `Integer` as a data type. The configured custom metadata should look like this: .. figure:: ../../tutorials_source/platform/images/custom_metadata_configuration_aquarium.png :align: center :alt: Custom metadata configuration for number of fish Completed configuration for the custom metadata "Number of Fish". To verify the configuration works correctly, we can head to the `Explore` screen and sort our dataset by the `Number of Fish`. If we sort in descending order we see that images with many fish are shown first. This verifies that the metadata is configured properly. Next, we head to the `Embedding` page. On the top right, we select `Color by property` and set it to `Number of Fish`. This will highlight clusters of similar images with many fish on them: .. figure:: ../../tutorials_source/platform/images/custom_metadata_scatter_plot.png :align: center :alt: Custom metadata scatter plot Scatter plot highlighting clusters of similar images with many fish on them (light green). Rebalancing ---------------- As we have seen earlier in this tutorial, the aquarium dataset is heavily imbalanced. The scatter plot also tells us that the bulk of the fish instances in the dataset comes from a few, similar images. We want to rebalance the dataset by only keeping a diverse subset of these images. For this, we start by creating a new tag consisting only of images with a lot of fish in them. We do so, by shift-clicking in the scatter plot and drawing a circle around the clusters of interest. We call the tag `Fish`. .. figure:: ../../tutorials_source/platform/images/custom_metadata_scatter_plot_with_tag.png :align: center :alt: Custom metadata scatter plot (fish tag) Scatter plot of the tag we named "Fish". Now, we can use CORESET selection strategy to diversify this tag and create the tag `FewerFish` with only 10 remaining images. See :ref:`lightly-tutorial-sunflowers` for more information on selection strategies". Lastly, all we need to do in order to get the balanced dataset is merge the `FewerFish` tag with the remainder of the dataset. For this we can use `tag arithmetics`: 1. We open the tag tree by clicking on the three dots in the navigation bar and unravel it. 2. We create a new tag which is the inverse of the `Fish` tag. We start by left-clicking on `initial-tag` and shift-clicking on the `Fish` tag. The tag arithmetics menu should pop up. We select `difference`, put in the name `NoFish` and hit enter. 3. We create the final dataset by taking the union of the `NoFish` and the `FewerFish` tag. In the end, the tag tree should look like this: .. figure:: ../../tutorials_source/platform/images/final_tag_tree.png :align: center :alt: Final tag tree. The final tag tree with the tags `Fish`, `FewerFish`, `NoFish`, and `final-tag`. Now we can use the balanced dataset to train our machine learning model. We can easily download the data from the `Download` page. """
# Name : Shubham Sapkal Roll No. : 2012118 # Q11. Write a Python script to add a key to a dictionary. # Sample Dictionary : {0: 10, 1: 20} # Expected Result : {0: 10, 1: 20, 2: 30} Dictionary = {0:10, 1:20} print(Dictionary) Dictionary.update({2:30}) print(Dictionary)
dictionary = {0: 10, 1: 20} print(Dictionary) Dictionary.update({2: 30}) print(Dictionary)
def generate_permutation(string, start, end, results): # safe case if len(string) == 0: return if start == end - 1: if string not in results: results.append("".join(string)) else: for current in range(start, end): string[start], string[current] = string[current], string[start] if "".join(string) not in results: generate_permutation(string, start + 1, end, results) string[start], string[current] = string[current], string[start] t = int(input()) for i in range(t): st = str(input()) end = len(st) results = list() result = generate_permutation(list(st), 0, end, results) results.sort() print(" ".join(results))
def generate_permutation(string, start, end, results): if len(string) == 0: return if start == end - 1: if string not in results: results.append(''.join(string)) else: for current in range(start, end): (string[start], string[current]) = (string[current], string[start]) if ''.join(string) not in results: generate_permutation(string, start + 1, end, results) (string[start], string[current]) = (string[current], string[start]) t = int(input()) for i in range(t): st = str(input()) end = len(st) results = list() result = generate_permutation(list(st), 0, end, results) results.sort() print(' '.join(results))
movies = list() def menu(): user_input = input("Please enter 'a' to add a movie, enter 'l' to see the list of available movies, enter 'f' to find a movie from the list, enter 'q' to quit application: ").lower() while user_input != "q": if user_input in ['a', 'add']: add_movie() elif user_input in ['l', 'list']: show_movies(movies) elif user_input in ['f', 'find']: find_movie() else: print("Command was not found. Use one of the following commands: 'a', 'l', 'f', 'q'") user_input = input("\nPlease enter 'a' to add a movie, enter 'l' to see the list of available movies, enter 'f' to find a movie from the list, enter 'q' to quit application: ").lower() user_input = user_input.lower() if user_input == "q": print("Thank you for using app. Quiting program...") def add_movie(): title = input("Please give us title of the movie: ") director = input("Please give us who was the director of the movie: ") genre = input("Please give us genre of the movie: ").lower() year= int(input("Please give us the year in which movie was produced (only numbers are accepted): ")) movie = { 'title': title, 'director': director, 'genre': genre, 'year': year } movies.append(movie) print(f"The following movie '{movie['title']}' was added to your movies list.") def show_movies(movies_list): if not movies_list: print('There are no movies in the list :(') else: for i, movie in enumerate(movies_list): print(f"\n{i+1} - title: {movie['title']}, director: {movie['director']}, year: {movie['year']};") def find_movie(): find_by = input("What property of the movie are you looking for (title, director, year, genre)? ").lower() looking_for = input("What are you searching for? ") if find_by == 'year' and looking_for.isdigit(): looking_for = int(looking_for) found_movies = find_by_attribute(movies, looking_for, lambda x: x[find_by]) if not found_movies: print('There are no movies in the list :(') else: show_movies(found_movies) def find_by_attribute(items, expected, finder): found = list() for i in items: if finder(i) == expected: found.append(i) return found if __name__ == '__main__': menu()
movies = list() def menu(): user_input = input("Please enter 'a' to add a movie, enter 'l' to see the list of available movies, enter 'f' to find a movie from the list, enter 'q' to quit application: ").lower() while user_input != 'q': if user_input in ['a', 'add']: add_movie() elif user_input in ['l', 'list']: show_movies(movies) elif user_input in ['f', 'find']: find_movie() else: print("Command was not found. Use one of the following commands: 'a', 'l', 'f', 'q'") user_input = input("\nPlease enter 'a' to add a movie, enter 'l' to see the list of available movies, enter 'f' to find a movie from the list, enter 'q' to quit application: ").lower() user_input = user_input.lower() if user_input == 'q': print('Thank you for using app. Quiting program...') def add_movie(): title = input('Please give us title of the movie: ') director = input('Please give us who was the director of the movie: ') genre = input('Please give us genre of the movie: ').lower() year = int(input('Please give us the year in which movie was produced (only numbers are accepted): ')) movie = {'title': title, 'director': director, 'genre': genre, 'year': year} movies.append(movie) print(f"The following movie '{movie['title']}' was added to your movies list.") def show_movies(movies_list): if not movies_list: print('There are no movies in the list :(') else: for (i, movie) in enumerate(movies_list): print(f"\n{i + 1} - title: {movie['title']}, director: {movie['director']}, year: {movie['year']};") def find_movie(): find_by = input('What property of the movie are you looking for (title, director, year, genre)? ').lower() looking_for = input('What are you searching for? ') if find_by == 'year' and looking_for.isdigit(): looking_for = int(looking_for) found_movies = find_by_attribute(movies, looking_for, lambda x: x[find_by]) if not found_movies: print('There are no movies in the list :(') else: show_movies(found_movies) def find_by_attribute(items, expected, finder): found = list() for i in items: if finder(i) == expected: found.append(i) return found if __name__ == '__main__': menu()
print('Lab Exercise 05') # LAB EXERCISE 05 # The following 4 problems will introduce you to working with dictionaries. # If a problem # includes a setup section: Do not modify, delete or otherwise ignore the setup # code. # You will save lists and dictionaries to required variables. These variables will be graded by autograder after your submission. # Print statements have been provided for you to debug the code. You can uncomment them to see the results # PROBLEM 1 (5 Points) # In this problem you will demonstrate your understanding to # 1) Work with dictionaries # 2) Work with lists # 3) Manipulating data using dictionaries # 4) Converting the values of dictionaries to lists # Problem 01 SETUP - We provide you with a dictionary to start the lab problems fruits = {'apple': 10, 'banana': 20, 'strawberry': 6, 'orange' : 9} # Problem 01 END SETUP # BEGIN PROBLEM 1 SOLUTION # Save the values of the dictionary fruits into a list 'num_fruits' # The desired answer is [10, 20, 6, 9] # Hint: You can do this by calling the values of the dictionary num_fruits = [] # END PROBLEM 1 SOLUTION print(f"\nProblem 1: num_fruits = {num_fruits}") # PROBLEM 2 (5 Points) # In this problem, you will demonstrate your undestanding in # 1) Iterating through the dictionary # 2) Adding the values of each pair # 3) Saving tha value to a variable # Problem 02 SETUP - We provide you with a variable to start the problem sum_fruits = 0 # Problem 02 END SETUP # BEGIN PROBLEM 2 SOLUTION # Find the sum of the values of the fruits dictionary. Do not use the list num_fruits. Save to the variable sum_fruits # Iterate through each key-value pair in the dictionary and add the numbers # Save the sum of the numbers to the variable sum_fruits # END PROBLEM 2 SOLUTION print(f"\nProblem 2: sum_fruits = {sum_fruits}") # PROBLEM 3 (5 Points) # In this problem you will demonstrate your understanding of # 1) Working with dictionary # 2) Working with the values # 3) Finding the largest value # Problem 03 SETUP - We provide you with a variable to start the problem max_fruits = 0 # Problem 03 END SETUP # BEGIN PROBLEM 3 SOLUTION # Find the largest value in the fruits dictionary. Do not use the list num_fruits and then save to the variable max_fruits # Hint : You can use some parts of problem 2 # Iterate through each key-value pair in the dictionary named fruits # Work with values # Save to a variable # END PROBLEM 3 SOLUTION print(f"\nProblem 3: max_fruits = {max_fruits}") # PROBLEM 4 (5 Points) # In this problem you will demonstrate your understanding of # 1) Creating a new dictionary using an existing one # 2) Iterating through a dictionary # 3) Working with values # 4) Connecting the keys based on value # Problem 04 SETUP - We provide you with a variable to start the problem new_dict = {} # Problem 04 END SETUP # BEGIN PROBLEM 4 SOLUTION # Create a new dictionary using the fruits dictionary. Save the key value pairs which has a value of more than 6 to the new dictionary named 'new_dict' # Iterate through the dictionary fruits # Use if statement to check if the value is greater than 6 # Add the pair to the new dictionary # END PROBLEM 4 SOLUTION print(f"\nProblem 4: new_dict = {new_dict}\n") # END LAB EXERCISE
print('Lab Exercise 05') fruits = {'apple': 10, 'banana': 20, 'strawberry': 6, 'orange': 9} num_fruits = [] print(f'\nProblem 1: num_fruits = {num_fruits}') sum_fruits = 0 print(f'\nProblem 2: sum_fruits = {sum_fruits}') max_fruits = 0 print(f'\nProblem 3: max_fruits = {max_fruits}') new_dict = {} print(f'\nProblem 4: new_dict = {new_dict}\n')
def print_info(): print('Second module') print(f'From second_modules: {sum([1, 2, 3])}')
def print_info(): print('Second module') print(f'From second_modules: {sum([1, 2, 3])}')
n, x = map(int, input().split()) scores = list() for _ in range(x): score = map(float, input().split()) scores.append(score) for i in zip(*scores): print(sum(i)/x)
(n, x) = map(int, input().split()) scores = list() for _ in range(x): score = map(float, input().split()) scores.append(score) for i in zip(*scores): print(sum(i) / x)
pkgname = "bsddiff" pkgver = "0.99.0" pkgrel = 0 build_style = "meson" hostmakedepends = ["meson"] pkgdesc = "Alternative to GNU diffutils from FreeBSD" maintainer = "q66 <q66@chimera-linux.org>" license = "BSD-2-Clause" url = "https://github.com/chimera-linux/bsdutils" source = f"https://github.com/chimera-linux/{pkgname}/archive/refs/tags/v{pkgver}.tar.gz" sha256 = "9505436bc26b7a9ba7efed7e67194f1fc21ff3b3b4c968277c96d3da25676ca1" # no test suite options = ["bootstrap", "!check"]
pkgname = 'bsddiff' pkgver = '0.99.0' pkgrel = 0 build_style = 'meson' hostmakedepends = ['meson'] pkgdesc = 'Alternative to GNU diffutils from FreeBSD' maintainer = 'q66 <q66@chimera-linux.org>' license = 'BSD-2-Clause' url = 'https://github.com/chimera-linux/bsdutils' source = f'https://github.com/chimera-linux/{pkgname}/archive/refs/tags/v{pkgver}.tar.gz' sha256 = '9505436bc26b7a9ba7efed7e67194f1fc21ff3b3b4c968277c96d3da25676ca1' options = ['bootstrap', '!check']
#!/usr/bin/env python # coding: utf-8 # In[ ]: #------------------------------------------------------------ #------------------------For Loops--------------------------- #------------------------------------------------------------ # In[ ]: #looping through a list fruits = ["apple", "banana", "cherry"] for x in fruits: print(x) #looping through a string for x in "banana": print(x) # In[4]: #Working with dictionaries (this is the typical format for working with JSON) cars = { "colour": [ "blue", "yellow", "orange" ], "size": [ "sedan", "suv", "van" ] } #looking through keys: for x in cars["size"][0]: for i in x: print(i) # In[25]: #looping through values for x in cars["colour"]: print(x) # In[5]: #looping through characters within values for value in cars["size"][1][0]: for letter in value: print(letter) # In[ ]: #Else with For loops # In[9]: for x in range(6): print(x) else: print("Finally finished!") # In[ ]: #Nested For loops # In[8]: colours = ["red", "yellow", "green"] fruits = ["apple", "banana", "guava"] for x in colours: for y in fruits: print (x,y) # In[ ]: #------------------------------------------------------------ #------------------------While Loops------------------------- #------------------------------------------------------------ # In[9]: i = 1 while i < 6: print(i) i += 1 # In[14]: i = 1 while i < 6: print(i) i += 1 else: print("i is no longer less than 6") # In[ ]: #------------------------------------------------------------ #------------------------Break------------------------------- #------------------------------------------------------------ # In[10]: fruits = ["apple", "banana", "cherry"] for x in fruits: print(x) if x == "as": break # In[ ]: fruits = ["apple", "banana", "cherry"] for x in fruits: if x == "banana": break print(x) # In[12]: i = 0 while i < 6: i += 1 if i == 3: break print(i) # In[13]: cars2 = { "colour": [ "blue", "yellow", "orange" ], "size": [ "sedan", "suv", "van" ] } len(cars) for x in cars2: for j in x: if j == "s": break print(j) # In[ ]:
fruits = ['apple', 'banana', 'cherry'] for x in fruits: print(x) for x in 'banana': print(x) cars = {'colour': ['blue', 'yellow', 'orange'], 'size': ['sedan', 'suv', 'van']} for x in cars['size'][0]: for i in x: print(i) for x in cars['colour']: print(x) for value in cars['size'][1][0]: for letter in value: print(letter) for x in range(6): print(x) else: print('Finally finished!') colours = ['red', 'yellow', 'green'] fruits = ['apple', 'banana', 'guava'] for x in colours: for y in fruits: print(x, y) i = 1 while i < 6: print(i) i += 1 i = 1 while i < 6: print(i) i += 1 else: print('i is no longer less than 6') fruits = ['apple', 'banana', 'cherry'] for x in fruits: print(x) if x == 'as': break fruits = ['apple', 'banana', 'cherry'] for x in fruits: if x == 'banana': break print(x) i = 0 while i < 6: i += 1 if i == 3: break print(i) cars2 = {'colour': ['blue', 'yellow', 'orange'], 'size': ['sedan', 'suv', 'van']} len(cars) for x in cars2: for j in x: if j == 's': break print(j)
#!/usr/bin/python3 # __init__.py # Date: 15/09/2021 # Author: Eugeniu Costetchi # Email: costezki.eugen@gmail.com """ """
""" """
def missing_element(arr, sub): for i in arr: if i not in sub: return i def missing_element_II(arr, sub): return sum(arr)-sum(sub) def missing_element_III(arr, sub): arr.sort() sub.sort() for i in range(len(arr)): if arr[i] != sub[i]: return arr[i] print(missing_element([11, 44, 55, 90, 1, 90], [44, 1, 90, 11])) print(missing_element_II([11, 44, 55, 90, 1], [44, 1, 90, 11])) print(missing_element_III([11, 44, 55, 90, 1], [44, 1, 90, 11]))
def missing_element(arr, sub): for i in arr: if i not in sub: return i def missing_element_ii(arr, sub): return sum(arr) - sum(sub) def missing_element_iii(arr, sub): arr.sort() sub.sort() for i in range(len(arr)): if arr[i] != sub[i]: return arr[i] print(missing_element([11, 44, 55, 90, 1, 90], [44, 1, 90, 11])) print(missing_element_ii([11, 44, 55, 90, 1], [44, 1, 90, 11])) print(missing_element_iii([11, 44, 55, 90, 1], [44, 1, 90, 11]))
# # Config Settings Class # class ConfigSettings: """ Class to encapsulate config settings """ def __init__(self): """ class constructor """ self.logfile_save_location = '' self.logfile_file_name = '' self.logfile_date_stamp_file_name = True self.logfile_time_stamp_file_name = True self.sccs_check_in_message = '' self.version_history_message = '' self.version_history_clear_history = ''
class Configsettings: """ Class to encapsulate config settings """ def __init__(self): """ class constructor """ self.logfile_save_location = '' self.logfile_file_name = '' self.logfile_date_stamp_file_name = True self.logfile_time_stamp_file_name = True self.sccs_check_in_message = '' self.version_history_message = '' self.version_history_clear_history = ''
"""Common tooling exceptions. Store them in this central place to avoid circular imports """ class DoozerFatalError(Exception): """A broad exception for errors during Brew CRUD operations""" pass class BrewBuildException(Exception): """A broad exception for errors during Brew CRUD operations""" pass class ErrataToolUnauthenticatedException(Exception): """You were not authenticated when accessing the Errata Tool API""" pass class ErrataToolUnauthorizedException(Exception): """You were not authorized to make a request to the Errata Tool API""" pass class ErrataToolError(Exception): """General problem interacting with the Errata Tool""" pass
"""Common tooling exceptions. Store them in this central place to avoid circular imports """ class Doozerfatalerror(Exception): """A broad exception for errors during Brew CRUD operations""" pass class Brewbuildexception(Exception): """A broad exception for errors during Brew CRUD operations""" pass class Erratatoolunauthenticatedexception(Exception): """You were not authenticated when accessing the Errata Tool API""" pass class Erratatoolunauthorizedexception(Exception): """You were not authorized to make a request to the Errata Tool API""" pass class Erratatoolerror(Exception): """General problem interacting with the Errata Tool""" pass