content stringlengths 7 1.05M | fixed_cases stringlengths 1 1.28M |
|---|---|
class Solution:
def findKthPositive(self, arr: List[int], k: int) -> int:
idx = 0
for nxt in itertools.count(1):
if idx < len(arr) and arr[idx] == nxt:
idx += 1
else:
k -= 1
if k == 0:
return nxt
| class Solution:
def find_kth_positive(self, arr: List[int], k: int) -> int:
idx = 0
for nxt in itertools.count(1):
if idx < len(arr) and arr[idx] == nxt:
idx += 1
else:
k -= 1
if k == 0:
return nxt |
# AUTOGENERATED BY NBDEV! DO NOT EDIT!
__all__ = ["index", "modules", "custom_doc_links", "git_url"]
index = {"get_nc_dss": "02_data.news_commentary.ipynb",
"get_tatoeba_dss": "02_data.tatoeba.ipynb",
"generate_from_strs": "03a_models.patch.ipynb",
"gen_attention_mask": "03c_models.bert2gpt2.ipynb",
"BertEncoder": "03c_models.bert2gpt2.ipynb",
"GPT2Decoder": "03c_models.bert2gpt2.ipynb",
"Bert2GPT2": "03c_models.bert2gpt2.ipynb",
"GeneratedBert2GPT2": "03c_models.bert2gpt2.ipynb",
"generate_from_ids": "03c_models.tran2tran.ipynb",
"GRUEncoder": "03c_models.gru2gru.ipynb",
"GRUDecoder": "03c_models.gru2gru.ipynb",
"GRU2GRU": "03c_models.gru2gru.ipynb",
"GeneratedGRU2GRU": "03c_models.gru2gru.ipynb",
"QRNNEncoder": "03c_models.qrnn2qrnn.ipynb",
"QRNNDecoder": "03c_models.qrnn2qrnn.ipynb",
"CrossAttnQRNNLayer": "03c_models.qrnn2qrnn.ipynb",
"CrossAttnQRNN": "03c_models.qrnn2qrnn.ipynb",
"CrossAttnQRNNDecoder": "03c_models.qrnn2qrnn.ipynb",
"QRNN2QRNN": "03c_models.qrnn2qrnn.ipynb",
"QRNN2AttnQRNN": "03c_models.qrnn2qrnn.ipynb",
"GeneratedQRNN2QRNN": "03c_models.qrnn2qrnn.ipynb",
"GeneratedQRNN2AttnQRNN": "03c_models.qrnn2qrnn.ipynb",
"QRNN2QRNNCallback": "03c_models.qrnn2qrnn.ipynb",
"WPEmbed": "03c_models.tran2tran.ipynb",
"TranEncoder": "03c_models.tran2tran.ipynb",
"TranDecoder": "03c_models.tran2tran.ipynb",
"Tran2Tran": "03c_models.tran2tran.ipynb",
"GeneratedTran2Tran": "03c_models.tran2tran.ipynb",
"compute_bleu": "04_metrics.ipynb"}
modules = ["data/news_commentary.py",
"data/tatoeba.py",
"models/patch.py",
"models/bert2gpt2.py",
"models/gru2gru.py",
"models/qrnn2qrnn.py",
"models/tran2tran.py",
"metrics.py"]
doc_url = "https://cwza.github.io/nmt_try/"
git_url = "https://github.com/cwza/nmt_try/tree/master/"
def custom_doc_links(name): return None
| __all__ = ['index', 'modules', 'custom_doc_links', 'git_url']
index = {'get_nc_dss': '02_data.news_commentary.ipynb', 'get_tatoeba_dss': '02_data.tatoeba.ipynb', 'generate_from_strs': '03a_models.patch.ipynb', 'gen_attention_mask': '03c_models.bert2gpt2.ipynb', 'BertEncoder': '03c_models.bert2gpt2.ipynb', 'GPT2Decoder': '03c_models.bert2gpt2.ipynb', 'Bert2GPT2': '03c_models.bert2gpt2.ipynb', 'GeneratedBert2GPT2': '03c_models.bert2gpt2.ipynb', 'generate_from_ids': '03c_models.tran2tran.ipynb', 'GRUEncoder': '03c_models.gru2gru.ipynb', 'GRUDecoder': '03c_models.gru2gru.ipynb', 'GRU2GRU': '03c_models.gru2gru.ipynb', 'GeneratedGRU2GRU': '03c_models.gru2gru.ipynb', 'QRNNEncoder': '03c_models.qrnn2qrnn.ipynb', 'QRNNDecoder': '03c_models.qrnn2qrnn.ipynb', 'CrossAttnQRNNLayer': '03c_models.qrnn2qrnn.ipynb', 'CrossAttnQRNN': '03c_models.qrnn2qrnn.ipynb', 'CrossAttnQRNNDecoder': '03c_models.qrnn2qrnn.ipynb', 'QRNN2QRNN': '03c_models.qrnn2qrnn.ipynb', 'QRNN2AttnQRNN': '03c_models.qrnn2qrnn.ipynb', 'GeneratedQRNN2QRNN': '03c_models.qrnn2qrnn.ipynb', 'GeneratedQRNN2AttnQRNN': '03c_models.qrnn2qrnn.ipynb', 'QRNN2QRNNCallback': '03c_models.qrnn2qrnn.ipynb', 'WPEmbed': '03c_models.tran2tran.ipynb', 'TranEncoder': '03c_models.tran2tran.ipynb', 'TranDecoder': '03c_models.tran2tran.ipynb', 'Tran2Tran': '03c_models.tran2tran.ipynb', 'GeneratedTran2Tran': '03c_models.tran2tran.ipynb', 'compute_bleu': '04_metrics.ipynb'}
modules = ['data/news_commentary.py', 'data/tatoeba.py', 'models/patch.py', 'models/bert2gpt2.py', 'models/gru2gru.py', 'models/qrnn2qrnn.py', 'models/tran2tran.py', 'metrics.py']
doc_url = 'https://cwza.github.io/nmt_try/'
git_url = 'https://github.com/cwza/nmt_try/tree/master/'
def custom_doc_links(name):
return None |
some_string = input()
for letter in some_string:
print(letter * 2, end="")
| some_string = input()
for letter in some_string:
print(letter * 2, end='') |
# This is an input class. Do not edit.
class LinkedList:
def __init__(self, value):
self.value = value
self.next = None
# O(n) time | O(1) space - where n is the number of nodes in the Linked List
def removeDuplicatesFromLinkedList(linkedList):
currentNode = linkedList
while currentNode is not None:
nextDistinctNode = currentNode.next
while nextDistinctNode is not None and nextDistinctNode.value == currentNode.value:
nextDistinctNode = nextDistinctNode.next
currentNode.next = nextDistinctNode
currentNode = nextDistinctNode
return linkedList | class Linkedlist:
def __init__(self, value):
self.value = value
self.next = None
def remove_duplicates_from_linked_list(linkedList):
current_node = linkedList
while currentNode is not None:
next_distinct_node = currentNode.next
while nextDistinctNode is not None and nextDistinctNode.value == currentNode.value:
next_distinct_node = nextDistinctNode.next
currentNode.next = nextDistinctNode
current_node = nextDistinctNode
return linkedList |
number = int(input())
print(number)
print(type(number))
# repl -> repeat evaluate print loop
| number = int(input())
print(number)
print(type(number)) |
x=1
y=2
z=3
# # 1s or less
# diff_low_t=35
# diff_high_t=255
# target_gray = cv2.cvtColor(anh_phat_hien_crop, cv2.COLOR_BGR2GRAY)
# self.previewImage('a', target_gray)
# bg_gray = cv2.cvtColor(anh_nen_crop, cv2.COLOR_BGR2GRAY)
# self.previewImage('a', bg_gray)
# diff_gray = cv2.absdiff(target_gray,bg_gray)
# self.previewImage('a', diff_gray)
# diff_gray_blur = cv2.GaussianBlur(diff_gray,(5,5),0)
# self.previewImage('a', diff_gray_blur)
# ret,diff_tresh = cv2.threshold(diff_gray_blur,diff_low_t,diff_high_t,cv2.THRESH_BINARY)
# self.previewImage('a', diff_tresh)
# diff = cv2.GaussianBlur(diff_tresh,(5,5),0)
# self.previewImage('a', diff)
# contours, hierarchy = cv2.findContours(diff, cv2.RETR_TREE,cv2.CHAIN_APPROX_SIMPLE)
# # 1s
# bg_low_t=255
# bg_high_t=255
# img_low_t=60
# img_high_t=255
# background_img_gray=cv2.cvtColor(anh_nen_crop, cv2.COLOR_BGR2GRAY)
# self.previewImage("1 Background Gray",background_img_gray)
# background_img_blur = cv2.GaussianBlur(background_img_gray,(5,5),0)
# self.previewImage("2 Background Blur Gray",background_img_blur)
# ret,background_img_tresh = cv2.threshold(background_img_blur,bg_low_t,bg_high_t,cv2.THRESH_BINARY_INV)
# self.previewImage("3 Background Treshold",background_img_tresh)
# img_gray=cv2.cvtColor(anh_phat_hien_crop, cv2.COLOR_BGR2GRAY)
# self.previewImage("4 Image Gray",img_gray)
# img_blur = cv2.GaussianBlur(img_gray,(5,5),0)
# self.previewImage("5 Image Blur Gray",img_blur)
# ret,img_tresh = cv2.threshold(img_blur,img_low_t,img_high_t,cv2.THRESH_BINARY_INV)
# self.previewImage("6 Image Treshold",img_tresh)
# diff=cv2.absdiff(background_img_tresh,img_tresh)
# self.previewImage("7 Diff",diff)
# contours, hierarchy = cv2.findContours(diff, cv2.RETR_TREE,cv2.CHAIN_APPROX_SIMPLE)
# # 1.3s
# blur_bg = cv2.GaussianBlur(anh_nen_crop, (21, 21), 0)
# blur_target = cv2.GaussianBlur(anh_phat_hien_crop, (21, 21), 0)
# self.previewImage('anh_mo', blur_bg)
# self.previewImage('anh_phat_hien_mo', blur_target)
# gray_target = cv2.cvtColor(blur_target,cv2.COLOR_BGR2GRAY)
# gray_bg = cv2.cvtColor(blur_bg,cv2.COLOR_BGR2GRAY)
# frameDelta = cv2.absdiff(blur_bg,blur_target)
# self.previewImage('khac_biet', frameDelta)
# gray_result = cv2.cvtColor(frameDelta, cv2.COLOR_BGR2GRAY)
# self.previewImage('den_trang', gray_result)
# _, threshold = cv2.threshold(gray_result, 40, 255, cv2.THRESH_BINARY)
# thresh = cv2.dilate(threshold, None, iterations=2)
# self.previewImage('contour', thresh)
# contours,_ = cv2.findContours(thresh, cv2.RETR_EXTERNAL, cv2.CHAIN_APPROX_SIMPLE)
# 1s or less
# diff_low_t=35
# diff_high_t=255
# target_gray = cv2.cvtColor(crop_phat_hien, cv2.COLOR_BGR2GRAY)
# previewImage('a', target_gray)
# bg_gray = cv2.cvtColor(crop_nen, cv2.COLOR_BGR2GRAY)
# previewImage('a', bg_gray)
# diff_gray = cv2.absdiff(target_gray,bg_gray)
# previewImage('a', diff_gray)
# diff_gray_blur = cv2.GaussianBlur(diff_gray,(5,5),0)
# previewImage('a', diff_gray_blur)
# ret,diff_tresh = cv2.threshold(diff_gray_blur,diff_low_t,diff_high_t,cv2.THRESH_BINARY)
# previewImage('a', diff_tresh)
# diff = cv2.GaussianBlur(diff_tresh,(5,5),0)
# previewImage('a', diff)
# contours, hierarchy = cv2.findContours(diff, cv2.RETR_EXTERNAL,cv2.CHAIN_APPROX_SIMPLE)
# # contours, hierarchy = cv2.findContours(diff, cv2.RETR_TREE,cv2.CHAIN_APPROX_SIMPLE)
# 1s
# bg_low_t=255
# bg_high_t=255
# img_low_t=60
# img_high_t=255
# background_img_gray=cv2.cvtColor(crop_nen , cv2.COLOR_BGR2GRAY)
# previewImage("1 Background Gray",background_img_gray)
# background_img_blur = cv2.GaussianBlur(background_img_gray,(5,5),0)
# previewImage("2 Background Blur Gray",background_img_blur)
# ret,background_img_tresh = cv2.threshold(background_img_blur,bg_low_t,bg_high_t,cv2.THRESH_BINARY_INV)
# previewImage("3 Background Treshold",background_img_tresh)
# img_gray=cv2.cvtColor(crop_phat_hien, cv2.COLOR_BGR2GRAY)
# previewImage("4 Image Gray",img_gray)
# img_blur = cv2.GaussianBlur(img_gray,(5,5),0)
# previewImage("5 Image Blur Gray",img_blur)
# ret,img_tresh = cv2.threshold(img_blur,img_low_t,img_high_t,cv2.THRESH_BINARY_INV)
# previewImage("6 Image Treshold",img_tresh)
# diff=cv2.absdiff(background_img_tresh,img_tresh)
# previewImage("7 Diff",diff)
# contours, hierarchy = cv2.findContours(diff, cv2.RETR_EXTERNAL,cv2.CHAIN_APPROX_SIMPLE)
# 1.3s
# blur_bg = cv2.GaussianBlur(crop_nen, (21, 21), 0)
# blur_target = cv2.GaussianBlur(crop_phat_hien, (21, 21), 0)
# previewImage('anh_mo', blur_bg)
# previewImage('anh_phat_hien_mo', blur_target)
# gray_target = cv2.cvtColor(blur_target,cv2.COLOR_BGR2GRAY)
# gray_bg = cv2.cvtColor(blur_bg,cv2.COLOR_BGR2GRAY)
# frameDelta = cv2.absdiff(blur_bg,blur_target)
# previewImage('khac_biet', frameDelta)
# gray_result = cv2.cvtColor(frameDelta, cv2.COLOR_BGR2GRAY)
# previewImage('den_trang', gray_result)
# _, threshold = cv2.threshold(gray_result, 40, 255, cv2.THRESH_BINARY)
# thresh = cv2.dilate(threshold, None, iterations=2)
# previewImage('contour', thresh)
# contours,_ = cv2.findContours(thresh, cv2.RETR_EXTERNAL, cv2.CHAIN_APPROX_SIMPLE) | x = 1
y = 2
z = 3 |
'''
enhanced_multi_table.py
Multiplication table printer: Enter the number and the number
of multiples to be printed
'''
def multi_table(a, n):
for i in range(1, n+1):
print('{0} x {1} = {2}'.format(a, i, a*i))
if __name__ == '__main__':
try:
a = float(input('Enter a number: '))
n = float(input('Enter the number of multiples: '))
if not n.is_integer() or n < 0:
print('The number of multiples should be a positive integer')
else:
multi_table(a, int(n))
except ValueError:
print('You entered an invalid input')
| """
enhanced_multi_table.py
Multiplication table printer: Enter the number and the number
of multiples to be printed
"""
def multi_table(a, n):
for i in range(1, n + 1):
print('{0} x {1} = {2}'.format(a, i, a * i))
if __name__ == '__main__':
try:
a = float(input('Enter a number: '))
n = float(input('Enter the number of multiples: '))
if not n.is_integer() or n < 0:
print('The number of multiples should be a positive integer')
else:
multi_table(a, int(n))
except ValueError:
print('You entered an invalid input') |
def fibonacci(n: int):
fibs = []
for i in range(n):
if i < 2:
fibs.append(i)
else:
fibs.append(fibs[i - 1] + fibs[i - 2])
return fibs
if __name__ == "__main__":
ans = fibonacci(15)
print(ans)
| def fibonacci(n: int):
fibs = []
for i in range(n):
if i < 2:
fibs.append(i)
else:
fibs.append(fibs[i - 1] + fibs[i - 2])
return fibs
if __name__ == '__main__':
ans = fibonacci(15)
print(ans) |
FIELD = "field"
FOREST = "forest"
GARDEN = "garden"
ORCHARD = "orchard"
PASTURE = "pasture"
SILVOPASTURE = "silvopasture"
TYPES = [
("F", FIELD),
("W", FOREST),
("G", GARDEN),
("O", ORCHARD),
("P", PASTURE),
("S", SILVOPASTURE)
]
| field = 'field'
forest = 'forest'
garden = 'garden'
orchard = 'orchard'
pasture = 'pasture'
silvopasture = 'silvopasture'
types = [('F', FIELD), ('W', FOREST), ('G', GARDEN), ('O', ORCHARD), ('P', PASTURE), ('S', SILVOPASTURE)] |
__all__ = ["fibo", "pi"]
def fibo(n):
return n if n < 2 else fibo(n - 1) + fibo(n - 2)
def pi(its):
sum = 0
for i in range(its):
sum += 1 / (i + 1) ** 2
return (6 * sum) ** 0.5
| __all__ = ['fibo', 'pi']
def fibo(n):
return n if n < 2 else fibo(n - 1) + fibo(n - 2)
def pi(its):
sum = 0
for i in range(its):
sum += 1 / (i + 1) ** 2
return (6 * sum) ** 0.5 |
'''
Problem:
For the numbers 1 to 100, print fizz if divisible by 3, bang if
divisible by 5.
'''
| """
Problem:
For the numbers 1 to 100, print fizz if divisible by 3, bang if
divisible by 5.
""" |
class Solution:
def breakPalindrome(self, palindrome: str) -> str:
if len(palindrome) == 1:
return ""
for char in palindrome[: len(palindrome) // 2]:
if char != "a":
return palindrome.replace(char, "a", 1)
return palindrome[:-1] + "b"
| class Solution:
def break_palindrome(self, palindrome: str) -> str:
if len(palindrome) == 1:
return ''
for char in palindrome[:len(palindrome) // 2]:
if char != 'a':
return palindrome.replace(char, 'a', 1)
return palindrome[:-1] + 'b' |
cntr = 0
with open('../data/css_comvoi/train.txt', 'r', encoding='utf-8') as f:
with open('../data/css10/newtrain.txt', 'w', encoding='utf-8') as f2:
for line in f:
if cntr % 4 != 3:
print(line.rstrip(), file=f2)
cntr += 1
| cntr = 0
with open('../data/css_comvoi/train.txt', 'r', encoding='utf-8') as f:
with open('../data/css10/newtrain.txt', 'w', encoding='utf-8') as f2:
for line in f:
if cntr % 4 != 3:
print(line.rstrip(), file=f2)
cntr += 1 |
Numbers = []
while True:
try:
V = float(input(''))
D = float(input(''))
R = D / 2
A = 3.14 * (R ** 2)
H = V / A
print('ALTURA = %0.2f' %H)
print('AREA = %0.2f' %A)
except EOFError:
break | numbers = []
while True:
try:
v = float(input(''))
d = float(input(''))
r = D / 2
a = 3.14 * R ** 2
h = V / A
print('ALTURA = %0.2f' % H)
print('AREA = %0.2f' % A)
except EOFError:
break |
i2 = input()
d2 = input()
s2 = input()
print(i+int(i2))
print(d+float(d2))
print(s + s2)
| i2 = input()
d2 = input()
s2 = input()
print(i + int(i2))
print(d + float(d2))
print(s + s2) |
def next_pws(pw):
while True:
idx = -1
while pw[idx] == 'z':
pw[idx] = 'a'
idx -= 1
pw[idx] = chr(ord(pw[idx]) + 1)
yield pw
has_increasing_straight = lambda pw_nums: (
any(a == b-1 == c-2 for a, b, c in zip(pw_nums, pw_nums[1:], pw_nums[2:])))
has_invalid_letters = lambda pw: any(l in pw for l in "iol")
has_two_pairs = lambda pw: len({a for a, b in zip(pw, pw[1:]) if a == b}) >= 2
def next_valid(pw):
yield from (''.join(pw) for pw in next_pws(list(pw)) if
has_increasing_straight(list(map(ord, pw))) and
not has_invalid_letters(pw) and
has_two_pairs(pw))
INPUT = "cqjxjnds"
valid_passwords = next_valid(INPUT)
print(next(valid_passwords))
print(next(valid_passwords))
| def next_pws(pw):
while True:
idx = -1
while pw[idx] == 'z':
pw[idx] = 'a'
idx -= 1
pw[idx] = chr(ord(pw[idx]) + 1)
yield pw
has_increasing_straight = lambda pw_nums: any((a == b - 1 == c - 2 for (a, b, c) in zip(pw_nums, pw_nums[1:], pw_nums[2:])))
has_invalid_letters = lambda pw: any((l in pw for l in 'iol'))
has_two_pairs = lambda pw: len({a for (a, b) in zip(pw, pw[1:]) if a == b}) >= 2
def next_valid(pw):
yield from (''.join(pw) for pw in next_pws(list(pw)) if has_increasing_straight(list(map(ord, pw))) and (not has_invalid_letters(pw)) and has_two_pairs(pw))
input = 'cqjxjnds'
valid_passwords = next_valid(INPUT)
print(next(valid_passwords))
print(next(valid_passwords)) |
# 1st solution
# O(n) time | O(n) space
class Solution:
def findJudge(self, n: int, trust: List[List[int]]) -> int:
table = [[0, 0] for _ in range(n + 1)]
for a, b in trust:
table[a][0] += 1
table[b][1] += 1
judges = []
for i in range(1, n + 1):
if table[i][0] == 0 and table[i][1] == n - 1:
judges.append(i)
if len(judges) == 1:
return judges[0]
else:
return -1
| class Solution:
def find_judge(self, n: int, trust: List[List[int]]) -> int:
table = [[0, 0] for _ in range(n + 1)]
for (a, b) in trust:
table[a][0] += 1
table[b][1] += 1
judges = []
for i in range(1, n + 1):
if table[i][0] == 0 and table[i][1] == n - 1:
judges.append(i)
if len(judges) == 1:
return judges[0]
else:
return -1 |
class Automaton:
# finals_states: finals states array
# transitions: tuples array (first, c, ends_array) first -> c -> endi,
# c is the transition character and endi belongs to ends array
def __init__(self, states, start_state, finals_states, transitions):
self.states = states
self.tags = [None] * states
self.items = [[] for _ in range(states)]
self.start_state = start_state
self.finals_states = finals_states
self.transitions = {}
self.universe = set()
for state, c, ends_array in transitions:
if(c != ''):
self.universe.add(c)
if(self.transitions.__contains__(state) == False):
self.transitions[state] = {}
if(self.transitions[state].__contains__(c) == False):
self.transitions[state][c] = []
self.transitions[state][c] += ends_array
def get_ends_array_by_state_c(self, state, c):
if(state >= self.states):
raise Exception("The state does not exist on the automaton")
if(self.transitions.__contains__(state) == False):
return []
if(self.transitions[state].__contains__(c)):
return self.transitions[state][c]
return []
def get_epsilon_transitions(self, state):
return self.get_ends_array_by_state_c(state, "")
def get_items(self, state):
return self.items[state]
def put_items(self, state, items):
if(items is None):
return
self.items[state] += items
def put_tag(self, state, tag):
if(self.tags[state] is None):
self.tags[state] = tag
elif(self.tags[state][0] > tag[0]):
self.tags[state] = tag
def get_tag(self, state):
return self.tags[state]
def is_final(self, state):
return state in self.finals_states
| class Automaton:
def __init__(self, states, start_state, finals_states, transitions):
self.states = states
self.tags = [None] * states
self.items = [[] for _ in range(states)]
self.start_state = start_state
self.finals_states = finals_states
self.transitions = {}
self.universe = set()
for (state, c, ends_array) in transitions:
if c != '':
self.universe.add(c)
if self.transitions.__contains__(state) == False:
self.transitions[state] = {}
if self.transitions[state].__contains__(c) == False:
self.transitions[state][c] = []
self.transitions[state][c] += ends_array
def get_ends_array_by_state_c(self, state, c):
if state >= self.states:
raise exception('The state does not exist on the automaton')
if self.transitions.__contains__(state) == False:
return []
if self.transitions[state].__contains__(c):
return self.transitions[state][c]
return []
def get_epsilon_transitions(self, state):
return self.get_ends_array_by_state_c(state, '')
def get_items(self, state):
return self.items[state]
def put_items(self, state, items):
if items is None:
return
self.items[state] += items
def put_tag(self, state, tag):
if self.tags[state] is None:
self.tags[state] = tag
elif self.tags[state][0] > tag[0]:
self.tags[state] = tag
def get_tag(self, state):
return self.tags[state]
def is_final(self, state):
return state in self.finals_states |
# Write a program that reads numbers from the user until a blank line is entered.
# Your program should display the average of all of the values entered by the user.
# Then the program should display all of the below average values, followed by all of the average values (if any),
# followed by all of the above average values.
# An appropriate label should be displayed before each list of values.
numList = [] # Contains all values entered by user
average = 0 # Will be used to calculate average
total = 0 # contains total of all values in numList
belowAverage = [] #Will be used to append below average values
averageVals = [] #Will be used to append average values
aboveAverage = [] #Will be used to append above average values
# GetNum function asks user input and only converts to int when an actual value entered
def GetNum():
userNum = (input("Please enter a number: "))
if userNum == "":
return userNum # Returns blank string
else:
userNum = int(userNum)
numList.append(userNum)
return userNum
# While loop that calls GetNum() function and calculates total and average when broken
while GetNum() != "":
GetNum()
total = sum(numList)
average = total // (len(numList))
# For loop to evaluate all values in numList and append them in appropriate lists
for x in numList:
if x == average:
averageVals.append(x)
elif x > average:
aboveAverage.append(x)
elif x < average:
belowAverage.append(x)
print(f"Total Average: {average}") # Prints total average
print(f"Below Average Values Entered : {belowAverage}") #Prints Below Average values
print(f"Average Values Entered : {averageVals}") #prints any value that is average from list
print(f"Above Average Values Entered : {aboveAverage}") #Prints above average values
| num_list = []
average = 0
total = 0
below_average = []
average_vals = []
above_average = []
def get_num():
user_num = input('Please enter a number: ')
if userNum == '':
return userNum
else:
user_num = int(userNum)
numList.append(userNum)
return userNum
while get_num() != '':
get_num()
total = sum(numList)
average = total // len(numList)
for x in numList:
if x == average:
averageVals.append(x)
elif x > average:
aboveAverage.append(x)
elif x < average:
belowAverage.append(x)
print(f'Total Average: {average}')
print(f'Below Average Values Entered : {belowAverage}')
print(f'Average Values Entered : {averageVals}')
print(f'Above Average Values Entered : {aboveAverage}') |
test = { 'name': 'q8_8',
'points': 1,
'suites': [ { 'cases': [ { 'code': ">>> # Please actually go on Piazza and look at the threads.;\n>>> # Looks like you didn't make a string.;\n>>> type(secret) == str\nTrue",
'hidden': False,
'locked': False},
{'code': '>>> len(secret) == 11\nTrue', 'hidden': False, 'locked': False}],
'scored': True,
'setup': '',
'teardown': '',
'type': 'doctest'}]}
| test = {'name': 'q8_8', 'points': 1, 'suites': [{'cases': [{'code': ">>> # Please actually go on Piazza and look at the threads.;\n>>> # Looks like you didn't make a string.;\n>>> type(secret) == str\nTrue", 'hidden': False, 'locked': False}, {'code': '>>> len(secret) == 11\nTrue', 'hidden': False, 'locked': False}], 'scored': True, 'setup': '', 'teardown': '', 'type': 'doctest'}]} |
class BaseETL:
def __init__(self, base_url, access_token, s3_bucket):
self.base_url = base_url
self.access_token = access_token
self.s3_bucket = s3_bucket
def files_to_submissions(self):
pass
def submit_metadata(self):
pass
| class Baseetl:
def __init__(self, base_url, access_token, s3_bucket):
self.base_url = base_url
self.access_token = access_token
self.s3_bucket = s3_bucket
def files_to_submissions(self):
pass
def submit_metadata(self):
pass |
num = int(input("Enter a number: "))
count = 0
i = 2
while (i <= num / 2):
if (num % i) == 0:
count = count + 1
break
i = i + 1
if (count == 0 and num != 1):
print(f" {num} is a prime number")
else:
print(f"{num} is not a prime number")
| num = int(input('Enter a number: '))
count = 0
i = 2
while i <= num / 2:
if num % i == 0:
count = count + 1
break
i = i + 1
if count == 0 and num != 1:
print(f' {num} is a prime number')
else:
print(f'{num} is not a prime number') |
yaw_kp = 0.47
yaw_setpoint = 0.0
roll_kp = 0.38
roll_setpoint = 0.0
pitch_kp = 0.32
pitch_setpoint = 0.0
range_kp = 0.09
range_setpoint = 0.0
horizontal_kp = 0.45
horizontal_setpoint = 0.0
vertical_kp = 0.18
vertical_setpoint = 0.0 | yaw_kp = 0.47
yaw_setpoint = 0.0
roll_kp = 0.38
roll_setpoint = 0.0
pitch_kp = 0.32
pitch_setpoint = 0.0
range_kp = 0.09
range_setpoint = 0.0
horizontal_kp = 0.45
horizontal_setpoint = 0.0
vertical_kp = 0.18
vertical_setpoint = 0.0 |
class ApiError(Exception):
def __init__(self, code, message):
self.code = code
self.message = message
def __repr__(self):
return self.__str__()
def __str__(self):
return repr(self.message)
| class Apierror(Exception):
def __init__(self, code, message):
self.code = code
self.message = message
def __repr__(self):
return self.__str__()
def __str__(self):
return repr(self.message) |
username = 'XXXXXXXXX' #your username
password = 'YYYYYYYYYYYYY' #your password
#Here, your username and pw are asked not to be intrusive, but just because ig hates
#other ways than the app to post pictures.
#So there is no official API Keys to use. Sorry for that.
| username = 'XXXXXXXXX'
password = 'YYYYYYYYYYYYY' |
input=str(input())
# print(len(input))
def getRes(input):
for i in range(0,len(input)):
# print("i=",input[i])
if(int(input[i])%8==0):
print("YES")
print(input[i])
return
for j in range(i+1,len(input)):
a=10*int(input[i])+int(input[j])
if(a%8==0):
print("YES")
print(a)
return
for k in range(j+1,len(input)):
# print("k=",input[k])
b=100*int(input[i])+10*int(input[j])+int(input[k])
if(b%8==0):
print("YES")
print(b)
return
print("NO")
getRes(input)
| input = str(input())
def get_res(input):
for i in range(0, len(input)):
if int(input[i]) % 8 == 0:
print('YES')
print(input[i])
return
for j in range(i + 1, len(input)):
a = 10 * int(input[i]) + int(input[j])
if a % 8 == 0:
print('YES')
print(a)
return
for k in range(j + 1, len(input)):
b = 100 * int(input[i]) + 10 * int(input[j]) + int(input[k])
if b % 8 == 0:
print('YES')
print(b)
return
print('NO')
get_res(input) |
__author__ = 'krasnykh'
class Film(object):
def __init__(self, name = "", aka = "", year = "", duration = "", rating = "", notes = "", text_languages_0 = "", subtitles = "", audio = "", video = "", country = "", genres = "", music = ""):
self.name = name
self.aka = aka
self.year = year
self.duration = duration
self.rating = rating
self.notes = notes
self.text_languages_0 = text_languages_0
self.subtitles = subtitles
self.audio = audio
self.video = video
self.country = country
self.genres = genres
self.music = music
@classmethod
def new_film(cls):
return cls(name = "Roxette", aka = "Swidish", year = "1985", duration = "90", rating = "9", notes = "This cool!", text_languages_0 = "English, Spanish.", subtitles = "No", audio = "Yes", video = "Mpg4", country = "Sweden", genres = "Music", music = "Roxette")
| __author__ = 'krasnykh'
class Film(object):
def __init__(self, name='', aka='', year='', duration='', rating='', notes='', text_languages_0='', subtitles='', audio='', video='', country='', genres='', music=''):
self.name = name
self.aka = aka
self.year = year
self.duration = duration
self.rating = rating
self.notes = notes
self.text_languages_0 = text_languages_0
self.subtitles = subtitles
self.audio = audio
self.video = video
self.country = country
self.genres = genres
self.music = music
@classmethod
def new_film(cls):
return cls(name='Roxette', aka='Swidish', year='1985', duration='90', rating='9', notes='This cool!', text_languages_0='English, Spanish.', subtitles='No', audio='Yes', video='Mpg4', country='Sweden', genres='Music', music='Roxette') |
#
# @lc app=leetcode id=590 lang=python3
#
# [590] N-ary Tree Postorder Traversal
#
# @lc code=start
# Definition for a Node.
class Node:
def __init__(self, val=None, children=None):
self.val = val
self.children = children
class Solution:
def postorder(self, root):
ls = []
def generator(root):
if not root:
return
for child in root.children:
generator(child)
ls.append(root.val)
generator(root)
return ls
# @lc code=end
| class Node:
def __init__(self, val=None, children=None):
self.val = val
self.children = children
class Solution:
def postorder(self, root):
ls = []
def generator(root):
if not root:
return
for child in root.children:
generator(child)
ls.append(root.val)
generator(root)
return ls |
def application(environ, start_response):
body = []
content_length = 0
for l in environ['wsgi.input'].__iter__():
body.append(l)
content_length += len(l)
start_response(
'200',
[
('Content-Length', str(content_length)),
('X-Lines-Count', str(len(body))),
],
)
return body
| def application(environ, start_response):
body = []
content_length = 0
for l in environ['wsgi.input'].__iter__():
body.append(l)
content_length += len(l)
start_response('200', [('Content-Length', str(content_length)), ('X-Lines-Count', str(len(body)))])
return body |
# automatically generated by the FlatBuffers compiler, do not modify
# namespace: flat
class GameMode(object):
Soccer = 0
Hoops = 1
Dropshot = 2
Hockey = 3
Rumble = 4
| class Gamemode(object):
soccer = 0
hoops = 1
dropshot = 2
hockey = 3
rumble = 4 |
class Solution:
def reverseBits(self, n: int) -> int:
res = 0
for _ in range(32):
tmp = n & 0x80000000
tmp = 1 if tmp else 0
n <<= 1
if tmp:
res += 2 ** _
print(bin(res))
return res
| class Solution:
def reverse_bits(self, n: int) -> int:
res = 0
for _ in range(32):
tmp = n & 2147483648
tmp = 1 if tmp else 0
n <<= 1
if tmp:
res += 2 ** _
print(bin(res))
return res |
class Hyperparameters():
def __init__(self):
self.IMAGESIZE = [30,30]
self.MEAN_REWARD_BOUND = 19.0
self.CHANNEL_NUM = 4
self.ACTION_SPACE = 6
self.GAMMA = 0.99
self.BATCH_SIZE = 32
self.REPLAY_SIZE = 10000
self.REPLAY_START_SIZE = 10000
self.LEARING_RATE = 1e-4 *1
self.SYNC_TARGET_FRAMES = 1000
######################################
self.EPS_INITIAL = 1.0
self.FIXED_EPSILON = 0.8
self.THRESH_START_DECAY = 20
self.EPS_DECAY = 0.99
self.EPS_MIN = 0.02
######################################
self.ITER_NUM = 80
self.EPISODE_NUM = 500
self.ITER_SUCCESS_FILL = 100
| class Hyperparameters:
def __init__(self):
self.IMAGESIZE = [30, 30]
self.MEAN_REWARD_BOUND = 19.0
self.CHANNEL_NUM = 4
self.ACTION_SPACE = 6
self.GAMMA = 0.99
self.BATCH_SIZE = 32
self.REPLAY_SIZE = 10000
self.REPLAY_START_SIZE = 10000
self.LEARING_RATE = 0.0001 * 1
self.SYNC_TARGET_FRAMES = 1000
self.EPS_INITIAL = 1.0
self.FIXED_EPSILON = 0.8
self.THRESH_START_DECAY = 20
self.EPS_DECAY = 0.99
self.EPS_MIN = 0.02
self.ITER_NUM = 80
self.EPISODE_NUM = 500
self.ITER_SUCCESS_FILL = 100 |
def sayHello1(name):
print(f"hello to {name}")
sayHello1("Atilla")
sayHello1("Duru")
sayHello1("")
#sayHello1() # TypeError: sayHello1() missing 1 required positional argument: 'name'
sayHello1(name = "Atilla") | def say_hello1(name):
print(f'hello to {name}')
say_hello1('Atilla')
say_hello1('Duru')
say_hello1('')
say_hello1(name='Atilla') |
class Interface:
def __init__(self, name, operations):
self.name = name
self.operations = operations
| class Interface:
def __init__(self, name, operations):
self.name = name
self.operations = operations |
list = [5, 10, 15, 20, 25, 50, 20]
for i in range(len(list)):
if list[i] == 20:
list[i] = 200
print(list)
print(list[2:6]) | list = [5, 10, 15, 20, 25, 50, 20]
for i in range(len(list)):
if list[i] == 20:
list[i] = 200
print(list)
print(list[2:6]) |
# Declare Variables Here
binary = "binary"
do_not = "don't"
hilarious = False
joke_evaluation = "Isn't that joke so funny?! %r"
# Print Strings Here
x = "There are %d types of people" % 10
y = "Those who know %s and those who %s." % (binary, do_not)
w = "This is the left side of "
e = "a string with a right side."
#Print Here
print(x)
print(y)
print("I said: %r." % x)
print("I also said: '%s'." % y)
print(joke_evaluation % hilarious)
print(w + e)
| binary = 'binary'
do_not = "don't"
hilarious = False
joke_evaluation = "Isn't that joke so funny?! %r"
x = 'There are %d types of people' % 10
y = 'Those who know %s and those who %s.' % (binary, do_not)
w = 'This is the left side of '
e = 'a string with a right side.'
print(x)
print(y)
print('I said: %r.' % x)
print("I also said: '%s'." % y)
print(joke_evaluation % hilarious)
print(w + e) |
# -*- coding: utf-8 -*-
class Solution:
def getMaximumGenerated(self, n: int) -> int:
nums, result = [0] * (n + 1), 0
for i in range(1, n + 1):
if i == 1:
nums[i] = 1
elif i % 2 == 0:
nums[i] = nums[i // 2]
elif i % 2 == 1:
nums[i] = nums[i // 2] + nums[i // 2 + 1]
result = max(result, nums[i])
return result
if __name__ == '__main__':
solution = Solution()
assert 3 == solution.getMaximumGenerated(7)
assert 1 == solution.getMaximumGenerated(2)
assert 2 == solution.getMaximumGenerated(3)
| class Solution:
def get_maximum_generated(self, n: int) -> int:
(nums, result) = ([0] * (n + 1), 0)
for i in range(1, n + 1):
if i == 1:
nums[i] = 1
elif i % 2 == 0:
nums[i] = nums[i // 2]
elif i % 2 == 1:
nums[i] = nums[i // 2] + nums[i // 2 + 1]
result = max(result, nums[i])
return result
if __name__ == '__main__':
solution = solution()
assert 3 == solution.getMaximumGenerated(7)
assert 1 == solution.getMaximumGenerated(2)
assert 2 == solution.getMaximumGenerated(3) |
class Solution:
def modifyString(self, s: str) -> str:
sl=list(s)
for i in range(len(sl)):
if sl[i]=='?':
if i==0 or sl[i-1]!='a':
sl[i]='a'
else:
sl[i]='b'
if i!=len(sl)-1 and sl[i+1]==sl[i]:
sl[i]='c'
return ''.join(sl) | class Solution:
def modify_string(self, s: str) -> str:
sl = list(s)
for i in range(len(sl)):
if sl[i] == '?':
if i == 0 or sl[i - 1] != 'a':
sl[i] = 'a'
else:
sl[i] = 'b'
if i != len(sl) - 1 and sl[i + 1] == sl[i]:
sl[i] = 'c'
return ''.join(sl) |
_sensor_mode_to_resolution = {
0: None,
1: '1920x1080',
2: '3280x2464',
3: '3280x2464',
4: '1640x1232',
5: '1640x922',
6: '1280x720',
7: '640x480',
}
_sensor_mode_to_framerate = {
0: None,
1: 24, # Maximum is 30
2: 10, # Maximum is 15
3: 10, # Maximum is 15
4: 15, # Maximum is 40
5: 15, # Maximum is 40
6: 30, # Maximum is 90
7: 30, # Maximum is 90
}
DEFAULT_SENSOR_MODE = 4
DEFAULT_PREVIEW_SENSOR_MODE = 7
def get_picamera_options(sensor_mode=DEFAULT_SENSOR_MODE):
return {
'sensor_mode': sensor_mode,
'preview_sensor_mode': DEFAULT_PREVIEW_SENSOR_MODE,
'framerate': _sensor_mode_to_framerate[sensor_mode],
'resolution': _sensor_mode_to_resolution[sensor_mode],
'fullscreen': False,
'window': (10, 10, 320, 240),
}
| _sensor_mode_to_resolution = {0: None, 1: '1920x1080', 2: '3280x2464', 3: '3280x2464', 4: '1640x1232', 5: '1640x922', 6: '1280x720', 7: '640x480'}
_sensor_mode_to_framerate = {0: None, 1: 24, 2: 10, 3: 10, 4: 15, 5: 15, 6: 30, 7: 30}
default_sensor_mode = 4
default_preview_sensor_mode = 7
def get_picamera_options(sensor_mode=DEFAULT_SENSOR_MODE):
return {'sensor_mode': sensor_mode, 'preview_sensor_mode': DEFAULT_PREVIEW_SENSOR_MODE, 'framerate': _sensor_mode_to_framerate[sensor_mode], 'resolution': _sensor_mode_to_resolution[sensor_mode], 'fullscreen': False, 'window': (10, 10, 320, 240)} |
class School:
class_roster = []
def __init__(self):
pass
def add_student(self, name, grade):
self.name = name
self.grade = grade
return True
def roster(self):
name = self.name
return self.class_roster
def grade(self, grade_number):
self.grade_number = grade_number
pass
def added(self):
pass
# school = School()
# print(school.add_student(name="Aimee", grade=2))
school = School()
print(school.roster()) | class School:
class_roster = []
def __init__(self):
pass
def add_student(self, name, grade):
self.name = name
self.grade = grade
return True
def roster(self):
name = self.name
return self.class_roster
def grade(self, grade_number):
self.grade_number = grade_number
pass
def added(self):
pass
school = school()
print(school.roster()) |
# model settings
seed = 1024
num_sclies_one_img=3
cfg_3dce = dict(
samples_per_gpu=20,
num_slices=3,
num_images_3dce=1,
img_do_clip=True,
windowing=[-1024, 3071],
norm_spacing=0.8,
max_size=512, #to do
slice_intervals=2.,
image_path='./datasets/deeplesion/Images',
val_avg_fp=[0.5, 1, 2, 4, 8, 16],
val_iou_th=0.5,
)
model = dict(
type='FasterRCNN',
pretrained='./pretrained/resnet50-19c8e357.pth',
backbone=dict(
type='ResNet',
depth=50,
num_stages=4,
out_indices=(0, 1, 2, 3),
frozen_stages=0,
style='pytorch',
norm_eval=False,
normalize=dict(
type='BN',
frozen=False),
),
neck=dict(
type='FPN',
in_channels=[256, 512, 1024, 2048],
out_channels=256,
num_outs=5,
normalize=dict(type='BN'),
activation='relu',
msb=True,
),
rpn_head=dict(
type='RPNHead',
in_channels=256,
feat_channels=256,
anchor_scales=[2, 4, 6, 8],
anchor_ratios=[0.5, 1.0, 2.0],
anchor_strides=[4, 8, 16, 32, 64],
target_means=[.0, .0, .0, .0],
target_stds=[1.0, 1.0, 1.0, 1.0],
use_sigmoid_cls=True),
bbox_roi_extractor=dict(
type='SingleRoIExtractor',
roi_layer=dict(type='RoIAlign', out_size=7, sample_num=2),
out_channels=256,
featmap_strides=[4, 8, 16, 32]),
bbox_head=dict(
type='SharedFCBBoxHead',
num_fcs=2,
in_channels=256,
fc_out_channels=1024,
roi_feat_size=7,
num_classes=2,
target_means=[0., 0., 0., 0.],
target_stds=[0.1, 0.1, 0.2, 0.2],
reg_class_agnostic=False))
# model training and testing settings
train_cfg = dict(
rpn=dict(
assigner=dict(
type='MaxIoUAssigner',
pos_iou_thr=0.5,
neg_iou_thr=0.3,
min_pos_iou=0.3,
ignore_iof_thr=-1),
sampler=dict(
type='RandomSampler',
num=48,
pos_fraction=0.5,
neg_pos_ub=-1,
add_gt_as_proposals=False),
allowed_border=0,
pos_weight=-1,
smoothl1_beta=1 / 9.0,
debug=False),
rcnn=dict(
assigner=dict(
type='MaxIoUAssigner',
pos_iou_thr=0.5,
neg_iou_thr=0.4,
min_pos_iou=0.4,
ignore_iof_thr=-1),
sampler=dict(
type='RandomSampler',
num=48,
pos_fraction=0.25,
neg_pos_ub=-1,
add_gt_as_proposals=True),
pos_weight=-1,
debug=False))
test_cfg = dict(
rpn=dict(
nms_across_levels=False,
nms_pre=2000,
nms_post=2000,
max_num=2000,
nms_thr=0.7,
min_bbox_size=0),
rcnn=dict(
score_thr=0.05, nms=dict(type='nms', iou_thr=0.5), max_per_img=10)
# soft-nms is also supported for rcnn testing
# e.g., nms=dict(type='soft_nms', iou_thr=0.5, min_score=0.05)
)
# dataset settings
dataset_type = 'DeepLesion'
data_root = './datasets/deeplesion/'
img_norm_cfg = dict(
mean=[127.5]*num_sclies_one_img, std=[127.5]*num_sclies_one_img, to_rgb=False)
data = dict(
imgs_per_gpu=2,
workers_per_gpu=2,
train=dict(
type=dataset_type,
cfg_3dce=cfg_3dce,
ann_file=data_root + 'deep_lesion_train.json',
img_prefix=data_root + 'Images/',
img_scale=(512, 512),
img_norm_cfg=img_norm_cfg,
size_divisor=32,
flip_ratio=0.5,
with_mask=False,
with_crowd=True,
with_label=True),
val=dict(
type=dataset_type,
cfg_3dce=cfg_3dce,
ann_file=data_root + 'deep_lesion_val.json',
img_prefix=data_root + 'Images/',
img_scale=(512, 512),
img_norm_cfg=img_norm_cfg,
size_divisor=32,
flip_ratio=0,
with_mask=False,
with_crowd=False,
test_mode=True,
with_label=True),
test=dict(
type=dataset_type,
cfg_3dce=cfg_3dce,
ann_file=data_root + 'deep_lesion_test.json',
img_prefix=data_root + 'Images/',
img_scale=(512, 512),
img_norm_cfg=img_norm_cfg,
size_divisor=32,
flip_ratio=0,
with_mask=False,
with_label=False,
test_mode=True))
# optimizer
optimizer = dict(type='SGD', lr=0.01, momentum=0.9, weight_decay=0.0001, nesterov=True)
clip_grad=dict(max_norm=35, norm_type=2)
lr_scedule = dict(
type='CosineAnnealingLR',
T_max=12,
T_mul=1,
decay_rate=0.5,
T_min=0.00001
)
# runtime settings
start_epoch = 0
end_epoch = 400
device_ids = [0]
print_interval=50
work_dir = './deeplesion/fpn_msb'
load_from = None
resume_from = None
model_info = ''
eval_val=False
| seed = 1024
num_sclies_one_img = 3
cfg_3dce = dict(samples_per_gpu=20, num_slices=3, num_images_3dce=1, img_do_clip=True, windowing=[-1024, 3071], norm_spacing=0.8, max_size=512, slice_intervals=2.0, image_path='./datasets/deeplesion/Images', val_avg_fp=[0.5, 1, 2, 4, 8, 16], val_iou_th=0.5)
model = dict(type='FasterRCNN', pretrained='./pretrained/resnet50-19c8e357.pth', backbone=dict(type='ResNet', depth=50, num_stages=4, out_indices=(0, 1, 2, 3), frozen_stages=0, style='pytorch', norm_eval=False, normalize=dict(type='BN', frozen=False)), neck=dict(type='FPN', in_channels=[256, 512, 1024, 2048], out_channels=256, num_outs=5, normalize=dict(type='BN'), activation='relu', msb=True), rpn_head=dict(type='RPNHead', in_channels=256, feat_channels=256, anchor_scales=[2, 4, 6, 8], anchor_ratios=[0.5, 1.0, 2.0], anchor_strides=[4, 8, 16, 32, 64], target_means=[0.0, 0.0, 0.0, 0.0], target_stds=[1.0, 1.0, 1.0, 1.0], use_sigmoid_cls=True), bbox_roi_extractor=dict(type='SingleRoIExtractor', roi_layer=dict(type='RoIAlign', out_size=7, sample_num=2), out_channels=256, featmap_strides=[4, 8, 16, 32]), bbox_head=dict(type='SharedFCBBoxHead', num_fcs=2, in_channels=256, fc_out_channels=1024, roi_feat_size=7, num_classes=2, target_means=[0.0, 0.0, 0.0, 0.0], target_stds=[0.1, 0.1, 0.2, 0.2], reg_class_agnostic=False))
train_cfg = dict(rpn=dict(assigner=dict(type='MaxIoUAssigner', pos_iou_thr=0.5, neg_iou_thr=0.3, min_pos_iou=0.3, ignore_iof_thr=-1), sampler=dict(type='RandomSampler', num=48, pos_fraction=0.5, neg_pos_ub=-1, add_gt_as_proposals=False), allowed_border=0, pos_weight=-1, smoothl1_beta=1 / 9.0, debug=False), rcnn=dict(assigner=dict(type='MaxIoUAssigner', pos_iou_thr=0.5, neg_iou_thr=0.4, min_pos_iou=0.4, ignore_iof_thr=-1), sampler=dict(type='RandomSampler', num=48, pos_fraction=0.25, neg_pos_ub=-1, add_gt_as_proposals=True), pos_weight=-1, debug=False))
test_cfg = dict(rpn=dict(nms_across_levels=False, nms_pre=2000, nms_post=2000, max_num=2000, nms_thr=0.7, min_bbox_size=0), rcnn=dict(score_thr=0.05, nms=dict(type='nms', iou_thr=0.5), max_per_img=10))
dataset_type = 'DeepLesion'
data_root = './datasets/deeplesion/'
img_norm_cfg = dict(mean=[127.5] * num_sclies_one_img, std=[127.5] * num_sclies_one_img, to_rgb=False)
data = dict(imgs_per_gpu=2, workers_per_gpu=2, train=dict(type=dataset_type, cfg_3dce=cfg_3dce, ann_file=data_root + 'deep_lesion_train.json', img_prefix=data_root + 'Images/', img_scale=(512, 512), img_norm_cfg=img_norm_cfg, size_divisor=32, flip_ratio=0.5, with_mask=False, with_crowd=True, with_label=True), val=dict(type=dataset_type, cfg_3dce=cfg_3dce, ann_file=data_root + 'deep_lesion_val.json', img_prefix=data_root + 'Images/', img_scale=(512, 512), img_norm_cfg=img_norm_cfg, size_divisor=32, flip_ratio=0, with_mask=False, with_crowd=False, test_mode=True, with_label=True), test=dict(type=dataset_type, cfg_3dce=cfg_3dce, ann_file=data_root + 'deep_lesion_test.json', img_prefix=data_root + 'Images/', img_scale=(512, 512), img_norm_cfg=img_norm_cfg, size_divisor=32, flip_ratio=0, with_mask=False, with_label=False, test_mode=True))
optimizer = dict(type='SGD', lr=0.01, momentum=0.9, weight_decay=0.0001, nesterov=True)
clip_grad = dict(max_norm=35, norm_type=2)
lr_scedule = dict(type='CosineAnnealingLR', T_max=12, T_mul=1, decay_rate=0.5, T_min=1e-05)
start_epoch = 0
end_epoch = 400
device_ids = [0]
print_interval = 50
work_dir = './deeplesion/fpn_msb'
load_from = None
resume_from = None
model_info = ''
eval_val = False |
while True :
num = str(input('Enter two digit number here : '))
if len(num)==2 :
result = int(num[0]) + int(num[1])
print(result)
break
else :
print('Please enter two digit number !') | while True:
num = str(input('Enter two digit number here : '))
if len(num) == 2:
result = int(num[0]) + int(num[1])
print(result)
break
else:
print('Please enter two digit number !') |
'''
Created on 10-Dec-2020
@author: couchbase
'''
spec = {
# Accepted values are > 0
"max_thread_count" : 25,
# Accepted values are 0 or any positive int. 0 and 1 means no dataverse will be created and Default dataverse will be used.
"no_of_dataverses" : 25,
# Accepted values are 0 or any positive int. This is used only to create remote and external link
"no_of_links" : 0,
# Accepted values are between 0 to 100, if both have same value or if the total percentage exceeds 100, then both types
# of links will be created in equal numbers
"percent_of_remote_links":0,
"percent_of_external_links":0,
# Accepted values are 1 or any positive int.
"no_of_datasets_per_dataverse" : 2,
# Accepted values are between 0 to 100, if all 3 have same value or if the total percentage exceeds 100, then all 3 types
# of datasets will be created in equal numbers
"percent_of_local_datasets":100,
"percent_of_remote_datasets":0,
"percent_of_external_datasets":0,
# Accepted values are 0 or any positive int.
"no_of_synonyms" : 30,
# Accepted values are 0 or any positive int.
"no_of_indexes" : 25,
"dataverse" : {
# Accepted values are random or any string.
"name_key" : "random",
# Accepted values are 0,1,2 . 0 means choose a cardinality randomly between 1 or 2
"cardinality" : 0,
# Accepted values are all or "dataverse" or "analytics_scope"
"creation_method" : "all",
},
"link" : {
# Accepted values are random or any string.
"name_key" : "random",
# Accepted value is list of property dicts. Dicts should contain link properties for either
# s3 or couchbase link
"properties" : [{}],
# Accepted values are list of dataverse names. These are the dataverses where the link will be created.
"include_dataverses" : [],
# Accepted values are list of dataverse names. These are the dataverses where the link will not be created.
"exclude_dataverses" : [],
},
"dataset" : {
# Accepted values are random or any string.
"name_key" : "random",
# Accepted values are all, internal or external.
"datasource" : "internal",
# Accepted values are 0,1,3 . 0 means choose a cardinality randomly between 1 or 3
"bucket_cardinality": 0,
# Accepted values are list of dataverse names. These are the dataverses where the dataset will be created.
"include_dataverses" : [],
# Accepted values are list of dataverse names. These are the dataverses where the dataset will not be created.
"exclude_dataverses" : [],
# Accepted values are list of link names. These are the link that will be used while creating a dataset.
"include_links" : [],
# Accepted values are list of link names. These are the link that will not be used while creating a dataset.
"exclude_links" : [],
# Accepted values are all, s3 or couchbase. These are the link type that will be used while creating a dataset.
"include_link_types" : "all",
# Accepted values are None, s3 or couchbase. These are the link type that will not be used while creating a dataset.
"exclude_link_types" : None,
# Accepted values are list of bucket names. These are the buckets that will be used while creating a dataset.
"include_buckets" : [],
# Accepted values are list of bucket names. These are the buckets that will not be used while creating a dataset.
"exclude_buckets" : [],
# Accepted values are list of scope names. These are the scopes that will be used while creating a dataset.
"include_scopes" : [],
# Accepted values are list of scope names. These are the scopes that will not be used while creating a dataset.
"exclude_scopes" : [],
# Accepted values are list of collection names. These are the collections that will be used while creating a dataset.
"include_collections" : [],
# Accepted values are list of collection names. These are the collections that will not be used while creating a dataset.
"exclude_collections" : [],
# Accepted values are list of creation methods ["cbas_collection","cbas_dataset","enable_cbas_from_kv"].
# [] means all methods will be considered while creating dataset.
"creation_methods" : [],
# This is only applicable while creating external datasets.
"external_dataset_properties" : [{}]
},
"synonym" : {
# Accepted values are random or any string.
"name_key" : "random",
# Accepted values are list of dataverse names. These are the dataverses where the synonym will be created.
"include_dataverses" : [],
# Accepted values are list of dataverse names. These are the dataverses where the synonym will not be created.
"exclude_dataverses" : [],
# Accepted values are list of datset names. These are the datsets on which the synonym will be created.
"include_datasets" : [],
# Accepted values are list of datset names. These are the datsets on which the synonym will not be created.
"exclude_datasets" : [],
# Accepted values are list of synonym names. These are the synonyms on which the synonym will be created.
"include_synonyms" : [],
# Accepted values are list of synonym names. These are the synonyms on which the synonym will be created.
"exclude_synonyms" : [],
},
"index" : {
# Accepted values are random or any string.
"name_key" : "random",
# Accepted values are list of dataverse names. The indexes will only be created on datasets in these dataverses.
"include_dataverses" : [],
# Accepted values are list of dataverse names. The indexes will not be created on datasets in these dataverses.
"exclude_dataverses" : [],
# Accepted values are list of datset names. The indexes will only be created on these datasets.
"include_datasets" : [],
# Accepted values are list of datset names. The indexes will not be created on these datasets.
"exclude_datasets" : [],
# Accepted values are list of strings. Each string will be treated as one index condition. In order to pass multiple
# fields to create an index use the following format - "field_name_1:field_type_1-field_name_2:field_type_2"
"indexed_fields" : ["age:bigint"],
# Accepted values are all, cbas_index or index
"creation_method" : "all"
},
} | """
Created on 10-Dec-2020
@author: couchbase
"""
spec = {'max_thread_count': 25, 'no_of_dataverses': 25, 'no_of_links': 0, 'percent_of_remote_links': 0, 'percent_of_external_links': 0, 'no_of_datasets_per_dataverse': 2, 'percent_of_local_datasets': 100, 'percent_of_remote_datasets': 0, 'percent_of_external_datasets': 0, 'no_of_synonyms': 30, 'no_of_indexes': 25, 'dataverse': {'name_key': 'random', 'cardinality': 0, 'creation_method': 'all'}, 'link': {'name_key': 'random', 'properties': [{}], 'include_dataverses': [], 'exclude_dataverses': []}, 'dataset': {'name_key': 'random', 'datasource': 'internal', 'bucket_cardinality': 0, 'include_dataverses': [], 'exclude_dataverses': [], 'include_links': [], 'exclude_links': [], 'include_link_types': 'all', 'exclude_link_types': None, 'include_buckets': [], 'exclude_buckets': [], 'include_scopes': [], 'exclude_scopes': [], 'include_collections': [], 'exclude_collections': [], 'creation_methods': [], 'external_dataset_properties': [{}]}, 'synonym': {'name_key': 'random', 'include_dataverses': [], 'exclude_dataverses': [], 'include_datasets': [], 'exclude_datasets': [], 'include_synonyms': [], 'exclude_synonyms': []}, 'index': {'name_key': 'random', 'include_dataverses': [], 'exclude_dataverses': [], 'include_datasets': [], 'exclude_datasets': [], 'indexed_fields': ['age:bigint'], 'creation_method': 'all'}} |
def leerTablero(ruta):
with open(ruta, "r") as f:
tablero = []
for line in f:
linea = []
for campo in line.split(","):
linea.append(campo.split("\n")[0] if campo != "\n" else " ")
tablero.append(linea)
return tablero
| def leer_tablero(ruta):
with open(ruta, 'r') as f:
tablero = []
for line in f:
linea = []
for campo in line.split(','):
linea.append(campo.split('\n')[0] if campo != '\n' else ' ')
tablero.append(linea)
return tablero |
class Solution:
def findLUSlength(self, a: str, b: str) -> int:
'''
God, this solution was so simple but I over-thought it.
Consider the following:
1. The strings are the same
There can be no uncommon subsequence, return -1
2. The strings are the same
a. The strings have the same length
Both strings are the 'longest' uncommon subseq
b. The strings have unequal length
The longer string cannot be a subseq of shorter string and so it is the longest unequal subseq
In both cases, longest subseq len == longest string len
Time: O(min(a, b)) == takes min(a, b) time
Space: O(1) No extra space used
'''
if a == b:
return -1
return max(len(a), len(b))
# one-liner: return -1 if a==b else max(len(a), len(b))
| class Solution:
def find_lu_slength(self, a: str, b: str) -> int:
"""
God, this solution was so simple but I over-thought it.
Consider the following:
1. The strings are the same
There can be no uncommon subsequence, return -1
2. The strings are the same
a. The strings have the same length
Both strings are the 'longest' uncommon subseq
b. The strings have unequal length
The longer string cannot be a subseq of shorter string and so it is the longest unequal subseq
In both cases, longest subseq len == longest string len
Time: O(min(a, b)) == takes min(a, b) time
Space: O(1) No extra space used
"""
if a == b:
return -1
return max(len(a), len(b)) |
class MyClass:
x=3
y=4
def __init__(self):
print("in constructor")
def classMemberFunc(self):
print(self.x)
def myFunc(in1,in2):
print("in function")
return in1+in2
print("hello world")
x=3
y=x+4
print(y)
floatDiv = 7 / 3 # 2.3
intDiv = 7 //3 # 2
exp = 2 ** 4 # 16
print("The exponentiated value is " + str(exp))
z = "3"
zAsInt = int(z)
if exp == 17:
print("in an if statement")
print("also in an if")
if z == "3":
print("z is 3")
elif exp == 16:
print("exp is 16")
else:
print("exp is neither 16 or 17")
print("not in an if")
t=True
f=False
if t or f: # ||
print("t or f")
if t and f: # &&
print("t and f")
if not f: # !
print("not false")
#for each in C++
#for(int val : myVector) { ... }
for i in range(0,10):
print("value in loop is" + str(i))
myArray = [1,2,3,4]
print("the first member is " + str(myArray[0]))
for val in myArray:
print(val)
myArray.append(5)
print("we just added" + str(myArray[4]))
arrLen = len(myArray)
myStr= "hi there"
len(myStr)
res = myFunc(1,2)
print(res)
inst = MyClass()
inst.classMemberFunc() | class Myclass:
x = 3
y = 4
def __init__(self):
print('in constructor')
def class_member_func(self):
print(self.x)
def my_func(in1, in2):
print('in function')
return in1 + in2
print('hello world')
x = 3
y = x + 4
print(y)
float_div = 7 / 3
int_div = 7 // 3
exp = 2 ** 4
print('The exponentiated value is ' + str(exp))
z = '3'
z_as_int = int(z)
if exp == 17:
print('in an if statement')
print('also in an if')
if z == '3':
print('z is 3')
elif exp == 16:
print('exp is 16')
else:
print('exp is neither 16 or 17')
print('not in an if')
t = True
f = False
if t or f:
print('t or f')
if t and f:
print('t and f')
if not f:
print('not false')
for i in range(0, 10):
print('value in loop is' + str(i))
my_array = [1, 2, 3, 4]
print('the first member is ' + str(myArray[0]))
for val in myArray:
print(val)
myArray.append(5)
print('we just added' + str(myArray[4]))
arr_len = len(myArray)
my_str = 'hi there'
len(myStr)
res = my_func(1, 2)
print(res)
inst = my_class()
inst.classMemberFunc() |
global grits_diagnose_next_status
grits_diagnose_next_status = 'success'
def make_next_test_fail():
global grits_diagnose_next_status
grits_diagnose_next_status = 'failure'
# Simple mocking of the grits-api package
def handleDiagnosis(*arg, **kw):
global grits_diagnose_next_status
stat = grits_diagnose_next_status
grits_diagnose_next_status = 'success'
def response():
response.ncalls += 1
if response.ncalls <= 3:
return {
'status': 'pending',
'message': 'a status message',
'result': None,
'content': 'Some data'
}
else:
return {
'status': stat,
'message': 'a status message',
'result': {'data': 'Something'},
'content': 'Some data'
}
response.ncalls = 0
return response
| global grits_diagnose_next_status
grits_diagnose_next_status = 'success'
def make_next_test_fail():
global grits_diagnose_next_status
grits_diagnose_next_status = 'failure'
def handle_diagnosis(*arg, **kw):
global grits_diagnose_next_status
stat = grits_diagnose_next_status
grits_diagnose_next_status = 'success'
def response():
response.ncalls += 1
if response.ncalls <= 3:
return {'status': 'pending', 'message': 'a status message', 'result': None, 'content': 'Some data'}
else:
return {'status': stat, 'message': 'a status message', 'result': {'data': 'Something'}, 'content': 'Some data'}
response.ncalls = 0
return response |
#!/usr/bin/env python
# -*- coding: utf-8 -*-
class PkgEnv(object):
def __init__(self, conanfile):
self.conanfile = conanfile
self.env = {}
def add_pkg(self, dep_name, **args):
deps = self.conanfile.deps_cpp_info[dep_name]
CFLAGS = " -I".join([""] + deps.include_paths)
LIBS = " -L".join([""] + deps.lib_paths)
LIBS += " -l".join([""] + args.get('libs', deps.libs))
prefix = args.get('prefix', dep_name.upper())
cflags_key = prefix + '_CFLAGS'
libs_key = prefix + '_LIBS'
self.env[cflags_key] = (self.env.get(cflags_key, '') + ' ' + CFLAGS).strip()
self.env[libs_key] = (self.env.get(libs_key , '') + ' ' + LIBS).strip()
| class Pkgenv(object):
def __init__(self, conanfile):
self.conanfile = conanfile
self.env = {}
def add_pkg(self, dep_name, **args):
deps = self.conanfile.deps_cpp_info[dep_name]
cflags = ' -I'.join([''] + deps.include_paths)
libs = ' -L'.join([''] + deps.lib_paths)
libs += ' -l'.join([''] + args.get('libs', deps.libs))
prefix = args.get('prefix', dep_name.upper())
cflags_key = prefix + '_CFLAGS'
libs_key = prefix + '_LIBS'
self.env[cflags_key] = (self.env.get(cflags_key, '') + ' ' + CFLAGS).strip()
self.env[libs_key] = (self.env.get(libs_key, '') + ' ' + LIBS).strip() |
# Clean up the class to make it more pythonic
class MyDemoClass(object):
def __init__(self, data, filename="names.txt"):
self._data = data
self._filename = filename
self._file_contents = ""
def set_data(data):
self.data = data
def get_data(data):
return self.data
def compare(self):
return self._data == self._file_contents
@property
def file_contents(self):
if not self._file_contents:
file = open(self._filename)
self._file_contents = file.read()
file.close()
return self._file_contents
mdc = MyDemoClass("Random String")
print(mdc.file_contents)
print(mdc.compare())
| class Mydemoclass(object):
def __init__(self, data, filename='names.txt'):
self._data = data
self._filename = filename
self._file_contents = ''
def set_data(data):
self.data = data
def get_data(data):
return self.data
def compare(self):
return self._data == self._file_contents
@property
def file_contents(self):
if not self._file_contents:
file = open(self._filename)
self._file_contents = file.read()
file.close()
return self._file_contents
mdc = my_demo_class('Random String')
print(mdc.file_contents)
print(mdc.compare()) |
#!/usr/bin/python
'''
This is a test file to see if it is possible to have a python file with all the
permanent variables for potato (S. tuberosum) which can then be imported into
individual scripts when required.
'''
# A dictionary containing the background frequencies of all bases
# The background is considered to be all the 1000bp upstream of the genes
# Found in the ITAG1.0 annotation. Frequences were calculated based on the
# Seeder background file.
bkgrddict = {'A':0.344,'C':0.164,'G':0.156,'T':0.336}
| """
This is a test file to see if it is possible to have a python file with all the
permanent variables for potato (S. tuberosum) which can then be imported into
individual scripts when required.
"""
bkgrddict = {'A': 0.344, 'C': 0.164, 'G': 0.156, 'T': 0.336} |
# -*- coding: utf-8 -*-
DEFAULT_FIELDS = [
'timestamp',
'distance',
'temperature',
'heartratebpm',
'cadence',
'power',
'altitude',
'speed',
'latitude',
'longitude',
]
| default_fields = ['timestamp', 'distance', 'temperature', 'heartratebpm', 'cadence', 'power', 'altitude', 'speed', 'latitude', 'longitude'] |
class LoginError(Exception):
def __init__(self, addr, user):
msg = f"{user} failed auth to server {addr}"
super().__init__(msg)
class WorkflowStateNotSetError(Exception):
def __init__(self, module_name):
msg = f"WorkflowState is not set in {module_name}"
super().__init__(msg)
class ProjectUploadError(Exception):
def __init__(self, projectid):
msg = f"Upload Failed from project {projectid}"
super().__init__(msg)
class ProjectCreateError(Exception):
def __init__(self, projectid):
msg = f"Project creation error for projectid or name: {projectid}"
super().__init__(msg)
| class Loginerror(Exception):
def __init__(self, addr, user):
msg = f'{user} failed auth to server {addr}'
super().__init__(msg)
class Workflowstatenotseterror(Exception):
def __init__(self, module_name):
msg = f'WorkflowState is not set in {module_name}'
super().__init__(msg)
class Projectuploaderror(Exception):
def __init__(self, projectid):
msg = f'Upload Failed from project {projectid}'
super().__init__(msg)
class Projectcreateerror(Exception):
def __init__(self, projectid):
msg = f'Project creation error for projectid or name: {projectid}'
super().__init__(msg) |
n = int(input())
list_odd = []
list_even = []
if n >= 1:
for i in range(n):
t = int(input())
if t % 2 > 0:
list_odd.append(t)
else:
list_even.append(t)
list_odd.sort(reverse=True)
list_even.sort()
print(list_even + list_odd)
| n = int(input())
list_odd = []
list_even = []
if n >= 1:
for i in range(n):
t = int(input())
if t % 2 > 0:
list_odd.append(t)
else:
list_even.append(t)
list_odd.sort(reverse=True)
list_even.sort()
print(list_even + list_odd) |
class Mymother(object):
def __init__(self):
self.num1 = 10
print("I am a Mother class constructor")
def mydisplay_mother(self):
print("I am a Mother class instance method")
class MyDaughter(Mymother):
def mydisplay_Daughter(self):
print("I am a Daughter class instance method")
myobj = MyDaughter()
print(myobj.num1)
myobj.mydisplay_Daughter()
myobj.mydisplay_mother() | class Mymother(object):
def __init__(self):
self.num1 = 10
print('I am a Mother class constructor')
def mydisplay_mother(self):
print('I am a Mother class instance method')
class Mydaughter(Mymother):
def mydisplay__daughter(self):
print('I am a Daughter class instance method')
myobj = my_daughter()
print(myobj.num1)
myobj.mydisplay_Daughter()
myobj.mydisplay_mother() |
class HeapMax(object):
def __init__(self, *args):
self.nodes = [0]
self.size = 0
for item in args:
self.push(item)
def __len__(self):
return self.size
def __repr__(self):
return self.nodes[1:]
def move_up(self, size):
while size // 2 > 0:
if self.nodes[size] > self.nodes[size // 2]:
self.nodes[size], self.nodes[size // 2] = self.nodes[size // 2], self.nodes[size]
size //= 2
def max_child(self, index):
if index * 2 + 1 > self.size:
return index * 2
else:
if self.nodes[index * 2] > self.nodes[index * 2 + 1]:
return index * 2
else:
return index * 2 + 1
def move_down(self, index):
while index * 2 <= self.size:
max_child = self.max_child(index)
if self.nodes[index] < self.nodes[max_child]:
self.nodes[index], self.nodes[max_child] = self.nodes[max_child], self.nodes[index]
index = max_child
def push(self, item):
self.nodes.append(item)
self.size += 1
self.move_up(self.size)
def pop(self):
val = self.nodes[1]
self.nodes[1] = self.nodes[self.size]
self.size -= 1
self.nodes.pop()
self.move_down(1)
return val
def peek(self):
return self.nodes[1]
| class Heapmax(object):
def __init__(self, *args):
self.nodes = [0]
self.size = 0
for item in args:
self.push(item)
def __len__(self):
return self.size
def __repr__(self):
return self.nodes[1:]
def move_up(self, size):
while size // 2 > 0:
if self.nodes[size] > self.nodes[size // 2]:
(self.nodes[size], self.nodes[size // 2]) = (self.nodes[size // 2], self.nodes[size])
size //= 2
def max_child(self, index):
if index * 2 + 1 > self.size:
return index * 2
elif self.nodes[index * 2] > self.nodes[index * 2 + 1]:
return index * 2
else:
return index * 2 + 1
def move_down(self, index):
while index * 2 <= self.size:
max_child = self.max_child(index)
if self.nodes[index] < self.nodes[max_child]:
(self.nodes[index], self.nodes[max_child]) = (self.nodes[max_child], self.nodes[index])
index = max_child
def push(self, item):
self.nodes.append(item)
self.size += 1
self.move_up(self.size)
def pop(self):
val = self.nodes[1]
self.nodes[1] = self.nodes[self.size]
self.size -= 1
self.nodes.pop()
self.move_down(1)
return val
def peek(self):
return self.nodes[1] |
def rle_encode(data):
encoding = ''
prev_char = ''
count = 1
if not data: return ''
for char in data:
# If the prev and current characters
# don't match...
if char != prev_char:
# ...then add the count and character
# to our encoding
if prev_char:
encoding += str(count) + prev_char
count = 1
prev_char = char
else:
# Or increment our counter
# if the characters do match
count += 1
else:
# Finish off the encoding
encoding += str(count) + prev_char
return encoding
def decode(our_message):
decoded_message = ""
i = 0
j = 0
# splitting the encoded message into respective counts
while (i <= len(our_message) - 1):
run_count = int(our_message[i])
run_word = our_message[i + 1]
# displaying the character multiple times specified by the count
for j in range(run_count):
# concatenated with the decoded message
decoded_message = decoded_message+run_word
j = j + 1
i = i + 2
return decoded_message
| def rle_encode(data):
encoding = ''
prev_char = ''
count = 1
if not data:
return ''
for char in data:
if char != prev_char:
if prev_char:
encoding += str(count) + prev_char
count = 1
prev_char = char
else:
count += 1
else:
encoding += str(count) + prev_char
return encoding
def decode(our_message):
decoded_message = ''
i = 0
j = 0
while i <= len(our_message) - 1:
run_count = int(our_message[i])
run_word = our_message[i + 1]
for j in range(run_count):
decoded_message = decoded_message + run_word
j = j + 1
i = i + 2
return decoded_message |
# https://leetcode.com/problems/excel-sheet-column-number/
class Solution:
def titleToNumber(self, s: str) -> int:
power = 0
val = 0
for i in range(len(s) - 1, -1, -1):
val += (ord(s[i]) - 64) * (26 ** power)
power += 1
return val
| class Solution:
def title_to_number(self, s: str) -> int:
power = 0
val = 0
for i in range(len(s) - 1, -1, -1):
val += (ord(s[i]) - 64) * 26 ** power
power += 1
return val |
def arithmetic_arranger(problems, flag=False):
op1Array = []
op2Array = []
lineArray = []
result = []
separator = " "
if len(problems) > 5:
return "Error: Too many problems."
for problem in problems:
op = problem.split()
lenght = max(len(op[0]), len(op[2])) + 2
if op[1] != '+' and op[1] != '-':
return "Error: Operator must be '+' or '-'."
if len(op[0]) > 4 or len(op[2]) > 4:
return "Error: Numbers cannot be more than four digits."
if not op[0].isdigit() or not op[2].isdigit():
return "Error: Numbers must only contain digits."
space1 = " " * (lenght - len(op[0]))
op1Array.append(space1 + op[0])
space2 = " " * (lenght - len(op[2]) - 1)
op2Array.append(op[1] + space2 + op[2])
lineArray.append("-" * lenght)
if op[1] == '+':
spacer = " " * 2
result.append(spacer + str(int(op[0]) + int(op[2])))
if op[1] == '-':
spacer = " "
result.append(spacer + str(int(op[0]) - int(op[2])))
if flag:
arranged_problems = f'{separator.join(op1Array)}\n{separator.join(op2Array)}\n{separator.join(lineArray)}\n{separator.join(result)}'
else:
arranged_problems = f'{separator.join(op1Array)}\n{separator.join(op2Array)}\n{separator.join(lineArray)}'
return arranged_problems | def arithmetic_arranger(problems, flag=False):
op1_array = []
op2_array = []
line_array = []
result = []
separator = ' '
if len(problems) > 5:
return 'Error: Too many problems.'
for problem in problems:
op = problem.split()
lenght = max(len(op[0]), len(op[2])) + 2
if op[1] != '+' and op[1] != '-':
return "Error: Operator must be '+' or '-'."
if len(op[0]) > 4 or len(op[2]) > 4:
return 'Error: Numbers cannot be more than four digits.'
if not op[0].isdigit() or not op[2].isdigit():
return 'Error: Numbers must only contain digits.'
space1 = ' ' * (lenght - len(op[0]))
op1Array.append(space1 + op[0])
space2 = ' ' * (lenght - len(op[2]) - 1)
op2Array.append(op[1] + space2 + op[2])
lineArray.append('-' * lenght)
if op[1] == '+':
spacer = ' ' * 2
result.append(spacer + str(int(op[0]) + int(op[2])))
if op[1] == '-':
spacer = ' '
result.append(spacer + str(int(op[0]) - int(op[2])))
if flag:
arranged_problems = f'{separator.join(op1Array)}\n{separator.join(op2Array)}\n{separator.join(lineArray)}\n{separator.join(result)}'
else:
arranged_problems = f'{separator.join(op1Array)}\n{separator.join(op2Array)}\n{separator.join(lineArray)}'
return arranged_problems |
# Source: https://codingcompetitions.withgoogle.com/kickstart/round/000000000019ffc7/00000000001d3f56#problem
# Time Complexity: O(nlogn)
# Can be improved to O(n) using count sort as the length of array is fixed and can be upto 1000.
def allocation(prices, budget):
prices.sort()
houses = 0
for price in prices:
if price <= budget:
houses += 1
budget -= price
else:
break
return houses
def inputFunction():
numTestCase = int(input())
for i in range(numTestCase):
N, B = map(int, input().split())
arr = list(map(int, input().split()))
print("Case #" + str(i+1) + ": " + str(allocation(arr, B)))
inputFunction()
| def allocation(prices, budget):
prices.sort()
houses = 0
for price in prices:
if price <= budget:
houses += 1
budget -= price
else:
break
return houses
def input_function():
num_test_case = int(input())
for i in range(numTestCase):
(n, b) = map(int, input().split())
arr = list(map(int, input().split()))
print('Case #' + str(i + 1) + ': ' + str(allocation(arr, B)))
input_function() |
def filter_one(lines):
rho_threshold = 15
theta_threshold = 0.1
# how many lines are similar to a given one
similar_lines = {i: [] for i in range(len(lines))}
for i in range(len(lines)):
for j in range(len(lines)):
if i == j:
continue
rho_i, theta_i = lines[i][0]
rho_j, theta_j = lines[j][0]
if abs(rho_i - rho_j) < rho_threshold and abs(theta_i - theta_j) < theta_threshold:
similar_lines[i].append(j)
# ordering the INDECES of the lines by how many are similar to them
indices = [i for i in range(len(lines))]
indices.sort(key=lambda x: len(similar_lines[x]))
# line flags is the base for the filtering
line_flags = len(lines)*[True]
for i in range(len(lines) - 1):
# if we already disregarded the ith element in the ordered list then we don't care (we will not delete anything based on it and we will never reconsider using this line again)
if not line_flags[indices[i]]:
continue
# we are only considering those elements that had less similar line
for j in range(i + 1, len(lines)):
# and only if we have not disregarded them already
if not line_flags[indices[j]]:
continue
rho_i, theta_i = lines[indices[i]][0]
rho_j, theta_j = lines[indices[j]][0]
if abs(rho_i - rho_j) < rho_threshold and abs(theta_i - theta_j) < theta_threshold:
# if it is similar and have not been disregarded yet then drop it now
line_flags[indices[j]] = False
return line_flags
def filter_two(lines,line_flags):
filtered_lines = []
for i in range(len(lines)): # filtering
if line_flags[i]:
filtered_lines.append(lines[i])
return filtered_lines | def filter_one(lines):
rho_threshold = 15
theta_threshold = 0.1
similar_lines = {i: [] for i in range(len(lines))}
for i in range(len(lines)):
for j in range(len(lines)):
if i == j:
continue
(rho_i, theta_i) = lines[i][0]
(rho_j, theta_j) = lines[j][0]
if abs(rho_i - rho_j) < rho_threshold and abs(theta_i - theta_j) < theta_threshold:
similar_lines[i].append(j)
indices = [i for i in range(len(lines))]
indices.sort(key=lambda x: len(similar_lines[x]))
line_flags = len(lines) * [True]
for i in range(len(lines) - 1):
if not line_flags[indices[i]]:
continue
for j in range(i + 1, len(lines)):
if not line_flags[indices[j]]:
continue
(rho_i, theta_i) = lines[indices[i]][0]
(rho_j, theta_j) = lines[indices[j]][0]
if abs(rho_i - rho_j) < rho_threshold and abs(theta_i - theta_j) < theta_threshold:
line_flags[indices[j]] = False
return line_flags
def filter_two(lines, line_flags):
filtered_lines = []
for i in range(len(lines)):
if line_flags[i]:
filtered_lines.append(lines[i])
return filtered_lines |
def natural_sum(x):
return x * (x + 1) // 2
def count(n):
n = n - 1
return 3 * natural_sum(n // 3) + 5 * natural_sum(n // 5) - 15 * natural_sum(n // 15)
if __name__ == "__main__":
t = int(input())
for i in range(t):
n = int(input())
result = count(n)
print(str(result)) | def natural_sum(x):
return x * (x + 1) // 2
def count(n):
n = n - 1
return 3 * natural_sum(n // 3) + 5 * natural_sum(n // 5) - 15 * natural_sum(n // 15)
if __name__ == '__main__':
t = int(input())
for i in range(t):
n = int(input())
result = count(n)
print(str(result)) |
# Class for an advertisement on Kijiji, to hold all ad parameters
class Ad:
def __init__(self, title: str, price: float, description: str, tags: list, image_fps: list, category_id: str):
self.category_id = category_id # the number representing the posting category.
# this can be found by clicking through to it once
# and observing the categoryId={} in browser
self.title = title # title of ad
self.price = price # price of ad
self.description = description # text description of the ad
self.tags = tags # tags to turn up in more searches (keywords)
self.image_fps = image_fps # a list of the filepaths to images for the ad | class Ad:
def __init__(self, title: str, price: float, description: str, tags: list, image_fps: list, category_id: str):
self.category_id = category_id
self.title = title
self.price = price
self.description = description
self.tags = tags
self.image_fps = image_fps |
#
# PySNMP MIB module NMS-EPON-ONU-SERIAL-PORT (http://snmplabs.com/pysmi)
# ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/NMS-EPON-ONU-SERIAL-PORT
# Produced by pysmi-0.3.4 at Wed May 1 14:21:58 2019
# On host DAVWANG4-M-1475 platform Darwin version 18.5.0 by user davwang4
# Using Python version 3.7.3 (default, Mar 27 2019, 09:23:15)
#
ObjectIdentifier, Integer, OctetString = mibBuilder.importSymbols("ASN1", "ObjectIdentifier", "Integer", "OctetString")
NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues")
ValueRangeConstraint, ValueSizeConstraint, ConstraintsUnion, SingleValueConstraint, ConstraintsIntersection = mibBuilder.importSymbols("ASN1-REFINEMENT", "ValueRangeConstraint", "ValueSizeConstraint", "ConstraintsUnion", "SingleValueConstraint", "ConstraintsIntersection")
nmsEPONGroup, = mibBuilder.importSymbols("NMS-SMI", "nmsEPONGroup")
NotificationGroup, ModuleCompliance = mibBuilder.importSymbols("SNMPv2-CONF", "NotificationGroup", "ModuleCompliance")
ObjectIdentity, Gauge32, Bits, ModuleIdentity, MibIdentifier, NotificationType, IpAddress, iso, Counter32, Unsigned32, TimeTicks, Integer32, Counter64, MibScalar, MibTable, MibTableRow, MibTableColumn = mibBuilder.importSymbols("SNMPv2-SMI", "ObjectIdentity", "Gauge32", "Bits", "ModuleIdentity", "MibIdentifier", "NotificationType", "IpAddress", "iso", "Counter32", "Unsigned32", "TimeTicks", "Integer32", "Counter64", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn")
TextualConvention, DisplayString, TruthValue, RowStatus, PhysAddress, MacAddress = mibBuilder.importSymbols("SNMPv2-TC", "TextualConvention", "DisplayString", "TruthValue", "RowStatus", "PhysAddress", "MacAddress")
nmsEponOnuSerialPort = MibIdentifier((1, 3, 6, 1, 4, 1, 11606, 10, 101, 27))
nmsEponOnuSerialPortTable = MibTable((1, 3, 6, 1, 4, 1, 11606, 10, 101, 27, 1), )
if mibBuilder.loadTexts: nmsEponOnuSerialPortTable.setStatus('mandatory')
if mibBuilder.loadTexts: nmsEponOnuSerialPortTable.setDescription('A list of epon ONU serial port table entries.')
nmsEponOnuSerialPortEntry = MibTableRow((1, 3, 6, 1, 4, 1, 11606, 10, 101, 27, 1, 1), ).setIndexNames((0, "NMS-EPON-ONU-SERIAL-PORT", "llidIfIndex"), (0, "NMS-EPON-ONU-SERIAL-PORT", "onuSerialPortSeqNo"))
if mibBuilder.loadTexts: nmsEponOnuSerialPortEntry.setStatus('mandatory')
if mibBuilder.loadTexts: nmsEponOnuSerialPortEntry.setDescription('A collection of additional objects in the epon ONU serial port table.')
llidIfIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 11606, 10, 101, 27, 1, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: llidIfIndex.setStatus('mandatory')
if mibBuilder.loadTexts: llidIfIndex.setDescription('LLID interface id, unique in system. The same value as NMS-EPON-LLID mib index.')
onuSerialPortSeqNo = MibTableColumn((1, 3, 6, 1, 4, 1, 11606, 10, 101, 27, 1, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(224, 239))).setMaxAccess("readonly")
if mibBuilder.loadTexts: onuSerialPortSeqNo.setStatus('mandatory')
if mibBuilder.loadTexts: onuSerialPortSeqNo.setDescription('ONU serial port sequence number, unique in one ONU.')
onuSerialPortSpeed = MibTableColumn((1, 3, 6, 1, 4, 1, 11606, 10, 101, 27, 1, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(300, 115200))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: onuSerialPortSpeed.setStatus('mandatory')
if mibBuilder.loadTexts: onuSerialPortSpeed.setDescription('ONU serial port speed. Default value is 9600.')
onuSerialPortDataBits = MibTableColumn((1, 3, 6, 1, 4, 1, 11606, 10, 101, 27, 1, 1, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(5, 8))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: onuSerialPortDataBits.setStatus('mandatory')
if mibBuilder.loadTexts: onuSerialPortDataBits.setDescription('ONU serial port data bits. Default value is 8.')
onuSerialPortHaltBits = MibTableColumn((1, 3, 6, 1, 4, 1, 11606, 10, 101, 27, 1, 1, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 2))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: onuSerialPortHaltBits.setStatus('mandatory')
if mibBuilder.loadTexts: onuSerialPortHaltBits.setDescription('ONU serial port halt bits. Default value is 1.')
onuSerialPortParity = MibTableColumn((1, 3, 6, 1, 4, 1, 11606, 10, 101, 27, 1, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("none", 0), ("odd", 1), ("even", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: onuSerialPortParity.setStatus('mandatory')
if mibBuilder.loadTexts: onuSerialPortParity.setDescription('ONU serial port parity. Default value is 0-none.')
onuSerialPortFlowControl = MibTableColumn((1, 3, 6, 1, 4, 1, 11606, 10, 101, 27, 1, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("none", 0), ("software", 1), ("hardware", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: onuSerialPortFlowControl.setStatus('mandatory')
if mibBuilder.loadTexts: onuSerialPortFlowControl.setDescription('ONU serial port parity. Default value is 0-none.')
onuSerialPortPropRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 11606, 10, 101, 27, 1, 1, 8), RowStatus()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: onuSerialPortPropRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts: onuSerialPortPropRowStatus.setDescription('ONU serial port properties row status.These five item are set together: onuSerialPortSpeed, onuSerialPortDataBits, onuSerialPortHaltBits, onuSerialPortParity, onuSerialPortFlowControl. ')
onuSerialPortDataReadInterval = MibTableColumn((1, 3, 6, 1, 4, 1, 11606, 10, 101, 27, 1, 1, 9), Integer32().subtype(subtypeSpec=ValueRangeConstraint(10, 100000))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: onuSerialPortDataReadInterval.setStatus('mandatory')
if mibBuilder.loadTexts: onuSerialPortDataReadInterval.setDescription('ONU serial port buffer data read interval. Unit is mili-second, and default value is 100 ms.')
onuSerialPortDataReadBytes = MibTableColumn((1, 3, 6, 1, 4, 1, 11606, 10, 101, 27, 1, 1, 10), Integer32().subtype(subtypeSpec=ValueRangeConstraint(10, 1000))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: onuSerialPortDataReadBytes.setStatus('mandatory')
if mibBuilder.loadTexts: onuSerialPortDataReadBytes.setDescription('ONU serial port buffer data read bytes. When storage is up to limit, the bytes must be sent out. Default value is 100.')
onuSerialPortBufferRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 11606, 10, 101, 27, 1, 1, 11), RowStatus()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: onuSerialPortBufferRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts: onuSerialPortBufferRowStatus.setDescription('ONU serial port buffer setting row status.These two item are set together: onuSerialPortDataReadInterval, onuSerialPortDataReadBytes. ')
onuSerialPortKeepaliveMode = MibTableColumn((1, 3, 6, 1, 4, 1, 11606, 10, 101, 27, 1, 1, 12), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("disable", 0), ("enable", 1)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: onuSerialPortKeepaliveMode.setStatus('mandatory')
if mibBuilder.loadTexts: onuSerialPortKeepaliveMode.setDescription('ONU serial port keepalive mode. 0-disable, 1-enable.')
onuSerialPortKeepaliveIdle = MibTableColumn((1, 3, 6, 1, 4, 1, 11606, 10, 101, 27, 1, 1, 13), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 10000))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: onuSerialPortKeepaliveIdle.setStatus('mandatory')
if mibBuilder.loadTexts: onuSerialPortKeepaliveIdle.setDescription('ONU serial port keepalive idle. if there is no r/x package in time of onuSerialPortKeepaliveIdle, system will send keepalive package to probe. Unit is second, and default value is 100 s.')
onuSerialPortKeepaliveTimeout = MibTableColumn((1, 3, 6, 1, 4, 1, 11606, 10, 101, 27, 1, 1, 14), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 10000))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: onuSerialPortKeepaliveTimeout.setStatus('mandatory')
if mibBuilder.loadTexts: onuSerialPortKeepaliveTimeout.setDescription('ONU serial port keepalive timeout. if there is no r/x package in time of onuSerialPortKeepaliveIdle, system will send keepalive package to probe. And if there is no rsponse package in onuSerialPortKeepaliveTimeout, this keepalive package is timeout. Unit is second, and default value is 100 s.')
onuSerialPortKeepaliveProbeCount = MibTableColumn((1, 3, 6, 1, 4, 1, 11606, 10, 101, 27, 1, 1, 15), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 1000))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: onuSerialPortKeepaliveProbeCount.setStatus('mandatory')
if mibBuilder.loadTexts: onuSerialPortKeepaliveProbeCount.setDescription('ONU serial port keepalive probing package sending count. Default value is 3.')
onuSerialPortKeepaliveRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 11606, 10, 101, 27, 1, 1, 16), RowStatus()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: onuSerialPortKeepaliveRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts: onuSerialPortKeepaliveRowStatus.setDescription('ONU serial port keepalive setting value row status. These three items are set together: onuSerialPortKeepaliveIdle, onuSerialPortKeepaliveTimeout, onuSerialPortKeepaliveProbeCount.')
onuSerialPortLoopback = MibTableColumn((1, 3, 6, 1, 4, 1, 11606, 10, 101, 27, 1, 1, 17), TruthValue()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: onuSerialPortLoopback.setStatus('mandatory')
if mibBuilder.loadTexts: onuSerialPortLoopback.setDescription('ONU serial port loopback test.')
mibBuilder.exportSymbols("NMS-EPON-ONU-SERIAL-PORT", onuSerialPortPropRowStatus=onuSerialPortPropRowStatus, onuSerialPortKeepaliveRowStatus=onuSerialPortKeepaliveRowStatus, onuSerialPortKeepaliveIdle=onuSerialPortKeepaliveIdle, onuSerialPortSeqNo=onuSerialPortSeqNo, onuSerialPortParity=onuSerialPortParity, onuSerialPortKeepaliveProbeCount=onuSerialPortKeepaliveProbeCount, onuSerialPortKeepaliveTimeout=onuSerialPortKeepaliveTimeout, nmsEponOnuSerialPortTable=nmsEponOnuSerialPortTable, onuSerialPortSpeed=onuSerialPortSpeed, llidIfIndex=llidIfIndex, onuSerialPortBufferRowStatus=onuSerialPortBufferRowStatus, onuSerialPortDataBits=onuSerialPortDataBits, onuSerialPortDataReadInterval=onuSerialPortDataReadInterval, onuSerialPortHaltBits=onuSerialPortHaltBits, nmsEponOnuSerialPort=nmsEponOnuSerialPort, onuSerialPortDataReadBytes=onuSerialPortDataReadBytes, nmsEponOnuSerialPortEntry=nmsEponOnuSerialPortEntry, onuSerialPortFlowControl=onuSerialPortFlowControl, onuSerialPortLoopback=onuSerialPortLoopback, onuSerialPortKeepaliveMode=onuSerialPortKeepaliveMode)
| (object_identifier, integer, octet_string) = mibBuilder.importSymbols('ASN1', 'ObjectIdentifier', 'Integer', 'OctetString')
(named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues')
(value_range_constraint, value_size_constraint, constraints_union, single_value_constraint, constraints_intersection) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'ValueRangeConstraint', 'ValueSizeConstraint', 'ConstraintsUnion', 'SingleValueConstraint', 'ConstraintsIntersection')
(nms_epon_group,) = mibBuilder.importSymbols('NMS-SMI', 'nmsEPONGroup')
(notification_group, module_compliance) = mibBuilder.importSymbols('SNMPv2-CONF', 'NotificationGroup', 'ModuleCompliance')
(object_identity, gauge32, bits, module_identity, mib_identifier, notification_type, ip_address, iso, counter32, unsigned32, time_ticks, integer32, counter64, mib_scalar, mib_table, mib_table_row, mib_table_column) = mibBuilder.importSymbols('SNMPv2-SMI', 'ObjectIdentity', 'Gauge32', 'Bits', 'ModuleIdentity', 'MibIdentifier', 'NotificationType', 'IpAddress', 'iso', 'Counter32', 'Unsigned32', 'TimeTicks', 'Integer32', 'Counter64', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn')
(textual_convention, display_string, truth_value, row_status, phys_address, mac_address) = mibBuilder.importSymbols('SNMPv2-TC', 'TextualConvention', 'DisplayString', 'TruthValue', 'RowStatus', 'PhysAddress', 'MacAddress')
nms_epon_onu_serial_port = mib_identifier((1, 3, 6, 1, 4, 1, 11606, 10, 101, 27))
nms_epon_onu_serial_port_table = mib_table((1, 3, 6, 1, 4, 1, 11606, 10, 101, 27, 1))
if mibBuilder.loadTexts:
nmsEponOnuSerialPortTable.setStatus('mandatory')
if mibBuilder.loadTexts:
nmsEponOnuSerialPortTable.setDescription('A list of epon ONU serial port table entries.')
nms_epon_onu_serial_port_entry = mib_table_row((1, 3, 6, 1, 4, 1, 11606, 10, 101, 27, 1, 1)).setIndexNames((0, 'NMS-EPON-ONU-SERIAL-PORT', 'llidIfIndex'), (0, 'NMS-EPON-ONU-SERIAL-PORT', 'onuSerialPortSeqNo'))
if mibBuilder.loadTexts:
nmsEponOnuSerialPortEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
nmsEponOnuSerialPortEntry.setDescription('A collection of additional objects in the epon ONU serial port table.')
llid_if_index = mib_table_column((1, 3, 6, 1, 4, 1, 11606, 10, 101, 27, 1, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
llidIfIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
llidIfIndex.setDescription('LLID interface id, unique in system. The same value as NMS-EPON-LLID mib index.')
onu_serial_port_seq_no = mib_table_column((1, 3, 6, 1, 4, 1, 11606, 10, 101, 27, 1, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(224, 239))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
onuSerialPortSeqNo.setStatus('mandatory')
if mibBuilder.loadTexts:
onuSerialPortSeqNo.setDescription('ONU serial port sequence number, unique in one ONU.')
onu_serial_port_speed = mib_table_column((1, 3, 6, 1, 4, 1, 11606, 10, 101, 27, 1, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(300, 115200))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
onuSerialPortSpeed.setStatus('mandatory')
if mibBuilder.loadTexts:
onuSerialPortSpeed.setDescription('ONU serial port speed. Default value is 9600.')
onu_serial_port_data_bits = mib_table_column((1, 3, 6, 1, 4, 1, 11606, 10, 101, 27, 1, 1, 4), integer32().subtype(subtypeSpec=value_range_constraint(5, 8))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
onuSerialPortDataBits.setStatus('mandatory')
if mibBuilder.loadTexts:
onuSerialPortDataBits.setDescription('ONU serial port data bits. Default value is 8.')
onu_serial_port_halt_bits = mib_table_column((1, 3, 6, 1, 4, 1, 11606, 10, 101, 27, 1, 1, 5), integer32().subtype(subtypeSpec=value_range_constraint(1, 2))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
onuSerialPortHaltBits.setStatus('mandatory')
if mibBuilder.loadTexts:
onuSerialPortHaltBits.setDescription('ONU serial port halt bits. Default value is 1.')
onu_serial_port_parity = mib_table_column((1, 3, 6, 1, 4, 1, 11606, 10, 101, 27, 1, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('none', 0), ('odd', 1), ('even', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
onuSerialPortParity.setStatus('mandatory')
if mibBuilder.loadTexts:
onuSerialPortParity.setDescription('ONU serial port parity. Default value is 0-none.')
onu_serial_port_flow_control = mib_table_column((1, 3, 6, 1, 4, 1, 11606, 10, 101, 27, 1, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('none', 0), ('software', 1), ('hardware', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
onuSerialPortFlowControl.setStatus('mandatory')
if mibBuilder.loadTexts:
onuSerialPortFlowControl.setDescription('ONU serial port parity. Default value is 0-none.')
onu_serial_port_prop_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 11606, 10, 101, 27, 1, 1, 8), row_status()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
onuSerialPortPropRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts:
onuSerialPortPropRowStatus.setDescription('ONU serial port properties row status.These five item are set together: onuSerialPortSpeed, onuSerialPortDataBits, onuSerialPortHaltBits, onuSerialPortParity, onuSerialPortFlowControl. ')
onu_serial_port_data_read_interval = mib_table_column((1, 3, 6, 1, 4, 1, 11606, 10, 101, 27, 1, 1, 9), integer32().subtype(subtypeSpec=value_range_constraint(10, 100000))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
onuSerialPortDataReadInterval.setStatus('mandatory')
if mibBuilder.loadTexts:
onuSerialPortDataReadInterval.setDescription('ONU serial port buffer data read interval. Unit is mili-second, and default value is 100 ms.')
onu_serial_port_data_read_bytes = mib_table_column((1, 3, 6, 1, 4, 1, 11606, 10, 101, 27, 1, 1, 10), integer32().subtype(subtypeSpec=value_range_constraint(10, 1000))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
onuSerialPortDataReadBytes.setStatus('mandatory')
if mibBuilder.loadTexts:
onuSerialPortDataReadBytes.setDescription('ONU serial port buffer data read bytes. When storage is up to limit, the bytes must be sent out. Default value is 100.')
onu_serial_port_buffer_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 11606, 10, 101, 27, 1, 1, 11), row_status()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
onuSerialPortBufferRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts:
onuSerialPortBufferRowStatus.setDescription('ONU serial port buffer setting row status.These two item are set together: onuSerialPortDataReadInterval, onuSerialPortDataReadBytes. ')
onu_serial_port_keepalive_mode = mib_table_column((1, 3, 6, 1, 4, 1, 11606, 10, 101, 27, 1, 1, 12), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('disable', 0), ('enable', 1)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
onuSerialPortKeepaliveMode.setStatus('mandatory')
if mibBuilder.loadTexts:
onuSerialPortKeepaliveMode.setDescription('ONU serial port keepalive mode. 0-disable, 1-enable.')
onu_serial_port_keepalive_idle = mib_table_column((1, 3, 6, 1, 4, 1, 11606, 10, 101, 27, 1, 1, 13), integer32().subtype(subtypeSpec=value_range_constraint(1, 10000))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
onuSerialPortKeepaliveIdle.setStatus('mandatory')
if mibBuilder.loadTexts:
onuSerialPortKeepaliveIdle.setDescription('ONU serial port keepalive idle. if there is no r/x package in time of onuSerialPortKeepaliveIdle, system will send keepalive package to probe. Unit is second, and default value is 100 s.')
onu_serial_port_keepalive_timeout = mib_table_column((1, 3, 6, 1, 4, 1, 11606, 10, 101, 27, 1, 1, 14), integer32().subtype(subtypeSpec=value_range_constraint(1, 10000))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
onuSerialPortKeepaliveTimeout.setStatus('mandatory')
if mibBuilder.loadTexts:
onuSerialPortKeepaliveTimeout.setDescription('ONU serial port keepalive timeout. if there is no r/x package in time of onuSerialPortKeepaliveIdle, system will send keepalive package to probe. And if there is no rsponse package in onuSerialPortKeepaliveTimeout, this keepalive package is timeout. Unit is second, and default value is 100 s.')
onu_serial_port_keepalive_probe_count = mib_table_column((1, 3, 6, 1, 4, 1, 11606, 10, 101, 27, 1, 1, 15), integer32().subtype(subtypeSpec=value_range_constraint(1, 1000))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
onuSerialPortKeepaliveProbeCount.setStatus('mandatory')
if mibBuilder.loadTexts:
onuSerialPortKeepaliveProbeCount.setDescription('ONU serial port keepalive probing package sending count. Default value is 3.')
onu_serial_port_keepalive_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 11606, 10, 101, 27, 1, 1, 16), row_status()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
onuSerialPortKeepaliveRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts:
onuSerialPortKeepaliveRowStatus.setDescription('ONU serial port keepalive setting value row status. These three items are set together: onuSerialPortKeepaliveIdle, onuSerialPortKeepaliveTimeout, onuSerialPortKeepaliveProbeCount.')
onu_serial_port_loopback = mib_table_column((1, 3, 6, 1, 4, 1, 11606, 10, 101, 27, 1, 1, 17), truth_value()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
onuSerialPortLoopback.setStatus('mandatory')
if mibBuilder.loadTexts:
onuSerialPortLoopback.setDescription('ONU serial port loopback test.')
mibBuilder.exportSymbols('NMS-EPON-ONU-SERIAL-PORT', onuSerialPortPropRowStatus=onuSerialPortPropRowStatus, onuSerialPortKeepaliveRowStatus=onuSerialPortKeepaliveRowStatus, onuSerialPortKeepaliveIdle=onuSerialPortKeepaliveIdle, onuSerialPortSeqNo=onuSerialPortSeqNo, onuSerialPortParity=onuSerialPortParity, onuSerialPortKeepaliveProbeCount=onuSerialPortKeepaliveProbeCount, onuSerialPortKeepaliveTimeout=onuSerialPortKeepaliveTimeout, nmsEponOnuSerialPortTable=nmsEponOnuSerialPortTable, onuSerialPortSpeed=onuSerialPortSpeed, llidIfIndex=llidIfIndex, onuSerialPortBufferRowStatus=onuSerialPortBufferRowStatus, onuSerialPortDataBits=onuSerialPortDataBits, onuSerialPortDataReadInterval=onuSerialPortDataReadInterval, onuSerialPortHaltBits=onuSerialPortHaltBits, nmsEponOnuSerialPort=nmsEponOnuSerialPort, onuSerialPortDataReadBytes=onuSerialPortDataReadBytes, nmsEponOnuSerialPortEntry=nmsEponOnuSerialPortEntry, onuSerialPortFlowControl=onuSerialPortFlowControl, onuSerialPortLoopback=onuSerialPortLoopback, onuSerialPortKeepaliveMode=onuSerialPortKeepaliveMode) |
running = True
while running:
guess = str(input("Please enter a number:"))
isdigit = str.isdigit(guess)
if isdigit == True:
print("True")
else:
print("False")
else:
print("Done.")
| running = True
while running:
guess = str(input('Please enter a number:'))
isdigit = str.isdigit(guess)
if isdigit == True:
print('True')
else:
print('False')
else:
print('Done.') |
__version__ = '0.1.0'
def cli():
print("Hello from parent CLI!")
| __version__ = '0.1.0'
def cli():
print('Hello from parent CLI!') |
class Speed:
def __init__(self, base_speed):
self.base_speed = base_speed
self.misc = []
def get_speed(self):
return (
self.base_speed +
sum(map(lambda x: x(), self.misc)))
| class Speed:
def __init__(self, base_speed):
self.base_speed = base_speed
self.misc = []
def get_speed(self):
return self.base_speed + sum(map(lambda x: x(), self.misc)) |
#!/usr/bin/env python3
# For loop triangle
STAR = 9
for i in range(0, STAR):
for j in range(i):
print("*", end='')
print()
print()
# For Loop for reverse triangel
for i in range(STAR, 0, -1):
for j in range(i):
print("*", end='')
print("")
print()
# For Loop for opposite triangle
for i in range(STAR, 0, -1):
for j in range(i):
print(" ", end='')
for k in range(STAR-j):
print ("*", end='')
print()
print()
# For loop for pyrimid
for i in range(STAR, 0, -1):
for j in range(i):
if(j % 2 == 0):
print(" ", end='')
for k in range(STAR-j):
if(i % 2 != 0):
print("*", end='')
if(j % 2 != 0):
print()
print()
print()
# For loop for inverted pyrimid
for i in range(STAR, 0, -1):
for j in range(i):
if(j % 2 == 0):
print("*", end='')
if(j % 2 != 0):
print()
print()
print()
# For loop for inverted pyrimid
for i in range(STAR, 0, -1):
# print(i, end='')
for j in range(i):
if(j % 2 == 0):
print("*", end='')
if(j % 2 != 0):
print("")
if (i % 2 == 0):
for k in range(STAR, i, -2):
print(" ", end='')
print()
# For loop for kite
| star = 9
for i in range(0, STAR):
for j in range(i):
print('*', end='')
print()
print()
for i in range(STAR, 0, -1):
for j in range(i):
print('*', end='')
print('')
print()
for i in range(STAR, 0, -1):
for j in range(i):
print(' ', end='')
for k in range(STAR - j):
print('*', end='')
print()
print()
for i in range(STAR, 0, -1):
for j in range(i):
if j % 2 == 0:
print(' ', end='')
for k in range(STAR - j):
if i % 2 != 0:
print('*', end='')
if j % 2 != 0:
print()
print()
print()
for i in range(STAR, 0, -1):
for j in range(i):
if j % 2 == 0:
print('*', end='')
if j % 2 != 0:
print()
print()
print()
for i in range(STAR, 0, -1):
for j in range(i):
if j % 2 == 0:
print('*', end='')
if j % 2 != 0:
print('')
if i % 2 == 0:
for k in range(STAR, i, -2):
print(' ', end='')
print() |
t = int(input())
answer = []
for a in range(t):
line = [int(i) for i in input().split()]
n = line[3]
line.pop(3)
line.sort()
a = line[0]
b = line[1]
c = line[2]
if(n<2*c-b-a):
answer.append("NO")
elif((n-2*c+b+a)%3==0):
answer.append("Yes")
else:
answer.append("NO")
for b in answer:
print(b)
| t = int(input())
answer = []
for a in range(t):
line = [int(i) for i in input().split()]
n = line[3]
line.pop(3)
line.sort()
a = line[0]
b = line[1]
c = line[2]
if n < 2 * c - b - a:
answer.append('NO')
elif (n - 2 * c + b + a) % 3 == 0:
answer.append('Yes')
else:
answer.append('NO')
for b in answer:
print(b) |
#
# PySNMP MIB module OMNI-gx2RX200-MIB (http://snmplabs.com/pysmi)
# ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/OMNI-gx2RX200-MIB
# Produced by pysmi-0.3.4 at Wed May 1 14:33:46 2019
# On host DAVWANG4-M-1475 platform Darwin version 18.5.0 by user davwang4
# Using Python version 3.7.3 (default, Mar 27 2019, 09:23:15)
#
OctetString, Integer, ObjectIdentifier = mibBuilder.importSymbols("ASN1", "OctetString", "Integer", "ObjectIdentifier")
NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues")
SingleValueConstraint, ValueRangeConstraint, ConstraintsUnion, ValueSizeConstraint, ConstraintsIntersection = mibBuilder.importSymbols("ASN1-REFINEMENT", "SingleValueConstraint", "ValueRangeConstraint", "ConstraintsUnion", "ValueSizeConstraint", "ConstraintsIntersection")
gx2Rx200, = mibBuilder.importSymbols("GX2HFC-MIB", "gx2Rx200")
motproxies, gi = mibBuilder.importSymbols("NLS-BBNIDENT-MIB", "motproxies", "gi")
trapNetworkElemAvailStatus, trapNETrapLastTrapTimeStamp, trapIdentifier, trapText, trapNetworkElemAdminState, trapChangedObjectId, trapNetworkElemAlarmStatus, trapChangedValueDisplayString, trapNetworkElemOperState, trapChangedValueInteger, trapPerceivedSeverity, trapNetworkElemSerialNum, trapNetworkElemModelNumber = mibBuilder.importSymbols("NLSBBN-TRAPS-MIB", "trapNetworkElemAvailStatus", "trapNETrapLastTrapTimeStamp", "trapIdentifier", "trapText", "trapNetworkElemAdminState", "trapChangedObjectId", "trapNetworkElemAlarmStatus", "trapChangedValueDisplayString", "trapNetworkElemOperState", "trapChangedValueInteger", "trapPerceivedSeverity", "trapNetworkElemSerialNum", "trapNetworkElemModelNumber")
NotificationGroup, ModuleCompliance = mibBuilder.importSymbols("SNMPv2-CONF", "NotificationGroup", "ModuleCompliance")
sysUpTime, = mibBuilder.importSymbols("SNMPv2-MIB", "sysUpTime")
IpAddress, MibScalar, MibTable, MibTableRow, MibTableColumn, Integer32, Counter64, NotificationType, Counter32, ObjectIdentity, Unsigned32, ModuleIdentity, TimeTicks, NotificationType, Bits, Gauge32, MibIdentifier, iso = mibBuilder.importSymbols("SNMPv2-SMI", "IpAddress", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "Integer32", "Counter64", "NotificationType", "Counter32", "ObjectIdentity", "Unsigned32", "ModuleIdentity", "TimeTicks", "NotificationType", "Bits", "Gauge32", "MibIdentifier", "iso")
TextualConvention, DisplayString = mibBuilder.importSymbols("SNMPv2-TC", "TextualConvention", "DisplayString")
class Float(Counter32):
pass
class U32Data(Counter32):
pass
gx2Rx200Descriptor = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 1))
gx2Rx200AnalogTable = MibTable((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 2), )
if mibBuilder.loadTexts: gx2Rx200AnalogTable.setStatus('mandatory')
if mibBuilder.loadTexts: gx2Rx200AnalogTable.setDescription('This table contains gx2Rx200 specific parameters with nominal and current values.')
gx2Rx200AnalogEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 2, 1), ).setIndexNames((0, "OMNI-gx2RX200-MIB", "rxgx2Rx200AnalogTableIndex"))
if mibBuilder.loadTexts: gx2Rx200AnalogEntry.setStatus('mandatory')
if mibBuilder.loadTexts: gx2Rx200AnalogEntry.setDescription('This list contains digital product class and the associated RF channel parameters and descriptions.')
gx2Rx200DigitalTable = MibTable((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 3), )
if mibBuilder.loadTexts: gx2Rx200DigitalTable.setStatus('mandatory')
if mibBuilder.loadTexts: gx2Rx200DigitalTable.setDescription('This table contains gx2Rx200 specific parameters with nominal and current values.')
gx2Rx200DigitalEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 3, 2), ).setIndexNames((0, "OMNI-gx2RX200-MIB", "rxgx2Rx200DigitalTableIndex"))
if mibBuilder.loadTexts: gx2Rx200DigitalEntry.setStatus('mandatory')
if mibBuilder.loadTexts: gx2Rx200DigitalEntry.setDescription('This list contains digital product class and the associated RF channel parameters and descriptions.')
gx2Rx200StatusTable = MibTable((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 4), )
if mibBuilder.loadTexts: gx2Rx200StatusTable.setStatus('mandatory')
if mibBuilder.loadTexts: gx2Rx200StatusTable.setDescription('This table contains gx2Rx200 specific parameters with nominal and current values.')
gx2Rx200StatusEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 4, 3), ).setIndexNames((0, "OMNI-gx2RX200-MIB", "rxgx2Rx200StatusTableIndex"))
if mibBuilder.loadTexts: gx2Rx200StatusEntry.setStatus('mandatory')
if mibBuilder.loadTexts: gx2Rx200StatusEntry.setDescription('This list contains digital product class and the associated RF channel parameters and descriptions.')
gx2Rx200FactoryTable = MibTable((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 5), )
if mibBuilder.loadTexts: gx2Rx200FactoryTable.setStatus('mandatory')
if mibBuilder.loadTexts: gx2Rx200FactoryTable.setDescription('This table contains gx2Rx200 specific parameters with nominal and current values.')
gx2Rx200FactoryEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 5, 4), ).setIndexNames((0, "OMNI-gx2RX200-MIB", "rxgx2Rx200FactoryTableIndex"))
if mibBuilder.loadTexts: gx2Rx200FactoryEntry.setStatus('mandatory')
if mibBuilder.loadTexts: gx2Rx200FactoryEntry.setDescription('This list contains digital product class and the associated RF channel parameters and descriptions.')
gx2Rx200HoldTimeTable = MibTable((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 6), )
if mibBuilder.loadTexts: gx2Rx200HoldTimeTable.setStatus('mandatory')
if mibBuilder.loadTexts: gx2Rx200HoldTimeTable.setDescription('This table contains gx2Rx200 specific parameters with nominal and current values.')
gx2Rx200HoldTimeEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 6, 5), ).setIndexNames((0, "OMNI-gx2RX200-MIB", "rxgx2Rx200HoldTimeTableIndex"), (0, "OMNI-gx2RX200-MIB", "rxgx2Rx200HoldTimeSpecIndex"))
if mibBuilder.loadTexts: gx2Rx200HoldTimeEntry.setStatus('mandatory')
if mibBuilder.loadTexts: gx2Rx200HoldTimeEntry.setDescription('This list contains digital product class and the associated RF channel parameters and descriptions.')
rxgx2Rx200AnalogTableIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 2, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 4294967295))).setMaxAccess("readonly")
if mibBuilder.loadTexts: rxgx2Rx200AnalogTableIndex.setStatus('mandatory')
if mibBuilder.loadTexts: rxgx2Rx200AnalogTableIndex.setDescription('The value of this object identifies the network element. This index is equal to the hfcCommonTableIndex for the same element.')
rxlabelModTemp = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 2, 1, 2), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 80))).setMaxAccess("readonly")
if mibBuilder.loadTexts: rxlabelModTemp.setStatus('optional')
if mibBuilder.loadTexts: rxlabelModTemp.setDescription('The value of this object provides the label of the Module Temperature Analog parameter.')
rxuomModTemp = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 2, 1, 3), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 80))).setMaxAccess("readonly")
if mibBuilder.loadTexts: rxuomModTemp.setStatus('optional')
if mibBuilder.loadTexts: rxuomModTemp.setDescription('The value of this object provides the Unit of Measure of the Module Temperature Analog parameter.')
rxmajorHighModTemp = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 2, 1, 4), Float()).setMaxAccess("readonly")
if mibBuilder.loadTexts: rxmajorHighModTemp.setStatus('mandatory')
if mibBuilder.loadTexts: rxmajorHighModTemp.setDescription('The value of this object provides the Major High alarm value of the Module Temperature Analog parameter. This value is a floating point number that is represented as an IEEE 32 bit number.')
rxmajorLowModTemp = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 2, 1, 5), Float()).setMaxAccess("readonly")
if mibBuilder.loadTexts: rxmajorLowModTemp.setStatus('mandatory')
if mibBuilder.loadTexts: rxmajorLowModTemp.setDescription('The value of this object provides the Major Low alarm value of the Module Temperature Analog parameter. This value is a floating point number that is represented as an IEEE 32 bit number.')
rxminorHighModTemp = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 2, 1, 6), Float()).setMaxAccess("readonly")
if mibBuilder.loadTexts: rxminorHighModTemp.setStatus('mandatory')
if mibBuilder.loadTexts: rxminorHighModTemp.setDescription('The value of this object provides the Minor High alarm value of the Module Temperature Analog parameter. This value is a floating point number that is represented as an IEEE 32 bit number.')
rxminorLowModTemp = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 2, 1, 7), Float()).setMaxAccess("readonly")
if mibBuilder.loadTexts: rxminorLowModTemp.setStatus('mandatory')
if mibBuilder.loadTexts: rxminorLowModTemp.setDescription('The value of this object provides the Minor Low alarm value of the Module Temperature Analog parameter. This value is a floating point number that is represented as an IEEE 32 bit number.')
rxcurrentValueModTemp = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 2, 1, 8), Float()).setMaxAccess("readonly")
if mibBuilder.loadTexts: rxcurrentValueModTemp.setStatus('mandatory')
if mibBuilder.loadTexts: rxcurrentValueModTemp.setDescription('The value of this object provides the Current value of the Module Temperature Analog parameter. This value is a floating point number that is represented as an IEEE 32 bit number.')
rxstateFlagModTemp = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 2, 1, 9), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("hidden", 1), ("read-only", 2), ("updateable", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: rxstateFlagModTemp.setStatus('mandatory')
if mibBuilder.loadTexts: rxstateFlagModTemp.setDescription('The value of this object provides the state of the Module Temperature Analog parameter. (0-Hidden 1-Read-Only, 2-Updateable).')
rxminValueModTemp = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 2, 1, 10), Float()).setMaxAccess("readonly")
if mibBuilder.loadTexts: rxminValueModTemp.setStatus('mandatory')
if mibBuilder.loadTexts: rxminValueModTemp.setDescription('The value of this object provides the minimum value of the Module Temperature Analog parameter. This value is a floating point number that is represented as an IEEE 32 bit number.')
rxmaxValueModTemp = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 2, 1, 11), Float()).setMaxAccess("readonly")
if mibBuilder.loadTexts: rxmaxValueModTemp.setStatus('mandatory')
if mibBuilder.loadTexts: rxmaxValueModTemp.setDescription('The value of this object provides the maximum value of the Module Temperature Analog parameter. This value is a floating point number that is represented as an IEEE 32 bit number.')
rxalarmStateModTemp = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 2, 1, 12), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6))).clone(namedValues=NamedValues(("noAlarm", 1), ("majorLowAlarm", 2), ("minorLowAlarm", 3), ("minorHighAlarm", 4), ("majorHighAlarm", 5), ("informational", 6)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: rxalarmStateModTemp.setStatus('mandatory')
if mibBuilder.loadTexts: rxalarmStateModTemp.setDescription('The value of this object provides the curent alarm state of the Module Temperature Analog parameter.')
rxlabelFanCurrent = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 2, 1, 13), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 80))).setMaxAccess("readonly")
if mibBuilder.loadTexts: rxlabelFanCurrent.setStatus('optional')
if mibBuilder.loadTexts: rxlabelFanCurrent.setDescription('The value of this object provides the label of the Fan Current Analog parameter.')
rxuomFanCurrent = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 2, 1, 14), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 80))).setMaxAccess("readonly")
if mibBuilder.loadTexts: rxuomFanCurrent.setStatus('optional')
if mibBuilder.loadTexts: rxuomFanCurrent.setDescription('The value of this object provides the Unit of Measure of the Fan Current Analog parameter.')
rxmajorHighFanCurrent = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 2, 1, 15), Float()).setMaxAccess("readonly")
if mibBuilder.loadTexts: rxmajorHighFanCurrent.setStatus('mandatory')
if mibBuilder.loadTexts: rxmajorHighFanCurrent.setDescription('The value of this object provides the Major High alarm value of the Fan Current Analog parameter. This value is a floating point number that is represented as an IEEE 32 bit number.')
rxmajorLowFanCurrent = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 2, 1, 16), Float()).setMaxAccess("readonly")
if mibBuilder.loadTexts: rxmajorLowFanCurrent.setStatus('mandatory')
if mibBuilder.loadTexts: rxmajorLowFanCurrent.setDescription('The value of this object provides the Major Low alarm value of the Fan Current Analog parameter. This value is a floating point number that is represented as an IEEE 32 bit number.')
rxminorHighFanCurrent = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 2, 1, 17), Float()).setMaxAccess("readonly")
if mibBuilder.loadTexts: rxminorHighFanCurrent.setStatus('mandatory')
if mibBuilder.loadTexts: rxminorHighFanCurrent.setDescription('The value of this object provides the Minor High alarm value of the Fan Current Analog parameter. This value is a floating point number that is represented as an IEEE 32 bit number.')
rxminorLowFanCurrent = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 2, 1, 18), Float()).setMaxAccess("readonly")
if mibBuilder.loadTexts: rxminorLowFanCurrent.setStatus('mandatory')
if mibBuilder.loadTexts: rxminorLowFanCurrent.setDescription('The value of this object provides the Minor Low alarm value of the Fan Current Analog parameter. This value is a floating point number that is represented as an IEEE 32 bit number.')
rxcurrentValueFanCurrent = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 2, 1, 19), Float()).setMaxAccess("readonly")
if mibBuilder.loadTexts: rxcurrentValueFanCurrent.setStatus('mandatory')
if mibBuilder.loadTexts: rxcurrentValueFanCurrent.setDescription('The value of this object provides the Current value of the Fan Current Analog parameter. This value is a floating point number that is represented as an IEEE 32 bit number.')
rxstateFlagFanCurrent = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 2, 1, 20), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("hidden", 1), ("read-only", 2), ("updateable", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: rxstateFlagFanCurrent.setStatus('mandatory')
if mibBuilder.loadTexts: rxstateFlagFanCurrent.setDescription('The value of this object provides the state of the Fan Current Analog parameter. (0-Hidden 1-Read-Only, 2-Updateable).')
rxminValueFanCurrent = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 2, 1, 21), Float()).setMaxAccess("readonly")
if mibBuilder.loadTexts: rxminValueFanCurrent.setStatus('mandatory')
if mibBuilder.loadTexts: rxminValueFanCurrent.setDescription('The value of this object provides the minimum value of the Fan Current Analog parameter. This value is a floating point number that is represented as an IEEE 32 bit number.')
rxmaxValueFanCurrent = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 2, 1, 22), Float()).setMaxAccess("readonly")
if mibBuilder.loadTexts: rxmaxValueFanCurrent.setStatus('mandatory')
if mibBuilder.loadTexts: rxmaxValueFanCurrent.setDescription('The value of this object provides the maximum value of the Fan Current Analog parameter. This value is a floating point number that is represented as an IEEE 32 bit number.')
rxalarmStateFanCurrent = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 2, 1, 23), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6))).clone(namedValues=NamedValues(("noAlarm", 1), ("majorLowAlarm", 2), ("minorLowAlarm", 3), ("minorHighAlarm", 4), ("majorHighAlarm", 5), ("informational", 6)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: rxalarmStateFanCurrent.setStatus('mandatory')
if mibBuilder.loadTexts: rxalarmStateFanCurrent.setDescription('The value of this object provides the curent alarm state of the Fan Current Analog parameter.')
rxlabel12Volt = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 2, 1, 24), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 80))).setMaxAccess("readonly")
if mibBuilder.loadTexts: rxlabel12Volt.setStatus('optional')
if mibBuilder.loadTexts: rxlabel12Volt.setDescription('The value of this object provides the label of the 12v Current Analog parameter.')
rxuom12Volt = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 2, 1, 25), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 80))).setMaxAccess("readonly")
if mibBuilder.loadTexts: rxuom12Volt.setStatus('optional')
if mibBuilder.loadTexts: rxuom12Volt.setDescription('The value of this object provides the Unit of Measure of the 12v Current Analog parameter.')
rxmajorHigh12Volt = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 2, 1, 26), Float()).setMaxAccess("readonly")
if mibBuilder.loadTexts: rxmajorHigh12Volt.setStatus('mandatory')
if mibBuilder.loadTexts: rxmajorHigh12Volt.setDescription('The value of this object provides the Major High alarm value of the 12 Volt Current Analog parameter. This value is a floating point number that is represented as an IEEE 32 bit number.')
rxmajorLow12Volt = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 2, 1, 27), Float()).setMaxAccess("readonly")
if mibBuilder.loadTexts: rxmajorLow12Volt.setStatus('mandatory')
if mibBuilder.loadTexts: rxmajorLow12Volt.setDescription('The value of this object provides the Major Low alarm value of the 12 Volt Current Analog parameter. This value is a floating point number that is represented as an IEEE 32 bit number.')
rxminorHigh12Volt = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 2, 1, 28), Float()).setMaxAccess("readonly")
if mibBuilder.loadTexts: rxminorHigh12Volt.setStatus('mandatory')
if mibBuilder.loadTexts: rxminorHigh12Volt.setDescription('The value of this object provides the Minor High alarm value of the 12 Volt Current Analog parameter. This value is a floating point number that is represented as an IEEE 32 bit number.')
rxminorLow12Volt = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 2, 1, 29), Float()).setMaxAccess("readonly")
if mibBuilder.loadTexts: rxminorLow12Volt.setStatus('mandatory')
if mibBuilder.loadTexts: rxminorLow12Volt.setDescription('The value of this object provides the Minor Low alarm value of the 12 Volt Current Analog parameter. This value is a floating point number that is represented as an IEEE 32 bit number.')
rxcurrentValue12Volt = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 2, 1, 30), Float()).setMaxAccess("readonly")
if mibBuilder.loadTexts: rxcurrentValue12Volt.setStatus('mandatory')
if mibBuilder.loadTexts: rxcurrentValue12Volt.setDescription('The value of this object provides the Current value of the 12 Volt Current Analog parameter. This value is a floating point number that is represented as an IEEE 32 bit number.')
rxstateFlag12Volt = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 2, 1, 31), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("hidden", 1), ("read-only", 2), ("updateable", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: rxstateFlag12Volt.setStatus('mandatory')
if mibBuilder.loadTexts: rxstateFlag12Volt.setDescription('The value of this object provides the state of the 12v Current Analog parameter. (0-Hidden 1-Read-Only, 2-Updateable).')
rxminValue12Volt = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 2, 1, 32), Float()).setMaxAccess("readonly")
if mibBuilder.loadTexts: rxminValue12Volt.setStatus('mandatory')
if mibBuilder.loadTexts: rxminValue12Volt.setDescription('The value of this object provides the minimum value of the 12 Volt Current Analog parameter. This value is a floating point number that is represented as an IEEE 32 bit number.')
rxmaxValue12Volt = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 2, 1, 33), Float()).setMaxAccess("readonly")
if mibBuilder.loadTexts: rxmaxValue12Volt.setStatus('mandatory')
if mibBuilder.loadTexts: rxmaxValue12Volt.setDescription('The value of this object provides the maximum value of the 12 Volt Current Analog parameter. This value is a floating point number that is represented as an IEEE 32 bit number.')
rxalarmState12Volt = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 2, 1, 34), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6))).clone(namedValues=NamedValues(("noAlarm", 1), ("majorLowAlarm", 2), ("minorLowAlarm", 3), ("minorHighAlarm", 4), ("majorHighAlarm", 5), ("informational", 6)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: rxalarmState12Volt.setStatus('mandatory')
if mibBuilder.loadTexts: rxalarmState12Volt.setDescription('The value of this object provides the curent alarm state of the 12v Current Analog parameter.')
rxlabelOptPower = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 2, 1, 35), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 80))).setMaxAccess("readonly")
if mibBuilder.loadTexts: rxlabelOptPower.setStatus('optional')
if mibBuilder.loadTexts: rxlabelOptPower.setDescription('The value of this object provides the label of the Optical Power Analog parameter.')
rxuomOptPower = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 2, 1, 36), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 80))).setMaxAccess("readonly")
if mibBuilder.loadTexts: rxuomOptPower.setStatus('optional')
if mibBuilder.loadTexts: rxuomOptPower.setDescription('The value of this object provides the Unit of Measure of the Optical Power Analog parameter.')
rxmajorHighOptPower = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 2, 1, 37), Float()).setMaxAccess("readonly")
if mibBuilder.loadTexts: rxmajorHighOptPower.setStatus('mandatory')
if mibBuilder.loadTexts: rxmajorHighOptPower.setDescription('The value of this object provides the Major High alarm value of the Optical Power Analog parameter. This value is a floating point number that is represented as an IEEE 32 bit number.')
rxmajorLowOptPower = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 2, 1, 38), Float()).setMaxAccess("readonly")
if mibBuilder.loadTexts: rxmajorLowOptPower.setStatus('mandatory')
if mibBuilder.loadTexts: rxmajorLowOptPower.setDescription('The value of this object provides the Major Low alarm value of the Optical Power Analog parameter. This value is a floating point number that is represented as an IEEE 32 bit number.')
rxminorHighOptPower = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 2, 1, 39), Float()).setMaxAccess("readonly")
if mibBuilder.loadTexts: rxminorHighOptPower.setStatus('mandatory')
if mibBuilder.loadTexts: rxminorHighOptPower.setDescription('The value of this object provides the Minor High alarm value of the Optical Power Analog parameter. This value is a floating point number that is represented as an IEEE 32 bit number.')
rxminorLowOptPower = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 2, 1, 40), Float()).setMaxAccess("readonly")
if mibBuilder.loadTexts: rxminorLowOptPower.setStatus('mandatory')
if mibBuilder.loadTexts: rxminorLowOptPower.setDescription('The value of this object provides the Minor Low alarm value of the Optical Power Analog parameter. This value is a floating point number that is represented as an IEEE 32 bit number.')
rxcurrentValueOptPower = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 2, 1, 41), Float()).setMaxAccess("readonly")
if mibBuilder.loadTexts: rxcurrentValueOptPower.setStatus('mandatory')
if mibBuilder.loadTexts: rxcurrentValueOptPower.setDescription('The value of this object provides the Current value of the Optical Power Analog parameter. This value is a floating point number that is represented as an IEEE 32 bit number.')
rxstateFlagOptPower = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 2, 1, 42), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("hidden", 1), ("read-only", 2), ("updateable", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: rxstateFlagOptPower.setStatus('mandatory')
if mibBuilder.loadTexts: rxstateFlagOptPower.setDescription('The value of this object provides the state of the Optical Power Analog parameter. (0-Hidden 1-Read-Only, 2-Updateable).')
rxminValueOptPower = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 2, 1, 43), Float()).setMaxAccess("readonly")
if mibBuilder.loadTexts: rxminValueOptPower.setStatus('mandatory')
if mibBuilder.loadTexts: rxminValueOptPower.setDescription('The value of this object provides the minimum value of the Optical Power Analog parameter. This value is a floating point number that is represented as an IEEE 32 bit number.')
rxmaxValueOptPower = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 2, 1, 44), Float()).setMaxAccess("readonly")
if mibBuilder.loadTexts: rxmaxValueOptPower.setStatus('mandatory')
if mibBuilder.loadTexts: rxmaxValueOptPower.setDescription('The value of this object provides the maximum value of the Optical Power Analog parameter. This value is a floating point number that is represented as an IEEE 32 bit number.')
rxalarmStateOptPower = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 2, 1, 45), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6))).clone(namedValues=NamedValues(("noAlarm", 1), ("majorLowAlarm", 2), ("minorLowAlarm", 3), ("minorHighAlarm", 4), ("majorHighAlarm", 5), ("informational", 6)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: rxalarmStateOptPower.setStatus('mandatory')
if mibBuilder.loadTexts: rxalarmStateOptPower.setDescription('The value of this object provides the curent alarm state of the Optical Power Analog parameter.')
rxgx2Rx200DigitalTableIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 3, 2, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 4294967295))).setMaxAccess("readonly")
if mibBuilder.loadTexts: rxgx2Rx200DigitalTableIndex.setStatus('mandatory')
if mibBuilder.loadTexts: rxgx2Rx200DigitalTableIndex.setDescription('The value of this object identifies the network element. This index is equal to the hfcCommonTableIndex for the same element.')
rxlabelMode = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 3, 2, 2), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 80))).setMaxAccess("readonly")
if mibBuilder.loadTexts: rxlabelMode.setStatus('optional')
if mibBuilder.loadTexts: rxlabelMode.setDescription("The value of this object provides the label of the RX200's Mode Digital parameter.")
rxenumMode = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 3, 2, 3), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 80))).setMaxAccess("readonly")
if mibBuilder.loadTexts: rxenumMode.setStatus('optional')
if mibBuilder.loadTexts: rxenumMode.setDescription('The value of this object represents the Enumeration values possible for the Digital parameter. Each Enumerated values is separated by a common. The first value has a enumerated value of 1.')
rxvalueMode = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 3, 2, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("off", 1), ("normal", 2), ("burst", 3)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: rxvalueMode.setStatus('mandatory')
if mibBuilder.loadTexts: rxvalueMode.setDescription('The value of this object is the current value of the parameter.')
rxstateFlagMode = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 3, 2, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("hidden", 1), ("read-only", 2), ("updateable", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: rxstateFlagMode.setStatus('mandatory')
if mibBuilder.loadTexts: rxstateFlagMode.setDescription('The value of this object provides the state of the the parameter. (0-Hidden 1-Read-Only, 2-Updateable).')
rxlabelWavelength = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 3, 2, 6), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 80))).setMaxAccess("readonly")
if mibBuilder.loadTexts: rxlabelWavelength.setStatus('optional')
if mibBuilder.loadTexts: rxlabelWavelength.setDescription("The value of this object provides the label of the RX200's Wavelength Digital parameter.")
rxenumWavelength = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 3, 2, 7), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 80))).setMaxAccess("readonly")
if mibBuilder.loadTexts: rxenumWavelength.setStatus('optional')
if mibBuilder.loadTexts: rxenumWavelength.setDescription('The value of this object represents the Enumeration values possible for the Digital parameter. Each Enumerated values is separated by a common. The first value has a enumerated value of 1.')
rxvalueWavelength = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 3, 2, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("nM1310", 1), ("nM1550", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: rxvalueWavelength.setStatus('mandatory')
if mibBuilder.loadTexts: rxvalueWavelength.setDescription('The value of this object is the current value of the parameter.')
rxstateFlagWavelength = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 3, 2, 9), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("hidden", 1), ("read-only", 2), ("updateable", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: rxstateFlagWavelength.setStatus('mandatory')
if mibBuilder.loadTexts: rxstateFlagWavelength.setDescription('The value of this object provides the state of the the parameter. (0-Hidden 1-Read-Only, 2-Updateable).')
rxlabelAttnSetting = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 3, 2, 10), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 80))).setMaxAccess("readonly")
if mibBuilder.loadTexts: rxlabelAttnSetting.setStatus('optional')
if mibBuilder.loadTexts: rxlabelAttnSetting.setDescription("The value of this object provides the label of the RX200's AttnSetting Digital parameter.")
rxenumAttnSetting = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 3, 2, 11), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 80))).setMaxAccess("readonly")
if mibBuilder.loadTexts: rxenumAttnSetting.setStatus('optional')
if mibBuilder.loadTexts: rxenumAttnSetting.setDescription('The value of this object represents the Enumeration values possible for the Digital parameter. Each Enumerated values is separated by a common. The first value has a enumerated value of 1.')
rxvalueAttnSetting = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 3, 2, 12), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: rxvalueAttnSetting.setStatus('mandatory')
if mibBuilder.loadTexts: rxvalueAttnSetting.setDescription('The value of this object is the current value of the parameter. It is an integer value from 0 to 40. Each increment represents 1/2 dB of attenuation from 0 to 20 dB. Where 0 = 0db and 40 = 20db')
rxstateFlagAttnSetting = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 3, 2, 13), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("hidden", 1), ("read-only", 2), ("updateable", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: rxstateFlagAttnSetting.setStatus('mandatory')
if mibBuilder.loadTexts: rxstateFlagAttnSetting.setDescription('The value of this object provides the state of the the parameter. (0-Hidden 1-Read-Only, 2-Updateable).')
rxlabelSwModeSetting = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 3, 2, 14), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 80))).setMaxAccess("readonly")
if mibBuilder.loadTexts: rxlabelSwModeSetting.setStatus('optional')
if mibBuilder.loadTexts: rxlabelSwModeSetting.setDescription("The value of this object provides the label of the RX200's Switch Mode Setting Digital parameter.")
rxenumSwModeSetting = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 3, 2, 15), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 80))).setMaxAccess("readonly")
if mibBuilder.loadTexts: rxenumSwModeSetting.setStatus('optional')
if mibBuilder.loadTexts: rxenumSwModeSetting.setDescription('The value of this object represents the Enumeration values possible for the Digital parameter. Each Enumerated values is separated by a common. The first value has a enumerated value of 1.')
rxvalueSwModeSetting = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 3, 2, 16), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("off", 1), ("alarm-only", 2), ("alarm-and-switch", 3)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: rxvalueSwModeSetting.setStatus('mandatory')
if mibBuilder.loadTexts: rxvalueSwModeSetting.setDescription('The value of this object is the current value of the parameter.')
rxstateFlagSwModeSetting = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 3, 2, 17), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("hidden", 1), ("read-only", 2), ("updateable", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: rxstateFlagSwModeSetting.setStatus('mandatory')
if mibBuilder.loadTexts: rxstateFlagSwModeSetting.setDescription('The value of this object provides the state of the the parameter. (0-Hidden 1-Read-Only, 2-Updateable).')
rxlabelSwModeThreshold = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 3, 2, 18), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 80))).setMaxAccess("readonly")
if mibBuilder.loadTexts: rxlabelSwModeThreshold.setStatus('optional')
if mibBuilder.loadTexts: rxlabelSwModeThreshold.setDescription("The value of this object provides the label of the RX200's Switch Mode Threshold Digital parameter.")
rxenumSwModeThreshold = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 3, 2, 19), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 80))).setMaxAccess("readonly")
if mibBuilder.loadTexts: rxenumSwModeThreshold.setStatus('optional')
if mibBuilder.loadTexts: rxenumSwModeThreshold.setDescription('The value of this object represents the Enumeration values possible for the Digital parameter. Each Enumerated values is separated by a common. The first value has a enumerated value of 1.')
rxvalueSwModeThreshold = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 3, 2, 20), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: rxvalueSwModeThreshold.setStatus('mandatory')
if mibBuilder.loadTexts: rxvalueSwModeThreshold.setDescription('The value of this object reflects the setting of the threshold at which the Optical Input Failed signal is sent. It is in 1 dB increments ranging from -2 to -17 dB. The user can enter a number from 0 to 15, where 0 = -2db and 15= -17db')
rxstateFlagSwModeThreshold = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 3, 2, 21), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("hidden", 1), ("read-only", 2), ("updateable", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: rxstateFlagSwModeThreshold.setStatus('mandatory')
if mibBuilder.loadTexts: rxstateFlagSwModeThreshold.setDescription('The value of this object provides the state of the the parameter. (0-Hidden 1-Read-Only, 2-Updateable).')
rxlabelFactoryDefault = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 3, 2, 22), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 80))).setMaxAccess("readonly")
if mibBuilder.loadTexts: rxlabelFactoryDefault.setStatus('optional')
if mibBuilder.loadTexts: rxlabelFactoryDefault.setDescription('The value of this object provides the label of the Factory Default Reset Digital parameter.')
rxenumFactoryDefault = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 3, 2, 23), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 80))).setMaxAccess("readonly")
if mibBuilder.loadTexts: rxenumFactoryDefault.setStatus('optional')
if mibBuilder.loadTexts: rxenumFactoryDefault.setDescription('The value of this object represents the Enumeration values possible for the Digital parameter. Each Enumerated values is separated by a common. The first value has a enumerated value of 1.')
rxvalueFactoryDefault = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 3, 2, 24), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("off", 1), ("on", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: rxvalueFactoryDefault.setStatus('mandatory')
if mibBuilder.loadTexts: rxvalueFactoryDefault.setDescription('The value of this object is the current value of the parameter.')
rxstateFlagFactoryDefault = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 3, 2, 25), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("hidden", 1), ("read-only", 2), ("updateable", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: rxstateFlagFactoryDefault.setStatus('mandatory')
if mibBuilder.loadTexts: rxstateFlagFactoryDefault.setDescription('The value of this object provides the state of the the parameter. (0-Hidden 1-Read-Only, 2-Updateable).')
rxgx2Rx200StatusTableIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 4, 3, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 4294967295))).setMaxAccess("readonly")
if mibBuilder.loadTexts: rxgx2Rx200StatusTableIndex.setStatus('mandatory')
if mibBuilder.loadTexts: rxgx2Rx200StatusTableIndex.setDescription('The value of this object identifies the network element. This index is equal to the hfcCommonTableIndex for the same element.')
rxlabelBoot = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 4, 3, 2), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 80))).setMaxAccess("readonly")
if mibBuilder.loadTexts: rxlabelBoot.setStatus('optional')
if mibBuilder.loadTexts: rxlabelBoot.setDescription('The value of this object provides the label of the Boot Status Status parameter.')
rxvalueBoot = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 4, 3, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6))).clone(namedValues=NamedValues(("ok", 1), ("undetermined", 2), ("warning", 3), ("minor", 4), ("major", 5), ("critical", 6)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: rxvalueBoot.setStatus('mandatory')
if mibBuilder.loadTexts: rxvalueBoot.setDescription('The value of this object provides the current state of the parameter (0-Ok, 1-Undetermined 2-Warning, 3-Minor, 4-Major, 5-Critical).')
rxstateflagBoot = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 4, 3, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("hidden", 1), ("read-only", 2), ("updateable", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: rxstateflagBoot.setStatus('mandatory')
if mibBuilder.loadTexts: rxstateflagBoot.setDescription('The value of this object provides the state of the the parameter. (0-Hidden 1-Read-Only, 2-Updateable).')
rxlabelFlash = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 4, 3, 5), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 80))).setMaxAccess("readonly")
if mibBuilder.loadTexts: rxlabelFlash.setStatus('optional')
if mibBuilder.loadTexts: rxlabelFlash.setDescription('The value of this object provides the label of the Flash Status Status parameter.')
rxvalueFlash = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 4, 3, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6))).clone(namedValues=NamedValues(("ok", 1), ("undetermined", 2), ("warning", 3), ("minor", 4), ("major", 5), ("critical", 6)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: rxvalueFlash.setStatus('mandatory')
if mibBuilder.loadTexts: rxvalueFlash.setDescription('The value of this object provides the current state of the parameter (0-Ok, 1-Undetermined 2-Warning, 3-Minor, 4-Major, 5-Critical).')
rxstateflagFlash = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 4, 3, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("hidden", 1), ("read-only", 2), ("updateable", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: rxstateflagFlash.setStatus('mandatory')
if mibBuilder.loadTexts: rxstateflagFlash.setDescription('The value of this object provides the state of the the parameter. (0-Hidden 1-Read-Only, 2-Updateable).')
rxlabelFactoryDataCRC = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 4, 3, 8), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 80))).setMaxAccess("readonly")
if mibBuilder.loadTexts: rxlabelFactoryDataCRC.setStatus('optional')
if mibBuilder.loadTexts: rxlabelFactoryDataCRC.setDescription('The value of this object provides the label of the Factory Data CRC Status parameter.')
rxvalueFactoryDataCRC = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 4, 3, 9), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6))).clone(namedValues=NamedValues(("ok", 1), ("undetermined", 2), ("warning", 3), ("minor", 4), ("major", 5), ("critical", 6)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: rxvalueFactoryDataCRC.setStatus('mandatory')
if mibBuilder.loadTexts: rxvalueFactoryDataCRC.setDescription('The value of this object provides the current state of the parameter (0-Ok, 1-Undetermined 2-Warning, 3-Minor, 4-Major, 5-Critical).')
rxstateflagFactoryDataCRC = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 4, 3, 10), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("hidden", 1), ("read-only", 2), ("updateable", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: rxstateflagFactoryDataCRC.setStatus('mandatory')
if mibBuilder.loadTexts: rxstateflagFactoryDataCRC.setDescription('The value of this object provides the state of the the parameter. (0-Hidden 1-Read-Only, 2-Updateable).')
rxlabelAlarmDataCRC = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 4, 3, 11), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 80))).setMaxAccess("readonly")
if mibBuilder.loadTexts: rxlabelAlarmDataCRC.setStatus('optional')
if mibBuilder.loadTexts: rxlabelAlarmDataCRC.setDescription('The value of this object provides the label of the Alarm Data CRC Status parameter.')
rxvalueAlarmDataCRC = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 4, 3, 12), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6))).clone(namedValues=NamedValues(("ok", 1), ("undetermined", 2), ("warning", 3), ("minor", 4), ("major", 5), ("critical", 6)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: rxvalueAlarmDataCRC.setStatus('mandatory')
if mibBuilder.loadTexts: rxvalueAlarmDataCRC.setDescription('The value of this object provides the current state of the parameter (0-Ok, 1-Undetermined 2-Warning, 3-Minor, 4-Major, 5-Critical).')
rxstateflagAlarmDataCRC = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 4, 3, 13), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("hidden", 1), ("read-only", 2), ("updateable", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: rxstateflagAlarmDataCRC.setStatus('mandatory')
if mibBuilder.loadTexts: rxstateflagAlarmDataCRC.setDescription('The value of this object provides the state of the the parameter. (0-Hidden 1-Read-Only, 2-Updateable).')
rxlabelCalibrationDataCRC = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 4, 3, 14), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 80))).setMaxAccess("readonly")
if mibBuilder.loadTexts: rxlabelCalibrationDataCRC.setStatus('optional')
if mibBuilder.loadTexts: rxlabelCalibrationDataCRC.setDescription('The value of this object provides the label of the Calibration Data CRC Status parameter.')
rxvalueCalibrationDataCRC = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 4, 3, 15), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6))).clone(namedValues=NamedValues(("ok", 1), ("undetermined", 2), ("warning", 3), ("minor", 4), ("major", 5), ("critical", 6)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: rxvalueCalibrationDataCRC.setStatus('mandatory')
if mibBuilder.loadTexts: rxvalueCalibrationDataCRC.setDescription('The value of this object provides the current state of the parameter (0-Ok, 1-Undetermined 2-Warning, 3-Minor, 4-Major, 5-Critical).')
rxstateflagCalibrationDataCRC = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 4, 3, 16), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("hidden", 1), ("read-only", 2), ("updateable", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: rxstateflagCalibrationDataCRC.setStatus('mandatory')
if mibBuilder.loadTexts: rxstateflagCalibrationDataCRC.setDescription('The value of this object provides the state of the the parameter. (0-Hidden 1-Read-Only, 2-Updateable).')
rxlabelThermalCompCRC = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 4, 3, 17), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 80))).setMaxAccess("readonly")
if mibBuilder.loadTexts: rxlabelThermalCompCRC.setStatus('optional')
if mibBuilder.loadTexts: rxlabelThermalCompCRC.setDescription('The value of this object provides the label of the Calibration Data CRC Status parameter.')
rxvalueThermalCompCRC = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 4, 3, 18), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6))).clone(namedValues=NamedValues(("ok", 1), ("undetermined", 2), ("warning", 3), ("minor", 4), ("major", 5), ("critical", 6)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: rxvalueThermalCompCRC.setStatus('mandatory')
if mibBuilder.loadTexts: rxvalueThermalCompCRC.setDescription('The value of this object provides the current state of the parameter (0-Ok, 1-Undetermined 2-Warning, 3-Minor, 4-Major, 5-Critical).')
rxstateflagThermalCompCRC = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 4, 3, 19), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("hidden", 1), ("read-only", 2), ("updateable", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: rxstateflagThermalCompCRC.setStatus('mandatory')
if mibBuilder.loadTexts: rxstateflagThermalCompCRC.setDescription('The value of this object provides the state of the the parameter. (0-Hidden 1-Read-Only, 2-Updateable).')
rxlabelHW = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 4, 3, 20), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 80))).setMaxAccess("readonly")
if mibBuilder.loadTexts: rxlabelHW.setStatus('optional')
if mibBuilder.loadTexts: rxlabelHW.setDescription('The value of this object provides the label of the Hardware Status parameter.')
rxvalueHW = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 4, 3, 21), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6))).clone(namedValues=NamedValues(("ok", 1), ("undetermined", 2), ("warning", 3), ("minor", 4), ("major", 5), ("critical", 6)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: rxvalueHW.setStatus('mandatory')
if mibBuilder.loadTexts: rxvalueHW.setDescription('The value of this object provides the current state of the parameter (0-Ok, 1-Undetermined 2-Warning, 3-Minor, 4-Major, 5-Critical).')
rxstateflagHW = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 4, 3, 22), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("hidden", 1), ("read-only", 2), ("updateable", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: rxstateflagHW.setStatus('mandatory')
if mibBuilder.loadTexts: rxstateflagHW.setDescription('The value of this object provides the state of the the parameter. (0-Hidden 1-Read-Only, 2-Updateable).')
rxlabelOptSig = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 4, 3, 23), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 80))).setMaxAccess("readonly")
if mibBuilder.loadTexts: rxlabelOptSig.setStatus('optional')
if mibBuilder.loadTexts: rxlabelOptSig.setDescription('The value of this object provides the label of the Optical Signal Status parameter.')
rxvalueOptSig = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 4, 3, 24), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6))).clone(namedValues=NamedValues(("ok", 1), ("undetermined", 2), ("warning", 3), ("minor", 4), ("major", 5), ("critical", 6)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: rxvalueOptSig.setStatus('mandatory')
if mibBuilder.loadTexts: rxvalueOptSig.setDescription('The value of this object provides the current state of the parameter (0-Ok, 1-Undetermined 2-Warning, 3-Minor, 4-Major, 5-Critical).')
rxstateflagOptSig = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 4, 3, 25), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("hidden", 1), ("read-only", 2), ("updateable", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: rxstateflagOptSig.setStatus('mandatory')
if mibBuilder.loadTexts: rxstateflagOptSig.setDescription('The value of this object provides the state of the the parameter. (0-Hidden 1-Read-Only, 2-Updateable).')
rxgx2Rx200FactoryTableIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 5, 4, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 4294967295))).setMaxAccess("readonly")
if mibBuilder.loadTexts: rxgx2Rx200FactoryTableIndex.setStatus('mandatory')
if mibBuilder.loadTexts: rxgx2Rx200FactoryTableIndex.setDescription('The value of this object identifies the network element. This index is equal to the hfcCommonTableIndex for the same element.')
rxbootControlByte = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 5, 4, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: rxbootControlByte.setStatus('mandatory')
if mibBuilder.loadTexts: rxbootControlByte.setDescription('The value of this object indicates which bank the firmware is currently being boot from.')
rxbootStatusByte = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 5, 4, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: rxbootStatusByte.setStatus('mandatory')
if mibBuilder.loadTexts: rxbootStatusByte.setDescription('This object indicates the status of the last boot')
rxbank0CRC = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 5, 4, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: rxbank0CRC.setStatus('mandatory')
if mibBuilder.loadTexts: rxbank0CRC.setDescription('This object provides the CRC code of bank 0.')
rxbank1CRC = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 5, 4, 5), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: rxbank1CRC.setStatus('mandatory')
if mibBuilder.loadTexts: rxbank1CRC.setDescription('This object provides the CRC code of bank 1.')
rxprgEEPROMByte = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 5, 4, 6), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: rxprgEEPROMByte.setStatus('mandatory')
if mibBuilder.loadTexts: rxprgEEPROMByte.setDescription('This object indicates if the EEPROM has been programmed')
rxfactoryCRC = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 5, 4, 7), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: rxfactoryCRC.setStatus('mandatory')
if mibBuilder.loadTexts: rxfactoryCRC.setDescription('This object provides the CRC code for the Factory data.')
rxcalculateCRC = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 5, 4, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("factory", 1), ("calibration", 2), ("alarm", 3), ("tempComp", 4)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: rxcalculateCRC.setStatus('mandatory')
if mibBuilder.loadTexts: rxcalculateCRC.setDescription('This object indicates which of the Emnums will have the CRC calculated.')
rxhourMeter = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 5, 4, 9), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: rxhourMeter.setStatus('mandatory')
if mibBuilder.loadTexts: rxhourMeter.setDescription('This object provides the hour meter reading of the module.')
rxflashPrgCntA = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 5, 4, 10), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: rxflashPrgCntA.setStatus('mandatory')
if mibBuilder.loadTexts: rxflashPrgCntA.setDescription('This object provides the number of times the flash has been programmed on side A.')
rxflashPrgCntB = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 5, 4, 11), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: rxflashPrgCntB.setStatus('mandatory')
if mibBuilder.loadTexts: rxflashPrgCntB.setDescription('This object provides the number of times the flash has been programmed on side B.')
rxfwRev0 = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 5, 4, 12), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 80))).setMaxAccess("readonly")
if mibBuilder.loadTexts: rxfwRev0.setStatus('mandatory')
if mibBuilder.loadTexts: rxfwRev0.setDescription('This object provides the Revision of the firmware stores in bank 0.')
rxfwRev1 = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 5, 4, 13), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 80))).setMaxAccess("readonly")
if mibBuilder.loadTexts: rxfwRev1.setStatus('mandatory')
if mibBuilder.loadTexts: rxfwRev1.setDescription('This object provides the Revision of the firmware stores in bank 1.')
rxgx2Rx200HoldTimeTableIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 6, 5, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 4294967295))).setMaxAccess("readonly")
if mibBuilder.loadTexts: rxgx2Rx200HoldTimeTableIndex.setStatus('mandatory')
if mibBuilder.loadTexts: rxgx2Rx200HoldTimeTableIndex.setDescription('The value of this object is the index of the data object.')
rxgx2Rx200HoldTimeSpecIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 6, 5, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 4294967295))).setMaxAccess("readonly")
if mibBuilder.loadTexts: rxgx2Rx200HoldTimeSpecIndex.setStatus('mandatory')
if mibBuilder.loadTexts: rxgx2Rx200HoldTimeSpecIndex.setDescription('The value of this object identifies the index of the alarm object to be modified.')
rxgx2Rx200HoldTimeData = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 6, 5, 3), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: rxgx2Rx200HoldTimeData.setStatus('mandatory')
if mibBuilder.loadTexts: rxgx2Rx200HoldTimeData.setDescription('The value of this object provides access to the hold timers used to suppress nose on analog objects. This object is a 32 bit object. Validation data is entered into bytes zero and one of the object. Bytes three and four are used to entering the hold time for the specified alarm object. The Hold timer data ranges from 0 to 1300 seconds. The index of this object corresponds to the alarm object to be modified. Alarm Hold timers correspond to the index of this object as follows: Index 1 = xxx, index 2 = xxxx, Index 3 = xxxx, The hold time is represented in seconds.')
trapRX200ConfigChangeInteger = NotificationType((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6) + (0,1)).setObjects(("NLSBBN-TRAPS-MIB", "trapIdentifier"), ("NLSBBN-TRAPS-MIB", "trapNetworkElemModelNumber"), ("NLSBBN-TRAPS-MIB", "trapNetworkElemSerialNum"), ("NLSBBN-TRAPS-MIB", "trapPerceivedSeverity"), ("NLSBBN-TRAPS-MIB", "trapNetworkElemOperState"), ("NLSBBN-TRAPS-MIB", "trapNetworkElemAlarmStatus"), ("NLSBBN-TRAPS-MIB", "trapNetworkElemAdminState"), ("NLSBBN-TRAPS-MIB", "trapNetworkElemAvailStatus"), ("NLSBBN-TRAPS-MIB", "trapText"), ("NLSBBN-TRAPS-MIB", "trapChangedObjectId"), ("NLSBBN-TRAPS-MIB", "trapChangedValueInteger"), ("NLSBBN-TRAPS-MIB", "trapNETrapLastTrapTimeStamp"))
if mibBuilder.loadTexts: trapRX200ConfigChangeInteger.setDescription("This trap is issued if configuration of a single variable with integer type was changed (via ANY interface). TrapChangedValueInteger variable may contain current reading of that variable. trapPerceivedSeverity - 'indeterminate'")
trapRX200ConfigChangeDisplayString = NotificationType((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6) + (0,2)).setObjects(("NLSBBN-TRAPS-MIB", "trapIdentifier"), ("NLSBBN-TRAPS-MIB", "trapNetworkElemModelNumber"), ("NLSBBN-TRAPS-MIB", "trapNetworkElemSerialNum"), ("NLSBBN-TRAPS-MIB", "trapPerceivedSeverity"), ("NLSBBN-TRAPS-MIB", "trapNetworkElemOperState"), ("NLSBBN-TRAPS-MIB", "trapNetworkElemAlarmStatus"), ("NLSBBN-TRAPS-MIB", "trapNetworkElemAdminState"), ("NLSBBN-TRAPS-MIB", "trapNetworkElemAvailStatus"), ("NLSBBN-TRAPS-MIB", "trapText"), ("NLSBBN-TRAPS-MIB", "trapChangedObjectId"), ("NLSBBN-TRAPS-MIB", "trapChangedValueDisplayString"), ("NLSBBN-TRAPS-MIB", "trapNETrapLastTrapTimeStamp"))
if mibBuilder.loadTexts: trapRX200ConfigChangeDisplayString.setDescription("This trap is issued if configuration of a single variable with DispalayString type was changed (via ANY interface). TrapChangedValueDisplayString variable may contain current reading of that variable. trapPerceivedSeverity - 'indeterminate'")
trapRX200OpticalPowerAlarm = NotificationType((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6) + (0,3)).setObjects(("NLSBBN-TRAPS-MIB", "trapIdentifier"), ("NLSBBN-TRAPS-MIB", "trapNetworkElemModelNumber"), ("NLSBBN-TRAPS-MIB", "trapNetworkElemSerialNum"), ("NLSBBN-TRAPS-MIB", "trapPerceivedSeverity"), ("NLSBBN-TRAPS-MIB", "trapNetworkElemOperState"), ("NLSBBN-TRAPS-MIB", "trapNetworkElemAlarmStatus"), ("NLSBBN-TRAPS-MIB", "trapNetworkElemAdminState"), ("NLSBBN-TRAPS-MIB", "trapNetworkElemAvailStatus"), ("NLSBBN-TRAPS-MIB", "trapText"), ("NLSBBN-TRAPS-MIB", "trapChangedObjectId"), ("NLSBBN-TRAPS-MIB", "trapChangedValueInteger"), ("NLSBBN-TRAPS-MIB", "trapNETrapLastTrapTimeStamp"))
if mibBuilder.loadTexts: trapRX200OpticalPowerAlarm.setDescription('This trap is issued when the Laser Modules Optical Power parameter goes out of range. trapAdditionalInfoInteger variable contains current reading of the this parameter.')
trapRX200ModuleTemperatureAlarm = NotificationType((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6) + (0,4)).setObjects(("NLSBBN-TRAPS-MIB", "trapIdentifier"), ("NLSBBN-TRAPS-MIB", "trapNetworkElemModelNumber"), ("NLSBBN-TRAPS-MIB", "trapNetworkElemSerialNum"), ("NLSBBN-TRAPS-MIB", "trapPerceivedSeverity"), ("NLSBBN-TRAPS-MIB", "trapNetworkElemOperState"), ("NLSBBN-TRAPS-MIB", "trapNetworkElemAlarmStatus"), ("NLSBBN-TRAPS-MIB", "trapNetworkElemAdminState"), ("NLSBBN-TRAPS-MIB", "trapNetworkElemAvailStatus"), ("NLSBBN-TRAPS-MIB", "trapText"), ("NLSBBN-TRAPS-MIB", "trapChangedObjectId"), ("NLSBBN-TRAPS-MIB", "trapChangedValueInteger"), ("NLSBBN-TRAPS-MIB", "trapNETrapLastTrapTimeStamp"))
if mibBuilder.loadTexts: trapRX200ModuleTemperatureAlarm.setDescription('This trap is issued when the RX200 Modules Temperature goes out of range. trapAdditionalInfoInteger variable contains current reading of the this parameter.')
trapRX200FanCurrentAlarm = NotificationType((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6) + (0,5)).setObjects(("NLSBBN-TRAPS-MIB", "trapIdentifier"), ("NLSBBN-TRAPS-MIB", "trapNetworkElemModelNumber"), ("NLSBBN-TRAPS-MIB", "trapNetworkElemSerialNum"), ("NLSBBN-TRAPS-MIB", "trapPerceivedSeverity"), ("NLSBBN-TRAPS-MIB", "trapNetworkElemOperState"), ("NLSBBN-TRAPS-MIB", "trapNetworkElemAlarmStatus"), ("NLSBBN-TRAPS-MIB", "trapNetworkElemAdminState"), ("NLSBBN-TRAPS-MIB", "trapNetworkElemAvailStatus"), ("NLSBBN-TRAPS-MIB", "trapText"), ("NLSBBN-TRAPS-MIB", "trapChangedObjectId"), ("NLSBBN-TRAPS-MIB", "trapChangedValueInteger"), ("NLSBBN-TRAPS-MIB", "trapNETrapLastTrapTimeStamp"))
if mibBuilder.loadTexts: trapRX200FanCurrentAlarm.setDescription('This trap is issued when the RX200 Modules Fan Currrent parameter goes out of range. trapAdditionalInfoInteger variable contains current reading of the this parameter.')
trapRX200Plus12CurrentAlarm = NotificationType((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6) + (0,6)).setObjects(("NLSBBN-TRAPS-MIB", "trapIdentifier"), ("NLSBBN-TRAPS-MIB", "trapNetworkElemModelNumber"), ("NLSBBN-TRAPS-MIB", "trapNetworkElemSerialNum"), ("NLSBBN-TRAPS-MIB", "trapPerceivedSeverity"), ("NLSBBN-TRAPS-MIB", "trapNetworkElemOperState"), ("NLSBBN-TRAPS-MIB", "trapNetworkElemAlarmStatus"), ("NLSBBN-TRAPS-MIB", "trapNetworkElemAdminState"), ("NLSBBN-TRAPS-MIB", "trapNetworkElemAvailStatus"), ("NLSBBN-TRAPS-MIB", "trapText"), ("NLSBBN-TRAPS-MIB", "trapChangedObjectId"), ("NLSBBN-TRAPS-MIB", "trapChangedValueInteger"), ("NLSBBN-TRAPS-MIB", "trapNETrapLastTrapTimeStamp"))
if mibBuilder.loadTexts: trapRX200Plus12CurrentAlarm.setDescription('This trap is issued when the RX200 Modules positive 12 volt current parameter goes out of range. trapAdditionalInfoInteger variable contains current reading of the this parameter.')
trapRX200Boot0Alarm = NotificationType((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6) + (0,7)).setObjects(("NLSBBN-TRAPS-MIB", "trapIdentifier"), ("NLSBBN-TRAPS-MIB", "trapNetworkElemModelNumber"), ("NLSBBN-TRAPS-MIB", "trapNetworkElemSerialNum"), ("NLSBBN-TRAPS-MIB", "trapPerceivedSeverity"), ("NLSBBN-TRAPS-MIB", "trapNetworkElemOperState"), ("NLSBBN-TRAPS-MIB", "trapNetworkElemAlarmStatus"), ("NLSBBN-TRAPS-MIB", "trapNetworkElemAdminState"), ("NLSBBN-TRAPS-MIB", "trapNetworkElemAvailStatus"), ("NLSBBN-TRAPS-MIB", "trapText"), ("NLSBBN-TRAPS-MIB", "trapChangedObjectId"), ("NLSBBN-TRAPS-MIB", "trapChangedValueInteger"), ("NLSBBN-TRAPS-MIB", "trapNETrapLastTrapTimeStamp"))
if mibBuilder.loadTexts: trapRX200Boot0Alarm.setDescription('This trap is issued when the RX200 Modules Bank 0 Boot sequence has detected an error. trapAdditionalInfoInteger variable contains current reading of the this parameter.')
trapRX200Boot1Alarm = NotificationType((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6) + (0,8)).setObjects(("NLSBBN-TRAPS-MIB", "trapIdentifier"), ("NLSBBN-TRAPS-MIB", "trapNetworkElemModelNumber"), ("NLSBBN-TRAPS-MIB", "trapNetworkElemSerialNum"), ("NLSBBN-TRAPS-MIB", "trapPerceivedSeverity"), ("NLSBBN-TRAPS-MIB", "trapNetworkElemOperState"), ("NLSBBN-TRAPS-MIB", "trapNetworkElemAlarmStatus"), ("NLSBBN-TRAPS-MIB", "trapNetworkElemAdminState"), ("NLSBBN-TRAPS-MIB", "trapNetworkElemAvailStatus"), ("NLSBBN-TRAPS-MIB", "trapText"), ("NLSBBN-TRAPS-MIB", "trapChangedObjectId"), ("NLSBBN-TRAPS-MIB", "trapChangedValueInteger"), ("NLSBBN-TRAPS-MIB", "trapNETrapLastTrapTimeStamp"))
if mibBuilder.loadTexts: trapRX200Boot1Alarm.setDescription('This trap is issued when the RX200 Modules Bank 1 Boot sequence has detected an error. trapAdditionalInfoInteger variable contains current reading of the this parameter.')
trapRX200FlashAlarm = NotificationType((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6) + (0,9)).setObjects(("NLSBBN-TRAPS-MIB", "trapIdentifier"), ("NLSBBN-TRAPS-MIB", "trapNetworkElemModelNumber"), ("NLSBBN-TRAPS-MIB", "trapNetworkElemSerialNum"), ("NLSBBN-TRAPS-MIB", "trapPerceivedSeverity"), ("NLSBBN-TRAPS-MIB", "trapNetworkElemOperState"), ("NLSBBN-TRAPS-MIB", "trapNetworkElemAlarmStatus"), ("NLSBBN-TRAPS-MIB", "trapNetworkElemAdminState"), ("NLSBBN-TRAPS-MIB", "trapNetworkElemAvailStatus"), ("NLSBBN-TRAPS-MIB", "trapText"), ("NLSBBN-TRAPS-MIB", "trapChangedObjectId"), ("NLSBBN-TRAPS-MIB", "trapChangedValueInteger"), ("NLSBBN-TRAPS-MIB", "trapNETrapLastTrapTimeStamp"))
if mibBuilder.loadTexts: trapRX200FlashAlarm.setDescription('This trap is issued when the RX200 Modules boot or flash programming sequence has detected a Flash error. trapAdditionalInfoInteger variable contains current reading of the this parameter.')
trapRX200AlarmDataCRCAlarm = NotificationType((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6) + (0,10)).setObjects(("NLSBBN-TRAPS-MIB", "trapIdentifier"), ("NLSBBN-TRAPS-MIB", "trapNetworkElemModelNumber"), ("NLSBBN-TRAPS-MIB", "trapNetworkElemSerialNum"), ("NLSBBN-TRAPS-MIB", "trapPerceivedSeverity"), ("NLSBBN-TRAPS-MIB", "trapNetworkElemOperState"), ("NLSBBN-TRAPS-MIB", "trapNetworkElemAlarmStatus"), ("NLSBBN-TRAPS-MIB", "trapNetworkElemAdminState"), ("NLSBBN-TRAPS-MIB", "trapNetworkElemAvailStatus"), ("NLSBBN-TRAPS-MIB", "trapText"), ("NLSBBN-TRAPS-MIB", "trapChangedObjectId"), ("NLSBBN-TRAPS-MIB", "trapChangedValueInteger"), ("NLSBBN-TRAPS-MIB", "trapNETrapLastTrapTimeStamp"))
if mibBuilder.loadTexts: trapRX200AlarmDataCRCAlarm.setDescription('This trap is issued when the RX200 Module detects an error calculating the alarm limit CRC. trapAdditionalInfoInteger variable contains current reading of the this parameter.')
trapRX200FactoryDataCRCAlarm = NotificationType((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6) + (0,11)).setObjects(("NLSBBN-TRAPS-MIB", "trapIdentifier"), ("NLSBBN-TRAPS-MIB", "trapNetworkElemModelNumber"), ("NLSBBN-TRAPS-MIB", "trapNetworkElemSerialNum"), ("NLSBBN-TRAPS-MIB", "trapPerceivedSeverity"), ("NLSBBN-TRAPS-MIB", "trapNetworkElemOperState"), ("NLSBBN-TRAPS-MIB", "trapNetworkElemAlarmStatus"), ("NLSBBN-TRAPS-MIB", "trapNetworkElemAdminState"), ("NLSBBN-TRAPS-MIB", "trapNetworkElemAvailStatus"), ("NLSBBN-TRAPS-MIB", "trapText"), ("NLSBBN-TRAPS-MIB", "trapChangedObjectId"), ("NLSBBN-TRAPS-MIB", "trapChangedValueInteger"), ("NLSBBN-TRAPS-MIB", "trapNETrapLastTrapTimeStamp"))
if mibBuilder.loadTexts: trapRX200FactoryDataCRCAlarm.setDescription('This trap is issued when the RX200 Module detects an error calculating the Factory data CRC. trapAdditionalInfoInteger variable contains current reading of the this parameter.')
trapRX200CalDataCRCAlarm = NotificationType((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6) + (0,12)).setObjects(("NLSBBN-TRAPS-MIB", "trapIdentifier"), ("NLSBBN-TRAPS-MIB", "trapNetworkElemModelNumber"), ("NLSBBN-TRAPS-MIB", "trapNetworkElemSerialNum"), ("NLSBBN-TRAPS-MIB", "trapPerceivedSeverity"), ("NLSBBN-TRAPS-MIB", "trapNetworkElemOperState"), ("NLSBBN-TRAPS-MIB", "trapNetworkElemAlarmStatus"), ("NLSBBN-TRAPS-MIB", "trapNetworkElemAdminState"), ("NLSBBN-TRAPS-MIB", "trapNetworkElemAvailStatus"), ("NLSBBN-TRAPS-MIB", "trapText"), ("NLSBBN-TRAPS-MIB", "trapChangedObjectId"), ("NLSBBN-TRAPS-MIB", "trapChangedValueInteger"), ("NLSBBN-TRAPS-MIB", "trapNETrapLastTrapTimeStamp"))
if mibBuilder.loadTexts: trapRX200CalDataCRCAlarm.setDescription('This trap is issued when the RX200 Module detects an error calculating the Calibration data CRC. trapAdditionalInfoInteger variable contains current reading of the this parameter.')
trapRX200DefaultAlarm = NotificationType((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6) + (0,13)).setObjects(("NLSBBN-TRAPS-MIB", "trapIdentifier"), ("NLSBBN-TRAPS-MIB", "trapNetworkElemModelNumber"), ("NLSBBN-TRAPS-MIB", "trapNetworkElemSerialNum"), ("NLSBBN-TRAPS-MIB", "trapPerceivedSeverity"), ("NLSBBN-TRAPS-MIB", "trapNetworkElemOperState"), ("NLSBBN-TRAPS-MIB", "trapNetworkElemAlarmStatus"), ("NLSBBN-TRAPS-MIB", "trapNetworkElemAdminState"), ("NLSBBN-TRAPS-MIB", "trapNetworkElemAvailStatus"), ("NLSBBN-TRAPS-MIB", "trapText"), ("NLSBBN-TRAPS-MIB", "trapChangedObjectId"), ("NLSBBN-TRAPS-MIB", "trapChangedValueInteger"), ("NLSBBN-TRAPS-MIB", "trapNETrapLastTrapTimeStamp"))
if mibBuilder.loadTexts: trapRX200DefaultAlarm.setDescription("This trap is issued when the RX200 Module is reset to it's factory default state. trapAdditionalInfoInteger variable contains current reading of the this parameter.")
trapRX200ModeAlarm = NotificationType((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6) + (0,14)).setObjects(("NLSBBN-TRAPS-MIB", "trapIdentifier"), ("NLSBBN-TRAPS-MIB", "trapNetworkElemModelNumber"), ("NLSBBN-TRAPS-MIB", "trapNetworkElemSerialNum"), ("NLSBBN-TRAPS-MIB", "trapPerceivedSeverity"), ("NLSBBN-TRAPS-MIB", "trapNetworkElemOperState"), ("NLSBBN-TRAPS-MIB", "trapNetworkElemAlarmStatus"), ("NLSBBN-TRAPS-MIB", "trapNetworkElemAdminState"), ("NLSBBN-TRAPS-MIB", "trapNetworkElemAvailStatus"), ("NLSBBN-TRAPS-MIB", "trapText"), ("NLSBBN-TRAPS-MIB", "trapChangedObjectId"), ("NLSBBN-TRAPS-MIB", "trapChangedValueInteger"), ("NLSBBN-TRAPS-MIB", "trapNETrapLastTrapTimeStamp"))
if mibBuilder.loadTexts: trapRX200ModeAlarm.setDescription('This trap is issued when the RX200 Modules mode is changed from normal to off or off to normal. trapAdditionalInfoInteger variable contains current reading of the this parameter.')
trapRX200OutputSwitchedAlarm = NotificationType((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6) + (0,15)).setObjects(("NLSBBN-TRAPS-MIB", "trapIdentifier"), ("NLSBBN-TRAPS-MIB", "trapNetworkElemModelNumber"), ("NLSBBN-TRAPS-MIB", "trapNetworkElemSerialNum"), ("NLSBBN-TRAPS-MIB", "trapPerceivedSeverity"), ("NLSBBN-TRAPS-MIB", "trapNetworkElemOperState"), ("NLSBBN-TRAPS-MIB", "trapNetworkElemAlarmStatus"), ("NLSBBN-TRAPS-MIB", "trapNetworkElemAdminState"), ("NLSBBN-TRAPS-MIB", "trapNetworkElemAvailStatus"), ("NLSBBN-TRAPS-MIB", "trapText"), ("NLSBBN-TRAPS-MIB", "trapChangedObjectId"), ("NLSBBN-TRAPS-MIB", "trapChangedValueInteger"), ("NLSBBN-TRAPS-MIB", "trapNETrapLastTrapTimeStamp"))
if mibBuilder.loadTexts: trapRX200OutputSwitchedAlarm.setDescription("This trap is issued when the RX200 Module's output to the RF Switch Module changes state from good to bad or bad to good. trapAdditionalInfoInteger variable contains current reading of the this parameter.")
trapRX200SideStatusAlarm = NotificationType((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6) + (0,16)).setObjects(("NLSBBN-TRAPS-MIB", "trapIdentifier"), ("NLSBBN-TRAPS-MIB", "trapNetworkElemModelNumber"), ("NLSBBN-TRAPS-MIB", "trapNetworkElemSerialNum"), ("NLSBBN-TRAPS-MIB", "trapPerceivedSeverity"), ("NLSBBN-TRAPS-MIB", "trapNetworkElemOperState"), ("NLSBBN-TRAPS-MIB", "trapNetworkElemAlarmStatus"), ("NLSBBN-TRAPS-MIB", "trapNetworkElemAdminState"), ("NLSBBN-TRAPS-MIB", "trapNetworkElemAvailStatus"), ("NLSBBN-TRAPS-MIB", "trapText"), ("NLSBBN-TRAPS-MIB", "trapChangedObjectId"), ("NLSBBN-TRAPS-MIB", "trapChangedValueInteger"), ("NLSBBN-TRAPS-MIB", "trapNETrapLastTrapTimeStamp"))
if mibBuilder.loadTexts: trapRX200SideStatusAlarm.setDescription("This trap is issued when one of the RX200 Module's outputs are turned on or off.")
mibBuilder.exportSymbols("OMNI-gx2RX200-MIB", rxminorHigh12Volt=rxminorHigh12Volt, rxcurrentValueModTemp=rxcurrentValueModTemp, rxflashPrgCntA=rxflashPrgCntA, rxalarmStateFanCurrent=rxalarmStateFanCurrent, rxstateflagHW=rxstateflagHW, trapRX200Boot1Alarm=trapRX200Boot1Alarm, rxstateFlagModTemp=rxstateFlagModTemp, rxminorHighFanCurrent=rxminorHighFanCurrent, trapRX200FlashAlarm=trapRX200FlashAlarm, rxvalueMode=rxvalueMode, rxbank1CRC=rxbank1CRC, rxbank0CRC=rxbank0CRC, rxstateFlagWavelength=rxstateFlagWavelength, trapRX200ModeAlarm=trapRX200ModeAlarm, rxminorHighModTemp=rxminorHighModTemp, rxstateFlag12Volt=rxstateFlag12Volt, U32Data=U32Data, rxvalueOptSig=rxvalueOptSig, rxstateFlagOptPower=rxstateFlagOptPower, trapRX200DefaultAlarm=trapRX200DefaultAlarm, rxmajorHighFanCurrent=rxmajorHighFanCurrent, rxstateFlagFactoryDefault=rxstateFlagFactoryDefault, rxminorLow12Volt=rxminorLow12Volt, rxvalueHW=rxvalueHW, rxlabelHW=rxlabelHW, trapRX200OpticalPowerAlarm=trapRX200OpticalPowerAlarm, rxlabelCalibrationDataCRC=rxlabelCalibrationDataCRC, trapRX200OutputSwitchedAlarm=trapRX200OutputSwitchedAlarm, rxmaxValueModTemp=rxmaxValueModTemp, rxmaxValueFanCurrent=rxmaxValueFanCurrent, rxstateFlagFanCurrent=rxstateFlagFanCurrent, rxstateflagCalibrationDataCRC=rxstateflagCalibrationDataCRC, rxvalueCalibrationDataCRC=rxvalueCalibrationDataCRC, trapRX200SideStatusAlarm=trapRX200SideStatusAlarm, rxminValueOptPower=rxminValueOptPower, rxfwRev1=rxfwRev1, trapRX200ModuleTemperatureAlarm=trapRX200ModuleTemperatureAlarm, rxstateflagAlarmDataCRC=rxstateflagAlarmDataCRC, rxvalueFactoryDefault=rxvalueFactoryDefault, rxlabelFlash=rxlabelFlash, rxenumAttnSetting=rxenumAttnSetting, rxmajorLowOptPower=rxmajorLowOptPower, rxgx2Rx200HoldTimeData=rxgx2Rx200HoldTimeData, rxenumFactoryDefault=rxenumFactoryDefault, rxcurrentValueOptPower=rxcurrentValueOptPower, gx2Rx200AnalogTable=gx2Rx200AnalogTable, rxstateflagFlash=rxstateflagFlash, rxlabelFactoryDataCRC=rxlabelFactoryDataCRC, gx2Rx200HoldTimeTable=gx2Rx200HoldTimeTable, rxminValueFanCurrent=rxminValueFanCurrent, rxminValueModTemp=rxminValueModTemp, rxminorLowModTemp=rxminorLowModTemp, rxvalueSwModeSetting=rxvalueSwModeSetting, rxmajorLowModTemp=rxmajorLowModTemp, rxstateFlagMode=rxstateFlagMode, rxuomFanCurrent=rxuomFanCurrent, rxstateflagFactoryDataCRC=rxstateflagFactoryDataCRC, rxenumSwModeSetting=rxenumSwModeSetting, rxstateFlagSwModeThreshold=rxstateFlagSwModeThreshold, trapRX200ConfigChangeDisplayString=trapRX200ConfigChangeDisplayString, rxmaxValueOptPower=rxmaxValueOptPower, rxgx2Rx200HoldTimeSpecIndex=rxgx2Rx200HoldTimeSpecIndex, rxvalueBoot=rxvalueBoot, rxminorHighOptPower=rxminorHighOptPower, gx2Rx200StatusTable=gx2Rx200StatusTable, rxalarmStateModTemp=rxalarmStateModTemp, rxlabelModTemp=rxlabelModTemp, gx2Rx200DigitalEntry=gx2Rx200DigitalEntry, rxprgEEPROMByte=rxprgEEPROMByte, trapRX200Plus12CurrentAlarm=trapRX200Plus12CurrentAlarm, rxvalueThermalCompCRC=rxvalueThermalCompCRC, trapRX200AlarmDataCRCAlarm=trapRX200AlarmDataCRCAlarm, rxuomOptPower=rxuomOptPower, rxlabelSwModeThreshold=rxlabelSwModeThreshold, rxlabelMode=rxlabelMode, gx2Rx200FactoryTable=gx2Rx200FactoryTable, gx2Rx200Descriptor=gx2Rx200Descriptor, rxstateFlagAttnSetting=rxstateFlagAttnSetting, rxflashPrgCntB=rxflashPrgCntB, rxenumMode=rxenumMode, rxenumSwModeThreshold=rxenumSwModeThreshold, rxbootControlByte=rxbootControlByte, gx2Rx200HoldTimeEntry=gx2Rx200HoldTimeEntry, gx2Rx200DigitalTable=gx2Rx200DigitalTable, rxalarmStateOptPower=rxalarmStateOptPower, rxlabelThermalCompCRC=rxlabelThermalCompCRC, rxstateflagOptSig=rxstateflagOptSig, rxminorLowOptPower=rxminorLowOptPower, rxvalueAttnSetting=rxvalueAttnSetting, rxlabelOptPower=rxlabelOptPower, rxcurrentValueFanCurrent=rxcurrentValueFanCurrent, trapRX200FanCurrentAlarm=trapRX200FanCurrentAlarm, rxbootStatusByte=rxbootStatusByte, trapRX200Boot0Alarm=trapRX200Boot0Alarm, rxmaxValue12Volt=rxmaxValue12Volt, rxlabelSwModeSetting=rxlabelSwModeSetting, rxmajorLowFanCurrent=rxmajorLowFanCurrent, rxstateflagThermalCompCRC=rxstateflagThermalCompCRC, rxcurrentValue12Volt=rxcurrentValue12Volt, rxfwRev0=rxfwRev0, trapRX200ConfigChangeInteger=trapRX200ConfigChangeInteger, rxlabelOptSig=rxlabelOptSig, rxgx2Rx200StatusTableIndex=rxgx2Rx200StatusTableIndex, rxminorLowFanCurrent=rxminorLowFanCurrent, rxenumWavelength=rxenumWavelength, gx2Rx200FactoryEntry=gx2Rx200FactoryEntry, rxgx2Rx200HoldTimeTableIndex=rxgx2Rx200HoldTimeTableIndex, rxlabelFactoryDefault=rxlabelFactoryDefault, rxfactoryCRC=rxfactoryCRC, rxlabel12Volt=rxlabel12Volt, rxlabelAlarmDataCRC=rxlabelAlarmDataCRC, rxstateflagBoot=rxstateflagBoot, rxlabelFanCurrent=rxlabelFanCurrent, rxvalueFlash=rxvalueFlash, rxmajorHighOptPower=rxmajorHighOptPower, trapRX200FactoryDataCRCAlarm=trapRX200FactoryDataCRCAlarm, gx2Rx200AnalogEntry=gx2Rx200AnalogEntry, rxlabelAttnSetting=rxlabelAttnSetting, rxalarmState12Volt=rxalarmState12Volt, rxstateFlagSwModeSetting=rxstateFlagSwModeSetting, rxvalueSwModeThreshold=rxvalueSwModeThreshold, rxvalueFactoryDataCRC=rxvalueFactoryDataCRC, rxcalculateCRC=rxcalculateCRC, rxmajorHigh12Volt=rxmajorHigh12Volt, trapRX200CalDataCRCAlarm=trapRX200CalDataCRCAlarm, rxlabelBoot=rxlabelBoot, rxlabelWavelength=rxlabelWavelength, rxmajorHighModTemp=rxmajorHighModTemp, rxminValue12Volt=rxminValue12Volt, rxhourMeter=rxhourMeter, rxgx2Rx200DigitalTableIndex=rxgx2Rx200DigitalTableIndex, rxgx2Rx200AnalogTableIndex=rxgx2Rx200AnalogTableIndex, rxgx2Rx200FactoryTableIndex=rxgx2Rx200FactoryTableIndex, rxvalueWavelength=rxvalueWavelength, rxmajorLow12Volt=rxmajorLow12Volt, rxuomModTemp=rxuomModTemp, rxvalueAlarmDataCRC=rxvalueAlarmDataCRC, gx2Rx200StatusEntry=gx2Rx200StatusEntry, rxuom12Volt=rxuom12Volt, Float=Float)
| (octet_string, integer, object_identifier) = mibBuilder.importSymbols('ASN1', 'OctetString', 'Integer', 'ObjectIdentifier')
(named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues')
(single_value_constraint, value_range_constraint, constraints_union, value_size_constraint, constraints_intersection) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'SingleValueConstraint', 'ValueRangeConstraint', 'ConstraintsUnion', 'ValueSizeConstraint', 'ConstraintsIntersection')
(gx2_rx200,) = mibBuilder.importSymbols('GX2HFC-MIB', 'gx2Rx200')
(motproxies, gi) = mibBuilder.importSymbols('NLS-BBNIDENT-MIB', 'motproxies', 'gi')
(trap_network_elem_avail_status, trap_ne_trap_last_trap_time_stamp, trap_identifier, trap_text, trap_network_elem_admin_state, trap_changed_object_id, trap_network_elem_alarm_status, trap_changed_value_display_string, trap_network_elem_oper_state, trap_changed_value_integer, trap_perceived_severity, trap_network_elem_serial_num, trap_network_elem_model_number) = mibBuilder.importSymbols('NLSBBN-TRAPS-MIB', 'trapNetworkElemAvailStatus', 'trapNETrapLastTrapTimeStamp', 'trapIdentifier', 'trapText', 'trapNetworkElemAdminState', 'trapChangedObjectId', 'trapNetworkElemAlarmStatus', 'trapChangedValueDisplayString', 'trapNetworkElemOperState', 'trapChangedValueInteger', 'trapPerceivedSeverity', 'trapNetworkElemSerialNum', 'trapNetworkElemModelNumber')
(notification_group, module_compliance) = mibBuilder.importSymbols('SNMPv2-CONF', 'NotificationGroup', 'ModuleCompliance')
(sys_up_time,) = mibBuilder.importSymbols('SNMPv2-MIB', 'sysUpTime')
(ip_address, mib_scalar, mib_table, mib_table_row, mib_table_column, integer32, counter64, notification_type, counter32, object_identity, unsigned32, module_identity, time_ticks, notification_type, bits, gauge32, mib_identifier, iso) = mibBuilder.importSymbols('SNMPv2-SMI', 'IpAddress', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn', 'Integer32', 'Counter64', 'NotificationType', 'Counter32', 'ObjectIdentity', 'Unsigned32', 'ModuleIdentity', 'TimeTicks', 'NotificationType', 'Bits', 'Gauge32', 'MibIdentifier', 'iso')
(textual_convention, display_string) = mibBuilder.importSymbols('SNMPv2-TC', 'TextualConvention', 'DisplayString')
class Float(Counter32):
pass
class U32Data(Counter32):
pass
gx2_rx200_descriptor = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 1))
gx2_rx200_analog_table = mib_table((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 2))
if mibBuilder.loadTexts:
gx2Rx200AnalogTable.setStatus('mandatory')
if mibBuilder.loadTexts:
gx2Rx200AnalogTable.setDescription('This table contains gx2Rx200 specific parameters with nominal and current values.')
gx2_rx200_analog_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 2, 1)).setIndexNames((0, 'OMNI-gx2RX200-MIB', 'rxgx2Rx200AnalogTableIndex'))
if mibBuilder.loadTexts:
gx2Rx200AnalogEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
gx2Rx200AnalogEntry.setDescription('This list contains digital product class and the associated RF channel parameters and descriptions.')
gx2_rx200_digital_table = mib_table((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 3))
if mibBuilder.loadTexts:
gx2Rx200DigitalTable.setStatus('mandatory')
if mibBuilder.loadTexts:
gx2Rx200DigitalTable.setDescription('This table contains gx2Rx200 specific parameters with nominal and current values.')
gx2_rx200_digital_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 3, 2)).setIndexNames((0, 'OMNI-gx2RX200-MIB', 'rxgx2Rx200DigitalTableIndex'))
if mibBuilder.loadTexts:
gx2Rx200DigitalEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
gx2Rx200DigitalEntry.setDescription('This list contains digital product class and the associated RF channel parameters and descriptions.')
gx2_rx200_status_table = mib_table((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 4))
if mibBuilder.loadTexts:
gx2Rx200StatusTable.setStatus('mandatory')
if mibBuilder.loadTexts:
gx2Rx200StatusTable.setDescription('This table contains gx2Rx200 specific parameters with nominal and current values.')
gx2_rx200_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 4, 3)).setIndexNames((0, 'OMNI-gx2RX200-MIB', 'rxgx2Rx200StatusTableIndex'))
if mibBuilder.loadTexts:
gx2Rx200StatusEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
gx2Rx200StatusEntry.setDescription('This list contains digital product class and the associated RF channel parameters and descriptions.')
gx2_rx200_factory_table = mib_table((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 5))
if mibBuilder.loadTexts:
gx2Rx200FactoryTable.setStatus('mandatory')
if mibBuilder.loadTexts:
gx2Rx200FactoryTable.setDescription('This table contains gx2Rx200 specific parameters with nominal and current values.')
gx2_rx200_factory_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 5, 4)).setIndexNames((0, 'OMNI-gx2RX200-MIB', 'rxgx2Rx200FactoryTableIndex'))
if mibBuilder.loadTexts:
gx2Rx200FactoryEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
gx2Rx200FactoryEntry.setDescription('This list contains digital product class and the associated RF channel parameters and descriptions.')
gx2_rx200_hold_time_table = mib_table((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 6))
if mibBuilder.loadTexts:
gx2Rx200HoldTimeTable.setStatus('mandatory')
if mibBuilder.loadTexts:
gx2Rx200HoldTimeTable.setDescription('This table contains gx2Rx200 specific parameters with nominal and current values.')
gx2_rx200_hold_time_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 6, 5)).setIndexNames((0, 'OMNI-gx2RX200-MIB', 'rxgx2Rx200HoldTimeTableIndex'), (0, 'OMNI-gx2RX200-MIB', 'rxgx2Rx200HoldTimeSpecIndex'))
if mibBuilder.loadTexts:
gx2Rx200HoldTimeEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
gx2Rx200HoldTimeEntry.setDescription('This list contains digital product class and the associated RF channel parameters and descriptions.')
rxgx2_rx200_analog_table_index = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 2, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 4294967295))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rxgx2Rx200AnalogTableIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
rxgx2Rx200AnalogTableIndex.setDescription('The value of this object identifies the network element. This index is equal to the hfcCommonTableIndex for the same element.')
rxlabel_mod_temp = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 2, 1, 2), display_string().subtype(subtypeSpec=value_size_constraint(0, 80))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rxlabelModTemp.setStatus('optional')
if mibBuilder.loadTexts:
rxlabelModTemp.setDescription('The value of this object provides the label of the Module Temperature Analog parameter.')
rxuom_mod_temp = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 2, 1, 3), display_string().subtype(subtypeSpec=value_size_constraint(0, 80))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rxuomModTemp.setStatus('optional')
if mibBuilder.loadTexts:
rxuomModTemp.setDescription('The value of this object provides the Unit of Measure of the Module Temperature Analog parameter.')
rxmajor_high_mod_temp = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 2, 1, 4), float()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rxmajorHighModTemp.setStatus('mandatory')
if mibBuilder.loadTexts:
rxmajorHighModTemp.setDescription('The value of this object provides the Major High alarm value of the Module Temperature Analog parameter. This value is a floating point number that is represented as an IEEE 32 bit number.')
rxmajor_low_mod_temp = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 2, 1, 5), float()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rxmajorLowModTemp.setStatus('mandatory')
if mibBuilder.loadTexts:
rxmajorLowModTemp.setDescription('The value of this object provides the Major Low alarm value of the Module Temperature Analog parameter. This value is a floating point number that is represented as an IEEE 32 bit number.')
rxminor_high_mod_temp = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 2, 1, 6), float()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rxminorHighModTemp.setStatus('mandatory')
if mibBuilder.loadTexts:
rxminorHighModTemp.setDescription('The value of this object provides the Minor High alarm value of the Module Temperature Analog parameter. This value is a floating point number that is represented as an IEEE 32 bit number.')
rxminor_low_mod_temp = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 2, 1, 7), float()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rxminorLowModTemp.setStatus('mandatory')
if mibBuilder.loadTexts:
rxminorLowModTemp.setDescription('The value of this object provides the Minor Low alarm value of the Module Temperature Analog parameter. This value is a floating point number that is represented as an IEEE 32 bit number.')
rxcurrent_value_mod_temp = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 2, 1, 8), float()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rxcurrentValueModTemp.setStatus('mandatory')
if mibBuilder.loadTexts:
rxcurrentValueModTemp.setDescription('The value of this object provides the Current value of the Module Temperature Analog parameter. This value is a floating point number that is represented as an IEEE 32 bit number.')
rxstate_flag_mod_temp = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 2, 1, 9), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('hidden', 1), ('read-only', 2), ('updateable', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rxstateFlagModTemp.setStatus('mandatory')
if mibBuilder.loadTexts:
rxstateFlagModTemp.setDescription('The value of this object provides the state of the Module Temperature Analog parameter. (0-Hidden 1-Read-Only, 2-Updateable).')
rxmin_value_mod_temp = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 2, 1, 10), float()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rxminValueModTemp.setStatus('mandatory')
if mibBuilder.loadTexts:
rxminValueModTemp.setDescription('The value of this object provides the minimum value of the Module Temperature Analog parameter. This value is a floating point number that is represented as an IEEE 32 bit number.')
rxmax_value_mod_temp = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 2, 1, 11), float()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rxmaxValueModTemp.setStatus('mandatory')
if mibBuilder.loadTexts:
rxmaxValueModTemp.setDescription('The value of this object provides the maximum value of the Module Temperature Analog parameter. This value is a floating point number that is represented as an IEEE 32 bit number.')
rxalarm_state_mod_temp = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 2, 1, 12), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6))).clone(namedValues=named_values(('noAlarm', 1), ('majorLowAlarm', 2), ('minorLowAlarm', 3), ('minorHighAlarm', 4), ('majorHighAlarm', 5), ('informational', 6)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rxalarmStateModTemp.setStatus('mandatory')
if mibBuilder.loadTexts:
rxalarmStateModTemp.setDescription('The value of this object provides the curent alarm state of the Module Temperature Analog parameter.')
rxlabel_fan_current = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 2, 1, 13), display_string().subtype(subtypeSpec=value_size_constraint(0, 80))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rxlabelFanCurrent.setStatus('optional')
if mibBuilder.loadTexts:
rxlabelFanCurrent.setDescription('The value of this object provides the label of the Fan Current Analog parameter.')
rxuom_fan_current = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 2, 1, 14), display_string().subtype(subtypeSpec=value_size_constraint(0, 80))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rxuomFanCurrent.setStatus('optional')
if mibBuilder.loadTexts:
rxuomFanCurrent.setDescription('The value of this object provides the Unit of Measure of the Fan Current Analog parameter.')
rxmajor_high_fan_current = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 2, 1, 15), float()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rxmajorHighFanCurrent.setStatus('mandatory')
if mibBuilder.loadTexts:
rxmajorHighFanCurrent.setDescription('The value of this object provides the Major High alarm value of the Fan Current Analog parameter. This value is a floating point number that is represented as an IEEE 32 bit number.')
rxmajor_low_fan_current = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 2, 1, 16), float()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rxmajorLowFanCurrent.setStatus('mandatory')
if mibBuilder.loadTexts:
rxmajorLowFanCurrent.setDescription('The value of this object provides the Major Low alarm value of the Fan Current Analog parameter. This value is a floating point number that is represented as an IEEE 32 bit number.')
rxminor_high_fan_current = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 2, 1, 17), float()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rxminorHighFanCurrent.setStatus('mandatory')
if mibBuilder.loadTexts:
rxminorHighFanCurrent.setDescription('The value of this object provides the Minor High alarm value of the Fan Current Analog parameter. This value is a floating point number that is represented as an IEEE 32 bit number.')
rxminor_low_fan_current = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 2, 1, 18), float()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rxminorLowFanCurrent.setStatus('mandatory')
if mibBuilder.loadTexts:
rxminorLowFanCurrent.setDescription('The value of this object provides the Minor Low alarm value of the Fan Current Analog parameter. This value is a floating point number that is represented as an IEEE 32 bit number.')
rxcurrent_value_fan_current = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 2, 1, 19), float()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rxcurrentValueFanCurrent.setStatus('mandatory')
if mibBuilder.loadTexts:
rxcurrentValueFanCurrent.setDescription('The value of this object provides the Current value of the Fan Current Analog parameter. This value is a floating point number that is represented as an IEEE 32 bit number.')
rxstate_flag_fan_current = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 2, 1, 20), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('hidden', 1), ('read-only', 2), ('updateable', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rxstateFlagFanCurrent.setStatus('mandatory')
if mibBuilder.loadTexts:
rxstateFlagFanCurrent.setDescription('The value of this object provides the state of the Fan Current Analog parameter. (0-Hidden 1-Read-Only, 2-Updateable).')
rxmin_value_fan_current = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 2, 1, 21), float()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rxminValueFanCurrent.setStatus('mandatory')
if mibBuilder.loadTexts:
rxminValueFanCurrent.setDescription('The value of this object provides the minimum value of the Fan Current Analog parameter. This value is a floating point number that is represented as an IEEE 32 bit number.')
rxmax_value_fan_current = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 2, 1, 22), float()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rxmaxValueFanCurrent.setStatus('mandatory')
if mibBuilder.loadTexts:
rxmaxValueFanCurrent.setDescription('The value of this object provides the maximum value of the Fan Current Analog parameter. This value is a floating point number that is represented as an IEEE 32 bit number.')
rxalarm_state_fan_current = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 2, 1, 23), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6))).clone(namedValues=named_values(('noAlarm', 1), ('majorLowAlarm', 2), ('minorLowAlarm', 3), ('minorHighAlarm', 4), ('majorHighAlarm', 5), ('informational', 6)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rxalarmStateFanCurrent.setStatus('mandatory')
if mibBuilder.loadTexts:
rxalarmStateFanCurrent.setDescription('The value of this object provides the curent alarm state of the Fan Current Analog parameter.')
rxlabel12_volt = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 2, 1, 24), display_string().subtype(subtypeSpec=value_size_constraint(0, 80))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rxlabel12Volt.setStatus('optional')
if mibBuilder.loadTexts:
rxlabel12Volt.setDescription('The value of this object provides the label of the 12v Current Analog parameter.')
rxuom12_volt = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 2, 1, 25), display_string().subtype(subtypeSpec=value_size_constraint(0, 80))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rxuom12Volt.setStatus('optional')
if mibBuilder.loadTexts:
rxuom12Volt.setDescription('The value of this object provides the Unit of Measure of the 12v Current Analog parameter.')
rxmajor_high12_volt = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 2, 1, 26), float()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rxmajorHigh12Volt.setStatus('mandatory')
if mibBuilder.loadTexts:
rxmajorHigh12Volt.setDescription('The value of this object provides the Major High alarm value of the 12 Volt Current Analog parameter. This value is a floating point number that is represented as an IEEE 32 bit number.')
rxmajor_low12_volt = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 2, 1, 27), float()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rxmajorLow12Volt.setStatus('mandatory')
if mibBuilder.loadTexts:
rxmajorLow12Volt.setDescription('The value of this object provides the Major Low alarm value of the 12 Volt Current Analog parameter. This value is a floating point number that is represented as an IEEE 32 bit number.')
rxminor_high12_volt = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 2, 1, 28), float()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rxminorHigh12Volt.setStatus('mandatory')
if mibBuilder.loadTexts:
rxminorHigh12Volt.setDescription('The value of this object provides the Minor High alarm value of the 12 Volt Current Analog parameter. This value is a floating point number that is represented as an IEEE 32 bit number.')
rxminor_low12_volt = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 2, 1, 29), float()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rxminorLow12Volt.setStatus('mandatory')
if mibBuilder.loadTexts:
rxminorLow12Volt.setDescription('The value of this object provides the Minor Low alarm value of the 12 Volt Current Analog parameter. This value is a floating point number that is represented as an IEEE 32 bit number.')
rxcurrent_value12_volt = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 2, 1, 30), float()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rxcurrentValue12Volt.setStatus('mandatory')
if mibBuilder.loadTexts:
rxcurrentValue12Volt.setDescription('The value of this object provides the Current value of the 12 Volt Current Analog parameter. This value is a floating point number that is represented as an IEEE 32 bit number.')
rxstate_flag12_volt = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 2, 1, 31), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('hidden', 1), ('read-only', 2), ('updateable', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rxstateFlag12Volt.setStatus('mandatory')
if mibBuilder.loadTexts:
rxstateFlag12Volt.setDescription('The value of this object provides the state of the 12v Current Analog parameter. (0-Hidden 1-Read-Only, 2-Updateable).')
rxmin_value12_volt = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 2, 1, 32), float()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rxminValue12Volt.setStatus('mandatory')
if mibBuilder.loadTexts:
rxminValue12Volt.setDescription('The value of this object provides the minimum value of the 12 Volt Current Analog parameter. This value is a floating point number that is represented as an IEEE 32 bit number.')
rxmax_value12_volt = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 2, 1, 33), float()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rxmaxValue12Volt.setStatus('mandatory')
if mibBuilder.loadTexts:
rxmaxValue12Volt.setDescription('The value of this object provides the maximum value of the 12 Volt Current Analog parameter. This value is a floating point number that is represented as an IEEE 32 bit number.')
rxalarm_state12_volt = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 2, 1, 34), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6))).clone(namedValues=named_values(('noAlarm', 1), ('majorLowAlarm', 2), ('minorLowAlarm', 3), ('minorHighAlarm', 4), ('majorHighAlarm', 5), ('informational', 6)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rxalarmState12Volt.setStatus('mandatory')
if mibBuilder.loadTexts:
rxalarmState12Volt.setDescription('The value of this object provides the curent alarm state of the 12v Current Analog parameter.')
rxlabel_opt_power = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 2, 1, 35), display_string().subtype(subtypeSpec=value_size_constraint(0, 80))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rxlabelOptPower.setStatus('optional')
if mibBuilder.loadTexts:
rxlabelOptPower.setDescription('The value of this object provides the label of the Optical Power Analog parameter.')
rxuom_opt_power = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 2, 1, 36), display_string().subtype(subtypeSpec=value_size_constraint(0, 80))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rxuomOptPower.setStatus('optional')
if mibBuilder.loadTexts:
rxuomOptPower.setDescription('The value of this object provides the Unit of Measure of the Optical Power Analog parameter.')
rxmajor_high_opt_power = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 2, 1, 37), float()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rxmajorHighOptPower.setStatus('mandatory')
if mibBuilder.loadTexts:
rxmajorHighOptPower.setDescription('The value of this object provides the Major High alarm value of the Optical Power Analog parameter. This value is a floating point number that is represented as an IEEE 32 bit number.')
rxmajor_low_opt_power = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 2, 1, 38), float()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rxmajorLowOptPower.setStatus('mandatory')
if mibBuilder.loadTexts:
rxmajorLowOptPower.setDescription('The value of this object provides the Major Low alarm value of the Optical Power Analog parameter. This value is a floating point number that is represented as an IEEE 32 bit number.')
rxminor_high_opt_power = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 2, 1, 39), float()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rxminorHighOptPower.setStatus('mandatory')
if mibBuilder.loadTexts:
rxminorHighOptPower.setDescription('The value of this object provides the Minor High alarm value of the Optical Power Analog parameter. This value is a floating point number that is represented as an IEEE 32 bit number.')
rxminor_low_opt_power = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 2, 1, 40), float()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rxminorLowOptPower.setStatus('mandatory')
if mibBuilder.loadTexts:
rxminorLowOptPower.setDescription('The value of this object provides the Minor Low alarm value of the Optical Power Analog parameter. This value is a floating point number that is represented as an IEEE 32 bit number.')
rxcurrent_value_opt_power = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 2, 1, 41), float()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rxcurrentValueOptPower.setStatus('mandatory')
if mibBuilder.loadTexts:
rxcurrentValueOptPower.setDescription('The value of this object provides the Current value of the Optical Power Analog parameter. This value is a floating point number that is represented as an IEEE 32 bit number.')
rxstate_flag_opt_power = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 2, 1, 42), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('hidden', 1), ('read-only', 2), ('updateable', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rxstateFlagOptPower.setStatus('mandatory')
if mibBuilder.loadTexts:
rxstateFlagOptPower.setDescription('The value of this object provides the state of the Optical Power Analog parameter. (0-Hidden 1-Read-Only, 2-Updateable).')
rxmin_value_opt_power = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 2, 1, 43), float()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rxminValueOptPower.setStatus('mandatory')
if mibBuilder.loadTexts:
rxminValueOptPower.setDescription('The value of this object provides the minimum value of the Optical Power Analog parameter. This value is a floating point number that is represented as an IEEE 32 bit number.')
rxmax_value_opt_power = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 2, 1, 44), float()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rxmaxValueOptPower.setStatus('mandatory')
if mibBuilder.loadTexts:
rxmaxValueOptPower.setDescription('The value of this object provides the maximum value of the Optical Power Analog parameter. This value is a floating point number that is represented as an IEEE 32 bit number.')
rxalarm_state_opt_power = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 2, 1, 45), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6))).clone(namedValues=named_values(('noAlarm', 1), ('majorLowAlarm', 2), ('minorLowAlarm', 3), ('minorHighAlarm', 4), ('majorHighAlarm', 5), ('informational', 6)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rxalarmStateOptPower.setStatus('mandatory')
if mibBuilder.loadTexts:
rxalarmStateOptPower.setDescription('The value of this object provides the curent alarm state of the Optical Power Analog parameter.')
rxgx2_rx200_digital_table_index = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 3, 2, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 4294967295))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rxgx2Rx200DigitalTableIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
rxgx2Rx200DigitalTableIndex.setDescription('The value of this object identifies the network element. This index is equal to the hfcCommonTableIndex for the same element.')
rxlabel_mode = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 3, 2, 2), display_string().subtype(subtypeSpec=value_size_constraint(0, 80))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rxlabelMode.setStatus('optional')
if mibBuilder.loadTexts:
rxlabelMode.setDescription("The value of this object provides the label of the RX200's Mode Digital parameter.")
rxenum_mode = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 3, 2, 3), display_string().subtype(subtypeSpec=value_size_constraint(0, 80))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rxenumMode.setStatus('optional')
if mibBuilder.loadTexts:
rxenumMode.setDescription('The value of this object represents the Enumeration values possible for the Digital parameter. Each Enumerated values is separated by a common. The first value has a enumerated value of 1.')
rxvalue_mode = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 3, 2, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('off', 1), ('normal', 2), ('burst', 3)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
rxvalueMode.setStatus('mandatory')
if mibBuilder.loadTexts:
rxvalueMode.setDescription('The value of this object is the current value of the parameter.')
rxstate_flag_mode = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 3, 2, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('hidden', 1), ('read-only', 2), ('updateable', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rxstateFlagMode.setStatus('mandatory')
if mibBuilder.loadTexts:
rxstateFlagMode.setDescription('The value of this object provides the state of the the parameter. (0-Hidden 1-Read-Only, 2-Updateable).')
rxlabel_wavelength = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 3, 2, 6), display_string().subtype(subtypeSpec=value_size_constraint(0, 80))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rxlabelWavelength.setStatus('optional')
if mibBuilder.loadTexts:
rxlabelWavelength.setDescription("The value of this object provides the label of the RX200's Wavelength Digital parameter.")
rxenum_wavelength = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 3, 2, 7), display_string().subtype(subtypeSpec=value_size_constraint(0, 80))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rxenumWavelength.setStatus('optional')
if mibBuilder.loadTexts:
rxenumWavelength.setDescription('The value of this object represents the Enumeration values possible for the Digital parameter. Each Enumerated values is separated by a common. The first value has a enumerated value of 1.')
rxvalue_wavelength = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 3, 2, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('nM1310', 1), ('nM1550', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
rxvalueWavelength.setStatus('mandatory')
if mibBuilder.loadTexts:
rxvalueWavelength.setDescription('The value of this object is the current value of the parameter.')
rxstate_flag_wavelength = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 3, 2, 9), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('hidden', 1), ('read-only', 2), ('updateable', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rxstateFlagWavelength.setStatus('mandatory')
if mibBuilder.loadTexts:
rxstateFlagWavelength.setDescription('The value of this object provides the state of the the parameter. (0-Hidden 1-Read-Only, 2-Updateable).')
rxlabel_attn_setting = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 3, 2, 10), display_string().subtype(subtypeSpec=value_size_constraint(0, 80))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rxlabelAttnSetting.setStatus('optional')
if mibBuilder.loadTexts:
rxlabelAttnSetting.setDescription("The value of this object provides the label of the RX200's AttnSetting Digital parameter.")
rxenum_attn_setting = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 3, 2, 11), display_string().subtype(subtypeSpec=value_size_constraint(0, 80))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rxenumAttnSetting.setStatus('optional')
if mibBuilder.loadTexts:
rxenumAttnSetting.setDescription('The value of this object represents the Enumeration values possible for the Digital parameter. Each Enumerated values is separated by a common. The first value has a enumerated value of 1.')
rxvalue_attn_setting = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 3, 2, 12), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
rxvalueAttnSetting.setStatus('mandatory')
if mibBuilder.loadTexts:
rxvalueAttnSetting.setDescription('The value of this object is the current value of the parameter. It is an integer value from 0 to 40. Each increment represents 1/2 dB of attenuation from 0 to 20 dB. Where 0 = 0db and 40 = 20db')
rxstate_flag_attn_setting = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 3, 2, 13), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('hidden', 1), ('read-only', 2), ('updateable', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rxstateFlagAttnSetting.setStatus('mandatory')
if mibBuilder.loadTexts:
rxstateFlagAttnSetting.setDescription('The value of this object provides the state of the the parameter. (0-Hidden 1-Read-Only, 2-Updateable).')
rxlabel_sw_mode_setting = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 3, 2, 14), display_string().subtype(subtypeSpec=value_size_constraint(0, 80))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rxlabelSwModeSetting.setStatus('optional')
if mibBuilder.loadTexts:
rxlabelSwModeSetting.setDescription("The value of this object provides the label of the RX200's Switch Mode Setting Digital parameter.")
rxenum_sw_mode_setting = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 3, 2, 15), display_string().subtype(subtypeSpec=value_size_constraint(0, 80))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rxenumSwModeSetting.setStatus('optional')
if mibBuilder.loadTexts:
rxenumSwModeSetting.setDescription('The value of this object represents the Enumeration values possible for the Digital parameter. Each Enumerated values is separated by a common. The first value has a enumerated value of 1.')
rxvalue_sw_mode_setting = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 3, 2, 16), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('off', 1), ('alarm-only', 2), ('alarm-and-switch', 3)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
rxvalueSwModeSetting.setStatus('mandatory')
if mibBuilder.loadTexts:
rxvalueSwModeSetting.setDescription('The value of this object is the current value of the parameter.')
rxstate_flag_sw_mode_setting = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 3, 2, 17), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('hidden', 1), ('read-only', 2), ('updateable', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rxstateFlagSwModeSetting.setStatus('mandatory')
if mibBuilder.loadTexts:
rxstateFlagSwModeSetting.setDescription('The value of this object provides the state of the the parameter. (0-Hidden 1-Read-Only, 2-Updateable).')
rxlabel_sw_mode_threshold = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 3, 2, 18), display_string().subtype(subtypeSpec=value_size_constraint(0, 80))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rxlabelSwModeThreshold.setStatus('optional')
if mibBuilder.loadTexts:
rxlabelSwModeThreshold.setDescription("The value of this object provides the label of the RX200's Switch Mode Threshold Digital parameter.")
rxenum_sw_mode_threshold = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 3, 2, 19), display_string().subtype(subtypeSpec=value_size_constraint(0, 80))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rxenumSwModeThreshold.setStatus('optional')
if mibBuilder.loadTexts:
rxenumSwModeThreshold.setDescription('The value of this object represents the Enumeration values possible for the Digital parameter. Each Enumerated values is separated by a common. The first value has a enumerated value of 1.')
rxvalue_sw_mode_threshold = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 3, 2, 20), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
rxvalueSwModeThreshold.setStatus('mandatory')
if mibBuilder.loadTexts:
rxvalueSwModeThreshold.setDescription('The value of this object reflects the setting of the threshold at which the Optical Input Failed signal is sent. It is in 1 dB increments ranging from -2 to -17 dB. The user can enter a number from 0 to 15, where 0 = -2db and 15= -17db')
rxstate_flag_sw_mode_threshold = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 3, 2, 21), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('hidden', 1), ('read-only', 2), ('updateable', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rxstateFlagSwModeThreshold.setStatus('mandatory')
if mibBuilder.loadTexts:
rxstateFlagSwModeThreshold.setDescription('The value of this object provides the state of the the parameter. (0-Hidden 1-Read-Only, 2-Updateable).')
rxlabel_factory_default = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 3, 2, 22), display_string().subtype(subtypeSpec=value_size_constraint(0, 80))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rxlabelFactoryDefault.setStatus('optional')
if mibBuilder.loadTexts:
rxlabelFactoryDefault.setDescription('The value of this object provides the label of the Factory Default Reset Digital parameter.')
rxenum_factory_default = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 3, 2, 23), display_string().subtype(subtypeSpec=value_size_constraint(0, 80))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rxenumFactoryDefault.setStatus('optional')
if mibBuilder.loadTexts:
rxenumFactoryDefault.setDescription('The value of this object represents the Enumeration values possible for the Digital parameter. Each Enumerated values is separated by a common. The first value has a enumerated value of 1.')
rxvalue_factory_default = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 3, 2, 24), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('off', 1), ('on', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
rxvalueFactoryDefault.setStatus('mandatory')
if mibBuilder.loadTexts:
rxvalueFactoryDefault.setDescription('The value of this object is the current value of the parameter.')
rxstate_flag_factory_default = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 3, 2, 25), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('hidden', 1), ('read-only', 2), ('updateable', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rxstateFlagFactoryDefault.setStatus('mandatory')
if mibBuilder.loadTexts:
rxstateFlagFactoryDefault.setDescription('The value of this object provides the state of the the parameter. (0-Hidden 1-Read-Only, 2-Updateable).')
rxgx2_rx200_status_table_index = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 4, 3, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 4294967295))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rxgx2Rx200StatusTableIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
rxgx2Rx200StatusTableIndex.setDescription('The value of this object identifies the network element. This index is equal to the hfcCommonTableIndex for the same element.')
rxlabel_boot = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 4, 3, 2), display_string().subtype(subtypeSpec=value_size_constraint(0, 80))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rxlabelBoot.setStatus('optional')
if mibBuilder.loadTexts:
rxlabelBoot.setDescription('The value of this object provides the label of the Boot Status Status parameter.')
rxvalue_boot = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 4, 3, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6))).clone(namedValues=named_values(('ok', 1), ('undetermined', 2), ('warning', 3), ('minor', 4), ('major', 5), ('critical', 6)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rxvalueBoot.setStatus('mandatory')
if mibBuilder.loadTexts:
rxvalueBoot.setDescription('The value of this object provides the current state of the parameter (0-Ok, 1-Undetermined 2-Warning, 3-Minor, 4-Major, 5-Critical).')
rxstateflag_boot = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 4, 3, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('hidden', 1), ('read-only', 2), ('updateable', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rxstateflagBoot.setStatus('mandatory')
if mibBuilder.loadTexts:
rxstateflagBoot.setDescription('The value of this object provides the state of the the parameter. (0-Hidden 1-Read-Only, 2-Updateable).')
rxlabel_flash = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 4, 3, 5), display_string().subtype(subtypeSpec=value_size_constraint(0, 80))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rxlabelFlash.setStatus('optional')
if mibBuilder.loadTexts:
rxlabelFlash.setDescription('The value of this object provides the label of the Flash Status Status parameter.')
rxvalue_flash = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 4, 3, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6))).clone(namedValues=named_values(('ok', 1), ('undetermined', 2), ('warning', 3), ('minor', 4), ('major', 5), ('critical', 6)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rxvalueFlash.setStatus('mandatory')
if mibBuilder.loadTexts:
rxvalueFlash.setDescription('The value of this object provides the current state of the parameter (0-Ok, 1-Undetermined 2-Warning, 3-Minor, 4-Major, 5-Critical).')
rxstateflag_flash = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 4, 3, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('hidden', 1), ('read-only', 2), ('updateable', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rxstateflagFlash.setStatus('mandatory')
if mibBuilder.loadTexts:
rxstateflagFlash.setDescription('The value of this object provides the state of the the parameter. (0-Hidden 1-Read-Only, 2-Updateable).')
rxlabel_factory_data_crc = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 4, 3, 8), display_string().subtype(subtypeSpec=value_size_constraint(0, 80))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rxlabelFactoryDataCRC.setStatus('optional')
if mibBuilder.loadTexts:
rxlabelFactoryDataCRC.setDescription('The value of this object provides the label of the Factory Data CRC Status parameter.')
rxvalue_factory_data_crc = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 4, 3, 9), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6))).clone(namedValues=named_values(('ok', 1), ('undetermined', 2), ('warning', 3), ('minor', 4), ('major', 5), ('critical', 6)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rxvalueFactoryDataCRC.setStatus('mandatory')
if mibBuilder.loadTexts:
rxvalueFactoryDataCRC.setDescription('The value of this object provides the current state of the parameter (0-Ok, 1-Undetermined 2-Warning, 3-Minor, 4-Major, 5-Critical).')
rxstateflag_factory_data_crc = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 4, 3, 10), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('hidden', 1), ('read-only', 2), ('updateable', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rxstateflagFactoryDataCRC.setStatus('mandatory')
if mibBuilder.loadTexts:
rxstateflagFactoryDataCRC.setDescription('The value of this object provides the state of the the parameter. (0-Hidden 1-Read-Only, 2-Updateable).')
rxlabel_alarm_data_crc = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 4, 3, 11), display_string().subtype(subtypeSpec=value_size_constraint(0, 80))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rxlabelAlarmDataCRC.setStatus('optional')
if mibBuilder.loadTexts:
rxlabelAlarmDataCRC.setDescription('The value of this object provides the label of the Alarm Data CRC Status parameter.')
rxvalue_alarm_data_crc = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 4, 3, 12), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6))).clone(namedValues=named_values(('ok', 1), ('undetermined', 2), ('warning', 3), ('minor', 4), ('major', 5), ('critical', 6)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rxvalueAlarmDataCRC.setStatus('mandatory')
if mibBuilder.loadTexts:
rxvalueAlarmDataCRC.setDescription('The value of this object provides the current state of the parameter (0-Ok, 1-Undetermined 2-Warning, 3-Minor, 4-Major, 5-Critical).')
rxstateflag_alarm_data_crc = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 4, 3, 13), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('hidden', 1), ('read-only', 2), ('updateable', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rxstateflagAlarmDataCRC.setStatus('mandatory')
if mibBuilder.loadTexts:
rxstateflagAlarmDataCRC.setDescription('The value of this object provides the state of the the parameter. (0-Hidden 1-Read-Only, 2-Updateable).')
rxlabel_calibration_data_crc = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 4, 3, 14), display_string().subtype(subtypeSpec=value_size_constraint(0, 80))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rxlabelCalibrationDataCRC.setStatus('optional')
if mibBuilder.loadTexts:
rxlabelCalibrationDataCRC.setDescription('The value of this object provides the label of the Calibration Data CRC Status parameter.')
rxvalue_calibration_data_crc = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 4, 3, 15), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6))).clone(namedValues=named_values(('ok', 1), ('undetermined', 2), ('warning', 3), ('minor', 4), ('major', 5), ('critical', 6)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rxvalueCalibrationDataCRC.setStatus('mandatory')
if mibBuilder.loadTexts:
rxvalueCalibrationDataCRC.setDescription('The value of this object provides the current state of the parameter (0-Ok, 1-Undetermined 2-Warning, 3-Minor, 4-Major, 5-Critical).')
rxstateflag_calibration_data_crc = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 4, 3, 16), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('hidden', 1), ('read-only', 2), ('updateable', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rxstateflagCalibrationDataCRC.setStatus('mandatory')
if mibBuilder.loadTexts:
rxstateflagCalibrationDataCRC.setDescription('The value of this object provides the state of the the parameter. (0-Hidden 1-Read-Only, 2-Updateable).')
rxlabel_thermal_comp_crc = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 4, 3, 17), display_string().subtype(subtypeSpec=value_size_constraint(0, 80))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rxlabelThermalCompCRC.setStatus('optional')
if mibBuilder.loadTexts:
rxlabelThermalCompCRC.setDescription('The value of this object provides the label of the Calibration Data CRC Status parameter.')
rxvalue_thermal_comp_crc = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 4, 3, 18), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6))).clone(namedValues=named_values(('ok', 1), ('undetermined', 2), ('warning', 3), ('minor', 4), ('major', 5), ('critical', 6)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rxvalueThermalCompCRC.setStatus('mandatory')
if mibBuilder.loadTexts:
rxvalueThermalCompCRC.setDescription('The value of this object provides the current state of the parameter (0-Ok, 1-Undetermined 2-Warning, 3-Minor, 4-Major, 5-Critical).')
rxstateflag_thermal_comp_crc = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 4, 3, 19), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('hidden', 1), ('read-only', 2), ('updateable', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rxstateflagThermalCompCRC.setStatus('mandatory')
if mibBuilder.loadTexts:
rxstateflagThermalCompCRC.setDescription('The value of this object provides the state of the the parameter. (0-Hidden 1-Read-Only, 2-Updateable).')
rxlabel_hw = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 4, 3, 20), display_string().subtype(subtypeSpec=value_size_constraint(0, 80))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rxlabelHW.setStatus('optional')
if mibBuilder.loadTexts:
rxlabelHW.setDescription('The value of this object provides the label of the Hardware Status parameter.')
rxvalue_hw = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 4, 3, 21), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6))).clone(namedValues=named_values(('ok', 1), ('undetermined', 2), ('warning', 3), ('minor', 4), ('major', 5), ('critical', 6)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rxvalueHW.setStatus('mandatory')
if mibBuilder.loadTexts:
rxvalueHW.setDescription('The value of this object provides the current state of the parameter (0-Ok, 1-Undetermined 2-Warning, 3-Minor, 4-Major, 5-Critical).')
rxstateflag_hw = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 4, 3, 22), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('hidden', 1), ('read-only', 2), ('updateable', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rxstateflagHW.setStatus('mandatory')
if mibBuilder.loadTexts:
rxstateflagHW.setDescription('The value of this object provides the state of the the parameter. (0-Hidden 1-Read-Only, 2-Updateable).')
rxlabel_opt_sig = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 4, 3, 23), display_string().subtype(subtypeSpec=value_size_constraint(0, 80))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rxlabelOptSig.setStatus('optional')
if mibBuilder.loadTexts:
rxlabelOptSig.setDescription('The value of this object provides the label of the Optical Signal Status parameter.')
rxvalue_opt_sig = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 4, 3, 24), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6))).clone(namedValues=named_values(('ok', 1), ('undetermined', 2), ('warning', 3), ('minor', 4), ('major', 5), ('critical', 6)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rxvalueOptSig.setStatus('mandatory')
if mibBuilder.loadTexts:
rxvalueOptSig.setDescription('The value of this object provides the current state of the parameter (0-Ok, 1-Undetermined 2-Warning, 3-Minor, 4-Major, 5-Critical).')
rxstateflag_opt_sig = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 4, 3, 25), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('hidden', 1), ('read-only', 2), ('updateable', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rxstateflagOptSig.setStatus('mandatory')
if mibBuilder.loadTexts:
rxstateflagOptSig.setDescription('The value of this object provides the state of the the parameter. (0-Hidden 1-Read-Only, 2-Updateable).')
rxgx2_rx200_factory_table_index = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 5, 4, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 4294967295))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rxgx2Rx200FactoryTableIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
rxgx2Rx200FactoryTableIndex.setDescription('The value of this object identifies the network element. This index is equal to the hfcCommonTableIndex for the same element.')
rxboot_control_byte = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 5, 4, 2), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rxbootControlByte.setStatus('mandatory')
if mibBuilder.loadTexts:
rxbootControlByte.setDescription('The value of this object indicates which bank the firmware is currently being boot from.')
rxboot_status_byte = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 5, 4, 3), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rxbootStatusByte.setStatus('mandatory')
if mibBuilder.loadTexts:
rxbootStatusByte.setDescription('This object indicates the status of the last boot')
rxbank0_crc = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 5, 4, 4), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rxbank0CRC.setStatus('mandatory')
if mibBuilder.loadTexts:
rxbank0CRC.setDescription('This object provides the CRC code of bank 0.')
rxbank1_crc = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 5, 4, 5), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rxbank1CRC.setStatus('mandatory')
if mibBuilder.loadTexts:
rxbank1CRC.setDescription('This object provides the CRC code of bank 1.')
rxprg_eeprom_byte = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 5, 4, 6), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rxprgEEPROMByte.setStatus('mandatory')
if mibBuilder.loadTexts:
rxprgEEPROMByte.setDescription('This object indicates if the EEPROM has been programmed')
rxfactory_crc = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 5, 4, 7), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rxfactoryCRC.setStatus('mandatory')
if mibBuilder.loadTexts:
rxfactoryCRC.setDescription('This object provides the CRC code for the Factory data.')
rxcalculate_crc = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 5, 4, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4))).clone(namedValues=named_values(('factory', 1), ('calibration', 2), ('alarm', 3), ('tempComp', 4)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rxcalculateCRC.setStatus('mandatory')
if mibBuilder.loadTexts:
rxcalculateCRC.setDescription('This object indicates which of the Emnums will have the CRC calculated.')
rxhour_meter = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 5, 4, 9), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rxhourMeter.setStatus('mandatory')
if mibBuilder.loadTexts:
rxhourMeter.setDescription('This object provides the hour meter reading of the module.')
rxflash_prg_cnt_a = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 5, 4, 10), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rxflashPrgCntA.setStatus('mandatory')
if mibBuilder.loadTexts:
rxflashPrgCntA.setDescription('This object provides the number of times the flash has been programmed on side A.')
rxflash_prg_cnt_b = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 5, 4, 11), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rxflashPrgCntB.setStatus('mandatory')
if mibBuilder.loadTexts:
rxflashPrgCntB.setDescription('This object provides the number of times the flash has been programmed on side B.')
rxfw_rev0 = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 5, 4, 12), display_string().subtype(subtypeSpec=value_size_constraint(0, 80))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rxfwRev0.setStatus('mandatory')
if mibBuilder.loadTexts:
rxfwRev0.setDescription('This object provides the Revision of the firmware stores in bank 0.')
rxfw_rev1 = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 5, 4, 13), display_string().subtype(subtypeSpec=value_size_constraint(0, 80))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rxfwRev1.setStatus('mandatory')
if mibBuilder.loadTexts:
rxfwRev1.setDescription('This object provides the Revision of the firmware stores in bank 1.')
rxgx2_rx200_hold_time_table_index = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 6, 5, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 4294967295))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rxgx2Rx200HoldTimeTableIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
rxgx2Rx200HoldTimeTableIndex.setDescription('The value of this object is the index of the data object.')
rxgx2_rx200_hold_time_spec_index = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 6, 5, 2), integer32().subtype(subtypeSpec=value_range_constraint(1, 4294967295))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rxgx2Rx200HoldTimeSpecIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
rxgx2Rx200HoldTimeSpecIndex.setDescription('The value of this object identifies the index of the alarm object to be modified.')
rxgx2_rx200_hold_time_data = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6, 6, 5, 3), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
rxgx2Rx200HoldTimeData.setStatus('mandatory')
if mibBuilder.loadTexts:
rxgx2Rx200HoldTimeData.setDescription('The value of this object provides access to the hold timers used to suppress nose on analog objects. This object is a 32 bit object. Validation data is entered into bytes zero and one of the object. Bytes three and four are used to entering the hold time for the specified alarm object. The Hold timer data ranges from 0 to 1300 seconds. The index of this object corresponds to the alarm object to be modified. Alarm Hold timers correspond to the index of this object as follows: Index 1 = xxx, index 2 = xxxx, Index 3 = xxxx, The hold time is represented in seconds.')
trap_rx200_config_change_integer = notification_type((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6) + (0, 1)).setObjects(('NLSBBN-TRAPS-MIB', 'trapIdentifier'), ('NLSBBN-TRAPS-MIB', 'trapNetworkElemModelNumber'), ('NLSBBN-TRAPS-MIB', 'trapNetworkElemSerialNum'), ('NLSBBN-TRAPS-MIB', 'trapPerceivedSeverity'), ('NLSBBN-TRAPS-MIB', 'trapNetworkElemOperState'), ('NLSBBN-TRAPS-MIB', 'trapNetworkElemAlarmStatus'), ('NLSBBN-TRAPS-MIB', 'trapNetworkElemAdminState'), ('NLSBBN-TRAPS-MIB', 'trapNetworkElemAvailStatus'), ('NLSBBN-TRAPS-MIB', 'trapText'), ('NLSBBN-TRAPS-MIB', 'trapChangedObjectId'), ('NLSBBN-TRAPS-MIB', 'trapChangedValueInteger'), ('NLSBBN-TRAPS-MIB', 'trapNETrapLastTrapTimeStamp'))
if mibBuilder.loadTexts:
trapRX200ConfigChangeInteger.setDescription("This trap is issued if configuration of a single variable with integer type was changed (via ANY interface). TrapChangedValueInteger variable may contain current reading of that variable. trapPerceivedSeverity - 'indeterminate'")
trap_rx200_config_change_display_string = notification_type((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6) + (0, 2)).setObjects(('NLSBBN-TRAPS-MIB', 'trapIdentifier'), ('NLSBBN-TRAPS-MIB', 'trapNetworkElemModelNumber'), ('NLSBBN-TRAPS-MIB', 'trapNetworkElemSerialNum'), ('NLSBBN-TRAPS-MIB', 'trapPerceivedSeverity'), ('NLSBBN-TRAPS-MIB', 'trapNetworkElemOperState'), ('NLSBBN-TRAPS-MIB', 'trapNetworkElemAlarmStatus'), ('NLSBBN-TRAPS-MIB', 'trapNetworkElemAdminState'), ('NLSBBN-TRAPS-MIB', 'trapNetworkElemAvailStatus'), ('NLSBBN-TRAPS-MIB', 'trapText'), ('NLSBBN-TRAPS-MIB', 'trapChangedObjectId'), ('NLSBBN-TRAPS-MIB', 'trapChangedValueDisplayString'), ('NLSBBN-TRAPS-MIB', 'trapNETrapLastTrapTimeStamp'))
if mibBuilder.loadTexts:
trapRX200ConfigChangeDisplayString.setDescription("This trap is issued if configuration of a single variable with DispalayString type was changed (via ANY interface). TrapChangedValueDisplayString variable may contain current reading of that variable. trapPerceivedSeverity - 'indeterminate'")
trap_rx200_optical_power_alarm = notification_type((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6) + (0, 3)).setObjects(('NLSBBN-TRAPS-MIB', 'trapIdentifier'), ('NLSBBN-TRAPS-MIB', 'trapNetworkElemModelNumber'), ('NLSBBN-TRAPS-MIB', 'trapNetworkElemSerialNum'), ('NLSBBN-TRAPS-MIB', 'trapPerceivedSeverity'), ('NLSBBN-TRAPS-MIB', 'trapNetworkElemOperState'), ('NLSBBN-TRAPS-MIB', 'trapNetworkElemAlarmStatus'), ('NLSBBN-TRAPS-MIB', 'trapNetworkElemAdminState'), ('NLSBBN-TRAPS-MIB', 'trapNetworkElemAvailStatus'), ('NLSBBN-TRAPS-MIB', 'trapText'), ('NLSBBN-TRAPS-MIB', 'trapChangedObjectId'), ('NLSBBN-TRAPS-MIB', 'trapChangedValueInteger'), ('NLSBBN-TRAPS-MIB', 'trapNETrapLastTrapTimeStamp'))
if mibBuilder.loadTexts:
trapRX200OpticalPowerAlarm.setDescription('This trap is issued when the Laser Modules Optical Power parameter goes out of range. trapAdditionalInfoInteger variable contains current reading of the this parameter.')
trap_rx200_module_temperature_alarm = notification_type((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6) + (0, 4)).setObjects(('NLSBBN-TRAPS-MIB', 'trapIdentifier'), ('NLSBBN-TRAPS-MIB', 'trapNetworkElemModelNumber'), ('NLSBBN-TRAPS-MIB', 'trapNetworkElemSerialNum'), ('NLSBBN-TRAPS-MIB', 'trapPerceivedSeverity'), ('NLSBBN-TRAPS-MIB', 'trapNetworkElemOperState'), ('NLSBBN-TRAPS-MIB', 'trapNetworkElemAlarmStatus'), ('NLSBBN-TRAPS-MIB', 'trapNetworkElemAdminState'), ('NLSBBN-TRAPS-MIB', 'trapNetworkElemAvailStatus'), ('NLSBBN-TRAPS-MIB', 'trapText'), ('NLSBBN-TRAPS-MIB', 'trapChangedObjectId'), ('NLSBBN-TRAPS-MIB', 'trapChangedValueInteger'), ('NLSBBN-TRAPS-MIB', 'trapNETrapLastTrapTimeStamp'))
if mibBuilder.loadTexts:
trapRX200ModuleTemperatureAlarm.setDescription('This trap is issued when the RX200 Modules Temperature goes out of range. trapAdditionalInfoInteger variable contains current reading of the this parameter.')
trap_rx200_fan_current_alarm = notification_type((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6) + (0, 5)).setObjects(('NLSBBN-TRAPS-MIB', 'trapIdentifier'), ('NLSBBN-TRAPS-MIB', 'trapNetworkElemModelNumber'), ('NLSBBN-TRAPS-MIB', 'trapNetworkElemSerialNum'), ('NLSBBN-TRAPS-MIB', 'trapPerceivedSeverity'), ('NLSBBN-TRAPS-MIB', 'trapNetworkElemOperState'), ('NLSBBN-TRAPS-MIB', 'trapNetworkElemAlarmStatus'), ('NLSBBN-TRAPS-MIB', 'trapNetworkElemAdminState'), ('NLSBBN-TRAPS-MIB', 'trapNetworkElemAvailStatus'), ('NLSBBN-TRAPS-MIB', 'trapText'), ('NLSBBN-TRAPS-MIB', 'trapChangedObjectId'), ('NLSBBN-TRAPS-MIB', 'trapChangedValueInteger'), ('NLSBBN-TRAPS-MIB', 'trapNETrapLastTrapTimeStamp'))
if mibBuilder.loadTexts:
trapRX200FanCurrentAlarm.setDescription('This trap is issued when the RX200 Modules Fan Currrent parameter goes out of range. trapAdditionalInfoInteger variable contains current reading of the this parameter.')
trap_rx200_plus12_current_alarm = notification_type((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6) + (0, 6)).setObjects(('NLSBBN-TRAPS-MIB', 'trapIdentifier'), ('NLSBBN-TRAPS-MIB', 'trapNetworkElemModelNumber'), ('NLSBBN-TRAPS-MIB', 'trapNetworkElemSerialNum'), ('NLSBBN-TRAPS-MIB', 'trapPerceivedSeverity'), ('NLSBBN-TRAPS-MIB', 'trapNetworkElemOperState'), ('NLSBBN-TRAPS-MIB', 'trapNetworkElemAlarmStatus'), ('NLSBBN-TRAPS-MIB', 'trapNetworkElemAdminState'), ('NLSBBN-TRAPS-MIB', 'trapNetworkElemAvailStatus'), ('NLSBBN-TRAPS-MIB', 'trapText'), ('NLSBBN-TRAPS-MIB', 'trapChangedObjectId'), ('NLSBBN-TRAPS-MIB', 'trapChangedValueInteger'), ('NLSBBN-TRAPS-MIB', 'trapNETrapLastTrapTimeStamp'))
if mibBuilder.loadTexts:
trapRX200Plus12CurrentAlarm.setDescription('This trap is issued when the RX200 Modules positive 12 volt current parameter goes out of range. trapAdditionalInfoInteger variable contains current reading of the this parameter.')
trap_rx200_boot0_alarm = notification_type((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6) + (0, 7)).setObjects(('NLSBBN-TRAPS-MIB', 'trapIdentifier'), ('NLSBBN-TRAPS-MIB', 'trapNetworkElemModelNumber'), ('NLSBBN-TRAPS-MIB', 'trapNetworkElemSerialNum'), ('NLSBBN-TRAPS-MIB', 'trapPerceivedSeverity'), ('NLSBBN-TRAPS-MIB', 'trapNetworkElemOperState'), ('NLSBBN-TRAPS-MIB', 'trapNetworkElemAlarmStatus'), ('NLSBBN-TRAPS-MIB', 'trapNetworkElemAdminState'), ('NLSBBN-TRAPS-MIB', 'trapNetworkElemAvailStatus'), ('NLSBBN-TRAPS-MIB', 'trapText'), ('NLSBBN-TRAPS-MIB', 'trapChangedObjectId'), ('NLSBBN-TRAPS-MIB', 'trapChangedValueInteger'), ('NLSBBN-TRAPS-MIB', 'trapNETrapLastTrapTimeStamp'))
if mibBuilder.loadTexts:
trapRX200Boot0Alarm.setDescription('This trap is issued when the RX200 Modules Bank 0 Boot sequence has detected an error. trapAdditionalInfoInteger variable contains current reading of the this parameter.')
trap_rx200_boot1_alarm = notification_type((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6) + (0, 8)).setObjects(('NLSBBN-TRAPS-MIB', 'trapIdentifier'), ('NLSBBN-TRAPS-MIB', 'trapNetworkElemModelNumber'), ('NLSBBN-TRAPS-MIB', 'trapNetworkElemSerialNum'), ('NLSBBN-TRAPS-MIB', 'trapPerceivedSeverity'), ('NLSBBN-TRAPS-MIB', 'trapNetworkElemOperState'), ('NLSBBN-TRAPS-MIB', 'trapNetworkElemAlarmStatus'), ('NLSBBN-TRAPS-MIB', 'trapNetworkElemAdminState'), ('NLSBBN-TRAPS-MIB', 'trapNetworkElemAvailStatus'), ('NLSBBN-TRAPS-MIB', 'trapText'), ('NLSBBN-TRAPS-MIB', 'trapChangedObjectId'), ('NLSBBN-TRAPS-MIB', 'trapChangedValueInteger'), ('NLSBBN-TRAPS-MIB', 'trapNETrapLastTrapTimeStamp'))
if mibBuilder.loadTexts:
trapRX200Boot1Alarm.setDescription('This trap is issued when the RX200 Modules Bank 1 Boot sequence has detected an error. trapAdditionalInfoInteger variable contains current reading of the this parameter.')
trap_rx200_flash_alarm = notification_type((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6) + (0, 9)).setObjects(('NLSBBN-TRAPS-MIB', 'trapIdentifier'), ('NLSBBN-TRAPS-MIB', 'trapNetworkElemModelNumber'), ('NLSBBN-TRAPS-MIB', 'trapNetworkElemSerialNum'), ('NLSBBN-TRAPS-MIB', 'trapPerceivedSeverity'), ('NLSBBN-TRAPS-MIB', 'trapNetworkElemOperState'), ('NLSBBN-TRAPS-MIB', 'trapNetworkElemAlarmStatus'), ('NLSBBN-TRAPS-MIB', 'trapNetworkElemAdminState'), ('NLSBBN-TRAPS-MIB', 'trapNetworkElemAvailStatus'), ('NLSBBN-TRAPS-MIB', 'trapText'), ('NLSBBN-TRAPS-MIB', 'trapChangedObjectId'), ('NLSBBN-TRAPS-MIB', 'trapChangedValueInteger'), ('NLSBBN-TRAPS-MIB', 'trapNETrapLastTrapTimeStamp'))
if mibBuilder.loadTexts:
trapRX200FlashAlarm.setDescription('This trap is issued when the RX200 Modules boot or flash programming sequence has detected a Flash error. trapAdditionalInfoInteger variable contains current reading of the this parameter.')
trap_rx200_alarm_data_crc_alarm = notification_type((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6) + (0, 10)).setObjects(('NLSBBN-TRAPS-MIB', 'trapIdentifier'), ('NLSBBN-TRAPS-MIB', 'trapNetworkElemModelNumber'), ('NLSBBN-TRAPS-MIB', 'trapNetworkElemSerialNum'), ('NLSBBN-TRAPS-MIB', 'trapPerceivedSeverity'), ('NLSBBN-TRAPS-MIB', 'trapNetworkElemOperState'), ('NLSBBN-TRAPS-MIB', 'trapNetworkElemAlarmStatus'), ('NLSBBN-TRAPS-MIB', 'trapNetworkElemAdminState'), ('NLSBBN-TRAPS-MIB', 'trapNetworkElemAvailStatus'), ('NLSBBN-TRAPS-MIB', 'trapText'), ('NLSBBN-TRAPS-MIB', 'trapChangedObjectId'), ('NLSBBN-TRAPS-MIB', 'trapChangedValueInteger'), ('NLSBBN-TRAPS-MIB', 'trapNETrapLastTrapTimeStamp'))
if mibBuilder.loadTexts:
trapRX200AlarmDataCRCAlarm.setDescription('This trap is issued when the RX200 Module detects an error calculating the alarm limit CRC. trapAdditionalInfoInteger variable contains current reading of the this parameter.')
trap_rx200_factory_data_crc_alarm = notification_type((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6) + (0, 11)).setObjects(('NLSBBN-TRAPS-MIB', 'trapIdentifier'), ('NLSBBN-TRAPS-MIB', 'trapNetworkElemModelNumber'), ('NLSBBN-TRAPS-MIB', 'trapNetworkElemSerialNum'), ('NLSBBN-TRAPS-MIB', 'trapPerceivedSeverity'), ('NLSBBN-TRAPS-MIB', 'trapNetworkElemOperState'), ('NLSBBN-TRAPS-MIB', 'trapNetworkElemAlarmStatus'), ('NLSBBN-TRAPS-MIB', 'trapNetworkElemAdminState'), ('NLSBBN-TRAPS-MIB', 'trapNetworkElemAvailStatus'), ('NLSBBN-TRAPS-MIB', 'trapText'), ('NLSBBN-TRAPS-MIB', 'trapChangedObjectId'), ('NLSBBN-TRAPS-MIB', 'trapChangedValueInteger'), ('NLSBBN-TRAPS-MIB', 'trapNETrapLastTrapTimeStamp'))
if mibBuilder.loadTexts:
trapRX200FactoryDataCRCAlarm.setDescription('This trap is issued when the RX200 Module detects an error calculating the Factory data CRC. trapAdditionalInfoInteger variable contains current reading of the this parameter.')
trap_rx200_cal_data_crc_alarm = notification_type((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6) + (0, 12)).setObjects(('NLSBBN-TRAPS-MIB', 'trapIdentifier'), ('NLSBBN-TRAPS-MIB', 'trapNetworkElemModelNumber'), ('NLSBBN-TRAPS-MIB', 'trapNetworkElemSerialNum'), ('NLSBBN-TRAPS-MIB', 'trapPerceivedSeverity'), ('NLSBBN-TRAPS-MIB', 'trapNetworkElemOperState'), ('NLSBBN-TRAPS-MIB', 'trapNetworkElemAlarmStatus'), ('NLSBBN-TRAPS-MIB', 'trapNetworkElemAdminState'), ('NLSBBN-TRAPS-MIB', 'trapNetworkElemAvailStatus'), ('NLSBBN-TRAPS-MIB', 'trapText'), ('NLSBBN-TRAPS-MIB', 'trapChangedObjectId'), ('NLSBBN-TRAPS-MIB', 'trapChangedValueInteger'), ('NLSBBN-TRAPS-MIB', 'trapNETrapLastTrapTimeStamp'))
if mibBuilder.loadTexts:
trapRX200CalDataCRCAlarm.setDescription('This trap is issued when the RX200 Module detects an error calculating the Calibration data CRC. trapAdditionalInfoInteger variable contains current reading of the this parameter.')
trap_rx200_default_alarm = notification_type((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6) + (0, 13)).setObjects(('NLSBBN-TRAPS-MIB', 'trapIdentifier'), ('NLSBBN-TRAPS-MIB', 'trapNetworkElemModelNumber'), ('NLSBBN-TRAPS-MIB', 'trapNetworkElemSerialNum'), ('NLSBBN-TRAPS-MIB', 'trapPerceivedSeverity'), ('NLSBBN-TRAPS-MIB', 'trapNetworkElemOperState'), ('NLSBBN-TRAPS-MIB', 'trapNetworkElemAlarmStatus'), ('NLSBBN-TRAPS-MIB', 'trapNetworkElemAdminState'), ('NLSBBN-TRAPS-MIB', 'trapNetworkElemAvailStatus'), ('NLSBBN-TRAPS-MIB', 'trapText'), ('NLSBBN-TRAPS-MIB', 'trapChangedObjectId'), ('NLSBBN-TRAPS-MIB', 'trapChangedValueInteger'), ('NLSBBN-TRAPS-MIB', 'trapNETrapLastTrapTimeStamp'))
if mibBuilder.loadTexts:
trapRX200DefaultAlarm.setDescription("This trap is issued when the RX200 Module is reset to it's factory default state. trapAdditionalInfoInteger variable contains current reading of the this parameter.")
trap_rx200_mode_alarm = notification_type((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6) + (0, 14)).setObjects(('NLSBBN-TRAPS-MIB', 'trapIdentifier'), ('NLSBBN-TRAPS-MIB', 'trapNetworkElemModelNumber'), ('NLSBBN-TRAPS-MIB', 'trapNetworkElemSerialNum'), ('NLSBBN-TRAPS-MIB', 'trapPerceivedSeverity'), ('NLSBBN-TRAPS-MIB', 'trapNetworkElemOperState'), ('NLSBBN-TRAPS-MIB', 'trapNetworkElemAlarmStatus'), ('NLSBBN-TRAPS-MIB', 'trapNetworkElemAdminState'), ('NLSBBN-TRAPS-MIB', 'trapNetworkElemAvailStatus'), ('NLSBBN-TRAPS-MIB', 'trapText'), ('NLSBBN-TRAPS-MIB', 'trapChangedObjectId'), ('NLSBBN-TRAPS-MIB', 'trapChangedValueInteger'), ('NLSBBN-TRAPS-MIB', 'trapNETrapLastTrapTimeStamp'))
if mibBuilder.loadTexts:
trapRX200ModeAlarm.setDescription('This trap is issued when the RX200 Modules mode is changed from normal to off or off to normal. trapAdditionalInfoInteger variable contains current reading of the this parameter.')
trap_rx200_output_switched_alarm = notification_type((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6) + (0, 15)).setObjects(('NLSBBN-TRAPS-MIB', 'trapIdentifier'), ('NLSBBN-TRAPS-MIB', 'trapNetworkElemModelNumber'), ('NLSBBN-TRAPS-MIB', 'trapNetworkElemSerialNum'), ('NLSBBN-TRAPS-MIB', 'trapPerceivedSeverity'), ('NLSBBN-TRAPS-MIB', 'trapNetworkElemOperState'), ('NLSBBN-TRAPS-MIB', 'trapNetworkElemAlarmStatus'), ('NLSBBN-TRAPS-MIB', 'trapNetworkElemAdminState'), ('NLSBBN-TRAPS-MIB', 'trapNetworkElemAvailStatus'), ('NLSBBN-TRAPS-MIB', 'trapText'), ('NLSBBN-TRAPS-MIB', 'trapChangedObjectId'), ('NLSBBN-TRAPS-MIB', 'trapChangedValueInteger'), ('NLSBBN-TRAPS-MIB', 'trapNETrapLastTrapTimeStamp'))
if mibBuilder.loadTexts:
trapRX200OutputSwitchedAlarm.setDescription("This trap is issued when the RX200 Module's output to the RF Switch Module changes state from good to bad or bad to good. trapAdditionalInfoInteger variable contains current reading of the this parameter.")
trap_rx200_side_status_alarm = notification_type((1, 3, 6, 1, 4, 1, 1166, 6, 1, 2, 6) + (0, 16)).setObjects(('NLSBBN-TRAPS-MIB', 'trapIdentifier'), ('NLSBBN-TRAPS-MIB', 'trapNetworkElemModelNumber'), ('NLSBBN-TRAPS-MIB', 'trapNetworkElemSerialNum'), ('NLSBBN-TRAPS-MIB', 'trapPerceivedSeverity'), ('NLSBBN-TRAPS-MIB', 'trapNetworkElemOperState'), ('NLSBBN-TRAPS-MIB', 'trapNetworkElemAlarmStatus'), ('NLSBBN-TRAPS-MIB', 'trapNetworkElemAdminState'), ('NLSBBN-TRAPS-MIB', 'trapNetworkElemAvailStatus'), ('NLSBBN-TRAPS-MIB', 'trapText'), ('NLSBBN-TRAPS-MIB', 'trapChangedObjectId'), ('NLSBBN-TRAPS-MIB', 'trapChangedValueInteger'), ('NLSBBN-TRAPS-MIB', 'trapNETrapLastTrapTimeStamp'))
if mibBuilder.loadTexts:
trapRX200SideStatusAlarm.setDescription("This trap is issued when one of the RX200 Module's outputs are turned on or off.")
mibBuilder.exportSymbols('OMNI-gx2RX200-MIB', rxminorHigh12Volt=rxminorHigh12Volt, rxcurrentValueModTemp=rxcurrentValueModTemp, rxflashPrgCntA=rxflashPrgCntA, rxalarmStateFanCurrent=rxalarmStateFanCurrent, rxstateflagHW=rxstateflagHW, trapRX200Boot1Alarm=trapRX200Boot1Alarm, rxstateFlagModTemp=rxstateFlagModTemp, rxminorHighFanCurrent=rxminorHighFanCurrent, trapRX200FlashAlarm=trapRX200FlashAlarm, rxvalueMode=rxvalueMode, rxbank1CRC=rxbank1CRC, rxbank0CRC=rxbank0CRC, rxstateFlagWavelength=rxstateFlagWavelength, trapRX200ModeAlarm=trapRX200ModeAlarm, rxminorHighModTemp=rxminorHighModTemp, rxstateFlag12Volt=rxstateFlag12Volt, U32Data=U32Data, rxvalueOptSig=rxvalueOptSig, rxstateFlagOptPower=rxstateFlagOptPower, trapRX200DefaultAlarm=trapRX200DefaultAlarm, rxmajorHighFanCurrent=rxmajorHighFanCurrent, rxstateFlagFactoryDefault=rxstateFlagFactoryDefault, rxminorLow12Volt=rxminorLow12Volt, rxvalueHW=rxvalueHW, rxlabelHW=rxlabelHW, trapRX200OpticalPowerAlarm=trapRX200OpticalPowerAlarm, rxlabelCalibrationDataCRC=rxlabelCalibrationDataCRC, trapRX200OutputSwitchedAlarm=trapRX200OutputSwitchedAlarm, rxmaxValueModTemp=rxmaxValueModTemp, rxmaxValueFanCurrent=rxmaxValueFanCurrent, rxstateFlagFanCurrent=rxstateFlagFanCurrent, rxstateflagCalibrationDataCRC=rxstateflagCalibrationDataCRC, rxvalueCalibrationDataCRC=rxvalueCalibrationDataCRC, trapRX200SideStatusAlarm=trapRX200SideStatusAlarm, rxminValueOptPower=rxminValueOptPower, rxfwRev1=rxfwRev1, trapRX200ModuleTemperatureAlarm=trapRX200ModuleTemperatureAlarm, rxstateflagAlarmDataCRC=rxstateflagAlarmDataCRC, rxvalueFactoryDefault=rxvalueFactoryDefault, rxlabelFlash=rxlabelFlash, rxenumAttnSetting=rxenumAttnSetting, rxmajorLowOptPower=rxmajorLowOptPower, rxgx2Rx200HoldTimeData=rxgx2Rx200HoldTimeData, rxenumFactoryDefault=rxenumFactoryDefault, rxcurrentValueOptPower=rxcurrentValueOptPower, gx2Rx200AnalogTable=gx2Rx200AnalogTable, rxstateflagFlash=rxstateflagFlash, rxlabelFactoryDataCRC=rxlabelFactoryDataCRC, gx2Rx200HoldTimeTable=gx2Rx200HoldTimeTable, rxminValueFanCurrent=rxminValueFanCurrent, rxminValueModTemp=rxminValueModTemp, rxminorLowModTemp=rxminorLowModTemp, rxvalueSwModeSetting=rxvalueSwModeSetting, rxmajorLowModTemp=rxmajorLowModTemp, rxstateFlagMode=rxstateFlagMode, rxuomFanCurrent=rxuomFanCurrent, rxstateflagFactoryDataCRC=rxstateflagFactoryDataCRC, rxenumSwModeSetting=rxenumSwModeSetting, rxstateFlagSwModeThreshold=rxstateFlagSwModeThreshold, trapRX200ConfigChangeDisplayString=trapRX200ConfigChangeDisplayString, rxmaxValueOptPower=rxmaxValueOptPower, rxgx2Rx200HoldTimeSpecIndex=rxgx2Rx200HoldTimeSpecIndex, rxvalueBoot=rxvalueBoot, rxminorHighOptPower=rxminorHighOptPower, gx2Rx200StatusTable=gx2Rx200StatusTable, rxalarmStateModTemp=rxalarmStateModTemp, rxlabelModTemp=rxlabelModTemp, gx2Rx200DigitalEntry=gx2Rx200DigitalEntry, rxprgEEPROMByte=rxprgEEPROMByte, trapRX200Plus12CurrentAlarm=trapRX200Plus12CurrentAlarm, rxvalueThermalCompCRC=rxvalueThermalCompCRC, trapRX200AlarmDataCRCAlarm=trapRX200AlarmDataCRCAlarm, rxuomOptPower=rxuomOptPower, rxlabelSwModeThreshold=rxlabelSwModeThreshold, rxlabelMode=rxlabelMode, gx2Rx200FactoryTable=gx2Rx200FactoryTable, gx2Rx200Descriptor=gx2Rx200Descriptor, rxstateFlagAttnSetting=rxstateFlagAttnSetting, rxflashPrgCntB=rxflashPrgCntB, rxenumMode=rxenumMode, rxenumSwModeThreshold=rxenumSwModeThreshold, rxbootControlByte=rxbootControlByte, gx2Rx200HoldTimeEntry=gx2Rx200HoldTimeEntry, gx2Rx200DigitalTable=gx2Rx200DigitalTable, rxalarmStateOptPower=rxalarmStateOptPower, rxlabelThermalCompCRC=rxlabelThermalCompCRC, rxstateflagOptSig=rxstateflagOptSig, rxminorLowOptPower=rxminorLowOptPower, rxvalueAttnSetting=rxvalueAttnSetting, rxlabelOptPower=rxlabelOptPower, rxcurrentValueFanCurrent=rxcurrentValueFanCurrent, trapRX200FanCurrentAlarm=trapRX200FanCurrentAlarm, rxbootStatusByte=rxbootStatusByte, trapRX200Boot0Alarm=trapRX200Boot0Alarm, rxmaxValue12Volt=rxmaxValue12Volt, rxlabelSwModeSetting=rxlabelSwModeSetting, rxmajorLowFanCurrent=rxmajorLowFanCurrent, rxstateflagThermalCompCRC=rxstateflagThermalCompCRC, rxcurrentValue12Volt=rxcurrentValue12Volt, rxfwRev0=rxfwRev0, trapRX200ConfigChangeInteger=trapRX200ConfigChangeInteger, rxlabelOptSig=rxlabelOptSig, rxgx2Rx200StatusTableIndex=rxgx2Rx200StatusTableIndex, rxminorLowFanCurrent=rxminorLowFanCurrent, rxenumWavelength=rxenumWavelength, gx2Rx200FactoryEntry=gx2Rx200FactoryEntry, rxgx2Rx200HoldTimeTableIndex=rxgx2Rx200HoldTimeTableIndex, rxlabelFactoryDefault=rxlabelFactoryDefault, rxfactoryCRC=rxfactoryCRC, rxlabel12Volt=rxlabel12Volt, rxlabelAlarmDataCRC=rxlabelAlarmDataCRC, rxstateflagBoot=rxstateflagBoot, rxlabelFanCurrent=rxlabelFanCurrent, rxvalueFlash=rxvalueFlash, rxmajorHighOptPower=rxmajorHighOptPower, trapRX200FactoryDataCRCAlarm=trapRX200FactoryDataCRCAlarm, gx2Rx200AnalogEntry=gx2Rx200AnalogEntry, rxlabelAttnSetting=rxlabelAttnSetting, rxalarmState12Volt=rxalarmState12Volt, rxstateFlagSwModeSetting=rxstateFlagSwModeSetting, rxvalueSwModeThreshold=rxvalueSwModeThreshold, rxvalueFactoryDataCRC=rxvalueFactoryDataCRC, rxcalculateCRC=rxcalculateCRC, rxmajorHigh12Volt=rxmajorHigh12Volt, trapRX200CalDataCRCAlarm=trapRX200CalDataCRCAlarm, rxlabelBoot=rxlabelBoot, rxlabelWavelength=rxlabelWavelength, rxmajorHighModTemp=rxmajorHighModTemp, rxminValue12Volt=rxminValue12Volt, rxhourMeter=rxhourMeter, rxgx2Rx200DigitalTableIndex=rxgx2Rx200DigitalTableIndex, rxgx2Rx200AnalogTableIndex=rxgx2Rx200AnalogTableIndex, rxgx2Rx200FactoryTableIndex=rxgx2Rx200FactoryTableIndex, rxvalueWavelength=rxvalueWavelength, rxmajorLow12Volt=rxmajorLow12Volt, rxuomModTemp=rxuomModTemp, rxvalueAlarmDataCRC=rxvalueAlarmDataCRC, gx2Rx200StatusEntry=gx2Rx200StatusEntry, rxuom12Volt=rxuom12Volt, Float=Float) |
# -*- coding: utf-8 -*-
# Scrapy settings for code_scraper project
#
# For simplicity, this file contains only the most important settings by
# default. All the other settings are documented here:
#
# http://doc.scrapy.org/en/latest/topics/settings.html
#
AUTOTHROTTLE_ENABLED = 1
BOT_NAME = 'MsdnApiExtractor'
COOKIES_ENABLED = False
DEPTH_LIMIT = 5
DOWNLOAD_DELAY = 2
ITEM_PIPELINES = {
'MsdnApiExtractor.pipelines.ApiExportPipeline': 1
}
NEWSPIDER_MODULE = 'MsdnApiExtractor.spiders'
RETRY_ENABLED = True
ROBOTSTXT_OBEY = True
SPIDER_MODULES = ['MsdnApiExtractor.spiders']
USER_AGENT = ('Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 '
'(KHTML, like Gecko) Chrome/33.0.1750.117 Safari/537.36')
SCHEDULER_DISK_QUEUE = 'scrapy.squeues.PickleFifoDiskQueue'
SCHEDULER_MEMORY_QUEUE = 'scrapy.squeues.FifoMemoryQueue'
# Crawl responsibly by identifying yourself (and your website) on the
# user-agent
| autothrottle_enabled = 1
bot_name = 'MsdnApiExtractor'
cookies_enabled = False
depth_limit = 5
download_delay = 2
item_pipelines = {'MsdnApiExtractor.pipelines.ApiExportPipeline': 1}
newspider_module = 'MsdnApiExtractor.spiders'
retry_enabled = True
robotstxt_obey = True
spider_modules = ['MsdnApiExtractor.spiders']
user_agent = 'Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/33.0.1750.117 Safari/537.36'
scheduler_disk_queue = 'scrapy.squeues.PickleFifoDiskQueue'
scheduler_memory_queue = 'scrapy.squeues.FifoMemoryQueue' |
name = input("What is your name?\n")
years = input("How old are you?\n")
adress = input("Where are you live?\n")
print("This is " + name)
print("It is " + years)
print("(S)he live in " + adress) | name = input('What is your name?\n')
years = input('How old are you?\n')
adress = input('Where are you live?\n')
print('This is ' + name)
print('It is ' + years)
print('(S)he live in ' + adress) |
# Created by MechAviv
# Map ID :: 302000000
# Grand Athenaeum : Grand Athenaeum
if "" in sm.getQuestEx(32666, "clear"):
sm.setQuestEx(32666, "clear", "0"); | if '' in sm.getQuestEx(32666, 'clear'):
sm.setQuestEx(32666, 'clear', '0') |
'''
Project: gen-abq-S9R5
Creator: Nicholas Fantuzzi
Contact: @sniis84
Version: 1.0
Date: 5-Jul-2015
To test just place 'Job-1.inp' in the Abaqus working directory and
select 'Run Script...' from the menu. A new file will be created as 'Job-1-finale.inp'.
Running that file using Abaqus/CAE or command line will result in using S9R5 elements
'''
#!/usr/bin/python
#in_file = tuple(open("Job-1.inp","r"))
in_file = tuple(open("C:/Temp_Abaqus/Job-1.inp","r"))
#out_file = open('Job-1-out_file.inp','w')
out_file = open('C:/Temp_Abaqus/Job-1-finale.inp','w')
# find the node and element number -------------------
rigaInizioNodi = 0
rigaFineNodi = 0
rigaInizioElem = 0
rigaFineElem = 0
for i in range(len(in_file)):
if '*Node' in in_file[i]:
rigaInizioNodi = i + 1
if '*Element' in in_file[i]:
rigaFineNodi = i - 1
rigaInizioElem = i + 1
if '*Nset' in in_file[i]:
rigaFineElem = i - 1
break
# number of nodes and elements
noNodi = rigaFineNodi - rigaInizioNodi + 1
noElem = rigaFineElem - rigaInizioElem + 1
# set the initial number for the extra nodes
nodoZero = '100'
for i in range(len(str(noNodi))):
nodoZero = nodoZero + '0'
nodoZero = int(nodoZero)
# -------------------------------------------------------------
nodi = [[0 for x in range(noNodi)] for x in range(4)]
for i in range(len(in_file)):
# save nodal coordinates for later computation
if '*Node' in in_file[i]:
for j in range(noNodi):
coord = in_file[i+1+j].replace("\r","").replace("\n","").replace(" ","").split(",")
for k in range(4):
nodi[k][j] = float(coord[k])
# -------------------------------------------------------------
# computation of the central node for the S9R5 element
if '*Element' in in_file[i]:
for j in range(noElem):
Xcoord = 0.
Ycoord = 0.
Zcoord = 0.
nodiElemento = in_file[i+1+j].replace("\r","").replace("\n","").replace(" ","").split(",")
for k in range(8): # ciclo sui nodi dell'elemento
Xcoord = Xcoord + nodi[1][int(nodiElemento[k+1])-1]
Ycoord = Ycoord + nodi[2][int(nodiElemento[k+1])-1]
Zcoord = Zcoord + nodi[3][int(nodiElemento[k+1])-1]
#
Xcoord = Xcoord / 8.
Ycoord = Ycoord / 8.
Zcoord = Zcoord / 8.
nuovoNodo = nodoZero + j + 1
out_file.write("%i,\t %f,\t %f,\t %f\r\n" %(nuovoNodo, Xcoord, Ycoord, Zcoord) )
out_file.write("\n")
out_file.write("*Element, type=S9R5\r\n")
else:
if (i >= rigaInizioElem and i <= rigaFineElem):
nuovoNodo = nodoZero + i - rigaInizioElem + 1
out_file.write(in_file[i].replace("\r","").replace("\n","")+",\t%i\r\n" %(nuovoNodo))
else:
out_file.write(in_file[i])
out_file.close()
# -------------------------------------------------------------
| """
Project: gen-abq-S9R5
Creator: Nicholas Fantuzzi
Contact: @sniis84
Version: 1.0
Date: 5-Jul-2015
To test just place 'Job-1.inp' in the Abaqus working directory and
select 'Run Script...' from the menu. A new file will be created as 'Job-1-finale.inp'.
Running that file using Abaqus/CAE or command line will result in using S9R5 elements
"""
in_file = tuple(open('C:/Temp_Abaqus/Job-1.inp', 'r'))
out_file = open('C:/Temp_Abaqus/Job-1-finale.inp', 'w')
riga_inizio_nodi = 0
riga_fine_nodi = 0
riga_inizio_elem = 0
riga_fine_elem = 0
for i in range(len(in_file)):
if '*Node' in in_file[i]:
riga_inizio_nodi = i + 1
if '*Element' in in_file[i]:
riga_fine_nodi = i - 1
riga_inizio_elem = i + 1
if '*Nset' in in_file[i]:
riga_fine_elem = i - 1
break
no_nodi = rigaFineNodi - rigaInizioNodi + 1
no_elem = rigaFineElem - rigaInizioElem + 1
nodo_zero = '100'
for i in range(len(str(noNodi))):
nodo_zero = nodoZero + '0'
nodo_zero = int(nodoZero)
nodi = [[0 for x in range(noNodi)] for x in range(4)]
for i in range(len(in_file)):
if '*Node' in in_file[i]:
for j in range(noNodi):
coord = in_file[i + 1 + j].replace('\r', '').replace('\n', '').replace(' ', '').split(',')
for k in range(4):
nodi[k][j] = float(coord[k])
if '*Element' in in_file[i]:
for j in range(noElem):
xcoord = 0.0
ycoord = 0.0
zcoord = 0.0
nodi_elemento = in_file[i + 1 + j].replace('\r', '').replace('\n', '').replace(' ', '').split(',')
for k in range(8):
xcoord = Xcoord + nodi[1][int(nodiElemento[k + 1]) - 1]
ycoord = Ycoord + nodi[2][int(nodiElemento[k + 1]) - 1]
zcoord = Zcoord + nodi[3][int(nodiElemento[k + 1]) - 1]
xcoord = Xcoord / 8.0
ycoord = Ycoord / 8.0
zcoord = Zcoord / 8.0
nuovo_nodo = nodoZero + j + 1
out_file.write('%i,\t %f,\t %f,\t %f\r\n' % (nuovoNodo, Xcoord, Ycoord, Zcoord))
out_file.write('\n')
out_file.write('*Element, type=S9R5\r\n')
elif i >= rigaInizioElem and i <= rigaFineElem:
nuovo_nodo = nodoZero + i - rigaInizioElem + 1
out_file.write(in_file[i].replace('\r', '').replace('\n', '') + ',\t%i\r\n' % nuovoNodo)
else:
out_file.write(in_file[i])
out_file.close() |
# -*- coding: utf-8 -*-
N = int(input())
for i in range(N):
X, Y = map(int, input().split())
start = X if (X % 2 != 0) else X + 1
answer = sum(range(start, start + (2 * Y), 2))
print(answer) | n = int(input())
for i in range(N):
(x, y) = map(int, input().split())
start = X if X % 2 != 0 else X + 1
answer = sum(range(start, start + 2 * Y, 2))
print(answer) |
{
"targets": [
{
"target_name": "atomicCounters",
"sources": [ "src/C/atomicCounters.c" ],
"conditions": [
["OS==\"linux\"", {
"cflags_cc": [ "-fpermissive", "-Os" ]
}],
["OS=='mac'", {
"xcode_settings": {
}
}],
["OS=='win'", {
}]
]
}
]
}
| {'targets': [{'target_name': 'atomicCounters', 'sources': ['src/C/atomicCounters.c'], 'conditions': [['OS=="linux"', {'cflags_cc': ['-fpermissive', '-Os']}], ["OS=='mac'", {'xcode_settings': {}}], ["OS=='win'", {}]]}]} |
#!/usr/bin/env python3
n, *a = map(int, open(0).read().split())
a = [0]*3 + a
for i in range(n):
i *= 3
t, x, y = map(lambda j:abs(a[i+3+j]-a[i+j]), [0,1,2])
d = x+y
if d>t or d%2-t%2: print("No"); exit()
print("Yes") | (n, *a) = map(int, open(0).read().split())
a = [0] * 3 + a
for i in range(n):
i *= 3
(t, x, y) = map(lambda j: abs(a[i + 3 + j] - a[i + j]), [0, 1, 2])
d = x + y
if d > t or d % 2 - t % 2:
print('No')
exit()
print('Yes') |
db = {
"European Scripts": {
"Armenian": [
1328,
1423
],
"Armenian Ligatures": [
64275,
64279
],
"Carian": [
66208,
66271
],
"Caucasian Albanian": [
66864,
66927
],
"Cypriot Syllabary": [
67584,
67647
],
"Cyrillic": [
1024,
1279
],
"Cyrillic Supplement": [
1280,
1327
],
"Cyrillic Extended-A": [
11744,
11775
],
"Cyrillic Extended-B": [
42560,
42655
],
"Cyrillic Extended-C": [
7296,
7311
],
"Elbasan": [
66816,
66863
],
"Georgian": [
4256,
4351
],
"Georgian Extended": [
7312,
7359
],
"Georgian Supplement": [
11520,
11567
],
"Glagolitic": [
11264,
11359
],
"Glagolitic Supplement": [
122880,
122927
],
"Gothic": [
66352,
66383
],
"Greek": [
880,
1023
],
"Greek Extended": [
7936,
8191
],
"Ancient Greek Numbers": [
65856,
65935
],
"Latin": [
0,
127
],
"Basic Latin (ASCII)": [
0,
127
],
"Latin-1 Supplement": [
128,
255
],
"Latin Extended-A": [
256,
383
],
"Latin Extended-B": [
384,
591
],
"Latin Extended-C": [
11360,
11391
],
"Latin Extended-D": [
42784,
43007
],
"Latin Extended-E": [
43824,
43887
],
"Latin Extended Additional": [
7680,
7935
],
"Latin Ligatures": [
64256,
64262
],
"Fullwidth Latin Letters": [
65280,
65374
],
"IPA Extensions": [
592,
687
],
"Phonetic Extensions": [
7424,
7551
],
"Phonetic Extensions Supplement": [
7552,
7615
],
"Linear A": [
67072,
67455
],
"Linear B Syllabary": [
65536,
65663
],
"Linear B Ideograms": [
65664,
65791
],
"Aegean Numbers": [
65792,
65855
],
"Lycian": [
66176,
66207
],
"Lydian": [
67872,
67903
],
"Ogham": [
5760,
5791
],
"Old Hungarian": [
68736,
68863
],
"Old Italic": [
66304,
66351
],
"Old Permic": [
66384,
66431
],
"Phaistos Disc": [
66000,
66047
],
"Runic": [
5792,
5887
],
"Shavian": [
66640,
66687
]
},
"Modifier Letters": {
"Modifier Tone Letters": [
42752,
42783
],
"Spacing Modifier Letters": [
688,
767
],
"Superscripts and Subscripts": [
8304,
8351
]
},
"Combining Marks": {
"Combining Diacritical Marks": [
768,
879
],
"Combining Diacritical Marks Extended": [
6832,
6911
],
"Combining Diacritical Marks Supplement": [
7616,
7679
],
"Combining Diacritical Marks for Symbols": [
8400,
8447
],
"Combining Half Marks": [
65056,
65071
]
},
"African Scripts": {
"Adlam": [
125184,
125279
],
"Bamum": [
42656,
42751
],
"Bamum Supplement": [
92160,
92735
],
"Bassa Vah": [
92880,
92927
],
"Coptic": [
11392,
11519
],
"Coptic in Greek block": [
994,
1007
],
"Coptic Epact Numbers": [
66272,
66303
],
"Egyptian Hieroglyphs": [
77824,
78895
],
"Egyptian Hieroglyph Format Controls": [
78896,
78911
],
"Ethiopic": [
4608,
4991
],
"Ethiopic Supplement": [
4992,
5023
],
"Ethiopic Extended": [
11648,
11743
],
"Ethiopic Extended-A": [
43776,
43823
],
"Medefaidrin": [
93760,
93855
],
"Mende Kikakui": [
124928,
125151
],
"Meroitic Cursive": [
68000,
68095
],
"Meroitic Hieroglyphs": [
67968,
67999
],
"N'Ko": [
1984,
2047
],
"Osmanya": [
66688,
66735
],
"Tifinagh": [
11568,
11647
],
"Vai": [
42240,
42559
]
},
"Middle Eastern Scripts": {
"Anatolian Hieroglyphs": [
82944,
83583
],
"Arabic": [
1536,
1791
],
"Arabic Supplement": [
1872,
1919
],
"Arabic Extended-A": [
2208,
2303
],
"Arabic Presentation Forms-A": [
64336,
65023
],
"Arabic Presentation Forms-B": [
65136,
65279
],
"Aramaic, Imperial": [
67648,
67679
],
"Avestan": [
68352,
68415
],
"Chorasmian": [
69552,
69599
],
"Cuneiform": [
73728,
74751
],
"Cuneiform Numbers and Punctuation": [
74752,
74879
],
"Early Dynastic Cuneiform": [
74880,
75087
],
"Old Persian": [
66464,
66527
],
"Ugaritic": [
66432,
66463
],
"Elymaic": [
69600,
69631
],
"Hatran": [
67808,
67839
],
"Hebrew": [
1424,
1535
],
"Hebrew Presentation Forms": [
64285,
64335
],
"Mandaic": [
2112,
2143
],
"Nabataean": [
67712,
67759
],
"Old North Arabian": [
68224,
68255
],
"Old South Arabian": [
68192,
68223
],
"Pahlavi, Inscriptional": [
68448,
68479
],
"Pahlavi, Psalter": [
68480,
68527
],
"Palmyrene": [
67680,
67711
],
"Parthian, Inscriptional": [
68416,
68447
],
"Phoenician": [
67840,
67871
],
"Samaritan": [
2048,
2111
],
"Syriac": [
1792,
1871
],
"Syriac Supplement": [
2144,
2159
],
"Yezidi": [
69248,
69311
]
},
"Central Asian Scripts": {
"Manichaean": [
68288,
68351
],
"Marchen": [
72816,
72895
],
"Mongolian": [
6144,
6319
],
"Mongolian Supplement": [
71264,
71295
],
"Old Sogdian": [
69376,
69423
],
"Old Turkic": [
68608,
68687
],
"Phags-Pa": [
43072,
43135
],
"Sogdian": [
69424,
69487
],
"Soyombo": [
72272,
72367
],
"Tibetan": [
3840,
4095
],
"Zanabazar Square": [
72192,
72271
]
},
"South Asian Scripts": {
"Ahom": [
71424,
71487
],
"Bengali and Assamese": [
2432,
2559
],
"Bhaiksuki": [
72704,
72815
],
"Brahmi": [
69632,
69759
],
"Chakma": [
69888,
69967
],
"Devanagari": [
2304,
2431
],
"Devanagari Extended": [
43232,
43263
],
"Dives Akuru": [
71936,
72031
],
"Dogra": [
71680,
71759
],
"Grantha": [
70400,
70527
],
"Gujarati": [
2688,
2815
],
"Gunjala Gondi": [
73056,
73135
],
"Gurmukhi": [
2560,
2687
],
"Kaithi": [
69760,
69839
],
"Kannada": [
3200,
3327
],
"Kharoshthi": [
68096,
68191
],
"Khojki": [
70144,
70223
],
"Khudawadi": [
70320,
70399
],
"Lepcha": [
7168,
7247
],
"Limbu": [
6400,
6479
],
"Mahajani": [
69968,
70015
],
"Malayalam": [
3328,
3455
],
"Masaram Gondi": [
72960,
73055
],
"Meetei Mayek": [
43968,
44031
],
"Meetei Mayek Extensions": [
43744,
43775
],
"Modi": [
71168,
71263
],
"Mro": [
92736,
92783
],
"Multani": [
70272,
70319
],
"Nandinagari": [
72096,
72191
],
"Newa": [
70656,
70783
],
"Ol Chiki": [
7248,
7295
],
"Oriya (Odia)": [
2816,
2943
],
"Saurashtra": [
43136,
43231
],
"Sharada": [
70016,
70111
],
"Siddham": [
71040,
71167
],
"Sinhala": [
3456,
3583
],
"Sinhala Archaic Numbers": [
70112,
70143
],
"Sora Sompeng": [
69840,
69887
],
"Syloti Nagri": [
43008,
43055
],
"Takri": [
71296,
71375
],
"Tamil": [
2944,
3071
],
"Tamil Supplement": [
73664,
73727
],
"Telugu": [
3072,
3199
],
"Thaana": [
1920,
1983
],
"Tirhuta": [
70784,
70879
],
"Vedic Extensions": [
7376,
7423
],
"Wancho": [
123584,
123647
],
"Warang Citi": [
71840,
71935
]
},
"Southeast Asian Scripts": {
"Cham": [
43520,
43615
],
"Hanifi Rohingya": [
68864,
68927
],
"Kayah Li": [
43264,
43311
],
"Khmer": [
6016,
6143
],
"Khmer Symbols": [
6624,
6655
],
"Lao": [
3712,
3839
],
"Myanmar": [
4096,
4255
],
"Myanmar Extended-A": [
43616,
43647
],
"Myanmar Extended-B": [
43488,
43519
],
"New Tai Lue": [
6528,
6623
],
"Nyiakeng Puachue Hmong": [
123136,
123215
],
"Pahawh Hmong": [
92928,
93071
],
"Pau Cin Hau": [
72384,
72447
],
"Tai Le": [
6480,
6527
],
"Tai Tham": [
6688,
6831
],
"Tai Viet": [
43648,
43743
],
"Thai": [
3584,
3711
]
},
"Indonesia & Oceania Scripts": {
"Balinese": [
6912,
7039
],
"Batak": [
7104,
7167
],
"Buginese": [
6656,
6687
],
"Buhid": [
5952,
5983
],
"Hanunoo": [
5920,
5951
],
"Javanese": [
43392,
43487
],
"Makasar": [
73440,
73471
],
"Rejang": [
43312,
43359
],
"Sundanese": [
7040,
7103
],
"Sundanese Supplement": [
7360,
7375
],
"Tagalog": [
5888,
5919
],
"Tagbanwa": [
5984,
6015
]
},
"East Asian Scripts": {
"Bopomofo": [
12544,
12591
],
"Bopomofo Extended": [
12704,
12735
],
"CJK Unified Ideographs (Han)": [
19968,
40959
],
"CJK Extension\u00a0A": [
13312,
19903
],
"CJK Extension\u00a0B": [
131072,
173791
],
"CJK Extension\u00a0C": [
173824,
177983
],
"CJK Extension\u00a0D": [
177984,
178207
],
"CJK Extension\u00a0E": [
178208,
183983
],
"CJK Extension\u00a0F": [
183984,
191456
],
"CJK Extension\u00a0G": [
196608,
201546
],
"Unihan Database": [
196608,
201546
],
"CJK Compatibility Ideographs": [
63744,
64255
],
"CJK Compatibility Ideographs Supplement": [
194560,
195103
],
"CJK Radicals / Kangxi Radicals": [
12032,
12255
],
"CJK Radicals Supplement": [
11904,
12031
],
"CJK Strokes": [
12736,
12783
],
"Ideographic Description Characters": [
12272,
12287
],
"Hangul Jamo": [
4352,
4607
],
"Hangul Jamo Extended-A": [
43360,
43391
],
"Hangul Jamo Extended-B": [
55216,
55295
],
"Hangul Compatibility Jamo": [
12592,
12687
],
"Halfwidth Jamo": [
65440,
65500
],
"Hangul Syllables": [
44032,
55215
],
"Hiragana": [
12352,
12447
],
"Kana Extended-A": [
110848,
110895
],
"Kana Supplement": [
110592,
110847
],
"Small Kana Extension": [
110896,
110959
],
"Kanbun": [
12688,
12703
],
"Katakana": [
12448,
12543
],
"Katakana Phonetic Extensions": [
12784,
12799
],
"Halfwidth Katakana": [
65381,
65439
],
"Khitan Small Script": [
101120,
101631
],
"Lisu": [
42192,
42239
],
"Lisu Supplement": [
73648,
73663
],
"Miao": [
93952,
94111
],
"Nushu": [
110960,
111359
],
"Tangut": [
94208,
100351
],
"Tangut Components": [
100352,
101119
],
"Tangut Supplement": [
101632,
101640
],
"Yi Syllables": [
40960,
42127
],
"Yi Radicals": [
42128,
42191
]
},
"American Scripts": {
"Cherokee": [
5024,
5119
],
"Cherokee Supplement": [
43888,
43967
],
"Deseret": [
66560,
66639
],
"Osage": [
66736,
66815
],
"Unified Canadian Aboriginal Syllabics": [
5120,
5759
],
"UCAS Extended": [
6320,
6399
]
},
"Other": {
"Alphabetic Presentation Forms": [
64256,
64335
],
"ASCII Characters": [
0,
127
],
"Halfwidth and Fullwidth Forms": [
65280,
65519
],
"Symbols and Punctuation": [
65280,
65519
]
},
"Notational Systems": {
"Braille Patterns": [
10240,
10495
],
"Musical Symbols": [
119040,
119295
],
"Ancient Greek Musical Notation": [
119296,
119375
],
"Byzantine Musical Symbols": [
118784,
119039
],
"Duployan": [
113664,
113823
],
"Shorthand Format Controls": [
113824,
113839
],
"Sutton SignWriting": [
120832,
121519
]
},
"Punctuation": {
"General Punctuation": [
8192,
8303
],
"ASCII Punctuation": [
33,
127
],
"Latin-1 Punctuation": [
161,
191
],
"Supplemental Punctuation": [
11776,
11903
],
"CJK Symbols and Punctuation": [
12288,
12351
],
"Ideographic Symbols and Punctuation": [
94176,
94207
],
"CJK Compatibility Forms": [
65072,
65103
],
"Halfwidth and Fullwidth Forms": [
65280,
65519
],
"Small Form Variants": [
65104,
65135
],
"Vertical Forms": [
65040,
65055
]
},
"Alphanumeric Symbols": {
"Letterlike Symbols": [
8448,
8527
],
"Roman Symbols": [
65936,
65999
],
"Mathematical Alphanumeric Symbols": [
119808,
120831
],
"Arabic Mathematical Alphabetic Symbols": [
126464,
126719
],
"Enclosed Alphanumerics": [
9312,
9471
],
"Enclosed Alphanumeric Supplement": [
127232,
127487
],
"Enclosed CJK Letters and Months": [
12800,
13055
],
"Enclosed Ideographic Supplement": [
127488,
127743
],
"CJK Compatibility": [
13056,
13311
],
"Additional Squared Symbols": [
8448,
8527
]
},
"Technical Symbols": {
"APL symbols": [
9014,
9082
],
"Control Pictures": [
9216,
9279
],
"Miscellaneous Technical": [
8960,
9215
],
"Optical Character Recognition (OCR)": [
9280,
9311
]
},
"Numbers & Digits": {
"scripts": [
9280,
9311
],
"ASCII Digits": [
48,
57
],
"Fullwidth ASCII Digits": [
65296,
65305
],
"Common Indic Number Forms": [
43056,
43071
],
"Coptic Epact Numbers": [
66272,
66303
],
"Counting Rod Numerals": [
119648,
119679
],
"Cuneiform Numbers and Punctuation": [
74752,
74879
],
"Indic Siyaq Numbers": [
126064,
126143
],
"Mayan Numerals": [
119520,
119551
],
"Number Forms": [
8528,
8591
],
"Ottoman Siyaq Numbers": [
126208,
126287
],
"Rumi Numeral Symbols": [
69216,
69247
],
"Sinhala Archaic Numbers": [
70112,
70143
],
"Super and Subscripts": [
8304,
8351
]
},
"Mathematical Symbols": {
"Arrows": [
8592,
8703
],
"Supplemental Arrows-A": [
10224,
10239
],
"Supplemental Arrows-B": [
10496,
10623
],
"Supplemental Arrows-C": [
129024,
129279
],
"Additional Arrows": [
11008,
11263
],
"Miscellaneous Symbols and Arrows": [
11008,
11263
],
"Mathematical Alphanumeric Symbols": [
119808,
120831
],
"Arabic Mathematical Alphabetic Symbols": [
126464,
126719
],
"Letterlike Symbols": [
8448,
8527
],
"Mathematical Operators": [
8704,
8959
],
"Basic operators: Plus, Factorial,": [
8704,
8959
],
"Division, Multiplication": [
8704,
8959
],
"Supplemental Mathematical Operators": [
10752,
11007
],
"Miscellaneous Mathematical Symbols-A": [
10176,
10223
],
"Miscellaneous Mathematical Symbols-B": [
10624,
10751
],
"Floors and Ceilings": [
8968,
8971
],
"Invisible Operators": [
8289,
8292
],
"Geometric Shapes": [
9632,
9727
],
"Additional Shapes": [
11008,
11263
],
"Box Drawing": [
9472,
9599
],
"Block Elements": [
9600,
9631
],
"Geometric Shapes Extended": [
128896,
129023
]
},
"Emoji & Pictographs": {
"Dingbats": [
9984,
10175
],
"Ornamental Dingbats": [
128592,
128639
],
"Emoticons": [
128512,
128591
],
"Miscellaneous Symbols": [
9728,
9983
],
"Miscellaneous Symbols And Pictographs": [
127744,
128511
],
"Supplemental Symbols and Pictographs": [
129280,
129535
],
"Symbols and Pictographs Extended-A": [
129648,
129791
],
"Transport and Map Symbols": [
128640,
128767
]
},
"Other Symbols": {
"Alchemical Symbols": [
128768,
128895
],
"Ancient Symbols": [
65936,
65999
],
"Currency Symbols": [
8352,
8399
],
"scripts": [
8352,
8399
],
"Dollar Sign": [
36
],
"Euro Sign": [
36
],
"Yen, Pound and Cent": [
162,
165
],
"Fullwidth Currency Symbols": [
65284
],
"Rial Sign": [
64336
],
"Chess, Checkers/Draughts": [
9812,
9823,
9920,
9923
],
"Chess Symbols": [
129536,
129647
],
"Domino Tiles": [
127024,
127135
],
"Japanese Chess": [
9750,
9751
],
"Mahjong Tiles": [
126976,
127023
],
"Playing Cards": [
127136,
127231
],
"Card suits": [
9824,
9831
],
"Miscellaneous Symbols and Arrows": [
11008,
11263
],
"Symbols for Legacy Computing": [
129792,
130047
],
"Yijing Mono-, Di- and Trigrams": [
9866,
9871,
9776,
9783
],
"Yijing Hexagram Symbols": [
19904,
19967
],
"Tai Xuan Jing Symbols": [
119552,
119647
]
},
"Specials": {
"Layout Controls": [
8192,
8303
],
"Invisible Operators": [
8289,
8292
],
"Specials": [
65520,
65535
],
"Tags": [
917504,
917631
],
"Variation Selectors": [
65024,
65039
],
"Variation Selectors Supplement": [
917760,
917999
]
},
"Private Use": {
"Private Use Area": [
57344,
63743
],
"Supplementary Private Use Area-A": [
983040,
1048573
],
"Supplementary Private Use Area-B": [
1048576,
1114109
]
},
"Surrogates": {
"High Surrogates": [
55296,
56319
],
"Low Surrogates": [
56320,
57343
]
},
"Noncharacters in Charts": {
"Range in Arabic Presentation Forms-A": [
64976,
65007
],
"Range in Specials": [
65534,
65535
],
"BMP": [
65534,
65535
],
"Plane\u00a01": [
65534,
65535
],
"Plane\u00a02": [
65534,
65535
],
"Plane\u00a03": [
65534,
65535
],
"Plane\u00a04": [
65534,
65535
],
"Plane\u00a05": [
65534,
65535
],
"Plane\u00a06": [
65534,
65535
],
"Plane\u00a07": [
65534,
65535
],
"Plane\u00a08": [
65534,
65535
],
"Plane\u00a09": [
65534,
65535
],
"Plane\u00a010": [
65534,
65535
],
"Plane\u00a011": [
65534,
65535
],
"Plane\u00a012": [
65534,
65535
],
"Plane\u00a013": [
65534,
65535
],
"Plane\u00a014": [
65534,
65535
],
"Plane\u00a015": [
65534,
65535
],
"Plane\u00a016": [
65534,
65535
],
"Notes": [
65534,
65535
],
"To get a list of code charts for a character, enter \n\t\t\t\tits code in the search box at the top. To access a chart for a given block, click on its \n\t\t\t\tentry in the table. The charts are PDF files, and some of them may be very \n\t\t\t\tlarge. For frequent access to the same chart, right-click and save the file \n\t\t\t\tto your disk. For an alphabetical index of character and block names, \n\t\t\tuse the": [
65534,
65535
],
"Unicode Character Names Index": [
65534,
65535
]
}
}
| db = {'European Scripts': {'Armenian': [1328, 1423], 'Armenian Ligatures': [64275, 64279], 'Carian': [66208, 66271], 'Caucasian Albanian': [66864, 66927], 'Cypriot Syllabary': [67584, 67647], 'Cyrillic': [1024, 1279], 'Cyrillic Supplement': [1280, 1327], 'Cyrillic Extended-A': [11744, 11775], 'Cyrillic Extended-B': [42560, 42655], 'Cyrillic Extended-C': [7296, 7311], 'Elbasan': [66816, 66863], 'Georgian': [4256, 4351], 'Georgian Extended': [7312, 7359], 'Georgian Supplement': [11520, 11567], 'Glagolitic': [11264, 11359], 'Glagolitic Supplement': [122880, 122927], 'Gothic': [66352, 66383], 'Greek': [880, 1023], 'Greek Extended': [7936, 8191], 'Ancient Greek Numbers': [65856, 65935], 'Latin': [0, 127], 'Basic Latin (ASCII)': [0, 127], 'Latin-1 Supplement': [128, 255], 'Latin Extended-A': [256, 383], 'Latin Extended-B': [384, 591], 'Latin Extended-C': [11360, 11391], 'Latin Extended-D': [42784, 43007], 'Latin Extended-E': [43824, 43887], 'Latin Extended Additional': [7680, 7935], 'Latin Ligatures': [64256, 64262], 'Fullwidth Latin Letters': [65280, 65374], 'IPA Extensions': [592, 687], 'Phonetic Extensions': [7424, 7551], 'Phonetic Extensions Supplement': [7552, 7615], 'Linear A': [67072, 67455], 'Linear B Syllabary': [65536, 65663], 'Linear B Ideograms': [65664, 65791], 'Aegean Numbers': [65792, 65855], 'Lycian': [66176, 66207], 'Lydian': [67872, 67903], 'Ogham': [5760, 5791], 'Old Hungarian': [68736, 68863], 'Old Italic': [66304, 66351], 'Old Permic': [66384, 66431], 'Phaistos Disc': [66000, 66047], 'Runic': [5792, 5887], 'Shavian': [66640, 66687]}, 'Modifier Letters': {'Modifier Tone Letters': [42752, 42783], 'Spacing Modifier Letters': [688, 767], 'Superscripts and Subscripts': [8304, 8351]}, 'Combining Marks': {'Combining Diacritical Marks': [768, 879], 'Combining Diacritical Marks Extended': [6832, 6911], 'Combining Diacritical Marks Supplement': [7616, 7679], 'Combining Diacritical Marks for Symbols': [8400, 8447], 'Combining Half Marks': [65056, 65071]}, 'African Scripts': {'Adlam': [125184, 125279], 'Bamum': [42656, 42751], 'Bamum Supplement': [92160, 92735], 'Bassa Vah': [92880, 92927], 'Coptic': [11392, 11519], 'Coptic in Greek block': [994, 1007], 'Coptic Epact Numbers': [66272, 66303], 'Egyptian Hieroglyphs': [77824, 78895], 'Egyptian Hieroglyph Format Controls': [78896, 78911], 'Ethiopic': [4608, 4991], 'Ethiopic Supplement': [4992, 5023], 'Ethiopic Extended': [11648, 11743], 'Ethiopic Extended-A': [43776, 43823], 'Medefaidrin': [93760, 93855], 'Mende Kikakui': [124928, 125151], 'Meroitic Cursive': [68000, 68095], 'Meroitic Hieroglyphs': [67968, 67999], "N'Ko": [1984, 2047], 'Osmanya': [66688, 66735], 'Tifinagh': [11568, 11647], 'Vai': [42240, 42559]}, 'Middle Eastern Scripts': {'Anatolian Hieroglyphs': [82944, 83583], 'Arabic': [1536, 1791], 'Arabic Supplement': [1872, 1919], 'Arabic Extended-A': [2208, 2303], 'Arabic Presentation Forms-A': [64336, 65023], 'Arabic Presentation Forms-B': [65136, 65279], 'Aramaic, Imperial': [67648, 67679], 'Avestan': [68352, 68415], 'Chorasmian': [69552, 69599], 'Cuneiform': [73728, 74751], 'Cuneiform Numbers and Punctuation': [74752, 74879], 'Early Dynastic Cuneiform': [74880, 75087], 'Old Persian': [66464, 66527], 'Ugaritic': [66432, 66463], 'Elymaic': [69600, 69631], 'Hatran': [67808, 67839], 'Hebrew': [1424, 1535], 'Hebrew Presentation Forms': [64285, 64335], 'Mandaic': [2112, 2143], 'Nabataean': [67712, 67759], 'Old North Arabian': [68224, 68255], 'Old South Arabian': [68192, 68223], 'Pahlavi, Inscriptional': [68448, 68479], 'Pahlavi, Psalter': [68480, 68527], 'Palmyrene': [67680, 67711], 'Parthian, Inscriptional': [68416, 68447], 'Phoenician': [67840, 67871], 'Samaritan': [2048, 2111], 'Syriac': [1792, 1871], 'Syriac Supplement': [2144, 2159], 'Yezidi': [69248, 69311]}, 'Central Asian Scripts': {'Manichaean': [68288, 68351], 'Marchen': [72816, 72895], 'Mongolian': [6144, 6319], 'Mongolian Supplement': [71264, 71295], 'Old Sogdian': [69376, 69423], 'Old Turkic': [68608, 68687], 'Phags-Pa': [43072, 43135], 'Sogdian': [69424, 69487], 'Soyombo': [72272, 72367], 'Tibetan': [3840, 4095], 'Zanabazar Square': [72192, 72271]}, 'South Asian Scripts': {'Ahom': [71424, 71487], 'Bengali and Assamese': [2432, 2559], 'Bhaiksuki': [72704, 72815], 'Brahmi': [69632, 69759], 'Chakma': [69888, 69967], 'Devanagari': [2304, 2431], 'Devanagari Extended': [43232, 43263], 'Dives Akuru': [71936, 72031], 'Dogra': [71680, 71759], 'Grantha': [70400, 70527], 'Gujarati': [2688, 2815], 'Gunjala Gondi': [73056, 73135], 'Gurmukhi': [2560, 2687], 'Kaithi': [69760, 69839], 'Kannada': [3200, 3327], 'Kharoshthi': [68096, 68191], 'Khojki': [70144, 70223], 'Khudawadi': [70320, 70399], 'Lepcha': [7168, 7247], 'Limbu': [6400, 6479], 'Mahajani': [69968, 70015], 'Malayalam': [3328, 3455], 'Masaram Gondi': [72960, 73055], 'Meetei Mayek': [43968, 44031], 'Meetei Mayek Extensions': [43744, 43775], 'Modi': [71168, 71263], 'Mro': [92736, 92783], 'Multani': [70272, 70319], 'Nandinagari': [72096, 72191], 'Newa': [70656, 70783], 'Ol Chiki': [7248, 7295], 'Oriya (Odia)': [2816, 2943], 'Saurashtra': [43136, 43231], 'Sharada': [70016, 70111], 'Siddham': [71040, 71167], 'Sinhala': [3456, 3583], 'Sinhala Archaic Numbers': [70112, 70143], 'Sora Sompeng': [69840, 69887], 'Syloti Nagri': [43008, 43055], 'Takri': [71296, 71375], 'Tamil': [2944, 3071], 'Tamil Supplement': [73664, 73727], 'Telugu': [3072, 3199], 'Thaana': [1920, 1983], 'Tirhuta': [70784, 70879], 'Vedic Extensions': [7376, 7423], 'Wancho': [123584, 123647], 'Warang Citi': [71840, 71935]}, 'Southeast Asian Scripts': {'Cham': [43520, 43615], 'Hanifi Rohingya': [68864, 68927], 'Kayah Li': [43264, 43311], 'Khmer': [6016, 6143], 'Khmer Symbols': [6624, 6655], 'Lao': [3712, 3839], 'Myanmar': [4096, 4255], 'Myanmar Extended-A': [43616, 43647], 'Myanmar Extended-B': [43488, 43519], 'New Tai Lue': [6528, 6623], 'Nyiakeng Puachue Hmong': [123136, 123215], 'Pahawh Hmong': [92928, 93071], 'Pau Cin Hau': [72384, 72447], 'Tai Le': [6480, 6527], 'Tai Tham': [6688, 6831], 'Tai Viet': [43648, 43743], 'Thai': [3584, 3711]}, 'Indonesia & Oceania Scripts': {'Balinese': [6912, 7039], 'Batak': [7104, 7167], 'Buginese': [6656, 6687], 'Buhid': [5952, 5983], 'Hanunoo': [5920, 5951], 'Javanese': [43392, 43487], 'Makasar': [73440, 73471], 'Rejang': [43312, 43359], 'Sundanese': [7040, 7103], 'Sundanese Supplement': [7360, 7375], 'Tagalog': [5888, 5919], 'Tagbanwa': [5984, 6015]}, 'East Asian Scripts': {'Bopomofo': [12544, 12591], 'Bopomofo Extended': [12704, 12735], 'CJK Unified Ideographs (Han)': [19968, 40959], 'CJK Extension\xa0A': [13312, 19903], 'CJK Extension\xa0B': [131072, 173791], 'CJK Extension\xa0C': [173824, 177983], 'CJK Extension\xa0D': [177984, 178207], 'CJK Extension\xa0E': [178208, 183983], 'CJK Extension\xa0F': [183984, 191456], 'CJK Extension\xa0G': [196608, 201546], 'Unihan Database': [196608, 201546], 'CJK Compatibility Ideographs': [63744, 64255], 'CJK Compatibility Ideographs Supplement': [194560, 195103], 'CJK Radicals / Kangxi Radicals': [12032, 12255], 'CJK Radicals Supplement': [11904, 12031], 'CJK Strokes': [12736, 12783], 'Ideographic Description Characters': [12272, 12287], 'Hangul Jamo': [4352, 4607], 'Hangul Jamo Extended-A': [43360, 43391], 'Hangul Jamo Extended-B': [55216, 55295], 'Hangul Compatibility Jamo': [12592, 12687], 'Halfwidth Jamo': [65440, 65500], 'Hangul Syllables': [44032, 55215], 'Hiragana': [12352, 12447], 'Kana Extended-A': [110848, 110895], 'Kana Supplement': [110592, 110847], 'Small Kana Extension': [110896, 110959], 'Kanbun': [12688, 12703], 'Katakana': [12448, 12543], 'Katakana Phonetic Extensions': [12784, 12799], 'Halfwidth Katakana': [65381, 65439], 'Khitan Small Script': [101120, 101631], 'Lisu': [42192, 42239], 'Lisu Supplement': [73648, 73663], 'Miao': [93952, 94111], 'Nushu': [110960, 111359], 'Tangut': [94208, 100351], 'Tangut Components': [100352, 101119], 'Tangut Supplement': [101632, 101640], 'Yi Syllables': [40960, 42127], 'Yi Radicals': [42128, 42191]}, 'American Scripts': {'Cherokee': [5024, 5119], 'Cherokee Supplement': [43888, 43967], 'Deseret': [66560, 66639], 'Osage': [66736, 66815], 'Unified Canadian Aboriginal Syllabics': [5120, 5759], 'UCAS Extended': [6320, 6399]}, 'Other': {'Alphabetic Presentation Forms': [64256, 64335], 'ASCII Characters': [0, 127], 'Halfwidth and Fullwidth Forms': [65280, 65519], 'Symbols and Punctuation': [65280, 65519]}, 'Notational Systems': {'Braille Patterns': [10240, 10495], 'Musical Symbols': [119040, 119295], 'Ancient Greek Musical Notation': [119296, 119375], 'Byzantine Musical Symbols': [118784, 119039], 'Duployan': [113664, 113823], 'Shorthand Format Controls': [113824, 113839], 'Sutton SignWriting': [120832, 121519]}, 'Punctuation': {'General Punctuation': [8192, 8303], 'ASCII Punctuation': [33, 127], 'Latin-1 Punctuation': [161, 191], 'Supplemental Punctuation': [11776, 11903], 'CJK Symbols and Punctuation': [12288, 12351], 'Ideographic Symbols and Punctuation': [94176, 94207], 'CJK Compatibility Forms': [65072, 65103], 'Halfwidth and Fullwidth Forms': [65280, 65519], 'Small Form Variants': [65104, 65135], 'Vertical Forms': [65040, 65055]}, 'Alphanumeric Symbols': {'Letterlike Symbols': [8448, 8527], 'Roman Symbols': [65936, 65999], 'Mathematical Alphanumeric Symbols': [119808, 120831], 'Arabic Mathematical Alphabetic Symbols': [126464, 126719], 'Enclosed Alphanumerics': [9312, 9471], 'Enclosed Alphanumeric Supplement': [127232, 127487], 'Enclosed CJK Letters and Months': [12800, 13055], 'Enclosed Ideographic Supplement': [127488, 127743], 'CJK Compatibility': [13056, 13311], 'Additional Squared Symbols': [8448, 8527]}, 'Technical Symbols': {'APL symbols': [9014, 9082], 'Control Pictures': [9216, 9279], 'Miscellaneous Technical': [8960, 9215], 'Optical Character Recognition (OCR)': [9280, 9311]}, 'Numbers & Digits': {'scripts': [9280, 9311], 'ASCII Digits': [48, 57], 'Fullwidth ASCII Digits': [65296, 65305], 'Common Indic Number Forms': [43056, 43071], 'Coptic Epact Numbers': [66272, 66303], 'Counting Rod Numerals': [119648, 119679], 'Cuneiform Numbers and Punctuation': [74752, 74879], 'Indic Siyaq Numbers': [126064, 126143], 'Mayan Numerals': [119520, 119551], 'Number Forms': [8528, 8591], 'Ottoman Siyaq Numbers': [126208, 126287], 'Rumi Numeral Symbols': [69216, 69247], 'Sinhala Archaic Numbers': [70112, 70143], 'Super and Subscripts': [8304, 8351]}, 'Mathematical Symbols': {'Arrows': [8592, 8703], 'Supplemental Arrows-A': [10224, 10239], 'Supplemental Arrows-B': [10496, 10623], 'Supplemental Arrows-C': [129024, 129279], 'Additional Arrows': [11008, 11263], 'Miscellaneous Symbols and Arrows': [11008, 11263], 'Mathematical Alphanumeric Symbols': [119808, 120831], 'Arabic Mathematical Alphabetic Symbols': [126464, 126719], 'Letterlike Symbols': [8448, 8527], 'Mathematical Operators': [8704, 8959], 'Basic operators: Plus, Factorial,': [8704, 8959], 'Division, Multiplication': [8704, 8959], 'Supplemental Mathematical Operators': [10752, 11007], 'Miscellaneous Mathematical Symbols-A': [10176, 10223], 'Miscellaneous Mathematical Symbols-B': [10624, 10751], 'Floors and Ceilings': [8968, 8971], 'Invisible Operators': [8289, 8292], 'Geometric Shapes': [9632, 9727], 'Additional Shapes': [11008, 11263], 'Box Drawing': [9472, 9599], 'Block Elements': [9600, 9631], 'Geometric Shapes Extended': [128896, 129023]}, 'Emoji & Pictographs': {'Dingbats': [9984, 10175], 'Ornamental Dingbats': [128592, 128639], 'Emoticons': [128512, 128591], 'Miscellaneous Symbols': [9728, 9983], 'Miscellaneous Symbols And Pictographs': [127744, 128511], 'Supplemental Symbols and Pictographs': [129280, 129535], 'Symbols and Pictographs Extended-A': [129648, 129791], 'Transport and Map Symbols': [128640, 128767]}, 'Other Symbols': {'Alchemical Symbols': [128768, 128895], 'Ancient Symbols': [65936, 65999], 'Currency Symbols': [8352, 8399], 'scripts': [8352, 8399], 'Dollar Sign': [36], 'Euro Sign': [36], 'Yen, Pound and Cent': [162, 165], 'Fullwidth Currency Symbols': [65284], 'Rial Sign': [64336], 'Chess, Checkers/Draughts': [9812, 9823, 9920, 9923], 'Chess Symbols': [129536, 129647], 'Domino Tiles': [127024, 127135], 'Japanese Chess': [9750, 9751], 'Mahjong Tiles': [126976, 127023], 'Playing Cards': [127136, 127231], 'Card suits': [9824, 9831], 'Miscellaneous Symbols and Arrows': [11008, 11263], 'Symbols for Legacy Computing': [129792, 130047], 'Yijing Mono-, Di- and Trigrams': [9866, 9871, 9776, 9783], 'Yijing Hexagram Symbols': [19904, 19967], 'Tai Xuan Jing Symbols': [119552, 119647]}, 'Specials': {'Layout Controls': [8192, 8303], 'Invisible Operators': [8289, 8292], 'Specials': [65520, 65535], 'Tags': [917504, 917631], 'Variation Selectors': [65024, 65039], 'Variation Selectors Supplement': [917760, 917999]}, 'Private Use': {'Private Use Area': [57344, 63743], 'Supplementary Private Use Area-A': [983040, 1048573], 'Supplementary Private Use Area-B': [1048576, 1114109]}, 'Surrogates': {'High Surrogates': [55296, 56319], 'Low Surrogates': [56320, 57343]}, 'Noncharacters in Charts': {'Range in Arabic Presentation Forms-A': [64976, 65007], 'Range in Specials': [65534, 65535], 'BMP': [65534, 65535], 'Plane\xa01': [65534, 65535], 'Plane\xa02': [65534, 65535], 'Plane\xa03': [65534, 65535], 'Plane\xa04': [65534, 65535], 'Plane\xa05': [65534, 65535], 'Plane\xa06': [65534, 65535], 'Plane\xa07': [65534, 65535], 'Plane\xa08': [65534, 65535], 'Plane\xa09': [65534, 65535], 'Plane\xa010': [65534, 65535], 'Plane\xa011': [65534, 65535], 'Plane\xa012': [65534, 65535], 'Plane\xa013': [65534, 65535], 'Plane\xa014': [65534, 65535], 'Plane\xa015': [65534, 65535], 'Plane\xa016': [65534, 65535], 'Notes': [65534, 65535], 'To get a list of code charts for a character, enter \n\t\t\t\tits code in the search box at the top. To access a chart for a given block, click on its \n\t\t\t\tentry in the table. The charts are PDF files, and some of them may be very \n\t\t\t\tlarge. For frequent access to the same chart, right-click and save the file \n\t\t\t\tto your disk. For an alphabetical index of character and block names, \n\t\t\tuse the': [65534, 65535], 'Unicode Character Names Index': [65534, 65535]}} |
class Reader:
def __init__(self, stream, sep=None, buf_size=1024 * 4):
self.stream = stream
self.sep = sep
self.buf_size = buf_size
self.__buffer = None
self.__eof = False
def __iter__(self):
return self
def __next__(self):
if not self.__buffer:
self.__read_block()
if not self.__buffer and self.__eof:
raise StopIteration
if not self.sep:
for blk in (b'\x00', b'\r\n', b'\r', b'\n', '\r\n', '\r', '\n'):
try:
idx = self.__buffer.index(blk)
except (ValueError, TypeError):
pass
else:
self.sep = blk
break
else:
return self.__advance()
if self.sep not in self.__buffer:
return self.__advance()
idx = self.__buffer.index(self.sep)
value, self.__buffer = self.__buffer[:idx], self.__buffer[idx + 1:]
if not value:
return self.__advance()
return value
def __advance(self):
if self.__eof:
buf, self.__buffer = self.__buffer, None
return buf
self.__read_block()
return next(self)
def __read_block(self):
if self.__eof:
return
block = self.stream.read(self.buf_size)
if block is None:
# stream isn't ready, try again
return
if self.__buffer is None:
self.__buffer = type(block)()
self.__buffer = self.__buffer + block
if not block:
self.__eof = True
| class Reader:
def __init__(self, stream, sep=None, buf_size=1024 * 4):
self.stream = stream
self.sep = sep
self.buf_size = buf_size
self.__buffer = None
self.__eof = False
def __iter__(self):
return self
def __next__(self):
if not self.__buffer:
self.__read_block()
if not self.__buffer and self.__eof:
raise StopIteration
if not self.sep:
for blk in (b'\x00', b'\r\n', b'\r', b'\n', '\r\n', '\r', '\n'):
try:
idx = self.__buffer.index(blk)
except (ValueError, TypeError):
pass
else:
self.sep = blk
break
else:
return self.__advance()
if self.sep not in self.__buffer:
return self.__advance()
idx = self.__buffer.index(self.sep)
(value, self.__buffer) = (self.__buffer[:idx], self.__buffer[idx + 1:])
if not value:
return self.__advance()
return value
def __advance(self):
if self.__eof:
(buf, self.__buffer) = (self.__buffer, None)
return buf
self.__read_block()
return next(self)
def __read_block(self):
if self.__eof:
return
block = self.stream.read(self.buf_size)
if block is None:
return
if self.__buffer is None:
self.__buffer = type(block)()
self.__buffer = self.__buffer + block
if not block:
self.__eof = True |
# Copyright 2019 Google LLC
#
# 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
#
# https://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.
load(":googleapis.bzl", "googleapis_repositories")
load(":service_control.bzl", "service_control_client_repositories")
load(":bazel_rules_python.bzl", "bazel_rules_python_repositories")
def service_control_repositories():
googleapis_repositories()
service_control_client_repositories()
bazel_rules_python_repositories()
| load(':googleapis.bzl', 'googleapis_repositories')
load(':service_control.bzl', 'service_control_client_repositories')
load(':bazel_rules_python.bzl', 'bazel_rules_python_repositories')
def service_control_repositories():
googleapis_repositories()
service_control_client_repositories()
bazel_rules_python_repositories() |
class NeuronLayer:
def __init__(self, neurons):
self.neurons = {}
for n in neurons:
self.neurons[n] = None # Value: output
def __str__(self):
msg = "| | "
for n in self.neurons:
msg += str(n) + " | "
msg += "|"
return msg
def activate(self, event):
for n in self.neurons:
self.neurons[n] = n.activate(event)
| class Neuronlayer:
def __init__(self, neurons):
self.neurons = {}
for n in neurons:
self.neurons[n] = None
def __str__(self):
msg = '| | '
for n in self.neurons:
msg += str(n) + ' | '
msg += '|'
return msg
def activate(self, event):
for n in self.neurons:
self.neurons[n] = n.activate(event) |
class Solution:
def subsetXORSum(self, nums: List[int]) -> int:
ans = 0
n = len(nums)
for i in nums:
ans |= i
return ans * pow(2, n - 1)
| class Solution:
def subset_xor_sum(self, nums: List[int]) -> int:
ans = 0
n = len(nums)
for i in nums:
ans |= i
return ans * pow(2, n - 1) |
#
# PySNMP MIB module PDN-MGMT-IP-MIB (http://snmplabs.com/pysmi)
# ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/PDN-MGMT-IP-MIB
# Produced by pysmi-0.3.4 at Wed May 1 14:39:08 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, ValueRangeConstraint, SingleValueConstraint, ConstraintsIntersection, ValueSizeConstraint = mibBuilder.importSymbols("ASN1-REFINEMENT", "ConstraintsUnion", "ValueRangeConstraint", "SingleValueConstraint", "ConstraintsIntersection", "ValueSizeConstraint")
AtmVpIdentifier, AtmVcIdentifier = mibBuilder.importSymbols("ATM-TC-MIB", "AtmVpIdentifier", "AtmVcIdentifier")
InterfaceIndex, = mibBuilder.importSymbols("IF-MIB", "InterfaceIndex")
pdn_interfaces, = mibBuilder.importSymbols("PDN-HEADER-MIB", "pdn-interfaces")
NotificationGroup, ObjectGroup, ModuleCompliance = mibBuilder.importSymbols("SNMPv2-CONF", "NotificationGroup", "ObjectGroup", "ModuleCompliance")
NotificationType, Counter32, TimeTicks, MibIdentifier, Counter64, ObjectIdentity, MibScalar, MibTable, MibTableRow, MibTableColumn, iso, Unsigned32, Integer32, ModuleIdentity, Bits, IpAddress, Gauge32 = mibBuilder.importSymbols("SNMPv2-SMI", "NotificationType", "Counter32", "TimeTicks", "MibIdentifier", "Counter64", "ObjectIdentity", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "iso", "Unsigned32", "Integer32", "ModuleIdentity", "Bits", "IpAddress", "Gauge32")
DisplayString, TextualConvention, RowStatus, PhysAddress = mibBuilder.importSymbols("SNMPv2-TC", "DisplayString", "TextualConvention", "RowStatus", "PhysAddress")
pdnMgmtIpMIB = ModuleIdentity((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 6, 21))
if mibBuilder.loadTexts: pdnMgmtIpMIB.setLastUpdated('200206051500Z')
if mibBuilder.loadTexts: pdnMgmtIpMIB.setOrganization('Paradyne Corporation MIB Working Group')
if mibBuilder.loadTexts: pdnMgmtIpMIB.setContactInfo(' Paradyne Networks Inc. Postal: 8545, 126th Ave. N. Largo, FL 33779 US Editors: Daniel M.V. Jesus Pinto Email: mibwg_team@eng.paradyne.com')
if mibBuilder.loadTexts: pdnMgmtIpMIB.setDescription('The MIB module for configuration and management of IP interfaces/ports used for managing a DSLAM.')
pdnMgmtIpConfObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 6, 21, 1))
pdnMgmtIpPortTable = MibTable((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 6, 21, 1, 1), )
if mibBuilder.loadTexts: pdnMgmtIpPortTable.setStatus('current')
if mibBuilder.loadTexts: pdnMgmtIpPortTable.setDescription('This table contains one row per IP port in the system.')
pdnMgmtIpPortEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 6, 21, 1, 1, 1), ).setIndexNames((0, "PDN-MGMT-IP-MIB", "pdnMgmtIpPortIndex"))
if mibBuilder.loadTexts: pdnMgmtIpPortEntry.setStatus('current')
if mibBuilder.loadTexts: pdnMgmtIpPortEntry.setDescription('Configuration information about a particular IP port in the system.')
pdnMgmtIpPortIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 6, 21, 1, 1, 1, 1), InterfaceIndex())
if mibBuilder.loadTexts: pdnMgmtIpPortIndex.setStatus('current')
if mibBuilder.loadTexts: pdnMgmtIpPortIndex.setDescription('The index for this entry.')
pdnMgmtIpAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 6, 21, 1, 1, 1, 2), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: pdnMgmtIpAddress.setStatus('current')
if mibBuilder.loadTexts: pdnMgmtIpAddress.setDescription("The IP address assigned to this port. If the pdnMgmtIpConfigMode is set to modes other than 'manual', then the MAX-ACCESS for this object is read-only and the value of the object represents the actual IP address assigned to the port by the DHCP or BOOTP client (or 0.0.0.0, if none assigned). A 0.0.0.0 for this object indicates that no IP address is assigned to the port. Changes to this object could disrupt data flow through the port as the IP port tears down the IP stack first before instantiating the stack again with the new IP address.")
pdnMgmtIpNetMask = MibTableColumn((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 6, 21, 1, 1, 1, 3), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: pdnMgmtIpNetMask.setStatus('current')
if mibBuilder.loadTexts: pdnMgmtIpNetMask.setDescription("The IP subnet mask assigned to this port. If the pdnMgmtIpConfigMode is set to modes other than 'manual', then the MAX-ACCESS for this object is read-only and the value of the object represents the actual IP subnet mask assigned to the port by the DHCP or BOOTP client (or 0.0.0.0, if none assigned). A 0.0.0.0 for the this object indicates that no IP subnet mask is assigned to the port. Changes to this object could disrupt data flow through the port as the IP port tears down the IP stack first before instantiating the stack again with the new IP subnet mask.")
pdnMgmtIpEthGateway = MibTableColumn((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 6, 21, 1, 1, 1, 4), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: pdnMgmtIpEthGateway.setStatus('current')
if mibBuilder.loadTexts: pdnMgmtIpEthGateway.setDescription("The IP Gateway for an ethernet based IP port. This object is supported only on IP ports that are configured to run over ethernet type of media. This object would be set to 0.0.0.0 for other types of interfaces and is not valid. Furthermore, if the pdnMgmtIpConfigMode is set to modes other than 'manual', then the MAX-ACCESS for this object is read-only and the value of the object represents the actual IP Gateway mask assigned to the port by the DHCP or BOOTP client (or 0.0.0.0, if none assigned). A 0.0.0.0 for this object indicates that no IP Gateway is assigned to the port.")
pdnMgmtIpPhysAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 6, 21, 1, 1, 1, 5), PhysAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: pdnMgmtIpPhysAddress.setStatus('current')
if mibBuilder.loadTexts: pdnMgmtIpPhysAddress.setDescription('The physical address associated with the media. For IP Ports with Ethernet type of media, the MAX-ACCESS for this object is restricted to read-only. In such cases, this object would reflect the MAC address of the underlying ethernet data link. For IP Ports that run over ATM PVCs, this object is writable.')
pdnMgmtIpConfigMode = MibTableColumn((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 6, 21, 1, 1, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("manual", 1), ("dhcp", 2), ("bootp", 3)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: pdnMgmtIpConfigMode.setStatus('current')
if mibBuilder.loadTexts: pdnMgmtIpConfigMode.setDescription("The IP configuration mode for the port. In 'manual' mode, it is upto the user to provide the IP address & IP subnet mask of the port. In 'dhcp' or 'bootp' modes, the respective protocols are resposible to obtain and populate the IP address & IP subnet mask for the port. Whenever the config mode is changed from 'manual' mode, the IP address and the IP subnet mask for the port would automatically be reset to 0.0.0.0. The external agent (SNMP or others) SHOULD NOT attempt to write the IP address or the IP subnet mask of the port when this object is not in 'manual' mode.")
pdnMgmtBootIfIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 6, 21, 1, 1, 1, 7), InterfaceIndex()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: pdnMgmtBootIfIndex.setStatus('current')
if mibBuilder.loadTexts: pdnMgmtBootIfIndex.setDescription("The interface index of the ATM interface to be used by BOOTP or DHCP client, if the pdnMgmtIpConfigMode is set to 'bootp' or 'dhcp' respectively. Even if the IP port (interface) is configured for 'manual' configuration, the value of this object can be modified to indicate the default ATM ifIndex for BOOTP or DHCP to operate on. This object is valid only if the IP Port has ATM PVC(s) as the underlying data link media. For IP Ports over ethernet type of media, the MAX-ACCESS for this object is read-only, and the object is set to 0 always.")
pdnMgmtBootVpi = MibTableColumn((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 6, 21, 1, 1, 1, 8), AtmVpIdentifier()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: pdnMgmtBootVpi.setStatus('current')
if mibBuilder.loadTexts: pdnMgmtBootVpi.setDescription("The VPI of the ATM PVC to be used by BOOTP or DHCP client, if the pdnMgmtIpConfigMode is set to 'bootp' or 'dhcp' respectively. Even if the IP port (interface) is configured for 'manual' configuration, the value of this object can be modified to indicate the default ATM PVC's VPI for BOOTP or DHCP to operate on. This object is valid only if the IP Port has ATM PVC(s) as the underlying data link media. For IP Ports over ethernet type of media, the MAX-ACCESS for this object is read-only, and the object is set to 0 always.")
pdnMgmtBootVci = MibTableColumn((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 6, 21, 1, 1, 1, 9), AtmVcIdentifier()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: pdnMgmtBootVci.setStatus('current')
if mibBuilder.loadTexts: pdnMgmtBootVci.setDescription("The VCI of the ATM PVC to be used by BOOTP or DHCP client, if the pdnMgmtIpConfigMode is set to 'bootp' or 'dhcp' respectively. Even if the IP port (interface) is configured for 'manual' configuration, the value of this object can be modified to indicate the default ATM PVC's VCI for BOOTP or DHCP to operate on. This object is valid only if the IP Port has ATM PVC(s) as the underlying data link media. For IP Ports over ethernet type of media, the MAX-ACCESS for this object is read-only, and the object is set to 0 always.")
pdnMgmtIpAdminStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 6, 21, 1, 1, 1, 10), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("up", 1), ("down", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: pdnMgmtIpAdminStatus.setStatus('current')
if mibBuilder.loadTexts: pdnMgmtIpAdminStatus.setDescription("The status of the IP Port (interface). Data flow through the IP Port is possible only if this object is set to 'up'. When this object is set to 'down', the interface SHALL be torn down and all routes (associated with this port) be purged automatically, until the port is set to 'up' state again.")
pdnMgmtAtmInvArpTable = MibTable((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 6, 21, 1, 2), )
if mibBuilder.loadTexts: pdnMgmtAtmInvArpTable.setStatus('current')
if mibBuilder.loadTexts: pdnMgmtAtmInvArpTable.setDescription('This table contains one row per Inverse ATM ARP entry in the system. This table maps the <ifIndex, vpi, vci> index to corresponding <ipPortIndex, remoteIp>.')
pdnMgmtAtmInvArpEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 6, 21, 1, 2, 1), ).setIndexNames((0, "PDN-MGMT-IP-MIB", "pdnMgmtAtmIfIndex"), (0, "PDN-MGMT-IP-MIB", "pdnMgmtAtmVpi"), (0, "PDN-MGMT-IP-MIB", "pdnMgmtAtmVci"))
if mibBuilder.loadTexts: pdnMgmtAtmInvArpEntry.setStatus('current')
if mibBuilder.loadTexts: pdnMgmtAtmInvArpEntry.setDescription('ATM Inverse ARP entry corresponding to a particular ATM PVC that is being used by management IP traffic.')
pdnMgmtAtmIfIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 6, 21, 1, 2, 1, 1), InterfaceIndex())
if mibBuilder.loadTexts: pdnMgmtAtmIfIndex.setStatus('current')
if mibBuilder.loadTexts: pdnMgmtAtmIfIndex.setDescription('The interface index associated with the ATM PVC.')
pdnMgmtAtmVpi = MibTableColumn((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 6, 21, 1, 2, 1, 2), AtmVpIdentifier())
if mibBuilder.loadTexts: pdnMgmtAtmVpi.setStatus('current')
if mibBuilder.loadTexts: pdnMgmtAtmVpi.setDescription('The VPI associated with the ATM PVC.')
pdnMgmtAtmVci = MibTableColumn((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 6, 21, 1, 2, 1, 3), AtmVcIdentifier())
if mibBuilder.loadTexts: pdnMgmtAtmVci.setStatus('current')
if mibBuilder.loadTexts: pdnMgmtAtmVci.setDescription('The VCI associated with the ATM PVC.')
pdnMgmtIpPortIfIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 6, 21, 1, 2, 1, 4), InterfaceIndex()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: pdnMgmtIpPortIfIndex.setStatus('current')
if mibBuilder.loadTexts: pdnMgmtIpPortIfIndex.setDescription('The Interface Index of the IP port to which this inverse ARP entry is associated with.')
pdnMgmtNextHopIp = MibTableColumn((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 6, 21, 1, 2, 1, 5), IpAddress()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: pdnMgmtNextHopIp.setStatus('current')
if mibBuilder.loadTexts: pdnMgmtNextHopIp.setDescription('The IP address of the unit at the other end of this ATM PVC. This represents the IP Gateway equivalent for IP traffic on this specific ATM PVC.')
pdnMgmtAtmInvArpRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 6, 21, 1, 2, 1, 6), RowStatus()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: pdnMgmtAtmInvArpRowStatus.setStatus('current')
if mibBuilder.loadTexts: pdnMgmtAtmInvArpRowStatus.setDescription('This object is used to create/delete the ATM inverse ARP entry in this table. ')
pdnMgmtIpDefaultRouter = MibScalar((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 6, 21, 1, 3), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: pdnMgmtIpDefaultRouter.setStatus('current')
if mibBuilder.loadTexts: pdnMgmtIpDefaultRouter.setDescription('This object identifies the default IP router to use for IP packets with no other known route. An IP address of 0.0.0.0 would disable and delete the default route from the system.')
pdnMgmtIpConformance = MibIdentifier((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 6, 21, 2))
pdnMgmtIpGroups = MibIdentifier((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 6, 21, 2, 1))
pdnMgmtIpCompliances = MibIdentifier((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 6, 21, 2, 2))
pdnMgmtIpConfigCompliance = ModuleCompliance((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 6, 21, 2, 2, 1)).setObjects(("PDN-MGMT-IP-MIB", "pdnMgmtIpConfigGroup"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
pdnMgmtIpConfigCompliance = pdnMgmtIpConfigCompliance.setStatus('current')
if mibBuilder.loadTexts: pdnMgmtIpConfigCompliance.setDescription('The compliance statement for SNMP entities which manage the configuration parameters on a Management IP port/interface.')
pdnMgmtIpConfigGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 6, 21, 2, 1, 1)).setObjects(("PDN-MGMT-IP-MIB", "pdnMgmtIpAddress"), ("PDN-MGMT-IP-MIB", "pdnMgmtIpNetMask"), ("PDN-MGMT-IP-MIB", "pdnMgmtIpEthGateway"), ("PDN-MGMT-IP-MIB", "pdnMgmtIpPhysAddress"), ("PDN-MGMT-IP-MIB", "pdnMgmtIpConfigMode"), ("PDN-MGMT-IP-MIB", "pdnMgmtBootIfIndex"), ("PDN-MGMT-IP-MIB", "pdnMgmtBootVpi"), ("PDN-MGMT-IP-MIB", "pdnMgmtBootVci"), ("PDN-MGMT-IP-MIB", "pdnMgmtIpAdminStatus"), ("PDN-MGMT-IP-MIB", "pdnMgmtIpPortIfIndex"), ("PDN-MGMT-IP-MIB", "pdnMgmtNextHopIp"), ("PDN-MGMT-IP-MIB", "pdnMgmtAtmInvArpRowStatus"), ("PDN-MGMT-IP-MIB", "pdnMgmtIpDefaultRouter"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
pdnMgmtIpConfigGroup = pdnMgmtIpConfigGroup.setStatus('current')
if mibBuilder.loadTexts: pdnMgmtIpConfigGroup.setDescription('A collection of Management IP configuration objects that are required to configure the device.')
mibBuilder.exportSymbols("PDN-MGMT-IP-MIB", pdnMgmtAtmVci=pdnMgmtAtmVci, pdnMgmtAtmInvArpRowStatus=pdnMgmtAtmInvArpRowStatus, pdnMgmtIpConformance=pdnMgmtIpConformance, pdnMgmtIpPortTable=pdnMgmtIpPortTable, pdnMgmtIpPortEntry=pdnMgmtIpPortEntry, pdnMgmtIpNetMask=pdnMgmtIpNetMask, pdnMgmtBootVci=pdnMgmtBootVci, pdnMgmtIpMIB=pdnMgmtIpMIB, pdnMgmtNextHopIp=pdnMgmtNextHopIp, pdnMgmtIpAdminStatus=pdnMgmtIpAdminStatus, pdnMgmtAtmInvArpTable=pdnMgmtAtmInvArpTable, pdnMgmtIpDefaultRouter=pdnMgmtIpDefaultRouter, pdnMgmtIpPortIndex=pdnMgmtIpPortIndex, pdnMgmtIpConfObjects=pdnMgmtIpConfObjects, pdnMgmtAtmIfIndex=pdnMgmtAtmIfIndex, pdnMgmtAtmInvArpEntry=pdnMgmtAtmInvArpEntry, pdnMgmtAtmVpi=pdnMgmtAtmVpi, pdnMgmtBootIfIndex=pdnMgmtBootIfIndex, pdnMgmtIpGroups=pdnMgmtIpGroups, pdnMgmtIpPortIfIndex=pdnMgmtIpPortIfIndex, pdnMgmtIpConfigGroup=pdnMgmtIpConfigGroup, pdnMgmtBootVpi=pdnMgmtBootVpi, pdnMgmtIpCompliances=pdnMgmtIpCompliances, pdnMgmtIpPhysAddress=pdnMgmtIpPhysAddress, pdnMgmtIpConfigCompliance=pdnMgmtIpConfigCompliance, pdnMgmtIpConfigMode=pdnMgmtIpConfigMode, pdnMgmtIpAddress=pdnMgmtIpAddress, PYSNMP_MODULE_ID=pdnMgmtIpMIB, pdnMgmtIpEthGateway=pdnMgmtIpEthGateway)
| (octet_string, object_identifier, integer) = mibBuilder.importSymbols('ASN1', 'OctetString', 'ObjectIdentifier', 'Integer')
(named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues')
(constraints_union, value_range_constraint, single_value_constraint, constraints_intersection, value_size_constraint) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'ConstraintsUnion', 'ValueRangeConstraint', 'SingleValueConstraint', 'ConstraintsIntersection', 'ValueSizeConstraint')
(atm_vp_identifier, atm_vc_identifier) = mibBuilder.importSymbols('ATM-TC-MIB', 'AtmVpIdentifier', 'AtmVcIdentifier')
(interface_index,) = mibBuilder.importSymbols('IF-MIB', 'InterfaceIndex')
(pdn_interfaces,) = mibBuilder.importSymbols('PDN-HEADER-MIB', 'pdn-interfaces')
(notification_group, object_group, module_compliance) = mibBuilder.importSymbols('SNMPv2-CONF', 'NotificationGroup', 'ObjectGroup', 'ModuleCompliance')
(notification_type, counter32, time_ticks, mib_identifier, counter64, object_identity, mib_scalar, mib_table, mib_table_row, mib_table_column, iso, unsigned32, integer32, module_identity, bits, ip_address, gauge32) = mibBuilder.importSymbols('SNMPv2-SMI', 'NotificationType', 'Counter32', 'TimeTicks', 'MibIdentifier', 'Counter64', 'ObjectIdentity', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn', 'iso', 'Unsigned32', 'Integer32', 'ModuleIdentity', 'Bits', 'IpAddress', 'Gauge32')
(display_string, textual_convention, row_status, phys_address) = mibBuilder.importSymbols('SNMPv2-TC', 'DisplayString', 'TextualConvention', 'RowStatus', 'PhysAddress')
pdn_mgmt_ip_mib = module_identity((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 6, 21))
if mibBuilder.loadTexts:
pdnMgmtIpMIB.setLastUpdated('200206051500Z')
if mibBuilder.loadTexts:
pdnMgmtIpMIB.setOrganization('Paradyne Corporation MIB Working Group')
if mibBuilder.loadTexts:
pdnMgmtIpMIB.setContactInfo(' Paradyne Networks Inc. Postal: 8545, 126th Ave. N. Largo, FL 33779 US Editors: Daniel M.V. Jesus Pinto Email: mibwg_team@eng.paradyne.com')
if mibBuilder.loadTexts:
pdnMgmtIpMIB.setDescription('The MIB module for configuration and management of IP interfaces/ports used for managing a DSLAM.')
pdn_mgmt_ip_conf_objects = mib_identifier((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 6, 21, 1))
pdn_mgmt_ip_port_table = mib_table((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 6, 21, 1, 1))
if mibBuilder.loadTexts:
pdnMgmtIpPortTable.setStatus('current')
if mibBuilder.loadTexts:
pdnMgmtIpPortTable.setDescription('This table contains one row per IP port in the system.')
pdn_mgmt_ip_port_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 6, 21, 1, 1, 1)).setIndexNames((0, 'PDN-MGMT-IP-MIB', 'pdnMgmtIpPortIndex'))
if mibBuilder.loadTexts:
pdnMgmtIpPortEntry.setStatus('current')
if mibBuilder.loadTexts:
pdnMgmtIpPortEntry.setDescription('Configuration information about a particular IP port in the system.')
pdn_mgmt_ip_port_index = mib_table_column((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 6, 21, 1, 1, 1, 1), interface_index())
if mibBuilder.loadTexts:
pdnMgmtIpPortIndex.setStatus('current')
if mibBuilder.loadTexts:
pdnMgmtIpPortIndex.setDescription('The index for this entry.')
pdn_mgmt_ip_address = mib_table_column((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 6, 21, 1, 1, 1, 2), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
pdnMgmtIpAddress.setStatus('current')
if mibBuilder.loadTexts:
pdnMgmtIpAddress.setDescription("The IP address assigned to this port. If the pdnMgmtIpConfigMode is set to modes other than 'manual', then the MAX-ACCESS for this object is read-only and the value of the object represents the actual IP address assigned to the port by the DHCP or BOOTP client (or 0.0.0.0, if none assigned). A 0.0.0.0 for this object indicates that no IP address is assigned to the port. Changes to this object could disrupt data flow through the port as the IP port tears down the IP stack first before instantiating the stack again with the new IP address.")
pdn_mgmt_ip_net_mask = mib_table_column((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 6, 21, 1, 1, 1, 3), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
pdnMgmtIpNetMask.setStatus('current')
if mibBuilder.loadTexts:
pdnMgmtIpNetMask.setDescription("The IP subnet mask assigned to this port. If the pdnMgmtIpConfigMode is set to modes other than 'manual', then the MAX-ACCESS for this object is read-only and the value of the object represents the actual IP subnet mask assigned to the port by the DHCP or BOOTP client (or 0.0.0.0, if none assigned). A 0.0.0.0 for the this object indicates that no IP subnet mask is assigned to the port. Changes to this object could disrupt data flow through the port as the IP port tears down the IP stack first before instantiating the stack again with the new IP subnet mask.")
pdn_mgmt_ip_eth_gateway = mib_table_column((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 6, 21, 1, 1, 1, 4), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
pdnMgmtIpEthGateway.setStatus('current')
if mibBuilder.loadTexts:
pdnMgmtIpEthGateway.setDescription("The IP Gateway for an ethernet based IP port. This object is supported only on IP ports that are configured to run over ethernet type of media. This object would be set to 0.0.0.0 for other types of interfaces and is not valid. Furthermore, if the pdnMgmtIpConfigMode is set to modes other than 'manual', then the MAX-ACCESS for this object is read-only and the value of the object represents the actual IP Gateway mask assigned to the port by the DHCP or BOOTP client (or 0.0.0.0, if none assigned). A 0.0.0.0 for this object indicates that no IP Gateway is assigned to the port.")
pdn_mgmt_ip_phys_address = mib_table_column((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 6, 21, 1, 1, 1, 5), phys_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
pdnMgmtIpPhysAddress.setStatus('current')
if mibBuilder.loadTexts:
pdnMgmtIpPhysAddress.setDescription('The physical address associated with the media. For IP Ports with Ethernet type of media, the MAX-ACCESS for this object is restricted to read-only. In such cases, this object would reflect the MAC address of the underlying ethernet data link. For IP Ports that run over ATM PVCs, this object is writable.')
pdn_mgmt_ip_config_mode = mib_table_column((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 6, 21, 1, 1, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('manual', 1), ('dhcp', 2), ('bootp', 3)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
pdnMgmtIpConfigMode.setStatus('current')
if mibBuilder.loadTexts:
pdnMgmtIpConfigMode.setDescription("The IP configuration mode for the port. In 'manual' mode, it is upto the user to provide the IP address & IP subnet mask of the port. In 'dhcp' or 'bootp' modes, the respective protocols are resposible to obtain and populate the IP address & IP subnet mask for the port. Whenever the config mode is changed from 'manual' mode, the IP address and the IP subnet mask for the port would automatically be reset to 0.0.0.0. The external agent (SNMP or others) SHOULD NOT attempt to write the IP address or the IP subnet mask of the port when this object is not in 'manual' mode.")
pdn_mgmt_boot_if_index = mib_table_column((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 6, 21, 1, 1, 1, 7), interface_index()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
pdnMgmtBootIfIndex.setStatus('current')
if mibBuilder.loadTexts:
pdnMgmtBootIfIndex.setDescription("The interface index of the ATM interface to be used by BOOTP or DHCP client, if the pdnMgmtIpConfigMode is set to 'bootp' or 'dhcp' respectively. Even if the IP port (interface) is configured for 'manual' configuration, the value of this object can be modified to indicate the default ATM ifIndex for BOOTP or DHCP to operate on. This object is valid only if the IP Port has ATM PVC(s) as the underlying data link media. For IP Ports over ethernet type of media, the MAX-ACCESS for this object is read-only, and the object is set to 0 always.")
pdn_mgmt_boot_vpi = mib_table_column((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 6, 21, 1, 1, 1, 8), atm_vp_identifier()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
pdnMgmtBootVpi.setStatus('current')
if mibBuilder.loadTexts:
pdnMgmtBootVpi.setDescription("The VPI of the ATM PVC to be used by BOOTP or DHCP client, if the pdnMgmtIpConfigMode is set to 'bootp' or 'dhcp' respectively. Even if the IP port (interface) is configured for 'manual' configuration, the value of this object can be modified to indicate the default ATM PVC's VPI for BOOTP or DHCP to operate on. This object is valid only if the IP Port has ATM PVC(s) as the underlying data link media. For IP Ports over ethernet type of media, the MAX-ACCESS for this object is read-only, and the object is set to 0 always.")
pdn_mgmt_boot_vci = mib_table_column((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 6, 21, 1, 1, 1, 9), atm_vc_identifier()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
pdnMgmtBootVci.setStatus('current')
if mibBuilder.loadTexts:
pdnMgmtBootVci.setDescription("The VCI of the ATM PVC to be used by BOOTP or DHCP client, if the pdnMgmtIpConfigMode is set to 'bootp' or 'dhcp' respectively. Even if the IP port (interface) is configured for 'manual' configuration, the value of this object can be modified to indicate the default ATM PVC's VCI for BOOTP or DHCP to operate on. This object is valid only if the IP Port has ATM PVC(s) as the underlying data link media. For IP Ports over ethernet type of media, the MAX-ACCESS for this object is read-only, and the object is set to 0 always.")
pdn_mgmt_ip_admin_status = mib_table_column((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 6, 21, 1, 1, 1, 10), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('up', 1), ('down', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
pdnMgmtIpAdminStatus.setStatus('current')
if mibBuilder.loadTexts:
pdnMgmtIpAdminStatus.setDescription("The status of the IP Port (interface). Data flow through the IP Port is possible only if this object is set to 'up'. When this object is set to 'down', the interface SHALL be torn down and all routes (associated with this port) be purged automatically, until the port is set to 'up' state again.")
pdn_mgmt_atm_inv_arp_table = mib_table((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 6, 21, 1, 2))
if mibBuilder.loadTexts:
pdnMgmtAtmInvArpTable.setStatus('current')
if mibBuilder.loadTexts:
pdnMgmtAtmInvArpTable.setDescription('This table contains one row per Inverse ATM ARP entry in the system. This table maps the <ifIndex, vpi, vci> index to corresponding <ipPortIndex, remoteIp>.')
pdn_mgmt_atm_inv_arp_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 6, 21, 1, 2, 1)).setIndexNames((0, 'PDN-MGMT-IP-MIB', 'pdnMgmtAtmIfIndex'), (0, 'PDN-MGMT-IP-MIB', 'pdnMgmtAtmVpi'), (0, 'PDN-MGMT-IP-MIB', 'pdnMgmtAtmVci'))
if mibBuilder.loadTexts:
pdnMgmtAtmInvArpEntry.setStatus('current')
if mibBuilder.loadTexts:
pdnMgmtAtmInvArpEntry.setDescription('ATM Inverse ARP entry corresponding to a particular ATM PVC that is being used by management IP traffic.')
pdn_mgmt_atm_if_index = mib_table_column((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 6, 21, 1, 2, 1, 1), interface_index())
if mibBuilder.loadTexts:
pdnMgmtAtmIfIndex.setStatus('current')
if mibBuilder.loadTexts:
pdnMgmtAtmIfIndex.setDescription('The interface index associated with the ATM PVC.')
pdn_mgmt_atm_vpi = mib_table_column((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 6, 21, 1, 2, 1, 2), atm_vp_identifier())
if mibBuilder.loadTexts:
pdnMgmtAtmVpi.setStatus('current')
if mibBuilder.loadTexts:
pdnMgmtAtmVpi.setDescription('The VPI associated with the ATM PVC.')
pdn_mgmt_atm_vci = mib_table_column((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 6, 21, 1, 2, 1, 3), atm_vc_identifier())
if mibBuilder.loadTexts:
pdnMgmtAtmVci.setStatus('current')
if mibBuilder.loadTexts:
pdnMgmtAtmVci.setDescription('The VCI associated with the ATM PVC.')
pdn_mgmt_ip_port_if_index = mib_table_column((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 6, 21, 1, 2, 1, 4), interface_index()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
pdnMgmtIpPortIfIndex.setStatus('current')
if mibBuilder.loadTexts:
pdnMgmtIpPortIfIndex.setDescription('The Interface Index of the IP port to which this inverse ARP entry is associated with.')
pdn_mgmt_next_hop_ip = mib_table_column((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 6, 21, 1, 2, 1, 5), ip_address()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
pdnMgmtNextHopIp.setStatus('current')
if mibBuilder.loadTexts:
pdnMgmtNextHopIp.setDescription('The IP address of the unit at the other end of this ATM PVC. This represents the IP Gateway equivalent for IP traffic on this specific ATM PVC.')
pdn_mgmt_atm_inv_arp_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 6, 21, 1, 2, 1, 6), row_status()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
pdnMgmtAtmInvArpRowStatus.setStatus('current')
if mibBuilder.loadTexts:
pdnMgmtAtmInvArpRowStatus.setDescription('This object is used to create/delete the ATM inverse ARP entry in this table. ')
pdn_mgmt_ip_default_router = mib_scalar((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 6, 21, 1, 3), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
pdnMgmtIpDefaultRouter.setStatus('current')
if mibBuilder.loadTexts:
pdnMgmtIpDefaultRouter.setDescription('This object identifies the default IP router to use for IP packets with no other known route. An IP address of 0.0.0.0 would disable and delete the default route from the system.')
pdn_mgmt_ip_conformance = mib_identifier((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 6, 21, 2))
pdn_mgmt_ip_groups = mib_identifier((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 6, 21, 2, 1))
pdn_mgmt_ip_compliances = mib_identifier((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 6, 21, 2, 2))
pdn_mgmt_ip_config_compliance = module_compliance((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 6, 21, 2, 2, 1)).setObjects(('PDN-MGMT-IP-MIB', 'pdnMgmtIpConfigGroup'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
pdn_mgmt_ip_config_compliance = pdnMgmtIpConfigCompliance.setStatus('current')
if mibBuilder.loadTexts:
pdnMgmtIpConfigCompliance.setDescription('The compliance statement for SNMP entities which manage the configuration parameters on a Management IP port/interface.')
pdn_mgmt_ip_config_group = object_group((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 6, 21, 2, 1, 1)).setObjects(('PDN-MGMT-IP-MIB', 'pdnMgmtIpAddress'), ('PDN-MGMT-IP-MIB', 'pdnMgmtIpNetMask'), ('PDN-MGMT-IP-MIB', 'pdnMgmtIpEthGateway'), ('PDN-MGMT-IP-MIB', 'pdnMgmtIpPhysAddress'), ('PDN-MGMT-IP-MIB', 'pdnMgmtIpConfigMode'), ('PDN-MGMT-IP-MIB', 'pdnMgmtBootIfIndex'), ('PDN-MGMT-IP-MIB', 'pdnMgmtBootVpi'), ('PDN-MGMT-IP-MIB', 'pdnMgmtBootVci'), ('PDN-MGMT-IP-MIB', 'pdnMgmtIpAdminStatus'), ('PDN-MGMT-IP-MIB', 'pdnMgmtIpPortIfIndex'), ('PDN-MGMT-IP-MIB', 'pdnMgmtNextHopIp'), ('PDN-MGMT-IP-MIB', 'pdnMgmtAtmInvArpRowStatus'), ('PDN-MGMT-IP-MIB', 'pdnMgmtIpDefaultRouter'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
pdn_mgmt_ip_config_group = pdnMgmtIpConfigGroup.setStatus('current')
if mibBuilder.loadTexts:
pdnMgmtIpConfigGroup.setDescription('A collection of Management IP configuration objects that are required to configure the device.')
mibBuilder.exportSymbols('PDN-MGMT-IP-MIB', pdnMgmtAtmVci=pdnMgmtAtmVci, pdnMgmtAtmInvArpRowStatus=pdnMgmtAtmInvArpRowStatus, pdnMgmtIpConformance=pdnMgmtIpConformance, pdnMgmtIpPortTable=pdnMgmtIpPortTable, pdnMgmtIpPortEntry=pdnMgmtIpPortEntry, pdnMgmtIpNetMask=pdnMgmtIpNetMask, pdnMgmtBootVci=pdnMgmtBootVci, pdnMgmtIpMIB=pdnMgmtIpMIB, pdnMgmtNextHopIp=pdnMgmtNextHopIp, pdnMgmtIpAdminStatus=pdnMgmtIpAdminStatus, pdnMgmtAtmInvArpTable=pdnMgmtAtmInvArpTable, pdnMgmtIpDefaultRouter=pdnMgmtIpDefaultRouter, pdnMgmtIpPortIndex=pdnMgmtIpPortIndex, pdnMgmtIpConfObjects=pdnMgmtIpConfObjects, pdnMgmtAtmIfIndex=pdnMgmtAtmIfIndex, pdnMgmtAtmInvArpEntry=pdnMgmtAtmInvArpEntry, pdnMgmtAtmVpi=pdnMgmtAtmVpi, pdnMgmtBootIfIndex=pdnMgmtBootIfIndex, pdnMgmtIpGroups=pdnMgmtIpGroups, pdnMgmtIpPortIfIndex=pdnMgmtIpPortIfIndex, pdnMgmtIpConfigGroup=pdnMgmtIpConfigGroup, pdnMgmtBootVpi=pdnMgmtBootVpi, pdnMgmtIpCompliances=pdnMgmtIpCompliances, pdnMgmtIpPhysAddress=pdnMgmtIpPhysAddress, pdnMgmtIpConfigCompliance=pdnMgmtIpConfigCompliance, pdnMgmtIpConfigMode=pdnMgmtIpConfigMode, pdnMgmtIpAddress=pdnMgmtIpAddress, PYSNMP_MODULE_ID=pdnMgmtIpMIB, pdnMgmtIpEthGateway=pdnMgmtIpEthGateway) |
'''Return a string obtained interlacing RECURSIVELY two input strings'''
__author__ = 'Nicola Moretto'
__license__ = "MIT"
def laceStringsRecur(s1, s2):
'''
Returns a new str with elements of s1 and s2 interlaced,
beginning with s1. If strings are not of same length,
then the extra elements should appear at the end.
:param s1: string
:param s2: string
:return: Interlaced strings
'''
def helpLaceStrings(s1, s2, out):
if s1 == '':
# If the first string is empty, append the second one to the output and STOP
return out + s2
if s2 == '':
# If the first string is empty, append the second one to the output and STOP
return out + s1
else:
# Append to the output the next character of each of the two strings
# and recursively interlace the remaining sub-strings
return helpLaceStrings(s1[1:], s2[1:], out + s1[0] + s2[0])
return helpLaceStrings(s1, s2, '') | """Return a string obtained interlacing RECURSIVELY two input strings"""
__author__ = 'Nicola Moretto'
__license__ = 'MIT'
def lace_strings_recur(s1, s2):
"""
Returns a new str with elements of s1 and s2 interlaced,
beginning with s1. If strings are not of same length,
then the extra elements should appear at the end.
:param s1: string
:param s2: string
:return: Interlaced strings
"""
def help_lace_strings(s1, s2, out):
if s1 == '':
return out + s2
if s2 == '':
return out + s1
else:
return help_lace_strings(s1[1:], s2[1:], out + s1[0] + s2[0])
return help_lace_strings(s1, s2, '') |
arr = [
[3109, 7337, 4317, 3411, 4921, 2505, 7337, 8847, 1297, 2807, 4317, 7337, 1901, 3713, 1297, 8545, 3109, 4619, 4619,
8545, 89, 3713, 7337, 2807, 89, 1599, 9753, 9451, 7337, 7337, 5223, 9753, 693, 3713, 4317, 9149, 89, 4317, 5525,
1901, 3713, 3713, 5525, 4619, 2807, 5223, 9149, 8847, 3109, 9753, 391, 5827, 6129, 6733, 6129, 6129, 2203, 9753,
7035, 2203, 4619, 2203, 9753, 3713, 3109, 5827, 3411, 9753, 1297, 2203, 1901, 8243, 1297, 1599, 2203, 89, 5223,
1297, 8847, 5525, 2203, 391, 9451, 2807, 2807, 5525, 4317, 995, 6733, 1901, 2807, 4317, 1599, 9753, 3411, 2807,
4921, 3411, 2203, 6129, 7941, 1901, 2807, 8545, 9149, 6431, 7941, 9753, 4619, 7035, 2203, 7035, 6129, 7941, 5223,
2807, 1599, 1599, 4619, 8847, 2203, 7035, 4317, 4317, 9149, 3109, 4015, 4619, 9451, 4317, 9149, 5525, 6129, 6129,
1901, 8847, 7941, 6129, 6733, 2203, 9451, 7639, 4619, 391, 8847, 8243, 8847, 391, 7035, 2203, 8545, 3411, 5827,
5223, 8545, 7941, 391, 7035, 1297, 6733, 5525, 8243, 6431, 5223, 6733, 2505, 995, 995, 1901, 6431, 5827, 3109,
2807, 89, 1297, 2203, 5223, 3713, 2203, 7941, 6431, 5525, 5223, 6129, 9149, 2807, 9451, 5525, 9451, 8243, 9149,
9149, 89, 89, 7035, 2505, 8545, 3713, 6733, 1297, 5827, 89, 2505, 3713, 4921, 3713, 6129, 2807, 7941, 693, 8545,
7035, 4317, 1901, 9149, 9451, 9149, 6129, 89, 1297, 7337, 3109, 6733, 8243, 3713, 8243, 1901, 2203, 5827, 3411,
6733, 3109, 7337, 7035, 3713, 4619, 693, 5827, 3411, 6129, 4619, 6733, 6431, 6431, 3713, 8545, 2505, 9753, 6733,
3411, 89, 693, 7639, 1297, 2203, 4317, 7035, 6733, 1901, 89, 8243, 2505, 4015, 2203, 391, 995, 7941, 5827, 4619,
4921, 1901, 2505, 6431, 1297, 4015, 1901, 7941, 2505, 4619, 7035, 693, 1599, 5525, 391, 7639, 4921, 4015, 5525,
8243, 693, 7035, 7337, 7639, 391, 4619, 89, 7639, 89, 1901, 5223, 8545, 6129, 5525, 2505, 1297, 3713, 1599, 5827,
5827, 5525, 693, 4015, 9753, 3109, 7941, 5525, 4619, 1901, 7035, 7035, 9149, 5223, 7941, 5525, 1599, 5525, 4317,
8545, 7035, 9753, 4015, 7035, 693, 8545, 4921, 8847, 9753, 5827, 995, 1599, 4317, 2505, 2505, 9451, 391, 8545,
8545, 391, 6733, 9149, 8243, 9753, 7639, 391, 2203, 391, 7337, 9451, 4619, 5827, 2505, 2505, 2505, 6129, 7941,
4619, 7941, 6129, 9451, 4015, 1901, 6733, 9451, 6431, 3713, 693, 8847, 5223, 7639, 9149, 7639, 8545, 5223, 995,
8847, 1599, 4921, 89, 5525, 3713, 8243, 8847, 4619, 8847, 7337, 4317, 3109, 1297, 9451, 4015, 9149, 5525, 693,
9451, 995, 5223, 9451, 391, 6431, 7941, 3109, 4619, 2505, 7639, 5827, 7337, 7035, 5525, 9451, 89, 8243, 995, 5223,
6431, 9753, 7941, 7639, 1901, 7337, 2505, 6431, 7941, 4921, 995, 9149, 4921, 391, 7035, 4317, 2807, 3713, 2807, 89,
5525, 6733, 4619, 4619, 995, 5223, 995, 1901, 6733, 8847, 1297, 9753, 89, 391, 6129, 8545, 4317, 4921, 4015, 8243,
4619, 1901, 5827, 7035, 7337, 995, 7941, 7941, 2203, 1901, 7035, 1297, 7941, 1297, 4317, 4619, 5223, 9149, 8847,
693, 7941, 3411, 3713, 1599, 6733, 6733, 7639, 9451, 1297, 4015, 4921, 89, 2807, 7035, 6431, 8243, 1901, 4015,
995],
[2203, 3109, 5223, 6733, 2807, 4317, 995, 6129, 2505, 4015, 9149, 2505, 5525, 6431, 7639, 4921, 5827, 4619, 4015,
7035, 4015, 4317, 4619, 1297, 7639, 693, 4921, 1297, 1599, 8847, 1901, 995, 4015, 3713, 1901, 9149, 8243, 8243,
2807, 3411, 2203, 7337, 5827, 5827, 8847, 5525, 4921, 6129, 1297, 2203, 9149, 6431, 8847, 7941, 7035, 9753, 7639,
1901, 5223, 1297, 3411, 2203, 693, 89, 4619, 6431, 9451, 89, 4619, 7337, 2203, 89, 4015, 4317, 391, 1599, 693,
5223, 4921, 1297, 7639, 7337, 8545, 4619, 4921, 4015, 391, 9753, 3411, 7337, 6733, 1599, 5827, 6431, 693, 9451,
9451, 4921, 3109, 1599, 4317, 2807, 1599, 89, 5223, 8847, 4619, 9451, 2505, 6431, 391, 1901, 3411, 1297, 4921, 89,
3411, 4015, 1901, 3713, 693, 89, 1297, 9451, 4317, 9451, 9753, 5223, 3109, 3109, 4317, 5827, 1297, 3411, 1901,
4317, 4317, 2203, 3411, 6129, 3411, 391, 4015, 7337, 89, 5525, 6129, 995, 8545, 1901, 4619, 4921, 9753, 9753, 7639,
9451, 4921, 995, 4015, 2505, 9753, 391, 6733, 6733, 5827, 4921, 4921, 391, 6431, 6129, 3713, 2203, 4921, 7337,
4015, 89, 5223, 2203, 6733, 5827, 9451, 7639, 2807, 7639, 4619, 5827, 8847, 9753, 7639, 3109, 995, 7639, 391, 8545,
693, 995, 1901, 9149, 9451, 391, 8243, 3411, 1599, 2203, 1901, 8243, 5525, 8847, 8545, 7941, 7941, 3109, 7639,
4619, 7337, 4317, 7639, 2807, 693, 3411, 4015, 8243, 7941, 693, 4015, 5223, 4015, 7337, 3713, 4619, 7035, 2807,
3411, 1901, 2807, 3109, 3109, 4015, 4619, 5525, 6733, 5827, 89, 6431, 6733, 6733, 1599, 3411, 391, 8243, 391, 6733,
2203, 1599, 7337, 693, 1297, 4921, 9149, 4015, 3109, 4619, 2203, 693, 9753, 5223, 6733, 7639, 6733, 6431, 89, 3713,
7941, 5525, 9451, 7337, 1297, 1297, 3109, 5223, 6431, 7941, 9753, 6129, 2505, 2807, 6733, 2203, 6431, 2807, 8243,
8545, 1901, 5827, 9451, 5525, 1901, 4015, 6431, 2203, 995, 3411, 5827, 7941, 4015, 6129, 4619, 7035, 9753, 2807,
5827, 6431, 6431, 2203, 6129, 9149, 1297, 4921, 4015, 5525, 1599, 7337, 2203, 7337, 8847, 8545, 7337, 5223, 3411,
2505, 9753, 2505, 6733, 6733, 9753, 4317, 1297, 3411, 4317, 89, 5827, 693, 4921, 4015, 7941, 5827, 9451, 7639,
7035, 391, 995, 3109, 6129, 6733, 2505, 8545, 89, 4619, 3411, 89, 1297, 1297, 89, 7337, 5223, 7639, 3713, 3713,
1901, 8545, 7035, 7035, 8847, 9753, 9149, 2505, 693, 5223, 2807, 4619, 1901, 391, 2203, 9149, 1599, 4921, 693,
7035, 3109, 1901, 693, 5827, 4921, 9149, 6129, 3713, 3411, 693, 1901, 995, 7941, 89, 6129, 1599, 5223, 6129, 6733,
5827, 7639, 4317, 1599, 8847, 3713, 9753, 2505, 5827, 3109, 5525, 2203, 995, 8243, 8545, 89, 1297, 6431, 7941,
2203, 7941, 7941, 5827, 1599, 4317, 6431, 7035, 6129, 3713, 9451, 693, 7035, 5223, 5827, 4921, 2203, 5223, 7941,
5525, 391, 1599, 6129, 4921, 7639, 7639, 3109, 5223, 4317, 7035, 4317, 391, 89, 6733, 6431, 4921, 3109, 7337, 9451,
2807, 5525, 3411, 1297, 9451, 2807, 89, 2807, 9451, 4619, 8847, 8545, 2807, 995, 2203, 9753, 7639, 4921, 693, 6431,
3713, 8243, 1599, 3411, 9753, 9753, 7941, 7337, 7639, 4317, 6431, 6733, 89, 6129, 6431, 4015, 8243],
[7941, 5525, 995, 4921, 2203, 2505, 9149, 9451, 6733, 5223, 7035, 4317, 1901, 1901, 6431, 3109, 7639, 4015, 7337,
4921, 2807, 7639, 6733, 3109, 6431, 9149, 5525, 7941, 8847, 5223, 3713, 391, 7337, 693, 9149, 8545, 8847, 5827,
4921, 6733, 7941, 4921, 8847, 6733, 4015, 6129, 7639, 9149, 5223, 9451, 8545, 693, 6733, 6129, 7035, 2807, 5223,
8545, 693, 4015, 6431, 2505, 4317, 2505, 2807, 8545, 1599, 9149, 7035, 3109, 995, 7639, 2203, 2807, 8243, 4317,
9753, 1297, 5223, 3713, 693, 5827, 89, 9149, 9149, 5223, 1901, 3109, 5223, 1901, 9149, 5827, 5525, 8243, 7035,
8847, 4015, 2505, 7639, 391, 3411, 4317, 2807, 995, 7035, 5827, 7035, 9451, 1297, 995, 2807, 4015, 2203, 6129,
7337, 391, 7035, 7941, 5223, 4317, 9451, 4921, 1297, 5525, 9451, 9451, 4921, 1901, 6733, 6129, 3713, 5223, 1297,
89, 8243, 3109, 4317, 5827, 5525, 6431, 4015, 995, 3411, 6431, 5827, 8545, 1297, 4015, 8243, 9451, 5223, 5223,
6129, 391, 2203, 7639, 5525, 8847, 6431, 1901, 9753, 7941, 3109, 7941, 6733, 2505, 5223, 5525, 9451, 8545, 7639,
2203, 6733, 391, 3713, 3109, 3713, 9753, 995, 9753, 3109, 1901, 1901, 8243, 5525, 5827, 7337, 4619, 3411, 391, 391,
3411, 1901, 4317, 1297, 9451, 8847, 89, 3109, 8545, 3713, 3411, 4921, 5525, 6733, 6431, 6431, 1297, 4619, 7035,
9451, 4317, 2505, 2505, 3713, 3411, 5827, 2203, 9451, 2807, 1599, 7941, 7941, 1901, 7941, 5525, 6129, 4015, 4317,
5223, 9149, 693, 693, 5827, 5525, 2505, 6733, 3109, 693, 4619, 391, 9149, 9451, 8243, 8243, 9753, 4015, 4015, 6733,
7035, 7337, 2807, 5223, 391, 5525, 6431, 9149, 4619, 6129, 391, 3411, 8243, 2807, 5223, 9451, 4015, 7941, 1901,
4317, 8545, 5223, 5223, 3109, 4317, 2505, 2807, 9753, 3411, 8243, 9753, 3411, 9149, 5223, 5223, 4317, 9753, 9149,
5223, 1297, 5827, 8545, 693, 9753, 4015, 391, 9149, 4921, 6733, 3109, 995, 1297, 7941, 2505, 1297, 4317, 7639,
6129, 2807, 1599, 1599, 2203, 8243, 2505, 3713, 5827, 6431, 2807, 4015, 4015, 89, 2203, 8847, 4015, 8545, 693,
2203, 8243, 2807, 5827, 4317, 1297, 7941, 995, 3713, 6733, 5827, 8243, 693, 3411, 8847, 391, 7941, 693, 5525, 3713,
9149, 1599, 8545, 5827, 9753, 6431, 8243, 9753, 5827, 4921, 8545, 6431, 7035, 7035, 4317, 7639, 8545, 3713, 5223,
8243, 9451, 3109, 6129, 9451, 9451, 9149, 8545, 2203, 8545, 9451, 4317, 8847, 5827, 9451, 7639, 4619, 7639, 5223,
8243, 995, 5525, 1599, 8847, 4921, 7941, 7035, 1297, 7035, 693, 7639, 4921, 2203, 9753, 1297, 4619, 2807, 1901,
8847, 2807, 4317, 8545, 7941, 4921, 89, 9451, 2505, 4317, 9753, 2505, 8847, 9149, 5827, 9451, 4921, 693, 5827,
6733, 1297, 1297, 6129, 9149, 6733, 4619, 2505, 7639, 6733, 5223, 3713, 2807, 4015, 7035, 9451, 7035, 7639, 4619,
391, 2203, 6431, 6129, 5223, 5827, 4619, 391, 4921, 5525, 4317, 1901, 4619, 4015, 9149, 8545, 7337, 9451, 4921,
4921, 6431, 391, 693, 4921, 9149, 2203, 3713, 8545, 2203, 2203, 5223, 4015, 8243, 9753, 7639, 6733, 3411, 3109,
4015, 5827, 7639, 4921, 693, 7035, 9451, 6733, 1901, 9149, 1297, 2203, 4317, 2505, 8847, 7639, 7639, 8545, 2505,
5827, 995, 2505, 1599, 6129],
[3109, 4619, 693, 1901, 7337, 8847, 4921, 8545, 7639, 3109, 2807, 7337, 4619, 1901, 8243, 995, 1901, 5827, 693,
7337, 9753, 1599, 5827, 1297, 6431, 5223, 9753, 7035, 9451, 4317, 4619, 2505, 5525, 8847, 693, 4619, 9149, 2807,
9753, 7639, 7035, 2505, 2807, 3109, 89, 2807, 693, 995, 6129, 2203, 1297, 7035, 1599, 4921, 7035, 89, 89, 8545,
2807, 4619, 1599, 391, 9451, 2807, 9753, 89, 6733, 1599, 4921, 8847, 3411, 1599, 6129, 8545, 6129, 6733, 1901,
7639, 5525, 6431, 2505, 1901, 5525, 3713, 7941, 2505, 8243, 5827, 8243, 9753, 4015, 8847, 693, 8243, 8545, 4317,
1599, 6431, 4015, 1901, 4619, 4619, 89, 6733, 5223, 9753, 995, 995, 4921, 7941, 7035, 9753, 8243, 8545, 4015, 1599,
391, 4619, 4619, 5827, 9451, 1901, 2807, 89, 8243, 89, 9753, 2807, 3109, 4317, 5827, 9753, 7337, 6733, 8545, 8243,
9753, 5525, 9149, 6733, 2505, 6431, 3411, 5525, 7337, 4921, 9451, 7337, 8847, 2203, 9753, 5525, 3109, 3109, 2505,
5827, 7941, 2203, 4317, 2203, 5223, 5827, 693, 7639, 8847, 7941, 3411, 8243, 7639, 995, 5525, 6129, 7639, 4921,
9753, 8545, 7337, 4619, 9753, 9149, 7941, 5827, 391, 391, 2505, 9451, 2505, 995, 6431, 3411, 2203, 8847, 4619,
4317, 89, 8243, 4921, 2505, 8847, 9753, 8243, 2807, 693, 2203, 7941, 693, 1599, 1599, 1901, 3411, 995, 2203, 3713,
6733, 2807, 7941, 5223, 9149, 4921, 4317, 4015, 2505, 6129, 8847, 2505, 9149, 6733, 6129, 6129, 391, 8545, 4921,
7941, 2807, 7035, 8243, 3109, 8545, 8243, 3411, 2505, 5525, 7639, 7035, 3713, 4921, 5223, 4619, 4317, 6129, 8243,
4317, 3411, 7337, 3411, 6431, 2807, 9149, 89, 5827, 9451, 9451, 9753, 2807, 1297, 1297, 1901, 5827, 4619, 4015, 89,
9451, 6733, 8243, 693, 8847, 4015, 7941, 2203, 5525, 3713, 89, 4619, 2505, 995, 2505, 6129, 4619, 4921, 7941, 3411,
5827, 5827, 89, 5827, 9451, 5827, 9753, 9753, 8847, 3109, 8847, 9753, 6733, 1901, 3411, 1297, 693, 5525, 7337, 391,
4921, 4619, 4619, 4015, 3109, 1901, 4317, 4015, 8847, 9451, 5827, 9451, 2505, 1901, 6129, 2203, 4317, 4015, 9753,
6431, 6129, 89, 8545, 7035, 4317, 7639, 995, 2505, 8847, 6129, 2203, 3109, 5827, 3411, 1297, 391, 4921, 693, 7035,
89, 1901, 7337, 693, 7639, 5827, 89, 8545, 5525, 5525, 7941, 4015, 4921, 693, 2505, 995, 4619, 3713, 1297, 4317,
8243, 5525, 6431, 89, 9753, 2203, 3109, 5827, 3713, 6733, 4317, 1297, 7639, 1297, 8243, 9149, 4921, 2505, 9451,
7639, 693, 8243, 391, 2505, 7035, 8243, 4921, 2505, 9451, 7941, 7337, 89, 1599, 4619, 9753, 5525, 7337, 7035, 995,
4619, 7337, 89, 1901, 5223, 4015, 7337, 3411, 995, 9149, 7941, 89, 7639, 8545, 1901, 2505, 3109, 3411, 2203, 8243,
1599, 4015, 7941, 7337, 89, 7639, 5525, 4619, 89, 995, 6129, 5827, 9451, 7639, 3411, 7941, 4015, 9451, 2203, 7035,
9149, 7639, 6129, 6129, 7337, 4619, 9753, 5827, 8847, 4619, 6431, 3713, 6129, 2505, 3411, 2807, 9753, 1901, 6733,
6431, 2807, 4317, 3411, 693, 8243, 1599, 7337, 3109, 995, 6733, 995, 2203, 2505, 89, 1297, 3713, 3713, 3109, 6129,
7941, 6129, 5525, 9149, 995, 1297, 2203, 6733, 6129, 3713, 1297, 6733, 7941, 693],
[9149, 7035, 3713, 7941, 7337, 5525, 4619, 693, 3411, 5827, 7035, 5223, 1901, 995, 9451, 5223, 1599, 995, 7337,
7941, 2807, 2807, 7035, 3411, 3109, 3411, 5525, 4921, 6129, 2203, 4015, 4317, 4921, 3109, 2505, 5827, 4921, 7941,
1901, 693, 3411, 1599, 2203, 5525, 5223, 4317, 7035, 1599, 7639, 8243, 6129, 7639, 693, 2807, 6431, 1599, 8545,
5827, 9753, 2203, 9451, 9753, 1297, 4619, 7941, 5223, 1901, 6733, 9753, 7639, 9149, 7337, 3411, 3713, 1901, 4317,
5525, 3411, 4015, 5223, 7639, 3411, 6129, 3109, 4015, 2505, 1297, 9149, 4619, 995, 4015, 3109, 1297, 5525, 6431,
4921, 693, 9451, 5525, 995, 9451, 6733, 4921, 6129, 89, 7035, 5223, 995, 7639, 9753, 6431, 1901, 391, 693, 6431,
5525, 1297, 391, 5525, 9451, 2203, 7337, 4015, 5525, 3713, 2505, 9149, 4921, 1599, 4619, 3411, 7941, 3109, 391,
9753, 6431, 89, 5827, 5525, 2203, 5525, 7337, 7639, 7639, 6431, 7035, 4619, 3109, 693, 2203, 7035, 6431, 5827,
4619, 4317, 4619, 4317, 995, 9753, 7337, 1901, 1599, 7941, 7035, 6733, 2807, 7337, 1297, 9451, 5525, 9149, 7337,
4317, 6129, 9451, 7337, 6733, 995, 8847, 1297, 7941, 9149, 391, 2807, 9451, 4921, 2807, 2505, 2807, 4619, 1297,
9451, 89, 8847, 1901, 4317, 9149, 2807, 9149, 5525, 4317, 6129, 9451, 7639, 9451, 2203, 6733, 6733, 6733, 9753,
7035, 995, 5525, 7639, 8847, 5827, 5827, 995, 4015, 7035, 4921, 693, 8243, 1297, 1901, 7035, 4921, 9149, 9149,
3411, 7035, 4921, 8847, 2505, 693, 2203, 7639, 9451, 1599, 5827, 5525, 5223, 2203, 8847, 8243, 8847, 2505, 6431,
5525, 1599, 2203, 8545, 3411, 5525, 9149, 5525, 2203, 8847, 8545, 5223, 5525, 5223, 3109, 2203, 3109, 3411, 8847,
1599, 6129, 9149, 2807, 391, 89, 7035, 7941, 2203, 6431, 5827, 8243, 6431, 4015, 9451, 7035, 2505, 1901, 7035,
8847, 7941, 6431, 8243, 5223, 5827, 3411, 8243, 4015, 89, 8243, 4921, 4921, 7035, 8545, 1901, 5525, 9753, 9149,
6733, 5223, 8545, 4015, 2505, 391, 4015, 5827, 9753, 391, 4317, 5827, 3109, 3713, 9149, 995, 7337, 995, 4619, 2505,
7035, 8847, 9451, 7639, 5223, 5827, 4015, 4015, 2505, 2807, 4921, 9149, 4317, 4921, 3411, 391, 8847, 4317, 4619,
4317, 6431, 8545, 3713, 3713, 2807, 6431, 5525, 4317, 1599, 1297, 9753, 7639, 1901, 7941, 6431, 1599, 9149, 1901,
5827, 6129, 4317, 6129, 4619, 6431, 391, 4015, 2807, 3109, 3713, 9753, 1599, 1599, 9149, 9451, 7337, 2203, 89,
1599, 3109, 3411, 7941, 9451, 4619, 7035, 6431, 4619, 1599, 4921, 8847, 3411, 995, 5525, 4015, 4317, 4317, 8243,
7639, 4619, 7035, 3109, 8847, 6431, 1599, 9753, 7941, 8545, 995, 1901, 6129, 3713, 3713, 9451, 4015, 3411, 8847,
89, 9149, 6733, 391, 9451, 7941, 4015, 4317, 9753, 1901, 6431, 2807, 7337, 4317, 7337, 391, 4619, 8243, 8847, 6733,
1901, 6733, 1599, 3109, 3411, 1901, 391, 2807, 4317, 1901, 6431, 9451, 9451, 7639, 7337, 6431, 5525, 4921, 1599,
4317, 5525, 2807, 5827, 3109, 4921, 8847, 7639, 9451, 1297, 2807, 693, 7337, 5827, 8847, 7941, 7941, 2203, 7941,
2505, 6129, 995, 3411, 5827, 89, 4619, 1901, 6733, 7035, 7941, 6431, 4317, 8545, 7035, 6431, 6431, 7941, 6129,
9451, 2203, 9149, 5827, 8847],
[7639, 8545, 7941, 2505, 3713, 2203, 2505, 4317, 4015, 1297, 6431, 391, 5827, 9451, 8847, 7941, 391, 7639, 8847,
3411, 8545, 693, 8545, 8545, 4619, 5223, 2505, 2505, 1901, 9149, 693, 89, 3411, 7941, 3713, 3411, 391, 7941, 1901,
3411, 5827, 4015, 2505, 6129, 89, 3713, 3109, 89, 7035, 1599, 4619, 5525, 693, 5827, 6733, 3713, 3411, 2505, 6431,
8847, 4015, 4619, 2807, 4921, 2203, 8847, 8847, 9149, 3411, 4619, 6733, 391, 6129, 8243, 2203, 1901, 2505, 89,
5525, 6431, 4317, 391, 4317, 4015, 3411, 5827, 1599, 2505, 7337, 7035, 1599, 4317, 5827, 1901, 8545, 9149, 1599,
6431, 7035, 4317, 2505, 7337, 2807, 1599, 693, 5827, 9451, 5827, 9753, 7035, 4317, 1901, 693, 2203, 6129, 5827,
7337, 8545, 6733, 995, 1901, 8847, 6129, 8545, 693, 9753, 2505, 7941, 6733, 3713, 6129, 693, 693, 693, 5525, 5223,
5525, 9753, 4619, 693, 2203, 9149, 8847, 9149, 4317, 8545, 7639, 9753, 89, 3109, 7941, 7941, 995, 4619, 2203, 8847,
5525, 3411, 2807, 6733, 2505, 8243, 995, 1297, 7035, 4015, 9451, 2203, 391, 6733, 1297, 8243, 995, 7337, 4015,
4015, 3411, 5223, 5525, 7941, 3713, 7035, 1599, 6733, 7639, 3713, 9753, 8545, 3411, 3109, 995, 9451, 8545, 4317,
9149, 3411, 8545, 1599, 693, 9149, 7639, 5525, 4619, 693, 693, 6129, 8545, 8545, 693, 7035, 3109, 995, 1297, 7337,
2505, 7337, 8545, 3411, 7337, 7035, 2807, 4619, 4619, 5827, 3713, 7639, 9451, 6733, 3713, 4015, 7639, 7639, 2203,
693, 4317, 3109, 1901, 7941, 6431, 3411, 6129, 2505, 7035, 3713, 9451, 4619, 6129, 6431, 6431, 2203, 4619, 4015,
7337, 8243, 7639, 9451, 995, 995, 6733, 8243, 6431, 8243, 4921, 4317, 6733, 693, 1297, 6431, 4317, 4921, 5223, 693,
9149, 995, 2203, 8243, 6129, 8545, 7035, 8847, 7941, 693, 1599, 4317, 9451, 9149, 7639, 6733, 9149, 9149, 5827,
1599, 5525, 3411, 6733, 6733, 391, 3109, 8243, 1901, 7941, 9753, 5223, 2203, 3411, 5223, 5827, 6129, 1599, 2505,
995, 4619, 391, 8545, 2505, 7639, 8243, 8847, 6431, 7941, 89, 5525, 3411, 9149, 1297, 9149, 89, 693, 2505, 2505,
7337, 8243, 4619, 3109, 4015, 6431, 2807, 6431, 6733, 5827, 6431, 7035, 391, 391, 8243, 2807, 1599, 89, 7639, 7639,
3109, 89, 995, 7941, 7639, 4921, 5525, 693, 5525, 3411, 5827, 9149, 8243, 7035, 7035, 995, 995, 9753, 1297, 7941,
5223, 4619, 89, 2807, 995, 9753, 9753, 3411, 9753, 4921, 4619, 89, 9149, 2203, 9149, 6431, 7941, 6431, 1297, 5525,
5525, 4619, 3109, 1901, 5827, 391, 1599, 3411, 4619, 8243, 1901, 3713, 5525, 8545, 9149, 4317, 7639, 4317, 9753,
3713, 7337, 2203, 2807, 1599, 8243, 7941, 7337, 8847, 5827, 8243, 1901, 1901, 3109, 4317, 1297, 1901, 1599, 2203,
2807, 4015, 7035, 7337, 8545, 391, 7035, 6431, 5525, 2203, 9149, 2203, 3411, 9753, 3713, 2807, 1599, 6129, 8243,
8847, 4015, 3109, 5525, 3713, 3411, 6431, 4921, 391, 5223, 4921, 391, 8243, 7941, 9149, 9149, 6733, 7337, 3109,
7639, 8243, 391, 4317, 5223, 9451, 3411, 1599, 1599, 5525, 2505, 7941, 6431, 5525, 7941, 1297, 6733, 1901, 6129,
6431, 1599, 3411, 3411, 2807, 8243, 2203, 3411, 6431, 5525, 1901, 7035, 7035, 2505, 4921, 8243, 391],
[3411, 4317, 7941, 7035, 5827, 7941, 1901, 391, 6431, 391, 9149, 8545, 6733, 7337, 8243, 5827, 8243, 89, 8847, 8243,
6733, 5827, 995, 4015, 8243, 7941, 4921, 3713, 4015, 8243, 5827, 4015, 693, 9753, 9451, 9451, 9753, 9149, 8847,
2203, 8545, 8545, 6129, 9149, 7337, 1901, 7035, 6129, 5223, 9451, 5827, 9149, 693, 4921, 9149, 995, 693, 693, 5827,
1297, 8243, 5525, 2807, 1599, 7941, 4015, 7941, 8847, 2807, 5525, 995, 6431, 4921, 4317, 5525, 9451, 7941, 6733,
9149, 8243, 89, 3411, 6431, 8545, 9149, 2807, 4015, 6431, 4921, 8243, 1901, 89, 391, 7941, 8243, 2807, 3109, 3411,
2807, 1901, 9149, 6733, 5827, 8847, 3713, 391, 693, 8545, 7035, 4015, 4921, 4921, 693, 1599, 1901, 6431, 5525,
7941, 1599, 5827, 8847, 6431, 693, 89, 5827, 6129, 9149, 9451, 995, 7035, 6431, 6129, 4015, 7337, 693, 6733, 7035,
9753, 7639, 3109, 6129, 2807, 391, 9149, 3713, 2505, 89, 3411, 995, 6129, 89, 8847, 5525, 5827, 6129, 693, 3713,
2807, 9451, 693, 9149, 3411, 89, 8847, 391, 8243, 8847, 8847, 4317, 693, 6733, 9149, 693, 391, 6733, 1297, 391,
995, 1599, 4619, 7337, 6733, 9149, 89, 1297, 7035, 693, 1599, 391, 4317, 3713, 1901, 89, 1901, 5827, 4921, 7035,
5525, 2807, 2807, 4015, 4921, 3109, 5827, 9451, 8847, 5525, 693, 1297, 8243, 2505, 1297, 391, 3109, 89, 9753, 1599,
995, 8847, 6733, 2505, 2807, 8243, 9753, 4619, 4317, 7337, 4015, 5525, 7337, 7941, 9149, 9451, 9149, 995, 7941,
8847, 391, 7337, 1297, 89, 3109, 7337, 7639, 4619, 4317, 6733, 3713, 7941, 7941, 6129, 7941, 9149, 89, 995, 9753,
9149, 7035, 9149, 1901, 5223, 7639, 8545, 9753, 8243, 3411, 693, 89, 2203, 9451, 6733, 693, 5525, 4015, 4619, 5223,
4317, 2203, 7941, 1901, 5525, 3411, 9451, 8243, 995, 9753, 9149, 9753, 9149, 8243, 2807, 8545, 5827, 1297, 7639,
5525, 3411, 995, 4921, 391, 6733, 5525, 2505, 7035, 5223, 7639, 391, 1599, 4015, 4921, 4015, 8545, 7035, 7035,
3109, 9753, 8847, 4921, 2203, 3713, 5827, 9451, 3109, 8545, 9451, 3109, 3109, 4317, 3411, 995, 995, 7337, 5525,
7639, 5525, 7035, 693, 3713, 9149, 3713, 3109, 8243, 8847, 7337, 8847, 4317, 4619, 2505, 391, 7035, 4317, 2505,
3109, 3109, 4317, 6129, 7639, 2203, 8243, 6129, 3411, 89, 4015, 2203, 1297, 8545, 3713, 8545, 9149, 6129, 4317,
995, 5827, 5223, 8243, 6431, 7337, 9149, 9451, 3713, 5525, 2505, 9149, 2505, 4317, 5525, 3411, 995, 3713, 9753,
8545, 995, 4015, 693, 995, 4015, 6733, 7337, 995, 7035, 3713, 1599, 8243, 6431, 5525, 7337, 995, 4015, 8847, 2505,
8243, 5223, 3713, 391, 2203, 8847, 3109, 8847, 1599, 693, 4619, 7941, 2807, 3109, 5525, 4015, 995, 7035, 6431, 693,
2505, 5827, 7941, 6129, 4015, 7639, 6733, 7941, 4015, 89, 5827, 5827, 4619, 4619, 1599, 995, 6129, 4317, 7035,
5223, 2203, 3713, 9753, 7941, 3109, 2807, 7035, 1599, 8243, 8847, 7337, 4015, 3713, 4317, 2505, 7337, 7941, 4921,
3713, 6431, 693, 4015, 6129, 5525, 7035, 3411, 6431, 6129, 391, 4317, 5525, 8847, 5223, 9753, 693, 6733, 995, 9451,
9753, 7639, 3411, 995, 4921, 3713, 4015, 4619, 1297, 1901, 2203, 3109, 5223, 995],
[995, 7941, 3411, 8243, 4317, 7941, 995, 7639, 2203, 5525, 6129, 6129, 1599, 3411, 1599, 5827, 4015, 1599, 2807,
2203, 995, 1901, 89, 2807, 2505, 2807, 9451, 2203, 693, 693, 8847, 4015, 3411, 7035, 2505, 4619, 1599, 5827, 6733,
4921, 7337, 693, 5827, 6733, 4015, 7337, 4317, 3411, 8243, 3713, 4619, 7941, 2505, 693, 391, 3109, 9149, 2203,
1599, 7035, 3411, 9149, 7941, 391, 4921, 89, 6733, 3713, 5223, 5525, 391, 9451, 7337, 6733, 4921, 4317, 89, 2203,
2203, 3109, 2505, 4619, 391, 7035, 9149, 5525, 9149, 2505, 391, 7639, 3411, 9149, 3411, 9149, 2203, 8847, 995,
4015, 6733, 693, 9451, 2505, 6129, 9451, 5223, 7941, 9753, 3713, 8243, 3109, 5827, 2807, 693, 7337, 391, 4015,
7941, 89, 8847, 5525, 391, 7941, 3411, 693, 6733, 1901, 2807, 7639, 693, 693, 4921, 7337, 8545, 1297, 89, 7941,
4619, 9451, 391, 2203, 8545, 6733, 5827, 9451, 9451, 7639, 1901, 9451, 8847, 3713, 8243, 9451, 693, 1901, 7035,
1297, 6431, 9753, 4619, 3411, 7337, 5525, 693, 7337, 1297, 8847, 4317, 5525, 8847, 4921, 4317, 4317, 9451, 391,
693, 8243, 5223, 8847, 3713, 8243, 5827, 8545, 693, 5827, 995, 3713, 8545, 995, 5223, 5223, 4317, 5223, 7639, 1901,
3713, 3713, 9753, 4015, 5223, 693, 7337, 7337, 7639, 2203, 6431, 4619, 7639, 8545, 4015, 4317, 4921, 89, 7639,
3109, 4921, 4317, 5223, 8545, 5223, 5827, 5827, 6733, 89, 4015, 7941, 2505, 4619, 1901, 7941, 8545, 391, 8847,
6431, 3713, 3713, 7035, 2807, 1901, 9149, 9451, 6733, 4619, 9753, 7941, 995, 7941, 8545, 5525, 7639, 2807, 1599,
6129, 4921, 2505, 4619, 7035, 89, 693, 1599, 2505, 2203, 2203, 4317, 2807, 2807, 3411, 5827, 1297, 5525, 2505,
1901, 5525, 2505, 1599, 3713, 5827, 4015, 8545, 7337, 9451, 8545, 4317, 8847, 8545, 7337, 1599, 8243, 7639, 6431,
8243, 5827, 8847, 9451, 4921, 5525, 1297, 391, 8545, 7337, 3411, 6733, 1297, 693, 4921, 8545, 4921, 8545, 6733,
7941, 89, 89, 7337, 7941, 9753, 9451, 7337, 5827, 6431, 3109, 4619, 4317, 693, 391, 89, 5827, 4015, 4619, 4317,
1599, 5525, 1599, 9149, 1297, 7941, 2203, 7035, 6733, 8847, 4921, 8545, 2505, 7035, 1599, 3713, 5525, 2203, 9149,
2203, 3713, 2505, 7941, 4921, 8847, 6431, 995, 3713, 8243, 3411, 5525, 7035, 1297, 7337, 89, 1901, 1901, 9753,
9149, 3109, 995, 6129, 6431, 391, 6431, 8545, 6431, 995, 9149, 8847, 89, 1297, 4921, 7639, 3109, 8545, 4619, 995,
4921, 1599, 4015, 7941, 8847, 7337, 3109, 5223, 7639, 2203, 8243, 5223, 9149, 6431, 2505, 3713, 8545, 7337, 391,
5223, 2505, 89, 3713, 4921, 4317, 3713, 4317, 89, 693, 9149, 3713, 2807, 6129, 391, 995, 995, 8545, 4015, 2203,
5525, 8243, 9451, 2505, 4619, 8545, 4619, 693, 3411, 1901, 7035, 8847, 3411, 995, 1599, 9753, 5827, 4619, 7639,
9753, 3713, 391, 391, 3713, 1297, 3411, 4619, 9753, 1297, 7035, 9753, 2505, 7639, 995, 7035, 4317, 4015, 9451,
4317, 4619, 5223, 9753, 8545, 7035, 2505, 89, 2505, 4921, 6733, 2807, 7035, 89, 2505, 6129, 693, 6733, 8847, 3109,
2807, 89, 6129, 1901, 1297, 8243, 6129, 8545, 995, 693, 9149, 89, 6431, 5827, 3411, 1297, 9149, 8545, 3713],
[6733, 5827, 9149, 3109, 4015, 2203, 9753, 1599, 9753, 8545, 5223, 9149, 5827, 693, 8545, 7337, 1297, 89, 3411,
9149, 693, 9753, 2807, 7639, 4317, 9149, 6733, 7035, 7337, 4619, 3411, 8847, 1901, 9753, 6431, 7035, 4619, 3109,
8847, 8545, 3109, 693, 2505, 4619, 4317, 995, 7639, 9451, 8847, 8847, 7035, 3411, 5525, 7941, 8243, 5827, 89, 7639,
6431, 3109, 9451, 4317, 7639, 391, 3109, 995, 391, 8847, 9149, 6431, 1599, 5525, 9753, 4921, 5223, 4317, 5525,
9149, 3411, 7639, 2807, 1599, 5827, 3411, 995, 9149, 2807, 4619, 4921, 4619, 9753, 7639, 6733, 4921, 2807, 3713,
3411, 3713, 7035, 5525, 995, 1599, 5223, 89, 6733, 3713, 7639, 3109, 1599, 89, 995, 4015, 2203, 6431, 5525, 5827,
2505, 9451, 2203, 693, 2807, 5223, 8847, 9149, 5525, 9451, 6129, 8545, 7941, 8847, 7639, 9149, 1901, 7941, 7941,
5525, 3109, 5827, 8545, 9753, 7639, 1901, 9753, 9149, 5827, 4619, 1297, 3109, 2505, 4317, 3411, 89, 5525, 1297,
995, 89, 8243, 7035, 4921, 693, 3109, 1901, 4317, 6431, 5223, 4619, 2807, 1901, 2807, 995, 9753, 4015, 995, 8243,
7035, 6431, 9149, 995, 1297, 8847, 2505, 5827, 6129, 2203, 7035, 3411, 995, 4921, 8243, 8545, 7035, 391, 6733,
4317, 5525, 1599, 5223, 5827, 1599, 7639, 5827, 8243, 2505, 6733, 6129, 4921, 8243, 89, 7639, 1901, 693, 5827,
8243, 1901, 6733, 9149, 7639, 8243, 3109, 5223, 1901, 9753, 5223, 8545, 1599, 8545, 8243, 6733, 89, 7639, 6431,
391, 4619, 5525, 1297, 5525, 6733, 3411, 2203, 8243, 4317, 4921, 5223, 3411, 4619, 1599, 1297, 1599, 3411, 3109,
1599, 3411, 7035, 5827, 4317, 8545, 4317, 9753, 5827, 4619, 4015, 9753, 693, 7337, 4921, 9451, 8545, 995, 5827,
1901, 9753, 4015, 3411, 693, 4921, 3411, 9451, 2203, 7337, 6129, 693, 2505, 3411, 6129, 6733, 4015, 4921, 5525,
9753, 8545, 7035, 3713, 4317, 7941, 9451, 1297, 4015, 2203, 8545, 8847, 2203, 7337, 9753, 4619, 3411, 5827, 8847,
8243, 2807, 6129, 89, 4921, 89, 7639, 5223, 89, 4921, 7035, 7337, 391, 89, 693, 391, 4317, 8545, 4015, 6431, 4921,
3109, 7639, 9149, 9149, 7941, 8847, 4921, 4015, 995, 4317, 9451, 8243, 995, 4015, 4921, 89, 3109, 995, 693, 693,
693, 693, 6733, 5827, 4921, 1901, 391, 6129, 9753, 2807, 391, 1901, 3109, 8243, 1297, 6431, 1599, 5827, 5223, 1901,
2203, 693, 2203, 3109, 4619, 693, 1901, 8243, 7639, 9451, 2203, 4619, 5223, 1599, 8243, 8545, 693, 995, 3109, 89,
9451, 693, 1901, 6129, 1901, 9149, 4015, 3411, 1901, 2203, 8243, 89, 6129, 5223, 1599, 3109, 89, 9149, 8243, 6431,
5525, 9451, 1297, 8847, 7639, 7337, 6431, 9451, 7035, 1297, 9753, 4921, 8847, 391, 2505, 7639, 4317, 7337, 6431,
8847, 391, 89, 8545, 4317, 8847, 693, 6733, 3411, 4619, 4015, 7337, 89, 7337, 995, 2203, 8847, 5223, 5223, 1901,
1901, 6431, 4921, 9451, 4619, 8847, 5525, 2505, 5827, 8243, 8847, 2203, 89, 8545, 6129, 8243, 4317, 6733, 6733,
5223, 3109, 2505, 7639, 8243, 7941, 4317, 1901, 6129, 4921, 4619, 4015, 6733, 7639, 2203, 7035, 3713, 6431, 8243,
995, 3411, 4317, 3109, 89, 7941, 4015, 4317, 9149, 3713, 7035, 6733, 4015, 5827, 5223, 4317, 5223],
[693, 4015, 7639, 7941, 391, 391, 9753, 9753, 5827, 4921, 4015, 9451, 7035, 5223, 8545, 4619, 1901, 2203, 7035,
1297, 5525, 3713, 2203, 9753, 2807, 89, 2807, 693, 1297, 2505, 5827, 1901, 9451, 4921, 4015, 4015, 995, 7639, 4015,
7941, 7337, 5525, 995, 7941, 8847, 1901, 391, 5223, 6431, 7337, 6431, 6431, 6431, 2203, 6129, 9753, 1297, 9149,
6733, 8847, 6431, 7337, 6129, 7639, 3109, 5827, 7941, 2203, 2203, 5525, 6129, 3713, 7941, 7035, 9149, 1599, 3109,
5525, 5525, 4015, 391, 6733, 8545, 4619, 9753, 4015, 6431, 8243, 995, 7337, 9753, 7941, 3109, 4921, 8545, 5223,
3713, 2203, 9451, 3109, 5827, 5827, 9753, 8243, 7035, 2807, 2807, 8243, 6431, 1901, 9753, 995, 4619, 5827, 4619,
5525, 6733, 8847, 5827, 9451, 4921, 7337, 2505, 391, 3713, 7337, 7035, 7035, 995, 1599, 995, 7639, 1297, 1599,
5223, 9149, 5827, 6431, 1599, 4015, 6129, 1599, 89, 1297, 7337, 9451, 7941, 995, 5827, 4921, 4619, 9753, 8243,
8847, 3411, 89, 4317, 1297, 391, 8243, 995, 995, 2203, 3411, 9753, 2203, 4317, 7639, 693, 7639, 8847, 4921, 391,
3411, 9149, 693, 9451, 3109, 9149, 6431, 1599, 3109, 8243, 4317, 3713, 2807, 3713, 3713, 4317, 9753, 7337, 2505,
6129, 9149, 1297, 6733, 7337, 8243, 7035, 7337, 89, 4317, 995, 9149, 4921, 3411, 5223, 391, 1599, 7035, 5525, 8545,
391, 8243, 4619, 7337, 391, 3109, 3411, 5223, 6431, 9753, 89, 995, 5223, 8243, 6733, 5827, 5525, 1297, 8243, 9753,
7035, 391, 5223, 89, 6431, 8545, 391, 9753, 3109, 4619, 4921, 7639, 7639, 9149, 2807, 4015, 4015, 4921, 89, 3411,
2807, 9149, 7941, 6733, 3713, 4619, 9149, 8243, 1297, 8243, 6431, 8243, 8545, 1599, 9753, 5525, 2203, 4619, 2505,
6733, 9149, 1901, 9451, 6733, 2505, 5223, 89, 8847, 7337, 6129, 1297, 3411, 9451, 3411, 2505, 7035, 9753, 3411,
5223, 6129, 391, 3411, 3713, 6129, 4619, 9149, 2807, 4015, 2203, 7035, 5223, 4921, 4015, 5827, 8243, 3411, 1901,
3109, 5223, 7337, 5525, 4619, 9451, 391, 995, 7337, 5525, 7035, 2505, 4015, 6733, 3411, 1297, 3411, 3109, 7941,
5525, 9149, 9753, 391, 1901, 6431, 3713, 8243, 3713, 693, 6733, 9451, 9451, 5525, 1297, 4317, 8545, 4317, 5827,
7035, 6431, 89, 8243, 693, 7639, 7035, 693, 6733, 89, 6733, 995, 2505, 4619, 8847, 4015, 3713, 9451, 2807, 8847,
7941, 391, 2203, 391, 9753, 8545, 5827, 9451, 8847, 9451, 7337, 4619, 8545, 8847, 1297, 8243, 1599, 1599, 89, 5223,
4015, 8243, 7941, 5827, 9149, 89, 995, 5827, 1297, 2807, 3411, 1297, 8545, 9753, 5223, 5223, 7337, 6129, 995, 4921,
6431, 7337, 5525, 2505, 2505, 6129, 9753, 8243, 1901, 3411, 3411, 995, 4619, 89, 7337, 995, 3411, 5827, 391, 8545,
9753, 6431, 6733, 89, 5223, 5827, 1297, 8545, 4619, 4015, 89, 89, 8847, 1297, 693, 4921, 9149, 5525, 2807, 2807,
6733, 4619, 693, 693, 9753, 1901, 391, 9149, 6733, 3411, 3411, 2807, 4619, 6129, 2505, 4015, 7941, 3109, 7941,
5827, 1297, 6431, 7639, 1901, 2505, 3109, 6431, 2505, 693, 2505, 693, 3109, 5223, 9753, 3109, 4015, 391, 9149,
9753, 6431, 7639, 391, 3411, 5525, 1599, 6733, 1297, 5827, 3109, 6129, 4015, 3411, 2203, 4015, 391],
[9753, 89, 6129, 1599, 995, 391, 2807, 8545, 3411, 2203, 8847, 7337, 4317, 2505, 1599, 8545, 7337, 7639, 89, 3411,
3713, 5223, 8847, 9149, 1297, 8847, 2807, 4921, 5827, 5525, 3109, 4317, 8545, 4619, 7035, 391, 8847, 1901, 6129,
3109, 693, 4921, 4619, 391, 391, 6129, 4317, 6733, 7337, 3411, 6431, 3109, 995, 2807, 6733, 4317, 693, 995, 5827,
7639, 8243, 8243, 8243, 995, 3411, 9451, 6129, 693, 1297, 7941, 4619, 4317, 6129, 2505, 1297, 1599, 7639, 7337,
7337, 8545, 2505, 693, 4921, 9149, 8545, 9451, 6129, 6129, 4317, 2807, 89, 3713, 4317, 4921, 8243, 3713, 4619,
2807, 3109, 1297, 8545, 9451, 5827, 8545, 391, 1297, 4619, 89, 7035, 693, 5223, 8847, 1901, 7941, 1901, 7035, 8243,
1599, 1599, 7639, 5525, 6129, 9149, 6733, 1297, 1599, 4015, 6129, 6733, 2807, 3411, 9149, 2807, 2203, 5525, 9451,
995, 7337, 89, 4015, 6431, 9149, 5223, 9149, 391, 89, 7035, 89, 2203, 2203, 693, 693, 4015, 4619, 7337, 8545, 995,
8847, 3411, 995, 7941, 7941, 6733, 4619, 3713, 391, 9149, 7639, 4317, 6733, 9753, 5827, 5827, 89, 7941, 8847, 2807,
2203, 9451, 7035, 2807, 9451, 6431, 3411, 391, 5827, 4317, 2505, 2203, 9753, 8545, 8847, 8243, 9451, 7337, 3713,
1901, 1599, 8243, 3411, 2505, 8847, 8243, 693, 2505, 7035, 89, 9753, 7035, 4317, 5827, 3713, 2505, 5827, 995, 3411,
4921, 8847, 6129, 2505, 4015, 1297, 7941, 6733, 5525, 6431, 4015, 2505, 1297, 693, 4015, 9149, 9149, 4921, 6733,
8847, 9753, 4619, 8847, 6129, 2807, 1901, 391, 693, 9451, 5827, 8243, 391, 4619, 391, 7337, 9451, 5223, 995, 9451,
7639, 7337, 6733, 4619, 693, 5525, 5827, 2505, 4317, 1599, 9451, 995, 2807, 1901, 3109, 4015, 2505, 1297, 7337,
1297, 9451, 89, 7941, 6129, 7035, 5525, 9753, 89, 5223, 7337, 2807, 1901, 391, 7035, 693, 3109, 6733, 8847, 1297,
7035, 8243, 4317, 8847, 3713, 1599, 3109, 3109, 5827, 1297, 1297, 9753, 3109, 7941, 1297, 1297, 9149, 2807, 7639,
6733, 7337, 9149, 1599, 9149, 3411, 3713, 8545, 8545, 5223, 7639, 9451, 3411, 1901, 2203, 3411, 8243, 1901, 3713,
3713, 3713, 995, 391, 7941, 7639, 6733, 9753, 4317, 5827, 8243, 391, 8243, 6733, 9753, 3713, 1599, 9451, 9451,
3411, 2203, 7035, 9451, 3411, 6733, 2505, 4015, 3713, 9753, 2505, 89, 7941, 693, 5525, 4015, 6431, 391, 6431, 8243,
6733, 2807, 8243, 4015, 1901, 3109, 3109, 1297, 1599, 4317, 7035, 1599, 5525, 693, 4015, 5525, 8243, 2203, 7035,
7337, 7941, 693, 2203, 5525, 6733, 7337, 89, 4921, 8847, 4015, 1599, 995, 1901, 7941, 8243, 4015, 5827, 2505, 8243,
4015, 391, 2203, 9753, 7941, 995, 9451, 1599, 3713, 1297, 5827, 4015, 3411, 6129, 391, 8545, 2807, 4921, 3411,
6129, 1599, 5223, 5827, 2807, 9451, 8847, 8847, 7639, 1901, 6431, 1599, 5827, 7639, 2807, 4619, 4921, 5525, 1297,
7337, 8847, 1599, 7337, 4619, 9451, 9753, 2505, 3109, 3109, 6431, 3109, 4317, 4015, 5525, 9149, 3713, 8243, 3713,
995, 7035, 8545, 2203, 9753, 693, 7337, 7035, 1297, 3411, 8847, 5525, 693, 8243, 5223, 4619, 9753, 9753, 6733,
3713, 4317, 4921, 4317, 8243, 9753, 1297, 4619, 5525, 995, 4921, 1297, 2505, 1901, 391, 6431],
[4317, 8545, 693, 4921, 7035, 4317, 9451, 9753, 391, 391, 9451, 8847, 6733, 5223, 5525, 1599, 89, 7337, 4921, 5525,
693, 693, 5525, 6431, 3713, 995, 7639, 1901, 1599, 4619, 3713, 5827, 6129, 9451, 6431, 391, 6129, 7337, 9149, 6733,
693, 7337, 5223, 7337, 8545, 7035, 6733, 1297, 9753, 1599, 2807, 8847, 8243, 2807, 8545, 7337, 9149, 7035, 1901,
3109, 8545, 9753, 7639, 2505, 3411, 8847, 1297, 1901, 3109, 3411, 89, 1599, 7941, 4921, 2807, 6129, 8847, 4619,
5525, 8545, 89, 7941, 1297, 7035, 4015, 2807, 2807, 4921, 2505, 1297, 391, 5827, 4015, 9149, 7337, 6733, 89, 6129,
3411, 391, 5827, 6129, 8545, 7639, 4317, 2505, 8243, 4015, 6733, 1297, 2807, 1901, 3109, 9149, 2807, 9753, 8847,
1599, 6733, 9753, 2505, 1901, 9451, 995, 5827, 7035, 3713, 2505, 7035, 2203, 391, 2203, 9753, 7035, 5223, 995, 995,
1297, 9753, 6129, 6733, 9451, 7337, 8243, 995, 1901, 3713, 6129, 9149, 4921, 2505, 3411, 5223, 89, 8847, 7941,
2203, 9451, 4921, 1901, 4015, 9149, 4921, 9753, 7035, 1599, 9451, 8545, 9149, 7941, 4619, 7035, 9149, 3109, 1901,
9149, 8847, 5223, 7035, 2203, 2807, 693, 9149, 89, 8847, 7941, 4317, 4015, 995, 5223, 4921, 3411, 7337, 4619, 995,
3713, 7941, 3109, 391, 6733, 1599, 2203, 1901, 89, 4015, 5223, 1599, 1901, 3411, 8545, 1599, 1297, 693, 2203, 3713,
9753, 4015, 9451, 693, 8243, 3109, 3109, 9451, 4317, 9451, 4921, 9753, 2505, 9451, 8847, 4317, 7639, 2203, 6129,
5223, 1297, 9149, 9149, 7941, 2203, 7035, 6733, 9451, 1297, 3109, 4921, 89, 9753, 8243, 1297, 6129, 5827, 391,
6733, 1297, 7639, 9753, 6733, 3109, 6129, 3411, 2505, 1901, 4921, 7639, 693, 4921, 9753, 2807, 5525, 4317, 3109,
89, 5827, 5223, 7941, 6431, 391, 5525, 3713, 391, 2505, 4015, 5827, 9149, 4619, 1297, 2807, 1297, 7639, 2505, 8847,
1599, 8545, 5223, 89, 9753, 6129, 8545, 3109, 7941, 8243, 2807, 5223, 5223, 6733, 4317, 2203, 8847, 9451, 2203,
9451, 1901, 4317, 4921, 9753, 7639, 7941, 995, 9149, 6431, 7337, 9451, 995, 391, 3411, 9149, 3713, 7035, 9149,
5525, 1297, 3109, 3411, 693, 6733, 5525, 4317, 5525, 9149, 3109, 9451, 6733, 693, 995, 6431, 5827, 8545, 9149,
1901, 3713, 3411, 7941, 2505, 2807, 6129, 3109, 7639, 7337, 2505, 2203, 1599, 5827, 2505, 9451, 7035, 3109, 995,
4015, 1297, 1599, 7035, 1297, 7035, 391, 3109, 4015, 3713, 4921, 3411, 693, 9451, 8545, 9753, 2505, 9451, 3411,
8847, 4921, 4619, 693, 5827, 2807, 1297, 995, 693, 1901, 2807, 9753, 5525, 1901, 4619, 3411, 3109, 89, 4921, 391,
1297, 4921, 2807, 7639, 6129, 7639, 7337, 693, 7035, 8243, 9149, 2203, 2505, 6129, 7035, 8847, 1297, 89, 391, 4619,
2807, 4317, 1599, 3411, 7337, 8545, 8243, 7035, 3109, 7035, 4619, 1599, 4317, 8545, 3713, 2505, 4317, 4015, 89,
6733, 5223, 7639, 9451, 7639, 4619, 1297, 7337, 9451, 5827, 3713, 9149, 693, 693, 3411, 8243, 6431, 2203, 8243,
3411, 3109, 9149, 4921, 7337, 8243, 7941, 995, 4015, 9149, 2807, 6733, 3109, 7337, 2505, 1599, 5827, 4015, 391,
4921, 8545, 8243, 89, 9451, 693, 7337, 8243, 3109, 3109, 7035, 5827, 8545, 1297, 5223, 7337, 7337, 2807],
[5827, 4317, 4921, 391, 7941, 1297, 1901, 5827, 6733, 2505, 4921, 7941, 3411, 6129, 2203, 391, 4317, 9451, 8847,
4015, 9451, 4921, 6733, 9753, 6733, 4619, 3411, 2807, 6733, 89, 2807, 3411, 9149, 8847, 9753, 7639, 5525, 693,
7941, 6733, 1901, 7337, 9753, 6431, 4921, 9149, 2505, 4619, 3411, 89, 4015, 391, 3109, 5525, 2807, 995, 1297, 8847,
6129, 3109, 9149, 5223, 5525, 4015, 9451, 1901, 9753, 7639, 8545, 2807, 7337, 391, 7337, 995, 7941, 5223, 7035,
1901, 5223, 3109, 1901, 2505, 1599, 9753, 6431, 5525, 6733, 4317, 7639, 7639, 8545, 5223, 9753, 2505, 7639, 995,
4921, 3411, 8243, 3411, 391, 4317, 4015, 1599, 1599, 9753, 2505, 7035, 2203, 4619, 391, 693, 1599, 1599, 8243, 391,
7035, 4921, 693, 5827, 9149, 89, 391, 8847, 8545, 4015, 9753, 7639, 7941, 2807, 8545, 1297, 5223, 2203, 8243, 391,
6733, 6431, 1599, 5827, 6733, 5223, 4619, 4015, 6129, 7941, 7337, 3713, 4619, 3411, 8545, 2807, 5525, 9753, 4921,
2505, 6129, 8243, 8243, 9149, 4317, 8847, 2505, 2505, 8545, 2203, 9753, 4921, 3411, 89, 9753, 7035, 1297, 7337,
9451, 5827, 6129, 3411, 995, 995, 2505, 2807, 1297, 995, 9451, 995, 693, 391, 391, 8545, 1901, 995, 3713, 1599,
7639, 2203, 3109, 2505, 4015, 3713, 5827, 995, 6129, 391, 8545, 7035, 7639, 6733, 7337, 1599, 7035, 3713, 4015,
4015, 5827, 2203, 5827, 9149, 8847, 1297, 1297, 6431, 5223, 693, 8545, 4317, 5525, 1901, 7941, 1599, 4015, 1297,
4015, 9149, 8545, 4619, 6129, 4921, 2203, 693, 4317, 4921, 8847, 6733, 1297, 7035, 89, 9451, 3411, 9451, 2203,
2807, 4619, 8545, 8545, 7941, 3713, 391, 89, 4317, 6431, 1901, 3411, 4921, 5223, 7337, 6129, 7035, 5525, 7639, 89,
1901, 9451, 3713, 8847, 6129, 3109, 3109, 4015, 1297, 1599, 4015, 9753, 9149, 4015, 3411, 89, 7639, 3411, 4921,
3713, 5223, 995, 391, 4619, 89, 2807, 9753, 8545, 693, 8243, 995, 4921, 89, 9451, 391, 3713, 2807, 995, 9753, 6431,
4015, 9451, 4921, 2807, 9149, 5223, 4317, 5827, 7035, 1599, 693, 9451, 8847, 8243, 4921, 2807, 391, 5223, 4317,
4317, 1901, 8545, 7337, 8243, 2203, 2807, 1901, 1901, 2505, 995, 4317, 9149, 391, 7941, 2505, 5223, 2203, 3713,
4619, 2203, 1297, 3109, 4015, 5525, 4015, 2203, 7941, 4921, 9149, 391, 3411, 7941, 5525, 7941, 7941, 995, 3713,
1297, 4015, 3411, 9451, 7337, 1599, 8545, 3411, 5525, 8847, 8847, 9149, 4619, 2807, 7035, 5827, 2505, 2203, 5223,
9149, 9149, 2807, 6733, 4921, 4015, 1901, 4619, 6129, 8545, 4619, 8545, 89, 7639, 7639, 1901, 1599, 391, 9149,
3411, 4317, 693, 8545, 6129, 5827, 89, 391, 9451, 9149, 995, 9753, 2203, 3109, 7035, 4921, 5827, 5223, 6129, 7941,
6733, 9149, 4317, 9451, 5525, 391, 2203, 89, 4619, 3411, 1901, 391, 7941, 7337, 6129, 3109, 4921, 2807, 3713, 4015,
1901, 1297, 2203, 4619, 1599, 1599, 2505, 6733, 5525, 4015, 6129, 9149, 1297, 391, 2203, 995, 2505, 4015, 8243,
391, 1901, 2807, 1599, 5827, 1901, 7337, 4317, 7639, 2807, 3411, 693, 3713, 6129, 5827, 995, 9451, 2203, 9451, 89,
4619, 6733, 4317, 6431, 9753, 89, 5827, 8243, 4619, 4317, 8545, 1599, 3411, 9149, 3411, 6431, 391],
[6129, 3411, 9149, 2203, 8243, 7337, 693, 5827, 89, 7337, 7941, 2505, 5827, 693, 3411, 7035, 89, 391, 6129, 995,
1599, 8243, 5223, 3713, 9149, 4317, 9753, 6431, 2807, 3109, 6431, 9149, 9149, 7639, 5827, 8847, 2807, 5525, 3411,
391, 6129, 4619, 9451, 4317, 5525, 3411, 6129, 7035, 5525, 89, 9149, 7941, 6733, 3109, 9753, 8847, 4921, 3713,
9451, 4619, 1901, 8243, 2807, 7639, 2203, 1599, 1599, 6431, 5525, 5525, 7941, 693, 7337, 9753, 6129, 1599, 6733,
693, 7941, 5525, 8545, 4015, 2203, 1599, 5525, 4015, 4015, 4317, 3109, 1901, 693, 7941, 7035, 4317, 2505, 6129,
4317, 8847, 4619, 9149, 5223, 8243, 9753, 1297, 89, 5525, 1901, 5223, 1297, 7941, 6431, 6431, 6733, 7337, 7035,
6431, 4015, 7639, 2203, 3713, 2203, 3109, 7639, 5827, 8545, 5827, 1599, 1297, 5827, 2203, 5223, 4619, 8243, 9149,
4015, 7639, 8243, 693, 7941, 391, 2203, 995, 9753, 9451, 5827, 9149, 1297, 8545, 6431, 7639, 5827, 6733, 2807,
4921, 9451, 5223, 9753, 7639, 5827, 6733, 8847, 7035, 9753, 8545, 7941, 1901, 4015, 89, 4317, 3109, 89, 2505, 2807,
693, 89, 5223, 7337, 7337, 8545, 3109, 4619, 4317, 3411, 6733, 7639, 1599, 4921, 9149, 6733, 3411, 4921, 5525,
6733, 4317, 2807, 5223, 5223, 7337, 9753, 5827, 7941, 1901, 4921, 6431, 7639, 4619, 1599, 693, 2807, 3411, 7941,
4317, 1599, 9451, 7035, 1297, 6129, 3109, 1901, 9753, 995, 3713, 7941, 2807, 7035, 5223, 9149, 2203, 9149, 3411,
7337, 1901, 2807, 9149, 9451, 1901, 1297, 9451, 3713, 9753, 4619, 5223, 4015, 8545, 9149, 4015, 89, 8847, 4015,
3109, 4317, 5223, 4015, 995, 1297, 4619, 5827, 4015, 1297, 2505, 7035, 5223, 7035, 3109, 5827, 1297, 1599, 693,
9451, 7639, 3411, 6431, 6431, 5525, 9451, 2505, 9753, 4619, 7337, 9753, 391, 3713, 7639, 1599, 3713, 2505, 3109,
3109, 5223, 995, 5827, 4015, 9753, 3109, 89, 5223, 4317, 4317, 7035, 89, 5525, 3109, 7941, 2203, 995, 9753, 8847,
9753, 995, 8847, 1599, 1297, 4317, 2807, 7941, 3411, 6733, 8243, 89, 7941, 7337, 1599, 2203, 7035, 2203, 5223,
4015, 5525, 5827, 2807, 2807, 1297, 1901, 9149, 6129, 4317, 5223, 8545, 2505, 4921, 4619, 7639, 6431, 8847, 8847,
2807, 5827, 8847, 8847, 89, 9149, 2807, 9451, 3411, 5525, 4619, 4015, 7941, 5827, 4921, 1297, 6431, 5525, 4317,
995, 7337, 391, 2807, 6431, 4921, 6431, 2203, 4317, 5525, 5827, 5223, 5525, 693, 3713, 5223, 7639, 9753, 7941,
8243, 5223, 2203, 8545, 1297, 8847, 8847, 7639, 89, 4317, 9753, 6431, 89, 9753, 7639, 7337, 5223, 9753, 7337, 7035,
7941, 4015, 2807, 4317, 2505, 2505, 4015, 89, 9753, 7035, 2807, 7941, 3411, 9451, 1901, 6129, 5223, 4619, 2505,
995, 89, 3411, 9451, 3411, 4317, 7639, 6431, 3713, 4317, 89, 4317, 7941, 1901, 5525, 4921, 4619, 9753, 6733, 4317,
5223, 89, 7337, 4015, 5827, 4921, 6431, 1599, 2505, 1297, 8243, 5827, 1901, 3713, 2807, 4619, 4317, 1297, 9451,
2505, 9149, 4317, 3109, 4317, 2505, 995, 8847, 1599, 6733, 3109, 4921, 3713, 6431, 5827, 7941, 9753, 1901, 995,
5223, 7639, 8243, 6129, 8545, 9149, 6129, 4619, 9149, 8545, 1599, 4317, 8545, 3713, 7035, 3411, 4317, 2203, 8847,
4619, 4619, 1901],
[4015, 7639, 7337, 8243, 995, 5827, 9149, 693, 89, 5223, 3713, 5827, 9451, 89, 3713, 5525, 5525, 8847, 5223, 4015,
3713, 2203, 5827, 6733, 5525, 3713, 4921, 3713, 5827, 89, 3411, 3411, 1297, 9149, 995, 2807, 89, 4317, 995, 7639,
5525, 7941, 5223, 4015, 2807, 7035, 9149, 9753, 7941, 2505, 4921, 4015, 5223, 7035, 7035, 9149, 7337, 1297, 7639,
8847, 6733, 4317, 9149, 4921, 8545, 8847, 2807, 89, 1297, 3713, 6129, 5827, 4921, 1599, 3109, 8243, 89, 3713, 4015,
7035, 7337, 693, 3411, 9149, 1901, 5827, 1297, 9451, 5525, 391, 7337, 3411, 2505, 7941, 6431, 5525, 9451, 995,
4921, 1599, 4619, 9753, 5827, 2505, 9451, 4619, 6129, 8545, 8545, 6129, 9451, 8847, 4921, 9451, 3411, 995, 7035,
1297, 8847, 6733, 5827, 8243, 6129, 8545, 7941, 3109, 1599, 1297, 3713, 9451, 5223, 4921, 4619, 4619, 4619, 8545,
6431, 5223, 9753, 8243, 7639, 6431, 5525, 6431, 3411, 6733, 9753, 5827, 5525, 9149, 693, 6733, 3713, 6431, 693, 89,
693, 2505, 8545, 89, 8545, 89, 5525, 995, 8847, 2203, 8243, 9451, 3109, 4317, 4619, 1901, 4317, 4015, 3713, 995,
8243, 3411, 9451, 8243, 7035, 6431, 3109, 4619, 391, 7941, 4015, 6431, 7941, 5525, 5223, 7941, 9149, 1599, 4921,
3411, 2505, 7337, 3713, 6733, 7337, 4619, 2203, 391, 9149, 2807, 7337, 4921, 8847, 4921, 3411, 4317, 7337, 1599,
5525, 7035, 8847, 5827, 5223, 8847, 7337, 8243, 5827, 8243, 995, 3411, 1599, 1297, 4015, 995, 4015, 2203, 9451,
9451, 4015, 7035, 7941, 4015, 7941, 6129, 4317, 2807, 2203, 4921, 89, 693, 8243, 9451, 3411, 2505, 8243, 5525,
9753, 7035, 1297, 5223, 3109, 4619, 2505, 693, 2807, 9753, 995, 89, 6129, 1901, 9753, 2203, 1901, 1599, 4921, 6733,
1901, 6129, 2505, 7639, 3109, 89, 7337, 693, 7337, 3411, 5223, 5827, 1901, 5827, 1297, 5223, 7337, 3713, 8545,
4015, 8545, 693, 6129, 5827, 4921, 4921, 4921, 8545, 391, 693, 3411, 2807, 6431, 6431, 4921, 1599, 2505, 2505,
2505, 391, 5525, 4015, 5827, 89, 7035, 2203, 1297, 89, 4015, 7941, 5223, 5223, 9149, 7639, 3713, 1297, 7639, 9149,
1901, 7639, 3109, 2505, 7337, 5525, 9753, 3713, 6129, 89, 5827, 6431, 7639, 8243, 7337, 5223, 8847, 4015, 1599,
4619, 3411, 693, 1599, 3713, 4921, 3109, 8545, 693, 2505, 4317, 7035, 3109, 5525, 9149, 8243, 7941, 7639, 6129,
9753, 7035, 693, 6733, 2203, 6733, 3109, 3713, 8243, 2203, 5525, 4015, 89, 7639, 3109, 8545, 9753, 3109, 7035,
7337, 6733, 8243, 4921, 9149, 2203, 2203, 5223, 4921, 9149, 8847, 4015, 7941, 5223, 5223, 8243, 9451, 4619, 5827,
2807, 1297, 4921, 6733, 8243, 5827, 1901, 5223, 6129, 2807, 3713, 3109, 9149, 995, 4921, 1297, 4619, 3713, 8545,
2505, 4619, 6733, 391, 5827, 9753, 7639, 4619, 995, 9753, 5827, 7941, 4317, 4921, 391, 3713, 7337, 693, 693, 693,
7035, 2505, 8847, 2807, 4921, 8847, 5827, 7639, 5525, 995, 9753, 7941, 6129, 8545, 7035, 6431, 6129, 1901, 2505,
3109, 7639, 3411, 9451, 3411, 6733, 3109, 89, 1599, 9753, 3713, 4921, 89, 8545, 1599, 3713, 995, 5525, 995, 8847,
89, 1297, 693, 2203, 8545, 5827, 1901, 8847, 4015, 995, 9149, 3109, 2203, 1901, 4015, 3713, 89, 4317],
[9753, 2203, 4015, 1599, 9149, 2203, 4921, 4317, 8243, 5525, 1901, 2505, 4921, 3713, 3109, 1599, 995, 7035, 1599,
995, 391, 6129, 4015, 8847, 9149, 9149, 995, 8243, 6129, 6129, 6431, 8243, 4921, 4619, 4317, 7035, 7639, 693, 4317,
693, 89, 5223, 391, 8243, 1297, 4921, 1297, 995, 5223, 995, 1901, 8243, 7639, 8243, 2505, 89, 2203, 7639, 89, 4015,
4015, 8847, 4015, 8243, 3411, 693, 7639, 6129, 1599, 8243, 6431, 7035, 7035, 5827, 9451, 7337, 1901, 4921, 5827,
6733, 2807, 5827, 391, 4015, 391, 3713, 693, 7639, 4619, 7337, 1901, 7337, 3109, 4619, 5827, 693, 8847, 7035, 7941,
9753, 8243, 2203, 2505, 9753, 7035, 391, 2807, 4619, 5827, 2807, 9753, 9149, 693, 6129, 6129, 4619, 9451, 4317,
391, 1297, 2807, 693, 3109, 7337, 7035, 1901, 6129, 4619, 391, 9149, 7035, 7337, 5525, 3411, 3109, 4015, 7941,
6733, 7337, 7941, 7035, 6129, 4619, 8243, 4015, 7035, 7337, 1599, 9753, 2203, 9753, 8847, 4015, 6733, 1599, 8545,
6733, 3411, 4921, 5223, 6129, 3109, 391, 2807, 5827, 4619, 7941, 6431, 7941, 6431, 7337, 6129, 5827, 4619, 7941,
1297, 391, 3411, 4619, 8545, 3411, 4317, 1901, 5827, 6733, 6431, 7337, 7035, 8545, 5223, 391, 3713, 9753, 7035,
995, 6733, 1901, 1297, 7035, 7035, 4921, 4015, 4317, 3713, 391, 9451, 5827, 6733, 6129, 6733, 6431, 3411, 995,
7035, 4619, 6733, 8847, 6431, 7035, 4015, 1901, 1901, 4619, 6431, 8545, 995, 6733, 1901, 89, 4921, 6129, 6733,
5827, 7035, 9753, 9753, 6129, 3713, 4921, 1297, 7035, 1901, 7337, 6733, 9149, 7337, 4317, 693, 5525, 8545, 2203,
7035, 1599, 4619, 1901, 7035, 7639, 9753, 7639, 7337, 7639, 6129, 8545, 2505, 3411, 1599, 1599, 5827, 5525, 7941,
6733, 1599, 5525, 1901, 7639, 4921, 1297, 6129, 8243, 3713, 4317, 5525, 7337, 8243, 4015, 4619, 1599, 391, 5827,
9149, 7639, 4921, 2203, 7941, 9753, 9149, 6733, 4015, 9753, 7035, 7035, 7337, 5223, 4619, 89, 7337, 3713, 2505,
4921, 693, 3109, 5525, 6733, 89, 7337, 4921, 8545, 5223, 9753, 7941, 2203, 2505, 89, 8847, 1297, 391, 1901, 995,
9149, 7337, 3109, 5525, 7337, 4921, 4921, 8545, 3713, 7639, 7639, 9149, 3411, 2807, 5525, 8243, 4015, 9451, 9149,
3109, 8545, 9753, 7941, 9451, 5827, 4015, 9753, 4015, 6733, 6733, 1599, 8243, 4619, 2505, 6129, 6733, 3411, 8545,
4015, 5525, 3411, 693, 6129, 4317, 2203, 4317, 8243, 8243, 4921, 4317, 6733, 2505, 9149, 7035, 693, 2203, 4015,
9149, 3411, 3109, 1599, 7337, 89, 5827, 7941, 7639, 3713, 693, 9149, 2807, 4921, 7035, 4015, 3411, 3713, 9753,
5525, 391, 7639, 5525, 3109, 6431, 7941, 3713, 8545, 7035, 2807, 6129, 7337, 5827, 9753, 7941, 89, 2505, 1901,
2505, 4921, 5827, 4317, 7941, 7639, 3713, 3713, 693, 4619, 5525, 9753, 693, 6129, 7035, 8243, 693, 7337, 1297,
7941, 9149, 1901, 7639, 2203, 391, 9149, 4317, 4015, 4317, 7941, 9451, 2807, 7035, 4921, 7035, 3411, 3411, 5827,
4317, 5827, 3411, 89, 9149, 89, 1901, 2505, 4619, 9149, 4015, 9149, 7941, 1599, 5525, 5827, 4921, 6431, 2505, 4619,
7035, 995, 2505, 8847, 995, 8243, 6733, 6129, 7941, 8545, 2807, 4317, 2203, 9149, 1901, 4015, 9451, 5223, 4921,
5525, 1901],
[7941, 4317, 3411, 1599, 3411, 7639, 9451, 8545, 2807, 391, 1599, 3109, 2505, 8847, 3411, 693, 4921, 9451, 4921,
3411, 9149, 5827, 5827, 5223, 8847, 3713, 995, 1901, 3411, 7337, 7035, 3109, 9149, 8847, 995, 8243, 7941, 9149,
4921, 9149, 6129, 2203, 3713, 4317, 7035, 3411, 1599, 3713, 7639, 4619, 4317, 6431, 693, 6733, 5827, 4921, 6129,
1297, 5525, 995, 5525, 3109, 8847, 8847, 7337, 6129, 4921, 8847, 4619, 7035, 9149, 2505, 2203, 1599, 995, 6733,
6733, 9451, 8847, 2807, 6733, 391, 4015, 7337, 9149, 4015, 391, 1297, 4619, 391, 5525, 2505, 6733, 995, 8243, 2505,
9753, 2203, 6129, 4619, 1901, 9451, 8545, 9451, 7337, 7035, 693, 9149, 5827, 8243, 5525, 391, 1599, 4921, 4317,
7337, 4921, 7035, 5525, 693, 5223, 4317, 1297, 1599, 4317, 5525, 7337, 9753, 9753, 391, 8847, 7941, 3713, 3713,
2807, 6129, 89, 4317, 5223, 995, 7035, 3109, 8243, 7337, 4317, 9149, 4619, 6129, 7337, 8847, 2203, 5827, 7941,
6129, 2807, 7639, 391, 3713, 89, 9451, 2505, 6129, 3411, 2203, 8545, 9753, 4921, 7337, 7639, 8847, 1599, 2203, 89,
7035, 6129, 3109, 8545, 8545, 4619, 4015, 2807, 1599, 1599, 9451, 1901, 995, 8545, 7639, 4921, 391, 5223, 7035,
5525, 2807, 4015, 9753, 3713, 8847, 9149, 7941, 1599, 1599, 2505, 1599, 4317, 4921, 89, 2807, 7639, 7639, 9451,
8545, 8847, 8847, 4317, 3713, 7639, 2807, 1599, 8847, 1901, 3109, 8847, 9753, 1599, 8847, 7941, 2505, 2807, 7337,
3713, 693, 8243, 8243, 1901, 8847, 5827, 7639, 7035, 6431, 4317, 4015, 3109, 9451, 7337, 4619, 89, 3713, 3713, 995,
7035, 8243, 2505, 7941, 4921, 8847, 2203, 89, 2807, 5525, 4015, 8545, 4317, 6129, 8847, 6733, 6129, 1297, 7639,
4015, 693, 6733, 1297, 7639, 2505, 4015, 6431, 3411, 5827, 2807, 5223, 9451, 9149, 1297, 8545, 7639, 7639, 3411,
2203, 1901, 4619, 6431, 1297, 9451, 8847, 9451, 2807, 4317, 5525, 9451, 7639, 3713, 4015, 5827, 9753, 6129, 4619,
1297, 8243, 6733, 8847, 6733, 8847, 995, 1901, 2505, 9149, 9753, 6733, 1297, 9753, 8847, 8243, 8243, 9149, 2505,
693, 9149, 3411, 6431, 5827, 8847, 3411, 995, 9149, 2807, 6129, 8545, 4921, 7941, 8545, 1297, 7035, 3713, 5827, 89,
1901, 7035, 9753, 3713, 5525, 5827, 8545, 4317, 4619, 3713, 5223, 6431, 4921, 6733, 7035, 8847, 5827, 8847, 8847,
5827, 7337, 4619, 2807, 3713, 4921, 2807, 4015, 8243, 1297, 1901, 6431, 3713, 7035, 89, 693, 89, 7035, 995, 7941,
693, 5827, 7035, 9753, 7941, 693, 4317, 7035, 5525, 6129, 4015, 1297, 995, 7035, 3713, 7035, 5223, 3109, 8847,
6129, 4619, 89, 6129, 8847, 5223, 8545, 4921, 8545, 4619, 7035, 89, 4921, 3411, 6733, 9451, 7035, 693, 8847, 8545,
8847, 4317, 4317, 8243, 1901, 2807, 7941, 5827, 4619, 7941, 3109, 8847, 2505, 9753, 8243, 8847, 995, 2807, 5223,
5827, 4317, 7035, 7941, 391, 3411, 6129, 89, 1297, 7337, 7639, 4619, 7941, 1599, 1901, 995, 3713, 4015, 3713, 2203,
4317, 5525, 9451, 8545, 4317, 2203, 3411, 9149, 1599, 3109, 6129, 89, 5223, 3713, 8847, 6431, 5223, 5827, 4015,
6733, 7639, 2505, 3411, 5525, 1599, 89, 8847, 6129, 5827, 4619, 4921, 9149, 693, 8243, 9753, 8847, 7337, 391,
5525],
[9149, 89, 3109, 2807, 89, 995, 1599, 4619, 4317, 6129, 7337, 4921, 5223, 7941, 3109, 6733, 8243, 391, 7035, 2807,
1297, 6129, 5223, 693, 7337, 693, 8243, 391, 2807, 5525, 6431, 9753, 5223, 4921, 3411, 2807, 9753, 7941, 9149,
9451, 7035, 3109, 5223, 6733, 1297, 1599, 3109, 8545, 8243, 8545, 2807, 995, 8847, 1599, 1901, 2203, 7639, 6129,
9753, 5525, 5827, 5827, 4921, 4619, 693, 8243, 693, 5223, 2203, 4619, 7639, 995, 4317, 4921, 4317, 8243, 693, 1599,
4921, 5525, 4619, 89, 3713, 8545, 6129, 8545, 8243, 995, 4317, 2505, 4015, 7639, 1297, 7035, 4317, 391, 5223, 3411,
7337, 7035, 2505, 2203, 2807, 3713, 3109, 7941, 9451, 1599, 693, 391, 6431, 3713, 5223, 6733, 5525, 3109, 8847,
4619, 6733, 1901, 9451, 3411, 5223, 2203, 5525, 5827, 2203, 7639, 1599, 1901, 2505, 4015, 5525, 5525, 89, 4921,
2203, 9451, 3713, 4015, 4921, 995, 7639, 9753, 2505, 6733, 4619, 3109, 9753, 2807, 6431, 2807, 8243, 7941, 8847,
9451, 8545, 4921, 1297, 4921, 8243, 3411, 2807, 6129, 8243, 995, 9451, 5223, 4921, 5223, 4015, 8847, 9753, 1297,
1901, 8545, 4619, 7035, 8545, 6733, 6129, 8243, 8243, 5223, 6431, 391, 5223, 2203, 4619, 1901, 3411, 5827, 5525,
8243, 1901, 1297, 995, 4317, 4317, 3411, 4921, 89, 2505, 5525, 995, 2203, 4921, 9149, 7035, 2807, 7337, 3109, 6431,
3713, 5223, 89, 693, 7639, 995, 6431, 5525, 2505, 4921, 1901, 9149, 7035, 9451, 8847, 3109, 2505, 9149, 8243, 2203,
5827, 4015, 6733, 3713, 4619, 5525, 8243, 9753, 7035, 5525, 8847, 4317, 4619, 8847, 2807, 7941, 4619, 2203, 5223,
5223, 3713, 3411, 5223, 995, 2203, 995, 89, 7337, 7337, 8545, 6431, 8847, 5827, 1901, 9753, 89, 6733, 1297, 5827,
6129, 4317, 5223, 6733, 391, 7035, 7035, 7941, 5223, 391, 693, 7337, 693, 1297, 7337, 693, 8847, 8545, 7639, 995,
7035, 8243, 1599, 391, 391, 8847, 4619, 1599, 693, 89, 9149, 5827, 5827, 391, 9149, 1599, 9753, 3411, 9149, 391,
89, 7639, 3411, 4619, 1901, 4015, 7035, 995, 7337, 3411, 2807, 7337, 3411, 9753, 9753, 693, 1297, 7639, 995, 1599,
5223, 4317, 1297, 6431, 4317, 2505, 6129, 89, 6733, 995, 4317, 391, 4619, 4317, 4015, 2203, 89, 9149, 9149, 6733,
3109, 5525, 3109, 391, 3713, 9149, 5827, 7337, 9753, 995, 391, 7035, 3109, 1599, 995, 3713, 3713, 7337, 2505, 7035,
6431, 5827, 3411, 9149, 1901, 8847, 4015, 1901, 7337, 8545, 4619, 8847, 1901, 391, 8243, 4921, 1901, 2807, 8847,
1901, 7941, 693, 4317, 9149, 7035, 4015, 3109, 89, 4015, 2505, 1901, 6431, 9753, 4619, 7639, 3411, 9753, 1901,
4015, 9149, 7941, 2505, 5827, 3109, 2505, 1297, 3411, 5827, 7639, 89, 89, 1901, 7941, 693, 3411, 9753, 1297, 1599,
8545, 7035, 4015, 4619, 4619, 995, 5827, 2807, 89, 7337, 2203, 4921, 5223, 3411, 7035, 3713, 5827, 2807, 693, 4921,
693, 8847, 7941, 2807, 1599, 89, 9149, 4619, 4317, 1297, 3713, 6129, 1901, 3109, 5827, 7337, 5827, 4015, 4619,
9753, 1297, 2505, 1901, 5525, 5525, 1297, 7035, 1901, 9753, 6733, 4317, 2203, 995, 1901, 2807, 7639, 9753, 7337,
4317, 5525, 1901, 3713, 3109, 7337, 5223, 9149, 5827, 4619, 9753, 4619, 391, 1297],
[5827, 5525, 8847, 6733, 8243, 3411, 7639, 4015, 5223, 2203, 693, 1901, 8847, 9149, 8243, 89, 6129, 7035, 3109,
9149, 4015, 9753, 8243, 4317, 4921, 6733, 1901, 3713, 9451, 6129, 7941, 4921, 8847, 9753, 1297, 7035, 4921, 8545,
4317, 1297, 6733, 8545, 9149, 5827, 1599, 693, 693, 3713, 5223, 7941, 8847, 4317, 5223, 2505, 9149, 9753, 1901,
7337, 8243, 3109, 3411, 7035, 9451, 6431, 1297, 8847, 5223, 1599, 2203, 3109, 9753, 3411, 4015, 995, 6431, 1297,
3109, 8243, 995, 8243, 1297, 8243, 4317, 4317, 8545, 6431, 8847, 5827, 9451, 4921, 7337, 6733, 7337, 6129, 1599,
4317, 5525, 3411, 5827, 89, 4921, 89, 693, 2807, 693, 3713, 2807, 9149, 4317, 8545, 693, 8545, 2807, 8243, 7639,
2807, 391, 2203, 4015, 4015, 2203, 3109, 5223, 995, 89, 6733, 8243, 4619, 5525, 7337, 9753, 6431, 7639, 7639, 7941,
7337, 3109, 995, 5223, 2203, 2505, 2203, 9451, 9753, 4921, 7941, 1901, 3713, 8545, 7337, 9149, 4619, 9451, 9753,
9451, 995, 8847, 4015, 8243, 1599, 4317, 7639, 4317, 6431, 8243, 693, 3713, 4317, 9149, 4317, 2203, 8545, 693,
4317, 1901, 9149, 4317, 1297, 7337, 2807, 391, 89, 8847, 6129, 4619, 7941, 5827, 3713, 995, 2203, 1901, 8847, 6733,
6431, 4921, 5223, 89, 2807, 7337, 6733, 9753, 5223, 4921, 2203, 1901, 8545, 5827, 8545, 7337, 6431, 693, 6129,
9149, 4317, 7639, 1599, 5827, 3713, 2203, 391, 4619, 9451, 8243, 3713, 5827, 4619, 5223, 9753, 391, 7337, 89, 7639,
6431, 9451, 6129, 4921, 4317, 1297, 4317, 9753, 7035, 693, 995, 7035, 1901, 995, 3109, 6129, 7941, 5827, 4317,
7941, 7035, 5827, 7941, 8243, 4015, 7337, 3109, 6733, 4921, 4317, 4619, 3411, 1297, 9451, 6431, 2807, 1599, 391,
2505, 693, 1297, 3411, 2505, 5827, 4015, 4619, 7941, 5223, 1599, 6129, 1901, 89, 3109, 4015, 9451, 6733, 693, 8847,
5223, 5525, 6129, 693, 5223, 6129, 7337, 3411, 391, 7337, 6129, 89, 1901, 7035, 3713, 9753, 6431, 8545, 9149, 4015,
6129, 3411, 5827, 6129, 8847, 7941, 89, 6129, 7035, 3109, 391, 3713, 5827, 2807, 4317, 5827, 391, 7337, 3713, 9753,
4015, 7035, 2203, 6129, 8243, 7035, 7035, 7941, 2807, 1599, 6733, 5223, 6733, 9149, 7639, 5525, 6733, 4921, 2505,
2505, 5223, 6733, 8243, 1599, 7035, 7639, 5223, 3713, 7639, 7035, 2203, 2203, 2807, 2807, 8243, 9451, 4317, 2807,
4015, 89, 7639, 4619, 2203, 9753, 6431, 3713, 1599, 1901, 1901, 8847, 6733, 1297, 4015, 89, 7337, 7639, 8847, 8545,
7639, 2807, 8243, 3109, 89, 4015, 3411, 4619, 9451, 3109, 8847, 9149, 7639, 9451, 4619, 7337, 8545, 7941, 8243,
9753, 1599, 9753, 1599, 6733, 9149, 89, 1901, 1297, 9753, 4317, 5827, 4015, 3411, 9149, 6129, 4921, 1297, 3713,
1599, 4317, 4317, 9753, 3109, 3411, 4015, 7941, 2203, 391, 9149, 2505, 5827, 6733, 2505, 6431, 9149, 5525, 2203,
995, 995, 4317, 6129, 1901, 7035, 995, 1297, 89, 89, 3713, 8545, 9451, 8847, 4015, 9149, 8243, 3411, 2807, 2203,
7337, 8545, 7941, 2807, 5525, 693, 8243, 8243, 1599, 2807, 5827, 1297, 5223, 8847, 2505, 1599, 8545, 1901, 2505,
5827, 5223, 6129, 391, 4015, 6129, 391, 4921, 7941, 89, 7035, 8847, 7035, 3109, 6733, 7337, 1599, 8545],
[4015, 4015, 9753, 4015, 8847, 1297, 9753, 7337, 7035, 6431, 7941, 2807, 2807, 7035, 9149, 9149, 3713, 995, 4015,
7337, 9149, 7941, 3411, 693, 3411, 1297, 4015, 1901, 1297, 7941, 7941, 6431, 8545, 7639, 5223, 1297, 5223, 9149,
1297, 6733, 4317, 9451, 5223, 391, 391, 2203, 7035, 693, 6431, 2505, 6129, 2807, 8243, 2203, 4921, 9451, 2505,
8545, 9451, 3411, 89, 4317, 6733, 7639, 8545, 5827, 9451, 4921, 5525, 89, 391, 3411, 9149, 9149, 8545, 8847, 9451,
7941, 5525, 4317, 3411, 5525, 4015, 6431, 7639, 3713, 7035, 4619, 7639, 1297, 3713, 6733, 5525, 5223, 7639, 9753,
3411, 9451, 89, 995, 9451, 7639, 4921, 693, 6431, 8545, 9149, 3713, 5525, 3713, 1599, 5223, 4317, 7035, 2505, 5223,
4921, 7035, 4015, 4317, 8545, 391, 2203, 3411, 6431, 7639, 3713, 9149, 1599, 6733, 6733, 3109, 6733, 1297, 5827,
7639, 5525, 5223, 5827, 7639, 693, 7639, 4015, 4619, 5827, 8545, 8545, 5223, 7639, 3109, 1297, 9451, 5827, 4619,
3411, 9753, 7639, 2203, 8545, 6733, 9149, 9149, 89, 4921, 2807, 4921, 6431, 9451, 9451, 8847, 3411, 5525, 7941,
7035, 5827, 8243, 8243, 5827, 7639, 8545, 7035, 8243, 4921, 391, 5827, 6733, 3411, 693, 6431, 9451, 8847, 5827, 89,
5525, 1901, 2807, 1599, 6733, 9149, 1297, 7337, 2203, 995, 9753, 8545, 8847, 693, 4317, 5525, 5525, 5525, 5223,
3411, 3109, 1599, 693, 1297, 5525, 391, 7639, 4015, 8847, 2203, 6129, 3411, 2203, 5827, 6733, 7035, 3109, 391,
6733, 7035, 89, 4619, 4317, 89, 4619, 9149, 391, 1901, 3713, 7035, 7035, 3109, 3713, 1599, 5525, 2203, 4921, 7035,
7941, 5525, 3713, 3713, 5827, 8545, 4317, 4015, 5525, 4317, 89, 2807, 4015, 8847, 9753, 3109, 7639, 8545, 89, 2203,
4921, 693, 3713, 6733, 7941, 9149, 8243, 3713, 89, 3109, 5525, 3713, 1599, 4619, 4317, 8545, 8847, 8243, 8545,
6129, 3411, 4317, 1901, 7035, 9753, 89, 5525, 9149, 4921, 2203, 4921, 5827, 5223, 1901, 4619, 6129, 995, 1297,
3411, 6431, 2505, 2505, 89, 9753, 8847, 9149, 5827, 4921, 7941, 1901, 5223, 8545, 9149, 9451, 3411, 4317, 7639,
6431, 2203, 8243, 89, 3713, 7639, 9451, 7035, 4015, 4921, 7035, 1297, 391, 7035, 3713, 6733, 6431, 3411, 9753,
6129, 7035, 3713, 5525, 693, 9451, 4619, 2203, 4015, 8243, 6431, 1599, 4317, 4921, 9451, 1901, 7035, 1297, 5223,
3411, 2807, 3411, 4619, 5827, 7337, 2203, 8243, 4619, 7941, 995, 1901, 3713, 1297, 1297, 6431, 7035, 7941, 3713,
2203, 2203, 9149, 693, 9451, 9149, 1901, 1901, 4619, 7337, 1599, 5827, 7337, 5827, 3109, 6733, 693, 6129, 8545,
1599, 5223, 5827, 391, 8847, 5223, 7639, 6431, 7035, 7941, 3109, 3109, 3109, 7337, 9451, 1599, 5827, 5223, 9451,
5827, 7941, 9753, 6733, 7639, 2807, 7337, 7337, 6129, 4921, 5827, 693, 5223, 995, 3713, 3713, 5827, 7035, 5525,
9451, 9753, 6129, 693, 1901, 3109, 6129, 8545, 9753, 1901, 4619, 4317, 8847, 4921, 3713, 693, 5223, 3109, 4015,
693, 4619, 995, 89, 7941, 9753, 7035, 693, 4619, 3411, 2807, 7035, 5827, 8243, 5223, 2807, 2807, 1901, 693, 4921,
1599, 8847, 1901, 89, 7035, 9149, 7337, 8545, 2203, 7639, 4921, 9451, 89, 391, 5525, 5827, 4619, 8545, 6129, 2203,
89],
[2505, 89, 1599, 3713, 3713, 4015, 9753, 5827, 5525, 4317, 8847, 1901, 7639, 89, 89, 9149, 7639, 6733, 5525, 9149,
391, 7035, 8847, 2505, 4921, 1599, 2807, 4619, 8847, 391, 7941, 5827, 391, 9753, 7337, 5827, 8545, 7337, 1297,
7639, 8847, 9451, 6733, 89, 5223, 5525, 5223, 4317, 3109, 8847, 8545, 4015, 6733, 6431, 3411, 5223, 7337, 9451,
2807, 2807, 5223, 9451, 6733, 7035, 6733, 8545, 3411, 4619, 7035, 9451, 1901, 2807, 3713, 4317, 8545, 8847, 6431,
391, 89, 7337, 5525, 89, 2807, 6129, 2203, 3411, 1901, 9149, 7639, 6129, 2505, 7941, 7941, 5525, 2807, 1901, 3109,
5525, 2807, 5223, 9451, 7941, 8545, 1297, 6129, 8243, 693, 6129, 6733, 2203, 995, 1599, 7337, 7035, 6431, 6431,
4317, 4015, 7337, 8243, 6129, 5525, 995, 6129, 4317, 4921, 391, 9451, 693, 7337, 9451, 8545, 3411, 4619, 8243,
7639, 995, 89, 8243, 6129, 7941, 4015, 5223, 7639, 9149, 391, 9149, 9149, 9451, 1297, 9149, 5525, 3411, 8545, 693,
4921, 4317, 5525, 1599, 8545, 2505, 7035, 4619, 9149, 391, 9753, 7941, 6431, 7941, 9149, 6129, 693, 2203, 6733,
5525, 5525, 6129, 3411, 4619, 4921, 391, 4317, 1297, 5223, 4619, 4015, 5827, 6129, 693, 693, 8243, 7035, 4619,
1297, 9451, 3411, 6129, 8243, 7337, 4619, 3109, 89, 8545, 8545, 6129, 3713, 1901, 8847, 2203, 5525, 3411, 6129,
8847, 4015, 6129, 8847, 1297, 4619, 89, 9149, 7035, 2203, 1599, 3109, 5223, 391, 9149, 6733, 5827, 6733, 7639,
8545, 3411, 89, 391, 391, 8847, 5223, 3109, 3109, 4619, 2807, 5223, 5827, 7337, 693, 6129, 5525, 5827, 9451, 693,
5827, 3109, 995, 6129, 1297, 8847, 2505, 89, 9753, 5223, 4317, 7337, 7941, 4015, 7941, 995, 6431, 3411, 4619, 8545,
4619, 7035, 7035, 1901, 2505, 3411, 6431, 1297, 3109, 8243, 7035, 5223, 5223, 6129, 9451, 693, 4921, 1599, 6733,
1297, 9451, 1599, 8243, 1599, 8243, 2203, 8545, 5827, 5525, 5223, 9753, 8545, 5223, 3109, 8847, 9451, 89, 2807,
4317, 2203, 4619, 391, 5827, 2807, 2807, 5525, 7639, 3411, 995, 4317, 5827, 1901, 7337, 7941, 7941, 4015, 4921,
6431, 3713, 2807, 995, 391, 8243, 5223, 6431, 7337, 9149, 9753, 5223, 1297, 2807, 8243, 2807, 6431, 1901, 4015,
5827, 8243, 995, 3713, 8847, 3411, 7337, 6129, 391, 4015, 2807, 7337, 9451, 3411, 4015, 6129, 1901, 5223, 693,
7337, 7035, 89, 4317, 4921, 4619, 7941, 7035, 1599, 7035, 6129, 3411, 2807, 9149, 89, 2807, 7941, 8545, 6129, 1901,
8847, 1297, 4317, 7337, 6733, 391, 7639, 3109, 7639, 4921, 9753, 2505, 391, 391, 6129, 4921, 89, 7639, 4921, 7337,
5525, 9753, 5827, 4317, 9753, 8243, 2203, 7639, 4317, 4015, 6129, 693, 4921, 2505, 7639, 5223, 9149, 7639, 5827,
2203, 8847, 6733, 693, 6129, 2203, 7941, 7035, 8545, 7941, 4015, 2505, 1599, 8545, 3411, 1599, 391, 5223, 1599,
8243, 6129, 9753, 995, 5525, 693, 4317, 9451, 6733, 5827, 995, 7035, 3411, 6129, 4921, 2807, 6733, 9451, 1297, 693,
1297, 8847, 9451, 6431, 89, 5223, 7941, 5525, 1901, 1297, 8847, 4921, 4317, 391, 2203, 4317, 3411, 7337, 4317,
3713, 1297, 4619, 89, 4619, 5223, 2505, 693, 9753, 4921, 9753, 3713, 8243, 2203, 391, 8243, 4619, 9753, 3109],
[391, 5827, 3713, 8545, 4015, 8545, 4921, 8243, 1297, 1599, 5223, 2203, 7035, 391, 8847, 8847, 9451, 2505, 2807,
5223, 8545, 2203, 1599, 3109, 5525, 3411, 89, 5223, 4619, 7639, 6733, 2203, 7639, 7337, 9149, 5223, 7035, 7035,
6431, 7035, 4015, 6431, 9149, 995, 1599, 5827, 8243, 4619, 3713, 8847, 8243, 8545, 5827, 5827, 1901, 89, 2505,
2807, 7639, 3411, 6733, 6431, 9451, 7337, 2505, 6129, 8847, 391, 7941, 9753, 4921, 2807, 4619, 7337, 1297, 8545,
8847, 995, 2203, 89, 7941, 1297, 3713, 7337, 4015, 2203, 2807, 5827, 1297, 8545, 4317, 3411, 9753, 1901, 89, 2807,
1297, 8545, 2505, 4317, 995, 9451, 391, 7337, 1297, 4921, 1599, 3109, 89, 5827, 6129, 1297, 4317, 4921, 1901, 4317,
6431, 8847, 89, 1901, 8545, 4015, 8545, 4619, 6431, 8243, 7639, 8847, 4317, 2203, 1901, 693, 9753, 995, 4921, 5223,
6733, 5827, 8847, 693, 2807, 693, 9451, 4317, 2505, 3109, 9753, 9149, 8243, 7941, 995, 7941, 1599, 995, 2505, 4015,
9753, 9753, 7035, 7337, 2203, 1901, 7337, 8545, 7035, 4015, 5223, 7337, 995, 9753, 3109, 3411, 8243, 7639, 9753,
1297, 693, 4619, 5827, 1599, 4317, 9451, 9149, 1599, 7035, 2203, 8243, 2505, 7639, 9451, 2505, 2807, 7337, 2807,
89, 7941, 3411, 2203, 8243, 7639, 5223, 1297, 1599, 693, 1901, 9451, 7035, 6129, 4619, 7337, 4619, 3411, 6733,
1599, 7035, 2807, 2505, 4921, 1901, 1901, 6733, 3109, 9149, 3411, 4619, 5827, 1599, 6733, 4015, 1599, 9753, 8545,
5525, 9753, 6431, 5525, 1297, 7941, 4921, 6129, 6733, 7639, 693, 4015, 2203, 2505, 995, 3411, 5827, 9149, 9753,
9753, 3713, 5827, 6431, 3109, 6431, 7035, 4619, 5223, 1901, 5827, 9451, 6733, 2203, 995, 7337, 3411, 391, 2505,
693, 5223, 7639, 9451, 2203, 3109, 6431, 89, 5223, 5525, 8545, 6733, 2807, 5827, 8545, 1599, 2203, 391, 9753, 5525,
4619, 7337, 6733, 1901, 2505, 89, 7035, 8847, 89, 4921, 9149, 2807, 4619, 8545, 7035, 1297, 4921, 5223, 2807, 4921,
9149, 7941, 8545, 6733, 2807, 2807, 5223, 391, 89, 2807, 1599, 5827, 3109, 6733, 4619, 5525, 4317, 693, 4015, 995,
6129, 4921, 8847, 4619, 9451, 9149, 9753, 5223, 6431, 6733, 5525, 6129, 995, 4921, 2505, 6129, 7941, 8847, 3109,
6733, 4015, 89, 7639, 1599, 4317, 3109, 6733, 3713, 6431, 9753, 5223, 89, 4619, 3411, 2203, 9149, 7941, 4317, 391,
9753, 9149, 8545, 6733, 9451, 7035, 8243, 391, 7639, 8847, 89, 89, 5525, 7035, 6129, 2203, 4619, 6129, 995, 8243,
7639, 1297, 8545, 2505, 1599, 8243, 4015, 3109, 7941, 5525, 7639, 7941, 2505, 3109, 6431, 2505, 1901, 1297, 7035,
3411, 6129, 6733, 8243, 391, 3109, 391, 9149, 9753, 1901, 693, 8545, 3109, 2807, 1599, 1297, 6431, 7639, 3109,
5827, 6431, 4619, 7639, 7337, 89, 995, 2505, 7639, 693, 8545, 4317, 5827, 2505, 391, 1901, 6129, 6129, 2203, 9451,
391, 89, 2203, 5525, 995, 2203, 7337, 2203, 995, 6733, 4317, 9451, 4921, 5525, 2505, 3713, 9451, 5525, 7337, 9753,
89, 9149, 7941, 5223, 4619, 89, 6733, 4921, 7337, 8847, 391, 1901, 7639, 693, 4619, 3411, 2807, 6129, 4317, 391,
5827, 1901, 391, 8847, 6431, 995, 5223, 1297, 5223, 2505, 995, 8243, 4015, 5223, 1901],
[8545, 8847, 7639, 3109, 89, 9451, 89, 8545, 1297, 89, 9451, 8847, 7941, 6129, 1901, 391, 3713, 8243, 4015, 3411,
6129, 9149, 8847, 1297, 6733, 4619, 7639, 391, 4921, 8847, 995, 2505, 7035, 6129, 5223, 89, 6431, 3713, 6431, 4921,
2505, 3411, 391, 89, 4921, 9753, 7035, 6431, 391, 9451, 4015, 4619, 89, 3411, 7941, 4619, 8243, 6733, 5827, 1297,
7941, 7035, 4015, 3713, 4317, 4619, 4317, 89, 3109, 391, 4619, 8847, 9149, 4921, 3713, 1599, 89, 6431, 1297, 5525,
8847, 5827, 2203, 8847, 995, 391, 3713, 9149, 6733, 2807, 2807, 8545, 3713, 7941, 4921, 693, 5525, 5827, 8847,
1599, 8847, 4619, 9149, 5827, 693, 8243, 2203, 5525, 5525, 5223, 9753, 7035, 1297, 6129, 1297, 2203, 9149, 9149,
1901, 89, 693, 9451, 7035, 9753, 8545, 4619, 3713, 2505, 7337, 3713, 2203, 8243, 8545, 8545, 6431, 5827, 9753,
4317, 391, 4921, 1599, 3411, 2807, 4015, 5525, 3109, 7639, 9149, 4921, 1901, 4921, 391, 2203, 9451, 89, 4921, 5525,
4921, 8243, 4015, 4921, 693, 5223, 7941, 2203, 9753, 5525, 8545, 995, 5525, 6431, 89, 8847, 3713, 391, 1901, 3411,
3411, 5223, 3109, 9451, 7337, 2203, 1901, 6431, 2203, 5525, 5223, 2505, 693, 5827, 6129, 1297, 995, 5827, 1599,
4015, 4619, 2203, 5525, 4619, 7639, 8243, 8545, 693, 7035, 9149, 7941, 7337, 2505, 4921, 2807, 9451, 2203, 6431,
6129, 1297, 1297, 4921, 2505, 2203, 8847, 8545, 693, 7639, 3713, 1297, 5827, 9149, 1599, 9753, 3411, 3411, 4619,
2807, 6129, 4619, 8847, 5525, 4317, 89, 89, 995, 5827, 5525, 5827, 6733, 3411, 391, 3109, 89, 6431, 2505, 9451,
7035, 2505, 5525, 8243, 995, 995, 391, 3713, 9753, 4619, 995, 4619, 3411, 7639, 2505, 1901, 3109, 6733, 5525, 1599,
5525, 6431, 2505, 3109, 4317, 2203, 2505, 391, 5525, 5223, 4015, 7639, 3109, 4317, 7035, 8243, 9753, 7035, 6431,
5827, 1901, 6431, 7639, 3713, 995, 8545, 89, 6129, 9451, 1297, 2505, 1297, 7035, 7639, 6431, 9451, 995, 5827, 5223,
2203, 2505, 1599, 9753, 391, 5525, 5827, 3109, 7941, 5827, 8545, 7941, 9753, 3109, 3411, 3411, 1901, 995, 7035,
7941, 4015, 6129, 693, 7337, 693, 1297, 7035, 5827, 3109, 5525, 5223, 1297, 5525, 5223, 5827, 1599, 4921, 2807,
7941, 9149, 9753, 391, 4921, 4015, 6129, 995, 5525, 3713, 6733, 1297, 7639, 995, 1297, 4015, 3411, 6733, 2203,
5827, 7941, 9451, 2505, 7337, 7337, 1599, 9753, 7941, 6431, 7941, 4317, 5525, 4921, 2203, 4317, 2203, 7337, 3411,
2807, 1599, 2505, 693, 9451, 5827, 7941, 8243, 2203, 89, 5223, 1297, 9753, 2203, 2203, 7941, 6733, 4619, 9753,
3109, 7035, 5525, 6129, 4921, 693, 1901, 89, 4619, 8847, 9451, 4619, 8243, 1297, 4015, 9149, 1599, 6733, 1901,
7337, 4317, 7035, 1599, 4619, 8243, 4619, 3713, 7337, 1901, 4619, 693, 7941, 7941, 693, 391, 89, 9753, 3411, 8545,
8545, 1599, 1297, 4619, 6733, 2807, 3411, 8243, 6431, 9149, 1297, 5827, 7337, 995, 4619, 2203, 1599, 5223, 7035,
4921, 9149, 4015, 2203, 9451, 7941, 6431, 7337, 7639, 3109, 7639, 995, 6129, 995, 5525, 1297, 9753, 9451, 3411,
9753, 9451, 1901, 2203, 693, 6129, 9451, 3713, 3713, 7337, 4921, 89, 4015, 391, 2505, 5525, 4619],
[5827, 6431, 1297, 391, 9451, 9753, 4015, 9753, 693, 7941, 4317, 3109, 1901, 6129, 4317, 4015, 7337, 3713, 1901,
4317, 3411, 391, 4015, 8243, 8847, 4015, 693, 8243, 1297, 3411, 3411, 3713, 5223, 6733, 995, 9451, 7337, 4921,
8545, 995, 3411, 693, 1599, 7639, 7035, 2505, 7035, 2203, 9753, 995, 9149, 4015, 391, 2807, 5525, 5525, 2807, 9451,
4619, 8847, 6431, 1297, 9149, 4921, 7941, 5827, 8847, 1599, 4619, 7639, 1297, 1901, 4619, 6431, 2505, 5525, 8847,
6431, 391, 4921, 6129, 4619, 995, 4921, 5827, 4015, 6733, 391, 1297, 7035, 9753, 9149, 995, 7337, 2505, 6431, 6733,
4619, 2505, 4921, 7337, 7337, 995, 5827, 9753, 2807, 3109, 2807, 4619, 9451, 3411, 7035, 3109, 8847, 3713, 5827,
6129, 6129, 7337, 9149, 1901, 693, 1901, 2807, 2807, 7639, 7941, 7337, 9149, 391, 6733, 9753, 995, 2203, 1297,
5223, 391, 9451, 4317, 693, 3109, 6431, 693, 4317, 995, 5223, 8243, 2807, 8243, 1901, 89, 4015, 6733, 3109, 3713,
6733, 2203, 4619, 7639, 9149, 391, 7639, 6733, 6733, 2807, 3109, 7337, 6129, 995, 9451, 8545, 9753, 4619, 8847,
6129, 995, 6431, 89, 4317, 8243, 3411, 5223, 1297, 9451, 4619, 5827, 4317, 4921, 4921, 6129, 8847, 693, 7639, 89,
2203, 2807, 2505, 2505, 4015, 4317, 6129, 4317, 6733, 7337, 9451, 5223, 9451, 693, 4921, 8545, 7337, 9451, 2505,
89, 9149, 7337, 391, 4619, 8545, 6431, 5223, 2203, 6733, 4317, 6733, 8847, 2505, 4317, 7639, 7035, 5525, 9451,
2203, 4921, 7337, 4921, 4317, 9451, 2807, 4015, 6129, 693, 9451, 6733, 4015, 9753, 8243, 6431, 9451, 7941, 5223,
995, 1901, 9149, 5223, 1599, 5525, 9451, 7941, 5223, 693, 2807, 7337, 4015, 2505, 2505, 4921, 9753, 9753, 1297,
9451, 9451, 5827, 3713, 4015, 4015, 7941, 2505, 5223, 7035, 9451, 7337, 6733, 8847, 8243, 3109, 3713, 7337, 3713,
391, 4317, 6431, 9149, 6431, 7639, 8243, 4015, 2807, 8847, 9753, 89, 3713, 7941, 6733, 4317, 7941, 7337, 3713,
6129, 3411, 3109, 8545, 8243, 7639, 2505, 5223, 2505, 9753, 5223, 693, 8243, 9451, 4921, 693, 2807, 9451, 4317,
1297, 7035, 1599, 6733, 4015, 1297, 9149, 2807, 3109, 4015, 2807, 6733, 4317, 7035, 4015, 8243, 1901, 2807, 4015,
8545, 2807, 3411, 2203, 4015, 1297, 2505, 4015, 6431, 6129, 6129, 1297, 7337, 3411, 2505, 6129, 7639, 391, 2807,
995, 7941, 89, 9451, 4921, 6733, 8545, 3713, 3109, 2807, 4619, 8847, 1901, 7337, 8545, 6733, 4317, 391, 2505, 8545,
995, 7639, 7035, 1599, 7639, 8243, 8243, 4921, 995, 8545, 9451, 9451, 995, 3411, 2505, 2807, 8243, 5827, 8545,
1599, 9149, 3411, 9753, 3713, 4619, 1599, 6733, 2203, 1599, 4015, 2807, 9753, 3713, 5827, 6733, 9753, 7941, 693,
5223, 5223, 7639, 693, 4015, 3713, 5525, 5827, 6129, 3109, 6431, 1901, 9451, 995, 1901, 3109, 6129, 7941, 6431,
8243, 9451, 4317, 3713, 693, 6129, 1901, 8243, 8847, 1297, 7941, 4015, 1599, 8545, 7639, 2807, 1901, 4015, 4015,
1599, 5223, 9451, 2203, 3109, 3109, 391, 5223, 8243, 4619, 6431, 8243, 1297, 5223, 3713, 5525, 2807, 5223, 6733,
9753, 4015, 5827, 4317, 8847, 7639, 9451, 7337, 3411, 8545, 5525, 1297, 2807, 6733, 2505, 995, 9451, 3109, 9149,
995, 4015, 1901],
[7639, 9451, 2505, 2807, 4015, 391, 1297, 7941, 693, 2505, 693, 2505, 5223, 7337, 9753, 1599, 8545, 9451, 1599,
2203, 4619, 9451, 6431, 5827, 8545, 9451, 4015, 1599, 4317, 6733, 6129, 2505, 4619, 1599, 1901, 6431, 2203, 1901,
9149, 8545, 2505, 9451, 9149, 7941, 2807, 6129, 3411, 6733, 8847, 4317, 2203, 4921, 4921, 4921, 5525, 4619, 7639,
4317, 2505, 4317, 4015, 8545, 9753, 7337, 3411, 6431, 6733, 3713, 8545, 4317, 3109, 89, 5827, 3109, 7035, 7639,
8847, 2505, 5525, 4317, 8847, 7035, 3109, 5827, 1297, 5223, 2203, 6129, 4619, 5223, 1297, 1599, 3713, 7941, 9451,
4317, 8243, 2807, 3109, 7337, 2505, 9149, 6129, 4619, 7337, 4619, 9149, 7337, 9753, 1901, 391, 8243, 6733, 2505,
8243, 7337, 4015, 7035, 7337, 6733, 5525, 5525, 9149, 2807, 89, 7639, 1297, 7639, 5223, 9451, 5525, 5827, 7337,
3109, 693, 6431, 9451, 9451, 9753, 5223, 8243, 1901, 5525, 4921, 4619, 5223, 995, 4619, 4921, 6129, 1901, 4921,
8545, 7941, 6431, 4317, 6733, 3713, 89, 8545, 5827, 89, 1297, 995, 995, 693, 8545, 9753, 7337, 4015, 9149, 4619,
4317, 3411, 8847, 391, 391, 3411, 8847, 6431, 995, 5827, 2505, 9753, 1297, 6733, 995, 995, 8243, 995, 5827, 89,
1901, 2807, 5827, 4015, 4015, 693, 6733, 8847, 8847, 995, 4619, 4317, 7035, 8545, 5827, 5827, 8243, 7941, 1901,
693, 6129, 4921, 5525, 8847, 7035, 391, 693, 89, 8847, 1901, 8847, 4015, 5525, 5827, 8847, 89, 6431, 9451, 5827,
5525, 8545, 2505, 3713, 4921, 5525, 8545, 7941, 1599, 5827, 2505, 6431, 5827, 4619, 8243, 1901, 1599, 7035, 9149,
5525, 4921, 1297, 4015, 6129, 6733, 2505, 2807, 7941, 995, 4317, 8847, 8545, 89, 2807, 8243, 1901, 6733, 9753, 89,
6733, 7035, 3109, 7941, 3713, 995, 5223, 5827, 1901, 3713, 3109, 3109, 8847, 3713, 1901, 8243, 4317, 9451, 995,
8847, 4015, 7337, 4015, 995, 8545, 2203, 9451, 7035, 3411, 2203, 7337, 8847, 6129, 9451, 6129, 1599, 8243, 1297,
4619, 2505, 6733, 7639, 1901, 1901, 89, 3109, 4619, 391, 8243, 4015, 7337, 4015, 6129, 9149, 391, 9149, 2203, 9451,
6733, 3411, 89, 2203, 2203, 8545, 2505, 9451, 9753, 8545, 6129, 8243, 9753, 4015, 6733, 6431, 4921, 693, 6431,
3411, 9753, 3109, 6129, 7941, 89, 2807, 2203, 4015, 7035, 5525, 8545, 9149, 7337, 693, 3109, 995, 6129, 7337, 2505,
6733, 7337, 7035, 4921, 7337, 6733, 1901, 1599, 3109, 6431, 7035, 5525, 4921, 9149, 4317, 5827, 7639, 693, 7035,
1599, 693, 391, 3411, 391, 6431, 4619, 995, 2807, 1599, 7035, 995, 995, 6431, 6733, 5525, 4015, 2807, 7337, 8243,
6733, 1297, 4619, 7337, 4921, 5827, 7941, 7941, 7035, 3109, 2203, 391, 5223, 3713, 8545, 5525, 6733, 9753, 9451,
1901, 4619, 7941, 8545, 391, 1297, 8847, 7639, 5223, 2505, 9753, 4921, 8847, 8545, 3109, 89, 995, 9451, 995, 4015,
9149, 2807, 9149, 4921, 5525, 4921, 3411, 9451, 9149, 6733, 2505, 5223, 6733, 4317, 89, 4015, 4921, 5827, 3411,
4015, 3411, 391, 7337, 7035, 5525, 995, 4317, 7639, 1901, 7639, 6733, 6129, 2203, 7337, 3109, 4619, 1599, 4015,
3109, 3411, 89, 4317, 7639, 3109, 5827, 89, 3411, 1297, 9753, 6129, 9753, 1297, 6129, 9753, 995, 3109, 4921],
[8847, 8847, 8545, 2203, 391, 5223, 6129, 1599, 391, 2505, 7639, 4921, 4015, 2505, 2807, 1297, 4619, 2505, 9753,
5525, 3411, 89, 8847, 9451, 8545, 693, 995, 7639, 3713, 4921, 6733, 1901, 8545, 7941, 8847, 693, 4015, 7941, 7639,
9753, 4015, 693, 7941, 7035, 1599, 6733, 6733, 3713, 7941, 9753, 5525, 8847, 2203, 3411, 1297, 3411, 1599, 8847,
1901, 2505, 6129, 4317, 4317, 7337, 89, 1901, 3411, 5525, 7941, 9451, 9149, 4317, 3713, 6733, 995, 6733, 4317, 391,
995, 7941, 7941, 3411, 391, 7639, 9149, 995, 5827, 391, 2505, 4921, 2203, 1297, 89, 7035, 7035, 693, 391, 89, 9451,
4015, 7941, 6431, 4921, 5223, 4317, 5827, 8847, 9451, 89, 9451, 7337, 1297, 2203, 3713, 7941, 3109, 391, 6733,
9451, 3411, 1901, 7941, 9753, 8545, 7941, 3411, 2807, 9149, 7337, 4921, 1599, 995, 7035, 995, 391, 7941, 6129,
9451, 8545, 4619, 4015, 5223, 8545, 8847, 1901, 5827, 693, 9753, 1297, 4317, 3713, 5525, 7337, 391, 1297, 2203, 89,
4921, 3411, 3713, 89, 3713, 1901, 6733, 391, 391, 1599, 995, 9149, 4317, 2807, 8847, 1599, 6733, 4317, 6129, 9753,
8545, 5827, 7337, 2505, 8243, 2807, 3411, 7639, 693, 6129, 2203, 8847, 693, 8243, 693, 5525, 4921, 4015, 1901,
2807, 2203, 5223, 5223, 5223, 4015, 6129, 6733, 2807, 391, 1901, 9451, 8243, 7941, 7035, 6431, 8545, 5827, 7639,
1297, 2505, 4015, 9149, 89, 7337, 2807, 4921, 7035, 9149, 6129, 3713, 8847, 391, 9451, 3109, 2505, 2807, 6733, 693,
7035, 2203, 6431, 3109, 9149, 1297, 4317, 2505, 1901, 1297, 3109, 4015, 4619, 7337, 6431, 9753, 6431, 1297, 8847,
2807, 1901, 391, 6431, 7035, 9753, 6431, 693, 89, 8847, 2807, 8243, 4921, 5525, 7035, 995, 3411, 4015, 7639, 6733,
1901, 5827, 1599, 7337, 3109, 4015, 6733, 7035, 1901, 7639, 9753, 4921, 7941, 9753, 4015, 4619, 7337, 8243, 5827,
3109, 8545, 995, 7035, 2807, 7639, 2505, 8545, 2807, 2807, 4619, 693, 693, 5223, 1599, 5525, 5223, 1599, 6431,
4317, 7639, 3713, 3713, 2203, 8243, 7941, 3411, 391, 4921, 5525, 9753, 4619, 5223, 9451, 693, 3109, 7639, 8243,
1901, 4921, 4015, 3109, 7035, 7337, 5827, 391, 7941, 6129, 3411, 6431, 2807, 8545, 6431, 3713, 2203, 7035, 7941,
693, 1297, 5827, 2505, 5223, 3109, 2807, 4317, 6431, 3411, 1599, 5827, 4015, 7941, 3411, 6129, 6129, 3713, 1901,
8243, 7337, 3411, 9451, 3713, 4619, 5827, 8243, 7337, 995, 7941, 5827, 9149, 7639, 2807, 4317, 7337, 693, 8243,
1297, 4317, 5223, 2505, 995, 5223, 1297, 995, 4619, 2807, 4619, 995, 3713, 2203, 89, 7035, 5827, 3411, 6129, 4619,
4921, 4619, 5827, 5525, 9753, 4619, 9451, 4619, 5525, 7337, 9149, 391, 8847, 7639, 6431, 5525, 995, 9753, 5525,
8545, 7639, 8243, 1297, 5223, 3713, 7337, 8847, 7639, 391, 4317, 7941, 2203, 8545, 3713, 2807, 2203, 2807, 5223,
5827, 89, 7941, 693, 7337, 2505, 7337, 3109, 7035, 6431, 3713, 2807, 995, 8243, 3109, 89, 6129, 2807, 6733, 5223,
4921, 9753, 6431, 9451, 8847, 7035, 3411, 7035, 9451, 9149, 1297, 7941, 5223, 995, 8243, 3109, 9753, 1901, 8243,
6733, 4619, 5525, 7639, 1901, 2505, 4619, 4015, 4619, 9451, 2807, 1901, 2807, 1901, 2203, 4619, 5223],
[1599, 89, 7639, 2203, 8847, 6733, 995, 7337, 7035, 391, 2807, 3713, 4317, 693, 9149, 5827, 2807, 995, 6733, 9149,
1901, 995, 5827, 5525, 2807, 4015, 3109, 6733, 4921, 8545, 6129, 391, 9753, 9753, 1297, 4015, 4619, 4317, 1599,
1599, 1297, 3713, 1901, 4015, 3411, 6129, 2807, 5827, 5223, 3713, 7035, 3713, 8847, 7639, 9753, 4015, 8847, 6129,
8243, 5525, 7639, 4619, 89, 6431, 9149, 7337, 2505, 7941, 5223, 1901, 3109, 1599, 9753, 2807, 7337, 391, 4921,
3109, 6733, 8545, 9149, 1599, 391, 391, 89, 3411, 995, 7337, 4619, 391, 5827, 3713, 7035, 4015, 5525, 2807, 391,
2505, 5223, 7035, 7941, 7639, 2203, 4317, 2807, 7941, 7337, 3713, 89, 4317, 1297, 9451, 5827, 9451, 8545, 8545,
7941, 3411, 5827, 7337, 7941, 89, 995, 2807, 2203, 2203, 2203, 3109, 5525, 5525, 3411, 6129, 4015, 6431, 9451, 391,
7941, 7941, 7639, 2505, 7035, 6129, 4921, 4317, 9451, 995, 3109, 9753, 3109, 391, 2505, 2505, 5223, 9451, 7941,
1901, 9451, 3411, 391, 391, 4015, 995, 8545, 7035, 7035, 8243, 7035, 1297, 9753, 2807, 3411, 5525, 7337, 9149,
5525, 4015, 1297, 2505, 9149, 9753, 9149, 5223, 7035, 4317, 995, 1297, 7639, 5223, 9149, 8243, 4619, 2505, 3411,
9451, 693, 7035, 9451, 4619, 3109, 8243, 5827, 1297, 5525, 4015, 8847, 4317, 3411, 995, 3411, 2807, 5827, 6733,
3713, 9149, 8243, 9149, 8847, 2807, 5827, 693, 5223, 2807, 7337, 391, 8545, 6129, 9149, 6431, 5525, 7337, 9451,
4015, 9149, 8847, 7035, 3109, 4317, 8243, 4317, 2505, 6733, 1599, 3713, 391, 1297, 6431, 2203, 8545, 1599, 4317,
4015, 6733, 3713, 9451, 995, 4619, 7941, 5827, 3713, 1901, 8847, 89, 8243, 4015, 7941, 7639, 4619, 8847, 4015,
4015, 995, 7639, 2203, 9753, 5223, 4921, 4015, 8545, 8545, 1901, 6129, 6733, 5525, 391, 8847, 7035, 7337, 8545,
3109, 7337, 1901, 4015, 4015, 9149, 3713, 693, 3411, 9451, 1901, 89, 391, 5223, 1599, 1901, 1901, 2807, 4015, 2203,
3713, 9149, 8847, 7941, 4619, 3411, 5525, 693, 7639, 391, 6733, 995, 1297, 1599, 89, 4015, 6733, 5223, 7035, 5223,
1599, 89, 7639, 89, 2203, 7035, 4619, 8545, 8545, 4317, 6431, 6431, 4921, 4921, 391, 5525, 6431, 1901, 5525, 8847,
9149, 4015, 5827, 6431, 8545, 4317, 9451, 5827, 8847, 5525, 4317, 5223, 995, 7639, 9753, 7035, 7035, 8243, 1599,
4015, 995, 693, 89, 2203, 4921, 1901, 693, 89, 5223, 3109, 5223, 2807, 4619, 9451, 7941, 1901, 7941, 1901, 693,
8847, 693, 1599, 1901, 7941, 7639, 4317, 6431, 2203, 7035, 5525, 1599, 391, 693, 5827, 4619, 5827, 8545, 2203,
1901, 7035, 9753, 6129, 6431, 9149, 89, 4921, 3109, 3109, 4015, 3411, 8243, 5223, 7941, 4619, 3713, 995, 5525,
8545, 3109, 6129, 6129, 7639, 9753, 4619, 3713, 8847, 995, 995, 6431, 7941, 1599, 7941, 5827, 2505, 7337, 1901,
7337, 7941, 1599, 9753, 7941, 6733, 7941, 1297, 7941, 1599, 2505, 7337, 4015, 9451, 5827, 7639, 4317, 4921, 7941,
8545, 89, 7337, 89, 4015, 1901, 5827, 8243, 693, 2505, 5525, 9149, 7941, 8847, 1297, 5827, 8243, 6129, 1901, 1599,
89, 4317, 8847, 995, 89, 9149, 6129, 2203, 9149, 7035, 3109, 7639, 6129, 995, 2807, 1297, 4317, 3411, 8243],
[2807, 4317, 2505, 7941, 1901, 995, 8243, 4317, 4921, 5827, 4619, 6129, 8243, 1599, 1901, 995, 8243, 7639, 5223,
6431, 5525, 391, 8545, 8545, 8243, 8243, 9149, 6733, 4619, 8243, 6733, 4619, 7941, 6733, 9149, 2203, 7941, 89,
8243, 6129, 6733, 391, 2807, 1297, 5525, 89, 8243, 3109, 7337, 7639, 3109, 1297, 6129, 2807, 6733, 4619, 2807,
6733, 1599, 7639, 2807, 4619, 693, 5827, 1599, 4619, 7035, 4921, 8847, 2505, 7035, 1297, 2807, 1901, 3411, 2505,
3713, 7639, 6431, 995, 4015, 5827, 1297, 391, 2203, 6129, 4317, 2505, 8847, 5525, 9149, 2505, 2807, 4921, 4015,
7035, 995, 5827, 995, 1297, 4317, 8545, 7337, 8243, 9149, 4921, 3411, 5223, 6733, 3109, 2505, 9451, 3411, 693,
7639, 1297, 4015, 6129, 8243, 3713, 3713, 3109, 6733, 7337, 4317, 5827, 391, 3411, 4317, 8545, 9451, 7035, 7639,
4619, 995, 6129, 9149, 4015, 7941, 8847, 3411, 995, 693, 6431, 2807, 5827, 2505, 391, 7035, 2505, 9451, 7337, 7035,
3411, 7639, 1901, 3109, 4921, 3713, 3109, 9753, 9149, 3109, 7337, 8243, 8847, 4317, 391, 5223, 4619, 4317, 9149,
2203, 995, 1297, 5525, 4015, 7941, 2203, 1901, 89, 995, 6431, 995, 3411, 9753, 4619, 9149, 3713, 6733, 9149, 7639,
4317, 2505, 3713, 3713, 4921, 3411, 4015, 8847, 2203, 9149, 1297, 3713, 6733, 7337, 7639, 1297, 5525, 2807, 9149,
1297, 2807, 4317, 1297, 9753, 6129, 8243, 2505, 6129, 3713, 2807, 1599, 7035, 7639, 6129, 2505, 4921, 2807, 995,
8243, 3109, 4921, 4921, 6129, 3109, 1297, 2505, 9753, 89, 693, 9149, 8545, 9451, 6431, 8847, 7941, 6129, 3109, 693,
391, 7035, 4317, 7337, 9149, 4921, 5525, 5223, 89, 4619, 9149, 7337, 7035, 6129, 1297, 1901, 8545, 3713, 6733,
9753, 5827, 5827, 9149, 693, 5827, 1297, 3109, 2505, 1297, 5223, 5223, 6431, 7941, 7639, 6431, 693, 89, 6733, 1297,
3713, 6129, 6733, 6431, 9451, 6733, 8545, 8847, 1901, 9451, 2505, 7941, 6431, 5827, 7035, 5525, 4317, 4619, 8243,
8847, 8545, 1297, 7941, 4921, 1599, 6733, 9149, 4619, 3109, 7639, 9451, 2807, 2807, 9753, 3109, 3411, 1297, 4619,
7337, 8847, 1599, 4921, 6733, 9451, 693, 7639, 693, 9149, 2505, 9451, 4015, 7941, 5525, 5827, 4619, 391, 391, 6431,
5827, 8243, 8243, 7639, 8847, 7035, 6733, 4317, 7035, 6733, 2203, 4619, 4015, 9149, 3411, 7941, 9753, 7941, 4619,
8847, 2505, 3109, 391, 7035, 4921, 2505, 4619, 89, 4317, 8243, 4619, 5525, 4619, 7639, 2807, 391, 1901, 8545, 4921,
8243, 4317, 6431, 995, 5223, 7941, 3713, 89, 2807, 8545, 9451, 995, 2203, 8243, 7941, 6733, 2505, 6129, 1901, 4317,
5223, 2505, 8243, 7035, 391, 89, 4317, 6129, 3109, 2807, 5223, 9149, 3411, 2505, 3109, 7035, 7639, 6733, 1901,
2807, 4317, 4015, 4921, 3411, 1599, 9753, 3109, 8243, 995, 5525, 3713, 2203, 1599, 4015, 8243, 8545, 6129, 6733,
3109, 1901, 89, 5223, 3411, 3713, 391, 8847, 1901, 693, 391, 2807, 4619, 7639, 1297, 1901, 3713, 89, 6431, 8847,
4015, 5525, 89, 4619, 5525, 2203, 4921, 1901, 2505, 3411, 3713, 1297, 89, 2203, 4317, 2203, 5525, 9451, 6431, 7035,
2203, 3109, 3713, 4317, 6733, 7337, 2807, 5223, 4619, 2505, 3411, 1297, 4921, 9451, 9149, 391, 391, 7941],
[2505, 5525, 8545, 3713, 391, 7035, 9753, 4619, 8847, 7639, 7035, 6129, 9451, 4317, 9753, 995, 5827, 7337, 1599,
9753, 7337, 3109, 5223, 4015, 8847, 8545, 4921, 4619, 1599, 8847, 4619, 4015, 3411, 4619, 2807, 4015, 6129, 4921,
7337, 1599, 2203, 7639, 391, 2807, 2203, 3713, 995, 5827, 8545, 391, 6733, 3109, 1297, 8847, 4921, 5525, 8243,
2505, 3109, 8243, 1901, 693, 6431, 8847, 4921, 5223, 693, 4619, 8545, 3411, 4015, 995, 4921, 3411, 4015, 1901,
2807, 5525, 9149, 2807, 5827, 2203, 3713, 1297, 9451, 3109, 2807, 7941, 693, 5827, 6431, 7639, 9149, 7035, 7639,
391, 7035, 5525, 2203, 995, 5525, 5525, 6431, 2807, 5827, 4619, 2203, 9753, 5827, 7035, 1599, 2203, 89, 8847, 89,
3109, 7941, 2203, 9149, 8847, 5525, 4015, 995, 4619, 8243, 4921, 5525, 6431, 4015, 2807, 8243, 3109, 8243, 2203,
2505, 2203, 1901, 1297, 5525, 1599, 7639, 2807, 7035, 9451, 3109, 6733, 4317, 89, 693, 4015, 9451, 8545, 6733,
4619, 6431, 391, 1599, 8243, 8847, 3713, 8847, 995, 3411, 8243, 8545, 693, 3411, 995, 9451, 6431, 693, 3109, 2505,
7035, 8545, 6733, 6733, 1901, 7639, 8243, 8847, 4619, 9753, 7337, 391, 4015, 2505, 6129, 4015, 2807, 8243, 995,
8847, 2505, 5525, 8847, 5223, 3713, 2203, 7337, 7941, 6431, 1297, 2203, 4619, 7035, 1297, 8243, 1599, 7941, 2505,
693, 7337, 2203, 4317, 3109, 6733, 5827, 89, 2505, 8545, 2505, 693, 5223, 4921, 7337, 7639, 4015, 2505, 9451, 3713,
995, 995, 8243, 5525, 5827, 995, 6129, 4619, 89, 6129, 6733, 5223, 7639, 2203, 995, 1599, 4317, 7941, 9753, 8545,
4619, 1297, 1901, 1297, 4015, 3411, 9451, 6733, 4317, 3713, 1901, 2807, 8847, 89, 5827, 4015, 9753, 4619, 391,
4015, 6733, 693, 4921, 5223, 8847, 995, 3109, 6733, 4921, 1599, 995, 5827, 1599, 9149, 8847, 6431, 2505, 2807, 995,
7941, 2807, 2807, 9753, 995, 8545, 3713, 3713, 7941, 3411, 5525, 2203, 7639, 1901, 8847, 3109, 4317, 2203, 3411,
6733, 9753, 4619, 6129, 3713, 9149, 2203, 4619, 6129, 995, 8243, 3411, 3109, 3109, 89, 4921, 3109, 1297, 7035,
3411, 3411, 693, 995, 9149, 4921, 7941, 8847, 7639, 7941, 1901, 6129, 995, 5223, 3411, 5223, 7337, 2807, 3713,
4015, 1297, 2807, 3411, 7035, 4921, 5525, 5223, 9149, 995, 8847, 8545, 5525, 6129, 7337, 1901, 9149, 89, 6431,
7035, 2505, 89, 6431, 2807, 4921, 9149, 4317, 995, 2807, 3109, 3109, 9753, 7639, 9451, 4619, 4619, 9451, 8243,
7337, 2807, 9753, 7035, 9753, 2505, 2505, 391, 2203, 89, 391, 6129, 4921, 391, 5827, 2807, 89, 5827, 6733, 3713,
5525, 5223, 6733, 7337, 4619, 8243, 8545, 4921, 3411, 2505, 5223, 7337, 995, 391, 8545, 995, 3713, 9451, 8545,
3109, 9753, 995, 4317, 8243, 693, 3109, 8545, 2807, 995, 693, 9149, 6431, 1599, 7639, 7639, 2505, 1297, 5525, 4921,
8545, 391, 2505, 5223, 3713, 6431, 7337, 4015, 693, 1599, 6431, 1297, 7639, 8243, 3109, 4619, 4619, 9753, 4921,
6129, 6431, 6733, 2505, 6431, 7337, 2505, 7035, 6733, 5223, 3713, 8243, 2807, 4619, 5223, 4921, 6129, 4317, 5525,
8847, 391, 693, 3411, 2505, 5525, 693, 693, 4015, 4317, 6733, 7639, 5223, 3109, 7035, 89, 7337, 6733, 1297, 9149],
[1297, 1599, 6431, 995, 9753, 6129, 9753, 4317, 3411, 9149, 89, 7639, 5525, 1901, 2203, 5223, 7035, 1297, 8243,
3713, 5827, 3109, 1599, 4921, 4015, 391, 5827, 7941, 9753, 3411, 693, 2203, 89, 7941, 3109, 3713, 6431, 4921, 1901,
9149, 4921, 7035, 1297, 3109, 4317, 6129, 9149, 4921, 4015, 5223, 4921, 7941, 6431, 8243, 693, 4015, 7639, 7941,
693, 4921, 4619, 4921, 1901, 3411, 8545, 4317, 7639, 5525, 2505, 1599, 5525, 89, 4015, 2203, 2203, 5827, 8243,
6431, 3713, 3109, 2203, 6733, 8847, 7035, 693, 4015, 5223, 4015, 7035, 693, 7639, 1297, 5827, 8243, 5827, 1901,
8243, 8243, 7035, 8243, 1297, 1297, 5525, 2505, 89, 1297, 9753, 2505, 995, 3109, 3713, 3109, 5827, 2203, 7941,
9149, 5827, 7035, 7337, 4317, 7639, 995, 3713, 6431, 7639, 6129, 7337, 9451, 6733, 7639, 5827, 7337, 3411, 3109,
391, 2203, 9451, 89, 3411, 5525, 9149, 7035, 1901, 391, 5223, 4921, 8847, 9451, 8243, 4921, 9149, 1599, 6129, 7941,
2505, 1901, 1599, 8847, 1901, 693, 3109, 5827, 2807, 7639, 89, 391, 3411, 9149, 6129, 3109, 4015, 2807, 1901, 8847,
5525, 8243, 391, 5525, 4619, 9451, 7035, 2505, 3411, 9753, 1599, 1297, 6431, 693, 5223, 7035, 8243, 6129, 1901,
1901, 4921, 8545, 6733, 4015, 5827, 8545, 6431, 5827, 5827, 995, 4317, 4317, 7035, 8545, 9149, 9753, 6129, 5525,
8243, 89, 2807, 6129, 1297, 89, 9753, 3109, 693, 3713, 3713, 7337, 2807, 6733, 6431, 2203, 693, 2505, 2807, 391,
2203, 4015, 693, 3411, 89, 6129, 7035, 3411, 1297, 3109, 9451, 1297, 2505, 3109, 4921, 7639, 995, 1297, 4317, 3713,
9451, 1599, 4921, 995, 2505, 9451, 8545, 995, 5827, 2505, 8847, 8243, 3713, 5827, 5223, 8243, 995, 5223, 8545,
8847, 7035, 7337, 391, 5223, 9451, 4015, 4015, 7639, 4317, 3411, 391, 7639, 6733, 7639, 6733, 6733, 5525, 4619,
8545, 4921, 4921, 7035, 9149, 2505, 693, 2203, 6431, 995, 9451, 391, 7035, 8545, 7337, 2203, 6129, 5223, 6733,
9149, 1297, 1297, 5223, 8545, 4317, 5827, 2807, 391, 8545, 7639, 391, 4619, 6733, 7941, 6733, 3713, 4921, 6431,
8847, 6733, 8545, 8545, 9753, 3411, 5525, 1901, 7639, 6431, 9149, 7941, 1297, 2505, 995, 2505, 1297, 3713, 4921,
7035, 3109, 7035, 9753, 6431, 391, 3109, 1599, 3713, 7639, 1599, 3411, 89, 4317, 2203, 391, 6431, 2807, 9451, 3713,
5223, 9451, 9753, 5827, 8847, 4921, 5525, 6129, 5827, 3713, 2505, 7035, 3411, 5827, 7337, 5223, 1297, 693, 693,
7941, 9451, 1901, 8545, 2203, 5827, 4619, 5827, 7639, 6431, 995, 3411, 6129, 1901, 3109, 8847, 3411, 391, 6431,
2807, 7035, 1599, 4619, 2505, 4921, 3109, 2505, 2203, 7337, 4317, 6733, 3713, 3713, 5827, 8243, 5223, 5223, 9149,
6431, 3713, 995, 693, 2807, 3713, 3411, 89, 2203, 3713, 2807, 1297, 2203, 89, 5827, 1297, 6733, 6733, 89, 3411,
4015, 3713, 995, 9753, 9149, 9451, 8847, 8545, 6129, 5525, 4317, 693, 8243, 2807, 9451, 89, 2203, 6129, 1599, 995,
391, 4619, 5827, 9753, 4317, 8545, 2505, 2807, 8545, 6431, 4317, 9753, 2203, 8243, 3109, 9149, 391, 8847, 2203,
8545, 4317, 3713, 9451, 3411, 391, 391, 2203, 1599, 7035, 7035, 391, 2807, 5827, 7639, 89, 4317, 995, 7337],
[4317, 6129, 4619, 1599, 4921, 2807, 7035, 391, 89, 995, 3411, 9753, 7337, 693, 5827, 7639, 391, 3411, 7035, 1297,
4619, 8847, 7035, 5525, 6431, 4921, 6129, 4015, 4015, 3109, 693, 1297, 5827, 6431, 6129, 9753, 3109, 3411, 89,
7337, 995, 995, 8545, 1297, 9149, 4015, 3109, 2203, 2505, 6129, 8847, 1599, 89, 9149, 3411, 3411, 391, 9753, 7639,
8243, 1901, 4317, 3713, 9451, 2807, 5223, 5525, 1297, 5223, 2807, 9753, 2505, 7941, 7337, 693, 7337, 6129, 8847,
6733, 2807, 8545, 8545, 6431, 9753, 4317, 7035, 4921, 8847, 7035, 5827, 6431, 4015, 4015, 1901, 9149, 6733, 6129,
5827, 89, 89, 8847, 4015, 6129, 1599, 4619, 6431, 7639, 5827, 8243, 7035, 7337, 4015, 7035, 8847, 3713, 2807, 9451,
7941, 3109, 7337, 3411, 995, 7337, 7035, 5827, 8243, 4317, 4619, 5827, 8545, 4921, 3713, 995, 6733, 1901, 6129,
3109, 6733, 6129, 6431, 693, 9451, 8847, 1599, 7941, 1599, 1297, 1901, 4317, 4619, 4619, 7639, 693, 2505, 9149,
6733, 3411, 2807, 1297, 2505, 7639, 1901, 6129, 4619, 7035, 1297, 6431, 4317, 693, 3713, 4015, 4317, 6733, 7941,
7639, 9451, 7035, 9451, 4015, 3713, 2203, 2807, 7941, 5827, 5827, 7337, 7941, 3713, 7941, 2505, 3411, 995, 89, 89,
5525, 89, 6129, 2807, 5525, 1297, 4015, 9451, 7337, 9451, 9149, 1901, 9753, 7639, 9753, 8243, 6129, 9149, 391,
9149, 693, 391, 3713, 1599, 4921, 3109, 9451, 7337, 8847, 1599, 9753, 2203, 8847, 6129, 6129, 5827, 1297, 1297,
391, 391, 4921, 9149, 5525, 5223, 995, 3109, 3109, 8243, 3411, 4619, 2505, 8243, 5223, 9753, 3109, 4015, 89, 2505,
1297, 9753, 6431, 2203, 2807, 2203, 391, 8545, 89, 7035, 8545, 8847, 7639, 4015, 5827, 7337, 693, 995, 3713, 5525,
5525, 2807, 4015, 7941, 693, 8847, 1297, 4317, 5525, 9451, 1297, 4317, 4921, 7941, 1297, 5525, 4619, 391, 4317,
1599, 9753, 7941, 3411, 1297, 3713, 2203, 7941, 391, 3713, 9451, 391, 9753, 3713, 7337, 4317, 7639, 8545, 8545,
6129, 7941, 8545, 9149, 5827, 391, 5525, 5223, 6129, 9149, 2203, 89, 7035, 8545, 1901, 5525, 2505, 9451, 7941,
1297, 9451, 7639, 391, 4921, 4921, 3109, 4619, 3109, 5223, 391, 5223, 391, 7035, 8243, 5525, 2505, 8847, 89, 1297,
6129, 1599, 4619, 9753, 6431, 693, 7035, 2505, 5827, 3109, 693, 2203, 391, 4317, 1599, 2203, 3411, 3109, 6431,
6733, 3411, 7035, 89, 8545, 4317, 89, 1599, 7035, 4921, 9753, 5827, 9753, 2807, 9149, 4619, 8243, 1297, 9149, 7035,
1599, 89, 9149, 3713, 7941, 2807, 693, 1901, 1599, 9451, 4015, 6733, 693, 3109, 3713, 89, 4619, 2505, 995, 391,
8243, 7337, 4317, 7337, 7337, 7639, 3411, 4317, 6129, 5223, 8545, 9149, 8545, 8243, 7639, 2203, 391, 995, 8847,
3411, 2505, 1297, 7639, 8243, 3109, 2505, 995, 2807, 3411, 5525, 391, 7941, 5827, 4921, 2203, 1901, 9451, 2807,
6431, 4317, 2505, 1901, 391, 8847, 1297, 1297, 3109, 9451, 6733, 4317, 4317, 4619, 7941, 995, 1297, 2203, 8545,
8847, 4317, 4015, 1297, 4921, 9149, 8847, 3411, 8847, 7639, 7639, 4921, 2505, 4921, 7639, 9149, 2505, 7639, 5827,
5827, 2203, 89, 391, 2505, 7941, 89, 4921, 7035, 1901, 8243, 7639, 1901, 3411, 3713, 7941, 89, 1599],
[3713, 3411, 4015, 6129, 2807, 8545, 2203, 8545, 2203, 9149, 89, 8545, 5223, 1297, 2203, 8847, 5525, 7035, 6431,
5525, 1901, 2807, 3713, 5525, 2505, 8847, 5827, 391, 6733, 1901, 2203, 6733, 391, 4619, 8243, 6129, 3713, 6129,
3109, 3109, 2203, 995, 693, 2203, 6733, 4317, 5223, 1599, 4317, 1901, 693, 4619, 9149, 5525, 6431, 5525, 2807,
4619, 9149, 1297, 4317, 7035, 89, 8847, 4317, 89, 9451, 5827, 3713, 2807, 6733, 4015, 3411, 693, 1599, 2203, 1901,
4619, 8243, 9753, 7639, 5223, 2505, 8545, 2505, 4317, 4619, 391, 6431, 8847, 6431, 9149, 7337, 995, 995, 7035,
5827, 6733, 1599, 8847, 3713, 7337, 1297, 3411, 4015, 2203, 5827, 3411, 4619, 6129, 7035, 2807, 1599, 4317, 2505,
6129, 9753, 4317, 2505, 7337, 2807, 995, 2807, 2807, 3411, 1297, 6733, 5827, 4921, 3411, 3411, 89, 693, 1599, 9451,
6431, 8243, 8847, 89, 2807, 391, 1297, 2807, 6733, 2203, 7337, 6733, 7337, 8545, 5223, 8545, 995, 1599, 5223, 3411,
4317, 6431, 7337, 4921, 8243, 8847, 5525, 995, 1901, 6733, 8243, 4015, 8545, 6733, 2505, 6733, 9451, 995, 8243,
8545, 2807, 2203, 1901, 3109, 7639, 9451, 7337, 2505, 7337, 4619, 4619, 3109, 693, 9451, 5827, 1297, 3713, 995,
7941, 3109, 4921, 1297, 8243, 693, 9149, 6431, 6733, 3109, 1297, 8545, 5525, 4619, 8545, 5827, 1599, 6129, 391,
3713, 1901, 4317, 7337, 7941, 9149, 1901, 6431, 9753, 7337, 5827, 6431, 693, 7337, 7639, 9451, 8847, 9149, 5827,
6431, 4619, 3109, 8847, 4317, 4921, 9753, 6431, 2807, 2203, 1297, 9149, 693, 8847, 6431, 3713, 3713, 4921, 5827,
6431, 995, 9753, 995, 9753, 1599, 9149, 5827, 2505, 4619, 2505, 6431, 8243, 4619, 2505, 2807, 2203, 9451, 9451,
8243, 5223, 4921, 1901, 3109, 5223, 4619, 2203, 1599, 7639, 2505, 7941, 1901, 391, 8243, 8243, 3713, 2203, 2807,
1297, 7639, 2807, 89, 4317, 1599, 3713, 4619, 3713, 8545, 995, 4921, 7337, 4619, 6733, 6129, 9149, 693, 3411, 4921,
5525, 5223, 7035, 4317, 8243, 1599, 995, 1297, 5223, 9451, 7639, 4317, 6733, 89, 2807, 4619, 391, 5827, 2807, 5525,
5827, 1599, 4317, 3411, 1901, 4015, 995, 4317, 7639, 5827, 3411, 2505, 7941, 6129, 2807, 4619, 6733, 7337, 693,
2807, 3713, 693, 2505, 9149, 3109, 8545, 693, 391, 3713, 4015, 2203, 995, 9149, 7337, 5827, 6129, 6733, 7035, 5223,
3411, 3713, 5827, 1297, 7337, 1599, 9753, 7941, 3411, 5223, 5827, 995, 9753, 6129, 5827, 9149, 2505, 2807, 9753,
6129, 1599, 6129, 5223, 5223, 9451, 2203, 5827, 8243, 7639, 4015, 7337, 8847, 4015, 2807, 9451, 3411, 5525, 8545,
391, 8545, 4921, 9149, 3109, 2807, 3411, 4619, 9149, 4921, 9451, 6129, 1901, 2203, 4317, 1901, 4921, 1297, 4317,
391, 2203, 7035, 995, 1297, 4921, 4921, 2505, 6129, 7035, 1297, 89, 2505, 4015, 391, 693, 9451, 6129, 5827, 5525,
391, 5827, 4317, 3713, 4317, 3109, 4015, 7941, 3411, 2505, 6129, 391, 1599, 9451, 3109, 9753, 7337, 5827, 1901,
6431, 5525, 693, 6129, 5827, 4921, 8847, 6431, 6431, 3109, 995, 4619, 391, 5827, 4619, 3109, 8847, 4619, 2505,
2505, 4619, 8545, 7337, 4921, 9451, 4015, 3109, 4921, 9149, 6431, 2807, 3109, 3109, 1297, 89, 7035, 2203, 8545,
2203],
[1901, 7035, 89, 3109, 1297, 8243, 3411, 7941, 4015, 6129, 2203, 7035, 7941, 3411, 6431, 4921, 4619, 7639, 3109, 89,
995, 4317, 2505, 8243, 995, 4317, 3411, 5223, 2807, 6733, 1901, 2807, 4015, 2505, 8243, 3109, 391, 3411, 9451,
2203, 9753, 2807, 693, 7639, 6129, 2203, 4015, 1901, 5223, 1599, 6431, 7941, 3411, 2807, 4317, 9149, 8243, 89,
4317, 3109, 6129, 7035, 2505, 3713, 4921, 4317, 7639, 4921, 9149, 2505, 8243, 8545, 4921, 6129, 7035, 8847, 6733,
1901, 5525, 5223, 5827, 8545, 2505, 3411, 4619, 1297, 8243, 3713, 693, 8847, 4015, 391, 391, 3109, 8243, 89, 2505,
7337, 89, 7639, 391, 995, 1297, 8545, 4921, 7941, 3713, 7035, 3109, 995, 6129, 8847, 8545, 9753, 6129, 9753, 7639,
5223, 2203, 9149, 7337, 3109, 7639, 2203, 9753, 6129, 2807, 9149, 6431, 9451, 6733, 693, 391, 3411, 5827, 9149,
3713, 1599, 4619, 6431, 1599, 7035, 4921, 8847, 4317, 9451, 3109, 7639, 1901, 8243, 4619, 6431, 89, 5827, 8243,
1901, 5827, 391, 1297, 2807, 5827, 5827, 5827, 5525, 3713, 3411, 9753, 4619, 7639, 3713, 7941, 7639, 9451, 4015,
391, 4015, 4317, 7639, 2807, 2505, 391, 4317, 1297, 4015, 8243, 7941, 2203, 9451, 6129, 1297, 2203, 6431, 2505,
7035, 3411, 7639, 391, 2505, 9451, 1901, 4619, 8847, 9451, 8847, 4619, 4921, 9753, 6431, 7035, 2505, 1599, 8243,
5223, 4317, 3411, 4015, 995, 8545, 4015, 3109, 7639, 5223, 5525, 3411, 995, 3411, 9451, 2203, 1901, 4619, 89, 1599,
9149, 5827, 1599, 2203, 6129, 4921, 7035, 1297, 2807, 5223, 6129, 4015, 693, 9451, 693, 8243, 1297, 6733, 9753,
2807, 5827, 89, 7337, 7035, 7941, 1297, 7337, 693, 1297, 693, 2807, 5525, 3109, 4921, 9149, 4619, 6733, 7639, 8243,
5827, 3713, 995, 89, 3411, 89, 2203, 5223, 9753, 3411, 2505, 9451, 6129, 995, 995, 4015, 8545, 4015, 1297, 3109,
6733, 1599, 4015, 693, 6431, 89, 9149, 9753, 1901, 3713, 9451, 9451, 391, 3109, 1901, 8243, 2505, 6733, 7337, 5223,
3109, 9451, 5525, 7035, 4015, 2807, 3109, 5223, 7337, 5827, 6431, 89, 8545, 4619, 7639, 7035, 7337, 5827, 9753,
6733, 8243, 8545, 6733, 4619, 8243, 5223, 2505, 8545, 7941, 8847, 3109, 8847, 4619, 6733, 3411, 1297, 995, 2203,
8847, 391, 1297, 6733, 3713, 7337, 6129, 1297, 3411, 4015, 4921, 7941, 4015, 2203, 4015, 1297, 4619, 1599, 3713,
9451, 391, 1901, 1599, 4921, 7639, 4619, 3411, 8847, 6431, 5223, 2203, 7035, 7941, 2505, 1297, 7941, 2505, 4619,
3109, 4921, 1901, 693, 6733, 9753, 4317, 8243, 7337, 2505, 7035, 89, 5525, 1901, 4921, 4921, 5525, 9753, 1901,
2505, 8847, 4619, 5525, 3713, 5223, 89, 6129, 9149, 8545, 2807, 4317, 7639, 8545, 7941, 89, 1297, 1901, 4921, 693,
6733, 4317, 4619, 5827, 995, 6733, 2505, 8545, 2203, 4921, 89, 4619, 6431, 7941, 3713, 4921, 8243, 8545, 6431,
8243, 8243, 2807, 3713, 4015, 9753, 89, 995, 89, 4317, 6129, 2807, 9753, 8545, 8243, 9753, 1599, 3411, 7639, 9149,
4317, 6431, 8545, 2203, 9149, 1599, 9753, 9149, 4921, 5827, 2505, 2807, 89, 4921, 1297, 9451, 8545, 1599, 7639,
2807, 7337, 6431, 9149, 7035, 6129, 7639, 1297, 6129, 7941, 5525, 2203, 1599, 9451, 89, 2505, 3109, 5525],
[5525, 5525, 3109, 6733, 7337, 5525, 6733, 6129, 3713, 2807, 1901, 7941, 2505, 3713, 9753, 6129, 2505, 6129, 1297,
391, 3713, 5827, 4921, 7337, 7941, 7639, 693, 2203, 8243, 2505, 693, 1901, 3109, 1297, 1599, 4921, 1599, 8545, 693,
3411, 9149, 89, 7941, 3411, 7035, 6733, 2203, 4619, 1599, 4921, 995, 3411, 9451, 7941, 4619, 7941, 89, 5525, 5525,
1599, 7639, 9451, 9753, 7035, 3411, 7035, 8847, 2505, 3109, 4317, 6129, 4921, 391, 6733, 7337, 2203, 6431, 3713,
9149, 8243, 1901, 7941, 4921, 7337, 8243, 6733, 1901, 7337, 7337, 7639, 4921, 4619, 1599, 5525, 3713, 995, 2203,
6129, 4921, 6129, 7639, 1901, 3411, 5223, 7035, 4317, 2505, 3713, 995, 4619, 5223, 6733, 1901, 1901, 5525, 693,
4619, 3109, 4317, 9451, 7941, 7941, 5525, 9451, 6431, 2203, 995, 995, 7035, 4921, 7941, 5827, 6733, 6129, 5525,
8545, 391, 8847, 3109, 1599, 3411, 1297, 1599, 9451, 391, 1297, 6129, 9753, 8847, 9149, 4317, 2807, 693, 7035,
7639, 8243, 89, 5525, 8847, 2505, 6129, 6733, 8545, 5223, 391, 4015, 4015, 2505, 7035, 9753, 391, 1901, 7941, 7337,
995, 2807, 8847, 7941, 6733, 8243, 5525, 3713, 9753, 3411, 3713, 9149, 9753, 7639, 89, 4317, 7941, 6431, 6733,
4619, 1297, 1297, 6431, 8243, 693, 6733, 9451, 5525, 1297, 7941, 2807, 7035, 995, 5525, 7035, 7337, 7035, 1901,
6431, 6733, 391, 5223, 5827, 7035, 8847, 5525, 2203, 2203, 3411, 4619, 2203, 4619, 6733, 3411, 89, 6129, 391, 2203,
6129, 9451, 4317, 8243, 2203, 4015, 8545, 4317, 7035, 4619, 89, 4317, 2505, 5223, 995, 5525, 1599, 5525, 89, 7639,
6733, 6431, 7639, 2505, 6129, 5827, 1901, 4921, 8243, 5827, 8847, 1901, 6129, 8243, 1599, 7035, 9753, 693, 7035,
1297, 5827, 1901, 995, 9451, 995, 3713, 391, 7941, 6733, 693, 8847, 4317, 9451, 4921, 2807, 3713, 693, 8545, 1599,
5525, 9451, 693, 7639, 3713, 4921, 1297, 8847, 1901, 89, 5223, 5827, 6733, 4317, 3713, 8243, 2203, 89, 8545, 6733,
6733, 2505, 9149, 8847, 89, 3411, 6733, 9149, 5827, 89, 89, 6733, 9149, 3713, 2807, 1599, 4921, 9753, 8243, 8243,
2807, 7337, 6431, 9753, 2807, 1901, 6733, 3411, 5223, 7941, 6431, 4921, 2505, 8847, 995, 4619, 3713, 8545, 5525,
8243, 9149, 7639, 7639, 89, 5525, 7639, 7639, 1297, 4317, 4619, 4921, 1901, 89, 7035, 4619, 1901, 9451, 2505, 6129,
4921, 1901, 89, 4619, 1901, 4921, 995, 7337, 2807, 6431, 7337, 1297, 7941, 8847, 3411, 3109, 5223, 4317, 2807,
3109, 7941, 391, 2203, 7639, 6129, 9451, 9451, 9753, 995, 4619, 4619, 7639, 5223, 4015, 1901, 9149, 8847, 3411,
8243, 3713, 9149, 9753, 5223, 2807, 9753, 89, 9149, 8847, 5525, 6129, 9753, 2505, 1901, 4015, 6129, 1901, 8545,
4921, 4921, 3109, 4921, 2807, 5223, 6129, 1901, 9753, 4015, 391, 1599, 7639, 5525, 4921, 5827, 8545, 89, 2807,
5827, 1599, 89, 9451, 8545, 6129, 2505, 3109, 9149, 9753, 8847, 3713, 2203, 6733, 3411, 7639, 3713, 3411, 391,
5223, 5827, 6431, 9451, 7639, 8847, 9451, 4921, 6129, 2203, 693, 2203, 3109, 5223, 9753, 8243, 5525, 8243, 3411,
1297, 7639, 5223, 7941, 7035, 6431, 89, 7639, 2807, 4921, 7639, 7639, 7941, 4015, 5525, 8545, 7639, 4015],
[1901, 89, 7035, 693, 5223, 3411, 9149, 3109, 3713, 89, 5525, 89, 9149, 4317, 1599, 5827, 89, 2505, 8243, 7337,
4619, 5827, 9451, 995, 3713, 9753, 9149, 391, 4015, 7639, 7941, 6431, 3713, 4619, 7035, 5223, 391, 3411, 6431,
7035, 391, 4921, 3109, 7337, 7941, 7941, 6129, 9149, 9753, 9149, 2505, 7941, 8847, 9149, 8847, 7035, 4619, 7941,
5223, 7337, 4317, 2203, 1297, 1599, 9451, 2505, 2807, 4921, 7639, 391, 3411, 7035, 693, 8243, 89, 89, 89, 5525,
7941, 4015, 5223, 3411, 2505, 7941, 1901, 5827, 4015, 7941, 2505, 1599, 391, 7639, 3713, 7941, 7639, 7639, 693,
2203, 4619, 7639, 8847, 9451, 2203, 6129, 5223, 3411, 4015, 4921, 5525, 1297, 5827, 89, 6733, 5223, 8545, 995,
9753, 7337, 7035, 9451, 7639, 6733, 6129, 4619, 4921, 8243, 3411, 3411, 89, 1901, 1297, 2505, 2807, 1297, 6733,
3411, 391, 8243, 9149, 5223, 2505, 9451, 3411, 89, 9753, 8847, 995, 8847, 7035, 1599, 3109, 9149, 89, 1901, 89,
1901, 4317, 995, 1901, 9451, 8847, 5827, 995, 5525, 8847, 7941, 1297, 8847, 5827, 2807, 4015, 4921, 89, 4317, 5223,
6129, 89, 6431, 1901, 995, 4619, 2505, 7035, 1599, 8847, 5525, 7337, 3411, 9149, 995, 1599, 7337, 8847, 9753, 6431,
391, 7337, 995, 89, 2807, 5525, 9149, 2505, 8847, 2807, 6733, 8847, 4921, 6431, 9753, 7941, 6129, 693, 9149, 6733,
6431, 6431, 9451, 1901, 5827, 6431, 1297, 8243, 8243, 995, 5525, 3411, 6733, 2203, 9149, 8545, 1297, 995, 4317,
7639, 2505, 8545, 6129, 8243, 4619, 5525, 8545, 7337, 6129, 2203, 9451, 3411, 89, 5827, 7337, 4015, 693, 2505,
1599, 9451, 9451, 6129, 995, 391, 1901, 4317, 995, 8243, 7639, 2505, 2807, 1901, 7337, 1599, 693, 2203, 1901, 5525,
8243, 2203, 4015, 1599, 4015, 2505, 4619, 5827, 7337, 995, 8847, 1599, 693, 4317, 2505, 1901, 3109, 2807, 3713,
7639, 4921, 9149, 1297, 5223, 7337, 6431, 9149, 3109, 3411, 4317, 2203, 9753, 7639, 4317, 9149, 8545, 693, 4921,
693, 1297, 3411, 2505, 89, 4619, 995, 5223, 3713, 2505, 7035, 6129, 7337, 3411, 2807, 3713, 6431, 8545, 9149, 5223,
2203, 4317, 7035, 7941, 4921, 5827, 8545, 693, 9753, 3109, 9451, 2203, 3109, 4619, 7035, 5827, 7639, 391, 391,
7337, 2203, 7035, 7337, 693, 89, 8243, 7337, 8243, 5525, 693, 3411, 1297, 1901, 391, 6431, 9753, 7035, 1297, 1297,
1297, 8243, 6733, 7337, 9149, 1297, 7337, 3109, 8847, 7035, 4619, 8847, 2505, 4015, 995, 2505, 3411, 1297, 2505,
5223, 1901, 8847, 6431, 6431, 1901, 1599, 8847, 7035, 5223, 2505, 9753, 1297, 4619, 3713, 2203, 5525, 4921, 391,
3713, 1901, 2505, 6129, 995, 2505, 4921, 693, 6129, 7337, 3411, 6431, 7941, 4015, 8847, 3411, 4015, 7941, 2505,
9451, 8243, 89, 6733, 7035, 1599, 8847, 4619, 5525, 8243, 995, 8545, 2807, 4619, 2203, 7639, 3109, 6431, 2505,
3411, 1599, 2807, 5223, 995, 8545, 89, 3109, 693, 5827, 5827, 9451, 8243, 4619, 9753, 8847, 1297, 9451, 8243, 391,
4317, 5223, 89, 7639, 7337, 2203, 8545, 7337, 6431, 9451, 693, 8545, 8545, 2505, 6431, 6129, 5223, 8545, 1599,
4921, 7337, 6129, 995, 6431, 6431, 6733, 9149, 7941, 9451, 9753, 1901, 3411, 1297, 5223, 1901, 3411],
[693, 4317, 4015, 6129, 995, 89, 6733, 6129, 7035, 7639, 9149, 7639, 7035, 9149, 2807, 7941, 3713, 3109, 6129, 5525,
2203, 3411, 3109, 2203, 1901, 6129, 6431, 7639, 2505, 7639, 7639, 6431, 8847, 3411, 2807, 2505, 6431, 995, 1599,
3109, 4317, 4015, 5827, 9451, 2505, 1599, 6129, 3411, 89, 1901, 5525, 7035, 89, 4619, 6431, 9451, 1599, 6733, 8545,
8243, 4015, 8545, 89, 5525, 7035, 89, 4921, 391, 1297, 4317, 2505, 3109, 3713, 4921, 3109, 1297, 4619, 1297, 4317,
1599, 391, 1599, 3109, 5223, 4317, 2807, 2203, 9451, 89, 9753, 1901, 995, 7941, 3109, 89, 3411, 7639, 391, 7639,
8847, 2807, 89, 6431, 391, 8243, 8847, 3713, 5525, 6431, 7337, 8545, 9753, 3713, 1901, 5827, 7941, 2807, 7639, 391,
5827, 7337, 1901, 5223, 9149, 7639, 4619, 5525, 2807, 7941, 7337, 5223, 1599, 9451, 5525, 1297, 6431, 5525, 8847,
1901, 6129, 7639, 5223, 4619, 5223, 7337, 9149, 693, 6733, 8243, 4921, 3109, 693, 4015, 6733, 5827, 9149, 6431,
8847, 5223, 1297, 6733, 995, 1599, 7639, 4015, 7035, 2807, 6431, 4619, 5827, 4015, 7639, 6129, 7035, 3713, 6431,
4317, 8243, 6431, 4015, 8545, 4921, 693, 6129, 6733, 5525, 1297, 2505, 7941, 9753, 6733, 3411, 8243, 4619, 3713,
6733, 4317, 1599, 9149, 1297, 5827, 3411, 2203, 995, 3109, 6431, 9451, 4619, 8847, 7941, 4921, 1297, 1901, 9753,
9753, 9753, 4619, 2203, 3713, 4015, 4619, 9149, 9753, 1297, 2807, 7337, 5525, 9451, 6431, 8243, 2807, 4921, 9753,
3713, 9753, 2807, 1599, 1901, 693, 7337, 3109, 2807, 89, 3109, 7035, 2807, 3411, 8243, 7035, 995, 9753, 1297, 4015,
4317, 8545, 4015, 1599, 6431, 3109, 7941, 5827, 8243, 9149, 5827, 9753, 5827, 995, 4921, 4015, 6733, 7941, 6431,
8545, 6431, 8847, 3411, 7639, 8847, 7639, 9451, 6733, 7035, 4317, 3411, 6431, 7337, 6129, 995, 391, 89, 5223, 5827,
391, 5827, 1901, 1901, 391, 3109, 6129, 1901, 4921, 2203, 89, 8545, 8847, 9149, 8847, 7639, 7337, 1297, 1599, 1297,
2807, 9451, 693, 4619, 2505, 2505, 3713, 1297, 4015, 3109, 7639, 693, 8545, 2203, 1599, 7639, 89, 9753, 391, 7639,
2807, 1297, 5525, 1599, 6129, 1901, 7337, 4015, 1901, 6129, 9451, 5827, 89, 9149, 7337, 3713, 2203, 7337, 3411,
5223, 7035, 4619, 693, 1297, 1297, 9753, 9753, 2807, 6129, 2505, 4015, 5223, 7337, 1297, 7035, 4317, 8545, 4921,
1297, 693, 9149, 8545, 89, 2203, 5525, 8847, 4015, 2203, 8243, 89, 7337, 5223, 89, 4317, 5223, 7941, 1599, 3713,
3109, 8545, 1297, 6431, 9753, 4317, 8545, 7639, 6129, 9451, 6129, 1297, 5827, 9451, 5223, 4317, 6431, 5827, 89, 89,
5827, 5827, 3109, 1901, 5525, 3411, 5223, 4921, 8243, 1599, 693, 4015, 6129, 89, 7035, 8545, 391, 2807, 8545, 3713,
693, 6129, 2807, 8243, 4619, 391, 9451, 4015, 7035, 3411, 693, 3411, 7941, 7337, 7941, 8545, 3713, 6431, 6733,
7639, 391, 5827, 391, 5827, 2807, 5827, 3713, 9149, 7035, 7035, 9451, 1599, 4619, 4317, 3411, 7639, 7941, 89, 1297,
7337, 8847, 4921, 2203, 7941, 4015, 3109, 7337, 693, 9451, 8847, 6733, 1297, 1599, 6129, 6733, 3411, 7035, 9451,
6129, 1599, 2203, 4921, 1599, 89, 1297, 995, 9149, 5827, 7639, 391, 7639, 9451],
[6129, 8243, 3411, 995, 5223, 4015, 3109, 8545, 4015, 1599, 7337, 4015, 9149, 1599, 693, 5223, 3411, 2505, 7639,
5223, 8847, 1901, 9451, 3411, 8545, 8847, 7035, 8243, 1901, 9149, 7337, 693, 8847, 4921, 995, 5827, 1901, 391,
2505, 1901, 1901, 2505, 2807, 1901, 3713, 4317, 8847, 2505, 3109, 5827, 8847, 6431, 693, 2505, 5223, 4921, 8243,
6431, 7035, 9149, 4921, 7639, 9149, 1297, 693, 3713, 1901, 5525, 693, 391, 995, 4619, 391, 8545, 8243, 1901, 7639,
995, 5525, 5525, 7035, 8243, 5223, 6733, 8847, 391, 693, 5223, 1599, 6733, 7035, 2203, 5525, 8243, 5525, 4619,
6431, 9451, 9753, 4921, 5827, 6431, 5525, 6733, 4921, 89, 5827, 5525, 693, 9451, 2505, 3109, 7337, 1297, 3109,
6733, 9451, 995, 1599, 6733, 9753, 2505, 5223, 693, 3109, 693, 4921, 3411, 6733, 6733, 89, 89, 7639, 2203, 4317,
8847, 6129, 1901, 8847, 1599, 3109, 6431, 8847, 5827, 4015, 7941, 391, 7941, 6431, 4619, 2807, 5525, 693, 3411,
5525, 4619, 8545, 1901, 1297, 4619, 7337, 2505, 3109, 7639, 7337, 693, 1901, 8847, 4015, 4317, 391, 4619, 89, 7639,
5525, 7035, 7639, 3109, 7639, 9753, 1599, 8243, 3109, 1901, 6431, 995, 2505, 4317, 4921, 391, 2807, 7941, 8243,
9149, 1297, 9451, 7941, 4921, 2203, 3109, 2203, 9149, 2505, 4015, 6733, 7639, 5525, 8243, 3109, 3713, 4921, 9753,
8545, 7035, 5827, 8847, 3713, 3411, 89, 7639, 7639, 4317, 2505, 8545, 1599, 5223, 1901, 8545, 693, 995, 9149, 1599,
5223, 4921, 6431, 8545, 995, 5827, 1901, 7337, 995, 2807, 995, 6431, 7639, 1297, 2203, 1599, 4619, 9753, 995, 8243,
1901, 391, 1599, 3109, 4619, 9753, 5525, 3109, 3411, 7337, 5525, 8847, 391, 7639, 8243, 1901, 3713, 9451, 8545,
2505, 4619, 693, 7337, 3411, 3109, 2203, 5223, 7035, 693, 3109, 6733, 7035, 3713, 995, 7941, 5525, 3109, 8847,
5525, 391, 5223, 7337, 693, 7639, 9451, 8847, 3411, 3713, 6733, 89, 995, 5223, 4317, 89, 7941, 6129, 693, 9149,
2505, 2807, 3713, 4921, 4015, 3109, 4619, 8847, 1297, 9753, 7941, 6733, 391, 9451, 1901, 4921, 2505, 7639, 9149,
7337, 2505, 1901, 7639, 2807, 5525, 6733, 7941, 6129, 3713, 7337, 4317, 2807, 1901, 89, 2203, 9451, 3109, 2505,
4619, 2807, 4619, 6733, 5827, 995, 1901, 9149, 5827, 391, 6431, 1901, 4619, 6129, 4317, 9451, 3411, 8847, 4921,
8243, 4317, 6431, 1297, 6129, 995, 7035, 7035, 4015, 2807, 693, 7941, 693, 3713, 5525, 6733, 1297, 5827, 4015,
9149, 7639, 8243, 7035, 3411, 9753, 1901, 3109, 2807, 2203, 3411, 3411, 9753, 7941, 4619, 8243, 3411, 1599, 9451,
9149, 7941, 7639, 4619, 9149, 4619, 7337, 8847, 2203, 7639, 3713, 3109, 3713, 8545, 8243, 4619, 5525, 6129, 7035,
1297, 3109, 3713, 391, 7337, 9753, 2505, 1901, 5525, 2203, 8847, 4015, 5525, 2807, 1297, 5223, 7941, 391, 9753,
7337, 6733, 9451, 1901, 4317, 3713, 2203, 3109, 693, 3411, 9451, 9753, 9149, 8847, 3411, 4619, 693, 1599, 9753,
5223, 9149, 9451, 8243, 4619, 5525, 2203, 5525, 3411, 5525, 3713, 8545, 2203, 89, 2505, 6129, 4317, 5223, 391, 693,
3713, 3713, 5223, 1599, 6733, 1901, 89, 9451, 8545, 9451, 5525, 4619, 9149, 5525, 3109, 5827, 4317, 2807, 9753,
4015],
[4015, 9451, 1599, 6129, 4619, 4921, 8243, 7035, 5827, 2203, 3411, 391, 7337, 7941, 8243, 5223, 3109, 6733, 391,
3109, 995, 3411, 9451, 9149, 3109, 4619, 2807, 3713, 5223, 995, 4619, 1901, 3411, 9451, 1599, 391, 4619, 3713,
1599, 693, 2505, 8243, 7035, 4619, 1901, 4015, 7639, 1297, 2807, 3411, 5827, 5827, 4619, 3713, 5827, 4015, 9451,
4015, 5525, 2203, 6733, 4015, 1297, 1297, 1599, 6733, 8545, 4015, 391, 8243, 693, 7337, 5827, 1901, 7639, 1599,
2203, 1901, 693, 5827, 391, 2807, 2203, 6431, 7941, 1297, 7035, 6733, 8847, 2807, 4015, 4317, 1297, 9149, 4921,
6431, 5525, 4921, 2807, 3713, 6129, 3109, 7941, 693, 5223, 3713, 4921, 5827, 8545, 8847, 1599, 3109, 7639, 2203,
5223, 2505, 4619, 2203, 3411, 9149, 3109, 4015, 4619, 7035, 5223, 3109, 9753, 8545, 693, 1599, 5223, 89, 1297,
4921, 8545, 5827, 9149, 9753, 6431, 2807, 6431, 3411, 8545, 4015, 8243, 3713, 89, 5827, 6129, 693, 1297, 9451,
5827, 4619, 4619, 2505, 1297, 8847, 693, 1599, 6129, 9149, 8847, 8847, 7941, 4619, 6431, 4921, 8243, 391, 7639,
9149, 8847, 7639, 8243, 7035, 4921, 2203, 7337, 3109, 1901, 4015, 7639, 1599, 7337, 1297, 5223, 3713, 391, 8243,
2505, 3109, 995, 7035, 8847, 3713, 3411, 8847, 6733, 2807, 2807, 6129, 2807, 4015, 1599, 7639, 89, 2505, 5525,
4921, 4015, 9451, 7941, 693, 7639, 4317, 2807, 1901, 5525, 9451, 5525, 7639, 7337, 693, 89, 9753, 1297, 9451, 3109,
7941, 6129, 7035, 6733, 693, 5827, 8243, 1297, 7639, 4921, 6431, 8847, 2203, 6431, 1901, 5223, 9451, 4619, 3109,
6733, 1901, 3411, 7941, 89, 693, 5827, 5223, 7035, 2807, 693, 2203, 6431, 8545, 6733, 7035, 2505, 2505, 7941, 3411,
1901, 3411, 391, 4619, 2807, 3411, 4921, 4317, 6129, 1599, 6733, 5223, 8847, 4921, 2203, 391, 7035, 7639, 4317,
9451, 693, 4619, 5827, 5525, 89, 4317, 4317, 5827, 3411, 5223, 7035, 9753, 2807, 9451, 1901, 5525, 6431, 6733, 391,
995, 9451, 391, 1901, 995, 7035, 7941, 4317, 391, 8545, 9753, 9753, 2807, 8847, 995, 4015, 995, 5525, 1297, 5223,
8847, 5525, 5525, 4317, 4619, 7941, 3713, 3109, 391, 2505, 391, 3713, 1599, 7337, 7337, 9149, 2203, 8243, 6129,
693, 995, 6733, 3109, 8847, 2807, 6431, 7035, 7639, 8243, 4015, 8847, 3109, 391, 1901, 693, 3109, 391, 4619, 1297,
391, 2807, 2203, 5827, 1297, 7337, 4015, 1599, 8847, 995, 9149, 9753, 391, 3713, 4921, 6431, 5827, 391, 1599, 4317,
2203, 7941, 391, 89, 1297, 5223, 4317, 391, 2807, 4921, 3109, 8545, 5525, 1901, 9149, 7337, 7035, 8545, 7941, 2203,
6431, 3109, 4619, 6733, 7337, 89, 8243, 4015, 3411, 8243, 3713, 2807, 7337, 1599, 3109, 6431, 3713, 7035, 9753,
6431, 4015, 7941, 995, 8243, 3411, 3411, 4921, 8545, 5223, 1297, 6129, 8545, 4619, 2505, 5525, 4015, 4317, 7337,
1901, 8847, 7639, 5827, 6129, 7639, 1901, 6431, 7639, 6431, 9451, 1599, 1599, 2807, 4619, 2505, 8545, 995, 9753,
5827, 4619, 3713, 7337, 1901, 693, 3109, 693, 6431, 693, 8545, 1901, 5525, 391, 8545, 5223, 1901, 995, 7639, 2505,
995, 1901, 2505, 6431, 8243, 8545, 6129, 8545, 5223, 3713, 995, 1599, 391, 1599, 5223, 6129, 6431, 7639, 6129],
[1297, 1901, 1901, 4619, 8243, 8545, 4619, 1599, 1901, 1297, 2505, 8847, 693, 7639, 995, 4317, 7639, 995, 7941,
1297, 1297, 1297, 3411, 3411, 8847, 9753, 1297, 8545, 391, 6129, 8243, 2203, 89, 1297, 1901, 4015, 7639, 1599,
1599, 7639, 4619, 7639, 3411, 1297, 8847, 4921, 2505, 5827, 6733, 2807, 3411, 6431, 7035, 2505, 3713, 1901, 5525,
4317, 6733, 8847, 1599, 8545, 89, 5827, 8243, 2203, 7337, 7337, 1901, 9149, 5827, 89, 3713, 5223, 391, 693, 5223,
7941, 7941, 8545, 3411, 5827, 4619, 5827, 3411, 7035, 6431, 4317, 89, 5525, 3411, 2203, 6431, 4317, 4921, 1599,
3713, 7035, 995, 9149, 4619, 3713, 9451, 4317, 8243, 693, 89, 4619, 3713, 2203, 4619, 5223, 3109, 5525, 995, 6129,
2203, 4921, 8243, 4619, 9753, 2505, 693, 7941, 8243, 89, 8847, 2203, 693, 6129, 3109, 4619, 9149, 5525, 4015, 2807,
8545, 9753, 89, 4619, 5525, 995, 3713, 2505, 8243, 4317, 3713, 8847, 9753, 7941, 3411, 4015, 7337, 2505, 391, 3713,
7337, 2203, 2807, 9753, 995, 89, 7035, 9149, 693, 6733, 1297, 2203, 4619, 9753, 8243, 89, 2807, 7035, 9451, 8243,
4619, 6431, 1297, 6431, 7639, 7639, 7941, 9149, 4921, 6733, 9149, 6129, 4317, 693, 5827, 89, 2203, 4921, 9753,
4921, 5827, 3109, 6129, 7035, 693, 89, 2807, 8545, 995, 4921, 8545, 2203, 3713, 7035, 7337, 89, 1901, 6431, 3713,
8847, 6431, 4921, 4015, 2807, 3411, 9753, 6129, 8545, 8545, 1901, 9451, 4619, 9149, 5525, 4921, 5525, 5827, 8243,
8243, 4619, 2505, 1901, 2203, 3713, 1901, 3411, 8847, 7941, 693, 1599, 7941, 1599, 2505, 89, 9753, 2807, 3411, 89,
3411, 8545, 7941, 9451, 4317, 4015, 2807, 8243, 4317, 391, 5525, 8545, 9149, 3411, 7337, 4015, 9753, 7035, 7035,
6129, 391, 3411, 5223, 2807, 4015, 6129, 7639, 9451, 3713, 7941, 995, 5525, 1297, 5223, 7941, 89, 3411, 6129, 9451,
2807, 5525, 7639, 89, 89, 8545, 7941, 4317, 9753, 3713, 7941, 2505, 3713, 3713, 5827, 8545, 5525, 9149, 4619, 7941,
391, 6431, 3411, 3411, 2505, 6733, 1901, 7035, 2203, 7035, 8847, 4921, 995, 1599, 4921, 1599, 2203, 5223, 7337,
7337, 2203, 7337, 693, 6431, 5525, 7941, 5525, 3109, 9451, 3411, 4317, 4015, 4921, 1297, 2203, 2807, 6431, 6431,
5223, 8847, 4619, 5223, 4015, 4015, 2203, 995, 4921, 6431, 8847, 4015, 3411, 9753, 7337, 693, 4015, 4921, 7941,
4015, 693, 8243, 6129, 5525, 5223, 8545, 693, 9753, 3411, 9451, 1901, 8847, 693, 4619, 7941, 7035, 7035, 8847,
8847, 1297, 7941, 2505, 1297, 4921, 3109, 4921, 391, 7941, 7337, 8545, 8243, 4619, 7941, 4317, 693, 3109, 6733,
6129, 6129, 4619, 4317, 693, 2807, 3411, 6733, 5827, 693, 8545, 8545, 1599, 9149, 9753, 4015, 7035, 8847, 9149,
391, 6129, 7337, 2203, 7941, 6129, 6733, 9149, 391, 8545, 7035, 391, 5827, 7941, 6733, 4015, 7639, 4619, 1297,
3411, 6733, 7337, 3713, 391, 7337, 3411, 3109, 8243, 7941, 5827, 4619, 3109, 8545, 5223, 7941, 4317, 2807, 995,
6129, 6733, 1599, 9451, 4317, 1901, 5525, 5827, 7941, 4015, 2807, 7035, 3109, 5827, 7941, 6129, 6129, 7941, 9753,
3411, 1901, 9149, 391, 7337, 4921, 2807, 8545, 2203, 2203, 2807, 6129, 6129, 4619, 8243, 7941, 7639, 7639],
[6129, 9753, 6129, 1901, 4317, 1599, 693, 4015, 5827, 4015, 4317, 8847, 693, 3109, 2807, 8545, 693, 5223, 8545,
4317, 6129, 3109, 89, 3411, 995, 5223, 4921, 3411, 6733, 2505, 2203, 1297, 7337, 9753, 7337, 7639, 6431, 8545,
9451, 6431, 3411, 6431, 3109, 9753, 5223, 3411, 1599, 995, 2505, 3411, 6733, 4015, 995, 693, 7337, 8847, 7035,
4317, 4317, 7337, 9149, 6129, 1901, 1599, 6733, 89, 6431, 7639, 6431, 3713, 8545, 5827, 5223, 7639, 6733, 4921,
693, 3109, 5223, 7639, 3109, 3411, 4619, 89, 2807, 8545, 2807, 391, 8847, 1901, 3109, 3109, 8545, 5827, 7639, 7639,
391, 5223, 693, 4619, 7337, 7941, 3411, 2505, 995, 9451, 6129, 693, 2505, 4619, 5223, 8545, 7941, 7035, 6733, 3109,
7337, 7941, 4921, 1599, 7639, 9149, 2505, 995, 7337, 4921, 6129, 7941, 1901, 1901, 4015, 7035, 4921, 995, 4015,
6733, 2807, 2807, 2203, 6431, 4317, 5827, 995, 1297, 5525, 3713, 4921, 995, 995, 1297, 8847, 5827, 8243, 4317,
9149, 2505, 4317, 6129, 7941, 89, 6431, 9753, 7337, 7337, 9753, 7639, 3109, 9451, 5827, 4015, 6431, 7941, 6129,
4921, 7639, 6431, 4317, 6129, 8243, 7035, 8545, 5223, 1297, 2807, 693, 5223, 5223, 391, 5525, 7639, 8243, 391, 995,
9451, 9753, 9149, 6431, 2505, 2807, 3713, 7035, 5525, 1901, 9451, 2505, 2505, 3109, 6431, 6431, 2807, 9753, 6431,
9451, 391, 693, 7941, 9753, 5223, 3109, 4015, 7941, 7337, 2203, 2203, 2203, 4015, 2203, 7337, 4619, 7337, 5223,
9451, 6431, 4921, 4619, 4317, 8243, 4015, 8545, 6733, 5525, 9149, 4015, 4619, 6733, 2505, 1599, 2203, 7035, 391,
8545, 6431, 1901, 3411, 8243, 2505, 1901, 7337, 7941, 4921, 1901, 4015, 995, 9753, 995, 2807, 5525, 7337, 8243,
4317, 2807, 3713, 7337, 7639, 2505, 3713, 3713, 7941, 4015, 6733, 1599, 8847, 6431, 7941, 2807, 7035, 2203, 8243,
4921, 995, 391, 7639, 9451, 3411, 4619, 5827, 3109, 1297, 693, 2505, 6129, 3411, 2203, 9149, 6129, 7337, 3411, 391,
995, 6733, 9753, 7639, 1297, 6733, 7639, 89, 3713, 3109, 3713, 2203, 2807, 2505, 7337, 9149, 6431, 5827, 9451,
2807, 6431, 391, 4619, 4317, 693, 8847, 9451, 2807, 4317, 4317, 4619, 3109, 4619, 2505, 89, 2807, 3411, 89, 3109,
1901, 2505, 7639, 391, 4921, 4015, 1599, 1297, 4317, 4619, 7035, 7035, 5223, 2505, 7941, 9753, 9451, 5525, 2203,
8545, 9451, 6431, 7337, 5525, 1901, 89, 4921, 89, 5827, 7639, 4619, 7035, 7035, 3713, 4317, 9753, 3109, 2505, 1901,
2203, 7035, 693, 7639, 9753, 6733, 4921, 7639, 2203, 995, 4619, 5223, 391, 4015, 5827, 1599, 7941, 3713, 8847,
4317, 5525, 5525, 8847, 995, 2505, 391, 89, 3713, 8545, 4921, 9451, 3109, 693, 391, 6129, 7639, 8847, 6129, 1599,
6733, 6129, 89, 4317, 89, 995, 693, 6431, 9451, 7941, 7941, 5525, 391, 2505, 6129, 9753, 6129, 3109, 6431, 7337,
7941, 8545, 8243, 3109, 1901, 8243, 4619, 995, 8847, 6733, 6431, 4317, 5223, 2203, 6129, 5827, 1599, 1599, 5223,
1901, 89, 2505, 391, 4317, 6129, 5525, 1599, 2505, 5827, 6733, 7035, 1599, 2203, 2807, 9451, 2505, 7639, 4015,
2505, 4015, 8243, 9451, 5525, 9451, 5223, 2203, 9149, 4317, 5525, 1599, 1599, 9451, 7337, 7337, 3411, 1297, 1901],
[8847, 3713, 5223, 391, 3411, 391, 7941, 693, 5223, 89, 4619, 5827, 6129, 6431, 2807, 2807, 5223, 3411, 2203, 3713,
3713, 1297, 7941, 2203, 5525, 6431, 1599, 7941, 89, 7337, 2505, 1901, 9451, 9149, 7639, 8847, 1901, 5827, 6733,
5525, 3411, 4317, 3411, 391, 1297, 1297, 7639, 995, 4921, 1901, 3713, 2807, 7941, 1901, 5827, 1901, 3411, 4317,
6129, 8847, 4015, 4921, 7639, 9149, 7639, 995, 693, 4317, 8847, 9451, 1297, 7337, 9451, 89, 6129, 5525, 4619, 8847,
8243, 995, 8545, 9149, 9451, 693, 9753, 5525, 1901, 4619, 6733, 3713, 3411, 1901, 3713, 6129, 8545, 4921, 4921,
4619, 2505, 9149, 6431, 2807, 2807, 2807, 1297, 8243, 3109, 3411, 2203, 3411, 693, 693, 4015, 693, 3713, 8847,
7941, 1599, 5525, 7035, 9149, 4921, 9149, 4921, 2203, 7639, 6733, 2807, 1599, 391, 1599, 9451, 8847, 6431, 7941,
8243, 9753, 391, 2203, 3713, 1599, 2203, 3411, 2505, 3109, 3411, 3109, 5223, 5525, 391, 2505, 2505, 8847, 9753,
4619, 1901, 89, 3713, 3713, 693, 2203, 6733, 5223, 4921, 391, 4015, 7337, 8545, 4921, 4921, 1599, 5223, 1901, 2505,
7035, 8545, 5827, 7941, 4015, 89, 8847, 8243, 6733, 2203, 2505, 6733, 9451, 693, 7035, 4619, 8847, 5827, 9753,
2203, 4015, 9753, 8847, 2807, 1599, 1297, 1599, 7941, 7035, 7337, 9753, 6129, 7035, 1297, 89, 8847, 4619, 7337,
7035, 4317, 391, 8847, 8545, 8847, 7639, 9753, 391, 8545, 7035, 3411, 9451, 3109, 6733, 6129, 3411, 5827, 7941,
6129, 5525, 5223, 995, 9149, 4015, 995, 5827, 9149, 2807, 7337, 5525, 2203, 6733, 7941, 7035, 7639, 2505, 8243,
8545, 693, 693, 5223, 8847, 7941, 8545, 7639, 2807, 9149, 4317, 7337, 4317, 1901, 6733, 7035, 7035, 5223, 5223,
5827, 4317, 6733, 7337, 1297, 693, 9149, 9149, 391, 1901, 4015, 4619, 5525, 1297, 8545, 9451, 4921, 6733, 5525,
6129, 7941, 391, 4921, 7941, 3109, 9451, 6733, 3109, 3713, 8847, 5827, 5525, 995, 2807, 6733, 6431, 7639, 3411,
1599, 7035, 2807, 6733, 5525, 6431, 8545, 9451, 9753, 693, 1599, 995, 9753, 4921, 9451, 2807, 3713, 4317, 1599, 89,
8545, 693, 7639, 9451, 8847, 9451, 5525, 1901, 7337, 3411, 1901, 6129, 4619, 89, 9149, 8847, 5827, 4921, 4015,
1297, 2505, 5525, 4015, 6129, 6431, 3109, 7941, 7337, 8243, 8847, 3109, 995, 4921, 6129, 3411, 2203, 4015, 9451,
995, 4619, 7337, 7337, 3713, 4921, 2203, 4921, 3411, 7639, 3109, 4619, 5525, 9753, 1599, 4015, 8545, 6431, 6431,
6129, 9753, 5827, 693, 89, 8545, 9753, 2505, 5827, 7035, 391, 1297, 995, 4317, 7035, 1599, 5525, 2505, 3109, 7639,
5827, 995, 2505, 2203, 3713, 9451, 995, 6431, 6129, 391, 8847, 693, 2505, 1297, 7941, 3109, 5827, 4619, 3411, 5525,
7639, 1901, 9451, 7035, 9753, 9451, 89, 391, 6733, 5827, 1297, 89, 1599, 1297, 6733, 8243, 4619, 8243, 7941, 8243,
9451, 5827, 6129, 5525, 9451, 391, 1297, 2807, 7035, 2505, 5525, 5525, 4317, 391, 2807, 391, 9753, 1901, 5525,
4921, 693, 4619, 8847, 995, 9451, 7337, 3109, 8545, 7941, 9753, 3109, 9451, 6733, 2203, 7035, 4015, 4015, 1599,
2203, 2807, 8545, 7337, 6431, 391, 5827, 2505, 7035, 693, 7035, 4619, 1599, 8847, 5223, 995, 4317, 3713, 5223,
7035],
[4619, 995, 5827, 4921, 89, 4619, 1599, 2505, 7337, 9451, 6733, 6129, 1599, 3411, 2203, 4619, 2807, 8847, 4317,
8847, 9149, 7035, 9149, 6129, 5525, 391, 5827, 391, 6431, 9451, 4317, 5223, 6733, 4015, 391, 4015, 6733, 4015,
1901, 6733, 3109, 4015, 8545, 391, 4317, 4015, 9753, 4015, 4619, 2203, 391, 391, 89, 2505, 6431, 7337, 6431, 2505,
7639, 6733, 995, 89, 7337, 7035, 2203, 2807, 9753, 5223, 1599, 1599, 8545, 5827, 8545, 1901, 1901, 6733, 2203,
2505, 4619, 2807, 9451, 4921, 8847, 1599, 4317, 4015, 5525, 7035, 5525, 9149, 1901, 4921, 4619, 6129, 7035, 4015,
2807, 4015, 4921, 6431, 4619, 7035, 6733, 6431, 6733, 2203, 6431, 9149, 3109, 4317, 995, 7639, 7639, 1599, 8847,
5223, 6129, 9149, 6431, 2203, 8545, 391, 4921, 8847, 4317, 5525, 5827, 4317, 1901, 391, 1297, 6431, 3411, 693,
9753, 6431, 2203, 89, 1599, 5827, 8847, 9451, 6733, 7337, 3109, 4619, 6129, 3713, 2203, 9753, 4921, 7337, 6129,
2807, 5525, 5525, 7639, 9149, 3411, 7639, 3713, 4619, 6129, 5525, 1599, 1297, 1297, 693, 6129, 391, 8243, 8243,
2505, 2505, 7941, 4921, 7337, 1297, 4015, 3411, 8545, 9451, 6733, 89, 4921, 9149, 9753, 89, 8243, 5827, 3411, 391,
5827, 1599, 8847, 6431, 1901, 6431, 7941, 6733, 1297, 5223, 5525, 6431, 4619, 7337, 8243, 995, 8847, 7639, 693,
7035, 3109, 693, 4317, 3109, 9451, 2807, 6733, 4015, 5525, 5223, 9451, 9149, 693, 8243, 4015, 4619, 2203, 7337,
7941, 8847, 6431, 5525, 1297, 9753, 7941, 1599, 89, 5223, 7035, 391, 8243, 9451, 8545, 1901, 4317, 2505, 5525,
1901, 8847, 8243, 9451, 1901, 2203, 7941, 3109, 2203, 5223, 4317, 7035, 8545, 9451, 5525, 6733, 9753, 4619, 4921,
5525, 391, 3411, 7035, 7639, 995, 89, 4015, 7035, 7035, 9149, 7941, 3713, 8243, 1599, 7337, 9149, 8847, 5827, 6733,
7337, 3109, 1901, 9451, 2203, 2807, 8847, 5223, 5223, 2505, 4921, 1901, 8545, 8243, 4317, 5525, 9149, 4619, 2203,
4921, 8545, 4921, 1901, 4317, 2807, 5827, 8847, 89, 693, 4317, 7337, 3411, 995, 7337, 1297, 995, 2203, 7941, 995,
6733, 3411, 6431, 5827, 9753, 693, 6129, 4921, 4317, 693, 9149, 6733, 1297, 1901, 1599, 693, 7337, 2807, 2203, 391,
8847, 693, 8545, 5223, 4921, 6129, 1901, 391, 2505, 5223, 3411, 8847, 5223, 4619, 1599, 4015, 1599, 7941, 8243,
391, 6431, 3109, 5827, 7639, 7639, 7337, 6733, 1901, 7337, 5223, 4015, 5525, 9451, 8847, 9149, 2505, 2203, 4619,
9451, 1297, 5827, 4619, 9753, 9149, 693, 2807, 6129, 3109, 2505, 693, 2203, 7639, 6733, 4015, 391, 693, 693, 5525,
7337, 8243, 7035, 5525, 693, 8847, 3713, 4921, 6129, 693, 8243, 4619, 8847, 391, 4015, 5525, 391, 5223, 9753, 4921,
3411, 3411, 9451, 6733, 9451, 693, 1297, 3109, 1901, 6129, 1901, 4619, 4921, 5223, 1297, 3411, 6733, 6431, 1599,
9753, 391, 6733, 5223, 4921, 3411, 8847, 391, 89, 5827, 5223, 6733, 3713, 8243, 9149, 6733, 1297, 6431, 8243, 6431,
4921, 7639, 3713, 7941, 6431, 7337, 995, 9451, 6431, 9451, 89, 8545, 995, 391, 7941, 89, 3411, 6129, 4619, 3411,
6129, 8243, 8847, 2203, 1297, 1599, 1297, 2807, 3411, 8847, 6733, 7941, 5827, 4619, 1297, 8847, 9451, 3109],
[4317, 4317, 6733, 9753, 1297, 6431, 2807, 995, 4317, 7035, 4921, 1901, 1297, 8545, 4921, 9149, 5827, 7035, 7035,
391, 3713, 7639, 4317, 693, 2203, 1901, 7639, 6733, 995, 4921, 2505, 4921, 693, 5223, 7941, 7337, 7639, 2505, 2807,
9753, 4015, 8847, 4015, 7639, 9753, 4921, 5525, 4015, 1297, 5223, 4015, 5525, 1297, 1599, 8545, 5525, 6129, 5525,
5827, 6129, 1599, 4921, 4619, 6129, 8243, 89, 5827, 7337, 8847, 4015, 1901, 1297, 7941, 693, 995, 4619, 6431, 4921,
6431, 8847, 7639, 8847, 4317, 5525, 1901, 3713, 6129, 2505, 7639, 2505, 9451, 5525, 1599, 4921, 4921, 9753, 1599,
7035, 4015, 4015, 995, 7941, 4015, 5223, 2807, 6129, 6129, 6431, 8847, 693, 995, 9753, 995, 1901, 9451, 7035, 7035,
9451, 7941, 3713, 4015, 5525, 6431, 6733, 4619, 4921, 6431, 1901, 1599, 693, 9753, 9451, 2807, 4317, 4015, 7337,
3109, 1901, 4619, 391, 3713, 3109, 9451, 8243, 5525, 3713, 8243, 1599, 693, 4921, 4921, 7337, 4015, 7941, 9753,
4921, 391, 9753, 89, 9451, 4015, 8545, 1901, 693, 693, 6129, 9149, 391, 7035, 7337, 8243, 4921, 1599, 7639, 5525,
5827, 4015, 4317, 2807, 2505, 1297, 8243, 3411, 6431, 1901, 4619, 1901, 5827, 995, 6431, 7941, 7337, 3411, 3411,
6733, 7941, 6431, 9149, 1901, 2505, 8243, 3713, 5223, 7941, 8847, 8243, 2203, 6431, 7035, 2807, 8847, 3109, 5525,
9451, 1599, 2203, 4921, 3713, 3713, 693, 4317, 89, 7941, 8243, 4921, 8545, 3411, 2203, 89, 1599, 4921, 3411, 4619,
391, 3411, 89, 5827, 1599, 7639, 7941, 4921, 391, 5525, 2203, 2203, 4619, 5525, 9753, 7639, 8847, 6431, 8545, 9149,
5223, 4619, 3713, 5525, 7639, 4619, 7035, 9451, 2203, 3713, 6733, 7941, 6129, 2203, 3109, 4317, 1297, 4015, 5827,
89, 8847, 3109, 4921, 89, 5525, 4317, 2807, 4317, 8847, 3411, 7035, 9753, 6431, 4015, 9149, 7941, 1901, 8243, 4015,
2807, 4317, 693, 4015, 8545, 9753, 4619, 4921, 1901, 1599, 7337, 3713, 4015, 4317, 4921, 9149, 693, 89, 8243, 4015,
8847, 1599, 3109, 9753, 5223, 391, 2807, 1297, 8545, 391, 1599, 6431, 6431, 4317, 8243, 391, 89, 5525, 8243, 995,
6431, 3411, 9149, 4921, 7035, 2505, 4921, 3109, 3713, 9149, 995, 6733, 2807, 8545, 3713, 8847, 4619, 5827, 5525,
6129, 3713, 8847, 693, 7337, 8243, 693, 2505, 391, 5525, 7639, 9149, 1297, 693, 995, 3713, 4015, 9451, 2807, 2505,
6431, 693, 4015, 7639, 7941, 9451, 995, 1297, 8545, 4015, 1901, 7639, 5223, 995, 4015, 6733, 2807, 3411, 3109,
1901, 4317, 1901, 8847, 995, 1297, 8847, 391, 6733, 7639, 9753, 6129, 1901, 5525, 9753, 1297, 9149, 9451, 693,
4015, 7639, 9149, 3713, 693, 693, 9753, 1297, 5223, 9149, 3109, 3411, 8545, 7337, 89, 7035, 5525, 89, 995, 4921,
7035, 4921, 3109, 5827, 1599, 5525, 5223, 1901, 2203, 5223, 2505, 8243, 6129, 6431, 9149, 7941, 9149, 4015, 3713,
995, 9451, 7941, 5525, 5223, 89, 5827, 9753, 4619, 3411, 7941, 6431, 4015, 995, 89, 4619, 6733, 9753, 8545, 7035,
8243, 4317, 1599, 1297, 693, 1901, 5223, 2203, 6733, 9149, 6129, 6129, 6733, 8847, 1297, 7337, 6431, 3713, 2505,
3411, 89, 5525, 4619, 7337, 5827, 7337, 7941, 5223, 391, 7941, 5525, 6733, 8545, 9149],
[2505, 3713, 1599, 7941, 2505, 7035, 89, 6733, 693, 391, 1599, 4921, 5827, 995, 9149, 89, 2203, 4921, 5223, 1297,
3411, 1599, 4619, 4015, 693, 9149, 5827, 5827, 4619, 9149, 995, 7941, 7941, 9149, 3411, 4921, 8545, 7337, 2505,
4921, 391, 2203, 1901, 391, 8847, 8847, 4015, 391, 4015, 7337, 1599, 5827, 89, 4619, 7337, 391, 5525, 693, 89,
9149, 2807, 4921, 6129, 9753, 6129, 391, 2203, 5223, 8243, 2807, 391, 9149, 693, 6431, 2807, 1901, 3109, 6733,
7035, 693, 2505, 2505, 4921, 8545, 1599, 4317, 2505, 7941, 7035, 2505, 4921, 5827, 391, 2505, 7035, 5525, 89, 4015,
6129, 6129, 2505, 4015, 89, 5223, 7035, 5525, 3411, 89, 9753, 3411, 9753, 3713, 1297, 6733, 1599, 7941, 9451, 4921,
1297, 2203, 8545, 3713, 8243, 1599, 693, 2505, 4317, 1901, 9149, 5223, 7035, 3411, 6431, 8847, 2807, 9753, 9451,
4317, 9451, 3109, 6129, 4317, 3713, 2807, 2505, 8847, 89, 3109, 1599, 9149, 5525, 5525, 7639, 4619, 8847, 6431,
3109, 89, 1297, 6129, 7639, 4015, 5223, 9753, 89, 995, 1297, 7941, 7941, 1297, 8243, 5827, 693, 1901, 8545, 2203,
5223, 5223, 6733, 4015, 9753, 8847, 8847, 9451, 6431, 6129, 2505, 9149, 1599, 2203, 9149, 7941, 6431, 4317, 7941,
4619, 6431, 9753, 7941, 4921, 8847, 1599, 6431, 3713, 391, 8847, 6733, 7941, 1599, 693, 6129, 3411, 391, 2807,
8243, 2203, 9149, 9149, 4921, 3713, 4317, 3411, 89, 4619, 6129, 391, 5223, 3109, 4015, 6733, 693, 3713, 5223, 3411,
693, 3109, 7639, 1901, 2807, 4921, 6733, 8847, 7337, 995, 8545, 8545, 2807, 8545, 1901, 89, 693, 1297, 4921, 7337,
5827, 7639, 4317, 7639, 6129, 8545, 4015, 3411, 2505, 5525, 8847, 6431, 1599, 4317, 2505, 1901, 9451, 3411, 1599,
9149, 4619, 693, 4921, 1599, 6431, 9753, 5827, 8847, 9451, 4921, 7337, 6129, 6431, 1901, 8243, 4619, 3713, 2807,
2203, 7035, 7035, 5223, 8243, 8243, 6733, 4619, 4317, 1901, 6129, 2203, 3109, 3109, 4921, 7941, 7035, 7639, 6431,
9753, 9753, 2807, 2807, 2203, 7035, 8243, 8243, 3713, 5223, 7337, 2505, 995, 7639, 9149, 995, 3713, 6733, 6129,
3411, 3713, 8243, 6129, 6733, 5827, 89, 693, 89, 3713, 1901, 8545, 5827, 2505, 3411, 2203, 6129, 7941, 2203, 4317,
693, 5827, 7941, 4619, 5525, 3713, 2505, 3411, 89, 5827, 6431, 5525, 7639, 8243, 4921, 693, 9753, 693, 2203, 5525,
3109, 3411, 5525, 3713, 9451, 4015, 1297, 3713, 995, 7035, 8243, 8243, 3713, 2505, 4317, 1599, 6733, 4921, 5827,
6129, 3713, 2203, 6431, 1901, 2203, 6431, 3109, 3713, 6431, 9149, 693, 7941, 8243, 5223, 9753, 6733, 4317, 4317,
693, 995, 3411, 2203, 3713, 1297, 8847, 693, 1901, 5525, 1297, 9451, 2505, 1297, 7035, 6431, 3713, 693, 7337, 1297,
9753, 5525, 7941, 3713, 4015, 5525, 2505, 7941, 5223, 3713, 2807, 7639, 1901, 5827, 1901, 9451, 4921, 4921, 8545,
3411, 4921, 6733, 89, 2505, 8847, 2807, 1901, 4015, 4619, 4921, 5525, 391, 7639, 4317, 9451, 2203, 3109, 9149,
3411, 9149, 4619, 4921, 5525, 3713, 6431, 391, 9149, 4015, 5827, 3411, 8847, 89, 5827, 6431, 7035, 1901, 3109,
5827, 693, 1297, 2505, 89, 6129, 2203, 3411, 4317, 4317, 2807, 1297, 3411, 9149, 4317, 7035, 9753],
[4619, 995, 8243, 4015, 3713, 89, 9451, 2505, 8243, 2203, 7035, 7035, 89, 6129, 2203, 4921, 9451, 6431, 7337, 4015,
693, 1599, 6129, 3713, 2203, 7941, 1599, 7941, 1901, 8545, 2807, 5223, 2807, 6733, 5827, 4317, 995, 693, 7941,
7035, 89, 7941, 693, 8847, 1297, 2203, 1297, 5525, 2203, 995, 6733, 8243, 9451, 4921, 1297, 7941, 3411, 3411, 9149,
3109, 9753, 6733, 4317, 2203, 7035, 2203, 4015, 1599, 2505, 3109, 4015, 4317, 89, 7035, 7639, 1297, 4015, 4317,
2505, 1297, 7035, 995, 1297, 3713, 89, 7035, 7639, 89, 3713, 6431, 3109, 9451, 9149, 1599, 6733, 995, 7941, 7941,
9753, 391, 6129, 6129, 4015, 9149, 6129, 4921, 4317, 2203, 3411, 8847, 6431, 2505, 7941, 5223, 8545, 1599, 89,
6129, 1901, 4619, 7639, 7639, 693, 4317, 1901, 391, 3411, 4015, 6431, 4619, 5827, 9753, 3109, 1599, 89, 9149, 2807,
2807, 7337, 8545, 1297, 9451, 6129, 5525, 3109, 2505, 7639, 6733, 89, 6129, 3411, 4921, 2203, 2505, 7337, 6129,
5223, 1297, 4619, 9753, 3713, 9451, 3109, 3411, 2505, 9149, 9451, 5223, 8847, 1297, 693, 2807, 391, 3411, 1297,
2505, 7035, 7337, 7035, 5827, 9149, 8243, 8243, 5525, 6431, 8847, 391, 5827, 6431, 4015, 1901, 4015, 6733, 1297,
8545, 5827, 8243, 8545, 2505, 8243, 3109, 2203, 8847, 3109, 6129, 3411, 3109, 2203, 3109, 391, 2505, 8243, 6129,
2505, 7337, 4619, 7035, 5223, 2807, 5223, 1901, 2505, 995, 5223, 9149, 3109, 6431, 1901, 3411, 7639, 7639, 5525,
1901, 89, 7941, 4015, 4619, 4921, 995, 3713, 5223, 1599, 1297, 4015, 2807, 4015, 8243, 4015, 9149, 6431, 1599,
4921, 4619, 9149, 9753, 1599, 7035, 4317, 2505, 9149, 4921, 1599, 5827, 7337, 8243, 8847, 1297, 9451, 9149, 8847,
391, 9753, 7941, 7035, 1901, 89, 7639, 391, 4015, 5223, 4317, 3109, 1901, 995, 1901, 1599, 5827, 1297, 2807, 6129,
5525, 4015, 2807, 3713, 8243, 1297, 6733, 5827, 8847, 89, 995, 6431, 4015, 3411, 6733, 8847, 995, 6733, 7941, 1599,
5827, 89, 5223, 7639, 7941, 2807, 2505, 8545, 7337, 6733, 8243, 4619, 8545, 693, 1599, 9451, 9753, 6129, 89, 7639,
995, 8847, 3713, 693, 3109, 7639, 5223, 6733, 2505, 6129, 7941, 2203, 6129, 693, 693, 89, 5525, 89, 1297, 6129,
9149, 9451, 7639, 8847, 7035, 8847, 2505, 693, 1599, 2807, 4921, 7639, 3109, 693, 4619, 2505, 5223, 4921, 391,
8545, 4015, 4921, 7639, 7941, 4619, 6733, 1599, 8243, 6129, 9451, 1599, 8545, 9753, 89, 5223, 89, 9149, 6431, 9451,
8847, 693, 3411, 5223, 995, 1297, 1297, 7337, 1901, 3109, 9149, 1901, 5223, 89, 8545, 6733, 7639, 9753, 89, 7035,
391, 391, 3411, 5525, 391, 2505, 5223, 693, 995, 2505, 6431, 9753, 3109, 1901, 2203, 8847, 391, 4015, 5525, 6129,
7941, 7035, 9753, 2807, 7337, 6431, 7337, 5525, 8847, 6733, 7035, 1599, 9451, 8243, 6129, 5827, 4015, 5525, 8847,
693, 8545, 7035, 8545, 5525, 7337, 391, 3411, 995, 6733, 2203, 995, 9753, 6129, 2807, 5827, 6733, 8545, 1297, 693,
7035, 3411, 693, 9451, 5827, 6129, 5223, 1599, 5223, 5827, 7639, 4921, 5223, 4921, 8545, 4015, 4317, 2807, 1297,
7035, 9149, 5223, 7941, 3109, 3109, 391, 2505, 3713, 4619, 693, 2807, 4921, 9451, 4921],
[2203, 4015, 3713, 1901, 3713, 3411, 6733, 7035, 89, 89, 7035, 8847, 4921, 995, 4619, 4619, 7941, 3713, 4015, 7941,
6733, 9451, 6129, 8243, 3713, 2505, 2505, 4921, 6733, 9753, 4619, 7941, 8243, 9149, 3109, 2203, 7337, 391, 3411,
8545, 3109, 1599, 89, 9753, 995, 8545, 995, 7639, 693, 8545, 3411, 7337, 3411, 8243, 1599, 693, 7941, 693, 8243,
1901, 5223, 1901, 7035, 3411, 7941, 1599, 9451, 4015, 89, 995, 6733, 7337, 89, 391, 6129, 7337, 8243, 391, 6129,
89, 2505, 6129, 8243, 7941, 5827, 6129, 6431, 6431, 89, 3109, 7941, 4317, 9149, 8847, 1901, 7639, 6733, 995, 1901,
1901, 1599, 7035, 3411, 5525, 9149, 8545, 391, 391, 693, 4921, 995, 7035, 1599, 2807, 4317, 9149, 7639, 2807, 693,
7337, 9451, 3411, 1297, 5525, 1901, 8243, 6129, 4015, 8243, 5223, 9149, 391, 1901, 7639, 8243, 5525, 3713, 7941,
7639, 9451, 4317, 4619, 1901, 6733, 693, 1599, 6431, 9149, 4015, 2807, 7941, 1901, 5827, 2505, 2505, 3109, 5827,
3713, 6431, 6431, 7337, 89, 8243, 9451, 8545, 4015, 8243, 7639, 3713, 4921, 1297, 9149, 7337, 6431, 4317, 693,
7639, 2203, 2505, 2505, 7337, 995, 2807, 7337, 8847, 4619, 2505, 4015, 8545, 6431, 6431, 4015, 5827, 1901, 2505,
4921, 2505, 3713, 7035, 391, 6733, 5223, 3713, 9149, 89, 4015, 3109, 3411, 9149, 3411, 6129, 4317, 7337, 4921,
8243, 693, 3109, 9451, 995, 4015, 1901, 9753, 6431, 2203, 8545, 6129, 2807, 5525, 8243, 5525, 693, 391, 3109, 3713,
1599, 4317, 7941, 6129, 6129, 4015, 6129, 8847, 3109, 4317, 4015, 7941, 693, 1297, 89, 9149, 6129, 6733, 8847,
7941, 2807, 9149, 5223, 4015, 5525, 693, 8847, 9451, 9149, 1599, 4317, 1297, 7337, 6129, 89, 4015, 7639, 8545,
4317, 8243, 4921, 9753, 4921, 4015, 9753, 9451, 6431, 8847, 7639, 3713, 9753, 4619, 8243, 1599, 89, 9753, 6431,
8545, 3109, 7941, 8545, 7035, 4619, 6129, 3109, 2203, 89, 7035, 2807, 1297, 9149, 6733, 1599, 9753, 6733, 8243,
2203, 4619, 3411, 8243, 8243, 3109, 9753, 4921, 9149, 7941, 8847, 2505, 1901, 1599, 4619, 7941, 3411, 2807, 1599,
1901, 4317, 5827, 4619, 2203, 995, 8243, 3713, 89, 7035, 4619, 1599, 9149, 391, 4317, 5827, 6733, 9149, 995, 693,
2807, 7941, 5525, 4317, 9149, 2203, 8847, 7941, 6431, 6733, 2203, 7941, 7035, 9451, 1599, 4317, 391, 2807, 4317,
1297, 1599, 4921, 9753, 5827, 4317, 1901, 3411, 5827, 2807, 1901, 2807, 2505, 89, 6431, 6431, 1901, 8545, 2807,
8545, 693, 9451, 5525, 391, 6733, 6129, 7035, 89, 2203, 2203, 7941, 8243, 2203, 6129, 5827, 7035, 89, 391, 8243,
1599, 7941, 6431, 2203, 4015, 9451, 8545, 4619, 995, 7941, 6129, 4015, 7941, 6431, 7337, 6733, 4015, 2203, 7941,
995, 4317, 89, 7639, 5223, 8545, 3411, 5223, 693, 4015, 3109, 4921, 6431, 9753, 7337, 8545, 7337, 7639, 8545, 2505,
3411, 6733, 2203, 6129, 3713, 4317, 9753, 8243, 5223, 7337, 7337, 9451, 693, 1599, 6733, 4317, 2203, 2203, 391,
9149, 4619, 5827, 693, 8545, 1901, 8243, 8847, 4619, 693, 8545, 7035, 9149, 9149, 3411, 6431, 9753, 7639, 9451,
4619, 4921, 7035, 1901, 3713, 4015, 7639, 6733, 8243, 7035, 995, 3109, 5223, 2505, 995, 8243, 9451, 3713],
[5827, 693, 2203, 2505, 4619, 8847, 6129, 8243, 4619, 1297, 5223, 4921, 6431, 3109, 9753, 7337, 5223, 3713, 7639,
1901, 8847, 1599, 4317, 9451, 9753, 995, 9753, 5223, 8847, 391, 5827, 391, 7941, 3411, 9753, 3109, 89, 4619, 7639,
6129, 8243, 391, 2203, 3109, 1599, 1901, 4015, 6431, 89, 1599, 6431, 7941, 9753, 6431, 3713, 7941, 1901, 9451,
9753, 4015, 3713, 2505, 4921, 4317, 7639, 8545, 4921, 7337, 3411, 9753, 1599, 7337, 89, 8847, 7639, 5525, 3411,
9451, 8545, 5525, 9753, 4921, 6431, 7035, 5525, 4015, 8243, 995, 1297, 6431, 4619, 8847, 2505, 7639, 8545, 4921,
2505, 9149, 7941, 8545, 4619, 1599, 693, 8847, 7035, 2505, 1599, 3713, 8847, 7337, 7639, 6129, 6129, 9451, 8545,
8243, 6431, 1297, 8243, 995, 4317, 3109, 3713, 4619, 6431, 3713, 9753, 9149, 3411, 2807, 6431, 4317, 1599, 1901,
2203, 2203, 4317, 1901, 6431, 6129, 4317, 5223, 6431, 6431, 8545, 9753, 6431, 5525, 4619, 5827, 9753, 8243, 9451,
693, 4921, 7337, 2203, 3109, 89, 8847, 4921, 9149, 4015, 2203, 8545, 5827, 4015, 7941, 2807, 7035, 4921, 9149,
4317, 4619, 2807, 9149, 4921, 6733, 6431, 4015, 6733, 1901, 2807, 693, 4921, 7639, 4921, 8545, 1901, 1297, 5827,
9451, 4921, 8847, 4317, 1297, 693, 5827, 8545, 1901, 8243, 6129, 4921, 7639, 89, 2505, 4921, 4317, 4015, 7941,
7941, 5223, 1599, 693, 7337, 3109, 6431, 9753, 9753, 1901, 89, 3109, 7337, 89, 6431, 5223, 8243, 4921, 7337, 8847,
9149, 9451, 7337, 995, 5525, 1297, 7035, 1901, 5223, 7337, 8847, 3411, 6129, 1297, 4921, 8545, 6431, 9451, 2505,
2203, 1901, 9149, 8545, 7035, 6733, 3713, 2203, 5223, 1599, 6129, 8243, 3713, 4015, 3109, 5223, 7035, 4921, 3411,
8243, 3411, 391, 7941, 995, 3713, 6129, 9753, 4619, 391, 9753, 1297, 1297, 7941, 9753, 3411, 7035, 995, 5827, 7035,
8545, 9149, 7035, 5223, 8545, 9451, 6129, 391, 391, 4619, 6431, 7639, 3713, 4317, 693, 3109, 8545, 1901, 1599,
8545, 4015, 4921, 3713, 89, 8243, 2505, 6431, 9149, 6733, 6431, 5525, 5525, 7941, 1599, 6733, 9451, 4317, 2807,
693, 4015, 693, 3713, 4317, 2807, 1901, 2505, 7941, 1599, 89, 8847, 3411, 1599, 7337, 8847, 5827, 7035, 2807, 7035,
4619, 7941, 89, 995, 5827, 7337, 1901, 1599, 995, 2203, 2203, 7639, 5525, 4619, 7337, 4317, 4015, 1901, 3411, 8545,
9149, 8243, 2807, 6431, 7337, 7035, 6431, 2505, 7639, 391, 8545, 7639, 4619, 3411, 8545, 9149, 4619, 4015, 7941,
4317, 9753, 2807, 7941, 3713, 5525, 2203, 8243, 4619, 5827, 6733, 2505, 6431, 9753, 9149, 8847, 9149, 8847, 8545,
7035, 7639, 7337, 6431, 3713, 4921, 4619, 3109, 1599, 391, 5525, 8545, 4921, 693, 6129, 995, 5223, 391, 2203, 693,
8243, 4619, 4921, 2505, 4015, 2505, 9149, 1599, 1599, 2807, 8847, 693, 9753, 4921, 4921, 693, 2203, 693, 8545,
4921, 5525, 9753, 9149, 1599, 9753, 9451, 7035, 3411, 2807, 4317, 6129, 5525, 693, 2505, 6733, 8847, 4921, 5827,
8243, 6733, 6129, 7337, 3713, 7035, 7639, 8545, 1297, 1599, 9451, 2203, 995, 2203, 1599, 9753, 9149, 7941, 4921,
1599, 7035, 1599, 9753, 2807, 1901, 2807, 5223, 8243, 2807, 8545, 1901, 1599, 693, 5223, 1297, 6431, 8243, 6129,
9451, 6431],
[8545, 7639, 7941, 1901, 7941, 4921, 7941, 5827, 3109, 9753, 1297, 3109, 995, 7941, 7337, 7639, 4921, 7941, 5223,
2807, 9451, 4015, 693, 3411, 9451, 5223, 2203, 4921, 8545, 9149, 7035, 6129, 6733, 5223, 9753, 3713, 8545, 6129,
8847, 1297, 5223, 6733, 995, 9451, 7035, 3411, 5525, 2505, 4317, 1901, 4015, 4317, 3713, 6431, 2203, 6129, 9149,
9451, 3109, 4317, 693, 7337, 3713, 7639, 693, 3713, 391, 7337, 2505, 7035, 1599, 5525, 7337, 1297, 995, 4317, 5827,
6733, 7035, 4317, 4921, 2505, 8243, 1599, 8847, 89, 8243, 8545, 1297, 4619, 3713, 3411, 1297, 1901, 6129, 5223,
9753, 693, 2203, 7639, 6733, 3713, 7639, 3109, 6129, 7941, 1297, 5525, 1297, 9753, 5827, 3411, 2203, 1901, 4921,
1599, 7337, 1599, 995, 4317, 1599, 1901, 1901, 8545, 5223, 391, 2505, 995, 9149, 6733, 693, 8243, 5827, 9149, 1297,
5525, 2505, 4921, 1297, 2807, 1901, 4015, 6129, 391, 9753, 6733, 5223, 4015, 2203, 1901, 1901, 89, 1297, 6129,
8847, 1599, 9451, 4015, 9149, 9451, 7035, 3109, 6129, 6733, 8847, 4619, 2807, 2505, 1297, 6733, 1901, 1297, 7337,
9149, 2807, 7639, 8545, 8847, 4921, 3411, 693, 5223, 4921, 1599, 3109, 9149, 5525, 6431, 9451, 2505, 693, 4317,
9149, 5827, 3713, 9753, 2203, 4921, 3713, 9753, 4619, 5827, 7639, 1297, 6431, 7035, 6129, 6129, 1599, 391, 7941,
2505, 8847, 995, 89, 1901, 89, 2807, 8243, 7639, 2807, 89, 1297, 2807, 4317, 4921, 693, 8545, 9753, 9149, 89, 4317,
2505, 1901, 2505, 9451, 5223, 4015, 693, 5525, 6129, 4317, 5827, 1297, 2807, 4921, 391, 4619, 1901, 6129, 693,
9451, 3713, 4015, 7941, 3713, 2203, 7941, 3713, 6129, 6431, 7941, 7941, 5223, 8243, 1901, 2807, 8243, 4619, 1297,
7941, 995, 5525, 5223, 6129, 9753, 3109, 4317, 2807, 1297, 3109, 6129, 9149, 4015, 8847, 3713, 5827, 3713, 5223,
995, 7639, 7941, 3411, 89, 4015, 7035, 9753, 2505, 3411, 1297, 391, 6129, 89, 8847, 2505, 4015, 6733, 9149, 8545,
7337, 4317, 5525, 5827, 1599, 995, 4015, 2807, 89, 7941, 89, 391, 4015, 7035, 4015, 1901, 7639, 4921, 4317, 7941,
391, 4619, 3411, 4619, 6431, 1599, 2203, 9149, 3109, 9451, 4921, 6431, 693, 7337, 89, 995, 89, 2505, 7639, 4619,
5525, 89, 6733, 89, 9753, 6431, 3713, 1297, 7941, 4317, 7639, 4317, 4619, 3411, 4619, 9149, 3411, 6733, 693, 2203,
5223, 693, 2505, 995, 9451, 7035, 9753, 2203, 995, 2807, 7337, 9451, 693, 995, 7941, 7941, 8847, 4015, 9451, 1297,
1297, 7639, 4619, 4317, 4921, 8545, 4015, 4015, 8545, 3713, 7337, 391, 391, 3713, 89, 3411, 3411, 9149, 4921, 3713,
6733, 4619, 1901, 6431, 1297, 2807, 2505, 1297, 9149, 9149, 4619, 5525, 4921, 3713, 4015, 2505, 1297, 9451, 5223,
5525, 8243, 7035, 6129, 2807, 89, 2203, 1297, 8545, 7639, 3411, 8545, 7941, 1901, 5525, 5223, 4619, 4921, 9451,
4619, 5827, 9753, 3109, 89, 6431, 7035, 7639, 3713, 6733, 4921, 1599, 3109, 1599, 8545, 7035, 1297, 2505, 7941,
8243, 2203, 4015, 4317, 1297, 8847, 4015, 693, 2807, 1901, 8243, 3411, 5827, 7639, 2505, 3109, 4921, 1901, 6129,
3713, 3411, 4015, 89, 4317, 9451, 3109, 7035, 6431, 8243, 1599, 7035, 8545, 391, 5223, 3411, 7337],
[5827, 4015, 5827, 2505, 8847, 5525, 995, 3109, 2203, 693, 4619, 4921, 3411, 8847, 391, 3411, 7337, 1599, 2505,
7337, 2807, 5525, 5827, 5827, 4921, 391, 2203, 5223, 6431, 4015, 89, 9753, 4015, 391, 391, 8545, 7941, 4015, 4015,
6431, 5827, 693, 693, 5827, 1901, 4921, 7337, 5827, 9753, 5827, 3713, 7941, 8847, 3713, 3713, 9149, 6129, 4015, 89,
9451, 4619, 7941, 5525, 4015, 9451, 5827, 9149, 7337, 4619, 9149, 9149, 3713, 8847, 4619, 2203, 7337, 9753, 1297,
4317, 4619, 9149, 5827, 9149, 8243, 7941, 2505, 89, 89, 3109, 1297, 9753, 3411, 9753, 4317, 1599, 89, 5827, 1901,
4317, 3109, 5525, 9451, 391, 3713, 89, 4015, 693, 5223, 1297, 3713, 8545, 7941, 6431, 4317, 995, 693, 995, 391,
6129, 7941, 4015, 6733, 1599, 3713, 9451, 9451, 3411, 7035, 1599, 6431, 5827, 7035, 9451, 9149, 6431, 8545, 693,
5525, 2203, 4015, 2807, 693, 6431, 3411, 9451, 4619, 4619, 89, 7337, 8545, 9451, 5525, 9451, 8243, 9753, 5827,
3411, 8243, 6733, 5223, 3411, 3411, 5827, 995, 5525, 4619, 7941, 3411, 5525, 8847, 5827, 7639, 8847, 8545, 8847,
9451, 1901, 8847, 2505, 995, 2807, 6431, 4317, 4317, 8847, 7639, 3713, 2203, 4317, 7639, 7337, 693, 391, 7337,
9753, 7639, 5223, 995, 7035, 8545, 8847, 6129, 2203, 1901, 9149, 2203, 1599, 6733, 5827, 9753, 89, 5827, 995, 6129,
4921, 391, 8243, 9451, 7639, 1297, 7941, 9451, 5223, 6129, 9753, 6129, 6733, 2505, 8243, 4921, 5223, 9451, 2807,
3713, 3411, 3411, 4015, 7035, 2807, 7639, 9149, 7941, 89, 5525, 391, 693, 3411, 995, 2807, 7639, 8243, 7337, 5223,
391, 3713, 9753, 2505, 995, 4317, 4921, 5223, 7639, 4921, 7639, 1901, 4921, 2203, 4317, 8243, 391, 9451, 9451,
8545, 6431, 9753, 6431, 8545, 89, 9753, 6431, 7035, 4317, 2203, 9451, 6431, 7337, 5525, 3109, 7941, 4317, 7941,
6733, 2505, 4921, 6733, 3411, 8545, 7639, 6733, 9451, 3411, 4921, 4619, 8847, 4619, 9451, 8847, 391, 6733, 7941,
1901, 3109, 9753, 2203, 4317, 8243, 7639, 9451, 3411, 8847, 89, 5223, 4015, 7639, 9149, 6431, 5223, 2505, 8243,
8243, 9149, 1297, 1599, 2203, 8847, 6733, 8545, 8243, 6431, 5827, 995, 4015, 89, 9753, 4921, 4921, 3109, 9451,
6129, 4619, 4921, 4619, 4015, 5525, 9451, 8243, 4317, 6129, 8545, 1297, 6129, 1599, 5223, 6733, 6431, 3713, 9753,
4317, 1901, 1599, 3713, 1297, 4317, 89, 2203, 2203, 2807, 5827, 7035, 1297, 391, 6129, 6733, 5827, 9753, 5223,
4015, 7337, 6129, 391, 3713, 4619, 5525, 9451, 8545, 5827, 6733, 2203, 5223, 2505, 5525, 5525, 7035, 9149, 2203,
8847, 6733, 3109, 8545, 9149, 3411, 7035, 4921, 7941, 7639, 1599, 4015, 3713, 4317, 8243, 7639, 7035, 8545, 995,
9753, 1901, 6431, 391, 6431, 5525, 3109, 1901, 1901, 9753, 4921, 1599, 3109, 391, 7035, 9753, 5525, 5223, 5827,
3713, 7941, 5525, 9451, 9149, 5827, 3713, 89, 3109, 3109, 9753, 7941, 2505, 9149, 9451, 5223, 693, 5223, 5223,
1599, 5525, 5827, 7941, 3713, 1599, 6431, 3713, 7941, 9753, 2807, 2505, 3411, 2505, 4921, 5525, 5827, 4015, 6129,
2807, 2203, 2505, 7941, 3713, 7639, 995, 4921, 9753, 4619, 5223, 7337, 995, 7941, 8545, 7035, 89, 5525, 2505, 2505,
4619],
[391, 6129, 7035, 2807, 4619, 6733, 995, 9753, 9149, 89, 2807, 7941, 4015, 7639, 4921, 995, 9149, 9753, 8545, 7941,
5223, 8243, 1297, 9149, 391, 7941, 693, 1297, 7941, 6431, 7337, 693, 1297, 4317, 2505, 693, 7639, 9753, 7035, 7941,
5223, 8243, 693, 693, 3109, 7639, 2203, 7337, 9451, 391, 1297, 1297, 995, 1901, 7941, 7639, 3411, 5827, 391, 8243,
2807, 391, 5827, 6733, 5223, 391, 4317, 3109, 9451, 3109, 8847, 6733, 8847, 6733, 8545, 4317, 5223, 6733, 5223,
5827, 4619, 6129, 8847, 693, 693, 5827, 3411, 5827, 4921, 2807, 6733, 9753, 8243, 5525, 5223, 8243, 9149, 5827,
6431, 9149, 2203, 2203, 6431, 5827, 9753, 693, 7941, 8545, 6733, 7941, 3713, 4317, 6431, 693, 5223, 3109, 4317,
4921, 4619, 7639, 3713, 2505, 5827, 6129, 5223, 995, 8545, 9753, 6129, 5223, 2203, 9451, 9451, 391, 8847, 995,
3109, 693, 1901, 5223, 3109, 5223, 1599, 4015, 7337, 5525, 3713, 8847, 89, 3411, 1599, 4619, 4015, 3713, 1599,
7941, 693, 1599, 3713, 3713, 7639, 5827, 8847, 4015, 9149, 391, 693, 1901, 7639, 3411, 5223, 2203, 3109, 2203,
3713, 1297, 4015, 4619, 4619, 2203, 693, 693, 7337, 6431, 1599, 5827, 9753, 3713, 1599, 1599, 4317, 4015, 5827,
5827, 995, 995, 9753, 6129, 7941, 9149, 4619, 4015, 4921, 6431, 4619, 1901, 1599, 7035, 5827, 693, 9451, 9149,
8545, 5223, 5223, 9753, 3109, 2807, 6129, 391, 9149, 7035, 8847, 3713, 8243, 9753, 7035, 2505, 4317, 4317, 2203,
9753, 391, 2203, 6431, 9149, 5525, 7035, 693, 4619, 5827, 4619, 7035, 2505, 3713, 5223, 4921, 3109, 4921, 5525,
8243, 1297, 2203, 2505, 89, 5525, 8243, 7639, 2807, 8847, 8243, 693, 9149, 8243, 9149, 2505, 1599, 1297, 6129,
9451, 89, 89, 8847, 4317, 4317, 2807, 3411, 6431, 3411, 2807, 693, 1901, 693, 6733, 4921, 5223, 1599, 9451, 5525,
4921, 7337, 8243, 7639, 9753, 3713, 5827, 2203, 1297, 2807, 9753, 8243, 995, 9149, 3713, 3411, 8243, 7639, 1297,
7941, 4317, 8545, 995, 7337, 5827, 7337, 5223, 2807, 1599, 1599, 2203, 391, 8847, 3109, 5223, 391, 391, 9753, 3713,
7639, 7337, 2505, 7337, 2203, 7035, 2505, 8847, 9149, 9451, 9149, 995, 995, 1297, 6129, 1901, 5827, 3411, 8545,
693, 4317, 391, 6431, 7337, 6129, 7639, 6431, 7337, 5525, 8847, 5223, 3411, 8847, 7337, 8847, 6129, 7639, 8847,
6733, 7337, 995, 9451, 7035, 5525, 3411, 5223, 7337, 8243, 8545, 6129, 3713, 391, 3109, 995, 3411, 9149, 2505,
6431, 2505, 1599, 2807, 4015, 89, 4317, 4317, 4015, 7337, 2505, 5223, 4619, 9451, 693, 7337, 6431, 9149, 6129,
3109, 6431, 6129, 1599, 5525, 6431, 1297, 6431, 3109, 4619, 8545, 3713, 7941, 5525, 7639, 7639, 4921, 7941, 5223,
7941, 3109, 8243, 4619, 9149, 7639, 5827, 4317, 4317, 5525, 7941, 9753, 4619, 6733, 5525, 6129, 2807, 391, 391,
5827, 5827, 4317, 4317, 4317, 3713, 7035, 8243, 2505, 2505, 4921, 2505, 5223, 6129, 2203, 2203, 6431, 5827, 7941,
995, 2203, 1901, 1297, 9149, 6431, 4015, 7639, 3713, 6733, 4317, 7941, 4317, 391, 391, 1297, 7639, 5223, 4921,
1599, 7035, 5223, 6733, 9753, 3713, 89, 89, 6129, 693, 391, 693, 4619, 8847, 3411, 1599, 8847, 5827, 7337, 4317,
6733, 4619],
[2203, 2807, 7639, 995, 6431, 9753, 4921, 3411, 2807, 4921, 4921, 8847, 7639, 6129, 5223, 4015, 8847, 9753, 5525,
8243, 1297, 5827, 3713, 6129, 3713, 4619, 7639, 8847, 7035, 3109, 9753, 2807, 3411, 1297, 89, 4921, 3411, 6129,
4921, 5223, 9753, 1599, 9753, 5827, 6129, 995, 3713, 2203, 8847, 3411, 5525, 7035, 2505, 3411, 7035, 4317, 6129,
3713, 391, 8847, 6129, 4921, 6733, 9753, 1599, 7639, 995, 3411, 6431, 1297, 4619, 7035, 7941, 8545, 6431, 2505,
1599, 8545, 1297, 7639, 9451, 2505, 8243, 3411, 3713, 9753, 4619, 4015, 4921, 89, 4921, 6431, 4015, 7035, 5525,
693, 9149, 1901, 2807, 9149, 693, 9149, 6733, 7639, 9451, 7941, 391, 3109, 3411, 7639, 89, 5827, 9753, 3109, 4015,
7639, 2807, 9753, 8847, 8545, 89, 8243, 7639, 9149, 9451, 8847, 9149, 6733, 9451, 6733, 693, 693, 1297, 5525, 1599,
4619, 7337, 3713, 7337, 3109, 5525, 7639, 7337, 4921, 6733, 5525, 7639, 391, 8243, 5827, 8847, 1599, 1599, 7337,
4317, 6733, 5223, 3109, 1599, 5223, 3109, 1297, 693, 6733, 2807, 391, 1297, 693, 391, 8847, 89, 8243, 8243, 9753,
6733, 6733, 8243, 8545, 1901, 1297, 5525, 8545, 4015, 9753, 6733, 4015, 693, 5223, 89, 5827, 89, 9149, 4015, 6129,
3411, 693, 8847, 5827, 6431, 995, 7941, 1599, 7941, 1599, 7035, 2203, 1901, 8243, 5525, 7035, 4317, 995, 7639,
4317, 5827, 9451, 3713, 3411, 391, 4015, 3713, 3109, 2807, 1901, 1599, 8243, 4619, 4317, 6129, 7639, 3411, 1599,
6129, 391, 9753, 9753, 6129, 1599, 1901, 7337, 5827, 6733, 391, 1297, 5827, 1297, 6431, 8847, 693, 7035, 3109,
4015, 4317, 7337, 3109, 2807, 4317, 1297, 9753, 4317, 89, 391, 8545, 2807, 4619, 9451, 7035, 7941, 2203, 3411,
7941, 6431, 4921, 4015, 7035, 9149, 9451, 5827, 1599, 1599, 693, 6431, 5525, 9451, 3411, 8243, 89, 1599, 9149,
7035, 693, 9753, 5223, 9753, 1297, 8545, 9149, 2203, 3411, 4921, 9753, 6733, 6733, 8243, 4619, 9753, 1901, 7337,
3411, 9451, 7337, 1901, 7337, 3109, 3109, 1901, 3713, 4015, 693, 6431, 2505, 7639, 7941, 8243, 6733, 995, 2203,
8243, 7337, 8243, 5525, 391, 4317, 4921, 89, 3109, 1297, 2807, 5827, 7337, 1599, 6733, 8545, 4317, 2505, 3109, 693,
89, 9149, 1901, 6129, 7337, 7941, 9451, 9149, 7941, 7639, 3411, 2203, 7941, 693, 6129, 89, 6431, 1901, 3713, 7337,
5827, 9451, 2505, 995, 3411, 1901, 9451, 9753, 3411, 4015, 4921, 8243, 4921, 9149, 5827, 3109, 2505, 6431, 3411,
4015, 7941, 7941, 4921, 1297, 2807, 7941, 2807, 5223, 4921, 9451, 1599, 6733, 4921, 3411, 4015, 89, 7337, 1297,
4317, 995, 3713, 2505, 8243, 6129, 2807, 7639, 2807, 5525, 2807, 1599, 995, 4317, 7337, 9451, 5525, 6129, 7639,
4619, 7941, 9753, 7035, 391, 9753, 5525, 4619, 6431, 8847, 5525, 995, 5525, 8545, 1901, 1901, 6129, 89, 89, 5827,
6129, 5525, 5827, 2807, 995, 9451, 6129, 995, 9753, 4921, 1599, 6733, 9753, 7337, 89, 8545, 3713, 7337, 2203, 3109,
9753, 5525, 9753, 6431, 3109, 6431, 6129, 6431, 391, 3109, 6431, 8545, 4015, 9451, 9753, 7337, 3109, 7035, 7639,
1901, 9451, 1297, 7337, 1599, 9149, 7941, 6431, 5223, 8243, 9451, 9753, 4921, 5827, 8243, 1901, 3109, 391, 1901],
[9451, 4619, 1297, 3411, 4921, 8847, 4015, 8243, 7337, 3713, 6431, 4619, 3713, 4317, 4015, 995, 7941, 7035, 7337,
1599, 9753, 7941, 3411, 5525, 7941, 995, 7035, 8243, 1599, 5525, 5827, 3411, 6129, 6129, 2807, 4317, 3411, 9451,
5223, 3411, 4317, 6431, 995, 8243, 89, 2203, 6129, 1901, 3109, 5223, 6129, 5525, 3109, 6431, 7639, 2505, 8545,
5223, 2807, 8243, 6431, 8243, 7337, 995, 1901, 391, 8243, 9149, 2203, 7035, 3713, 5827, 5827, 8847, 2505, 4921,
7337, 8545, 4015, 3411, 8243, 8847, 3713, 4317, 3411, 8243, 8847, 1599, 7337, 693, 3411, 8243, 5525, 4921, 3109,
6129, 9149, 7337, 4619, 2505, 6431, 6129, 2807, 9149, 2505, 9149, 5525, 5223, 3109, 6129, 5223, 4921, 4317, 7035,
8243, 4317, 7035, 7941, 2203, 693, 7941, 2807, 6431, 5525, 4619, 2505, 2505, 391, 7337, 7337, 7337, 2203, 9451,
5525, 7639, 7639, 8545, 693, 9753, 7941, 2203, 1901, 693, 7941, 5525, 9149, 7337, 1297, 9149, 391, 7035, 8545,
4921, 4015, 7639, 4317, 7941, 1297, 8243, 5525, 4015, 4317, 4921, 6431, 995, 1599, 8243, 7941, 4015, 1599, 5525,
4015, 3411, 7639, 7941, 2203, 4619, 2505, 2505, 5827, 6431, 7337, 9753, 6129, 8847, 8243, 8847, 5827, 5223, 1599,
5525, 7941, 1297, 4619, 8243, 6733, 8545, 9753, 4317, 9149, 693, 6431, 2807, 9149, 7035, 995, 3713, 391, 1901,
5223, 1901, 5223, 8847, 6129, 8243, 1901, 7035, 6431, 4015, 4921, 5525, 9753, 7639, 9149, 9451, 6431, 5827, 1901,
7941, 693, 4015, 4317, 7639, 995, 8243, 5223, 1297, 6431, 693, 693, 3713, 2807, 3109, 3109, 6129, 5827, 2807, 4015,
2505, 4317, 8243, 9149, 4015, 1901, 7639, 5525, 3713, 9451, 89, 4921, 89, 4015, 391, 1599, 3411, 1297, 8545, 8545,
9451, 4317, 8243, 9451, 1901, 1599, 7035, 8243, 391, 7337, 9149, 9149, 3713, 5827, 1901, 4317, 2807, 9753, 8847,
7941, 6733, 2807, 693, 1297, 89, 391, 3109, 4015, 4619, 3713, 9753, 7941, 4015, 7639, 2807, 3713, 9753, 89, 391,
9451, 8847, 9753, 5827, 7035, 7337, 1297, 5223, 4317, 995, 1901, 4317, 995, 3713, 3713, 9451, 1599, 1599, 1901,
8847, 4317, 8545, 391, 89, 8847, 3411, 7337, 7337, 5827, 8243, 8545, 1599, 7639, 3411, 391, 8243, 5525, 1901, 4619,
8545, 693, 4015, 9451, 5223, 4015, 9753, 9149, 5223, 1599, 7337, 995, 6733, 5827, 1297, 8545, 4619, 7941, 5827,
5525, 89, 3411, 391, 3411, 1901, 9149, 3109, 5525, 693, 1901, 9451, 7337, 9753, 3713, 1599, 2203, 4619, 8847, 4317,
6129, 7035, 995, 9149, 5525, 693, 3411, 7941, 7941, 7035, 89, 89, 1297, 2807, 3109, 6733, 5827, 1297, 2203, 4317,
9451, 8243, 9149, 8545, 7639, 1599, 4015, 3713, 6733, 2807, 1901, 6129, 89, 9753, 1297, 9149, 6129, 6733, 9753,
7035, 9753, 9451, 8847, 7337, 7639, 6431, 9149, 8545, 9451, 4619, 6129, 3411, 6431, 89, 6431, 4317, 4015, 6431,
6733, 7035, 1901, 1901, 2807, 693, 4317, 3109, 6733, 8545, 6431, 6733, 1297, 6733, 8243, 9753, 4015, 5525, 1599,
9753, 693, 4015, 4619, 2505, 4317, 2203, 5525, 391, 3411, 693, 1297, 7035, 4921, 8847, 5525, 4921, 7941, 2807,
6129, 9753, 1297, 5223, 3109, 6733, 1901, 8847, 391, 2505, 5223, 7035, 1297, 693, 5223, 3109, 3109, 9451, 2203,
1599, 693]]
x = 302
error = 22027
correct = 213702
| arr = [[3109, 7337, 4317, 3411, 4921, 2505, 7337, 8847, 1297, 2807, 4317, 7337, 1901, 3713, 1297, 8545, 3109, 4619, 4619, 8545, 89, 3713, 7337, 2807, 89, 1599, 9753, 9451, 7337, 7337, 5223, 9753, 693, 3713, 4317, 9149, 89, 4317, 5525, 1901, 3713, 3713, 5525, 4619, 2807, 5223, 9149, 8847, 3109, 9753, 391, 5827, 6129, 6733, 6129, 6129, 2203, 9753, 7035, 2203, 4619, 2203, 9753, 3713, 3109, 5827, 3411, 9753, 1297, 2203, 1901, 8243, 1297, 1599, 2203, 89, 5223, 1297, 8847, 5525, 2203, 391, 9451, 2807, 2807, 5525, 4317, 995, 6733, 1901, 2807, 4317, 1599, 9753, 3411, 2807, 4921, 3411, 2203, 6129, 7941, 1901, 2807, 8545, 9149, 6431, 7941, 9753, 4619, 7035, 2203, 7035, 6129, 7941, 5223, 2807, 1599, 1599, 4619, 8847, 2203, 7035, 4317, 4317, 9149, 3109, 4015, 4619, 9451, 4317, 9149, 5525, 6129, 6129, 1901, 8847, 7941, 6129, 6733, 2203, 9451, 7639, 4619, 391, 8847, 8243, 8847, 391, 7035, 2203, 8545, 3411, 5827, 5223, 8545, 7941, 391, 7035, 1297, 6733, 5525, 8243, 6431, 5223, 6733, 2505, 995, 995, 1901, 6431, 5827, 3109, 2807, 89, 1297, 2203, 5223, 3713, 2203, 7941, 6431, 5525, 5223, 6129, 9149, 2807, 9451, 5525, 9451, 8243, 9149, 9149, 89, 89, 7035, 2505, 8545, 3713, 6733, 1297, 5827, 89, 2505, 3713, 4921, 3713, 6129, 2807, 7941, 693, 8545, 7035, 4317, 1901, 9149, 9451, 9149, 6129, 89, 1297, 7337, 3109, 6733, 8243, 3713, 8243, 1901, 2203, 5827, 3411, 6733, 3109, 7337, 7035, 3713, 4619, 693, 5827, 3411, 6129, 4619, 6733, 6431, 6431, 3713, 8545, 2505, 9753, 6733, 3411, 89, 693, 7639, 1297, 2203, 4317, 7035, 6733, 1901, 89, 8243, 2505, 4015, 2203, 391, 995, 7941, 5827, 4619, 4921, 1901, 2505, 6431, 1297, 4015, 1901, 7941, 2505, 4619, 7035, 693, 1599, 5525, 391, 7639, 4921, 4015, 5525, 8243, 693, 7035, 7337, 7639, 391, 4619, 89, 7639, 89, 1901, 5223, 8545, 6129, 5525, 2505, 1297, 3713, 1599, 5827, 5827, 5525, 693, 4015, 9753, 3109, 7941, 5525, 4619, 1901, 7035, 7035, 9149, 5223, 7941, 5525, 1599, 5525, 4317, 8545, 7035, 9753, 4015, 7035, 693, 8545, 4921, 8847, 9753, 5827, 995, 1599, 4317, 2505, 2505, 9451, 391, 8545, 8545, 391, 6733, 9149, 8243, 9753, 7639, 391, 2203, 391, 7337, 9451, 4619, 5827, 2505, 2505, 2505, 6129, 7941, 4619, 7941, 6129, 9451, 4015, 1901, 6733, 9451, 6431, 3713, 693, 8847, 5223, 7639, 9149, 7639, 8545, 5223, 995, 8847, 1599, 4921, 89, 5525, 3713, 8243, 8847, 4619, 8847, 7337, 4317, 3109, 1297, 9451, 4015, 9149, 5525, 693, 9451, 995, 5223, 9451, 391, 6431, 7941, 3109, 4619, 2505, 7639, 5827, 7337, 7035, 5525, 9451, 89, 8243, 995, 5223, 6431, 9753, 7941, 7639, 1901, 7337, 2505, 6431, 7941, 4921, 995, 9149, 4921, 391, 7035, 4317, 2807, 3713, 2807, 89, 5525, 6733, 4619, 4619, 995, 5223, 995, 1901, 6733, 8847, 1297, 9753, 89, 391, 6129, 8545, 4317, 4921, 4015, 8243, 4619, 1901, 5827, 7035, 7337, 995, 7941, 7941, 2203, 1901, 7035, 1297, 7941, 1297, 4317, 4619, 5223, 9149, 8847, 693, 7941, 3411, 3713, 1599, 6733, 6733, 7639, 9451, 1297, 4015, 4921, 89, 2807, 7035, 6431, 8243, 1901, 4015, 995], [2203, 3109, 5223, 6733, 2807, 4317, 995, 6129, 2505, 4015, 9149, 2505, 5525, 6431, 7639, 4921, 5827, 4619, 4015, 7035, 4015, 4317, 4619, 1297, 7639, 693, 4921, 1297, 1599, 8847, 1901, 995, 4015, 3713, 1901, 9149, 8243, 8243, 2807, 3411, 2203, 7337, 5827, 5827, 8847, 5525, 4921, 6129, 1297, 2203, 9149, 6431, 8847, 7941, 7035, 9753, 7639, 1901, 5223, 1297, 3411, 2203, 693, 89, 4619, 6431, 9451, 89, 4619, 7337, 2203, 89, 4015, 4317, 391, 1599, 693, 5223, 4921, 1297, 7639, 7337, 8545, 4619, 4921, 4015, 391, 9753, 3411, 7337, 6733, 1599, 5827, 6431, 693, 9451, 9451, 4921, 3109, 1599, 4317, 2807, 1599, 89, 5223, 8847, 4619, 9451, 2505, 6431, 391, 1901, 3411, 1297, 4921, 89, 3411, 4015, 1901, 3713, 693, 89, 1297, 9451, 4317, 9451, 9753, 5223, 3109, 3109, 4317, 5827, 1297, 3411, 1901, 4317, 4317, 2203, 3411, 6129, 3411, 391, 4015, 7337, 89, 5525, 6129, 995, 8545, 1901, 4619, 4921, 9753, 9753, 7639, 9451, 4921, 995, 4015, 2505, 9753, 391, 6733, 6733, 5827, 4921, 4921, 391, 6431, 6129, 3713, 2203, 4921, 7337, 4015, 89, 5223, 2203, 6733, 5827, 9451, 7639, 2807, 7639, 4619, 5827, 8847, 9753, 7639, 3109, 995, 7639, 391, 8545, 693, 995, 1901, 9149, 9451, 391, 8243, 3411, 1599, 2203, 1901, 8243, 5525, 8847, 8545, 7941, 7941, 3109, 7639, 4619, 7337, 4317, 7639, 2807, 693, 3411, 4015, 8243, 7941, 693, 4015, 5223, 4015, 7337, 3713, 4619, 7035, 2807, 3411, 1901, 2807, 3109, 3109, 4015, 4619, 5525, 6733, 5827, 89, 6431, 6733, 6733, 1599, 3411, 391, 8243, 391, 6733, 2203, 1599, 7337, 693, 1297, 4921, 9149, 4015, 3109, 4619, 2203, 693, 9753, 5223, 6733, 7639, 6733, 6431, 89, 3713, 7941, 5525, 9451, 7337, 1297, 1297, 3109, 5223, 6431, 7941, 9753, 6129, 2505, 2807, 6733, 2203, 6431, 2807, 8243, 8545, 1901, 5827, 9451, 5525, 1901, 4015, 6431, 2203, 995, 3411, 5827, 7941, 4015, 6129, 4619, 7035, 9753, 2807, 5827, 6431, 6431, 2203, 6129, 9149, 1297, 4921, 4015, 5525, 1599, 7337, 2203, 7337, 8847, 8545, 7337, 5223, 3411, 2505, 9753, 2505, 6733, 6733, 9753, 4317, 1297, 3411, 4317, 89, 5827, 693, 4921, 4015, 7941, 5827, 9451, 7639, 7035, 391, 995, 3109, 6129, 6733, 2505, 8545, 89, 4619, 3411, 89, 1297, 1297, 89, 7337, 5223, 7639, 3713, 3713, 1901, 8545, 7035, 7035, 8847, 9753, 9149, 2505, 693, 5223, 2807, 4619, 1901, 391, 2203, 9149, 1599, 4921, 693, 7035, 3109, 1901, 693, 5827, 4921, 9149, 6129, 3713, 3411, 693, 1901, 995, 7941, 89, 6129, 1599, 5223, 6129, 6733, 5827, 7639, 4317, 1599, 8847, 3713, 9753, 2505, 5827, 3109, 5525, 2203, 995, 8243, 8545, 89, 1297, 6431, 7941, 2203, 7941, 7941, 5827, 1599, 4317, 6431, 7035, 6129, 3713, 9451, 693, 7035, 5223, 5827, 4921, 2203, 5223, 7941, 5525, 391, 1599, 6129, 4921, 7639, 7639, 3109, 5223, 4317, 7035, 4317, 391, 89, 6733, 6431, 4921, 3109, 7337, 9451, 2807, 5525, 3411, 1297, 9451, 2807, 89, 2807, 9451, 4619, 8847, 8545, 2807, 995, 2203, 9753, 7639, 4921, 693, 6431, 3713, 8243, 1599, 3411, 9753, 9753, 7941, 7337, 7639, 4317, 6431, 6733, 89, 6129, 6431, 4015, 8243], [7941, 5525, 995, 4921, 2203, 2505, 9149, 9451, 6733, 5223, 7035, 4317, 1901, 1901, 6431, 3109, 7639, 4015, 7337, 4921, 2807, 7639, 6733, 3109, 6431, 9149, 5525, 7941, 8847, 5223, 3713, 391, 7337, 693, 9149, 8545, 8847, 5827, 4921, 6733, 7941, 4921, 8847, 6733, 4015, 6129, 7639, 9149, 5223, 9451, 8545, 693, 6733, 6129, 7035, 2807, 5223, 8545, 693, 4015, 6431, 2505, 4317, 2505, 2807, 8545, 1599, 9149, 7035, 3109, 995, 7639, 2203, 2807, 8243, 4317, 9753, 1297, 5223, 3713, 693, 5827, 89, 9149, 9149, 5223, 1901, 3109, 5223, 1901, 9149, 5827, 5525, 8243, 7035, 8847, 4015, 2505, 7639, 391, 3411, 4317, 2807, 995, 7035, 5827, 7035, 9451, 1297, 995, 2807, 4015, 2203, 6129, 7337, 391, 7035, 7941, 5223, 4317, 9451, 4921, 1297, 5525, 9451, 9451, 4921, 1901, 6733, 6129, 3713, 5223, 1297, 89, 8243, 3109, 4317, 5827, 5525, 6431, 4015, 995, 3411, 6431, 5827, 8545, 1297, 4015, 8243, 9451, 5223, 5223, 6129, 391, 2203, 7639, 5525, 8847, 6431, 1901, 9753, 7941, 3109, 7941, 6733, 2505, 5223, 5525, 9451, 8545, 7639, 2203, 6733, 391, 3713, 3109, 3713, 9753, 995, 9753, 3109, 1901, 1901, 8243, 5525, 5827, 7337, 4619, 3411, 391, 391, 3411, 1901, 4317, 1297, 9451, 8847, 89, 3109, 8545, 3713, 3411, 4921, 5525, 6733, 6431, 6431, 1297, 4619, 7035, 9451, 4317, 2505, 2505, 3713, 3411, 5827, 2203, 9451, 2807, 1599, 7941, 7941, 1901, 7941, 5525, 6129, 4015, 4317, 5223, 9149, 693, 693, 5827, 5525, 2505, 6733, 3109, 693, 4619, 391, 9149, 9451, 8243, 8243, 9753, 4015, 4015, 6733, 7035, 7337, 2807, 5223, 391, 5525, 6431, 9149, 4619, 6129, 391, 3411, 8243, 2807, 5223, 9451, 4015, 7941, 1901, 4317, 8545, 5223, 5223, 3109, 4317, 2505, 2807, 9753, 3411, 8243, 9753, 3411, 9149, 5223, 5223, 4317, 9753, 9149, 5223, 1297, 5827, 8545, 693, 9753, 4015, 391, 9149, 4921, 6733, 3109, 995, 1297, 7941, 2505, 1297, 4317, 7639, 6129, 2807, 1599, 1599, 2203, 8243, 2505, 3713, 5827, 6431, 2807, 4015, 4015, 89, 2203, 8847, 4015, 8545, 693, 2203, 8243, 2807, 5827, 4317, 1297, 7941, 995, 3713, 6733, 5827, 8243, 693, 3411, 8847, 391, 7941, 693, 5525, 3713, 9149, 1599, 8545, 5827, 9753, 6431, 8243, 9753, 5827, 4921, 8545, 6431, 7035, 7035, 4317, 7639, 8545, 3713, 5223, 8243, 9451, 3109, 6129, 9451, 9451, 9149, 8545, 2203, 8545, 9451, 4317, 8847, 5827, 9451, 7639, 4619, 7639, 5223, 8243, 995, 5525, 1599, 8847, 4921, 7941, 7035, 1297, 7035, 693, 7639, 4921, 2203, 9753, 1297, 4619, 2807, 1901, 8847, 2807, 4317, 8545, 7941, 4921, 89, 9451, 2505, 4317, 9753, 2505, 8847, 9149, 5827, 9451, 4921, 693, 5827, 6733, 1297, 1297, 6129, 9149, 6733, 4619, 2505, 7639, 6733, 5223, 3713, 2807, 4015, 7035, 9451, 7035, 7639, 4619, 391, 2203, 6431, 6129, 5223, 5827, 4619, 391, 4921, 5525, 4317, 1901, 4619, 4015, 9149, 8545, 7337, 9451, 4921, 4921, 6431, 391, 693, 4921, 9149, 2203, 3713, 8545, 2203, 2203, 5223, 4015, 8243, 9753, 7639, 6733, 3411, 3109, 4015, 5827, 7639, 4921, 693, 7035, 9451, 6733, 1901, 9149, 1297, 2203, 4317, 2505, 8847, 7639, 7639, 8545, 2505, 5827, 995, 2505, 1599, 6129], [3109, 4619, 693, 1901, 7337, 8847, 4921, 8545, 7639, 3109, 2807, 7337, 4619, 1901, 8243, 995, 1901, 5827, 693, 7337, 9753, 1599, 5827, 1297, 6431, 5223, 9753, 7035, 9451, 4317, 4619, 2505, 5525, 8847, 693, 4619, 9149, 2807, 9753, 7639, 7035, 2505, 2807, 3109, 89, 2807, 693, 995, 6129, 2203, 1297, 7035, 1599, 4921, 7035, 89, 89, 8545, 2807, 4619, 1599, 391, 9451, 2807, 9753, 89, 6733, 1599, 4921, 8847, 3411, 1599, 6129, 8545, 6129, 6733, 1901, 7639, 5525, 6431, 2505, 1901, 5525, 3713, 7941, 2505, 8243, 5827, 8243, 9753, 4015, 8847, 693, 8243, 8545, 4317, 1599, 6431, 4015, 1901, 4619, 4619, 89, 6733, 5223, 9753, 995, 995, 4921, 7941, 7035, 9753, 8243, 8545, 4015, 1599, 391, 4619, 4619, 5827, 9451, 1901, 2807, 89, 8243, 89, 9753, 2807, 3109, 4317, 5827, 9753, 7337, 6733, 8545, 8243, 9753, 5525, 9149, 6733, 2505, 6431, 3411, 5525, 7337, 4921, 9451, 7337, 8847, 2203, 9753, 5525, 3109, 3109, 2505, 5827, 7941, 2203, 4317, 2203, 5223, 5827, 693, 7639, 8847, 7941, 3411, 8243, 7639, 995, 5525, 6129, 7639, 4921, 9753, 8545, 7337, 4619, 9753, 9149, 7941, 5827, 391, 391, 2505, 9451, 2505, 995, 6431, 3411, 2203, 8847, 4619, 4317, 89, 8243, 4921, 2505, 8847, 9753, 8243, 2807, 693, 2203, 7941, 693, 1599, 1599, 1901, 3411, 995, 2203, 3713, 6733, 2807, 7941, 5223, 9149, 4921, 4317, 4015, 2505, 6129, 8847, 2505, 9149, 6733, 6129, 6129, 391, 8545, 4921, 7941, 2807, 7035, 8243, 3109, 8545, 8243, 3411, 2505, 5525, 7639, 7035, 3713, 4921, 5223, 4619, 4317, 6129, 8243, 4317, 3411, 7337, 3411, 6431, 2807, 9149, 89, 5827, 9451, 9451, 9753, 2807, 1297, 1297, 1901, 5827, 4619, 4015, 89, 9451, 6733, 8243, 693, 8847, 4015, 7941, 2203, 5525, 3713, 89, 4619, 2505, 995, 2505, 6129, 4619, 4921, 7941, 3411, 5827, 5827, 89, 5827, 9451, 5827, 9753, 9753, 8847, 3109, 8847, 9753, 6733, 1901, 3411, 1297, 693, 5525, 7337, 391, 4921, 4619, 4619, 4015, 3109, 1901, 4317, 4015, 8847, 9451, 5827, 9451, 2505, 1901, 6129, 2203, 4317, 4015, 9753, 6431, 6129, 89, 8545, 7035, 4317, 7639, 995, 2505, 8847, 6129, 2203, 3109, 5827, 3411, 1297, 391, 4921, 693, 7035, 89, 1901, 7337, 693, 7639, 5827, 89, 8545, 5525, 5525, 7941, 4015, 4921, 693, 2505, 995, 4619, 3713, 1297, 4317, 8243, 5525, 6431, 89, 9753, 2203, 3109, 5827, 3713, 6733, 4317, 1297, 7639, 1297, 8243, 9149, 4921, 2505, 9451, 7639, 693, 8243, 391, 2505, 7035, 8243, 4921, 2505, 9451, 7941, 7337, 89, 1599, 4619, 9753, 5525, 7337, 7035, 995, 4619, 7337, 89, 1901, 5223, 4015, 7337, 3411, 995, 9149, 7941, 89, 7639, 8545, 1901, 2505, 3109, 3411, 2203, 8243, 1599, 4015, 7941, 7337, 89, 7639, 5525, 4619, 89, 995, 6129, 5827, 9451, 7639, 3411, 7941, 4015, 9451, 2203, 7035, 9149, 7639, 6129, 6129, 7337, 4619, 9753, 5827, 8847, 4619, 6431, 3713, 6129, 2505, 3411, 2807, 9753, 1901, 6733, 6431, 2807, 4317, 3411, 693, 8243, 1599, 7337, 3109, 995, 6733, 995, 2203, 2505, 89, 1297, 3713, 3713, 3109, 6129, 7941, 6129, 5525, 9149, 995, 1297, 2203, 6733, 6129, 3713, 1297, 6733, 7941, 693], [9149, 7035, 3713, 7941, 7337, 5525, 4619, 693, 3411, 5827, 7035, 5223, 1901, 995, 9451, 5223, 1599, 995, 7337, 7941, 2807, 2807, 7035, 3411, 3109, 3411, 5525, 4921, 6129, 2203, 4015, 4317, 4921, 3109, 2505, 5827, 4921, 7941, 1901, 693, 3411, 1599, 2203, 5525, 5223, 4317, 7035, 1599, 7639, 8243, 6129, 7639, 693, 2807, 6431, 1599, 8545, 5827, 9753, 2203, 9451, 9753, 1297, 4619, 7941, 5223, 1901, 6733, 9753, 7639, 9149, 7337, 3411, 3713, 1901, 4317, 5525, 3411, 4015, 5223, 7639, 3411, 6129, 3109, 4015, 2505, 1297, 9149, 4619, 995, 4015, 3109, 1297, 5525, 6431, 4921, 693, 9451, 5525, 995, 9451, 6733, 4921, 6129, 89, 7035, 5223, 995, 7639, 9753, 6431, 1901, 391, 693, 6431, 5525, 1297, 391, 5525, 9451, 2203, 7337, 4015, 5525, 3713, 2505, 9149, 4921, 1599, 4619, 3411, 7941, 3109, 391, 9753, 6431, 89, 5827, 5525, 2203, 5525, 7337, 7639, 7639, 6431, 7035, 4619, 3109, 693, 2203, 7035, 6431, 5827, 4619, 4317, 4619, 4317, 995, 9753, 7337, 1901, 1599, 7941, 7035, 6733, 2807, 7337, 1297, 9451, 5525, 9149, 7337, 4317, 6129, 9451, 7337, 6733, 995, 8847, 1297, 7941, 9149, 391, 2807, 9451, 4921, 2807, 2505, 2807, 4619, 1297, 9451, 89, 8847, 1901, 4317, 9149, 2807, 9149, 5525, 4317, 6129, 9451, 7639, 9451, 2203, 6733, 6733, 6733, 9753, 7035, 995, 5525, 7639, 8847, 5827, 5827, 995, 4015, 7035, 4921, 693, 8243, 1297, 1901, 7035, 4921, 9149, 9149, 3411, 7035, 4921, 8847, 2505, 693, 2203, 7639, 9451, 1599, 5827, 5525, 5223, 2203, 8847, 8243, 8847, 2505, 6431, 5525, 1599, 2203, 8545, 3411, 5525, 9149, 5525, 2203, 8847, 8545, 5223, 5525, 5223, 3109, 2203, 3109, 3411, 8847, 1599, 6129, 9149, 2807, 391, 89, 7035, 7941, 2203, 6431, 5827, 8243, 6431, 4015, 9451, 7035, 2505, 1901, 7035, 8847, 7941, 6431, 8243, 5223, 5827, 3411, 8243, 4015, 89, 8243, 4921, 4921, 7035, 8545, 1901, 5525, 9753, 9149, 6733, 5223, 8545, 4015, 2505, 391, 4015, 5827, 9753, 391, 4317, 5827, 3109, 3713, 9149, 995, 7337, 995, 4619, 2505, 7035, 8847, 9451, 7639, 5223, 5827, 4015, 4015, 2505, 2807, 4921, 9149, 4317, 4921, 3411, 391, 8847, 4317, 4619, 4317, 6431, 8545, 3713, 3713, 2807, 6431, 5525, 4317, 1599, 1297, 9753, 7639, 1901, 7941, 6431, 1599, 9149, 1901, 5827, 6129, 4317, 6129, 4619, 6431, 391, 4015, 2807, 3109, 3713, 9753, 1599, 1599, 9149, 9451, 7337, 2203, 89, 1599, 3109, 3411, 7941, 9451, 4619, 7035, 6431, 4619, 1599, 4921, 8847, 3411, 995, 5525, 4015, 4317, 4317, 8243, 7639, 4619, 7035, 3109, 8847, 6431, 1599, 9753, 7941, 8545, 995, 1901, 6129, 3713, 3713, 9451, 4015, 3411, 8847, 89, 9149, 6733, 391, 9451, 7941, 4015, 4317, 9753, 1901, 6431, 2807, 7337, 4317, 7337, 391, 4619, 8243, 8847, 6733, 1901, 6733, 1599, 3109, 3411, 1901, 391, 2807, 4317, 1901, 6431, 9451, 9451, 7639, 7337, 6431, 5525, 4921, 1599, 4317, 5525, 2807, 5827, 3109, 4921, 8847, 7639, 9451, 1297, 2807, 693, 7337, 5827, 8847, 7941, 7941, 2203, 7941, 2505, 6129, 995, 3411, 5827, 89, 4619, 1901, 6733, 7035, 7941, 6431, 4317, 8545, 7035, 6431, 6431, 7941, 6129, 9451, 2203, 9149, 5827, 8847], [7639, 8545, 7941, 2505, 3713, 2203, 2505, 4317, 4015, 1297, 6431, 391, 5827, 9451, 8847, 7941, 391, 7639, 8847, 3411, 8545, 693, 8545, 8545, 4619, 5223, 2505, 2505, 1901, 9149, 693, 89, 3411, 7941, 3713, 3411, 391, 7941, 1901, 3411, 5827, 4015, 2505, 6129, 89, 3713, 3109, 89, 7035, 1599, 4619, 5525, 693, 5827, 6733, 3713, 3411, 2505, 6431, 8847, 4015, 4619, 2807, 4921, 2203, 8847, 8847, 9149, 3411, 4619, 6733, 391, 6129, 8243, 2203, 1901, 2505, 89, 5525, 6431, 4317, 391, 4317, 4015, 3411, 5827, 1599, 2505, 7337, 7035, 1599, 4317, 5827, 1901, 8545, 9149, 1599, 6431, 7035, 4317, 2505, 7337, 2807, 1599, 693, 5827, 9451, 5827, 9753, 7035, 4317, 1901, 693, 2203, 6129, 5827, 7337, 8545, 6733, 995, 1901, 8847, 6129, 8545, 693, 9753, 2505, 7941, 6733, 3713, 6129, 693, 693, 693, 5525, 5223, 5525, 9753, 4619, 693, 2203, 9149, 8847, 9149, 4317, 8545, 7639, 9753, 89, 3109, 7941, 7941, 995, 4619, 2203, 8847, 5525, 3411, 2807, 6733, 2505, 8243, 995, 1297, 7035, 4015, 9451, 2203, 391, 6733, 1297, 8243, 995, 7337, 4015, 4015, 3411, 5223, 5525, 7941, 3713, 7035, 1599, 6733, 7639, 3713, 9753, 8545, 3411, 3109, 995, 9451, 8545, 4317, 9149, 3411, 8545, 1599, 693, 9149, 7639, 5525, 4619, 693, 693, 6129, 8545, 8545, 693, 7035, 3109, 995, 1297, 7337, 2505, 7337, 8545, 3411, 7337, 7035, 2807, 4619, 4619, 5827, 3713, 7639, 9451, 6733, 3713, 4015, 7639, 7639, 2203, 693, 4317, 3109, 1901, 7941, 6431, 3411, 6129, 2505, 7035, 3713, 9451, 4619, 6129, 6431, 6431, 2203, 4619, 4015, 7337, 8243, 7639, 9451, 995, 995, 6733, 8243, 6431, 8243, 4921, 4317, 6733, 693, 1297, 6431, 4317, 4921, 5223, 693, 9149, 995, 2203, 8243, 6129, 8545, 7035, 8847, 7941, 693, 1599, 4317, 9451, 9149, 7639, 6733, 9149, 9149, 5827, 1599, 5525, 3411, 6733, 6733, 391, 3109, 8243, 1901, 7941, 9753, 5223, 2203, 3411, 5223, 5827, 6129, 1599, 2505, 995, 4619, 391, 8545, 2505, 7639, 8243, 8847, 6431, 7941, 89, 5525, 3411, 9149, 1297, 9149, 89, 693, 2505, 2505, 7337, 8243, 4619, 3109, 4015, 6431, 2807, 6431, 6733, 5827, 6431, 7035, 391, 391, 8243, 2807, 1599, 89, 7639, 7639, 3109, 89, 995, 7941, 7639, 4921, 5525, 693, 5525, 3411, 5827, 9149, 8243, 7035, 7035, 995, 995, 9753, 1297, 7941, 5223, 4619, 89, 2807, 995, 9753, 9753, 3411, 9753, 4921, 4619, 89, 9149, 2203, 9149, 6431, 7941, 6431, 1297, 5525, 5525, 4619, 3109, 1901, 5827, 391, 1599, 3411, 4619, 8243, 1901, 3713, 5525, 8545, 9149, 4317, 7639, 4317, 9753, 3713, 7337, 2203, 2807, 1599, 8243, 7941, 7337, 8847, 5827, 8243, 1901, 1901, 3109, 4317, 1297, 1901, 1599, 2203, 2807, 4015, 7035, 7337, 8545, 391, 7035, 6431, 5525, 2203, 9149, 2203, 3411, 9753, 3713, 2807, 1599, 6129, 8243, 8847, 4015, 3109, 5525, 3713, 3411, 6431, 4921, 391, 5223, 4921, 391, 8243, 7941, 9149, 9149, 6733, 7337, 3109, 7639, 8243, 391, 4317, 5223, 9451, 3411, 1599, 1599, 5525, 2505, 7941, 6431, 5525, 7941, 1297, 6733, 1901, 6129, 6431, 1599, 3411, 3411, 2807, 8243, 2203, 3411, 6431, 5525, 1901, 7035, 7035, 2505, 4921, 8243, 391], [3411, 4317, 7941, 7035, 5827, 7941, 1901, 391, 6431, 391, 9149, 8545, 6733, 7337, 8243, 5827, 8243, 89, 8847, 8243, 6733, 5827, 995, 4015, 8243, 7941, 4921, 3713, 4015, 8243, 5827, 4015, 693, 9753, 9451, 9451, 9753, 9149, 8847, 2203, 8545, 8545, 6129, 9149, 7337, 1901, 7035, 6129, 5223, 9451, 5827, 9149, 693, 4921, 9149, 995, 693, 693, 5827, 1297, 8243, 5525, 2807, 1599, 7941, 4015, 7941, 8847, 2807, 5525, 995, 6431, 4921, 4317, 5525, 9451, 7941, 6733, 9149, 8243, 89, 3411, 6431, 8545, 9149, 2807, 4015, 6431, 4921, 8243, 1901, 89, 391, 7941, 8243, 2807, 3109, 3411, 2807, 1901, 9149, 6733, 5827, 8847, 3713, 391, 693, 8545, 7035, 4015, 4921, 4921, 693, 1599, 1901, 6431, 5525, 7941, 1599, 5827, 8847, 6431, 693, 89, 5827, 6129, 9149, 9451, 995, 7035, 6431, 6129, 4015, 7337, 693, 6733, 7035, 9753, 7639, 3109, 6129, 2807, 391, 9149, 3713, 2505, 89, 3411, 995, 6129, 89, 8847, 5525, 5827, 6129, 693, 3713, 2807, 9451, 693, 9149, 3411, 89, 8847, 391, 8243, 8847, 8847, 4317, 693, 6733, 9149, 693, 391, 6733, 1297, 391, 995, 1599, 4619, 7337, 6733, 9149, 89, 1297, 7035, 693, 1599, 391, 4317, 3713, 1901, 89, 1901, 5827, 4921, 7035, 5525, 2807, 2807, 4015, 4921, 3109, 5827, 9451, 8847, 5525, 693, 1297, 8243, 2505, 1297, 391, 3109, 89, 9753, 1599, 995, 8847, 6733, 2505, 2807, 8243, 9753, 4619, 4317, 7337, 4015, 5525, 7337, 7941, 9149, 9451, 9149, 995, 7941, 8847, 391, 7337, 1297, 89, 3109, 7337, 7639, 4619, 4317, 6733, 3713, 7941, 7941, 6129, 7941, 9149, 89, 995, 9753, 9149, 7035, 9149, 1901, 5223, 7639, 8545, 9753, 8243, 3411, 693, 89, 2203, 9451, 6733, 693, 5525, 4015, 4619, 5223, 4317, 2203, 7941, 1901, 5525, 3411, 9451, 8243, 995, 9753, 9149, 9753, 9149, 8243, 2807, 8545, 5827, 1297, 7639, 5525, 3411, 995, 4921, 391, 6733, 5525, 2505, 7035, 5223, 7639, 391, 1599, 4015, 4921, 4015, 8545, 7035, 7035, 3109, 9753, 8847, 4921, 2203, 3713, 5827, 9451, 3109, 8545, 9451, 3109, 3109, 4317, 3411, 995, 995, 7337, 5525, 7639, 5525, 7035, 693, 3713, 9149, 3713, 3109, 8243, 8847, 7337, 8847, 4317, 4619, 2505, 391, 7035, 4317, 2505, 3109, 3109, 4317, 6129, 7639, 2203, 8243, 6129, 3411, 89, 4015, 2203, 1297, 8545, 3713, 8545, 9149, 6129, 4317, 995, 5827, 5223, 8243, 6431, 7337, 9149, 9451, 3713, 5525, 2505, 9149, 2505, 4317, 5525, 3411, 995, 3713, 9753, 8545, 995, 4015, 693, 995, 4015, 6733, 7337, 995, 7035, 3713, 1599, 8243, 6431, 5525, 7337, 995, 4015, 8847, 2505, 8243, 5223, 3713, 391, 2203, 8847, 3109, 8847, 1599, 693, 4619, 7941, 2807, 3109, 5525, 4015, 995, 7035, 6431, 693, 2505, 5827, 7941, 6129, 4015, 7639, 6733, 7941, 4015, 89, 5827, 5827, 4619, 4619, 1599, 995, 6129, 4317, 7035, 5223, 2203, 3713, 9753, 7941, 3109, 2807, 7035, 1599, 8243, 8847, 7337, 4015, 3713, 4317, 2505, 7337, 7941, 4921, 3713, 6431, 693, 4015, 6129, 5525, 7035, 3411, 6431, 6129, 391, 4317, 5525, 8847, 5223, 9753, 693, 6733, 995, 9451, 9753, 7639, 3411, 995, 4921, 3713, 4015, 4619, 1297, 1901, 2203, 3109, 5223, 995], [995, 7941, 3411, 8243, 4317, 7941, 995, 7639, 2203, 5525, 6129, 6129, 1599, 3411, 1599, 5827, 4015, 1599, 2807, 2203, 995, 1901, 89, 2807, 2505, 2807, 9451, 2203, 693, 693, 8847, 4015, 3411, 7035, 2505, 4619, 1599, 5827, 6733, 4921, 7337, 693, 5827, 6733, 4015, 7337, 4317, 3411, 8243, 3713, 4619, 7941, 2505, 693, 391, 3109, 9149, 2203, 1599, 7035, 3411, 9149, 7941, 391, 4921, 89, 6733, 3713, 5223, 5525, 391, 9451, 7337, 6733, 4921, 4317, 89, 2203, 2203, 3109, 2505, 4619, 391, 7035, 9149, 5525, 9149, 2505, 391, 7639, 3411, 9149, 3411, 9149, 2203, 8847, 995, 4015, 6733, 693, 9451, 2505, 6129, 9451, 5223, 7941, 9753, 3713, 8243, 3109, 5827, 2807, 693, 7337, 391, 4015, 7941, 89, 8847, 5525, 391, 7941, 3411, 693, 6733, 1901, 2807, 7639, 693, 693, 4921, 7337, 8545, 1297, 89, 7941, 4619, 9451, 391, 2203, 8545, 6733, 5827, 9451, 9451, 7639, 1901, 9451, 8847, 3713, 8243, 9451, 693, 1901, 7035, 1297, 6431, 9753, 4619, 3411, 7337, 5525, 693, 7337, 1297, 8847, 4317, 5525, 8847, 4921, 4317, 4317, 9451, 391, 693, 8243, 5223, 8847, 3713, 8243, 5827, 8545, 693, 5827, 995, 3713, 8545, 995, 5223, 5223, 4317, 5223, 7639, 1901, 3713, 3713, 9753, 4015, 5223, 693, 7337, 7337, 7639, 2203, 6431, 4619, 7639, 8545, 4015, 4317, 4921, 89, 7639, 3109, 4921, 4317, 5223, 8545, 5223, 5827, 5827, 6733, 89, 4015, 7941, 2505, 4619, 1901, 7941, 8545, 391, 8847, 6431, 3713, 3713, 7035, 2807, 1901, 9149, 9451, 6733, 4619, 9753, 7941, 995, 7941, 8545, 5525, 7639, 2807, 1599, 6129, 4921, 2505, 4619, 7035, 89, 693, 1599, 2505, 2203, 2203, 4317, 2807, 2807, 3411, 5827, 1297, 5525, 2505, 1901, 5525, 2505, 1599, 3713, 5827, 4015, 8545, 7337, 9451, 8545, 4317, 8847, 8545, 7337, 1599, 8243, 7639, 6431, 8243, 5827, 8847, 9451, 4921, 5525, 1297, 391, 8545, 7337, 3411, 6733, 1297, 693, 4921, 8545, 4921, 8545, 6733, 7941, 89, 89, 7337, 7941, 9753, 9451, 7337, 5827, 6431, 3109, 4619, 4317, 693, 391, 89, 5827, 4015, 4619, 4317, 1599, 5525, 1599, 9149, 1297, 7941, 2203, 7035, 6733, 8847, 4921, 8545, 2505, 7035, 1599, 3713, 5525, 2203, 9149, 2203, 3713, 2505, 7941, 4921, 8847, 6431, 995, 3713, 8243, 3411, 5525, 7035, 1297, 7337, 89, 1901, 1901, 9753, 9149, 3109, 995, 6129, 6431, 391, 6431, 8545, 6431, 995, 9149, 8847, 89, 1297, 4921, 7639, 3109, 8545, 4619, 995, 4921, 1599, 4015, 7941, 8847, 7337, 3109, 5223, 7639, 2203, 8243, 5223, 9149, 6431, 2505, 3713, 8545, 7337, 391, 5223, 2505, 89, 3713, 4921, 4317, 3713, 4317, 89, 693, 9149, 3713, 2807, 6129, 391, 995, 995, 8545, 4015, 2203, 5525, 8243, 9451, 2505, 4619, 8545, 4619, 693, 3411, 1901, 7035, 8847, 3411, 995, 1599, 9753, 5827, 4619, 7639, 9753, 3713, 391, 391, 3713, 1297, 3411, 4619, 9753, 1297, 7035, 9753, 2505, 7639, 995, 7035, 4317, 4015, 9451, 4317, 4619, 5223, 9753, 8545, 7035, 2505, 89, 2505, 4921, 6733, 2807, 7035, 89, 2505, 6129, 693, 6733, 8847, 3109, 2807, 89, 6129, 1901, 1297, 8243, 6129, 8545, 995, 693, 9149, 89, 6431, 5827, 3411, 1297, 9149, 8545, 3713], [6733, 5827, 9149, 3109, 4015, 2203, 9753, 1599, 9753, 8545, 5223, 9149, 5827, 693, 8545, 7337, 1297, 89, 3411, 9149, 693, 9753, 2807, 7639, 4317, 9149, 6733, 7035, 7337, 4619, 3411, 8847, 1901, 9753, 6431, 7035, 4619, 3109, 8847, 8545, 3109, 693, 2505, 4619, 4317, 995, 7639, 9451, 8847, 8847, 7035, 3411, 5525, 7941, 8243, 5827, 89, 7639, 6431, 3109, 9451, 4317, 7639, 391, 3109, 995, 391, 8847, 9149, 6431, 1599, 5525, 9753, 4921, 5223, 4317, 5525, 9149, 3411, 7639, 2807, 1599, 5827, 3411, 995, 9149, 2807, 4619, 4921, 4619, 9753, 7639, 6733, 4921, 2807, 3713, 3411, 3713, 7035, 5525, 995, 1599, 5223, 89, 6733, 3713, 7639, 3109, 1599, 89, 995, 4015, 2203, 6431, 5525, 5827, 2505, 9451, 2203, 693, 2807, 5223, 8847, 9149, 5525, 9451, 6129, 8545, 7941, 8847, 7639, 9149, 1901, 7941, 7941, 5525, 3109, 5827, 8545, 9753, 7639, 1901, 9753, 9149, 5827, 4619, 1297, 3109, 2505, 4317, 3411, 89, 5525, 1297, 995, 89, 8243, 7035, 4921, 693, 3109, 1901, 4317, 6431, 5223, 4619, 2807, 1901, 2807, 995, 9753, 4015, 995, 8243, 7035, 6431, 9149, 995, 1297, 8847, 2505, 5827, 6129, 2203, 7035, 3411, 995, 4921, 8243, 8545, 7035, 391, 6733, 4317, 5525, 1599, 5223, 5827, 1599, 7639, 5827, 8243, 2505, 6733, 6129, 4921, 8243, 89, 7639, 1901, 693, 5827, 8243, 1901, 6733, 9149, 7639, 8243, 3109, 5223, 1901, 9753, 5223, 8545, 1599, 8545, 8243, 6733, 89, 7639, 6431, 391, 4619, 5525, 1297, 5525, 6733, 3411, 2203, 8243, 4317, 4921, 5223, 3411, 4619, 1599, 1297, 1599, 3411, 3109, 1599, 3411, 7035, 5827, 4317, 8545, 4317, 9753, 5827, 4619, 4015, 9753, 693, 7337, 4921, 9451, 8545, 995, 5827, 1901, 9753, 4015, 3411, 693, 4921, 3411, 9451, 2203, 7337, 6129, 693, 2505, 3411, 6129, 6733, 4015, 4921, 5525, 9753, 8545, 7035, 3713, 4317, 7941, 9451, 1297, 4015, 2203, 8545, 8847, 2203, 7337, 9753, 4619, 3411, 5827, 8847, 8243, 2807, 6129, 89, 4921, 89, 7639, 5223, 89, 4921, 7035, 7337, 391, 89, 693, 391, 4317, 8545, 4015, 6431, 4921, 3109, 7639, 9149, 9149, 7941, 8847, 4921, 4015, 995, 4317, 9451, 8243, 995, 4015, 4921, 89, 3109, 995, 693, 693, 693, 693, 6733, 5827, 4921, 1901, 391, 6129, 9753, 2807, 391, 1901, 3109, 8243, 1297, 6431, 1599, 5827, 5223, 1901, 2203, 693, 2203, 3109, 4619, 693, 1901, 8243, 7639, 9451, 2203, 4619, 5223, 1599, 8243, 8545, 693, 995, 3109, 89, 9451, 693, 1901, 6129, 1901, 9149, 4015, 3411, 1901, 2203, 8243, 89, 6129, 5223, 1599, 3109, 89, 9149, 8243, 6431, 5525, 9451, 1297, 8847, 7639, 7337, 6431, 9451, 7035, 1297, 9753, 4921, 8847, 391, 2505, 7639, 4317, 7337, 6431, 8847, 391, 89, 8545, 4317, 8847, 693, 6733, 3411, 4619, 4015, 7337, 89, 7337, 995, 2203, 8847, 5223, 5223, 1901, 1901, 6431, 4921, 9451, 4619, 8847, 5525, 2505, 5827, 8243, 8847, 2203, 89, 8545, 6129, 8243, 4317, 6733, 6733, 5223, 3109, 2505, 7639, 8243, 7941, 4317, 1901, 6129, 4921, 4619, 4015, 6733, 7639, 2203, 7035, 3713, 6431, 8243, 995, 3411, 4317, 3109, 89, 7941, 4015, 4317, 9149, 3713, 7035, 6733, 4015, 5827, 5223, 4317, 5223], [693, 4015, 7639, 7941, 391, 391, 9753, 9753, 5827, 4921, 4015, 9451, 7035, 5223, 8545, 4619, 1901, 2203, 7035, 1297, 5525, 3713, 2203, 9753, 2807, 89, 2807, 693, 1297, 2505, 5827, 1901, 9451, 4921, 4015, 4015, 995, 7639, 4015, 7941, 7337, 5525, 995, 7941, 8847, 1901, 391, 5223, 6431, 7337, 6431, 6431, 6431, 2203, 6129, 9753, 1297, 9149, 6733, 8847, 6431, 7337, 6129, 7639, 3109, 5827, 7941, 2203, 2203, 5525, 6129, 3713, 7941, 7035, 9149, 1599, 3109, 5525, 5525, 4015, 391, 6733, 8545, 4619, 9753, 4015, 6431, 8243, 995, 7337, 9753, 7941, 3109, 4921, 8545, 5223, 3713, 2203, 9451, 3109, 5827, 5827, 9753, 8243, 7035, 2807, 2807, 8243, 6431, 1901, 9753, 995, 4619, 5827, 4619, 5525, 6733, 8847, 5827, 9451, 4921, 7337, 2505, 391, 3713, 7337, 7035, 7035, 995, 1599, 995, 7639, 1297, 1599, 5223, 9149, 5827, 6431, 1599, 4015, 6129, 1599, 89, 1297, 7337, 9451, 7941, 995, 5827, 4921, 4619, 9753, 8243, 8847, 3411, 89, 4317, 1297, 391, 8243, 995, 995, 2203, 3411, 9753, 2203, 4317, 7639, 693, 7639, 8847, 4921, 391, 3411, 9149, 693, 9451, 3109, 9149, 6431, 1599, 3109, 8243, 4317, 3713, 2807, 3713, 3713, 4317, 9753, 7337, 2505, 6129, 9149, 1297, 6733, 7337, 8243, 7035, 7337, 89, 4317, 995, 9149, 4921, 3411, 5223, 391, 1599, 7035, 5525, 8545, 391, 8243, 4619, 7337, 391, 3109, 3411, 5223, 6431, 9753, 89, 995, 5223, 8243, 6733, 5827, 5525, 1297, 8243, 9753, 7035, 391, 5223, 89, 6431, 8545, 391, 9753, 3109, 4619, 4921, 7639, 7639, 9149, 2807, 4015, 4015, 4921, 89, 3411, 2807, 9149, 7941, 6733, 3713, 4619, 9149, 8243, 1297, 8243, 6431, 8243, 8545, 1599, 9753, 5525, 2203, 4619, 2505, 6733, 9149, 1901, 9451, 6733, 2505, 5223, 89, 8847, 7337, 6129, 1297, 3411, 9451, 3411, 2505, 7035, 9753, 3411, 5223, 6129, 391, 3411, 3713, 6129, 4619, 9149, 2807, 4015, 2203, 7035, 5223, 4921, 4015, 5827, 8243, 3411, 1901, 3109, 5223, 7337, 5525, 4619, 9451, 391, 995, 7337, 5525, 7035, 2505, 4015, 6733, 3411, 1297, 3411, 3109, 7941, 5525, 9149, 9753, 391, 1901, 6431, 3713, 8243, 3713, 693, 6733, 9451, 9451, 5525, 1297, 4317, 8545, 4317, 5827, 7035, 6431, 89, 8243, 693, 7639, 7035, 693, 6733, 89, 6733, 995, 2505, 4619, 8847, 4015, 3713, 9451, 2807, 8847, 7941, 391, 2203, 391, 9753, 8545, 5827, 9451, 8847, 9451, 7337, 4619, 8545, 8847, 1297, 8243, 1599, 1599, 89, 5223, 4015, 8243, 7941, 5827, 9149, 89, 995, 5827, 1297, 2807, 3411, 1297, 8545, 9753, 5223, 5223, 7337, 6129, 995, 4921, 6431, 7337, 5525, 2505, 2505, 6129, 9753, 8243, 1901, 3411, 3411, 995, 4619, 89, 7337, 995, 3411, 5827, 391, 8545, 9753, 6431, 6733, 89, 5223, 5827, 1297, 8545, 4619, 4015, 89, 89, 8847, 1297, 693, 4921, 9149, 5525, 2807, 2807, 6733, 4619, 693, 693, 9753, 1901, 391, 9149, 6733, 3411, 3411, 2807, 4619, 6129, 2505, 4015, 7941, 3109, 7941, 5827, 1297, 6431, 7639, 1901, 2505, 3109, 6431, 2505, 693, 2505, 693, 3109, 5223, 9753, 3109, 4015, 391, 9149, 9753, 6431, 7639, 391, 3411, 5525, 1599, 6733, 1297, 5827, 3109, 6129, 4015, 3411, 2203, 4015, 391], [9753, 89, 6129, 1599, 995, 391, 2807, 8545, 3411, 2203, 8847, 7337, 4317, 2505, 1599, 8545, 7337, 7639, 89, 3411, 3713, 5223, 8847, 9149, 1297, 8847, 2807, 4921, 5827, 5525, 3109, 4317, 8545, 4619, 7035, 391, 8847, 1901, 6129, 3109, 693, 4921, 4619, 391, 391, 6129, 4317, 6733, 7337, 3411, 6431, 3109, 995, 2807, 6733, 4317, 693, 995, 5827, 7639, 8243, 8243, 8243, 995, 3411, 9451, 6129, 693, 1297, 7941, 4619, 4317, 6129, 2505, 1297, 1599, 7639, 7337, 7337, 8545, 2505, 693, 4921, 9149, 8545, 9451, 6129, 6129, 4317, 2807, 89, 3713, 4317, 4921, 8243, 3713, 4619, 2807, 3109, 1297, 8545, 9451, 5827, 8545, 391, 1297, 4619, 89, 7035, 693, 5223, 8847, 1901, 7941, 1901, 7035, 8243, 1599, 1599, 7639, 5525, 6129, 9149, 6733, 1297, 1599, 4015, 6129, 6733, 2807, 3411, 9149, 2807, 2203, 5525, 9451, 995, 7337, 89, 4015, 6431, 9149, 5223, 9149, 391, 89, 7035, 89, 2203, 2203, 693, 693, 4015, 4619, 7337, 8545, 995, 8847, 3411, 995, 7941, 7941, 6733, 4619, 3713, 391, 9149, 7639, 4317, 6733, 9753, 5827, 5827, 89, 7941, 8847, 2807, 2203, 9451, 7035, 2807, 9451, 6431, 3411, 391, 5827, 4317, 2505, 2203, 9753, 8545, 8847, 8243, 9451, 7337, 3713, 1901, 1599, 8243, 3411, 2505, 8847, 8243, 693, 2505, 7035, 89, 9753, 7035, 4317, 5827, 3713, 2505, 5827, 995, 3411, 4921, 8847, 6129, 2505, 4015, 1297, 7941, 6733, 5525, 6431, 4015, 2505, 1297, 693, 4015, 9149, 9149, 4921, 6733, 8847, 9753, 4619, 8847, 6129, 2807, 1901, 391, 693, 9451, 5827, 8243, 391, 4619, 391, 7337, 9451, 5223, 995, 9451, 7639, 7337, 6733, 4619, 693, 5525, 5827, 2505, 4317, 1599, 9451, 995, 2807, 1901, 3109, 4015, 2505, 1297, 7337, 1297, 9451, 89, 7941, 6129, 7035, 5525, 9753, 89, 5223, 7337, 2807, 1901, 391, 7035, 693, 3109, 6733, 8847, 1297, 7035, 8243, 4317, 8847, 3713, 1599, 3109, 3109, 5827, 1297, 1297, 9753, 3109, 7941, 1297, 1297, 9149, 2807, 7639, 6733, 7337, 9149, 1599, 9149, 3411, 3713, 8545, 8545, 5223, 7639, 9451, 3411, 1901, 2203, 3411, 8243, 1901, 3713, 3713, 3713, 995, 391, 7941, 7639, 6733, 9753, 4317, 5827, 8243, 391, 8243, 6733, 9753, 3713, 1599, 9451, 9451, 3411, 2203, 7035, 9451, 3411, 6733, 2505, 4015, 3713, 9753, 2505, 89, 7941, 693, 5525, 4015, 6431, 391, 6431, 8243, 6733, 2807, 8243, 4015, 1901, 3109, 3109, 1297, 1599, 4317, 7035, 1599, 5525, 693, 4015, 5525, 8243, 2203, 7035, 7337, 7941, 693, 2203, 5525, 6733, 7337, 89, 4921, 8847, 4015, 1599, 995, 1901, 7941, 8243, 4015, 5827, 2505, 8243, 4015, 391, 2203, 9753, 7941, 995, 9451, 1599, 3713, 1297, 5827, 4015, 3411, 6129, 391, 8545, 2807, 4921, 3411, 6129, 1599, 5223, 5827, 2807, 9451, 8847, 8847, 7639, 1901, 6431, 1599, 5827, 7639, 2807, 4619, 4921, 5525, 1297, 7337, 8847, 1599, 7337, 4619, 9451, 9753, 2505, 3109, 3109, 6431, 3109, 4317, 4015, 5525, 9149, 3713, 8243, 3713, 995, 7035, 8545, 2203, 9753, 693, 7337, 7035, 1297, 3411, 8847, 5525, 693, 8243, 5223, 4619, 9753, 9753, 6733, 3713, 4317, 4921, 4317, 8243, 9753, 1297, 4619, 5525, 995, 4921, 1297, 2505, 1901, 391, 6431], [4317, 8545, 693, 4921, 7035, 4317, 9451, 9753, 391, 391, 9451, 8847, 6733, 5223, 5525, 1599, 89, 7337, 4921, 5525, 693, 693, 5525, 6431, 3713, 995, 7639, 1901, 1599, 4619, 3713, 5827, 6129, 9451, 6431, 391, 6129, 7337, 9149, 6733, 693, 7337, 5223, 7337, 8545, 7035, 6733, 1297, 9753, 1599, 2807, 8847, 8243, 2807, 8545, 7337, 9149, 7035, 1901, 3109, 8545, 9753, 7639, 2505, 3411, 8847, 1297, 1901, 3109, 3411, 89, 1599, 7941, 4921, 2807, 6129, 8847, 4619, 5525, 8545, 89, 7941, 1297, 7035, 4015, 2807, 2807, 4921, 2505, 1297, 391, 5827, 4015, 9149, 7337, 6733, 89, 6129, 3411, 391, 5827, 6129, 8545, 7639, 4317, 2505, 8243, 4015, 6733, 1297, 2807, 1901, 3109, 9149, 2807, 9753, 8847, 1599, 6733, 9753, 2505, 1901, 9451, 995, 5827, 7035, 3713, 2505, 7035, 2203, 391, 2203, 9753, 7035, 5223, 995, 995, 1297, 9753, 6129, 6733, 9451, 7337, 8243, 995, 1901, 3713, 6129, 9149, 4921, 2505, 3411, 5223, 89, 8847, 7941, 2203, 9451, 4921, 1901, 4015, 9149, 4921, 9753, 7035, 1599, 9451, 8545, 9149, 7941, 4619, 7035, 9149, 3109, 1901, 9149, 8847, 5223, 7035, 2203, 2807, 693, 9149, 89, 8847, 7941, 4317, 4015, 995, 5223, 4921, 3411, 7337, 4619, 995, 3713, 7941, 3109, 391, 6733, 1599, 2203, 1901, 89, 4015, 5223, 1599, 1901, 3411, 8545, 1599, 1297, 693, 2203, 3713, 9753, 4015, 9451, 693, 8243, 3109, 3109, 9451, 4317, 9451, 4921, 9753, 2505, 9451, 8847, 4317, 7639, 2203, 6129, 5223, 1297, 9149, 9149, 7941, 2203, 7035, 6733, 9451, 1297, 3109, 4921, 89, 9753, 8243, 1297, 6129, 5827, 391, 6733, 1297, 7639, 9753, 6733, 3109, 6129, 3411, 2505, 1901, 4921, 7639, 693, 4921, 9753, 2807, 5525, 4317, 3109, 89, 5827, 5223, 7941, 6431, 391, 5525, 3713, 391, 2505, 4015, 5827, 9149, 4619, 1297, 2807, 1297, 7639, 2505, 8847, 1599, 8545, 5223, 89, 9753, 6129, 8545, 3109, 7941, 8243, 2807, 5223, 5223, 6733, 4317, 2203, 8847, 9451, 2203, 9451, 1901, 4317, 4921, 9753, 7639, 7941, 995, 9149, 6431, 7337, 9451, 995, 391, 3411, 9149, 3713, 7035, 9149, 5525, 1297, 3109, 3411, 693, 6733, 5525, 4317, 5525, 9149, 3109, 9451, 6733, 693, 995, 6431, 5827, 8545, 9149, 1901, 3713, 3411, 7941, 2505, 2807, 6129, 3109, 7639, 7337, 2505, 2203, 1599, 5827, 2505, 9451, 7035, 3109, 995, 4015, 1297, 1599, 7035, 1297, 7035, 391, 3109, 4015, 3713, 4921, 3411, 693, 9451, 8545, 9753, 2505, 9451, 3411, 8847, 4921, 4619, 693, 5827, 2807, 1297, 995, 693, 1901, 2807, 9753, 5525, 1901, 4619, 3411, 3109, 89, 4921, 391, 1297, 4921, 2807, 7639, 6129, 7639, 7337, 693, 7035, 8243, 9149, 2203, 2505, 6129, 7035, 8847, 1297, 89, 391, 4619, 2807, 4317, 1599, 3411, 7337, 8545, 8243, 7035, 3109, 7035, 4619, 1599, 4317, 8545, 3713, 2505, 4317, 4015, 89, 6733, 5223, 7639, 9451, 7639, 4619, 1297, 7337, 9451, 5827, 3713, 9149, 693, 693, 3411, 8243, 6431, 2203, 8243, 3411, 3109, 9149, 4921, 7337, 8243, 7941, 995, 4015, 9149, 2807, 6733, 3109, 7337, 2505, 1599, 5827, 4015, 391, 4921, 8545, 8243, 89, 9451, 693, 7337, 8243, 3109, 3109, 7035, 5827, 8545, 1297, 5223, 7337, 7337, 2807], [5827, 4317, 4921, 391, 7941, 1297, 1901, 5827, 6733, 2505, 4921, 7941, 3411, 6129, 2203, 391, 4317, 9451, 8847, 4015, 9451, 4921, 6733, 9753, 6733, 4619, 3411, 2807, 6733, 89, 2807, 3411, 9149, 8847, 9753, 7639, 5525, 693, 7941, 6733, 1901, 7337, 9753, 6431, 4921, 9149, 2505, 4619, 3411, 89, 4015, 391, 3109, 5525, 2807, 995, 1297, 8847, 6129, 3109, 9149, 5223, 5525, 4015, 9451, 1901, 9753, 7639, 8545, 2807, 7337, 391, 7337, 995, 7941, 5223, 7035, 1901, 5223, 3109, 1901, 2505, 1599, 9753, 6431, 5525, 6733, 4317, 7639, 7639, 8545, 5223, 9753, 2505, 7639, 995, 4921, 3411, 8243, 3411, 391, 4317, 4015, 1599, 1599, 9753, 2505, 7035, 2203, 4619, 391, 693, 1599, 1599, 8243, 391, 7035, 4921, 693, 5827, 9149, 89, 391, 8847, 8545, 4015, 9753, 7639, 7941, 2807, 8545, 1297, 5223, 2203, 8243, 391, 6733, 6431, 1599, 5827, 6733, 5223, 4619, 4015, 6129, 7941, 7337, 3713, 4619, 3411, 8545, 2807, 5525, 9753, 4921, 2505, 6129, 8243, 8243, 9149, 4317, 8847, 2505, 2505, 8545, 2203, 9753, 4921, 3411, 89, 9753, 7035, 1297, 7337, 9451, 5827, 6129, 3411, 995, 995, 2505, 2807, 1297, 995, 9451, 995, 693, 391, 391, 8545, 1901, 995, 3713, 1599, 7639, 2203, 3109, 2505, 4015, 3713, 5827, 995, 6129, 391, 8545, 7035, 7639, 6733, 7337, 1599, 7035, 3713, 4015, 4015, 5827, 2203, 5827, 9149, 8847, 1297, 1297, 6431, 5223, 693, 8545, 4317, 5525, 1901, 7941, 1599, 4015, 1297, 4015, 9149, 8545, 4619, 6129, 4921, 2203, 693, 4317, 4921, 8847, 6733, 1297, 7035, 89, 9451, 3411, 9451, 2203, 2807, 4619, 8545, 8545, 7941, 3713, 391, 89, 4317, 6431, 1901, 3411, 4921, 5223, 7337, 6129, 7035, 5525, 7639, 89, 1901, 9451, 3713, 8847, 6129, 3109, 3109, 4015, 1297, 1599, 4015, 9753, 9149, 4015, 3411, 89, 7639, 3411, 4921, 3713, 5223, 995, 391, 4619, 89, 2807, 9753, 8545, 693, 8243, 995, 4921, 89, 9451, 391, 3713, 2807, 995, 9753, 6431, 4015, 9451, 4921, 2807, 9149, 5223, 4317, 5827, 7035, 1599, 693, 9451, 8847, 8243, 4921, 2807, 391, 5223, 4317, 4317, 1901, 8545, 7337, 8243, 2203, 2807, 1901, 1901, 2505, 995, 4317, 9149, 391, 7941, 2505, 5223, 2203, 3713, 4619, 2203, 1297, 3109, 4015, 5525, 4015, 2203, 7941, 4921, 9149, 391, 3411, 7941, 5525, 7941, 7941, 995, 3713, 1297, 4015, 3411, 9451, 7337, 1599, 8545, 3411, 5525, 8847, 8847, 9149, 4619, 2807, 7035, 5827, 2505, 2203, 5223, 9149, 9149, 2807, 6733, 4921, 4015, 1901, 4619, 6129, 8545, 4619, 8545, 89, 7639, 7639, 1901, 1599, 391, 9149, 3411, 4317, 693, 8545, 6129, 5827, 89, 391, 9451, 9149, 995, 9753, 2203, 3109, 7035, 4921, 5827, 5223, 6129, 7941, 6733, 9149, 4317, 9451, 5525, 391, 2203, 89, 4619, 3411, 1901, 391, 7941, 7337, 6129, 3109, 4921, 2807, 3713, 4015, 1901, 1297, 2203, 4619, 1599, 1599, 2505, 6733, 5525, 4015, 6129, 9149, 1297, 391, 2203, 995, 2505, 4015, 8243, 391, 1901, 2807, 1599, 5827, 1901, 7337, 4317, 7639, 2807, 3411, 693, 3713, 6129, 5827, 995, 9451, 2203, 9451, 89, 4619, 6733, 4317, 6431, 9753, 89, 5827, 8243, 4619, 4317, 8545, 1599, 3411, 9149, 3411, 6431, 391], [6129, 3411, 9149, 2203, 8243, 7337, 693, 5827, 89, 7337, 7941, 2505, 5827, 693, 3411, 7035, 89, 391, 6129, 995, 1599, 8243, 5223, 3713, 9149, 4317, 9753, 6431, 2807, 3109, 6431, 9149, 9149, 7639, 5827, 8847, 2807, 5525, 3411, 391, 6129, 4619, 9451, 4317, 5525, 3411, 6129, 7035, 5525, 89, 9149, 7941, 6733, 3109, 9753, 8847, 4921, 3713, 9451, 4619, 1901, 8243, 2807, 7639, 2203, 1599, 1599, 6431, 5525, 5525, 7941, 693, 7337, 9753, 6129, 1599, 6733, 693, 7941, 5525, 8545, 4015, 2203, 1599, 5525, 4015, 4015, 4317, 3109, 1901, 693, 7941, 7035, 4317, 2505, 6129, 4317, 8847, 4619, 9149, 5223, 8243, 9753, 1297, 89, 5525, 1901, 5223, 1297, 7941, 6431, 6431, 6733, 7337, 7035, 6431, 4015, 7639, 2203, 3713, 2203, 3109, 7639, 5827, 8545, 5827, 1599, 1297, 5827, 2203, 5223, 4619, 8243, 9149, 4015, 7639, 8243, 693, 7941, 391, 2203, 995, 9753, 9451, 5827, 9149, 1297, 8545, 6431, 7639, 5827, 6733, 2807, 4921, 9451, 5223, 9753, 7639, 5827, 6733, 8847, 7035, 9753, 8545, 7941, 1901, 4015, 89, 4317, 3109, 89, 2505, 2807, 693, 89, 5223, 7337, 7337, 8545, 3109, 4619, 4317, 3411, 6733, 7639, 1599, 4921, 9149, 6733, 3411, 4921, 5525, 6733, 4317, 2807, 5223, 5223, 7337, 9753, 5827, 7941, 1901, 4921, 6431, 7639, 4619, 1599, 693, 2807, 3411, 7941, 4317, 1599, 9451, 7035, 1297, 6129, 3109, 1901, 9753, 995, 3713, 7941, 2807, 7035, 5223, 9149, 2203, 9149, 3411, 7337, 1901, 2807, 9149, 9451, 1901, 1297, 9451, 3713, 9753, 4619, 5223, 4015, 8545, 9149, 4015, 89, 8847, 4015, 3109, 4317, 5223, 4015, 995, 1297, 4619, 5827, 4015, 1297, 2505, 7035, 5223, 7035, 3109, 5827, 1297, 1599, 693, 9451, 7639, 3411, 6431, 6431, 5525, 9451, 2505, 9753, 4619, 7337, 9753, 391, 3713, 7639, 1599, 3713, 2505, 3109, 3109, 5223, 995, 5827, 4015, 9753, 3109, 89, 5223, 4317, 4317, 7035, 89, 5525, 3109, 7941, 2203, 995, 9753, 8847, 9753, 995, 8847, 1599, 1297, 4317, 2807, 7941, 3411, 6733, 8243, 89, 7941, 7337, 1599, 2203, 7035, 2203, 5223, 4015, 5525, 5827, 2807, 2807, 1297, 1901, 9149, 6129, 4317, 5223, 8545, 2505, 4921, 4619, 7639, 6431, 8847, 8847, 2807, 5827, 8847, 8847, 89, 9149, 2807, 9451, 3411, 5525, 4619, 4015, 7941, 5827, 4921, 1297, 6431, 5525, 4317, 995, 7337, 391, 2807, 6431, 4921, 6431, 2203, 4317, 5525, 5827, 5223, 5525, 693, 3713, 5223, 7639, 9753, 7941, 8243, 5223, 2203, 8545, 1297, 8847, 8847, 7639, 89, 4317, 9753, 6431, 89, 9753, 7639, 7337, 5223, 9753, 7337, 7035, 7941, 4015, 2807, 4317, 2505, 2505, 4015, 89, 9753, 7035, 2807, 7941, 3411, 9451, 1901, 6129, 5223, 4619, 2505, 995, 89, 3411, 9451, 3411, 4317, 7639, 6431, 3713, 4317, 89, 4317, 7941, 1901, 5525, 4921, 4619, 9753, 6733, 4317, 5223, 89, 7337, 4015, 5827, 4921, 6431, 1599, 2505, 1297, 8243, 5827, 1901, 3713, 2807, 4619, 4317, 1297, 9451, 2505, 9149, 4317, 3109, 4317, 2505, 995, 8847, 1599, 6733, 3109, 4921, 3713, 6431, 5827, 7941, 9753, 1901, 995, 5223, 7639, 8243, 6129, 8545, 9149, 6129, 4619, 9149, 8545, 1599, 4317, 8545, 3713, 7035, 3411, 4317, 2203, 8847, 4619, 4619, 1901], [4015, 7639, 7337, 8243, 995, 5827, 9149, 693, 89, 5223, 3713, 5827, 9451, 89, 3713, 5525, 5525, 8847, 5223, 4015, 3713, 2203, 5827, 6733, 5525, 3713, 4921, 3713, 5827, 89, 3411, 3411, 1297, 9149, 995, 2807, 89, 4317, 995, 7639, 5525, 7941, 5223, 4015, 2807, 7035, 9149, 9753, 7941, 2505, 4921, 4015, 5223, 7035, 7035, 9149, 7337, 1297, 7639, 8847, 6733, 4317, 9149, 4921, 8545, 8847, 2807, 89, 1297, 3713, 6129, 5827, 4921, 1599, 3109, 8243, 89, 3713, 4015, 7035, 7337, 693, 3411, 9149, 1901, 5827, 1297, 9451, 5525, 391, 7337, 3411, 2505, 7941, 6431, 5525, 9451, 995, 4921, 1599, 4619, 9753, 5827, 2505, 9451, 4619, 6129, 8545, 8545, 6129, 9451, 8847, 4921, 9451, 3411, 995, 7035, 1297, 8847, 6733, 5827, 8243, 6129, 8545, 7941, 3109, 1599, 1297, 3713, 9451, 5223, 4921, 4619, 4619, 4619, 8545, 6431, 5223, 9753, 8243, 7639, 6431, 5525, 6431, 3411, 6733, 9753, 5827, 5525, 9149, 693, 6733, 3713, 6431, 693, 89, 693, 2505, 8545, 89, 8545, 89, 5525, 995, 8847, 2203, 8243, 9451, 3109, 4317, 4619, 1901, 4317, 4015, 3713, 995, 8243, 3411, 9451, 8243, 7035, 6431, 3109, 4619, 391, 7941, 4015, 6431, 7941, 5525, 5223, 7941, 9149, 1599, 4921, 3411, 2505, 7337, 3713, 6733, 7337, 4619, 2203, 391, 9149, 2807, 7337, 4921, 8847, 4921, 3411, 4317, 7337, 1599, 5525, 7035, 8847, 5827, 5223, 8847, 7337, 8243, 5827, 8243, 995, 3411, 1599, 1297, 4015, 995, 4015, 2203, 9451, 9451, 4015, 7035, 7941, 4015, 7941, 6129, 4317, 2807, 2203, 4921, 89, 693, 8243, 9451, 3411, 2505, 8243, 5525, 9753, 7035, 1297, 5223, 3109, 4619, 2505, 693, 2807, 9753, 995, 89, 6129, 1901, 9753, 2203, 1901, 1599, 4921, 6733, 1901, 6129, 2505, 7639, 3109, 89, 7337, 693, 7337, 3411, 5223, 5827, 1901, 5827, 1297, 5223, 7337, 3713, 8545, 4015, 8545, 693, 6129, 5827, 4921, 4921, 4921, 8545, 391, 693, 3411, 2807, 6431, 6431, 4921, 1599, 2505, 2505, 2505, 391, 5525, 4015, 5827, 89, 7035, 2203, 1297, 89, 4015, 7941, 5223, 5223, 9149, 7639, 3713, 1297, 7639, 9149, 1901, 7639, 3109, 2505, 7337, 5525, 9753, 3713, 6129, 89, 5827, 6431, 7639, 8243, 7337, 5223, 8847, 4015, 1599, 4619, 3411, 693, 1599, 3713, 4921, 3109, 8545, 693, 2505, 4317, 7035, 3109, 5525, 9149, 8243, 7941, 7639, 6129, 9753, 7035, 693, 6733, 2203, 6733, 3109, 3713, 8243, 2203, 5525, 4015, 89, 7639, 3109, 8545, 9753, 3109, 7035, 7337, 6733, 8243, 4921, 9149, 2203, 2203, 5223, 4921, 9149, 8847, 4015, 7941, 5223, 5223, 8243, 9451, 4619, 5827, 2807, 1297, 4921, 6733, 8243, 5827, 1901, 5223, 6129, 2807, 3713, 3109, 9149, 995, 4921, 1297, 4619, 3713, 8545, 2505, 4619, 6733, 391, 5827, 9753, 7639, 4619, 995, 9753, 5827, 7941, 4317, 4921, 391, 3713, 7337, 693, 693, 693, 7035, 2505, 8847, 2807, 4921, 8847, 5827, 7639, 5525, 995, 9753, 7941, 6129, 8545, 7035, 6431, 6129, 1901, 2505, 3109, 7639, 3411, 9451, 3411, 6733, 3109, 89, 1599, 9753, 3713, 4921, 89, 8545, 1599, 3713, 995, 5525, 995, 8847, 89, 1297, 693, 2203, 8545, 5827, 1901, 8847, 4015, 995, 9149, 3109, 2203, 1901, 4015, 3713, 89, 4317], [9753, 2203, 4015, 1599, 9149, 2203, 4921, 4317, 8243, 5525, 1901, 2505, 4921, 3713, 3109, 1599, 995, 7035, 1599, 995, 391, 6129, 4015, 8847, 9149, 9149, 995, 8243, 6129, 6129, 6431, 8243, 4921, 4619, 4317, 7035, 7639, 693, 4317, 693, 89, 5223, 391, 8243, 1297, 4921, 1297, 995, 5223, 995, 1901, 8243, 7639, 8243, 2505, 89, 2203, 7639, 89, 4015, 4015, 8847, 4015, 8243, 3411, 693, 7639, 6129, 1599, 8243, 6431, 7035, 7035, 5827, 9451, 7337, 1901, 4921, 5827, 6733, 2807, 5827, 391, 4015, 391, 3713, 693, 7639, 4619, 7337, 1901, 7337, 3109, 4619, 5827, 693, 8847, 7035, 7941, 9753, 8243, 2203, 2505, 9753, 7035, 391, 2807, 4619, 5827, 2807, 9753, 9149, 693, 6129, 6129, 4619, 9451, 4317, 391, 1297, 2807, 693, 3109, 7337, 7035, 1901, 6129, 4619, 391, 9149, 7035, 7337, 5525, 3411, 3109, 4015, 7941, 6733, 7337, 7941, 7035, 6129, 4619, 8243, 4015, 7035, 7337, 1599, 9753, 2203, 9753, 8847, 4015, 6733, 1599, 8545, 6733, 3411, 4921, 5223, 6129, 3109, 391, 2807, 5827, 4619, 7941, 6431, 7941, 6431, 7337, 6129, 5827, 4619, 7941, 1297, 391, 3411, 4619, 8545, 3411, 4317, 1901, 5827, 6733, 6431, 7337, 7035, 8545, 5223, 391, 3713, 9753, 7035, 995, 6733, 1901, 1297, 7035, 7035, 4921, 4015, 4317, 3713, 391, 9451, 5827, 6733, 6129, 6733, 6431, 3411, 995, 7035, 4619, 6733, 8847, 6431, 7035, 4015, 1901, 1901, 4619, 6431, 8545, 995, 6733, 1901, 89, 4921, 6129, 6733, 5827, 7035, 9753, 9753, 6129, 3713, 4921, 1297, 7035, 1901, 7337, 6733, 9149, 7337, 4317, 693, 5525, 8545, 2203, 7035, 1599, 4619, 1901, 7035, 7639, 9753, 7639, 7337, 7639, 6129, 8545, 2505, 3411, 1599, 1599, 5827, 5525, 7941, 6733, 1599, 5525, 1901, 7639, 4921, 1297, 6129, 8243, 3713, 4317, 5525, 7337, 8243, 4015, 4619, 1599, 391, 5827, 9149, 7639, 4921, 2203, 7941, 9753, 9149, 6733, 4015, 9753, 7035, 7035, 7337, 5223, 4619, 89, 7337, 3713, 2505, 4921, 693, 3109, 5525, 6733, 89, 7337, 4921, 8545, 5223, 9753, 7941, 2203, 2505, 89, 8847, 1297, 391, 1901, 995, 9149, 7337, 3109, 5525, 7337, 4921, 4921, 8545, 3713, 7639, 7639, 9149, 3411, 2807, 5525, 8243, 4015, 9451, 9149, 3109, 8545, 9753, 7941, 9451, 5827, 4015, 9753, 4015, 6733, 6733, 1599, 8243, 4619, 2505, 6129, 6733, 3411, 8545, 4015, 5525, 3411, 693, 6129, 4317, 2203, 4317, 8243, 8243, 4921, 4317, 6733, 2505, 9149, 7035, 693, 2203, 4015, 9149, 3411, 3109, 1599, 7337, 89, 5827, 7941, 7639, 3713, 693, 9149, 2807, 4921, 7035, 4015, 3411, 3713, 9753, 5525, 391, 7639, 5525, 3109, 6431, 7941, 3713, 8545, 7035, 2807, 6129, 7337, 5827, 9753, 7941, 89, 2505, 1901, 2505, 4921, 5827, 4317, 7941, 7639, 3713, 3713, 693, 4619, 5525, 9753, 693, 6129, 7035, 8243, 693, 7337, 1297, 7941, 9149, 1901, 7639, 2203, 391, 9149, 4317, 4015, 4317, 7941, 9451, 2807, 7035, 4921, 7035, 3411, 3411, 5827, 4317, 5827, 3411, 89, 9149, 89, 1901, 2505, 4619, 9149, 4015, 9149, 7941, 1599, 5525, 5827, 4921, 6431, 2505, 4619, 7035, 995, 2505, 8847, 995, 8243, 6733, 6129, 7941, 8545, 2807, 4317, 2203, 9149, 1901, 4015, 9451, 5223, 4921, 5525, 1901], [7941, 4317, 3411, 1599, 3411, 7639, 9451, 8545, 2807, 391, 1599, 3109, 2505, 8847, 3411, 693, 4921, 9451, 4921, 3411, 9149, 5827, 5827, 5223, 8847, 3713, 995, 1901, 3411, 7337, 7035, 3109, 9149, 8847, 995, 8243, 7941, 9149, 4921, 9149, 6129, 2203, 3713, 4317, 7035, 3411, 1599, 3713, 7639, 4619, 4317, 6431, 693, 6733, 5827, 4921, 6129, 1297, 5525, 995, 5525, 3109, 8847, 8847, 7337, 6129, 4921, 8847, 4619, 7035, 9149, 2505, 2203, 1599, 995, 6733, 6733, 9451, 8847, 2807, 6733, 391, 4015, 7337, 9149, 4015, 391, 1297, 4619, 391, 5525, 2505, 6733, 995, 8243, 2505, 9753, 2203, 6129, 4619, 1901, 9451, 8545, 9451, 7337, 7035, 693, 9149, 5827, 8243, 5525, 391, 1599, 4921, 4317, 7337, 4921, 7035, 5525, 693, 5223, 4317, 1297, 1599, 4317, 5525, 7337, 9753, 9753, 391, 8847, 7941, 3713, 3713, 2807, 6129, 89, 4317, 5223, 995, 7035, 3109, 8243, 7337, 4317, 9149, 4619, 6129, 7337, 8847, 2203, 5827, 7941, 6129, 2807, 7639, 391, 3713, 89, 9451, 2505, 6129, 3411, 2203, 8545, 9753, 4921, 7337, 7639, 8847, 1599, 2203, 89, 7035, 6129, 3109, 8545, 8545, 4619, 4015, 2807, 1599, 1599, 9451, 1901, 995, 8545, 7639, 4921, 391, 5223, 7035, 5525, 2807, 4015, 9753, 3713, 8847, 9149, 7941, 1599, 1599, 2505, 1599, 4317, 4921, 89, 2807, 7639, 7639, 9451, 8545, 8847, 8847, 4317, 3713, 7639, 2807, 1599, 8847, 1901, 3109, 8847, 9753, 1599, 8847, 7941, 2505, 2807, 7337, 3713, 693, 8243, 8243, 1901, 8847, 5827, 7639, 7035, 6431, 4317, 4015, 3109, 9451, 7337, 4619, 89, 3713, 3713, 995, 7035, 8243, 2505, 7941, 4921, 8847, 2203, 89, 2807, 5525, 4015, 8545, 4317, 6129, 8847, 6733, 6129, 1297, 7639, 4015, 693, 6733, 1297, 7639, 2505, 4015, 6431, 3411, 5827, 2807, 5223, 9451, 9149, 1297, 8545, 7639, 7639, 3411, 2203, 1901, 4619, 6431, 1297, 9451, 8847, 9451, 2807, 4317, 5525, 9451, 7639, 3713, 4015, 5827, 9753, 6129, 4619, 1297, 8243, 6733, 8847, 6733, 8847, 995, 1901, 2505, 9149, 9753, 6733, 1297, 9753, 8847, 8243, 8243, 9149, 2505, 693, 9149, 3411, 6431, 5827, 8847, 3411, 995, 9149, 2807, 6129, 8545, 4921, 7941, 8545, 1297, 7035, 3713, 5827, 89, 1901, 7035, 9753, 3713, 5525, 5827, 8545, 4317, 4619, 3713, 5223, 6431, 4921, 6733, 7035, 8847, 5827, 8847, 8847, 5827, 7337, 4619, 2807, 3713, 4921, 2807, 4015, 8243, 1297, 1901, 6431, 3713, 7035, 89, 693, 89, 7035, 995, 7941, 693, 5827, 7035, 9753, 7941, 693, 4317, 7035, 5525, 6129, 4015, 1297, 995, 7035, 3713, 7035, 5223, 3109, 8847, 6129, 4619, 89, 6129, 8847, 5223, 8545, 4921, 8545, 4619, 7035, 89, 4921, 3411, 6733, 9451, 7035, 693, 8847, 8545, 8847, 4317, 4317, 8243, 1901, 2807, 7941, 5827, 4619, 7941, 3109, 8847, 2505, 9753, 8243, 8847, 995, 2807, 5223, 5827, 4317, 7035, 7941, 391, 3411, 6129, 89, 1297, 7337, 7639, 4619, 7941, 1599, 1901, 995, 3713, 4015, 3713, 2203, 4317, 5525, 9451, 8545, 4317, 2203, 3411, 9149, 1599, 3109, 6129, 89, 5223, 3713, 8847, 6431, 5223, 5827, 4015, 6733, 7639, 2505, 3411, 5525, 1599, 89, 8847, 6129, 5827, 4619, 4921, 9149, 693, 8243, 9753, 8847, 7337, 391, 5525], [9149, 89, 3109, 2807, 89, 995, 1599, 4619, 4317, 6129, 7337, 4921, 5223, 7941, 3109, 6733, 8243, 391, 7035, 2807, 1297, 6129, 5223, 693, 7337, 693, 8243, 391, 2807, 5525, 6431, 9753, 5223, 4921, 3411, 2807, 9753, 7941, 9149, 9451, 7035, 3109, 5223, 6733, 1297, 1599, 3109, 8545, 8243, 8545, 2807, 995, 8847, 1599, 1901, 2203, 7639, 6129, 9753, 5525, 5827, 5827, 4921, 4619, 693, 8243, 693, 5223, 2203, 4619, 7639, 995, 4317, 4921, 4317, 8243, 693, 1599, 4921, 5525, 4619, 89, 3713, 8545, 6129, 8545, 8243, 995, 4317, 2505, 4015, 7639, 1297, 7035, 4317, 391, 5223, 3411, 7337, 7035, 2505, 2203, 2807, 3713, 3109, 7941, 9451, 1599, 693, 391, 6431, 3713, 5223, 6733, 5525, 3109, 8847, 4619, 6733, 1901, 9451, 3411, 5223, 2203, 5525, 5827, 2203, 7639, 1599, 1901, 2505, 4015, 5525, 5525, 89, 4921, 2203, 9451, 3713, 4015, 4921, 995, 7639, 9753, 2505, 6733, 4619, 3109, 9753, 2807, 6431, 2807, 8243, 7941, 8847, 9451, 8545, 4921, 1297, 4921, 8243, 3411, 2807, 6129, 8243, 995, 9451, 5223, 4921, 5223, 4015, 8847, 9753, 1297, 1901, 8545, 4619, 7035, 8545, 6733, 6129, 8243, 8243, 5223, 6431, 391, 5223, 2203, 4619, 1901, 3411, 5827, 5525, 8243, 1901, 1297, 995, 4317, 4317, 3411, 4921, 89, 2505, 5525, 995, 2203, 4921, 9149, 7035, 2807, 7337, 3109, 6431, 3713, 5223, 89, 693, 7639, 995, 6431, 5525, 2505, 4921, 1901, 9149, 7035, 9451, 8847, 3109, 2505, 9149, 8243, 2203, 5827, 4015, 6733, 3713, 4619, 5525, 8243, 9753, 7035, 5525, 8847, 4317, 4619, 8847, 2807, 7941, 4619, 2203, 5223, 5223, 3713, 3411, 5223, 995, 2203, 995, 89, 7337, 7337, 8545, 6431, 8847, 5827, 1901, 9753, 89, 6733, 1297, 5827, 6129, 4317, 5223, 6733, 391, 7035, 7035, 7941, 5223, 391, 693, 7337, 693, 1297, 7337, 693, 8847, 8545, 7639, 995, 7035, 8243, 1599, 391, 391, 8847, 4619, 1599, 693, 89, 9149, 5827, 5827, 391, 9149, 1599, 9753, 3411, 9149, 391, 89, 7639, 3411, 4619, 1901, 4015, 7035, 995, 7337, 3411, 2807, 7337, 3411, 9753, 9753, 693, 1297, 7639, 995, 1599, 5223, 4317, 1297, 6431, 4317, 2505, 6129, 89, 6733, 995, 4317, 391, 4619, 4317, 4015, 2203, 89, 9149, 9149, 6733, 3109, 5525, 3109, 391, 3713, 9149, 5827, 7337, 9753, 995, 391, 7035, 3109, 1599, 995, 3713, 3713, 7337, 2505, 7035, 6431, 5827, 3411, 9149, 1901, 8847, 4015, 1901, 7337, 8545, 4619, 8847, 1901, 391, 8243, 4921, 1901, 2807, 8847, 1901, 7941, 693, 4317, 9149, 7035, 4015, 3109, 89, 4015, 2505, 1901, 6431, 9753, 4619, 7639, 3411, 9753, 1901, 4015, 9149, 7941, 2505, 5827, 3109, 2505, 1297, 3411, 5827, 7639, 89, 89, 1901, 7941, 693, 3411, 9753, 1297, 1599, 8545, 7035, 4015, 4619, 4619, 995, 5827, 2807, 89, 7337, 2203, 4921, 5223, 3411, 7035, 3713, 5827, 2807, 693, 4921, 693, 8847, 7941, 2807, 1599, 89, 9149, 4619, 4317, 1297, 3713, 6129, 1901, 3109, 5827, 7337, 5827, 4015, 4619, 9753, 1297, 2505, 1901, 5525, 5525, 1297, 7035, 1901, 9753, 6733, 4317, 2203, 995, 1901, 2807, 7639, 9753, 7337, 4317, 5525, 1901, 3713, 3109, 7337, 5223, 9149, 5827, 4619, 9753, 4619, 391, 1297], [5827, 5525, 8847, 6733, 8243, 3411, 7639, 4015, 5223, 2203, 693, 1901, 8847, 9149, 8243, 89, 6129, 7035, 3109, 9149, 4015, 9753, 8243, 4317, 4921, 6733, 1901, 3713, 9451, 6129, 7941, 4921, 8847, 9753, 1297, 7035, 4921, 8545, 4317, 1297, 6733, 8545, 9149, 5827, 1599, 693, 693, 3713, 5223, 7941, 8847, 4317, 5223, 2505, 9149, 9753, 1901, 7337, 8243, 3109, 3411, 7035, 9451, 6431, 1297, 8847, 5223, 1599, 2203, 3109, 9753, 3411, 4015, 995, 6431, 1297, 3109, 8243, 995, 8243, 1297, 8243, 4317, 4317, 8545, 6431, 8847, 5827, 9451, 4921, 7337, 6733, 7337, 6129, 1599, 4317, 5525, 3411, 5827, 89, 4921, 89, 693, 2807, 693, 3713, 2807, 9149, 4317, 8545, 693, 8545, 2807, 8243, 7639, 2807, 391, 2203, 4015, 4015, 2203, 3109, 5223, 995, 89, 6733, 8243, 4619, 5525, 7337, 9753, 6431, 7639, 7639, 7941, 7337, 3109, 995, 5223, 2203, 2505, 2203, 9451, 9753, 4921, 7941, 1901, 3713, 8545, 7337, 9149, 4619, 9451, 9753, 9451, 995, 8847, 4015, 8243, 1599, 4317, 7639, 4317, 6431, 8243, 693, 3713, 4317, 9149, 4317, 2203, 8545, 693, 4317, 1901, 9149, 4317, 1297, 7337, 2807, 391, 89, 8847, 6129, 4619, 7941, 5827, 3713, 995, 2203, 1901, 8847, 6733, 6431, 4921, 5223, 89, 2807, 7337, 6733, 9753, 5223, 4921, 2203, 1901, 8545, 5827, 8545, 7337, 6431, 693, 6129, 9149, 4317, 7639, 1599, 5827, 3713, 2203, 391, 4619, 9451, 8243, 3713, 5827, 4619, 5223, 9753, 391, 7337, 89, 7639, 6431, 9451, 6129, 4921, 4317, 1297, 4317, 9753, 7035, 693, 995, 7035, 1901, 995, 3109, 6129, 7941, 5827, 4317, 7941, 7035, 5827, 7941, 8243, 4015, 7337, 3109, 6733, 4921, 4317, 4619, 3411, 1297, 9451, 6431, 2807, 1599, 391, 2505, 693, 1297, 3411, 2505, 5827, 4015, 4619, 7941, 5223, 1599, 6129, 1901, 89, 3109, 4015, 9451, 6733, 693, 8847, 5223, 5525, 6129, 693, 5223, 6129, 7337, 3411, 391, 7337, 6129, 89, 1901, 7035, 3713, 9753, 6431, 8545, 9149, 4015, 6129, 3411, 5827, 6129, 8847, 7941, 89, 6129, 7035, 3109, 391, 3713, 5827, 2807, 4317, 5827, 391, 7337, 3713, 9753, 4015, 7035, 2203, 6129, 8243, 7035, 7035, 7941, 2807, 1599, 6733, 5223, 6733, 9149, 7639, 5525, 6733, 4921, 2505, 2505, 5223, 6733, 8243, 1599, 7035, 7639, 5223, 3713, 7639, 7035, 2203, 2203, 2807, 2807, 8243, 9451, 4317, 2807, 4015, 89, 7639, 4619, 2203, 9753, 6431, 3713, 1599, 1901, 1901, 8847, 6733, 1297, 4015, 89, 7337, 7639, 8847, 8545, 7639, 2807, 8243, 3109, 89, 4015, 3411, 4619, 9451, 3109, 8847, 9149, 7639, 9451, 4619, 7337, 8545, 7941, 8243, 9753, 1599, 9753, 1599, 6733, 9149, 89, 1901, 1297, 9753, 4317, 5827, 4015, 3411, 9149, 6129, 4921, 1297, 3713, 1599, 4317, 4317, 9753, 3109, 3411, 4015, 7941, 2203, 391, 9149, 2505, 5827, 6733, 2505, 6431, 9149, 5525, 2203, 995, 995, 4317, 6129, 1901, 7035, 995, 1297, 89, 89, 3713, 8545, 9451, 8847, 4015, 9149, 8243, 3411, 2807, 2203, 7337, 8545, 7941, 2807, 5525, 693, 8243, 8243, 1599, 2807, 5827, 1297, 5223, 8847, 2505, 1599, 8545, 1901, 2505, 5827, 5223, 6129, 391, 4015, 6129, 391, 4921, 7941, 89, 7035, 8847, 7035, 3109, 6733, 7337, 1599, 8545], [4015, 4015, 9753, 4015, 8847, 1297, 9753, 7337, 7035, 6431, 7941, 2807, 2807, 7035, 9149, 9149, 3713, 995, 4015, 7337, 9149, 7941, 3411, 693, 3411, 1297, 4015, 1901, 1297, 7941, 7941, 6431, 8545, 7639, 5223, 1297, 5223, 9149, 1297, 6733, 4317, 9451, 5223, 391, 391, 2203, 7035, 693, 6431, 2505, 6129, 2807, 8243, 2203, 4921, 9451, 2505, 8545, 9451, 3411, 89, 4317, 6733, 7639, 8545, 5827, 9451, 4921, 5525, 89, 391, 3411, 9149, 9149, 8545, 8847, 9451, 7941, 5525, 4317, 3411, 5525, 4015, 6431, 7639, 3713, 7035, 4619, 7639, 1297, 3713, 6733, 5525, 5223, 7639, 9753, 3411, 9451, 89, 995, 9451, 7639, 4921, 693, 6431, 8545, 9149, 3713, 5525, 3713, 1599, 5223, 4317, 7035, 2505, 5223, 4921, 7035, 4015, 4317, 8545, 391, 2203, 3411, 6431, 7639, 3713, 9149, 1599, 6733, 6733, 3109, 6733, 1297, 5827, 7639, 5525, 5223, 5827, 7639, 693, 7639, 4015, 4619, 5827, 8545, 8545, 5223, 7639, 3109, 1297, 9451, 5827, 4619, 3411, 9753, 7639, 2203, 8545, 6733, 9149, 9149, 89, 4921, 2807, 4921, 6431, 9451, 9451, 8847, 3411, 5525, 7941, 7035, 5827, 8243, 8243, 5827, 7639, 8545, 7035, 8243, 4921, 391, 5827, 6733, 3411, 693, 6431, 9451, 8847, 5827, 89, 5525, 1901, 2807, 1599, 6733, 9149, 1297, 7337, 2203, 995, 9753, 8545, 8847, 693, 4317, 5525, 5525, 5525, 5223, 3411, 3109, 1599, 693, 1297, 5525, 391, 7639, 4015, 8847, 2203, 6129, 3411, 2203, 5827, 6733, 7035, 3109, 391, 6733, 7035, 89, 4619, 4317, 89, 4619, 9149, 391, 1901, 3713, 7035, 7035, 3109, 3713, 1599, 5525, 2203, 4921, 7035, 7941, 5525, 3713, 3713, 5827, 8545, 4317, 4015, 5525, 4317, 89, 2807, 4015, 8847, 9753, 3109, 7639, 8545, 89, 2203, 4921, 693, 3713, 6733, 7941, 9149, 8243, 3713, 89, 3109, 5525, 3713, 1599, 4619, 4317, 8545, 8847, 8243, 8545, 6129, 3411, 4317, 1901, 7035, 9753, 89, 5525, 9149, 4921, 2203, 4921, 5827, 5223, 1901, 4619, 6129, 995, 1297, 3411, 6431, 2505, 2505, 89, 9753, 8847, 9149, 5827, 4921, 7941, 1901, 5223, 8545, 9149, 9451, 3411, 4317, 7639, 6431, 2203, 8243, 89, 3713, 7639, 9451, 7035, 4015, 4921, 7035, 1297, 391, 7035, 3713, 6733, 6431, 3411, 9753, 6129, 7035, 3713, 5525, 693, 9451, 4619, 2203, 4015, 8243, 6431, 1599, 4317, 4921, 9451, 1901, 7035, 1297, 5223, 3411, 2807, 3411, 4619, 5827, 7337, 2203, 8243, 4619, 7941, 995, 1901, 3713, 1297, 1297, 6431, 7035, 7941, 3713, 2203, 2203, 9149, 693, 9451, 9149, 1901, 1901, 4619, 7337, 1599, 5827, 7337, 5827, 3109, 6733, 693, 6129, 8545, 1599, 5223, 5827, 391, 8847, 5223, 7639, 6431, 7035, 7941, 3109, 3109, 3109, 7337, 9451, 1599, 5827, 5223, 9451, 5827, 7941, 9753, 6733, 7639, 2807, 7337, 7337, 6129, 4921, 5827, 693, 5223, 995, 3713, 3713, 5827, 7035, 5525, 9451, 9753, 6129, 693, 1901, 3109, 6129, 8545, 9753, 1901, 4619, 4317, 8847, 4921, 3713, 693, 5223, 3109, 4015, 693, 4619, 995, 89, 7941, 9753, 7035, 693, 4619, 3411, 2807, 7035, 5827, 8243, 5223, 2807, 2807, 1901, 693, 4921, 1599, 8847, 1901, 89, 7035, 9149, 7337, 8545, 2203, 7639, 4921, 9451, 89, 391, 5525, 5827, 4619, 8545, 6129, 2203, 89], [2505, 89, 1599, 3713, 3713, 4015, 9753, 5827, 5525, 4317, 8847, 1901, 7639, 89, 89, 9149, 7639, 6733, 5525, 9149, 391, 7035, 8847, 2505, 4921, 1599, 2807, 4619, 8847, 391, 7941, 5827, 391, 9753, 7337, 5827, 8545, 7337, 1297, 7639, 8847, 9451, 6733, 89, 5223, 5525, 5223, 4317, 3109, 8847, 8545, 4015, 6733, 6431, 3411, 5223, 7337, 9451, 2807, 2807, 5223, 9451, 6733, 7035, 6733, 8545, 3411, 4619, 7035, 9451, 1901, 2807, 3713, 4317, 8545, 8847, 6431, 391, 89, 7337, 5525, 89, 2807, 6129, 2203, 3411, 1901, 9149, 7639, 6129, 2505, 7941, 7941, 5525, 2807, 1901, 3109, 5525, 2807, 5223, 9451, 7941, 8545, 1297, 6129, 8243, 693, 6129, 6733, 2203, 995, 1599, 7337, 7035, 6431, 6431, 4317, 4015, 7337, 8243, 6129, 5525, 995, 6129, 4317, 4921, 391, 9451, 693, 7337, 9451, 8545, 3411, 4619, 8243, 7639, 995, 89, 8243, 6129, 7941, 4015, 5223, 7639, 9149, 391, 9149, 9149, 9451, 1297, 9149, 5525, 3411, 8545, 693, 4921, 4317, 5525, 1599, 8545, 2505, 7035, 4619, 9149, 391, 9753, 7941, 6431, 7941, 9149, 6129, 693, 2203, 6733, 5525, 5525, 6129, 3411, 4619, 4921, 391, 4317, 1297, 5223, 4619, 4015, 5827, 6129, 693, 693, 8243, 7035, 4619, 1297, 9451, 3411, 6129, 8243, 7337, 4619, 3109, 89, 8545, 8545, 6129, 3713, 1901, 8847, 2203, 5525, 3411, 6129, 8847, 4015, 6129, 8847, 1297, 4619, 89, 9149, 7035, 2203, 1599, 3109, 5223, 391, 9149, 6733, 5827, 6733, 7639, 8545, 3411, 89, 391, 391, 8847, 5223, 3109, 3109, 4619, 2807, 5223, 5827, 7337, 693, 6129, 5525, 5827, 9451, 693, 5827, 3109, 995, 6129, 1297, 8847, 2505, 89, 9753, 5223, 4317, 7337, 7941, 4015, 7941, 995, 6431, 3411, 4619, 8545, 4619, 7035, 7035, 1901, 2505, 3411, 6431, 1297, 3109, 8243, 7035, 5223, 5223, 6129, 9451, 693, 4921, 1599, 6733, 1297, 9451, 1599, 8243, 1599, 8243, 2203, 8545, 5827, 5525, 5223, 9753, 8545, 5223, 3109, 8847, 9451, 89, 2807, 4317, 2203, 4619, 391, 5827, 2807, 2807, 5525, 7639, 3411, 995, 4317, 5827, 1901, 7337, 7941, 7941, 4015, 4921, 6431, 3713, 2807, 995, 391, 8243, 5223, 6431, 7337, 9149, 9753, 5223, 1297, 2807, 8243, 2807, 6431, 1901, 4015, 5827, 8243, 995, 3713, 8847, 3411, 7337, 6129, 391, 4015, 2807, 7337, 9451, 3411, 4015, 6129, 1901, 5223, 693, 7337, 7035, 89, 4317, 4921, 4619, 7941, 7035, 1599, 7035, 6129, 3411, 2807, 9149, 89, 2807, 7941, 8545, 6129, 1901, 8847, 1297, 4317, 7337, 6733, 391, 7639, 3109, 7639, 4921, 9753, 2505, 391, 391, 6129, 4921, 89, 7639, 4921, 7337, 5525, 9753, 5827, 4317, 9753, 8243, 2203, 7639, 4317, 4015, 6129, 693, 4921, 2505, 7639, 5223, 9149, 7639, 5827, 2203, 8847, 6733, 693, 6129, 2203, 7941, 7035, 8545, 7941, 4015, 2505, 1599, 8545, 3411, 1599, 391, 5223, 1599, 8243, 6129, 9753, 995, 5525, 693, 4317, 9451, 6733, 5827, 995, 7035, 3411, 6129, 4921, 2807, 6733, 9451, 1297, 693, 1297, 8847, 9451, 6431, 89, 5223, 7941, 5525, 1901, 1297, 8847, 4921, 4317, 391, 2203, 4317, 3411, 7337, 4317, 3713, 1297, 4619, 89, 4619, 5223, 2505, 693, 9753, 4921, 9753, 3713, 8243, 2203, 391, 8243, 4619, 9753, 3109], [391, 5827, 3713, 8545, 4015, 8545, 4921, 8243, 1297, 1599, 5223, 2203, 7035, 391, 8847, 8847, 9451, 2505, 2807, 5223, 8545, 2203, 1599, 3109, 5525, 3411, 89, 5223, 4619, 7639, 6733, 2203, 7639, 7337, 9149, 5223, 7035, 7035, 6431, 7035, 4015, 6431, 9149, 995, 1599, 5827, 8243, 4619, 3713, 8847, 8243, 8545, 5827, 5827, 1901, 89, 2505, 2807, 7639, 3411, 6733, 6431, 9451, 7337, 2505, 6129, 8847, 391, 7941, 9753, 4921, 2807, 4619, 7337, 1297, 8545, 8847, 995, 2203, 89, 7941, 1297, 3713, 7337, 4015, 2203, 2807, 5827, 1297, 8545, 4317, 3411, 9753, 1901, 89, 2807, 1297, 8545, 2505, 4317, 995, 9451, 391, 7337, 1297, 4921, 1599, 3109, 89, 5827, 6129, 1297, 4317, 4921, 1901, 4317, 6431, 8847, 89, 1901, 8545, 4015, 8545, 4619, 6431, 8243, 7639, 8847, 4317, 2203, 1901, 693, 9753, 995, 4921, 5223, 6733, 5827, 8847, 693, 2807, 693, 9451, 4317, 2505, 3109, 9753, 9149, 8243, 7941, 995, 7941, 1599, 995, 2505, 4015, 9753, 9753, 7035, 7337, 2203, 1901, 7337, 8545, 7035, 4015, 5223, 7337, 995, 9753, 3109, 3411, 8243, 7639, 9753, 1297, 693, 4619, 5827, 1599, 4317, 9451, 9149, 1599, 7035, 2203, 8243, 2505, 7639, 9451, 2505, 2807, 7337, 2807, 89, 7941, 3411, 2203, 8243, 7639, 5223, 1297, 1599, 693, 1901, 9451, 7035, 6129, 4619, 7337, 4619, 3411, 6733, 1599, 7035, 2807, 2505, 4921, 1901, 1901, 6733, 3109, 9149, 3411, 4619, 5827, 1599, 6733, 4015, 1599, 9753, 8545, 5525, 9753, 6431, 5525, 1297, 7941, 4921, 6129, 6733, 7639, 693, 4015, 2203, 2505, 995, 3411, 5827, 9149, 9753, 9753, 3713, 5827, 6431, 3109, 6431, 7035, 4619, 5223, 1901, 5827, 9451, 6733, 2203, 995, 7337, 3411, 391, 2505, 693, 5223, 7639, 9451, 2203, 3109, 6431, 89, 5223, 5525, 8545, 6733, 2807, 5827, 8545, 1599, 2203, 391, 9753, 5525, 4619, 7337, 6733, 1901, 2505, 89, 7035, 8847, 89, 4921, 9149, 2807, 4619, 8545, 7035, 1297, 4921, 5223, 2807, 4921, 9149, 7941, 8545, 6733, 2807, 2807, 5223, 391, 89, 2807, 1599, 5827, 3109, 6733, 4619, 5525, 4317, 693, 4015, 995, 6129, 4921, 8847, 4619, 9451, 9149, 9753, 5223, 6431, 6733, 5525, 6129, 995, 4921, 2505, 6129, 7941, 8847, 3109, 6733, 4015, 89, 7639, 1599, 4317, 3109, 6733, 3713, 6431, 9753, 5223, 89, 4619, 3411, 2203, 9149, 7941, 4317, 391, 9753, 9149, 8545, 6733, 9451, 7035, 8243, 391, 7639, 8847, 89, 89, 5525, 7035, 6129, 2203, 4619, 6129, 995, 8243, 7639, 1297, 8545, 2505, 1599, 8243, 4015, 3109, 7941, 5525, 7639, 7941, 2505, 3109, 6431, 2505, 1901, 1297, 7035, 3411, 6129, 6733, 8243, 391, 3109, 391, 9149, 9753, 1901, 693, 8545, 3109, 2807, 1599, 1297, 6431, 7639, 3109, 5827, 6431, 4619, 7639, 7337, 89, 995, 2505, 7639, 693, 8545, 4317, 5827, 2505, 391, 1901, 6129, 6129, 2203, 9451, 391, 89, 2203, 5525, 995, 2203, 7337, 2203, 995, 6733, 4317, 9451, 4921, 5525, 2505, 3713, 9451, 5525, 7337, 9753, 89, 9149, 7941, 5223, 4619, 89, 6733, 4921, 7337, 8847, 391, 1901, 7639, 693, 4619, 3411, 2807, 6129, 4317, 391, 5827, 1901, 391, 8847, 6431, 995, 5223, 1297, 5223, 2505, 995, 8243, 4015, 5223, 1901], [8545, 8847, 7639, 3109, 89, 9451, 89, 8545, 1297, 89, 9451, 8847, 7941, 6129, 1901, 391, 3713, 8243, 4015, 3411, 6129, 9149, 8847, 1297, 6733, 4619, 7639, 391, 4921, 8847, 995, 2505, 7035, 6129, 5223, 89, 6431, 3713, 6431, 4921, 2505, 3411, 391, 89, 4921, 9753, 7035, 6431, 391, 9451, 4015, 4619, 89, 3411, 7941, 4619, 8243, 6733, 5827, 1297, 7941, 7035, 4015, 3713, 4317, 4619, 4317, 89, 3109, 391, 4619, 8847, 9149, 4921, 3713, 1599, 89, 6431, 1297, 5525, 8847, 5827, 2203, 8847, 995, 391, 3713, 9149, 6733, 2807, 2807, 8545, 3713, 7941, 4921, 693, 5525, 5827, 8847, 1599, 8847, 4619, 9149, 5827, 693, 8243, 2203, 5525, 5525, 5223, 9753, 7035, 1297, 6129, 1297, 2203, 9149, 9149, 1901, 89, 693, 9451, 7035, 9753, 8545, 4619, 3713, 2505, 7337, 3713, 2203, 8243, 8545, 8545, 6431, 5827, 9753, 4317, 391, 4921, 1599, 3411, 2807, 4015, 5525, 3109, 7639, 9149, 4921, 1901, 4921, 391, 2203, 9451, 89, 4921, 5525, 4921, 8243, 4015, 4921, 693, 5223, 7941, 2203, 9753, 5525, 8545, 995, 5525, 6431, 89, 8847, 3713, 391, 1901, 3411, 3411, 5223, 3109, 9451, 7337, 2203, 1901, 6431, 2203, 5525, 5223, 2505, 693, 5827, 6129, 1297, 995, 5827, 1599, 4015, 4619, 2203, 5525, 4619, 7639, 8243, 8545, 693, 7035, 9149, 7941, 7337, 2505, 4921, 2807, 9451, 2203, 6431, 6129, 1297, 1297, 4921, 2505, 2203, 8847, 8545, 693, 7639, 3713, 1297, 5827, 9149, 1599, 9753, 3411, 3411, 4619, 2807, 6129, 4619, 8847, 5525, 4317, 89, 89, 995, 5827, 5525, 5827, 6733, 3411, 391, 3109, 89, 6431, 2505, 9451, 7035, 2505, 5525, 8243, 995, 995, 391, 3713, 9753, 4619, 995, 4619, 3411, 7639, 2505, 1901, 3109, 6733, 5525, 1599, 5525, 6431, 2505, 3109, 4317, 2203, 2505, 391, 5525, 5223, 4015, 7639, 3109, 4317, 7035, 8243, 9753, 7035, 6431, 5827, 1901, 6431, 7639, 3713, 995, 8545, 89, 6129, 9451, 1297, 2505, 1297, 7035, 7639, 6431, 9451, 995, 5827, 5223, 2203, 2505, 1599, 9753, 391, 5525, 5827, 3109, 7941, 5827, 8545, 7941, 9753, 3109, 3411, 3411, 1901, 995, 7035, 7941, 4015, 6129, 693, 7337, 693, 1297, 7035, 5827, 3109, 5525, 5223, 1297, 5525, 5223, 5827, 1599, 4921, 2807, 7941, 9149, 9753, 391, 4921, 4015, 6129, 995, 5525, 3713, 6733, 1297, 7639, 995, 1297, 4015, 3411, 6733, 2203, 5827, 7941, 9451, 2505, 7337, 7337, 1599, 9753, 7941, 6431, 7941, 4317, 5525, 4921, 2203, 4317, 2203, 7337, 3411, 2807, 1599, 2505, 693, 9451, 5827, 7941, 8243, 2203, 89, 5223, 1297, 9753, 2203, 2203, 7941, 6733, 4619, 9753, 3109, 7035, 5525, 6129, 4921, 693, 1901, 89, 4619, 8847, 9451, 4619, 8243, 1297, 4015, 9149, 1599, 6733, 1901, 7337, 4317, 7035, 1599, 4619, 8243, 4619, 3713, 7337, 1901, 4619, 693, 7941, 7941, 693, 391, 89, 9753, 3411, 8545, 8545, 1599, 1297, 4619, 6733, 2807, 3411, 8243, 6431, 9149, 1297, 5827, 7337, 995, 4619, 2203, 1599, 5223, 7035, 4921, 9149, 4015, 2203, 9451, 7941, 6431, 7337, 7639, 3109, 7639, 995, 6129, 995, 5525, 1297, 9753, 9451, 3411, 9753, 9451, 1901, 2203, 693, 6129, 9451, 3713, 3713, 7337, 4921, 89, 4015, 391, 2505, 5525, 4619], [5827, 6431, 1297, 391, 9451, 9753, 4015, 9753, 693, 7941, 4317, 3109, 1901, 6129, 4317, 4015, 7337, 3713, 1901, 4317, 3411, 391, 4015, 8243, 8847, 4015, 693, 8243, 1297, 3411, 3411, 3713, 5223, 6733, 995, 9451, 7337, 4921, 8545, 995, 3411, 693, 1599, 7639, 7035, 2505, 7035, 2203, 9753, 995, 9149, 4015, 391, 2807, 5525, 5525, 2807, 9451, 4619, 8847, 6431, 1297, 9149, 4921, 7941, 5827, 8847, 1599, 4619, 7639, 1297, 1901, 4619, 6431, 2505, 5525, 8847, 6431, 391, 4921, 6129, 4619, 995, 4921, 5827, 4015, 6733, 391, 1297, 7035, 9753, 9149, 995, 7337, 2505, 6431, 6733, 4619, 2505, 4921, 7337, 7337, 995, 5827, 9753, 2807, 3109, 2807, 4619, 9451, 3411, 7035, 3109, 8847, 3713, 5827, 6129, 6129, 7337, 9149, 1901, 693, 1901, 2807, 2807, 7639, 7941, 7337, 9149, 391, 6733, 9753, 995, 2203, 1297, 5223, 391, 9451, 4317, 693, 3109, 6431, 693, 4317, 995, 5223, 8243, 2807, 8243, 1901, 89, 4015, 6733, 3109, 3713, 6733, 2203, 4619, 7639, 9149, 391, 7639, 6733, 6733, 2807, 3109, 7337, 6129, 995, 9451, 8545, 9753, 4619, 8847, 6129, 995, 6431, 89, 4317, 8243, 3411, 5223, 1297, 9451, 4619, 5827, 4317, 4921, 4921, 6129, 8847, 693, 7639, 89, 2203, 2807, 2505, 2505, 4015, 4317, 6129, 4317, 6733, 7337, 9451, 5223, 9451, 693, 4921, 8545, 7337, 9451, 2505, 89, 9149, 7337, 391, 4619, 8545, 6431, 5223, 2203, 6733, 4317, 6733, 8847, 2505, 4317, 7639, 7035, 5525, 9451, 2203, 4921, 7337, 4921, 4317, 9451, 2807, 4015, 6129, 693, 9451, 6733, 4015, 9753, 8243, 6431, 9451, 7941, 5223, 995, 1901, 9149, 5223, 1599, 5525, 9451, 7941, 5223, 693, 2807, 7337, 4015, 2505, 2505, 4921, 9753, 9753, 1297, 9451, 9451, 5827, 3713, 4015, 4015, 7941, 2505, 5223, 7035, 9451, 7337, 6733, 8847, 8243, 3109, 3713, 7337, 3713, 391, 4317, 6431, 9149, 6431, 7639, 8243, 4015, 2807, 8847, 9753, 89, 3713, 7941, 6733, 4317, 7941, 7337, 3713, 6129, 3411, 3109, 8545, 8243, 7639, 2505, 5223, 2505, 9753, 5223, 693, 8243, 9451, 4921, 693, 2807, 9451, 4317, 1297, 7035, 1599, 6733, 4015, 1297, 9149, 2807, 3109, 4015, 2807, 6733, 4317, 7035, 4015, 8243, 1901, 2807, 4015, 8545, 2807, 3411, 2203, 4015, 1297, 2505, 4015, 6431, 6129, 6129, 1297, 7337, 3411, 2505, 6129, 7639, 391, 2807, 995, 7941, 89, 9451, 4921, 6733, 8545, 3713, 3109, 2807, 4619, 8847, 1901, 7337, 8545, 6733, 4317, 391, 2505, 8545, 995, 7639, 7035, 1599, 7639, 8243, 8243, 4921, 995, 8545, 9451, 9451, 995, 3411, 2505, 2807, 8243, 5827, 8545, 1599, 9149, 3411, 9753, 3713, 4619, 1599, 6733, 2203, 1599, 4015, 2807, 9753, 3713, 5827, 6733, 9753, 7941, 693, 5223, 5223, 7639, 693, 4015, 3713, 5525, 5827, 6129, 3109, 6431, 1901, 9451, 995, 1901, 3109, 6129, 7941, 6431, 8243, 9451, 4317, 3713, 693, 6129, 1901, 8243, 8847, 1297, 7941, 4015, 1599, 8545, 7639, 2807, 1901, 4015, 4015, 1599, 5223, 9451, 2203, 3109, 3109, 391, 5223, 8243, 4619, 6431, 8243, 1297, 5223, 3713, 5525, 2807, 5223, 6733, 9753, 4015, 5827, 4317, 8847, 7639, 9451, 7337, 3411, 8545, 5525, 1297, 2807, 6733, 2505, 995, 9451, 3109, 9149, 995, 4015, 1901], [7639, 9451, 2505, 2807, 4015, 391, 1297, 7941, 693, 2505, 693, 2505, 5223, 7337, 9753, 1599, 8545, 9451, 1599, 2203, 4619, 9451, 6431, 5827, 8545, 9451, 4015, 1599, 4317, 6733, 6129, 2505, 4619, 1599, 1901, 6431, 2203, 1901, 9149, 8545, 2505, 9451, 9149, 7941, 2807, 6129, 3411, 6733, 8847, 4317, 2203, 4921, 4921, 4921, 5525, 4619, 7639, 4317, 2505, 4317, 4015, 8545, 9753, 7337, 3411, 6431, 6733, 3713, 8545, 4317, 3109, 89, 5827, 3109, 7035, 7639, 8847, 2505, 5525, 4317, 8847, 7035, 3109, 5827, 1297, 5223, 2203, 6129, 4619, 5223, 1297, 1599, 3713, 7941, 9451, 4317, 8243, 2807, 3109, 7337, 2505, 9149, 6129, 4619, 7337, 4619, 9149, 7337, 9753, 1901, 391, 8243, 6733, 2505, 8243, 7337, 4015, 7035, 7337, 6733, 5525, 5525, 9149, 2807, 89, 7639, 1297, 7639, 5223, 9451, 5525, 5827, 7337, 3109, 693, 6431, 9451, 9451, 9753, 5223, 8243, 1901, 5525, 4921, 4619, 5223, 995, 4619, 4921, 6129, 1901, 4921, 8545, 7941, 6431, 4317, 6733, 3713, 89, 8545, 5827, 89, 1297, 995, 995, 693, 8545, 9753, 7337, 4015, 9149, 4619, 4317, 3411, 8847, 391, 391, 3411, 8847, 6431, 995, 5827, 2505, 9753, 1297, 6733, 995, 995, 8243, 995, 5827, 89, 1901, 2807, 5827, 4015, 4015, 693, 6733, 8847, 8847, 995, 4619, 4317, 7035, 8545, 5827, 5827, 8243, 7941, 1901, 693, 6129, 4921, 5525, 8847, 7035, 391, 693, 89, 8847, 1901, 8847, 4015, 5525, 5827, 8847, 89, 6431, 9451, 5827, 5525, 8545, 2505, 3713, 4921, 5525, 8545, 7941, 1599, 5827, 2505, 6431, 5827, 4619, 8243, 1901, 1599, 7035, 9149, 5525, 4921, 1297, 4015, 6129, 6733, 2505, 2807, 7941, 995, 4317, 8847, 8545, 89, 2807, 8243, 1901, 6733, 9753, 89, 6733, 7035, 3109, 7941, 3713, 995, 5223, 5827, 1901, 3713, 3109, 3109, 8847, 3713, 1901, 8243, 4317, 9451, 995, 8847, 4015, 7337, 4015, 995, 8545, 2203, 9451, 7035, 3411, 2203, 7337, 8847, 6129, 9451, 6129, 1599, 8243, 1297, 4619, 2505, 6733, 7639, 1901, 1901, 89, 3109, 4619, 391, 8243, 4015, 7337, 4015, 6129, 9149, 391, 9149, 2203, 9451, 6733, 3411, 89, 2203, 2203, 8545, 2505, 9451, 9753, 8545, 6129, 8243, 9753, 4015, 6733, 6431, 4921, 693, 6431, 3411, 9753, 3109, 6129, 7941, 89, 2807, 2203, 4015, 7035, 5525, 8545, 9149, 7337, 693, 3109, 995, 6129, 7337, 2505, 6733, 7337, 7035, 4921, 7337, 6733, 1901, 1599, 3109, 6431, 7035, 5525, 4921, 9149, 4317, 5827, 7639, 693, 7035, 1599, 693, 391, 3411, 391, 6431, 4619, 995, 2807, 1599, 7035, 995, 995, 6431, 6733, 5525, 4015, 2807, 7337, 8243, 6733, 1297, 4619, 7337, 4921, 5827, 7941, 7941, 7035, 3109, 2203, 391, 5223, 3713, 8545, 5525, 6733, 9753, 9451, 1901, 4619, 7941, 8545, 391, 1297, 8847, 7639, 5223, 2505, 9753, 4921, 8847, 8545, 3109, 89, 995, 9451, 995, 4015, 9149, 2807, 9149, 4921, 5525, 4921, 3411, 9451, 9149, 6733, 2505, 5223, 6733, 4317, 89, 4015, 4921, 5827, 3411, 4015, 3411, 391, 7337, 7035, 5525, 995, 4317, 7639, 1901, 7639, 6733, 6129, 2203, 7337, 3109, 4619, 1599, 4015, 3109, 3411, 89, 4317, 7639, 3109, 5827, 89, 3411, 1297, 9753, 6129, 9753, 1297, 6129, 9753, 995, 3109, 4921], [8847, 8847, 8545, 2203, 391, 5223, 6129, 1599, 391, 2505, 7639, 4921, 4015, 2505, 2807, 1297, 4619, 2505, 9753, 5525, 3411, 89, 8847, 9451, 8545, 693, 995, 7639, 3713, 4921, 6733, 1901, 8545, 7941, 8847, 693, 4015, 7941, 7639, 9753, 4015, 693, 7941, 7035, 1599, 6733, 6733, 3713, 7941, 9753, 5525, 8847, 2203, 3411, 1297, 3411, 1599, 8847, 1901, 2505, 6129, 4317, 4317, 7337, 89, 1901, 3411, 5525, 7941, 9451, 9149, 4317, 3713, 6733, 995, 6733, 4317, 391, 995, 7941, 7941, 3411, 391, 7639, 9149, 995, 5827, 391, 2505, 4921, 2203, 1297, 89, 7035, 7035, 693, 391, 89, 9451, 4015, 7941, 6431, 4921, 5223, 4317, 5827, 8847, 9451, 89, 9451, 7337, 1297, 2203, 3713, 7941, 3109, 391, 6733, 9451, 3411, 1901, 7941, 9753, 8545, 7941, 3411, 2807, 9149, 7337, 4921, 1599, 995, 7035, 995, 391, 7941, 6129, 9451, 8545, 4619, 4015, 5223, 8545, 8847, 1901, 5827, 693, 9753, 1297, 4317, 3713, 5525, 7337, 391, 1297, 2203, 89, 4921, 3411, 3713, 89, 3713, 1901, 6733, 391, 391, 1599, 995, 9149, 4317, 2807, 8847, 1599, 6733, 4317, 6129, 9753, 8545, 5827, 7337, 2505, 8243, 2807, 3411, 7639, 693, 6129, 2203, 8847, 693, 8243, 693, 5525, 4921, 4015, 1901, 2807, 2203, 5223, 5223, 5223, 4015, 6129, 6733, 2807, 391, 1901, 9451, 8243, 7941, 7035, 6431, 8545, 5827, 7639, 1297, 2505, 4015, 9149, 89, 7337, 2807, 4921, 7035, 9149, 6129, 3713, 8847, 391, 9451, 3109, 2505, 2807, 6733, 693, 7035, 2203, 6431, 3109, 9149, 1297, 4317, 2505, 1901, 1297, 3109, 4015, 4619, 7337, 6431, 9753, 6431, 1297, 8847, 2807, 1901, 391, 6431, 7035, 9753, 6431, 693, 89, 8847, 2807, 8243, 4921, 5525, 7035, 995, 3411, 4015, 7639, 6733, 1901, 5827, 1599, 7337, 3109, 4015, 6733, 7035, 1901, 7639, 9753, 4921, 7941, 9753, 4015, 4619, 7337, 8243, 5827, 3109, 8545, 995, 7035, 2807, 7639, 2505, 8545, 2807, 2807, 4619, 693, 693, 5223, 1599, 5525, 5223, 1599, 6431, 4317, 7639, 3713, 3713, 2203, 8243, 7941, 3411, 391, 4921, 5525, 9753, 4619, 5223, 9451, 693, 3109, 7639, 8243, 1901, 4921, 4015, 3109, 7035, 7337, 5827, 391, 7941, 6129, 3411, 6431, 2807, 8545, 6431, 3713, 2203, 7035, 7941, 693, 1297, 5827, 2505, 5223, 3109, 2807, 4317, 6431, 3411, 1599, 5827, 4015, 7941, 3411, 6129, 6129, 3713, 1901, 8243, 7337, 3411, 9451, 3713, 4619, 5827, 8243, 7337, 995, 7941, 5827, 9149, 7639, 2807, 4317, 7337, 693, 8243, 1297, 4317, 5223, 2505, 995, 5223, 1297, 995, 4619, 2807, 4619, 995, 3713, 2203, 89, 7035, 5827, 3411, 6129, 4619, 4921, 4619, 5827, 5525, 9753, 4619, 9451, 4619, 5525, 7337, 9149, 391, 8847, 7639, 6431, 5525, 995, 9753, 5525, 8545, 7639, 8243, 1297, 5223, 3713, 7337, 8847, 7639, 391, 4317, 7941, 2203, 8545, 3713, 2807, 2203, 2807, 5223, 5827, 89, 7941, 693, 7337, 2505, 7337, 3109, 7035, 6431, 3713, 2807, 995, 8243, 3109, 89, 6129, 2807, 6733, 5223, 4921, 9753, 6431, 9451, 8847, 7035, 3411, 7035, 9451, 9149, 1297, 7941, 5223, 995, 8243, 3109, 9753, 1901, 8243, 6733, 4619, 5525, 7639, 1901, 2505, 4619, 4015, 4619, 9451, 2807, 1901, 2807, 1901, 2203, 4619, 5223], [1599, 89, 7639, 2203, 8847, 6733, 995, 7337, 7035, 391, 2807, 3713, 4317, 693, 9149, 5827, 2807, 995, 6733, 9149, 1901, 995, 5827, 5525, 2807, 4015, 3109, 6733, 4921, 8545, 6129, 391, 9753, 9753, 1297, 4015, 4619, 4317, 1599, 1599, 1297, 3713, 1901, 4015, 3411, 6129, 2807, 5827, 5223, 3713, 7035, 3713, 8847, 7639, 9753, 4015, 8847, 6129, 8243, 5525, 7639, 4619, 89, 6431, 9149, 7337, 2505, 7941, 5223, 1901, 3109, 1599, 9753, 2807, 7337, 391, 4921, 3109, 6733, 8545, 9149, 1599, 391, 391, 89, 3411, 995, 7337, 4619, 391, 5827, 3713, 7035, 4015, 5525, 2807, 391, 2505, 5223, 7035, 7941, 7639, 2203, 4317, 2807, 7941, 7337, 3713, 89, 4317, 1297, 9451, 5827, 9451, 8545, 8545, 7941, 3411, 5827, 7337, 7941, 89, 995, 2807, 2203, 2203, 2203, 3109, 5525, 5525, 3411, 6129, 4015, 6431, 9451, 391, 7941, 7941, 7639, 2505, 7035, 6129, 4921, 4317, 9451, 995, 3109, 9753, 3109, 391, 2505, 2505, 5223, 9451, 7941, 1901, 9451, 3411, 391, 391, 4015, 995, 8545, 7035, 7035, 8243, 7035, 1297, 9753, 2807, 3411, 5525, 7337, 9149, 5525, 4015, 1297, 2505, 9149, 9753, 9149, 5223, 7035, 4317, 995, 1297, 7639, 5223, 9149, 8243, 4619, 2505, 3411, 9451, 693, 7035, 9451, 4619, 3109, 8243, 5827, 1297, 5525, 4015, 8847, 4317, 3411, 995, 3411, 2807, 5827, 6733, 3713, 9149, 8243, 9149, 8847, 2807, 5827, 693, 5223, 2807, 7337, 391, 8545, 6129, 9149, 6431, 5525, 7337, 9451, 4015, 9149, 8847, 7035, 3109, 4317, 8243, 4317, 2505, 6733, 1599, 3713, 391, 1297, 6431, 2203, 8545, 1599, 4317, 4015, 6733, 3713, 9451, 995, 4619, 7941, 5827, 3713, 1901, 8847, 89, 8243, 4015, 7941, 7639, 4619, 8847, 4015, 4015, 995, 7639, 2203, 9753, 5223, 4921, 4015, 8545, 8545, 1901, 6129, 6733, 5525, 391, 8847, 7035, 7337, 8545, 3109, 7337, 1901, 4015, 4015, 9149, 3713, 693, 3411, 9451, 1901, 89, 391, 5223, 1599, 1901, 1901, 2807, 4015, 2203, 3713, 9149, 8847, 7941, 4619, 3411, 5525, 693, 7639, 391, 6733, 995, 1297, 1599, 89, 4015, 6733, 5223, 7035, 5223, 1599, 89, 7639, 89, 2203, 7035, 4619, 8545, 8545, 4317, 6431, 6431, 4921, 4921, 391, 5525, 6431, 1901, 5525, 8847, 9149, 4015, 5827, 6431, 8545, 4317, 9451, 5827, 8847, 5525, 4317, 5223, 995, 7639, 9753, 7035, 7035, 8243, 1599, 4015, 995, 693, 89, 2203, 4921, 1901, 693, 89, 5223, 3109, 5223, 2807, 4619, 9451, 7941, 1901, 7941, 1901, 693, 8847, 693, 1599, 1901, 7941, 7639, 4317, 6431, 2203, 7035, 5525, 1599, 391, 693, 5827, 4619, 5827, 8545, 2203, 1901, 7035, 9753, 6129, 6431, 9149, 89, 4921, 3109, 3109, 4015, 3411, 8243, 5223, 7941, 4619, 3713, 995, 5525, 8545, 3109, 6129, 6129, 7639, 9753, 4619, 3713, 8847, 995, 995, 6431, 7941, 1599, 7941, 5827, 2505, 7337, 1901, 7337, 7941, 1599, 9753, 7941, 6733, 7941, 1297, 7941, 1599, 2505, 7337, 4015, 9451, 5827, 7639, 4317, 4921, 7941, 8545, 89, 7337, 89, 4015, 1901, 5827, 8243, 693, 2505, 5525, 9149, 7941, 8847, 1297, 5827, 8243, 6129, 1901, 1599, 89, 4317, 8847, 995, 89, 9149, 6129, 2203, 9149, 7035, 3109, 7639, 6129, 995, 2807, 1297, 4317, 3411, 8243], [2807, 4317, 2505, 7941, 1901, 995, 8243, 4317, 4921, 5827, 4619, 6129, 8243, 1599, 1901, 995, 8243, 7639, 5223, 6431, 5525, 391, 8545, 8545, 8243, 8243, 9149, 6733, 4619, 8243, 6733, 4619, 7941, 6733, 9149, 2203, 7941, 89, 8243, 6129, 6733, 391, 2807, 1297, 5525, 89, 8243, 3109, 7337, 7639, 3109, 1297, 6129, 2807, 6733, 4619, 2807, 6733, 1599, 7639, 2807, 4619, 693, 5827, 1599, 4619, 7035, 4921, 8847, 2505, 7035, 1297, 2807, 1901, 3411, 2505, 3713, 7639, 6431, 995, 4015, 5827, 1297, 391, 2203, 6129, 4317, 2505, 8847, 5525, 9149, 2505, 2807, 4921, 4015, 7035, 995, 5827, 995, 1297, 4317, 8545, 7337, 8243, 9149, 4921, 3411, 5223, 6733, 3109, 2505, 9451, 3411, 693, 7639, 1297, 4015, 6129, 8243, 3713, 3713, 3109, 6733, 7337, 4317, 5827, 391, 3411, 4317, 8545, 9451, 7035, 7639, 4619, 995, 6129, 9149, 4015, 7941, 8847, 3411, 995, 693, 6431, 2807, 5827, 2505, 391, 7035, 2505, 9451, 7337, 7035, 3411, 7639, 1901, 3109, 4921, 3713, 3109, 9753, 9149, 3109, 7337, 8243, 8847, 4317, 391, 5223, 4619, 4317, 9149, 2203, 995, 1297, 5525, 4015, 7941, 2203, 1901, 89, 995, 6431, 995, 3411, 9753, 4619, 9149, 3713, 6733, 9149, 7639, 4317, 2505, 3713, 3713, 4921, 3411, 4015, 8847, 2203, 9149, 1297, 3713, 6733, 7337, 7639, 1297, 5525, 2807, 9149, 1297, 2807, 4317, 1297, 9753, 6129, 8243, 2505, 6129, 3713, 2807, 1599, 7035, 7639, 6129, 2505, 4921, 2807, 995, 8243, 3109, 4921, 4921, 6129, 3109, 1297, 2505, 9753, 89, 693, 9149, 8545, 9451, 6431, 8847, 7941, 6129, 3109, 693, 391, 7035, 4317, 7337, 9149, 4921, 5525, 5223, 89, 4619, 9149, 7337, 7035, 6129, 1297, 1901, 8545, 3713, 6733, 9753, 5827, 5827, 9149, 693, 5827, 1297, 3109, 2505, 1297, 5223, 5223, 6431, 7941, 7639, 6431, 693, 89, 6733, 1297, 3713, 6129, 6733, 6431, 9451, 6733, 8545, 8847, 1901, 9451, 2505, 7941, 6431, 5827, 7035, 5525, 4317, 4619, 8243, 8847, 8545, 1297, 7941, 4921, 1599, 6733, 9149, 4619, 3109, 7639, 9451, 2807, 2807, 9753, 3109, 3411, 1297, 4619, 7337, 8847, 1599, 4921, 6733, 9451, 693, 7639, 693, 9149, 2505, 9451, 4015, 7941, 5525, 5827, 4619, 391, 391, 6431, 5827, 8243, 8243, 7639, 8847, 7035, 6733, 4317, 7035, 6733, 2203, 4619, 4015, 9149, 3411, 7941, 9753, 7941, 4619, 8847, 2505, 3109, 391, 7035, 4921, 2505, 4619, 89, 4317, 8243, 4619, 5525, 4619, 7639, 2807, 391, 1901, 8545, 4921, 8243, 4317, 6431, 995, 5223, 7941, 3713, 89, 2807, 8545, 9451, 995, 2203, 8243, 7941, 6733, 2505, 6129, 1901, 4317, 5223, 2505, 8243, 7035, 391, 89, 4317, 6129, 3109, 2807, 5223, 9149, 3411, 2505, 3109, 7035, 7639, 6733, 1901, 2807, 4317, 4015, 4921, 3411, 1599, 9753, 3109, 8243, 995, 5525, 3713, 2203, 1599, 4015, 8243, 8545, 6129, 6733, 3109, 1901, 89, 5223, 3411, 3713, 391, 8847, 1901, 693, 391, 2807, 4619, 7639, 1297, 1901, 3713, 89, 6431, 8847, 4015, 5525, 89, 4619, 5525, 2203, 4921, 1901, 2505, 3411, 3713, 1297, 89, 2203, 4317, 2203, 5525, 9451, 6431, 7035, 2203, 3109, 3713, 4317, 6733, 7337, 2807, 5223, 4619, 2505, 3411, 1297, 4921, 9451, 9149, 391, 391, 7941], [2505, 5525, 8545, 3713, 391, 7035, 9753, 4619, 8847, 7639, 7035, 6129, 9451, 4317, 9753, 995, 5827, 7337, 1599, 9753, 7337, 3109, 5223, 4015, 8847, 8545, 4921, 4619, 1599, 8847, 4619, 4015, 3411, 4619, 2807, 4015, 6129, 4921, 7337, 1599, 2203, 7639, 391, 2807, 2203, 3713, 995, 5827, 8545, 391, 6733, 3109, 1297, 8847, 4921, 5525, 8243, 2505, 3109, 8243, 1901, 693, 6431, 8847, 4921, 5223, 693, 4619, 8545, 3411, 4015, 995, 4921, 3411, 4015, 1901, 2807, 5525, 9149, 2807, 5827, 2203, 3713, 1297, 9451, 3109, 2807, 7941, 693, 5827, 6431, 7639, 9149, 7035, 7639, 391, 7035, 5525, 2203, 995, 5525, 5525, 6431, 2807, 5827, 4619, 2203, 9753, 5827, 7035, 1599, 2203, 89, 8847, 89, 3109, 7941, 2203, 9149, 8847, 5525, 4015, 995, 4619, 8243, 4921, 5525, 6431, 4015, 2807, 8243, 3109, 8243, 2203, 2505, 2203, 1901, 1297, 5525, 1599, 7639, 2807, 7035, 9451, 3109, 6733, 4317, 89, 693, 4015, 9451, 8545, 6733, 4619, 6431, 391, 1599, 8243, 8847, 3713, 8847, 995, 3411, 8243, 8545, 693, 3411, 995, 9451, 6431, 693, 3109, 2505, 7035, 8545, 6733, 6733, 1901, 7639, 8243, 8847, 4619, 9753, 7337, 391, 4015, 2505, 6129, 4015, 2807, 8243, 995, 8847, 2505, 5525, 8847, 5223, 3713, 2203, 7337, 7941, 6431, 1297, 2203, 4619, 7035, 1297, 8243, 1599, 7941, 2505, 693, 7337, 2203, 4317, 3109, 6733, 5827, 89, 2505, 8545, 2505, 693, 5223, 4921, 7337, 7639, 4015, 2505, 9451, 3713, 995, 995, 8243, 5525, 5827, 995, 6129, 4619, 89, 6129, 6733, 5223, 7639, 2203, 995, 1599, 4317, 7941, 9753, 8545, 4619, 1297, 1901, 1297, 4015, 3411, 9451, 6733, 4317, 3713, 1901, 2807, 8847, 89, 5827, 4015, 9753, 4619, 391, 4015, 6733, 693, 4921, 5223, 8847, 995, 3109, 6733, 4921, 1599, 995, 5827, 1599, 9149, 8847, 6431, 2505, 2807, 995, 7941, 2807, 2807, 9753, 995, 8545, 3713, 3713, 7941, 3411, 5525, 2203, 7639, 1901, 8847, 3109, 4317, 2203, 3411, 6733, 9753, 4619, 6129, 3713, 9149, 2203, 4619, 6129, 995, 8243, 3411, 3109, 3109, 89, 4921, 3109, 1297, 7035, 3411, 3411, 693, 995, 9149, 4921, 7941, 8847, 7639, 7941, 1901, 6129, 995, 5223, 3411, 5223, 7337, 2807, 3713, 4015, 1297, 2807, 3411, 7035, 4921, 5525, 5223, 9149, 995, 8847, 8545, 5525, 6129, 7337, 1901, 9149, 89, 6431, 7035, 2505, 89, 6431, 2807, 4921, 9149, 4317, 995, 2807, 3109, 3109, 9753, 7639, 9451, 4619, 4619, 9451, 8243, 7337, 2807, 9753, 7035, 9753, 2505, 2505, 391, 2203, 89, 391, 6129, 4921, 391, 5827, 2807, 89, 5827, 6733, 3713, 5525, 5223, 6733, 7337, 4619, 8243, 8545, 4921, 3411, 2505, 5223, 7337, 995, 391, 8545, 995, 3713, 9451, 8545, 3109, 9753, 995, 4317, 8243, 693, 3109, 8545, 2807, 995, 693, 9149, 6431, 1599, 7639, 7639, 2505, 1297, 5525, 4921, 8545, 391, 2505, 5223, 3713, 6431, 7337, 4015, 693, 1599, 6431, 1297, 7639, 8243, 3109, 4619, 4619, 9753, 4921, 6129, 6431, 6733, 2505, 6431, 7337, 2505, 7035, 6733, 5223, 3713, 8243, 2807, 4619, 5223, 4921, 6129, 4317, 5525, 8847, 391, 693, 3411, 2505, 5525, 693, 693, 4015, 4317, 6733, 7639, 5223, 3109, 7035, 89, 7337, 6733, 1297, 9149], [1297, 1599, 6431, 995, 9753, 6129, 9753, 4317, 3411, 9149, 89, 7639, 5525, 1901, 2203, 5223, 7035, 1297, 8243, 3713, 5827, 3109, 1599, 4921, 4015, 391, 5827, 7941, 9753, 3411, 693, 2203, 89, 7941, 3109, 3713, 6431, 4921, 1901, 9149, 4921, 7035, 1297, 3109, 4317, 6129, 9149, 4921, 4015, 5223, 4921, 7941, 6431, 8243, 693, 4015, 7639, 7941, 693, 4921, 4619, 4921, 1901, 3411, 8545, 4317, 7639, 5525, 2505, 1599, 5525, 89, 4015, 2203, 2203, 5827, 8243, 6431, 3713, 3109, 2203, 6733, 8847, 7035, 693, 4015, 5223, 4015, 7035, 693, 7639, 1297, 5827, 8243, 5827, 1901, 8243, 8243, 7035, 8243, 1297, 1297, 5525, 2505, 89, 1297, 9753, 2505, 995, 3109, 3713, 3109, 5827, 2203, 7941, 9149, 5827, 7035, 7337, 4317, 7639, 995, 3713, 6431, 7639, 6129, 7337, 9451, 6733, 7639, 5827, 7337, 3411, 3109, 391, 2203, 9451, 89, 3411, 5525, 9149, 7035, 1901, 391, 5223, 4921, 8847, 9451, 8243, 4921, 9149, 1599, 6129, 7941, 2505, 1901, 1599, 8847, 1901, 693, 3109, 5827, 2807, 7639, 89, 391, 3411, 9149, 6129, 3109, 4015, 2807, 1901, 8847, 5525, 8243, 391, 5525, 4619, 9451, 7035, 2505, 3411, 9753, 1599, 1297, 6431, 693, 5223, 7035, 8243, 6129, 1901, 1901, 4921, 8545, 6733, 4015, 5827, 8545, 6431, 5827, 5827, 995, 4317, 4317, 7035, 8545, 9149, 9753, 6129, 5525, 8243, 89, 2807, 6129, 1297, 89, 9753, 3109, 693, 3713, 3713, 7337, 2807, 6733, 6431, 2203, 693, 2505, 2807, 391, 2203, 4015, 693, 3411, 89, 6129, 7035, 3411, 1297, 3109, 9451, 1297, 2505, 3109, 4921, 7639, 995, 1297, 4317, 3713, 9451, 1599, 4921, 995, 2505, 9451, 8545, 995, 5827, 2505, 8847, 8243, 3713, 5827, 5223, 8243, 995, 5223, 8545, 8847, 7035, 7337, 391, 5223, 9451, 4015, 4015, 7639, 4317, 3411, 391, 7639, 6733, 7639, 6733, 6733, 5525, 4619, 8545, 4921, 4921, 7035, 9149, 2505, 693, 2203, 6431, 995, 9451, 391, 7035, 8545, 7337, 2203, 6129, 5223, 6733, 9149, 1297, 1297, 5223, 8545, 4317, 5827, 2807, 391, 8545, 7639, 391, 4619, 6733, 7941, 6733, 3713, 4921, 6431, 8847, 6733, 8545, 8545, 9753, 3411, 5525, 1901, 7639, 6431, 9149, 7941, 1297, 2505, 995, 2505, 1297, 3713, 4921, 7035, 3109, 7035, 9753, 6431, 391, 3109, 1599, 3713, 7639, 1599, 3411, 89, 4317, 2203, 391, 6431, 2807, 9451, 3713, 5223, 9451, 9753, 5827, 8847, 4921, 5525, 6129, 5827, 3713, 2505, 7035, 3411, 5827, 7337, 5223, 1297, 693, 693, 7941, 9451, 1901, 8545, 2203, 5827, 4619, 5827, 7639, 6431, 995, 3411, 6129, 1901, 3109, 8847, 3411, 391, 6431, 2807, 7035, 1599, 4619, 2505, 4921, 3109, 2505, 2203, 7337, 4317, 6733, 3713, 3713, 5827, 8243, 5223, 5223, 9149, 6431, 3713, 995, 693, 2807, 3713, 3411, 89, 2203, 3713, 2807, 1297, 2203, 89, 5827, 1297, 6733, 6733, 89, 3411, 4015, 3713, 995, 9753, 9149, 9451, 8847, 8545, 6129, 5525, 4317, 693, 8243, 2807, 9451, 89, 2203, 6129, 1599, 995, 391, 4619, 5827, 9753, 4317, 8545, 2505, 2807, 8545, 6431, 4317, 9753, 2203, 8243, 3109, 9149, 391, 8847, 2203, 8545, 4317, 3713, 9451, 3411, 391, 391, 2203, 1599, 7035, 7035, 391, 2807, 5827, 7639, 89, 4317, 995, 7337], [4317, 6129, 4619, 1599, 4921, 2807, 7035, 391, 89, 995, 3411, 9753, 7337, 693, 5827, 7639, 391, 3411, 7035, 1297, 4619, 8847, 7035, 5525, 6431, 4921, 6129, 4015, 4015, 3109, 693, 1297, 5827, 6431, 6129, 9753, 3109, 3411, 89, 7337, 995, 995, 8545, 1297, 9149, 4015, 3109, 2203, 2505, 6129, 8847, 1599, 89, 9149, 3411, 3411, 391, 9753, 7639, 8243, 1901, 4317, 3713, 9451, 2807, 5223, 5525, 1297, 5223, 2807, 9753, 2505, 7941, 7337, 693, 7337, 6129, 8847, 6733, 2807, 8545, 8545, 6431, 9753, 4317, 7035, 4921, 8847, 7035, 5827, 6431, 4015, 4015, 1901, 9149, 6733, 6129, 5827, 89, 89, 8847, 4015, 6129, 1599, 4619, 6431, 7639, 5827, 8243, 7035, 7337, 4015, 7035, 8847, 3713, 2807, 9451, 7941, 3109, 7337, 3411, 995, 7337, 7035, 5827, 8243, 4317, 4619, 5827, 8545, 4921, 3713, 995, 6733, 1901, 6129, 3109, 6733, 6129, 6431, 693, 9451, 8847, 1599, 7941, 1599, 1297, 1901, 4317, 4619, 4619, 7639, 693, 2505, 9149, 6733, 3411, 2807, 1297, 2505, 7639, 1901, 6129, 4619, 7035, 1297, 6431, 4317, 693, 3713, 4015, 4317, 6733, 7941, 7639, 9451, 7035, 9451, 4015, 3713, 2203, 2807, 7941, 5827, 5827, 7337, 7941, 3713, 7941, 2505, 3411, 995, 89, 89, 5525, 89, 6129, 2807, 5525, 1297, 4015, 9451, 7337, 9451, 9149, 1901, 9753, 7639, 9753, 8243, 6129, 9149, 391, 9149, 693, 391, 3713, 1599, 4921, 3109, 9451, 7337, 8847, 1599, 9753, 2203, 8847, 6129, 6129, 5827, 1297, 1297, 391, 391, 4921, 9149, 5525, 5223, 995, 3109, 3109, 8243, 3411, 4619, 2505, 8243, 5223, 9753, 3109, 4015, 89, 2505, 1297, 9753, 6431, 2203, 2807, 2203, 391, 8545, 89, 7035, 8545, 8847, 7639, 4015, 5827, 7337, 693, 995, 3713, 5525, 5525, 2807, 4015, 7941, 693, 8847, 1297, 4317, 5525, 9451, 1297, 4317, 4921, 7941, 1297, 5525, 4619, 391, 4317, 1599, 9753, 7941, 3411, 1297, 3713, 2203, 7941, 391, 3713, 9451, 391, 9753, 3713, 7337, 4317, 7639, 8545, 8545, 6129, 7941, 8545, 9149, 5827, 391, 5525, 5223, 6129, 9149, 2203, 89, 7035, 8545, 1901, 5525, 2505, 9451, 7941, 1297, 9451, 7639, 391, 4921, 4921, 3109, 4619, 3109, 5223, 391, 5223, 391, 7035, 8243, 5525, 2505, 8847, 89, 1297, 6129, 1599, 4619, 9753, 6431, 693, 7035, 2505, 5827, 3109, 693, 2203, 391, 4317, 1599, 2203, 3411, 3109, 6431, 6733, 3411, 7035, 89, 8545, 4317, 89, 1599, 7035, 4921, 9753, 5827, 9753, 2807, 9149, 4619, 8243, 1297, 9149, 7035, 1599, 89, 9149, 3713, 7941, 2807, 693, 1901, 1599, 9451, 4015, 6733, 693, 3109, 3713, 89, 4619, 2505, 995, 391, 8243, 7337, 4317, 7337, 7337, 7639, 3411, 4317, 6129, 5223, 8545, 9149, 8545, 8243, 7639, 2203, 391, 995, 8847, 3411, 2505, 1297, 7639, 8243, 3109, 2505, 995, 2807, 3411, 5525, 391, 7941, 5827, 4921, 2203, 1901, 9451, 2807, 6431, 4317, 2505, 1901, 391, 8847, 1297, 1297, 3109, 9451, 6733, 4317, 4317, 4619, 7941, 995, 1297, 2203, 8545, 8847, 4317, 4015, 1297, 4921, 9149, 8847, 3411, 8847, 7639, 7639, 4921, 2505, 4921, 7639, 9149, 2505, 7639, 5827, 5827, 2203, 89, 391, 2505, 7941, 89, 4921, 7035, 1901, 8243, 7639, 1901, 3411, 3713, 7941, 89, 1599], [3713, 3411, 4015, 6129, 2807, 8545, 2203, 8545, 2203, 9149, 89, 8545, 5223, 1297, 2203, 8847, 5525, 7035, 6431, 5525, 1901, 2807, 3713, 5525, 2505, 8847, 5827, 391, 6733, 1901, 2203, 6733, 391, 4619, 8243, 6129, 3713, 6129, 3109, 3109, 2203, 995, 693, 2203, 6733, 4317, 5223, 1599, 4317, 1901, 693, 4619, 9149, 5525, 6431, 5525, 2807, 4619, 9149, 1297, 4317, 7035, 89, 8847, 4317, 89, 9451, 5827, 3713, 2807, 6733, 4015, 3411, 693, 1599, 2203, 1901, 4619, 8243, 9753, 7639, 5223, 2505, 8545, 2505, 4317, 4619, 391, 6431, 8847, 6431, 9149, 7337, 995, 995, 7035, 5827, 6733, 1599, 8847, 3713, 7337, 1297, 3411, 4015, 2203, 5827, 3411, 4619, 6129, 7035, 2807, 1599, 4317, 2505, 6129, 9753, 4317, 2505, 7337, 2807, 995, 2807, 2807, 3411, 1297, 6733, 5827, 4921, 3411, 3411, 89, 693, 1599, 9451, 6431, 8243, 8847, 89, 2807, 391, 1297, 2807, 6733, 2203, 7337, 6733, 7337, 8545, 5223, 8545, 995, 1599, 5223, 3411, 4317, 6431, 7337, 4921, 8243, 8847, 5525, 995, 1901, 6733, 8243, 4015, 8545, 6733, 2505, 6733, 9451, 995, 8243, 8545, 2807, 2203, 1901, 3109, 7639, 9451, 7337, 2505, 7337, 4619, 4619, 3109, 693, 9451, 5827, 1297, 3713, 995, 7941, 3109, 4921, 1297, 8243, 693, 9149, 6431, 6733, 3109, 1297, 8545, 5525, 4619, 8545, 5827, 1599, 6129, 391, 3713, 1901, 4317, 7337, 7941, 9149, 1901, 6431, 9753, 7337, 5827, 6431, 693, 7337, 7639, 9451, 8847, 9149, 5827, 6431, 4619, 3109, 8847, 4317, 4921, 9753, 6431, 2807, 2203, 1297, 9149, 693, 8847, 6431, 3713, 3713, 4921, 5827, 6431, 995, 9753, 995, 9753, 1599, 9149, 5827, 2505, 4619, 2505, 6431, 8243, 4619, 2505, 2807, 2203, 9451, 9451, 8243, 5223, 4921, 1901, 3109, 5223, 4619, 2203, 1599, 7639, 2505, 7941, 1901, 391, 8243, 8243, 3713, 2203, 2807, 1297, 7639, 2807, 89, 4317, 1599, 3713, 4619, 3713, 8545, 995, 4921, 7337, 4619, 6733, 6129, 9149, 693, 3411, 4921, 5525, 5223, 7035, 4317, 8243, 1599, 995, 1297, 5223, 9451, 7639, 4317, 6733, 89, 2807, 4619, 391, 5827, 2807, 5525, 5827, 1599, 4317, 3411, 1901, 4015, 995, 4317, 7639, 5827, 3411, 2505, 7941, 6129, 2807, 4619, 6733, 7337, 693, 2807, 3713, 693, 2505, 9149, 3109, 8545, 693, 391, 3713, 4015, 2203, 995, 9149, 7337, 5827, 6129, 6733, 7035, 5223, 3411, 3713, 5827, 1297, 7337, 1599, 9753, 7941, 3411, 5223, 5827, 995, 9753, 6129, 5827, 9149, 2505, 2807, 9753, 6129, 1599, 6129, 5223, 5223, 9451, 2203, 5827, 8243, 7639, 4015, 7337, 8847, 4015, 2807, 9451, 3411, 5525, 8545, 391, 8545, 4921, 9149, 3109, 2807, 3411, 4619, 9149, 4921, 9451, 6129, 1901, 2203, 4317, 1901, 4921, 1297, 4317, 391, 2203, 7035, 995, 1297, 4921, 4921, 2505, 6129, 7035, 1297, 89, 2505, 4015, 391, 693, 9451, 6129, 5827, 5525, 391, 5827, 4317, 3713, 4317, 3109, 4015, 7941, 3411, 2505, 6129, 391, 1599, 9451, 3109, 9753, 7337, 5827, 1901, 6431, 5525, 693, 6129, 5827, 4921, 8847, 6431, 6431, 3109, 995, 4619, 391, 5827, 4619, 3109, 8847, 4619, 2505, 2505, 4619, 8545, 7337, 4921, 9451, 4015, 3109, 4921, 9149, 6431, 2807, 3109, 3109, 1297, 89, 7035, 2203, 8545, 2203], [1901, 7035, 89, 3109, 1297, 8243, 3411, 7941, 4015, 6129, 2203, 7035, 7941, 3411, 6431, 4921, 4619, 7639, 3109, 89, 995, 4317, 2505, 8243, 995, 4317, 3411, 5223, 2807, 6733, 1901, 2807, 4015, 2505, 8243, 3109, 391, 3411, 9451, 2203, 9753, 2807, 693, 7639, 6129, 2203, 4015, 1901, 5223, 1599, 6431, 7941, 3411, 2807, 4317, 9149, 8243, 89, 4317, 3109, 6129, 7035, 2505, 3713, 4921, 4317, 7639, 4921, 9149, 2505, 8243, 8545, 4921, 6129, 7035, 8847, 6733, 1901, 5525, 5223, 5827, 8545, 2505, 3411, 4619, 1297, 8243, 3713, 693, 8847, 4015, 391, 391, 3109, 8243, 89, 2505, 7337, 89, 7639, 391, 995, 1297, 8545, 4921, 7941, 3713, 7035, 3109, 995, 6129, 8847, 8545, 9753, 6129, 9753, 7639, 5223, 2203, 9149, 7337, 3109, 7639, 2203, 9753, 6129, 2807, 9149, 6431, 9451, 6733, 693, 391, 3411, 5827, 9149, 3713, 1599, 4619, 6431, 1599, 7035, 4921, 8847, 4317, 9451, 3109, 7639, 1901, 8243, 4619, 6431, 89, 5827, 8243, 1901, 5827, 391, 1297, 2807, 5827, 5827, 5827, 5525, 3713, 3411, 9753, 4619, 7639, 3713, 7941, 7639, 9451, 4015, 391, 4015, 4317, 7639, 2807, 2505, 391, 4317, 1297, 4015, 8243, 7941, 2203, 9451, 6129, 1297, 2203, 6431, 2505, 7035, 3411, 7639, 391, 2505, 9451, 1901, 4619, 8847, 9451, 8847, 4619, 4921, 9753, 6431, 7035, 2505, 1599, 8243, 5223, 4317, 3411, 4015, 995, 8545, 4015, 3109, 7639, 5223, 5525, 3411, 995, 3411, 9451, 2203, 1901, 4619, 89, 1599, 9149, 5827, 1599, 2203, 6129, 4921, 7035, 1297, 2807, 5223, 6129, 4015, 693, 9451, 693, 8243, 1297, 6733, 9753, 2807, 5827, 89, 7337, 7035, 7941, 1297, 7337, 693, 1297, 693, 2807, 5525, 3109, 4921, 9149, 4619, 6733, 7639, 8243, 5827, 3713, 995, 89, 3411, 89, 2203, 5223, 9753, 3411, 2505, 9451, 6129, 995, 995, 4015, 8545, 4015, 1297, 3109, 6733, 1599, 4015, 693, 6431, 89, 9149, 9753, 1901, 3713, 9451, 9451, 391, 3109, 1901, 8243, 2505, 6733, 7337, 5223, 3109, 9451, 5525, 7035, 4015, 2807, 3109, 5223, 7337, 5827, 6431, 89, 8545, 4619, 7639, 7035, 7337, 5827, 9753, 6733, 8243, 8545, 6733, 4619, 8243, 5223, 2505, 8545, 7941, 8847, 3109, 8847, 4619, 6733, 3411, 1297, 995, 2203, 8847, 391, 1297, 6733, 3713, 7337, 6129, 1297, 3411, 4015, 4921, 7941, 4015, 2203, 4015, 1297, 4619, 1599, 3713, 9451, 391, 1901, 1599, 4921, 7639, 4619, 3411, 8847, 6431, 5223, 2203, 7035, 7941, 2505, 1297, 7941, 2505, 4619, 3109, 4921, 1901, 693, 6733, 9753, 4317, 8243, 7337, 2505, 7035, 89, 5525, 1901, 4921, 4921, 5525, 9753, 1901, 2505, 8847, 4619, 5525, 3713, 5223, 89, 6129, 9149, 8545, 2807, 4317, 7639, 8545, 7941, 89, 1297, 1901, 4921, 693, 6733, 4317, 4619, 5827, 995, 6733, 2505, 8545, 2203, 4921, 89, 4619, 6431, 7941, 3713, 4921, 8243, 8545, 6431, 8243, 8243, 2807, 3713, 4015, 9753, 89, 995, 89, 4317, 6129, 2807, 9753, 8545, 8243, 9753, 1599, 3411, 7639, 9149, 4317, 6431, 8545, 2203, 9149, 1599, 9753, 9149, 4921, 5827, 2505, 2807, 89, 4921, 1297, 9451, 8545, 1599, 7639, 2807, 7337, 6431, 9149, 7035, 6129, 7639, 1297, 6129, 7941, 5525, 2203, 1599, 9451, 89, 2505, 3109, 5525], [5525, 5525, 3109, 6733, 7337, 5525, 6733, 6129, 3713, 2807, 1901, 7941, 2505, 3713, 9753, 6129, 2505, 6129, 1297, 391, 3713, 5827, 4921, 7337, 7941, 7639, 693, 2203, 8243, 2505, 693, 1901, 3109, 1297, 1599, 4921, 1599, 8545, 693, 3411, 9149, 89, 7941, 3411, 7035, 6733, 2203, 4619, 1599, 4921, 995, 3411, 9451, 7941, 4619, 7941, 89, 5525, 5525, 1599, 7639, 9451, 9753, 7035, 3411, 7035, 8847, 2505, 3109, 4317, 6129, 4921, 391, 6733, 7337, 2203, 6431, 3713, 9149, 8243, 1901, 7941, 4921, 7337, 8243, 6733, 1901, 7337, 7337, 7639, 4921, 4619, 1599, 5525, 3713, 995, 2203, 6129, 4921, 6129, 7639, 1901, 3411, 5223, 7035, 4317, 2505, 3713, 995, 4619, 5223, 6733, 1901, 1901, 5525, 693, 4619, 3109, 4317, 9451, 7941, 7941, 5525, 9451, 6431, 2203, 995, 995, 7035, 4921, 7941, 5827, 6733, 6129, 5525, 8545, 391, 8847, 3109, 1599, 3411, 1297, 1599, 9451, 391, 1297, 6129, 9753, 8847, 9149, 4317, 2807, 693, 7035, 7639, 8243, 89, 5525, 8847, 2505, 6129, 6733, 8545, 5223, 391, 4015, 4015, 2505, 7035, 9753, 391, 1901, 7941, 7337, 995, 2807, 8847, 7941, 6733, 8243, 5525, 3713, 9753, 3411, 3713, 9149, 9753, 7639, 89, 4317, 7941, 6431, 6733, 4619, 1297, 1297, 6431, 8243, 693, 6733, 9451, 5525, 1297, 7941, 2807, 7035, 995, 5525, 7035, 7337, 7035, 1901, 6431, 6733, 391, 5223, 5827, 7035, 8847, 5525, 2203, 2203, 3411, 4619, 2203, 4619, 6733, 3411, 89, 6129, 391, 2203, 6129, 9451, 4317, 8243, 2203, 4015, 8545, 4317, 7035, 4619, 89, 4317, 2505, 5223, 995, 5525, 1599, 5525, 89, 7639, 6733, 6431, 7639, 2505, 6129, 5827, 1901, 4921, 8243, 5827, 8847, 1901, 6129, 8243, 1599, 7035, 9753, 693, 7035, 1297, 5827, 1901, 995, 9451, 995, 3713, 391, 7941, 6733, 693, 8847, 4317, 9451, 4921, 2807, 3713, 693, 8545, 1599, 5525, 9451, 693, 7639, 3713, 4921, 1297, 8847, 1901, 89, 5223, 5827, 6733, 4317, 3713, 8243, 2203, 89, 8545, 6733, 6733, 2505, 9149, 8847, 89, 3411, 6733, 9149, 5827, 89, 89, 6733, 9149, 3713, 2807, 1599, 4921, 9753, 8243, 8243, 2807, 7337, 6431, 9753, 2807, 1901, 6733, 3411, 5223, 7941, 6431, 4921, 2505, 8847, 995, 4619, 3713, 8545, 5525, 8243, 9149, 7639, 7639, 89, 5525, 7639, 7639, 1297, 4317, 4619, 4921, 1901, 89, 7035, 4619, 1901, 9451, 2505, 6129, 4921, 1901, 89, 4619, 1901, 4921, 995, 7337, 2807, 6431, 7337, 1297, 7941, 8847, 3411, 3109, 5223, 4317, 2807, 3109, 7941, 391, 2203, 7639, 6129, 9451, 9451, 9753, 995, 4619, 4619, 7639, 5223, 4015, 1901, 9149, 8847, 3411, 8243, 3713, 9149, 9753, 5223, 2807, 9753, 89, 9149, 8847, 5525, 6129, 9753, 2505, 1901, 4015, 6129, 1901, 8545, 4921, 4921, 3109, 4921, 2807, 5223, 6129, 1901, 9753, 4015, 391, 1599, 7639, 5525, 4921, 5827, 8545, 89, 2807, 5827, 1599, 89, 9451, 8545, 6129, 2505, 3109, 9149, 9753, 8847, 3713, 2203, 6733, 3411, 7639, 3713, 3411, 391, 5223, 5827, 6431, 9451, 7639, 8847, 9451, 4921, 6129, 2203, 693, 2203, 3109, 5223, 9753, 8243, 5525, 8243, 3411, 1297, 7639, 5223, 7941, 7035, 6431, 89, 7639, 2807, 4921, 7639, 7639, 7941, 4015, 5525, 8545, 7639, 4015], [1901, 89, 7035, 693, 5223, 3411, 9149, 3109, 3713, 89, 5525, 89, 9149, 4317, 1599, 5827, 89, 2505, 8243, 7337, 4619, 5827, 9451, 995, 3713, 9753, 9149, 391, 4015, 7639, 7941, 6431, 3713, 4619, 7035, 5223, 391, 3411, 6431, 7035, 391, 4921, 3109, 7337, 7941, 7941, 6129, 9149, 9753, 9149, 2505, 7941, 8847, 9149, 8847, 7035, 4619, 7941, 5223, 7337, 4317, 2203, 1297, 1599, 9451, 2505, 2807, 4921, 7639, 391, 3411, 7035, 693, 8243, 89, 89, 89, 5525, 7941, 4015, 5223, 3411, 2505, 7941, 1901, 5827, 4015, 7941, 2505, 1599, 391, 7639, 3713, 7941, 7639, 7639, 693, 2203, 4619, 7639, 8847, 9451, 2203, 6129, 5223, 3411, 4015, 4921, 5525, 1297, 5827, 89, 6733, 5223, 8545, 995, 9753, 7337, 7035, 9451, 7639, 6733, 6129, 4619, 4921, 8243, 3411, 3411, 89, 1901, 1297, 2505, 2807, 1297, 6733, 3411, 391, 8243, 9149, 5223, 2505, 9451, 3411, 89, 9753, 8847, 995, 8847, 7035, 1599, 3109, 9149, 89, 1901, 89, 1901, 4317, 995, 1901, 9451, 8847, 5827, 995, 5525, 8847, 7941, 1297, 8847, 5827, 2807, 4015, 4921, 89, 4317, 5223, 6129, 89, 6431, 1901, 995, 4619, 2505, 7035, 1599, 8847, 5525, 7337, 3411, 9149, 995, 1599, 7337, 8847, 9753, 6431, 391, 7337, 995, 89, 2807, 5525, 9149, 2505, 8847, 2807, 6733, 8847, 4921, 6431, 9753, 7941, 6129, 693, 9149, 6733, 6431, 6431, 9451, 1901, 5827, 6431, 1297, 8243, 8243, 995, 5525, 3411, 6733, 2203, 9149, 8545, 1297, 995, 4317, 7639, 2505, 8545, 6129, 8243, 4619, 5525, 8545, 7337, 6129, 2203, 9451, 3411, 89, 5827, 7337, 4015, 693, 2505, 1599, 9451, 9451, 6129, 995, 391, 1901, 4317, 995, 8243, 7639, 2505, 2807, 1901, 7337, 1599, 693, 2203, 1901, 5525, 8243, 2203, 4015, 1599, 4015, 2505, 4619, 5827, 7337, 995, 8847, 1599, 693, 4317, 2505, 1901, 3109, 2807, 3713, 7639, 4921, 9149, 1297, 5223, 7337, 6431, 9149, 3109, 3411, 4317, 2203, 9753, 7639, 4317, 9149, 8545, 693, 4921, 693, 1297, 3411, 2505, 89, 4619, 995, 5223, 3713, 2505, 7035, 6129, 7337, 3411, 2807, 3713, 6431, 8545, 9149, 5223, 2203, 4317, 7035, 7941, 4921, 5827, 8545, 693, 9753, 3109, 9451, 2203, 3109, 4619, 7035, 5827, 7639, 391, 391, 7337, 2203, 7035, 7337, 693, 89, 8243, 7337, 8243, 5525, 693, 3411, 1297, 1901, 391, 6431, 9753, 7035, 1297, 1297, 1297, 8243, 6733, 7337, 9149, 1297, 7337, 3109, 8847, 7035, 4619, 8847, 2505, 4015, 995, 2505, 3411, 1297, 2505, 5223, 1901, 8847, 6431, 6431, 1901, 1599, 8847, 7035, 5223, 2505, 9753, 1297, 4619, 3713, 2203, 5525, 4921, 391, 3713, 1901, 2505, 6129, 995, 2505, 4921, 693, 6129, 7337, 3411, 6431, 7941, 4015, 8847, 3411, 4015, 7941, 2505, 9451, 8243, 89, 6733, 7035, 1599, 8847, 4619, 5525, 8243, 995, 8545, 2807, 4619, 2203, 7639, 3109, 6431, 2505, 3411, 1599, 2807, 5223, 995, 8545, 89, 3109, 693, 5827, 5827, 9451, 8243, 4619, 9753, 8847, 1297, 9451, 8243, 391, 4317, 5223, 89, 7639, 7337, 2203, 8545, 7337, 6431, 9451, 693, 8545, 8545, 2505, 6431, 6129, 5223, 8545, 1599, 4921, 7337, 6129, 995, 6431, 6431, 6733, 9149, 7941, 9451, 9753, 1901, 3411, 1297, 5223, 1901, 3411], [693, 4317, 4015, 6129, 995, 89, 6733, 6129, 7035, 7639, 9149, 7639, 7035, 9149, 2807, 7941, 3713, 3109, 6129, 5525, 2203, 3411, 3109, 2203, 1901, 6129, 6431, 7639, 2505, 7639, 7639, 6431, 8847, 3411, 2807, 2505, 6431, 995, 1599, 3109, 4317, 4015, 5827, 9451, 2505, 1599, 6129, 3411, 89, 1901, 5525, 7035, 89, 4619, 6431, 9451, 1599, 6733, 8545, 8243, 4015, 8545, 89, 5525, 7035, 89, 4921, 391, 1297, 4317, 2505, 3109, 3713, 4921, 3109, 1297, 4619, 1297, 4317, 1599, 391, 1599, 3109, 5223, 4317, 2807, 2203, 9451, 89, 9753, 1901, 995, 7941, 3109, 89, 3411, 7639, 391, 7639, 8847, 2807, 89, 6431, 391, 8243, 8847, 3713, 5525, 6431, 7337, 8545, 9753, 3713, 1901, 5827, 7941, 2807, 7639, 391, 5827, 7337, 1901, 5223, 9149, 7639, 4619, 5525, 2807, 7941, 7337, 5223, 1599, 9451, 5525, 1297, 6431, 5525, 8847, 1901, 6129, 7639, 5223, 4619, 5223, 7337, 9149, 693, 6733, 8243, 4921, 3109, 693, 4015, 6733, 5827, 9149, 6431, 8847, 5223, 1297, 6733, 995, 1599, 7639, 4015, 7035, 2807, 6431, 4619, 5827, 4015, 7639, 6129, 7035, 3713, 6431, 4317, 8243, 6431, 4015, 8545, 4921, 693, 6129, 6733, 5525, 1297, 2505, 7941, 9753, 6733, 3411, 8243, 4619, 3713, 6733, 4317, 1599, 9149, 1297, 5827, 3411, 2203, 995, 3109, 6431, 9451, 4619, 8847, 7941, 4921, 1297, 1901, 9753, 9753, 9753, 4619, 2203, 3713, 4015, 4619, 9149, 9753, 1297, 2807, 7337, 5525, 9451, 6431, 8243, 2807, 4921, 9753, 3713, 9753, 2807, 1599, 1901, 693, 7337, 3109, 2807, 89, 3109, 7035, 2807, 3411, 8243, 7035, 995, 9753, 1297, 4015, 4317, 8545, 4015, 1599, 6431, 3109, 7941, 5827, 8243, 9149, 5827, 9753, 5827, 995, 4921, 4015, 6733, 7941, 6431, 8545, 6431, 8847, 3411, 7639, 8847, 7639, 9451, 6733, 7035, 4317, 3411, 6431, 7337, 6129, 995, 391, 89, 5223, 5827, 391, 5827, 1901, 1901, 391, 3109, 6129, 1901, 4921, 2203, 89, 8545, 8847, 9149, 8847, 7639, 7337, 1297, 1599, 1297, 2807, 9451, 693, 4619, 2505, 2505, 3713, 1297, 4015, 3109, 7639, 693, 8545, 2203, 1599, 7639, 89, 9753, 391, 7639, 2807, 1297, 5525, 1599, 6129, 1901, 7337, 4015, 1901, 6129, 9451, 5827, 89, 9149, 7337, 3713, 2203, 7337, 3411, 5223, 7035, 4619, 693, 1297, 1297, 9753, 9753, 2807, 6129, 2505, 4015, 5223, 7337, 1297, 7035, 4317, 8545, 4921, 1297, 693, 9149, 8545, 89, 2203, 5525, 8847, 4015, 2203, 8243, 89, 7337, 5223, 89, 4317, 5223, 7941, 1599, 3713, 3109, 8545, 1297, 6431, 9753, 4317, 8545, 7639, 6129, 9451, 6129, 1297, 5827, 9451, 5223, 4317, 6431, 5827, 89, 89, 5827, 5827, 3109, 1901, 5525, 3411, 5223, 4921, 8243, 1599, 693, 4015, 6129, 89, 7035, 8545, 391, 2807, 8545, 3713, 693, 6129, 2807, 8243, 4619, 391, 9451, 4015, 7035, 3411, 693, 3411, 7941, 7337, 7941, 8545, 3713, 6431, 6733, 7639, 391, 5827, 391, 5827, 2807, 5827, 3713, 9149, 7035, 7035, 9451, 1599, 4619, 4317, 3411, 7639, 7941, 89, 1297, 7337, 8847, 4921, 2203, 7941, 4015, 3109, 7337, 693, 9451, 8847, 6733, 1297, 1599, 6129, 6733, 3411, 7035, 9451, 6129, 1599, 2203, 4921, 1599, 89, 1297, 995, 9149, 5827, 7639, 391, 7639, 9451], [6129, 8243, 3411, 995, 5223, 4015, 3109, 8545, 4015, 1599, 7337, 4015, 9149, 1599, 693, 5223, 3411, 2505, 7639, 5223, 8847, 1901, 9451, 3411, 8545, 8847, 7035, 8243, 1901, 9149, 7337, 693, 8847, 4921, 995, 5827, 1901, 391, 2505, 1901, 1901, 2505, 2807, 1901, 3713, 4317, 8847, 2505, 3109, 5827, 8847, 6431, 693, 2505, 5223, 4921, 8243, 6431, 7035, 9149, 4921, 7639, 9149, 1297, 693, 3713, 1901, 5525, 693, 391, 995, 4619, 391, 8545, 8243, 1901, 7639, 995, 5525, 5525, 7035, 8243, 5223, 6733, 8847, 391, 693, 5223, 1599, 6733, 7035, 2203, 5525, 8243, 5525, 4619, 6431, 9451, 9753, 4921, 5827, 6431, 5525, 6733, 4921, 89, 5827, 5525, 693, 9451, 2505, 3109, 7337, 1297, 3109, 6733, 9451, 995, 1599, 6733, 9753, 2505, 5223, 693, 3109, 693, 4921, 3411, 6733, 6733, 89, 89, 7639, 2203, 4317, 8847, 6129, 1901, 8847, 1599, 3109, 6431, 8847, 5827, 4015, 7941, 391, 7941, 6431, 4619, 2807, 5525, 693, 3411, 5525, 4619, 8545, 1901, 1297, 4619, 7337, 2505, 3109, 7639, 7337, 693, 1901, 8847, 4015, 4317, 391, 4619, 89, 7639, 5525, 7035, 7639, 3109, 7639, 9753, 1599, 8243, 3109, 1901, 6431, 995, 2505, 4317, 4921, 391, 2807, 7941, 8243, 9149, 1297, 9451, 7941, 4921, 2203, 3109, 2203, 9149, 2505, 4015, 6733, 7639, 5525, 8243, 3109, 3713, 4921, 9753, 8545, 7035, 5827, 8847, 3713, 3411, 89, 7639, 7639, 4317, 2505, 8545, 1599, 5223, 1901, 8545, 693, 995, 9149, 1599, 5223, 4921, 6431, 8545, 995, 5827, 1901, 7337, 995, 2807, 995, 6431, 7639, 1297, 2203, 1599, 4619, 9753, 995, 8243, 1901, 391, 1599, 3109, 4619, 9753, 5525, 3109, 3411, 7337, 5525, 8847, 391, 7639, 8243, 1901, 3713, 9451, 8545, 2505, 4619, 693, 7337, 3411, 3109, 2203, 5223, 7035, 693, 3109, 6733, 7035, 3713, 995, 7941, 5525, 3109, 8847, 5525, 391, 5223, 7337, 693, 7639, 9451, 8847, 3411, 3713, 6733, 89, 995, 5223, 4317, 89, 7941, 6129, 693, 9149, 2505, 2807, 3713, 4921, 4015, 3109, 4619, 8847, 1297, 9753, 7941, 6733, 391, 9451, 1901, 4921, 2505, 7639, 9149, 7337, 2505, 1901, 7639, 2807, 5525, 6733, 7941, 6129, 3713, 7337, 4317, 2807, 1901, 89, 2203, 9451, 3109, 2505, 4619, 2807, 4619, 6733, 5827, 995, 1901, 9149, 5827, 391, 6431, 1901, 4619, 6129, 4317, 9451, 3411, 8847, 4921, 8243, 4317, 6431, 1297, 6129, 995, 7035, 7035, 4015, 2807, 693, 7941, 693, 3713, 5525, 6733, 1297, 5827, 4015, 9149, 7639, 8243, 7035, 3411, 9753, 1901, 3109, 2807, 2203, 3411, 3411, 9753, 7941, 4619, 8243, 3411, 1599, 9451, 9149, 7941, 7639, 4619, 9149, 4619, 7337, 8847, 2203, 7639, 3713, 3109, 3713, 8545, 8243, 4619, 5525, 6129, 7035, 1297, 3109, 3713, 391, 7337, 9753, 2505, 1901, 5525, 2203, 8847, 4015, 5525, 2807, 1297, 5223, 7941, 391, 9753, 7337, 6733, 9451, 1901, 4317, 3713, 2203, 3109, 693, 3411, 9451, 9753, 9149, 8847, 3411, 4619, 693, 1599, 9753, 5223, 9149, 9451, 8243, 4619, 5525, 2203, 5525, 3411, 5525, 3713, 8545, 2203, 89, 2505, 6129, 4317, 5223, 391, 693, 3713, 3713, 5223, 1599, 6733, 1901, 89, 9451, 8545, 9451, 5525, 4619, 9149, 5525, 3109, 5827, 4317, 2807, 9753, 4015], [4015, 9451, 1599, 6129, 4619, 4921, 8243, 7035, 5827, 2203, 3411, 391, 7337, 7941, 8243, 5223, 3109, 6733, 391, 3109, 995, 3411, 9451, 9149, 3109, 4619, 2807, 3713, 5223, 995, 4619, 1901, 3411, 9451, 1599, 391, 4619, 3713, 1599, 693, 2505, 8243, 7035, 4619, 1901, 4015, 7639, 1297, 2807, 3411, 5827, 5827, 4619, 3713, 5827, 4015, 9451, 4015, 5525, 2203, 6733, 4015, 1297, 1297, 1599, 6733, 8545, 4015, 391, 8243, 693, 7337, 5827, 1901, 7639, 1599, 2203, 1901, 693, 5827, 391, 2807, 2203, 6431, 7941, 1297, 7035, 6733, 8847, 2807, 4015, 4317, 1297, 9149, 4921, 6431, 5525, 4921, 2807, 3713, 6129, 3109, 7941, 693, 5223, 3713, 4921, 5827, 8545, 8847, 1599, 3109, 7639, 2203, 5223, 2505, 4619, 2203, 3411, 9149, 3109, 4015, 4619, 7035, 5223, 3109, 9753, 8545, 693, 1599, 5223, 89, 1297, 4921, 8545, 5827, 9149, 9753, 6431, 2807, 6431, 3411, 8545, 4015, 8243, 3713, 89, 5827, 6129, 693, 1297, 9451, 5827, 4619, 4619, 2505, 1297, 8847, 693, 1599, 6129, 9149, 8847, 8847, 7941, 4619, 6431, 4921, 8243, 391, 7639, 9149, 8847, 7639, 8243, 7035, 4921, 2203, 7337, 3109, 1901, 4015, 7639, 1599, 7337, 1297, 5223, 3713, 391, 8243, 2505, 3109, 995, 7035, 8847, 3713, 3411, 8847, 6733, 2807, 2807, 6129, 2807, 4015, 1599, 7639, 89, 2505, 5525, 4921, 4015, 9451, 7941, 693, 7639, 4317, 2807, 1901, 5525, 9451, 5525, 7639, 7337, 693, 89, 9753, 1297, 9451, 3109, 7941, 6129, 7035, 6733, 693, 5827, 8243, 1297, 7639, 4921, 6431, 8847, 2203, 6431, 1901, 5223, 9451, 4619, 3109, 6733, 1901, 3411, 7941, 89, 693, 5827, 5223, 7035, 2807, 693, 2203, 6431, 8545, 6733, 7035, 2505, 2505, 7941, 3411, 1901, 3411, 391, 4619, 2807, 3411, 4921, 4317, 6129, 1599, 6733, 5223, 8847, 4921, 2203, 391, 7035, 7639, 4317, 9451, 693, 4619, 5827, 5525, 89, 4317, 4317, 5827, 3411, 5223, 7035, 9753, 2807, 9451, 1901, 5525, 6431, 6733, 391, 995, 9451, 391, 1901, 995, 7035, 7941, 4317, 391, 8545, 9753, 9753, 2807, 8847, 995, 4015, 995, 5525, 1297, 5223, 8847, 5525, 5525, 4317, 4619, 7941, 3713, 3109, 391, 2505, 391, 3713, 1599, 7337, 7337, 9149, 2203, 8243, 6129, 693, 995, 6733, 3109, 8847, 2807, 6431, 7035, 7639, 8243, 4015, 8847, 3109, 391, 1901, 693, 3109, 391, 4619, 1297, 391, 2807, 2203, 5827, 1297, 7337, 4015, 1599, 8847, 995, 9149, 9753, 391, 3713, 4921, 6431, 5827, 391, 1599, 4317, 2203, 7941, 391, 89, 1297, 5223, 4317, 391, 2807, 4921, 3109, 8545, 5525, 1901, 9149, 7337, 7035, 8545, 7941, 2203, 6431, 3109, 4619, 6733, 7337, 89, 8243, 4015, 3411, 8243, 3713, 2807, 7337, 1599, 3109, 6431, 3713, 7035, 9753, 6431, 4015, 7941, 995, 8243, 3411, 3411, 4921, 8545, 5223, 1297, 6129, 8545, 4619, 2505, 5525, 4015, 4317, 7337, 1901, 8847, 7639, 5827, 6129, 7639, 1901, 6431, 7639, 6431, 9451, 1599, 1599, 2807, 4619, 2505, 8545, 995, 9753, 5827, 4619, 3713, 7337, 1901, 693, 3109, 693, 6431, 693, 8545, 1901, 5525, 391, 8545, 5223, 1901, 995, 7639, 2505, 995, 1901, 2505, 6431, 8243, 8545, 6129, 8545, 5223, 3713, 995, 1599, 391, 1599, 5223, 6129, 6431, 7639, 6129], [1297, 1901, 1901, 4619, 8243, 8545, 4619, 1599, 1901, 1297, 2505, 8847, 693, 7639, 995, 4317, 7639, 995, 7941, 1297, 1297, 1297, 3411, 3411, 8847, 9753, 1297, 8545, 391, 6129, 8243, 2203, 89, 1297, 1901, 4015, 7639, 1599, 1599, 7639, 4619, 7639, 3411, 1297, 8847, 4921, 2505, 5827, 6733, 2807, 3411, 6431, 7035, 2505, 3713, 1901, 5525, 4317, 6733, 8847, 1599, 8545, 89, 5827, 8243, 2203, 7337, 7337, 1901, 9149, 5827, 89, 3713, 5223, 391, 693, 5223, 7941, 7941, 8545, 3411, 5827, 4619, 5827, 3411, 7035, 6431, 4317, 89, 5525, 3411, 2203, 6431, 4317, 4921, 1599, 3713, 7035, 995, 9149, 4619, 3713, 9451, 4317, 8243, 693, 89, 4619, 3713, 2203, 4619, 5223, 3109, 5525, 995, 6129, 2203, 4921, 8243, 4619, 9753, 2505, 693, 7941, 8243, 89, 8847, 2203, 693, 6129, 3109, 4619, 9149, 5525, 4015, 2807, 8545, 9753, 89, 4619, 5525, 995, 3713, 2505, 8243, 4317, 3713, 8847, 9753, 7941, 3411, 4015, 7337, 2505, 391, 3713, 7337, 2203, 2807, 9753, 995, 89, 7035, 9149, 693, 6733, 1297, 2203, 4619, 9753, 8243, 89, 2807, 7035, 9451, 8243, 4619, 6431, 1297, 6431, 7639, 7639, 7941, 9149, 4921, 6733, 9149, 6129, 4317, 693, 5827, 89, 2203, 4921, 9753, 4921, 5827, 3109, 6129, 7035, 693, 89, 2807, 8545, 995, 4921, 8545, 2203, 3713, 7035, 7337, 89, 1901, 6431, 3713, 8847, 6431, 4921, 4015, 2807, 3411, 9753, 6129, 8545, 8545, 1901, 9451, 4619, 9149, 5525, 4921, 5525, 5827, 8243, 8243, 4619, 2505, 1901, 2203, 3713, 1901, 3411, 8847, 7941, 693, 1599, 7941, 1599, 2505, 89, 9753, 2807, 3411, 89, 3411, 8545, 7941, 9451, 4317, 4015, 2807, 8243, 4317, 391, 5525, 8545, 9149, 3411, 7337, 4015, 9753, 7035, 7035, 6129, 391, 3411, 5223, 2807, 4015, 6129, 7639, 9451, 3713, 7941, 995, 5525, 1297, 5223, 7941, 89, 3411, 6129, 9451, 2807, 5525, 7639, 89, 89, 8545, 7941, 4317, 9753, 3713, 7941, 2505, 3713, 3713, 5827, 8545, 5525, 9149, 4619, 7941, 391, 6431, 3411, 3411, 2505, 6733, 1901, 7035, 2203, 7035, 8847, 4921, 995, 1599, 4921, 1599, 2203, 5223, 7337, 7337, 2203, 7337, 693, 6431, 5525, 7941, 5525, 3109, 9451, 3411, 4317, 4015, 4921, 1297, 2203, 2807, 6431, 6431, 5223, 8847, 4619, 5223, 4015, 4015, 2203, 995, 4921, 6431, 8847, 4015, 3411, 9753, 7337, 693, 4015, 4921, 7941, 4015, 693, 8243, 6129, 5525, 5223, 8545, 693, 9753, 3411, 9451, 1901, 8847, 693, 4619, 7941, 7035, 7035, 8847, 8847, 1297, 7941, 2505, 1297, 4921, 3109, 4921, 391, 7941, 7337, 8545, 8243, 4619, 7941, 4317, 693, 3109, 6733, 6129, 6129, 4619, 4317, 693, 2807, 3411, 6733, 5827, 693, 8545, 8545, 1599, 9149, 9753, 4015, 7035, 8847, 9149, 391, 6129, 7337, 2203, 7941, 6129, 6733, 9149, 391, 8545, 7035, 391, 5827, 7941, 6733, 4015, 7639, 4619, 1297, 3411, 6733, 7337, 3713, 391, 7337, 3411, 3109, 8243, 7941, 5827, 4619, 3109, 8545, 5223, 7941, 4317, 2807, 995, 6129, 6733, 1599, 9451, 4317, 1901, 5525, 5827, 7941, 4015, 2807, 7035, 3109, 5827, 7941, 6129, 6129, 7941, 9753, 3411, 1901, 9149, 391, 7337, 4921, 2807, 8545, 2203, 2203, 2807, 6129, 6129, 4619, 8243, 7941, 7639, 7639], [6129, 9753, 6129, 1901, 4317, 1599, 693, 4015, 5827, 4015, 4317, 8847, 693, 3109, 2807, 8545, 693, 5223, 8545, 4317, 6129, 3109, 89, 3411, 995, 5223, 4921, 3411, 6733, 2505, 2203, 1297, 7337, 9753, 7337, 7639, 6431, 8545, 9451, 6431, 3411, 6431, 3109, 9753, 5223, 3411, 1599, 995, 2505, 3411, 6733, 4015, 995, 693, 7337, 8847, 7035, 4317, 4317, 7337, 9149, 6129, 1901, 1599, 6733, 89, 6431, 7639, 6431, 3713, 8545, 5827, 5223, 7639, 6733, 4921, 693, 3109, 5223, 7639, 3109, 3411, 4619, 89, 2807, 8545, 2807, 391, 8847, 1901, 3109, 3109, 8545, 5827, 7639, 7639, 391, 5223, 693, 4619, 7337, 7941, 3411, 2505, 995, 9451, 6129, 693, 2505, 4619, 5223, 8545, 7941, 7035, 6733, 3109, 7337, 7941, 4921, 1599, 7639, 9149, 2505, 995, 7337, 4921, 6129, 7941, 1901, 1901, 4015, 7035, 4921, 995, 4015, 6733, 2807, 2807, 2203, 6431, 4317, 5827, 995, 1297, 5525, 3713, 4921, 995, 995, 1297, 8847, 5827, 8243, 4317, 9149, 2505, 4317, 6129, 7941, 89, 6431, 9753, 7337, 7337, 9753, 7639, 3109, 9451, 5827, 4015, 6431, 7941, 6129, 4921, 7639, 6431, 4317, 6129, 8243, 7035, 8545, 5223, 1297, 2807, 693, 5223, 5223, 391, 5525, 7639, 8243, 391, 995, 9451, 9753, 9149, 6431, 2505, 2807, 3713, 7035, 5525, 1901, 9451, 2505, 2505, 3109, 6431, 6431, 2807, 9753, 6431, 9451, 391, 693, 7941, 9753, 5223, 3109, 4015, 7941, 7337, 2203, 2203, 2203, 4015, 2203, 7337, 4619, 7337, 5223, 9451, 6431, 4921, 4619, 4317, 8243, 4015, 8545, 6733, 5525, 9149, 4015, 4619, 6733, 2505, 1599, 2203, 7035, 391, 8545, 6431, 1901, 3411, 8243, 2505, 1901, 7337, 7941, 4921, 1901, 4015, 995, 9753, 995, 2807, 5525, 7337, 8243, 4317, 2807, 3713, 7337, 7639, 2505, 3713, 3713, 7941, 4015, 6733, 1599, 8847, 6431, 7941, 2807, 7035, 2203, 8243, 4921, 995, 391, 7639, 9451, 3411, 4619, 5827, 3109, 1297, 693, 2505, 6129, 3411, 2203, 9149, 6129, 7337, 3411, 391, 995, 6733, 9753, 7639, 1297, 6733, 7639, 89, 3713, 3109, 3713, 2203, 2807, 2505, 7337, 9149, 6431, 5827, 9451, 2807, 6431, 391, 4619, 4317, 693, 8847, 9451, 2807, 4317, 4317, 4619, 3109, 4619, 2505, 89, 2807, 3411, 89, 3109, 1901, 2505, 7639, 391, 4921, 4015, 1599, 1297, 4317, 4619, 7035, 7035, 5223, 2505, 7941, 9753, 9451, 5525, 2203, 8545, 9451, 6431, 7337, 5525, 1901, 89, 4921, 89, 5827, 7639, 4619, 7035, 7035, 3713, 4317, 9753, 3109, 2505, 1901, 2203, 7035, 693, 7639, 9753, 6733, 4921, 7639, 2203, 995, 4619, 5223, 391, 4015, 5827, 1599, 7941, 3713, 8847, 4317, 5525, 5525, 8847, 995, 2505, 391, 89, 3713, 8545, 4921, 9451, 3109, 693, 391, 6129, 7639, 8847, 6129, 1599, 6733, 6129, 89, 4317, 89, 995, 693, 6431, 9451, 7941, 7941, 5525, 391, 2505, 6129, 9753, 6129, 3109, 6431, 7337, 7941, 8545, 8243, 3109, 1901, 8243, 4619, 995, 8847, 6733, 6431, 4317, 5223, 2203, 6129, 5827, 1599, 1599, 5223, 1901, 89, 2505, 391, 4317, 6129, 5525, 1599, 2505, 5827, 6733, 7035, 1599, 2203, 2807, 9451, 2505, 7639, 4015, 2505, 4015, 8243, 9451, 5525, 9451, 5223, 2203, 9149, 4317, 5525, 1599, 1599, 9451, 7337, 7337, 3411, 1297, 1901], [8847, 3713, 5223, 391, 3411, 391, 7941, 693, 5223, 89, 4619, 5827, 6129, 6431, 2807, 2807, 5223, 3411, 2203, 3713, 3713, 1297, 7941, 2203, 5525, 6431, 1599, 7941, 89, 7337, 2505, 1901, 9451, 9149, 7639, 8847, 1901, 5827, 6733, 5525, 3411, 4317, 3411, 391, 1297, 1297, 7639, 995, 4921, 1901, 3713, 2807, 7941, 1901, 5827, 1901, 3411, 4317, 6129, 8847, 4015, 4921, 7639, 9149, 7639, 995, 693, 4317, 8847, 9451, 1297, 7337, 9451, 89, 6129, 5525, 4619, 8847, 8243, 995, 8545, 9149, 9451, 693, 9753, 5525, 1901, 4619, 6733, 3713, 3411, 1901, 3713, 6129, 8545, 4921, 4921, 4619, 2505, 9149, 6431, 2807, 2807, 2807, 1297, 8243, 3109, 3411, 2203, 3411, 693, 693, 4015, 693, 3713, 8847, 7941, 1599, 5525, 7035, 9149, 4921, 9149, 4921, 2203, 7639, 6733, 2807, 1599, 391, 1599, 9451, 8847, 6431, 7941, 8243, 9753, 391, 2203, 3713, 1599, 2203, 3411, 2505, 3109, 3411, 3109, 5223, 5525, 391, 2505, 2505, 8847, 9753, 4619, 1901, 89, 3713, 3713, 693, 2203, 6733, 5223, 4921, 391, 4015, 7337, 8545, 4921, 4921, 1599, 5223, 1901, 2505, 7035, 8545, 5827, 7941, 4015, 89, 8847, 8243, 6733, 2203, 2505, 6733, 9451, 693, 7035, 4619, 8847, 5827, 9753, 2203, 4015, 9753, 8847, 2807, 1599, 1297, 1599, 7941, 7035, 7337, 9753, 6129, 7035, 1297, 89, 8847, 4619, 7337, 7035, 4317, 391, 8847, 8545, 8847, 7639, 9753, 391, 8545, 7035, 3411, 9451, 3109, 6733, 6129, 3411, 5827, 7941, 6129, 5525, 5223, 995, 9149, 4015, 995, 5827, 9149, 2807, 7337, 5525, 2203, 6733, 7941, 7035, 7639, 2505, 8243, 8545, 693, 693, 5223, 8847, 7941, 8545, 7639, 2807, 9149, 4317, 7337, 4317, 1901, 6733, 7035, 7035, 5223, 5223, 5827, 4317, 6733, 7337, 1297, 693, 9149, 9149, 391, 1901, 4015, 4619, 5525, 1297, 8545, 9451, 4921, 6733, 5525, 6129, 7941, 391, 4921, 7941, 3109, 9451, 6733, 3109, 3713, 8847, 5827, 5525, 995, 2807, 6733, 6431, 7639, 3411, 1599, 7035, 2807, 6733, 5525, 6431, 8545, 9451, 9753, 693, 1599, 995, 9753, 4921, 9451, 2807, 3713, 4317, 1599, 89, 8545, 693, 7639, 9451, 8847, 9451, 5525, 1901, 7337, 3411, 1901, 6129, 4619, 89, 9149, 8847, 5827, 4921, 4015, 1297, 2505, 5525, 4015, 6129, 6431, 3109, 7941, 7337, 8243, 8847, 3109, 995, 4921, 6129, 3411, 2203, 4015, 9451, 995, 4619, 7337, 7337, 3713, 4921, 2203, 4921, 3411, 7639, 3109, 4619, 5525, 9753, 1599, 4015, 8545, 6431, 6431, 6129, 9753, 5827, 693, 89, 8545, 9753, 2505, 5827, 7035, 391, 1297, 995, 4317, 7035, 1599, 5525, 2505, 3109, 7639, 5827, 995, 2505, 2203, 3713, 9451, 995, 6431, 6129, 391, 8847, 693, 2505, 1297, 7941, 3109, 5827, 4619, 3411, 5525, 7639, 1901, 9451, 7035, 9753, 9451, 89, 391, 6733, 5827, 1297, 89, 1599, 1297, 6733, 8243, 4619, 8243, 7941, 8243, 9451, 5827, 6129, 5525, 9451, 391, 1297, 2807, 7035, 2505, 5525, 5525, 4317, 391, 2807, 391, 9753, 1901, 5525, 4921, 693, 4619, 8847, 995, 9451, 7337, 3109, 8545, 7941, 9753, 3109, 9451, 6733, 2203, 7035, 4015, 4015, 1599, 2203, 2807, 8545, 7337, 6431, 391, 5827, 2505, 7035, 693, 7035, 4619, 1599, 8847, 5223, 995, 4317, 3713, 5223, 7035], [4619, 995, 5827, 4921, 89, 4619, 1599, 2505, 7337, 9451, 6733, 6129, 1599, 3411, 2203, 4619, 2807, 8847, 4317, 8847, 9149, 7035, 9149, 6129, 5525, 391, 5827, 391, 6431, 9451, 4317, 5223, 6733, 4015, 391, 4015, 6733, 4015, 1901, 6733, 3109, 4015, 8545, 391, 4317, 4015, 9753, 4015, 4619, 2203, 391, 391, 89, 2505, 6431, 7337, 6431, 2505, 7639, 6733, 995, 89, 7337, 7035, 2203, 2807, 9753, 5223, 1599, 1599, 8545, 5827, 8545, 1901, 1901, 6733, 2203, 2505, 4619, 2807, 9451, 4921, 8847, 1599, 4317, 4015, 5525, 7035, 5525, 9149, 1901, 4921, 4619, 6129, 7035, 4015, 2807, 4015, 4921, 6431, 4619, 7035, 6733, 6431, 6733, 2203, 6431, 9149, 3109, 4317, 995, 7639, 7639, 1599, 8847, 5223, 6129, 9149, 6431, 2203, 8545, 391, 4921, 8847, 4317, 5525, 5827, 4317, 1901, 391, 1297, 6431, 3411, 693, 9753, 6431, 2203, 89, 1599, 5827, 8847, 9451, 6733, 7337, 3109, 4619, 6129, 3713, 2203, 9753, 4921, 7337, 6129, 2807, 5525, 5525, 7639, 9149, 3411, 7639, 3713, 4619, 6129, 5525, 1599, 1297, 1297, 693, 6129, 391, 8243, 8243, 2505, 2505, 7941, 4921, 7337, 1297, 4015, 3411, 8545, 9451, 6733, 89, 4921, 9149, 9753, 89, 8243, 5827, 3411, 391, 5827, 1599, 8847, 6431, 1901, 6431, 7941, 6733, 1297, 5223, 5525, 6431, 4619, 7337, 8243, 995, 8847, 7639, 693, 7035, 3109, 693, 4317, 3109, 9451, 2807, 6733, 4015, 5525, 5223, 9451, 9149, 693, 8243, 4015, 4619, 2203, 7337, 7941, 8847, 6431, 5525, 1297, 9753, 7941, 1599, 89, 5223, 7035, 391, 8243, 9451, 8545, 1901, 4317, 2505, 5525, 1901, 8847, 8243, 9451, 1901, 2203, 7941, 3109, 2203, 5223, 4317, 7035, 8545, 9451, 5525, 6733, 9753, 4619, 4921, 5525, 391, 3411, 7035, 7639, 995, 89, 4015, 7035, 7035, 9149, 7941, 3713, 8243, 1599, 7337, 9149, 8847, 5827, 6733, 7337, 3109, 1901, 9451, 2203, 2807, 8847, 5223, 5223, 2505, 4921, 1901, 8545, 8243, 4317, 5525, 9149, 4619, 2203, 4921, 8545, 4921, 1901, 4317, 2807, 5827, 8847, 89, 693, 4317, 7337, 3411, 995, 7337, 1297, 995, 2203, 7941, 995, 6733, 3411, 6431, 5827, 9753, 693, 6129, 4921, 4317, 693, 9149, 6733, 1297, 1901, 1599, 693, 7337, 2807, 2203, 391, 8847, 693, 8545, 5223, 4921, 6129, 1901, 391, 2505, 5223, 3411, 8847, 5223, 4619, 1599, 4015, 1599, 7941, 8243, 391, 6431, 3109, 5827, 7639, 7639, 7337, 6733, 1901, 7337, 5223, 4015, 5525, 9451, 8847, 9149, 2505, 2203, 4619, 9451, 1297, 5827, 4619, 9753, 9149, 693, 2807, 6129, 3109, 2505, 693, 2203, 7639, 6733, 4015, 391, 693, 693, 5525, 7337, 8243, 7035, 5525, 693, 8847, 3713, 4921, 6129, 693, 8243, 4619, 8847, 391, 4015, 5525, 391, 5223, 9753, 4921, 3411, 3411, 9451, 6733, 9451, 693, 1297, 3109, 1901, 6129, 1901, 4619, 4921, 5223, 1297, 3411, 6733, 6431, 1599, 9753, 391, 6733, 5223, 4921, 3411, 8847, 391, 89, 5827, 5223, 6733, 3713, 8243, 9149, 6733, 1297, 6431, 8243, 6431, 4921, 7639, 3713, 7941, 6431, 7337, 995, 9451, 6431, 9451, 89, 8545, 995, 391, 7941, 89, 3411, 6129, 4619, 3411, 6129, 8243, 8847, 2203, 1297, 1599, 1297, 2807, 3411, 8847, 6733, 7941, 5827, 4619, 1297, 8847, 9451, 3109], [4317, 4317, 6733, 9753, 1297, 6431, 2807, 995, 4317, 7035, 4921, 1901, 1297, 8545, 4921, 9149, 5827, 7035, 7035, 391, 3713, 7639, 4317, 693, 2203, 1901, 7639, 6733, 995, 4921, 2505, 4921, 693, 5223, 7941, 7337, 7639, 2505, 2807, 9753, 4015, 8847, 4015, 7639, 9753, 4921, 5525, 4015, 1297, 5223, 4015, 5525, 1297, 1599, 8545, 5525, 6129, 5525, 5827, 6129, 1599, 4921, 4619, 6129, 8243, 89, 5827, 7337, 8847, 4015, 1901, 1297, 7941, 693, 995, 4619, 6431, 4921, 6431, 8847, 7639, 8847, 4317, 5525, 1901, 3713, 6129, 2505, 7639, 2505, 9451, 5525, 1599, 4921, 4921, 9753, 1599, 7035, 4015, 4015, 995, 7941, 4015, 5223, 2807, 6129, 6129, 6431, 8847, 693, 995, 9753, 995, 1901, 9451, 7035, 7035, 9451, 7941, 3713, 4015, 5525, 6431, 6733, 4619, 4921, 6431, 1901, 1599, 693, 9753, 9451, 2807, 4317, 4015, 7337, 3109, 1901, 4619, 391, 3713, 3109, 9451, 8243, 5525, 3713, 8243, 1599, 693, 4921, 4921, 7337, 4015, 7941, 9753, 4921, 391, 9753, 89, 9451, 4015, 8545, 1901, 693, 693, 6129, 9149, 391, 7035, 7337, 8243, 4921, 1599, 7639, 5525, 5827, 4015, 4317, 2807, 2505, 1297, 8243, 3411, 6431, 1901, 4619, 1901, 5827, 995, 6431, 7941, 7337, 3411, 3411, 6733, 7941, 6431, 9149, 1901, 2505, 8243, 3713, 5223, 7941, 8847, 8243, 2203, 6431, 7035, 2807, 8847, 3109, 5525, 9451, 1599, 2203, 4921, 3713, 3713, 693, 4317, 89, 7941, 8243, 4921, 8545, 3411, 2203, 89, 1599, 4921, 3411, 4619, 391, 3411, 89, 5827, 1599, 7639, 7941, 4921, 391, 5525, 2203, 2203, 4619, 5525, 9753, 7639, 8847, 6431, 8545, 9149, 5223, 4619, 3713, 5525, 7639, 4619, 7035, 9451, 2203, 3713, 6733, 7941, 6129, 2203, 3109, 4317, 1297, 4015, 5827, 89, 8847, 3109, 4921, 89, 5525, 4317, 2807, 4317, 8847, 3411, 7035, 9753, 6431, 4015, 9149, 7941, 1901, 8243, 4015, 2807, 4317, 693, 4015, 8545, 9753, 4619, 4921, 1901, 1599, 7337, 3713, 4015, 4317, 4921, 9149, 693, 89, 8243, 4015, 8847, 1599, 3109, 9753, 5223, 391, 2807, 1297, 8545, 391, 1599, 6431, 6431, 4317, 8243, 391, 89, 5525, 8243, 995, 6431, 3411, 9149, 4921, 7035, 2505, 4921, 3109, 3713, 9149, 995, 6733, 2807, 8545, 3713, 8847, 4619, 5827, 5525, 6129, 3713, 8847, 693, 7337, 8243, 693, 2505, 391, 5525, 7639, 9149, 1297, 693, 995, 3713, 4015, 9451, 2807, 2505, 6431, 693, 4015, 7639, 7941, 9451, 995, 1297, 8545, 4015, 1901, 7639, 5223, 995, 4015, 6733, 2807, 3411, 3109, 1901, 4317, 1901, 8847, 995, 1297, 8847, 391, 6733, 7639, 9753, 6129, 1901, 5525, 9753, 1297, 9149, 9451, 693, 4015, 7639, 9149, 3713, 693, 693, 9753, 1297, 5223, 9149, 3109, 3411, 8545, 7337, 89, 7035, 5525, 89, 995, 4921, 7035, 4921, 3109, 5827, 1599, 5525, 5223, 1901, 2203, 5223, 2505, 8243, 6129, 6431, 9149, 7941, 9149, 4015, 3713, 995, 9451, 7941, 5525, 5223, 89, 5827, 9753, 4619, 3411, 7941, 6431, 4015, 995, 89, 4619, 6733, 9753, 8545, 7035, 8243, 4317, 1599, 1297, 693, 1901, 5223, 2203, 6733, 9149, 6129, 6129, 6733, 8847, 1297, 7337, 6431, 3713, 2505, 3411, 89, 5525, 4619, 7337, 5827, 7337, 7941, 5223, 391, 7941, 5525, 6733, 8545, 9149], [2505, 3713, 1599, 7941, 2505, 7035, 89, 6733, 693, 391, 1599, 4921, 5827, 995, 9149, 89, 2203, 4921, 5223, 1297, 3411, 1599, 4619, 4015, 693, 9149, 5827, 5827, 4619, 9149, 995, 7941, 7941, 9149, 3411, 4921, 8545, 7337, 2505, 4921, 391, 2203, 1901, 391, 8847, 8847, 4015, 391, 4015, 7337, 1599, 5827, 89, 4619, 7337, 391, 5525, 693, 89, 9149, 2807, 4921, 6129, 9753, 6129, 391, 2203, 5223, 8243, 2807, 391, 9149, 693, 6431, 2807, 1901, 3109, 6733, 7035, 693, 2505, 2505, 4921, 8545, 1599, 4317, 2505, 7941, 7035, 2505, 4921, 5827, 391, 2505, 7035, 5525, 89, 4015, 6129, 6129, 2505, 4015, 89, 5223, 7035, 5525, 3411, 89, 9753, 3411, 9753, 3713, 1297, 6733, 1599, 7941, 9451, 4921, 1297, 2203, 8545, 3713, 8243, 1599, 693, 2505, 4317, 1901, 9149, 5223, 7035, 3411, 6431, 8847, 2807, 9753, 9451, 4317, 9451, 3109, 6129, 4317, 3713, 2807, 2505, 8847, 89, 3109, 1599, 9149, 5525, 5525, 7639, 4619, 8847, 6431, 3109, 89, 1297, 6129, 7639, 4015, 5223, 9753, 89, 995, 1297, 7941, 7941, 1297, 8243, 5827, 693, 1901, 8545, 2203, 5223, 5223, 6733, 4015, 9753, 8847, 8847, 9451, 6431, 6129, 2505, 9149, 1599, 2203, 9149, 7941, 6431, 4317, 7941, 4619, 6431, 9753, 7941, 4921, 8847, 1599, 6431, 3713, 391, 8847, 6733, 7941, 1599, 693, 6129, 3411, 391, 2807, 8243, 2203, 9149, 9149, 4921, 3713, 4317, 3411, 89, 4619, 6129, 391, 5223, 3109, 4015, 6733, 693, 3713, 5223, 3411, 693, 3109, 7639, 1901, 2807, 4921, 6733, 8847, 7337, 995, 8545, 8545, 2807, 8545, 1901, 89, 693, 1297, 4921, 7337, 5827, 7639, 4317, 7639, 6129, 8545, 4015, 3411, 2505, 5525, 8847, 6431, 1599, 4317, 2505, 1901, 9451, 3411, 1599, 9149, 4619, 693, 4921, 1599, 6431, 9753, 5827, 8847, 9451, 4921, 7337, 6129, 6431, 1901, 8243, 4619, 3713, 2807, 2203, 7035, 7035, 5223, 8243, 8243, 6733, 4619, 4317, 1901, 6129, 2203, 3109, 3109, 4921, 7941, 7035, 7639, 6431, 9753, 9753, 2807, 2807, 2203, 7035, 8243, 8243, 3713, 5223, 7337, 2505, 995, 7639, 9149, 995, 3713, 6733, 6129, 3411, 3713, 8243, 6129, 6733, 5827, 89, 693, 89, 3713, 1901, 8545, 5827, 2505, 3411, 2203, 6129, 7941, 2203, 4317, 693, 5827, 7941, 4619, 5525, 3713, 2505, 3411, 89, 5827, 6431, 5525, 7639, 8243, 4921, 693, 9753, 693, 2203, 5525, 3109, 3411, 5525, 3713, 9451, 4015, 1297, 3713, 995, 7035, 8243, 8243, 3713, 2505, 4317, 1599, 6733, 4921, 5827, 6129, 3713, 2203, 6431, 1901, 2203, 6431, 3109, 3713, 6431, 9149, 693, 7941, 8243, 5223, 9753, 6733, 4317, 4317, 693, 995, 3411, 2203, 3713, 1297, 8847, 693, 1901, 5525, 1297, 9451, 2505, 1297, 7035, 6431, 3713, 693, 7337, 1297, 9753, 5525, 7941, 3713, 4015, 5525, 2505, 7941, 5223, 3713, 2807, 7639, 1901, 5827, 1901, 9451, 4921, 4921, 8545, 3411, 4921, 6733, 89, 2505, 8847, 2807, 1901, 4015, 4619, 4921, 5525, 391, 7639, 4317, 9451, 2203, 3109, 9149, 3411, 9149, 4619, 4921, 5525, 3713, 6431, 391, 9149, 4015, 5827, 3411, 8847, 89, 5827, 6431, 7035, 1901, 3109, 5827, 693, 1297, 2505, 89, 6129, 2203, 3411, 4317, 4317, 2807, 1297, 3411, 9149, 4317, 7035, 9753], [4619, 995, 8243, 4015, 3713, 89, 9451, 2505, 8243, 2203, 7035, 7035, 89, 6129, 2203, 4921, 9451, 6431, 7337, 4015, 693, 1599, 6129, 3713, 2203, 7941, 1599, 7941, 1901, 8545, 2807, 5223, 2807, 6733, 5827, 4317, 995, 693, 7941, 7035, 89, 7941, 693, 8847, 1297, 2203, 1297, 5525, 2203, 995, 6733, 8243, 9451, 4921, 1297, 7941, 3411, 3411, 9149, 3109, 9753, 6733, 4317, 2203, 7035, 2203, 4015, 1599, 2505, 3109, 4015, 4317, 89, 7035, 7639, 1297, 4015, 4317, 2505, 1297, 7035, 995, 1297, 3713, 89, 7035, 7639, 89, 3713, 6431, 3109, 9451, 9149, 1599, 6733, 995, 7941, 7941, 9753, 391, 6129, 6129, 4015, 9149, 6129, 4921, 4317, 2203, 3411, 8847, 6431, 2505, 7941, 5223, 8545, 1599, 89, 6129, 1901, 4619, 7639, 7639, 693, 4317, 1901, 391, 3411, 4015, 6431, 4619, 5827, 9753, 3109, 1599, 89, 9149, 2807, 2807, 7337, 8545, 1297, 9451, 6129, 5525, 3109, 2505, 7639, 6733, 89, 6129, 3411, 4921, 2203, 2505, 7337, 6129, 5223, 1297, 4619, 9753, 3713, 9451, 3109, 3411, 2505, 9149, 9451, 5223, 8847, 1297, 693, 2807, 391, 3411, 1297, 2505, 7035, 7337, 7035, 5827, 9149, 8243, 8243, 5525, 6431, 8847, 391, 5827, 6431, 4015, 1901, 4015, 6733, 1297, 8545, 5827, 8243, 8545, 2505, 8243, 3109, 2203, 8847, 3109, 6129, 3411, 3109, 2203, 3109, 391, 2505, 8243, 6129, 2505, 7337, 4619, 7035, 5223, 2807, 5223, 1901, 2505, 995, 5223, 9149, 3109, 6431, 1901, 3411, 7639, 7639, 5525, 1901, 89, 7941, 4015, 4619, 4921, 995, 3713, 5223, 1599, 1297, 4015, 2807, 4015, 8243, 4015, 9149, 6431, 1599, 4921, 4619, 9149, 9753, 1599, 7035, 4317, 2505, 9149, 4921, 1599, 5827, 7337, 8243, 8847, 1297, 9451, 9149, 8847, 391, 9753, 7941, 7035, 1901, 89, 7639, 391, 4015, 5223, 4317, 3109, 1901, 995, 1901, 1599, 5827, 1297, 2807, 6129, 5525, 4015, 2807, 3713, 8243, 1297, 6733, 5827, 8847, 89, 995, 6431, 4015, 3411, 6733, 8847, 995, 6733, 7941, 1599, 5827, 89, 5223, 7639, 7941, 2807, 2505, 8545, 7337, 6733, 8243, 4619, 8545, 693, 1599, 9451, 9753, 6129, 89, 7639, 995, 8847, 3713, 693, 3109, 7639, 5223, 6733, 2505, 6129, 7941, 2203, 6129, 693, 693, 89, 5525, 89, 1297, 6129, 9149, 9451, 7639, 8847, 7035, 8847, 2505, 693, 1599, 2807, 4921, 7639, 3109, 693, 4619, 2505, 5223, 4921, 391, 8545, 4015, 4921, 7639, 7941, 4619, 6733, 1599, 8243, 6129, 9451, 1599, 8545, 9753, 89, 5223, 89, 9149, 6431, 9451, 8847, 693, 3411, 5223, 995, 1297, 1297, 7337, 1901, 3109, 9149, 1901, 5223, 89, 8545, 6733, 7639, 9753, 89, 7035, 391, 391, 3411, 5525, 391, 2505, 5223, 693, 995, 2505, 6431, 9753, 3109, 1901, 2203, 8847, 391, 4015, 5525, 6129, 7941, 7035, 9753, 2807, 7337, 6431, 7337, 5525, 8847, 6733, 7035, 1599, 9451, 8243, 6129, 5827, 4015, 5525, 8847, 693, 8545, 7035, 8545, 5525, 7337, 391, 3411, 995, 6733, 2203, 995, 9753, 6129, 2807, 5827, 6733, 8545, 1297, 693, 7035, 3411, 693, 9451, 5827, 6129, 5223, 1599, 5223, 5827, 7639, 4921, 5223, 4921, 8545, 4015, 4317, 2807, 1297, 7035, 9149, 5223, 7941, 3109, 3109, 391, 2505, 3713, 4619, 693, 2807, 4921, 9451, 4921], [2203, 4015, 3713, 1901, 3713, 3411, 6733, 7035, 89, 89, 7035, 8847, 4921, 995, 4619, 4619, 7941, 3713, 4015, 7941, 6733, 9451, 6129, 8243, 3713, 2505, 2505, 4921, 6733, 9753, 4619, 7941, 8243, 9149, 3109, 2203, 7337, 391, 3411, 8545, 3109, 1599, 89, 9753, 995, 8545, 995, 7639, 693, 8545, 3411, 7337, 3411, 8243, 1599, 693, 7941, 693, 8243, 1901, 5223, 1901, 7035, 3411, 7941, 1599, 9451, 4015, 89, 995, 6733, 7337, 89, 391, 6129, 7337, 8243, 391, 6129, 89, 2505, 6129, 8243, 7941, 5827, 6129, 6431, 6431, 89, 3109, 7941, 4317, 9149, 8847, 1901, 7639, 6733, 995, 1901, 1901, 1599, 7035, 3411, 5525, 9149, 8545, 391, 391, 693, 4921, 995, 7035, 1599, 2807, 4317, 9149, 7639, 2807, 693, 7337, 9451, 3411, 1297, 5525, 1901, 8243, 6129, 4015, 8243, 5223, 9149, 391, 1901, 7639, 8243, 5525, 3713, 7941, 7639, 9451, 4317, 4619, 1901, 6733, 693, 1599, 6431, 9149, 4015, 2807, 7941, 1901, 5827, 2505, 2505, 3109, 5827, 3713, 6431, 6431, 7337, 89, 8243, 9451, 8545, 4015, 8243, 7639, 3713, 4921, 1297, 9149, 7337, 6431, 4317, 693, 7639, 2203, 2505, 2505, 7337, 995, 2807, 7337, 8847, 4619, 2505, 4015, 8545, 6431, 6431, 4015, 5827, 1901, 2505, 4921, 2505, 3713, 7035, 391, 6733, 5223, 3713, 9149, 89, 4015, 3109, 3411, 9149, 3411, 6129, 4317, 7337, 4921, 8243, 693, 3109, 9451, 995, 4015, 1901, 9753, 6431, 2203, 8545, 6129, 2807, 5525, 8243, 5525, 693, 391, 3109, 3713, 1599, 4317, 7941, 6129, 6129, 4015, 6129, 8847, 3109, 4317, 4015, 7941, 693, 1297, 89, 9149, 6129, 6733, 8847, 7941, 2807, 9149, 5223, 4015, 5525, 693, 8847, 9451, 9149, 1599, 4317, 1297, 7337, 6129, 89, 4015, 7639, 8545, 4317, 8243, 4921, 9753, 4921, 4015, 9753, 9451, 6431, 8847, 7639, 3713, 9753, 4619, 8243, 1599, 89, 9753, 6431, 8545, 3109, 7941, 8545, 7035, 4619, 6129, 3109, 2203, 89, 7035, 2807, 1297, 9149, 6733, 1599, 9753, 6733, 8243, 2203, 4619, 3411, 8243, 8243, 3109, 9753, 4921, 9149, 7941, 8847, 2505, 1901, 1599, 4619, 7941, 3411, 2807, 1599, 1901, 4317, 5827, 4619, 2203, 995, 8243, 3713, 89, 7035, 4619, 1599, 9149, 391, 4317, 5827, 6733, 9149, 995, 693, 2807, 7941, 5525, 4317, 9149, 2203, 8847, 7941, 6431, 6733, 2203, 7941, 7035, 9451, 1599, 4317, 391, 2807, 4317, 1297, 1599, 4921, 9753, 5827, 4317, 1901, 3411, 5827, 2807, 1901, 2807, 2505, 89, 6431, 6431, 1901, 8545, 2807, 8545, 693, 9451, 5525, 391, 6733, 6129, 7035, 89, 2203, 2203, 7941, 8243, 2203, 6129, 5827, 7035, 89, 391, 8243, 1599, 7941, 6431, 2203, 4015, 9451, 8545, 4619, 995, 7941, 6129, 4015, 7941, 6431, 7337, 6733, 4015, 2203, 7941, 995, 4317, 89, 7639, 5223, 8545, 3411, 5223, 693, 4015, 3109, 4921, 6431, 9753, 7337, 8545, 7337, 7639, 8545, 2505, 3411, 6733, 2203, 6129, 3713, 4317, 9753, 8243, 5223, 7337, 7337, 9451, 693, 1599, 6733, 4317, 2203, 2203, 391, 9149, 4619, 5827, 693, 8545, 1901, 8243, 8847, 4619, 693, 8545, 7035, 9149, 9149, 3411, 6431, 9753, 7639, 9451, 4619, 4921, 7035, 1901, 3713, 4015, 7639, 6733, 8243, 7035, 995, 3109, 5223, 2505, 995, 8243, 9451, 3713], [5827, 693, 2203, 2505, 4619, 8847, 6129, 8243, 4619, 1297, 5223, 4921, 6431, 3109, 9753, 7337, 5223, 3713, 7639, 1901, 8847, 1599, 4317, 9451, 9753, 995, 9753, 5223, 8847, 391, 5827, 391, 7941, 3411, 9753, 3109, 89, 4619, 7639, 6129, 8243, 391, 2203, 3109, 1599, 1901, 4015, 6431, 89, 1599, 6431, 7941, 9753, 6431, 3713, 7941, 1901, 9451, 9753, 4015, 3713, 2505, 4921, 4317, 7639, 8545, 4921, 7337, 3411, 9753, 1599, 7337, 89, 8847, 7639, 5525, 3411, 9451, 8545, 5525, 9753, 4921, 6431, 7035, 5525, 4015, 8243, 995, 1297, 6431, 4619, 8847, 2505, 7639, 8545, 4921, 2505, 9149, 7941, 8545, 4619, 1599, 693, 8847, 7035, 2505, 1599, 3713, 8847, 7337, 7639, 6129, 6129, 9451, 8545, 8243, 6431, 1297, 8243, 995, 4317, 3109, 3713, 4619, 6431, 3713, 9753, 9149, 3411, 2807, 6431, 4317, 1599, 1901, 2203, 2203, 4317, 1901, 6431, 6129, 4317, 5223, 6431, 6431, 8545, 9753, 6431, 5525, 4619, 5827, 9753, 8243, 9451, 693, 4921, 7337, 2203, 3109, 89, 8847, 4921, 9149, 4015, 2203, 8545, 5827, 4015, 7941, 2807, 7035, 4921, 9149, 4317, 4619, 2807, 9149, 4921, 6733, 6431, 4015, 6733, 1901, 2807, 693, 4921, 7639, 4921, 8545, 1901, 1297, 5827, 9451, 4921, 8847, 4317, 1297, 693, 5827, 8545, 1901, 8243, 6129, 4921, 7639, 89, 2505, 4921, 4317, 4015, 7941, 7941, 5223, 1599, 693, 7337, 3109, 6431, 9753, 9753, 1901, 89, 3109, 7337, 89, 6431, 5223, 8243, 4921, 7337, 8847, 9149, 9451, 7337, 995, 5525, 1297, 7035, 1901, 5223, 7337, 8847, 3411, 6129, 1297, 4921, 8545, 6431, 9451, 2505, 2203, 1901, 9149, 8545, 7035, 6733, 3713, 2203, 5223, 1599, 6129, 8243, 3713, 4015, 3109, 5223, 7035, 4921, 3411, 8243, 3411, 391, 7941, 995, 3713, 6129, 9753, 4619, 391, 9753, 1297, 1297, 7941, 9753, 3411, 7035, 995, 5827, 7035, 8545, 9149, 7035, 5223, 8545, 9451, 6129, 391, 391, 4619, 6431, 7639, 3713, 4317, 693, 3109, 8545, 1901, 1599, 8545, 4015, 4921, 3713, 89, 8243, 2505, 6431, 9149, 6733, 6431, 5525, 5525, 7941, 1599, 6733, 9451, 4317, 2807, 693, 4015, 693, 3713, 4317, 2807, 1901, 2505, 7941, 1599, 89, 8847, 3411, 1599, 7337, 8847, 5827, 7035, 2807, 7035, 4619, 7941, 89, 995, 5827, 7337, 1901, 1599, 995, 2203, 2203, 7639, 5525, 4619, 7337, 4317, 4015, 1901, 3411, 8545, 9149, 8243, 2807, 6431, 7337, 7035, 6431, 2505, 7639, 391, 8545, 7639, 4619, 3411, 8545, 9149, 4619, 4015, 7941, 4317, 9753, 2807, 7941, 3713, 5525, 2203, 8243, 4619, 5827, 6733, 2505, 6431, 9753, 9149, 8847, 9149, 8847, 8545, 7035, 7639, 7337, 6431, 3713, 4921, 4619, 3109, 1599, 391, 5525, 8545, 4921, 693, 6129, 995, 5223, 391, 2203, 693, 8243, 4619, 4921, 2505, 4015, 2505, 9149, 1599, 1599, 2807, 8847, 693, 9753, 4921, 4921, 693, 2203, 693, 8545, 4921, 5525, 9753, 9149, 1599, 9753, 9451, 7035, 3411, 2807, 4317, 6129, 5525, 693, 2505, 6733, 8847, 4921, 5827, 8243, 6733, 6129, 7337, 3713, 7035, 7639, 8545, 1297, 1599, 9451, 2203, 995, 2203, 1599, 9753, 9149, 7941, 4921, 1599, 7035, 1599, 9753, 2807, 1901, 2807, 5223, 8243, 2807, 8545, 1901, 1599, 693, 5223, 1297, 6431, 8243, 6129, 9451, 6431], [8545, 7639, 7941, 1901, 7941, 4921, 7941, 5827, 3109, 9753, 1297, 3109, 995, 7941, 7337, 7639, 4921, 7941, 5223, 2807, 9451, 4015, 693, 3411, 9451, 5223, 2203, 4921, 8545, 9149, 7035, 6129, 6733, 5223, 9753, 3713, 8545, 6129, 8847, 1297, 5223, 6733, 995, 9451, 7035, 3411, 5525, 2505, 4317, 1901, 4015, 4317, 3713, 6431, 2203, 6129, 9149, 9451, 3109, 4317, 693, 7337, 3713, 7639, 693, 3713, 391, 7337, 2505, 7035, 1599, 5525, 7337, 1297, 995, 4317, 5827, 6733, 7035, 4317, 4921, 2505, 8243, 1599, 8847, 89, 8243, 8545, 1297, 4619, 3713, 3411, 1297, 1901, 6129, 5223, 9753, 693, 2203, 7639, 6733, 3713, 7639, 3109, 6129, 7941, 1297, 5525, 1297, 9753, 5827, 3411, 2203, 1901, 4921, 1599, 7337, 1599, 995, 4317, 1599, 1901, 1901, 8545, 5223, 391, 2505, 995, 9149, 6733, 693, 8243, 5827, 9149, 1297, 5525, 2505, 4921, 1297, 2807, 1901, 4015, 6129, 391, 9753, 6733, 5223, 4015, 2203, 1901, 1901, 89, 1297, 6129, 8847, 1599, 9451, 4015, 9149, 9451, 7035, 3109, 6129, 6733, 8847, 4619, 2807, 2505, 1297, 6733, 1901, 1297, 7337, 9149, 2807, 7639, 8545, 8847, 4921, 3411, 693, 5223, 4921, 1599, 3109, 9149, 5525, 6431, 9451, 2505, 693, 4317, 9149, 5827, 3713, 9753, 2203, 4921, 3713, 9753, 4619, 5827, 7639, 1297, 6431, 7035, 6129, 6129, 1599, 391, 7941, 2505, 8847, 995, 89, 1901, 89, 2807, 8243, 7639, 2807, 89, 1297, 2807, 4317, 4921, 693, 8545, 9753, 9149, 89, 4317, 2505, 1901, 2505, 9451, 5223, 4015, 693, 5525, 6129, 4317, 5827, 1297, 2807, 4921, 391, 4619, 1901, 6129, 693, 9451, 3713, 4015, 7941, 3713, 2203, 7941, 3713, 6129, 6431, 7941, 7941, 5223, 8243, 1901, 2807, 8243, 4619, 1297, 7941, 995, 5525, 5223, 6129, 9753, 3109, 4317, 2807, 1297, 3109, 6129, 9149, 4015, 8847, 3713, 5827, 3713, 5223, 995, 7639, 7941, 3411, 89, 4015, 7035, 9753, 2505, 3411, 1297, 391, 6129, 89, 8847, 2505, 4015, 6733, 9149, 8545, 7337, 4317, 5525, 5827, 1599, 995, 4015, 2807, 89, 7941, 89, 391, 4015, 7035, 4015, 1901, 7639, 4921, 4317, 7941, 391, 4619, 3411, 4619, 6431, 1599, 2203, 9149, 3109, 9451, 4921, 6431, 693, 7337, 89, 995, 89, 2505, 7639, 4619, 5525, 89, 6733, 89, 9753, 6431, 3713, 1297, 7941, 4317, 7639, 4317, 4619, 3411, 4619, 9149, 3411, 6733, 693, 2203, 5223, 693, 2505, 995, 9451, 7035, 9753, 2203, 995, 2807, 7337, 9451, 693, 995, 7941, 7941, 8847, 4015, 9451, 1297, 1297, 7639, 4619, 4317, 4921, 8545, 4015, 4015, 8545, 3713, 7337, 391, 391, 3713, 89, 3411, 3411, 9149, 4921, 3713, 6733, 4619, 1901, 6431, 1297, 2807, 2505, 1297, 9149, 9149, 4619, 5525, 4921, 3713, 4015, 2505, 1297, 9451, 5223, 5525, 8243, 7035, 6129, 2807, 89, 2203, 1297, 8545, 7639, 3411, 8545, 7941, 1901, 5525, 5223, 4619, 4921, 9451, 4619, 5827, 9753, 3109, 89, 6431, 7035, 7639, 3713, 6733, 4921, 1599, 3109, 1599, 8545, 7035, 1297, 2505, 7941, 8243, 2203, 4015, 4317, 1297, 8847, 4015, 693, 2807, 1901, 8243, 3411, 5827, 7639, 2505, 3109, 4921, 1901, 6129, 3713, 3411, 4015, 89, 4317, 9451, 3109, 7035, 6431, 8243, 1599, 7035, 8545, 391, 5223, 3411, 7337], [5827, 4015, 5827, 2505, 8847, 5525, 995, 3109, 2203, 693, 4619, 4921, 3411, 8847, 391, 3411, 7337, 1599, 2505, 7337, 2807, 5525, 5827, 5827, 4921, 391, 2203, 5223, 6431, 4015, 89, 9753, 4015, 391, 391, 8545, 7941, 4015, 4015, 6431, 5827, 693, 693, 5827, 1901, 4921, 7337, 5827, 9753, 5827, 3713, 7941, 8847, 3713, 3713, 9149, 6129, 4015, 89, 9451, 4619, 7941, 5525, 4015, 9451, 5827, 9149, 7337, 4619, 9149, 9149, 3713, 8847, 4619, 2203, 7337, 9753, 1297, 4317, 4619, 9149, 5827, 9149, 8243, 7941, 2505, 89, 89, 3109, 1297, 9753, 3411, 9753, 4317, 1599, 89, 5827, 1901, 4317, 3109, 5525, 9451, 391, 3713, 89, 4015, 693, 5223, 1297, 3713, 8545, 7941, 6431, 4317, 995, 693, 995, 391, 6129, 7941, 4015, 6733, 1599, 3713, 9451, 9451, 3411, 7035, 1599, 6431, 5827, 7035, 9451, 9149, 6431, 8545, 693, 5525, 2203, 4015, 2807, 693, 6431, 3411, 9451, 4619, 4619, 89, 7337, 8545, 9451, 5525, 9451, 8243, 9753, 5827, 3411, 8243, 6733, 5223, 3411, 3411, 5827, 995, 5525, 4619, 7941, 3411, 5525, 8847, 5827, 7639, 8847, 8545, 8847, 9451, 1901, 8847, 2505, 995, 2807, 6431, 4317, 4317, 8847, 7639, 3713, 2203, 4317, 7639, 7337, 693, 391, 7337, 9753, 7639, 5223, 995, 7035, 8545, 8847, 6129, 2203, 1901, 9149, 2203, 1599, 6733, 5827, 9753, 89, 5827, 995, 6129, 4921, 391, 8243, 9451, 7639, 1297, 7941, 9451, 5223, 6129, 9753, 6129, 6733, 2505, 8243, 4921, 5223, 9451, 2807, 3713, 3411, 3411, 4015, 7035, 2807, 7639, 9149, 7941, 89, 5525, 391, 693, 3411, 995, 2807, 7639, 8243, 7337, 5223, 391, 3713, 9753, 2505, 995, 4317, 4921, 5223, 7639, 4921, 7639, 1901, 4921, 2203, 4317, 8243, 391, 9451, 9451, 8545, 6431, 9753, 6431, 8545, 89, 9753, 6431, 7035, 4317, 2203, 9451, 6431, 7337, 5525, 3109, 7941, 4317, 7941, 6733, 2505, 4921, 6733, 3411, 8545, 7639, 6733, 9451, 3411, 4921, 4619, 8847, 4619, 9451, 8847, 391, 6733, 7941, 1901, 3109, 9753, 2203, 4317, 8243, 7639, 9451, 3411, 8847, 89, 5223, 4015, 7639, 9149, 6431, 5223, 2505, 8243, 8243, 9149, 1297, 1599, 2203, 8847, 6733, 8545, 8243, 6431, 5827, 995, 4015, 89, 9753, 4921, 4921, 3109, 9451, 6129, 4619, 4921, 4619, 4015, 5525, 9451, 8243, 4317, 6129, 8545, 1297, 6129, 1599, 5223, 6733, 6431, 3713, 9753, 4317, 1901, 1599, 3713, 1297, 4317, 89, 2203, 2203, 2807, 5827, 7035, 1297, 391, 6129, 6733, 5827, 9753, 5223, 4015, 7337, 6129, 391, 3713, 4619, 5525, 9451, 8545, 5827, 6733, 2203, 5223, 2505, 5525, 5525, 7035, 9149, 2203, 8847, 6733, 3109, 8545, 9149, 3411, 7035, 4921, 7941, 7639, 1599, 4015, 3713, 4317, 8243, 7639, 7035, 8545, 995, 9753, 1901, 6431, 391, 6431, 5525, 3109, 1901, 1901, 9753, 4921, 1599, 3109, 391, 7035, 9753, 5525, 5223, 5827, 3713, 7941, 5525, 9451, 9149, 5827, 3713, 89, 3109, 3109, 9753, 7941, 2505, 9149, 9451, 5223, 693, 5223, 5223, 1599, 5525, 5827, 7941, 3713, 1599, 6431, 3713, 7941, 9753, 2807, 2505, 3411, 2505, 4921, 5525, 5827, 4015, 6129, 2807, 2203, 2505, 7941, 3713, 7639, 995, 4921, 9753, 4619, 5223, 7337, 995, 7941, 8545, 7035, 89, 5525, 2505, 2505, 4619], [391, 6129, 7035, 2807, 4619, 6733, 995, 9753, 9149, 89, 2807, 7941, 4015, 7639, 4921, 995, 9149, 9753, 8545, 7941, 5223, 8243, 1297, 9149, 391, 7941, 693, 1297, 7941, 6431, 7337, 693, 1297, 4317, 2505, 693, 7639, 9753, 7035, 7941, 5223, 8243, 693, 693, 3109, 7639, 2203, 7337, 9451, 391, 1297, 1297, 995, 1901, 7941, 7639, 3411, 5827, 391, 8243, 2807, 391, 5827, 6733, 5223, 391, 4317, 3109, 9451, 3109, 8847, 6733, 8847, 6733, 8545, 4317, 5223, 6733, 5223, 5827, 4619, 6129, 8847, 693, 693, 5827, 3411, 5827, 4921, 2807, 6733, 9753, 8243, 5525, 5223, 8243, 9149, 5827, 6431, 9149, 2203, 2203, 6431, 5827, 9753, 693, 7941, 8545, 6733, 7941, 3713, 4317, 6431, 693, 5223, 3109, 4317, 4921, 4619, 7639, 3713, 2505, 5827, 6129, 5223, 995, 8545, 9753, 6129, 5223, 2203, 9451, 9451, 391, 8847, 995, 3109, 693, 1901, 5223, 3109, 5223, 1599, 4015, 7337, 5525, 3713, 8847, 89, 3411, 1599, 4619, 4015, 3713, 1599, 7941, 693, 1599, 3713, 3713, 7639, 5827, 8847, 4015, 9149, 391, 693, 1901, 7639, 3411, 5223, 2203, 3109, 2203, 3713, 1297, 4015, 4619, 4619, 2203, 693, 693, 7337, 6431, 1599, 5827, 9753, 3713, 1599, 1599, 4317, 4015, 5827, 5827, 995, 995, 9753, 6129, 7941, 9149, 4619, 4015, 4921, 6431, 4619, 1901, 1599, 7035, 5827, 693, 9451, 9149, 8545, 5223, 5223, 9753, 3109, 2807, 6129, 391, 9149, 7035, 8847, 3713, 8243, 9753, 7035, 2505, 4317, 4317, 2203, 9753, 391, 2203, 6431, 9149, 5525, 7035, 693, 4619, 5827, 4619, 7035, 2505, 3713, 5223, 4921, 3109, 4921, 5525, 8243, 1297, 2203, 2505, 89, 5525, 8243, 7639, 2807, 8847, 8243, 693, 9149, 8243, 9149, 2505, 1599, 1297, 6129, 9451, 89, 89, 8847, 4317, 4317, 2807, 3411, 6431, 3411, 2807, 693, 1901, 693, 6733, 4921, 5223, 1599, 9451, 5525, 4921, 7337, 8243, 7639, 9753, 3713, 5827, 2203, 1297, 2807, 9753, 8243, 995, 9149, 3713, 3411, 8243, 7639, 1297, 7941, 4317, 8545, 995, 7337, 5827, 7337, 5223, 2807, 1599, 1599, 2203, 391, 8847, 3109, 5223, 391, 391, 9753, 3713, 7639, 7337, 2505, 7337, 2203, 7035, 2505, 8847, 9149, 9451, 9149, 995, 995, 1297, 6129, 1901, 5827, 3411, 8545, 693, 4317, 391, 6431, 7337, 6129, 7639, 6431, 7337, 5525, 8847, 5223, 3411, 8847, 7337, 8847, 6129, 7639, 8847, 6733, 7337, 995, 9451, 7035, 5525, 3411, 5223, 7337, 8243, 8545, 6129, 3713, 391, 3109, 995, 3411, 9149, 2505, 6431, 2505, 1599, 2807, 4015, 89, 4317, 4317, 4015, 7337, 2505, 5223, 4619, 9451, 693, 7337, 6431, 9149, 6129, 3109, 6431, 6129, 1599, 5525, 6431, 1297, 6431, 3109, 4619, 8545, 3713, 7941, 5525, 7639, 7639, 4921, 7941, 5223, 7941, 3109, 8243, 4619, 9149, 7639, 5827, 4317, 4317, 5525, 7941, 9753, 4619, 6733, 5525, 6129, 2807, 391, 391, 5827, 5827, 4317, 4317, 4317, 3713, 7035, 8243, 2505, 2505, 4921, 2505, 5223, 6129, 2203, 2203, 6431, 5827, 7941, 995, 2203, 1901, 1297, 9149, 6431, 4015, 7639, 3713, 6733, 4317, 7941, 4317, 391, 391, 1297, 7639, 5223, 4921, 1599, 7035, 5223, 6733, 9753, 3713, 89, 89, 6129, 693, 391, 693, 4619, 8847, 3411, 1599, 8847, 5827, 7337, 4317, 6733, 4619], [2203, 2807, 7639, 995, 6431, 9753, 4921, 3411, 2807, 4921, 4921, 8847, 7639, 6129, 5223, 4015, 8847, 9753, 5525, 8243, 1297, 5827, 3713, 6129, 3713, 4619, 7639, 8847, 7035, 3109, 9753, 2807, 3411, 1297, 89, 4921, 3411, 6129, 4921, 5223, 9753, 1599, 9753, 5827, 6129, 995, 3713, 2203, 8847, 3411, 5525, 7035, 2505, 3411, 7035, 4317, 6129, 3713, 391, 8847, 6129, 4921, 6733, 9753, 1599, 7639, 995, 3411, 6431, 1297, 4619, 7035, 7941, 8545, 6431, 2505, 1599, 8545, 1297, 7639, 9451, 2505, 8243, 3411, 3713, 9753, 4619, 4015, 4921, 89, 4921, 6431, 4015, 7035, 5525, 693, 9149, 1901, 2807, 9149, 693, 9149, 6733, 7639, 9451, 7941, 391, 3109, 3411, 7639, 89, 5827, 9753, 3109, 4015, 7639, 2807, 9753, 8847, 8545, 89, 8243, 7639, 9149, 9451, 8847, 9149, 6733, 9451, 6733, 693, 693, 1297, 5525, 1599, 4619, 7337, 3713, 7337, 3109, 5525, 7639, 7337, 4921, 6733, 5525, 7639, 391, 8243, 5827, 8847, 1599, 1599, 7337, 4317, 6733, 5223, 3109, 1599, 5223, 3109, 1297, 693, 6733, 2807, 391, 1297, 693, 391, 8847, 89, 8243, 8243, 9753, 6733, 6733, 8243, 8545, 1901, 1297, 5525, 8545, 4015, 9753, 6733, 4015, 693, 5223, 89, 5827, 89, 9149, 4015, 6129, 3411, 693, 8847, 5827, 6431, 995, 7941, 1599, 7941, 1599, 7035, 2203, 1901, 8243, 5525, 7035, 4317, 995, 7639, 4317, 5827, 9451, 3713, 3411, 391, 4015, 3713, 3109, 2807, 1901, 1599, 8243, 4619, 4317, 6129, 7639, 3411, 1599, 6129, 391, 9753, 9753, 6129, 1599, 1901, 7337, 5827, 6733, 391, 1297, 5827, 1297, 6431, 8847, 693, 7035, 3109, 4015, 4317, 7337, 3109, 2807, 4317, 1297, 9753, 4317, 89, 391, 8545, 2807, 4619, 9451, 7035, 7941, 2203, 3411, 7941, 6431, 4921, 4015, 7035, 9149, 9451, 5827, 1599, 1599, 693, 6431, 5525, 9451, 3411, 8243, 89, 1599, 9149, 7035, 693, 9753, 5223, 9753, 1297, 8545, 9149, 2203, 3411, 4921, 9753, 6733, 6733, 8243, 4619, 9753, 1901, 7337, 3411, 9451, 7337, 1901, 7337, 3109, 3109, 1901, 3713, 4015, 693, 6431, 2505, 7639, 7941, 8243, 6733, 995, 2203, 8243, 7337, 8243, 5525, 391, 4317, 4921, 89, 3109, 1297, 2807, 5827, 7337, 1599, 6733, 8545, 4317, 2505, 3109, 693, 89, 9149, 1901, 6129, 7337, 7941, 9451, 9149, 7941, 7639, 3411, 2203, 7941, 693, 6129, 89, 6431, 1901, 3713, 7337, 5827, 9451, 2505, 995, 3411, 1901, 9451, 9753, 3411, 4015, 4921, 8243, 4921, 9149, 5827, 3109, 2505, 6431, 3411, 4015, 7941, 7941, 4921, 1297, 2807, 7941, 2807, 5223, 4921, 9451, 1599, 6733, 4921, 3411, 4015, 89, 7337, 1297, 4317, 995, 3713, 2505, 8243, 6129, 2807, 7639, 2807, 5525, 2807, 1599, 995, 4317, 7337, 9451, 5525, 6129, 7639, 4619, 7941, 9753, 7035, 391, 9753, 5525, 4619, 6431, 8847, 5525, 995, 5525, 8545, 1901, 1901, 6129, 89, 89, 5827, 6129, 5525, 5827, 2807, 995, 9451, 6129, 995, 9753, 4921, 1599, 6733, 9753, 7337, 89, 8545, 3713, 7337, 2203, 3109, 9753, 5525, 9753, 6431, 3109, 6431, 6129, 6431, 391, 3109, 6431, 8545, 4015, 9451, 9753, 7337, 3109, 7035, 7639, 1901, 9451, 1297, 7337, 1599, 9149, 7941, 6431, 5223, 8243, 9451, 9753, 4921, 5827, 8243, 1901, 3109, 391, 1901], [9451, 4619, 1297, 3411, 4921, 8847, 4015, 8243, 7337, 3713, 6431, 4619, 3713, 4317, 4015, 995, 7941, 7035, 7337, 1599, 9753, 7941, 3411, 5525, 7941, 995, 7035, 8243, 1599, 5525, 5827, 3411, 6129, 6129, 2807, 4317, 3411, 9451, 5223, 3411, 4317, 6431, 995, 8243, 89, 2203, 6129, 1901, 3109, 5223, 6129, 5525, 3109, 6431, 7639, 2505, 8545, 5223, 2807, 8243, 6431, 8243, 7337, 995, 1901, 391, 8243, 9149, 2203, 7035, 3713, 5827, 5827, 8847, 2505, 4921, 7337, 8545, 4015, 3411, 8243, 8847, 3713, 4317, 3411, 8243, 8847, 1599, 7337, 693, 3411, 8243, 5525, 4921, 3109, 6129, 9149, 7337, 4619, 2505, 6431, 6129, 2807, 9149, 2505, 9149, 5525, 5223, 3109, 6129, 5223, 4921, 4317, 7035, 8243, 4317, 7035, 7941, 2203, 693, 7941, 2807, 6431, 5525, 4619, 2505, 2505, 391, 7337, 7337, 7337, 2203, 9451, 5525, 7639, 7639, 8545, 693, 9753, 7941, 2203, 1901, 693, 7941, 5525, 9149, 7337, 1297, 9149, 391, 7035, 8545, 4921, 4015, 7639, 4317, 7941, 1297, 8243, 5525, 4015, 4317, 4921, 6431, 995, 1599, 8243, 7941, 4015, 1599, 5525, 4015, 3411, 7639, 7941, 2203, 4619, 2505, 2505, 5827, 6431, 7337, 9753, 6129, 8847, 8243, 8847, 5827, 5223, 1599, 5525, 7941, 1297, 4619, 8243, 6733, 8545, 9753, 4317, 9149, 693, 6431, 2807, 9149, 7035, 995, 3713, 391, 1901, 5223, 1901, 5223, 8847, 6129, 8243, 1901, 7035, 6431, 4015, 4921, 5525, 9753, 7639, 9149, 9451, 6431, 5827, 1901, 7941, 693, 4015, 4317, 7639, 995, 8243, 5223, 1297, 6431, 693, 693, 3713, 2807, 3109, 3109, 6129, 5827, 2807, 4015, 2505, 4317, 8243, 9149, 4015, 1901, 7639, 5525, 3713, 9451, 89, 4921, 89, 4015, 391, 1599, 3411, 1297, 8545, 8545, 9451, 4317, 8243, 9451, 1901, 1599, 7035, 8243, 391, 7337, 9149, 9149, 3713, 5827, 1901, 4317, 2807, 9753, 8847, 7941, 6733, 2807, 693, 1297, 89, 391, 3109, 4015, 4619, 3713, 9753, 7941, 4015, 7639, 2807, 3713, 9753, 89, 391, 9451, 8847, 9753, 5827, 7035, 7337, 1297, 5223, 4317, 995, 1901, 4317, 995, 3713, 3713, 9451, 1599, 1599, 1901, 8847, 4317, 8545, 391, 89, 8847, 3411, 7337, 7337, 5827, 8243, 8545, 1599, 7639, 3411, 391, 8243, 5525, 1901, 4619, 8545, 693, 4015, 9451, 5223, 4015, 9753, 9149, 5223, 1599, 7337, 995, 6733, 5827, 1297, 8545, 4619, 7941, 5827, 5525, 89, 3411, 391, 3411, 1901, 9149, 3109, 5525, 693, 1901, 9451, 7337, 9753, 3713, 1599, 2203, 4619, 8847, 4317, 6129, 7035, 995, 9149, 5525, 693, 3411, 7941, 7941, 7035, 89, 89, 1297, 2807, 3109, 6733, 5827, 1297, 2203, 4317, 9451, 8243, 9149, 8545, 7639, 1599, 4015, 3713, 6733, 2807, 1901, 6129, 89, 9753, 1297, 9149, 6129, 6733, 9753, 7035, 9753, 9451, 8847, 7337, 7639, 6431, 9149, 8545, 9451, 4619, 6129, 3411, 6431, 89, 6431, 4317, 4015, 6431, 6733, 7035, 1901, 1901, 2807, 693, 4317, 3109, 6733, 8545, 6431, 6733, 1297, 6733, 8243, 9753, 4015, 5525, 1599, 9753, 693, 4015, 4619, 2505, 4317, 2203, 5525, 391, 3411, 693, 1297, 7035, 4921, 8847, 5525, 4921, 7941, 2807, 6129, 9753, 1297, 5223, 3109, 6733, 1901, 8847, 391, 2505, 5223, 7035, 1297, 693, 5223, 3109, 3109, 9451, 2203, 1599, 693]]
x = 302
error = 22027
correct = 213702 |
# # 01 solution using 2 lists and 1 for loop
# lines = int(input())
# key = input()
# word_list = []
# found_match = []
# for _ in range(lines):
# words = input()
# word_list.append(words)
# if key in words:
# found_match.append(words)
# print(word_list)
# print(found_match)
# 02 solution using 1 list and 2 for loops
lines = int(input())
key = input()
word_list = []
for _ in range(lines):
words = input()
word_list.append(words)
print(word_list)
for i in range(len(word_list) - 1, -1, -1):
element = word_list[i]
if key not in element:
word_list.remove(element)
print(word_list)
| lines = int(input())
key = input()
word_list = []
for _ in range(lines):
words = input()
word_list.append(words)
print(word_list)
for i in range(len(word_list) - 1, -1, -1):
element = word_list[i]
if key not in element:
word_list.remove(element)
print(word_list) |
# use shift enter on highlighted code
#
#print("Hello")
# def search (x, nums):
# # nums is a list of numbers and x is a number
# # Returns the position in the list where x occurs or -1 if
# # x is not in the list
# try:
# return nums.index(x)
# except:
# return -1
# print(search(1,[1,2,3,4]))
# Linear search
# Iterate through a list and stop when the desired value is found
# If the desired value is never found, return -1
def linearSearch (x, nums):
for i in range (len (nums)):
if nums[i] == x:
print("The desired value was ", x, " and it was found at index ", i)
return i
return -1
# Binary Search
# Takes the middle value and compares it to the desired value
# If desired value is greater than the middle value then the low is
# assigned the middle value. Then compares the middle of the new range
# to the desired value. If the desired value is smaller then the new high
# is the old middle value...
numList = list(range(1, 101)) # Set numList equal to a list of the first 100 integers
def binarySearch (x, nums):
low = 0
high = len(nums) - 1
while low <= high: # There is still a range to search
mid = (low + high) // 2 # Position of the middle item
item = nums[mid]
if x == item : # The desired value was found
return mid
elif x < item : # x is in the lower half of the range
high = mid -1 # Move top marker down
else: # x is in upper half
low = mid + 1 # Move bottom marker up
return -1 # x is not in the list
# Test cases to test the algorithm, compares an expected result to the actual result
def testCaseBinary(testNumber, x, nums, expectedResult):
actualResult = binarySearch(x, nums)
if actualResult == expectedResult:
print("Test", testNumber, "Passed")
else:
print("Test", testNumber, "Failed. Expected", expectedResult, "But Found", actualResult)
def testBinary():
testCaseBinary(1, 70, numList, 69)
testCaseBinary(2, 30, numList, 29)
testCaseBinary(3, 101, numList, -1)
| def linear_search(x, nums):
for i in range(len(nums)):
if nums[i] == x:
print('The desired value was ', x, ' and it was found at index ', i)
return i
return -1
num_list = list(range(1, 101))
def binary_search(x, nums):
low = 0
high = len(nums) - 1
while low <= high:
mid = (low + high) // 2
item = nums[mid]
if x == item:
return mid
elif x < item:
high = mid - 1
else:
low = mid + 1
return -1
def test_case_binary(testNumber, x, nums, expectedResult):
actual_result = binary_search(x, nums)
if actualResult == expectedResult:
print('Test', testNumber, 'Passed')
else:
print('Test', testNumber, 'Failed. Expected', expectedResult, 'But Found', actualResult)
def test_binary():
test_case_binary(1, 70, numList, 69)
test_case_binary(2, 30, numList, 29)
test_case_binary(3, 101, numList, -1) |
class Album:
def __init__(self, album: dict):
self.album_id = album["id"]
self.name = album["name"]
images = dict()
for image in album["images"]:
images[image["height"]] = image["url"]
self._images = tuple(images)
def image_url(self, resolution: int = 640) -> str:
return self._images[resolution]
class Track:
def __init__(self, track: dict):
self.track_id = track["id"]
self.name = track["name"]
self.album = Album(track["album"])
self.preview_url = track["preview_url"]
self.uri = track["uri"]
class TopArtist:
def __init__(self, artist: dict):
self.artist_id = artist["id"]
self.name = artist["name"]
self.selected = artist["selected"]
self.top_track = Track(artist["top_track"])
| class Album:
def __init__(self, album: dict):
self.album_id = album['id']
self.name = album['name']
images = dict()
for image in album['images']:
images[image['height']] = image['url']
self._images = tuple(images)
def image_url(self, resolution: int=640) -> str:
return self._images[resolution]
class Track:
def __init__(self, track: dict):
self.track_id = track['id']
self.name = track['name']
self.album = album(track['album'])
self.preview_url = track['preview_url']
self.uri = track['uri']
class Topartist:
def __init__(self, artist: dict):
self.artist_id = artist['id']
self.name = artist['name']
self.selected = artist['selected']
self.top_track = track(artist['top_track']) |
# Find the number of letters "a" or "A" in a string using control flow
counter = 0
string = 'Python is a widely used high-level programming language for general-purpose programming, ' \
'created by Guido van Rossum and first released in 1991. An interpreted language, Python has a design ' \
'philosophy that emphasizes code readability (notably using whitespace indentation to delimit code blocks ' \
'rather than curly brackets or keywords), and a syntax that allows programmers to express concepts in fewer ' \
'lines of code than might be used in languages such as C++ or Java.[23][24] ' \
'The language provides constructs intended to enable writing clear programs on both a small and large scale.'
# Iterate the string character by character
# Compare if character is "a" or "A"
| counter = 0
string = 'Python is a widely used high-level programming language for general-purpose programming, created by Guido van Rossum and first released in 1991. An interpreted language, Python has a design philosophy that emphasizes code readability (notably using whitespace indentation to delimit code blocks rather than curly brackets or keywords), and a syntax that allows programmers to express concepts in fewer lines of code than might be used in languages such as C++ or Java.[23][24] The language provides constructs intended to enable writing clear programs on both a small and large scale.' |
APPVERSION = "0.2.4"
DBVERSION = 4 # Make sure this is an integer
MANDATORY_DBVERSION = 4 # What version of the database has to be used for the application to run at all
CONFIGFILE = "config.db"
IMAGESROOT = "images"
| appversion = '0.2.4'
dbversion = 4
mandatory_dbversion = 4
configfile = 'config.db'
imagesroot = 'images' |
#!/usr/bin/env python3
#
# Copyright 2017 Google Inc. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# 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.
#
SUBSETS = [
"adlam",
"ahom",
"anatolian-hieroglyphs",
"arabic",
"armenian",
"avestan",
"balinese",
"bamum",
"bassa-vah",
"batak",
"bengali",
"bhaiksuki",
"brahmi",
"buginese",
"buhid",
"canadian-aboriginal",
"carian",
"caucasian-albanian",
"chakma",
"cham",
"cherokee",
"chinese-hongkong",
"chinese-simplified",
"chinese-traditional",
"coptic",
"cuneiform",
"cypriot",
"cyrillic",
"cyrillic-ext",
"deseret",
"devanagari",
"dogra",
"duployan",
"egyptian-hieroglyphs",
"elbasan",
"elymaic",
"emoji",
"ethiopic",
"georgian",
"glagolitic",
"gothic",
"grantha",
"greek",
"greek-ext",
"gujarati",
"gunjala-gondi",
"gurmukhi",
"hanifi-rohingya",
"hanunoo",
"hatran",
"hebrew",
"imperial-aramaic",
"indic-siyaq-numbers",
"inscriptional-pahlavi",
"inscriptional-parthian",
"japanese",
"javanese",
"kaithi",
"kannada",
"kayah-li",
"kharoshthi",
"khmer",
"khojki",
"khudawadi",
"korean",
"lao",
"latin",
"latin-ext",
"lepcha",
"limbu",
"linear-a",
"linear-b",
"lisu",
"lycian",
"lydian",
"mahajani",
"malayalam",
"mandaic",
"manichaean",
"marchen",
"masaram-gondi",
"math",
"mayan-numerals",
"medefaidrin",
"meetei-mayek",
"mende-kikakui",
"meroitic",
"miao",
"modi",
"mongolian",
"mro",
"multani",
"music",
"myanmar",
"nabataean",
"new-tai-lue",
"newa",
"nko",
"nushu",
"nyiakeng-puachue-hmong",
"ogham",
"ol-chiki",
"old-hungarian",
"old-italic",
"old-north-arabian",
"old-permic",
"old-persian",
"old-sogdian",
"old-south-arabian",
"old-turkic",
"oriya",
"osage",
"osmanya",
"pahawh-hmong",
"palmyrene",
"pau-cin-hau",
"phags-pa",
"phoenician",
"psalter-pahlavi",
"rejang",
"runic",
"samaritan",
"saurashtra",
"sharada",
"shavian",
"siddham",
"sign-writing",
"sinhala",
"sogdian",
"sora-sompeng",
"soyombo",
"sundanese",
"syloti-nagri",
"symbols",
"syriac",
"syriac-eastern",
"syriac-estrangela",
"syriac-western",
"tagalog",
"tagbanwa",
"tai-le",
"tai-tham",
"tai-viet",
"takri",
"tamil",
"tamil-supplement",
"tangut",
"telugu",
"thaana",
"thai",
"tibetan",
"tifinagh",
"tirhuta",
"ugaritic",
"vai",
"vietnamese",
"wancho",
"warang-citi",
"yezidi",
"yi",
"zanabazar-square",
]
| subsets = ['adlam', 'ahom', 'anatolian-hieroglyphs', 'arabic', 'armenian', 'avestan', 'balinese', 'bamum', 'bassa-vah', 'batak', 'bengali', 'bhaiksuki', 'brahmi', 'buginese', 'buhid', 'canadian-aboriginal', 'carian', 'caucasian-albanian', 'chakma', 'cham', 'cherokee', 'chinese-hongkong', 'chinese-simplified', 'chinese-traditional', 'coptic', 'cuneiform', 'cypriot', 'cyrillic', 'cyrillic-ext', 'deseret', 'devanagari', 'dogra', 'duployan', 'egyptian-hieroglyphs', 'elbasan', 'elymaic', 'emoji', 'ethiopic', 'georgian', 'glagolitic', 'gothic', 'grantha', 'greek', 'greek-ext', 'gujarati', 'gunjala-gondi', 'gurmukhi', 'hanifi-rohingya', 'hanunoo', 'hatran', 'hebrew', 'imperial-aramaic', 'indic-siyaq-numbers', 'inscriptional-pahlavi', 'inscriptional-parthian', 'japanese', 'javanese', 'kaithi', 'kannada', 'kayah-li', 'kharoshthi', 'khmer', 'khojki', 'khudawadi', 'korean', 'lao', 'latin', 'latin-ext', 'lepcha', 'limbu', 'linear-a', 'linear-b', 'lisu', 'lycian', 'lydian', 'mahajani', 'malayalam', 'mandaic', 'manichaean', 'marchen', 'masaram-gondi', 'math', 'mayan-numerals', 'medefaidrin', 'meetei-mayek', 'mende-kikakui', 'meroitic', 'miao', 'modi', 'mongolian', 'mro', 'multani', 'music', 'myanmar', 'nabataean', 'new-tai-lue', 'newa', 'nko', 'nushu', 'nyiakeng-puachue-hmong', 'ogham', 'ol-chiki', 'old-hungarian', 'old-italic', 'old-north-arabian', 'old-permic', 'old-persian', 'old-sogdian', 'old-south-arabian', 'old-turkic', 'oriya', 'osage', 'osmanya', 'pahawh-hmong', 'palmyrene', 'pau-cin-hau', 'phags-pa', 'phoenician', 'psalter-pahlavi', 'rejang', 'runic', 'samaritan', 'saurashtra', 'sharada', 'shavian', 'siddham', 'sign-writing', 'sinhala', 'sogdian', 'sora-sompeng', 'soyombo', 'sundanese', 'syloti-nagri', 'symbols', 'syriac', 'syriac-eastern', 'syriac-estrangela', 'syriac-western', 'tagalog', 'tagbanwa', 'tai-le', 'tai-tham', 'tai-viet', 'takri', 'tamil', 'tamil-supplement', 'tangut', 'telugu', 'thaana', 'thai', 'tibetan', 'tifinagh', 'tirhuta', 'ugaritic', 'vai', 'vietnamese', 'wancho', 'warang-citi', 'yezidi', 'yi', 'zanabazar-square'] |
size = int(input())
matrix = []
for _ in range(size):
row = []
for x in input().split():
row.append(int(x))
matrix.append(row)
primary = []
secondary = []
for row in range(size):
primary.append(matrix[row][row])
secondary.append(matrix[row][size - 1 - row])
print(abs(sum(primary) - sum(secondary)))
| size = int(input())
matrix = []
for _ in range(size):
row = []
for x in input().split():
row.append(int(x))
matrix.append(row)
primary = []
secondary = []
for row in range(size):
primary.append(matrix[row][row])
secondary.append(matrix[row][size - 1 - row])
print(abs(sum(primary) - sum(secondary))) |
num = [1, 2, 4.5, 6.3242321, 32434.333, 22]
print('int: ', "{0:d}".format(num[1]))
print('float: ', "{0:.2f}".format(num[3]))
print('float round: ', "{0:0f}".format(num[4]))
print('bin: ', "{0:b}".format(num[5]))
print('hex: ', "{0:x}".format(num[5]))
print('oct: ', "{0:o}".format(num[5]))
print('string: ','{1}{2}{0}'.format('yo', 'man', 'lol'))
print(format(123, 'd'))
print(format(123.45678901010, 'f'))
print(format(12, 'b'))
print(format(1234, '*>+7,d'))
print(format(123.4567, '^-09.3f')) | num = [1, 2, 4.5, 6.3242321, 32434.333, 22]
print('int: ', '{0:d}'.format(num[1]))
print('float: ', '{0:.2f}'.format(num[3]))
print('float round: ', '{0:0f}'.format(num[4]))
print('bin: ', '{0:b}'.format(num[5]))
print('hex: ', '{0:x}'.format(num[5]))
print('oct: ', '{0:o}'.format(num[5]))
print('string: ', '{1}{2}{0}'.format('yo', 'man', 'lol'))
print(format(123, 'd'))
print(format(123.4567890101, 'f'))
print(format(12, 'b'))
print(format(1234, '*>+7,d'))
print(format(123.4567, '^-09.3f')) |
a = input ("ingrese numero ")
a = int(a)
b = input ("ingrese numero ")
b = int(b)
c = input ("ingrese numero ")
c = int(c)
d = input ("ingrese numero ")
d = int(d)
e = input ("ingrese numero ")
e = int(e)
f = (a+b)
f = int(f)
print("la suma de a+b es:")
print (f)
g = (f-e)
g = int(g)
print("la resta de f y e es:")
print(g)
h = (g/e)
h = int(h)
print("la division de f ye es:")
print(h)
i = (h*a)
i = int(i)
print("la multiplicacion de h por a es")
print(i)
j = (i^2)
j = int(j)
print("el resultado de j al cuadrado es:")
print(j) | a = input('ingrese numero ')
a = int(a)
b = input('ingrese numero ')
b = int(b)
c = input('ingrese numero ')
c = int(c)
d = input('ingrese numero ')
d = int(d)
e = input('ingrese numero ')
e = int(e)
f = a + b
f = int(f)
print('la suma de a+b es:')
print(f)
g = f - e
g = int(g)
print('la resta de f y e es:')
print(g)
h = g / e
h = int(h)
print('la division de f ye es:')
print(h)
i = h * a
i = int(i)
print('la multiplicacion de h por a es')
print(i)
j = i ^ 2
j = int(j)
print('el resultado de j al cuadrado es:')
print(j) |
class Node:
class_id = 0
def __init__(self, id=None, position=(0,0), label="", **kwargs) -> None:
self.id = Node.class_id if not id else id
self.pos = position
self.label = label
self.attr = kwargs if len(kwargs) > 0 else {}
Node.class_id += 1
def __str__(self) -> str:
return f"Node({self.id}, {self.pos}, {self.label}, {self.attr})"
def __repr__(self) -> str:
return str(self) | class Node:
class_id = 0
def __init__(self, id=None, position=(0, 0), label='', **kwargs) -> None:
self.id = Node.class_id if not id else id
self.pos = position
self.label = label
self.attr = kwargs if len(kwargs) > 0 else {}
Node.class_id += 1
def __str__(self) -> str:
return f'Node({self.id}, {self.pos}, {self.label}, {self.attr})'
def __repr__(self) -> str:
return str(self) |
'''
Given a boolean expression with following symbols.
Symbols
'T' ---> true
'F' ---> false
And following operators filled between symbols
Operators
& ---> boolean AND
| ---> boolean OR
^ ---> boolean XOR
Count the number of ways we can parenthesize the expression so that the value of expression evaluates to true.
Let the input be in form of two arrays one contains the symbols (T and F) in order and other contains operators (&, | and ^}
Examples:
Input: symbol[] = {T, F, T}
operator[] = {^, &}
Output: 2
The given expression is "T ^ F & T", it evaluates true
in two ways "((T ^ F) & T)" and "(T ^ (F & T))"
Input: symbol[] = {T, F, F}
operator[] = {^, |}
Output: 2
The given expression is "T ^ F | F", it evaluates true
in two ways "( (T ^ F) | F )" and "( T ^ (F | F) )".
Input: symbol[] = {T, T, F, T}
operator[] = {|, &, ^}
Output: 4
The given expression is "T | T & F ^ T", it evaluates true
in 4 ways ((T|T)&(F^T)), (T|(T&(F^T))), (((T|T)&F)^T)
and (T|((T&F)^T)).
'''
def parenthesis_count(Str, i, j, isTrue, dp):
if (i > j):
return 0
if (i == j):
if (isTrue == 1):
return 1 if Str[i] == 'T' else 0
else:
return 1 if Str[i] == 'F' else 0
if (dp[i][j][isTrue] != -1):
return dp[i][j][isTrue]
temp_ans = 0
for k in range(i + 1, j, 2):
if (dp[i][k - 1][1] != -1):
leftTrue = dp[i][k - 1][1]
else:
# Count number of True in left Partition
leftTrue = parenthesis_count(Str, i, k - 1, 1, dp)
if (dp[i][k - 1][0] != -1):
leftFalse = dp[i][k - 1][0]
else:
# Count number of False in left Partition
leftFalse = parenthesis_count(Str, i, k - 1, 0, dp)
if (dp[k + 1][j][1] != -1):
rightTrue = dp[k + 1][j][1]
else:
# Count number of True in right Partition
rightTrue = parenthesis_count(Str, k + 1, j, 1, dp)
if (dp[k + 1][j][0] != -1):
rightFalse = dp[k + 1][j][0]
else:
# Count number of False in right Partition
rightFalse = parenthesis_count(Str, k + 1, j, 0, dp)
# Evaluate AND operation
if (Str[k] == '&'):
if (isTrue == 1):
temp_ans = temp_ans + leftTrue * rightTrue
else:
temp_ans = temp_ans + leftTrue * rightFalse + \
leftFalse * rightTrue + leftFalse * rightFalse
# Evaluate OR operation
elif (Str[k] == '|'):
if (isTrue == 1):
temp_ans = temp_ans + leftTrue * rightTrue + \
leftTrue * rightFalse + leftFalse * rightTrue
else:
temp_ans = temp_ans + leftFalse * rightFalse
# Evaluate XOR operation
elif (Str[k] == '^'):
if (isTrue == 1):
temp_ans = temp_ans + leftTrue * rightFalse + leftFalse * rightTrue
else:
temp_ans = temp_ans + leftTrue * rightTrue + leftFalse * rightFalse
dp[i][j][isTrue] = temp_ans
return temp_ans
def countWays(N, S):
dp = [[[-1 for k in range(2)] for i in range(N + 1)] for j in range(N + 1)]
return parenthesis_count(S, 0, N - 1, 1, dp)
| """
Given a boolean expression with following symbols.
Symbols
'T' ---> true
'F' ---> false
And following operators filled between symbols
Operators
& ---> boolean AND
| ---> boolean OR
^ ---> boolean XOR
Count the number of ways we can parenthesize the expression so that the value of expression evaluates to true.
Let the input be in form of two arrays one contains the symbols (T and F) in order and other contains operators (&, | and ^}
Examples:
Input: symbol[] = {T, F, T}
operator[] = {^, &}
Output: 2
The given expression is "T ^ F & T", it evaluates true
in two ways "((T ^ F) & T)" and "(T ^ (F & T))"
Input: symbol[] = {T, F, F}
operator[] = {^, |}
Output: 2
The given expression is "T ^ F | F", it evaluates true
in two ways "( (T ^ F) | F )" and "( T ^ (F | F) )".
Input: symbol[] = {T, T, F, T}
operator[] = {|, &, ^}
Output: 4
The given expression is "T | T & F ^ T", it evaluates true
in 4 ways ((T|T)&(F^T)), (T|(T&(F^T))), (((T|T)&F)^T)
and (T|((T&F)^T)).
"""
def parenthesis_count(Str, i, j, isTrue, dp):
if i > j:
return 0
if i == j:
if isTrue == 1:
return 1 if Str[i] == 'T' else 0
else:
return 1 if Str[i] == 'F' else 0
if dp[i][j][isTrue] != -1:
return dp[i][j][isTrue]
temp_ans = 0
for k in range(i + 1, j, 2):
if dp[i][k - 1][1] != -1:
left_true = dp[i][k - 1][1]
else:
left_true = parenthesis_count(Str, i, k - 1, 1, dp)
if dp[i][k - 1][0] != -1:
left_false = dp[i][k - 1][0]
else:
left_false = parenthesis_count(Str, i, k - 1, 0, dp)
if dp[k + 1][j][1] != -1:
right_true = dp[k + 1][j][1]
else:
right_true = parenthesis_count(Str, k + 1, j, 1, dp)
if dp[k + 1][j][0] != -1:
right_false = dp[k + 1][j][0]
else:
right_false = parenthesis_count(Str, k + 1, j, 0, dp)
if Str[k] == '&':
if isTrue == 1:
temp_ans = temp_ans + leftTrue * rightTrue
else:
temp_ans = temp_ans + leftTrue * rightFalse + leftFalse * rightTrue + leftFalse * rightFalse
elif Str[k] == '|':
if isTrue == 1:
temp_ans = temp_ans + leftTrue * rightTrue + leftTrue * rightFalse + leftFalse * rightTrue
else:
temp_ans = temp_ans + leftFalse * rightFalse
elif Str[k] == '^':
if isTrue == 1:
temp_ans = temp_ans + leftTrue * rightFalse + leftFalse * rightTrue
else:
temp_ans = temp_ans + leftTrue * rightTrue + leftFalse * rightFalse
dp[i][j][isTrue] = temp_ans
return temp_ans
def count_ways(N, S):
dp = [[[-1 for k in range(2)] for i in range(N + 1)] for j in range(N + 1)]
return parenthesis_count(S, 0, N - 1, 1, dp) |
class News:
# category = ''
# title = ''
# description = ''
# locations = []
# link = ''
# summery = ''
# date_time= ''
def __init__(self,title, description,summary,link,category,date_time):
self.category = category
self.title = title
self.description = description
self.summary = summary
self.link = link
self.date_time = date_time
def print_test(self):
print(self.title)
def add_locations(self,locations):
self.locations = locations
| class News:
def __init__(self, title, description, summary, link, category, date_time):
self.category = category
self.title = title
self.description = description
self.summary = summary
self.link = link
self.date_time = date_time
def print_test(self):
print(self.title)
def add_locations(self, locations):
self.locations = locations |
def test_array_one_d_type_promotion(tmp_path, helpers):
# int + float to float
v_str = [ '1', '2', '3.0', '+4.0e0' ]
v = [1.0, 2.0, 3.0, 4.0]
helpers.do_one_d_variants(tmp_path, False, 4, v, v_str)
# int + barestring to string
v_str = [ '1', '2', 'abc', 'd']
v = ['1', '2', 'abc', 'd']
helpers.do_one_d_variants(tmp_path, True, 4, v, v_str)
# bool + barestring to string
v_str = [ 'T', 'False', 'abc', 'd']
v = ['T', 'False', 'abc', 'd']
helpers.do_one_d_variants(tmp_path, True, 4, v, v_str)
# bool + quotedstring to string
v_str = [ 'T', 'False', '"abc"', 'd']
v = ['T', 'False', 'abc', 'd']
helpers.do_one_d_variants(tmp_path, True, 4, v, v_str)
# bool + int to string
v_str = [ 'T', 'False', '12', '345' ]
v = ['T', 'False', '12', '345']
helpers.do_one_d_variants(tmp_path, True, 4, v, v_str)
def test_array_two_d_type_promotion(tmp_path, helpers):
# int + float to float
v_str = [ '1', '2', '3.0', '+4.0e0' ]
v = [1.0, 2.0, 3.0, 4.0]
helpers.do_two_d_variants(tmp_path, 2, 2, v, v_str)
# # int + barestring to string
# v_str = [ '1', '2', 'abc', 'd']
# v = ['1', '2', 'abc', 'd']
# helpers.do_two_d_variants(tmp_path, 2, 2, v, v_str)
# # bool + barestring to string
# v_str = [ 'T', 'False', 'abc', 'd']
# v = ['T', 'False', 'abc', 'd']
# helpers.do_two_d_variants(tmp_path, 2, 2, v, v_str)
# # bool + quotedstring to string
# v_str = [ 'T', 'False', '"abc"', 'd']
# v = ['T', 'False', 'abc', 'd']
# helpers.do_two_d_variants(tmp_path, 2, 2, v, v_str)
# # bool + int to string
# v_str = [ 'T', 'False', '12', '345' ]
# v = ['T', 'False', '12', '345']
# helpers.do_two_d_variants(tmp_path, 2, 2, v, v_str)
| def test_array_one_d_type_promotion(tmp_path, helpers):
v_str = ['1', '2', '3.0', '+4.0e0']
v = [1.0, 2.0, 3.0, 4.0]
helpers.do_one_d_variants(tmp_path, False, 4, v, v_str)
v_str = ['1', '2', 'abc', 'd']
v = ['1', '2', 'abc', 'd']
helpers.do_one_d_variants(tmp_path, True, 4, v, v_str)
v_str = ['T', 'False', 'abc', 'd']
v = ['T', 'False', 'abc', 'd']
helpers.do_one_d_variants(tmp_path, True, 4, v, v_str)
v_str = ['T', 'False', '"abc"', 'd']
v = ['T', 'False', 'abc', 'd']
helpers.do_one_d_variants(tmp_path, True, 4, v, v_str)
v_str = ['T', 'False', '12', '345']
v = ['T', 'False', '12', '345']
helpers.do_one_d_variants(tmp_path, True, 4, v, v_str)
def test_array_two_d_type_promotion(tmp_path, helpers):
v_str = ['1', '2', '3.0', '+4.0e0']
v = [1.0, 2.0, 3.0, 4.0]
helpers.do_two_d_variants(tmp_path, 2, 2, v, v_str) |
def minion_game(string):
upper_string = string.upper()
vowels = 'AEIOU'
len_str = len(upper_string)
K_score, S_score = 0,0
if len_str>0 and len_str< pow(10,6):
for i in range(len_str):
if upper_string[i] in vowels:
K_score+= len(string)-i
#the score is equals to the number of times a word occurs in string
else:
S_score+=len(string)-i
if S_score>K_score:
print("Stuart "+"%d" % S_score)
elif K_score>S_score:
print("Kevin "+"%d" % K_score)
else:
print("Draw")
if __name__ == '__main__':
s = input()
minion_game(s)
#subtracting the index of the found 'vowel' gives us the number of words starting from that index with a vowel at first. | def minion_game(string):
upper_string = string.upper()
vowels = 'AEIOU'
len_str = len(upper_string)
(k_score, s_score) = (0, 0)
if len_str > 0 and len_str < pow(10, 6):
for i in range(len_str):
if upper_string[i] in vowels:
k_score += len(string) - i
else:
s_score += len(string) - i
if S_score > K_score:
print('Stuart ' + '%d' % S_score)
elif K_score > S_score:
print('Kevin ' + '%d' % K_score)
else:
print('Draw')
if __name__ == '__main__':
s = input()
minion_game(s) |
class Constraints(object):
def __init__(self, numberOfQueens):
self.set = set()
self.populateConstraints(self.set, numberOfQueens)
def populateConstraints(self, mySet, numberOfQueens):
self.rowConstraints(mySet, numberOfQueens)
self.diagonalConstraints(mySet, numberOfQueens)
def rowConstraints(self, set, numberOfQueens):
for x in range(1, numberOfQueens):
for y in range(x + 1, numberOfQueens + 1):
set.add((x, y, lambda variables, queen1, queen2: self.rowViolatesConstraint(
variables, queen1, queen2)))
def rowViolatesConstraint(self, variables, queen1, queen2):
return self.bothQueensHaveAValue(queen1, queen2) and queen1.value == queen2.value
def diagonalConstraints(self, set, numberOfQueens):
for x in range(1, numberOfQueens):
for y in range(x + 1, numberOfQueens + 1):
set.add((x, y, lambda variables, queen1, queen2: self.diagonalViolatesConstraint(
variables, queen1, queen2)))
def diagonalViolatesConstraint(self, variables, queen1, queen2):
return self.bothQueensHaveAValue(queen1, queen2) and abs(queen1.value - queen2.value) == abs(queen1.number - queen2.number)
def bothQueensHaveAValue(self, queen1, queen2):
return not queen1.unassigned() and not queen2.unassigned()
def queenAppearsInConstraintScope(self, variables, queen, constraint):
queen1 = variables.queens[constraint[1] - 1]
queen2 = variables.queens[constraint[0] - 1]
return queen1.number == queen.number and not queen2.number == queen.number
def obtainQueenToCheckForDomain(self, variables, constraint, queen):
queenToCheck = -1
queen1 = variables.queens[constraint[1] - 1]
queen2 = variables.queens[constraint[0] - 1]
if not queen1.number == queen.number and not queen2.number == queen.number or not queen1.unassigned() and not queen2.unassigned():
return None
if queen2.number == queen.number:
return queen1
if queen1.number == queen.number:
queenToCheck = queen2
def domainValuesToRemove(self, variables, constraint, queenToCheck, removed):
remove = set()
for value in queenToCheck.domain:
queenToCheck.value = value
if self.constraintFails(variables, constraint):
remove.add(value)
removed.append((queenToCheck.number - 1, value))
return remove
def wipeout(self, variables, queen):
removed = []
for constraint in self.set:
queenToCheck = self.obtainQueenToCheckForDomain(
variables, constraint, queen)
if queenToCheck == None:
continue
remove = self.domainValuesToRemove(
variables, constraint, queenToCheck, removed)
if len(queenToCheck.domain) == len(remove):
self.restore(variables, removed)
queenToCheck.value = -1
return None
queenToCheck.domain = queenToCheck.domain.difference(remove)
queenToCheck.value = -1
return removed
def verify(self, variables):
for constraint in self.set:
if self.constraintFails(variables, constraint):
return False
return True
def constraintFails(self, variables, constraint):
return constraint[2](variables, variables.queens[constraint[0] - 1], variables.queens[constraint[1] - 1])
def restore(self, variables, domainTuples):
for indexValuePair in domainTuples:
variables.queens[indexValuePair[0]].domain.add(indexValuePair[1])
| class Constraints(object):
def __init__(self, numberOfQueens):
self.set = set()
self.populateConstraints(self.set, numberOfQueens)
def populate_constraints(self, mySet, numberOfQueens):
self.rowConstraints(mySet, numberOfQueens)
self.diagonalConstraints(mySet, numberOfQueens)
def row_constraints(self, set, numberOfQueens):
for x in range(1, numberOfQueens):
for y in range(x + 1, numberOfQueens + 1):
set.add((x, y, lambda variables, queen1, queen2: self.rowViolatesConstraint(variables, queen1, queen2)))
def row_violates_constraint(self, variables, queen1, queen2):
return self.bothQueensHaveAValue(queen1, queen2) and queen1.value == queen2.value
def diagonal_constraints(self, set, numberOfQueens):
for x in range(1, numberOfQueens):
for y in range(x + 1, numberOfQueens + 1):
set.add((x, y, lambda variables, queen1, queen2: self.diagonalViolatesConstraint(variables, queen1, queen2)))
def diagonal_violates_constraint(self, variables, queen1, queen2):
return self.bothQueensHaveAValue(queen1, queen2) and abs(queen1.value - queen2.value) == abs(queen1.number - queen2.number)
def both_queens_have_a_value(self, queen1, queen2):
return not queen1.unassigned() and (not queen2.unassigned())
def queen_appears_in_constraint_scope(self, variables, queen, constraint):
queen1 = variables.queens[constraint[1] - 1]
queen2 = variables.queens[constraint[0] - 1]
return queen1.number == queen.number and (not queen2.number == queen.number)
def obtain_queen_to_check_for_domain(self, variables, constraint, queen):
queen_to_check = -1
queen1 = variables.queens[constraint[1] - 1]
queen2 = variables.queens[constraint[0] - 1]
if not queen1.number == queen.number and (not queen2.number == queen.number) or (not queen1.unassigned() and (not queen2.unassigned())):
return None
if queen2.number == queen.number:
return queen1
if queen1.number == queen.number:
queen_to_check = queen2
def domain_values_to_remove(self, variables, constraint, queenToCheck, removed):
remove = set()
for value in queenToCheck.domain:
queenToCheck.value = value
if self.constraintFails(variables, constraint):
remove.add(value)
removed.append((queenToCheck.number - 1, value))
return remove
def wipeout(self, variables, queen):
removed = []
for constraint in self.set:
queen_to_check = self.obtainQueenToCheckForDomain(variables, constraint, queen)
if queenToCheck == None:
continue
remove = self.domainValuesToRemove(variables, constraint, queenToCheck, removed)
if len(queenToCheck.domain) == len(remove):
self.restore(variables, removed)
queenToCheck.value = -1
return None
queenToCheck.domain = queenToCheck.domain.difference(remove)
queenToCheck.value = -1
return removed
def verify(self, variables):
for constraint in self.set:
if self.constraintFails(variables, constraint):
return False
return True
def constraint_fails(self, variables, constraint):
return constraint[2](variables, variables.queens[constraint[0] - 1], variables.queens[constraint[1] - 1])
def restore(self, variables, domainTuples):
for index_value_pair in domainTuples:
variables.queens[indexValuePair[0]].domain.add(indexValuePair[1]) |
# Do not edit this file directly.
# It was auto-generated by: code/programs/reflexivity/reflexive_refresh
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
def tippecanoe():
http_archive(
name="tippecanoe" ,
build_file="//bazel/deps/tippecanoe:build.BUILD" ,
sha256="9169a734cebd6d541e57f0fba98c7ef1d76b9afd9eb335f538d803e847bc41b4" ,
strip_prefix="tippecanoe-a17bd79f7788952d8ecc046c4b47315640f92d93" ,
urls = [
"https://github.com/Unilang/tippecanoe/archive/a17bd79f7788952d8ecc046c4b47315640f92d93.tar.gz",
],
)
| load('@bazel_tools//tools/build_defs/repo:http.bzl', 'http_archive')
def tippecanoe():
http_archive(name='tippecanoe', build_file='//bazel/deps/tippecanoe:build.BUILD', sha256='9169a734cebd6d541e57f0fba98c7ef1d76b9afd9eb335f538d803e847bc41b4', strip_prefix='tippecanoe-a17bd79f7788952d8ecc046c4b47315640f92d93', urls=['https://github.com/Unilang/tippecanoe/archive/a17bd79f7788952d8ecc046c4b47315640f92d93.tar.gz']) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.